diff --git a/.gitignore b/.gitignore index d1e34b5cc..9cea8328c 100644 --- a/.gitignore +++ b/.gitignore @@ -40,9 +40,13 @@ unit # Tests tests/**/*.mbtiles tests/**/*.check +tests/**/*.geobuf # Vim *.swp # Mac .DS_Store + +# Nodejs +node_modules diff --git a/CHANGELOG.md b/CHANGELOG.md index 908a59d4a..134d1f694 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,97 @@ +## 1.36.0 + +* Update Wagyu to version 0.5.0 + +## 1.35.0 + +* Fix calculation of mean when accumulating attributes in clusters + +## 1.34.6 + +* Fix crash when there are null entries in the metadata table + +## 1.34.5 + +* Fix line numbers in GeoJSON feature parsing error messages + +## 1.34.4 + +* Be careful to avoid undefined behavior from shifting negative numbers + +## 1.34.3 + +* Add an option to keep intersection nodes from being simplified away + +## 1.34.2 + +* Be more consistent about when longitudes beyond 180 are allowed. + Now if the entire feature is beyond 180, it will still appear. + +## 1.34.1 + +* Don't run shell filters if the current zoom is below the minzoom +* Fix -Z and -z for tile directories in tile-join and tippecanoe-decode +* Return a successful error status for --help and --version + +## 1.34.0 + +* Record the command line options in the tileset metadata + +## 1.33.0 + +* MultiLineStrings were previously ignored in Geobuf input + +## 1.32.12 + +* Accept .mvt as well as .pbf in directories of tiles +* Allow tippecanoe-decode and tile-join of directories with no metadata + +## 1.32.11 +* Don't let attribute exclusion apply to the attribute that has been specified + to become the feature ID + +## 1.32.10 + +* Fix a bug that disallowed a per-feature minzoom of 0 + +## 1.32.9 + +* Limit tile detail to 30 and buffer size to 127 to prevent coordinate + delta overflow in vector tiles. + +## 1.32.8 + +* Better error message if the output tileset already exists + +## 1.32.7 + +* Point features may now be coalesced into MultiPoint features with --coalesce. +* Add --hilbert option to put features in Hilbert Curve sequence + +## 1.32.6 + +* Make it an error, not a warning, to have missing coordinates for a point + +## 1.32.5 + +* Use less memory on lines and polygons that are too small for the tile +* Fix coordinate rounding problem that was causing --grid-low-zooms grids + to be lost at low zooms if the original polygons were not aligned to + tile boundaries + +## 1.32.4 + +* Ignore leading zeroes when converting string attributes to feature IDs + +## 1.32.3 + +* Add an option to convert stringified number feature IDs to numbers +* Add an option to use a specified feature attribute as the feature ID + +## 1.32.2 + +* Warn in tile-join if tilesets being joined have inconsistent maxzooms + ## 1.32.1 * Fix null pointer crash when reading filter output that does not diff --git a/Makefile b/Makefile index cad2b181c..ae542a1f1 100644 --- a/Makefile +++ b/Makefile @@ -89,13 +89,15 @@ suffixes = json json.gz # Work around Makefile and filename punctuation limits: _ for space, @ for :, % for / %.json.check: - ./tippecanoe -q -a@ -f -o $@.mbtiles $(subst @,:,$(subst %,/,$(subst _, ,$(patsubst %.json.check,%,$(word 4,$(subst /, ,$@)))))) $(foreach suffix,$(suffixes),$(wildcard $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/*.$(suffix))) < /dev/null + ./tippecanoe -q -a@ -f -o $@.mbtiles $(subst @,:,$(subst %,/,$(subst _, ,$(patsubst %.json.check,%,$(word 4,$(subst /, ,$@)))))) $(foreach suffix,$(suffixes),$(sort $(wildcard $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/*.$(suffix)))) < /dev/null ./tippecanoe-decode -x generator $@.mbtiles > $@.out cmp $@.out $(patsubst %.check,%,$@) rm $@.out $@.mbtiles # Don't test overflow with geobuf, because it fails (https://github.com/mapbox/geobuf/issues/87) -geobuf-test: tippecanoe-json-tool $(addsuffix .checkbuf,$(filter-out tests/overflow/out/-z0.json,$(TESTS))) +# Don't test stringids with geobuf, because it fails +nogeobuf = tests/overflow/out/-z0.json $(wildcard tests/stringid/out/*.json) +geobuf-test: tippecanoe-json-tool $(addsuffix .checkbuf,$(filter-out $(nogeobuf),$(TESTS))) # For quicker address sanitizer build, hope that regular JSON parsing is tested enough by parallel and join tests fewer-tests: tippecanoe tippecanoe-decode geobuf-test raw-tiles-test parallel-test pbf-test join-test enumerate-test decode-test join-filter-test unit @@ -104,8 +106,8 @@ fewer-tests: tippecanoe tippecanoe-decode geobuf-test raw-tiles-test parallel-te %.json.checkbuf: for i in $(wildcard $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/*.json); do ./tippecanoe-json-tool -w $$i | ./node_modules/geobuf/bin/json2geobuf > $$i.geobuf; done for i in $(wildcard $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/*.json.gz); do gzip -dc $$i | ./tippecanoe-json-tool -w | ./node_modules/geobuf/bin/json2geobuf > $$i.geobuf; done - ./tippecanoe -q -a@ -f -o $@.mbtiles $(subst @,:,$(subst %,/,$(subst _, ,$(patsubst %.json.checkbuf,%,$(word 4,$(subst /, ,$@)))))) $(foreach suffix,$(suffixes),$(addsuffix .geobuf,$(wildcard $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/*.$(suffix)))) < /dev/null - ./tippecanoe-decode -x generator $@.mbtiles | sed 's/checkbuf/check/g' > $@.out + ./tippecanoe -q -a@ -f -o $@.mbtiles $(subst @,:,$(subst %,/,$(subst _, ,$(patsubst %.json.checkbuf,%,$(word 4,$(subst /, ,$@)))))) $(foreach suffix,$(suffixes),$(addsuffix .geobuf,$(sort $(wildcard $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/*.$(suffix))))) < /dev/null + ./tippecanoe-decode -x generator $@.mbtiles | sed 's/checkbuf/check/g' | sed 's/\.geobuf//g' > $@.out cmp $@.out $(patsubst %.checkbuf,%,$@) rm $@.out $@.mbtiles @@ -123,12 +125,12 @@ parallel-test: cat tests/parallel/in[1234].json | ./tippecanoe -q -z5 -f -pi -l test -n test -P -o tests/parallel/parallel-pipe.mbtiles cat tests/parallel/in[1234].json | sed 's/^/@/' | tr '@' '\036' | ./tippecanoe -q -z5 -f -pi -l test -n test -o tests/parallel/implicit-pipe.mbtiles ./tippecanoe -q -z5 -f -pi -l test -n test -P -o tests/parallel/parallel-pipes.mbtiles <(cat tests/parallel/in1.json) <(cat tests/parallel/empty1.json) <(cat tests/parallel/empty2.json) <(cat tests/parallel/in2.json) /dev/null <(cat tests/parallel/in3.json) <(cat tests/parallel/in4.json) - ./tippecanoe-decode -x generator tests/parallel/linear-file.mbtiles > tests/parallel/linear-file.json - ./tippecanoe-decode -x generator tests/parallel/parallel-file.mbtiles > tests/parallel/parallel-file.json - ./tippecanoe-decode -x generator tests/parallel/linear-pipe.mbtiles > tests/parallel/linear-pipe.json - ./tippecanoe-decode -x generator tests/parallel/parallel-pipe.mbtiles > tests/parallel/parallel-pipe.json - ./tippecanoe-decode -x generator tests/parallel/implicit-pipe.mbtiles > tests/parallel/implicit-pipe.json - ./tippecanoe-decode -x generator tests/parallel/parallel-pipes.mbtiles > tests/parallel/parallel-pipes.json + ./tippecanoe-decode -x generator -x generator_options tests/parallel/linear-file.mbtiles > tests/parallel/linear-file.json + ./tippecanoe-decode -x generator -x generator_options tests/parallel/parallel-file.mbtiles > tests/parallel/parallel-file.json + ./tippecanoe-decode -x generator -x generator_options tests/parallel/linear-pipe.mbtiles > tests/parallel/linear-pipe.json + ./tippecanoe-decode -x generator -x generator_options tests/parallel/parallel-pipe.mbtiles > tests/parallel/parallel-pipe.json + ./tippecanoe-decode -x generator -x generator_options tests/parallel/implicit-pipe.mbtiles > tests/parallel/implicit-pipe.json + ./tippecanoe-decode -x generator -x generator_options tests/parallel/parallel-pipes.mbtiles > tests/parallel/parallel-pipes.json cmp tests/parallel/linear-file.json tests/parallel/parallel-file.json cmp tests/parallel/linear-file.json tests/parallel/linear-pipe.json cmp tests/parallel/linear-file.json tests/parallel/parallel-pipe.json @@ -140,7 +142,14 @@ raw-tiles-test: ./tippecanoe -q -f -e tests/raw-tiles/raw-tiles -r1 -pC tests/raw-tiles/hackspots.geojson ./tippecanoe-decode -x generator tests/raw-tiles/raw-tiles > tests/raw-tiles/raw-tiles.json.check cmp tests/raw-tiles/raw-tiles.json.check tests/raw-tiles/raw-tiles.json - rm -rf tests/raw-tiles/raw-tiles tests/raw-tiles/compare.json.check + # Test that -z and -Z work in tippecanoe-decode + ./tippecanoe-decode -x generator -Z6 -z7 tests/raw-tiles/raw-tiles > tests/raw-tiles/raw-tiles-z67.json.check + cmp tests/raw-tiles/raw-tiles-z67.json.check tests/raw-tiles/raw-tiles-z67.json + # Test that -z and -Z work in tile-join + ./tile-join -q -f -Z6 -z7 -e tests/raw-tiles/raw-tiles-z67 tests/raw-tiles/raw-tiles + ./tippecanoe-decode -x generator tests/raw-tiles/raw-tiles-z67 > tests/raw-tiles/raw-tiles-z67-join.json.check + cmp tests/raw-tiles/raw-tiles-z67-join.json.check tests/raw-tiles/raw-tiles-z67-join.json + rm -rf tests/raw-tiles/raw-tiles tests/raw-tiles/raw-tiles-z67 tests/raw-tiles/raw-tiles.json.check raw-tiles-z67.json.check tests/raw-tiles/raw-tiles-z67-join.json.check # Test that metadata.json is created even if all features are clipped away ./tippecanoe -q -f -e tests/raw-tiles/nothing tests/raw-tiles/nothing.geojson ./tippecanoe-decode -x generator tests/raw-tiles/nothing > tests/raw-tiles/nothing.json.check @@ -204,7 +213,7 @@ join-test: tile-join cmp tests/join-population/merged.mbtiles.json.check tests/join-population/merged.mbtiles.json cmp tests/join-population/windows.mbtiles.json.check tests/join-population/windows.mbtiles.json rm -f tests/join-population/joined-null.mbtiles tests/join-population/joined-null.mbtiles.json.check - ./tile-join -q -f -l macarthur -n "macarthur name" -N "macarthur description" -A "macarthur attribution" -o tests/join-population/just-macarthur.mbtiles tests/join-population/merged.mbtiles + ./tile-join -q -f -l macarthur -n "macarthur name" -N "macarthur description" -A "macarthur's attribution" -o tests/join-population/just-macarthur.mbtiles tests/join-population/merged.mbtiles ./tile-join -q -f -L macarthur -o tests/join-population/no-macarthur.mbtiles tests/join-population/merged.mbtiles ./tippecanoe-decode -x generator tests/join-population/just-macarthur.mbtiles > tests/join-population/just-macarthur.mbtiles.json.check ./tippecanoe-decode -x generator tests/join-population/no-macarthur.mbtiles > tests/join-population/no-macarthur.mbtiles.json.check @@ -222,21 +231,21 @@ join-test: tile-join cmp tests/join-population/merged-folder.mbtiles.json.check tests/join-population/merged-folder.mbtiles.json ./tile-join -q -n "merged name" -N "merged description" -f -e tests/join-population/merged-mbtiles-to-folder tests/join-population/tabblock_06001420.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur2.mbtiles ./tile-join -q -n "merged name" -N "merged description" -f -e tests/join-population/merged-folders-to-folder tests/join-population/tabblock_06001420-folder tests/join-population/macarthur-folder tests/join-population/macarthur2-folder - ./tippecanoe-decode -x generator tests/join-population/merged-mbtiles-to-folder > tests/join-population/merged-mbtiles-to-folder.json.check - ./tippecanoe-decode -x generator tests/join-population/merged-folders-to-folder > tests/join-population/merged-folders-to-folder.json.check + ./tippecanoe-decode -x generator -x generator_options tests/join-population/merged-mbtiles-to-folder > tests/join-population/merged-mbtiles-to-folder.json.check + ./tippecanoe-decode -x generator -x generator_options tests/join-population/merged-folders-to-folder > tests/join-population/merged-folders-to-folder.json.check cmp tests/join-population/merged-mbtiles-to-folder.json.check tests/join-population/merged-folders-to-folder.json.check rm -f tests/join-population/merged-mbtiles-to-folder.json.check tests/join-population/merged-folders-to-folder.json.check ./tile-join -q -f -c tests/join-population/windows.csv -o tests/join-population/windows-merged.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur2-folder ./tile-join -q -c tests/join-population/windows.csv -f -e tests/join-population/windows-merged-folder tests/join-population/macarthur.mbtiles tests/join-population/macarthur2-folder ./tile-join -q -f -o tests/join-population/windows-merged2.mbtiles tests/join-population/windows-merged-folder - ./tippecanoe-decode -x generator tests/join-population/windows-merged.mbtiles > tests/join-population/windows-merged.mbtiles.json.check - ./tippecanoe-decode -x generator tests/join-population/windows-merged2.mbtiles > tests/join-population/windows-merged2.mbtiles.json.check + ./tippecanoe-decode -x generator -x generator_options tests/join-population/windows-merged.mbtiles > tests/join-population/windows-merged.mbtiles.json.check + ./tippecanoe-decode -x generator -x generator_options tests/join-population/windows-merged2.mbtiles > tests/join-population/windows-merged2.mbtiles.json.check cmp tests/join-population/windows-merged.mbtiles.json.check tests/join-population/windows-merged2.mbtiles.json.check ./tile-join -q -f -o tests/join-population/macarthur-and-macarthur2-merged.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur2-folder ./tile-join -q -f -e tests/join-population/macarthur-and-macarthur2-folder tests/join-population/macarthur.mbtiles tests/join-population/macarthur2-folder ./tile-join -q -f -o tests/join-population/macarthur-and-macarthur2-merged2.mbtiles tests/join-population/macarthur-and-macarthur2-folder - ./tippecanoe-decode -x generator tests/join-population/macarthur-and-macarthur2-merged.mbtiles > tests/join-population/macarthur-and-macarthur2-merged.mbtiles.json.check - ./tippecanoe-decode -x generator tests/join-population/macarthur-and-macarthur2-merged2.mbtiles > tests/join-population/macarthur-and-macarthur2-merged2.mbtiles.json.check + ./tippecanoe-decode -x generator -x generator_options tests/join-population/macarthur-and-macarthur2-merged.mbtiles > tests/join-population/macarthur-and-macarthur2-merged.mbtiles.json.check + ./tippecanoe-decode -x generator -x generator_options tests/join-population/macarthur-and-macarthur2-merged2.mbtiles > tests/join-population/macarthur-and-macarthur2-merged2.mbtiles.json.check cmp tests/join-population/macarthur-and-macarthur2-merged.mbtiles.json.check tests/join-population/macarthur-and-macarthur2-merged2.mbtiles.json.check rm tests/join-population/tabblock_06001420.mbtiles tests/join-population/joined.mbtiles tests/join-population/joined-i.mbtiles tests/join-population/joined.mbtiles.json.check tests/join-population/joined-i.mbtiles.json.check tests/join-population/macarthur.mbtiles tests/join-population/merged.mbtiles tests/join-population/merged.mbtiles.json.check tests/join-population/merged-folder.mbtiles tests/join-population/macarthur2.mbtiles tests/join-population/windows.mbtiles tests/join-population/windows-merged.mbtiles tests/join-population/windows-merged2.mbtiles tests/join-population/windows.mbtiles.json.check tests/join-population/just-macarthur.mbtiles tests/join-population/no-macarthur.mbtiles tests/join-population/just-macarthur.mbtiles.json.check tests/join-population/no-macarthur.mbtiles.json.check tests/join-population/merged-folder.mbtiles.json.check tests/join-population/windows-merged.mbtiles.json.check tests/join-population/windows-merged2.mbtiles.json.check tests/join-population/macarthur-and-macarthur2-merged.mbtiles tests/join-population/macarthur-and-macarthur2-merged2.mbtiles tests/join-population/macarthur-and-macarthur2-merged.mbtiles.json.check tests/join-population/macarthur-and-macarthur2-merged2.mbtiles.json.check rm -rf tests/join-population/raw-merged-folder tests/join-population/tabblock_06001420-folder tests/join-population/macarthur-folder tests/join-population/macarthur2-folder tests/join-population/merged-mbtiles-to-folder tests/join-population/merged-folders-to-folder tests/join-population/windows-merged-folder tests/join-population/macarthur-and-macarthur2-folder @@ -249,7 +258,7 @@ join-test: tile-join rm -f tests/join-population/renamed.mbtiles.json.check tests/join-population/renamed.mbtiles.json.check tests/join-population/macarthur.mbtiles tests/join-population/macarthur2.mbtiles # Make sure the concatenated name isn't too long ./tippecanoe -q -f -z0 -n 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' -o tests/join-population/macarthur.mbtiles tests/join-population/macarthur.json - ./tile-join -o tests/join-population/concat.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles + ./tile-join -f -o tests/join-population/concat.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles ./tippecanoe-decode -x generator tests/join-population/concat.mbtiles > tests/join-population/concat.mbtiles.json.check cmp tests/join-population/concat.mbtiles.json.check tests/join-population/concat.mbtiles.json rm tests/join-population/concat.mbtiles.json.check tests/join-population/concat.mbtiles tests/join-population/macarthur.mbtiles @@ -284,8 +293,8 @@ allow-existing-test: if ./tippecanoe -q -Z1 -z1 -o tests/allow-existing/both.mbtiles tests/coalesce-tract/tl_2010_06001_tract10.json; then exit 1; else exit 0; fi # Replace existing ./tippecanoe -q -Z8 -z9 -f -o tests/allow-existing/both.mbtiles tests/coalesce-tract/tl_2010_06001_tract10.json - ./tippecanoe q- -Z10 -z11 -F -o tests/allow-existing/both.mbtiles tests/coalesce-tract/tl_2010_06001_tract10.json - ./tippecanoe-decode -x generator tests/allow-existing/both.mbtiles > tests/allow-existing/both.mbtiles.json.check + ./tippecanoe -q -Z10 -z11 -F -o tests/allow-existing/both.mbtiles tests/coalesce-tract/tl_2010_06001_tract10.json + ./tippecanoe-decode -x generator -x generator_options tests/allow-existing/both.mbtiles > tests/allow-existing/both.mbtiles.json.check cmp tests/allow-existing/both.mbtiles.json.check tests/allow-existing/both.mbtiles.json # Make a tileset ./tippecanoe -q -Z0 -z0 -f -e tests/allow-existing/both.dir tests/coalesce-tract/tl_2010_06001_tract10.json @@ -294,14 +303,14 @@ allow-existing-test: # Replace existing ./tippecanoe -q -Z8 -z9 -f -e tests/allow-existing/both.dir tests/coalesce-tract/tl_2010_06001_tract10.json ./tippecanoe -q -Z10 -z11 -F -e tests/allow-existing/both.dir tests/coalesce-tract/tl_2010_06001_tract10.json - ./tippecanoe-decode -x generator tests/allow-existing/both.dir | sed 's/both\.dir/both.mbtiles/g' > tests/allow-existing/both.dir.json.check + ./tippecanoe-decode -x generator -x generator_options tests/allow-existing/both.dir | sed 's/both\.dir/both.mbtiles/g' > tests/allow-existing/both.dir.json.check cmp tests/allow-existing/both.dir.json.check tests/allow-existing/both.mbtiles.json rm -r tests/allow-existing/both.dir.json.check tests/allow-existing/both.dir tests/allow-existing/both.mbtiles.json.check tests/allow-existing/both.mbtiles csv-test: # Reading from named CSV ./tippecanoe -q -zg -f -o tests/csv/out.mbtiles tests/csv/ne_110m_populated_places_simple.csv - ./tippecanoe-decode -x generator tests/csv/out.mbtiles > tests/csv/out.mbtiles.json.check + ./tippecanoe-decode -x generator -x generator_options tests/csv/out.mbtiles > tests/csv/out.mbtiles.json.check cmp tests/csv/out.mbtiles.json.check tests/csv/out.mbtiles.json rm -f tests/csv/out.mbtiles.json.check tests/csv/out.mbtiles # Reading from named CSV, with nulls @@ -311,19 +320,19 @@ csv-test: rm -f tests/csv/out-null.mbtiles.json.check tests/csv/out-null.mbtiles # Same, but specifying csv with -L format ./tippecanoe -q -zg -f -o tests/csv/out.mbtiles -L'{"file":"", "format":"csv", "layer":"ne_110m_populated_places_simple"}' < tests/csv/ne_110m_populated_places_simple.csv - ./tippecanoe-decode -x generator tests/csv/out.mbtiles > tests/csv/out.mbtiles.json.check + ./tippecanoe-decode -x generator -x generator_options tests/csv/out.mbtiles > tests/csv/out.mbtiles.json.check cmp tests/csv/out.mbtiles.json.check tests/csv/out.mbtiles.json rm -f tests/csv/out.mbtiles.json.check tests/csv/out.mbtiles layer-json-test: # GeoJSON with description and named layer ./tippecanoe -q -z0 -r1 -yNAME -f -o tests/layer-json/out.mbtiles -L'{"file":"tests/ne_110m_populated_places/in.json", "description":"World cities", "layer":"places"}' - ./tippecanoe-decode -x generator tests/layer-json/out.mbtiles > tests/layer-json/out.mbtiles.json.check + ./tippecanoe-decode -x generator -x generator_options tests/layer-json/out.mbtiles > tests/layer-json/out.mbtiles.json.check cmp tests/layer-json/out.mbtiles.json.check tests/layer-json/out.mbtiles.json rm -f tests/layer-json/out.mbtiles.json.check tests/layer-json/out.mbtiles # Same, but reading from the standard input ./tippecanoe -q -z0 -r1 -yNAME -f -o tests/layer-json/out.mbtiles -L'{"file":"", "description":"World cities", "layer":"places"}' < tests/ne_110m_populated_places/in.json - ./tippecanoe-decode -x generator tests/layer-json/out.mbtiles > tests/layer-json/out.mbtiles.json.check + ./tippecanoe-decode -x generator -x generator_options tests/layer-json/out.mbtiles > tests/layer-json/out.mbtiles.json.check cmp tests/layer-json/out.mbtiles.json.check tests/layer-json/out.mbtiles.json rm -f tests/layer-json/out.mbtiles.json.check tests/layer-json/out.mbtiles @@ -333,7 +342,7 @@ layer-json-test: prep-test: $(TESTS) tests/%.json: Makefile tippecanoe tippecanoe-decode - ./tippecanoe -q -f -o $@.check.mbtiles $(subst @,:,$(subst %,/,$(subst _, ,$(patsubst %.json,%,$(word 4,$(subst /, ,$@)))))) $(foreach suffix,$(suffixes),$(wildcard $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/*.$(suffix))) + ./tippecanoe -q -a@ -f -o $@.check.mbtiles $(subst @,:,$(subst %,/,$(subst _, ,$(patsubst %.json,%,$(word 4,$(subst /, ,$@)))))) $(foreach suffix,$(suffixes),$(sort $(wildcard $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/*.$(suffix)))) ./tippecanoe-decode -x generator $@.check.mbtiles > $@ cmp $(patsubst %.check,%,$@) $@ rm $@.check.mbtiles diff --git a/README.md b/README.md index 416fa1804..40f0d32a2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ tippecanoe ========== -Builds [vector tilesets](https://www.mapbox.com/developers/vector-tiles/) from large (or small) collections of [GeoJSON](http://geojson.org/), [Geobuf](https://github.com/mapbox/geobuf), or [CSV](https://en.wikipedia.org/wiki/Comma-separated_values) features, +**Note**: there is an active fork of this project over at https://github.com/felt/tippecanoe + +Builds [vector tilesets](https://docs.mapbox.com/data/tilesets/guides/vector-tiles-introduction/) from large (or small) collections of [GeoJSON](http://geojson.org/), [Geobuf](https://github.com/mapbox/geobuf), or [CSV](https://en.wikipedia.org/wiki/Comma-separated_values) features, [like these](MADE_WITH.md). ![Mapbox Tippecanoe](https://user-images.githubusercontent.com/1951835/36568734-ede27ec0-17df-11e8-8c22-ffaaebb8daf4.JPG) @@ -9,6 +11,21 @@ Builds [vector tilesets](https://www.mapbox.com/developers/vector-tiles/) from l [![Build Status](https://travis-ci.org/mapbox/tippecanoe.svg)](https://travis-ci.org/mapbox/tippecanoe) [![Coverage Status](https://codecov.io/gh/mapbox/tippecanoe/branch/master/graph/badge.svg)](https://codecov.io/gh/mapbox/tippecanoe) +### :zap: Mapbox has a new service for creating vector tilesets! :zap: + +[Mapbox Tiling Service (MTS)](https://docs.mapbox.com/mapbox-tiling-service/overview/) is a hosted, data processing service that allows you to integrate custom datasets of any scale into your maps faster, cheaper, and with more flexibility and control than previously possible. + +MTS is the same service we use internally to create our global, daily updating basemap product Mapbox Streets, which serves over 650 million monthly active users and customers such as Facebook, Snap, the Weather Channel, Tableau, and Shopify. + +MTS creates and updates data using distributed and parallelized processing, meaning data is processed much more quickly than is possible with a standard, single server setup with comparable tools. For example, a global basemap at 30cm precision (max zoom of 16) can be processed in under 2 hours with MTS, whereas a comparable workload would take multiple days to process on a single server. + +Customers like AllTrails, Plume Labs, and Ookla have noted that MTS helps them: +- build applications faster by focusing more on app development, not infrastructure +- build more compelling user experiences that drive better user engagement +- get updated data to their users faster—in some cases up to 90% faster than previous tools + +Learn more about [MTS](https://blog.mapbox.com/introducing-mapbox-tiling-service-df1df636c7cf). + Intent ------ @@ -42,7 +59,7 @@ $ brew install tippecanoe On Ubuntu it will usually be easiest to build from the source repository: ```sh -$ git clone git@github.com:mapbox/tippecanoe.git +$ git clone https://github.com/mapbox/tippecanoe.git $ cd tippecanoe $ make -j $ make install @@ -73,7 +90,7 @@ Try this first If you aren't sure what options to use, try this: ```sh -$ tippecanoe -o out.mbtiles -zg --drop-densest-as-needed in.geojson +$ tippecanoe -zg -o out.mbtiles --drop-densest-as-needed in.geojson ``` The `-zg` option will make Tippecanoe choose a maximum zoom level that should be @@ -238,6 +255,33 @@ As above, but * `-l counties`: Specify the layer name instead of letting it be derived from the source file names +### Selectively remove and replace features (Census tracts) to update a tileset + +``` +# Retrieve and tile California 2000 Census tracts +curl -L -O https://www2.census.gov/geo/tiger/TIGER2010/TRACT/2000/tl_2010_06_tract00.zip +unzip tl_2010_06_tract00.zip +ogr2ogr -f GeoJSON tl_2010_06_tract00.shp.json tl_2010_06_tract00.shp +tippecanoe -z11 -o tracts.mbtiles -l tracts tl_2010_06_tract00.shp.json + +# Create a copy of the tileset, minus Alameda County (FIPS code 001) +tile-join -j '{"*":["none",["==","COUNTYFP00","001"]]}' -f -o tracts-filtered.mbtiles tracts.mbtiles + +# Retrieve and tile Alameda County Census tracts for 2010 +curl -L -O https://www2.census.gov/geo/tiger/TIGER2010/TRACT/2010/tl_2010_06001_tract10.zip +unzip tl_2010_06001_tract10.zip +ogr2ogr -f GeoJSON tl_2010_06001_tract10.shp.json tl_2010_06001_tract10.shp +tippecanoe -z11 -o tracts-added.mbtiles -l tracts tl_2010_06001_tract10.shp.json + +# Merge the filtered tileset and the tileset of new tracts into a final tileset +tile-join -o tracts-final.mbtiles tracts-filtered.mbtiles tracts-added.mbtiles +``` + +The `-z11` option explicitly specifies the maxzoom, to make sure both the old and new tilesets have the same zoom range. + +The `-j` option to `tile-join` specifies a filter, so that only the desired features will be copied to the new tileset. +This filter excludes (using `none`) any features whose FIPS code (`COUNTYFP00`) is the code for Alameda County (`001`). + Options ------- @@ -323,6 +367,37 @@ Parallel processing will also be automatic if the input file is in Geobuf format * `-R` _zoom_`/`_x_`/`_y_ or `--one-tile=`_zoom_`/`_x_`/`_y_: Set the minzoom and maxzoom to _zoom_ and produce only the single specified tile at that zoom level. +If you know the precision to which you want your data to be represented, +or the map scale of a corresponding printed map, +this table shows the approximate precision and scale corresponding to various +`-z` options if you use the default `-d` detail of 12: + +zoom level | precision (ft) | precision (m) | map scale +---------- | -------------- | ------------- | --------- +`-z0` | 32000 ft | 10000 m | 1:320,000,000 +`-z1` | 16000 ft | 5000 m | 1:160,000,000 +`-z2` | 8000 ft | 2500 m | 1:80,000,000 +`-z3` | 4000 ft | 1250 m | 1:40,000,000 +`-z4` | 2000 ft | 600 m | 1:20,000,000 +`-z5` | 1000 ft | 300 m | 1:10,000,000 +`-z6` | 500 ft | 150 m | 1:5,000,000 +`-z7` | 250 ft | 80 m | 1:2,500,000 +`-z8` | 125 ft | 40 m | 1:1,250,000 +`-z9` | 64 ft | 20 m | 1:640,000 +`-z10` | 32 ft | 10 m | 1:320,000 +`-z11` | 16 ft | 5 m | 1:160,000 +`-z12` | 8 ft | 2 m | 1:80,000 +`-z13` | 4 ft | 1 m | 1:40,000 +`-z14` | 2 ft | 0.5 m | 1:20,000 +`-z15` | 1 ft | 0.25 m | 1:10,000 +`-z16` | 6 in | 15 cm | 1:5000 +`-z17` | 3 in | 8 cm | 1:2500 +`-z18` | 1.5 in | 4 cm | 1:1250 +`-z19` | 0.8 in | 2 cm | 1:600 +`-z20` | 0.4 in | 1 cm | 1:300 +`-z21` | 0.2 in | 0.5 cm | 1:150 +`-z22` | 0.1 in | 0.25 cm | 1:75 + ### Tile resolution * `-d` _detail_ or `--full-detail=`_detail_: Detail at max zoom level (default 12, for tile resolution of 2^12=4096) @@ -335,8 +410,8 @@ resolution is obtained than by using a smaller _maxzoom_ or _detail_. ### Filtering feature attributes - * `-x` _name_ or `--exclude=`_name_: Exclude the named attributes from all features - * `-y` _name_ or `--include=`_name_: Include the named attributes in all features, excluding all those not explicitly named + * `-x` _name_ or `--exclude=`_name_: Exclude the named attributes from all features. You can specify multiple `-x` options to exclude several attributes. (Don't comma-separate names within a single `-x`.) + * `-y` _name_ or `--include=`_name_: Include the named attributes in all features, excluding all those not explicitly named. You can specify multiple `-y` options to explicitly include several attributes. (Don't comma-separate names within a single `-y`.) * `-X` or `--exclude-all`: Exclude all attributes and encode only geometries ### Modifying feature attributes @@ -352,10 +427,12 @@ resolution is obtained than by using a smaller _maxzoom_ or _detail_. `sum`, `product`, `mean`, `max`, `min`, `concat`, or `comma` to specify how the named _attribute_ is accumulated onto the attribute of the same name in a feature that does survive. * `-pe` or `--empty-csv-columns-are-null`: Treat empty CSV columns as nulls rather than as empty strings. + * `-aI` or `--convert-stringified-ids-to-numbers`: If a feature ID is the string representation of a number, convert it to a plain number to use as the feature ID. + * `--use-attribute-for-id=`*name*: Use the attribute with the specified *name* as if it were specified as the feature ID. (If this attribute is a stringified number, you must also use `-aI` to convert it to a number.) ### Filtering features by attributes - * `-j` *filter* or `--feature-filter`=*filter*: Check features against a per-layer filter (as defined in the [Mapbox GL Style Specification](https://www.mapbox.com/mapbox-gl-js/style-spec/#types-filter)) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer `"*"` apply to all layers. The special variable `$zoom` refers to the current zoom level. + * `-j` *filter* or `--feature-filter`=*filter*: Check features against a per-layer filter (as defined in the [Mapbox GL Style Specification](https://docs.mapbox.com/mapbox-gl-js/style-spec/#other-filter)) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer `"*"` apply to all layers. The special variable `$zoom` refers to the current zoom level. * `-J` *filter-file* or `--feature-filter-file`=*filter-file*: Like `-j`, but read the filter from a file. Example: to find the Natural Earth countries with low `scalerank` but high `LABELRANK`: @@ -400,11 +477,11 @@ the same layer, enclose them in an `all` expression so they will all be evaluate * `-as` or `--drop-densest-as-needed`: If a tile is too large, try to reduce it to under 500K by increasing the minimum spacing between features. The discovered spacing applies to the entire zoom level. * `-ad` or `--drop-fraction-as-needed`: Dynamically drop some fraction of features from each zoom level to keep large tiles under the 500K size limit. (This is like `-pd` but applies to the entire zoom level, not to each tile.) * `-an` or `--drop-smallest-as-needed`: Dynamically drop the smallest features (physically smallest: the shortest lines or the smallest polygons) from each zoom level to keep large tiles under the 500K size limit. This option will not work for point features. - * `-aN` or `--coalesce-smallest-as-needed`: Dynamically combine the smallest features (physically smallest: the shortest lines or the smallest polygons) from each zoom level into other nearby features to keep large tiles under the 500K size limit. This option will not work for point features, and will probably not help very much with LineStrings. It is mostly intended for polygons, to maintain the full original area covered by polygons while still reducing the feature count somehow. The attributes of the small polygons are *not* preserved into the combined features, only their geometry. + * `-aN` or `--coalesce-smallest-as-needed`: Dynamically combine the smallest features (physically smallest: the shortest lines or the smallest polygons) from each zoom level into other nearby features to keep large tiles under the 500K size limit. This option will not work for point features, and will probably not help very much with LineStrings. It is mostly intended for polygons, to maintain the full original area covered by polygons while still reducing the feature count somehow. The attributes of the small polygons are *not* preserved into the combined features (except through `--accumulate-attribute`), only their geometry. Furthermore, the polygons to which nested polygons are coalesced may not necessarily be the immediately enclosing features. * `-aD` or `--coalesce-densest-as-needed`: Dynamically combine the densest features from each zoom level into other nearby features to keep large tiles under the 500K size limit. (Again, mostly useful for polygons.) * `-aS` or `--coalesce-fraction-as-needed`: Dynamically combine a fraction of features from each zoom level into other nearby features to keep large tiles under the 500K size limit. (Again, mostly useful for polygons.) * `-pd` or `--force-feature-limit`: Dynamically drop some fraction of features from large tiles to keep them under the 500K size limit. It will probably look ugly at the tile boundaries. (This is like `-ad` but applies to each tile individually, not to the entire zoom level.) You probably don't want to use this. - * `-aC` or `--cluster-densest-as-needed`: If a tile is too large, try to reduce its size by increasing the minimum spacing between features, and leaving one placeholder feature from each group. The remaining feature will be given a `"cluster": true` attribute to indicate that it represents a cluster, a `"point_count"` attribute to indicate the number of features that were clustered into it, and a `"sqrt_point_count"` attribute to indicate the relative width of a feature to represent the cluster. If the features being clustered are points, the representative feature will be located at the average of the original points' locations; otherwise, one of the original features will be left as the representative. + * `-aC` or `--cluster-densest-as-needed`: If a tile is too large, try to reduce its size by increasing the minimum spacing between features, and leaving one placeholder feature from each group. The remaining feature will be given a `"clustered": true` attribute to indicate that it represents a cluster, a `"point_count"` attribute to indicate the number of features that were clustered into it, and a `"sqrt_point_count"` attribute to indicate the relative width of a feature to represent the cluster. If the features being clustered are points, the representative feature will be located at the average of the original points' locations; otherwise, one of the original features will be left as the representative. ### Dropping tightly overlapping features @@ -417,6 +494,7 @@ the same layer, enclose them in an `all` expression so they will all be evaluate the line or polygon within one tile unit of its proper location. You can probably go up to about 10 without too much visible difference. * `-ps` or `--no-line-simplification`: Don't simplify lines and polygons * `-pS` or `--simplify-only-low-zooms`: Don't simplify lines and polygons at maxzoom (but do simplify at lower zooms) + * `-pn` or `--no-simplification-of-shared-nodes`: Don't simplify away nodes that appear in more than one feature or are used multiple times within the same feature, so that the intersection node will not be lost from intersecting roads. (This will not be effective if you also use `--coalesce` or `--detect-shared-borders`.) * `-pt` or `--no-tiny-polygon-reduction`: Don't combine the area of very small polygons into small squares that represent their combined area. ### Attempts to improve shared polygon boundaries @@ -433,9 +511,10 @@ the same layer, enclose them in an `all` expression so they will all be evaluate ### Reordering features within each tile * `-pi` or `--preserve-input-order`: Preserve the original input order of features as the drawing order instead of ordering geographically. (This is implemented as a restoration of the original order at the end, so that dot-dropping is still geographic, which means it also undoes `-ao`). - * `-ao` or `--reorder`: Reorder features to put ones with the same attributes in sequence, to try to get them to coalesce. You probably want to use this if you use `--coalesce`. - * `-ac` or `--coalesce`: Coalesce adjacent line and polygon features that have the same attributes. This can be useful if you have lots of small polygons with identical attributes and you would like to merge them together. + * `-ac` or `--coalesce`: Coalesce consecutive features that have the same attributes. This can be useful if you have lots of small polygons with identical attributes and you would like to merge them together. + * `-ao` or `--reorder`: Reorder features to put ones with the same attributes in sequence (instead of ones that are approximately spatially adjacent), to try to get them to coalesce. You probably want to use this if you use `--coalesce`. * `-ar` or `--reverse`: Try reversing the directions of lines to make them coalesce and compress better. You probably don't want to use this. + * `-ah` or `--hilbert`: Put features in Hilbert Curve order instead of the usual Z-Order. This improves the odds that spatially adjacent features will be sequentially adjacent, and should improve density calculations and spatial coalescing. It should be the default eventually. ### Adding calculated attributes @@ -444,7 +523,7 @@ the same layer, enclose them in an `all` expression so they will all be evaluate ### Trying to correct bad source geometry - * `-aw` or `--detect-longitude-wraparound`: Detect when adjacent points within a feature jump to the other side of the world, and try to fix the geometry. + * `-aw` or `--detect-longitude-wraparound`: Detect when consecutive points within a feature jump to the other side of the world, and try to fix the geometry. * `-pw` or `--use-source-polygon-winding`: Instead of respecting GeoJSON polygon ring order, use the original polygon winding in the source data to distinguish inner (clockwise) and outer (counterclockwise) polygon rings. * `-pW` or `--reverse-source-polygon-winding`: Instead of respecting GeoJSON polygon ring order, use the opposite of the original polygon winding in the source data to distinguish inner (counterclockwise) and outer (clockwise) polygon rings. * `--clip-bounding-box=`*minlon*`,`*minlat*`,`*maxlon*`,`*maxlat*: Clip all features to the specified bounding box. @@ -455,7 +534,7 @@ the same layer, enclose them in an `all` expression so they will all be evaluate * `-O` _features_ or `--maximum-tile-features=`_features_: Use the specified number of _features_ as the maximum in a tile instead of 200,000. * `-pf` or `--no-feature-limit`: Don't limit tiles to 200,000 features * `-pk` or `--no-tile-size-limit`: Don't limit tiles to 500K bytes - * `-pC` or `--no-tile-compression`: Don't compress the PBF vector tile data. + * `-pC` or `--no-tile-compression`: Don't compress the PBF vector tile data. If you are getting "Unimplemented type 3" error messages from a renderer, it is probably because it expects uncompressed tiles using this option rather than the normal gzip-compressed tiles. * `-pg` or `--no-tile-stats`: Don't generate the `tilestats` row in the tileset metadata. Uploads without [tilestats](https://github.com/mapbox/mapbox-geostats) will take longer to process. * `--tile-stats-attributes-limit=`*count*: Include `tilestats` information about at most *count* attributes instead of the default 1000. * `--tile-stats-sample-values-limit=`*count*: Calculate `tilestats` attribute statistics based on *count* values instead of the default 1000. @@ -564,6 +643,12 @@ the filename or name specified using `--layer`, like this: } ``` +If your source GeoJSON only has `minzoom`, `maxzoom` and/or `layer` within `properties` you can use [ndjson-cli](https://github.com/mbostock/ndjson-cli/blob/master/README.md) to move them into the required `tippecanoe` object by piping the GeoJSON like this: + +```sh +ndjson-map 'd.tippecanoe = { minzoom: d.properties.minzoom, maxzoom: d.properties.maxzoom, layer: d.properties.layer }, delete d.properties.minzoom, delete d.properties.maxzoom, delete d.properties.layer, d' +``` + Geometric simplifications ------------------------- @@ -703,7 +788,7 @@ The options are: * `-x` *key* or `--exclude=`*key*: Remove attributes of type *key* from the output. You can use this to remove the field you are matching against if you no longer need it after joining, or to remove any other attributes you don't want. * `-X` or `--exclude-all`: Remove all attributes from the output. * `-i` or `--if-matched`: Only include features that matched the CSV. - * `-j` *filter* or `--feature-filter`=*filter*: Check features against a per-layer filter (as defined in the [Mapbox GL Style Specification](https://www.mapbox.com/mapbox-gl-js/style-spec/#types-filter)) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer `"*"` apply to all layers. + * `-j` *filter* or `--feature-filter`=*filter*: Check features against a per-layer filter (as defined in the [Mapbox GL Style Specification](https://docs.mapbox.com/mapbox-gl-js/style-spec/#other-filter)) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer `"*"` apply to all layers. * `-J` *filter-file* or `--feature-filter-file`=*filter-file*: Like `-j`, but read the filter from a file. * `-pe` or `--empty-csv-columns-are-null`: Treat empty CSV columns as nulls rather than as empty strings. @@ -724,7 +809,7 @@ Example Imagine you have a tileset of census blocks: ```sh -curl -O http://www2.census.gov/geo/tiger/TIGER2010/TABBLOCK/2010/tl_2010_06001_tabblock10.zip +curl -L -O http://www2.census.gov/geo/tiger/TIGER2010/TABBLOCK/2010/tl_2010_06001_tabblock10.zip unzip tl_2010_06001_tabblock10.zip ogr2ogr -f GeoJSON tl_2010_06001_tabblock10.json tl_2010_06001_tabblock10.shp ./tippecanoe -o tl_2010_06001_tabblock10.mbtiles tl_2010_06001_tabblock10.json @@ -733,7 +818,7 @@ ogr2ogr -f GeoJSON tl_2010_06001_tabblock10.json tl_2010_06001_tabblock10.shp and a CSV of their populations: ```sh -curl -O http://www2.census.gov/census_2010/01-Redistricting_File--PL_94-171/California/ca2010.pl.zip +curl -L -O http://www2.census.gov/census_2010/01-Redistricting_File--PL_94-171/California/ca2010.pl.zip unzip -p ca2010.pl.zip cageo2010.pl | awk 'BEGIN { print "GEOID10,population" diff --git a/codecov.yml b/codecov.yml index 8771d84df..0cc64e46f 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,5 +1,6 @@ ignore: - "test" + - "mapbox" coverage: status: diff --git a/decode.cpp b/decode.cpp index 86e58fbdd..6a0b677ca 100644 --- a/decode.cpp +++ b/decode.cpp @@ -268,7 +268,7 @@ void decode(char *fname, int z, unsigned x, unsigned y, std::set co isdir = true; db = dirmeta2tmp(fname); - tiles = enumerate_dirtiles(fname); + tiles = enumerate_dirtiles(fname, minzoom, maxzoom); } else { if (sqlite3_open(fname, &db) != SQLITE_OK) { fprintf(stderr, "%s: %s\n", fname, sqlite3_errmsg(db)); @@ -306,17 +306,17 @@ void decode(char *fname, int z, unsigned x, unsigned y, std::set co const unsigned char *name = sqlite3_column_text(stmt2, 0); const unsigned char *value = sqlite3_column_text(stmt2, 1); + if (name == NULL || value == NULL) { + fprintf(stderr, "Corrupt mbtiles file: null metadata\n"); + exit(EXIT_FAILURE); + } + if (exclude_meta.count((char *) name) == 0) { if (within) { state.json_comma_newline(); } within = 1; - if (name == NULL || value == NULL) { - fprintf(stderr, "Corrupt mbtiles file: null metadata\n"); - exit(EXIT_FAILURE); - } - state.json_write_string((char *) name); state.json_write_string((char *) value); } @@ -413,6 +413,11 @@ void decode(char *fname, int z, unsigned x, unsigned y, std::set co ty = (1LL << tz) - 1 - ty; const char *s = (const char *) sqlite3_column_blob(stmt, 0); + if (s == NULL) { + fprintf(stderr, "Corrupt mbtiles file: null entry in tiles table\n"); + exit(EXIT_FAILURE); + } + handle(std::string(s, len), tz, tx, ty, to_decode, pipeline, stats, state); } @@ -449,6 +454,11 @@ void decode(char *fname, int z, unsigned x, unsigned y, std::set co int len = sqlite3_column_bytes(stmt, 0); const char *s = (const char *) sqlite3_column_blob(stmt, 0); + if (s == NULL) { + fprintf(stderr, "Corrupt mbtiles file: null entry in tiles table\n"); + exit(EXIT_FAILURE); + } + if (z != oz) { fprintf(stderr, "%s: Warning: using tile %d/%u/%u instead of %d/%u/%u\n", fname, z, x, y, oz, ox, oy); } diff --git a/dirtiles.cpp b/dirtiles.cpp index 51773c723..a5418a123 100644 --- a/dirtiles.cpp +++ b/dirtiles.cpp @@ -7,6 +7,7 @@ #include #include #include +#include #include #include #include "jsonpull/jsonpull.h" @@ -59,10 +60,10 @@ static bool pbfname(const char *s) { s++; } - return strcmp(s, ".pbf") == 0; + return strcmp(s, ".pbf") == 0 || strcmp(s, ".mvt") == 0; } -void check_dir(const char *dir, bool force, bool forcetable) { +void check_dir(const char *dir, char **argv, bool force, bool forcetable) { struct stat st; mkdir(dir, S_IRWXU | S_IRWXG | S_IRWXO); @@ -71,7 +72,8 @@ void check_dir(const char *dir, bool force, bool forcetable) { unlink(meta.c_str()); // error OK since it may not exist; } else { if (stat(meta.c_str(), &st) == 0) { - fprintf(stderr, "%s: file exists\n", meta.c_str()); + fprintf(stderr, "%s: Tileset \"%s\" already exists. You can use --force if you want to delete the old tileset.\n", argv[0], dir); + fprintf(stderr, "%s: %s: file exists\n", argv[0], meta.c_str()); if (!forcetable) { exit(EXIT_FAILURE); } @@ -83,7 +85,7 @@ void check_dir(const char *dir, bool force, bool forcetable) { return; } - std::vector tiles = enumerate_dirtiles(dir); + std::vector tiles = enumerate_dirtiles(dir, INT_MIN, INT_MAX); for (size_t i = 0; i < tiles.size(); i++) { std::string fn = std::string(dir) + "/" + tiles[i].path(); @@ -100,14 +102,14 @@ void check_dir(const char *dir, bool force, bool forcetable) { } } -std::vector enumerate_dirtiles(const char *fname) { +std::vector enumerate_dirtiles(const char *fname, int minzoom, int maxzoom) { std::vector tiles; DIR *d1 = opendir(fname); if (d1 != NULL) { struct dirent *dp; while ((dp = readdir(d1)) != NULL) { - if (numeric(dp->d_name)) { + if (numeric(dp->d_name) && atoi(dp->d_name) >= minzoom && atoi(dp->d_name) <= maxzoom) { std::string z = std::string(fname) + "/" + dp->d_name; int tz = atoi(dp->d_name); @@ -133,7 +135,12 @@ std::vector enumerate_dirtiles(const char *fname) { while ((dp3 = readdir(d3)) != NULL) { if (pbfname(dp3->d_name)) { int ty = atoi(dp3->d_name); - tiles.push_back(zxy(tz, tx, ty)); + zxy tile(tz, tx, ty); + if (strstr(dp3->d_name, ".mvt") != NULL) { + tile.extension = ".mvt"; + } + + tiles.push_back(tile); } } @@ -171,30 +178,34 @@ sqlite3 *dirmeta2tmp(const char *fname) { FILE *f = fopen(name.c_str(), "r"); if (f == NULL) { perror(name.c_str()); - exit(EXIT_FAILURE); - } + } else { + json_pull *jp = json_begin_file(f); + json_object *o = json_read_tree(jp); + if (o == NULL) { + fprintf(stderr, "%s: metadata parsing error: %s\n", name.c_str(), jp->error); + exit(EXIT_FAILURE); + } - json_pull *jp = json_begin_file(f); - json_object *o = json_read_tree(jp); + if (o->type != JSON_HASH) { + fprintf(stderr, "%s: bad metadata format\n", name.c_str()); + exit(EXIT_FAILURE); + } - if (o->type != JSON_HASH) { - fprintf(stderr, "%s: bad metadata format\n", name.c_str()); - exit(EXIT_FAILURE); - } + for (size_t i = 0; i < o->length; i++) { + if (o->keys[i]->type != JSON_STRING || o->values[i]->type != JSON_STRING) { + fprintf(stderr, "%s: non-string in metadata\n", name.c_str()); + } - for (size_t i = 0; i < o->length; i++) { - if (o->keys[i]->type != JSON_STRING || o->values[i]->type != JSON_STRING) { - fprintf(stderr, "%s: non-string in metadata\n", name.c_str()); + char *sql = sqlite3_mprintf("INSERT INTO metadata (name, value) VALUES (%Q, %Q);", o->keys[i]->string, o->values[i]->string); + if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) { + fprintf(stderr, "set %s in metadata: %s\n", o->keys[i]->string, err); + } + sqlite3_free(sql); } - char *sql = sqlite3_mprintf("INSERT INTO metadata (name, value) VALUES (%Q, %Q);", o->keys[i]->string, o->values[i]->string); - if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) { - fprintf(stderr, "set %s in metadata: %s\n", o->keys[i]->string, err); - } - sqlite3_free(sql); + json_end(jp); + fclose(f); } - json_end(jp); - fclose(f); return db; } diff --git a/dirtiles.hpp b/dirtiles.hpp index 2a39e0852..6855f9aab 100644 --- a/dirtiles.hpp +++ b/dirtiles.hpp @@ -1,17 +1,19 @@ #include #include +#include #ifndef DIRTILES_HPP #define DIRTILES_HPP void dir_write_tile(const char *outdir, int z, int tx, int ty, std::string const &pbf); -void check_dir(const char *d, bool force, bool forcetable); +void check_dir(const char *d, char **argv, bool force, bool forcetable); struct zxy { long long z; long long x; long long y; + std::string extension = ".pbf"; zxy(int _z, int _x, int _y) : z(_z), x(_x), y(_y) { @@ -36,11 +38,11 @@ struct zxy { } std::string path() { - return std::to_string(z) + "/" + std::to_string(x) + "/" + std::to_string(y) + ".pbf"; + return std::to_string(z) + "/" + std::to_string(x) + "/" + std::to_string(y) + extension; } }; -std::vector enumerate_dirtiles(const char *fname); +std::vector enumerate_dirtiles(const char *fname, int minzoom, int maxzoom); sqlite3 *dirmeta2tmp(const char *fname); std::string dir_read_tile(std::string pbfPath, struct zxy tile); diff --git a/geobuf.cpp b/geobuf.cpp index 8c87f109d..b67257c1e 100644 --- a/geobuf.cpp +++ b/geobuf.cpp @@ -254,6 +254,8 @@ std::vector readGeometry(protozero::pbf_reader &pbf, size_t dim, d dv.dv = readLine(coords, dim, e, false); } else if (type == POLYGON) { dv.dv = readMultiLine(coords, lengths, dim, e, true); + } else if (type == MULTILINESTRING) { + dv.dv = readMultiLine(coords, lengths, dim, e, false); } else if (type == MULTIPOLYGON) { dv.dv = readMultiPolygon(coords, lengths, dim, e); } else { diff --git a/geojson.cpp b/geojson.cpp index 622221969..0eae17c4c 100644 --- a/geojson.cpp +++ b/geojson.cpp @@ -113,6 +113,13 @@ int serialize_geojson_feature(struct serialization_state *sst, json_object *geom fprintf(stderr, "Warning: Can't represent non-integer feature ID %s\n", id->string); warned_frac = true; } + } else if (std::to_string(id_value) != id->string) { + static bool warned = false; + + if (!warned) { + fprintf(stderr, "Warning: Can't represent too-large feature ID %s\n", id->string); + warned = true; + } } else { has_id = true; } @@ -125,13 +132,41 @@ int serialize_geojson_feature(struct serialization_state *sst, json_object *geom } } } else { - static bool warned_nan = false; + bool converted = false; + + if (additional[A_CONVERT_NUMERIC_IDS] && id->type == JSON_STRING) { + char *err = NULL; + id_value = strtoull(id->string, &err, 10); - if (!warned_nan) { - char *s = json_stringify(id); - fprintf(stderr, "Warning: Can't represent non-numeric feature ID %s\n", s); - free(s); // stringify - warned_nan = true; + if (err != NULL && *err != '\0') { + static bool warned_frac = false; + + if (!warned_frac) { + fprintf(stderr, "Warning: Can't represent non-integer feature ID %s\n", id->string); + warned_frac = true; + } + } else if (std::to_string(id_value) != id->string) { + static bool warned = false; + + if (!warned) { + fprintf(stderr, "Warning: Can't represent too-large feature ID %s\n", id->string); + warned = true; + } + } else { + has_id = true; + converted = true; + } + } + + if (!converted) { + static bool warned_nan = false; + + if (!warned_nan) { + char *s = json_stringify(id); + fprintf(stderr, "Warning: Can't represent non-numeric feature ID %s\n", s); + free(s); // stringify + warned_nan = true; + } } } } @@ -234,6 +269,7 @@ struct json_serialize_action : json_feature_action { std::string layername; int add_feature(json_object *geometry, bool geometrycollection, json_object *properties, json_object *id, json_object *tippecanoe, json_object *feature) { + sst->line = geometry->parser->line; if (geometrycollection) { int ret = 1; for (size_t g = 0; g < geometry->length; g++) { diff --git a/geometry.cpp b/geometry.cpp index aa72fddb5..24aeb7e86 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -270,7 +270,7 @@ drawvec clean_or_clip_poly(drawvec &geom, int z, int buffer, bool clip) { mapbox::geometry::multi_polygon result; try { wagyu.execute(mapbox::geometry::wagyu::clip_type_union, result, mapbox::geometry::wagyu::fill_type_positive, mapbox::geometry::wagyu::fill_type_positive); - } catch (std::runtime_error e) { + } catch (std::runtime_error &e) { FILE *f = fopen("/tmp/wagyu.log", "w"); fprintf(f, "%s\n", e.what()); fprintf(stderr, "%s\n", e.what()); @@ -802,7 +802,7 @@ drawvec impose_tile_boundaries(drawvec &geom, long long extent) { return out; } -drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification, size_t retain) { +drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification, size_t retain, drawvec const &shared_nodes) { int res = 1 << (32 - detail - z); long long area = 1LL << (32 - z); @@ -814,6 +814,13 @@ drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, } else { geom[i].necessary = 1; } + + if (prevent[P_SIMPLIFY_SHARED_NODES]) { + auto pt = std::lower_bound(shared_nodes.begin(), shared_nodes.end(), geom[i]); + if (pt != shared_nodes.end() && *pt == geom[i]) { + geom[i].necessary = true; + } + } } if (mark_tile_bounds) { @@ -874,8 +881,8 @@ drawvec reorder_lines(drawvec &geom) { // instead of down and to the right // so that it will coalesce better - unsigned long long l1 = encode(geom[0].x, geom[0].y); - unsigned long long l2 = encode(geom[geom.size() - 1].x, geom[geom.size() - 1].y); + unsigned long long l1 = encode_index(geom[0].x, geom[0].y); + unsigned long long l2 = encode_index(geom[geom.size() - 1].x, geom[geom.size() - 1].y); if (l1 > l2) { drawvec out; @@ -1135,14 +1142,14 @@ drawvec stairstep(drawvec &geom, int z, int detail) { double scale = 1 << (32 - detail - z); for (size_t i = 0; i < geom.size(); i++) { - geom[i].x = std::round(geom[i].x / scale); - geom[i].y = std::round(geom[i].y / scale); + geom[i].x = std::floor(geom[i].x / scale); + geom[i].y = std::floor(geom[i].y / scale); } for (size_t i = 0; i < geom.size(); i++) { if (geom[i].op == VT_MOVETO) { out.push_back(geom[i]); - } else { + } else if (out.size() > 0) { long long x0 = out[out.size() - 1].x; long long y0 = out[out.size() - 1].y; long long x1 = geom[i].x; @@ -1202,6 +1209,9 @@ drawvec stairstep(drawvec &geom, int z, int detail) { } // out.push_back(draw(VT_LINETO, xx, yy)); + } else { + fprintf(stderr, "Can't happen: stairstepping lineto with no moveto\n"); + exit(EXIT_FAILURE); } } diff --git a/geometry.hpp b/geometry.hpp index 1e45a0b53..79b8f472a 100644 --- a/geometry.hpp +++ b/geometry.hpp @@ -68,7 +68,7 @@ drawvec clip_lines(drawvec &geom, int z, long long buffer); drawvec stairstep(drawvec &geom, int z, int detail); bool point_within_tile(long long x, long long y, int z); int quick_check(long long *bbox, int z, long long buffer); -drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification, size_t retain); +drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification, size_t retain, drawvec const &shared_nodes); drawvec reorder_lines(drawvec &geom); drawvec fix_polygon(drawvec &geom); std::vector chop_polygon(std::vector &geoms); diff --git a/jsontool.cpp b/jsontool.cpp index cb80abe95..fd65e9c33 100644 --- a/jsontool.cpp +++ b/jsontool.cpp @@ -111,7 +111,7 @@ std::string sort_quote(const char *s) { for (size_t i = 0; i < utf32.size(); i++) { if (utf32[i] < 0xD800) { - char buf[7]; + char buf[8]; sprintf(buf, "\\u%04lu", utf32[i]); ret.append(std::string(buf)); } else { diff --git a/main.cpp b/main.cpp index 4031ee4c6..ae41d8254 100644 --- a/main.cpp +++ b/main.cpp @@ -76,6 +76,7 @@ size_t max_tile_size = 500000; size_t max_tile_features = 200000; int cluster_distance = 0; long justx = -1, justy = -1; +std::string attribute_for_id = ""; int prevent[256]; int additional[256]; @@ -268,7 +269,7 @@ struct drop_state { int calc_feature_minzoom(struct index *ix, struct drop_state *ds, int maxzoom, double gamma) { int feature_minzoom = 0; unsigned xx, yy; - decode(ix->ix, &xx, &yy); + decode_index(ix->ix, &xx, &yy); if (gamma >= 0 && (ix->t == VT_POINT || (additional[A_LINE_DROP] && ix->t == VT_LINE) || @@ -393,7 +394,7 @@ void *run_sort(void *v) { return NULL; } -void do_read_parallel(char *map, long long len, long long initial_offset, const char *reading, std::vector *readers, std::atomic *progress_seq, std::set *exclude, std::set *include, int exclude_all, json_object *filter, int basezoom, int source, std::vector > *layermaps, int *initialized, unsigned *initial_x, unsigned *initial_y, int maxzoom, std::string layername, bool uses_gamma, std::map const *attribute_types, int separator, double *dist_sum, size_t *dist_count, bool want_dist, bool filters) { +void do_read_parallel(char *map, long long len, long long initial_offset, const char *reading, std::vector *readers, std::atomic *progress_seq, std::set *exclude, std::set *include, int exclude_all, int basezoom, int source, std::vector > *layermaps, int *initialized, unsigned *initial_x, unsigned *initial_y, int maxzoom, std::string layername, bool uses_gamma, std::map const *attribute_types, int separator, double *dist_sum, size_t *dist_count, bool want_dist, bool filters) { long long segs[CPUS + 1]; segs[0] = 0; segs[CPUS] = len; @@ -447,7 +448,6 @@ void do_read_parallel(char *map, long long len, long long initial_offset, const sst[i].filters = filters; sst[i].layermap = &(*layermaps)[i]; sst[i].exclude = exclude; - sst[i].filter = filter; sst[i].include = include; sst[i].exclude_all = exclude_all; sst[i].basezoom = basezoom; @@ -582,7 +582,6 @@ struct read_parallel_arg { std::set *exclude = NULL; std::set *include = NULL; int exclude_all = 0; - json_object *filter = NULL; int maxzoom = 0; int basezoom = 0; int source = 0; @@ -618,7 +617,7 @@ void *run_read_parallel(void *v) { } madvise(map, rpa->len, MADV_RANDOM); // sequential, but from several pointers at once - do_read_parallel(map, rpa->len, rpa->offset, rpa->reading, rpa->readers, rpa->progress_seq, rpa->exclude, rpa->include, rpa->exclude_all, rpa->filter, rpa->basezoom, rpa->source, rpa->layermaps, rpa->initialized, rpa->initial_x, rpa->initial_y, rpa->maxzoom, rpa->layername, rpa->uses_gamma, rpa->attribute_types, rpa->separator, rpa->dist_sum, rpa->dist_count, rpa->want_dist, rpa->filters); + do_read_parallel(map, rpa->len, rpa->offset, rpa->reading, rpa->readers, rpa->progress_seq, rpa->exclude, rpa->include, rpa->exclude_all, rpa->basezoom, rpa->source, rpa->layermaps, rpa->initialized, rpa->initial_x, rpa->initial_y, rpa->maxzoom, rpa->layername, rpa->uses_gamma, rpa->attribute_types, rpa->separator, rpa->dist_sum, rpa->dist_count, rpa->want_dist, rpa->filters); madvise(map, rpa->len, MADV_DONTNEED); if (munmap(map, rpa->len) != 0) { @@ -635,7 +634,7 @@ void *run_read_parallel(void *v) { return NULL; } -void start_parsing(int fd, STREAM *fp, long long offset, long long len, std::atomic *is_parsing, pthread_t *parallel_parser, bool &parser_created, const char *reading, std::vector *readers, std::atomic *progress_seq, std::set *exclude, std::set *include, int exclude_all, json_object *filter, int basezoom, int source, std::vector > &layermaps, int *initialized, unsigned *initial_x, unsigned *initial_y, int maxzoom, std::string layername, bool uses_gamma, std::map const *attribute_types, int separator, double *dist_sum, size_t *dist_count, bool want_dist, bool filters) { +void start_parsing(int fd, STREAM *fp, long long offset, long long len, std::atomic *is_parsing, pthread_t *parallel_parser, bool &parser_created, const char *reading, std::vector *readers, std::atomic *progress_seq, std::set *exclude, std::set *include, int exclude_all, int basezoom, int source, std::vector > &layermaps, int *initialized, unsigned *initial_x, unsigned *initial_y, int maxzoom, std::string layername, bool uses_gamma, std::map const *attribute_types, int separator, double *dist_sum, size_t *dist_count, bool want_dist, bool filters) { // This has to kick off an intermediate thread to start the parser threads, // so the main thread can get back to reading the next input stage while // the intermediate thread waits for the completion of the parser threads. @@ -661,7 +660,6 @@ void start_parsing(int fd, STREAM *fp, long long offset, long long len, std::ato rpa->exclude = exclude; rpa->include = include; rpa->exclude_all = exclude_all; - rpa->filter = filter; rpa->basezoom = basezoom; rpa->source = source; rpa->layermaps = &layermaps; @@ -1137,7 +1135,7 @@ void choose_first_zoom(long long *file_bbox, std::vector &readers } } -int read_input(std::vector &sources, char *fname, int maxzoom, int minzoom, int basezoom, double basezoom_marker_width, sqlite3 *outdb, const char *outdir, std::set *exclude, std::set *include, int exclude_all, json_object *filter, double droprate, int buffer, const char *tmpdir, double gamma, int read_parallel, int forcetable, const char *attribution, bool uses_gamma, long long *file_bbox, const char *prefilter, const char *postfilter, const char *description, bool guess_maxzoom, std::map const *attribute_types, const char *pgm, std::map const *attribute_accum, std::map const &attribute_descriptions) { +int read_input(std::vector &sources, char *fname, int maxzoom, int minzoom, int basezoom, double basezoom_marker_width, sqlite3 *outdb, const char *outdir, std::set *exclude, std::set *include, int exclude_all, json_object *filter, double droprate, int buffer, const char *tmpdir, double gamma, int read_parallel, int forcetable, const char *attribution, bool uses_gamma, long long *file_bbox, const char *prefilter, const char *postfilter, const char *description, bool guess_maxzoom, std::map const *attribute_types, const char *pgm, std::map const *attribute_accum, std::map const &attribute_descriptions, std::string const &commandline) { int ret = EXIT_SUCCESS; std::vector readers; @@ -1399,7 +1397,6 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo sst[i].exclude = exclude; sst[i].include = include; sst[i].exclude_all = exclude_all; - sst[i].filter = filter; sst[i].basezoom = basezoom; sst[i].attribute_types = attribute_types; } @@ -1458,7 +1455,6 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo sst[i].exclude = exclude; sst[i].include = include; sst[i].exclude_all = exclude_all; - sst[i].filter = filter; sst[i].basezoom = basezoom; sst[i].attribute_types = attribute_types; } @@ -1512,7 +1508,7 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo } if (map != NULL && map != MAP_FAILED && read_parallel_this) { - do_read_parallel(map, st.st_size - off, overall_offset, reading.c_str(), &readers, &progress_seq, exclude, include, exclude_all, filter, basezoom, layer, &layermaps, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, uses_gamma, attribute_types, read_parallel_this, &dist_sum, &dist_count, guess_maxzoom, prefilter != NULL || postfilter != NULL); + do_read_parallel(map, st.st_size - off, overall_offset, reading.c_str(), &readers, &progress_seq, exclude, include, exclude_all, basezoom, layer, &layermaps, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, uses_gamma, attribute_types, read_parallel_this, &dist_sum, &dist_count, guess_maxzoom, prefilter != NULL || postfilter != NULL); overall_offset += st.st_size - off; checkdisk(&readers); @@ -1590,7 +1586,7 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo } fflush(readfp); - start_parsing(readfd, streamfpopen(readfp), initial_offset, ahead, &is_parsing, ¶llel_parser, parser_created, reading.c_str(), &readers, &progress_seq, exclude, include, exclude_all, filter, basezoom, layer, layermaps, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, gamma != 0, attribute_types, read_parallel_this, &dist_sum, &dist_count, guess_maxzoom, prefilter != NULL || postfilter != NULL); + start_parsing(readfd, streamfpopen(readfp), initial_offset, ahead, &is_parsing, ¶llel_parser, parser_created, reading.c_str(), &readers, &progress_seq, exclude, include, exclude_all, basezoom, layer, layermaps, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, gamma != 0, attribute_types, read_parallel_this, &dist_sum, &dist_count, guess_maxzoom, prefilter != NULL || postfilter != NULL); initial_offset += ahead; overall_offset += ahead; @@ -1627,7 +1623,7 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo fflush(readfp); if (ahead > 0) { - start_parsing(readfd, streamfpopen(readfp), initial_offset, ahead, &is_parsing, ¶llel_parser, parser_created, reading.c_str(), &readers, &progress_seq, exclude, include, exclude_all, filter, basezoom, layer, layermaps, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, gamma != 0, attribute_types, read_parallel_this, &dist_sum, &dist_count, guess_maxzoom, prefilter != NULL || postfilter != NULL); + start_parsing(readfd, streamfpopen(readfp), initial_offset, ahead, &is_parsing, ¶llel_parser, parser_created, reading.c_str(), &readers, &progress_seq, exclude, include, exclude_all, basezoom, layer, layermaps, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, gamma != 0, attribute_types, read_parallel_this, &dist_sum, &dist_count, guess_maxzoom, prefilter != NULL || postfilter != NULL); if (parser_created) { if (pthread_join(parallel_parser, NULL) != 0) { @@ -1665,7 +1661,6 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo sst.exclude = exclude; sst.include = include; sst.exclude_all = exclude_all; - sst.filter = filter; sst.basezoom = basezoom; sst.attribute_types = attribute_types; @@ -2061,7 +2056,7 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo long long ip; for (ip = 0; ip < indices; ip++) { unsigned xx, yy; - decode(map[ip].ix, &xx, &yy); + decode_index(map[ip].ix, &xx, &yy); long long nprogress = 100 * ip / indices; if (nprogress != progress) { @@ -2334,7 +2329,7 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo ai->second.maxzoom = maxzoom; } - mbtiles_write_metadata(outdb, outdir, fname, minzoom, maxzoom, minlat, minlon, maxlat, maxlon, midlat, midlon, forcetable, attribution, merged_lm, true, description, !prevent[P_TILE_STATS], attribute_descriptions, "tippecanoe"); + mbtiles_write_metadata(outdb, outdir, fname, minzoom, maxzoom, minlat, minlon, maxlat, maxlon, midlat, midlon, forcetable, attribution, merged_lm, true, description, !prevent[P_TILE_STATS], attribute_descriptions, "tippecanoe", commandline); return ret; } @@ -2541,6 +2536,8 @@ int main(int argc, char **argv) { {"attribute-description", required_argument, 0, 'Y'}, {"accumulate-attribute", required_argument, 0, 'E'}, {"empty-csv-columns-are-null", no_argument, &prevent[P_EMPTY_CSV_COLUMNS], 1}, + {"convert-stringified-ids-to-numbers", no_argument, &additional[A_CONVERT_NUMERIC_IDS], 1}, + {"use-attribute-for-id", required_argument, 0, '~'}, {"Filtering features by attributes", 0, 0, 0}, {"feature-filter-file", required_argument, 0, 'J'}, @@ -2572,6 +2569,7 @@ int main(int argc, char **argv) { {"no-line-simplification", no_argument, &prevent[P_SIMPLIFY], 1}, {"simplify-only-low-zooms", no_argument, &prevent[P_SIMPLIFY_LOW], 1}, {"no-tiny-polygon-reduction", no_argument, &prevent[P_TINY_POLYGON_REDUCTION], 1}, + {"no-simplification-of-shared-nodes", no_argument, &prevent[P_SIMPLIFY_SHARED_NODES], 1}, {"Attempts to improve shared polygon boundaries", 0, 0, 0}, {"detect-shared-borders", no_argument, &additional[A_DETECT_SHARED_BORDERS], 1}, @@ -2587,6 +2585,7 @@ int main(int argc, char **argv) { {"reorder", no_argument, &additional[A_REORDER], 1}, {"coalesce", no_argument, &additional[A_COALESCE], 1}, {"reverse", no_argument, &additional[A_REVERSE], 1}, + {"hilbert", no_argument, &additional[A_HILBERT], 1}, {"Adding calculated attributes", 0, 0, 0}, {"calculate-feature-density", no_argument, &additional[A_CALCULATE_FEATURE_DENSITY], 1}, @@ -2628,6 +2627,7 @@ int main(int argc, char **argv) { {"check-polygons", no_argument, &additional[A_DEBUG_POLYGON], 1}, {"no-polygon-splitting", no_argument, &prevent[P_POLYGON_SPLIT], 1}, {"prefer-radix-sort", no_argument, &additional[A_PREFER_RADIX_SORT], 1}, + {"help", no_argument, 0, 'H'}, {0, 0, 0, 0}, }; @@ -2671,6 +2671,8 @@ int main(int argc, char **argv) { } } + std::string commandline = format_commandline(argc, argv); + int option_index = 0; while ((i = getopt_long(argc, argv, getopt_str, long_options, &option_index)) != -1) { switch (i) { @@ -2693,6 +2695,8 @@ int main(int argc, char **argv) { fprintf(stderr, "%s: Can't parse bounding box --%s=%s\n", argv[0], opt, optarg); exit(EXIT_FAILURE); } + } else if (strcmp(opt, "use-attribute-for-id") == 0) { + attribute_for_id = optarg; } else { fprintf(stderr, "%s: Unrecognized option --%s\n", argv[0], opt); exit(EXIT_FAILURE); @@ -2793,10 +2797,21 @@ int main(int argc, char **argv) { case 'd': full_detail = atoi_require(optarg, "Full detail"); + if (full_detail > 30) { + // So the maximum geometry delta of just under 2 tile extents + // is less than 2^31 + + fprintf(stderr, "%s: --full-detail can be at most 30\n", argv[0]); + exit(EXIT_FAILURE); + } break; case 'D': low_detail = atoi_require(optarg, "Low detail"); + if (low_detail > 30) { + fprintf(stderr, "%s: --low-detail can be at most 30\n", argv[0]); + exit(EXIT_FAILURE); + } break; case 'm': @@ -2880,6 +2895,14 @@ int main(int argc, char **argv) { case 'b': buffer = atoi_require(optarg, "Buffer"); + if (buffer > 127) { + // So the maximum geometry delta is under 2 tile extents, + // from less than half a tile beyond one side to less than + // half a tile beyond the other. + + fprintf(stderr, "%s: --buffer can be at most 127\n", argv[0]); + exit(EXIT_FAILURE); + } break; case 'f': @@ -2941,7 +2964,7 @@ int main(int argc, char **argv) { case 'v': fprintf(stderr, "tippecanoe %s\n", VERSION); - exit(EXIT_FAILURE); + exit(EXIT_SUCCESS); case 'P': read_parallel = 1; @@ -2984,8 +3007,10 @@ int main(int argc, char **argv) { break; default: { + if (i != 'H' && i != '?') { + fprintf(stderr, "Unknown option -%c\n", i); + } int width = 7 + strlen(argv[0]); - fprintf(stderr, "Unknown option -%c\n", i); fprintf(stderr, "Usage: %s [options] [file.json ...]", argv[0]); for (size_t lo = 0; long_options_orig[lo].name != NULL && strlen(long_options_orig[lo].name) > 0; lo++) { if (long_options_orig[lo].val == 0) { @@ -3012,11 +3037,23 @@ int main(int argc, char **argv) { width = 8; } fprintf(stderr, "\n"); - exit(EXIT_FAILURE); + if (i == 'H') { + exit(EXIT_SUCCESS); + } else { + exit(EXIT_FAILURE); + } } } } + if (additional[A_HILBERT]) { + encode_index = encode_hilbert; + decode_index = decode_hilbert; + } else { + encode_index = encode_quadkey; + decode_index = decode_quadkey; + } + // Wait until here to project the bounding box, so that the behavior is // the same no matter what order the projection and bounding box are // specified in @@ -3045,9 +3082,14 @@ int main(int argc, char **argv) { full_detail = 12; } - if (full_detail < min_detail || low_detail < min_detail) { - fprintf(stderr, "%s: Full detail and low detail must be at least minimum detail\n", argv[0]); - exit(EXIT_FAILURE); + if (full_detail < min_detail) { + min_detail = full_detail; + fprintf(stderr, "%s: Reducing minimum detail to match full detail %d\n", argv[0], min_detail); + } + + if (low_detail < min_detail) { + min_detail = low_detail; + fprintf(stderr, "%s: Reducing minimum detail to match low detail %d\n", argv[0], min_detail); } // Need two checks: one for geometry representation, the other for @@ -3111,7 +3153,7 @@ int main(int argc, char **argv) { outdb = mbtiles_open(out_mbtiles, argv, forcetable); } if (out_dir != NULL) { - check_dir(out_dir, force, forcetable); + check_dir(out_dir, argv, force, forcetable); } int ret = EXIT_SUCCESS; @@ -3138,7 +3180,7 @@ int main(int argc, char **argv) { long long file_bbox[4] = {UINT_MAX, UINT_MAX, 0, 0}; - ret = read_input(sources, name ? name : out_mbtiles ? out_mbtiles : out_dir, maxzoom, minzoom, basezoom, basezoom_marker_width, outdb, out_dir, &exclude, &include, exclude_all, filter, droprate, buffer, tmpdir, gamma, read_parallel, forcetable, attribution, gamma != 0, file_bbox, prefilter, postfilter, description, guess_maxzoom, &attribute_types, argv[0], &attribute_accum, attribute_descriptions); + ret = read_input(sources, name ? name : out_mbtiles ? out_mbtiles : out_dir, maxzoom, minzoom, basezoom, basezoom_marker_width, outdb, out_dir, &exclude, &include, exclude_all, filter, droprate, buffer, tmpdir, gamma, read_parallel, forcetable, attribution, gamma != 0, file_bbox, prefilter, postfilter, description, guess_maxzoom, &attribute_types, argv[0], &attribute_accum, attribute_descriptions, commandline); if (outdb != NULL) { mbtiles_close(outdb, argv[0]); diff --git a/main.hpp b/main.hpp index 2d83c8abb..8d89ab63c 100644 --- a/main.hpp +++ b/main.hpp @@ -3,6 +3,7 @@ #include #include +#include struct index { long long start = 0; @@ -46,6 +47,7 @@ extern size_t TEMP_FILES; extern size_t max_tile_size; extern size_t max_tile_features; extern int cluster_distance; +extern std::string attribute_for_id; int mkstemp_cloexec(char *name); FILE *fopen_oflag(const char *name, const char *mode, int oflag); diff --git a/man/tippecanoe.1 b/man/tippecanoe.1 index 61f8bff2b..af528c0a8 100644 --- a/man/tippecanoe.1 +++ b/man/tippecanoe.1 @@ -40,7 +40,7 @@ On Ubuntu it will usually be easiest to build from the source repository: .PP .RS .nf -$ git clone git@github.com:mapbox/tippecanoe.git +$ git clone https://github.com/mapbox/tippecanoe.git $ cd tippecanoe $ make \-j $ make install @@ -279,6 +279,34 @@ As above, but .IP \(bu 2 \fB\fC\-l counties\fR: Specify the layer name instead of letting it be derived from the source file names .RE +.SS Selectively remove and replace features (Census tracts) to update a tileset +.PP +.RS +.nf +# Retrieve and tile California 2000 Census tracts +curl \-L \-O https://www2.census.gov/geo/tiger/TIGER2010/TRACT/2000/tl_2010_06_tract00.zip +unzip tl_2010_06_tract00.zip +ogr2ogr \-f GeoJSON tl_2010_06_tract00.shp.json tl_2010_06_tract00.shp +tippecanoe \-z11 \-o tracts.mbtiles \-l tracts tl_2010_06_tract00.shp.json + +# Create a copy of the tileset, minus Alameda County (FIPS code 001) +tile\-join \-j '{"*":["none",["==","COUNTYFP00","001"]]}' \-f \-o tracts\-filtered.mbtiles tracts.mbtiles + +# Retrieve and tile Alameda County Census tracts for 2010 +curl \-L \-O https://www2.census.gov/geo/tiger/TIGER2010/TRACT/2010/tl_2010_06001_tract10.zip +unzip tl_2010_06001_tract10.zip +ogr2ogr \-f GeoJSON tl_2010_06001_tract10.shp.json tl_2010_06001_tract10.shp +tippecanoe \-z11 \-o tracts\-added.mbtiles \-l tracts tl_2010_06001_tract10.shp.json + +# Merge the filtered tileset and the tileset of new tracts into a final tileset +tile\-join \-o tracts\-final.mbtiles tracts\-filtered.mbtiles tracts\-added.mbtiles +.fi +.RE +.PP +The \fB\fC\-z11\fR option explicitly specifies the maxzoom, to make sure both the old and new tilesets have the same zoom range. +.PP +The \fB\fC\-j\fR option to \fB\fCtile\-join\fR specifies a filter, so that only the desired features will be copied to the new tileset. +This filter excludes (using \fB\fCnone\fR) any features whose FIPS code (\fB\fCCOUNTYFP00\fR) is the code for Alameda County (\fB\fC001\fR). .SH Options .PP There are a lot of options. A lot of the time you won't want to use any of them @@ -385,6 +413,48 @@ specified maximum zoom and to any levels added beyond that. \fB\fC\-R\fR \fIzoom\fP\fB\fC/\fR\fIx\fP\fB\fC/\fR\fIy\fP or \fB\fC\-\-one\-tile=\fR\fIzoom\fP\fB\fC/\fR\fIx\fP\fB\fC/\fR\fIy\fP: Set the minzoom and maxzoom to \fIzoom\fP and produce only the single specified tile at that zoom level. .RE +.PP +If you know the precision to which you want your data to be represented, +this table shows the approximate precision corresponding to various +\fB\fC\-z\fR options if you use the default \fB\fC\-d\fR detail of 12: +.TS +allbox; +cb cb cb +l l l +l l l +l l l +l l l +l l l +l l l +l l l +l l l +l l l +l l l +l l l +l l l +l l l +l l l +l l l +l l l +. +zoom level precision (ft) precision (m) +\fB\fC\-z0\fR 32000 ft 10000 m +\fB\fC\-z1\fR 16000 ft 5000 m +\fB\fC\-z2\fR 8000 ft 2500 m +\fB\fC\-z3\fR 4000 ft 1250 m +\fB\fC\-z4\fR 2000 ft 600 m +\fB\fC\-z5\fR 1000 ft 300 m +\fB\fC\-z6\fR 500 ft 150 m +\fB\fC\-z7\fR 250 ft 80 m +\fB\fC\-z8\fR 125 ft 40 m +\fB\fC\-z9\fR 64 ft 20 m +\fB\fC\-z10\fR 32 ft 10 m +\fB\fC\-z11\fR 16 ft 5 m +\fB\fC\-z12\fR 8 ft 2 m +\fB\fC\-z13\fR 4 ft 1 m +\fB\fC\-z14\fR 2 ft 0.5 m +\fB\fC\-z15\fR 1 ft 0.25 m +.TE .SS Tile resolution .RS .IP \(bu 2 @@ -401,9 +471,9 @@ resolution is obtained than by using a smaller \fImaxzoom\fP or \fIdetail\fP\&. .SS Filtering feature attributes .RS .IP \(bu 2 -\fB\fC\-x\fR \fIname\fP or \fB\fC\-\-exclude=\fR\fIname\fP: Exclude the named attributes from all features +\fB\fC\-x\fR \fIname\fP or \fB\fC\-\-exclude=\fR\fIname\fP: Exclude the named attributes from all features. You can specify multiple \fB\fC\-x\fR options to exclude several attributes. (Don't comma\-separate names within a single \fB\fC\-x\fR\&.) .IP \(bu 2 -\fB\fC\-y\fR \fIname\fP or \fB\fC\-\-include=\fR\fIname\fP: Include the named attributes in all features, excluding all those not explicitly named +\fB\fC\-y\fR \fIname\fP or \fB\fC\-\-include=\fR\fIname\fP: Include the named attributes in all features, excluding all those not explicitly named. You can specify multiple \fB\fC\-y\fR options to explicitly include several attributes. (Don't comma\-separate names within a single \fB\fC\-y\fR\&.) .IP \(bu 2 \fB\fC\-X\fR or \fB\fC\-\-exclude\-all\fR: Exclude all attributes and encode only geometries .RE @@ -424,11 +494,15 @@ that are dropped, coalesced\-as\-needed, or clustered. The \fIoperation\fP may b to specify how the named \fIattribute\fP is accumulated onto the attribute of the same name in a feature that does survive. .IP \(bu 2 \fB\fC\-pe\fR or \fB\fC\-\-empty\-csv\-columns\-are\-null\fR: Treat empty CSV columns as nulls rather than as empty strings. +.IP \(bu 2 +\fB\fC\-aI\fR or \fB\fC\-\-convert\-stringified\-ids\-to\-numbers\fR: If a feature ID is the string representation of a number, convert it to a plain number to use as the feature ID. +.IP \(bu 2 +\fB\fC\-\-use\-attribute\-for\-id=\fR\fIname\fP: Use the attribute with the specified \fIname\fP as if it were specified as the feature ID. (If this attribute is a stringified number, you must also use \fB\fC\-aI\fR to convert it to a number.) .RE .SS Filtering features by attributes .RS .IP \(bu 2 -\fB\fC\-j\fR \fIfilter\fP or \fB\fC\-\-feature\-filter\fR=\fIfilter\fP: Check features against a per\-layer filter (as defined in the Mapbox GL Style Specification \[la]https://www.mapbox.com/mapbox-gl-js/style-spec/#types-filter\[ra]) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer \fB\fC"*"\fR apply to all layers. The special variable \fB\fC$zoom\fR refers to the current zoom level. +\fB\fC\-j\fR \fIfilter\fP or \fB\fC\-\-feature\-filter\fR=\fIfilter\fP: Check features against a per\-layer filter (as defined in the Mapbox GL Style Specification \[la]https://docs.mapbox.com/mapbox-gl-js/style-spec/#other-filter\[ra]) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer \fB\fC"*"\fR apply to all layers. The special variable \fB\fC$zoom\fR refers to the current zoom level. .IP \(bu 2 \fB\fC\-J\fR \fIfilter\-file\fP or \fB\fC\-\-feature\-filter\-file\fR=\fIfilter\-file\fP: Like \fB\fC\-j\fR, but read the filter from a file. .RE @@ -489,7 +563,7 @@ compensate for the larger marker, or \fB\fC\-Bf\fR\fInumber\fP to allow at most .IP \(bu 2 \fB\fC\-an\fR or \fB\fC\-\-drop\-smallest\-as\-needed\fR: Dynamically drop the smallest features (physically smallest: the shortest lines or the smallest polygons) from each zoom level to keep large tiles under the 500K size limit. This option will not work for point features. .IP \(bu 2 -\fB\fC\-aN\fR or \fB\fC\-\-coalesce\-smallest\-as\-needed\fR: Dynamically combine the smallest features (physically smallest: the shortest lines or the smallest polygons) from each zoom level into other nearby features to keep large tiles under the 500K size limit. This option will not work for point features, and will probably not help very much with LineStrings. It is mostly intended for polygons, to maintain the full original area covered by polygons while still reducing the feature count somehow. The attributes of the small polygons are \fInot\fP preserved into the combined features, only their geometry. +\fB\fC\-aN\fR or \fB\fC\-\-coalesce\-smallest\-as\-needed\fR: Dynamically combine the smallest features (physically smallest: the shortest lines or the smallest polygons) from each zoom level into other nearby features to keep large tiles under the 500K size limit. This option will not work for point features, and will probably not help very much with LineStrings. It is mostly intended for polygons, to maintain the full original area covered by polygons while still reducing the feature count somehow. The attributes of the small polygons are \fInot\fP preserved into the combined features (except through \fB\fC\-\-accumulate\-attribute\fR), only their geometry. Furthermore, the polygons to which nested polygons are coalesced may not necessarily be the immediately enclosing features. .IP \(bu 2 \fB\fC\-aD\fR or \fB\fC\-\-coalesce\-densest\-as\-needed\fR: Dynamically combine the densest features from each zoom level into other nearby features to keep large tiles under the 500K size limit. (Again, mostly useful for polygons.) .IP \(bu 2 @@ -539,11 +613,13 @@ the line or polygon within one tile unit of its proper location. You can probabl .IP \(bu 2 \fB\fC\-pi\fR or \fB\fC\-\-preserve\-input\-order\fR: Preserve the original input order of features as the drawing order instead of ordering geographically. (This is implemented as a restoration of the original order at the end, so that dot\-dropping is still geographic, which means it also undoes \fB\fC\-ao\fR). .IP \(bu 2 -\fB\fC\-ao\fR or \fB\fC\-\-reorder\fR: Reorder features to put ones with the same attributes in sequence, to try to get them to coalesce. You probably want to use this if you use \fB\fC\-\-coalesce\fR\&. +\fB\fC\-ac\fR or \fB\fC\-\-coalesce\fR: Coalesce consecutive features that have the same attributes. This can be useful if you have lots of small polygons with identical attributes and you would like to merge them together. .IP \(bu 2 -\fB\fC\-ac\fR or \fB\fC\-\-coalesce\fR: Coalesce adjacent line and polygon features that have the same attributes. This can be useful if you have lots of small polygons with identical attributes and you would like to merge them together. +\fB\fC\-ao\fR or \fB\fC\-\-reorder\fR: Reorder features to put ones with the same attributes in sequence (instead of ones that are approximately spatially adjacent), to try to get them to coalesce. You probably want to use this if you use \fB\fC\-\-coalesce\fR\&. .IP \(bu 2 \fB\fC\-ar\fR or \fB\fC\-\-reverse\fR: Try reversing the directions of lines to make them coalesce and compress better. You probably don't want to use this. +.IP \(bu 2 +\fB\fC\-ah\fR or \fB\fC\-\-hilbert\fR: Put features in Hilbert Curve order instead of the usual Z\-Order. This improves the odds that spatially adjacent features will be sequentially adjacent, and should improve density calculations and spatial coalescing. It should be the default eventually. .RE .SS Adding calculated attributes .RS @@ -555,7 +631,7 @@ the line or polygon within one tile unit of its proper location. You can probabl .SS Trying to correct bad source geometry .RS .IP \(bu 2 -\fB\fC\-aw\fR or \fB\fC\-\-detect\-longitude\-wraparound\fR: Detect when adjacent points within a feature jump to the other side of the world, and try to fix the geometry. +\fB\fC\-aw\fR or \fB\fC\-\-detect\-longitude\-wraparound\fR: Detect when consecutive points within a feature jump to the other side of the world, and try to fix the geometry. .IP \(bu 2 \fB\fC\-pw\fR or \fB\fC\-\-use\-source\-polygon\-winding\fR: Instead of respecting GeoJSON polygon ring order, use the original polygon winding in the source data to distinguish inner (clockwise) and outer (counterclockwise) polygon rings. .IP \(bu 2 @@ -705,6 +781,14 @@ the filename or name specified using \fB\fC\-\-layer\fR, like this: } .fi .RE +.PP +If your source GeoJSON only has \fB\fCminzoom\fR, \fB\fCmaxzoom\fR and/or \fB\fClayer\fR within \fB\fCproperties\fR you can use ndjson\-cli \[la]https://github.com/mbostock/ndjson-cli/blob/master/README.md\[ra] to move them into the required \fB\fCtippecanoe\fR object by piping the GeoJSON like this: +.PP +.RS +.nf +ndjson\-map 'd.tippecanoe = { minzoom: d.properties.minzoom, maxzoom: d.properties.maxzoom, layer: d.properties.layer }, delete d.properties.minzoom, delete d.properties.maxzoom, delete d.properties.layer, d' +.fi +.RE .SH Geometric simplifications .PP At every zoom level, line and polygon features are subjected to Douglas\-Peucker @@ -864,7 +948,7 @@ The options are: .IP \(bu 2 \fB\fC\-i\fR or \fB\fC\-\-if\-matched\fR: Only include features that matched the CSV. .IP \(bu 2 -\fB\fC\-j\fR \fIfilter\fP or \fB\fC\-\-feature\-filter\fR=\fIfilter\fP: Check features against a per\-layer filter (as defined in the Mapbox GL Style Specification \[la]https://www.mapbox.com/mapbox-gl-js/style-spec/#types-filter\[ra]) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer \fB\fC"*"\fR apply to all layers. +\fB\fC\-j\fR \fIfilter\fP or \fB\fC\-\-feature\-filter\fR=\fIfilter\fP: Check features against a per\-layer filter (as defined in the Mapbox GL Style Specification \[la]https://docs.mapbox.com/mapbox-gl-js/style-spec/#other-filter\[ra]) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer \fB\fC"*"\fR apply to all layers. .IP \(bu 2 \fB\fC\-J\fR \fIfilter\-file\fP or \fB\fC\-\-feature\-filter\-file\fR=\fIfilter\-file\fP: Like \fB\fC\-j\fR, but read the filter from a file. .IP \(bu 2 diff --git a/mapbox/LICENSE-wagyu b/mapbox/LICENSE-wagyu index f3eb477c3..351c124c7 100644 --- a/mapbox/LICENSE-wagyu +++ b/mapbox/LICENSE-wagyu @@ -1,4 +1,4 @@ -Parts of the code in the Wagyu Library are derived from the version of the +Parts of the code in the Wagyu Library are derived from the version of the Clipper Library by Angus Johnson listed below. Author : Angus Johnson @@ -6,13 +6,15 @@ Version : 6.4.0 Date : 2 July 2015 Website : http://www.angusj.com -Copyright for portions of the derived code in the Wagyu library are held -by Angus Johnson, 2010-2015. All other copyright for the Wagyu Library are held by -Mapbox, 2016. This code is published in accordance with, and retains the same license -as the Clipper Library by Angus Johnson. +Copyright for portions of the derived code in the Wagyu library are held +by Angus Johnson, 2010-2015. Copyright for the "include/mapbox/geometry/wagyu/almost_equal.hpp" +file is held by Google Inc and its license is listed at the top of that file. +All other copyright for the Wagyu Library are held by Mapbox, 2016. This code +is published in accordance with, and retains the same license as the Clipper +Library by Angus Johnson. Copyright (c) 2010-2015, Angus Johnson -Copyright (c) 2016, Mapbox +Copyright (c) 2016-2020, Mapbox Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by diff --git a/mapbox/geometry/wagyu/active_bound_list.hpp b/mapbox/geometry/wagyu/active_bound_list.hpp index 542b40902..d3a6ec235 100644 --- a/mapbox/geometry/wagyu/active_bound_list.hpp +++ b/mapbox/geometry/wagyu/active_bound_list.hpp @@ -61,9 +61,7 @@ std::string output_edges(active_bound_list const& bnds) { #endif template -bool is_even_odd_fill_type(bound const& bound, - fill_type subject_fill_type, - fill_type clip_fill_type) { +bool is_even_odd_fill_type(bound const& bound, fill_type subject_fill_type, fill_type clip_fill_type) { if (bound.poly_type == polygon_type_subject) { return subject_fill_type == fill_type_even_odd; } else { @@ -72,9 +70,7 @@ bool is_even_odd_fill_type(bound const& bound, } template -bool is_even_odd_alt_fill_type(bound const& bound, - fill_type subject_fill_type, - fill_type clip_fill_type) { +bool is_even_odd_alt_fill_type(bound const& bound, fill_type subject_fill_type, fill_type clip_fill_type) { if (bound.poly_type == polygon_type_subject) { return clip_fill_type == fill_type_even_odd; } else { @@ -94,11 +90,11 @@ struct bound_insert_location { auto const& bound1 = *b; if (values_are_equal(bound2.current_x, bound1.current_x)) { if (bound2.current_edge->top.y > bound1.current_edge->top.y) { - return static_cast(bound2.current_edge->top.x) < - get_current_x(*(bound1.current_edge), bound2.current_edge->top.y); + return less_than(static_cast(bound2.current_edge->top.x), + get_current_x(*(bound1.current_edge), bound2.current_edge->top.y)); } else { - return static_cast(bound1.current_edge->top.x) > - get_current_x(*(bound2.current_edge), bound1.current_edge->top.y); + return greater_than(static_cast(bound1.current_edge->top.x), + get_current_x(*(bound2.current_edge), bound1.current_edge->top.y)); } } else { return bound2.current_x < bound1.current_x; @@ -107,42 +103,44 @@ struct bound_insert_location { }; template -active_bound_list_itr -insert_bound_into_ABL(bound& left, bound& right, active_bound_list& active_bounds) { +active_bound_list_itr insert_bound_into_ABL(bound& left, bound& right, active_bound_list& active_bounds) { - auto itr = - std::find_if(active_bounds.begin(), active_bounds.end(), bound_insert_location(left)); + auto itr = std::find_if(active_bounds.begin(), active_bounds.end(), bound_insert_location(left)); +#ifdef GCC_MISSING_VECTOR_RANGE_INSERT itr = active_bounds.insert(itr, &right); return active_bounds.insert(itr, &left); +#else + return active_bounds.insert(itr, { &left, &right }); +#endif } template -inline bool is_maxima(bound& bnd, T y) { +inline bool is_maxima(bound const& bnd, T y) { return bnd.next_edge == bnd.edges.end() && bnd.current_edge->top.y == y; } template -inline bool is_maxima(active_bound_list_itr& bnd, T y) { +inline bool is_maxima(active_bound_list_itr const& bnd, T y) { return is_maxima(*(*bnd), y); } template -inline bool is_intermediate(bound& bnd, T y) { +inline bool is_intermediate(bound const& bnd, T y) { return bnd.next_edge != bnd.edges.end() && bnd.current_edge->top.y == y; } template -inline bool is_intermediate(active_bound_list_itr& bnd, T y) { +inline bool is_intermediate(active_bound_list_itr const& bnd, T y) { return is_intermediate(*(*bnd), y); } template -inline bool current_edge_is_horizontal(active_bound_list_itr& bnd) { +inline bool current_edge_is_horizontal(active_bound_list_itr const& bnd) { return is_horizontal(*((*bnd)->current_edge)); } template -inline bool next_edge_is_horizontal(active_bound_list_itr& bnd) { +inline bool next_edge_is_horizontal(active_bound_list_itr const& bnd) { return is_horizontal(*((*bnd)->next_edge)); } @@ -154,20 +152,19 @@ void next_edge_in_bound(bound& bnd, scanbeam_list& scanbeam) { ++(bnd.next_edge); bnd.current_x = static_cast(current_edge->bot.x); if (!is_horizontal(*current_edge)) { - scanbeam.push_back(current_edge->top.y); + insert_sorted_scanbeam(scanbeam, current_edge->top.y); } } } template -active_bound_list_itr get_maxima_pair(active_bound_list_itr const& bnd, - active_bound_list& active_bounds) { +active_bound_list_itr get_maxima_pair(active_bound_list_itr bnd, active_bound_list& active_bounds) { bound_ptr maximum = (*bnd)->maximum_bound; return std::find(active_bounds.begin(), active_bounds.end(), maximum); } template -void set_winding_count(active_bound_list_itr& bnd_itr, +void set_winding_count(active_bound_list_itr bnd_itr, active_bound_list& active_bounds, fill_type subject_fill_type, fill_type clip_fill_type) { @@ -181,8 +178,7 @@ void set_winding_count(active_bound_list_itr& bnd_itr, // find the edge of the same polytype that immediately preceeds 'edge' in // AEL - while (rev_bnd_itr != active_bounds.rend() && - (*rev_bnd_itr)->poly_type != (*bnd_itr)->poly_type) { + while (rev_bnd_itr != active_bounds.rend() && (*rev_bnd_itr)->poly_type != (*bnd_itr)->poly_type) { ++rev_bnd_itr; } if (rev_bnd_itr == active_bounds.rend()) { @@ -204,8 +200,7 @@ void set_winding_count(active_bound_list_itr& bnd_itr, (*bnd_itr)->winding_count = (*rev_bnd_itr)->winding_count; } else { // otherwise continue to 'decrease' WC ... - (*bnd_itr)->winding_count = - (*rev_bnd_itr)->winding_count + (*bnd_itr)->winding_delta; + (*bnd_itr)->winding_count = (*rev_bnd_itr)->winding_count + (*bnd_itr)->winding_delta; } } else { // now outside all polys of same polytype so set own WC ... @@ -219,8 +214,7 @@ void set_winding_count(active_bound_list_itr& bnd_itr, (*bnd_itr)->winding_count = (*rev_bnd_itr)->winding_count; } else { // otherwise add to WC ... - (*bnd_itr)->winding_count = - (*rev_bnd_itr)->winding_count + (*bnd_itr)->winding_delta; + (*bnd_itr)->winding_count = (*rev_bnd_itr)->winding_count + (*bnd_itr)->winding_delta; } } (*bnd_itr)->winding_count2 = (*rev_bnd_itr)->winding_count2; @@ -244,10 +238,7 @@ void set_winding_count(active_bound_list_itr& bnd_itr, } template -bool is_contributing(bound const& bnd, - clip_type cliptype, - fill_type subject_fill_type, - fill_type clip_fill_type) { +bool is_contributing(bound const& bnd, clip_type cliptype, fill_type subject_fill_type, fill_type clip_fill_type) { fill_type pft = subject_fill_type; fill_type pft2 = clip_fill_type; if (bnd.poly_type != polygon_type_subject) { @@ -350,15 +341,14 @@ void insert_lm_left_and_right_bound(bound& left_bound, (*rb_abl_itr)->winding_count = (*lb_abl_itr)->winding_count; (*rb_abl_itr)->winding_count2 = (*lb_abl_itr)->winding_count2; if (is_contributing(left_bound, cliptype, subject_fill_type, clip_fill_type)) { - add_local_minimum_point(*(*lb_abl_itr), *(*rb_abl_itr), active_bounds, - (*lb_abl_itr)->current_edge->bot, rings); + add_local_minimum_point(*(*lb_abl_itr), *(*rb_abl_itr), active_bounds, (*lb_abl_itr)->current_edge->bot, rings); } // Add top of edges to scanbeam - scanbeam.push_back((*lb_abl_itr)->current_edge->top.y); + insert_sorted_scanbeam(scanbeam, (*lb_abl_itr)->current_edge->top.y); if (!current_edge_is_horizontal(rb_abl_itr)) { - scanbeam.push_back((*rb_abl_itr)->current_edge->top.y); + insert_sorted_scanbeam(scanbeam, (*rb_abl_itr)->current_edge->top.y); } } @@ -376,8 +366,8 @@ void insert_local_minima_into_ABL(T const bot_y, initialize_lm(current_lm); auto& left_bound = (*current_lm)->left_bound; auto& right_bound = (*current_lm)->right_bound; - insert_lm_left_and_right_bound(left_bound, right_bound, active_bounds, rings, scanbeam, - cliptype, subject_fill_type, clip_fill_type); + insert_lm_left_and_right_bound(left_bound, right_bound, active_bounds, rings, scanbeam, cliptype, + subject_fill_type, clip_fill_type); ++current_lm; } } @@ -392,16 +382,15 @@ void insert_horizontal_local_minima_into_ABL(T const top_y, clip_type cliptype, fill_type subject_fill_type, fill_type clip_fill_type) { - while (current_lm != minima_sorted.end() && top_y == (*current_lm)->y && - (*current_lm)->minimum_has_horizontal) { + while (current_lm != minima_sorted.end() && top_y == (*current_lm)->y && (*current_lm)->minimum_has_horizontal) { initialize_lm(current_lm); auto& left_bound = (*current_lm)->left_bound; auto& right_bound = (*current_lm)->right_bound; - insert_lm_left_and_right_bound(left_bound, right_bound, active_bounds, rings, scanbeam, - cliptype, subject_fill_type, clip_fill_type); + insert_lm_left_and_right_bound(left_bound, right_bound, active_bounds, rings, scanbeam, cliptype, + subject_fill_type, clip_fill_type); ++current_lm; } } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/almost_equal.hpp b/mapbox/geometry/wagyu/almost_equal.hpp new file mode 100644 index 000000000..71ef122ff --- /dev/null +++ b/mapbox/geometry/wagyu/almost_equal.hpp @@ -0,0 +1,277 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) +// +// The Google C++ Testing Framework (Google Test) + +// This template class serves as a compile-time function from size to +// type. It maps a size in bytes to a primitive type with that +// size. e.g. +// +// TypeWithSize<4>::UInt +// +// is typedef-ed to be unsigned int (unsigned integer made up of 4 +// bytes). +// +// Such functionality should belong to STL, but I cannot find it +// there. +// +// Google Test uses this class in the implementation of floating-point +// comparison. +// +// For now it only handles UInt (unsigned int) as that's all Google Test +// needs. Other types can be easily added in the future if need +// arises. +namespace mapbox { +namespace geometry { +namespace wagyu { +namespace util { + +template +class TypeWithSize { +public: + // This prevents the user from using TypeWithSize with incorrect + // values of N. + typedef void UInt; +}; + +// The specialization for size 4. +template <> +class TypeWithSize<4> { +public: + // unsigned int has size 4 in both gcc and MSVC. + // + // As base/basictypes.h doesn't compile on Windows, we cannot use + // uint32, uint64, and etc here. + typedef int Int; + typedef unsigned int UInt; +}; + +// The specialization for size 8. +template <> +class TypeWithSize<8> { +public: +#if GTEST_OS_WINDOWS + typedef __int64 Int; + typedef unsigned __int64 UInt; +#else + typedef long long Int; // NOLINT + typedef unsigned long long UInt; // NOLINT +#endif // GTEST_OS_WINDOWS +}; + +// This template class represents an IEEE floating-point number +// (either single-precision or double-precision, depending on the +// template parameters). +// +// The purpose of this class is to do more sophisticated number +// comparison. (Due to round-off error, etc, it's very unlikely that +// two floating-points will be equal exactly. Hence a naive +// comparison by the == operation often doesn't work.) +// +// Format of IEEE floating-point: +// +// The most-significant bit being the leftmost, an IEEE +// floating-point looks like +// +// sign_bit exponent_bits fraction_bits +// +// Here, sign_bit is a single bit that designates the sign of the +// number. +// +// For float, there are 8 exponent bits and 23 fraction bits. +// +// For double, there are 11 exponent bits and 52 fraction bits. +// +// More details can be found at +// http://en.wikipedia.org/wiki/IEEE_floating-point_standard. +// +// Template parameter: +// +// RawType: the raw floating-point type (either float or double) +template +class FloatingPoint { +public: + // Defines the unsigned integer type that has the same size as the + // floating point number. + typedef typename TypeWithSize::UInt Bits; + + // Constants. + + // # of bits in a number. + static const size_t kBitCount = 8 * sizeof(RawType); + + // # of fraction bits in a number. + static const size_t kFractionBitCount = std::numeric_limits::digits - 1; + + // # of exponent bits in a number. + static const size_t kExponentBitCount = kBitCount - 1 - kFractionBitCount; + + // The mask for the sign bit. + static const Bits kSignBitMask = static_cast(1) << (kBitCount - 1); + + // The mask for the fraction bits. + static const Bits kFractionBitMask = ~static_cast(0) >> (kExponentBitCount + 1); + + // The mask for the exponent bits. + static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask); + + // How many ULP's (Units in the Last Place) we want to tolerate when + // comparing two numbers. The larger the value, the more error we + // allow. A 0 value means that two numbers must be exactly the same + // to be considered equal. + // + // The maximum error of a single floating-point operation is 0.5 + // units in the last place. On Intel CPU's, all floating-point + // calculations are done with 80-bit precision, while double has 64 + // bits. Therefore, 4 should be enough for ordinary use. + // + // See the following article for more details on ULP: + // http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm. + static const size_t kMaxUlps = 4; + + // Constructs a FloatingPoint from a raw floating-point number. + // + // On an Intel CPU, passing a non-normalized NAN (Not a Number) + // around may change its bits, although the new value is guaranteed + // to be also a NAN. Therefore, don't expect this constructor to + // preserve the bits in x when x is a NAN. + explicit FloatingPoint(const RawType& x) : u_(x) { + } + + // Static methods + + // Reinterprets a bit pattern as a floating-point number. + // + // This function is needed to test the AlmostEquals() method. + static RawType ReinterpretBits(const Bits bits) { + FloatingPoint fp(0); + fp.u_.bits_ = bits; + return fp.u_.value_; + } + + // Returns the floating-point number that represent positive infinity. + static RawType Infinity() { + return ReinterpretBits(kExponentBitMask); + } + + // Non-static methods + + // Returns the bits that represents this number. + const Bits& bits() const { + return u_.bits_; + } + + // Returns the exponent bits of this number. + Bits exponent_bits() const { + return kExponentBitMask & u_.bits_; + } + + // Returns the fraction bits of this number. + Bits fraction_bits() const { + return kFractionBitMask & u_.bits_; + } + + // Returns the sign bit of this number. + Bits sign_bit() const { + return kSignBitMask & u_.bits_; + } + + // Returns true iff this is NAN (not a number). + bool is_nan() const { + // It's a NAN if the exponent bits are all ones and the fraction + // bits are not entirely zeros. + return (exponent_bits() == kExponentBitMask) && (fraction_bits() != 0); + } + + // Returns true iff this number is at most kMaxUlps ULP's away from + // rhs. In particular, this function: + // + // - returns false if either number is (or both are) NAN. + // - treats really large numbers as almost equal to infinity. + // - thinks +0.0 and -0.0 are 0 DLP's apart. + bool AlmostEquals(const FloatingPoint& rhs) const { + // The IEEE standard says that any comparison operation involving + // a NAN must return false. + if (is_nan() || rhs.is_nan()) + return false; + + return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) <= kMaxUlps; + } + +private: + // The data type used to store the actual floating-point number. + union FloatingPointUnion { + explicit FloatingPointUnion(RawType val) : value_(val) { + } + RawType value_; // The raw floating-point number. + Bits bits_; // The bits that represent the number. + }; + + // Converts an integer from the sign-and-magnitude representation to + // the biased representation. More precisely, let N be 2 to the + // power of (kBitCount - 1), an integer x is represented by the + // unsigned number x + N. + // + // For instance, + // + // -N + 1 (the most negative number representable using + // sign-and-magnitude) is represented by 1; + // 0 is represented by N; and + // N - 1 (the biggest number representable using + // sign-and-magnitude) is represented by 2N - 1. + // + // Read http://en.wikipedia.org/wiki/Signed_number_representations + // for more details on signed number representations. + static Bits SignAndMagnitudeToBiased(const Bits& sam) { + if (kSignBitMask & sam) { + // sam represents a negative number. + return ~sam + 1; + } else { + // sam represents a positive number. + return kSignBitMask | sam; + } + } + + // Given two numbers in the sign-and-magnitude representation, + // returns the distance between them as an unsigned number. + static Bits DistanceBetweenSignAndMagnitudeNumbers(const Bits& sam1, const Bits& sam2) { + const Bits biased1 = SignAndMagnitudeToBiased(sam1); + const Bits biased2 = SignAndMagnitudeToBiased(sam2); + return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1); + } + + FloatingPointUnion u_; +}; + +} // namespace util +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/bound.hpp b/mapbox/geometry/wagyu/bound.hpp index 3028e085f..fa748fdaf 100644 --- a/mapbox/geometry/wagyu/bound.hpp +++ b/mapbox/geometry/wagyu/bound.hpp @@ -65,16 +65,14 @@ struct bound { side(std::move(b.side)) { } - bound(boundconst& b) = delete; + bound(bound const& b) = delete; bound& operator=(bound const&) = delete; - }; #ifdef DEBUG template -inline std::basic_ostream& operator<<(std::basic_ostream& out, - const bound& bnd) { +inline std::basic_ostream& operator<<(std::basic_ostream& out, const bound& bnd) { out << " Bound: " << &bnd << std::endl; out << " current_x: " << bnd.current_x << std::endl; out << " last_point: " << bnd.last_point.x << ", " << bnd.last_point.y << std::endl; @@ -96,6 +94,6 @@ inline std::basic_ostream& operator<<(std::basic_ostream const& path_geometry, edg } if (!edges.empty()) { auto const& back_top = edges.back().top; - if (static_cast(back_pt.x) == back_top.x && - static_cast(back_pt.y) == back_top.y) { + if (static_cast(back_pt.x) == back_top.x && static_cast(back_pt.y) == back_top.y) { auto const& back_bot = edges.back().bot; - pt1 = mapbox::geometry::point(static_cast(back_bot.x), - static_cast(back_bot.y)); + pt1 = mapbox::geometry::point(static_cast(back_bot.x), static_cast(back_bot.y)); } else { - pt1 = mapbox::geometry::point(static_cast(back_top.x), - static_cast(back_top.y)); + pt1 = mapbox::geometry::point(static_cast(back_top.x), static_cast(back_top.y)); } back_pt = pt1; } else { @@ -181,6 +178,6 @@ bool build_edge_list(mapbox::geometry::linear_ring const& path_geometry, edg return true; } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/build_local_minima_list.hpp b/mapbox/geometry/wagyu/build_local_minima_list.hpp index 82273833b..3ed42a5b1 100644 --- a/mapbox/geometry/wagyu/build_local_minima_list.hpp +++ b/mapbox/geometry/wagyu/build_local_minima_list.hpp @@ -21,6 +21,6 @@ bool add_linear_ring(mapbox::geometry::linear_ring const& path_geometry, add_ring_to_local_minima_list(new_edges, minima_list, p_type); return true; } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/build_result.hpp b/mapbox/geometry/wagyu/build_result.hpp index a5f6155e6..261167850 100644 --- a/mapbox/geometry/wagyu/build_result.hpp +++ b/mapbox/geometry/wagyu/build_result.hpp @@ -10,9 +10,7 @@ namespace geometry { namespace wagyu { template -void push_ring_to_polygon(mapbox::geometry::polygon& poly, - ring_ptr r, - bool reverse_output) { +void push_ring_to_polygon(mapbox::geometry::polygon& poly, ring_ptr r, bool reverse_output) { mapbox::geometry::linear_ring lr; lr.reserve(r->size() + 1); auto firstPt = r->points; @@ -34,7 +32,7 @@ void push_ring_to_polygon(mapbox::geometry::polygon& poly, template void build_result_polygons(mapbox::geometry::multi_polygon& solution, - ring_vectorconst& rings, + ring_vector const& rings, bool reverse_output) { for (auto r : rings) { if (r == nullptr) { @@ -62,11 +60,9 @@ void build_result_polygons(mapbox::geometry::multi_polygon& solution, } template -void build_result(mapbox::geometry::multi_polygon& solution, - ring_managerconst& rings, - bool reverse_output) { +void build_result(mapbox::geometry::multi_polygon& solution, ring_manager const& rings, bool reverse_output) { build_result_polygons(solution, rings.children, reverse_output); } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/config.hpp b/mapbox/geometry/wagyu/config.hpp index babff2a16..1d2211a26 100644 --- a/mapbox/geometry/wagyu/config.hpp +++ b/mapbox/geometry/wagyu/config.hpp @@ -5,25 +5,22 @@ #include #include +// GCC 4.8 missing range std::vector::insert (c++11) +#ifdef __GNUC__ +#if __GNUC__ == 4 && __GNUC_MINOR__ == 8 +#define GCC_MISSING_VECTOR_RANGE_INSERT +#endif +#endif + namespace mapbox { namespace geometry { namespace wagyu { -enum clip_type : std::uint8_t { - clip_type_intersection = 0, - clip_type_union, - clip_type_difference, - clip_type_x_or -}; +enum clip_type : std::uint8_t { clip_type_intersection = 0, clip_type_union, clip_type_difference, clip_type_x_or }; enum polygon_type : std::uint8_t { polygon_type_subject = 0, polygon_type_clip }; -enum fill_type : std::uint8_t { - fill_type_even_odd = 0, - fill_type_non_zero, - fill_type_positive, - fill_type_negative -}; +enum fill_type : std::uint8_t { fill_type_even_odd = 0, fill_type_non_zero, fill_type_positive, fill_type_negative }; static double const def_arc_tolerance = 0.25; @@ -48,6 +45,6 @@ enum end_type { template using maxima_list = std::list; -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/edge.hpp b/mapbox/geometry/wagyu/edge.hpp index 855f3f0e3..6178cb660 100644 --- a/mapbox/geometry/wagyu/edge.hpp +++ b/mapbox/geometry/wagyu/edge.hpp @@ -39,8 +39,7 @@ struct edge { } template - edge(mapbox::geometry::point const& current, - mapbox::geometry::point const& next_pt) noexcept + edge(mapbox::geometry::point const& current, mapbox::geometry::point const& next_pt) noexcept : bot(static_cast(current.x), static_cast(current.y)), top(static_cast(current.x), static_cast(current.y)), dx(0.0) { @@ -69,8 +68,8 @@ using edge_list_itr = typename edge_list::iterator; template bool slopes_equal(edge const& e1, edge const& e2) { - return (e1.top.y - e1.bot.y) * (e2.top.x - e2.bot.x) == - (e1.top.x - e1.bot.x) * (e2.top.y - e2.bot.y); + return static_cast(e1.top.y - e1.bot.y) * static_cast(e2.top.x - e2.bot.x) == + static_cast(e1.top.x - e1.bot.x) * static_cast(e2.top.y - e2.bot.y); } template @@ -83,16 +82,14 @@ inline double get_current_x(edge const& edge, const T current_y) { if (current_y == edge.top.y) { return static_cast(edge.top.x); } else { - return static_cast(edge.bot.x) + - edge.dx * static_cast(current_y - edge.bot.y); + return static_cast(edge.bot.x) + edge.dx * static_cast(current_y - edge.bot.y); } } #ifdef DEBUG template -inline std::basic_ostream& operator<<(std::basic_ostream& out, - const edge& e) { +inline std::basic_ostream& operator<<(std::basic_ostream& out, const edge& e) { out << " Edge: " << std::endl; out << " bot x: " << e.bot.x << " y: " << e.bot.y << std::endl; out << " top x: " << e.top.x << " y: " << e.top.y << std::endl; @@ -118,6 +115,6 @@ inline std::basic_ostream& operator<<(std::basic_ostream - -namespace mapbox { -namespace geometry { -namespace wagyu { -class clipper_exception : public std::exception { -private: - std::string m_descr; - -public: - clipper_exception(const char* description) : m_descr(description) { - } - virtual ~clipper_exception() noexcept { - } - virtual const char* what() const noexcept { - return m_descr.c_str(); - } -}; -} -} -} diff --git a/mapbox/geometry/wagyu/interrupt.hpp b/mapbox/geometry/wagyu/interrupt.hpp new file mode 100644 index 000000000..d4d68ae93 --- /dev/null +++ b/mapbox/geometry/wagyu/interrupt.hpp @@ -0,0 +1,50 @@ +#pragma once + +/** + * To enable this by the program, define USE_WAGYU_INTERRUPT before including wagyu.hpp + * To request an interruption, call `interrupt_request()`. As soon as Wagyu detects the request + * it will raise an exception (`std::runtime_error`). + */ + +#ifdef USE_WAGYU_INTERRUPT + +namespace { +thread_local bool WAGYU_INTERRUPT_REQUESTED = false; +} + +namespace mapbox { +namespace geometry { +namespace wagyu { + +static void interrupt_reset(void) { + WAGYU_INTERRUPT_REQUESTED = false; +} + +static void interrupt_request(void) { + WAGYU_INTERRUPT_REQUESTED = true; +} + +static void interrupt_check(void) { + if (WAGYU_INTERRUPT_REQUESTED) { + interrupt_reset(); + throw std::runtime_error("Wagyu interrupted"); + } +} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox + +#else /* ! USE_WAGYU_INTERRUPT */ + +namespace mapbox { +namespace geometry { +namespace wagyu { + +static void interrupt_check(void) { +} + +} // namespace wagyu +} // namespace geometry +} // namespace mapbox + +#endif /* USE_WAGYU_INTERRUPT */ diff --git a/mapbox/geometry/wagyu/intersect.hpp b/mapbox/geometry/wagyu/intersect.hpp index f9fbfd923..aae4c8f98 100644 --- a/mapbox/geometry/wagyu/intersect.hpp +++ b/mapbox/geometry/wagyu/intersect.hpp @@ -21,20 +21,18 @@ struct intersect_node { bound_ptr bound2; mapbox::geometry::point pt; - intersect_node(intersect_node&& n) + intersect_node(intersect_node&& n) noexcept : bound1(std::move(n.bound1)), bound2(std::move(n.bound2)), pt(std::move(n.pt)) { } - intersect_node& operator=(intersect_node&& n) { + intersect_node& operator=(intersect_node&& n) noexcept { bound1 = std::move(n.bound1); bound2 = std::move(n.bound2); pt = std::move(n.pt); return *this; } - intersect_node(bound_ptr const& bound1_, - bound_ptr const& bound2_, - mapbox::geometry::point const& pt_) + intersect_node(bound_ptr const& bound1_, bound_ptr const& bound2_, mapbox::geometry::point const& pt_) : bound1(bound1_), bound2(bound2_), pt(pt_) { } }; @@ -67,6 +65,6 @@ inline std::basic_ostream& operator<<(std::basic_ostream& b1, bound& b2) { } template -bool get_edge_intersection(edge const& e1, - edge const& e2, - mapbox::geometry::point& pt) { +bool get_edge_intersection(edge const& e1, edge const& e2, mapbox::geometry::point& pt) { T2 p0_x = static_cast(e1.bot.x); T2 p0_y = static_cast(e1.bot.y); T2 p1_x = static_cast(e1.top.x); @@ -79,8 +77,7 @@ bool get_edge_intersection(edge const& e1, template struct intersection_compare { bool operator()(bound_ptr const& b1, bound_ptr const& b2) { - return !(b1->current_x > b2->current_x && - !slopes_equal(*(b1->current_edge), *(b2->current_edge))); + return !(b1->current_x > b2->current_x && !slopes_equal(*(b1->current_edge), *(b2->current_edge))); } }; @@ -301,14 +298,12 @@ void process_intersect_list(intersect_list& intersects, ring_manager& rings, active_bound_list& active_bounds) { for (auto node_itr = intersects.begin(); node_itr != intersects.end(); ++node_itr) { - auto b1 = std::find_if(active_bounds.begin(), active_bounds.end(), - find_first_bound(*node_itr)); + auto b1 = std::find_if(active_bounds.begin(), active_bounds.end(), find_first_bound(*node_itr)); auto b2 = std::next(b1); if (!bounds_adjacent(*node_itr, *b2)) { auto next_itr = std::next(node_itr); while (next_itr != intersects.end()) { - auto n1 = std::find_if(active_bounds.begin(), active_bounds.end(), - find_first_bound(*next_itr)); + auto n1 = std::find_if(active_bounds.begin(), active_bounds.end(), find_first_bound(*next_itr)); auto n2 = std::next(n1); if (bounds_adjacent(*next_itr, *n2)) { b1 = n1; @@ -323,8 +318,8 @@ void process_intersect_list(intersect_list& intersects, std::iter_swap(node_itr, next_itr); } mapbox::geometry::point pt = round_point(node_itr->pt); - intersect_bounds(*(node_itr->bound1), *(node_itr->bound2), pt, cliptype, subject_fill_type, - clip_fill_type, rings, active_bounds); + intersect_bounds(*(node_itr->bound1), *(node_itr->bound2), pt, cliptype, subject_fill_type, clip_fill_type, + rings, active_bounds); std::iter_swap(b1, b2); } } @@ -357,16 +352,14 @@ void process_intersections(T top_y, } // Restore order of active bounds list - std::stable_sort( - active_bounds.begin(), active_bounds.end(), - [](bound_ptr const& b1, bound_ptr const& b2) { return b1->pos < b2->pos; }); + std::stable_sort(active_bounds.begin(), active_bounds.end(), + [](bound_ptr const& b1, bound_ptr const& b2) { return b1->pos < b2->pos; }); // Sort the intersection list std::stable_sort(intersects.begin(), intersects.end(), intersect_list_sorter()); - process_intersect_list(intersects, cliptype, subject_fill_type, clip_fill_type, rings, - active_bounds); -} -} -} + process_intersect_list(intersects, cliptype, subject_fill_type, clip_fill_type, rings, active_bounds); } +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/local_minimum.hpp b/mapbox/geometry/wagyu/local_minimum.hpp index fe03d84ce..1f579106d 100644 --- a/mapbox/geometry/wagyu/local_minimum.hpp +++ b/mapbox/geometry/wagyu/local_minimum.hpp @@ -45,8 +45,7 @@ using local_minimum_ptr_list_itr = typename local_minimum_ptr_list::iterator; template struct local_minimum_sorter { - inline bool operator()(local_minimum_ptr const& locMin1, - local_minimum_ptr const& locMin2) { + inline bool operator()(local_minimum_ptr const& locMin1, local_minimum_ptr const& locMin2) { if (locMin2->y == locMin1->y) { return locMin2->minimum_has_horizontal != locMin1->minimum_has_horizontal && locMin1->minimum_has_horizontal; @@ -113,6 +112,6 @@ std::string output_all_edges(local_minimum_ptr_list const& lms) { } #endif -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/local_minimum_util.hpp b/mapbox/geometry/wagyu/local_minimum_util.hpp index 32fbf013b..50fd0f563 100644 --- a/mapbox/geometry/wagyu/local_minimum_util.hpp +++ b/mapbox/geometry/wagyu/local_minimum_util.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include @@ -42,12 +43,10 @@ void start_list_on_local_maximum(edge_list& edges) { break; } if (!edge_is_horizontal && prev_edge_is_horizontal) { - if (y_decreasing_before_last_horizontal && - (edge->top == prev_edge->bot || edge->top == prev_edge->top)) { + if (y_decreasing_before_last_horizontal && (edge->top == prev_edge->bot || edge->top == prev_edge->top)) { break; } - } else if (!y_decreasing_before_last_horizontal && !prev_edge_is_horizontal && - edge_is_horizontal && + } else if (!y_decreasing_before_last_horizontal && !prev_edge_is_horizontal && edge_is_horizontal && (prev_edge->top == edge->top || prev_edge->top == edge->bot)) { y_decreasing_before_last_horizontal = true; } @@ -84,12 +83,10 @@ bound create_bound_towards_minimum(edge_list& edges) { break; } if (!next_edge_is_horizontal && edge_is_horizontal) { - if (y_increasing_before_last_horizontal && - (next_edge->bot == edge->bot || next_edge->bot == edge->top)) { + if (y_increasing_before_last_horizontal && (next_edge->bot == edge->bot || next_edge->bot == edge->top)) { break; } - } else if (!y_increasing_before_last_horizontal && !edge_is_horizontal && - next_edge_is_horizontal && + } else if (!y_increasing_before_last_horizontal && !edge_is_horizontal && next_edge_is_horizontal && (edge->bot == next_edge->top || edge->bot == next_edge->bot)) { y_increasing_before_last_horizontal = true; } @@ -132,12 +129,10 @@ bound create_bound_towards_maximum(edge_list& edges) { break; } if (!next_edge_is_horizontal && edge_is_horizontal) { - if (y_decreasing_before_last_horizontal && - (next_edge->top == edge->bot || next_edge->top == edge->top)) { + if (y_decreasing_before_last_horizontal && (next_edge->top == edge->bot || next_edge->top == edge->top)) { break; } - } else if (!y_decreasing_before_last_horizontal && !edge_is_horizontal && - next_edge_is_horizontal && + } else if (!y_decreasing_before_last_horizontal && !edge_is_horizontal && next_edge_is_horizontal && (edge->top == next_edge->top || edge->top == next_edge->bot)) { y_decreasing_before_last_horizontal = true; } @@ -196,14 +191,11 @@ void move_horizontals_on_left_to_right(bound& left_bound, bound& right_bou auto dist = std::distance(left_bound.edges.begin(), edge_itr); std::move(left_bound.edges.begin(), edge_itr, std::back_inserter(right_bound.edges)); left_bound.edges.erase(left_bound.edges.begin(), edge_itr); - std::rotate(right_bound.edges.begin(), std::prev(right_bound.edges.end(), dist), - right_bound.edges.end()); + std::rotate(right_bound.edges.begin(), std::prev(right_bound.edges.end(), dist), right_bound.edges.end()); } template -void add_ring_to_local_minima_list(edge_list& edges, - local_minimum_list& minima_list, - polygon_type poly_type) { +void add_ring_to_local_minima_list(edge_list& edges, local_minimum_list& minima_list, polygon_type poly_type) { if (edges.empty()) { return; @@ -215,6 +207,7 @@ void add_ring_to_local_minima_list(edge_list& edges, bound_ptr first_minimum = nullptr; bound_ptr last_maximum = nullptr; while (!edges.empty()) { + interrupt_check(); // Check for interruptions bool lm_minimum_has_horizontal = false; auto to_minimum = create_bound_towards_minimum(edges); if (edges.empty()) { @@ -226,13 +219,11 @@ void add_ring_to_local_minima_list(edge_list& edges, auto to_max_first_non_horizontal = to_maximum.edges.begin(); auto to_min_first_non_horizontal = to_minimum.edges.begin(); bool minimum_is_left = true; - while (to_max_first_non_horizontal != to_maximum.edges.end() && - is_horizontal(*to_max_first_non_horizontal)) { + while (to_max_first_non_horizontal != to_maximum.edges.end() && is_horizontal(*to_max_first_non_horizontal)) { lm_minimum_has_horizontal = true; ++to_max_first_non_horizontal; } - while (to_min_first_non_horizontal != to_minimum.edges.end() && - is_horizontal(*to_min_first_non_horizontal)) { + while (to_min_first_non_horizontal != to_minimum.edges.end() && is_horizontal(*to_min_first_non_horizontal)) { lm_minimum_has_horizontal = true; ++to_min_first_non_horizontal; } @@ -318,6 +309,6 @@ void initialize_lm(local_minimum_ptr_list_itr& lm) { (*lm)->right_bound.ring = nullptr; } } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/point.hpp b/mapbox/geometry/wagyu/point.hpp index 949a834df..1911914d8 100644 --- a/mapbox/geometry/wagyu/point.hpp +++ b/mapbox/geometry/wagyu/point.hpp @@ -93,8 +93,7 @@ bool operator!=(point const& lhs, mapbox::geometry::point const& rhs) { #ifdef DEBUG template -inline std::basic_ostream& operator<<(std::basic_ostream& out, - const point& p) { +inline std::basic_ostream& operator<<(std::basic_ostream& out, const point& p) { out << " point at: " << p.x << ", " << p.y; return out; } @@ -106,6 +105,6 @@ inline std::basic_ostream& operator<<(std::basic_ostream process_horizontal_left_to_right(T scanline_y, auto hp_itr = rings.current_hp_itr; while (hp_itr != rings.hot_pixels.end() && - (hp_itr->y > scanline_y || - (hp_itr->y == scanline_y && hp_itr->x < (*horz_bound)->current_edge->bot.x))) { + (hp_itr->y > scanline_y || (hp_itr->y == scanline_y && hp_itr->x < (*horz_bound)->current_edge->bot.x))) { ++hp_itr; } @@ -48,15 +47,14 @@ active_bound_list_itr process_horizontal_left_to_right(T scanline_y, // polygons) wherever hot pixels touch these horizontal edges. This helps //'simplifying' polygons (ie if the Simplify property is set). while (hp_itr != rings.hot_pixels.end() && hp_itr->y == scanline_y && - hp_itr->x < wround((*bnd)->current_x) && - hp_itr->x < (*horz_bound)->current_edge->top.x) { + hp_itr->x < wround((*bnd)->current_x) && hp_itr->x < (*horz_bound)->current_edge->top.x) { if ((*horz_bound)->ring) { add_point_to_ring(*(*horz_bound), *hp_itr, rings); } ++hp_itr; } - if ((*bnd)->current_x > static_cast((*horz_bound)->current_edge->top.x)) { + if (greater_than((*bnd)->current_x, static_cast((*horz_bound)->current_edge->top.x))) { break; } @@ -70,17 +68,16 @@ active_bound_list_itr process_horizontal_left_to_right(T scanline_y, // note: may be done multiple times if ((*horz_bound)->ring) { - add_point_to_ring(*(*horz_bound), - mapbox::geometry::point(wround((*bnd)->current_x), scanline_y), + add_point_to_ring(*(*horz_bound), mapbox::geometry::point(wround((*bnd)->current_x), scanline_y), rings); } // OK, so far we're still in range of the horizontal Edge but make sure // we're at the last of consec. horizontals when matching with eMaxPair if (is_maxima_edge && bnd == bound_max_pair) { - if ((*horz_bound)->ring) { - add_local_maximum_point(*(*horz_bound), *(*bound_max_pair), - (*horz_bound)->current_edge->top, rings, active_bounds); + if ((*horz_bound)->ring && (*bound_max_pair)->ring) { + add_local_maximum_point(*(*horz_bound), *(*bound_max_pair), (*horz_bound)->current_edge->top, rings, + active_bounds); } *bound_max_pair = nullptr; *horz_bound = nullptr; @@ -90,8 +87,7 @@ active_bound_list_itr process_horizontal_left_to_right(T scanline_y, return horizontal_itr_behind; } - intersect_bounds(*(*horz_bound), *(*bnd), - mapbox::geometry::point(wround((*bnd)->current_x), scanline_y), + intersect_bounds(*(*horz_bound), *(*bnd), mapbox::geometry::point(wround((*bnd)->current_x), scanline_y), cliptype, subject_fill_type, clip_fill_type, rings, active_bounds); std::iter_swap(horz_bound, bnd); horz_bound = bnd; @@ -135,15 +131,13 @@ active_bound_list_itr process_horizontal_right_to_left(T scanline_y, bool is_maxima_edge = is_maxima(horz_bound_fwd, scanline_y); auto bound_max_pair = active_bounds.rend(); if (is_maxima_edge) { - bound_max_pair = - active_bound_list_rev_itr(get_maxima_pair(horz_bound_fwd, active_bounds)); + bound_max_pair = active_bound_list_rev_itr(get_maxima_pair(horz_bound_fwd, active_bounds)); --bound_max_pair; } auto hp_itr_fwd = rings.current_hp_itr; - while ( - hp_itr_fwd != rings.hot_pixels.end() && - (hp_itr_fwd->y < scanline_y || - (hp_itr_fwd->y == scanline_y && hp_itr_fwd->x < (*horz_bound_fwd)->current_edge->top.x))) { + while (hp_itr_fwd != rings.hot_pixels.end() && + (hp_itr_fwd->y < scanline_y || + (hp_itr_fwd->y == scanline_y && hp_itr_fwd->x < (*horz_bound_fwd)->current_edge->top.x))) { ++hp_itr_fwd; } auto hp_itr = hot_pixel_rev_itr(hp_itr_fwd); @@ -158,15 +152,14 @@ active_bound_list_itr process_horizontal_right_to_left(T scanline_y, // this code block inserts extra coords into horizontal edges (in output // polygons) wherever hot pixels touch these horizontal edges. while (hp_itr != rings.hot_pixels.rend() && hp_itr->y == scanline_y && - hp_itr->x > wround((*bnd)->current_x) && - hp_itr->x > (*horz_bound)->current_edge->top.x) { + hp_itr->x > wround((*bnd)->current_x) && hp_itr->x > (*horz_bound)->current_edge->top.x) { if ((*horz_bound)->ring) { add_point_to_ring(*(*horz_bound), *hp_itr, rings); } ++hp_itr; } - if ((*bnd)->current_x < static_cast((*horz_bound)->current_edge->top.x)) { + if (less_than((*bnd)->current_x, static_cast((*horz_bound)->current_edge->top.x))) { break; } @@ -180,25 +173,23 @@ active_bound_list_itr process_horizontal_right_to_left(T scanline_y, // note: may be done multiple times if ((*horz_bound)->ring) { - add_point_to_ring(*(*horz_bound), - mapbox::geometry::point(wround((*bnd)->current_x), scanline_y), + add_point_to_ring(*(*horz_bound), mapbox::geometry::point(wround((*bnd)->current_x), scanline_y), rings); } // OK, so far we're still in range of the horizontal Edge but make sure // we're at the last of consec. horizontals when matching with eMaxPair if (is_maxima_edge && bnd == bound_max_pair) { - if ((*horz_bound)->ring) { - add_local_maximum_point(*(*horz_bound), *(*bound_max_pair), - (*horz_bound)->current_edge->top, rings, active_bounds); + if ((*horz_bound)->ring && (*bound_max_pair)->ring) { + add_local_maximum_point(*(*horz_bound), *(*bound_max_pair), (*horz_bound)->current_edge->top, rings, + active_bounds); } *bound_max_pair = nullptr; *horz_bound = nullptr; return next_bnd_itr; } - intersect_bounds(*(*bnd), *(*horz_bound), - mapbox::geometry::point(wround((*bnd)->current_x), scanline_y), + intersect_bounds(*(*bnd), *(*horz_bound), mapbox::geometry::point(wround((*bnd)->current_x), scanline_y), cliptype, subject_fill_type, clip_fill_type, rings, active_bounds); std::iter_swap(horz_bound, bnd); horz_bound = bnd; @@ -234,13 +225,11 @@ active_bound_list_itr process_horizontal(T scanline_y, fill_type subject_fill_type, fill_type clip_fill_type) { if ((*horz_bound)->current_edge->bot.x < (*horz_bound)->current_edge->top.x) { - return process_horizontal_left_to_right(scanline_y, horz_bound, active_bounds, rings, - scanbeam, cliptype, subject_fill_type, - clip_fill_type); + return process_horizontal_left_to_right(scanline_y, horz_bound, active_bounds, rings, scanbeam, cliptype, + subject_fill_type, clip_fill_type); } else { - return process_horizontal_right_to_left(scanline_y, horz_bound, active_bounds, rings, - scanbeam, cliptype, subject_fill_type, - clip_fill_type); + return process_horizontal_right_to_left(scanline_y, horz_bound, active_bounds, rings, scanbeam, cliptype, + subject_fill_type, clip_fill_type); } } @@ -254,15 +243,14 @@ void process_horizontals(T scanline_y, fill_type clip_fill_type) { for (auto bnd_itr = active_bounds.begin(); bnd_itr != active_bounds.end();) { if (*bnd_itr != nullptr && current_edge_is_horizontal(bnd_itr)) { - bnd_itr = process_horizontal(scanline_y, bnd_itr, active_bounds, rings, scanbeam, - cliptype, subject_fill_type, clip_fill_type); + bnd_itr = process_horizontal(scanline_y, bnd_itr, active_bounds, rings, scanbeam, cliptype, + subject_fill_type, clip_fill_type); } else { ++bnd_itr; } } - active_bounds.erase(std::remove(active_bounds.begin(), active_bounds.end(), nullptr), - active_bounds.end()); -} -} -} + active_bounds.erase(std::remove(active_bounds.begin(), active_bounds.end(), nullptr), active_bounds.end()); } +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/process_maxima.hpp b/mapbox/geometry/wagyu/process_maxima.hpp index c133d8782..17a9aaaaa 100644 --- a/mapbox/geometry/wagyu/process_maxima.hpp +++ b/mapbox/geometry/wagyu/process_maxima.hpp @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include @@ -33,16 +34,15 @@ active_bound_list_itr do_maxima(active_bound_list_itr& bnd, continue; } skipped = true; - intersect_bounds(*(*bnd), *(*bnd_next), (*bnd)->current_edge->top, cliptype, - subject_fill_type, clip_fill_type, manager, active_bounds); + intersect_bounds(*(*bnd), *(*bnd_next), (*bnd)->current_edge->top, cliptype, subject_fill_type, clip_fill_type, + manager, active_bounds); std::iter_swap(bnd, bnd_next); bnd = bnd_next; ++bnd_next; } if ((*bnd)->ring && (*bndMaxPair)->ring) { - add_local_maximum_point(*(*bnd), *(*bndMaxPair), (*bnd)->current_edge->top, manager, - active_bounds); + add_local_maximum_point(*(*bnd), *(*bndMaxPair), (*bnd)->current_edge->top, manager, active_bounds); } else if ((*bnd)->ring || (*bndMaxPair)->ring) { throw std::runtime_error("DoMaxima error"); } @@ -66,6 +66,7 @@ void process_edges_at_top_of_scanbeam(T top_y, fill_type clip_fill_type) { for (auto bnd = active_bounds.begin(); bnd != active_bounds.end();) { + interrupt_check(); // Check for interruptions if (*bnd == nullptr) { ++bnd; continue; @@ -77,12 +78,10 @@ void process_edges_at_top_of_scanbeam(T top_y, if (is_maxima_edge) { auto bnd_max_pair = get_maxima_pair(bnd, active_bounds); - is_maxima_edge = ((bnd_max_pair == active_bounds.end() || - !current_edge_is_horizontal(bnd_max_pair)) && + is_maxima_edge = ((bnd_max_pair == active_bounds.end() || !current_edge_is_horizontal(bnd_max_pair)) && is_maxima(bnd_max_pair, top_y)); if (is_maxima_edge) { - bnd = do_maxima(bnd, bnd_max_pair, cliptype, subject_fill_type, clip_fill_type, - manager, active_bounds); + bnd = do_maxima(bnd, bnd_max_pair, cliptype, subject_fill_type, clip_fill_type, manager, active_bounds); continue; } } @@ -101,15 +100,12 @@ void process_edges_at_top_of_scanbeam(T top_y, } ++bnd; } - active_bounds.erase(std::remove(active_bounds.begin(), active_bounds.end(), nullptr), - active_bounds.end()); + active_bounds.erase(std::remove(active_bounds.begin(), active_bounds.end(), nullptr), active_bounds.end()); - insert_horizontal_local_minima_into_ABL(top_y, minima_sorted, current_lm, active_bounds, - manager, scanbeam, cliptype, subject_fill_type, - clip_fill_type); + insert_horizontal_local_minima_into_ABL(top_y, minima_sorted, current_lm, active_bounds, manager, scanbeam, + cliptype, subject_fill_type, clip_fill_type); - process_horizontals(top_y, active_bounds, manager, scanbeam, cliptype, subject_fill_type, - clip_fill_type); + process_horizontals(top_y, active_bounds, manager, scanbeam, cliptype, subject_fill_type, clip_fill_type); // 4. Promote intermediate vertices @@ -122,6 +118,6 @@ void process_edges_at_top_of_scanbeam(T top_y, } } } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/quick_clip.hpp b/mapbox/geometry/wagyu/quick_clip.hpp index 3ea358b84..1b137b976 100644 --- a/mapbox/geometry/wagyu/quick_clip.hpp +++ b/mapbox/geometry/wagyu/quick_clip.hpp @@ -18,23 +18,31 @@ mapbox::geometry::point intersect(mapbox::geometry::point a, switch (edge) { case 0: return mapbox::geometry::point( - mapbox::geometry::wagyu::wround(static_cast(a.x) + static_cast(b.x - a.x) * static_cast(box.min.y - a.y) / static_cast(b.y - a.y)), + mapbox::geometry::wagyu::wround(static_cast(a.x) + static_cast(b.x - a.x) * + static_cast(box.min.y - a.y) / + static_cast(b.y - a.y)), box.min.y); case 1: return mapbox::geometry::point( box.max.x, - mapbox::geometry::wagyu::wround(static_cast(a.y) + static_cast(b.y - a.y) * static_cast(box.max.x - a.x) / static_cast(b.x - a.x))); + mapbox::geometry::wagyu::wround(static_cast(a.y) + static_cast(b.y - a.y) * + static_cast(box.max.x - a.x) / + static_cast(b.x - a.x))); case 2: return mapbox::geometry::point( - mapbox::geometry::wagyu::wround(static_cast(a.x) + static_cast(b.x - a.x) * static_cast(box.max.y - a.y) / static_cast(b.y - a.y)), + mapbox::geometry::wagyu::wround(static_cast(a.x) + static_cast(b.x - a.x) * + static_cast(box.max.y - a.y) / + static_cast(b.y - a.y)), box.max.y); default: // case 3 return mapbox::geometry::point( box.min.x, - mapbox::geometry::wagyu::wround(static_cast(a.y) + static_cast(b.y - a.y) * static_cast(box.min.x - a.x) / static_cast(b.x - a.x))); + mapbox::geometry::wagyu::wround(static_cast(a.y) + static_cast(b.y - a.y) * + static_cast(box.min.x - a.x) / + static_cast(b.x - a.x))); } } @@ -93,12 +101,11 @@ mapbox::geometry::linear_ring quick_lr_clip(mapbox::geometry::linear_ring } return out; } -} +} // namespace quick_clip template -mapbox::geometry::multi_polygon clip(mapbox::geometry::polygon const& poly, - mapbox::geometry::box const& b, - fill_type subject_fill_type) { +mapbox::geometry::multi_polygon +clip(mapbox::geometry::polygon const& poly, mapbox::geometry::box const& b, fill_type subject_fill_type) { mapbox::geometry::multi_polygon result; wagyu clipper; for (auto const& lr : poly) { @@ -112,9 +119,8 @@ mapbox::geometry::multi_polygon clip(mapbox::geometry::polygon const& poly } template -mapbox::geometry::multi_polygon clip(mapbox::geometry::multi_polygon const& mp, - mapbox::geometry::box const& b, - fill_type subject_fill_type) { +mapbox::geometry::multi_polygon +clip(mapbox::geometry::multi_polygon const& mp, mapbox::geometry::box const& b, fill_type subject_fill_type) { mapbox::geometry::multi_polygon result; wagyu clipper; for (auto const& poly : mp) { @@ -128,6 +134,6 @@ mapbox::geometry::multi_polygon clip(mapbox::geometry::multi_polygon const clipper.execute(clip_type_union, result, subject_fill_type, fill_type_even_odd); return result; } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/ring.hpp b/mapbox/geometry/wagyu/ring.hpp index 978d98070..eb4ade7f0 100644 --- a/mapbox/geometry/wagyu/ring.hpp +++ b/mapbox/geometry/wagyu/ring.hpp @@ -195,8 +195,7 @@ ring_ptr create_new_ring(ring_manager& manager) { } template -point_ptr -create_new_point(ring_ptr r, mapbox::geometry::point const& pt, ring_manager& rings) { +point_ptr create_new_point(ring_ptr r, mapbox::geometry::point const& pt, ring_manager& rings) { point_ptr point; if (rings.storage.size() < rings.storage.capacity()) { rings.storage.emplace_back(r, pt); @@ -252,10 +251,8 @@ void assign_as_child(ring_ptr new_ring, ring_ptr parent, ring_manager& // Assigning as a child assumes that this is // a brand new ring. Therefore it does // not have any existing relationships - if ((parent == nullptr && new_ring->is_hole()) || - (parent != nullptr && new_ring->is_hole() == parent->is_hole())) { - throw std::runtime_error( - "Trying to assign a child that is the same orientation as the parent"); + if ((parent == nullptr && new_ring->is_hole()) || (parent != nullptr && new_ring->is_hole() == parent->is_hole())) { + throw std::runtime_error("Trying to assign a child that is the same orientation as the parent"); } auto& children = parent == nullptr ? manager.children : parent->children; set_to_children(new_ring, children); @@ -266,10 +263,8 @@ template void reassign_as_child(ring_ptr ring, ring_ptr parent, ring_manager& manager) { // Reassigning a ring assumes it already // has an existing parent - if ((parent == nullptr && ring->is_hole()) || - (parent != nullptr && ring->is_hole() == parent->is_hole())) { - throw std::runtime_error( - "Trying to re-assign a child that is the same orientation as the parent"); + if ((parent == nullptr && ring->is_hole()) || (parent != nullptr && ring->is_hole() == parent->is_hole())) { + throw std::runtime_error("Trying to re-assign a child that is the same orientation as the parent"); } // Remove the old child relationship @@ -288,8 +283,7 @@ void assign_as_sibling(ring_ptr new_ring, ring_ptr sibling, ring_manageris_hole() != sibling->is_hole()) { - throw std::runtime_error( - "Trying to assign to be a sibling that is not the same orientation as the sibling"); + throw std::runtime_error("Trying to assign to be a sibling that is not the same orientation as the sibling"); } auto& children = sibling->parent == nullptr ? manager.children : sibling->parent->children; set_to_children(new_ring, children); @@ -305,8 +299,7 @@ void reassign_as_sibling(ring_ptr ring, ring_ptr sibling, ring_manager& // a brand new ring. Therefore it does // not have any existing relationships if (ring->is_hole() != sibling->is_hole()) { - throw std::runtime_error( - "Trying to assign to be a sibling that is not the same orientation as the sibling"); + throw std::runtime_error("Trying to assign to be a sibling that is not the same orientation as the sibling"); } // Remove the old child relationship auto& old_children = ring->parent == nullptr ? manager.children : ring->parent->children; @@ -387,10 +380,7 @@ void remove_ring_and_points(ring_ptr r, } template -void remove_ring(ring_ptr r, - ring_manager& manager, - bool remove_children = true, - bool remove_from_parent = true) { +void remove_ring(ring_ptr r, ring_manager& manager, bool remove_children = true, bool remove_from_parent = true) { // Removes a ring and any children that might be // under that ring. for (auto& c : r->children) { @@ -513,8 +503,7 @@ void reverse_ring(point_ptr pp) { #ifdef DEBUG template -inline std::basic_ostream& operator<<(std::basic_ostream& out, - ring& r) { +inline std::basic_ostream& operator<<(std::basic_ostream& out, ring& r) { out << " ring_index: " << r.ring_index << std::endl; if (!r.parent) { // out << " parent_ring ptr: nullptr" << std::endl; @@ -601,8 +590,7 @@ std::string output_as_polygon(ring_ptr r) { } template -inline std::basic_ostream& operator<<(std::basic_ostream& out, - ring_vector& rings) { +inline std::basic_ostream& operator<<(std::basic_ostream& out, ring_vector& rings) { out << "START RING VECTOR" << std::endl; for (auto& r : rings) { if (r == nullptr || !r->points) { @@ -640,6 +628,6 @@ inline std::basic_ostream& operator<<(std::basic_ostream -void set_hole_state(bound& bnd, - active_bound_list const& active_bounds, - ring_manager& rings) { +void set_hole_state(bound& bnd, active_bound_list const& active_bounds, ring_manager& rings) { auto bnd_itr = std::find(active_bounds.rbegin(), active_bounds.rend(), &bnd); ++bnd_itr; bound_ptr bndTmp = nullptr; @@ -67,8 +65,7 @@ void update_current_hp_itr(T scanline_y, ring_manager& rings) { template struct hot_pixel_sorter { - inline bool operator()(mapbox::geometry::point const& pt1, - mapbox::geometry::point const& pt2) { + inline bool operator()(mapbox::geometry::point const& pt1, mapbox::geometry::point const& pt2) { if (pt1.y == pt2.y) { return pt1.x < pt2.x; } else { @@ -77,18 +74,17 @@ struct hot_pixel_sorter { } }; -// Due to the nature of floating point calculations -// and the high likely hood of values around X.5, we -// need to fudge what is X.5 some for our rounding. -const double rounding_offset = 1e-12; -const double rounding_offset_y = 5e-13; - template T round_towards_min(double val) { // 0.5 rounds to 0 // 0.0 rounds to 0 // -0.5 rounds to -1 - return static_cast(std::ceil(val - 0.5 + rounding_offset)); + double half = std::floor(val) + 0.5; + if (values_are_equal(val, half)) { + return static_cast(std::floor(val)); + } else { + return static_cast(std::llround(val)); + } } template @@ -96,7 +92,12 @@ T round_towards_max(double val) { // 0.5 rounds to 1 // 0.0 rounds to 0 // -0.5 rounds to 0 - return static_cast(std::floor(val + 0.5 + rounding_offset)); + double half = std::floor(val) + 0.5; + if (values_are_equal(val, half)) { + return static_cast(std::ceil(val)); + } else { + return static_cast(std::llround(val)); + } } template @@ -121,8 +122,7 @@ inline T get_edge_min_x(edge const& edge, const T current_y) { return edge.bot.x; } else { double return_val = - static_cast(edge.bot.x) + - edge.dx * (static_cast(current_y - edge.bot.y) + 0.5 - rounding_offset_y); + static_cast(edge.bot.x) + edge.dx * (static_cast(current_y - edge.bot.y) + 0.5); T value = round_towards_min(return_val); return value; } @@ -151,8 +151,7 @@ inline T get_edge_max_x(edge const& edge, const T current_y) { return edge.bot.x; } else { double return_val = - static_cast(edge.bot.x) + - edge.dx * (static_cast(current_y - edge.bot.y) + 0.5 - rounding_offset_y); + static_cast(edge.bot.x) + edge.dx * (static_cast(current_y - edge.bot.y) + 0.5); T value = round_towards_max(return_val); return value; } @@ -274,8 +273,7 @@ void insert_hot_pixels_in_path(bound& bnd, } auto first_itr = hot_pixel_rev_itr(itr); bool add_end_point_itr = (y != end_pt.y || add_end_point); - hot_pixel_set_right_to_left(y, start_x, end_x, bnd, rings, first_itr, last_itr, - add_end_point_itr); + hot_pixel_set_right_to_left(y, start_x, end_x, bnd, rings, first_itr, last_itr, add_end_point_itr); } } else { for (; itr != rings.hot_pixels.end();) { @@ -293,8 +291,7 @@ void insert_hot_pixels_in_path(bound& bnd, } auto last_itr = itr; bool add_end_point_itr = (y != end_pt.y || add_end_point); - hot_pixel_set_left_to_right(y, start_x, end_x, bnd, rings, first_itr, last_itr, - add_end_point_itr); + hot_pixel_set_left_to_right(y, start_x, end_x, bnd, rings, first_itr, last_itr, add_end_point_itr); } } bnd.last_point = end_pt; @@ -319,9 +316,7 @@ void add_first_point(bound& bnd, } template -void add_point_to_ring(bound& bnd, - mapbox::geometry::point const& pt, - ring_manager& rings) { +void add_point_to_ring(bound& bnd, mapbox::geometry::point const& pt, ring_manager& rings) { assert(bnd.ring); // Handle hot pixels insert_hot_pixels_in_path(bnd, pt, rings, false); @@ -456,32 +451,32 @@ point_ptr get_bottom_point(point_ptr pp) { } template -ring_ptr get_lower_most_ring(ring_ptr outRec1, ring_ptr outRec2) { +ring_ptr get_lower_most_ring(ring_ptr ring1, ring_ptr ring2) { // work out which polygon fragment has the correct hole state ... - if (!outRec1->bottom_point) { - outRec1->bottom_point = get_bottom_point(outRec1->points); - } - if (!outRec2->bottom_point) { - outRec2->bottom_point = get_bottom_point(outRec2->points); - } - point_ptr OutPt1 = outRec1->bottom_point; - point_ptr OutPt2 = outRec2->bottom_point; - if (OutPt1->y > OutPt2->y) { - return outRec1; - } else if (OutPt1->y < OutPt2->y) { - return outRec2; - } else if (OutPt1->x < OutPt2->x) { - return outRec1; - } else if (OutPt1->x > OutPt2->x) { - return outRec2; - } else if (OutPt1->next == OutPt1) { - return outRec2; - } else if (OutPt2->next == OutPt2) { - return outRec1; - } else if (first_is_bottom_point(OutPt1, OutPt2)) { - return outRec1; + if (!ring1->bottom_point) { + ring1->bottom_point = get_bottom_point(ring1->points); + } + if (!ring2->bottom_point) { + ring2->bottom_point = get_bottom_point(ring2->points); + } + point_ptr pt1 = ring1->bottom_point; + point_ptr pt2 = ring2->bottom_point; + if (pt1->y > pt2->y) { + return ring1; + } else if (pt1->y < pt2->y) { + return ring2; + } else if (pt1->x < pt2->x) { + return ring1; + } else if (pt1->x > pt2->x) { + return ring2; + } else if (pt1->next == pt1) { + return ring2; + } else if (pt2->next == pt2) { + return ring1; + } else if (first_is_bottom_point(pt1, pt2)) { + return ring1; } else { - return outRec2; + return ring2; } } @@ -506,10 +501,7 @@ void update_points_ring(ring_ptr ring) { } template -void append_ring(bound& b1, - bound& b2, - active_bound_list& active_bounds, - ring_manager& manager) { +void append_ring(bound& b1, bound& b2, active_bound_list& active_bounds, ring_manager& manager) { // get the start and ends of both output polygons ... ring_ptr outRec1 = b1.ring; ring_ptr outRec2 = b2.ring; @@ -645,8 +637,7 @@ point_in_polygon_result point_in_polygon(point const& pt, point_ptr op) { point_ptr startOp = op; do { if (op->next->y == pt.y) { - if ((op->next->x == pt.x) || - (op->y == pt.y && ((op->next->x > pt.x) == (op->x < pt.x)))) { + if ((op->next->x == pt.x) || (op->y == pt.y && ((op->next->x > pt.x) == (op->x < pt.x)))) { return point_on_polygon; } } @@ -661,10 +652,8 @@ point_in_polygon_result point_in_polygon(point const& pt, point_ptr op) { result = point_outside_polygon; } } else { - double d = - static_cast(op->x - pt.x) * - static_cast(op->next->y - pt.y) - - static_cast(op->next->x - pt.x) * static_cast(op->y - pt.y); + double d = static_cast(op->x - pt.x) * static_cast(op->next->y - pt.y) - + static_cast(op->next->x - pt.x) * static_cast(op->y - pt.y); if (value_is_zero(d)) { return point_on_polygon; } @@ -680,10 +669,8 @@ point_in_polygon_result point_in_polygon(point const& pt, point_ptr op) { } } else { if (op->next->x > pt.x) { - double d = - static_cast(op->x - pt.x) * - static_cast(op->next->y - pt.y) - - static_cast(op->next->x - pt.x) * static_cast(op->y - pt.y); + double d = static_cast(op->x - pt.x) * static_cast(op->next->y - pt.y) - + static_cast(op->next->x - pt.x) * static_cast(op->y - pt.y); if (value_is_zero(d)) { return point_on_polygon; } @@ -705,8 +692,7 @@ point_in_polygon_result point_in_polygon(point const& pt, point_ptr op) { } template -point_in_polygon_result point_in_polygon(mapbox::geometry::point const& pt, - point_ptr op) { +point_in_polygon_result point_in_polygon(mapbox::geometry::point const& pt, point_ptr op) { // returns 0 if false, +1 if true, -1 if pt ON polygon boundary point_in_polygon_result result = point_outside_polygon; point_ptr startOp = op; @@ -732,8 +718,7 @@ point_in_polygon_result point_in_polygon(mapbox::geometry::point const& result = point_outside_polygon; } } else { - double d = - (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); + double d = (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); if (value_is_zero(d)) { return point_on_polygon; } @@ -749,8 +734,7 @@ point_in_polygon_result point_in_polygon(mapbox::geometry::point const& } } else { if (op_next_x > pt.x) { - double d = - (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); + double d = (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); if (value_is_zero(d)) { return point_on_polygon; } @@ -793,7 +777,8 @@ template mapbox::geometry::point centroid_of_points(point_ptr edge) { point_ptr prev = edge->prev; point_ptr next = edge->next; - return { static_cast(prev->x + edge->x + next->x) / 3.0, static_cast(prev->y + edge->y + next->y) / 3.0 }; + return { static_cast(prev->x + edge->x + next->x) / 3.0, + static_cast(prev->y + edge->y + next->y) / 3.0 }; } template @@ -819,8 +804,7 @@ point_in_polygon_result inside_or_outside_special(point_ptr first_pt, point_p } template -bool box2_contains_box1(mapbox::geometry::box const& box1, - mapbox::geometry::box const& box2) { +bool box2_contains_box1(mapbox::geometry::box const& box1, mapbox::geometry::box const& box2) { return (box2.max.x >= box1.max.x && box2.max.y >= box1.max.y && box2.min.x <= box1.min.x && box2.min.y <= box1.min.y); } @@ -847,6 +831,6 @@ bool poly2_contains_poly1(ring_ptr ring1, ring_ptr ring2) { point_in_polygon_result res = inside_or_outside_special(outpt1, outpt2); return res == point_inside_polygon; } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/scanbeam.hpp b/mapbox/geometry/wagyu/scanbeam.hpp index 5ec6408f9..5f010abd1 100644 --- a/mapbox/geometry/wagyu/scanbeam.hpp +++ b/mapbox/geometry/wagyu/scanbeam.hpp @@ -12,13 +12,20 @@ namespace wagyu { template using scanbeam_list = std::vector; +template +void insert_sorted_scanbeam(scanbeam_list& scanbeam, T& t) { + typename scanbeam_list::iterator i = std::lower_bound(scanbeam.begin(), scanbeam.end(), t); + if (i == scanbeam.end() || t < *i) { + scanbeam.insert(i, t); + } +} + template bool pop_from_scanbeam(T& Y, scanbeam_list& scanbeam) { if (scanbeam.empty()) { return false; } - std::sort(scanbeam.begin(), scanbeam.end()); - scanbeam.erase(std::unique(scanbeam.begin(), scanbeam.end()), scanbeam.end()); + Y = scanbeam.back(); scanbeam.pop_back(); return true; @@ -27,10 +34,12 @@ bool pop_from_scanbeam(T& Y, scanbeam_list& scanbeam) { template void setup_scanbeam(local_minimum_list& minima_list, scanbeam_list& scanbeam) { + scanbeam.reserve(minima_list.size()); for (auto lm = minima_list.begin(); lm != minima_list.end(); ++lm) { scanbeam.push_back(lm->y); } + std::sort(scanbeam.begin(), scanbeam.end()); } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/snap_rounding.hpp b/mapbox/geometry/wagyu/snap_rounding.hpp index d10b3d0b5..ea5cc8085 100644 --- a/mapbox/geometry/wagyu/snap_rounding.hpp +++ b/mapbox/geometry/wagyu/snap_rounding.hpp @@ -35,9 +35,7 @@ struct hp_intersection_swap { }; template -void process_hot_pixel_intersections(T top_y, - active_bound_list& active_bounds, - ring_manager& manager) { +void process_hot_pixel_intersections(T top_y, active_bound_list& active_bounds, ring_manager& manager) { if (active_bounds.empty()) { return; } @@ -121,8 +119,7 @@ void process_hot_pixel_edges_at_top_of_scanbeam(T top_y, ++bnd; } } - active_bounds.erase(std::remove(active_bounds.begin(), active_bounds.end(), nullptr), - active_bounds.end()); + active_bounds.erase(std::remove(active_bounds.begin(), active_bounds.end(), nullptr), active_bounds.end()); } template @@ -144,11 +141,11 @@ void insert_local_minima_into_ABL_hot_pixel(T top_y, right_bound.current_x = static_cast(right_bound.current_edge->bot.x); auto lb_abl_itr = insert_bound_into_ABL(left_bound, right_bound, active_bounds); if (!current_edge_is_horizontal(lb_abl_itr)) { - scanbeam.push_back((*lb_abl_itr)->current_edge->top.y); + insert_sorted_scanbeam(scanbeam, (*lb_abl_itr)->current_edge->top.y); } auto rb_abl_itr = std::next(lb_abl_itr); if (!current_edge_is_horizontal(rb_abl_itr)) { - scanbeam.push_back((*rb_abl_itr)->current_edge->top.y); + insert_sorted_scanbeam(scanbeam, (*rb_abl_itr)->current_edge->top.y); } ++lm; } @@ -182,14 +179,13 @@ void build_hot_pixels(local_minimum_list& minima_list, ring_manager& manag process_hot_pixel_intersections(scanline_y, active_bounds, manager); - insert_local_minima_into_ABL_hot_pixel(scanline_y, minima_sorted, current_lm, active_bounds, - manager, scanbeam); + insert_local_minima_into_ABL_hot_pixel(scanline_y, minima_sorted, current_lm, active_bounds, manager, scanbeam); process_hot_pixel_edges_at_top_of_scanbeam(scanline_y, scanbeam, active_bounds, manager); } preallocate_point_memory(manager, manager.hot_pixels.size()); sort_hot_pixels(manager); } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/topology_correction.hpp b/mapbox/geometry/wagyu/topology_correction.hpp index ffe27bc62..4d7577829 100644 --- a/mapbox/geometry/wagyu/topology_correction.hpp +++ b/mapbox/geometry/wagyu/topology_correction.hpp @@ -113,13 +113,11 @@ bool find_intersect_loop(std::unordered_multimap, point_ptr_pair> for (auto& it = range.first; it != range.second;) { ring_ptr it_ring1 = it->second.op1->ring; ring_ptr it_ring2 = it->second.op2->ring; - if (!it_ring1 || !it_ring2 || it_ring1 != ring_search || - (!it_ring1->is_hole() && !it_ring2->is_hole())) { + if (!it_ring1 || !it_ring2 || it_ring1 != ring_search || (!it_ring1->is_hole() && !it_ring2->is_hole())) { it = dupe_ring.erase(it); continue; } - if (it_ring2 == ring_origin && - (ring_parent == it_ring2 || ring_parent == it_ring2->parent) && + if (it_ring2 == ring_origin && (ring_parent == it_ring2 || ring_parent == it_ring2->parent) && *prev_pt != *it->second.op2 && *orig_pt != *it->second.op2) { iList.emplace_front(ring_search, it->second); return true; @@ -130,16 +128,15 @@ bool find_intersect_loop(std::unordered_multimap, point_ptr_pair> auto range = dupe_ring.equal_range(ring_search); visited.insert(ring_search); // Check for connection through chain of other intersections - for (auto& it = range.first; - it != range.second && it != dupe_ring.end() && it->first == ring_search; ++it) { + for (auto& it = range.first; it != range.second && it != dupe_ring.end() && it->first == ring_search; ++it) { ring_ptr it_ring = it->second.op2->ring; if (visited.count(it_ring) > 0 || it_ring == nullptr || - (ring_parent != it_ring && ring_parent != it_ring->parent) || - value_is_zero(it_ring->area()) || *prev_pt == *it->second.op2) { + (ring_parent != it_ring && ring_parent != it_ring->parent) || value_is_zero(it_ring->area()) || + *prev_pt == *it->second.op2) { continue; } - if (find_intersect_loop(dupe_ring, iList, ring_parent, ring_origin, it_ring, visited, - orig_pt, it->second.op2, rings)) { + if (find_intersect_loop(dupe_ring, iList, ring_parent, ring_origin, it_ring, visited, orig_pt, it->second.op2, + rings)) { iList.emplace_front(ring_search, it->second); return true; } @@ -190,20 +187,17 @@ point_vector sort_ring_points(ring_ptr r) { point_itr = point_itr->next; } sorted_points.push_back(last_point); - std::stable_sort(sorted_points.begin(), sorted_points.end(), - [](point_ptr const& pt1, point_ptr const& pt2) { - if (pt1->y != pt2->y) { - return (pt1->y > pt2->y); - } - return (pt1->x < pt2->x); - }); + std::stable_sort(sorted_points.begin(), sorted_points.end(), [](point_ptr const& pt1, point_ptr const& pt2) { + if (pt1->y != pt2->y) { + return (pt1->y > pt2->y); + } + return (pt1->x < pt2->x); + }); return sorted_points; } template -ring_ptr correct_self_intersection(point_ptr pt1, - point_ptr pt2, - ring_manager& manager) { +ring_ptr correct_self_intersection(point_ptr pt1, point_ptr pt2, ring_manager& manager) { if (pt1->ring != pt2->ring) { return static_cast>(nullptr); } @@ -263,9 +257,7 @@ void correct_repeated_points(ring_manager& manager, } template -void find_and_correct_repeated_points(ring_ptr r, - ring_manager& manager, - ring_vector& new_rings) { +void find_and_correct_repeated_points(ring_ptr r, ring_manager& manager, ring_vector& new_rings) { auto sorted_points = sort_ring_points(r); // Find sets of repeated points std::size_t count = 0; @@ -342,9 +334,7 @@ bool find_parent_in_tree(ring_ptr r, ring_ptr possible_parent, ring_manage } template -void assign_new_ring_parents(ring_manager& manager, - ring_ptr original_ring, - ring_vector& new_rings) { +void assign_new_ring_parents(ring_manager& manager, ring_ptr original_ring, ring_vector& new_rings) { // First lets remove any rings that have zero area // or have no points @@ -383,18 +373,16 @@ void assign_new_ring_parents(ring_manager& manager, // The new ring is a child of original ring // Check the assign_as_child(new_rings.front(), original_ring, manager); - reassign_children_if_necessary(new_rings.front(), original_ring->parent, manager, - new_rings); + reassign_children_if_necessary(new_rings.front(), original_ring->parent, manager, new_rings); } return; } // Now we want to sort rings from the largest in absolute area to the smallest // as we will assign the rings with the largest areas first - std::stable_sort(new_rings.begin(), new_rings.end(), - [](ring_ptr const& r1, ring_ptr const& r2) { - return std::fabs(r1->area()) > std::fabs(r2->area()); - }); + std::stable_sort(new_rings.begin(), new_rings.end(), [](ring_ptr const& r1, ring_ptr const& r2) { + return std::fabs(r1->area()) > std::fabs(r2->area()); + }); for (auto r_itr = new_rings.begin(); r_itr != new_rings.end(); ++r_itr) { double new_ring_area = (*r_itr)->area(); @@ -420,8 +408,7 @@ void assign_new_ring_parents(ring_manager& manager, } } else { if (find_parent_in_tree(*r_itr, *s_itr, manager)) { - reassign_children_if_necessary(*r_itr, original_ring->parent, manager, - new_rings); + reassign_children_if_necessary(*r_itr, original_ring->parent, manager, new_rings); found = true; } } @@ -482,11 +469,10 @@ bool correct_ring_self_intersections(ring_manager& manager, ring_ptr r, bo } template -void process_single_intersection( - std::unordered_multimap, point_ptr_pair>& connection_map, - point_ptr op_j, - point_ptr op_k, - ring_manager& manager) { +void process_single_intersection(std::unordered_multimap, point_ptr_pair>& connection_map, + point_ptr op_j, + point_ptr op_k, + ring_manager& manager) { ring_ptr ring_j = op_j->ring; ring_ptr ring_k = op_k->ring; if (ring_j == ring_k) { @@ -560,14 +546,13 @@ void process_single_intersection( std::set> visited; visited.insert(ring_search); // Check for connection through chain of other intersections - for (auto& it = range.first; - it != range.second && it != connection_map.end() && it->first == ring_search; ++it) { + for (auto& it = range.first; it != range.second && it != connection_map.end() && it->first == ring_search; + ++it) { ring_ptr it_ring = it->second.op2->ring; if (it_ring != ring_search && *op_origin_2 != *it->second.op2 && it_ring != nullptr && - (ring_parent == it_ring || ring_parent == it_ring->parent) && - !value_is_zero(it_ring->area()) && - find_intersect_loop(connection_map, iList, ring_parent, ring_origin, it_ring, - visited, op_origin_2, it->second.op2, manager)) { + (ring_parent == it_ring || ring_parent == it_ring->parent) && !value_is_zero(it_ring->area()) && + find_intersect_loop(connection_map, iList, ring_parent, ring_origin, it_ring, visited, op_origin_2, + it->second.op2, manager)) { found = true; iList.emplace_front(ring_search, it->second); break; @@ -749,11 +734,10 @@ void process_single_intersection( } template -void correct_chained_repeats( - ring_manager& manager, - std::unordered_multimap, point_ptr_pair>& connection_map, - point_vector_itr const& begin, - point_vector_itr const& end) { +void correct_chained_repeats(ring_manager& manager, + std::unordered_multimap, point_ptr_pair>& connection_map, + point_vector_itr const& begin, + point_vector_itr const& end) { for (auto itr1 = begin; itr1 != end; ++itr1) { if ((*itr1)->ring == nullptr) { continue; @@ -818,13 +802,12 @@ ring_vector sort_rings_largest_to_smallest(ring_manager& manager) { for (auto& r : manager.rings) { sorted_rings.push_back(&r); } - std::stable_sort(sorted_rings.begin(), sorted_rings.end(), - [](ring_ptr const& r1, ring_ptr const& r2) { - if (!r1->points || !r2->points) { - return r1->points != nullptr; - } - return std::fabs(r1->area()) > std::fabs(r2->area()); - }); + std::stable_sort(sorted_rings.begin(), sorted_rings.end(), [](ring_ptr const& r1, ring_ptr const& r2) { + if (!r1->points || !r2->points) { + return r1->points != nullptr; + } + return std::fabs(r1->area()) > std::fabs(r2->area()); + }); return sorted_rings; } @@ -835,13 +818,12 @@ ring_vector sort_rings_smallest_to_largest(ring_manager& manager) { for (auto& r : manager.rings) { sorted_rings.push_back(&r); } - std::stable_sort(sorted_rings.begin(), sorted_rings.end(), - [](ring_ptr const& r1, ring_ptr const& r2) { - if (!r1->points || !r2->points) { - return r1->points != nullptr; - } - return std::fabs(r1->area()) < std::fabs(r2->area()); - }); + std::stable_sort(sorted_rings.begin(), sorted_rings.end(), [](ring_ptr const& r1, ring_ptr const& r2) { + if (!r1->points || !r2->points) { + return r1->points != nullptr; + } + return std::fabs(r1->area()) < std::fabs(r2->area()); + }); return sorted_rings; } @@ -1049,9 +1031,7 @@ bool has_collinear_edge(point_ptr pt_a, point_ptr pt_b) { } template -void process_collinear_edges_same_ring(point_ptr pt_a, - point_ptr pt_b, - ring_manager& manager) { +void process_collinear_edges_same_ring(point_ptr pt_a, point_ptr pt_b, ring_manager& manager) { ring_ptr original_ring = pt_a->ring; // As they are the same ring that are forming a collinear edge // we should expect the creation of two different rings. @@ -1081,9 +1061,7 @@ void process_collinear_edges_same_ring(point_ptr pt_a, } template -void process_collinear_edges_different_rings(point_ptr pt_a, - point_ptr pt_b, - ring_manager& manager) { +void process_collinear_edges_different_rings(point_ptr pt_a, point_ptr pt_b, ring_manager& manager) { ring_ptr ring_a = pt_a->ring; ring_ptr ring_b = pt_b->ring; bool ring_a_larger = std::fabs(ring_a->area()) > std::fabs(ring_b->area()); @@ -1364,6 +1342,6 @@ void correct_topology(ring_manager& manager) { fixed_intersections = correct_self_intersections(manager, true); } } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/util.hpp b/mapbox/geometry/wagyu/util.hpp index c7fedae0e..974afc416 100644 --- a/mapbox/geometry/wagyu/util.hpp +++ b/mapbox/geometry/wagyu/util.hpp @@ -4,6 +4,7 @@ #include #include +#include #include namespace mapbox { @@ -30,37 +31,48 @@ double area(mapbox::geometry::linear_ring const& poly) { return -a * 0.5; } -inline bool value_is_zero(double val) { - return std::fabs(val) < (5.0 * std::numeric_limits::epsilon()); +inline bool values_are_equal(double x, double y) { + return util::FloatingPoint(x).AlmostEquals(util::FloatingPoint(y)); } -inline bool values_are_equal(double x, double y) { - return value_is_zero(x - y); +inline bool value_is_zero(double val) { + return values_are_equal(val, static_cast(0.0)); } inline bool greater_than_or_equal(double x, double y) { return x > y || values_are_equal(x, y); } +inline bool greater_than(double x, double y) { + return (!values_are_equal(x, y) && x > y); +} + +inline bool less_than(double x, double y) { + return (!values_are_equal(x, y) && x < y); +} + template bool slopes_equal(mapbox::geometry::point const& pt1, mapbox::geometry::point const& pt2, mapbox::geometry::point const& pt3) { - return (pt1.y - pt2.y) * (pt2.x - pt3.x) == (pt1.x - pt2.x) * (pt2.y - pt3.y); + return static_cast(pt1.y - pt2.y) * static_cast(pt2.x - pt3.x) == + static_cast(pt1.x - pt2.x) * static_cast(pt2.y - pt3.y); } template bool slopes_equal(mapbox::geometry::wagyu::point const& pt1, mapbox::geometry::wagyu::point const& pt2, mapbox::geometry::point const& pt3) { - return (pt1.y - pt2.y) * (pt2.x - pt3.x) == (pt1.x - pt2.x) * (pt2.y - pt3.y); + return static_cast(pt1.y - pt2.y) * static_cast(pt2.x - pt3.x) == + static_cast(pt1.x - pt2.x) * static_cast(pt2.y - pt3.y); } template bool slopes_equal(mapbox::geometry::wagyu::point const& pt1, mapbox::geometry::wagyu::point const& pt2, mapbox::geometry::wagyu::point const& pt3) { - return (pt1.y - pt2.y) * (pt2.x - pt3.x) == (pt1.x - pt2.x) * (pt2.y - pt3.y); + return static_cast(pt1.y - pt2.y) * static_cast(pt2.x - pt3.x) == + static_cast(pt1.x - pt2.x) * static_cast(pt2.y - pt3.y); } template @@ -68,7 +80,8 @@ bool slopes_equal(mapbox::geometry::point const& pt1, mapbox::geometry::point const& pt2, mapbox::geometry::point const& pt3, mapbox::geometry::point const& pt4) { - return (pt1.y - pt2.y) * (pt3.x - pt4.x) == (pt1.x - pt2.x) * (pt3.y - pt4.y); + return static_cast(pt1.y - pt2.y) * static_cast(pt3.x - pt4.x) == + static_cast(pt1.x - pt2.x) * static_cast(pt3.y - pt4.y); } template @@ -80,6 +93,6 @@ template <> inline std::int64_t wround(double value) { return ::llround(value); } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/vatti.hpp b/mapbox/geometry/wagyu/vatti.hpp index e75e72c15..6f675ea52 100644 --- a/mapbox/geometry/wagyu/vatti.hpp +++ b/mapbox/geometry/wagyu/vatti.hpp @@ -42,25 +42,23 @@ void execute_vatti(local_minimum_list& minima_list, while (pop_from_scanbeam(scanline_y, scanbeam) || current_lm != minima_sorted.end()) { - process_intersections(scanline_y, active_bounds, cliptype, subject_fill_type, - clip_fill_type, manager); + process_intersections(scanline_y, active_bounds, cliptype, subject_fill_type, clip_fill_type, manager); update_current_hp_itr(scanline_y, manager); // First we process bounds that has already been added to the active bound list -- // if the active bound list is empty local minima that are at this scanline_y and // have a horizontal edge at the local minima will be processed - process_edges_at_top_of_scanbeam(scanline_y, active_bounds, scanbeam, minima_sorted, - current_lm, manager, cliptype, subject_fill_type, - clip_fill_type); + process_edges_at_top_of_scanbeam(scanline_y, active_bounds, scanbeam, minima_sorted, current_lm, manager, + cliptype, subject_fill_type, clip_fill_type); // Next we will add local minima bounds to the active bounds list that are on the local // minima queue at // this current scanline_y - insert_local_minima_into_ABL(scanline_y, minima_sorted, current_lm, active_bounds, manager, - scanbeam, cliptype, subject_fill_type, clip_fill_type); + insert_local_minima_into_ABL(scanline_y, minima_sorted, current_lm, active_bounds, manager, scanbeam, cliptype, + subject_fill_type, clip_fill_type); } } -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/wagyu/wagyu.hpp b/mapbox/geometry/wagyu/wagyu.hpp index 8490337f5..157e36e7a 100644 --- a/mapbox/geometry/wagyu/wagyu.hpp +++ b/mapbox/geometry/wagyu/wagyu.hpp @@ -10,17 +10,17 @@ #include #include #include +#include #include #include #include #include #define WAGYU_MAJOR_VERSION 0 -#define WAGYU_MINOR_VERSION 4 -#define WAGYU_PATCH_VERSION 3 +#define WAGYU_MINOR_VERSION 5 +#define WAGYU_PATCH_VERSION 0 -#define WAGYU_VERSION \ - (WAGYU_MAJOR_VERSION * 100000) + (WAGYU_MINOR_VERSION * 100) + (WAGYU_PATCH_VERSION) +#define WAGYU_VERSION (WAGYU_MAJOR_VERSION * 100000) + (WAGYU_MINOR_VERSION * 100) + (WAGYU_PATCH_VERSION) namespace mapbox { namespace geometry { @@ -44,14 +44,12 @@ class wagyu { } template - bool add_ring(mapbox::geometry::linear_ring const& pg, - polygon_type p_type = polygon_type_subject) { + bool add_ring(mapbox::geometry::linear_ring const& pg, polygon_type p_type = polygon_type_subject) { return add_linear_ring(pg, minima_list, p_type); } template - bool add_polygon(mapbox::geometry::polygon const& ppg, - polygon_type p_type = polygon_type_subject) { + bool add_polygon(mapbox::geometry::polygon const& ppg, polygon_type p_type = polygon_type_subject) { bool result = false; for (auto const& r : ppg) { if (add_ring(r, p_type)) { @@ -125,10 +123,16 @@ class wagyu { ring_manager manager; + interrupt_check(); // Check for interruptions + build_hot_pixels(minima_list, manager); + interrupt_check(); // Check for interruptions + execute_vatti(minima_list, manager, cliptype, subject_fill_type, clip_fill_type); + interrupt_check(); // Check for interruptions + correct_topology(manager); build_result(solution, manager, reverse_output); @@ -136,6 +140,6 @@ class wagyu { return true; } }; -} -} -} +} // namespace wagyu +} // namespace geometry +} // namespace mapbox diff --git a/mbtiles.cpp b/mbtiles.cpp index 7de5ce68e..a430a72fa 100644 --- a/mbtiles.cpp +++ b/mbtiles.cpp @@ -45,7 +45,8 @@ sqlite3 *mbtiles_open(char *dbname, char **argv, int forcetable) { exit(EXIT_FAILURE); } if (sqlite3_exec(outdb, "CREATE TABLE metadata (name text, value text);", NULL, NULL, &err) != SQLITE_OK) { - fprintf(stderr, "%s: create metadata table: %s\n", argv[0], err); + fprintf(stderr, "%s: Tileset \"%s\" already exists. You can use --force if you want to delete the old tileset.\n", argv[0], dbname); + fprintf(stderr, "%s: %s\n", argv[0], err); if (!forcetable) { exit(EXIT_FAILURE); } @@ -129,10 +130,7 @@ void tilestats(std::map const &layermap1, size_t el state.json_write_string("layers"); state.json_write_array(); - bool first = true; for (auto layer : layermap) { - first = false; - state.nospace = true; state.json_write_hash(); @@ -269,7 +267,7 @@ void tilestats(std::map const &layermap1, size_t el state.json_end_hash(); } -void mbtiles_write_metadata(sqlite3 *outdb, const char *outdir, const char *fname, int minzoom, int maxzoom, double minlat, double minlon, double maxlat, double maxlon, double midlat, double midlon, int forcetable, const char *attribution, std::map const &layermap, bool vector, const char *description, bool do_tilestats, std::map const &attribute_descriptions, std::string const &program) { +void mbtiles_write_metadata(sqlite3 *outdb, const char *outdir, const char *fname, int minzoom, int maxzoom, double minlat, double minlon, double maxlat, double maxlon, double midlat, double midlon, int forcetable, const char *attribution, std::map const &layermap, bool vector, const char *description, bool do_tilestats, std::map const &attribute_descriptions, std::string const &program, std::string const &commandline) { char *sql, *err; sqlite3 *db = outdb; @@ -379,7 +377,16 @@ void mbtiles_write_metadata(sqlite3 *outdb, const char *outdir, const char *fnam std::string version = program + " " + VERSION; sql = sqlite3_mprintf("INSERT INTO metadata (name, value) VALUES ('generator', %Q);", version.c_str()); if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) { - fprintf(stderr, "set type: %s\n", err); + fprintf(stderr, "set version: %s\n", err); + if (!forcetable) { + exit(EXIT_FAILURE); + } + } + sqlite3_free(sql); + + sql = sqlite3_mprintf("INSERT INTO metadata (name, value) VALUES ('generator_options', %Q);", commandline.c_str()); + if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) { + fprintf(stderr, "set commandline: %s\n", err); if (!forcetable) { exit(EXIT_FAILURE); } @@ -499,7 +506,6 @@ void mbtiles_write_metadata(sqlite3 *outdb, const char *outdir, const char *fnam state.json_write_newline(); sqlite3_stmt *stmt; - bool first = true; if (sqlite3_prepare_v2(db, "SELECT name, value from metadata;", -1, &stmt, NULL) == SQLITE_OK) { while (sqlite3_step(stmt) == SQLITE_ROW) { std::string key, value; @@ -514,7 +520,6 @@ void mbtiles_write_metadata(sqlite3 *outdb, const char *outdir, const char *fnam state.json_comma_newline(); state.json_write_string(k); state.json_write_string(v); - first = false; } sqlite3_finalize(stmt); } diff --git a/mbtiles.hpp b/mbtiles.hpp index e91ee8885..086861660 100644 --- a/mbtiles.hpp +++ b/mbtiles.hpp @@ -45,7 +45,7 @@ sqlite3 *mbtiles_open(char *dbname, char **argv, int forcetable); void mbtiles_write_tile(sqlite3 *outdb, int z, int tx, int ty, const char *data, int size); -void mbtiles_write_metadata(sqlite3 *outdb, const char *outdir, const char *fname, int minzoom, int maxzoom, double minlat, double minlon, double maxlat, double maxlon, double midlat, double midlon, int forcetable, const char *attribution, std::map const &layermap, bool vector, const char *description, bool do_tilestats, std::map const &attribute_descriptions, std::string const &program); +void mbtiles_write_metadata(sqlite3 *outdb, const char *outdir, const char *fname, int minzoom, int maxzoom, double minlat, double minlon, double maxlat, double maxlon, double midlat, double midlon, int forcetable, const char *attribution, std::map const &layermap, bool vector, const char *description, bool do_tilestats, std::map const &attribute_descriptions, std::string const &program, std::string const &commandline); void mbtiles_close(sqlite3 *outdb, const char *pgm); diff --git a/mvt.cpp b/mvt.cpp index b069302dd..27486f839 100644 --- a/mvt.cpp +++ b/mvt.cpp @@ -356,7 +356,7 @@ std::string mvt_tile::encode() { std::vector geometry; - int px = 0, py = 0; + long long px = 0, py = 0; int cmd_idx = -1; int cmd = -1; int length = 0; @@ -381,8 +381,13 @@ std::string mvt_tile::encode() { long long wwx = geom[g].x; long long wwy = geom[g].y; - int dx = wwx - px; - int dy = wwy - py; + long long dx = wwx - px; + long long dy = wwy - py; + + if (dx < INT_MIN || dx > INT_MAX || dy < INT_MIN || dy > INT_MAX) { + fprintf(stderr, "Internal error: Geometry delta is too big: %lld,%lld\n", dx, dy); + exit(EXIT_FAILURE); + } geometry.push_back(protozero::encode_zigzag32(dx)); geometry.push_back(protozero::encode_zigzag32(dy)); diff --git a/options.hpp b/options.hpp index 0f5e782df..93336d777 100644 --- a/options.hpp +++ b/options.hpp @@ -23,9 +23,12 @@ #define A_EXTEND_ZOOMS ((int) 'e') #define A_CLUSTER_DENSEST_AS_NEEDED ((int) 'C') #define A_GENERATE_IDS ((int) 'i') +#define A_CONVERT_NUMERIC_IDS ((int) 'I') +#define A_HILBERT ((int) 'h') #define P_SIMPLIFY ((int) 's') #define P_SIMPLIFY_LOW ((int) 'S') +#define P_SIMPLIFY_SHARED_NODES ((int) 'n') #define P_FEATURE_LIMIT ((int) 'f') #define P_KILOBYTE_LIMIT ((int) 'k') #define P_DYNAMIC_DROP ((int) 'd') diff --git a/projection.cpp b/projection.cpp index a3f2f30cd..a29516a53 100644 --- a/projection.cpp +++ b/projection.cpp @@ -5,6 +5,9 @@ #include #include "projection.hpp" +unsigned long long (*encode_index)(unsigned int wx, unsigned int wy) = NULL; +void (*decode_index)(unsigned long long index, unsigned *wx, unsigned *wy) = NULL; + struct projection projections[] = { {"EPSG:4326", lonlat2tile, tile2lonlat, "urn:ogc:def:crs:OGC:1.3:CRS84"}, {"EPSG:3857", epsg3857totile, tiletoepsg3857, "urn:ogc:def:crs:EPSG::3857"}, @@ -19,12 +22,17 @@ void lonlat2tile(double lon, double lat, int zoom, long long *x, long long *y) { int lat_class = fpclassify(lat); int lon_class = fpclassify(lon); + bool bad_lon = false; if (lat_class == FP_INFINITE || lat_class == FP_NAN) { lat = 89.9; } if (lon_class == FP_INFINITE || lon_class == FP_NAN) { - lon = 360; + // Keep these far enough from the plane that they don't get + // moved back into it by 360-degree offsetting + + lon = 720; + bad_lon = true; } // Must limit latitude somewhere to prevent overflow. @@ -37,10 +45,10 @@ void lonlat2tile(double lon, double lat, int zoom, long long *x, long long *y) { lat = 89.9; } - if (lon < -360) { + if (lon < -360 && !bad_lon) { lon = -360; } - if (lon > 360) { + if (lon > 360 && !bad_lon) { lon = 360; } @@ -93,7 +101,60 @@ void tiletoepsg3857(long long ix, long long iy, int zoom, double *ox, double *oy *oy = ((1LL << 32) - 1 - iy - (1LL << 31)) * M_PI * 6378137.0 / (1LL << 31); } -unsigned long long encode(unsigned int wx, unsigned int wy) { +// https://en.wikipedia.org/wiki/Hilbert_curve + +void hilbert_rot(unsigned long long n, unsigned *x, unsigned *y, unsigned long long rx, unsigned long long ry) { + if (ry == 0) { + if (rx == 1) { + *x = n - 1 - *x; + *y = n - 1 - *y; + } + + unsigned t = *x; + *x = *y; + *y = t; + } +} + +unsigned long long hilbert_xy2d(unsigned long long n, unsigned x, unsigned y) { + unsigned long long d = 0; + unsigned long long rx, ry; + + for (unsigned long long s = n / 2; s > 0; s /= 2) { + rx = (x & s) != 0; + ry = (y & s) != 0; + + d += s * s * ((3 * rx) ^ ry); + hilbert_rot(s, &x, &y, rx, ry); + } + + return d; +} + +void hilbert_d2xy(unsigned long long n, unsigned long long d, unsigned *x, unsigned *y) { + unsigned long long rx, ry; + unsigned long long t = d; + + *x = *y = 0; + for (unsigned long long s = 1; s < n; s *= 2) { + rx = 1 & (t / 2); + ry = 1 & (t ^ rx); + hilbert_rot(s, x, y, rx, ry); + *x += s * rx; + *y += s * ry; + t /= 4; + } +} + +unsigned long long encode_hilbert(unsigned int wx, unsigned int wy) { + return hilbert_xy2d(1LL << 32, wx, wy); +} + +void decode_hilbert(unsigned long long index, unsigned *wx, unsigned *wy) { + hilbert_d2xy(1LL << 32, index, wx, wy); +} + +unsigned long long encode_quadkey(unsigned int wx, unsigned int wy) { unsigned long long out = 0; int i; @@ -111,7 +172,7 @@ unsigned long long encode(unsigned int wx, unsigned int wy) { static std::atomic decodex[256]; static std::atomic decodey[256]; -void decode(unsigned long long index, unsigned *wx, unsigned *wy) { +void decode_quadkey(unsigned long long index, unsigned *wx, unsigned *wy) { static std::atomic initialized(0); if (!initialized) { for (size_t ix = 0; ix < 256; ix++) { diff --git a/projection.hpp b/projection.hpp index 4915f832c..d649ef56f 100644 --- a/projection.hpp +++ b/projection.hpp @@ -5,8 +5,6 @@ void lonlat2tile(double lon, double lat, int zoom, long long *x, long long *y); void epsg3857totile(double ix, double iy, int zoom, long long *x, long long *y); void tile2lonlat(long long x, long long y, int zoom, double *lon, double *lat); void tiletoepsg3857(long long x, long long y, int zoom, double *ox, double *oy); -unsigned long long encode(unsigned int wx, unsigned int wy); -void decode(unsigned long long index, unsigned *wx, unsigned *wy); void set_projection_or_exit(const char *optarg); struct projection { @@ -19,4 +17,13 @@ struct projection { extern struct projection *projection; extern struct projection projections[]; +extern unsigned long long (*encode_index)(unsigned int wx, unsigned int wy); +extern void (*decode_index)(unsigned long long index, unsigned *wx, unsigned *wy); + +unsigned long long encode_quadkey(unsigned int wx, unsigned int wy); +void decode_quadkey(unsigned long long index, unsigned *wx, unsigned *wy); + +unsigned long long encode_hilbert(unsigned int wx, unsigned int wy); +void decode_hilbert(unsigned long long index, unsigned *wx, unsigned *wy); + #endif diff --git a/read_json.cpp b/read_json.cpp index cdb2211ec..b53431409 100644 --- a/read_json.cpp +++ b/read_json.cpp @@ -53,7 +53,7 @@ void parse_geometry(int t, json_object *j, drawvec &out, int op, const char *fna size_t i; for (i = 0; i < j->length; i++) { if (within == GEOM_POINT) { - if (i == 0 || mb_geometry[t] == GEOM_MULTIPOINT) { + if (i == 0 || mb_geometry[t] == VT_POINT) { op = VT_MOVETO; } else { op = VT_LINETO; @@ -80,12 +80,12 @@ void parse_geometry(int t, json_object *j, drawvec &out, int op, const char *fna } } - draw d(op, x, y); out.push_back(draw(op, x, y)); } else { fprintf(stderr, "%s:%d: malformed point\n", fname, line); json_context(j); json_context(feature); + exit(EXIT_FAILURE); } } diff --git a/serial.cpp b/serial.cpp index 59697ab6e..797e4b555 100644 --- a/serial.cpp +++ b/serial.cpp @@ -21,6 +21,11 @@ #include "evaluator.hpp" #include "milo/dtoa_milo.h" +// Offset coordinates to keep them positive +#define COORD_OFFSET (4LL << 32) +#define SHIFT_RIGHT(a) ((((a) + COORD_OFFSET) >> geometry_scale) - (COORD_OFFSET >> geometry_scale)) +#define SHIFT_LEFT(a) ((((a) + (COORD_OFFSET >> geometry_scale)) << geometry_scale) - COORD_OFFSET) + size_t fwrite_check(const void *ptr, size_t size, size_t nitems, FILE *stream, const char *fname) { size_t w = fwrite(ptr, size, nitems, stream); if (w != nitems) { @@ -182,6 +187,7 @@ static void write_geometry(drawvec const &dv, std::atomic *fpos, FILE } } +// called from generating the next zoom level void serialize_feature(FILE *geomfile, serial_feature *sf, std::atomic *geompos, const char *fname, long long wx, long long wy, bool include_minzoom) { serialize_byte(geomfile, sf->t, geompos, fname); @@ -317,6 +323,7 @@ static long long scale_geometry(struct serialization_state *sst, long long *bbox long long offset = 0; long long prev = 0; bool has_prev = false; + double scale = 1.0 / (1 << geometry_scale); for (size_t i = 0; i < geom.size(); i++) { if (geom[i].op == VT_MOVETO || geom[i].op == VT_LINETO) { @@ -353,25 +360,46 @@ static long long scale_geometry(struct serialization_state *sst, long long *bbox } if (!*(sst->initialized)) { - if (x < 0 || x >= (1LL << 32) || y < 0 || y >= (1LL < 32)) { + if (x < 0 || x >= (1LL << 32) || y < 0 || y >= (1LL << 32)) { *(sst->initial_x) = 1LL << 31; *(sst->initial_y) = 1LL << 31; } else { - *(sst->initial_x) = (x >> geometry_scale) << geometry_scale; - *(sst->initial_y) = (y >> geometry_scale) << geometry_scale; + *(sst->initial_x) = (((x + COORD_OFFSET) >> geometry_scale) << geometry_scale) - COORD_OFFSET; + *(sst->initial_y) = (((y + COORD_OFFSET) >> geometry_scale) << geometry_scale) - COORD_OFFSET; } *(sst->initialized) = 1; } - geom[i].x = x >> geometry_scale; - geom[i].y = y >> geometry_scale; + if (additional[A_GRID_LOW_ZOOMS]) { + // If we are gridding, snap to the maxzoom grid in case the incoming data + // is already supposed to be aligned to tile boundaries (but is not, exactly, + // because of rounding error during projection). + + geom[i].x = std::round(x * scale); + geom[i].y = std::round(y * scale); + } else { + geom[i].x = SHIFT_RIGHT(x); + geom[i].y = SHIFT_RIGHT(y); + } } } return geom.size(); } +static std::string strip_zeroes(std::string s) { + // Doesn't do anything special with '-' followed by leading zeros + // since integer IDs must be positive + + while (s.size() > 0 && s[0] == '0') { + s.erase(s.begin()); + } + + return s; +} + +// called from frontends int serialize_feature(struct serialization_state *sst, serial_feature &sf) { struct reader *r = &(*sst->readers)[sst->segment]; @@ -389,12 +417,12 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { for (auto &c : clipbboxes) { if (sf.t == VT_POLYGON) { - sf.geometry = simple_clip_poly(sf.geometry, c.minx >> geometry_scale, c.miny >> geometry_scale, c.maxx >> geometry_scale, c.maxy >> geometry_scale); + sf.geometry = simple_clip_poly(sf.geometry, SHIFT_RIGHT(c.minx), SHIFT_RIGHT(c.miny), SHIFT_RIGHT(c.maxx), SHIFT_RIGHT(c.maxy)); } else if (sf.t == VT_LINE) { - sf.geometry = clip_lines(sf.geometry, c.minx >> geometry_scale, c.miny >> geometry_scale, c.maxx >> geometry_scale, c.maxy >> geometry_scale); + sf.geometry = clip_lines(sf.geometry, SHIFT_RIGHT(c.minx), SHIFT_RIGHT(c.miny), SHIFT_RIGHT(c.maxx), SHIFT_RIGHT(c.maxy)); sf.geometry = remove_noop(sf.geometry, sf.t, 0); } else if (sf.t == VT_POINT) { - sf.geometry = clip_point(sf.geometry, c.minx >> geometry_scale, c.miny >> geometry_scale, c.maxx >> geometry_scale, c.maxy >> geometry_scale); + sf.geometry = clip_point(sf.geometry, SHIFT_RIGHT(c.minx), SHIFT_RIGHT(c.miny), SHIFT_RIGHT(c.maxx), SHIFT_RIGHT(c.maxy)); } sf.bbox[0] = LLONG_MAX; @@ -403,8 +431,8 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { sf.bbox[3] = LLONG_MIN; for (auto &g : sf.geometry) { - long long x = g.x << geometry_scale; - long long y = g.y << geometry_scale; + long long x = SHIFT_LEFT(g.x); + long long y = SHIFT_LEFT(g.y); if (x < sf.bbox[0]) { sf.bbox[0] = x; @@ -437,7 +465,7 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { std::vector locs; for (size_t i = 0; i < sf.geometry.size(); i++) { if (sf.geometry[i].op == VT_MOVETO || sf.geometry[i].op == VT_LINETO) { - locs.push_back(encode(sf.geometry[i].x << geometry_scale, sf.geometry[i].y << geometry_scale)); + locs.push_back(encode_index(SHIFT_LEFT(sf.geometry[i].x), SHIFT_LEFT(sf.geometry[i].y))); } } std::sort(locs.begin(), locs.end()); @@ -529,7 +557,7 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { // and then mask to bring it back into the addressable area long long midx = (sf.bbox[0] / 2 + sf.bbox[2] / 2) & ((1LL << 32) - 1); long long midy = (sf.bbox[1] / 2 + sf.bbox[3] / 2) & ((1LL << 32) - 1); - bbox_index = encode(midx, midy); + bbox_index = encode_index(midx, midy); if (additional[A_DROP_DENSEST_AS_NEEDED] || additional[A_COALESCE_DENSEST_AS_NEEDED] || additional[A_CLUSTER_DENSEST_AS_NEEDED] || additional[A_CALCULATE_FEATURE_DENSITY] || additional[A_INCREASE_GAMMA_AS_NEEDED] || sst->uses_gamma || cluster_distance != 0) { sf.index = bbox_index; @@ -560,6 +588,45 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { } for (ssize_t i = (ssize_t) sf.full_keys.size() - 1; i >= 0; i--) { + coerce_value(sf.full_keys[i], sf.full_values[i].type, sf.full_values[i].s, sst->attribute_types); + + if (sf.full_keys[i] == attribute_for_id) { + if (sf.full_values[i].type != mvt_double && !additional[A_CONVERT_NUMERIC_IDS]) { + static bool warned = false; + + if (!warned) { + fprintf(stderr, "Warning: Attribute \"%s\"=\"%s\" as feature ID is not a number\n", sf.full_keys[i].c_str(), sf.full_values[i].s.c_str()); + warned = true; + } + } else { + char *err; + long long id_value = strtoull(sf.full_values[i].s.c_str(), &err, 10); + + if (err != NULL && *err != '\0') { + static bool warned_frac = false; + + if (!warned_frac) { + fprintf(stderr, "Warning: Can't represent non-integer feature ID %s\n", sf.full_values[i].s.c_str()); + warned_frac = true; + } + } else if (std::to_string(id_value) != strip_zeroes(sf.full_values[i].s)) { + static bool warned = false; + + if (!warned) { + fprintf(stderr, "Warning: Can't represent too-large feature ID %s\n", sf.full_values[i].s.c_str()); + warned = true; + } + } else { + sf.id = id_value; + sf.has_id = true; + + sf.full_keys.erase(sf.full_keys.begin() + i); + sf.full_values.erase(sf.full_values.begin() + i); + continue; + } + } + } + if (sst->exclude_all) { if (sst->include->count(sf.full_keys[i]) == 0) { sf.full_keys.erase(sf.full_keys.begin() + i); @@ -571,8 +638,6 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { sf.full_values.erase(sf.full_values.begin() + i); continue; } - - coerce_value(sf.full_keys[i], sf.full_values[i].type, sf.full_values[i].s, sst->attribute_types); } if (!sst->filters) { @@ -602,7 +667,7 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { } long long geomstart = r->geompos; - serialize_feature(r->geomfile, &sf, &r->geompos, sst->fname, *(sst->initial_x) >> geometry_scale, *(sst->initial_y) >> geometry_scale, false); + serialize_feature(r->geomfile, &sf, &r->geompos, sst->fname, SHIFT_RIGHT(*(sst->initial_x)), SHIFT_RIGHT(*(sst->initial_y)), false); struct index index; index.start = geomstart; diff --git a/serial.hpp b/serial.hpp index e52a6a896..a662d497b 100644 --- a/serial.hpp +++ b/serial.hpp @@ -163,7 +163,6 @@ struct serialization_state { std::set *exclude = NULL; std::set *include = NULL; int exclude_all = 0; - json_object *filter = NULL; }; int serialize_feature(struct serialization_state *sst, serial_feature &sf); diff --git a/tests/accumulate/out/-z3_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma_-r1_-K100.json b/tests/accumulate/out/-z3_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma_-r1_-K100.json index f81ac230c..c8d7c119b 100644 --- a/tests/accumulate/out/-z3_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma_-r1_-K100.json +++ b/tests/accumulate/out/-z3_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma_-r1_-K100.json @@ -3,7 +3,8 @@ "center": "112.500000,20.489949,3", "description": "tests/accumulate/out/-z3_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma_-r1_-K100.json.check.mbtiles", "format": "pbf", -"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {\"clustered\": \"Boolean\", \"point_count\": \"Number\", \"sqrt_point_count\": \"Number\", \"thecomma\": \"Mixed\", \"theconcat\": \"Mixed\", \"themax\": \"Number\", \"themean\": \"Number\", \"themin\": \"Number\", \"theproduct\": \"Number\", \"thesum\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 100,\"geometry\": \"Point\",\"attributeCount\": 10,\"attributes\": [{\"attribute\": \"clustered\",\"count\": 1,\"type\": \"boolean\",\"values\": [true]},{\"attribute\": \"point_count\",\"count\": 13,\"type\": \"number\",\"values\": [10,14,16,17,18,2,3,4,5,6,7,8,9],\"min\": 2,\"max\": 18},{\"attribute\": \"sqrt_point_count\",\"count\": 13,\"type\": \"number\",\"values\": [1.410000,1.730000,2.000000,2.240000,2.450000,2.650000,2.830000,3.000000,3.160000,3.740000,4.000000,4.120000,4.240000],\"min\": 1.41,\"max\": 4.24},{\"attribute\": \"thecomma\",\"count\": 159,\"type\": \"mixed\",\"values\": [1,\"1,31,70\",\"1,31,70,64,8,44,6\",10,\"10,35,79\",100,11,\"11,2,16,82,26,89,25,55,91\",12,13,14,15,16,17,\"17,62,69\",18,19,2,\"2,16\",\"2,16,82,26\",\"2,16,82,26,89,25\",20,21,\"21,13\",22,23,\"23,72,29,59\",24,25,26,27,28,\"28,67,74,65,5,12\",29,3,\"3,14\",\"3,14,78\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37\",30,31,\"31,70\",32,\"32,75\",33,\"33,17,62,69,81,7\",\"33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24\",34,35,\"35,79\",36,37,38,\"38,49\",\"38,49,43\",\"38,49,43,54,71,9,32,75\",39,4,40,41,42,\"42,100,66,22\",43,44,\"44,6\",45,46,\"46,76\",\"46,76,48,18,39\",\"46,76,48,18,39,15\",47,48,\"48,18,39\",49,5,50,51,52,\"52,61,36,87,96\",53,\"53,92\",54,\"54,71,9\",55,\"55,91\",56,57,\"57,37\",58,59,\"59,42,100,66,22,63,95,73,86,19\",6,60,61,\"61,36\",\"61,36,87,96\",62,63,\"63,95,73\",\"63,95,73,86,19\",64],\"min\": 1,\"max\": 100},{\"attribute\": \"theconcat\",\"count\": 159,\"type\": \"mixed\",\"values\": [1,10,100,\"103579\",11,\"11216822689255591\",12,13,\"13170\",\"13170648446\",14,15,16,17,\"176269\",18,19,2,20,21,\"2113\",\"216\",\"2168226\",\"21682268925\",22,23,\"23722959\",24,25,26,27,28,\"28677465512\",29,3,30,31,\"314\",\"31478\",\"31478286774655129484515737\",\"3170\",32,\"3275\",33,\"33176269817\",\"3317626981793467648183915808524\",34,35,\"3579\",36,37,38,\"3849\",\"384943\",\"384943547193275\",39,4,40,41,42,\"421006622\",43,44,\"446\",45,46,\"4676\",\"4676481839\",\"467648183915\",47,48,\"481839\",49,5,50,51,52,\"5261368796\",53,\"5392\",54,\"54719\",55,\"5591\",56,57,\"5737\",58,59,\"594210066226395738619\",6,60,61,\"6136\",\"61368796\",62,63,\"639573\",\"6395738619\",64],\"min\": 1,\"max\": 100},{\"attribute\": \"themax\",\"count\": 100,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 1,\"max\": 100},{\"attribute\": \"themean\",\"count\": 145,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,23.2,24,25,26,27,27.5,28,29,3,30,31,31.5,31.666666666666669,32,33,34,35,36,37,38,38.75,39,39.75,4,40,40.333333333333339,41,41.05882352941177,42,43,43.18181818181818,43.333333333333339,43.5,43.875,44,45,45.4,45.583333333333339,46,46.375,46.57142857142857,47,47.25,47.285714285714288,47.44444444444444,47.5,47.785714285714288,48,48.27272727272727,48.5,48.666666666666667,49,49.333333333333339,49.41935483870968,49.42857142857143,5,50,50.40506329113924,50.5,51,51.357142857142857,51.492063492063497,51.75,52,52.45,52.75,53,53.333333333333339,53.8,54,54.5,55,55.111111111111117,55.75,56,57,57.666666666666667,58,59,6,60,61,62],\"min\": 1,\"max\": 100},{\"attribute\": \"themin\",\"count\": 100,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 1,\"max\": 100},{\"attribute\": \"theproduct\",\"count\": 156,\"type\": \"number\",\"values\": [1,1.50635366827988e+21,10,100,11,117801216,12,123192,13,1360776186,14,1452,15,151798400,16,1611350,163200,1634,17,1767018240,18,18340992,1862,19,2,20,2040,21,2109,2170,2196,22,2294950,23,24,2400,2432430,25,256866214501512000,26,264,27,273,2765,27650,28,2833416,29,293314560,3,3.649478722049509e+25,3.663431746147758e+29,3.7235827383082715e+25,30,31,32,325,3276,33,33696,34,34506,3496,35,36,37,38,39,4,40,402696,41,42,43,436905,44,45,46,47,472972,48,4876,49,4958,5,50,5005,51,512,52,53,54,541413600,55,5589,56,567,57,58,59],\"min\": 1,\"max\": 3.663431746147758e+29},{\"attribute\": \"thesum\",\"count\": 143,\"type\": \"number\",\"values\": [1,10,100,101,102,105,107,109,11,114,12,122,124,126,13,130,134,14,141,145,146,148,15,150,16,160,17,18,183,189,19,2,20,207,21,211,22,223,224,227,229,23,230,231,24,240,242,25,251,26,261,269,27,28,280,29,3,30,31,32,323,33,332,336,34,35,36,37,371,38,39,397,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,625,63],\"min\": 1,\"max\": 960}]}]}}", +"generator_options": "./tippecanoe -q -a@ -f -o tests/accumulate/out/-z3_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma_-r1_-K100.json.check.mbtiles -z3 -Ethesum:sum -Etheproduct:product -Ethemax:max -Ethemin:min -Ethemean:mean -Etheconcat:concat -Ethecomma:comma -r1 -K100 tests/accumulate/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {\"clustered\": \"Boolean\", \"point_count\": \"Number\", \"sqrt_point_count\": \"Number\", \"thecomma\": \"Mixed\", \"theconcat\": \"Mixed\", \"themax\": \"Number\", \"themean\": \"Number\", \"themin\": \"Number\", \"theproduct\": \"Number\", \"thesum\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 100,\"geometry\": \"Point\",\"attributeCount\": 10,\"attributes\": [{\"attribute\": \"clustered\",\"count\": 1,\"type\": \"boolean\",\"values\": [true]},{\"attribute\": \"point_count\",\"count\": 13,\"type\": \"number\",\"values\": [10,14,16,17,18,2,3,4,5,6,7,8,9],\"min\": 2,\"max\": 18},{\"attribute\": \"sqrt_point_count\",\"count\": 13,\"type\": \"number\",\"values\": [1.410000,1.730000,2.000000,2.240000,2.450000,2.650000,2.830000,3.000000,3.160000,3.740000,4.000000,4.120000,4.240000],\"min\": 1.41,\"max\": 4.24},{\"attribute\": \"thecomma\",\"count\": 159,\"type\": \"mixed\",\"values\": [1,\"1,31,70\",\"1,31,70,64,8,44,6\",10,\"10,35,79\",100,11,\"11,2,16,82,26,89,25,55,91\",12,13,14,15,16,17,\"17,62,69\",18,19,2,\"2,16\",\"2,16,82,26\",\"2,16,82,26,89,25\",20,21,\"21,13\",22,23,\"23,72,29,59\",24,25,26,27,28,\"28,67,74,65,5,12\",29,3,\"3,14\",\"3,14,78\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37\",30,31,\"31,70\",32,\"32,75\",33,\"33,17,62,69,81,7\",\"33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24\",34,35,\"35,79\",36,37,38,\"38,49\",\"38,49,43\",\"38,49,43,54,71,9,32,75\",39,4,40,41,42,\"42,100,66,22\",43,44,\"44,6\",45,46,\"46,76\",\"46,76,48,18,39\",\"46,76,48,18,39,15\",47,48,\"48,18,39\",49,5,50,51,52,\"52,61,36,87,96\",53,\"53,92\",54,\"54,71,9\",55,\"55,91\",56,57,\"57,37\",58,59,\"59,42,100,66,22,63,95,73,86,19\",6,60,61,\"61,36\",\"61,36,87,96\",62,63,\"63,95,73\",\"63,95,73,86,19\",64],\"min\": 1,\"max\": 100},{\"attribute\": \"theconcat\",\"count\": 159,\"type\": \"mixed\",\"values\": [1,10,100,\"103579\",11,\"11216822689255591\",12,13,\"13170\",\"13170648446\",14,15,16,17,\"176269\",18,19,2,20,21,\"2113\",\"216\",\"2168226\",\"21682268925\",22,23,\"23722959\",24,25,26,27,28,\"28677465512\",29,3,30,31,\"314\",\"31478\",\"31478286774655129484515737\",\"3170\",32,\"3275\",33,\"33176269817\",\"3317626981793467648183915808524\",34,35,\"3579\",36,37,38,\"3849\",\"384943\",\"384943547193275\",39,4,40,41,42,\"421006622\",43,44,\"446\",45,46,\"4676\",\"4676481839\",\"467648183915\",47,48,\"481839\",49,5,50,51,52,\"5261368796\",53,\"5392\",54,\"54719\",55,\"5591\",56,57,\"5737\",58,59,\"594210066226395738619\",6,60,61,\"6136\",\"61368796\",62,63,\"639573\",\"6395738619\",64],\"min\": 1,\"max\": 100},{\"attribute\": \"themax\",\"count\": 100,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 1,\"max\": 100},{\"attribute\": \"themean\",\"count\": 138,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,31.5,31.666666666666669,32,33,34,35,36,37,38,39,4,40,40.333333333333339,41,41.333333333333339,41.833333333333339,42,43,43.333333333333339,43.5,44,44.111111111111117,44.666666666666667,44.833333333333339,45,45.4,45.75,46,46.375,47,47.785714285714288,48,48.294117647058829,48.5,49,49.333333333333339,49.5625,5,50,50.5,51,51.75,52,52.2,52.5,52.75,53,53.333333333333339,53.5,54,54.5,55,55.75,56,57,57.5,58,59,6,60,61,62,62.5,63,64,64.6,65,66,66.4,67,67.2,68,69,7],\"min\": 1,\"max\": 100},{\"attribute\": \"themin\",\"count\": 100,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 1,\"max\": 100},{\"attribute\": \"theproduct\",\"count\": 156,\"type\": \"number\",\"values\": [1,1.50635366827988e+21,10,100,11,117801216,12,123192,13,1360776186,14,1452,15,151798400,16,1611350,163200,1634,17,1767018240,18,18340992,1862,19,2,20,2040,21,2109,2170,2196,22,2294950,23,24,2400,2432430,25,256866214501512000,26,264,27,273,2765,27650,28,2833416,29,293314560,3,3.649478722049509e+25,3.663431746147758e+29,3.7235827383082715e+25,30,31,32,325,3276,33,33696,34,34506,3496,35,36,37,38,39,4,40,402696,41,42,43,436905,44,45,46,47,472972,48,4876,49,4958,5,50,5005,51,512,52,53,54,541413600,55,5589,56,567,57,58,59],\"min\": 1,\"max\": 3.663431746147758e+29},{\"attribute\": \"thesum\",\"count\": 143,\"type\": \"number\",\"values\": [1,10,100,101,102,105,107,109,11,114,12,122,124,126,13,130,134,14,141,145,146,148,15,150,16,160,17,18,183,189,19,2,20,207,21,211,22,223,224,227,229,23,230,231,24,240,242,25,251,26,261,269,27,28,280,29,3,30,31,32,323,33,332,336,34,35,36,37,371,38,39,397,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,625,63],\"min\": 1,\"max\": 960}]}]}}", "maxzoom": "3", "minzoom": "0", "name": "tests/accumulate/out/-z3_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma_-r1_-K100.json.check.mbtiles", @@ -14,15 +15,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 669, "themax": 94, "themin": 3, "theproduct": 1.50635366827988e+21, "themean": 47.785714285714288, "theconcat": "31478286774655129484515737", "thecomma": "3,14,78,28,67,74,65,5,12,94,84,51,57,37", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74 }, "geometry": { "type": "Point", "coordinates": [ -128.056641, 64.358931 ] } } , -{ "type": "Feature", "properties": { "thesum": 960, "themax": 99, "themin": 9, "theproduct": 3.663431746147758e+29, "themean": 49.41935483870968, "theconcat": "97539299902113384943547193275237229", "thecomma": "97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24 }, "geometry": { "type": "Point", "coordinates": [ -92.109375, 13.325485 ] } } +{ "type": "Feature", "properties": { "thesum": 960, "themax": 99, "themin": 9, "theproduct": 3.663431746147758e+29, "themean": 53.333333333333339, "theconcat": "97539299902113384943547193275237229", "thecomma": "97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24 }, "geometry": { "type": "Point", "coordinates": [ -92.109375, 13.325485 ] } } , -{ "type": "Feature", "properties": { "thesum": 625, "themax": 100, "themin": 19, "theproduct": 256866214501512000, "themean": 52.45, "theconcat": "594210066226395738619", "thecomma": "59,42,100,66,22,63,95,73,86,19", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16 }, "geometry": { "type": "Point", "coordinates": [ -71.367188, -53.696706 ] } } +{ "type": "Feature", "properties": { "thesum": 625, "themax": 100, "themin": 19, "theproduct": 256866214501512000, "themean": 62.5, "theconcat": "594210066226395738619", "thecomma": "59,42,100,66,22,63,95,73,86,19", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16 }, "geometry": { "type": "Point", "coordinates": [ -71.367188, -53.696706 ] } } , -{ "type": "Feature", "properties": { "thesum": 397, "themax": 91, "themin": 2, "theproduct": 8357260912000, "themean": 51.75, "theconcat": "11216822689255591", "thecomma": "11,2,16,82,26,89,25,55,91", "clustered": true, "point_count": 9, "sqrt_point_count": 3 }, "geometry": { "type": "Point", "coordinates": [ 48.164062, 66.583217 ] } } +{ "type": "Feature", "properties": { "thesum": 397, "themax": 91, "themin": 2, "theproduct": 8357260912000, "themean": 44.111111111111117, "theconcat": "11216822689255591", "thecomma": "11,2,16,82,26,89,25,55,91", "clustered": true, "point_count": 9, "sqrt_point_count": 3 }, "geometry": { "type": "Point", "coordinates": [ 48.164062, 66.583217 ] } } , -{ "type": "Feature", "properties": { "thesum": 793, "themax": 93, "themin": 7, "theproduct": 3.649478722049509e+25, "themean": 51.492063492063497, "theconcat": "3317626981793467648183915808524", "thecomma": "33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24", "clustered": true, "point_count": 16, "sqrt_point_count": 4 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 177.363281, 76.393312 ], [ -182.636719, 76.393312 ] ] } } +{ "type": "Feature", "properties": { "thesum": 793, "themax": 93, "themin": 7, "theproduct": 3.649478722049509e+25, "themean": 49.5625, "theconcat": "3317626981793467648183915808524", "thecomma": "33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24", "clustered": true, "point_count": 16, "sqrt_point_count": 4 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 177.363281, 76.393312 ], [ -182.636719, 76.393312 ] ] } } , -{ "type": "Feature", "properties": { "thesum": 821, "themax": 96, "themin": 1, "theproduct": 3.7235827383082715e+25, "themean": 50.40506329113924, "theconcat": "8310357913170648446526136879658", "thecomma": "83,10,35,79,1,31,70,64,8,44,6,52,61,36,87,96,58", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12 }, "geometry": { "type": "Point", "coordinates": [ 127.089844, -68.815927 ] } } +{ "type": "Feature", "properties": { "thesum": 821, "themax": 96, "themin": 1, "theproduct": 3.7235827383082715e+25, "themean": 48.294117647058829, "theconcat": "8310357913170648446526136879658", "thecomma": "83,10,35,79,1,31,70,64,8,44,6,52,61,36,87,96,58", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12 }, "geometry": { "type": "Point", "coordinates": [ 127.089844, -68.815927 ] } } ] } ] } , @@ -32,11 +33,11 @@ , { "type": "Feature", "properties": { "thesum": 371, "themax": 75, "themin": 9, "theproduct": 6630617750400, "themean": 46.375, "theconcat": "384943547193275", "thecomma": "38,49,43,54,71,9,32,75", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83 }, "geometry": { "type": "Point", "coordinates": [ -164.838867, -39.639538 ] } } , -{ "type": "Feature", "properties": { "thesum": 183, "themax": 72, "themin": 23, "theproduct": 2833416, "themean": 48.27272727272727, "theconcat": "23722959", "thecomma": "23,72,29,59", "clustered": true, "point_count": 4, "sqrt_point_count": 2 }, "geometry": { "type": "Point", "coordinates": [ -155.039062, -67.424364 ] } } +{ "type": "Feature", "properties": { "thesum": 183, "themax": 72, "themin": 23, "theproduct": 2833416, "themean": 45.75, "theconcat": "23722959", "thecomma": "23,72,29,59", "clustered": true, "point_count": 4, "sqrt_point_count": 2 }, "geometry": { "type": "Point", "coordinates": [ -155.039062, -67.424364 ] } } , -{ "type": "Feature", "properties": { "thesum": 230, "themax": 100, "themin": 22, "theproduct": 6098400, "themean": 51.357142857142857, "theconcat": "421006622", "thecomma": "42,100,66,22", "clustered": true, "point_count": 4, "sqrt_point_count": 2 }, "geometry": { "type": "Point", "coordinates": [ -98.041992, -61.396719 ] } } +{ "type": "Feature", "properties": { "thesum": 230, "themax": 100, "themin": 22, "theproduct": 6098400, "themean": 57.5, "theconcat": "421006622", "thecomma": "42,100,66,22", "clustered": true, "point_count": 4, "sqrt_point_count": 2 }, "geometry": { "type": "Point", "coordinates": [ -98.041992, -61.396719 ] } } , -{ "type": "Feature", "properties": { "thesum": 336, "themax": 95, "themin": 19, "theproduct": 713902770, "themean": 55.111111111111117, "theconcat": "6395738619", "thecomma": "63,95,73,86,19", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24 }, "geometry": { "type": "Point", "coordinates": [ -34.848633, -39.842286 ] } } +{ "type": "Feature", "properties": { "thesum": 336, "themax": 95, "themin": 19, "theproduct": 713902770, "themean": 67.2, "theconcat": "6395738619", "thecomma": "63,95,73,86,19", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24 }, "geometry": { "type": "Point", "coordinates": [ -34.848633, -39.842286 ] } } ] } ] } , @@ -44,13 +45,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 95, "themax": 78, "themin": 3, "theproduct": 3276, "themean": 31.666666666666669, "theconcat": "31478", "thecomma": "3,14,78", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ -140.185547, 83.105798 ] } } , -{ "type": "Feature", "properties": { "thesum": 251, "themax": 74, "themin": 5, "theproduct": 541413600, "themean": 39.75, "theconcat": "28677465512", "thecomma": "28,67,74,65,5,12", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45 }, "geometry": { "type": "Point", "coordinates": [ -151.831055, 34.125448 ] } } +{ "type": "Feature", "properties": { "thesum": 251, "themax": 74, "themin": 5, "theproduct": 541413600, "themean": 41.833333333333339, "theconcat": "28677465512", "thecomma": "28,67,74,65,5,12", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45 }, "geometry": { "type": "Point", "coordinates": [ -151.831055, 34.125448 ] } } , -{ "type": "Feature", "properties": { "thesum": 323, "themax": 94, "themin": 37, "theproduct": 849285864, "themean": 45.583333333333339, "theconcat": "9484515737", "thecomma": "94,84,51,57,37", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24 }, "geometry": { "type": "Point", "coordinates": [ -101.381836, 58.608334 ] } } +{ "type": "Feature", "properties": { "thesum": 323, "themax": 94, "themin": 37, "theproduct": 849285864, "themean": 64.6, "theconcat": "9484515737", "thecomma": "94,84,51,57,37", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24 }, "geometry": { "type": "Point", "coordinates": [ -101.381836, 58.608334 ] } } , -{ "type": "Feature", "properties": { "thesum": 242, "themax": 97, "themin": 53, "theproduct": 472972, "themean": 49.42857142857143, "theconcat": "975392", "thecomma": "97,53,92", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ -55.810547, 73.415885 ] } } +{ "type": "Feature", "properties": { "thesum": 242, "themax": 97, "themin": 53, "theproduct": 472972, "themean": 80.66666666666667, "theconcat": "975392", "thecomma": "97,53,92", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ -55.810547, 73.415885 ] } } , -{ "type": "Feature", "properties": { "thesum": 261, "themax": 99, "themin": 13, "theproduct": 92432340, "themean": 47.44444444444444, "theconcat": "9990211338", "thecomma": "99,90,21,13,38", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24 }, "geometry": { "type": "Point", "coordinates": [ -50.449219, 40.380028 ] } } +{ "type": "Feature", "properties": { "thesum": 261, "themax": 99, "themin": 13, "theproduct": 92432340, "themean": 52.2, "theconcat": "9990211338", "thecomma": "99,90,21,13,38", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24 }, "geometry": { "type": "Point", "coordinates": [ -50.449219, 40.380028 ] } } , { "type": "Feature", "properties": { "thesum": 73, "themax": 73, "themin": 73, "theproduct": 73, "themean": 73, "theconcat": 73, "thecomma": 73 }, "geometry": { "type": "Point", "coordinates": [ -41.308594, -0.527336 ] } } , @@ -68,13 +69,13 @@ , { "type": "Feature", "properties": { "thesum": 242, "themax": 76, "themin": 15, "theproduct": 1767018240, "themean": 40.333333333333339, "theconcat": "467648183915", "thecomma": "46,76,48,18,39,15", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45 }, "geometry": { "type": "Point", "coordinates": [ 19.731445, -41.244772 ] } } , -{ "type": "Feature", "properties": { "thesum": 189, "themax": 85, "themin": 24, "theproduct": 163200, "themean": 43.875, "theconcat": "808524", "thecomma": "80,85,24", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ 26.367188, -75.453071 ] } } +{ "type": "Feature", "properties": { "thesum": 189, "themax": 85, "themin": 24, "theproduct": 163200, "themean": 63, "theconcat": "808524", "thecomma": "80,85,24", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ 26.367188, -75.453071 ] } } , -{ "type": "Feature", "properties": { "thesum": 207, "themax": 83, "themin": 10, "theproduct": 2294950, "themean": 43.18181818181818, "theconcat": "83103579", "thecomma": "83,10,35,79", "clustered": true, "point_count": 4, "sqrt_point_count": 2 }, "geometry": { "type": "Point", "coordinates": [ 60.600586, -81.127169 ] } } +{ "type": "Feature", "properties": { "thesum": 207, "themax": 83, "themin": 10, "theproduct": 2294950, "themean": 51.75, "theconcat": "83103579", "thecomma": "83,10,35,79", "clustered": true, "point_count": 4, "sqrt_point_count": 2 }, "geometry": { "type": "Point", "coordinates": [ 60.600586, -81.127169 ] } } , -{ "type": "Feature", "properties": { "thesum": 224, "themax": 70, "themin": 1, "theproduct": 293314560, "themean": 41.05882352941177, "theconcat": "13170648446", "thecomma": "1,31,70,64,8,44,6", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65 }, "geometry": { "type": "Point", "coordinates": [ 152.929688, -40.613952 ] } } +{ "type": "Feature", "properties": { "thesum": 224, "themax": 70, "themin": 1, "theproduct": 293314560, "themean": 32, "theconcat": "13170648446", "thecomma": "1,31,70,64,8,44,6", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65 }, "geometry": { "type": "Point", "coordinates": [ 152.929688, -40.613952 ] } } , -{ "type": "Feature", "properties": { "thesum": 332, "themax": 96, "themin": 36, "theproduct": 953731584, "themean": 46.57142857142857, "theconcat": "5261368796", "thecomma": "52,61,36,87,96", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24 }, "geometry": { "type": "Point", "coordinates": [ 151.127930, -75.419921 ] } } +{ "type": "Feature", "properties": { "thesum": 332, "themax": 96, "themin": 36, "theproduct": 953731584, "themean": 66.4, "theconcat": "5261368796", "thecomma": "52,61,36,87,96", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24 }, "geometry": { "type": "Point", "coordinates": [ 151.127930, -75.419921 ] } } , { "type": "Feature", "properties": { "thesum": 58, "themax": 58, "themin": 58, "theproduct": 58, "themean": 58, "theconcat": 58, "thecomma": 58 }, "geometry": { "type": "Point", "coordinates": [ 141.591797, -84.967021 ] } } ] } @@ -88,9 +89,9 @@ , { "type": "Feature", "properties": { "thesum": 240, "themax": 89, "themin": 2, "theproduct": 151798400, "themean": 40, "theconcat": "21682268925", "thecomma": "2,16,82,26,89,25", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45 }, "geometry": { "type": "Point", "coordinates": [ 31.992188, 48.487486 ] } } , -{ "type": "Feature", "properties": { "thesum": 146, "themax": 91, "themin": 55, "theproduct": 5005, "themean": 47.285714285714288, "theconcat": "5591", "thecomma": "55,91", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 105.468750, 83.951540 ] } } +{ "type": "Feature", "properties": { "thesum": 146, "themax": 91, "themin": 55, "theproduct": 5005, "themean": 73, "theconcat": "5591", "thecomma": "55,91", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 105.468750, 83.951540 ] } } , -{ "type": "Feature", "properties": { "thesum": 269, "themax": 81, "themin": 7, "theproduct": 1360776186, "themean": 47.25, "theconcat": "33176269817", "thecomma": "33,17,62,69,81,7", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45 }, "geometry": { "type": "Point", "coordinates": [ 128.979492, 37.265310 ] } } +{ "type": "Feature", "properties": { "thesum": 269, "themax": 81, "themin": 7, "theproduct": 1360776186, "themean": 44.833333333333339, "theconcat": "33176269817", "thecomma": "33,17,62,69,81,7", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45 }, "geometry": { "type": "Point", "coordinates": [ 128.979492, 37.265310 ] } } , { "type": "Feature", "properties": { "thesum": 93, "themax": 93, "themin": 93, "theproduct": 93, "themean": 93, "theconcat": 93, "thecomma": 93 }, "geometry": { "type": "Point", "coordinates": [ 169.760742, 17.853290 ] } } , @@ -112,9 +113,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 130, "themax": 49, "themin": 38, "theproduct": 80066, "themean": 43.333333333333339, "theconcat": "384943", "thecomma": "38,49,43", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ -174.396973, -19.539084 ] } } , -{ "type": "Feature", "properties": { "thesum": 134, "themax": 71, "themin": 9, "theproduct": 34506, "themean": 42, "theconcat": "54719", "thecomma": "54,71,9", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ -160.620117, -42.261049 ] } } +{ "type": "Feature", "properties": { "thesum": 134, "themax": 71, "themin": 9, "theproduct": 34506, "themean": 44.666666666666667, "theconcat": "54719", "thecomma": "54,71,9", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ -160.620117, -42.261049 ] } } , -{ "type": "Feature", "properties": { "thesum": 107, "themax": 75, "themin": 32, "theproduct": 2400, "themean": 47.5, "theconcat": "3275", "thecomma": "32,75", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -156.796875, -58.813742 ] } } +{ "type": "Feature", "properties": { "thesum": 107, "themax": 75, "themin": 32, "theproduct": 2400, "themean": 53.5, "theconcat": "3275", "thecomma": "32,75", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -156.796875, -58.813742 ] } } , { "type": "Feature", "properties": { "thesum": 23, "themax": 23, "themin": 23, "theproduct": 23, "themean": 23, "theconcat": 23, "thecomma": 23 }, "geometry": { "type": "Point", "coordinates": [ -131.440430, -48.647428 ] } } ] } @@ -126,7 +127,7 @@ , { "type": "Feature", "properties": { "thesum": 12, "themax": 12, "themin": 12, "theproduct": 12, "themean": 12, "theconcat": 12, "thecomma": 12 }, "geometry": { "type": "Point", "coordinates": [ -145.437012, 26.352498 ] } } , -{ "type": "Feature", "properties": { "thesum": 229, "themax": 94, "themin": 51, "theproduct": 402696, "themean": 57.666666666666667, "theconcat": "948451", "thecomma": "94,84,51", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ -118.410645, 19.186678 ] } } +{ "type": "Feature", "properties": { "thesum": 229, "themax": 94, "themin": 51, "theproduct": 402696, "themean": 76.33333333333333, "theconcat": "948451", "thecomma": "94,84,51", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ -118.410645, 19.186678 ] } } , { "type": "Feature", "properties": { "thesum": 38, "themax": 38, "themin": 38, "theproduct": 38, "themean": 38, "theconcat": 38, "thecomma": 38 }, "geometry": { "type": "Point", "coordinates": [ -176.484375, -1.164471 ] } } ] } @@ -146,9 +147,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 88, "themax": 66, "themin": 22, "theproduct": 1452, "themean": 44, "theconcat": "6622", "thecomma": "66,22", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -75.981445, -14.711135 ] } } , -{ "type": "Feature", "properties": { "thesum": 231, "themax": 95, "themin": 63, "theproduct": 436905, "themean": 64, "theconcat": "639573", "thecomma": "63,95,73", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ -49.592285, -41.656497 ] } } +{ "type": "Feature", "properties": { "thesum": 231, "themax": 95, "themin": 63, "theproduct": 436905, "themean": 77, "theconcat": "639573", "thecomma": "63,95,73", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ -49.592285, -41.656497 ] } } , -{ "type": "Feature", "properties": { "thesum": 105, "themax": 86, "themin": 19, "theproduct": 1634, "themean": 55, "theconcat": "8619", "thecomma": "86,19", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -12.722168, -37.055177 ] } } +{ "type": "Feature", "properties": { "thesum": 105, "themax": 86, "themin": 19, "theproduct": 1634, "themean": 52.5, "theconcat": "8619", "thecomma": "86,19", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -12.722168, -37.055177 ] } } ] } ] } , @@ -156,7 +157,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 145, "themax": 92, "themin": 53, "theproduct": 4876, "themean": 72.5, "theconcat": "5392", "thecomma": "53,92", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -74.135742, 60.163376 ] } } , -{ "type": "Feature", "properties": { "thesum": 223, "themax": 99, "themin": 13, "theproduct": 2432430, "themean": 53.8, "theconcat": "99902113", "thecomma": "99,90,21,13", "clustered": true, "point_count": 4, "sqrt_point_count": 2 }, "geometry": { "type": "Point", "coordinates": [ -18.918457, 48.443778 ] } } +{ "type": "Feature", "properties": { "thesum": 223, "themax": 99, "themin": 13, "theproduct": 2432430, "themean": 55.75, "theconcat": "99902113", "thecomma": "99,90,21,13", "clustered": true, "point_count": 4, "sqrt_point_count": 2 }, "geometry": { "type": "Point", "coordinates": [ -18.918457, 48.443778 ] } } , { "type": "Feature", "properties": { "thesum": 73, "themax": 73, "themin": 73, "theproduct": 73, "themean": 73, "theconcat": 73, "thecomma": 73 }, "geometry": { "type": "Point", "coordinates": [ -41.308594, -0.527336 ] } } ] } @@ -176,7 +177,7 @@ , { "type": "Feature", "properties": { "thesum": 83, "themax": 83, "themin": 83, "theproduct": 83, "themean": 83, "theconcat": 83, "thecomma": 83 }, "geometry": { "type": "Point", "coordinates": [ 43.352051, -79.993351 ] } } , -{ "type": "Feature", "properties": { "thesum": 124, "themax": 79, "themin": 10, "theproduct": 27650, "themean": 55.75, "theconcat": "103579", "thecomma": "10,35,79", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ 66.335449, -81.479293 ] } } +{ "type": "Feature", "properties": { "thesum": 124, "themax": 79, "themin": 10, "theproduct": 27650, "themean": 41.333333333333339, "theconcat": "103579", "thecomma": "10,35,79", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ 66.335449, -81.479293 ] } } ] } ] } , @@ -226,9 +227,9 @@ , { "type": "Feature", "properties": { "thesum": 102, "themax": 70, "themin": 1, "theproduct": 2170, "themean": 34, "theconcat": "13170", "thecomma": "1,31,70", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ 144.206543, -28.459033 ] } } , -{ "type": "Feature", "properties": { "thesum": 72, "themax": 64, "themin": 8, "theproduct": 512, "themean": 27.5, "theconcat": "648", "thecomma": "64,8", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 160.554199, -29.401320 ] } } +{ "type": "Feature", "properties": { "thesum": 72, "themax": 64, "themin": 8, "theproduct": 512, "themean": 36, "theconcat": "648", "thecomma": "64,8", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 160.554199, -29.401320 ] } } , -{ "type": "Feature", "properties": { "thesum": 50, "themax": 44, "themin": 6, "theproduct": 264, "themean": 23.2, "theconcat": "446", "thecomma": "44,6", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 158.422852, -62.410729 ] } } +{ "type": "Feature", "properties": { "thesum": 50, "themax": 44, "themin": 6, "theproduct": 264, "themean": 25, "theconcat": "446", "thecomma": "44,6", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 158.422852, -62.410729 ] } } ] } ] } , @@ -236,7 +237,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 148, "themax": 69, "themin": 17, "theproduct": 72726, "themean": 49.333333333333339, "theconcat": "176269", "thecomma": "17,62,69", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73 }, "geometry": { "type": "Point", "coordinates": [ 114.916992, 29.267233 ] } } , -{ "type": "Feature", "properties": { "thesum": 88, "themax": 81, "themin": 7, "theproduct": 567, "themean": 38.75, "theconcat": "817", "thecomma": "81,7", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 125.925293, 13.560562 ] } } +{ "type": "Feature", "properties": { "thesum": 88, "themax": 81, "themin": 7, "theproduct": 567, "themean": 44, "theconcat": "817", "thecomma": "81,7", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 125.925293, 13.560562 ] } } , { "type": "Feature", "properties": { "thesum": 93, "themax": 93, "themin": 93, "theproduct": 93, "themean": 93, "theconcat": 93, "thecomma": 93 }, "geometry": { "type": "Point", "coordinates": [ 169.760742, 17.853290 ] } } ] } @@ -284,7 +285,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 141, "themax": 74, "themin": 67, "theproduct": 4958, "themean": 70.5, "theconcat": "6774", "thecomma": "67,74", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -168.530273, 28.052591 ] } } , -{ "type": "Feature", "properties": { "thesum": 70, "themax": 65, "themin": 5, "theproduct": 325, "themean": 48.666666666666667, "theconcat": "655", "thecomma": "65,5", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -159.927979, 16.372851 ] } } +{ "type": "Feature", "properties": { "thesum": 70, "themax": 65, "themin": 5, "theproduct": 325, "themean": 35, "theconcat": "655", "thecomma": "65,5", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -159.927979, 16.372851 ] } } , { "type": "Feature", "properties": { "thesum": 12, "themax": 12, "themin": 12, "theproduct": 12, "themean": 12, "theconcat": 12, "thecomma": 12 }, "geometry": { "type": "Point", "coordinates": [ -145.437012, 26.342653 ] } } ] } @@ -392,7 +393,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 189, "themax": 99, "themin": 90, "theproduct": 8910, "themean": 94.5, "theconcat": "9990", "thecomma": "99,90", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -28.388672, 50.965346 ] } } , -{ "type": "Feature", "properties": { "thesum": 34, "themax": 21, "themin": 13, "theproduct": 273, "themean": 67.33333333333333, "theconcat": "2113", "thecomma": "21,13", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -9.448242, 45.782848 ] } } +{ "type": "Feature", "properties": { "thesum": 34, "themax": 21, "themin": 13, "theproduct": 273, "themean": 17, "theconcat": "2113", "thecomma": "21,13", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41 }, "geometry": { "type": "Point", "coordinates": [ -9.448242, 45.782848 ] } } ] } ] } , diff --git a/tests/accumulate/out/-z5_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma.json b/tests/accumulate/out/-z5_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma.json index 00a09be54..7ab8da102 100644 --- a/tests/accumulate/out/-z5_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma.json +++ b/tests/accumulate/out/-z5_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma.json @@ -3,7 +3,8 @@ "center": "-174.375000,-52.349536,5", "description": "tests/accumulate/out/-z5_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma.json.check.mbtiles", "format": "pbf", -"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"thecomma\": \"Mixed\", \"theconcat\": \"Mixed\", \"themax\": \"Number\", \"themean\": \"Number\", \"themin\": \"Number\", \"theproduct\": \"Number\", \"thesum\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 100,\"geometry\": \"Point\",\"attributeCount\": 7,\"attributes\": [{\"attribute\": \"thecomma\",\"count\": 152,\"type\": \"mixed\",\"values\": [1,\"1,8,44,6\",10,100,11,12,13,14,15,16,\"16,82\",17,\"17,62\",18,\"18,39\",\"18,39,15\",19,2,\"2,16,82\",20,21,22,23,24,\"24,83\",25,26,\"26,89,25\",\"26,89,25,55,91,33,17,62,69,81,7,93,31\",27,28,29,3,\"3,14\",\"3,14,78,28\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36,87,96,58\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,73,33\",30,31,32,33,34,35,\"35,79\",\"35,79,1,31,70,64,8,44,6,52,61,36,87,96,58\",36,37,38,\"38,49\",\"38,49,43,54,71,9,32\",39,4,40,41,42,43,\"43,54\",44,45,46,47,48,49,\"49,1,31,70,64,8,44,6\",\"49,72,86,46,76,48,18,39,15,80,85,24,83,10\",5,\"5,12\",50,51,52,53,54,55,\"55,91\",\"55,91,33\",56,57,\"57,37\",\"57,37,97\",58,59,6,60,61,\"61,36\",62,63,64,65,\"65,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,96\",66,\"66,22\",\"66,22,63,95,73,86,19\",67,\"67,38,11,2,16,82\",\"67,65\",\"67,74,65,5,12,94,84,51,38\",68,69,\"69,81\"],\"min\": 1,\"max\": 100},{\"attribute\": \"theconcat\",\"count\": 152,\"type\": \"mixed\",\"values\": [1,10,100,11,12,13,14,15,16,\"1682\",17,\"1762\",18,\"1839\",\"183915\",\"18446\",19,2,20,21,\"21682\",22,23,24,\"2483\",25,26,\"268925\",\"2689255591331762698179331\",27,28,29,3,30,31,\"314\",\"3147828\",\"31478286774655129484515737975392999021133849435471932752372295942100662263957386191121682268925559133176269817934676481839158085248310357913170648446526136879658\",\"3147828677465512948451573797539299902113387333\",32,33,34,35,\"3579\",\"357913170648446526136879658\",36,37,38,\"3849\",\"3849435471932\",39,4,40,41,42,43,\"4354\",44,45,46,47,48,49,\"4913170648446\",\"4972864676481839158085248310\",5,50,51,\"512\",52,53,54,55,\"5591\",\"559133\",56,57,\"5737\",\"573797\",58,59,6,60,61,\"6136\",62,63,64,65,\"6538494354719327523722959421006622639573861996\",66,\"6622\",\"66226395738619\",67,\"67381121682\",\"6765\",\"67746551294845138\",68,69,\"6981\"],\"min\": 1,\"max\": 100},{\"attribute\": \"themax\",\"count\": 100,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 1,\"max\": 100},{\"attribute\": \"themean\",\"count\": 135,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,14.75,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,28.5,29,3,30,30.75,31,32,33,33.333333333333339,34,34.125,35,36,37,37.333333333333339,38,39,39.5,39.875,4,40,41,41.75,42,42.285714285714288,42.8,43,43.5,44,45,46,47,47.333333333333339,48,48.27777777777778,48.5,49,5,50,50.5,50.773809523809529,50.857142857142857,51,52,52.214285714285718,53,53.25,53.5,54,54.44444444444444,55,55.69565217391305,55.75,56,56.2,57,58,59,59.333333333333339,59.666666666666667,6,60,60.4,60.57142857142857,61,62,63,63.666666666666667,64,64.66666666666667,65,66,67,68,69,69.33333333333333,7],\"min\": 1,\"max\": 100},{\"attribute\": \"themin\",\"count\": 100,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 1,\"max\": 100},{\"attribute\": \"theproduct\",\"count\": 150,\"type\": \"number\",\"values\": [1,1.1358965693283625e+21,1.5864380887725077e+38,1.6098219495357537e+132,10,100,1036586822040,10530,1054,11,119282,12,12157085491200,13,1312,1320551424,14,14372413440,1452,15,16,16336199880,165165,1693200,17,1725,18,1862,19,1992,2,20,20448,204573,2088,21,2109,2112,2196,22,23,2322,24,2432430,25,26,2624,27,2765,28,288600,29,295891195017600,3,30,300656,31,32,33,34,35,35840,36,3638439,37,38,39,39123,3982783094784,4,4.486244263022014e+22,40,402696,41,42,43,4355,44,45,46,47,48,49,5,5.103920456870841e+38,50,5005,51,517406400,52,53,54,55,5589,56,57,57850,58,59,6],\"min\": 1,\"max\": 1.6098219495357537e+132},{\"attribute\": \"thesum\",\"count\": 136,\"type\": \"number\",\"values\": [1,10,100,101,107,11,112,114,12,123,1278,1281,13,132,14,140,142,146,15,150,156,157,16,17,178,179,18,19,191,2,20,202,208,21,216,22,223,229,23,24,25,250,26,27,273,28,29,296,3,30,302,31,32,33,34,35,352,36,37,38,388,39,4,40,408,41,42,424,4265,43,44,45,46,462,47,48,49,490,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,679,68],\"min\": 1,\"max\": 4265}]}]}}", +"generator_options": "./tippecanoe -q -a@ -f -o tests/accumulate/out/-z5_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma.json.check.mbtiles -z5 -Ethesum:sum -Etheproduct:product -Ethemax:max -Ethemin:min -Ethemean:mean -Etheconcat:concat -Ethecomma:comma tests/accumulate/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"thecomma\": \"Mixed\", \"theconcat\": \"Mixed\", \"themax\": \"Number\", \"themean\": \"Number\", \"themin\": \"Number\", \"theproduct\": \"Number\", \"thesum\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 100,\"geometry\": \"Point\",\"attributeCount\": 7,\"attributes\": [{\"attribute\": \"thecomma\",\"count\": 152,\"type\": \"mixed\",\"values\": [1,\"1,8,44,6\",10,100,11,12,13,14,15,16,\"16,82\",17,\"17,62\",18,\"18,39\",\"18,39,15\",19,2,\"2,16,82\",20,21,22,23,24,\"24,83\",25,26,\"26,89,25\",\"26,89,25,55,91,33,17,62,69,81,7,93,31\",27,28,29,3,\"3,14\",\"3,14,78,28\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36,87,96,58\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,73,33\",30,31,32,33,34,35,\"35,79\",\"35,79,1,31,70,64,8,44,6,52,61,36,87,96,58\",36,37,38,\"38,49\",\"38,49,43,54,71,9,32\",39,4,40,41,42,43,\"43,54\",44,45,46,47,48,49,\"49,1,31,70,64,8,44,6\",\"49,72,86,46,76,48,18,39,15,80,85,24,83,10\",5,\"5,12\",50,51,52,53,54,55,\"55,91\",\"55,91,33\",56,57,\"57,37\",\"57,37,97\",58,59,6,60,61,\"61,36\",62,63,64,65,\"65,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,96\",66,\"66,22\",\"66,22,63,95,73,86,19\",67,\"67,38,11,2,16,82\",\"67,65\",\"67,74,65,5,12,94,84,51,38\",68,69,\"69,81\"],\"min\": 1,\"max\": 100},{\"attribute\": \"theconcat\",\"count\": 152,\"type\": \"mixed\",\"values\": [1,10,100,11,12,13,14,15,16,\"1682\",17,\"1762\",18,\"1839\",\"183915\",\"18446\",19,2,20,21,\"21682\",22,23,24,\"2483\",25,26,\"268925\",\"2689255591331762698179331\",27,28,29,3,30,31,\"314\",\"3147828\",\"31478286774655129484515737975392999021133849435471932752372295942100662263957386191121682268925559133176269817934676481839158085248310357913170648446526136879658\",\"3147828677465512948451573797539299902113387333\",32,33,34,35,\"3579\",\"357913170648446526136879658\",36,37,38,\"3849\",\"3849435471932\",39,4,40,41,42,43,\"4354\",44,45,46,47,48,49,\"4913170648446\",\"4972864676481839158085248310\",5,50,51,\"512\",52,53,54,55,\"5591\",\"559133\",56,57,\"5737\",\"573797\",58,59,6,60,61,\"6136\",62,63,64,65,\"6538494354719327523722959421006622639573861996\",66,\"6622\",\"66226395738619\",67,\"67381121682\",\"6765\",\"67746551294845138\",68,69,\"6981\"],\"min\": 1,\"max\": 100},{\"attribute\": \"themax\",\"count\": 100,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 1,\"max\": 100},{\"attribute\": \"themean\",\"count\": 134,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,14.75,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,28.5,29,3,30,30.75,31,32,33,33.333333333333339,34,34.125,35,36,37,37.333333333333339,38,39,39.5,4,40,41,42,42.285714285714288,43,43.5,44,45,46,46.666666666666667,47,47.333333333333339,48,48.5,48.53333333333333,49,5,50,50.5,50.773809523809529,51,52,52.214285714285718,52.23076923076923,52.333333333333339,53,53.25,53.5,54,54.44444444444444,55,55.69565217391305,55.75,56,57,58,59,59.333333333333339,59.666666666666667,6,60,60.4,60.57142857142857,61,62,62.5,63,63.666666666666667,64,64.66666666666667,65,66,67,68,69,69.33333333333333,7,70],\"min\": 1,\"max\": 100},{\"attribute\": \"themin\",\"count\": 100,\"type\": \"number\",\"values\": [1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 1,\"max\": 100},{\"attribute\": \"theproduct\",\"count\": 150,\"type\": \"number\",\"values\": [1,1.1358965693283625e+21,1.5864380887725077e+38,1.6098219495357537e+132,10,100,1036586822040,10530,1054,11,119282,12,12157085491200,13,1312,1320551424,14,14372413440,1452,15,16,16336199880,165165,1693200,17,1725,18,1862,19,1992,2,20,20448,204573,2088,21,2109,2112,2196,22,23,2322,24,2432430,25,26,2624,27,2765,28,288600,29,295891195017600,3,30,300656,31,32,33,34,35,35840,36,3638439,37,38,39,39123,3982783094784,4,4.486244263022014e+22,40,402696,41,42,43,4355,44,45,46,47,48,49,5,5.103920456870841e+38,50,5005,51,517406400,52,53,54,55,5589,56,57,57850,58,59,6],\"min\": 1,\"max\": 1.6098219495357537e+132},{\"attribute\": \"thesum\",\"count\": 136,\"type\": \"number\",\"values\": [1,10,100,101,107,11,112,114,12,123,1278,1281,13,132,14,140,142,146,15,150,156,157,16,17,178,179,18,19,191,2,20,202,208,21,216,22,223,229,23,24,25,250,26,27,273,28,29,296,3,30,302,31,32,33,34,35,352,36,37,38,388,39,4,40,408,41,42,424,4265,43,44,45,46,462,47,48,49,490,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,679,68],\"min\": 1,\"max\": 4265}]}]}}", "maxzoom": "5", "minzoom": "0", "name": "tests/accumulate/out/-z5_-Ethesum@sum_-Etheproduct@product_-Ethemax@max_-Ethemin@min_-Ethemean@mean_-Etheconcat@concat_-Ethecomma@comma.json.check.mbtiles", @@ -32,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 731, "themax": 86, "themin": 10, "theproduct": 7.2621682598253038e+22, "themean": 52.214285714285718, "theconcat": "4972864676481839158085248310", "thecomma": "49,72,86,46,76,48,18,39,15,80,85,24,83,10" }, "geometry": { "type": "Point", "coordinates": [ 181.406250, -17.978733 ] } } , -{ "type": "Feature", "properties": { "thesum": 728, "themax": 96, "themin": 1, "theproduct": 4.486244263022014e+22, "themean": 50.857142857142857, "theconcat": "357913170648446526136879658", "thecomma": "35,79,1,31,70,64,8,44,6,52,61,36,87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 57.919922, -82.226115 ] } } +{ "type": "Feature", "properties": { "thesum": 728, "themax": 96, "themin": 1, "theproduct": 4.486244263022014e+22, "themean": 48.53333333333333, "theconcat": "357913170648446526136879658", "thecomma": "35,79,1,31,70,64,8,44,6,52,61,36,87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 57.919922, -82.226115 ] } } ] } ] } , @@ -40,7 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 216, "themax": 82, "themin": 2, "theproduct": 73487744, "themean": 36, "theconcat": "67381121682", "thecomma": "67,38,11,2,16,82" }, "geometry": { "type": "Point", "coordinates": [ 182.548828, 22.309426 ] } } , -{ "type": "Feature", "properties": { "thesum": 679, "themax": 93, "themin": 7, "theproduct": 1.1358965693283625e+21, "themean": 48.27777777777778, "theconcat": "2689255591331762698179331", "thecomma": "26,89,25,55,91,33,17,62,69,81,7,93,31" }, "geometry": { "type": "Point", "coordinates": [ 43.989258, 42.779275 ] } } +{ "type": "Feature", "properties": { "thesum": 679, "themax": 93, "themin": 7, "theproduct": 1.1358965693283625e+21, "themean": 52.23076923076923, "theconcat": "2689255591331762698179331", "thecomma": "26,89,25,55,91,33,17,62,69,81,7,93,31" }, "geometry": { "type": "Point", "coordinates": [ 43.989258, 42.779275 ] } } ] } ] } , @@ -54,7 +55,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 296, "themax": 71, "themin": 9, "theproduct": 88408236672, "themean": 42.285714285714288, "theconcat": "3849435471932", "thecomma": "38,49,43,54,71,9,32" }, "geometry": { "type": "Point", "coordinates": [ -176.484375, -1.164471 ] } } , -{ "type": "Feature", "properties": { "thesum": 98, "themax": 75, "themin": 23, "theproduct": 1725, "themean": 39.875, "theconcat": "7523", "thecomma": "75,23" }, "geometry": { "type": "Point", "coordinates": [ -157.236328, -62.925236 ] } } +{ "type": "Feature", "properties": { "thesum": 98, "themax": 75, "themin": 23, "theproduct": 1725, "themean": 49, "theconcat": "7523", "thecomma": "75,23" }, "geometry": { "type": "Point", "coordinates": [ -157.236328, -62.925236 ] } } ] } ] } , @@ -94,7 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 202, "themax": 85, "themin": 10, "theproduct": 1693200, "themean": 50.5, "theconcat": "85248310", "thecomma": "85,24,83,10" }, "geometry": { "type": "Point", "coordinates": [ 7.382812, -80.386396 ] } } , -{ "type": "Feature", "properties": { "thesum": 114, "themax": 79, "themin": 35, "theproduct": 2765, "themean": 56.2, "theconcat": "3579", "thecomma": "35,79" }, "geometry": { "type": "Point", "coordinates": [ 57.941895, -82.229086 ] } } +{ "type": "Feature", "properties": { "thesum": 114, "themax": 79, "themin": 35, "theproduct": 2765, "themean": 57, "theconcat": "3579", "thecomma": "35,79" }, "geometry": { "type": "Point", "coordinates": [ 57.941895, -82.229086 ] } } ] } ] } , @@ -108,7 +109,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 100, "themax": 82, "themin": 2, "theproduct": 2624, "themean": 33.333333333333339, "theconcat": "21682", "thecomma": "2,16,82" }, "geometry": { "type": "Point", "coordinates": [ 14.040527, 46.739861 ] } } , -{ "type": "Feature", "properties": { "thesum": 140, "themax": 89, "themin": 25, "theproduct": 57850, "themean": 42.8, "theconcat": "268925", "thecomma": "26,89,25" }, "geometry": { "type": "Point", "coordinates": [ 44.011230, 42.763146 ] } } +{ "type": "Feature", "properties": { "thesum": 140, "themax": 89, "themin": 25, "theproduct": 57850, "themean": 46.666666666666667, "theconcat": "268925", "thecomma": "26,89,25" }, "geometry": { "type": "Point", "coordinates": [ 44.011230, 42.763146 ] } } ] } ] } , @@ -134,7 +135,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 79, "themax": 62, "themin": 17, "theproduct": 1054, "themean": 39.5, "theconcat": "1762", "thecomma": "17,62" }, "geometry": { "type": "Point", "coordinates": [ 110.412598, 38.376115 ] } } , -{ "type": "Feature", "properties": { "thesum": 250, "themax": 93, "themin": 7, "theproduct": 3638439, "themean": 52, "theconcat": "6981793", "thecomma": "69,81,7,93" }, "geometry": { "type": "Point", "coordinates": [ 113.598633, 13.859414 ] } } +{ "type": "Feature", "properties": { "thesum": 250, "themax": 93, "themin": 7, "theproduct": 3638439, "themean": 62.5, "theconcat": "6981793", "thecomma": "69,81,7,93" }, "geometry": { "type": "Point", "coordinates": [ 113.598633, 13.859414 ] } } ] } ] } , @@ -164,7 +165,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 87, "themax": 49, "themin": 38, "theproduct": 1862, "themean": 43.5, "theconcat": "3849", "thecomma": "38,49" }, "geometry": { "type": "Point", "coordinates": [ -176.473389, -1.164471 ] } } , -{ "type": "Feature", "properties": { "thesum": 97, "themax": 54, "themin": 43, "theproduct": 2322, "themean": 47, "theconcat": "4354", "thecomma": "43,54" }, "geometry": { "type": "Point", "coordinates": [ -168.145752, -37.378888 ] } } +{ "type": "Feature", "properties": { "thesum": 97, "themax": 54, "themin": 43, "theproduct": 2322, "themean": 48.5, "theconcat": "4354", "thecomma": "43,54" }, "geometry": { "type": "Point", "coordinates": [ -168.145752, -37.378888 ] } } ] } ] } , @@ -358,7 +359,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "thesum": 79, "themax": 62, "themin": 17, "theproduct": 1054, "themean": 39.5, "theconcat": "1762", "thecomma": "17,62" }, "geometry": { "type": "Point", "coordinates": [ 110.423584, 38.367502 ] } } , -{ "type": "Feature", "properties": { "thesum": 157, "themax": 81, "themin": 7, "theproduct": 39123, "themean": 41.75, "theconcat": "69817", "thecomma": "69,81,7" }, "geometry": { "type": "Point", "coordinates": [ 113.609619, 13.848747 ] } } +{ "type": "Feature", "properties": { "thesum": 157, "themax": 81, "themin": 7, "theproduct": 39123, "themean": 52.333333333333339, "theconcat": "69817", "thecomma": "69,81,7" }, "geometry": { "type": "Point", "coordinates": [ 113.609619, 13.848747 ] } } ] } ] } , diff --git a/tests/allow-existing/both.mbtiles.json b/tests/allow-existing/both.mbtiles.json index 63082f729..1df4f2487 100644 --- a/tests/allow-existing/both.mbtiles.json +++ b/tests/allow-existing/both.mbtiles.json @@ -676,7 +676,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404600", "GEOID10": "06001404600", "NAME10": "4046", "NAMELSAD10": "Census Tract 4046", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4887532, "AWATER10": 0, "INTPTLAT10": "+37.8197458", "INTPTLON10": "-122.1910599" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.186165, 37.836361 ], [ -122.184448, 37.835005 ], [ -122.184448, 37.834192 ], [ -122.187195, 37.829582 ], [ -122.187195, 37.827413 ], [ -122.186165, 37.825786 ], [ -122.186852, 37.823887 ], [ -122.186508, 37.821718 ], [ -122.186165, 37.820904 ], [ -122.181702, 37.819548 ], [ -122.175179, 37.814395 ], [ -122.174492, 37.810598 ], [ -122.175865, 37.807343 ], [ -122.178268, 37.804088 ], [ -122.179298, 37.804901 ], [ -122.180672, 37.808156 ], [ -122.182388, 37.809513 ], [ -122.185135, 37.809784 ], [ -122.187195, 37.809513 ], [ -122.188911, 37.810055 ], [ -122.190971, 37.809784 ], [ -122.196121, 37.811140 ], [ -122.197495, 37.811140 ], [ -122.197838, 37.810598 ], [ -122.201614, 37.814395 ], [ -122.207451, 37.821718 ], [ -122.207108, 37.822531 ], [ -122.209167, 37.824701 ], [ -122.207451, 37.824972 ], [ -122.206421, 37.824430 ], [ -122.203331, 37.823887 ], [ -122.202644, 37.824430 ], [ -122.202988, 37.826057 ], [ -122.202301, 37.827413 ], [ -122.200928, 37.829582 ], [ -122.196465, 37.831751 ], [ -122.194061, 37.832294 ], [ -122.190971, 37.834734 ], [ -122.189255, 37.835276 ], [ -122.187195, 37.835276 ], [ -122.187195, 37.835547 ], [ -122.188225, 37.836090 ], [ -122.187881, 37.836361 ], [ -122.187195, 37.836090 ], [ -122.186165, 37.836361 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406700", "GEOID10": "06001406700", "NAME10": "4067", "NAMELSAD10": "Census Tract 4067", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1683727, "AWATER10": 0, "INTPTLAT10": "+37.8033164", "INTPTLON10": "-122.2022249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.193031, 37.805715 ], [ -122.193718, 37.805986 ], [ -122.194748, 37.805444 ], [ -122.192688, 37.803274 ], [ -122.194405, 37.803003 ], [ -122.193718, 37.801375 ], [ -122.194748, 37.801918 ], [ -122.196465, 37.799747 ], [ -122.196465, 37.798933 ], [ -122.196808, 37.798391 ], [ -122.198181, 37.799476 ], [ -122.198524, 37.800290 ], [ -122.199554, 37.799476 ], [ -122.200241, 37.797577 ], [ -122.200584, 37.797034 ], [ -122.201614, 37.797848 ], [ -122.203674, 37.796221 ], [ -122.205048, 37.797577 ], [ -122.207794, 37.798662 ], [ -122.209167, 37.798662 ], [ -122.214317, 37.800019 ], [ -122.207794, 37.806529 ], [ -122.205391, 37.807885 ], [ -122.202301, 37.809513 ], [ -122.201614, 37.810598 ], [ -122.198868, 37.810326 ], [ -122.197838, 37.810598 ], [ -122.194061, 37.807614 ], [ -122.195435, 37.808428 ], [ -122.193031, 37.805715 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406700", "GEOID10": "06001406700", "NAME10": "4067", "NAMELSAD10": "Census Tract 4067", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1683727, "AWATER10": 0, "INTPTLAT10": "+37.8033164", "INTPTLON10": "-122.2022249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.195435, 37.808428 ], [ -122.193031, 37.805715 ], [ -122.193718, 37.805986 ], [ -122.194748, 37.805444 ], [ -122.192688, 37.803274 ], [ -122.194405, 37.803003 ], [ -122.193718, 37.801375 ], [ -122.194748, 37.801918 ], [ -122.196465, 37.799747 ], [ -122.196465, 37.798933 ], [ -122.196808, 37.798391 ], [ -122.198181, 37.799476 ], [ -122.198524, 37.800290 ], [ -122.199554, 37.799476 ], [ -122.200241, 37.797577 ], [ -122.200584, 37.797034 ], [ -122.201614, 37.797848 ], [ -122.203674, 37.796221 ], [ -122.205048, 37.797577 ], [ -122.207794, 37.798662 ], [ -122.209167, 37.798662 ], [ -122.214317, 37.800019 ], [ -122.207794, 37.806529 ], [ -122.205391, 37.807885 ], [ -122.202301, 37.809513 ], [ -122.201614, 37.810598 ], [ -122.198868, 37.810326 ], [ -122.197838, 37.810598 ], [ -122.195435, 37.808428 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406601", "GEOID10": "06001406601", "NAME10": "4066.01", "NAMELSAD10": "Census Tract 4066.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 747950, "AWATER10": 0, "INTPTLAT10": "+37.7936085", "INTPTLON10": "-122.2079568" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.207794, 37.798662 ], [ -122.205048, 37.797577 ], [ -122.200928, 37.793779 ], [ -122.209854, 37.788353 ], [ -122.211914, 37.790523 ], [ -122.215004, 37.792151 ], [ -122.209511, 37.798120 ], [ -122.207794, 37.798662 ] ] ] } } , @@ -1284,7 +1284,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451506", "GEOID10": "06001451506", "NAME10": "4515.06", "NAMELSAD10": "Census Tract 4515.06", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 851129, "AWATER10": 0, "INTPTLAT10": "+37.6833516", "INTPTLON10": "-121.7291862" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.732979, 37.688167 ], [ -121.732292, 37.687896 ], [ -121.729889, 37.686673 ], [ -121.726456, 37.685315 ], [ -121.725426, 37.684635 ], [ -121.725082, 37.683684 ], [ -121.724567, 37.683413 ], [ -121.721134, 37.682598 ], [ -121.718731, 37.681239 ], [ -121.718903, 37.679881 ], [ -121.733150, 37.680016 ], [ -121.733322, 37.680967 ], [ -121.734695, 37.683413 ], [ -121.735897, 37.685043 ], [ -121.738300, 37.687488 ], [ -121.738129, 37.687624 ], [ -121.736927, 37.688167 ], [ -121.732979, 37.688167 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450701", "GEOID10": "06001450701", "NAME10": "4507.01", "NAMELSAD10": "Census Tract 4507.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 266251308, "AWATER10": 2844031, "INTPTLAT10": "+37.5511338", "INTPTLON10": "-121.8054596" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.839066, 37.664799 ], [ -121.834946, 37.662624 ], [ -121.831169, 37.659771 ], [ -121.826878, 37.655558 ], [ -121.814346, 37.655558 ], [ -121.805763, 37.652296 ], [ -121.805592, 37.648898 ], [ -121.804733, 37.647267 ], [ -121.799927, 37.642918 ], [ -121.798897, 37.639791 ], [ -121.799068, 37.636801 ], [ -121.800785, 37.635849 ], [ -121.801815, 37.634626 ], [ -121.801987, 37.630411 ], [ -121.802330, 37.629596 ], [ -121.803188, 37.628644 ], [ -121.796665, 37.626605 ], [ -121.796322, 37.626333 ], [ -121.786022, 37.626061 ], [ -121.785336, 37.624429 ], [ -121.785164, 37.623206 ], [ -121.784134, 37.622118 ], [ -121.783619, 37.621166 ], [ -121.782761, 37.620622 ], [ -121.781044, 37.618039 ], [ -121.780701, 37.617903 ], [ -121.780014, 37.616951 ], [ -121.779671, 37.615455 ], [ -121.779842, 37.614367 ], [ -121.779327, 37.612736 ], [ -121.777954, 37.610560 ], [ -121.773491, 37.607976 ], [ -121.772461, 37.607024 ], [ -121.771259, 37.606480 ], [ -121.769199, 37.606208 ], [ -121.768513, 37.605664 ], [ -121.766968, 37.604984 ], [ -121.765594, 37.604848 ], [ -121.764908, 37.604440 ], [ -121.761990, 37.603760 ], [ -121.760445, 37.603760 ], [ -121.760101, 37.603352 ], [ -121.759243, 37.603488 ], [ -121.757526, 37.602536 ], [ -121.751347, 37.601312 ], [ -121.751862, 37.601040 ], [ -121.753578, 37.601040 ], [ -121.755123, 37.600768 ], [ -121.755981, 37.600904 ], [ -121.756668, 37.600632 ], [ -121.756668, 37.600360 ], [ -121.754608, 37.599136 ], [ -121.752377, 37.598592 ], [ -121.751862, 37.598184 ], [ -121.751690, 37.597368 ], [ -121.750832, 37.596552 ], [ -121.750660, 37.596008 ], [ -121.748600, 37.594648 ], [ -121.748772, 37.593968 ], [ -121.749287, 37.593560 ], [ -121.749287, 37.592199 ], [ -121.750145, 37.591791 ], [ -121.750145, 37.591111 ], [ -121.749630, 37.591111 ], [ -121.748943, 37.590431 ], [ -121.746712, 37.590567 ], [ -121.746025, 37.589615 ], [ -121.745510, 37.589615 ], [ -121.744823, 37.588935 ], [ -121.744308, 37.588935 ], [ -121.742764, 37.588119 ], [ -121.742420, 37.587711 ], [ -121.742420, 37.586622 ], [ -121.741219, 37.586486 ], [ -121.740189, 37.587167 ], [ -121.739330, 37.587167 ], [ -121.738815, 37.586486 ], [ -121.737614, 37.585670 ], [ -121.737614, 37.585126 ], [ -121.737270, 37.584854 ], [ -121.736755, 37.584854 ], [ -121.736412, 37.585126 ], [ -121.732635, 37.584854 ], [ -121.731262, 37.581589 ], [ -121.730232, 37.581045 ], [ -121.729374, 37.581045 ], [ -121.728687, 37.580773 ], [ -121.727829, 37.579957 ], [ -121.727657, 37.579004 ], [ -121.726112, 37.577780 ], [ -121.725254, 37.577372 ], [ -121.724052, 37.577372 ], [ -121.722164, 37.577780 ], [ -121.721134, 37.576964 ], [ -121.721134, 37.575467 ], [ -121.720791, 37.575331 ], [ -121.720791, 37.574379 ], [ -121.720619, 37.574107 ], [ -121.719589, 37.573698 ], [ -121.719589, 37.572202 ], [ -121.719933, 37.572066 ], [ -121.719761, 37.570977 ], [ -121.720104, 37.570569 ], [ -121.720104, 37.569345 ], [ -121.719074, 37.568936 ], [ -121.718903, 37.568528 ], [ -121.717873, 37.567712 ], [ -121.716499, 37.567032 ], [ -121.715641, 37.566895 ], [ -121.715298, 37.566623 ], [ -121.715126, 37.565943 ], [ -121.713753, 37.564582 ], [ -121.711521, 37.564991 ], [ -121.711521, 37.564582 ], [ -121.711178, 37.564310 ], [ -121.711521, 37.563902 ], [ -121.710663, 37.563630 ], [ -121.709976, 37.563086 ], [ -121.709290, 37.561725 ], [ -121.708260, 37.560908 ], [ -121.708260, 37.560500 ], [ -121.707573, 37.559684 ], [ -121.706886, 37.559275 ], [ -121.705170, 37.559003 ], [ -121.704826, 37.558595 ], [ -121.703968, 37.558595 ], [ -121.701736, 37.557370 ], [ -121.700878, 37.556282 ], [ -121.700706, 37.555601 ], [ -121.700878, 37.554376 ], [ -121.700363, 37.553696 ], [ -121.700878, 37.553424 ], [ -121.700878, 37.553015 ], [ -121.699848, 37.553015 ], [ -121.699677, 37.552607 ], [ -121.698132, 37.552471 ], [ -121.698132, 37.551655 ], [ -121.695728, 37.550157 ], [ -121.695557, 37.549341 ], [ -121.695042, 37.548660 ], [ -121.695042, 37.548116 ], [ -121.694527, 37.547844 ], [ -121.694527, 37.547436 ], [ -121.693668, 37.546483 ], [ -121.693668, 37.545258 ], [ -121.693325, 37.544986 ], [ -121.693325, 37.544169 ], [ -121.692295, 37.542808 ], [ -121.691952, 37.541175 ], [ -121.690922, 37.540222 ], [ -121.690578, 37.539405 ], [ -121.690235, 37.539405 ], [ -121.690235, 37.539133 ], [ -121.689548, 37.538724 ], [ -121.689205, 37.537636 ], [ -121.688690, 37.536955 ], [ -121.688862, 37.536274 ], [ -121.687832, 37.535730 ], [ -121.687145, 37.534096 ], [ -121.685257, 37.532327 ], [ -121.685085, 37.531102 ], [ -121.684742, 37.530693 ], [ -121.684914, 37.530285 ], [ -121.683712, 37.529876 ], [ -121.682682, 37.528923 ], [ -121.681309, 37.527017 ], [ -121.681309, 37.526473 ], [ -121.681995, 37.526337 ], [ -121.682854, 37.526745 ], [ -121.683884, 37.526609 ], [ -121.684227, 37.527154 ], [ -121.684742, 37.527154 ], [ -121.684742, 37.526609 ], [ -121.686802, 37.526609 ], [ -121.687660, 37.525112 ], [ -121.688347, 37.525112 ], [ -121.689548, 37.525520 ], [ -121.689720, 37.525792 ], [ -121.691093, 37.525928 ], [ -121.691608, 37.526337 ], [ -121.692123, 37.526201 ], [ -121.692982, 37.526745 ], [ -121.693325, 37.527698 ], [ -121.694698, 37.528787 ], [ -121.696072, 37.529468 ], [ -121.696415, 37.530012 ], [ -121.697445, 37.529876 ], [ -121.698303, 37.529468 ], [ -121.698990, 37.528787 ], [ -121.699677, 37.528515 ], [ -121.699677, 37.527970 ], [ -121.700535, 37.527290 ], [ -121.702423, 37.526881 ], [ -121.702423, 37.526473 ], [ -121.702766, 37.526201 ], [ -121.701393, 37.524839 ], [ -121.701221, 37.523069 ], [ -121.701221, 37.522116 ], [ -121.701908, 37.521163 ], [ -121.702251, 37.520074 ], [ -121.701908, 37.519257 ], [ -121.702595, 37.517623 ], [ -121.702595, 37.515172 ], [ -121.701736, 37.515036 ], [ -121.701393, 37.514628 ], [ -121.701736, 37.514219 ], [ -121.700706, 37.514219 ], [ -121.700706, 37.513811 ], [ -121.700363, 37.513675 ], [ -121.700535, 37.512994 ], [ -121.698475, 37.512177 ], [ -121.696243, 37.510134 ], [ -121.695557, 37.509998 ], [ -121.695042, 37.509181 ], [ -121.694527, 37.509181 ], [ -121.692638, 37.508228 ], [ -121.692295, 37.508228 ], [ -121.691952, 37.508773 ], [ -121.690750, 37.509045 ], [ -121.689377, 37.508092 ], [ -121.688175, 37.508228 ], [ -121.686974, 37.507819 ], [ -121.686802, 37.507002 ], [ -121.687489, 37.505913 ], [ -121.688175, 37.505368 ], [ -121.688519, 37.504279 ], [ -121.690235, 37.503598 ], [ -121.690578, 37.502236 ], [ -121.690922, 37.503053 ], [ -121.691265, 37.502645 ], [ -121.691265, 37.501691 ], [ -121.689377, 37.500329 ], [ -121.689205, 37.498695 ], [ -121.688175, 37.497197 ], [ -121.688690, 37.496380 ], [ -121.688690, 37.495835 ], [ -121.688004, 37.494746 ], [ -121.688004, 37.493928 ], [ -121.688519, 37.493928 ], [ -121.688004, 37.493520 ], [ -121.687832, 37.492839 ], [ -121.687317, 37.492294 ], [ -121.686974, 37.492566 ], [ -121.685085, 37.491885 ], [ -121.684227, 37.492022 ], [ -121.682854, 37.490523 ], [ -121.681309, 37.489842 ], [ -121.678905, 37.490115 ], [ -121.678047, 37.489570 ], [ -121.676846, 37.489706 ], [ -121.675129, 37.489025 ], [ -121.672726, 37.487527 ], [ -121.671867, 37.486710 ], [ -121.671524, 37.485892 ], [ -121.671352, 37.483849 ], [ -121.670494, 37.482759 ], [ -121.691093, 37.482895 ], [ -121.714268, 37.483713 ], [ -121.734695, 37.483985 ], [ -121.774349, 37.484121 ], [ -121.786366, 37.484394 ], [ -121.793919, 37.484121 ], [ -121.831512, 37.484258 ], [ -121.855888, 37.484666 ], [ -121.865330, 37.484666 ], [ -121.867905, 37.483168 ], [ -121.882496, 37.493656 ], [ -121.884212, 37.499512 ], [ -121.882839, 37.501691 ], [ -121.882839, 37.502236 ], [ -121.884384, 37.508092 ], [ -121.885071, 37.512041 ], [ -121.884899, 37.513811 ], [ -121.883698, 37.517215 ], [ -121.879406, 37.526337 ], [ -121.880779, 37.528379 ], [ -121.886959, 37.535730 ], [ -121.887646, 37.544169 ], [ -121.891422, 37.549749 ], [ -121.901207, 37.545938 ], [ -121.905327, 37.549205 ], [ -121.906528, 37.549205 ], [ -121.906528, 37.549477 ], [ -121.907215, 37.549341 ], [ -121.908245, 37.551791 ], [ -121.909790, 37.554376 ], [ -121.915798, 37.555465 ], [ -121.915970, 37.560908 ], [ -121.918030, 37.560636 ], [ -121.918030, 37.561317 ], [ -121.920090, 37.561044 ], [ -121.919918, 37.560228 ], [ -121.923008, 37.559684 ], [ -121.923866, 37.557506 ], [ -121.924896, 37.557370 ], [ -121.923695, 37.559956 ], [ -121.919231, 37.561589 ], [ -121.919060, 37.565943 ], [ -121.919575, 37.567712 ], [ -121.923180, 37.568256 ], [ -121.923523, 37.569753 ], [ -121.925240, 37.571249 ], [ -121.932278, 37.573426 ], [ -121.932793, 37.574107 ], [ -121.932449, 37.574923 ], [ -121.933308, 37.576147 ], [ -121.932449, 37.576420 ], [ -121.931248, 37.576147 ], [ -121.930046, 37.577644 ], [ -121.929874, 37.578868 ], [ -121.927643, 37.579685 ], [ -121.928673, 37.580773 ], [ -121.927128, 37.581997 ], [ -121.930046, 37.584854 ], [ -121.929188, 37.585806 ], [ -121.930561, 37.585942 ], [ -121.932793, 37.591927 ], [ -121.931591, 37.592880 ], [ -121.930389, 37.595872 ], [ -121.928158, 37.597096 ], [ -121.927128, 37.598320 ], [ -121.926270, 37.598864 ], [ -121.924381, 37.599136 ], [ -121.921806, 37.598456 ], [ -121.921120, 37.598048 ], [ -121.920776, 37.597368 ], [ -121.917515, 37.595056 ], [ -121.914253, 37.593832 ], [ -121.911850, 37.593696 ], [ -121.905842, 37.595736 ], [ -121.903782, 37.595736 ], [ -121.897087, 37.594104 ], [ -121.890221, 37.593560 ], [ -121.886787, 37.592608 ], [ -121.883526, 37.592744 ], [ -121.882324, 37.593016 ], [ -121.874943, 37.589751 ], [ -121.870823, 37.588935 ], [ -121.870136, 37.590295 ], [ -121.870136, 37.590839 ], [ -121.871853, 37.592335 ], [ -121.872368, 37.595464 ], [ -121.872883, 37.596008 ], [ -121.873398, 37.597504 ], [ -121.873226, 37.599408 ], [ -121.871681, 37.602536 ], [ -121.871853, 37.604304 ], [ -121.873569, 37.607976 ], [ -121.875286, 37.612736 ], [ -121.879578, 37.621302 ], [ -121.880093, 37.624021 ], [ -121.880093, 37.627284 ], [ -121.880779, 37.629731 ], [ -121.883526, 37.633538 ], [ -121.884212, 37.635441 ], [ -121.883869, 37.638704 ], [ -121.883869, 37.639519 ], [ -121.884212, 37.640199 ], [ -121.882496, 37.641150 ], [ -121.881809, 37.641966 ], [ -121.881466, 37.647403 ], [ -121.880608, 37.649578 ], [ -121.879921, 37.654335 ], [ -121.879234, 37.655422 ], [ -121.877518, 37.656373 ], [ -121.877003, 37.655830 ], [ -121.873913, 37.654742 ], [ -121.872883, 37.653927 ], [ -121.868935, 37.652296 ], [ -121.867046, 37.652296 ], [ -121.865158, 37.651752 ], [ -121.864471, 37.651888 ], [ -121.863785, 37.652160 ], [ -121.862755, 37.653383 ], [ -121.860523, 37.654335 ], [ -121.860008, 37.654878 ], [ -121.859150, 37.654335 ], [ -121.857605, 37.654063 ], [ -121.855888, 37.652432 ], [ -121.854858, 37.652296 ], [ -121.853657, 37.652568 ], [ -121.853657, 37.653519 ], [ -121.852112, 37.653519 ], [ -121.851082, 37.654878 ], [ -121.851425, 37.656101 ], [ -121.851254, 37.657189 ], [ -121.847992, 37.657189 ], [ -121.844387, 37.656781 ], [ -121.843872, 37.657596 ], [ -121.843185, 37.658004 ], [ -121.844902, 37.658548 ], [ -121.844730, 37.658955 ], [ -121.845245, 37.659771 ], [ -121.846275, 37.660450 ], [ -121.845417, 37.661130 ], [ -121.845074, 37.661809 ], [ -121.845074, 37.662624 ], [ -121.845760, 37.663576 ], [ -121.845760, 37.664934 ], [ -121.839066, 37.664799 ] ] ], [ [ [ -121.839066, 37.664799 ], [ -121.838722, 37.664799 ], [ -121.838036, 37.664527 ], [ -121.839066, 37.664799 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450701", "GEOID10": "06001450701", "NAME10": "4507.01", "NAMELSAD10": "Census Tract 4507.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 266251308, "AWATER10": 2844031, "INTPTLAT10": "+37.5511338", "INTPTLON10": "-121.8054596" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.839066, 37.664799 ], [ -121.834946, 37.662624 ], [ -121.831169, 37.659771 ], [ -121.826878, 37.655558 ], [ -121.814346, 37.655558 ], [ -121.805763, 37.652296 ], [ -121.805592, 37.648898 ], [ -121.804733, 37.647267 ], [ -121.799927, 37.642918 ], [ -121.798897, 37.639791 ], [ -121.799068, 37.636801 ], [ -121.800785, 37.635849 ], [ -121.801815, 37.634626 ], [ -121.801987, 37.630411 ], [ -121.802330, 37.629596 ], [ -121.803188, 37.628644 ], [ -121.796665, 37.626605 ], [ -121.796322, 37.626333 ], [ -121.786022, 37.626061 ], [ -121.785336, 37.624429 ], [ -121.785164, 37.623206 ], [ -121.784134, 37.622118 ], [ -121.783619, 37.621166 ], [ -121.782761, 37.620622 ], [ -121.781044, 37.618039 ], [ -121.780701, 37.617903 ], [ -121.780014, 37.616951 ], [ -121.779671, 37.615455 ], [ -121.779842, 37.614367 ], [ -121.779327, 37.612736 ], [ -121.777954, 37.610560 ], [ -121.773491, 37.607976 ], [ -121.772461, 37.607024 ], [ -121.771259, 37.606480 ], [ -121.769199, 37.606208 ], [ -121.768513, 37.605664 ], [ -121.766968, 37.604984 ], [ -121.765594, 37.604848 ], [ -121.764908, 37.604440 ], [ -121.761990, 37.603760 ], [ -121.760445, 37.603760 ], [ -121.760101, 37.603352 ], [ -121.759243, 37.603488 ], [ -121.757526, 37.602536 ], [ -121.751347, 37.601312 ], [ -121.751862, 37.601040 ], [ -121.753578, 37.601040 ], [ -121.755123, 37.600768 ], [ -121.755981, 37.600904 ], [ -121.756668, 37.600632 ], [ -121.756668, 37.600360 ], [ -121.754608, 37.599136 ], [ -121.752377, 37.598592 ], [ -121.751862, 37.598184 ], [ -121.751690, 37.597368 ], [ -121.750832, 37.596552 ], [ -121.750660, 37.596008 ], [ -121.748600, 37.594648 ], [ -121.748772, 37.593968 ], [ -121.749287, 37.593560 ], [ -121.749287, 37.592199 ], [ -121.750145, 37.591791 ], [ -121.750145, 37.591111 ], [ -121.749630, 37.591111 ], [ -121.748943, 37.590431 ], [ -121.746712, 37.590567 ], [ -121.746025, 37.589615 ], [ -121.745510, 37.589615 ], [ -121.744823, 37.588935 ], [ -121.744308, 37.588935 ], [ -121.742764, 37.588119 ], [ -121.742420, 37.587711 ], [ -121.742420, 37.586622 ], [ -121.741219, 37.586486 ], [ -121.740189, 37.587167 ], [ -121.739330, 37.587167 ], [ -121.738815, 37.586486 ], [ -121.737614, 37.585670 ], [ -121.737614, 37.585126 ], [ -121.737270, 37.584854 ], [ -121.736755, 37.584854 ], [ -121.736412, 37.585126 ], [ -121.732635, 37.584854 ], [ -121.731262, 37.581589 ], [ -121.730232, 37.581045 ], [ -121.729374, 37.581045 ], [ -121.728687, 37.580773 ], [ -121.727829, 37.579957 ], [ -121.727657, 37.579004 ], [ -121.726112, 37.577780 ], [ -121.725254, 37.577372 ], [ -121.724052, 37.577372 ], [ -121.722164, 37.577780 ], [ -121.721134, 37.576964 ], [ -121.721134, 37.575467 ], [ -121.720791, 37.575331 ], [ -121.720791, 37.574379 ], [ -121.720619, 37.574107 ], [ -121.719589, 37.573698 ], [ -121.719589, 37.572202 ], [ -121.719933, 37.572066 ], [ -121.719761, 37.570977 ], [ -121.720104, 37.570569 ], [ -121.720104, 37.569345 ], [ -121.719074, 37.568936 ], [ -121.718903, 37.568528 ], [ -121.717873, 37.567712 ], [ -121.716499, 37.567032 ], [ -121.715641, 37.566895 ], [ -121.715298, 37.566623 ], [ -121.715126, 37.565943 ], [ -121.713753, 37.564582 ], [ -121.711521, 37.564991 ], [ -121.711521, 37.564582 ], [ -121.711178, 37.564310 ], [ -121.711521, 37.563902 ], [ -121.710663, 37.563630 ], [ -121.709976, 37.563086 ], [ -121.709290, 37.561725 ], [ -121.708260, 37.560908 ], [ -121.708260, 37.560500 ], [ -121.707573, 37.559684 ], [ -121.706886, 37.559275 ], [ -121.705170, 37.559003 ], [ -121.704826, 37.558595 ], [ -121.703968, 37.558595 ], [ -121.701736, 37.557370 ], [ -121.700878, 37.556282 ], [ -121.700706, 37.555601 ], [ -121.700878, 37.554376 ], [ -121.700363, 37.553696 ], [ -121.700878, 37.553424 ], [ -121.700878, 37.553015 ], [ -121.699848, 37.553015 ], [ -121.699677, 37.552607 ], [ -121.698132, 37.552471 ], [ -121.698132, 37.551655 ], [ -121.695728, 37.550157 ], [ -121.695557, 37.549341 ], [ -121.695042, 37.548660 ], [ -121.695042, 37.548116 ], [ -121.694527, 37.547844 ], [ -121.694527, 37.547436 ], [ -121.693668, 37.546483 ], [ -121.693668, 37.545258 ], [ -121.693325, 37.544986 ], [ -121.693325, 37.544169 ], [ -121.692295, 37.542808 ], [ -121.691952, 37.541175 ], [ -121.690922, 37.540222 ], [ -121.690578, 37.539405 ], [ -121.690235, 37.539405 ], [ -121.690235, 37.539133 ], [ -121.689548, 37.538724 ], [ -121.689205, 37.537636 ], [ -121.688690, 37.536955 ], [ -121.688862, 37.536274 ], [ -121.687832, 37.535730 ], [ -121.687145, 37.534096 ], [ -121.685257, 37.532327 ], [ -121.685085, 37.531102 ], [ -121.684742, 37.530693 ], [ -121.684914, 37.530285 ], [ -121.683712, 37.529876 ], [ -121.682682, 37.528923 ], [ -121.681309, 37.527017 ], [ -121.681309, 37.526473 ], [ -121.681995, 37.526337 ], [ -121.682854, 37.526745 ], [ -121.683884, 37.526609 ], [ -121.684227, 37.527154 ], [ -121.684742, 37.527154 ], [ -121.684742, 37.526609 ], [ -121.686802, 37.526609 ], [ -121.687660, 37.525112 ], [ -121.688347, 37.525112 ], [ -121.689548, 37.525520 ], [ -121.689720, 37.525792 ], [ -121.691093, 37.525928 ], [ -121.691608, 37.526337 ], [ -121.692123, 37.526201 ], [ -121.692982, 37.526745 ], [ -121.693325, 37.527698 ], [ -121.694698, 37.528787 ], [ -121.696072, 37.529468 ], [ -121.696415, 37.530012 ], [ -121.697445, 37.529876 ], [ -121.698303, 37.529468 ], [ -121.698990, 37.528787 ], [ -121.699677, 37.528515 ], [ -121.699677, 37.527970 ], [ -121.700535, 37.527290 ], [ -121.702423, 37.526881 ], [ -121.702423, 37.526473 ], [ -121.702766, 37.526201 ], [ -121.701393, 37.524839 ], [ -121.701221, 37.523069 ], [ -121.701221, 37.522116 ], [ -121.701908, 37.521163 ], [ -121.702251, 37.520074 ], [ -121.701908, 37.519257 ], [ -121.702595, 37.517623 ], [ -121.702595, 37.515172 ], [ -121.701736, 37.515036 ], [ -121.701393, 37.514628 ], [ -121.701736, 37.514219 ], [ -121.700706, 37.514219 ], [ -121.700706, 37.513811 ], [ -121.700363, 37.513675 ], [ -121.700535, 37.512994 ], [ -121.698475, 37.512177 ], [ -121.696243, 37.510134 ], [ -121.695557, 37.509998 ], [ -121.695042, 37.509181 ], [ -121.694527, 37.509181 ], [ -121.692638, 37.508228 ], [ -121.692295, 37.508228 ], [ -121.691952, 37.508773 ], [ -121.690750, 37.509045 ], [ -121.689377, 37.508092 ], [ -121.688175, 37.508228 ], [ -121.686974, 37.507819 ], [ -121.686802, 37.507002 ], [ -121.687489, 37.505913 ], [ -121.688175, 37.505368 ], [ -121.688519, 37.504279 ], [ -121.690235, 37.503598 ], [ -121.690578, 37.502236 ], [ -121.690922, 37.503053 ], [ -121.691265, 37.502645 ], [ -121.691265, 37.501691 ], [ -121.689377, 37.500329 ], [ -121.689205, 37.498695 ], [ -121.688175, 37.497197 ], [ -121.688690, 37.496380 ], [ -121.688690, 37.495835 ], [ -121.688004, 37.494746 ], [ -121.688004, 37.493928 ], [ -121.688519, 37.493928 ], [ -121.688004, 37.493520 ], [ -121.687832, 37.492839 ], [ -121.687317, 37.492294 ], [ -121.686974, 37.492566 ], [ -121.685085, 37.491885 ], [ -121.684227, 37.492022 ], [ -121.682854, 37.490523 ], [ -121.681309, 37.489842 ], [ -121.678905, 37.490115 ], [ -121.678047, 37.489570 ], [ -121.676846, 37.489706 ], [ -121.675129, 37.489025 ], [ -121.672726, 37.487527 ], [ -121.671867, 37.486710 ], [ -121.671524, 37.485892 ], [ -121.671352, 37.483849 ], [ -121.670494, 37.482759 ], [ -121.691093, 37.482895 ], [ -121.714268, 37.483713 ], [ -121.734695, 37.483985 ], [ -121.774349, 37.484121 ], [ -121.786366, 37.484394 ], [ -121.793919, 37.484121 ], [ -121.831512, 37.484258 ], [ -121.855888, 37.484666 ], [ -121.865330, 37.484666 ], [ -121.867905, 37.483168 ], [ -121.882496, 37.493656 ], [ -121.884212, 37.499512 ], [ -121.882839, 37.501691 ], [ -121.882839, 37.502236 ], [ -121.884384, 37.508092 ], [ -121.885071, 37.512041 ], [ -121.884899, 37.513811 ], [ -121.883698, 37.517215 ], [ -121.879406, 37.526337 ], [ -121.880779, 37.528379 ], [ -121.886959, 37.535730 ], [ -121.887646, 37.544169 ], [ -121.891422, 37.549749 ], [ -121.901207, 37.545938 ], [ -121.905327, 37.549205 ], [ -121.906528, 37.549205 ], [ -121.906528, 37.549477 ], [ -121.907215, 37.549341 ], [ -121.908245, 37.551791 ], [ -121.909790, 37.554376 ], [ -121.915798, 37.555465 ], [ -121.915970, 37.560908 ], [ -121.918030, 37.560636 ], [ -121.918030, 37.561317 ], [ -121.920090, 37.561044 ], [ -121.919918, 37.560228 ], [ -121.923008, 37.559684 ], [ -121.923866, 37.557506 ], [ -121.924896, 37.557370 ], [ -121.923695, 37.559956 ], [ -121.919231, 37.561589 ], [ -121.919060, 37.565943 ], [ -121.919575, 37.567712 ], [ -121.923180, 37.568256 ], [ -121.923523, 37.569753 ], [ -121.925240, 37.571249 ], [ -121.932278, 37.573426 ], [ -121.932793, 37.574107 ], [ -121.932449, 37.574923 ], [ -121.933308, 37.576147 ], [ -121.932449, 37.576420 ], [ -121.931248, 37.576147 ], [ -121.930046, 37.577644 ], [ -121.929874, 37.578868 ], [ -121.927643, 37.579685 ], [ -121.928673, 37.580773 ], [ -121.927128, 37.581997 ], [ -121.930046, 37.584854 ], [ -121.929188, 37.585806 ], [ -121.930561, 37.585942 ], [ -121.932793, 37.591927 ], [ -121.931591, 37.592880 ], [ -121.930389, 37.595872 ], [ -121.928158, 37.597096 ], [ -121.927128, 37.598320 ], [ -121.926270, 37.598864 ], [ -121.924381, 37.599136 ], [ -121.921806, 37.598456 ], [ -121.921120, 37.598048 ], [ -121.920776, 37.597368 ], [ -121.917515, 37.595056 ], [ -121.914253, 37.593832 ], [ -121.911850, 37.593696 ], [ -121.905842, 37.595736 ], [ -121.903782, 37.595736 ], [ -121.897087, 37.594104 ], [ -121.890221, 37.593560 ], [ -121.886787, 37.592608 ], [ -121.883526, 37.592744 ], [ -121.882324, 37.593016 ], [ -121.874943, 37.589751 ], [ -121.870823, 37.588935 ], [ -121.870136, 37.590295 ], [ -121.870136, 37.590839 ], [ -121.871853, 37.592335 ], [ -121.872368, 37.595464 ], [ -121.872883, 37.596008 ], [ -121.873398, 37.597504 ], [ -121.873226, 37.599408 ], [ -121.871681, 37.602536 ], [ -121.871853, 37.604304 ], [ -121.873569, 37.607976 ], [ -121.875286, 37.612736 ], [ -121.879578, 37.621302 ], [ -121.880093, 37.624021 ], [ -121.880093, 37.627284 ], [ -121.880779, 37.629731 ], [ -121.883526, 37.633538 ], [ -121.884212, 37.635441 ], [ -121.883869, 37.638704 ], [ -121.883869, 37.639519 ], [ -121.884212, 37.640199 ], [ -121.882496, 37.641150 ], [ -121.881809, 37.641966 ], [ -121.881466, 37.647403 ], [ -121.880608, 37.649578 ], [ -121.879921, 37.654335 ], [ -121.879234, 37.655422 ], [ -121.877518, 37.656373 ], [ -121.877003, 37.655830 ], [ -121.873913, 37.654742 ], [ -121.872883, 37.653927 ], [ -121.868935, 37.652296 ], [ -121.867046, 37.652296 ], [ -121.865158, 37.651752 ], [ -121.864471, 37.651888 ], [ -121.863785, 37.652160 ], [ -121.862755, 37.653383 ], [ -121.860523, 37.654335 ], [ -121.860008, 37.654878 ], [ -121.859150, 37.654335 ], [ -121.857605, 37.654063 ], [ -121.855888, 37.652432 ], [ -121.854858, 37.652296 ], [ -121.853657, 37.652568 ], [ -121.853657, 37.653519 ], [ -121.852112, 37.653519 ], [ -121.851082, 37.654878 ], [ -121.851425, 37.656101 ], [ -121.851254, 37.657189 ], [ -121.847992, 37.657189 ], [ -121.844387, 37.656781 ], [ -121.843872, 37.657596 ], [ -121.843185, 37.658004 ], [ -121.844902, 37.658548 ], [ -121.844730, 37.658955 ], [ -121.845245, 37.659771 ], [ -121.846275, 37.660450 ], [ -121.845417, 37.661130 ], [ -121.845074, 37.661809 ], [ -121.845074, 37.662624 ], [ -121.845760, 37.663576 ], [ -121.845760, 37.664934 ], [ -121.839066, 37.664799 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451101", "GEOID10": "06001451101", "NAME10": "4511.01", "NAMELSAD10": "Census Tract 4511.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 552877327, "AWATER10": 5613633, "INTPTLAT10": "+37.6396925", "INTPTLON10": "-121.6633595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.626892, 37.729453 ], [ -121.626892, 37.482759 ], [ -121.670494, 37.482759 ], [ -121.671352, 37.483849 ], [ -121.671352, 37.484939 ], [ -121.671867, 37.486710 ], [ -121.672726, 37.487527 ], [ -121.675129, 37.489025 ], [ -121.676846, 37.489706 ], [ -121.678047, 37.489570 ], [ -121.678905, 37.490115 ], [ -121.681309, 37.489842 ], [ -121.682854, 37.490523 ], [ -121.684227, 37.492022 ], [ -121.685085, 37.491885 ], [ -121.686974, 37.492566 ], [ -121.687317, 37.492294 ], [ -121.687832, 37.492839 ], [ -121.688004, 37.493520 ], [ -121.688519, 37.493928 ], [ -121.688004, 37.493928 ], [ -121.688004, 37.494746 ], [ -121.688690, 37.495835 ], [ -121.688690, 37.496380 ], [ -121.688175, 37.497197 ], [ -121.689205, 37.498695 ], [ -121.689377, 37.500329 ], [ -121.691265, 37.501691 ], [ -121.691265, 37.502645 ], [ -121.690922, 37.503053 ], [ -121.690578, 37.502236 ], [ -121.690235, 37.503598 ], [ -121.688519, 37.504279 ], [ -121.688175, 37.505368 ], [ -121.687489, 37.505913 ], [ -121.686802, 37.507002 ], [ -121.686802, 37.507547 ], [ -121.687145, 37.507956 ], [ -121.688175, 37.508228 ], [ -121.689377, 37.508092 ], [ -121.690750, 37.509045 ], [ -121.691952, 37.508773 ], [ -121.692295, 37.508228 ], [ -121.692638, 37.508228 ], [ -121.693497, 37.508500 ], [ -121.694183, 37.509045 ], [ -121.695042, 37.509181 ], [ -121.695557, 37.509998 ], [ -121.696243, 37.510134 ], [ -121.698475, 37.512177 ], [ -121.700535, 37.512994 ], [ -121.700363, 37.513675 ], [ -121.700706, 37.513811 ], [ -121.700706, 37.514219 ], [ -121.701736, 37.514219 ], [ -121.701393, 37.514492 ], [ -121.701736, 37.515036 ], [ -121.702595, 37.515172 ], [ -121.702595, 37.517623 ], [ -121.701908, 37.519257 ], [ -121.702251, 37.520074 ], [ -121.701908, 37.521163 ], [ -121.701221, 37.522116 ], [ -121.701221, 37.523069 ], [ -121.701393, 37.524839 ], [ -121.702766, 37.526201 ], [ -121.702423, 37.526473 ], [ -121.702423, 37.526881 ], [ -121.700535, 37.527290 ], [ -121.699677, 37.527970 ], [ -121.699505, 37.528651 ], [ -121.698990, 37.528787 ], [ -121.698303, 37.529468 ], [ -121.696930, 37.530012 ], [ -121.696415, 37.530012 ], [ -121.696072, 37.529468 ], [ -121.694698, 37.528787 ], [ -121.693325, 37.527698 ], [ -121.692982, 37.526745 ], [ -121.692123, 37.526201 ], [ -121.691608, 37.526337 ], [ -121.691093, 37.525928 ], [ -121.689720, 37.525792 ], [ -121.689548, 37.525520 ], [ -121.688347, 37.525112 ], [ -121.687660, 37.525112 ], [ -121.686974, 37.526473 ], [ -121.686459, 37.526745 ], [ -121.684742, 37.526609 ], [ -121.684742, 37.527154 ], [ -121.684227, 37.527154 ], [ -121.683884, 37.526609 ], [ -121.682854, 37.526745 ], [ -121.681652, 37.526337 ], [ -121.681309, 37.526473 ], [ -121.681309, 37.527017 ], [ -121.683540, 37.529740 ], [ -121.684914, 37.530285 ], [ -121.684742, 37.530693 ], [ -121.685085, 37.531102 ], [ -121.685257, 37.532327 ], [ -121.687145, 37.534096 ], [ -121.687832, 37.535730 ], [ -121.688862, 37.536274 ], [ -121.688690, 37.536955 ], [ -121.689205, 37.537636 ], [ -121.689548, 37.538724 ], [ -121.690235, 37.539133 ], [ -121.690235, 37.539405 ], [ -121.690578, 37.539405 ], [ -121.690922, 37.540222 ], [ -121.691952, 37.541175 ], [ -121.692295, 37.542808 ], [ -121.693325, 37.544169 ], [ -121.693325, 37.544986 ], [ -121.693668, 37.545258 ], [ -121.693668, 37.546483 ], [ -121.694355, 37.547163 ], [ -121.694527, 37.547844 ], [ -121.695042, 37.548116 ], [ -121.695042, 37.548660 ], [ -121.695557, 37.549341 ], [ -121.695728, 37.550157 ], [ -121.698132, 37.551655 ], [ -121.698132, 37.552471 ], [ -121.699677, 37.552607 ], [ -121.699848, 37.553015 ], [ -121.700878, 37.553015 ], [ -121.700878, 37.553424 ], [ -121.700363, 37.553696 ], [ -121.700878, 37.554376 ], [ -121.700706, 37.555601 ], [ -121.700878, 37.556282 ], [ -121.701736, 37.557370 ], [ -121.703281, 37.558323 ], [ -121.703968, 37.558595 ], [ -121.704826, 37.558595 ], [ -121.705170, 37.559003 ], [ -121.706886, 37.559275 ], [ -121.707573, 37.559684 ], [ -121.708260, 37.560500 ], [ -121.708260, 37.560908 ], [ -121.709290, 37.561725 ], [ -121.709976, 37.563086 ], [ -121.710663, 37.563630 ], [ -121.711521, 37.563902 ], [ -121.711178, 37.564174 ], [ -121.711521, 37.564991 ], [ -121.713753, 37.564582 ], [ -121.715126, 37.565943 ], [ -121.715298, 37.566623 ], [ -121.715641, 37.566895 ], [ -121.716499, 37.567032 ], [ -121.717873, 37.567712 ], [ -121.718903, 37.568528 ], [ -121.719074, 37.568936 ], [ -121.720104, 37.569345 ], [ -121.720104, 37.570569 ], [ -121.719761, 37.570977 ], [ -121.719933, 37.572066 ], [ -121.719589, 37.572202 ], [ -121.719589, 37.573698 ], [ -121.720619, 37.574107 ], [ -121.720791, 37.575331 ], [ -121.721134, 37.575467 ], [ -121.721134, 37.576964 ], [ -121.722164, 37.577780 ], [ -121.724052, 37.577372 ], [ -121.725254, 37.577372 ], [ -121.726112, 37.577780 ], [ -121.727657, 37.579004 ], [ -121.727829, 37.579957 ], [ -121.728687, 37.580773 ], [ -121.729374, 37.581045 ], [ -121.730232, 37.581045 ], [ -121.731262, 37.581589 ], [ -121.732635, 37.584854 ], [ -121.735039, 37.585126 ], [ -121.736412, 37.585126 ], [ -121.736755, 37.584854 ], [ -121.737270, 37.584854 ], [ -121.737614, 37.585126 ], [ -121.737614, 37.585670 ], [ -121.738815, 37.586486 ], [ -121.739330, 37.587167 ], [ -121.740189, 37.587167 ], [ -121.741219, 37.586486 ], [ -121.742420, 37.586622 ], [ -121.742420, 37.587711 ], [ -121.742764, 37.588119 ], [ -121.744308, 37.588935 ], [ -121.744823, 37.588935 ], [ -121.745510, 37.589615 ], [ -121.746025, 37.589615 ], [ -121.746712, 37.590567 ], [ -121.748943, 37.590431 ], [ -121.749630, 37.591111 ], [ -121.750145, 37.591111 ], [ -121.750145, 37.591791 ], [ -121.749287, 37.592199 ], [ -121.749287, 37.593560 ], [ -121.748772, 37.593968 ], [ -121.748600, 37.594648 ], [ -121.750660, 37.596008 ], [ -121.750832, 37.596552 ], [ -121.751690, 37.597368 ], [ -121.751862, 37.598184 ], [ -121.752377, 37.598592 ], [ -121.754608, 37.599136 ], [ -121.756668, 37.600360 ], [ -121.756668, 37.600632 ], [ -121.755981, 37.600904 ], [ -121.755123, 37.600768 ], [ -121.753578, 37.601040 ], [ -121.751862, 37.601040 ], [ -121.751347, 37.601312 ], [ -121.757526, 37.602536 ], [ -121.759243, 37.603488 ], [ -121.760101, 37.603352 ], [ -121.760445, 37.603760 ], [ -121.761990, 37.603760 ], [ -121.764908, 37.604440 ], [ -121.765594, 37.604848 ], [ -121.766968, 37.604984 ], [ -121.768513, 37.605664 ], [ -121.769199, 37.606208 ], [ -121.771259, 37.606480 ], [ -121.772461, 37.607024 ], [ -121.773491, 37.607976 ], [ -121.777954, 37.610560 ], [ -121.779327, 37.612736 ], [ -121.779842, 37.614367 ], [ -121.779671, 37.615455 ], [ -121.780014, 37.616951 ], [ -121.780701, 37.617903 ], [ -121.781044, 37.618039 ], [ -121.782761, 37.620622 ], [ -121.783619, 37.621166 ], [ -121.784134, 37.622118 ], [ -121.785164, 37.623206 ], [ -121.785336, 37.624429 ], [ -121.786022, 37.626061 ], [ -121.796322, 37.626333 ], [ -121.796665, 37.626605 ], [ -121.803188, 37.628644 ], [ -121.802158, 37.629867 ], [ -121.801987, 37.634218 ], [ -121.800957, 37.635713 ], [ -121.797352, 37.637752 ], [ -121.796322, 37.639791 ], [ -121.795464, 37.640471 ], [ -121.788769, 37.645092 ], [ -121.783619, 37.647947 ], [ -121.783104, 37.648762 ], [ -121.782932, 37.645228 ], [ -121.768169, 37.645228 ], [ -121.768169, 37.656645 ], [ -121.749802, 37.656645 ], [ -121.749802, 37.670098 ], [ -121.742249, 37.665206 ], [ -121.719074, 37.665070 ], [ -121.718731, 37.694552 ], [ -121.718216, 37.696454 ], [ -121.718216, 37.698627 ], [ -121.719246, 37.700936 ], [ -121.723194, 37.706776 ], [ -121.723881, 37.709220 ], [ -121.724396, 37.710171 ], [ -121.724396, 37.727009 ], [ -121.724224, 37.729453 ], [ -121.626892, 37.729453 ] ] ] } } ] } diff --git a/tests/attribute-type/out/-z0_-Tinttype@int_-Tfloattype@float_-Tbooltype@bool_-Tstringtype@string.json b/tests/attribute-type/out/-z0_-Tinttype@int_-Tfloattype@float_-Tbooltype@bool_-Tstringtype@string.json index eb9dc9d1c..18e7595b6 100644 --- a/tests/attribute-type/out/-z0_-Tinttype@int_-Tfloattype@float_-Tbooltype@bool_-Tstringtype@string.json +++ b/tests/attribute-type/out/-z0_-Tinttype@int_-Tfloattype@float_-Tbooltype@bool_-Tstringtype@string.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/attribute-type/out/-z0_-Tinttype@int_-Tfloattype@float_-Tbooltype@bool_-Tstringtype@string.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/attribute-type/out/-z0_-Tinttype@int_-Tfloattype@float_-Tbooltype@bool_-Tstringtype@string.json.check.mbtiles -z0 -Tinttype:int -Tfloattype:float -Tbooltype:bool -Tstringtype:string tests/attribute-type/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"booltype\": \"Boolean\", \"expect\": \"Mixed\", \"floattype\": \"Number\", \"inttype\": \"Number\", \"stringtype\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 39,\"geometry\": \"Point\",\"attributeCount\": 5,\"attributes\": [{\"attribute\": \"booltype\",\"count\": 2,\"type\": \"boolean\",\"values\": [false,true]},{\"attribute\": \"expect\",\"count\": 14,\"type\": \"mixed\",\"values\": [0,\"2\",\"2.5\",3,5,5.6,6,\"[2,3]\",\"false\",false,\"null\",\"something\",\"true\",true],\"min\": 0,\"max\": 6},{\"attribute\": \"floattype\",\"count\": 4,\"type\": \"number\",\"values\": [0,3,5,5.6],\"min\": 0,\"max\": 5.6},{\"attribute\": \"inttype\",\"count\": 5,\"type\": \"number\",\"values\": [0,0.000000,3.000000,5,6.000000],\"min\": 0,\"max\": 6},{\"attribute\": \"stringtype\",\"count\": 7,\"type\": \"string\",\"values\": [\"2\",\"2.5\",\"[2,3]\",\"false\",\"null\",\"something\",\"true\"]}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/border/out/-z1_--detect-shared-borders.json b/tests/border/out/-z1_--detect-shared-borders.json index a4b9660e6..142d2f150 100644 --- a/tests/border/out/-z1_--detect-shared-borders.json +++ b/tests/border/out/-z1_--detect-shared-borders.json @@ -3,6 +3,7 @@ "center": "23.009582,42.525564,1", "description": "tests/border/out/-z1_--detect-shared-borders.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/border/out/-z1_--detect-shared-borders.json.check.mbtiles -z1 --detect-shared-borders tests/border/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 1, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 8,\"geometry\": \"Polygon\",\"attributeCount\": 58,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 8,\"type\": \"string\",\"values\": [\"Alb.\",\"B.H.\",\"Cro.\",\"Kos.\",\"Mkd.\",\"Mont.\",\"Serb.\",\"Slo.\"]},{\"attribute\": \"abbrev_len\",\"count\": 2,\"type\": \"number\",\"values\": [4,5],\"min\": 4,\"max\": 5},{\"attribute\": \"adm0_a3\",\"count\": 8,\"type\": \"string\",\"values\": [\"ALB\",\"BIH\",\"HRV\",\"KOS\",\"MKD\",\"MNE\",\"SRB\",\"SVN\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 7,\"type\": \"string\",\"values\": [\"ALB\",\"BIH\",\"HRV\",\"MKD\",\"MNE\",\"SRB\",\"SVN\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 8,\"type\": \"string\",\"values\": [\"ALB\",\"BIH\",\"HRV\",\"KOS\",\"MKD\",\"MNE\",\"SRB\",\"SVN\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"admin\",\"count\": 8,\"type\": \"string\",\"values\": [\"Albania\",\"Bosnia and Herzegovina\",\"Croatia\",\"Kosovo\",\"Macedonia\",\"Montenegro\",\"Republic of Serbia\",\"Slovenia\"]},{\"attribute\": \"brk_a3\",\"count\": 8,\"type\": \"string\",\"values\": [\"ALB\",\"B57\",\"BIH\",\"HRV\",\"MKD\",\"MNE\",\"SRB\",\"SVN\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 8,\"type\": \"string\",\"values\": [\"Albania\",\"Bosnia and Herz.\",\"Croatia\",\"Kosovo\",\"Macedonia\",\"Montenegro\",\"Serbia\",\"Slovenia\"]},{\"attribute\": \"continent\",\"count\": 1,\"type\": \"string\",\"values\": [\"Europe\"]},{\"attribute\": \"economy\",\"count\": 2,\"type\": \"string\",\"values\": [\"2. Developed region: nonG7\",\"6. Developing region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 8,\"type\": \"string\",\"values\": [\"Bosnia and Herzegovina\",\"Former Yugoslav Republic of Macedonia\",\"Montenegro\",\"Republic of Albania\",\"Republic of Croatia\",\"Republic of Kosovo\",\"Republic of Serbia\",\"Republic of Slovenia\"]},{\"attribute\": \"gdp_md_est\",\"count\": 8,\"type\": \"number\",\"values\": [18780,21810,29700,5352,59340,6816,80340,82390],\"min\": 5352,\"max\": 82390},{\"attribute\": \"gdp_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 8,\"type\": \"string\",\"values\": [\"Albania\",\"Bosnia and Herzegovina\",\"Croatia\",\"Kosovo\",\"Macedonia\",\"Montenegro\",\"Republic of Serbia\",\"Slovenia\"]},{\"attribute\": \"gu_a3\",\"count\": 8,\"type\": \"string\",\"values\": [\"ALB\",\"BIH\",\"HRV\",\"KOS\",\"MKD\",\"MNE\",\"SRB\",\"SVN\"]},{\"attribute\": \"homepart\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 4,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\"]},{\"attribute\": \"iso_a2\",\"count\": 8,\"type\": \"string\",\"values\": [\"-99\",\"AL\",\"BA\",\"HR\",\"ME\",\"MK\",\"RS\",\"SI\"]},{\"attribute\": \"iso_a3\",\"count\": 8,\"type\": \"string\",\"values\": [\"-99\",\"ALB\",\"BIH\",\"HRV\",\"MKD\",\"MNE\",\"SRB\",\"SVN\"]},{\"attribute\": \"iso_n3\",\"count\": 8,\"type\": \"string\",\"values\": [\"-99\",\"008\",\"070\",\"191\",\"499\",\"688\",\"705\",\"807\"]},{\"attribute\": \"labelrank\",\"count\": 2,\"type\": \"number\",\"values\": [5,6],\"min\": 5,\"max\": 6},{\"attribute\": \"lastcensus\",\"count\": 5,\"type\": \"number\",\"values\": [1981,1991,2001,2010,2011],\"min\": 1981,\"max\": 2011},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 6,\"type\": \"number\",\"values\": [10,22,6,7,8,9],\"min\": 6,\"max\": 22},{\"attribute\": \"mapcolor13\",\"count\": 8,\"type\": \"number\",\"values\": [1,10,11,12,2,3,5,6],\"min\": 1,\"max\": 12},{\"attribute\": \"mapcolor7\",\"count\": 5,\"type\": \"number\",\"values\": [1,2,3,4,5],\"min\": 1,\"max\": 5},{\"attribute\": \"mapcolor8\",\"count\": 4,\"type\": \"number\",\"values\": [1,2,3,4],\"min\": 1,\"max\": 4},{\"attribute\": \"mapcolor9\",\"count\": 6,\"type\": \"number\",\"values\": [1,2,3,4,5,7],\"min\": 1,\"max\": 7},{\"attribute\": \"name\",\"count\": 8,\"type\": \"string\",\"values\": [\"Albania\",\"Bosnia and Herz.\",\"Croatia\",\"Kosovo\",\"Macedonia\",\"Montenegro\",\"Serbia\",\"Slovenia\"]},{\"attribute\": \"name_len\",\"count\": 6,\"type\": \"number\",\"values\": [10,16,6,7,8,9],\"min\": 6,\"max\": 16},{\"attribute\": \"name_long\",\"count\": 8,\"type\": \"string\",\"values\": [\"Albania\",\"Bosnia and Herzegovina\",\"Croatia\",\"Kosovo\",\"Macedonia\",\"Montenegro\",\"Serbia\",\"Slovenia\"]},{\"attribute\": \"name_sort\",\"count\": 8,\"type\": \"string\",\"values\": [\"Albania\",\"Bosnia and Herzegovina\",\"Croatia\",\"Kosovo\",\"Macedonia, FYR\",\"Montenegro\",\"Serbia\",\"Slovenia\"]},{\"attribute\": \"note_brk\",\"count\": 1,\"type\": \"string\",\"values\": [\"Self admin.; Claimed by Serbia\"]},{\"attribute\": \"pop_est\",\"count\": 8,\"type\": \"number\",\"values\": [1804838,2005692,2066718,3639453,4489409,4613414,672180,7379339],\"min\": 672180,\"max\": 7379339},{\"attribute\": \"pop_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"postal\",\"count\": 8,\"type\": \"string\",\"values\": [\"AL\",\"BiH\",\"HR\",\"KO\",\"ME\",\"MK\",\"RS\",\"SLO\"]},{\"attribute\": \"region_un\",\"count\": 1,\"type\": \"string\",\"values\": [\"Europe\"]},{\"attribute\": \"region_wb\",\"count\": 1,\"type\": \"string\",\"values\": [\"Europe & Central Asia\"]},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"sov_a3\",\"count\": 8,\"type\": \"string\",\"values\": [\"ALB\",\"BIH\",\"HRV\",\"KOS\",\"MKD\",\"MNE\",\"SRB\",\"SVN\"]},{\"attribute\": \"sovereignt\",\"count\": 8,\"type\": \"string\",\"values\": [\"Albania\",\"Bosnia and Herzegovina\",\"Croatia\",\"Kosovo\",\"Macedonia\",\"Montenegro\",\"Republic of Serbia\",\"Slovenia\"]},{\"attribute\": \"su_a3\",\"count\": 8,\"type\": \"string\",\"values\": [\"ALB\",\"BIH\",\"HRV\",\"KOS\",\"MKD\",\"MNE\",\"SRB\",\"SVN\"]},{\"attribute\": \"su_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"subregion\",\"count\": 1,\"type\": \"string\",\"values\": [\"Southern Europe\"]},{\"attribute\": \"subunit\",\"count\": 8,\"type\": \"string\",\"values\": [\"Albania\",\"Bosnia and Herzegovina\",\"Croatia\",\"Kosovo\",\"Macedonia\",\"Montenegro\",\"Republic of Serbia\",\"Slovenia\"]},{\"attribute\": \"tiny\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"type\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 8,\"type\": \"string\",\"values\": [\"-099\",\"008\",\"070\",\"191\",\"499\",\"688\",\"705\",\"807\"]},{\"attribute\": \"wb_a2\",\"count\": 8,\"type\": \"string\",\"values\": [\"AL\",\"BA\",\"HR\",\"KV\",\"ME\",\"MK\",\"SI\",\"YF\"]},{\"attribute\": \"wb_a3\",\"count\": 8,\"type\": \"string\",\"values\": [\"ALB\",\"BIH\",\"HRV\",\"KSV\",\"MKD\",\"MNE\",\"SRB\",\"SVN\"]},{\"attribute\": \"wikipedia\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "1", "minzoom": "0", @@ -12,19 +13,19 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.259766, 46.920255 ], [ 16.347656, 46.679594 ], [ 16.435547, 46.558860 ], [ 16.259766, 46.558860 ], [ 16.259766, 46.377254 ], [ 15.996094, 46.437857 ], [ 15.996094, 46.316584 ], [ 15.556641, 46.255847 ], [ 15.644531, 45.828799 ], [ 15.205078, 45.767523 ], [ 15.292969, 45.521744 ], [ 15.117188, 45.460131 ], [ 14.941406, 45.521744 ], [ 14.765625, 45.460131 ], [ 14.589844, 45.706179 ], [ 14.326172, 45.521744 ], [ 13.535156, 45.521744 ], [ 13.535156, 45.583290 ], [ 13.886719, 45.644768 ], [ 13.535156, 45.828799 ], [ 13.535156, 46.012224 ], [ 13.447266, 46.073231 ], [ 13.623047, 46.195042 ], [ 13.535156, 46.195042 ], [ 13.359375, 46.255847 ], [ 13.359375, 46.377254 ], [ 13.623047, 46.558860 ], [ 14.501953, 46.437857 ], [ 15.029297, 46.679594 ], [ 15.468750, 46.619261 ], [ 15.556641, 46.739861 ], [ 15.996094, 46.739861 ], [ 15.908203, 46.860191 ], [ 16.259766, 46.920255 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.535156, 46.195042 ], [ 13.359375, 46.255847 ], [ 13.359375, 46.377254 ], [ 13.623047, 46.558860 ], [ 14.501953, 46.437857 ], [ 15.029297, 46.679594 ], [ 15.468750, 46.619261 ], [ 15.556641, 46.739861 ], [ 15.996094, 46.739861 ], [ 15.908203, 46.860191 ], [ 16.259766, 46.920255 ], [ 16.347656, 46.679594 ], [ 16.435547, 46.558860 ], [ 16.259766, 46.558860 ], [ 16.259766, 46.377254 ], [ 15.996094, 46.437857 ], [ 15.996094, 46.316584 ], [ 15.556641, 46.255847 ], [ 15.644531, 45.828799 ], [ 15.205078, 45.767523 ], [ 15.292969, 45.521744 ], [ 15.117188, 45.460131 ], [ 14.941406, 45.521744 ], [ 14.765625, 45.460131 ], [ 14.589844, 45.706179 ], [ 14.326172, 45.521744 ], [ 13.535156, 45.521744 ], [ 13.535156, 45.583290 ], [ 13.886719, 45.644768 ], [ 13.535156, 45.828799 ], [ 13.535156, 46.012224 ], [ 13.447266, 46.073231 ], [ 13.535156, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.974609, 44.902578 ], [ 13.974609, 44.840291 ], [ 13.798828, 44.840291 ], [ 13.798828, 44.902578 ], [ 13.710938, 44.902578 ], [ 13.710938, 44.964798 ], [ 13.535156, 45.151053 ], [ 13.535156, 45.336702 ], [ 13.447266, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.706179 ], [ 14.765625, 45.460131 ], [ 14.941406, 45.521744 ], [ 15.117188, 45.460131 ], [ 15.292969, 45.521744 ], [ 15.205078, 45.767523 ], [ 15.644531, 45.828799 ], [ 15.556641, 46.255847 ], [ 15.996094, 46.316584 ], [ 15.996094, 46.437857 ], [ 16.259766, 46.377254 ], [ 16.259766, 46.558860 ], [ 16.435547, 46.558860 ], [ 16.699219, 46.437857 ], [ 16.787109, 46.437857 ], [ 16.962891, 46.195042 ], [ 17.138672, 46.134170 ], [ 17.226562, 46.012224 ], [ 17.314453, 46.012224 ], [ 18.193359, 45.767523 ], [ 18.369141, 45.767523 ], [ 18.808594, 45.890008 ], [ 18.896484, 45.583290 ], [ 19.072266, 45.583290 ], [ 18.896484, 45.398450 ], [ 19.335938, 45.274886 ], [ 18.984375, 45.151053 ], [ 19.072266, 44.964798 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.151053 ], [ 18.457031, 45.089036 ], [ 18.193359, 45.213004 ], [ 17.841797, 45.089036 ], [ 17.490234, 45.151053 ], [ 17.138672, 45.151053 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.274886 ], [ 16.259766, 45.026950 ], [ 15.996094, 45.274886 ], [ 15.732422, 45.213004 ], [ 15.644531, 44.777936 ], [ 15.996094, 44.653024 ], [ 16.259766, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.226562, 43.389082 ], [ 17.578125, 43.068888 ], [ 17.578125, 43.004647 ], [ 17.402344, 43.004647 ], [ 17.402344, 43.068888 ], [ 16.875000, 43.452919 ], [ 16.347656, 43.516689 ], [ 16.347656, 43.580391 ], [ 15.908203, 43.516689 ], [ 15.908203, 43.707594 ], [ 15.644531, 43.771094 ], [ 15.644531, 43.834527 ], [ 15.468750, 43.897892 ], [ 15.292969, 43.897892 ], [ 15.292969, 44.024422 ], [ 15.117188, 44.213710 ], [ 15.117188, 44.339565 ], [ 15.205078, 44.339565 ], [ 15.468750, 44.276671 ], [ 15.205078, 44.402392 ], [ 15.029297, 44.527843 ], [ 15.029297, 44.465151 ], [ 14.853516, 44.590467 ], [ 14.941406, 44.590467 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.589844, 45.274886 ], [ 14.501953, 45.336702 ], [ 14.238281, 45.398450 ], [ 14.238281, 45.336702 ], [ 14.238281, 45.213004 ], [ 14.150391, 45.151053 ], [ 14.150391, 45.026950 ], [ 14.062500, 45.026950 ], [ 13.974609, 44.902578 ] ], [ [ 15.205078, 44.339565 ], [ 15.205078, 44.276671 ], [ 15.292969, 44.276671 ], [ 15.205078, 44.339565 ] ] ], [ [ [ 17.578125, 42.875964 ], [ 17.666016, 42.875964 ], [ 17.666016, 42.940339 ], [ 17.753906, 42.940339 ], [ 17.841797, 42.811522 ], [ 17.753906, 42.811522 ], [ 17.578125, 42.875964 ] ] ], [ [ [ 16.611328, 43.004647 ], [ 17.138672, 42.940339 ], [ 16.611328, 42.940339 ], [ 16.611328, 43.004647 ] ] ], [ [ [ 17.314453, 43.004647 ], [ 17.402344, 43.004647 ], [ 17.402344, 42.940339 ], [ 17.314453, 43.004647 ] ] ], [ [ [ 14.238281, 45.213004 ], [ 14.414062, 45.089036 ], [ 14.414062, 45.026950 ], [ 14.501953, 44.653024 ], [ 14.326172, 44.777936 ], [ 14.238281, 45.213004 ] ] ], [ [ [ 16.259766, 43.197167 ], [ 16.259766, 43.068888 ], [ 16.083984, 43.068888 ], [ 16.083984, 43.197167 ], [ 16.259766, 43.197167 ] ] ], [ [ [ 16.523438, 43.261206 ], [ 17.138672, 43.133061 ], [ 16.347656, 43.197167 ], [ 16.435547, 43.261206 ], [ 16.523438, 43.261206 ] ] ], [ [ [ 16.435547, 43.389082 ], [ 16.347656, 43.452919 ], [ 16.875000, 43.325178 ], [ 16.435547, 43.325178 ], [ 16.435547, 43.389082 ] ] ], [ [ [ 14.589844, 45.274886 ], [ 14.765625, 45.026950 ], [ 14.677734, 44.964798 ], [ 14.589844, 45.026950 ], [ 14.414062, 45.089036 ], [ 14.501953, 45.274886 ], [ 14.589844, 45.274886 ] ] ], [ [ [ 15.029297, 44.213710 ], [ 15.029297, 44.087585 ], [ 14.853516, 44.087585 ], [ 14.853516, 44.213710 ], [ 15.029297, 44.213710 ] ] ], [ [ [ 17.578125, 42.875964 ], [ 17.402344, 42.875964 ], [ 17.402344, 42.940339 ], [ 17.578125, 42.940339 ], [ 17.578125, 42.875964 ] ] ], [ [ [ 15.029297, 44.465151 ], [ 15.117188, 44.402392 ], [ 15.117188, 44.339565 ], [ 15.029297, 44.339565 ], [ 15.029297, 44.402392 ], [ 15.029297, 44.465151 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.501953, 45.274886 ], [ 14.501953, 45.336702 ], [ 14.238281, 45.398450 ], [ 14.238281, 45.336702 ], [ 14.238281, 45.213004 ], [ 14.150391, 45.151053 ], [ 14.150391, 45.026950 ], [ 14.062500, 45.026950 ], [ 13.974609, 44.902578 ], [ 13.974609, 44.840291 ], [ 13.798828, 44.840291 ], [ 13.798828, 44.902578 ], [ 13.710938, 44.902578 ], [ 13.710938, 44.964798 ], [ 13.535156, 45.151053 ], [ 13.535156, 45.336702 ], [ 13.447266, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.706179 ], [ 14.765625, 45.460131 ], [ 14.941406, 45.521744 ], [ 15.117188, 45.460131 ], [ 15.292969, 45.521744 ], [ 15.205078, 45.767523 ], [ 15.644531, 45.828799 ], [ 15.556641, 46.255847 ], [ 15.996094, 46.316584 ], [ 15.996094, 46.437857 ], [ 16.259766, 46.377254 ], [ 16.259766, 46.558860 ], [ 16.435547, 46.558860 ], [ 16.699219, 46.437857 ], [ 16.787109, 46.437857 ], [ 16.962891, 46.195042 ], [ 17.138672, 46.134170 ], [ 17.226562, 46.012224 ], [ 17.314453, 46.012224 ], [ 18.193359, 45.767523 ], [ 18.369141, 45.767523 ], [ 18.808594, 45.890008 ], [ 18.896484, 45.583290 ], [ 19.072266, 45.583290 ], [ 18.896484, 45.398450 ], [ 19.335938, 45.274886 ], [ 18.984375, 45.151053 ], [ 19.072266, 44.964798 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.151053 ], [ 18.457031, 45.089036 ], [ 18.193359, 45.213004 ], [ 17.841797, 45.089036 ], [ 17.490234, 45.151053 ], [ 17.138672, 45.151053 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.274886 ], [ 16.259766, 45.026950 ], [ 15.996094, 45.274886 ], [ 15.732422, 45.213004 ], [ 15.644531, 44.777936 ], [ 15.996094, 44.653024 ], [ 16.259766, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.226562, 43.389082 ], [ 17.578125, 43.068888 ], [ 17.578125, 43.004647 ], [ 17.402344, 43.004647 ], [ 17.402344, 43.068888 ], [ 16.875000, 43.452919 ], [ 16.347656, 43.516689 ], [ 16.347656, 43.580391 ], [ 15.908203, 43.516689 ], [ 15.908203, 43.707594 ], [ 15.644531, 43.771094 ], [ 15.644531, 43.834527 ], [ 15.468750, 43.897892 ], [ 15.292969, 43.897892 ], [ 15.292969, 44.024422 ], [ 15.117188, 44.213710 ], [ 15.117188, 44.339565 ], [ 15.205078, 44.339565 ], [ 15.292969, 44.276671 ], [ 15.468750, 44.276671 ], [ 15.205078, 44.402392 ], [ 15.029297, 44.527843 ], [ 15.029297, 44.465151 ], [ 14.853516, 44.590467 ], [ 14.941406, 44.590467 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.589844, 45.274886 ], [ 14.765625, 45.026950 ], [ 14.677734, 44.964798 ], [ 14.589844, 45.026950 ], [ 14.414062, 45.089036 ], [ 14.501953, 45.274886 ] ] ], [ [ [ 17.578125, 42.875964 ], [ 17.666016, 42.875964 ], [ 17.666016, 42.940339 ], [ 17.753906, 42.940339 ], [ 17.841797, 42.811522 ], [ 17.753906, 42.811522 ], [ 17.578125, 42.875964 ] ] ], [ [ [ 16.611328, 43.004647 ], [ 17.138672, 42.940339 ], [ 16.611328, 42.940339 ], [ 16.611328, 43.004647 ] ] ], [ [ [ 17.314453, 43.004647 ], [ 17.402344, 43.004647 ], [ 17.402344, 42.940339 ], [ 17.314453, 43.004647 ] ] ], [ [ [ 14.238281, 45.213004 ], [ 14.414062, 45.089036 ], [ 14.414062, 45.026950 ], [ 14.501953, 44.653024 ], [ 14.326172, 44.777936 ], [ 14.238281, 45.213004 ] ] ], [ [ [ 16.259766, 43.197167 ], [ 16.259766, 43.068888 ], [ 16.083984, 43.068888 ], [ 16.083984, 43.197167 ], [ 16.259766, 43.197167 ] ] ], [ [ [ 16.523438, 43.261206 ], [ 17.138672, 43.133061 ], [ 16.347656, 43.197167 ], [ 16.435547, 43.261206 ], [ 16.523438, 43.261206 ] ] ], [ [ [ 16.435547, 43.389082 ], [ 16.875000, 43.325178 ], [ 16.435547, 43.325178 ], [ 16.435547, 43.389082 ] ] ], [ [ [ 15.029297, 44.213710 ], [ 15.029297, 44.087585 ], [ 14.853516, 44.087585 ], [ 14.853516, 44.213710 ], [ 15.029297, 44.213710 ] ] ], [ [ [ 17.578125, 42.875964 ], [ 17.402344, 42.875964 ], [ 17.402344, 42.940339 ], [ 17.578125, 42.940339 ], [ 17.578125, 42.875964 ] ] ], [ [ [ 15.029297, 44.465151 ], [ 15.117188, 44.402392 ], [ 15.117188, 44.339565 ], [ 15.029297, 44.339565 ], [ 15.029297, 44.402392 ], [ 15.029297, 44.465151 ] ] ], [ [ [ 16.435547, 43.389082 ], [ 16.347656, 43.389082 ], [ 16.347656, 43.452919 ], [ 16.435547, 43.389082 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.274886 ], [ 17.138672, 45.151053 ], [ 17.490234, 45.151053 ], [ 17.841797, 45.089036 ], [ 18.193359, 45.213004 ], [ 18.457031, 45.089036 ], [ 18.544922, 45.151053 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.402392 ], [ 19.423828, 44.213710 ], [ 19.423828, 44.150681 ], [ 19.511719, 44.150681 ], [ 19.511719, 44.024422 ], [ 19.160156, 44.024422 ], [ 19.423828, 43.771094 ], [ 19.335938, 43.580391 ], [ 19.248047, 43.644026 ], [ 19.160156, 43.580391 ], [ 18.896484, 43.580391 ], [ 18.984375, 43.325178 ], [ 18.808594, 43.389082 ], [ 18.632812, 43.261206 ], [ 18.632812, 43.068888 ], [ 18.369141, 43.004647 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.617791 ], [ 17.929688, 42.747012 ], [ 17.753906, 42.940339 ], [ 17.578125, 42.940339 ], [ 17.578125, 43.068888 ], [ 17.226562, 43.389082 ], [ 17.226562, 43.452919 ], [ 16.259766, 44.087585 ], [ 15.996094, 44.653024 ], [ 15.644531, 44.777936 ], [ 15.732422, 45.213004 ], [ 15.996094, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.274886 ], [ 16.962891, 45.274886 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.544922, 42.423457 ], [ 18.457031, 42.423457 ], [ 18.457031, 42.488302 ], [ 18.369141, 42.488302 ], [ 18.369141, 42.617791 ], [ 18.544922, 42.682435 ], [ 18.369141, 43.004647 ], [ 18.632812, 43.068888 ], [ 18.632812, 43.261206 ], [ 18.808594, 43.389082 ], [ 18.984375, 43.325178 ], [ 18.896484, 43.580391 ], [ 19.160156, 43.580391 ], [ 19.511719, 43.197167 ], [ 19.863281, 43.133061 ], [ 20.302734, 42.940339 ], [ 20.302734, 42.875964 ], [ 20.126953, 42.747012 ], [ 19.951172, 42.811522 ], [ 20.039062, 42.682435 ], [ 20.039062, 42.617791 ], [ 19.863281, 42.488302 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.682435 ], [ 19.511719, 42.617791 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.544922, 42.423457 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.126953, 46.195042 ], [ 20.742188, 45.767523 ], [ 20.742188, 45.521744 ], [ 21.445312, 45.151053 ], [ 21.269531, 45.026950 ], [ 21.533203, 44.902578 ], [ 21.357422, 44.902578 ], [ 21.357422, 44.840291 ], [ 21.972656, 44.715514 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.777936 ], [ 22.763672, 44.590467 ], [ 22.412109, 44.527843 ], [ 22.675781, 44.276671 ], [ 22.587891, 44.087585 ], [ 22.324219, 44.024422 ], [ 22.324219, 43.834527 ], [ 22.500000, 43.516689 ], [ 22.939453, 43.197167 ], [ 22.675781, 42.940339 ], [ 22.412109, 42.875964 ], [ 22.500000, 42.423457 ], [ 22.324219, 42.358544 ], [ 22.236328, 42.423457 ], [ 22.060547, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.445312, 42.358544 ], [ 21.708984, 42.682435 ], [ 21.357422, 42.747012 ], [ 21.357422, 42.875964 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.654297, 43.133061 ], [ 20.302734, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.863281, 43.133061 ], [ 19.511719, 43.197167 ], [ 19.160156, 43.580391 ], [ 19.248047, 43.644026 ], [ 19.335938, 43.580391 ], [ 19.423828, 43.771094 ], [ 19.160156, 44.024422 ], [ 19.511719, 44.024422 ], [ 19.511719, 44.150681 ], [ 19.423828, 44.150681 ], [ 19.423828, 44.213710 ], [ 19.072266, 44.402392 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.072266, 44.964798 ], [ 18.984375, 45.151053 ], [ 19.335938, 45.274886 ], [ 18.896484, 45.398450 ], [ 19.072266, 45.583290 ], [ 18.896484, 45.583290 ], [ 18.808594, 45.890008 ], [ 18.808594, 45.951150 ], [ 18.896484, 45.951150 ], [ 19.072266, 46.073231 ], [ 19.248047, 46.012224 ], [ 19.511719, 46.195042 ], [ 20.126953, 46.195042 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 19.863281, 43.133061 ], [ 19.511719, 43.197167 ], [ 19.160156, 43.580391 ], [ 19.248047, 43.644026 ], [ 19.335938, 43.580391 ], [ 19.423828, 43.771094 ], [ 19.160156, 44.024422 ], [ 19.511719, 44.024422 ], [ 19.511719, 44.150681 ], [ 19.423828, 44.150681 ], [ 19.423828, 44.213710 ], [ 19.072266, 44.402392 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.072266, 44.964798 ], [ 18.984375, 45.151053 ], [ 19.335938, 45.274886 ], [ 18.896484, 45.398450 ], [ 19.072266, 45.583290 ], [ 18.896484, 45.583290 ], [ 18.808594, 45.890008 ], [ 18.808594, 45.951150 ], [ 18.896484, 45.951150 ], [ 19.072266, 46.073231 ], [ 19.248047, 46.012224 ], [ 19.511719, 46.195042 ], [ 20.126953, 46.195042 ], [ 20.742188, 45.767523 ], [ 20.742188, 45.521744 ], [ 21.445312, 45.151053 ], [ 21.269531, 45.026950 ], [ 21.533203, 44.902578 ], [ 21.357422, 44.902578 ], [ 21.357422, 44.840291 ], [ 21.972656, 44.715514 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.777936 ], [ 22.763672, 44.590467 ], [ 22.412109, 44.527843 ], [ 22.675781, 44.276671 ], [ 22.587891, 44.087585 ], [ 22.324219, 44.024422 ], [ 22.324219, 43.834527 ], [ 22.500000, 43.516689 ], [ 22.939453, 43.197167 ], [ 22.675781, 42.940339 ], [ 22.412109, 42.875964 ], [ 22.500000, 42.423457 ], [ 22.324219, 42.358544 ], [ 22.236328, 42.423457 ], [ 22.060547, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.445312, 42.358544 ], [ 21.708984, 42.682435 ], [ 21.357422, 42.747012 ], [ 21.357422, 42.875964 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.654297, 43.133061 ], [ 20.302734, 42.940339 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.357422, 42.875964 ], [ 21.357422, 42.747012 ], [ 21.708984, 42.682435 ], [ 21.445312, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.269531, 42.228517 ], [ 21.269531, 42.098222 ], [ 21.093750, 42.228517 ], [ 20.742188, 42.098222 ], [ 20.742188, 41.967659 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.293564 ], [ 20.214844, 42.358544 ], [ 20.039062, 42.553080 ], [ 20.039062, 42.682435 ], [ 19.951172, 42.811522 ], [ 20.126953, 42.747012 ], [ 20.654297, 43.133061 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.553080 ], [ 20.214844, 42.358544 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.478516, 41.244772 ], [ 20.654297, 40.913513 ], [ 20.917969, 40.913513 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.446947 ], [ 20.654297, 40.178873 ], [ 20.302734, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.707187 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.423828, 40.245992 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.248047, 40.647304 ], [ 19.423828, 40.913513 ], [ 19.511719, 40.979898 ], [ 19.423828, 41.046217 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.376809 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.511719, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.511719, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.682435 ], [ 19.687500, 42.553080 ], [ 19.863281, 42.488302 ], [ 20.039062, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.553080 ], [ 20.214844, 42.358544 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.478516, 41.244772 ], [ 20.654297, 40.913513 ], [ 20.917969, 40.913513 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.446947 ], [ 20.654297, 40.178873 ], [ 20.302734, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.707187 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.423828, 40.245992 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.248047, 40.647304 ], [ 19.423828, 40.913513 ], [ 19.423828, 40.979898 ], [ 19.423828, 41.046217 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.376809 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.511719, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.511719, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.682435 ], [ 19.687500, 42.553080 ], [ 19.863281, 42.488302 ], [ 20.039062, 42.553080 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.236328, 42.423457 ], [ 22.324219, 42.358544 ], [ 22.500000, 42.163403 ], [ 22.851562, 42.032974 ], [ 22.939453, 41.771312 ], [ 22.939453, 41.376809 ], [ 22.675781, 41.376809 ], [ 22.675781, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.533203, 40.913513 ], [ 20.654297, 40.913513 ], [ 20.478516, 41.244772 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.742188, 41.967659 ], [ 20.742188, 42.098222 ], [ 21.093750, 42.228517 ], [ 21.269531, 42.098222 ], [ 21.269531, 42.228517 ], [ 21.533203, 42.293564 ], [ 22.060547, 42.358544 ], [ 22.236328, 42.423457 ] ] ] } } ] } @@ -34,11 +35,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.259766, 46.890232 ], [ 16.259766, 46.800059 ], [ 16.391602, 46.709736 ], [ 16.347656, 46.649436 ], [ 16.479492, 46.528635 ], [ 16.303711, 46.558860 ], [ 16.215820, 46.498392 ], [ 16.259766, 46.377254 ], [ 16.040039, 46.407564 ], [ 15.996094, 46.316584 ], [ 15.600586, 46.225453 ], [ 15.556641, 46.134170 ], [ 15.688477, 46.042736 ], [ 15.644531, 45.828799 ], [ 15.424805, 45.828799 ], [ 15.249023, 45.736860 ], [ 15.336914, 45.675482 ], [ 15.249023, 45.644768 ], [ 15.249023, 45.552525 ], [ 15.336914, 45.490946 ], [ 15.161133, 45.429299 ], [ 14.941406, 45.521744 ], [ 14.809570, 45.460131 ], [ 14.765625, 45.521744 ], [ 14.633789, 45.552525 ], [ 14.589844, 45.675482 ], [ 14.458008, 45.614037 ], [ 14.370117, 45.490946 ], [ 13.930664, 45.521744 ], [ 13.974609, 45.490946 ], [ 13.886719, 45.429299 ], [ 13.798828, 45.429299 ], [ 13.754883, 45.490946 ], [ 13.579102, 45.490946 ], [ 13.535156, 45.552525 ], [ 13.666992, 45.552525 ], [ 13.710938, 45.614037 ], [ 13.798828, 45.583290 ], [ 13.886719, 45.644768 ], [ 13.754883, 45.767523 ], [ 13.535156, 45.828799 ], [ 13.579102, 46.012224 ], [ 13.491211, 45.981695 ], [ 13.447266, 46.042736 ], [ 13.623047, 46.195042 ], [ 13.535156, 46.195042 ], [ 13.403320, 46.225453 ], [ 13.403320, 46.377254 ], [ 13.666992, 46.468133 ], [ 13.666992, 46.528635 ], [ 14.326172, 46.437857 ], [ 14.370117, 46.468133 ], [ 14.545898, 46.407564 ], [ 14.809570, 46.558860 ], [ 14.809570, 46.619261 ], [ 14.941406, 46.619261 ], [ 15.029297, 46.679594 ], [ 15.468750, 46.619261 ], [ 15.512695, 46.679594 ], [ 15.600586, 46.679594 ], [ 15.600586, 46.739861 ], [ 15.996094, 46.709736 ], [ 15.952148, 46.830134 ], [ 16.083984, 46.890232 ], [ 16.259766, 46.890232 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.622070, 42.908160 ], [ 17.622070, 42.875964 ], [ 17.666016, 42.875964 ], [ 17.709961, 42.875964 ], [ 17.709961, 42.908160 ], [ 17.797852, 42.940339 ], [ 17.797852, 42.875964 ], [ 17.885742, 42.811522 ], [ 17.797852, 42.811522 ], [ 17.709961, 42.843751 ], [ 17.709961, 42.779275 ], [ 17.666016, 42.843751 ], [ 17.402344, 42.875964 ], [ 17.402344, 42.940339 ], [ 17.006836, 43.004647 ], [ 17.006836, 43.068888 ], [ 17.358398, 43.004647 ], [ 17.446289, 42.940339 ], [ 17.534180, 42.940339 ], [ 17.578125, 42.908160 ], [ 17.622070, 42.908160 ] ] ], [ [ [ 17.314453, 42.811522 ], [ 17.709961, 42.714732 ], [ 17.314453, 42.779275 ], [ 17.314453, 42.811522 ] ] ], [ [ [ 16.787109, 42.811522 ], [ 16.918945, 42.747012 ], [ 16.787109, 42.747012 ], [ 16.787109, 42.811522 ] ] ], [ [ [ 18.852539, 45.920587 ], [ 18.852539, 45.890008 ], [ 18.808594, 45.828799 ], [ 18.940430, 45.706179 ], [ 18.896484, 45.552525 ], [ 19.072266, 45.552525 ], [ 18.984375, 45.521744 ], [ 19.028320, 45.429299 ], [ 18.940430, 45.398450 ], [ 19.379883, 45.243953 ], [ 19.379883, 45.182037 ], [ 19.116211, 45.213004 ], [ 19.116211, 45.151053 ], [ 19.028320, 45.151053 ], [ 19.116211, 44.964798 ], [ 18.984375, 44.933696 ], [ 18.984375, 44.871443 ], [ 18.852539, 44.871443 ], [ 18.764648, 44.933696 ], [ 18.764648, 45.026950 ], [ 18.588867, 45.120053 ], [ 18.500977, 45.120053 ], [ 18.500977, 45.058001 ], [ 18.237305, 45.182037 ], [ 18.193359, 45.120053 ], [ 17.973633, 45.151053 ], [ 17.885742, 45.089036 ], [ 17.753906, 45.089036 ], [ 17.709961, 45.182037 ], [ 17.534180, 45.151053 ], [ 17.446289, 45.120053 ], [ 17.446289, 45.151053 ], [ 17.226562, 45.213004 ], [ 17.182617, 45.151053 ], [ 17.006836, 45.274886 ], [ 16.962891, 45.243953 ], [ 16.962891, 45.274886 ], [ 16.918945, 45.274886 ], [ 16.918945, 45.305803 ], [ 16.787109, 45.243953 ], [ 16.787109, 45.182037 ], [ 16.523438, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.215820, 45.026950 ], [ 15.996094, 45.182037 ], [ 15.996094, 45.243953 ], [ 15.776367, 45.213004 ], [ 15.688477, 44.777936 ], [ 15.776367, 44.715514 ], [ 15.864258, 44.746733 ], [ 16.040039, 44.621754 ], [ 15.996094, 44.527843 ], [ 16.083984, 44.559163 ], [ 16.171875, 44.213710 ], [ 16.303711, 44.087585 ], [ 16.391602, 44.087585 ], [ 16.523438, 43.992815 ], [ 16.655273, 43.802819 ], [ 17.050781, 43.516689 ], [ 17.270508, 43.452919 ], [ 17.226562, 43.357138 ], [ 17.402344, 43.229195 ], [ 17.402344, 43.165123 ], [ 17.622070, 43.068888 ], [ 17.578125, 42.972502 ], [ 17.490234, 42.972502 ], [ 17.446289, 43.004647 ], [ 17.446289, 43.036776 ], [ 17.402344, 43.036776 ], [ 16.875000, 43.421009 ], [ 16.347656, 43.516689 ], [ 16.435547, 43.548548 ], [ 16.391602, 43.580391 ], [ 16.259766, 43.548548 ], [ 16.083984, 43.548548 ], [ 16.171875, 43.516689 ], [ 16.083984, 43.484812 ], [ 15.952148, 43.516689 ], [ 15.908203, 43.675818 ], [ 15.952148, 43.707594 ], [ 15.688477, 43.771094 ], [ 15.644531, 43.834527 ], [ 15.512695, 43.929550 ], [ 15.424805, 43.929550 ], [ 15.424805, 43.897892 ], [ 15.380859, 43.897892 ], [ 15.249023, 44.024422 ], [ 15.380859, 43.992815 ], [ 15.380859, 44.024422 ], [ 15.249023, 44.119142 ], [ 15.117188, 44.213710 ], [ 15.117188, 44.308127 ], [ 15.073242, 44.339565 ], [ 15.073242, 44.402392 ], [ 14.897461, 44.496505 ], [ 14.853516, 44.590467 ], [ 14.897461, 44.621754 ], [ 14.985352, 44.590467 ], [ 14.853516, 44.746733 ], [ 14.853516, 45.089036 ], [ 14.545898, 45.305803 ], [ 14.282227, 45.367584 ], [ 14.238281, 45.305803 ], [ 14.194336, 45.151053 ], [ 14.150391, 45.120053 ], [ 14.150391, 45.058001 ], [ 14.150391, 44.995883 ], [ 14.062500, 44.995883 ], [ 14.018555, 44.902578 ], [ 13.974609, 44.933696 ], [ 13.974609, 44.871443 ], [ 13.974609, 44.840291 ], [ 13.798828, 44.840291 ], [ 13.842773, 44.871443 ], [ 13.798828, 44.871443 ], [ 13.798828, 44.902578 ], [ 13.754883, 44.902578 ], [ 13.754883, 44.933696 ], [ 13.579102, 45.120053 ], [ 13.710938, 45.151053 ], [ 13.579102, 45.151053 ], [ 13.491211, 45.521744 ], [ 13.535156, 45.490946 ], [ 13.754883, 45.490946 ], [ 13.798828, 45.429299 ], [ 13.886719, 45.429299 ], [ 13.974609, 45.490946 ], [ 13.930664, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.458008, 45.614037 ], [ 14.589844, 45.675482 ], [ 14.633789, 45.552525 ], [ 14.765625, 45.521744 ], [ 14.809570, 45.460131 ], [ 14.941406, 45.521744 ], [ 15.161133, 45.429299 ], [ 15.336914, 45.490946 ], [ 15.249023, 45.552525 ], [ 15.249023, 45.644768 ], [ 15.336914, 45.675482 ], [ 15.249023, 45.736860 ], [ 15.424805, 45.828799 ], [ 15.644531, 45.828799 ], [ 15.688477, 46.042736 ], [ 15.556641, 46.134170 ], [ 15.600586, 46.225453 ], [ 15.996094, 46.316584 ], [ 16.040039, 46.407564 ], [ 16.259766, 46.377254 ], [ 16.215820, 46.498392 ], [ 16.303711, 46.558860 ], [ 16.479492, 46.528635 ], [ 16.611328, 46.498392 ], [ 16.699219, 46.407564 ], [ 16.787109, 46.407564 ], [ 17.006836, 46.164614 ], [ 17.182617, 46.134170 ], [ 17.270508, 46.012224 ], [ 17.270508, 45.981695 ], [ 17.490234, 45.981695 ], [ 17.622070, 45.920587 ], [ 17.622070, 45.859412 ], [ 17.841797, 45.798170 ], [ 18.237305, 45.767523 ], [ 18.413086, 45.767523 ], [ 18.632812, 45.920587 ], [ 18.764648, 45.890008 ], [ 18.852539, 45.920587 ] ], [ [ 14.985352, 44.590467 ], [ 15.073242, 44.496505 ], [ 14.897461, 44.559163 ], [ 15.029297, 44.465151 ], [ 15.249023, 44.370987 ], [ 15.161133, 44.370987 ], [ 15.161133, 44.308127 ], [ 15.205078, 44.276671 ], [ 15.205078, 44.308127 ], [ 15.249023, 44.308127 ], [ 15.292969, 44.339565 ], [ 15.380859, 44.276671 ], [ 15.512695, 44.276671 ], [ 14.985352, 44.590467 ] ], [ [ 15.249023, 44.308127 ], [ 15.249023, 44.276671 ], [ 15.292969, 44.276671 ], [ 15.249023, 44.308127 ] ], [ [ 14.150391, 45.058001 ], [ 14.106445, 45.089036 ], [ 14.106445, 45.058001 ], [ 14.150391, 45.058001 ] ] ], [ [ [ 17.006836, 43.004647 ], [ 17.182617, 42.940339 ], [ 16.831055, 42.908160 ], [ 16.611328, 42.940339 ], [ 16.699219, 42.972502 ], [ 16.655273, 43.004647 ], [ 17.006836, 43.004647 ] ] ], [ [ [ 14.589844, 45.243953 ], [ 14.633789, 45.089036 ], [ 14.721680, 45.089036 ], [ 14.809570, 44.995883 ], [ 14.677734, 44.964798 ], [ 14.589844, 45.026950 ], [ 14.414062, 45.089036 ], [ 14.545898, 45.213004 ], [ 14.501953, 45.243953 ], [ 14.589844, 45.243953 ] ] ], [ [ [ 16.215820, 43.100983 ], [ 16.171875, 43.036776 ], [ 16.083984, 43.036776 ], [ 16.040039, 43.100983 ], [ 16.215820, 43.100983 ] ] ], [ [ [ 16.523438, 43.229195 ], [ 16.655273, 43.229195 ], [ 16.699219, 43.165123 ], [ 16.831055, 43.197167 ], [ 17.182617, 43.133061 ], [ 16.655273, 43.133061 ], [ 16.347656, 43.197167 ], [ 16.479492, 43.229195 ], [ 16.523438, 43.229195 ] ], [ [ 16.523438, 43.229195 ], [ 16.523438, 43.197167 ], [ 16.567383, 43.197167 ], [ 16.523438, 43.229195 ] ] ], [ [ [ 16.435547, 43.357138 ], [ 16.391602, 43.421009 ], [ 16.875000, 43.325178 ], [ 16.479492, 43.293200 ], [ 16.435547, 43.357138 ] ] ], [ [ [ 16.347656, 43.548548 ], [ 16.347656, 43.516689 ], [ 16.347656, 43.484812 ], [ 16.259766, 43.484812 ], [ 16.259766, 43.548548 ], [ 16.347656, 43.548548 ] ] ], [ [ [ 14.370117, 45.026950 ], [ 14.458008, 44.995883 ], [ 14.414062, 44.809122 ], [ 14.501953, 44.621754 ], [ 14.326172, 44.777936 ], [ 14.282227, 44.964798 ], [ 14.370117, 44.933696 ], [ 14.370117, 44.995883 ], [ 14.370117, 45.026950 ] ] ], [ [ [ 15.380859, 43.834527 ], [ 15.380859, 43.771094 ], [ 15.292969, 43.771094 ], [ 15.292969, 43.834527 ], [ 15.380859, 43.834527 ] ] ], [ [ [ 18.193359, 42.650122 ], [ 18.413086, 42.585444 ], [ 18.413086, 42.488302 ], [ 18.193359, 42.585444 ], [ 18.193359, 42.650122 ] ] ], [ [ [ 14.985352, 44.056012 ], [ 15.205078, 43.929550 ], [ 15.161133, 43.897892 ], [ 15.117188, 43.929550 ], [ 15.073242, 43.929550 ], [ 14.985352, 44.056012 ] ] ], [ [ [ 15.249023, 44.119142 ], [ 15.249023, 44.056012 ], [ 15.161133, 44.056012 ], [ 15.161133, 44.119142 ], [ 15.249023, 44.119142 ] ] ], [ [ [ 14.370117, 45.026950 ], [ 14.238281, 45.120053 ], [ 14.282227, 45.182037 ], [ 14.370117, 45.026950 ] ] ], [ [ [ 14.853516, 44.402392 ], [ 14.853516, 44.339565 ], [ 14.765625, 44.339565 ], [ 14.765625, 44.402392 ], [ 14.853516, 44.402392 ] ] ], [ [ [ 14.414062, 44.653024 ], [ 14.414062, 44.590467 ], [ 14.326172, 44.590467 ], [ 14.326172, 44.653024 ], [ 14.414062, 44.653024 ] ] ], [ [ [ 14.721680, 44.840291 ], [ 14.853516, 44.746733 ], [ 14.809570, 44.715514 ], [ 14.721680, 44.809122 ], [ 14.721680, 44.840291 ] ] ], [ [ [ 14.985352, 44.056012 ], [ 14.853516, 44.150681 ], [ 14.853516, 44.182204 ], [ 14.941406, 44.150681 ], [ 14.985352, 44.056012 ] ] ], [ [ [ 17.973633, 42.747012 ], [ 18.193359, 42.650122 ], [ 18.061523, 42.650122 ], [ 18.061523, 42.682435 ], [ 17.973633, 42.747012 ] ] ], [ [ [ 17.885742, 42.811522 ], [ 17.973633, 42.747012 ], [ 17.841797, 42.779275 ], [ 17.885742, 42.811522 ] ] ], [ [ [ 14.721680, 44.840291 ], [ 14.677734, 44.871443 ], [ 14.721680, 44.871443 ], [ 14.721680, 44.840291 ] ] ], [ [ [ 18.852539, 45.920587 ], [ 18.896484, 45.951150 ], [ 18.896484, 45.920587 ], [ 18.852539, 45.920587 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.402344, 42.940339 ], [ 17.006836, 43.004647 ], [ 17.006836, 43.068888 ], [ 17.358398, 43.004647 ], [ 17.402344, 42.940339 ] ] ], [ [ [ 17.314453, 42.811522 ], [ 17.709961, 42.714732 ], [ 17.314453, 42.779275 ], [ 17.314453, 42.811522 ] ] ], [ [ [ 16.787109, 42.811522 ], [ 16.918945, 42.747012 ], [ 16.787109, 42.747012 ], [ 16.787109, 42.811522 ] ] ], [ [ [ 18.852539, 45.920587 ], [ 18.852539, 45.890008 ], [ 18.808594, 45.828799 ], [ 18.940430, 45.706179 ], [ 18.896484, 45.552525 ], [ 19.072266, 45.552525 ], [ 18.984375, 45.521744 ], [ 19.028320, 45.429299 ], [ 18.940430, 45.398450 ], [ 19.379883, 45.243953 ], [ 19.379883, 45.182037 ], [ 19.116211, 45.213004 ], [ 19.116211, 45.151053 ], [ 19.028320, 45.151053 ], [ 19.116211, 44.964798 ], [ 18.984375, 44.933696 ], [ 18.984375, 44.871443 ], [ 18.852539, 44.871443 ], [ 18.764648, 44.933696 ], [ 18.764648, 45.026950 ], [ 18.588867, 45.120053 ], [ 18.500977, 45.120053 ], [ 18.500977, 45.058001 ], [ 18.237305, 45.182037 ], [ 18.193359, 45.120053 ], [ 17.973633, 45.151053 ], [ 17.885742, 45.089036 ], [ 17.753906, 45.089036 ], [ 17.709961, 45.182037 ], [ 17.534180, 45.151053 ], [ 17.446289, 45.120053 ], [ 17.446289, 45.151053 ], [ 17.226562, 45.213004 ], [ 17.182617, 45.151053 ], [ 17.006836, 45.274886 ], [ 16.962891, 45.274886 ], [ 16.918945, 45.274886 ], [ 16.918945, 45.305803 ], [ 16.787109, 45.243953 ], [ 16.787109, 45.182037 ], [ 16.523438, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.215820, 45.026950 ], [ 15.996094, 45.182037 ], [ 15.996094, 45.243953 ], [ 15.776367, 45.213004 ], [ 15.688477, 44.777936 ], [ 15.776367, 44.715514 ], [ 15.864258, 44.746733 ], [ 16.040039, 44.621754 ], [ 15.996094, 44.527843 ], [ 16.083984, 44.559163 ], [ 16.171875, 44.213710 ], [ 16.303711, 44.087585 ], [ 16.391602, 44.087585 ], [ 16.523438, 43.992815 ], [ 16.655273, 43.802819 ], [ 17.050781, 43.516689 ], [ 17.270508, 43.452919 ], [ 17.226562, 43.357138 ], [ 17.402344, 43.229195 ], [ 17.402344, 43.165123 ], [ 17.622070, 43.068888 ], [ 17.578125, 42.972502 ], [ 17.490234, 42.972502 ], [ 17.446289, 43.004647 ], [ 17.446289, 43.036776 ], [ 17.402344, 43.036776 ], [ 16.875000, 43.421009 ], [ 16.347656, 43.516689 ], [ 16.435547, 43.548548 ], [ 16.391602, 43.580391 ], [ 16.259766, 43.548548 ], [ 16.083984, 43.548548 ], [ 16.171875, 43.516689 ], [ 16.083984, 43.484812 ], [ 15.952148, 43.516689 ], [ 15.908203, 43.675818 ], [ 15.952148, 43.707594 ], [ 15.688477, 43.771094 ], [ 15.644531, 43.834527 ], [ 15.512695, 43.929550 ], [ 15.424805, 43.929550 ], [ 15.424805, 43.897892 ], [ 15.380859, 43.897892 ], [ 15.249023, 44.024422 ], [ 15.380859, 43.992815 ], [ 15.380859, 44.024422 ], [ 15.249023, 44.119142 ], [ 15.117188, 44.213710 ], [ 15.117188, 44.308127 ], [ 15.073242, 44.339565 ], [ 15.073242, 44.402392 ], [ 14.897461, 44.496505 ], [ 14.853516, 44.590467 ], [ 14.897461, 44.621754 ], [ 14.985352, 44.590467 ], [ 14.853516, 44.746733 ], [ 14.853516, 45.089036 ], [ 14.589844, 45.243953 ], [ 14.545898, 45.305803 ], [ 14.282227, 45.367584 ], [ 14.238281, 45.305803 ], [ 14.194336, 45.151053 ], [ 14.150391, 45.120053 ], [ 14.150391, 45.058001 ], [ 14.150391, 44.995883 ], [ 14.062500, 44.995883 ], [ 14.018555, 44.902578 ], [ 13.974609, 44.933696 ], [ 13.974609, 44.871443 ], [ 13.974609, 44.840291 ], [ 13.798828, 44.840291 ], [ 13.798828, 44.871443 ], [ 13.798828, 44.902578 ], [ 13.754883, 44.902578 ], [ 13.754883, 44.933696 ], [ 13.579102, 45.120053 ], [ 13.710938, 45.151053 ], [ 13.579102, 45.151053 ], [ 13.491211, 45.521744 ], [ 13.535156, 45.490946 ], [ 13.754883, 45.490946 ], [ 13.798828, 45.429299 ], [ 13.886719, 45.429299 ], [ 13.974609, 45.490946 ], [ 13.930664, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.458008, 45.614037 ], [ 14.589844, 45.675482 ], [ 14.633789, 45.552525 ], [ 14.765625, 45.521744 ], [ 14.809570, 45.460131 ], [ 14.941406, 45.521744 ], [ 15.161133, 45.429299 ], [ 15.336914, 45.490946 ], [ 15.249023, 45.552525 ], [ 15.249023, 45.644768 ], [ 15.336914, 45.675482 ], [ 15.249023, 45.736860 ], [ 15.424805, 45.828799 ], [ 15.644531, 45.828799 ], [ 15.688477, 46.042736 ], [ 15.556641, 46.134170 ], [ 15.600586, 46.225453 ], [ 15.996094, 46.316584 ], [ 16.040039, 46.407564 ], [ 16.259766, 46.377254 ], [ 16.215820, 46.498392 ], [ 16.303711, 46.558860 ], [ 16.479492, 46.528635 ], [ 16.611328, 46.498392 ], [ 16.699219, 46.407564 ], [ 16.787109, 46.407564 ], [ 17.006836, 46.164614 ], [ 17.182617, 46.134170 ], [ 17.270508, 46.012224 ], [ 17.270508, 45.981695 ], [ 17.490234, 45.981695 ], [ 17.622070, 45.920587 ], [ 17.622070, 45.859412 ], [ 17.841797, 45.798170 ], [ 18.237305, 45.767523 ], [ 18.413086, 45.767523 ], [ 18.632812, 45.920587 ], [ 18.764648, 45.890008 ], [ 18.852539, 45.920587 ] ], [ [ 14.985352, 44.590467 ], [ 15.073242, 44.496505 ], [ 14.897461, 44.559163 ], [ 15.029297, 44.465151 ], [ 15.249023, 44.370987 ], [ 15.161133, 44.370987 ], [ 15.161133, 44.308127 ], [ 15.205078, 44.276671 ], [ 15.249023, 44.276671 ], [ 15.249023, 44.308127 ], [ 15.292969, 44.339565 ], [ 15.380859, 44.276671 ], [ 15.512695, 44.276671 ], [ 14.985352, 44.590467 ] ] ], [ [ [ 15.205078, 44.308127 ], [ 15.249023, 44.308127 ], [ 15.205078, 44.276671 ], [ 15.205078, 44.308127 ] ] ], [ [ [ 17.006836, 43.004647 ], [ 17.182617, 42.940339 ], [ 16.831055, 42.908160 ], [ 16.611328, 42.940339 ], [ 16.699219, 42.972502 ], [ 16.655273, 43.004647 ], [ 17.006836, 43.004647 ] ] ], [ [ [ 14.589844, 45.243953 ], [ 14.633789, 45.089036 ], [ 14.721680, 45.089036 ], [ 14.809570, 44.995883 ], [ 14.677734, 44.964798 ], [ 14.589844, 45.026950 ], [ 14.414062, 45.089036 ], [ 14.545898, 45.213004 ], [ 14.501953, 45.243953 ], [ 14.589844, 45.243953 ] ] ], [ [ [ 16.215820, 43.100983 ], [ 16.171875, 43.036776 ], [ 16.083984, 43.036776 ], [ 16.040039, 43.100983 ], [ 16.215820, 43.100983 ] ] ], [ [ [ 16.523438, 43.229195 ], [ 16.655273, 43.229195 ], [ 16.699219, 43.165123 ], [ 16.831055, 43.197167 ], [ 17.182617, 43.133061 ], [ 16.655273, 43.133061 ], [ 16.347656, 43.197167 ], [ 16.479492, 43.229195 ], [ 16.523438, 43.229195 ] ] ], [ [ [ 16.435547, 43.357138 ], [ 16.391602, 43.421009 ], [ 16.875000, 43.325178 ], [ 16.479492, 43.293200 ], [ 16.435547, 43.357138 ] ] ], [ [ [ 16.347656, 43.548548 ], [ 16.347656, 43.516689 ], [ 16.347656, 43.484812 ], [ 16.259766, 43.484812 ], [ 16.259766, 43.548548 ], [ 16.347656, 43.548548 ] ] ], [ [ [ 14.370117, 45.026950 ], [ 14.458008, 44.995883 ], [ 14.414062, 44.809122 ], [ 14.501953, 44.621754 ], [ 14.326172, 44.777936 ], [ 14.282227, 44.964798 ], [ 14.370117, 44.933696 ], [ 14.370117, 44.995883 ], [ 14.370117, 45.026950 ] ] ], [ [ [ 15.380859, 43.834527 ], [ 15.380859, 43.771094 ], [ 15.292969, 43.771094 ], [ 15.292969, 43.834527 ], [ 15.380859, 43.834527 ] ] ], [ [ [ 18.193359, 42.650122 ], [ 18.413086, 42.585444 ], [ 18.413086, 42.488302 ], [ 18.193359, 42.585444 ], [ 18.193359, 42.650122 ] ] ], [ [ [ 14.985352, 44.056012 ], [ 15.205078, 43.929550 ], [ 15.161133, 43.897892 ], [ 15.117188, 43.929550 ], [ 15.073242, 43.929550 ], [ 14.985352, 44.056012 ] ] ], [ [ [ 15.249023, 44.119142 ], [ 15.249023, 44.056012 ], [ 15.161133, 44.056012 ], [ 15.161133, 44.119142 ], [ 15.249023, 44.119142 ] ] ], [ [ [ 17.402344, 42.940339 ], [ 17.446289, 42.940339 ], [ 17.534180, 42.940339 ], [ 17.578125, 42.908160 ], [ 17.622070, 42.908160 ], [ 17.622070, 42.875964 ], [ 17.666016, 42.875964 ], [ 17.709961, 42.875964 ], [ 17.666016, 42.843751 ], [ 17.402344, 42.875964 ], [ 17.402344, 42.940339 ] ] ], [ [ [ 14.853516, 44.402392 ], [ 14.853516, 44.339565 ], [ 14.765625, 44.339565 ], [ 14.765625, 44.402392 ], [ 14.853516, 44.402392 ] ] ], [ [ [ 17.709961, 42.908160 ], [ 17.797852, 42.940339 ], [ 17.797852, 42.875964 ], [ 17.885742, 42.811522 ], [ 17.797852, 42.811522 ], [ 17.709961, 42.843751 ], [ 17.709961, 42.875964 ], [ 17.709961, 42.908160 ] ] ], [ [ [ 14.414062, 44.653024 ], [ 14.414062, 44.590467 ], [ 14.326172, 44.590467 ], [ 14.326172, 44.653024 ], [ 14.414062, 44.653024 ] ] ], [ [ [ 14.370117, 45.026950 ], [ 14.238281, 45.120053 ], [ 14.282227, 45.182037 ], [ 14.370117, 45.026950 ] ] ], [ [ [ 14.721680, 44.809122 ], [ 14.853516, 44.746733 ], [ 14.809570, 44.715514 ], [ 14.721680, 44.809122 ] ] ], [ [ [ 14.985352, 44.056012 ], [ 14.853516, 44.150681 ], [ 14.853516, 44.182204 ], [ 14.941406, 44.150681 ], [ 14.985352, 44.056012 ] ] ], [ [ [ 17.973633, 42.747012 ], [ 18.193359, 42.650122 ], [ 18.061523, 42.650122 ], [ 18.061523, 42.682435 ], [ 17.973633, 42.747012 ] ] ], [ [ [ 17.885742, 42.811522 ], [ 17.973633, 42.747012 ], [ 17.841797, 42.779275 ], [ 17.885742, 42.811522 ] ] ], [ [ [ 17.709961, 42.843751 ], [ 17.709961, 42.779275 ], [ 17.666016, 42.843751 ], [ 17.709961, 42.843751 ] ] ], [ [ [ 14.721680, 44.840291 ], [ 14.677734, 44.871443 ], [ 14.721680, 44.871443 ], [ 14.721680, 44.840291 ] ] ], [ [ [ 18.852539, 45.920587 ], [ 18.896484, 45.951150 ], [ 18.896484, 45.920587 ], [ 18.852539, 45.920587 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 42.940339 ], [ 17.578125, 42.972502 ], [ 17.622070, 43.068888 ], [ 17.402344, 43.165123 ], [ 17.402344, 43.229195 ], [ 17.226562, 43.357138 ], [ 17.270508, 43.452919 ], [ 17.050781, 43.516689 ], [ 16.655273, 43.802819 ], [ 16.523438, 43.992815 ], [ 16.391602, 44.087585 ], [ 16.303711, 44.087585 ], [ 16.171875, 44.213710 ], [ 16.083984, 44.559163 ], [ 15.996094, 44.527843 ], [ 16.040039, 44.621754 ], [ 15.864258, 44.746733 ], [ 15.776367, 44.715514 ], [ 15.688477, 44.777936 ], [ 15.776367, 45.213004 ], [ 15.996094, 45.243953 ], [ 15.996094, 45.182037 ], [ 16.215820, 45.026950 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.243953 ], [ 16.787109, 45.182037 ], [ 16.787109, 45.243953 ], [ 16.918945, 45.305803 ], [ 16.918945, 45.274886 ], [ 16.962891, 45.274886 ], [ 16.962891, 45.243953 ], [ 17.006836, 45.274886 ], [ 17.182617, 45.151053 ], [ 17.226562, 45.213004 ], [ 17.446289, 45.151053 ], [ 17.446289, 45.120053 ], [ 17.534180, 45.151053 ], [ 17.709961, 45.182037 ], [ 17.753906, 45.089036 ], [ 17.885742, 45.089036 ], [ 17.973633, 45.151053 ], [ 18.193359, 45.120053 ], [ 18.237305, 45.182037 ], [ 18.500977, 45.058001 ], [ 18.500977, 45.120053 ], [ 18.588867, 45.120053 ], [ 18.764648, 45.026950 ], [ 18.764648, 44.933696 ], [ 18.852539, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.160156, 44.933696 ], [ 19.335938, 44.902578 ], [ 19.291992, 44.715514 ], [ 19.116211, 44.527843 ], [ 19.072266, 44.370987 ], [ 19.116211, 44.308127 ], [ 19.335938, 44.276671 ], [ 19.335938, 44.213710 ], [ 19.423828, 44.182204 ], [ 19.467773, 44.119142 ], [ 19.511719, 44.119142 ], [ 19.555664, 44.087585 ], [ 19.599609, 44.024422 ], [ 19.511719, 43.992815 ], [ 19.204102, 44.024422 ], [ 19.204102, 43.961191 ], [ 19.467773, 43.739352 ], [ 19.467773, 43.580391 ], [ 19.379883, 43.580391 ], [ 19.248047, 43.612217 ], [ 19.204102, 43.548548 ], [ 18.896484, 43.548548 ], [ 19.028320, 43.325178 ], [ 18.940430, 43.293200 ], [ 18.940430, 43.357138 ], [ 18.808594, 43.357138 ], [ 18.632812, 43.261206 ], [ 18.632812, 43.036776 ], [ 18.413086, 43.004647 ], [ 18.413086, 42.811522 ], [ 18.544922, 42.682435 ], [ 18.413086, 42.585444 ], [ 17.973633, 42.747012 ], [ 17.797852, 42.875964 ], [ 17.797852, 42.940339 ], [ 17.622070, 42.908160 ], [ 17.578125, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.274886 ], [ 17.006836, 45.274886 ], [ 17.182617, 45.151053 ], [ 17.226562, 45.213004 ], [ 17.446289, 45.151053 ], [ 17.446289, 45.120053 ], [ 17.534180, 45.151053 ], [ 17.709961, 45.182037 ], [ 17.753906, 45.089036 ], [ 17.885742, 45.089036 ], [ 17.973633, 45.151053 ], [ 18.193359, 45.120053 ], [ 18.237305, 45.182037 ], [ 18.500977, 45.058001 ], [ 18.500977, 45.120053 ], [ 18.588867, 45.120053 ], [ 18.764648, 45.026950 ], [ 18.764648, 44.933696 ], [ 18.852539, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.160156, 44.933696 ], [ 19.335938, 44.902578 ], [ 19.291992, 44.715514 ], [ 19.116211, 44.527843 ], [ 19.072266, 44.370987 ], [ 19.116211, 44.308127 ], [ 19.335938, 44.276671 ], [ 19.335938, 44.213710 ], [ 19.423828, 44.182204 ], [ 19.467773, 44.119142 ], [ 19.511719, 44.119142 ], [ 19.555664, 44.087585 ], [ 19.599609, 44.024422 ], [ 19.511719, 43.992815 ], [ 19.204102, 44.024422 ], [ 19.204102, 43.961191 ], [ 19.467773, 43.739352 ], [ 19.467773, 43.580391 ], [ 19.379883, 43.580391 ], [ 19.248047, 43.612217 ], [ 19.204102, 43.548548 ], [ 18.896484, 43.548548 ], [ 19.028320, 43.325178 ], [ 18.940430, 43.293200 ], [ 18.940430, 43.357138 ], [ 18.808594, 43.357138 ], [ 18.632812, 43.261206 ], [ 18.632812, 43.036776 ], [ 18.413086, 43.004647 ], [ 18.413086, 42.811522 ], [ 18.544922, 42.682435 ], [ 18.413086, 42.585444 ], [ 17.973633, 42.747012 ], [ 17.797852, 42.875964 ], [ 17.797852, 42.940339 ], [ 17.622070, 42.908160 ], [ 17.578125, 42.940339 ], [ 17.578125, 42.972502 ], [ 17.622070, 43.068888 ], [ 17.402344, 43.165123 ], [ 17.402344, 43.229195 ], [ 17.226562, 43.357138 ], [ 17.270508, 43.452919 ], [ 17.050781, 43.516689 ], [ 16.655273, 43.802819 ], [ 16.523438, 43.992815 ], [ 16.391602, 44.087585 ], [ 16.303711, 44.087585 ], [ 16.171875, 44.213710 ], [ 16.083984, 44.559163 ], [ 15.996094, 44.527843 ], [ 16.040039, 44.621754 ], [ 15.864258, 44.746733 ], [ 15.776367, 44.715514 ], [ 15.688477, 44.777936 ], [ 15.776367, 45.213004 ], [ 15.996094, 45.243953 ], [ 15.996094, 45.182037 ], [ 16.215820, 45.026950 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.243953 ], [ 16.787109, 45.182037 ], [ 16.787109, 45.243953 ], [ 16.918945, 45.305803 ], [ 16.918945, 45.274886 ], [ 16.962891, 45.274886 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.548548 ], [ 19.160156, 43.484812 ], [ 19.335938, 43.421009 ], [ 19.555664, 43.197167 ], [ 19.687500, 43.197167 ], [ 19.775391, 43.100983 ], [ 19.907227, 43.133061 ], [ 20.126953, 42.972502 ], [ 20.346680, 42.908160 ], [ 20.302734, 42.843751 ], [ 20.170898, 42.811522 ], [ 20.170898, 42.747012 ], [ 19.995117, 42.779275 ], [ 19.995117, 42.714732 ], [ 20.083008, 42.682435 ], [ 20.039062, 42.585444 ], [ 19.863281, 42.488302 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.682435 ], [ 19.555664, 42.585444 ], [ 19.555664, 42.520700 ], [ 19.248047, 42.195969 ], [ 19.335938, 42.130821 ], [ 19.335938, 41.869561 ], [ 19.160156, 41.934977 ], [ 19.072266, 42.130821 ], [ 18.852539, 42.293564 ], [ 18.720703, 42.293564 ], [ 18.676758, 42.391009 ], [ 18.544922, 42.391009 ], [ 18.544922, 42.423457 ], [ 18.457031, 42.423457 ], [ 18.457031, 42.455888 ], [ 18.413086, 42.488302 ], [ 18.413086, 42.585444 ], [ 18.544922, 42.682435 ], [ 18.413086, 42.811522 ], [ 18.413086, 43.004647 ], [ 18.632812, 43.036776 ], [ 18.632812, 43.261206 ], [ 18.808594, 43.357138 ], [ 18.940430, 43.357138 ], [ 18.940430, 43.293200 ], [ 19.028320, 43.325178 ], [ 18.896484, 43.548548 ], [ 19.160156, 43.548548 ] ], [ [ 18.676758, 42.488302 ], [ 18.632812, 42.455888 ], [ 18.588867, 42.455888 ], [ 18.676758, 42.423457 ], [ 18.676758, 42.488302 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.548548 ], [ 19.160156, 43.484812 ], [ 19.335938, 43.421009 ], [ 19.555664, 43.197167 ], [ 19.687500, 43.197167 ], [ 19.775391, 43.100983 ], [ 19.907227, 43.133061 ], [ 20.126953, 42.972502 ], [ 20.346680, 42.908160 ], [ 20.302734, 42.843751 ], [ 20.170898, 42.811522 ], [ 20.170898, 42.747012 ], [ 19.995117, 42.779275 ], [ 19.995117, 42.714732 ], [ 20.083008, 42.682435 ], [ 20.039062, 42.585444 ], [ 19.863281, 42.488302 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.682435 ], [ 19.555664, 42.585444 ], [ 19.555664, 42.520700 ], [ 19.248047, 42.195969 ], [ 19.335938, 42.130821 ], [ 19.335938, 41.869561 ], [ 19.160156, 41.934977 ], [ 19.072266, 42.130821 ], [ 18.852539, 42.293564 ], [ 18.720703, 42.293564 ], [ 18.676758, 42.391009 ], [ 18.544922, 42.391009 ], [ 18.544922, 42.423457 ], [ 18.457031, 42.423457 ], [ 18.457031, 42.455888 ], [ 18.413086, 42.488302 ], [ 18.413086, 42.585444 ], [ 18.544922, 42.682435 ], [ 18.413086, 42.811522 ], [ 18.413086, 43.004647 ], [ 18.632812, 43.036776 ], [ 18.632812, 43.261206 ], [ 18.808594, 43.357138 ], [ 18.940430, 43.357138 ], [ 18.940430, 43.293200 ], [ 19.028320, 43.325178 ], [ 18.896484, 43.548548 ], [ 19.160156, 43.548548 ] ], [ [ 18.632812, 42.455888 ], [ 18.676758, 42.423457 ], [ 18.676758, 42.488302 ], [ 18.632812, 42.455888 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 46.195042 ], [ 19.731445, 46.134170 ], [ 20.170898, 46.164614 ], [ 20.302734, 46.073231 ], [ 20.302734, 46.012224 ], [ 20.522461, 45.920587 ], [ 20.698242, 45.736860 ], [ 20.742188, 45.767523 ], [ 20.742188, 45.490946 ], [ 20.961914, 45.336702 ], [ 21.489258, 45.151053 ], [ 21.313477, 44.995883 ], [ 21.489258, 44.964798 ], [ 21.533203, 44.902578 ], [ 21.357422, 44.902578 ], [ 21.357422, 44.809122 ], [ 21.533203, 44.809122 ], [ 21.665039, 44.684277 ], [ 21.972656, 44.684277 ], [ 22.060547, 44.527843 ], [ 22.148438, 44.527843 ], [ 22.280273, 44.715514 ], [ 22.412109, 44.746733 ], [ 22.763672, 44.590467 ], [ 22.543945, 44.590467 ], [ 22.543945, 44.527843 ], [ 22.456055, 44.527843 ], [ 22.543945, 44.339565 ], [ 22.631836, 44.339565 ], [ 22.675781, 44.245199 ], [ 22.587891, 44.213710 ], [ 22.587891, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.024422 ], [ 22.368164, 44.024422 ], [ 22.324219, 43.802819 ], [ 22.456055, 43.675818 ], [ 22.500000, 43.484812 ], [ 22.631836, 43.452919 ], [ 22.983398, 43.197167 ], [ 22.895508, 43.068888 ], [ 22.719727, 42.972502 ], [ 22.719727, 42.908160 ], [ 22.543945, 42.908160 ], [ 22.412109, 42.843751 ], [ 22.412109, 42.585444 ], [ 22.500000, 42.520700 ], [ 22.500000, 42.423457 ], [ 22.412109, 42.391009 ], [ 22.412109, 42.326062 ], [ 22.324219, 42.326062 ], [ 22.236328, 42.391009 ], [ 22.060547, 42.326062 ], [ 21.884766, 42.358544 ], [ 21.708984, 42.261049 ], [ 21.533203, 42.261049 ], [ 21.489258, 42.358544 ], [ 21.621094, 42.423457 ], [ 21.577148, 42.455888 ], [ 21.708984, 42.553080 ], [ 21.752930, 42.682435 ], [ 21.357422, 42.747012 ], [ 21.401367, 42.875964 ], [ 21.225586, 42.908160 ], [ 21.093750, 43.100983 ], [ 20.961914, 43.100983 ], [ 20.786133, 43.293200 ], [ 20.566406, 43.229195 ], [ 20.654297, 43.100983 ], [ 20.434570, 42.972502 ], [ 20.478516, 42.908160 ], [ 20.302734, 42.843751 ], [ 20.346680, 42.908160 ], [ 20.126953, 42.972502 ], [ 19.907227, 43.133061 ], [ 19.775391, 43.100983 ], [ 19.687500, 43.197167 ], [ 19.555664, 43.197167 ], [ 19.335938, 43.421009 ], [ 19.160156, 43.484812 ], [ 19.160156, 43.548548 ], [ 19.204102, 43.548548 ], [ 19.248047, 43.612217 ], [ 19.379883, 43.580391 ], [ 19.467773, 43.580391 ], [ 19.467773, 43.739352 ], [ 19.204102, 43.961191 ], [ 19.204102, 44.024422 ], [ 19.511719, 43.992815 ], [ 19.599609, 44.024422 ], [ 19.555664, 44.087585 ], [ 19.511719, 44.119142 ], [ 19.467773, 44.119142 ], [ 19.423828, 44.182204 ], [ 19.335938, 44.213710 ], [ 19.335938, 44.276671 ], [ 19.116211, 44.308127 ], [ 19.072266, 44.370987 ], [ 19.116211, 44.527843 ], [ 19.291992, 44.715514 ], [ 19.335938, 44.902578 ], [ 19.160156, 44.933696 ], [ 18.984375, 44.871443 ], [ 18.984375, 44.933696 ], [ 19.116211, 44.964798 ], [ 19.028320, 45.151053 ], [ 19.116211, 45.151053 ], [ 19.116211, 45.213004 ], [ 19.379883, 45.182037 ], [ 19.379883, 45.243953 ], [ 18.940430, 45.398450 ], [ 19.028320, 45.429299 ], [ 18.984375, 45.521744 ], [ 19.072266, 45.552525 ], [ 18.896484, 45.552525 ], [ 18.940430, 45.706179 ], [ 18.808594, 45.828799 ], [ 18.852539, 45.890008 ], [ 18.852539, 45.920587 ], [ 18.896484, 45.920587 ], [ 18.896484, 45.951150 ], [ 18.940430, 45.951150 ], [ 19.072266, 46.042736 ], [ 19.248047, 45.981695 ], [ 19.248047, 46.042736 ], [ 19.379883, 46.042736 ], [ 19.555664, 46.195042 ], [ 19.687500, 46.195042 ] ] ] } } , diff --git a/tests/coalesce-id/out/-z1_--coalesce_--reorder.json b/tests/coalesce-id/out/-z1_--coalesce_--reorder.json index a76b7b016..b1979f7fa 100644 --- a/tests/coalesce-id/out/-z1_--coalesce_--reorder.json +++ b/tests/coalesce-id/out/-z1_--coalesce_--reorder.json @@ -3,6 +3,7 @@ "center": "90.000000,42.525564,1", "description": "tests/coalesce-id/out/-z1_--coalesce_--reorder.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/coalesce-id/out/-z1_--coalesce_--reorder.json.check.mbtiles -z1 --coalesce --reorder tests/coalesce-id/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 1, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "1", "minzoom": "0", @@ -12,7 +13,7 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -64.951172, -67.135829 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -61.083984, -72.369105 ], [ -61.083984, -72.764065 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -63.808594, -74.913708 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -3.076172, -71.272595 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.300781, -70.348318 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 100.810547, -66.548263 ], [ 101.513672, -66.302205 ], [ 102.832031, -65.549367 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.699951 ], [ 164.882812, -70.757966 ], [ 166.113281, -70.728979 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.740234, -75.866646 ], [ 163.388672, -76.679785 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.878906, -84.133963 ], [ 182.724609, -84.448616 ], [ 183.867188, -84.097922 ], [ 184.042969, -84.106953 ], [ 185.537109, -84.532994 ], [ 187.031250, -84.061661 ], [ 187.031250, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.319608 ], [ -186.855469, -84.405941 ], [ -184.042969, -84.151901 ], [ -180.000000, -84.706049 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.957031, -84.106953 ], [ -174.462891, -84.532994 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -162.597656, -85.051129 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.261719, -85.051129 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -95.097656, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ] ] ], [ [ [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ] ] ], [ [ [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 182.373047, 68.204212 ], [ 185.009766, 67.238062 ], [ 184.921875, 66.618122 ], [ 185.625000, 66.337505 ], [ 185.361328, 67.067433 ], [ 187.031250, 66.998844 ], [ 187.031250, 64.282760 ], [ 186.064453, 64.282760 ], [ 185.273438, 64.661517 ], [ 183.955078, 64.923542 ], [ 183.779297, 65.366837 ], [ 182.724609, 65.549367 ], [ 181.582031, 65.403445 ], [ 181.054688, 65.766727 ], [ 181.230469, 66.124962 ], [ 180.087891, 65.874725 ], [ 180.527344, 65.440002 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.341797, 42.293564 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 129.111328, 40.713956 ], [ 128.583984, 40.245992 ], [ 127.880859, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.441406, 39.368279 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 128.144531, 34.957995 ], [ 127.353516, 34.524661 ], [ 126.474609, 34.452218 ], [ 126.298828, 34.957995 ], [ 126.474609, 35.746512 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 125.683594, 37.996163 ], [ 125.507812, 37.788081 ], [ 125.244141, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.628906, 38.134557 ], [ 124.980469, 38.616870 ], [ 125.156250, 38.685510 ], [ 125.068359, 38.891033 ], [ 125.332031, 39.436193 ], [ 125.244141, 39.571822 ], [ 124.716797, 39.707187 ], [ 124.189453, 39.977120 ], [ 122.783203, 39.639538 ], [ 122.080078, 39.232253 ], [ 121.025391, 38.959409 ], [ 121.552734, 39.368279 ], [ 121.289062, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 120.761719, 40.647304 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.300299 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.828125, 37.926868 ], [ 118.828125, 37.509726 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 121.640625, 37.509726 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 120.585938, 36.173357 ], [ 119.619141, 35.675147 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 120.585938, 33.431441 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.531250, 25.799891 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 114.697266, 22.674847 ], [ 114.082031, 22.268764 ], [ 113.730469, 22.593726 ], [ 113.203125, 22.105999 ], [ 111.796875, 21.616579 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.453069 ], [ 108.457031, 21.779905 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.820312, 19.808054 ], [ 105.644531, 19.062118 ], [ 107.314453, 16.720385 ], [ 108.193359, 16.130262 ], [ 108.808594, 15.284185 ], [ 109.248047, 13.496473 ], [ 109.160156, 11.695273 ], [ 107.138672, 10.401378 ], [ 106.347656, 9.535749 ], [ 105.117188, 8.667918 ], [ 104.765625, 9.275622 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 103.447266, 10.660608 ], [ 103.007812, 11.178402 ], [ 102.568359, 12.211180 ], [ 101.601562, 12.726084 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.931641, 12.382928 ], [ 99.140625, 9.968851 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.926427 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 102.304688, 6.140555 ], [ 103.359375, 4.915833 ], [ 103.271484, 3.776559 ], [ 103.447266, 2.811371 ], [ 103.798828, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 101.250000, 3.337954 ], [ 100.634766, 3.951941 ], [ 100.546875, 4.828260 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.019531, 6.489983 ], [ 99.667969, 6.926427 ], [ 99.492188, 7.362467 ], [ 98.437500, 8.407168 ], [ 98.261719, 7.798079 ], [ 98.085938, 8.407168 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.746969 ], [ 98.701172, 11.523088 ], [ 98.349609, 12.039321 ], [ 98.437500, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.734375, 14.859850 ], [ 97.558594, 16.130262 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.482422, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.603516, 19.808054 ], [ 93.076172, 19.890723 ], [ 92.285156, 20.715015 ], [ 92.021484, 21.207459 ], [ 92.021484, 21.779905 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.527344, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.105999 ], [ 89.648438, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.857422, 21.698265 ], [ 88.154297, 21.779905 ], [ 86.923828, 21.534847 ], [ 87.011719, 20.797201 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.636192 ], [ 80.771484, 15.961329 ], [ 80.244141, 15.961329 ], [ 79.980469, 15.199386 ], [ 80.244141, 13.068777 ], [ 79.804688, 12.125264 ], [ 79.804688, 10.401378 ], [ 79.277344, 10.314919 ], [ 78.837891, 9.622414 ], [ 79.189453, 9.275622 ], [ 78.222656, 9.015302 ], [ 77.871094, 8.320212 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.673828, 11.350797 ], [ 74.794922, 12.811801 ], [ 74.443359, 14.689881 ], [ 73.476562, 16.045813 ], [ 72.773438, 19.228177 ], [ 72.773438, 20.468189 ], [ 72.597656, 21.371244 ], [ 71.103516, 20.797201 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.060547, 24.686952 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 63.193359, 27.293689 ], [ 62.753906, 27.449790 ], [ 62.666016, 28.304381 ], [ 61.699219, 28.767659 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.468750, 32.990236 ], [ 60.908203, 33.578015 ], [ 60.468750, 33.724340 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 60.292969, 36.597889 ], [ 59.150391, 37.439974 ], [ 58.359375, 37.579413 ], [ 57.304688, 38.065392 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.996163 ], [ 55.458984, 37.996163 ], [ 54.755859, 37.439974 ], [ 53.876953, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.178654 ], [ 52.470703, 41.836828 ], [ 52.382812, 42.032974 ], [ 52.646484, 42.488302 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.087585 ], [ 50.273438, 44.339565 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.119141, 45.460131 ], [ 52.998047, 45.274886 ], [ 53.173828, 46.255847 ], [ 52.998047, 46.860191 ], [ 52.031250, 46.860191 ], [ 51.152344, 47.100045 ], [ 50.009766, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 49.570312, 40.580585 ], [ 50.009766, 40.580585 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 49.394531, 39.436193 ], [ 49.218750, 39.095963 ], [ 48.779297, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.571822 ], [ 46.494141, 38.822591 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.384766, 38.341656 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.230328 ], [ 44.208984, 37.020098 ], [ 43.857422, 37.300275 ], [ 42.714844, 37.439974 ], [ 42.275391, 37.230328 ], [ 40.605469, 37.160317 ], [ 39.462891, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.949892 ], [ 37.001953, 36.668419 ], [ 36.738281, 36.879621 ], [ 36.650391, 36.315125 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 31.640625, 36.668419 ], [ 30.585938, 36.738884 ], [ 30.322266, 36.315125 ], [ 29.619141, 36.173357 ], [ 28.652344, 36.738884 ], [ 27.597656, 36.668419 ], [ 26.982422, 37.718590 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.771312 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ], [ 38.320312, 40.979898 ], [ 39.462891, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.484375, 41.574361 ], [ 41.660156, 41.967659 ], [ 41.396484, 42.682435 ], [ 40.869141, 43.068888 ], [ 40.253906, 43.133061 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 37.353516, 47.040182 ], [ 36.738281, 46.739861 ], [ 35.771484, 46.679594 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 35.507812, 45.460131 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 35.156250, 44.964798 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.890008 ], [ 33.222656, 46.134170 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 30.322266, 46.073231 ], [ 29.531250, 45.336702 ], [ 29.619141, 45.089036 ], [ 29.091797, 44.840291 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 28.037109, 43.325178 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 28.037109, 41.640078 ], [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.597656, 41.046217 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.847060 ], [ 24.873047, 40.979898 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 23.291016, 39.977120 ], [ 22.763672, 40.513799 ], [ 22.587891, 40.313043 ], [ 22.763672, 39.707187 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 22.412109, 36.456636 ], [ 21.621094, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.977120 ], [ 19.335938, 40.313043 ], [ 19.248047, 40.780541 ], [ 19.511719, 41.771312 ], [ 19.335938, 41.902277 ], [ 18.369141, 42.488302 ], [ 16.875000, 43.261206 ], [ 15.996094, 43.516689 ], [ 15.117188, 44.276671 ], [ 15.292969, 44.339565 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 13.886719, 45.644768 ], [ 13.095703, 45.767523 ], [ 12.304688, 45.398450 ], [ 12.216797, 44.653024 ], [ 12.568359, 44.150681 ], [ 13.447266, 43.644026 ], [ 13.974609, 42.811522 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.083984, 41.771312 ], [ 15.820312, 41.574361 ], [ 17.490234, 40.913513 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.666016, 40.313043 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.611328, 38.891033 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.272689 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 14.941406, 40.178873 ], [ 14.677734, 40.647304 ], [ 13.974609, 40.847060 ], [ 13.623047, 41.244772 ], [ 12.832031, 41.310824 ], [ 11.162109, 42.358544 ], [ 10.458984, 42.940339 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 8.349609, 44.276671 ], [ 7.822266, 43.771094 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 2.021484, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.713956 ], [ 0.087891, 40.178873 ], [ -0.351562, 39.368279 ], [ 0.087891, 38.754083 ], [ -0.527344, 38.341656 ], [ -0.703125, 37.649034 ], [ -1.494141, 37.509726 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.009766, 36.385913 ], [ -5.449219, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.591797, 36.949892 ], [ -7.470703, 37.160317 ], [ -7.910156, 36.879621 ], [ -8.437500, 37.020098 ], [ -8.964844, 36.879621 ], [ -8.789062, 37.718590 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.580078, 38.754083 ], [ -9.492188, 39.436193 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -9.052734, 42.617791 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.394531, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.285156, 47.100045 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 3.779297, 51.672555 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.418930 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ], [ 10.458984, 57.231503 ], [ 10.195312, 56.897004 ], [ 10.283203, 56.656226 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.121060 ], [ 10.283203, 56.218923 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 9.931641, 54.622978 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ], [ 18.544922, 54.724620 ], [ 18.632812, 54.470038 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 21.005859, 56.800878 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 24.521484, 59.489726 ], [ 25.839844, 59.623325 ], [ 26.894531, 59.489726 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 26.191406, 60.457218 ], [ 24.433594, 60.064840 ], [ 22.851562, 59.888937 ], [ 22.236328, 60.413852 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.923542 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 17.753906, 60.673179 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.088515 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.568359, 56.316537 ], [ 11.777344, 57.468589 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 5.273438, 59.667741 ], [ 4.921875, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.458984, 64.510643 ], [ 12.304688, 65.910623 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ] ], [ [ 3.076172, 50.792047 ], [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 3.076172, 50.792047 ] ], [ [ 23.115234, 52.536273 ], [ 23.466797, 51.835778 ], [ 23.466797, 52.052490 ], [ 23.115234, 52.536273 ] ], [ [ 16.523438, 47.517201 ], [ 15.996094, 46.739861 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ] ], [ [ 16.875000, 48.632909 ], [ 16.875000, 48.574790 ], [ 17.050781, 48.864715 ], [ 16.875000, 48.632909 ] ] ], [ [ [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ] ] ], [ [ [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ], [ -66.533203, -54.418930 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -66.533203, -55.229023 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.203125, -55.578345 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.028022 ], [ -73.300781, -53.956086 ], [ -74.707031, -52.802761 ], [ -73.916016, -53.014783 ], [ -72.509766, -53.696706 ], [ -71.191406, -54.059388 ], [ -70.664062, -53.592505 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -130.605469, 54.826008 ], [ -131.132812, 55.229023 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.539595 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -145.986328, 60.500525 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.400365 ], [ -151.787109, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -151.962891, 60.759160 ], [ -152.666016, 60.064840 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -156.621094, 56.992883 ], [ -158.203125, 56.511018 ], [ -158.466797, 56.022948 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.677584 ], [ -163.125000, 54.724620 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.622978 ], [ -162.949219, 55.379110 ], [ -161.806641, 55.924586 ], [ -160.576172, 56.022948 ], [ -160.136719, 56.462490 ], [ -158.730469, 57.040730 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.610107 ], [ -157.587891, 58.355630 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.585436 ], [ -160.400391, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.310768 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -164.707031, 60.283408 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.970703, 62.633770 ], [ -164.619141, 63.154355 ], [ -163.828125, 63.233627 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.015625, 64.244595 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -161.455078, 64.811557 ], [ -162.509766, 64.586185 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -166.904297, 65.109148 ], [ -168.134766, 65.694476 ], [ -166.728516, 66.089364 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.757250 ], [ -163.740234, 67.135829 ], [ -164.443359, 67.642676 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -161.015625, 70.466207 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -147.656250, 70.229744 ], [ -145.722656, 70.140364 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -142.119141, 69.869892 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.496040 ], [ -89.296875, 69.287257 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -72.949219, 62.144976 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.115234, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.576172, 41.836828 ], [ -70.136719, 41.836828 ], [ -70.224609, 42.163403 ], [ -69.960938, 41.967659 ], [ -70.048828, 41.640078 ], [ -70.664062, 41.508577 ], [ -71.191406, 41.508577 ], [ -72.949219, 41.244772 ], [ -73.740234, 40.979898 ], [ -72.246094, 41.178654 ], [ -71.982422, 40.979898 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -74.003906, 40.780541 ], [ -74.267578, 40.513799 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.774769 ], [ -74.970703, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.585938, 39.504041 ], [ -75.146484, 38.822591 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -76.113281, 37.300275 ], [ -75.761719, 37.996163 ], [ -76.289062, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.754083 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -76.289062, 37.020098 ], [ -76.025391, 36.949892 ], [ -75.761719, 35.603719 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.134766, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.277344, 33.211116 ], [ -80.947266, 32.101190 ], [ -81.386719, 31.503629 ], [ -81.562500, 30.751278 ], [ -81.386719, 30.069094 ], [ -80.595703, 28.536275 ], [ -80.595703, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.878994 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.244696 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.792969, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -83.759766, 29.993002 ], [ -84.111328, 30.145127 ], [ -85.166016, 29.688053 ], [ -85.781250, 30.221102 ], [ -86.484375, 30.448674 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.916852 ], [ -89.472656, 29.535230 ], [ -89.296875, 29.305561 ], [ -89.472656, 29.228890 ], [ -89.824219, 29.382175 ], [ -90.175781, 29.152161 ], [ -90.966797, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.548828, 29.611670 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -95.625000, 28.767659 ], [ -96.679688, 28.381735 ], [ -97.207031, 27.839076 ], [ -97.382812, 27.449790 ], [ -97.382812, 26.273714 ], [ -97.207031, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.910156, 22.512557 ], [ -97.734375, 21.943046 ], [ -97.470703, 21.453069 ], [ -97.207031, 20.715015 ], [ -96.591797, 19.973349 ], [ -96.328125, 19.394068 ], [ -95.976562, 18.895893 ], [ -94.921875, 18.562947 ], [ -94.482422, 18.145852 ], [ -91.494141, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.615234, 19.890723 ], [ -90.527344, 20.715015 ], [ -90.351562, 21.043491 ], [ -89.648438, 21.289374 ], [ -88.593750, 21.534847 ], [ -87.099609, 21.616579 ], [ -86.835938, 21.371244 ], [ -86.923828, 20.879343 ], [ -87.451172, 20.303418 ], [ -87.626953, 19.725342 ], [ -87.451172, 19.476950 ], [ -87.890625, 18.312811 ], [ -88.154297, 18.562947 ], [ -88.330078, 18.562947 ], [ -88.330078, 18.396230 ], [ -88.154297, 18.396230 ], [ -88.417969, 16.551962 ], [ -88.769531, 16.299051 ], [ -88.945312, 15.961329 ], [ -88.681641, 15.707663 ], [ -88.593750, 15.876809 ], [ -88.242188, 15.792254 ], [ -87.626953, 15.961329 ], [ -86.484375, 15.792254 ], [ -86.044922, 16.045813 ], [ -85.517578, 15.961329 ], [ -84.990234, 16.045813 ], [ -84.375000, 15.876809 ], [ -83.232422, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.232422, 14.349548 ], [ -83.496094, 14.008696 ], [ -83.583984, 13.581921 ], [ -83.496094, 12.468760 ], [ -83.759766, 11.953349 ], [ -83.671875, 11.695273 ], [ -83.935547, 11.436955 ], [ -83.671875, 11.005904 ], [ -83.408203, 10.401378 ], [ -82.617188, 9.622414 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.015302 ], [ -81.738281, 9.102097 ], [ -81.474609, 8.841651 ], [ -79.980469, 9.362353 ], [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ], [ -77.431641, 8.754795 ], [ -76.904297, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.761719, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.970703, 11.092166 ], [ -74.355469, 11.178402 ], [ -74.267578, 11.350797 ], [ -73.476562, 11.264612 ], [ -72.246094, 12.039321 ], [ -71.806641, 12.468760 ], [ -71.455078, 12.382928 ], [ -71.191406, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.609193 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.718750, 10.487812 ], [ -72.158203, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.188870 ], [ -71.103516, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.211180 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.291016, 10.919618 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.742188, 10.228437 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.908203, 9.449062 ], [ -60.732422, 8.581021 ], [ -60.205078, 8.667918 ], [ -59.765625, 8.407168 ], [ -59.150391, 8.059230 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.216797, 6.053161 ], [ -55.986328, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.107422, 6.053161 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.653080 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.009766, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.472656, -2.108899 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.811371 ], [ -38.583984, -3.688855 ], [ -37.265625, -4.740675 ], [ -36.474609, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.244141, -5.441022 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -35.683594, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.125264 ], [ -38.496094, -12.983148 ], [ -38.759766, -12.983148 ], [ -39.023438, -13.752725 ], [ -38.935547, -15.623037 ], [ -39.287109, -17.811456 ], [ -39.638672, -18.229351 ], [ -39.814453, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.861499 ], [ -41.835938, -22.350076 ], [ -42.011719, -22.917923 ], [ -43.154297, -22.917923 ], [ -44.648438, -23.322080 ], [ -45.439453, -23.725012 ], [ -46.494141, -24.046464 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.691406, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.955078, -28.613459 ], [ -49.658203, -29.152161 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.175612 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -55.722656, -34.741612 ], [ -56.250000, -34.813803 ], [ -57.216797, -34.379713 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.870416 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.865234, -36.879621 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -61.259766, -38.891033 ], [ -62.402344, -38.822591 ], [ -62.138672, -39.368279 ], [ -62.402344, -40.111689 ], [ -62.226562, -40.647304 ], [ -62.753906, -40.979898 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -64.423828, -42.811522 ], [ -65.214844, -43.452919 ], [ -65.390625, -44.465151 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -66.621094, -46.980252 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -68.730469, -50.233152 ], [ -69.169922, -50.680797 ], [ -68.818359, -51.727028 ], [ -68.203125, -52.321911 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.488046 ], [ -73.740234, -52.802761 ], [ -74.970703, -52.214339 ], [ -75.322266, -51.618017 ], [ -75.058594, -51.013755 ], [ -75.498047, -50.345460 ], [ -75.673828, -48.632909 ], [ -75.234375, -47.694974 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.740234, -39.909736 ], [ -73.300781, -39.232253 ], [ -73.564453, -38.272689 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.894531, -33.870416 ], [ -71.455078, -32.398516 ], [ -71.718750, -30.902225 ], [ -71.455078, -30.069094 ], [ -71.542969, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -71.455078, -17.727759 ], [ -71.542969, -17.308688 ], [ -73.476562, -16.299051 ], [ -76.025391, -14.604847 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.496473 ], [ -77.167969, -12.211180 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -80.947266, -5.615986 ], [ -81.474609, -4.653080 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ], [ -79.013672, 1.757537 ], [ -78.662109, 1.845384 ], [ -78.750000, 2.284551 ], [ -78.486328, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.740675 ], [ -77.607422, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.751896 ], [ -77.958984, 7.275292 ], [ -78.222656, 7.536764 ], [ -78.486328, 8.059230 ], [ -78.222656, 8.320212 ], [ -79.189453, 9.015302 ], [ -79.628906, 9.015302 ], [ -79.804688, 8.667918 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.146243 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -80.947266, 7.275292 ], [ -81.123047, 7.885147 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.320212 ], [ -82.880859, 8.841651 ], [ -82.968750, 8.233237 ], [ -83.583984, 8.494105 ], [ -83.759766, 8.667918 ], [ -83.671875, 9.102097 ], [ -83.935547, 9.362353 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -84.990234, 10.141932 ], [ -84.990234, 9.882275 ], [ -85.166016, 9.622414 ], [ -85.341797, 9.882275 ], [ -85.693359, 9.968851 ], [ -85.869141, 10.141932 ], [ -85.693359, 10.833306 ], [ -85.957031, 10.919618 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -87.626953, 13.068777 ], [ -87.451172, 12.983148 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.539062, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.978516, 13.154376 ], [ -88.505859, 13.239945 ], [ -89.296875, 13.496473 ], [ -89.824219, 13.581921 ], [ -90.175781, 13.752725 ], [ -91.318359, 14.008696 ], [ -92.285156, 14.604847 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -96.591797, 15.707663 ], [ -100.898438, 17.224758 ], [ -101.953125, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.974609, 18.812718 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.468750, 20.550509 ], [ -105.556641, 20.879343 ], [ -105.292969, 21.125498 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.943046 ], [ -106.083984, 22.836946 ], [ -106.962891, 23.805450 ], [ -107.929688, 24.607069 ], [ -108.457031, 25.244696 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.878994 ], [ -109.335938, 26.509905 ], [ -110.478516, 27.215556 ], [ -110.654297, 27.916767 ], [ -111.181641, 27.994401 ], [ -112.236328, 28.998532 ], [ -112.324219, 29.305561 ], [ -112.851562, 30.069094 ], [ -113.203125, 30.826781 ], [ -113.203125, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.257812, 31.578535 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.221102 ], [ -113.291016, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -112.763672, 27.839076 ], [ -112.324219, 27.215556 ], [ -111.621094, 26.667096 ], [ -111.357422, 25.799891 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.511719, 23.241346 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.483401 ], [ -112.236328, 24.766785 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.824071 ], [ -113.642578, 26.667096 ], [ -114.521484, 27.215556 ], [ -115.136719, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.257812, 28.149503 ], [ -114.169922, 28.613459 ], [ -114.960938, 29.305561 ], [ -115.576172, 29.611670 ], [ -116.806641, 31.653381 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.476562, 33.797409 ], [ -118.564453, 34.089061 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.673828, 34.669359 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.607422, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.925781, 39.774769 ], [ -124.453125, 40.380028 ], [ -124.189453, 41.178654 ], [ -124.277344, 42.032974 ], [ -124.541016, 42.811522 ], [ -124.189453, 43.771094 ], [ -123.925781, 45.583290 ], [ -124.101562, 46.920255 ], [ -124.716797, 48.224673 ], [ -124.628906, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.398349 ], [ -122.871094, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ] ], [ [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -54.316406, 2.811371 ], [ -54.052734, 3.688855 ] ], [ [ -97.207031, 25.878994 ], [ -98.085938, 26.115986 ], [ -97.558594, 25.878994 ], [ -97.207031, 25.878994 ] ], [ [ -75.146484, 0.000000 ], [ -74.355469, -0.703107 ], [ -74.443359, -0.527336 ], [ -75.146484, 0.000000 ] ], [ [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.873047, -11.005904 ], [ -70.576172, -11.005904 ] ], [ [ -55.107422, 2.547988 ], [ -54.140625, 2.108899 ], [ -54.580078, 2.372369 ], [ -55.107422, 2.547988 ] ] ], [ [ [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.986328, 55.379110 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ] ] ], [ [ [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ], [ -58.095703, -51.890054 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ] ] ], [ [ [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -56.162109, 73.652545 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ] ] ], [ [ [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.310824 ], [ 174.199219, -41.705729 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.695312, -46.255847 ], [ 166.640625, -46.195042 ], [ 166.464844, -45.828799 ], [ 166.992188, -45.089036 ], [ 168.222656, -44.087585 ], [ 168.925781, -43.897892 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.705729 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ] ] ], [ [ [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.358544 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 145.371094, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ] ] ], [ [ [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -186.064453, -40.913513 ], [ -185.800781, -41.310824 ], [ -185.800781, -41.705729 ], [ -186.943359, -43.004647 ], [ -187.031250, -40.913513 ], [ -186.767578, -41.310824 ], [ -186.064453, -40.913513 ] ] ], [ [ [ 172.968750, -34.379713 ], [ 173.496094, -34.957995 ], [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.781250, -36.738884 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 177.363281, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.842286 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.990234, -41.376809 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 173.847656, -39.095963 ], [ 174.550781, -38.754083 ], [ 174.726562, -37.996163 ], [ 174.638672, -37.370157 ], [ 174.287109, -36.527295 ], [ 172.968750, -35.173808 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.379713 ] ] ], [ [ [ -187.031250, -34.379713 ], [ -186.503906, -34.957995 ], [ -185.712891, -35.245619 ], [ -185.449219, -36.102376 ], [ -184.746094, -37.160317 ], [ -184.658203, -36.456636 ], [ -184.218750, -36.738884 ], [ -184.042969, -37.509726 ], [ -183.251953, -37.857507 ], [ -182.636719, -37.926868 ], [ -182.021484, -37.579413 ], [ -181.494141, -37.649034 ], [ -182.109375, -39.164141 ], [ -182.812500, -39.095963 ], [ -183.076172, -39.436193 ], [ -182.988281, -39.842286 ], [ -184.042969, -41.244772 ], [ -184.833984, -41.640078 ], [ -185.009766, -41.376809 ], [ -185.361328, -41.244772 ], [ -184.833984, -40.446947 ], [ -185.185547, -39.842286 ], [ -186.240234, -39.504041 ], [ -186.152344, -39.095963 ], [ -185.449219, -38.754083 ], [ -185.273438, -37.996163 ], [ -185.361328, -37.370157 ], [ -185.712891, -36.527295 ], [ -187.031250, -35.101934 ], [ -187.031250, -34.379713 ] ] ], [ [ [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ] ] ], [ [ [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -113.378906, 68.560384 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ] ] ], [ [ [ 142.470703, -10.660608 ], [ 142.734375, -11.092166 ], [ 142.822266, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.297068 ], [ 143.437500, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 145.195312, -15.368950 ], [ 145.634766, -16.720385 ], [ 145.810547, -16.888660 ], [ 146.074219, -17.727759 ], [ 145.986328, -18.229351 ], [ 146.337891, -18.895893 ], [ 148.798828, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.238281, -21.207459 ], [ 149.677734, -22.268764 ], [ 150.029297, -22.105999 ], [ 150.468750, -22.512557 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.017578, -27.215556 ], [ 153.544922, -28.071980 ], [ 153.457031, -28.921631 ], [ 153.017578, -30.297018 ], [ 152.841797, -31.578535 ], [ 152.402344, -32.546813 ], [ 151.699219, -32.990236 ], [ 150.644531, -35.101934 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.090240 ], [ 149.941406, -37.370157 ], [ 149.414062, -37.718590 ], [ 148.271484, -37.788081 ], [ 147.304688, -38.203655 ], [ 146.250000, -39.027719 ], [ 145.458984, -38.548165 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 144.404297, -38.065392 ], [ 143.525391, -38.754083 ], [ 141.591797, -38.272689 ], [ 140.625000, -37.996163 ], [ 139.921875, -37.370157 ], [ 139.570312, -36.102376 ], [ 139.042969, -35.675147 ], [ 138.076172, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.285156, -34.669359 ], [ 137.460938, -34.089061 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 136.933594, -33.724340 ], [ 136.318359, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.175781, -33.943360 ], [ 134.560547, -33.211116 ], [ 134.033203, -32.842674 ], [ 134.208984, -32.546813 ], [ 132.978516, -31.952162 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.428663 ], [ 129.462891, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.175612 ], [ 124.189453, -32.916485 ], [ 124.013672, -33.431441 ], [ 123.574219, -33.870416 ], [ 122.167969, -33.943360 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.452218 ], [ 119.003906, -34.452218 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.488281, -33.431441 ], [ 115.664062, -33.211116 ], [ 115.751953, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 114.960938, -29.458731 ], [ 114.609375, -28.767659 ], [ 114.609375, -28.459033 ], [ 114.169922, -28.071980 ], [ 113.994141, -27.293689 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 113.906250, -25.878994 ], [ 114.169922, -26.273714 ], [ 114.169922, -25.720735 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.818359, -22.998852 ], [ 113.730469, -22.431340 ], [ 114.082031, -21.698265 ], [ 114.169922, -22.512557 ], [ 114.609375, -21.779905 ], [ 115.400391, -21.453069 ], [ 115.927734, -21.043491 ], [ 116.630859, -20.632784 ], [ 117.158203, -20.550509 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.303418 ], [ 118.828125, -20.220966 ], [ 118.916016, -19.973349 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.646245 ], [ 122.167969, -18.145852 ], [ 122.255859, -17.224758 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.551962 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.604847 ], [ 125.595703, -14.434680 ], [ 125.683594, -14.179186 ], [ 126.123047, -14.264383 ], [ 126.123047, -14.093957 ], [ 127.001953, -13.752725 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 129.814453, -13.581921 ], [ 130.253906, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.468760 ], [ 131.220703, -12.125264 ], [ 131.660156, -12.297068 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 131.748047, -11.264612 ], [ 132.275391, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.505859, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.867351 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 136.230469, -13.239945 ], [ 135.878906, -13.239945 ], [ 136.054688, -13.667338 ], [ 135.351562, -14.689881 ], [ 135.439453, -14.944785 ], [ 136.230469, -15.538376 ], [ 137.021484, -15.792254 ], [ 138.251953, -16.804541 ], [ 139.042969, -17.056785 ], [ 139.218750, -17.308688 ], [ 140.185547, -17.644022 ], [ 140.800781, -17.308688 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.591797, -12.897489 ], [ 141.767578, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.470703, -10.660608 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.554498 ], [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.818359, 63.782486 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ] ] ], [ [ [ -184.306641, 69.900118 ], [ -181.406250, 69.411242 ], [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -181.318359, 64.548440 ], [ -182.636719, 64.623877 ], [ -181.757812, 64.091408 ], [ -181.142578, 63.273182 ], [ -180.703125, 62.995158 ], [ -180.527344, 62.593341 ], [ -180.791016, 62.308794 ], [ -182.636719, 62.552857 ], [ -185.449219, 61.773123 ], [ -186.328125, 61.689872 ], [ -187.031250, 61.354614 ], [ -187.031250, 69.900118 ], [ -186.416016, 69.839622 ], [ -184.306641, 69.900118 ] ] ], [ [ [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 64.599609, 75.758940 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ] ] ], [ [ [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ] ] ], [ [ [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ], [ 145.810547, -4.828260 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 148.007812, -7.972198 ], [ 148.710938, -9.102097 ], [ 149.238281, -9.015302 ], [ 149.238281, -9.449062 ], [ 150.029297, -9.622414 ], [ 149.677734, -9.795678 ], [ 150.732422, -10.228437 ], [ 150.644531, -10.574222 ], [ 149.941406, -10.574222 ], [ 149.765625, -10.314919 ], [ 147.832031, -10.055403 ], [ 146.513672, -8.928487 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ] ] ], [ [ [ 115.400391, 5.528511 ], [ 116.191406, 6.227934 ], [ 116.718750, 6.926427 ], [ 117.070312, 7.013668 ], [ 117.597656, 6.489983 ], [ 117.685547, 6.053161 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.090944 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.091797, -20.385825 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ] ] ], [ [ [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ], [ -3.076172, 57.704147 ], [ -2.021484, 57.704147 ], [ -2.285156, 56.897004 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.673831 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 1.494141, 52.106505 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.548828, 50.513427 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -4.394531, 51.234407 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -5.712891, 56.316537 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.844751 ], [ -5.097656, 58.631217 ], [ -4.218750, 58.585436 ], [ -3.076172, 58.676938 ] ] ], [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.560247 ], [ 178.505859, -18.145852 ], [ 177.890625, -18.229351 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.644022 ], [ 177.626953, -17.308688 ], [ 178.066406, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ -181.669922, -17.308688 ], [ -181.318359, -17.560247 ], [ -181.494141, -18.145852 ], [ -182.109375, -18.229351 ], [ -182.636719, -18.145852 ], [ -182.724609, -17.644022 ], [ -182.373047, -17.308688 ], [ -181.933594, -17.476432 ], [ -181.669922, -17.308688 ] ] ], [ [ [ 180.175781, -15.961329 ], [ 180.000000, -16.467695 ], [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ], [ 180.175781, -15.961329 ] ] ], [ [ [ -179.824219, -15.961329 ], [ -180.000000, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.703125, -16.720385 ], [ -181.318359, -16.972741 ], [ -181.406250, -16.636192 ], [ -180.000000, -16.045813 ], [ -179.824219, -15.961329 ] ] ], [ [ [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -16.130262 ], [ 167.167969, -15.876809 ] ] ], [ [ [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.992188, -15.538376 ], [ 166.728516, -15.623037 ], [ 166.552734, -14.604847 ] ] ], [ [ [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ] ] ], [ [ [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ] ] ], [ [ [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ] ] ], [ [ [ 141.328125, 41.442726 ], [ 141.855469, 40.044438 ], [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.537109, 36.385913 ], [ 140.712891, 35.889050 ], [ 140.185547, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.099609, 33.943360 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.358062 ], [ 130.341797, 33.651208 ], [ 130.869141, 34.234512 ], [ 131.835938, 34.813803 ], [ 132.539062, 35.460670 ], [ 134.560547, 35.746512 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ] ] ], [ [ [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.188870 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 161.279297, -9.102097 ], [ 161.630859, -9.535749 ], [ 161.455078, -9.709057 ], [ 160.751953, -8.841651 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 124.892578, -8.841651 ], [ 125.068359, -8.581021 ], [ 125.859375, -8.407168 ], [ 126.914062, -8.233237 ], [ 127.265625, -8.320212 ], [ 126.914062, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.486328, -9.882275 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ] ] ], [ [ [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ] ] ], [ [ [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 109.423828, -7.710992 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ] ] ], [ [ [ 158.291016, -7.275292 ], [ 158.818359, -7.536764 ], [ 159.609375, -7.972198 ], [ 159.873047, -8.320212 ], [ 159.873047, -8.494105 ], [ 158.554688, -7.710992 ], [ 158.203125, -7.362467 ], [ 158.291016, -7.275292 ] ] ], [ [ [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.060547, -7.013668 ], [ 157.500000, -7.275292 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.100893 ], [ 156.445312, -6.751896 ], [ 156.533203, -6.577303 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 154.599609, -5.003394 ], [ 154.687500, -5.266008 ], [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.566406, -6.839170 ], [ 155.126953, -6.489983 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.090944 ], [ 154.599609, -5.003394 ] ] ], [ [ [ 152.050781, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.790897 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.271484, -5.703448 ], [ 148.359375, -5.353521 ], [ 149.238281, -5.528511 ], [ 149.765625, -5.441022 ], [ 149.941406, -5.003394 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ] ] ], [ [ [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ] ] ], [ [ [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ] ] ], [ [ [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ] ] ], [ [ [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.865234, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.162456 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -2.986927 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ], [ [ [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ] ] ], [ [ [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ] ] ], [ [ [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ] ] ], [ [ [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ] ] ], [ [ [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ] ] ], [ [ [ 141.943359, 45.583290 ], [ 143.085938, 44.527843 ], [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.591797, 44.777936 ], [ 141.943359, 45.583290 ] ] ], [ [ [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ] ] ], [ [ [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ] ] ], [ [ [ -82.353516, 23.241346 ], [ -80.683594, 23.160563 ], [ -79.716797, 22.836946 ], [ -79.365234, 22.431340 ], [ -78.398438, 22.512557 ], [ -76.552734, 21.207459 ], [ -76.201172, 21.289374 ], [ -75.673828, 21.043491 ], [ -75.673828, 20.797201 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.355469, 20.055931 ], [ -74.970703, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.715015 ], [ -78.222656, 20.797201 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.365234, 21.616579 ], [ -80.595703, 22.105999 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.755921 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.111328, 21.943046 ], [ -84.550781, 21.861499 ], [ -84.990234, 21.943046 ], [ -84.462891, 22.268764 ], [ -84.287109, 22.593726 ], [ -83.320312, 22.998852 ], [ -82.353516, 23.241346 ] ] ], [ [ [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.595703, 6.053161 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 123.925781, 6.926427 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 123.222656, 7.449624 ], [ 122.783203, 7.536764 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.275292 ], [ 122.255859, 8.059230 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 124.541016, 8.581021 ], [ 124.716797, 9.015302 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ] ] ], [ [ [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.053161 ], [ 79.804688, 6.839170 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ] ] ], [ [ [ 121.289062, 18.562947 ], [ 121.904297, 18.229351 ], [ 122.167969, 18.479609 ], [ 122.255859, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.431641, 17.140790 ], [ 122.167969, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.199386 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.264383 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.838080 ], [ 123.837891, 13.239945 ], [ 124.101562, 13.068777 ], [ 124.013672, 12.554564 ], [ 123.222656, 13.068777 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.923404 ], [ 120.673828, 14.349548 ], [ 120.937500, 14.604847 ], [ 120.673828, 14.774883 ], [ 120.498047, 14.434680 ], [ 120.058594, 15.029686 ], [ 119.882812, 15.453680 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.322266, 17.644022 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ] ] ], [ [ [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ] ] ], [ [ [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.725342 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.394068 ], [ -69.257812, 19.062118 ], [ -68.818359, 19.062118 ], [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.479609 ], [ -69.960938, 18.479609 ], [ -70.576172, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.015625, 18.312811 ], [ -71.455078, 17.644022 ], [ -71.718750, 17.811456 ], [ -71.718750, 18.062312 ], [ -72.421875, 18.229351 ], [ -73.476562, 18.229351 ], [ -74.003906, 18.062312 ], [ -74.531250, 18.396230 ], [ -74.443359, 18.729502 ], [ -72.773438, 18.479609 ], [ -72.421875, 18.729502 ], [ -72.861328, 19.145168 ], [ -72.861328, 19.559790 ], [ -73.476562, 19.642588 ], [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ] ] ], [ [ [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ] ] ], [ [ [ 180.966797, 71.580532 ], [ 182.373047, 71.272595 ], [ 182.285156, 71.159391 ], [ 181.230469, 70.902268 ], [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.087891, 71.580532 ], [ 180.966797, 71.580532 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ] ] ], [ [ [ 119.443359, 11.436955 ], [ 119.619141, 10.574222 ], [ 119.003906, 10.055403 ], [ 118.476562, 9.362353 ], [ 117.158203, 8.407168 ], [ 117.597656, 9.102097 ], [ 118.916016, 10.401378 ], [ 119.443359, 11.436955 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.783203, 10.314919 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.310547, 10.314919 ], [ 124.013672, 11.264612 ] ] ], [ [ [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ] ] ], [ [ [ 15.468750, 38.272689 ], [ 15.117188, 37.509726 ], [ 15.292969, 37.160317 ], [ 15.029297, 36.668419 ], [ 14.326172, 37.020098 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.468750, 38.272689 ] ] ], [ [ [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ], [ -61.787109, 10.055403 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ] ] ], [ [ [ 124.189453, 12.640338 ], [ 125.156250, 12.554564 ], [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.716797, 10.919618 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.436955 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ] ] ], [ [ [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.599609, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ] ] ], [ [ [ 121.816406, 11.953349 ], [ 122.431641, 11.609193 ], [ 123.046875, 11.609193 ], [ 123.046875, 11.178402 ], [ 122.871094, 10.919618 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ] ] ], [ [ [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ] ] ], [ [ [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.300299 ], [ 8.789062, 38.959409 ], [ 8.349609, 39.232253 ], [ 8.349609, 40.380028 ], [ 8.085938, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.140625, 41.244772 ] ] ], [ [ [ 110.742188, 20.138470 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.311143 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 109.072266, 19.890723 ], [ 110.126953, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ] ] ], [ [ [ 121.464844, 25.324167 ], [ 121.904297, 25.005973 ], [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.146484, 22.836946 ], [ 120.058594, 23.563987 ], [ 120.673828, 24.607069 ], [ 121.464844, 25.324167 ] ] ], [ [ [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ] ] ], [ [ [ 133.857422, 34.379713 ], [ 134.560547, 34.161818 ], [ 134.736328, 33.870416 ], [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 133.242188, 33.358062 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.363281, 33.504759 ], [ 132.890625, 34.089061 ], [ 133.417969, 34.016242 ], [ 133.857422, 34.379713 ] ] ], [ [ [ -171.738281, 63.821288 ], [ -171.123047, 63.626745 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.470145 ], [ -168.750000, 63.312683 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.233627 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ] ] ], [ [ [ -180.000000, 71.524909 ], [ -180.000000, 70.844673 ], [ -181.142578, 70.786910 ], [ -181.318359, 71.102543 ], [ -180.000000, 71.524909 ] ] ], [ [ [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ] ] ], [ [ [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ] ] ], [ [ [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 8.701172, 42.682435 ], [ 9.316406, 43.068888 ] ] ], [ [ [ -77.607422, 18.562947 ], [ -76.904297, 18.479609 ], [ -76.376953, 18.229351 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.255859, 17.727759 ], [ -78.398438, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.562947 ] ] ], [ [ [ 32.695312, 35.173808 ], [ 32.871094, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.837891, 35.317366 ], [ 33.925781, 35.101934 ], [ 32.958984, 34.597042 ], [ 32.431641, 34.741612 ], [ 32.255859, 35.173808 ], [ 32.695312, 35.173808 ] ] ], [ [ [ 23.642578, 35.746512 ], [ 24.169922, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.664062, 35.245619 ], [ 26.279297, 35.317366 ], [ 26.103516, 35.029996 ], [ 24.697266, 34.957995 ], [ 24.697266, 35.101934 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ] ] ], [ [ [ -155.917969, 20.303418 ], [ -155.126953, 19.890723 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -155.917969, 19.394068 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ] ] ], [ [ [ -66.357422, 18.562947 ], [ -65.830078, 18.479609 ], [ -65.654297, 18.229351 ], [ -65.917969, 17.978733 ], [ -67.236328, 17.978733 ], [ -67.324219, 18.396230 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ] ] ], [ [ [ -77.958984, 25.244696 ], [ -77.607422, 24.367114 ], [ -77.607422, 23.805450 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ] ] ], [ [ [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ] ] ], [ [ [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.431641, 26.037042 ], [ -77.343750, 26.588527 ], [ -77.871094, 27.059126 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.961440 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.715015 ], [ -156.445312, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ], [ -158.203125, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ], [ -159.521484, 21.943046 ], [ -159.873047, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ], [ [ [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ] ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -64.951172, -67.135829 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -61.083984, -72.369105 ], [ -61.083984, -72.764065 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -63.808594, -74.913708 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -3.076172, -71.272595 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.300781, -70.348318 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 100.810547, -66.548263 ], [ 101.513672, -66.302205 ], [ 102.832031, -65.549367 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.699951 ], [ 164.882812, -70.757966 ], [ 166.113281, -70.728979 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.740234, -75.866646 ], [ 163.388672, -76.679785 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.878906, -84.133963 ], [ 182.724609, -84.448616 ], [ 183.867188, -84.097922 ], [ 184.042969, -84.106953 ], [ 185.537109, -84.532994 ], [ 187.031250, -84.061661 ], [ 187.031250, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.319608 ], [ -186.855469, -84.405941 ], [ -184.042969, -84.151901 ], [ -180.000000, -84.706049 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.957031, -84.106953 ], [ -174.462891, -84.532994 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -162.597656, -85.051129 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.261719, -85.051129 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -95.097656, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ] ] ], [ [ [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ] ] ], [ [ [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 182.373047, 68.204212 ], [ 185.009766, 67.238062 ], [ 184.921875, 66.618122 ], [ 185.625000, 66.337505 ], [ 185.361328, 67.067433 ], [ 187.031250, 66.998844 ], [ 187.031250, 64.282760 ], [ 186.064453, 64.282760 ], [ 185.273438, 64.661517 ], [ 183.955078, 64.923542 ], [ 183.779297, 65.366837 ], [ 182.724609, 65.549367 ], [ 181.582031, 65.403445 ], [ 181.054688, 65.766727 ], [ 181.230469, 66.124962 ], [ 180.087891, 65.874725 ], [ 180.527344, 65.440002 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.341797, 42.293564 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 129.111328, 40.713956 ], [ 128.583984, 40.245992 ], [ 127.880859, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.441406, 39.368279 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 128.144531, 34.957995 ], [ 127.353516, 34.524661 ], [ 126.474609, 34.452218 ], [ 126.298828, 34.957995 ], [ 126.474609, 35.746512 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 125.683594, 37.996163 ], [ 125.507812, 37.788081 ], [ 125.244141, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.628906, 38.134557 ], [ 124.980469, 38.616870 ], [ 125.156250, 38.685510 ], [ 125.068359, 38.891033 ], [ 125.332031, 39.436193 ], [ 125.244141, 39.571822 ], [ 124.716797, 39.707187 ], [ 124.189453, 39.977120 ], [ 122.783203, 39.639538 ], [ 122.080078, 39.232253 ], [ 121.025391, 38.959409 ], [ 121.552734, 39.368279 ], [ 121.289062, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 120.761719, 40.647304 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.300299 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.828125, 37.926868 ], [ 118.828125, 37.509726 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 121.640625, 37.509726 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 120.585938, 36.173357 ], [ 119.619141, 35.675147 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 120.585938, 33.431441 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.531250, 25.799891 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 114.697266, 22.674847 ], [ 114.082031, 22.268764 ], [ 113.730469, 22.593726 ], [ 113.203125, 22.105999 ], [ 111.796875, 21.616579 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.453069 ], [ 108.457031, 21.779905 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.820312, 19.808054 ], [ 105.644531, 19.062118 ], [ 107.314453, 16.720385 ], [ 108.193359, 16.130262 ], [ 108.808594, 15.284185 ], [ 109.248047, 13.496473 ], [ 109.160156, 11.695273 ], [ 107.138672, 10.401378 ], [ 106.347656, 9.535749 ], [ 105.117188, 8.667918 ], [ 104.765625, 9.275622 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 103.447266, 10.660608 ], [ 103.007812, 11.178402 ], [ 102.568359, 12.211180 ], [ 101.601562, 12.726084 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.931641, 12.382928 ], [ 99.140625, 9.968851 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.926427 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 102.304688, 6.140555 ], [ 103.359375, 4.915833 ], [ 103.271484, 3.776559 ], [ 103.447266, 2.811371 ], [ 103.798828, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 101.250000, 3.337954 ], [ 100.634766, 3.951941 ], [ 100.546875, 4.828260 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.019531, 6.489983 ], [ 99.667969, 6.926427 ], [ 99.492188, 7.362467 ], [ 98.437500, 8.407168 ], [ 98.261719, 7.798079 ], [ 98.085938, 8.407168 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.746969 ], [ 98.701172, 11.523088 ], [ 98.349609, 12.039321 ], [ 98.437500, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.734375, 14.859850 ], [ 97.558594, 16.130262 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.482422, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.603516, 19.808054 ], [ 93.076172, 19.890723 ], [ 92.285156, 20.715015 ], [ 92.021484, 21.207459 ], [ 92.021484, 21.779905 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.527344, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.105999 ], [ 89.648438, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.857422, 21.698265 ], [ 88.154297, 21.779905 ], [ 86.923828, 21.534847 ], [ 87.011719, 20.797201 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.636192 ], [ 80.771484, 15.961329 ], [ 80.244141, 15.961329 ], [ 79.980469, 15.199386 ], [ 80.244141, 13.068777 ], [ 79.804688, 12.125264 ], [ 79.804688, 10.401378 ], [ 79.277344, 10.314919 ], [ 78.837891, 9.622414 ], [ 79.189453, 9.275622 ], [ 78.222656, 9.015302 ], [ 77.871094, 8.320212 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.673828, 11.350797 ], [ 74.794922, 12.811801 ], [ 74.443359, 14.689881 ], [ 73.476562, 16.045813 ], [ 72.773438, 19.228177 ], [ 72.773438, 20.468189 ], [ 72.597656, 21.371244 ], [ 71.103516, 20.797201 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.060547, 24.686952 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 63.193359, 27.293689 ], [ 62.753906, 27.449790 ], [ 62.666016, 28.304381 ], [ 61.699219, 28.767659 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.468750, 32.990236 ], [ 60.908203, 33.578015 ], [ 60.468750, 33.724340 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 60.292969, 36.597889 ], [ 59.150391, 37.439974 ], [ 58.359375, 37.579413 ], [ 57.304688, 38.065392 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.996163 ], [ 55.458984, 37.996163 ], [ 54.755859, 37.439974 ], [ 53.876953, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.178654 ], [ 52.470703, 41.836828 ], [ 52.382812, 42.032974 ], [ 52.646484, 42.488302 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.087585 ], [ 50.273438, 44.339565 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.119141, 45.460131 ], [ 52.998047, 45.274886 ], [ 53.173828, 46.255847 ], [ 52.998047, 46.860191 ], [ 52.031250, 46.860191 ], [ 51.152344, 47.100045 ], [ 50.009766, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 49.570312, 40.580585 ], [ 50.009766, 40.580585 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 49.394531, 39.436193 ], [ 49.218750, 39.095963 ], [ 48.779297, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.571822 ], [ 46.494141, 38.822591 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.384766, 38.341656 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.230328 ], [ 44.208984, 37.020098 ], [ 43.857422, 37.300275 ], [ 42.714844, 37.439974 ], [ 42.275391, 37.230328 ], [ 40.605469, 37.160317 ], [ 39.462891, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.949892 ], [ 37.001953, 36.668419 ], [ 36.738281, 36.879621 ], [ 36.650391, 36.315125 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 31.640625, 36.668419 ], [ 30.585938, 36.738884 ], [ 30.322266, 36.315125 ], [ 29.619141, 36.173357 ], [ 28.652344, 36.738884 ], [ 27.597656, 36.668419 ], [ 26.982422, 37.718590 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.771312 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ], [ 38.320312, 40.979898 ], [ 39.462891, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.484375, 41.574361 ], [ 41.660156, 41.967659 ], [ 41.396484, 42.682435 ], [ 40.869141, 43.068888 ], [ 40.253906, 43.133061 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 37.353516, 47.040182 ], [ 36.738281, 46.739861 ], [ 35.771484, 46.679594 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 35.507812, 45.460131 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 35.156250, 44.964798 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.890008 ], [ 33.222656, 46.134170 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 30.322266, 46.073231 ], [ 29.531250, 45.336702 ], [ 29.619141, 45.089036 ], [ 29.091797, 44.840291 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 28.037109, 43.325178 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 28.037109, 41.640078 ], [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.597656, 41.046217 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.847060 ], [ 24.873047, 40.979898 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 23.291016, 39.977120 ], [ 22.763672, 40.513799 ], [ 22.587891, 40.313043 ], [ 22.763672, 39.707187 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 22.412109, 36.456636 ], [ 21.621094, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.977120 ], [ 19.335938, 40.313043 ], [ 19.248047, 40.780541 ], [ 19.511719, 41.771312 ], [ 19.335938, 41.902277 ], [ 18.369141, 42.488302 ], [ 16.875000, 43.261206 ], [ 15.996094, 43.516689 ], [ 15.117188, 44.276671 ], [ 15.292969, 44.339565 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 13.886719, 45.644768 ], [ 13.095703, 45.767523 ], [ 12.304688, 45.398450 ], [ 12.216797, 44.653024 ], [ 12.568359, 44.150681 ], [ 13.447266, 43.644026 ], [ 13.974609, 42.811522 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.083984, 41.771312 ], [ 15.820312, 41.574361 ], [ 17.490234, 40.913513 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.666016, 40.313043 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.611328, 38.891033 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.272689 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 14.941406, 40.178873 ], [ 14.677734, 40.647304 ], [ 13.974609, 40.847060 ], [ 13.623047, 41.244772 ], [ 12.832031, 41.310824 ], [ 11.162109, 42.358544 ], [ 10.458984, 42.940339 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 8.349609, 44.276671 ], [ 7.822266, 43.771094 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 2.021484, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.713956 ], [ 0.087891, 40.178873 ], [ -0.351562, 39.368279 ], [ 0.087891, 38.754083 ], [ -0.527344, 38.341656 ], [ -0.703125, 37.649034 ], [ -1.494141, 37.509726 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.009766, 36.385913 ], [ -5.449219, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.591797, 36.949892 ], [ -7.470703, 37.160317 ], [ -7.910156, 36.879621 ], [ -8.437500, 37.020098 ], [ -8.964844, 36.879621 ], [ -8.789062, 37.718590 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.580078, 38.754083 ], [ -9.492188, 39.436193 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -9.052734, 42.617791 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.394531, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.285156, 47.100045 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 3.779297, 51.672555 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.418930 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ], [ 10.458984, 57.231503 ], [ 10.195312, 56.897004 ], [ 10.283203, 56.656226 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.121060 ], [ 10.283203, 56.218923 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 9.931641, 54.622978 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ], [ 18.544922, 54.724620 ], [ 18.632812, 54.470038 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 21.005859, 56.800878 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 24.521484, 59.489726 ], [ 25.839844, 59.623325 ], [ 26.894531, 59.489726 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 26.191406, 60.457218 ], [ 24.433594, 60.064840 ], [ 22.851562, 59.888937 ], [ 22.236328, 60.413852 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.923542 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 17.753906, 60.673179 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.088515 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.568359, 56.316537 ], [ 11.777344, 57.468589 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 5.273438, 59.667741 ], [ 4.921875, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.458984, 64.510643 ], [ 12.304688, 65.910623 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ] ], [ [ 3.076172, 50.792047 ], [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 3.076172, 50.792047 ] ], [ [ 23.115234, 52.536273 ], [ 23.466797, 51.835778 ], [ 23.466797, 52.052490 ], [ 23.115234, 52.536273 ] ], [ [ 16.523438, 47.517201 ], [ 15.996094, 46.739861 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ] ] ], [ [ [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ] ] ], [ [ [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ], [ -66.533203, -54.418930 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -66.533203, -55.229023 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.203125, -55.578345 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.028022 ], [ -73.300781, -53.956086 ], [ -74.707031, -52.802761 ], [ -73.916016, -53.014783 ], [ -72.509766, -53.696706 ], [ -71.191406, -54.059388 ], [ -70.664062, -53.592505 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -130.605469, 54.826008 ], [ -131.132812, 55.229023 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.539595 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -145.986328, 60.500525 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.400365 ], [ -151.787109, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -151.962891, 60.759160 ], [ -152.666016, 60.064840 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -156.621094, 56.992883 ], [ -158.203125, 56.511018 ], [ -158.466797, 56.022948 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.677584 ], [ -163.125000, 54.724620 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.622978 ], [ -162.949219, 55.379110 ], [ -161.806641, 55.924586 ], [ -160.576172, 56.022948 ], [ -160.136719, 56.462490 ], [ -158.730469, 57.040730 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.610107 ], [ -157.587891, 58.355630 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.585436 ], [ -160.400391, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.310768 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -164.707031, 60.283408 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.970703, 62.633770 ], [ -164.619141, 63.154355 ], [ -163.828125, 63.233627 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.015625, 64.244595 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -161.455078, 64.811557 ], [ -162.509766, 64.586185 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -166.904297, 65.109148 ], [ -168.134766, 65.694476 ], [ -166.728516, 66.089364 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.757250 ], [ -163.740234, 67.135829 ], [ -164.443359, 67.642676 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -161.015625, 70.466207 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -147.656250, 70.229744 ], [ -145.722656, 70.140364 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -142.119141, 69.869892 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.496040 ], [ -89.296875, 69.287257 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -72.949219, 62.144976 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.115234, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.576172, 41.836828 ], [ -70.136719, 41.836828 ], [ -70.224609, 42.163403 ], [ -69.960938, 41.967659 ], [ -70.048828, 41.640078 ], [ -70.664062, 41.508577 ], [ -71.191406, 41.508577 ], [ -72.949219, 41.244772 ], [ -73.740234, 40.979898 ], [ -72.246094, 41.178654 ], [ -71.982422, 40.979898 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -74.003906, 40.780541 ], [ -74.267578, 40.513799 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.774769 ], [ -74.970703, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.585938, 39.504041 ], [ -75.146484, 38.822591 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -76.113281, 37.300275 ], [ -75.761719, 37.996163 ], [ -76.289062, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.754083 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -76.289062, 37.020098 ], [ -76.025391, 36.949892 ], [ -75.761719, 35.603719 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.134766, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.277344, 33.211116 ], [ -80.947266, 32.101190 ], [ -81.386719, 31.503629 ], [ -81.562500, 30.751278 ], [ -81.386719, 30.069094 ], [ -80.595703, 28.536275 ], [ -80.595703, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.878994 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.244696 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.792969, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -83.759766, 29.993002 ], [ -84.111328, 30.145127 ], [ -85.166016, 29.688053 ], [ -85.781250, 30.221102 ], [ -86.484375, 30.448674 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.916852 ], [ -89.472656, 29.535230 ], [ -89.296875, 29.305561 ], [ -89.472656, 29.228890 ], [ -89.824219, 29.382175 ], [ -90.175781, 29.152161 ], [ -90.966797, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.548828, 29.611670 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -95.625000, 28.767659 ], [ -96.679688, 28.381735 ], [ -97.207031, 27.839076 ], [ -97.382812, 27.449790 ], [ -97.382812, 26.273714 ], [ -97.207031, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.910156, 22.512557 ], [ -97.734375, 21.943046 ], [ -97.470703, 21.453069 ], [ -97.207031, 20.715015 ], [ -96.591797, 19.973349 ], [ -96.328125, 19.394068 ], [ -95.976562, 18.895893 ], [ -94.921875, 18.562947 ], [ -94.482422, 18.145852 ], [ -91.494141, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.615234, 19.890723 ], [ -90.527344, 20.715015 ], [ -90.351562, 21.043491 ], [ -89.648438, 21.289374 ], [ -88.593750, 21.534847 ], [ -87.099609, 21.616579 ], [ -86.835938, 21.371244 ], [ -86.923828, 20.879343 ], [ -87.451172, 20.303418 ], [ -87.626953, 19.725342 ], [ -87.451172, 19.476950 ], [ -87.890625, 18.312811 ], [ -88.154297, 18.562947 ], [ -88.330078, 18.562947 ], [ -88.330078, 18.396230 ], [ -88.154297, 18.396230 ], [ -88.417969, 16.551962 ], [ -88.769531, 16.299051 ], [ -88.945312, 15.961329 ], [ -88.681641, 15.707663 ], [ -88.593750, 15.876809 ], [ -88.242188, 15.792254 ], [ -87.626953, 15.961329 ], [ -86.484375, 15.792254 ], [ -86.044922, 16.045813 ], [ -85.517578, 15.961329 ], [ -84.990234, 16.045813 ], [ -84.375000, 15.876809 ], [ -83.232422, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.232422, 14.349548 ], [ -83.496094, 14.008696 ], [ -83.583984, 13.581921 ], [ -83.496094, 12.468760 ], [ -83.759766, 11.953349 ], [ -83.671875, 11.695273 ], [ -83.935547, 11.436955 ], [ -83.671875, 11.005904 ], [ -83.408203, 10.401378 ], [ -82.617188, 9.622414 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.015302 ], [ -81.738281, 9.102097 ], [ -81.474609, 8.841651 ], [ -79.980469, 9.362353 ], [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ], [ -77.431641, 8.754795 ], [ -76.904297, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.761719, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.970703, 11.092166 ], [ -74.355469, 11.178402 ], [ -74.267578, 11.350797 ], [ -73.476562, 11.264612 ], [ -72.246094, 12.039321 ], [ -71.806641, 12.468760 ], [ -71.455078, 12.382928 ], [ -71.191406, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.609193 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.718750, 10.487812 ], [ -72.158203, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.188870 ], [ -71.103516, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.211180 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.291016, 10.919618 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.742188, 10.228437 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.908203, 9.449062 ], [ -60.732422, 8.581021 ], [ -60.205078, 8.667918 ], [ -59.765625, 8.407168 ], [ -59.150391, 8.059230 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.216797, 6.053161 ], [ -55.986328, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.107422, 6.053161 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.653080 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.009766, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.472656, -2.108899 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.811371 ], [ -38.583984, -3.688855 ], [ -37.265625, -4.740675 ], [ -36.474609, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.244141, -5.441022 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -35.683594, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.125264 ], [ -38.496094, -12.983148 ], [ -38.759766, -12.983148 ], [ -39.023438, -13.752725 ], [ -38.935547, -15.623037 ], [ -39.287109, -17.811456 ], [ -39.638672, -18.229351 ], [ -39.814453, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.861499 ], [ -41.835938, -22.350076 ], [ -42.011719, -22.917923 ], [ -43.154297, -22.917923 ], [ -44.648438, -23.322080 ], [ -45.439453, -23.725012 ], [ -46.494141, -24.046464 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.691406, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.955078, -28.613459 ], [ -49.658203, -29.152161 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.175612 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -55.722656, -34.741612 ], [ -56.250000, -34.813803 ], [ -57.216797, -34.379713 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.870416 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.865234, -36.879621 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -61.259766, -38.891033 ], [ -62.402344, -38.822591 ], [ -62.138672, -39.368279 ], [ -62.402344, -40.111689 ], [ -62.226562, -40.647304 ], [ -62.753906, -40.979898 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -64.423828, -42.811522 ], [ -65.214844, -43.452919 ], [ -65.390625, -44.465151 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -66.621094, -46.980252 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -68.730469, -50.233152 ], [ -69.169922, -50.680797 ], [ -68.818359, -51.727028 ], [ -68.203125, -52.321911 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.488046 ], [ -73.740234, -52.802761 ], [ -74.970703, -52.214339 ], [ -75.322266, -51.618017 ], [ -75.058594, -51.013755 ], [ -75.498047, -50.345460 ], [ -75.673828, -48.632909 ], [ -75.234375, -47.694974 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.740234, -39.909736 ], [ -73.300781, -39.232253 ], [ -73.564453, -38.272689 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.894531, -33.870416 ], [ -71.455078, -32.398516 ], [ -71.718750, -30.902225 ], [ -71.455078, -30.069094 ], [ -71.542969, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -71.455078, -17.727759 ], [ -71.542969, -17.308688 ], [ -73.476562, -16.299051 ], [ -76.025391, -14.604847 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.496473 ], [ -77.167969, -12.211180 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -80.947266, -5.615986 ], [ -81.474609, -4.653080 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ], [ -79.013672, 1.757537 ], [ -78.662109, 1.845384 ], [ -78.750000, 2.284551 ], [ -78.486328, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.740675 ], [ -77.607422, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.751896 ], [ -77.958984, 7.275292 ], [ -78.222656, 7.536764 ], [ -78.486328, 8.059230 ], [ -78.222656, 8.320212 ], [ -79.189453, 9.015302 ], [ -79.628906, 9.015302 ], [ -79.804688, 8.667918 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.146243 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -80.947266, 7.275292 ], [ -81.123047, 7.885147 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.320212 ], [ -82.880859, 8.841651 ], [ -82.968750, 8.233237 ], [ -83.583984, 8.494105 ], [ -83.759766, 8.667918 ], [ -83.671875, 9.102097 ], [ -83.935547, 9.362353 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -84.990234, 10.141932 ], [ -84.990234, 9.882275 ], [ -85.166016, 9.622414 ], [ -85.341797, 9.882275 ], [ -85.693359, 9.968851 ], [ -85.869141, 10.141932 ], [ -85.693359, 10.833306 ], [ -85.957031, 10.919618 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -87.626953, 13.068777 ], [ -87.451172, 12.983148 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.539062, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.978516, 13.154376 ], [ -88.505859, 13.239945 ], [ -89.296875, 13.496473 ], [ -89.824219, 13.581921 ], [ -90.175781, 13.752725 ], [ -91.318359, 14.008696 ], [ -92.285156, 14.604847 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -96.591797, 15.707663 ], [ -100.898438, 17.224758 ], [ -101.953125, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.974609, 18.812718 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.468750, 20.550509 ], [ -105.556641, 20.879343 ], [ -105.292969, 21.125498 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.943046 ], [ -106.083984, 22.836946 ], [ -106.962891, 23.805450 ], [ -107.929688, 24.607069 ], [ -108.457031, 25.244696 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.878994 ], [ -109.335938, 26.509905 ], [ -110.478516, 27.215556 ], [ -110.654297, 27.916767 ], [ -111.181641, 27.994401 ], [ -112.236328, 28.998532 ], [ -112.324219, 29.305561 ], [ -112.851562, 30.069094 ], [ -113.203125, 30.826781 ], [ -113.203125, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.257812, 31.578535 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.221102 ], [ -113.291016, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -112.763672, 27.839076 ], [ -112.324219, 27.215556 ], [ -111.621094, 26.667096 ], [ -111.357422, 25.799891 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.511719, 23.241346 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.483401 ], [ -112.236328, 24.766785 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.824071 ], [ -113.642578, 26.667096 ], [ -114.521484, 27.215556 ], [ -115.136719, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.257812, 28.149503 ], [ -114.169922, 28.613459 ], [ -114.960938, 29.305561 ], [ -115.576172, 29.611670 ], [ -116.806641, 31.653381 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.476562, 33.797409 ], [ -118.564453, 34.089061 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.673828, 34.669359 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.607422, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.925781, 39.774769 ], [ -124.453125, 40.380028 ], [ -124.189453, 41.178654 ], [ -124.277344, 42.032974 ], [ -124.541016, 42.811522 ], [ -124.189453, 43.771094 ], [ -123.925781, 45.583290 ], [ -124.101562, 46.920255 ], [ -124.716797, 48.224673 ], [ -124.628906, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.398349 ], [ -122.871094, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ] ], [ [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -54.316406, 2.811371 ], [ -54.052734, 3.688855 ] ], [ [ -97.207031, 25.878994 ], [ -98.085938, 26.115986 ], [ -97.558594, 25.878994 ], [ -97.207031, 25.878994 ] ], [ [ -75.146484, 0.000000 ], [ -74.355469, -0.703107 ], [ -74.443359, -0.527336 ], [ -75.146484, 0.000000 ] ], [ [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.873047, -11.005904 ], [ -70.576172, -11.005904 ] ] ], [ [ [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.986328, 55.379110 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ] ] ], [ [ [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ], [ -58.095703, -51.890054 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ] ] ], [ [ [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -56.162109, 73.652545 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ] ] ], [ [ [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.310824 ], [ 174.199219, -41.705729 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.695312, -46.255847 ], [ 166.640625, -46.195042 ], [ 166.464844, -45.828799 ], [ 166.992188, -45.089036 ], [ 168.222656, -44.087585 ], [ 168.925781, -43.897892 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.705729 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ] ] ], [ [ [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.358544 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 145.371094, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ] ] ], [ [ [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -186.064453, -40.913513 ], [ -185.800781, -41.310824 ], [ -185.800781, -41.705729 ], [ -186.943359, -43.004647 ], [ -187.031250, -40.913513 ], [ -186.767578, -41.310824 ], [ -186.064453, -40.913513 ] ] ], [ [ [ 172.968750, -34.379713 ], [ 173.496094, -34.957995 ], [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.781250, -36.738884 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 177.363281, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.842286 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.990234, -41.376809 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 173.847656, -39.095963 ], [ 174.550781, -38.754083 ], [ 174.726562, -37.996163 ], [ 174.638672, -37.370157 ], [ 174.287109, -36.527295 ], [ 172.968750, -35.173808 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.379713 ] ] ], [ [ [ -187.031250, -34.379713 ], [ -186.503906, -34.957995 ], [ -185.712891, -35.245619 ], [ -185.449219, -36.102376 ], [ -184.746094, -37.160317 ], [ -184.658203, -36.456636 ], [ -184.218750, -36.738884 ], [ -184.042969, -37.509726 ], [ -183.251953, -37.857507 ], [ -182.636719, -37.926868 ], [ -182.021484, -37.579413 ], [ -181.494141, -37.649034 ], [ -182.109375, -39.164141 ], [ -182.812500, -39.095963 ], [ -183.076172, -39.436193 ], [ -182.988281, -39.842286 ], [ -184.042969, -41.244772 ], [ -184.833984, -41.640078 ], [ -185.009766, -41.376809 ], [ -185.361328, -41.244772 ], [ -184.833984, -40.446947 ], [ -185.185547, -39.842286 ], [ -186.240234, -39.504041 ], [ -186.152344, -39.095963 ], [ -185.449219, -38.754083 ], [ -185.273438, -37.996163 ], [ -185.361328, -37.370157 ], [ -185.712891, -36.527295 ], [ -187.031250, -35.101934 ], [ -187.031250, -34.379713 ] ] ], [ [ [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ] ] ], [ [ [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -113.378906, 68.560384 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ] ] ], [ [ [ 142.470703, -10.660608 ], [ 142.734375, -11.092166 ], [ 142.822266, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.297068 ], [ 143.437500, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 145.195312, -15.368950 ], [ 145.634766, -16.720385 ], [ 145.810547, -16.888660 ], [ 146.074219, -17.727759 ], [ 145.986328, -18.229351 ], [ 146.337891, -18.895893 ], [ 148.798828, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.238281, -21.207459 ], [ 149.677734, -22.268764 ], [ 150.029297, -22.105999 ], [ 150.468750, -22.512557 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.017578, -27.215556 ], [ 153.544922, -28.071980 ], [ 153.457031, -28.921631 ], [ 153.017578, -30.297018 ], [ 152.841797, -31.578535 ], [ 152.402344, -32.546813 ], [ 151.699219, -32.990236 ], [ 150.644531, -35.101934 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.090240 ], [ 149.941406, -37.370157 ], [ 149.414062, -37.718590 ], [ 148.271484, -37.788081 ], [ 147.304688, -38.203655 ], [ 146.250000, -39.027719 ], [ 145.458984, -38.548165 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 144.404297, -38.065392 ], [ 143.525391, -38.754083 ], [ 141.591797, -38.272689 ], [ 140.625000, -37.996163 ], [ 139.921875, -37.370157 ], [ 139.570312, -36.102376 ], [ 139.042969, -35.675147 ], [ 138.076172, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.285156, -34.669359 ], [ 137.460938, -34.089061 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 136.933594, -33.724340 ], [ 136.318359, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.175781, -33.943360 ], [ 134.560547, -33.211116 ], [ 134.033203, -32.842674 ], [ 134.208984, -32.546813 ], [ 132.978516, -31.952162 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.428663 ], [ 129.462891, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.175612 ], [ 124.189453, -32.916485 ], [ 124.013672, -33.431441 ], [ 123.574219, -33.870416 ], [ 122.167969, -33.943360 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.452218 ], [ 119.003906, -34.452218 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.488281, -33.431441 ], [ 115.664062, -33.211116 ], [ 115.751953, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 114.960938, -29.458731 ], [ 114.609375, -28.767659 ], [ 114.609375, -28.459033 ], [ 114.169922, -28.071980 ], [ 113.994141, -27.293689 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 113.906250, -25.878994 ], [ 114.169922, -26.273714 ], [ 114.169922, -25.720735 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.818359, -22.998852 ], [ 113.730469, -22.431340 ], [ 114.082031, -21.698265 ], [ 114.169922, -22.512557 ], [ 114.609375, -21.779905 ], [ 115.400391, -21.453069 ], [ 115.927734, -21.043491 ], [ 116.630859, -20.632784 ], [ 117.158203, -20.550509 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.303418 ], [ 118.828125, -20.220966 ], [ 118.916016, -19.973349 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.646245 ], [ 122.167969, -18.145852 ], [ 122.255859, -17.224758 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.551962 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.604847 ], [ 125.595703, -14.434680 ], [ 125.683594, -14.179186 ], [ 126.123047, -14.264383 ], [ 126.123047, -14.093957 ], [ 127.001953, -13.752725 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 129.814453, -13.581921 ], [ 130.253906, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.468760 ], [ 131.220703, -12.125264 ], [ 131.660156, -12.297068 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 131.748047, -11.264612 ], [ 132.275391, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.505859, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.867351 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 136.230469, -13.239945 ], [ 135.878906, -13.239945 ], [ 136.054688, -13.667338 ], [ 135.351562, -14.689881 ], [ 135.439453, -14.944785 ], [ 136.230469, -15.538376 ], [ 137.021484, -15.792254 ], [ 138.251953, -16.804541 ], [ 139.042969, -17.056785 ], [ 139.218750, -17.308688 ], [ 140.185547, -17.644022 ], [ 140.800781, -17.308688 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.591797, -12.897489 ], [ 141.767578, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.470703, -10.660608 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.554498 ], [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.818359, 63.782486 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ] ] ], [ [ [ -184.306641, 69.900118 ], [ -181.406250, 69.411242 ], [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -181.318359, 64.548440 ], [ -182.636719, 64.623877 ], [ -181.757812, 64.091408 ], [ -181.142578, 63.273182 ], [ -180.703125, 62.995158 ], [ -180.527344, 62.593341 ], [ -180.791016, 62.308794 ], [ -182.636719, 62.552857 ], [ -185.449219, 61.773123 ], [ -186.328125, 61.689872 ], [ -187.031250, 61.354614 ], [ -187.031250, 69.900118 ], [ -186.416016, 69.839622 ], [ -184.306641, 69.900118 ] ] ], [ [ [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 64.599609, 75.758940 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ] ] ], [ [ [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ] ] ], [ [ [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ], [ 145.810547, -4.828260 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 148.007812, -7.972198 ], [ 148.710938, -9.102097 ], [ 149.238281, -9.015302 ], [ 149.238281, -9.449062 ], [ 150.029297, -9.622414 ], [ 149.677734, -9.795678 ], [ 150.732422, -10.228437 ], [ 150.644531, -10.574222 ], [ 149.941406, -10.574222 ], [ 149.765625, -10.314919 ], [ 147.832031, -10.055403 ], [ 146.513672, -8.928487 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ] ] ], [ [ [ 115.400391, 5.528511 ], [ 116.191406, 6.227934 ], [ 116.718750, 6.926427 ], [ 117.070312, 7.013668 ], [ 117.597656, 6.489983 ], [ 117.685547, 6.053161 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.090944 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.091797, -20.385825 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ] ] ], [ [ [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ], [ -3.076172, 57.704147 ], [ -2.021484, 57.704147 ], [ -2.285156, 56.897004 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.673831 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 1.494141, 52.106505 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.548828, 50.513427 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -4.394531, 51.234407 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -5.712891, 56.316537 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.844751 ], [ -5.097656, 58.631217 ], [ -4.218750, 58.585436 ], [ -3.076172, 58.676938 ] ] ], [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.560247 ], [ 178.505859, -18.145852 ], [ 177.890625, -18.229351 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.644022 ], [ 177.626953, -17.308688 ], [ 178.066406, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ -181.669922, -17.308688 ], [ -181.318359, -17.560247 ], [ -181.494141, -18.145852 ], [ -182.109375, -18.229351 ], [ -182.636719, -18.145852 ], [ -182.724609, -17.644022 ], [ -182.373047, -17.308688 ], [ -181.933594, -17.476432 ], [ -181.669922, -17.308688 ] ] ], [ [ [ 180.175781, -15.961329 ], [ 180.000000, -16.467695 ], [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ], [ 180.175781, -15.961329 ] ] ], [ [ [ -179.824219, -15.961329 ], [ -180.000000, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.703125, -16.720385 ], [ -181.318359, -16.972741 ], [ -181.406250, -16.636192 ], [ -180.000000, -16.045813 ], [ -179.824219, -15.961329 ] ] ], [ [ [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -16.130262 ], [ 167.167969, -15.876809 ] ] ], [ [ [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.992188, -15.538376 ], [ 166.728516, -15.623037 ], [ 166.552734, -14.604847 ] ] ], [ [ [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ] ] ], [ [ [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ] ] ], [ [ [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ] ] ], [ [ [ 141.328125, 41.442726 ], [ 141.855469, 40.044438 ], [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.537109, 36.385913 ], [ 140.712891, 35.889050 ], [ 140.185547, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.099609, 33.943360 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.358062 ], [ 130.341797, 33.651208 ], [ 130.869141, 34.234512 ], [ 131.835938, 34.813803 ], [ 132.539062, 35.460670 ], [ 134.560547, 35.746512 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ] ] ], [ [ [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.188870 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 161.279297, -9.102097 ], [ 161.630859, -9.535749 ], [ 161.455078, -9.709057 ], [ 160.751953, -8.841651 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 124.892578, -8.841651 ], [ 125.068359, -8.581021 ], [ 125.859375, -8.407168 ], [ 126.914062, -8.233237 ], [ 127.265625, -8.320212 ], [ 126.914062, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.486328, -9.882275 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ] ] ], [ [ [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ] ] ], [ [ [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 109.423828, -7.710992 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ] ] ], [ [ [ 158.291016, -7.275292 ], [ 158.818359, -7.536764 ], [ 159.609375, -7.972198 ], [ 159.873047, -8.320212 ], [ 159.873047, -8.494105 ], [ 158.554688, -7.710992 ], [ 158.203125, -7.362467 ], [ 158.291016, -7.275292 ] ] ], [ [ [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.060547, -7.013668 ], [ 157.500000, -7.275292 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.100893 ], [ 156.445312, -6.751896 ], [ 156.533203, -6.577303 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 154.599609, -5.003394 ], [ 154.687500, -5.266008 ], [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.566406, -6.839170 ], [ 155.126953, -6.489983 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.090944 ], [ 154.599609, -5.003394 ] ] ], [ [ [ 152.050781, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.790897 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.271484, -5.703448 ], [ 148.359375, -5.353521 ], [ 149.238281, -5.528511 ], [ 149.765625, -5.441022 ], [ 149.941406, -5.003394 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ] ] ], [ [ [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ] ] ], [ [ [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ] ] ], [ [ [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ] ] ], [ [ [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.865234, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.162456 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -2.986927 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ], [ [ [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ] ] ], [ [ [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ] ] ], [ [ [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ] ] ], [ [ [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ] ] ], [ [ [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ] ] ], [ [ [ 141.943359, 45.583290 ], [ 143.085938, 44.527843 ], [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.591797, 44.777936 ], [ 141.943359, 45.583290 ] ] ], [ [ [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ] ] ], [ [ [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ] ] ], [ [ [ -82.353516, 23.241346 ], [ -80.683594, 23.160563 ], [ -79.716797, 22.836946 ], [ -79.365234, 22.431340 ], [ -78.398438, 22.512557 ], [ -76.552734, 21.207459 ], [ -76.201172, 21.289374 ], [ -75.673828, 21.043491 ], [ -75.673828, 20.797201 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.355469, 20.055931 ], [ -74.970703, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.715015 ], [ -78.222656, 20.797201 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.365234, 21.616579 ], [ -80.595703, 22.105999 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.755921 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.111328, 21.943046 ], [ -84.550781, 21.861499 ], [ -84.990234, 21.943046 ], [ -84.462891, 22.268764 ], [ -84.287109, 22.593726 ], [ -83.320312, 22.998852 ], [ -82.353516, 23.241346 ] ] ], [ [ [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.595703, 6.053161 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 123.925781, 6.926427 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 123.222656, 7.449624 ], [ 122.783203, 7.536764 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.275292 ], [ 122.255859, 8.059230 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 124.541016, 8.581021 ], [ 124.716797, 9.015302 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ] ] ], [ [ [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.053161 ], [ 79.804688, 6.839170 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ] ] ], [ [ [ 121.289062, 18.562947 ], [ 121.904297, 18.229351 ], [ 122.167969, 18.479609 ], [ 122.255859, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.431641, 17.140790 ], [ 122.167969, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.199386 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.264383 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.838080 ], [ 123.837891, 13.239945 ], [ 124.101562, 13.068777 ], [ 124.013672, 12.554564 ], [ 123.222656, 13.068777 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.923404 ], [ 120.673828, 14.349548 ], [ 120.937500, 14.604847 ], [ 120.673828, 14.774883 ], [ 120.498047, 14.434680 ], [ 120.058594, 15.029686 ], [ 119.882812, 15.453680 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.322266, 17.644022 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ] ] ], [ [ [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ] ] ], [ [ [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.725342 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.394068 ], [ -69.257812, 19.062118 ], [ -68.818359, 19.062118 ], [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.479609 ], [ -69.960938, 18.479609 ], [ -70.576172, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.015625, 18.312811 ], [ -71.455078, 17.644022 ], [ -71.718750, 17.811456 ], [ -71.718750, 18.062312 ], [ -72.421875, 18.229351 ], [ -73.476562, 18.229351 ], [ -74.003906, 18.062312 ], [ -74.531250, 18.396230 ], [ -74.443359, 18.729502 ], [ -72.773438, 18.479609 ], [ -72.421875, 18.729502 ], [ -72.861328, 19.145168 ], [ -72.861328, 19.559790 ], [ -73.476562, 19.642588 ], [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ] ] ], [ [ [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ] ] ], [ [ [ 180.966797, 71.580532 ], [ 182.373047, 71.272595 ], [ 182.285156, 71.159391 ], [ 181.230469, 70.902268 ], [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.087891, 71.580532 ], [ 180.966797, 71.580532 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ] ] ], [ [ [ 119.443359, 11.436955 ], [ 119.619141, 10.574222 ], [ 119.003906, 10.055403 ], [ 118.476562, 9.362353 ], [ 117.158203, 8.407168 ], [ 117.597656, 9.102097 ], [ 118.916016, 10.401378 ], [ 119.443359, 11.436955 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.783203, 10.314919 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.310547, 10.314919 ], [ 124.013672, 11.264612 ] ] ], [ [ [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ] ] ], [ [ [ 15.468750, 38.272689 ], [ 15.117188, 37.509726 ], [ 15.292969, 37.160317 ], [ 15.029297, 36.668419 ], [ 14.326172, 37.020098 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.468750, 38.272689 ] ] ], [ [ [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ], [ -61.787109, 10.055403 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ] ] ], [ [ [ 124.189453, 12.640338 ], [ 125.156250, 12.554564 ], [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.716797, 10.919618 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.436955 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ] ] ], [ [ [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.599609, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ] ] ], [ [ [ 121.816406, 11.953349 ], [ 122.431641, 11.609193 ], [ 123.046875, 11.609193 ], [ 123.046875, 11.178402 ], [ 122.871094, 10.919618 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ] ] ], [ [ [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ] ] ], [ [ [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.300299 ], [ 8.789062, 38.959409 ], [ 8.349609, 39.232253 ], [ 8.349609, 40.380028 ], [ 8.085938, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.140625, 41.244772 ] ] ], [ [ [ 110.742188, 20.138470 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.311143 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 109.072266, 19.890723 ], [ 110.126953, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ] ] ], [ [ [ 121.464844, 25.324167 ], [ 121.904297, 25.005973 ], [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.146484, 22.836946 ], [ 120.058594, 23.563987 ], [ 120.673828, 24.607069 ], [ 121.464844, 25.324167 ] ] ], [ [ [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ] ] ], [ [ [ 133.857422, 34.379713 ], [ 134.560547, 34.161818 ], [ 134.736328, 33.870416 ], [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 133.242188, 33.358062 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.363281, 33.504759 ], [ 132.890625, 34.089061 ], [ 133.417969, 34.016242 ], [ 133.857422, 34.379713 ] ] ], [ [ [ -171.738281, 63.821288 ], [ -171.123047, 63.626745 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.470145 ], [ -168.750000, 63.312683 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.233627 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ] ] ], [ [ [ -180.000000, 71.524909 ], [ -180.000000, 70.844673 ], [ -181.142578, 70.786910 ], [ -181.318359, 71.102543 ], [ -180.000000, 71.524909 ] ] ], [ [ [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ] ] ], [ [ [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ] ] ], [ [ [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 8.701172, 42.682435 ], [ 9.316406, 43.068888 ] ] ], [ [ [ -77.607422, 18.562947 ], [ -76.904297, 18.479609 ], [ -76.376953, 18.229351 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.255859, 17.727759 ], [ -78.398438, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.562947 ] ] ], [ [ [ 32.695312, 35.173808 ], [ 32.871094, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.837891, 35.317366 ], [ 33.925781, 35.101934 ], [ 32.958984, 34.597042 ], [ 32.431641, 34.741612 ], [ 32.255859, 35.173808 ], [ 32.695312, 35.173808 ] ] ], [ [ [ 23.642578, 35.746512 ], [ 24.169922, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.664062, 35.245619 ], [ 26.279297, 35.317366 ], [ 26.103516, 35.029996 ], [ 24.697266, 34.957995 ], [ 24.697266, 35.101934 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ] ] ], [ [ [ -155.917969, 20.303418 ], [ -155.126953, 19.890723 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -155.917969, 19.394068 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ] ] ], [ [ [ -66.357422, 18.562947 ], [ -65.830078, 18.479609 ], [ -65.654297, 18.229351 ], [ -65.917969, 17.978733 ], [ -67.236328, 17.978733 ], [ -67.324219, 18.396230 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ] ] ], [ [ [ -77.958984, 25.244696 ], [ -77.607422, 24.367114 ], [ -77.607422, 23.805450 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ] ] ], [ [ [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ] ] ], [ [ [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.431641, 26.037042 ], [ -77.343750, 26.588527 ], [ -77.871094, 27.059126 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.961440 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.715015 ], [ -156.445312, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ], [ -158.203125, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ], [ -159.521484, 21.943046 ], [ -159.873047, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ], [ [ [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ] ] ] ] } } , { "type": "Feature", "id": 1, "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.259766, -5.790897 ], [ 16.787109, -7.188101 ], [ 17.402344, -8.059230 ], [ 18.457031, -7.798079 ], [ 18.984375, -7.972198 ], [ 19.335938, -7.100893 ], [ 19.951172, -7.100893 ], [ 20.039062, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.884766, -8.233237 ], [ 21.796875, -9.449062 ], [ 22.148438, -9.882275 ], [ 22.148438, -11.005904 ], [ 23.378906, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -12.897489 ], [ 21.884766, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.476432 ], [ 21.357422, -17.895114 ], [ 18.896484, -17.727759 ], [ 18.193359, -17.308688 ], [ 13.974609, -17.392579 ], [ 13.447266, -16.888660 ], [ 12.744141, -16.888660 ], [ 11.689453, -17.224758 ], [ 11.601562, -16.636192 ], [ 12.128906, -14.434680 ], [ 12.656250, -13.068777 ], [ 13.623047, -11.953349 ], [ 13.710938, -11.264612 ], [ 13.623047, -10.660608 ], [ 13.359375, -10.314919 ], [ 12.832031, -9.102097 ], [ 13.183594, -8.494105 ], [ 12.656250, -6.926427 ], [ 12.216797, -6.227934 ], [ 12.304688, -6.053161 ], [ 12.656250, -5.878332 ], [ 13.359375, -5.790897 ], [ 16.259766, -5.790897 ] ] ], [ [ [ 12.568359, -4.390229 ], [ 12.919922, -4.740675 ], [ 12.392578, -5.178482 ], [ 12.392578, -5.615986 ], [ 12.128906, -5.703448 ], [ 11.865234, -5.003394 ], [ 12.304688, -4.565474 ], [ 12.568359, -4.390229 ] ] ] ] } } , diff --git a/tests/coalesce-tract/out/-P_--coalesce_--reorder_-z11_-Z11_-y_STATEFP10_-y_COUNTYFP10_-l_merged.json b/tests/coalesce-tract/out/-P_--coalesce_--reorder_-z11_-Z11_-y_STATEFP10_-y_COUNTYFP10_-l_merged.json index 660dcea47..f770998f3 100644 --- a/tests/coalesce-tract/out/-P_--coalesce_--reorder_-z11_-Z11_-y_STATEFP10_-y_COUNTYFP10_-l_merged.json +++ b/tests/coalesce-tract/out/-P_--coalesce_--reorder_-z11_-Z11_-y_STATEFP10_-y_COUNTYFP10_-l_merged.json @@ -3,6 +3,7 @@ "center": "-122.080078,37.649001,11", "description": "tests/coalesce-tract/out/-P_--coalesce_--reorder_-z11_-Z11_-y_STATEFP10_-y_COUNTYFP10_-l_merged.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/coalesce-tract/out/-P_--coalesce_--reorder_-z11_-Z11_-y_STATEFP10_-y_COUNTYFP10_-l_merged.json.check.mbtiles -P --coalesce --reorder -z11 -Z11 -y STATEFP10 -y COUNTYFP10 -l merged tests/coalesce-tract/tl_2010_06001_tract10.json tests/coalesce-tract/tl_2010_06075_tract10.json", "json": "{\"vector_layers\": [ { \"id\": \"merged\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"COUNTYFP10\": \"String\", \"STATEFP10\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"merged\",\"count\": 558,\"geometry\": \"Polygon\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"COUNTYFP10\",\"count\": 2,\"type\": \"string\",\"values\": [\"001\",\"075\"]},{\"attribute\": \"STATEFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]}]}]}}", "maxzoom": "11", "minzoom": "11", @@ -48,7 +49,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "075" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.436576, 37.721306 ], [ -122.430911, 37.721306 ], [ -122.424817, 37.721306 ], [ -122.411942, 37.721306 ], [ -122.404304, 37.721306 ], [ -122.399883, 37.721306 ], [ -122.396235, 37.721306 ], [ -122.383189, 37.721306 ], [ -122.382889, 37.721306 ], [ -122.357826, 37.721306 ], [ -122.340317, 37.721306 ], [ -122.340317, 37.708338 ], [ -122.360401, 37.708338 ], [ -122.371688, 37.708338 ], [ -122.379413, 37.708439 ], [ -122.388983, 37.708338 ], [ -122.392716, 37.708338 ], [ -122.393789, 37.708236 ], [ -122.395120, 37.708372 ], [ -122.401600, 37.708338 ], [ -122.401986, 37.708236 ], [ -122.402415, 37.708338 ], [ -122.404690, 37.708338 ], [ -122.405591, 37.708236 ], [ -122.406492, 37.708338 ], [ -122.407222, 37.708236 ], [ -122.412415, 37.708304 ], [ -122.413402, 37.708338 ], [ -122.414217, 37.708236 ], [ -122.415204, 37.708236 ], [ -122.416234, 37.708338 ], [ -122.418208, 37.708338 ], [ -122.419152, 37.708270 ], [ -122.420096, 37.708236 ], [ -122.423916, 37.708270 ], [ -122.428336, 37.708439 ], [ -122.430911, 37.708236 ], [ -122.433400, 37.708236 ], [ -122.434001, 37.708134 ], [ -122.435417, 37.708134 ], [ -122.435889, 37.708236 ], [ -122.438722, 37.708236 ], [ -122.440481, 37.708372 ], [ -122.440567, 37.708236 ], [ -122.440782, 37.708338 ], [ -122.441297, 37.708338 ], [ -122.442112, 37.708236 ], [ -122.444730, 37.708338 ], [ -122.445416, 37.708236 ], [ -122.449794, 37.708236 ], [ -122.452197, 37.708134 ], [ -122.454000, 37.708236 ], [ -122.462797, 37.708236 ], [ -122.463613, 37.708338 ], [ -122.464085, 37.708236 ], [ -122.464685, 37.708236 ], [ -122.465415, 37.708134 ], [ -122.466316, 37.708134 ], [ -122.466960, 37.708236 ], [ -122.468977, 37.708236 ], [ -122.470908, 37.708236 ], [ -122.471337, 37.708338 ], [ -122.481122, 37.708236 ], [ -122.484899, 37.708338 ], [ -122.485414, 37.708236 ], [ -122.493610, 37.708236 ], [ -122.497816, 37.708134 ], [ -122.502837, 37.708134 ], [ -122.507129, 37.708100 ], [ -122.519531, 37.707896 ], [ -122.522964, 37.707862 ], [ -122.522964, 37.721306 ], [ -122.510691, 37.721306 ], [ -122.485156, 37.721306 ], [ -122.481680, 37.721306 ], [ -122.475071, 37.721306 ], [ -122.472496, 37.721306 ], [ -122.462282, 37.721306 ], [ -122.450652, 37.721306 ], [ -122.448249, 37.721306 ], [ -122.437434, 37.721306 ], [ -122.436576, 37.721306 ] ], [ [ -122.462282, 37.718251 ], [ -122.462668, 37.718217 ], [ -122.454214, 37.718251 ], [ -122.459192, 37.718251 ], [ -122.462282, 37.718251 ] ], [ [ -122.471380, 37.712819 ], [ -122.471294, 37.711733 ], [ -122.471337, 37.712717 ], [ -122.471380, 37.712819 ] ], [ [ -122.448978, 37.718047 ], [ -122.449107, 37.717911 ], [ -122.449579, 37.717131 ], [ -122.448978, 37.718047 ] ], [ [ -122.471595, 37.716146 ], [ -122.471466, 37.716112 ], [ -122.470737, 37.716112 ], [ -122.471595, 37.716146 ] ], [ [ -122.416234, 37.714279 ], [ -122.415977, 37.713838 ], [ -122.415848, 37.713702 ], [ -122.416234, 37.714279 ] ], [ [ -122.440438, 37.717266 ], [ -122.440181, 37.717674 ], [ -122.440224, 37.717640 ], [ -122.440438, 37.717266 ] ], [ [ -122.448592, 37.718421 ], [ -122.448635, 37.718421 ], [ -122.448764, 37.718285 ], [ -122.448592, 37.718421 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "075" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.436576, 37.721306 ], [ -122.430911, 37.721306 ], [ -122.424817, 37.721306 ], [ -122.411942, 37.721306 ], [ -122.404304, 37.721306 ], [ -122.399883, 37.721306 ], [ -122.396235, 37.721306 ], [ -122.383189, 37.721306 ], [ -122.382889, 37.721306 ], [ -122.357826, 37.721306 ], [ -122.340317, 37.721306 ], [ -122.340317, 37.708338 ], [ -122.360401, 37.708338 ], [ -122.371688, 37.708338 ], [ -122.379413, 37.708439 ], [ -122.388983, 37.708338 ], [ -122.392716, 37.708338 ], [ -122.393789, 37.708236 ], [ -122.395120, 37.708372 ], [ -122.401600, 37.708338 ], [ -122.401986, 37.708236 ], [ -122.402415, 37.708338 ], [ -122.404690, 37.708338 ], [ -122.405591, 37.708236 ], [ -122.406492, 37.708338 ], [ -122.407222, 37.708236 ], [ -122.412415, 37.708304 ], [ -122.413402, 37.708338 ], [ -122.414217, 37.708236 ], [ -122.415204, 37.708236 ], [ -122.416234, 37.708338 ], [ -122.418208, 37.708338 ], [ -122.419152, 37.708270 ], [ -122.420096, 37.708236 ], [ -122.423916, 37.708270 ], [ -122.428336, 37.708439 ], [ -122.430911, 37.708236 ], [ -122.433400, 37.708236 ], [ -122.434001, 37.708134 ], [ -122.435417, 37.708134 ], [ -122.435889, 37.708236 ], [ -122.438722, 37.708236 ], [ -122.440481, 37.708372 ], [ -122.440567, 37.708236 ], [ -122.440782, 37.708338 ], [ -122.441297, 37.708338 ], [ -122.442112, 37.708236 ], [ -122.444730, 37.708338 ], [ -122.445416, 37.708236 ], [ -122.449794, 37.708236 ], [ -122.452197, 37.708134 ], [ -122.454000, 37.708236 ], [ -122.462797, 37.708236 ], [ -122.463613, 37.708338 ], [ -122.464085, 37.708236 ], [ -122.464685, 37.708236 ], [ -122.465415, 37.708134 ], [ -122.466316, 37.708134 ], [ -122.466960, 37.708236 ], [ -122.468977, 37.708236 ], [ -122.470908, 37.708236 ], [ -122.471337, 37.708338 ], [ -122.481122, 37.708236 ], [ -122.484899, 37.708338 ], [ -122.485414, 37.708236 ], [ -122.493610, 37.708236 ], [ -122.497816, 37.708134 ], [ -122.502837, 37.708134 ], [ -122.507129, 37.708100 ], [ -122.519531, 37.707896 ], [ -122.522964, 37.707862 ], [ -122.522964, 37.721306 ], [ -122.510691, 37.721306 ], [ -122.485156, 37.721306 ], [ -122.481680, 37.721306 ], [ -122.475071, 37.721306 ], [ -122.472496, 37.721306 ], [ -122.462282, 37.721306 ], [ -122.450652, 37.721306 ], [ -122.448249, 37.721306 ], [ -122.437434, 37.721306 ], [ -122.436576, 37.721306 ] ], [ [ -122.462282, 37.718251 ], [ -122.462668, 37.718217 ], [ -122.454214, 37.718251 ], [ -122.459192, 37.718251 ], [ -122.462282, 37.718251 ] ], [ [ -122.475200, 37.719778 ], [ -122.474685, 37.719167 ], [ -122.474127, 37.718590 ], [ -122.475200, 37.719778 ] ], [ [ -122.471380, 37.712819 ], [ -122.471294, 37.711733 ], [ -122.471337, 37.712717 ], [ -122.471380, 37.712819 ] ], [ [ -122.448978, 37.718047 ], [ -122.449107, 37.717911 ], [ -122.449579, 37.717131 ], [ -122.448978, 37.718047 ] ], [ [ -122.471595, 37.716146 ], [ -122.471466, 37.716112 ], [ -122.470737, 37.716112 ], [ -122.471595, 37.716146 ] ], [ [ -122.416234, 37.714279 ], [ -122.415977, 37.713838 ], [ -122.415848, 37.713702 ], [ -122.416234, 37.714279 ] ], [ [ -122.440438, 37.717266 ], [ -122.440181, 37.717674 ], [ -122.440224, 37.717640 ], [ -122.440438, 37.717266 ] ] ] } } ] } ] } , @@ -56,7 +57,7 @@ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.346711, 37.811038 ], [ -122.355895, 37.835751 ], [ -122.364264, 37.857507 ], [ -122.365294, 37.860218 ], [ -122.340317, 37.860218 ], [ -122.340317, 37.826667 ], [ -122.340317, 37.810733 ], [ -122.340317, 37.800629 ], [ -122.343750, 37.806292 ], [ -122.346711, 37.811038 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "075" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.454000, 37.839038 ], [ -122.445502, 37.842428 ], [ -122.424259, 37.850459 ], [ -122.418680, 37.852526 ], [ -122.419453, 37.857507 ], [ -122.419882, 37.860218 ], [ -122.365294, 37.860218 ], [ -122.364264, 37.857507 ], [ -122.355895, 37.835751 ], [ -122.346883, 37.811445 ], [ -122.346711, 37.811038 ], [ -122.343750, 37.806292 ], [ -122.340317, 37.800629 ], [ -122.340317, 37.715875 ], [ -122.358556, 37.715875 ], [ -122.375636, 37.715875 ], [ -122.398639, 37.715875 ], [ -122.408466, 37.715875 ], [ -122.410741, 37.715875 ], [ -122.427220, 37.715875 ], [ -122.427735, 37.715875 ], [ -122.431726, 37.715875 ], [ -122.436705, 37.715875 ], [ -122.441511, 37.715875 ], [ -122.446575, 37.715875 ], [ -122.449579, 37.715875 ], [ -122.462626, 37.715875 ], [ -122.472324, 37.715875 ], [ -122.485285, 37.715875 ], [ -122.509489, 37.715875 ], [ -122.522964, 37.715875 ], [ -122.522964, 37.789641 ], [ -122.522964, 37.805071 ], [ -122.522964, 37.824735 ], [ -122.519531, 37.825006 ], [ -122.519317, 37.825006 ], [ -122.518501, 37.825311 ], [ -122.517686, 37.825209 ], [ -122.516785, 37.824633 ], [ -122.516098, 37.825243 ], [ -122.511892, 37.824362 ], [ -122.511120, 37.824463 ], [ -122.505198, 37.822904 ], [ -122.505412, 37.822091 ], [ -122.504683, 37.821718 ], [ -122.504168, 37.821006 ], [ -122.503395, 37.821209 ], [ -122.502880, 37.820904 ], [ -122.501507, 37.821718 ], [ -122.501292, 37.821243 ], [ -122.499790, 37.819751 ], [ -122.498975, 37.820260 ], [ -122.499919, 37.821853 ], [ -122.499018, 37.822328 ], [ -122.498846, 37.822362 ], [ -122.496271, 37.822362 ], [ -122.495499, 37.822430 ], [ -122.494812, 37.822735 ], [ -122.494512, 37.823447 ], [ -122.493525, 37.823853 ], [ -122.493224, 37.824633 ], [ -122.492495, 37.824836 ], [ -122.492108, 37.825345 ], [ -122.491422, 37.825752 ], [ -122.491207, 37.826430 ], [ -122.486315, 37.826260 ], [ -122.483525, 37.826735 ], [ -122.482796, 37.825650 ], [ -122.481422, 37.825955 ], [ -122.479362, 37.825548 ], [ -122.479191, 37.825582 ], [ -122.478375, 37.828091 ], [ -122.479663, 37.830531 ], [ -122.479534, 37.830429 ], [ -122.479234, 37.830904 ], [ -122.478805, 37.831175 ], [ -122.478504, 37.831209 ], [ -122.478375, 37.830972 ], [ -122.478290, 37.831243 ], [ -122.478676, 37.831311 ], [ -122.478075, 37.832463 ], [ -122.474170, 37.833378 ], [ -122.473655, 37.831955 ], [ -122.472882, 37.832022 ], [ -122.472281, 37.832124 ], [ -122.468119, 37.833717 ], [ -122.454000, 37.839038 ] ], [ [ -122.438850, 37.733118 ], [ -122.451167, 37.733084 ], [ -122.452326, 37.733050 ], [ -122.438850, 37.733118 ] ], [ [ -122.424173, 37.799510 ], [ -122.435718, 37.798052 ], [ -122.437348, 37.797814 ], [ -122.424173, 37.799510 ] ], [ [ -122.462282, 37.718251 ], [ -122.462668, 37.718217 ], [ -122.454214, 37.718251 ], [ -122.459192, 37.718251 ], [ -122.462282, 37.718251 ] ], [ [ -122.498803, 37.781400 ], [ -122.498546, 37.777533 ], [ -122.498116, 37.771970 ], [ -122.498803, 37.781400 ] ], [ [ -122.428765, 37.738345 ], [ -122.431383, 37.736648 ], [ -122.431383, 37.736614 ], [ -122.429280, 37.737972 ], [ -122.428765, 37.738345 ] ], [ [ -122.390957, 37.752665 ], [ -122.390785, 37.752665 ], [ -122.390699, 37.752665 ], [ -122.381001, 37.753242 ], [ -122.390957, 37.752665 ] ], [ [ -122.465029, 37.788556 ], [ -122.466960, 37.788149 ], [ -122.470951, 37.787233 ], [ -122.465029, 37.788556 ] ], [ [ -122.468505, 37.748967 ], [ -122.472324, 37.748831 ], [ -122.476058, 37.748661 ], [ -122.468505, 37.748967 ] ], [ [ -122.517257, 37.770715 ], [ -122.517257, 37.767831 ], [ -122.517214, 37.766949 ], [ -122.517257, 37.770715 ] ], [ [ -122.392502, 37.760266 ], [ -122.392502, 37.757416 ], [ -122.392459, 37.756466 ], [ -122.392502, 37.760266 ] ], [ [ -122.424688, 37.785368 ], [ -122.425632, 37.789981 ], [ -122.425075, 37.787132 ], [ -122.424688, 37.785368 ] ], [ [ -122.485113, 37.723988 ], [ -122.485156, 37.723954 ], [ -122.485156, 37.721306 ], [ -122.485113, 37.723988 ] ], [ [ -122.407908, 37.794084 ], [ -122.408466, 37.796729 ], [ -122.407565, 37.792253 ], [ -122.407908, 37.794084 ] ], [ [ -122.437177, 37.721578 ], [ -122.435417, 37.723920 ], [ -122.437220, 37.721578 ], [ -122.437177, 37.721578 ] ], [ [ -122.449150, 37.772580 ], [ -122.452455, 37.772207 ], [ -122.454000, 37.772004 ], [ -122.449150, 37.772580 ] ], [ [ -122.404947, 37.781502 ], [ -122.407179, 37.779772 ], [ -122.407694, 37.779331 ], [ -122.404947, 37.781502 ] ], [ [ -122.418251, 37.748186 ], [ -122.416019, 37.748254 ], [ -122.418337, 37.748220 ], [ -122.418251, 37.748186 ] ], [ [ -122.405076, 37.785131 ], [ -122.404304, 37.784486 ], [ -122.402716, 37.783265 ], [ -122.405076, 37.785131 ] ], [ [ -122.461424, 37.751478 ], [ -122.460437, 37.749781 ], [ -122.461081, 37.750969 ], [ -122.461424, 37.751478 ] ], [ [ -122.400999, 37.774819 ], [ -122.398767, 37.776583 ], [ -122.400956, 37.774887 ], [ -122.400999, 37.774819 ] ], [ [ -122.489319, 37.783706 ], [ -122.490392, 37.783672 ], [ -122.493525, 37.783503 ], [ -122.489319, 37.783706 ] ], [ [ -122.478719, 37.786046 ], [ -122.484083, 37.785809 ], [ -122.483010, 37.785843 ], [ -122.478719, 37.786046 ] ], [ [ -122.414389, 37.732439 ], [ -122.413788, 37.732677 ], [ -122.412114, 37.733458 ], [ -122.414389, 37.732439 ] ], [ [ -122.438250, 37.748695 ], [ -122.440696, 37.748661 ], [ -122.441039, 37.748627 ], [ -122.438250, 37.748695 ] ], [ [ -122.479277, 37.778415 ], [ -122.479148, 37.776549 ], [ -122.479019, 37.775226 ], [ -122.479277, 37.778415 ] ], [ [ -122.446704, 37.794423 ], [ -122.446318, 37.791880 ], [ -122.446189, 37.791202 ], [ -122.446704, 37.794423 ] ], [ [ -122.487860, 37.765049 ], [ -122.486916, 37.765049 ], [ -122.485971, 37.765117 ], [ -122.487860, 37.765049 ] ], [ [ -122.413702, 37.748288 ], [ -122.412672, 37.748322 ], [ -122.413831, 37.748322 ], [ -122.414389, 37.748288 ], [ -122.413702, 37.748288 ] ], [ [ -122.380271, 37.738447 ], [ -122.380142, 37.738311 ], [ -122.379112, 37.737700 ], [ -122.380271, 37.738447 ] ], [ [ -122.457862, 37.739974 ], [ -122.456274, 37.740788 ], [ -122.457733, 37.740076 ], [ -122.457862, 37.739974 ] ], [ [ -122.451510, 37.723105 ], [ -122.449622, 37.723037 ], [ -122.450695, 37.723105 ], [ -122.451510, 37.723105 ] ], [ [ -122.400999, 37.774819 ], [ -122.400613, 37.774480 ], [ -122.399454, 37.773598 ], [ -122.400999, 37.774819 ] ], [ [ -122.455072, 37.723716 ], [ -122.453184, 37.723241 ], [ -122.454171, 37.723512 ], [ -122.455072, 37.723716 ] ], [ [ -122.402201, 37.788726 ], [ -122.403445, 37.787742 ], [ -122.403445, 37.787708 ], [ -122.402201, 37.788726 ] ], [ [ -122.425632, 37.806461 ], [ -122.425332, 37.805105 ], [ -122.425504, 37.806020 ], [ -122.425632, 37.806461 ] ], [ [ -122.431512, 37.747440 ], [ -122.431812, 37.747440 ], [ -122.433701, 37.747304 ], [ -122.431512, 37.747440 ] ], [ [ -122.403488, 37.787674 ], [ -122.403574, 37.787640 ], [ -122.404604, 37.786759 ], [ -122.403488, 37.787674 ] ], [ [ -122.503009, 37.764337 ], [ -122.502022, 37.764405 ], [ -122.503095, 37.764371 ], [ -122.503009, 37.764337 ] ], [ [ -122.448978, 37.718047 ], [ -122.449107, 37.717911 ], [ -122.449579, 37.717131 ], [ -122.448978, 37.718047 ] ], [ [ -122.455673, 37.766067 ], [ -122.457132, 37.765897 ], [ -122.456918, 37.765897 ], [ -122.455673, 37.766067 ] ], [ [ -122.458978, 37.724531 ], [ -122.458205, 37.724327 ], [ -122.458162, 37.724361 ], [ -122.458978, 37.724531 ] ], [ [ -122.405934, 37.758942 ], [ -122.405548, 37.758569 ], [ -122.405248, 37.758366 ], [ -122.405934, 37.758942 ] ], [ [ -122.391257, 37.733254 ], [ -122.391558, 37.732609 ], [ -122.391558, 37.732507 ], [ -122.391257, 37.733254 ] ], [ [ -122.459106, 37.733661 ], [ -122.459493, 37.733016 ], [ -122.459364, 37.733152 ], [ -122.459106, 37.733661 ] ], [ [ -122.369628, 37.738277 ], [ -122.370830, 37.738175 ], [ -122.370572, 37.738175 ], [ -122.369628, 37.738277 ] ], [ [ -122.413273, 37.739024 ], [ -122.414174, 37.738922 ], [ -122.413316, 37.738990 ], [ -122.413273, 37.739024 ] ], [ [ -122.426190, 37.810360 ], [ -122.426448, 37.810089 ], [ -122.426577, 37.809852 ], [ -122.426190, 37.810360 ] ], [ [ -122.471595, 37.716146 ], [ -122.471466, 37.716112 ], [ -122.470737, 37.716112 ], [ -122.471595, 37.716146 ] ], [ [ -122.426620, 37.808835 ], [ -122.426662, 37.808801 ], [ -122.426577, 37.808292 ], [ -122.426620, 37.808835 ] ], [ [ -122.459149, 37.740144 ], [ -122.459192, 37.739872 ], [ -122.459149, 37.739601 ], [ -122.459149, 37.740144 ] ], [ [ -122.446361, 37.755923 ], [ -122.446876, 37.756466 ], [ -122.446790, 37.756330 ], [ -122.446361, 37.755923 ] ], [ [ -122.445416, 37.787471 ], [ -122.445717, 37.788861 ], [ -122.445631, 37.788387 ], [ -122.445416, 37.787471 ] ], [ [ -122.495627, 37.764710 ], [ -122.495971, 37.764710 ], [ -122.496443, 37.764676 ], [ -122.496099, 37.764676 ], [ -122.495627, 37.764710 ] ], [ [ -122.495370, 37.755278 ], [ -122.495456, 37.755244 ], [ -122.494640, 37.755312 ], [ -122.495370, 37.755278 ] ], [ [ -122.451854, 37.745675 ], [ -122.452240, 37.745709 ], [ -122.452841, 37.745709 ], [ -122.451854, 37.745675 ] ], [ [ -122.437220, 37.721544 ], [ -122.437477, 37.721238 ], [ -122.437477, 37.721170 ], [ -122.437220, 37.721544 ] ], [ [ -122.455244, 37.734001 ], [ -122.455673, 37.734069 ], [ -122.455502, 37.734001 ], [ -122.455244, 37.734001 ] ], [ [ -122.426147, 37.733967 ], [ -122.426405, 37.733763 ], [ -122.426405, 37.733695 ], [ -122.426147, 37.733967 ] ], [ [ -122.448335, 37.758060 ], [ -122.448206, 37.757857 ], [ -122.447991, 37.757653 ], [ -122.448335, 37.758060 ] ], [ [ -122.379370, 37.731693 ], [ -122.379498, 37.731252 ], [ -122.379370, 37.731557 ], [ -122.379370, 37.731693 ] ], [ [ -122.455502, 37.741230 ], [ -122.455888, 37.740958 ], [ -122.455587, 37.741128 ], [ -122.455502, 37.741230 ] ], [ [ -122.438507, 37.723648 ], [ -122.438936, 37.723648 ], [ -122.438850, 37.723614 ], [ -122.438507, 37.723648 ] ], [ [ -122.460394, 37.737734 ], [ -122.460437, 37.737666 ], [ -122.460437, 37.737327 ], [ -122.460394, 37.737734 ] ], [ [ -122.457905, 37.739295 ], [ -122.458291, 37.739058 ], [ -122.458119, 37.739125 ], [ -122.457905, 37.739295 ] ], [ [ -122.457089, 37.734578 ], [ -122.456660, 37.734476 ], [ -122.456832, 37.734544 ], [ -122.457089, 37.734578 ] ], [ [ -122.384520, 37.722868 ], [ -122.384219, 37.722664 ], [ -122.383962, 37.722528 ], [ -122.384520, 37.722868 ] ], [ [ -122.406793, 37.738107 ], [ -122.406921, 37.737972 ], [ -122.406964, 37.737836 ], [ -122.406793, 37.738107 ] ], [ [ -122.475972, 37.746693 ], [ -122.475801, 37.744861 ], [ -122.475801, 37.744929 ], [ -122.475972, 37.746693 ] ], [ [ -122.447863, 37.755855 ], [ -122.447562, 37.755855 ], [ -122.447691, 37.755889 ], [ -122.447863, 37.755855 ] ], [ [ -122.440181, 37.717674 ], [ -122.440224, 37.717640 ], [ -122.440438, 37.717266 ], [ -122.440181, 37.717674 ] ], [ [ -122.486572, 37.729588 ], [ -122.486701, 37.729588 ], [ -122.486486, 37.729520 ], [ -122.486572, 37.729588 ] ], [ [ -122.459836, 37.735766 ], [ -122.459922, 37.736105 ], [ -122.459965, 37.736173 ], [ -122.459836, 37.735766 ] ], [ [ -122.422628, 37.772614 ], [ -122.422628, 37.772513 ], [ -122.422543, 37.772343 ], [ -122.422628, 37.772614 ] ], [ [ -122.442670, 37.765999 ], [ -122.442584, 37.765931 ], [ -122.442455, 37.765931 ], [ -122.442670, 37.765999 ] ], [ [ -122.426491, 37.809581 ], [ -122.426577, 37.809445 ], [ -122.426577, 37.809343 ], [ -122.426491, 37.809581 ] ], [ [ -122.451596, 37.745675 ], [ -122.451639, 37.745539 ], [ -122.451596, 37.745472 ], [ -122.451596, 37.745675 ] ], [ [ -122.444816, 37.746795 ], [ -122.444644, 37.746693 ], [ -122.444558, 37.746693 ], [ -122.444816, 37.746795 ] ], [ [ -122.485113, 37.718590 ], [ -122.485156, 37.718556 ], [ -122.485113, 37.718421 ], [ -122.485113, 37.718590 ] ], [ [ -122.475028, 37.732575 ], [ -122.475028, 37.732406 ], [ -122.474985, 37.732473 ], [ -122.475028, 37.732575 ] ], [ [ -122.474899, 37.731082 ], [ -122.474813, 37.731014 ], [ -122.474899, 37.731150 ], [ -122.474899, 37.731082 ] ], [ [ -122.448592, 37.718421 ], [ -122.448635, 37.718421 ], [ -122.448764, 37.718285 ], [ -122.448592, 37.718421 ] ], [ [ -122.449579, 37.749204 ], [ -122.449408, 37.749136 ], [ -122.449322, 37.749136 ], [ -122.449579, 37.749204 ] ], [ [ -122.442541, 37.769697 ], [ -122.442627, 37.769697 ], [ -122.442412, 37.769629 ], [ -122.442541, 37.769697 ] ], [ [ -122.443056, 37.769833 ], [ -122.443228, 37.770104 ], [ -122.443185, 37.770002 ], [ -122.443056, 37.769833 ] ], [ [ -122.442069, 37.779263 ], [ -122.441082, 37.779399 ], [ -122.441125, 37.779399 ], [ -122.442069, 37.779263 ] ], [ [ -122.381773, 37.737938 ], [ -122.381816, 37.737802 ], [ -122.381816, 37.737700 ], [ -122.381773, 37.737938 ] ], [ [ -122.460093, 37.737938 ], [ -122.460308, 37.737870 ], [ -122.460351, 37.737836 ], [ -122.460093, 37.737938 ] ], [ [ -122.401385, 37.789268 ], [ -122.401514, 37.789268 ], [ -122.401557, 37.789234 ], [ -122.401385, 37.789268 ] ], [ [ -122.442069, 37.807173 ], [ -122.442069, 37.807139 ], [ -122.441983, 37.807105 ], [ -122.442069, 37.807173 ] ], [ [ -122.441983, 37.807207 ], [ -122.441940, 37.807139 ], [ -122.441940, 37.807207 ], [ -122.441983, 37.807207 ] ], [ [ -122.441640, 37.807207 ], [ -122.441640, 37.807275 ], [ -122.441683, 37.807275 ], [ -122.441640, 37.807207 ] ], [ [ -122.441468, 37.807411 ], [ -122.441425, 37.807343 ], [ -122.441382, 37.807343 ], [ -122.441468, 37.807411 ] ], [ [ -122.462239, 37.725278 ], [ -122.462153, 37.725278 ], [ -122.462282, 37.725312 ], [ -122.462239, 37.725278 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "075" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.454000, 37.839038 ], [ -122.445502, 37.842428 ], [ -122.424259, 37.850459 ], [ -122.418680, 37.852526 ], [ -122.419453, 37.857507 ], [ -122.419882, 37.860218 ], [ -122.365294, 37.860218 ], [ -122.364264, 37.857507 ], [ -122.355895, 37.835751 ], [ -122.346883, 37.811445 ], [ -122.346711, 37.811038 ], [ -122.343750, 37.806292 ], [ -122.340317, 37.800629 ], [ -122.340317, 37.715875 ], [ -122.358556, 37.715875 ], [ -122.375636, 37.715875 ], [ -122.398639, 37.715875 ], [ -122.408466, 37.715875 ], [ -122.410741, 37.715875 ], [ -122.427220, 37.715875 ], [ -122.427735, 37.715875 ], [ -122.431726, 37.715875 ], [ -122.436705, 37.715875 ], [ -122.441511, 37.715875 ], [ -122.446575, 37.715875 ], [ -122.449579, 37.715875 ], [ -122.462626, 37.715875 ], [ -122.472324, 37.715875 ], [ -122.485285, 37.715875 ], [ -122.509489, 37.715875 ], [ -122.522964, 37.715875 ], [ -122.522964, 37.789641 ], [ -122.522964, 37.805071 ], [ -122.522964, 37.824735 ], [ -122.519531, 37.825006 ], [ -122.519317, 37.825006 ], [ -122.518501, 37.825311 ], [ -122.517686, 37.825209 ], [ -122.516785, 37.824633 ], [ -122.516098, 37.825243 ], [ -122.511892, 37.824362 ], [ -122.511120, 37.824463 ], [ -122.505198, 37.822904 ], [ -122.505412, 37.822091 ], [ -122.504683, 37.821718 ], [ -122.504168, 37.821006 ], [ -122.503395, 37.821209 ], [ -122.502880, 37.820904 ], [ -122.501507, 37.821718 ], [ -122.501292, 37.821243 ], [ -122.499790, 37.819751 ], [ -122.498975, 37.820260 ], [ -122.499919, 37.821853 ], [ -122.499018, 37.822328 ], [ -122.498846, 37.822362 ], [ -122.496271, 37.822362 ], [ -122.495499, 37.822430 ], [ -122.494812, 37.822735 ], [ -122.494512, 37.823447 ], [ -122.493525, 37.823853 ], [ -122.493224, 37.824633 ], [ -122.492495, 37.824836 ], [ -122.492108, 37.825345 ], [ -122.491422, 37.825752 ], [ -122.491207, 37.826430 ], [ -122.486315, 37.826260 ], [ -122.483525, 37.826735 ], [ -122.482796, 37.825650 ], [ -122.481422, 37.825955 ], [ -122.479362, 37.825548 ], [ -122.479191, 37.825582 ], [ -122.478375, 37.828091 ], [ -122.479663, 37.830531 ], [ -122.479534, 37.830429 ], [ -122.479234, 37.830904 ], [ -122.478805, 37.831175 ], [ -122.478504, 37.831209 ], [ -122.478375, 37.830972 ], [ -122.478290, 37.831243 ], [ -122.478676, 37.831311 ], [ -122.478075, 37.832463 ], [ -122.474170, 37.833378 ], [ -122.473655, 37.831955 ], [ -122.472882, 37.832022 ], [ -122.472281, 37.832124 ], [ -122.468119, 37.833717 ], [ -122.454000, 37.839038 ] ], [ [ -122.438850, 37.733118 ], [ -122.451167, 37.733084 ], [ -122.452326, 37.733050 ], [ -122.438850, 37.733118 ] ], [ [ -122.424173, 37.799510 ], [ -122.435718, 37.798052 ], [ -122.437348, 37.797814 ], [ -122.424173, 37.799510 ] ], [ [ -122.462282, 37.718251 ], [ -122.462668, 37.718217 ], [ -122.454214, 37.718251 ], [ -122.459192, 37.718251 ], [ -122.462282, 37.718251 ] ], [ [ -122.498803, 37.781400 ], [ -122.498546, 37.777533 ], [ -122.498116, 37.771970 ], [ -122.498803, 37.781400 ] ], [ [ -122.428765, 37.738345 ], [ -122.431383, 37.736648 ], [ -122.431383, 37.736614 ], [ -122.429280, 37.737972 ], [ -122.428765, 37.738345 ] ], [ [ -122.390957, 37.752665 ], [ -122.390785, 37.752665 ], [ -122.390699, 37.752665 ], [ -122.381001, 37.753242 ], [ -122.390957, 37.752665 ] ], [ [ -122.465029, 37.788556 ], [ -122.466960, 37.788149 ], [ -122.470951, 37.787233 ], [ -122.465029, 37.788556 ] ], [ [ -122.468505, 37.748967 ], [ -122.472324, 37.748831 ], [ -122.476058, 37.748661 ], [ -122.468505, 37.748967 ] ], [ [ -122.517257, 37.770715 ], [ -122.517257, 37.767831 ], [ -122.517214, 37.766949 ], [ -122.517257, 37.770715 ] ], [ [ -122.392502, 37.760266 ], [ -122.392502, 37.757416 ], [ -122.392459, 37.756466 ], [ -122.392502, 37.760266 ] ], [ [ -122.424688, 37.785368 ], [ -122.425632, 37.789981 ], [ -122.425075, 37.787132 ], [ -122.424688, 37.785368 ] ], [ [ -122.485113, 37.723988 ], [ -122.485156, 37.723954 ], [ -122.485156, 37.721306 ], [ -122.485113, 37.723988 ] ], [ [ -122.407908, 37.794084 ], [ -122.408466, 37.796729 ], [ -122.407565, 37.792253 ], [ -122.407908, 37.794084 ] ], [ [ -122.437177, 37.721578 ], [ -122.435417, 37.723920 ], [ -122.437220, 37.721578 ], [ -122.437177, 37.721578 ] ], [ [ -122.449150, 37.772580 ], [ -122.452455, 37.772207 ], [ -122.454000, 37.772004 ], [ -122.449150, 37.772580 ] ], [ [ -122.418251, 37.748186 ], [ -122.416019, 37.748254 ], [ -122.418337, 37.748220 ], [ -122.418251, 37.748186 ] ], [ [ -122.461424, 37.751478 ], [ -122.460437, 37.749781 ], [ -122.461081, 37.750969 ], [ -122.461424, 37.751478 ] ], [ [ -122.478719, 37.786046 ], [ -122.484083, 37.785809 ], [ -122.483010, 37.785843 ], [ -122.478719, 37.786046 ] ], [ [ -122.414389, 37.732439 ], [ -122.413788, 37.732677 ], [ -122.412114, 37.733458 ], [ -122.414389, 37.732439 ] ], [ [ -122.438250, 37.748695 ], [ -122.440696, 37.748661 ], [ -122.441039, 37.748627 ], [ -122.438250, 37.748695 ] ], [ [ -122.479277, 37.778415 ], [ -122.479148, 37.776549 ], [ -122.479019, 37.775226 ], [ -122.479277, 37.778415 ] ], [ [ -122.446704, 37.794423 ], [ -122.446318, 37.791880 ], [ -122.446189, 37.791202 ], [ -122.446704, 37.794423 ] ], [ [ -122.487860, 37.765049 ], [ -122.486916, 37.765049 ], [ -122.485971, 37.765117 ], [ -122.487860, 37.765049 ] ], [ [ -122.413702, 37.748288 ], [ -122.412672, 37.748322 ], [ -122.413831, 37.748322 ], [ -122.414389, 37.748288 ], [ -122.413702, 37.748288 ] ], [ [ -122.380271, 37.738447 ], [ -122.380142, 37.738311 ], [ -122.379112, 37.737700 ], [ -122.380271, 37.738447 ] ], [ [ -122.457862, 37.739974 ], [ -122.456274, 37.740788 ], [ -122.457733, 37.740076 ], [ -122.457862, 37.739974 ] ], [ [ -122.451510, 37.723105 ], [ -122.449622, 37.723037 ], [ -122.450695, 37.723105 ], [ -122.451510, 37.723105 ] ], [ [ -122.455072, 37.723716 ], [ -122.453184, 37.723241 ], [ -122.454171, 37.723512 ], [ -122.455072, 37.723716 ] ], [ [ -122.402201, 37.788726 ], [ -122.403445, 37.787742 ], [ -122.403445, 37.787708 ], [ -122.402201, 37.788726 ] ], [ [ -122.425632, 37.806461 ], [ -122.425332, 37.805105 ], [ -122.425504, 37.806020 ], [ -122.425632, 37.806461 ] ], [ [ -122.431512, 37.747440 ], [ -122.431812, 37.747440 ], [ -122.433701, 37.747304 ], [ -122.431512, 37.747440 ] ], [ [ -122.403488, 37.787674 ], [ -122.403574, 37.787640 ], [ -122.404604, 37.786759 ], [ -122.403488, 37.787674 ] ], [ [ -122.503009, 37.764337 ], [ -122.502022, 37.764405 ], [ -122.503095, 37.764371 ], [ -122.503009, 37.764337 ] ], [ [ -122.448978, 37.718047 ], [ -122.449107, 37.717911 ], [ -122.449579, 37.717131 ], [ -122.448978, 37.718047 ] ], [ [ -122.455673, 37.766067 ], [ -122.457132, 37.765897 ], [ -122.456918, 37.765897 ], [ -122.455673, 37.766067 ] ], [ [ -122.458978, 37.724531 ], [ -122.458205, 37.724327 ], [ -122.458162, 37.724361 ], [ -122.458978, 37.724531 ] ], [ [ -122.405934, 37.758942 ], [ -122.405548, 37.758569 ], [ -122.405248, 37.758366 ], [ -122.405934, 37.758942 ] ], [ [ -122.391257, 37.733254 ], [ -122.391558, 37.732609 ], [ -122.391558, 37.732507 ], [ -122.391257, 37.733254 ] ], [ [ -122.459106, 37.733661 ], [ -122.459493, 37.733016 ], [ -122.459364, 37.733152 ], [ -122.459106, 37.733661 ] ], [ [ -122.369628, 37.738277 ], [ -122.370830, 37.738175 ], [ -122.370572, 37.738175 ], [ -122.369628, 37.738277 ] ], [ [ -122.413273, 37.739024 ], [ -122.414174, 37.738922 ], [ -122.413316, 37.738990 ], [ -122.413273, 37.739024 ] ], [ [ -122.426190, 37.810360 ], [ -122.426448, 37.810089 ], [ -122.426577, 37.809852 ], [ -122.426190, 37.810360 ] ], [ [ -122.471595, 37.716146 ], [ -122.471466, 37.716112 ], [ -122.470737, 37.716112 ], [ -122.471595, 37.716146 ] ], [ [ -122.426620, 37.808835 ], [ -122.426662, 37.808801 ], [ -122.426577, 37.808292 ], [ -122.426620, 37.808835 ] ], [ [ -122.459149, 37.740144 ], [ -122.459192, 37.739872 ], [ -122.459149, 37.739601 ], [ -122.459149, 37.740144 ] ], [ [ -122.446361, 37.755923 ], [ -122.446876, 37.756466 ], [ -122.446790, 37.756330 ], [ -122.446361, 37.755923 ] ], [ [ -122.445416, 37.787471 ], [ -122.445717, 37.788861 ], [ -122.445631, 37.788387 ], [ -122.445416, 37.787471 ] ], [ [ -122.495627, 37.764710 ], [ -122.495971, 37.764710 ], [ -122.496443, 37.764676 ], [ -122.496099, 37.764676 ], [ -122.495627, 37.764710 ] ], [ [ -122.495370, 37.755278 ], [ -122.495456, 37.755244 ], [ -122.494640, 37.755312 ], [ -122.495370, 37.755278 ] ], [ [ -122.451854, 37.745675 ], [ -122.452240, 37.745709 ], [ -122.452841, 37.745709 ], [ -122.451854, 37.745675 ] ], [ [ -122.437220, 37.721544 ], [ -122.437477, 37.721238 ], [ -122.437477, 37.721170 ], [ -122.437220, 37.721544 ] ], [ [ -122.455244, 37.734001 ], [ -122.455673, 37.734069 ], [ -122.455502, 37.734001 ], [ -122.455244, 37.734001 ] ], [ [ -122.426147, 37.733967 ], [ -122.426405, 37.733763 ], [ -122.426405, 37.733695 ], [ -122.426147, 37.733967 ] ], [ [ -122.448335, 37.758060 ], [ -122.448206, 37.757857 ], [ -122.447991, 37.757653 ], [ -122.448335, 37.758060 ] ], [ [ -122.379370, 37.731693 ], [ -122.379498, 37.731252 ], [ -122.379370, 37.731557 ], [ -122.379370, 37.731693 ] ], [ [ -122.455502, 37.741230 ], [ -122.455888, 37.740958 ], [ -122.455587, 37.741128 ], [ -122.455502, 37.741230 ] ], [ [ -122.438507, 37.723648 ], [ -122.438936, 37.723648 ], [ -122.438850, 37.723614 ], [ -122.438507, 37.723648 ] ], [ [ -122.460394, 37.737734 ], [ -122.460437, 37.737666 ], [ -122.460437, 37.737327 ], [ -122.460394, 37.737734 ] ], [ [ -122.457905, 37.739295 ], [ -122.458291, 37.739058 ], [ -122.458119, 37.739125 ], [ -122.457905, 37.739295 ] ], [ [ -122.457089, 37.734578 ], [ -122.456660, 37.734476 ], [ -122.456832, 37.734544 ], [ -122.457089, 37.734578 ] ], [ [ -122.406793, 37.738107 ], [ -122.406921, 37.737972 ], [ -122.406964, 37.737836 ], [ -122.406793, 37.738107 ] ], [ [ -122.475972, 37.746693 ], [ -122.475801, 37.744861 ], [ -122.475801, 37.744929 ], [ -122.475972, 37.746693 ] ], [ [ -122.447863, 37.755855 ], [ -122.447562, 37.755855 ], [ -122.447691, 37.755889 ], [ -122.447863, 37.755855 ] ], [ [ -122.440181, 37.717674 ], [ -122.440224, 37.717640 ], [ -122.440438, 37.717266 ], [ -122.440181, 37.717674 ] ], [ [ -122.486572, 37.729588 ], [ -122.486701, 37.729588 ], [ -122.486486, 37.729520 ], [ -122.486572, 37.729588 ] ], [ [ -122.459836, 37.735766 ], [ -122.459922, 37.736105 ], [ -122.459965, 37.736173 ], [ -122.459836, 37.735766 ] ], [ [ -122.422628, 37.772614 ], [ -122.422628, 37.772513 ], [ -122.422543, 37.772343 ], [ -122.422628, 37.772614 ] ], [ [ -122.442670, 37.765999 ], [ -122.442584, 37.765931 ], [ -122.442455, 37.765931 ], [ -122.442670, 37.765999 ] ], [ [ -122.451596, 37.745675 ], [ -122.451639, 37.745539 ], [ -122.451596, 37.745472 ], [ -122.451596, 37.745675 ] ], [ [ -122.444816, 37.746795 ], [ -122.444644, 37.746693 ], [ -122.444558, 37.746693 ], [ -122.444816, 37.746795 ] ], [ [ -122.485113, 37.718590 ], [ -122.485156, 37.718556 ], [ -122.485113, 37.718421 ], [ -122.485113, 37.718590 ] ], [ [ -122.475028, 37.732575 ], [ -122.475028, 37.732406 ], [ -122.474985, 37.732473 ], [ -122.475028, 37.732575 ] ], [ [ -122.449579, 37.749204 ], [ -122.449408, 37.749136 ], [ -122.449322, 37.749136 ], [ -122.449579, 37.749204 ] ], [ [ -122.442541, 37.769697 ], [ -122.442627, 37.769697 ], [ -122.442412, 37.769629 ], [ -122.442541, 37.769697 ] ], [ [ -122.442069, 37.779263 ], [ -122.441082, 37.779399 ], [ -122.441125, 37.779399 ], [ -122.442069, 37.779263 ] ], [ [ -122.381773, 37.737938 ], [ -122.381816, 37.737802 ], [ -122.381816, 37.737700 ], [ -122.381773, 37.737938 ] ], [ [ -122.460093, 37.737938 ], [ -122.460308, 37.737870 ], [ -122.460351, 37.737836 ], [ -122.460093, 37.737938 ] ], [ [ -122.401385, 37.789268 ], [ -122.401514, 37.789268 ], [ -122.401557, 37.789234 ], [ -122.401385, 37.789268 ] ], [ [ -122.441983, 37.807207 ], [ -122.441940, 37.807139 ], [ -122.441940, 37.807207 ], [ -122.441983, 37.807207 ] ], [ [ -122.441640, 37.807207 ], [ -122.441640, 37.807275 ], [ -122.441683, 37.807275 ], [ -122.441640, 37.807207 ] ], [ [ -122.462239, 37.725278 ], [ -122.462153, 37.725278 ], [ -122.462282, 37.725312 ], [ -122.462239, 37.725278 ] ] ] } } ] } ] } , @@ -84,7 +85,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.253456, 37.860218 ], [ -122.243929, 37.860218 ], [ -122.221055, 37.860218 ], [ -122.220626, 37.860218 ], [ -122.215519, 37.860218 ], [ -122.214746, 37.859540 ], [ -122.213588, 37.857914 ], [ -122.213030, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.212043, 37.857033 ], [ -122.211914, 37.856931 ], [ -122.210798, 37.855034 ], [ -122.211013, 37.854559 ], [ -122.208524, 37.851713 ], [ -122.207880, 37.851781 ], [ -122.207322, 37.851543 ], [ -122.204103, 37.851408 ], [ -122.202859, 37.850086 ], [ -122.201786, 37.848697 ], [ -122.200713, 37.847748 ], [ -122.200713, 37.847613 ], [ -122.197623, 37.845342 ], [ -122.196593, 37.844698 ], [ -122.195306, 37.843614 ], [ -122.195306, 37.842834 ], [ -122.196121, 37.842021 ], [ -122.195735, 37.841987 ], [ -122.195306, 37.841648 ], [ -122.194319, 37.841377 ], [ -122.193975, 37.841038 ], [ -122.193933, 37.840767 ], [ -122.191787, 37.839852 ], [ -122.191401, 37.839445 ], [ -122.189684, 37.838022 ], [ -122.188954, 37.837649 ], [ -122.186894, 37.837344 ], [ -122.185307, 37.837039 ], [ -122.184706, 37.835920 ], [ -122.184448, 37.834937 ], [ -122.184191, 37.833954 ], [ -122.185178, 37.832565 ], [ -122.185478, 37.831955 ], [ -122.185993, 37.831243 ], [ -122.186208, 37.831040 ], [ -122.187109, 37.829548 ], [ -122.187195, 37.828735 ], [ -122.187109, 37.827345 ], [ -122.187066, 37.827209 ], [ -122.186809, 37.827074 ], [ -122.186766, 37.826904 ], [ -122.185907, 37.825548 ], [ -122.186680, 37.823548 ], [ -122.186208, 37.821582 ], [ -122.185993, 37.820735 ], [ -122.181487, 37.819548 ], [ -122.176981, 37.816260 ], [ -122.172775, 37.815853 ], [ -122.167969, 37.813886 ], [ -122.166896, 37.813446 ], [ -122.166681, 37.813649 ], [ -122.164536, 37.814666 ], [ -122.164536, 37.804528 ], [ -122.164536, 37.804427 ], [ -122.164536, 37.803884 ], [ -122.164536, 37.776685 ], [ -122.164536, 37.762946 ], [ -122.164536, 37.762233 ], [ -122.164536, 37.751003 ], [ -122.164536, 37.744012 ], [ -122.164536, 37.736478 ], [ -122.164536, 37.726364 ], [ -122.164536, 37.722868 ], [ -122.164578, 37.722562 ], [ -122.164536, 37.722562 ], [ -122.164536, 37.715875 ], [ -122.173591, 37.715875 ], [ -122.195134, 37.715875 ], [ -122.248135, 37.715875 ], [ -122.286630, 37.715875 ], [ -122.288346, 37.718590 ], [ -122.291908, 37.724157 ], [ -122.294312, 37.727755 ], [ -122.310491, 37.753853 ], [ -122.321563, 37.771224 ], [ -122.328773, 37.782519 ], [ -122.336583, 37.795034 ], [ -122.340317, 37.800629 ], [ -122.343750, 37.806292 ], [ -122.346711, 37.811038 ], [ -122.347183, 37.812259 ], [ -122.347183, 37.860218 ], [ -122.332463, 37.860218 ], [ -122.295256, 37.860218 ], [ -122.294226, 37.860218 ], [ -122.289419, 37.860218 ], [ -122.280622, 37.860218 ], [ -122.271867, 37.860218 ], [ -122.264442, 37.860218 ], [ -122.253456, 37.860218 ] ], [ [ -122.177668, 37.765456 ], [ -122.186165, 37.760028 ], [ -122.179213, 37.764439 ], [ -122.177668, 37.765456 ] ], [ [ -122.193933, 37.787776 ], [ -122.192602, 37.788421 ], [ -122.188311, 37.790659 ], [ -122.193933, 37.787776 ] ], [ [ -122.247319, 37.846596 ], [ -122.252727, 37.844461 ], [ -122.249122, 37.845850 ], [ -122.247319, 37.846596 ] ], [ [ -122.256589, 37.756975 ], [ -122.257104, 37.756262 ], [ -122.259507, 37.752598 ], [ -122.256589, 37.756975 ] ], [ [ -122.289419, 37.860218 ], [ -122.288518, 37.857507 ], [ -122.288647, 37.858083 ], [ -122.289419, 37.860218 ] ], [ [ -122.264442, 37.860218 ], [ -122.263927, 37.857507 ], [ -122.263970, 37.858049 ], [ -122.264442, 37.860218 ] ], [ [ -122.230926, 37.789472 ], [ -122.233415, 37.791032 ], [ -122.235303, 37.792151 ], [ -122.230926, 37.789472 ] ], [ [ -122.253885, 37.795814 ], [ -122.251396, 37.793575 ], [ -122.250538, 37.792863 ], [ -122.253885, 37.795814 ] ], [ [ -122.203460, 37.792083 ], [ -122.207365, 37.789743 ], [ -122.204361, 37.791507 ], [ -122.203460, 37.792083 ] ], [ [ -122.271867, 37.860218 ], [ -122.271566, 37.857507 ], [ -122.271566, 37.857982 ], [ -122.271867, 37.860218 ] ], [ [ -122.253456, 37.860218 ], [ -122.253199, 37.857507 ], [ -122.253242, 37.858524 ], [ -122.253284, 37.858795 ], [ -122.253456, 37.860218 ] ], [ [ -122.276888, 37.771393 ], [ -122.272897, 37.771291 ], [ -122.275643, 37.771393 ], [ -122.276888, 37.771393 ] ], [ [ -122.223673, 37.776651 ], [ -122.220883, 37.775260 ], [ -122.219296, 37.774514 ], [ -122.223673, 37.776651 ] ], [ [ -122.245045, 37.788895 ], [ -122.247148, 37.789947 ], [ -122.247062, 37.789845 ], [ -122.245045, 37.788895 ] ], [ [ -122.192860, 37.762030 ], [ -122.191229, 37.761216 ], [ -122.189255, 37.760300 ], [ -122.192860, 37.762030 ] ], [ [ -122.181573, 37.737836 ], [ -122.181616, 37.737836 ], [ -122.181616, 37.737802 ], [ -122.180114, 37.736546 ], [ -122.181573, 37.737836 ] ], [ [ -122.218480, 37.794491 ], [ -122.217278, 37.797543 ], [ -122.217193, 37.797848 ], [ -122.218480, 37.794491 ] ], [ [ -122.288132, 37.816565 ], [ -122.284055, 37.815649 ], [ -122.285299, 37.815954 ], [ -122.288132, 37.816565 ] ], [ [ -122.267833, 37.827074 ], [ -122.266331, 37.834192 ], [ -122.265987, 37.835886 ], [ -122.267833, 37.827074 ] ], [ [ -122.192731, 37.747542 ], [ -122.191401, 37.746354 ], [ -122.190757, 37.745845 ], [ -122.192731, 37.747542 ] ], [ [ -122.211614, 37.790286 ], [ -122.211142, 37.789709 ], [ -122.210240, 37.788794 ], [ -122.211614, 37.790286 ] ], [ [ -122.261868, 37.852594 ], [ -122.265301, 37.852153 ], [ -122.260623, 37.852729 ], [ -122.261868, 37.852594 ] ], [ [ -122.265644, 37.837649 ], [ -122.266674, 37.837513 ], [ -122.266717, 37.837513 ], [ -122.268476, 37.837310 ], [ -122.266459, 37.837513 ], [ -122.265644, 37.837649 ] ], [ [ -122.224188, 37.799985 ], [ -122.226677, 37.800561 ], [ -122.227106, 37.800629 ], [ -122.224188, 37.799985 ] ], [ [ -122.261610, 37.825413 ], [ -122.261996, 37.824192 ], [ -122.262125, 37.823582 ], [ -122.261610, 37.825413 ] ], [ [ -122.217321, 37.783944 ], [ -122.215090, 37.785266 ], [ -122.216291, 37.784588 ], [ -122.217321, 37.783944 ] ], [ [ -122.262425, 37.855881 ], [ -122.262425, 37.855847 ], [ -122.260194, 37.856186 ], [ -122.262425, 37.855881 ] ], [ [ -122.276073, 37.818870 ], [ -122.275300, 37.816463 ], [ -122.275171, 37.816158 ], [ -122.276073, 37.818870 ] ], [ [ -122.235432, 37.805647 ], [ -122.233415, 37.804393 ], [ -122.233629, 37.804562 ], [ -122.235432, 37.805647 ] ], [ [ -122.222729, 37.838903 ], [ -122.223973, 37.840496 ], [ -122.224231, 37.840767 ], [ -122.222729, 37.838903 ] ], [ [ -122.241054, 37.786487 ], [ -122.239165, 37.785334 ], [ -122.238994, 37.785266 ], [ -122.241054, 37.786487 ] ], [ [ -122.224874, 37.785843 ], [ -122.224360, 37.785639 ], [ -122.222300, 37.784961 ], [ -122.224874, 37.785843 ] ], [ [ -122.167969, 37.721679 ], [ -122.165523, 37.722257 ], [ -122.164922, 37.722426 ], [ -122.167969, 37.721679 ] ], [ [ -122.241740, 37.857270 ], [ -122.240367, 37.857202 ], [ -122.239380, 37.857202 ], [ -122.241740, 37.857270 ] ], [ [ -122.243757, 37.801918 ], [ -122.245603, 37.801680 ], [ -122.245860, 37.801612 ], [ -122.243757, 37.801918 ] ], [ [ -122.259936, 37.814666 ], [ -122.261181, 37.813344 ], [ -122.260752, 37.813751 ], [ -122.259936, 37.814666 ] ], [ [ -122.246547, 37.809852 ], [ -122.248349, 37.810428 ], [ -122.248135, 37.810326 ], [ -122.246547, 37.809852 ] ], [ [ -122.286243, 37.821175 ], [ -122.287402, 37.819785 ], [ -122.286201, 37.821175 ], [ -122.286243, 37.821175 ] ], [ [ -122.192216, 37.785266 ], [ -122.190886, 37.784893 ], [ -122.190371, 37.784792 ], [ -122.192216, 37.785266 ] ], [ [ -122.221184, 37.813819 ], [ -122.220197, 37.813547 ], [ -122.219124, 37.813310 ], [ -122.221184, 37.813819 ] ], [ [ -122.261653, 37.764405 ], [ -122.262511, 37.764880 ], [ -122.263241, 37.765219 ], [ -122.261653, 37.764405 ] ], [ [ -122.276802, 37.775159 ], [ -122.276931, 37.772377 ], [ -122.276931, 37.771970 ], [ -122.276802, 37.775159 ] ], [ [ -122.231526, 37.816056 ], [ -122.232985, 37.816463 ], [ -122.232256, 37.816226 ], [ -122.231526, 37.816056 ] ], [ [ -122.172003, 37.769188 ], [ -122.171273, 37.769629 ], [ -122.171102, 37.769799 ], [ -122.172003, 37.769188 ] ], [ [ -122.257791, 37.853102 ], [ -122.259550, 37.852865 ], [ -122.258348, 37.853001 ], [ -122.257791, 37.853102 ] ], [ [ -122.287660, 37.854830 ], [ -122.287273, 37.853577 ], [ -122.287445, 37.854254 ], [ -122.287660, 37.854830 ] ], [ [ -122.183805, 37.809750 ], [ -122.182560, 37.809445 ], [ -122.182689, 37.809513 ], [ -122.183805, 37.809750 ] ], [ [ -122.209125, 37.788726 ], [ -122.209854, 37.788353 ], [ -122.209940, 37.788251 ], [ -122.209125, 37.788726 ] ], [ [ -122.288690, 37.802765 ], [ -122.287445, 37.802765 ], [ -122.287703, 37.802799 ], [ -122.288690, 37.802765 ] ], [ [ -122.266974, 37.838530 ], [ -122.266760, 37.837547 ], [ -122.266717, 37.837547 ], [ -122.266974, 37.838530 ] ], [ [ -122.230926, 37.789472 ], [ -122.231526, 37.788861 ], [ -122.231827, 37.788488 ], [ -122.230926, 37.789472 ] ], [ [ -122.183805, 37.809750 ], [ -122.184663, 37.809784 ], [ -122.185006, 37.809750 ], [ -122.183805, 37.809750 ] ], [ [ -122.179813, 37.736275 ], [ -122.179813, 37.736241 ], [ -122.178655, 37.735290 ], [ -122.179813, 37.736275 ] ], [ [ -122.268991, 37.798425 ], [ -122.269506, 37.797679 ], [ -122.269549, 37.797543 ], [ -122.268991, 37.798425 ] ], [ [ -122.259550, 37.836835 ], [ -122.259936, 37.837005 ], [ -122.259250, 37.836903 ], [ -122.260194, 37.837073 ], [ -122.259550, 37.836835 ] ], [ [ -122.217107, 37.810225 ], [ -122.217793, 37.809479 ], [ -122.217622, 37.809614 ], [ -122.217107, 37.810225 ] ], [ [ -122.187967, 37.784385 ], [ -122.189984, 37.784690 ], [ -122.189641, 37.784622 ], [ -122.187967, 37.784385 ] ], [ [ -122.229896, 37.801646 ], [ -122.228909, 37.801138 ], [ -122.228780, 37.801104 ], [ -122.229896, 37.801646 ] ], [ [ -122.278948, 37.852391 ], [ -122.278647, 37.851171 ], [ -122.278905, 37.852323 ], [ -122.278948, 37.852391 ] ], [ [ -122.250195, 37.811954 ], [ -122.249894, 37.811513 ], [ -122.249594, 37.811174 ], [ -122.250195, 37.811954 ] ], [ [ -122.224102, 37.853407 ], [ -122.224102, 37.853339 ], [ -122.223673, 37.852865 ], [ -122.224102, 37.853407 ] ], [ [ -122.259550, 37.798052 ], [ -122.258863, 37.798018 ], [ -122.258778, 37.798052 ], [ -122.259550, 37.798052 ] ], [ [ -122.289977, 37.815649 ], [ -122.289805, 37.816158 ], [ -122.289720, 37.816565 ], [ -122.289977, 37.815649 ] ], [ [ -122.256331, 37.808089 ], [ -122.256331, 37.808699 ], [ -122.256374, 37.808394 ], [ -122.256331, 37.808089 ] ], [ [ -122.168956, 37.772648 ], [ -122.168999, 37.773021 ], [ -122.169085, 37.773191 ], [ -122.168956, 37.772648 ] ], [ [ -122.243757, 37.848528 ], [ -122.244229, 37.847918 ], [ -122.243929, 37.848256 ], [ -122.243757, 37.848528 ] ], [ [ -122.242556, 37.850832 ], [ -122.243414, 37.850561 ], [ -122.242684, 37.850764 ], [ -122.242556, 37.850832 ] ], [ [ -122.187538, 37.835886 ], [ -122.187324, 37.835547 ], [ -122.187195, 37.835446 ], [ -122.187538, 37.835886 ] ], [ [ -122.238393, 37.821107 ], [ -122.238393, 37.820633 ], [ -122.238350, 37.820531 ], [ -122.238393, 37.821107 ] ], [ [ -122.256932, 37.812462 ], [ -122.256503, 37.811988 ], [ -122.256675, 37.812225 ], [ -122.256932, 37.812462 ] ], [ [ -122.215219, 37.831717 ], [ -122.215261, 37.831548 ], [ -122.215047, 37.831955 ], [ -122.215219, 37.831717 ] ], [ [ -122.240238, 37.808801 ], [ -122.239552, 37.808428 ], [ -122.239380, 37.808360 ], [ -122.240238, 37.808801 ] ], [ [ -122.278690, 37.814598 ], [ -122.279077, 37.814700 ], [ -122.279377, 37.814734 ], [ -122.278690, 37.814598 ] ], [ [ -122.219424, 37.782553 ], [ -122.219167, 37.782282 ], [ -122.219210, 37.782383 ], [ -122.219424, 37.782553 ] ], [ [ -122.198567, 37.810259 ], [ -122.199039, 37.810191 ], [ -122.198825, 37.810191 ], [ -122.198567, 37.810259 ] ], [ [ -122.300234, 37.802596 ], [ -122.299976, 37.802494 ], [ -122.299676, 37.802426 ], [ -122.300234, 37.802596 ] ], [ [ -122.179427, 37.735596 ], [ -122.179813, 37.736241 ], [ -122.179770, 37.736139 ], [ -122.179427, 37.735596 ] ], [ [ -122.179942, 37.790591 ], [ -122.179770, 37.790388 ], [ -122.179599, 37.790252 ], [ -122.179942, 37.790591 ] ], [ [ -122.187452, 37.836259 ], [ -122.187195, 37.836022 ], [ -122.187109, 37.835988 ], [ -122.187452, 37.836259 ] ], [ [ -122.219424, 37.859574 ], [ -122.219424, 37.859303 ], [ -122.219381, 37.859506 ], [ -122.219424, 37.859574 ] ], [ [ -122.218008, 37.833005 ], [ -122.218094, 37.833039 ], [ -122.218308, 37.833005 ], [ -122.218008, 37.833005 ] ], [ [ -122.218051, 37.809275 ], [ -122.218437, 37.809072 ], [ -122.218137, 37.809208 ], [ -122.218051, 37.809275 ] ], [ [ -122.186723, 37.835954 ], [ -122.187066, 37.835988 ], [ -122.186980, 37.835954 ], [ -122.186723, 37.835954 ] ], [ [ -122.280750, 37.766474 ], [ -122.280793, 37.766372 ], [ -122.280750, 37.766305 ], [ -122.280750, 37.766474 ] ], [ [ -122.235260, 37.842292 ], [ -122.235389, 37.842258 ], [ -122.235432, 37.842190 ], [ -122.235260, 37.842292 ] ], [ [ -122.192259, 37.749883 ], [ -122.192430, 37.749781 ], [ -122.192430, 37.749747 ], [ -122.192259, 37.749883 ] ], [ [ -122.247920, 37.800663 ], [ -122.248263, 37.800527 ], [ -122.248049, 37.800595 ], [ -122.247920, 37.800663 ] ], [ [ -122.236376, 37.823209 ], [ -122.235990, 37.823345 ], [ -122.236032, 37.823345 ], [ -122.236376, 37.823209 ] ], [ [ -122.201185, 37.754939 ], [ -122.201185, 37.754871 ], [ -122.201142, 37.754905 ], [ -122.201185, 37.754939 ] ], [ [ -122.174063, 37.797204 ], [ -122.174149, 37.797170 ], [ -122.173977, 37.797204 ], [ -122.174063, 37.797204 ] ], [ [ -122.223544, 37.855068 ], [ -122.223587, 37.855068 ], [ -122.223587, 37.855034 ], [ -122.223544, 37.855068 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.253456, 37.860218 ], [ -122.243929, 37.860218 ], [ -122.221055, 37.860218 ], [ -122.220626, 37.860218 ], [ -122.215519, 37.860218 ], [ -122.214746, 37.859540 ], [ -122.213588, 37.857914 ], [ -122.213030, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.212043, 37.857033 ], [ -122.211914, 37.856931 ], [ -122.210798, 37.855034 ], [ -122.211013, 37.854559 ], [ -122.208524, 37.851713 ], [ -122.207880, 37.851781 ], [ -122.207322, 37.851543 ], [ -122.204103, 37.851408 ], [ -122.202859, 37.850086 ], [ -122.201786, 37.848697 ], [ -122.200713, 37.847748 ], [ -122.200713, 37.847613 ], [ -122.197623, 37.845342 ], [ -122.196593, 37.844698 ], [ -122.195306, 37.843614 ], [ -122.195306, 37.842834 ], [ -122.196121, 37.842021 ], [ -122.195735, 37.841987 ], [ -122.195306, 37.841648 ], [ -122.194319, 37.841377 ], [ -122.193975, 37.841038 ], [ -122.193933, 37.840767 ], [ -122.191787, 37.839852 ], [ -122.191401, 37.839445 ], [ -122.189684, 37.838022 ], [ -122.188954, 37.837649 ], [ -122.186894, 37.837344 ], [ -122.185307, 37.837039 ], [ -122.184706, 37.835920 ], [ -122.184448, 37.834937 ], [ -122.184191, 37.833954 ], [ -122.185178, 37.832565 ], [ -122.185478, 37.831955 ], [ -122.185993, 37.831243 ], [ -122.186208, 37.831040 ], [ -122.187109, 37.829548 ], [ -122.187195, 37.828735 ], [ -122.187109, 37.827345 ], [ -122.187066, 37.827209 ], [ -122.186809, 37.827074 ], [ -122.186766, 37.826904 ], [ -122.185907, 37.825548 ], [ -122.186680, 37.823548 ], [ -122.186208, 37.821582 ], [ -122.185993, 37.820735 ], [ -122.181487, 37.819548 ], [ -122.176981, 37.816260 ], [ -122.172775, 37.815853 ], [ -122.167969, 37.813886 ], [ -122.166896, 37.813446 ], [ -122.166681, 37.813649 ], [ -122.164536, 37.814666 ], [ -122.164536, 37.804528 ], [ -122.164536, 37.804427 ], [ -122.164536, 37.803884 ], [ -122.164536, 37.776685 ], [ -122.164536, 37.762946 ], [ -122.164536, 37.762233 ], [ -122.164536, 37.751003 ], [ -122.164536, 37.744012 ], [ -122.164536, 37.736478 ], [ -122.164536, 37.726364 ], [ -122.164536, 37.722868 ], [ -122.164578, 37.722562 ], [ -122.164536, 37.722562 ], [ -122.164536, 37.715875 ], [ -122.173591, 37.715875 ], [ -122.195134, 37.715875 ], [ -122.248135, 37.715875 ], [ -122.286630, 37.715875 ], [ -122.288346, 37.718590 ], [ -122.291908, 37.724157 ], [ -122.294312, 37.727755 ], [ -122.310491, 37.753853 ], [ -122.321563, 37.771224 ], [ -122.328773, 37.782519 ], [ -122.336583, 37.795034 ], [ -122.340317, 37.800629 ], [ -122.343750, 37.806292 ], [ -122.346711, 37.811038 ], [ -122.347183, 37.812259 ], [ -122.347183, 37.860218 ], [ -122.332463, 37.860218 ], [ -122.295256, 37.860218 ], [ -122.294226, 37.860218 ], [ -122.289419, 37.860218 ], [ -122.280622, 37.860218 ], [ -122.271867, 37.860218 ], [ -122.264442, 37.860218 ], [ -122.253456, 37.860218 ] ], [ [ -122.177668, 37.765456 ], [ -122.186165, 37.760028 ], [ -122.179213, 37.764439 ], [ -122.177668, 37.765456 ] ], [ [ -122.193933, 37.787776 ], [ -122.192602, 37.788421 ], [ -122.188311, 37.790659 ], [ -122.193933, 37.787776 ] ], [ [ -122.247319, 37.846596 ], [ -122.252727, 37.844461 ], [ -122.249122, 37.845850 ], [ -122.247319, 37.846596 ] ], [ [ -122.256589, 37.756975 ], [ -122.257104, 37.756262 ], [ -122.259507, 37.752598 ], [ -122.256589, 37.756975 ] ], [ [ -122.289419, 37.860218 ], [ -122.288518, 37.857507 ], [ -122.288647, 37.858083 ], [ -122.289419, 37.860218 ] ], [ [ -122.264442, 37.860218 ], [ -122.263927, 37.857507 ], [ -122.263970, 37.858049 ], [ -122.264442, 37.860218 ] ], [ [ -122.230926, 37.789472 ], [ -122.233415, 37.791032 ], [ -122.235303, 37.792151 ], [ -122.230926, 37.789472 ] ], [ [ -122.253885, 37.795814 ], [ -122.251396, 37.793575 ], [ -122.250538, 37.792863 ], [ -122.253885, 37.795814 ] ], [ [ -122.203460, 37.792083 ], [ -122.207365, 37.789743 ], [ -122.204361, 37.791507 ], [ -122.203460, 37.792083 ] ], [ [ -122.271867, 37.860218 ], [ -122.271566, 37.857507 ], [ -122.271566, 37.857982 ], [ -122.271867, 37.860218 ] ], [ [ -122.253456, 37.860218 ], [ -122.253199, 37.857507 ], [ -122.253242, 37.858524 ], [ -122.253284, 37.858795 ], [ -122.253456, 37.860218 ] ], [ [ -122.276888, 37.771393 ], [ -122.272897, 37.771291 ], [ -122.275643, 37.771393 ], [ -122.276888, 37.771393 ] ], [ [ -122.223673, 37.776651 ], [ -122.220883, 37.775260 ], [ -122.219296, 37.774514 ], [ -122.223673, 37.776651 ] ], [ [ -122.245045, 37.788895 ], [ -122.247148, 37.789947 ], [ -122.247062, 37.789845 ], [ -122.245045, 37.788895 ] ], [ [ -122.192860, 37.762030 ], [ -122.191229, 37.761216 ], [ -122.189255, 37.760300 ], [ -122.192860, 37.762030 ] ], [ [ -122.181573, 37.737836 ], [ -122.181616, 37.737836 ], [ -122.181616, 37.737802 ], [ -122.180114, 37.736546 ], [ -122.181573, 37.737836 ] ], [ [ -122.218480, 37.794491 ], [ -122.217278, 37.797543 ], [ -122.217193, 37.797848 ], [ -122.218480, 37.794491 ] ], [ [ -122.288132, 37.816565 ], [ -122.284055, 37.815649 ], [ -122.285299, 37.815954 ], [ -122.288132, 37.816565 ] ], [ [ -122.267833, 37.827074 ], [ -122.266331, 37.834192 ], [ -122.265987, 37.835886 ], [ -122.267833, 37.827074 ] ], [ [ -122.192731, 37.747542 ], [ -122.191401, 37.746354 ], [ -122.190757, 37.745845 ], [ -122.192731, 37.747542 ] ], [ [ -122.211614, 37.790286 ], [ -122.211142, 37.789709 ], [ -122.210240, 37.788794 ], [ -122.211614, 37.790286 ] ], [ [ -122.261868, 37.852594 ], [ -122.265301, 37.852153 ], [ -122.260623, 37.852729 ], [ -122.261868, 37.852594 ] ], [ [ -122.265644, 37.837649 ], [ -122.266674, 37.837513 ], [ -122.266717, 37.837513 ], [ -122.268476, 37.837310 ], [ -122.266459, 37.837513 ], [ -122.265644, 37.837649 ] ], [ [ -122.224188, 37.799985 ], [ -122.226677, 37.800561 ], [ -122.227106, 37.800629 ], [ -122.224188, 37.799985 ] ], [ [ -122.261610, 37.825413 ], [ -122.261996, 37.824192 ], [ -122.262125, 37.823582 ], [ -122.261610, 37.825413 ] ], [ [ -122.217321, 37.783944 ], [ -122.215090, 37.785266 ], [ -122.216291, 37.784588 ], [ -122.217321, 37.783944 ] ], [ [ -122.262425, 37.855881 ], [ -122.262425, 37.855847 ], [ -122.260194, 37.856186 ], [ -122.262425, 37.855881 ] ], [ [ -122.276073, 37.818870 ], [ -122.275300, 37.816463 ], [ -122.275171, 37.816158 ], [ -122.276073, 37.818870 ] ], [ [ -122.235432, 37.805647 ], [ -122.233415, 37.804393 ], [ -122.233629, 37.804562 ], [ -122.235432, 37.805647 ] ], [ [ -122.222729, 37.838903 ], [ -122.223973, 37.840496 ], [ -122.224231, 37.840767 ], [ -122.222729, 37.838903 ] ], [ [ -122.241054, 37.786487 ], [ -122.239165, 37.785334 ], [ -122.238994, 37.785266 ], [ -122.241054, 37.786487 ] ], [ [ -122.224874, 37.785843 ], [ -122.224360, 37.785639 ], [ -122.222300, 37.784961 ], [ -122.224874, 37.785843 ] ], [ [ -122.167969, 37.721679 ], [ -122.165523, 37.722257 ], [ -122.164922, 37.722426 ], [ -122.167969, 37.721679 ] ], [ [ -122.241740, 37.857270 ], [ -122.240367, 37.857202 ], [ -122.239380, 37.857202 ], [ -122.241740, 37.857270 ] ], [ [ -122.243757, 37.801918 ], [ -122.245603, 37.801680 ], [ -122.245860, 37.801612 ], [ -122.243757, 37.801918 ] ], [ [ -122.259936, 37.814666 ], [ -122.261181, 37.813344 ], [ -122.260752, 37.813751 ], [ -122.259936, 37.814666 ] ], [ [ -122.246547, 37.809852 ], [ -122.248349, 37.810428 ], [ -122.248135, 37.810326 ], [ -122.246547, 37.809852 ] ], [ [ -122.286243, 37.821175 ], [ -122.287402, 37.819785 ], [ -122.286201, 37.821175 ], [ -122.286243, 37.821175 ] ], [ [ -122.221184, 37.813819 ], [ -122.220197, 37.813547 ], [ -122.219124, 37.813310 ], [ -122.221184, 37.813819 ] ], [ [ -122.261653, 37.764405 ], [ -122.262511, 37.764880 ], [ -122.263241, 37.765219 ], [ -122.261653, 37.764405 ] ], [ [ -122.276802, 37.775159 ], [ -122.276931, 37.772377 ], [ -122.276931, 37.771970 ], [ -122.276802, 37.775159 ] ], [ [ -122.231526, 37.816056 ], [ -122.232985, 37.816463 ], [ -122.232256, 37.816226 ], [ -122.231526, 37.816056 ] ], [ [ -122.172003, 37.769188 ], [ -122.171273, 37.769629 ], [ -122.171102, 37.769799 ], [ -122.172003, 37.769188 ] ], [ [ -122.257791, 37.853102 ], [ -122.259550, 37.852865 ], [ -122.258348, 37.853001 ], [ -122.257791, 37.853102 ] ], [ [ -122.287660, 37.854830 ], [ -122.287273, 37.853577 ], [ -122.287445, 37.854254 ], [ -122.287660, 37.854830 ] ], [ [ -122.183805, 37.809750 ], [ -122.182560, 37.809445 ], [ -122.182689, 37.809513 ], [ -122.183805, 37.809750 ] ], [ [ -122.209125, 37.788726 ], [ -122.209854, 37.788353 ], [ -122.209940, 37.788251 ], [ -122.209125, 37.788726 ] ], [ [ -122.288690, 37.802765 ], [ -122.287445, 37.802765 ], [ -122.287703, 37.802799 ], [ -122.288690, 37.802765 ] ], [ [ -122.266974, 37.838530 ], [ -122.266760, 37.837547 ], [ -122.266717, 37.837547 ], [ -122.266974, 37.838530 ] ], [ [ -122.230926, 37.789472 ], [ -122.231526, 37.788861 ], [ -122.231827, 37.788488 ], [ -122.230926, 37.789472 ] ], [ [ -122.183805, 37.809750 ], [ -122.184663, 37.809784 ], [ -122.185006, 37.809750 ], [ -122.183805, 37.809750 ] ], [ [ -122.179813, 37.736275 ], [ -122.179813, 37.736241 ], [ -122.178655, 37.735290 ], [ -122.179813, 37.736275 ] ], [ [ -122.268991, 37.798425 ], [ -122.269506, 37.797679 ], [ -122.269549, 37.797543 ], [ -122.268991, 37.798425 ] ], [ [ -122.259550, 37.836835 ], [ -122.259936, 37.837005 ], [ -122.259250, 37.836903 ], [ -122.260194, 37.837073 ], [ -122.259550, 37.836835 ] ], [ [ -122.217107, 37.810225 ], [ -122.217793, 37.809479 ], [ -122.217622, 37.809614 ], [ -122.217107, 37.810225 ] ], [ [ -122.187967, 37.784385 ], [ -122.189984, 37.784690 ], [ -122.189641, 37.784622 ], [ -122.187967, 37.784385 ] ], [ [ -122.229896, 37.801646 ], [ -122.228909, 37.801138 ], [ -122.228780, 37.801104 ], [ -122.229896, 37.801646 ] ], [ [ -122.278948, 37.852391 ], [ -122.278647, 37.851171 ], [ -122.278905, 37.852323 ], [ -122.278948, 37.852391 ] ], [ [ -122.250195, 37.811954 ], [ -122.249894, 37.811513 ], [ -122.249594, 37.811174 ], [ -122.250195, 37.811954 ] ], [ [ -122.224102, 37.853407 ], [ -122.224102, 37.853339 ], [ -122.223673, 37.852865 ], [ -122.224102, 37.853407 ] ], [ [ -122.259550, 37.798052 ], [ -122.258863, 37.798018 ], [ -122.258778, 37.798052 ], [ -122.259550, 37.798052 ] ], [ [ -122.289977, 37.815649 ], [ -122.289805, 37.816158 ], [ -122.289720, 37.816565 ], [ -122.289977, 37.815649 ] ], [ [ -122.256331, 37.808089 ], [ -122.256331, 37.808699 ], [ -122.256374, 37.808394 ], [ -122.256331, 37.808089 ] ], [ [ -122.168956, 37.772648 ], [ -122.168999, 37.773021 ], [ -122.169085, 37.773191 ], [ -122.168956, 37.772648 ] ], [ [ -122.243757, 37.848528 ], [ -122.244229, 37.847918 ], [ -122.243929, 37.848256 ], [ -122.243757, 37.848528 ] ], [ [ -122.242556, 37.850832 ], [ -122.243414, 37.850561 ], [ -122.242684, 37.850764 ], [ -122.242556, 37.850832 ] ], [ [ -122.187538, 37.835886 ], [ -122.187324, 37.835547 ], [ -122.187195, 37.835446 ], [ -122.187538, 37.835886 ] ], [ [ -122.238393, 37.821107 ], [ -122.238393, 37.820633 ], [ -122.238350, 37.820531 ], [ -122.238393, 37.821107 ] ], [ [ -122.256932, 37.812462 ], [ -122.256503, 37.811988 ], [ -122.256675, 37.812225 ], [ -122.256932, 37.812462 ] ], [ [ -122.215219, 37.831717 ], [ -122.215261, 37.831548 ], [ -122.215047, 37.831955 ], [ -122.215219, 37.831717 ] ], [ [ -122.240238, 37.808801 ], [ -122.239552, 37.808428 ], [ -122.239380, 37.808360 ], [ -122.240238, 37.808801 ] ], [ [ -122.278690, 37.814598 ], [ -122.279077, 37.814700 ], [ -122.279377, 37.814734 ], [ -122.278690, 37.814598 ] ], [ [ -122.219424, 37.782553 ], [ -122.219167, 37.782282 ], [ -122.219210, 37.782383 ], [ -122.219424, 37.782553 ] ], [ [ -122.198567, 37.810259 ], [ -122.199039, 37.810191 ], [ -122.198825, 37.810191 ], [ -122.198567, 37.810259 ] ], [ [ -122.300234, 37.802596 ], [ -122.299976, 37.802494 ], [ -122.299676, 37.802426 ], [ -122.300234, 37.802596 ] ], [ [ -122.179427, 37.735596 ], [ -122.179813, 37.736241 ], [ -122.179770, 37.736139 ], [ -122.179427, 37.735596 ] ], [ [ -122.179942, 37.790591 ], [ -122.179770, 37.790388 ], [ -122.179599, 37.790252 ], [ -122.179942, 37.790591 ] ], [ [ -122.219424, 37.859574 ], [ -122.219424, 37.859303 ], [ -122.219381, 37.859506 ], [ -122.219424, 37.859574 ] ], [ [ -122.218008, 37.833005 ], [ -122.218094, 37.833039 ], [ -122.218308, 37.833005 ], [ -122.218008, 37.833005 ] ], [ [ -122.218051, 37.809275 ], [ -122.218437, 37.809072 ], [ -122.218137, 37.809208 ], [ -122.218051, 37.809275 ] ], [ [ -122.186723, 37.835954 ], [ -122.187066, 37.835988 ], [ -122.186980, 37.835954 ], [ -122.186723, 37.835954 ] ], [ [ -122.280750, 37.766474 ], [ -122.280793, 37.766372 ], [ -122.280750, 37.766305 ], [ -122.280750, 37.766474 ] ], [ [ -122.235260, 37.842292 ], [ -122.235389, 37.842258 ], [ -122.235432, 37.842190 ], [ -122.235260, 37.842292 ] ], [ [ -122.247920, 37.800663 ], [ -122.248263, 37.800527 ], [ -122.248049, 37.800595 ], [ -122.247920, 37.800663 ] ], [ [ -122.236376, 37.823209 ], [ -122.235990, 37.823345 ], [ -122.236032, 37.823345 ], [ -122.236376, 37.823209 ] ], [ [ -122.201185, 37.754939 ], [ -122.201185, 37.754871 ], [ -122.201142, 37.754905 ], [ -122.201185, 37.754939 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "075" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.347183, 37.812259 ], [ -122.346711, 37.811038 ], [ -122.343750, 37.806292 ], [ -122.340317, 37.800629 ], [ -122.336583, 37.795034 ], [ -122.327957, 37.781230 ], [ -122.310491, 37.753853 ], [ -122.294312, 37.727755 ], [ -122.291908, 37.724157 ], [ -122.288346, 37.718590 ], [ -122.286630, 37.715875 ], [ -122.347183, 37.715875 ], [ -122.347183, 37.812259 ] ] ] } } ] } @@ -92,19 +93,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 790 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286973, 37.898732 ], [ -122.286029, 37.899003 ], [ -122.284999, 37.899240 ], [ -122.284098, 37.899849 ], [ -122.282982, 37.900357 ], [ -122.281523, 37.900628 ], [ -122.279892, 37.900628 ], [ -122.278004, 37.901644 ], [ -122.278390, 37.903235 ], [ -122.276201, 37.903845 ], [ -122.274098, 37.905064 ], [ -122.271094, 37.905843 ], [ -122.271781, 37.904929 ], [ -122.271695, 37.904725 ], [ -122.270279, 37.904387 ], [ -122.269893, 37.904455 ], [ -122.269206, 37.904184 ], [ -122.268305, 37.903980 ], [ -122.268176, 37.903980 ], [ -122.267833, 37.904150 ], [ -122.267489, 37.904387 ], [ -122.267189, 37.904488 ], [ -122.266417, 37.904455 ], [ -122.265387, 37.904285 ], [ -122.265129, 37.904150 ], [ -122.264743, 37.903811 ], [ -122.264099, 37.903811 ], [ -122.263970, 37.903743 ], [ -122.262769, 37.902355 ], [ -122.262425, 37.901746 ], [ -122.262125, 37.901576 ], [ -122.261395, 37.901475 ], [ -122.261267, 37.901373 ], [ -122.261138, 37.899951 ], [ -122.260838, 37.899680 ], [ -122.260752, 37.899646 ], [ -122.260709, 37.899646 ], [ -122.260065, 37.899917 ], [ -122.259808, 37.899917 ], [ -122.259378, 37.899714 ], [ -122.258692, 37.899036 ], [ -122.258391, 37.899003 ], [ -122.258220, 37.899036 ], [ -122.257962, 37.899206 ], [ -122.257147, 37.899883 ], [ -122.257018, 37.899883 ], [ -122.256675, 37.899544 ], [ -122.256289, 37.898698 ], [ -122.256074, 37.898427 ], [ -122.256074, 37.898258 ], [ -122.256331, 37.897851 ], [ -122.256289, 37.896971 ], [ -122.255816, 37.896463 ], [ -122.255430, 37.896260 ], [ -122.255173, 37.896260 ], [ -122.255044, 37.896361 ], [ -122.254872, 37.896361 ], [ -122.254486, 37.896226 ], [ -122.253714, 37.896226 ], [ -122.252898, 37.895379 ], [ -122.252684, 37.895006 ], [ -122.252684, 37.894600 ], [ -122.253113, 37.894126 ], [ -122.253113, 37.893957 ], [ -122.253027, 37.893821 ], [ -122.252941, 37.893753 ], [ -122.252126, 37.893550 ], [ -122.251482, 37.893855 ], [ -122.251182, 37.893855 ], [ -122.250752, 37.893720 ], [ -122.249508, 37.893110 ], [ -122.248993, 37.891247 ], [ -122.248693, 37.890841 ], [ -122.249594, 37.889960 ], [ -122.249808, 37.889655 ], [ -122.249508, 37.889249 ], [ -122.249508, 37.888267 ], [ -122.248993, 37.887352 ], [ -122.248950, 37.886878 ], [ -122.246675, 37.885286 ], [ -122.244143, 37.883254 ], [ -122.241998, 37.881933 ], [ -122.239895, 37.882949 ], [ -122.238693, 37.883356 ], [ -122.235990, 37.882610 ], [ -122.234359, 37.882238 ], [ -122.231011, 37.881357 ], [ -122.225819, 37.879257 ], [ -122.223887, 37.878342 ], [ -122.221398, 37.875328 ], [ -122.217407, 37.871737 ], [ -122.216291, 37.868823 ], [ -122.217107, 37.868417 ], [ -122.217922, 37.867875 ], [ -122.219210, 37.867231 ], [ -122.221527, 37.865029 ], [ -122.220411, 37.864453 ], [ -122.217536, 37.862014 ], [ -122.214746, 37.859540 ], [ -122.213588, 37.857914 ], [ -122.213030, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.211914, 37.856931 ], [ -122.210798, 37.855034 ], [ -122.210927, 37.854796 ], [ -122.223501, 37.854796 ], [ -122.234445, 37.854796 ], [ -122.252941, 37.854796 ], [ -122.262340, 37.854796 ], [ -122.268906, 37.854796 ], [ -122.271266, 37.854796 ], [ -122.279463, 37.854796 ], [ -122.287660, 37.854796 ], [ -122.326670, 37.854796 ], [ -122.347183, 37.854796 ], [ -122.347183, 37.889791 ], [ -122.343750, 37.890536 ], [ -122.333407, 37.892805 ], [ -122.313023, 37.897343 ], [ -122.311907, 37.897513 ], [ -122.310920, 37.897851 ], [ -122.309461, 37.897851 ], [ -122.308817, 37.898054 ], [ -122.306757, 37.898190 ], [ -122.305341, 37.898427 ], [ -122.304611, 37.898427 ], [ -122.303796, 37.898528 ], [ -122.301650, 37.898528 ], [ -122.300320, 37.898258 ], [ -122.299719, 37.898291 ], [ -122.299032, 37.898427 ], [ -122.297788, 37.898833 ], [ -122.297015, 37.898935 ], [ -122.296243, 37.898935 ], [ -122.295899, 37.898935 ], [ -122.294569, 37.898766 ], [ -122.293668, 37.898664 ], [ -122.293196, 37.898427 ], [ -122.291994, 37.898258 ], [ -122.290964, 37.897919 ], [ -122.290192, 37.897851 ], [ -122.289248, 37.897851 ], [ -122.288518, 37.897953 ], [ -122.287188, 37.898664 ], [ -122.286973, 37.898732 ] ], [ [ -122.265301, 37.864284 ], [ -122.264743, 37.861573 ], [ -122.263927, 37.857507 ], [ -122.264528, 37.860692 ], [ -122.265301, 37.864284 ] ], [ [ -122.292252, 37.869060 ], [ -122.289677, 37.861133 ], [ -122.290406, 37.863470 ], [ -122.292252, 37.869060 ] ], [ [ -122.273755, 37.877800 ], [ -122.282810, 37.876683 ], [ -122.282338, 37.876717 ], [ -122.273755, 37.877800 ] ], [ [ -122.288733, 37.875904 ], [ -122.292209, 37.875463 ], [ -122.293625, 37.875226 ], [ -122.288733, 37.875904 ] ], [ [ -122.255731, 37.875700 ], [ -122.260494, 37.875091 ], [ -122.257061, 37.875497 ], [ -122.255731, 37.875700 ] ], [ [ -122.253370, 37.859506 ], [ -122.253199, 37.857507 ], [ -122.253242, 37.858524 ], [ -122.253284, 37.858795 ], [ -122.253370, 37.859506 ] ], [ [ -122.264528, 37.860692 ], [ -122.262297, 37.860963 ], [ -122.260323, 37.861268 ], [ -122.264528, 37.860692 ] ], [ [ -122.298517, 37.890333 ], [ -122.296457, 37.890401 ], [ -122.294269, 37.890536 ], [ -122.298517, 37.890333 ] ], [ [ -122.281265, 37.862217 ], [ -122.285728, 37.861641 ], [ -122.285514, 37.861641 ], [ -122.281265, 37.862217 ] ], [ [ -122.273755, 37.877800 ], [ -122.274141, 37.881425 ], [ -122.274313, 37.882746 ], [ -122.273755, 37.877800 ] ], [ [ -122.266288, 37.868789 ], [ -122.266288, 37.868688 ], [ -122.266245, 37.868620 ], [ -122.266288, 37.868789 ] ], [ [ -122.287188, 37.890942 ], [ -122.287445, 37.890909 ], [ -122.282424, 37.891180 ], [ -122.287188, 37.890942 ] ], [ [ -122.219424, 37.859574 ], [ -122.219424, 37.859303 ], [ -122.219381, 37.859506 ], [ -122.219424, 37.859574 ] ], [ [ -122.265902, 37.869603 ], [ -122.265902, 37.870043 ], [ -122.265987, 37.870483 ], [ -122.265902, 37.869603 ] ], [ [ -122.294526, 37.875192 ], [ -122.294226, 37.875158 ], [ -122.293968, 37.875192 ], [ -122.294526, 37.875192 ] ], [ [ -122.220969, 37.860286 ], [ -122.221055, 37.860218 ], [ -122.221055, 37.860150 ], [ -122.220969, 37.860286 ] ], [ [ -122.270708, 37.901813 ], [ -122.270494, 37.904116 ], [ -122.270536, 37.904082 ], [ -122.270708, 37.901813 ] ], [ [ -122.281265, 37.862217 ], [ -122.274399, 37.863064 ], [ -122.273669, 37.863165 ], [ -122.281265, 37.862217 ] ], [ [ -122.241740, 37.857270 ], [ -122.240367, 37.857202 ], [ -122.239380, 37.857202 ], [ -122.241740, 37.857270 ] ], [ [ -122.246375, 37.880985 ], [ -122.246332, 37.880206 ], [ -122.246246, 37.879562 ], [ -122.246375, 37.880985 ] ], [ [ -122.291179, 37.883999 ], [ -122.291908, 37.885896 ], [ -122.291694, 37.885286 ], [ -122.291179, 37.883999 ] ], [ [ -122.255173, 37.896260 ], [ -122.255559, 37.895989 ], [ -122.255430, 37.895989 ], [ -122.255173, 37.896260 ] ], [ [ -122.255602, 37.880206 ], [ -122.256331, 37.880070 ], [ -122.256460, 37.880002 ], [ -122.255602, 37.880206 ] ], [ [ -122.266331, 37.873702 ], [ -122.266331, 37.873363 ], [ -122.266245, 37.872922 ], [ -122.266331, 37.873702 ] ], [ [ -122.267232, 37.891721 ], [ -122.267017, 37.892094 ], [ -122.267017, 37.892196 ], [ -122.267232, 37.891721 ] ], [ [ -122.263069, 37.886506 ], [ -122.262425, 37.886539 ], [ -122.262812, 37.886539 ], [ -122.263069, 37.886506 ] ], [ [ -122.272253, 37.890231 ], [ -122.272553, 37.890265 ], [ -122.272553, 37.890231 ], [ -122.272253, 37.890231 ] ], [ [ -122.277060, 37.893686 ], [ -122.277060, 37.893889 ], [ -122.277102, 37.893957 ], [ -122.277060, 37.893686 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286973, 37.898732 ], [ -122.286029, 37.899003 ], [ -122.284999, 37.899240 ], [ -122.284098, 37.899849 ], [ -122.282982, 37.900357 ], [ -122.281523, 37.900628 ], [ -122.279892, 37.900628 ], [ -122.278004, 37.901644 ], [ -122.278390, 37.903235 ], [ -122.276201, 37.903845 ], [ -122.274098, 37.905064 ], [ -122.271094, 37.905843 ], [ -122.271781, 37.904929 ], [ -122.271695, 37.904725 ], [ -122.270279, 37.904387 ], [ -122.269893, 37.904455 ], [ -122.269206, 37.904184 ], [ -122.268305, 37.903980 ], [ -122.268176, 37.903980 ], [ -122.267833, 37.904150 ], [ -122.267489, 37.904387 ], [ -122.267189, 37.904488 ], [ -122.266417, 37.904455 ], [ -122.265387, 37.904285 ], [ -122.265129, 37.904150 ], [ -122.264743, 37.903811 ], [ -122.264099, 37.903811 ], [ -122.263970, 37.903743 ], [ -122.262769, 37.902355 ], [ -122.262425, 37.901746 ], [ -122.262125, 37.901576 ], [ -122.261395, 37.901475 ], [ -122.261267, 37.901373 ], [ -122.261138, 37.899951 ], [ -122.260838, 37.899680 ], [ -122.260752, 37.899646 ], [ -122.260709, 37.899646 ], [ -122.260065, 37.899917 ], [ -122.259808, 37.899917 ], [ -122.259378, 37.899714 ], [ -122.258692, 37.899036 ], [ -122.258391, 37.899003 ], [ -122.258220, 37.899036 ], [ -122.257962, 37.899206 ], [ -122.257147, 37.899883 ], [ -122.257018, 37.899883 ], [ -122.256675, 37.899544 ], [ -122.256289, 37.898698 ], [ -122.256074, 37.898427 ], [ -122.256074, 37.898258 ], [ -122.256331, 37.897851 ], [ -122.256289, 37.896971 ], [ -122.255816, 37.896463 ], [ -122.255430, 37.896260 ], [ -122.255173, 37.896260 ], [ -122.255044, 37.896361 ], [ -122.254872, 37.896361 ], [ -122.254486, 37.896226 ], [ -122.253714, 37.896226 ], [ -122.252898, 37.895379 ], [ -122.252684, 37.895006 ], [ -122.252684, 37.894600 ], [ -122.253113, 37.894126 ], [ -122.253113, 37.893957 ], [ -122.253027, 37.893821 ], [ -122.252941, 37.893753 ], [ -122.252126, 37.893550 ], [ -122.251482, 37.893855 ], [ -122.251182, 37.893855 ], [ -122.250752, 37.893720 ], [ -122.249508, 37.893110 ], [ -122.248993, 37.891247 ], [ -122.248693, 37.890841 ], [ -122.249594, 37.889960 ], [ -122.249808, 37.889655 ], [ -122.249508, 37.889249 ], [ -122.249508, 37.888267 ], [ -122.248993, 37.887352 ], [ -122.248950, 37.886878 ], [ -122.246675, 37.885286 ], [ -122.244143, 37.883254 ], [ -122.241998, 37.881933 ], [ -122.239895, 37.882949 ], [ -122.238693, 37.883356 ], [ -122.235990, 37.882610 ], [ -122.234359, 37.882238 ], [ -122.231011, 37.881357 ], [ -122.225819, 37.879257 ], [ -122.223887, 37.878342 ], [ -122.221398, 37.875328 ], [ -122.217407, 37.871737 ], [ -122.216291, 37.868823 ], [ -122.217107, 37.868417 ], [ -122.217922, 37.867875 ], [ -122.219210, 37.867231 ], [ -122.221527, 37.865029 ], [ -122.220411, 37.864453 ], [ -122.217536, 37.862014 ], [ -122.214746, 37.859540 ], [ -122.213588, 37.857914 ], [ -122.213030, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.211914, 37.856931 ], [ -122.210798, 37.855034 ], [ -122.210927, 37.854796 ], [ -122.223501, 37.854796 ], [ -122.234445, 37.854796 ], [ -122.252941, 37.854796 ], [ -122.262340, 37.854796 ], [ -122.268906, 37.854796 ], [ -122.271266, 37.854796 ], [ -122.279463, 37.854796 ], [ -122.287660, 37.854796 ], [ -122.326670, 37.854796 ], [ -122.347183, 37.854796 ], [ -122.347183, 37.889791 ], [ -122.343750, 37.890536 ], [ -122.333407, 37.892805 ], [ -122.313023, 37.897343 ], [ -122.311907, 37.897513 ], [ -122.310920, 37.897851 ], [ -122.309461, 37.897851 ], [ -122.308817, 37.898054 ], [ -122.306757, 37.898190 ], [ -122.305341, 37.898427 ], [ -122.304611, 37.898427 ], [ -122.303796, 37.898528 ], [ -122.301650, 37.898528 ], [ -122.300320, 37.898258 ], [ -122.299719, 37.898291 ], [ -122.299032, 37.898427 ], [ -122.297788, 37.898833 ], [ -122.297015, 37.898935 ], [ -122.296243, 37.898935 ], [ -122.295899, 37.898935 ], [ -122.294569, 37.898766 ], [ -122.293668, 37.898664 ], [ -122.293196, 37.898427 ], [ -122.291994, 37.898258 ], [ -122.290964, 37.897919 ], [ -122.290192, 37.897851 ], [ -122.289248, 37.897851 ], [ -122.288518, 37.897953 ], [ -122.287188, 37.898664 ], [ -122.286973, 37.898732 ] ], [ [ -122.292252, 37.869060 ], [ -122.289677, 37.861133 ], [ -122.290406, 37.863470 ], [ -122.292252, 37.869060 ] ], [ [ -122.273755, 37.877800 ], [ -122.282810, 37.876683 ], [ -122.282338, 37.876717 ], [ -122.273755, 37.877800 ] ], [ [ -122.288733, 37.875904 ], [ -122.292209, 37.875463 ], [ -122.293625, 37.875226 ], [ -122.288733, 37.875904 ] ], [ [ -122.255731, 37.875700 ], [ -122.260494, 37.875091 ], [ -122.257061, 37.875497 ], [ -122.255731, 37.875700 ] ], [ [ -122.264743, 37.861573 ], [ -122.263927, 37.857507 ], [ -122.264528, 37.860692 ], [ -122.264743, 37.861573 ] ], [ [ -122.253370, 37.859506 ], [ -122.253199, 37.857507 ], [ -122.253242, 37.858524 ], [ -122.253284, 37.858795 ], [ -122.253370, 37.859506 ] ], [ [ -122.264528, 37.860692 ], [ -122.262297, 37.860963 ], [ -122.260323, 37.861268 ], [ -122.264528, 37.860692 ] ], [ [ -122.298517, 37.890333 ], [ -122.296457, 37.890401 ], [ -122.294269, 37.890536 ], [ -122.298517, 37.890333 ] ], [ [ -122.281265, 37.862217 ], [ -122.285728, 37.861641 ], [ -122.285514, 37.861641 ], [ -122.281265, 37.862217 ] ], [ [ -122.273755, 37.877800 ], [ -122.274141, 37.881425 ], [ -122.274313, 37.882746 ], [ -122.273755, 37.877800 ] ], [ [ -122.266288, 37.868789 ], [ -122.266288, 37.868688 ], [ -122.266245, 37.868620 ], [ -122.266288, 37.868789 ] ], [ [ -122.287188, 37.890942 ], [ -122.287445, 37.890909 ], [ -122.282424, 37.891180 ], [ -122.287188, 37.890942 ] ], [ [ -122.219424, 37.859574 ], [ -122.219424, 37.859303 ], [ -122.219381, 37.859506 ], [ -122.219424, 37.859574 ] ], [ [ -122.265902, 37.869603 ], [ -122.265902, 37.870043 ], [ -122.265987, 37.870483 ], [ -122.265902, 37.869603 ] ], [ [ -122.294526, 37.875192 ], [ -122.294226, 37.875158 ], [ -122.293968, 37.875192 ], [ -122.294526, 37.875192 ] ], [ [ -122.270708, 37.901813 ], [ -122.270494, 37.904116 ], [ -122.270536, 37.904082 ], [ -122.270708, 37.901813 ] ], [ [ -122.281265, 37.862217 ], [ -122.274399, 37.863064 ], [ -122.273669, 37.863165 ], [ -122.281265, 37.862217 ] ], [ [ -122.241740, 37.857270 ], [ -122.240367, 37.857202 ], [ -122.239380, 37.857202 ], [ -122.241740, 37.857270 ] ], [ [ -122.246375, 37.880985 ], [ -122.246332, 37.880206 ], [ -122.246246, 37.879562 ], [ -122.246375, 37.880985 ] ], [ [ -122.291179, 37.883999 ], [ -122.291908, 37.885896 ], [ -122.291694, 37.885286 ], [ -122.291179, 37.883999 ] ], [ [ -122.255173, 37.896260 ], [ -122.255559, 37.895989 ], [ -122.255430, 37.895989 ], [ -122.255173, 37.896260 ] ], [ [ -122.255602, 37.880206 ], [ -122.256331, 37.880070 ], [ -122.256460, 37.880002 ], [ -122.255602, 37.880206 ] ], [ [ -122.266331, 37.873702 ], [ -122.266331, 37.873363 ], [ -122.266245, 37.872922 ], [ -122.266331, 37.873702 ] ], [ [ -122.267232, 37.891721 ], [ -122.267017, 37.892094 ], [ -122.267017, 37.892196 ], [ -122.267232, 37.891721 ] ], [ [ -122.263069, 37.886506 ], [ -122.262425, 37.886539 ], [ -122.262812, 37.886539 ], [ -122.263069, 37.886506 ] ], [ [ -122.272253, 37.890231 ], [ -122.272553, 37.890265 ], [ -122.272553, 37.890231 ], [ -122.272253, 37.890231 ] ], [ [ -122.277060, 37.893686 ], [ -122.277060, 37.893889 ], [ -122.277102, 37.893957 ], [ -122.277060, 37.893686 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 329, "y": 793 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.992402, 37.582133 ], [ -121.988754, 37.582133 ], [ -121.988754, 37.580093 ], [ -121.988754, 37.569141 ], [ -121.988754, 37.565059 ], [ -121.988754, 37.555159 ], [ -121.988754, 37.544305 ], [ -121.988754, 37.531408 ], [ -121.988754, 37.522933 ], [ -121.988754, 37.521368 ], [ -121.988754, 37.463516 ], [ -121.992188, 37.464504 ], [ -121.992702, 37.464640 ], [ -121.994333, 37.466070 ], [ -121.995535, 37.466752 ], [ -121.996479, 37.467058 ], [ -121.996694, 37.467263 ], [ -121.997209, 37.467160 ], [ -121.998281, 37.467126 ], [ -121.999826, 37.466956 ], [ -122.020898, 37.465151 ], [ -122.021155, 37.465083 ], [ -122.022529, 37.465151 ], [ -122.023816, 37.465457 ], [ -122.025447, 37.465662 ], [ -122.029910, 37.465321 ], [ -122.033772, 37.465151 ], [ -122.036219, 37.464980 ], [ -122.037292, 37.464708 ], [ -122.040725, 37.463005 ], [ -122.042570, 37.461813 ], [ -122.044587, 37.460688 ], [ -122.046604, 37.459530 ], [ -122.047849, 37.459019 ], [ -122.049007, 37.458917 ], [ -122.050338, 37.458917 ], [ -122.051282, 37.459019 ], [ -122.051969, 37.459258 ], [ -122.081494, 37.477855 ], [ -122.104025, 37.493724 ], [ -122.109604, 37.497640 ], [ -122.117414, 37.506900 ], [ -122.149215, 37.545836 ], [ -122.149429, 37.546177 ], [ -122.156081, 37.554649 ], [ -122.167969, 37.569617 ], [ -122.169857, 37.571896 ], [ -122.171402, 37.573835 ], [ -122.171402, 37.582133 ], [ -122.153549, 37.582133 ], [ -122.096171, 37.582133 ], [ -122.080936, 37.582133 ], [ -122.076302, 37.582133 ], [ -122.072010, 37.582133 ], [ -122.065315, 37.582133 ], [ -122.061968, 37.582133 ], [ -122.049651, 37.582133 ], [ -122.029052, 37.582133 ], [ -122.023301, 37.582133 ], [ -122.006736, 37.582133 ], [ -122.005663, 37.582133 ], [ -121.992402, 37.582133 ] ], [ [ -122.010040, 37.520380 ], [ -122.012143, 37.515649 ], [ -122.013688, 37.512007 ], [ -122.010040, 37.520380 ] ], [ [ -121.995234, 37.511394 ], [ -121.997166, 37.506287 ], [ -121.995406, 37.510849 ], [ -121.995234, 37.511394 ] ], [ [ -121.992188, 37.533178 ], [ -121.990685, 37.532361 ], [ -121.988754, 37.531408 ], [ -121.992188, 37.533178 ] ], [ [ -122.064328, 37.542502 ], [ -122.065358, 37.541787 ], [ -122.067375, 37.540256 ], [ -122.064328, 37.542502 ] ], [ [ -121.993475, 37.515751 ], [ -121.994677, 37.514185 ], [ -121.994762, 37.513981 ], [ -121.993475, 37.515751 ] ], [ [ -122.044673, 37.533314 ], [ -122.052183, 37.539507 ], [ -122.051497, 37.538929 ], [ -122.044673, 37.533314 ] ], [ [ -122.024546, 37.544407 ], [ -122.026262, 37.542263 ], [ -122.026305, 37.542161 ], [ -122.024546, 37.544407 ] ], [ [ -121.995234, 37.511394 ], [ -121.994805, 37.513913 ], [ -121.994848, 37.513845 ], [ -121.995234, 37.511394 ] ], [ [ -122.032442, 37.570807 ], [ -122.032657, 37.570603 ], [ -122.033987, 37.569004 ], [ -122.032442, 37.570807 ] ], [ [ -122.080936, 37.579413 ], [ -122.080936, 37.577950 ], [ -122.080894, 37.577814 ], [ -122.080936, 37.579413 ] ], [ [ -122.048450, 37.567270 ], [ -122.045703, 37.567780 ], [ -122.046003, 37.567746 ], [ -122.048450, 37.567270 ] ], [ [ -121.998796, 37.553934 ], [ -121.998281, 37.553628 ], [ -121.997294, 37.553152 ], [ -121.998796, 37.553934 ] ], [ [ -122.020168, 37.575229 ], [ -122.018795, 37.574651 ], [ -122.019997, 37.575195 ], [ -122.020168, 37.575229 ] ], [ [ -122.042270, 37.564038 ], [ -122.043171, 37.563018 ], [ -122.042913, 37.563256 ], [ -122.042270, 37.564038 ] ], [ [ -122.007809, 37.565161 ], [ -122.007165, 37.564650 ], [ -122.006607, 37.564276 ], [ -122.007809, 37.565161 ] ], [ [ -122.062397, 37.528719 ], [ -122.062225, 37.528651 ], [ -122.057977, 37.527154 ], [ -122.062397, 37.528719 ] ], [ [ -122.009354, 37.568188 ], [ -122.009525, 37.568460 ], [ -122.009869, 37.568834 ], [ -122.009354, 37.568188 ] ], [ [ -122.049265, 37.581793 ], [ -122.049222, 37.581079 ], [ -122.049179, 37.581011 ], [ -122.049265, 37.581793 ] ], [ [ -122.034116, 37.581657 ], [ -122.033343, 37.581419 ], [ -122.033558, 37.581521 ], [ -122.034116, 37.581657 ] ], [ [ -122.003946, 37.563290 ], [ -122.004762, 37.563324 ], [ -122.004633, 37.563290 ], [ -122.003946, 37.563290 ] ], [ [ -121.998453, 37.564344 ], [ -121.997981, 37.564310 ], [ -121.998110, 37.564344 ], [ -121.998453, 37.564344 ] ], [ [ -122.107801, 37.561078 ], [ -122.107587, 37.561044 ], [ -122.107329, 37.561044 ], [ -122.107801, 37.561078 ] ], [ [ -122.111621, 37.510271 ], [ -122.111707, 37.510407 ], [ -122.111707, 37.510373 ], [ -122.111621, 37.510271 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.992402, 37.582133 ], [ -121.988754, 37.582133 ], [ -121.988754, 37.580093 ], [ -121.988754, 37.569141 ], [ -121.988754, 37.565059 ], [ -121.988754, 37.555159 ], [ -121.988754, 37.544305 ], [ -121.988754, 37.531408 ], [ -121.988754, 37.522933 ], [ -121.988754, 37.521368 ], [ -121.988754, 37.463516 ], [ -121.992188, 37.464504 ], [ -121.992702, 37.464640 ], [ -121.994333, 37.466070 ], [ -121.995535, 37.466752 ], [ -121.996479, 37.467058 ], [ -121.996694, 37.467263 ], [ -121.997209, 37.467160 ], [ -121.998281, 37.467126 ], [ -121.999826, 37.466956 ], [ -122.020898, 37.465151 ], [ -122.021155, 37.465083 ], [ -122.022529, 37.465151 ], [ -122.023816, 37.465457 ], [ -122.025447, 37.465662 ], [ -122.029910, 37.465321 ], [ -122.033772, 37.465151 ], [ -122.036219, 37.464980 ], [ -122.037292, 37.464708 ], [ -122.040725, 37.463005 ], [ -122.042570, 37.461813 ], [ -122.044587, 37.460688 ], [ -122.046604, 37.459530 ], [ -122.047849, 37.459019 ], [ -122.049007, 37.458917 ], [ -122.050338, 37.458917 ], [ -122.051282, 37.459019 ], [ -122.051969, 37.459258 ], [ -122.081494, 37.477855 ], [ -122.104025, 37.493724 ], [ -122.109604, 37.497640 ], [ -122.117414, 37.506900 ], [ -122.149215, 37.545836 ], [ -122.149429, 37.546177 ], [ -122.156081, 37.554649 ], [ -122.167969, 37.569617 ], [ -122.169857, 37.571896 ], [ -122.171402, 37.573835 ], [ -122.171402, 37.582133 ], [ -122.153549, 37.582133 ], [ -122.096171, 37.582133 ], [ -122.080936, 37.582133 ], [ -122.076302, 37.582133 ], [ -122.072010, 37.582133 ], [ -122.065315, 37.582133 ], [ -122.061968, 37.582133 ], [ -122.049651, 37.582133 ], [ -122.029052, 37.582133 ], [ -122.023301, 37.582133 ], [ -122.006736, 37.582133 ], [ -122.005663, 37.582133 ], [ -121.992402, 37.582133 ] ], [ [ -122.010040, 37.520380 ], [ -122.012143, 37.515649 ], [ -122.013688, 37.512007 ], [ -122.010040, 37.520380 ] ], [ [ -121.995234, 37.511394 ], [ -121.997166, 37.506287 ], [ -121.995406, 37.510849 ], [ -121.995234, 37.511394 ] ], [ [ -121.992188, 37.533178 ], [ -121.990685, 37.532361 ], [ -121.988754, 37.531408 ], [ -121.992188, 37.533178 ] ], [ [ -122.064328, 37.542502 ], [ -122.065358, 37.541787 ], [ -122.067375, 37.540256 ], [ -122.064328, 37.542502 ] ], [ [ -121.993475, 37.515751 ], [ -121.994677, 37.514185 ], [ -121.994762, 37.513981 ], [ -121.993475, 37.515751 ] ], [ [ -122.044673, 37.533314 ], [ -122.052183, 37.539507 ], [ -122.051497, 37.538929 ], [ -122.044673, 37.533314 ] ], [ [ -122.024546, 37.544407 ], [ -122.026262, 37.542263 ], [ -122.026305, 37.542161 ], [ -122.024546, 37.544407 ] ], [ [ -121.995234, 37.511394 ], [ -121.994805, 37.513913 ], [ -121.994848, 37.513845 ], [ -121.995234, 37.511394 ] ], [ [ -122.032442, 37.570807 ], [ -122.032657, 37.570603 ], [ -122.033987, 37.569004 ], [ -122.032442, 37.570807 ] ], [ [ -122.080936, 37.579413 ], [ -122.080936, 37.577950 ], [ -122.080894, 37.577814 ], [ -122.080936, 37.579413 ] ], [ [ -122.048450, 37.567270 ], [ -122.045703, 37.567780 ], [ -122.046003, 37.567746 ], [ -122.048450, 37.567270 ] ], [ [ -121.998796, 37.553934 ], [ -121.998281, 37.553628 ], [ -121.997294, 37.553152 ], [ -121.998796, 37.553934 ] ], [ [ -122.020168, 37.575229 ], [ -122.018795, 37.574651 ], [ -122.019997, 37.575195 ], [ -122.020168, 37.575229 ] ], [ [ -122.042270, 37.564038 ], [ -122.043171, 37.563018 ], [ -122.042913, 37.563256 ], [ -122.042270, 37.564038 ] ], [ [ -122.007809, 37.565161 ], [ -122.007165, 37.564650 ], [ -122.006607, 37.564276 ], [ -122.007809, 37.565161 ] ], [ [ -122.062397, 37.528719 ], [ -122.062225, 37.528651 ], [ -122.057977, 37.527154 ], [ -122.062397, 37.528719 ] ], [ [ -122.009354, 37.568188 ], [ -122.009525, 37.568460 ], [ -122.009869, 37.568834 ], [ -122.009354, 37.568188 ] ], [ [ -122.049265, 37.581793 ], [ -122.049222, 37.581079 ], [ -122.049179, 37.581011 ], [ -122.049265, 37.581793 ] ], [ [ -122.034116, 37.581657 ], [ -122.033343, 37.581419 ], [ -122.033558, 37.581521 ], [ -122.034116, 37.581657 ] ], [ [ -122.003946, 37.563290 ], [ -122.004762, 37.563324 ], [ -122.004633, 37.563290 ], [ -122.003946, 37.563290 ] ], [ [ -121.998453, 37.564344 ], [ -121.997981, 37.564310 ], [ -121.998110, 37.564344 ], [ -121.998453, 37.564344 ] ], [ [ -122.111621, 37.510271 ], [ -122.111707, 37.510407 ], [ -122.111707, 37.510373 ], [ -122.111621, 37.510271 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 329, "y": 792 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.162733, 37.721306 ], [ -122.145395, 37.721306 ], [ -122.134881, 37.721306 ], [ -122.113123, 37.721306 ], [ -122.089520, 37.721306 ], [ -122.075830, 37.721306 ], [ -122.065101, 37.721306 ], [ -122.054372, 37.721306 ], [ -122.037635, 37.721306 ], [ -121.988754, 37.721306 ], [ -121.988754, 37.714652 ], [ -121.988754, 37.700325 ], [ -121.988754, 37.688066 ], [ -121.988754, 37.633946 ], [ -121.988754, 37.599340 ], [ -121.988754, 37.580093 ], [ -121.988754, 37.576692 ], [ -121.998582, 37.576692 ], [ -122.016478, 37.576692 ], [ -122.023215, 37.576692 ], [ -122.027078, 37.576692 ], [ -122.040081, 37.576692 ], [ -122.044458, 37.576692 ], [ -122.047720, 37.576692 ], [ -122.058964, 37.576692 ], [ -122.060852, 37.576692 ], [ -122.070079, 37.576692 ], [ -122.080593, 37.576692 ], [ -122.088189, 37.576692 ], [ -122.150116, 37.576692 ], [ -122.171402, 37.576692 ], [ -122.171402, 37.671966 ], [ -122.171402, 37.702124 ], [ -122.171402, 37.713804 ], [ -122.171402, 37.720831 ], [ -122.171402, 37.721306 ], [ -122.169514, 37.721306 ], [ -122.162733, 37.721306 ] ], [ [ -122.050037, 37.622662 ], [ -122.034845, 37.609370 ], [ -122.035747, 37.610186 ], [ -122.050037, 37.622662 ] ], [ [ -122.031755, 37.616543 ], [ -122.033300, 37.617937 ], [ -122.040124, 37.623851 ], [ -122.031755, 37.616543 ] ], [ [ -122.016478, 37.601482 ], [ -122.019353, 37.593424 ], [ -122.018924, 37.594512 ], [ -122.016478, 37.601482 ] ], [ [ -122.073898, 37.616713 ], [ -122.076001, 37.619602 ], [ -122.073555, 37.616169 ], [ -122.071452, 37.613280 ], [ -122.073898, 37.616713 ] ], [ [ -122.053170, 37.682326 ], [ -122.050552, 37.678794 ], [ -122.052526, 37.681545 ], [ -122.053170, 37.682326 ] ], [ [ -122.151833, 37.691292 ], [ -122.145567, 37.691428 ], [ -122.149901, 37.691360 ], [ -122.151833, 37.691292 ] ], [ [ -122.086558, 37.694382 ], [ -122.089562, 37.692990 ], [ -122.089176, 37.693126 ], [ -122.086558, 37.694382 ] ], [ [ -122.034545, 37.586588 ], [ -122.036605, 37.587303 ], [ -122.037163, 37.587439 ], [ -122.034545, 37.586588 ] ], [ [ -122.081580, 37.701751 ], [ -122.085056, 37.701717 ], [ -122.085314, 37.701683 ], [ -122.081580, 37.701751 ] ], [ [ -122.078018, 37.665512 ], [ -122.075958, 37.662896 ], [ -122.076988, 37.664255 ], [ -122.078018, 37.665512 ] ], [ [ -122.099090, 37.689730 ], [ -122.104325, 37.689152 ], [ -122.099218, 37.689696 ], [ -122.099090, 37.689730 ] ], [ [ -122.071753, 37.626978 ], [ -122.071924, 37.624225 ], [ -122.071924, 37.623647 ], [ -122.071753, 37.626978 ] ], [ [ -122.070208, 37.613246 ], [ -122.066860, 37.613144 ], [ -122.067032, 37.613178 ], [ -122.070208, 37.613246 ] ], [ [ -122.044415, 37.675023 ], [ -122.045145, 37.675261 ], [ -122.043042, 37.674446 ], [ -122.044415, 37.675023 ] ], [ [ -122.010770, 37.584140 ], [ -122.013216, 37.584854 ], [ -122.012057, 37.584480 ], [ -122.010770, 37.584140 ] ], [ [ -122.021499, 37.587201 ], [ -122.014804, 37.585262 ], [ -122.014289, 37.585126 ], [ -122.021499, 37.587201 ] ], [ [ -122.073984, 37.708643 ], [ -122.074113, 37.704773 ], [ -122.073984, 37.707964 ], [ -122.073984, 37.708643 ] ], [ [ -122.101407, 37.625381 ], [ -122.101493, 37.627386 ], [ -122.101536, 37.627454 ], [ -122.101407, 37.625381 ] ], [ [ -122.073898, 37.718930 ], [ -122.074842, 37.720220 ], [ -122.074628, 37.719846 ], [ -122.073898, 37.718930 ] ], [ [ -122.092609, 37.709865 ], [ -122.090893, 37.708813 ], [ -122.091107, 37.708983 ], [ -122.092609, 37.709865 ] ], [ [ -122.014933, 37.703143 ], [ -122.016521, 37.702973 ], [ -122.016778, 37.702905 ], [ -122.014933, 37.703143 ] ], [ [ -122.162733, 37.721306 ], [ -122.159643, 37.718624 ], [ -122.159815, 37.718794 ], [ -122.162733, 37.721306 ] ], [ [ -122.080936, 37.579413 ], [ -122.080936, 37.577950 ], [ -122.080894, 37.577780 ], [ -122.080936, 37.579413 ] ], [ [ -122.008238, 37.583018 ], [ -122.009654, 37.583698 ], [ -122.010169, 37.583902 ], [ -122.008238, 37.583018 ] ], [ [ -122.140632, 37.691530 ], [ -122.141361, 37.691563 ], [ -122.142391, 37.691530 ], [ -122.140632, 37.691530 ] ], [ [ -122.071967, 37.650257 ], [ -122.073512, 37.650019 ], [ -122.074156, 37.649883 ], [ -122.071967, 37.650257 ] ], [ [ -122.077117, 37.613484 ], [ -122.077503, 37.613484 ], [ -122.072954, 37.613348 ], [ -122.077117, 37.613484 ] ], [ [ -122.057033, 37.650665 ], [ -122.058191, 37.650461 ], [ -122.057161, 37.650597 ], [ -122.057033, 37.650665 ] ], [ [ -122.088876, 37.702701 ], [ -122.088275, 37.701411 ], [ -122.088361, 37.701683 ], [ -122.088876, 37.702701 ] ], [ [ -121.991243, 37.712412 ], [ -121.992188, 37.711563 ], [ -121.991673, 37.711970 ], [ -121.991243, 37.712412 ] ], [ [ -122.088318, 37.607500 ], [ -122.088919, 37.606786 ], [ -122.089047, 37.606548 ], [ -122.088318, 37.607500 ] ], [ [ -122.162519, 37.712106 ], [ -122.164106, 37.711461 ], [ -122.162862, 37.711936 ], [ -122.162519, 37.712106 ] ], [ [ -122.063341, 37.653111 ], [ -122.064157, 37.652126 ], [ -122.063942, 37.652330 ], [ -122.063341, 37.653111 ] ], [ [ -122.065229, 37.663847 ], [ -122.064071, 37.662998 ], [ -122.064714, 37.663508 ], [ -122.065229, 37.663847 ] ], [ [ -122.163119, 37.692514 ], [ -122.162905, 37.691020 ], [ -122.162862, 37.690918 ], [ -122.163119, 37.692514 ] ], [ [ -122.043815, 37.587677 ], [ -122.044373, 37.587609 ], [ -122.044888, 37.587473 ], [ -122.043815, 37.587677 ] ], [ [ -122.111406, 37.634116 ], [ -122.110763, 37.633402 ], [ -122.110891, 37.633606 ], [ -122.111406, 37.634116 ] ], [ [ -122.116685, 37.705316 ], [ -122.116942, 37.705486 ], [ -122.117672, 37.705825 ], [ -122.116685, 37.705316 ] ], [ [ -122.089133, 37.606412 ], [ -122.089477, 37.605868 ], [ -122.089648, 37.605494 ], [ -122.089133, 37.606412 ] ], [ [ -122.020254, 37.606208 ], [ -122.020984, 37.605902 ], [ -122.020383, 37.606106 ], [ -122.020254, 37.606208 ] ], [ [ -122.057333, 37.665036 ], [ -122.058105, 37.665172 ], [ -122.058363, 37.665172 ], [ -122.057333, 37.665036 ] ], [ [ -122.033129, 37.676042 ], [ -122.033215, 37.676076 ], [ -122.032270, 37.675295 ], [ -122.033129, 37.676042 ] ], [ [ -122.099991, 37.691054 ], [ -122.099218, 37.690647 ], [ -122.098746, 37.690443 ], [ -122.099991, 37.691054 ] ], [ [ -121.999483, 37.703618 ], [ -121.998110, 37.703482 ], [ -121.998882, 37.703584 ], [ -121.999483, 37.703618 ] ], [ [ -122.129045, 37.712547 ], [ -122.128358, 37.712106 ], [ -122.128015, 37.711936 ], [ -122.129045, 37.712547 ] ], [ [ -122.024159, 37.647641 ], [ -122.022786, 37.647573 ], [ -122.023001, 37.647607 ], [ -122.024159, 37.647641 ] ], [ [ -122.017508, 37.654199 ], [ -122.018452, 37.654267 ], [ -122.017980, 37.654199 ], [ -122.017508, 37.654199 ] ], [ [ -122.132349, 37.686741 ], [ -122.129903, 37.685043 ], [ -122.130032, 37.685145 ], [ -122.132349, 37.686741 ] ], [ [ -122.129002, 37.684398 ], [ -122.128787, 37.684296 ], [ -122.129560, 37.684805 ], [ -122.129002, 37.684398 ] ], [ [ -122.060981, 37.688439 ], [ -122.060809, 37.688677 ], [ -122.060595, 37.689152 ], [ -122.060981, 37.688439 ] ], [ [ -122.119989, 37.717843 ], [ -122.120504, 37.717742 ], [ -122.120891, 37.717606 ], [ -122.119989, 37.717843 ] ], [ [ -122.038236, 37.719982 ], [ -122.037935, 37.720457 ], [ -122.037892, 37.720627 ], [ -122.038236, 37.719982 ] ], [ [ -122.055573, 37.700868 ], [ -122.055488, 37.700121 ], [ -122.055402, 37.699713 ], [ -122.055573, 37.700868 ] ], [ [ -122.034116, 37.581657 ], [ -122.033343, 37.581419 ], [ -122.033558, 37.581521 ], [ -122.034116, 37.581657 ] ], [ [ -122.038708, 37.587813 ], [ -122.037635, 37.587575 ], [ -122.037978, 37.587677 ], [ -122.038708, 37.587813 ] ], [ [ -122.165737, 37.700121 ], [ -122.165694, 37.700630 ], [ -122.165737, 37.700766 ], [ -122.165737, 37.700121 ] ], [ [ -122.036476, 37.658683 ], [ -122.037120, 37.658717 ], [ -122.037249, 37.658683 ], [ -122.036476, 37.658683 ] ], [ [ -122.071023, 37.681171 ], [ -122.071624, 37.681205 ], [ -122.071795, 37.681171 ], [ -122.071023, 37.681171 ] ], [ [ -122.127628, 37.685179 ], [ -122.127886, 37.685179 ], [ -122.128272, 37.685077 ], [ -122.127628, 37.685179 ] ], [ [ -122.166252, 37.701751 ], [ -122.165823, 37.701038 ], [ -122.165909, 37.701241 ], [ -122.166252, 37.701751 ] ], [ [ -122.049222, 37.581079 ], [ -122.049179, 37.580943 ], [ -122.049265, 37.581793 ], [ -122.049222, 37.581079 ] ], [ [ -122.033601, 37.591893 ], [ -122.033644, 37.591247 ], [ -122.033601, 37.591315 ], [ -122.033601, 37.591893 ] ], [ [ -122.055616, 37.708677 ], [ -122.055745, 37.708202 ], [ -122.055702, 37.708168 ], [ -122.055616, 37.708677 ] ], [ [ -122.051668, 37.674276 ], [ -122.052355, 37.674004 ], [ -122.052011, 37.674106 ], [ -122.051668, 37.674276 ] ], [ [ -122.056475, 37.694552 ], [ -122.056603, 37.694450 ], [ -122.056990, 37.693975 ], [ -122.056475, 37.694552 ] ], [ [ -122.140632, 37.691530 ], [ -122.140160, 37.691631 ], [ -122.140160, 37.691665 ], [ -122.140203, 37.691665 ], [ -122.140632, 37.691530 ] ], [ [ -122.017078, 37.613450 ], [ -122.016778, 37.614061 ], [ -122.016778, 37.614129 ], [ -122.017078, 37.613450 ] ], [ [ -122.022271, 37.656169 ], [ -122.022529, 37.656305 ], [ -122.022743, 37.656339 ], [ -122.022271, 37.656169 ] ], [ [ -122.130117, 37.707421 ], [ -122.130246, 37.707862 ], [ -122.130332, 37.707998 ], [ -122.130117, 37.707421 ] ], [ [ -122.076988, 37.679677 ], [ -122.076902, 37.679133 ], [ -122.076859, 37.679099 ], [ -122.076988, 37.679677 ] ], [ [ -122.083383, 37.648490 ], [ -122.084541, 37.648320 ], [ -122.083511, 37.648456 ], [ -122.083383, 37.648490 ] ], [ [ -122.050123, 37.678692 ], [ -122.049866, 37.678284 ], [ -122.049952, 37.678488 ], [ -122.050123, 37.678692 ] ], [ [ -122.058234, 37.679948 ], [ -122.057719, 37.679948 ], [ -122.057977, 37.679982 ], [ -122.058234, 37.679948 ] ], [ [ -122.072525, 37.680798 ], [ -122.072225, 37.680899 ], [ -122.072096, 37.681001 ], [ -122.072525, 37.680798 ] ], [ [ -122.064629, 37.685926 ], [ -122.064199, 37.686028 ], [ -122.064371, 37.686028 ], [ -122.064629, 37.685926 ] ], [ [ -122.127371, 37.685213 ], [ -122.127500, 37.685213 ], [ -122.126555, 37.685077 ], [ -122.127371, 37.685213 ] ], [ [ -122.140889, 37.692345 ], [ -122.140632, 37.692141 ], [ -122.140203, 37.691869 ], [ -122.140889, 37.692345 ] ], [ [ -122.056475, 37.694552 ], [ -122.055573, 37.694620 ], [ -122.056260, 37.694586 ], [ -122.056475, 37.694552 ] ], [ [ -122.018108, 37.616781 ], [ -122.017851, 37.616509 ], [ -122.017894, 37.616611 ], [ -122.018108, 37.616781 ] ], [ [ -122.030039, 37.628882 ], [ -122.030296, 37.628916 ], [ -122.030468, 37.628882 ], [ -122.030039, 37.628882 ] ], [ [ -122.023387, 37.656407 ], [ -122.022829, 37.656373 ], [ -122.022958, 37.656407 ], [ -122.023387, 37.656407 ] ], [ [ -122.119088, 37.717742 ], [ -122.118402, 37.717504 ], [ -122.118831, 37.717674 ], [ -122.119088, 37.717742 ] ], [ [ -122.109990, 37.684432 ], [ -122.109776, 37.684398 ], [ -122.109389, 37.684398 ], [ -122.109990, 37.684432 ] ], [ [ -122.063255, 37.685960 ], [ -122.063298, 37.685994 ], [ -122.063770, 37.686062 ], [ -122.063255, 37.685960 ] ], [ [ -122.011542, 37.630275 ], [ -122.011371, 37.630207 ], [ -122.011113, 37.630173 ], [ -122.011542, 37.630275 ] ], [ [ -122.080765, 37.648864 ], [ -122.081451, 37.648796 ], [ -122.081966, 37.648728 ], [ -122.080765, 37.648864 ] ], [ [ -122.061839, 37.661130 ], [ -122.061667, 37.660858 ], [ -122.061582, 37.660790 ], [ -122.061839, 37.661130 ] ], [ [ -122.054458, 37.701920 ], [ -122.054543, 37.701513 ], [ -122.054501, 37.701581 ], [ -122.054458, 37.701920 ] ], [ [ -122.060509, 37.704093 ], [ -122.060852, 37.703958 ], [ -122.060595, 37.704026 ], [ -122.060509, 37.704093 ] ], [ [ -122.087288, 37.647777 ], [ -122.087717, 37.647573 ], [ -122.087588, 37.647607 ], [ -122.087288, 37.647777 ] ], [ [ -122.051840, 37.668773 ], [ -122.051840, 37.668535 ], [ -122.051797, 37.668569 ], [ -122.051840, 37.668773 ] ], [ [ -122.060380, 37.660314 ], [ -122.060723, 37.660348 ], [ -122.060637, 37.660314 ], [ -122.060380, 37.660314 ] ], [ [ -122.061367, 37.660620 ], [ -122.061281, 37.660552 ], [ -122.061024, 37.660450 ], [ -122.061367, 37.660620 ] ], [ [ -122.117586, 37.665818 ], [ -122.117672, 37.665818 ], [ -122.117929, 37.665716 ], [ -122.117586, 37.665818 ] ], [ [ -122.077503, 37.680016 ], [ -122.077632, 37.679948 ], [ -122.077632, 37.679881 ], [ -122.077503, 37.680016 ] ], [ [ -122.074370, 37.681952 ], [ -122.074413, 37.681918 ], [ -122.074542, 37.681613 ], [ -122.074370, 37.681952 ] ], [ [ -122.138486, 37.684771 ], [ -122.138615, 37.684771 ], [ -122.137928, 37.684703 ], [ -122.138486, 37.684771 ] ], [ [ -122.060208, 37.693024 ], [ -122.060208, 37.692922 ], [ -122.060122, 37.692684 ], [ -122.060208, 37.693024 ] ], [ [ -122.061367, 37.703890 ], [ -122.061110, 37.703890 ], [ -122.060981, 37.703924 ], [ -122.061367, 37.703890 ] ], [ [ -122.056131, 37.711699 ], [ -122.056131, 37.711631 ], [ -122.056003, 37.711495 ], [ -122.056131, 37.711699 ] ], [ [ -122.068920, 37.665206 ], [ -122.069221, 37.665172 ], [ -122.068706, 37.665206 ], [ -122.068920, 37.665206 ] ], [ [ -122.060809, 37.665512 ], [ -122.060723, 37.665478 ], [ -122.060509, 37.665478 ], [ -122.060809, 37.665512 ] ], [ [ -122.057462, 37.694959 ], [ -122.057290, 37.694925 ], [ -122.057247, 37.694959 ], [ -122.057462, 37.694959 ] ], [ [ -122.073383, 37.682088 ], [ -122.073255, 37.681952 ], [ -122.073298, 37.682054 ], [ -122.073383, 37.682088 ] ], [ [ -122.068920, 37.683752 ], [ -122.069221, 37.683786 ], [ -122.069135, 37.683752 ], [ -122.068920, 37.683752 ] ], [ [ -122.072525, 37.680798 ], [ -122.072783, 37.680832 ], [ -122.072740, 37.680798 ], [ -122.072525, 37.680798 ] ], [ [ -122.017207, 37.610288 ], [ -122.017121, 37.610594 ], [ -122.017121, 37.610662 ], [ -122.017207, 37.610288 ] ], [ [ -122.019696, 37.617903 ], [ -122.019353, 37.617937 ], [ -122.019525, 37.617937 ], [ -122.019696, 37.617903 ] ], [ [ -122.019224, 37.633470 ], [ -122.019310, 37.633470 ], [ -122.018967, 37.633402 ], [ -122.019224, 37.633470 ] ], [ [ -122.072310, 37.642204 ], [ -122.072482, 37.642102 ], [ -122.072482, 37.642068 ], [ -122.072310, 37.642204 ] ], [ [ -122.019095, 37.617733 ], [ -122.019010, 37.617563 ], [ -122.019053, 37.617699 ], [ -122.019095, 37.617733 ] ], [ [ -122.080722, 37.668807 ], [ -122.080722, 37.668773 ], [ -122.080636, 37.668943 ], [ -122.080722, 37.668807 ] ], [ [ -122.016735, 37.611988 ], [ -122.016649, 37.611818 ], [ -122.016649, 37.611852 ], [ -122.016735, 37.611988 ] ], [ [ -122.072997, 37.681001 ], [ -122.072954, 37.680899 ], [ -122.072911, 37.680865 ], [ -122.072997, 37.681001 ] ], [ [ -122.056561, 37.704229 ], [ -122.056561, 37.704161 ], [ -122.056518, 37.704093 ], [ -122.056561, 37.704229 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.162733, 37.721306 ], [ -122.145395, 37.721306 ], [ -122.134881, 37.721306 ], [ -122.113123, 37.721306 ], [ -122.089520, 37.721306 ], [ -122.075830, 37.721306 ], [ -122.065101, 37.721306 ], [ -122.054372, 37.721306 ], [ -122.037635, 37.721306 ], [ -121.988754, 37.721306 ], [ -121.988754, 37.714652 ], [ -121.988754, 37.700325 ], [ -121.988754, 37.688066 ], [ -121.988754, 37.633946 ], [ -121.988754, 37.599340 ], [ -121.988754, 37.580093 ], [ -121.988754, 37.576692 ], [ -121.998582, 37.576692 ], [ -122.016478, 37.576692 ], [ -122.023215, 37.576692 ], [ -122.027078, 37.576692 ], [ -122.040081, 37.576692 ], [ -122.044458, 37.576692 ], [ -122.047720, 37.576692 ], [ -122.058964, 37.576692 ], [ -122.060852, 37.576692 ], [ -122.070079, 37.576692 ], [ -122.080593, 37.576692 ], [ -122.088189, 37.576692 ], [ -122.150116, 37.576692 ], [ -122.171402, 37.576692 ], [ -122.171402, 37.671966 ], [ -122.171402, 37.702124 ], [ -122.171402, 37.713804 ], [ -122.171402, 37.720831 ], [ -122.171402, 37.721306 ], [ -122.169514, 37.721306 ], [ -122.162733, 37.721306 ] ], [ [ -122.050037, 37.622662 ], [ -122.034845, 37.609370 ], [ -122.035747, 37.610186 ], [ -122.050037, 37.622662 ] ], [ [ -122.031755, 37.616543 ], [ -122.033300, 37.617937 ], [ -122.040124, 37.623851 ], [ -122.031755, 37.616543 ] ], [ [ -122.016478, 37.601482 ], [ -122.019353, 37.593424 ], [ -122.018924, 37.594512 ], [ -122.016478, 37.601482 ] ], [ [ -122.073898, 37.616713 ], [ -122.076001, 37.619602 ], [ -122.073555, 37.616169 ], [ -122.071452, 37.613280 ], [ -122.073898, 37.616713 ] ], [ [ -122.053170, 37.682326 ], [ -122.050552, 37.678794 ], [ -122.052526, 37.681545 ], [ -122.053170, 37.682326 ] ], [ [ -122.151833, 37.691292 ], [ -122.145567, 37.691428 ], [ -122.149901, 37.691360 ], [ -122.151833, 37.691292 ] ], [ [ -122.086558, 37.694382 ], [ -122.089562, 37.692990 ], [ -122.089176, 37.693126 ], [ -122.086558, 37.694382 ] ], [ [ -122.034545, 37.586588 ], [ -122.036605, 37.587303 ], [ -122.037163, 37.587439 ], [ -122.034545, 37.586588 ] ], [ [ -122.081580, 37.701751 ], [ -122.085056, 37.701717 ], [ -122.085314, 37.701683 ], [ -122.081580, 37.701751 ] ], [ [ -122.078018, 37.665512 ], [ -122.075958, 37.662896 ], [ -122.076988, 37.664255 ], [ -122.078018, 37.665512 ] ], [ [ -122.099090, 37.689730 ], [ -122.104325, 37.689152 ], [ -122.099218, 37.689696 ], [ -122.099090, 37.689730 ] ], [ [ -122.071753, 37.626978 ], [ -122.071924, 37.624225 ], [ -122.071924, 37.623647 ], [ -122.071753, 37.626978 ] ], [ [ -122.070208, 37.613246 ], [ -122.066860, 37.613144 ], [ -122.067032, 37.613178 ], [ -122.070208, 37.613246 ] ], [ [ -122.044415, 37.675023 ], [ -122.045145, 37.675261 ], [ -122.043042, 37.674446 ], [ -122.044415, 37.675023 ] ], [ [ -122.010770, 37.584140 ], [ -122.013216, 37.584854 ], [ -122.012057, 37.584480 ], [ -122.010770, 37.584140 ] ], [ [ -122.021499, 37.587201 ], [ -122.014804, 37.585262 ], [ -122.014289, 37.585126 ], [ -122.021499, 37.587201 ] ], [ [ -122.073984, 37.708643 ], [ -122.074113, 37.704773 ], [ -122.073984, 37.707964 ], [ -122.073984, 37.708643 ] ], [ [ -122.101407, 37.625381 ], [ -122.101493, 37.627386 ], [ -122.101536, 37.627454 ], [ -122.101407, 37.625381 ] ], [ [ -122.073898, 37.718930 ], [ -122.074842, 37.720220 ], [ -122.074628, 37.719846 ], [ -122.073898, 37.718930 ] ], [ [ -122.092609, 37.709865 ], [ -122.090893, 37.708813 ], [ -122.091107, 37.708983 ], [ -122.092609, 37.709865 ] ], [ [ -122.014933, 37.703143 ], [ -122.016521, 37.702973 ], [ -122.016778, 37.702905 ], [ -122.014933, 37.703143 ] ], [ [ -122.162733, 37.721306 ], [ -122.159643, 37.718624 ], [ -122.159815, 37.718794 ], [ -122.162733, 37.721306 ] ], [ [ -122.080936, 37.579413 ], [ -122.080936, 37.577950 ], [ -122.080894, 37.577780 ], [ -122.080936, 37.579413 ] ], [ [ -122.008238, 37.583018 ], [ -122.009654, 37.583698 ], [ -122.010169, 37.583902 ], [ -122.008238, 37.583018 ] ], [ [ -122.140632, 37.691530 ], [ -122.141361, 37.691563 ], [ -122.142391, 37.691530 ], [ -122.140632, 37.691530 ] ], [ [ -122.071967, 37.650257 ], [ -122.073512, 37.650019 ], [ -122.074156, 37.649883 ], [ -122.071967, 37.650257 ] ], [ [ -122.077117, 37.613484 ], [ -122.077503, 37.613484 ], [ -122.072954, 37.613348 ], [ -122.077117, 37.613484 ] ], [ [ -122.057033, 37.650665 ], [ -122.058191, 37.650461 ], [ -122.057161, 37.650597 ], [ -122.057033, 37.650665 ] ], [ [ -122.088876, 37.702701 ], [ -122.088275, 37.701411 ], [ -122.088361, 37.701683 ], [ -122.088876, 37.702701 ] ], [ [ -121.991243, 37.712412 ], [ -121.992188, 37.711563 ], [ -121.991673, 37.711970 ], [ -121.991243, 37.712412 ] ], [ [ -122.088318, 37.607500 ], [ -122.088919, 37.606786 ], [ -122.089047, 37.606548 ], [ -122.088318, 37.607500 ] ], [ [ -122.162519, 37.712106 ], [ -122.164106, 37.711461 ], [ -122.162862, 37.711936 ], [ -122.162519, 37.712106 ] ], [ [ -122.063341, 37.653111 ], [ -122.064157, 37.652126 ], [ -122.063942, 37.652330 ], [ -122.063341, 37.653111 ] ], [ [ -122.065229, 37.663847 ], [ -122.064071, 37.662998 ], [ -122.064714, 37.663508 ], [ -122.065229, 37.663847 ] ], [ [ -122.163119, 37.692514 ], [ -122.162905, 37.691020 ], [ -122.162862, 37.690918 ], [ -122.163119, 37.692514 ] ], [ [ -122.043815, 37.587677 ], [ -122.044373, 37.587609 ], [ -122.044888, 37.587473 ], [ -122.043815, 37.587677 ] ], [ [ -122.111406, 37.634116 ], [ -122.110763, 37.633402 ], [ -122.110891, 37.633606 ], [ -122.111406, 37.634116 ] ], [ [ -122.116685, 37.705316 ], [ -122.116942, 37.705486 ], [ -122.117672, 37.705825 ], [ -122.116685, 37.705316 ] ], [ [ -122.089133, 37.606412 ], [ -122.089477, 37.605868 ], [ -122.089648, 37.605494 ], [ -122.089133, 37.606412 ] ], [ [ -122.020254, 37.606208 ], [ -122.020984, 37.605902 ], [ -122.020383, 37.606106 ], [ -122.020254, 37.606208 ] ], [ [ -122.057333, 37.665036 ], [ -122.058105, 37.665172 ], [ -122.058363, 37.665172 ], [ -122.057333, 37.665036 ] ], [ [ -122.033129, 37.676042 ], [ -122.033215, 37.676076 ], [ -122.032270, 37.675295 ], [ -122.033129, 37.676042 ] ], [ [ -122.099991, 37.691054 ], [ -122.099218, 37.690647 ], [ -122.098746, 37.690443 ], [ -122.099991, 37.691054 ] ], [ [ -121.999483, 37.703618 ], [ -121.998110, 37.703482 ], [ -121.998882, 37.703584 ], [ -121.999483, 37.703618 ] ], [ [ -122.024159, 37.647641 ], [ -122.022786, 37.647573 ], [ -122.023001, 37.647607 ], [ -122.024159, 37.647641 ] ], [ [ -122.017508, 37.654199 ], [ -122.018452, 37.654267 ], [ -122.017980, 37.654199 ], [ -122.017508, 37.654199 ] ], [ [ -122.132349, 37.686741 ], [ -122.129903, 37.685043 ], [ -122.130032, 37.685145 ], [ -122.132349, 37.686741 ] ], [ [ -122.129002, 37.684398 ], [ -122.128787, 37.684296 ], [ -122.129560, 37.684805 ], [ -122.129002, 37.684398 ] ], [ [ -122.060981, 37.688439 ], [ -122.060809, 37.688677 ], [ -122.060595, 37.689152 ], [ -122.060981, 37.688439 ] ], [ [ -122.119989, 37.717843 ], [ -122.120504, 37.717742 ], [ -122.120891, 37.717606 ], [ -122.119989, 37.717843 ] ], [ [ -122.038236, 37.719982 ], [ -122.037935, 37.720457 ], [ -122.037892, 37.720627 ], [ -122.038236, 37.719982 ] ], [ [ -122.055573, 37.700868 ], [ -122.055488, 37.700121 ], [ -122.055402, 37.699713 ], [ -122.055573, 37.700868 ] ], [ [ -122.034116, 37.581657 ], [ -122.033343, 37.581419 ], [ -122.033558, 37.581521 ], [ -122.034116, 37.581657 ] ], [ [ -122.038708, 37.587813 ], [ -122.037635, 37.587575 ], [ -122.037978, 37.587677 ], [ -122.038708, 37.587813 ] ], [ [ -122.165737, 37.700121 ], [ -122.165694, 37.700630 ], [ -122.165737, 37.700766 ], [ -122.165737, 37.700121 ] ], [ [ -122.036476, 37.658683 ], [ -122.037120, 37.658717 ], [ -122.037249, 37.658683 ], [ -122.036476, 37.658683 ] ], [ [ -122.071023, 37.681171 ], [ -122.071624, 37.681205 ], [ -122.071795, 37.681171 ], [ -122.071023, 37.681171 ] ], [ [ -122.127628, 37.685179 ], [ -122.127886, 37.685179 ], [ -122.128272, 37.685077 ], [ -122.127628, 37.685179 ] ], [ [ -122.166252, 37.701751 ], [ -122.165823, 37.701038 ], [ -122.165909, 37.701241 ], [ -122.166252, 37.701751 ] ], [ [ -122.049222, 37.581079 ], [ -122.049179, 37.580943 ], [ -122.049265, 37.581793 ], [ -122.049222, 37.581079 ] ], [ [ -122.033601, 37.591893 ], [ -122.033644, 37.591247 ], [ -122.033601, 37.591315 ], [ -122.033601, 37.591893 ] ], [ [ -122.055616, 37.708677 ], [ -122.055745, 37.708202 ], [ -122.055702, 37.708168 ], [ -122.055616, 37.708677 ] ], [ [ -122.051668, 37.674276 ], [ -122.052355, 37.674004 ], [ -122.052011, 37.674106 ], [ -122.051668, 37.674276 ] ], [ [ -122.056475, 37.694552 ], [ -122.056603, 37.694450 ], [ -122.056990, 37.693975 ], [ -122.056475, 37.694552 ] ], [ [ -122.140632, 37.691530 ], [ -122.140160, 37.691631 ], [ -122.140160, 37.691665 ], [ -122.140203, 37.691665 ], [ -122.140632, 37.691530 ] ], [ [ -122.017078, 37.613450 ], [ -122.016778, 37.614061 ], [ -122.016778, 37.614129 ], [ -122.017078, 37.613450 ] ], [ [ -122.022271, 37.656169 ], [ -122.022529, 37.656305 ], [ -122.022743, 37.656339 ], [ -122.022271, 37.656169 ] ], [ [ -122.076988, 37.679677 ], [ -122.076902, 37.679133 ], [ -122.076859, 37.679099 ], [ -122.076988, 37.679677 ] ], [ [ -122.130117, 37.707421 ], [ -122.130246, 37.707862 ], [ -122.130332, 37.707998 ], [ -122.130117, 37.707421 ] ], [ [ -122.083383, 37.648490 ], [ -122.084541, 37.648320 ], [ -122.083511, 37.648456 ], [ -122.083383, 37.648490 ] ], [ [ -122.050123, 37.678692 ], [ -122.049866, 37.678284 ], [ -122.049952, 37.678488 ], [ -122.050123, 37.678692 ] ], [ [ -122.058234, 37.679948 ], [ -122.057719, 37.679948 ], [ -122.057977, 37.679982 ], [ -122.058234, 37.679948 ] ], [ [ -122.072525, 37.680798 ], [ -122.072225, 37.680899 ], [ -122.072096, 37.681001 ], [ -122.072525, 37.680798 ] ], [ [ -122.064629, 37.685926 ], [ -122.064199, 37.686028 ], [ -122.064371, 37.686028 ], [ -122.064629, 37.685926 ] ], [ [ -122.127371, 37.685213 ], [ -122.127500, 37.685213 ], [ -122.126555, 37.685077 ], [ -122.127371, 37.685213 ] ], [ [ -122.140889, 37.692345 ], [ -122.140632, 37.692141 ], [ -122.140203, 37.691869 ], [ -122.140889, 37.692345 ] ], [ [ -122.056475, 37.694552 ], [ -122.055573, 37.694620 ], [ -122.056260, 37.694586 ], [ -122.056475, 37.694552 ] ], [ [ -122.018108, 37.616781 ], [ -122.017851, 37.616509 ], [ -122.017894, 37.616611 ], [ -122.018108, 37.616781 ] ], [ [ -122.030039, 37.628882 ], [ -122.030296, 37.628916 ], [ -122.030468, 37.628882 ], [ -122.030039, 37.628882 ] ], [ [ -122.023387, 37.656407 ], [ -122.022829, 37.656373 ], [ -122.022958, 37.656407 ], [ -122.023387, 37.656407 ] ], [ [ -122.119088, 37.717742 ], [ -122.118402, 37.717504 ], [ -122.118831, 37.717674 ], [ -122.119088, 37.717742 ] ], [ [ -122.109990, 37.684432 ], [ -122.109776, 37.684398 ], [ -122.109389, 37.684398 ], [ -122.109990, 37.684432 ] ], [ [ -122.063255, 37.685960 ], [ -122.063298, 37.685994 ], [ -122.063770, 37.686062 ], [ -122.063255, 37.685960 ] ], [ [ -122.011542, 37.630275 ], [ -122.011371, 37.630207 ], [ -122.011113, 37.630173 ], [ -122.011542, 37.630275 ] ], [ [ -122.080765, 37.648864 ], [ -122.081451, 37.648796 ], [ -122.081966, 37.648728 ], [ -122.080765, 37.648864 ] ], [ [ -122.061839, 37.661130 ], [ -122.061667, 37.660858 ], [ -122.061582, 37.660790 ], [ -122.061839, 37.661130 ] ], [ [ -122.054458, 37.701920 ], [ -122.054543, 37.701513 ], [ -122.054501, 37.701581 ], [ -122.054458, 37.701920 ] ], [ [ -122.060509, 37.704093 ], [ -122.060852, 37.703958 ], [ -122.060595, 37.704026 ], [ -122.060509, 37.704093 ] ], [ [ -122.087288, 37.647777 ], [ -122.087717, 37.647573 ], [ -122.087588, 37.647607 ], [ -122.087288, 37.647777 ] ], [ [ -122.051840, 37.668773 ], [ -122.051840, 37.668535 ], [ -122.051797, 37.668569 ], [ -122.051840, 37.668773 ] ], [ [ -122.060380, 37.660314 ], [ -122.060723, 37.660348 ], [ -122.060637, 37.660314 ], [ -122.060380, 37.660314 ] ], [ [ -122.061367, 37.660620 ], [ -122.061281, 37.660552 ], [ -122.061024, 37.660450 ], [ -122.061367, 37.660620 ] ], [ [ -122.117586, 37.665818 ], [ -122.117672, 37.665818 ], [ -122.117929, 37.665716 ], [ -122.117586, 37.665818 ] ], [ [ -122.074370, 37.681952 ], [ -122.074413, 37.681918 ], [ -122.074542, 37.681613 ], [ -122.074370, 37.681952 ] ], [ [ -122.138486, 37.684771 ], [ -122.138615, 37.684771 ], [ -122.137928, 37.684703 ], [ -122.138486, 37.684771 ] ], [ [ -122.060208, 37.693024 ], [ -122.060208, 37.692922 ], [ -122.060122, 37.692684 ], [ -122.060208, 37.693024 ] ], [ [ -122.061367, 37.703890 ], [ -122.061110, 37.703890 ], [ -122.060981, 37.703924 ], [ -122.061367, 37.703890 ] ], [ [ -122.056131, 37.711699 ], [ -122.056131, 37.711631 ], [ -122.056003, 37.711495 ], [ -122.056131, 37.711699 ] ], [ [ -122.068920, 37.665206 ], [ -122.069221, 37.665172 ], [ -122.068706, 37.665206 ], [ -122.068920, 37.665206 ] ], [ [ -122.060809, 37.665512 ], [ -122.060723, 37.665478 ], [ -122.060509, 37.665478 ], [ -122.060809, 37.665512 ] ], [ [ -122.057462, 37.694959 ], [ -122.057290, 37.694925 ], [ -122.057247, 37.694959 ], [ -122.057462, 37.694959 ] ], [ [ -122.073383, 37.682088 ], [ -122.073255, 37.681952 ], [ -122.073298, 37.682054 ], [ -122.073383, 37.682088 ] ], [ [ -122.068920, 37.683752 ], [ -122.069221, 37.683786 ], [ -122.069135, 37.683752 ], [ -122.068920, 37.683752 ] ], [ [ -122.072525, 37.680798 ], [ -122.072783, 37.680832 ], [ -122.072740, 37.680798 ], [ -122.072525, 37.680798 ] ], [ [ -122.017207, 37.610288 ], [ -122.017121, 37.610594 ], [ -122.017121, 37.610662 ], [ -122.017207, 37.610288 ] ], [ [ -122.019696, 37.617903 ], [ -122.019353, 37.617937 ], [ -122.019525, 37.617937 ], [ -122.019696, 37.617903 ] ], [ [ -122.019224, 37.633470 ], [ -122.019310, 37.633470 ], [ -122.018967, 37.633402 ], [ -122.019224, 37.633470 ] ], [ [ -122.019095, 37.617733 ], [ -122.019010, 37.617563 ], [ -122.019053, 37.617699 ], [ -122.019095, 37.617733 ] ], [ [ -122.080722, 37.668807 ], [ -122.080722, 37.668773 ], [ -122.080636, 37.668943 ], [ -122.080722, 37.668807 ] ], [ [ -122.016735, 37.611988 ], [ -122.016649, 37.611818 ], [ -122.016649, 37.611852 ], [ -122.016735, 37.611988 ] ], [ [ -122.072997, 37.681001 ], [ -122.072954, 37.680899 ], [ -122.072911, 37.680865 ], [ -122.072997, 37.681001 ] ], [ [ -122.056561, 37.704229 ], [ -122.056561, 37.704161 ], [ -122.056518, 37.704093 ], [ -122.056561, 37.704229 ] ] ] } } ] } ] } , @@ -122,7 +123,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 330, "y": 792 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.871681, 37.721306 ], [ -121.852498, 37.721306 ], [ -121.851768, 37.721306 ], [ -121.825376, 37.721306 ], [ -121.812973, 37.721306 ], [ -121.812973, 37.701072 ], [ -121.812973, 37.675363 ], [ -121.812973, 37.654980 ], [ -121.812973, 37.576692 ], [ -121.930733, 37.576692 ], [ -121.971674, 37.576692 ], [ -121.995621, 37.576692 ], [ -121.995621, 37.584752 ], [ -121.995621, 37.594104 ], [ -121.995621, 37.631431 ], [ -121.995621, 37.690239 ], [ -121.995621, 37.703007 ], [ -121.995621, 37.708643 ], [ -121.995621, 37.721306 ], [ -121.981158, 37.721306 ], [ -121.963949, 37.721306 ], [ -121.960773, 37.718658 ], [ -121.950302, 37.720967 ], [ -121.949058, 37.721306 ], [ -121.941805, 37.721306 ], [ -121.926527, 37.721306 ], [ -121.920905, 37.721306 ], [ -121.910219, 37.721306 ], [ -121.871681, 37.721306 ] ], [ [ -121.833229, 37.701207 ], [ -121.816406, 37.701105 ], [ -121.830182, 37.701207 ], [ -121.833229, 37.701207 ] ], [ [ -121.910176, 37.718590 ], [ -121.910219, 37.718013 ], [ -121.910219, 37.714517 ], [ -121.910176, 37.718590 ] ], [ [ -121.878848, 37.701683 ], [ -121.873784, 37.701615 ], [ -121.876874, 37.701683 ], [ -121.878848, 37.701683 ] ], [ [ -121.913438, 37.662047 ], [ -121.911120, 37.659940 ], [ -121.911249, 37.660110 ], [ -121.913438, 37.662047 ] ], [ [ -121.890779, 37.646554 ], [ -121.888418, 37.644277 ], [ -121.885972, 37.641966 ], [ -121.890779, 37.646554 ] ], [ [ -121.906743, 37.652228 ], [ -121.904855, 37.648898 ], [ -121.904726, 37.648728 ], [ -121.906743, 37.652228 ] ], [ [ -121.920004, 37.701954 ], [ -121.915154, 37.702022 ], [ -121.916485, 37.702022 ], [ -121.920004, 37.701954 ] ], [ [ -121.857991, 37.659839 ], [ -121.857390, 37.661469 ], [ -121.857605, 37.661028 ], [ -121.857991, 37.659839 ] ], [ [ -121.900434, 37.703279 ], [ -121.900134, 37.703007 ], [ -121.899147, 37.702328 ], [ -121.900434, 37.703279 ] ], [ [ -121.941376, 37.598524 ], [ -121.942921, 37.597878 ], [ -121.942663, 37.597946 ], [ -121.941376, 37.598524 ] ], [ [ -121.857991, 37.659839 ], [ -121.858463, 37.658887 ], [ -121.858506, 37.658683 ], [ -121.857991, 37.659839 ] ], [ [ -121.880221, 37.627930 ], [ -121.880093, 37.626876 ], [ -121.880093, 37.627284 ], [ -121.880221, 37.627930 ] ], [ [ -121.860523, 37.654335 ], [ -121.861682, 37.653825 ], [ -121.861038, 37.654063 ], [ -121.860523, 37.654335 ] ], [ [ -121.979442, 37.578936 ], [ -121.977510, 37.578868 ], [ -121.977768, 37.578902 ], [ -121.979442, 37.578936 ] ], [ [ -121.948500, 37.598184 ], [ -121.950045, 37.598116 ], [ -121.950173, 37.598082 ], [ -121.948500, 37.598184 ] ], [ [ -121.908503, 37.665172 ], [ -121.907730, 37.663745 ], [ -121.907516, 37.663406 ], [ -121.908503, 37.665172 ] ], [ [ -121.856060, 37.665478 ], [ -121.856103, 37.664323 ], [ -121.856060, 37.664629 ], [ -121.856060, 37.665478 ] ], [ [ -121.962748, 37.639927 ], [ -121.963305, 37.640641 ], [ -121.963434, 37.640743 ], [ -121.962748, 37.639927 ] ], [ [ -121.946139, 37.606174 ], [ -121.946912, 37.605358 ], [ -121.946483, 37.605766 ], [ -121.946139, 37.606174 ] ], [ [ -121.933436, 37.698763 ], [ -121.934767, 37.698559 ], [ -121.934595, 37.698559 ], [ -121.933436, 37.698763 ] ], [ [ -121.863356, 37.652636 ], [ -121.863871, 37.652058 ], [ -121.863570, 37.652330 ], [ -121.863356, 37.652636 ] ], [ [ -121.887431, 37.592710 ], [ -121.886744, 37.592608 ], [ -121.885972, 37.592540 ], [ -121.887431, 37.592710 ] ], [ [ -121.883397, 37.633402 ], [ -121.883311, 37.633198 ], [ -121.882925, 37.632654 ], [ -121.883397, 37.633402 ] ], [ [ -121.845031, 37.701343 ], [ -121.845331, 37.701411 ], [ -121.846104, 37.701479 ], [ -121.845031, 37.701343 ] ], [ [ -121.948414, 37.650835 ], [ -121.947684, 37.650189 ], [ -121.947598, 37.650155 ], [ -121.948414, 37.650835 ] ], [ [ -121.856446, 37.653043 ], [ -121.855760, 37.652432 ], [ -121.855674, 37.652398 ], [ -121.856446, 37.653043 ] ], [ [ -121.943007, 37.597844 ], [ -121.943779, 37.597674 ], [ -121.943307, 37.597742 ], [ -121.943007, 37.597844 ] ], [ [ -121.934681, 37.591043 ], [ -121.935754, 37.590975 ], [ -121.935368, 37.590975 ], [ -121.934681, 37.591043 ] ], [ [ -121.925240, 37.599000 ], [ -121.924338, 37.599034 ], [ -121.925068, 37.599034 ], [ -121.925240, 37.599000 ] ], [ [ -121.903567, 37.595634 ], [ -121.902409, 37.595396 ], [ -121.903138, 37.595566 ], [ -121.903567, 37.595634 ] ], [ [ -121.904855, 37.595702 ], [ -121.903954, 37.595668 ], [ -121.904168, 37.595702 ], [ -121.904855, 37.595702 ] ], [ [ -121.948113, 37.602604 ], [ -121.948285, 37.603148 ], [ -121.948285, 37.603012 ], [ -121.948113, 37.602604 ] ], [ [ -121.866789, 37.717131 ], [ -121.867476, 37.716995 ], [ -121.867304, 37.716995 ], [ -121.866789, 37.717131 ] ], [ [ -121.904426, 37.648253 ], [ -121.904125, 37.647641 ], [ -121.904039, 37.647539 ], [ -121.904426, 37.648253 ] ], [ [ -121.903782, 37.681171 ], [ -121.903782, 37.681001 ], [ -121.903653, 37.680696 ], [ -121.903782, 37.681171 ] ], [ [ -121.884170, 37.635747 ], [ -121.883998, 37.634829 ], [ -121.883912, 37.634490 ], [ -121.884170, 37.635747 ] ], [ [ -121.850739, 37.657019 ], [ -121.850224, 37.656985 ], [ -121.849623, 37.656985 ], [ -121.850739, 37.657019 ] ], [ [ -121.927643, 37.712412 ], [ -121.927600, 37.712004 ], [ -121.927514, 37.711665 ], [ -121.927643, 37.712412 ] ], [ [ -121.946869, 37.649917 ], [ -121.947341, 37.650053 ], [ -121.947126, 37.649951 ], [ -121.946869, 37.649917 ] ], [ [ -121.880565, 37.665410 ], [ -121.881123, 37.665410 ], [ -121.880994, 37.665376 ], [ -121.880565, 37.665410 ] ], [ [ -121.937985, 37.597164 ], [ -121.937985, 37.597572 ], [ -121.938028, 37.597640 ], [ -121.937985, 37.597164 ] ], [ [ -121.956954, 37.656441 ], [ -121.957383, 37.656713 ], [ -121.957769, 37.656917 ], [ -121.956954, 37.656441 ] ], [ [ -121.863270, 37.676144 ], [ -121.862755, 37.675737 ], [ -121.862969, 37.675940 ], [ -121.863270, 37.676144 ] ], [ [ -121.946955, 37.711020 ], [ -121.947341, 37.711563 ], [ -121.947298, 37.711461 ], [ -121.946955, 37.711020 ] ], [ [ -121.942191, 37.611274 ], [ -121.941805, 37.611206 ], [ -121.941977, 37.611274 ], [ -121.942191, 37.611274 ] ], [ [ -121.966739, 37.643155 ], [ -121.966310, 37.643020 ], [ -121.966524, 37.643121 ], [ -121.966739, 37.643155 ] ], [ [ -121.853571, 37.653519 ], [ -121.852841, 37.653451 ], [ -121.852627, 37.653451 ], [ -121.853571, 37.653519 ] ], [ [ -121.858635, 37.658344 ], [ -121.858764, 37.657392 ], [ -121.858721, 37.657596 ], [ -121.858635, 37.658344 ] ], [ [ -121.883183, 37.667448 ], [ -121.882839, 37.667245 ], [ -121.883054, 37.667414 ], [ -121.883183, 37.667448 ] ], [ [ -121.903396, 37.680220 ], [ -121.903224, 37.680016 ], [ -121.903009, 37.679847 ], [ -121.903396, 37.680220 ] ], [ [ -121.903782, 37.682428 ], [ -121.903825, 37.681918 ], [ -121.903825, 37.681579 ], [ -121.903782, 37.682428 ] ], [ [ -121.868548, 37.717029 ], [ -121.867990, 37.716961 ], [ -121.867776, 37.716961 ], [ -121.868548, 37.717029 ] ], [ [ -121.857305, 37.667856 ], [ -121.856790, 37.667143 ], [ -121.856918, 37.667346 ], [ -121.857305, 37.667856 ] ], [ [ -121.967168, 37.665512 ], [ -121.967168, 37.665648 ], [ -121.967254, 37.665784 ], [ -121.967168, 37.665512 ] ], [ [ -121.874042, 37.664799 ], [ -121.874471, 37.664901 ], [ -121.874299, 37.664833 ], [ -121.874042, 37.664799 ] ], [ [ -121.853356, 37.719473 ], [ -121.853399, 37.719609 ], [ -121.853528, 37.719745 ], [ -121.853356, 37.719473 ] ], [ [ -121.938243, 37.598014 ], [ -121.938071, 37.597776 ], [ -121.938157, 37.597946 ], [ -121.938243, 37.598014 ] ], [ [ -121.948242, 37.603726 ], [ -121.948285, 37.603590 ], [ -121.948285, 37.603454 ], [ -121.948242, 37.603726 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.871681, 37.721306 ], [ -121.852498, 37.721306 ], [ -121.851768, 37.721306 ], [ -121.825376, 37.721306 ], [ -121.812973, 37.721306 ], [ -121.812973, 37.701072 ], [ -121.812973, 37.675363 ], [ -121.812973, 37.654980 ], [ -121.812973, 37.576692 ], [ -121.930733, 37.576692 ], [ -121.971674, 37.576692 ], [ -121.995621, 37.576692 ], [ -121.995621, 37.584752 ], [ -121.995621, 37.594104 ], [ -121.995621, 37.631431 ], [ -121.995621, 37.690239 ], [ -121.995621, 37.703007 ], [ -121.995621, 37.708643 ], [ -121.995621, 37.721306 ], [ -121.981158, 37.721306 ], [ -121.963949, 37.721306 ], [ -121.960773, 37.718658 ], [ -121.950302, 37.720967 ], [ -121.949058, 37.721306 ], [ -121.941805, 37.721306 ], [ -121.926527, 37.721306 ], [ -121.920905, 37.721306 ], [ -121.910219, 37.721306 ], [ -121.871681, 37.721306 ] ], [ [ -121.833229, 37.701207 ], [ -121.816406, 37.701105 ], [ -121.830182, 37.701207 ], [ -121.833229, 37.701207 ] ], [ [ -121.910176, 37.718590 ], [ -121.910219, 37.718013 ], [ -121.910219, 37.714517 ], [ -121.910176, 37.718590 ] ], [ [ -121.878848, 37.701683 ], [ -121.873784, 37.701615 ], [ -121.876874, 37.701683 ], [ -121.878848, 37.701683 ] ], [ [ -121.913438, 37.662047 ], [ -121.911120, 37.659940 ], [ -121.911249, 37.660110 ], [ -121.913438, 37.662047 ] ], [ [ -121.890779, 37.646554 ], [ -121.888418, 37.644277 ], [ -121.885972, 37.641966 ], [ -121.890779, 37.646554 ] ], [ [ -121.906743, 37.652228 ], [ -121.904855, 37.648898 ], [ -121.904726, 37.648728 ], [ -121.906743, 37.652228 ] ], [ [ -121.920004, 37.701954 ], [ -121.915154, 37.702022 ], [ -121.916485, 37.702022 ], [ -121.920004, 37.701954 ] ], [ [ -121.857991, 37.659839 ], [ -121.857390, 37.661469 ], [ -121.857605, 37.661028 ], [ -121.857991, 37.659839 ] ], [ [ -121.900434, 37.703279 ], [ -121.900134, 37.703007 ], [ -121.899147, 37.702328 ], [ -121.900434, 37.703279 ] ], [ [ -121.941376, 37.598524 ], [ -121.942921, 37.597878 ], [ -121.942663, 37.597946 ], [ -121.941376, 37.598524 ] ], [ [ -121.880221, 37.627930 ], [ -121.880093, 37.626876 ], [ -121.880093, 37.627284 ], [ -121.880221, 37.627930 ] ], [ [ -121.860523, 37.654335 ], [ -121.861682, 37.653825 ], [ -121.861038, 37.654063 ], [ -121.860523, 37.654335 ] ], [ [ -121.979442, 37.578936 ], [ -121.977510, 37.578868 ], [ -121.977768, 37.578902 ], [ -121.979442, 37.578936 ] ], [ [ -121.948500, 37.598184 ], [ -121.950045, 37.598116 ], [ -121.950173, 37.598082 ], [ -121.948500, 37.598184 ] ], [ [ -121.908503, 37.665172 ], [ -121.907730, 37.663745 ], [ -121.907516, 37.663406 ], [ -121.908503, 37.665172 ] ], [ [ -121.856060, 37.665478 ], [ -121.856103, 37.664323 ], [ -121.856060, 37.664629 ], [ -121.856060, 37.665478 ] ], [ [ -121.962748, 37.639927 ], [ -121.963305, 37.640641 ], [ -121.963434, 37.640743 ], [ -121.962748, 37.639927 ] ], [ [ -121.946139, 37.606174 ], [ -121.946912, 37.605358 ], [ -121.946483, 37.605766 ], [ -121.946139, 37.606174 ] ], [ [ -121.933436, 37.698763 ], [ -121.934767, 37.698559 ], [ -121.934595, 37.698559 ], [ -121.933436, 37.698763 ] ], [ [ -121.863356, 37.652636 ], [ -121.863871, 37.652058 ], [ -121.863570, 37.652330 ], [ -121.863356, 37.652636 ] ], [ [ -121.887431, 37.592710 ], [ -121.886744, 37.592608 ], [ -121.885972, 37.592540 ], [ -121.887431, 37.592710 ] ], [ [ -121.883397, 37.633402 ], [ -121.883311, 37.633198 ], [ -121.882925, 37.632654 ], [ -121.883397, 37.633402 ] ], [ [ -121.845031, 37.701343 ], [ -121.845331, 37.701411 ], [ -121.846104, 37.701479 ], [ -121.845031, 37.701343 ] ], [ [ -121.948414, 37.650835 ], [ -121.947684, 37.650189 ], [ -121.947598, 37.650155 ], [ -121.948414, 37.650835 ] ], [ [ -121.856446, 37.653043 ], [ -121.855760, 37.652432 ], [ -121.855674, 37.652398 ], [ -121.856446, 37.653043 ] ], [ [ -121.943007, 37.597844 ], [ -121.943779, 37.597674 ], [ -121.943307, 37.597742 ], [ -121.943007, 37.597844 ] ], [ [ -121.934681, 37.591043 ], [ -121.935754, 37.590975 ], [ -121.935368, 37.590975 ], [ -121.934681, 37.591043 ] ], [ [ -121.925240, 37.599000 ], [ -121.924338, 37.599034 ], [ -121.925068, 37.599034 ], [ -121.925240, 37.599000 ] ], [ [ -121.903567, 37.595634 ], [ -121.902409, 37.595396 ], [ -121.903138, 37.595566 ], [ -121.903567, 37.595634 ] ], [ [ -121.904855, 37.595702 ], [ -121.903954, 37.595668 ], [ -121.904168, 37.595702 ], [ -121.904855, 37.595702 ] ], [ [ -121.948113, 37.602604 ], [ -121.948285, 37.603148 ], [ -121.948285, 37.603012 ], [ -121.948113, 37.602604 ] ], [ [ -121.866789, 37.717131 ], [ -121.867476, 37.716995 ], [ -121.867304, 37.716995 ], [ -121.866789, 37.717131 ] ], [ [ -121.904426, 37.648253 ], [ -121.904125, 37.647641 ], [ -121.904039, 37.647539 ], [ -121.904426, 37.648253 ] ], [ [ -121.903782, 37.681171 ], [ -121.903782, 37.681001 ], [ -121.903653, 37.680696 ], [ -121.903782, 37.681171 ] ], [ [ -121.884170, 37.635747 ], [ -121.883998, 37.634829 ], [ -121.883912, 37.634490 ], [ -121.884170, 37.635747 ] ], [ [ -121.850739, 37.657019 ], [ -121.850224, 37.656985 ], [ -121.849623, 37.656985 ], [ -121.850739, 37.657019 ] ], [ [ -121.927643, 37.712412 ], [ -121.927600, 37.712004 ], [ -121.927514, 37.711665 ], [ -121.927643, 37.712412 ] ], [ [ -121.946869, 37.649917 ], [ -121.947341, 37.650053 ], [ -121.947126, 37.649951 ], [ -121.946869, 37.649917 ] ], [ [ -121.880565, 37.665410 ], [ -121.881123, 37.665410 ], [ -121.880994, 37.665376 ], [ -121.880565, 37.665410 ] ], [ [ -121.937985, 37.597164 ], [ -121.937985, 37.597572 ], [ -121.938028, 37.597640 ], [ -121.937985, 37.597164 ] ], [ [ -121.956954, 37.656441 ], [ -121.957383, 37.656713 ], [ -121.957769, 37.656917 ], [ -121.956954, 37.656441 ] ], [ [ -121.863270, 37.676144 ], [ -121.862755, 37.675737 ], [ -121.862969, 37.675940 ], [ -121.863270, 37.676144 ] ], [ [ -121.942191, 37.611274 ], [ -121.941805, 37.611206 ], [ -121.941977, 37.611274 ], [ -121.942191, 37.611274 ] ], [ [ -121.966739, 37.643155 ], [ -121.966310, 37.643020 ], [ -121.966524, 37.643121 ], [ -121.966739, 37.643155 ] ], [ [ -121.853571, 37.653519 ], [ -121.852841, 37.653451 ], [ -121.852627, 37.653451 ], [ -121.853571, 37.653519 ] ], [ [ -121.858635, 37.658344 ], [ -121.858764, 37.657392 ], [ -121.858721, 37.657596 ], [ -121.858635, 37.658344 ] ], [ [ -121.883183, 37.667448 ], [ -121.882839, 37.667245 ], [ -121.883054, 37.667414 ], [ -121.883183, 37.667448 ] ], [ [ -121.903782, 37.682428 ], [ -121.903825, 37.681918 ], [ -121.903825, 37.681579 ], [ -121.903782, 37.682428 ] ], [ [ -121.868548, 37.717029 ], [ -121.867990, 37.716961 ], [ -121.867776, 37.716961 ], [ -121.868548, 37.717029 ] ], [ [ -121.857305, 37.667856 ], [ -121.856790, 37.667143 ], [ -121.856918, 37.667346 ], [ -121.857305, 37.667856 ] ], [ [ -121.967168, 37.665512 ], [ -121.967168, 37.665648 ], [ -121.967254, 37.665784 ], [ -121.967168, 37.665512 ] ], [ [ -121.853356, 37.719473 ], [ -121.853399, 37.719609 ], [ -121.853528, 37.719745 ], [ -121.853356, 37.719473 ] ], [ [ -121.938243, 37.598014 ], [ -121.938071, 37.597776 ], [ -121.938157, 37.597946 ], [ -121.938243, 37.598014 ] ], [ [ -121.948242, 37.603726 ], [ -121.948285, 37.603590 ], [ -121.948285, 37.603454 ], [ -121.948242, 37.603726 ] ] ] } } ] } ] } , @@ -140,7 +141,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 331, "y": 792 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.724181, 37.721306 ], [ -121.637192, 37.721306 ], [ -121.637192, 37.576692 ], [ -121.721048, 37.576692 ], [ -121.819839, 37.576692 ], [ -121.819839, 37.655490 ], [ -121.819839, 37.674616 ], [ -121.819839, 37.701139 ], [ -121.819839, 37.721306 ], [ -121.808639, 37.721306 ], [ -121.724181, 37.721306 ] ], [ [ -121.732721, 37.584854 ], [ -121.733108, 37.584922 ], [ -121.733193, 37.584922 ], [ -121.732721, 37.584854 ] ], [ [ -121.757827, 37.679982 ], [ -121.744566, 37.679982 ], [ -121.756024, 37.680016 ], [ -121.757827, 37.679982 ] ], [ [ -121.739330, 37.587065 ], [ -121.738558, 37.586350 ], [ -121.738944, 37.586758 ], [ -121.739330, 37.587065 ] ], [ [ -121.773577, 37.683379 ], [ -121.780057, 37.681443 ], [ -121.788125, 37.678963 ], [ -121.773577, 37.683379 ] ], [ [ -121.742334, 37.586588 ], [ -121.742549, 37.586758 ], [ -121.742549, 37.586724 ], [ -121.742334, 37.586588 ] ], [ [ -121.780400, 37.666973 ], [ -121.780400, 37.660790 ], [ -121.780357, 37.666599 ], [ -121.780400, 37.666973 ] ], [ [ -121.768084, 37.659159 ], [ -121.768041, 37.660110 ], [ -121.768084, 37.663542 ], [ -121.768084, 37.660926 ], [ -121.768084, 37.659159 ] ], [ [ -121.798468, 37.663576 ], [ -121.798553, 37.655999 ], [ -121.798511, 37.657732 ], [ -121.798468, 37.663576 ] ], [ [ -121.805549, 37.660076 ], [ -121.805720, 37.653757 ], [ -121.805634, 37.655965 ], [ -121.805549, 37.660076 ] ], [ [ -121.724181, 37.721306 ], [ -121.724267, 37.718590 ], [ -121.724181, 37.719677 ], [ -121.724181, 37.721306 ] ], [ [ -121.759372, 37.703041 ], [ -121.759844, 37.703007 ], [ -121.756368, 37.703007 ], [ -121.759372, 37.703041 ] ], [ [ -121.747055, 37.694654 ], [ -121.745167, 37.695842 ], [ -121.745038, 37.695978 ], [ -121.747055, 37.694654 ] ], [ [ -121.790957, 37.683888 ], [ -121.790915, 37.681375 ], [ -121.790872, 37.681205 ], [ -121.790957, 37.683888 ] ], [ [ -121.723838, 37.708949 ], [ -121.723065, 37.706708 ], [ -121.723709, 37.708677 ], [ -121.723838, 37.708949 ] ], [ [ -121.795292, 37.677265 ], [ -121.795764, 37.677231 ], [ -121.795292, 37.677231 ], [ -121.795292, 37.677265 ] ], [ [ -121.819839, 37.701139 ], [ -121.816406, 37.701105 ], [ -121.817608, 37.701139 ], [ -121.819839, 37.701139 ] ], [ [ -121.744051, 37.696963 ], [ -121.744609, 37.696386 ], [ -121.744180, 37.696759 ], [ -121.744051, 37.696963 ] ], [ [ -121.786151, 37.675567 ], [ -121.785378, 37.675023 ], [ -121.785507, 37.675159 ], [ -121.786151, 37.675567 ] ], [ [ -121.760702, 37.677061 ], [ -121.759672, 37.676382 ], [ -121.759930, 37.676586 ], [ -121.760702, 37.677061 ] ], [ [ -121.718130, 37.697914 ], [ -121.718087, 37.696793 ], [ -121.718087, 37.697608 ], [ -121.718130, 37.697914 ] ], [ [ -121.762462, 37.686198 ], [ -121.762547, 37.686130 ], [ -121.761518, 37.686571 ], [ -121.762462, 37.686198 ] ], [ [ -121.805334, 37.676212 ], [ -121.806493, 37.676076 ], [ -121.805420, 37.676178 ], [ -121.805334, 37.676212 ] ], [ [ -121.718774, 37.700121 ], [ -121.718431, 37.699272 ], [ -121.718688, 37.699985 ], [ -121.718774, 37.700121 ] ], [ [ -121.780486, 37.660518 ], [ -121.780787, 37.660076 ], [ -121.780486, 37.660450 ], [ -121.780486, 37.660518 ] ], [ [ -121.737528, 37.687896 ], [ -121.737828, 37.687726 ], [ -121.737957, 37.687590 ], [ -121.737528, 37.687896 ] ], [ [ -121.787481, 37.678114 ], [ -121.789241, 37.677911 ], [ -121.789155, 37.677911 ], [ -121.787481, 37.678114 ] ], [ [ -121.751089, 37.715196 ], [ -121.751304, 37.715128 ], [ -121.751475, 37.715026 ], [ -121.751089, 37.715196 ] ], [ [ -121.750832, 37.715433 ], [ -121.750574, 37.715841 ], [ -121.750617, 37.715807 ], [ -121.750832, 37.715433 ] ], [ [ -121.790872, 37.681137 ], [ -121.790829, 37.681035 ], [ -121.790614, 37.680696 ], [ -121.790872, 37.681137 ] ], [ [ -121.765723, 37.684398 ], [ -121.765766, 37.684364 ], [ -121.765766, 37.684262 ], [ -121.765723, 37.684398 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.724181, 37.721306 ], [ -121.637192, 37.721306 ], [ -121.637192, 37.576692 ], [ -121.721048, 37.576692 ], [ -121.819839, 37.576692 ], [ -121.819839, 37.655490 ], [ -121.819839, 37.674616 ], [ -121.819839, 37.701139 ], [ -121.819839, 37.721306 ], [ -121.808639, 37.721306 ], [ -121.724181, 37.721306 ] ], [ [ -121.732721, 37.584854 ], [ -121.733108, 37.584922 ], [ -121.733193, 37.584922 ], [ -121.732721, 37.584854 ] ], [ [ -121.757827, 37.679982 ], [ -121.744566, 37.679982 ], [ -121.756024, 37.680016 ], [ -121.757827, 37.679982 ] ], [ [ -121.739330, 37.587065 ], [ -121.738558, 37.586350 ], [ -121.738944, 37.586758 ], [ -121.739330, 37.587065 ] ], [ [ -121.773577, 37.683379 ], [ -121.780057, 37.681443 ], [ -121.788125, 37.678963 ], [ -121.773577, 37.683379 ] ], [ [ -121.780400, 37.666973 ], [ -121.780400, 37.660790 ], [ -121.780357, 37.666599 ], [ -121.780400, 37.666973 ] ], [ [ -121.768084, 37.659159 ], [ -121.768041, 37.660110 ], [ -121.768084, 37.663542 ], [ -121.768084, 37.660926 ], [ -121.768084, 37.659159 ] ], [ [ -121.798468, 37.663576 ], [ -121.798553, 37.655999 ], [ -121.798511, 37.657732 ], [ -121.798468, 37.663576 ] ], [ [ -121.805549, 37.660076 ], [ -121.805720, 37.653757 ], [ -121.805634, 37.655965 ], [ -121.805549, 37.660076 ] ], [ [ -121.724181, 37.721306 ], [ -121.724267, 37.718590 ], [ -121.724181, 37.719677 ], [ -121.724181, 37.721306 ] ], [ [ -121.759372, 37.703041 ], [ -121.759844, 37.703007 ], [ -121.756368, 37.703007 ], [ -121.759372, 37.703041 ] ], [ [ -121.747055, 37.694654 ], [ -121.745167, 37.695842 ], [ -121.745038, 37.695978 ], [ -121.747055, 37.694654 ] ], [ [ -121.790957, 37.683888 ], [ -121.790915, 37.681375 ], [ -121.790872, 37.681205 ], [ -121.790957, 37.683888 ] ], [ [ -121.723838, 37.708949 ], [ -121.723065, 37.706708 ], [ -121.723709, 37.708677 ], [ -121.723838, 37.708949 ] ], [ [ -121.819839, 37.701139 ], [ -121.816406, 37.701105 ], [ -121.817608, 37.701139 ], [ -121.819839, 37.701139 ] ], [ [ -121.795292, 37.677265 ], [ -121.795764, 37.677231 ], [ -121.795292, 37.677231 ], [ -121.795292, 37.677265 ] ], [ [ -121.744051, 37.696963 ], [ -121.744609, 37.696386 ], [ -121.744180, 37.696759 ], [ -121.744051, 37.696963 ] ], [ [ -121.786151, 37.675567 ], [ -121.785378, 37.675023 ], [ -121.785507, 37.675159 ], [ -121.786151, 37.675567 ] ], [ [ -121.760702, 37.677061 ], [ -121.759672, 37.676382 ], [ -121.759930, 37.676586 ], [ -121.760702, 37.677061 ] ], [ [ -121.718130, 37.697914 ], [ -121.718087, 37.696793 ], [ -121.718087, 37.697608 ], [ -121.718130, 37.697914 ] ], [ [ -121.762462, 37.686198 ], [ -121.762547, 37.686130 ], [ -121.761518, 37.686571 ], [ -121.762462, 37.686198 ] ], [ [ -121.805334, 37.676212 ], [ -121.806493, 37.676076 ], [ -121.805420, 37.676178 ], [ -121.805334, 37.676212 ] ], [ [ -121.718774, 37.700121 ], [ -121.718431, 37.699272 ], [ -121.718688, 37.699985 ], [ -121.718774, 37.700121 ] ], [ [ -121.780486, 37.660518 ], [ -121.780787, 37.660076 ], [ -121.780486, 37.660450 ], [ -121.780486, 37.660518 ] ], [ [ -121.787481, 37.678114 ], [ -121.789241, 37.677911 ], [ -121.789155, 37.677911 ], [ -121.787481, 37.678114 ] ], [ [ -121.751089, 37.715196 ], [ -121.751304, 37.715128 ], [ -121.751475, 37.715026 ], [ -121.751089, 37.715196 ] ], [ [ -121.750832, 37.715433 ], [ -121.750574, 37.715841 ], [ -121.750617, 37.715807 ], [ -121.750832, 37.715433 ] ] ] } } ] } ] } , diff --git a/tests/csv/out-null.mbtiles.json b/tests/csv/out-null.mbtiles.json index d41a7af3e..59b5e7dbe 100644 --- a/tests/csv/out-null.mbtiles.json +++ b/tests/csv/out-null.mbtiles.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/csv/out-null.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q --empty-csv-columns-are-null -zg -f -o tests/csv/out-null.mbtiles tests/csv/ne_110m_populated_places_simple.csv", "json": "{\"vector_layers\": [ { \"id\": \"ne_110m_populated_places_simple\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"adm0_a3\": \"String\", \"adm0cap\": \"Number\", \"adm0name\": \"String\", \"adm1name\": \"String\", \"capalt\": \"Number\", \"capin\": \"String\", \"changed\": \"Number\", \"checkme\": \"Number\", \"diffascii\": \"Number\", \"diffnote\": \"String\", \"featurecla\": \"String\", \"geonameid\": \"Number\", \"iso_a2\": \"Mixed\", \"labelrank\": \"Number\", \"ls_match\": \"Number\", \"ls_name\": \"String\", \"megacity\": \"Number\", \"meganame\": \"String\", \"min_zoom\": \"Number\", \"name\": \"String\", \"namealt\": \"String\", \"nameascii\": \"String\", \"namediff\": \"Number\", \"namepar\": \"String\", \"natscale\": \"Number\", \"note\": \"String\", \"pop_max\": \"Number\", \"pop_min\": \"Number\", \"pop_other\": \"Number\", \"rank_max\": \"Number\", \"rank_min\": \"Number\", \"scalerank\": \"Number\", \"sov0name\": \"String\", \"sov_a3\": \"String\", \"worldcity\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"ne_110m_populated_places_simple\",\"count\": 247,\"geometry\": \"Point\",\"attributeCount\": 35,\"attributes\": [{\"attribute\": \"adm0_a3\",\"count\": 198,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\": \"adm0cap\",\"count\": 2,\"type\": \"number\",\"values\": [0.00000000000,1.00000000000],\"min\": 0,\"max\": 1},{\"attribute\": \"adm0name\",\"count\": 198,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\": \"adm1name\",\"count\": 204,\"type\": \"string\",\"values\": [\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunción\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavský\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrës\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazán\",\"Gauteng\",\"Genève\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\": \"capalt\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"capin\",\"count\": 20,\"type\": \"string\",\"values\": [\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\": \"changed\",\"count\": 7,\"type\": \"number\",\"values\": [0.00000000000,1.00000000000,20.00000000000,3.00000000000,4.00000000000,40.00000000000,5.00000000000],\"min\": 0,\"max\": 40},{\"attribute\": \"checkme\",\"count\": 2,\"type\": \"number\",\"values\": [0,5],\"min\": 0,\"max\": 5},{\"attribute\": \"diffascii\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"diffnote\",\"count\": 12,\"type\": \"string\",\"values\": [\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\": \"featurecla\",\"count\": 6,\"type\": \"string\",\"values\": [\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\": \"geonameid\",\"count\": 242,\"type\": \"number\",\"values\": [-1.00000000000,1018725.00000000000,1040652.00000000000,1070940.00000000000,108410.00000000000,112931.00000000000,1138958.00000000000,1176615.00000000000,1185241.00000000000,1221874.00000000000,1238992.00000000000,1252416.00000000000,1261481.00000000000,1275004.00000000000,1275339.00000000000,1277333.00000000000,1283240.00000000000,1298824.00000000000,146268.00000000000,1512569.00000000000,1526273.00000000000,1528675.00000000000,1529102.00000000000,1559804.00000000000,1581130.00000000000,160196.00000000000,160263.00000000000,1609350.00000000000,162183.00000000000,1642911.00000000000,1645457.00000000000,1651944.00000000000,1668341.00000000000,1690681.00000000000,1701668.00000000000,170654.00000000000,1728930.00000000000,1730025.00000000000,1735161.00000000000,1796236.00000000000,1815286.00000000000,1816670.00000000000,1819729.00000000000,1820906.00000000000,1821306.00000000000,1835848.00000000000,184745.00000000000,1850147.00000000000,1853909.00000000000,1857910.00000000000,1871859.00000000000,1880252.00000000000,202061.00000000000,2028462.00000000000,2075807.00000000000,2081986.00000000000,2088122.00000000000,2108502.00000000000,2110079.00000000000,2110394.00000000000,2113779.00000000000,2135171.00000000000,2144168.00000000000,2147714.00000000000,2158177.00000000000,2172517.00000000000,2193733.00000000000,2198148.00000000000,2220957.00000000000,223817.00000000000,2240449.00000000000,2253354.00000000000,2260535.00000000000,2267057.00000000000,2274895.00000000000,2279755.00000000000,2293538.00000000000,2306104.00000000000,2309527.00000000000,2314302.00000000000,2322794.00000000000,232422.00000000000,2332459.00000000000,2357048.00000000000,2365267.00000000000,2374775.00000000000,2377450.00000000000,2389853.00000000000,2392087.00000000000,2394819.00000000000,2399697.00000000000,2408770.00000000000,241131.00000000000,2413876.00000000000,2422465.00000000000,2427123.00000000000,2440485.00000000000,2460596.00000000000,2462881.00000000000,2464470.00000000000],\"min\": -1,\"max\": 6697380},{\"attribute\": \"iso_a2\",\"count\": 197,\"type\": \"mixed\",\"values\": [-99,\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"],\"min\": -99,\"max\": -99},{\"attribute\": \"labelrank\",\"count\": 8,\"type\": \"number\",\"values\": [0,1,2,3,5,6,7,8],\"min\": 0,\"max\": 8},{\"attribute\": \"ls_match\",\"count\": 3,\"type\": \"number\",\"values\": [0,1,2],\"min\": 0,\"max\": 2},{\"attribute\": \"ls_name\",\"count\": 242,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\": \"megacity\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"meganame\",\"count\": 145,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asuncian\",\"Athnnai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogota\",\"Brasglia\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de Mdxico\",\"Ciudad de Panam\",\"Conakry\",\"Cotonou\",\"Cramqi (Wulumqi)\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazasr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hh Noi\",\"Hong Kong\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"K\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomi\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djam-na\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\"]},{\"attribute\": \"min_zoom\",\"count\": 15,\"type\": \"number\",\"values\": [1.7,2.0,2.1,2.7,3.0,3.7,4.0,4.7,5.0,5.1,5.6,6.0,6.1,6.7,7.0],\"min\": 1.7,\"max\": 7},{\"attribute\": \"name\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asunción\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasília\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chișinău\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\": \"namealt\",\"count\": 43,\"type\": \"string\",\"values\": [\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asuncion\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogota\",\"Brasilia\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de M\",\"Ciudad de Panam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazacr\",\"H\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lome\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djamnna\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Penh\",\"San Francisco-Oakland\",\"San Jose\",\"Sana'a'\",\"Sao Paulo|Sio Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaiso\",\"Washington D.C.\",\"Yangon\",\"Yaounde\",\"rumqi|Wulumqi\"]},{\"attribute\": \"nameascii\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\": \"namediff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"namepar\",\"count\": 12,\"type\": \"string\",\"values\": [\"Athenai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\": \"natscale\",\"count\": 8,\"type\": \"number\",\"values\": [10,110,20,200,30,300,50,600],\"min\": 10,\"max\": 600},{\"attribute\": \"note\",\"count\": 2,\"type\": \"string\",\"values\": [\"Auckland metropolitan area\",\"Wellington metropolitan area\"]},{\"attribute\": \"pop_max\",\"count\": 240,\"type\": \"number\",\"values\": [10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1377200,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\": 500,\"max\": 35676000},{\"attribute\": \"pop_min\",\"count\": 243,\"type\": \"number\",\"values\": [10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226,2432858],\"min\": 200,\"max\": 14608512},{\"attribute\": \"pop_other\",\"count\": 216,\"type\": \"number\",\"values\": [0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,2456292,2470140,247018,248161],\"min\": 0,\"max\": 16803572},{\"attribute\": \"rank_max\",\"count\": 12,\"type\": \"number\",\"values\": [10,11,12,13,14,2,4,5,6,7,8,9],\"min\": 2,\"max\": 14},{\"attribute\": \"rank_min\",\"count\": 14,\"type\": \"number\",\"values\": [1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 14},{\"attribute\": \"scalerank\",\"count\": 8,\"type\": \"number\",\"values\": [0,1,2,3,4,6,7,8],\"min\": 0,\"max\": 8},{\"attribute\": \"sov0name\",\"count\": 197,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\": \"sov_a3\",\"count\": 197,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"IS1\",\"ISL\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\": \"worldcity\",\"count\": 2,\"type\": \"number\",\"values\": [0.00000000000,1.00000000000],\"min\": 0,\"max\": 1}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/curve/out/-z2.json b/tests/curve/out/-z2.json index f5eb8e175..040af4836 100644 --- a/tests/curve/out/-z2.json +++ b/tests/curve/out/-z2.json @@ -3,6 +3,7 @@ "center": "-135.000000,75.782195,2", "description": "tests/curve/out/-z2.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/curve/out/-z2.json.check.mbtiles -z2 tests/curve/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 2, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 2,\"geometry\": \"Polygon\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "2", "minzoom": "0", diff --git a/tests/curve/out/-z2_--no-clipping.json b/tests/curve/out/-z2_--no-clipping.json index 35b260a27..8e0c6aa22 100644 --- a/tests/curve/out/-z2_--no-clipping.json +++ b/tests/curve/out/-z2_--no-clipping.json @@ -3,6 +3,7 @@ "center": "-135.000000,75.782195,2", "description": "tests/curve/out/-z2_--no-clipping.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/curve/out/-z2_--no-clipping.json.check.mbtiles -z2 --no-clipping tests/curve/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 2, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 2,\"geometry\": \"Polygon\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "2", "minzoom": "0", diff --git a/tests/curve/out/-z2_--no-duplication.json b/tests/curve/out/-z2_--no-duplication.json index 96ee2ca2b..ad08a3f49 100644 --- a/tests/curve/out/-z2_--no-duplication.json +++ b/tests/curve/out/-z2_--no-duplication.json @@ -3,6 +3,7 @@ "center": "45.000000,33.256630,2", "description": "tests/curve/out/-z2_--no-duplication.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/curve/out/-z2_--no-duplication.json.check.mbtiles -z2 --no-duplication tests/curve/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 2, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 2,\"geometry\": \"Polygon\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "2", "minzoom": "0", diff --git a/tests/dateline/out/-z5.json b/tests/dateline/out/-z5.json index d8f9ee05c..f64738293 100644 --- a/tests/dateline/out/-z5.json +++ b/tests/dateline/out/-z5.json @@ -3,6 +3,7 @@ "center": "-174.375000,16.560724,5", "description": "tests/dateline/out/-z5.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/dateline/out/-z5.json.check.mbtiles -z5 tests/dateline/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"\": \"String\", \"boolean\": \"Boolean\", \"escape\": \"String\", \"otherboolean\": \"Boolean\", \"prêt\": \"String\", \"stringify\": \"String\", \"where\": \"String\", \"zoom\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 11,\"geometry\": \"LineString\",\"attributeCount\": 8,\"attributes\": [{\"attribute\": \"\",\"count\": 1,\"type\": \"string\",\"values\": [\"something for nothing\"]},{\"attribute\": \"boolean\",\"count\": 1,\"type\": \"boolean\",\"values\": [true]},{\"attribute\": \"escape\",\"count\": 1,\"type\": \"string\",\"values\": [\"foo\\u0001bar,ü\\\"\\\\/\\u0008\\u000c\\u000a\\u000d\\u0009→🐂🐳\"]},{\"attribute\": \"otherboolean\",\"count\": 1,\"type\": \"boolean\",\"values\": [false]},{\"attribute\": \"prêt\",\"count\": 1,\"type\": \"string\",\"values\": [\"ready\"]},{\"attribute\": \"stringify\",\"count\": 1,\"type\": \"string\",\"values\": [\"[\\\"yes\\\",27,27,1.4e+27,{\\\"foo\\\":\\\"bar\\\"}]\"]},{\"attribute\": \"where\",\"count\": 6,\"type\": \"string\",\"values\": [\"-172, not duplicated\",\"-173, duplicated\",\"-180\",\"172, not duplicated\",\"173, duplicated\",\"180\"]},{\"attribute\": \"zoom\",\"count\": 4,\"type\": \"string\",\"values\": [\"0-5, since 10 > 5\",\"3-5\",\"nothing, since 10 > 5\",\"z0-2\"]}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/dateline/out/-z5_-b0.json b/tests/dateline/out/-z5_-b0.json index 279e79581..42172e497 100644 --- a/tests/dateline/out/-z5_-b0.json +++ b/tests/dateline/out/-z5_-b0.json @@ -3,6 +3,7 @@ "center": "174.375000,44.951199,5", "description": "tests/dateline/out/-z5_-b0.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/dateline/out/-z5_-b0.json.check.mbtiles -z5 -b0 tests/dateline/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"\": \"String\", \"boolean\": \"Boolean\", \"escape\": \"String\", \"otherboolean\": \"Boolean\", \"prêt\": \"String\", \"stringify\": \"String\", \"where\": \"String\", \"zoom\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 11,\"geometry\": \"LineString\",\"attributeCount\": 8,\"attributes\": [{\"attribute\": \"\",\"count\": 1,\"type\": \"string\",\"values\": [\"something for nothing\"]},{\"attribute\": \"boolean\",\"count\": 1,\"type\": \"boolean\",\"values\": [true]},{\"attribute\": \"escape\",\"count\": 1,\"type\": \"string\",\"values\": [\"foo\\u0001bar,ü\\\"\\\\/\\u0008\\u000c\\u000a\\u000d\\u0009→🐂🐳\"]},{\"attribute\": \"otherboolean\",\"count\": 1,\"type\": \"boolean\",\"values\": [false]},{\"attribute\": \"prêt\",\"count\": 1,\"type\": \"string\",\"values\": [\"ready\"]},{\"attribute\": \"stringify\",\"count\": 1,\"type\": \"string\",\"values\": [\"[\\\"yes\\\",27,27,1.4e+27,{\\\"foo\\\":\\\"bar\\\"}]\"]},{\"attribute\": \"where\",\"count\": 6,\"type\": \"string\",\"values\": [\"-172, not duplicated\",\"-173, duplicated\",\"-180\",\"172, not duplicated\",\"173, duplicated\",\"180\"]},{\"attribute\": \"zoom\",\"count\": 4,\"type\": \"string\",\"values\": [\"0-5, since 10 > 5\",\"3-5\",\"nothing, since 10 > 5\",\"z0-2\"]}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/empty-linestring/out/-ac.json b/tests/empty-linestring/out/-ac.json index 1ea242d5f..ef8aabf47 100644 --- a/tests/empty-linestring/out/-ac.json +++ b/tests/empty-linestring/out/-ac.json @@ -3,6 +3,7 @@ "center": "-122.249782,37.796763,14", "description": "tests/empty-linestring/out/-ac.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/empty-linestring/out/-ac.json.check.mbtiles -ac tests/empty-linestring/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 14, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 5,\"geometry\": \"LineString\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "14", "minzoom": "0", diff --git a/tests/epsg-3857/out/-yNAME_-z5_-sEPSG@3857.json b/tests/epsg-3857/out/-yNAME_-z5_-sEPSG@3857.json index db59312f1..894d8e587 100644 --- a/tests/epsg-3857/out/-yNAME_-z5_-sEPSG@3857.json +++ b/tests/epsg-3857/out/-yNAME_-z5_-sEPSG@3857.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/epsg-3857/out/-yNAME_-z5_-sEPSG@3857.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/epsg-3857/out/-yNAME_-z5_-sEPSG@3857.json.check.mbtiles -yNAME -z5 -sEPSG:3857 tests/epsg-3857/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 243,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/feature-filter/out/-z0_-Jtests%feature-filter%filter.json b/tests/feature-filter/out/-z0_-Jtests%feature-filter%filter.json index 4e9dfe6a2..5ae2c2eda 100644 --- a/tests/feature-filter/out/-z0_-Jtests%feature-filter%filter.json +++ b/tests/feature-filter/out/-z0_-Jtests%feature-filter%filter.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/feature-filter/out/-z0_-Jtests%feature-filter%filter.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/feature-filter/out/-z0_-Jtests%feature-filter%filter.json.check.mbtiles -z0 -Jtests/feature-filter/filter tests/feature-filter/in.json", "json": "{\"vector_layers\": [ { \"id\": \"layer1359089124\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer1392333553\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer1479822166\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer1510660139\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer1549998271\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer1619469362\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer1675768827\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer1780490201\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer1948775714\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer1991184237\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer220442869\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer2208582832\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer2275670193\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer2333214707\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer2333216076\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer253198869\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer2596070344\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer262236988\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer2624681884\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer2681700979\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer2850085303\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"layer2925029377\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer3045031255\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer3048837612\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer3115744778\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer328238911\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer3425958478\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer3425959847\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer3444677016\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer3603115546\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer3603116915\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer3835447578\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer4018549566\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer4070554881\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer4079511021\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer4097977117\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer4098096220\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer4113007703\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer442294443\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"layer464719784\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer4650955\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer584721662\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer827905613\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"id\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer938200568\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer1359089124\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"notlayer1392333553\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer1479822166\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer1510660139\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer1549998271\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"notlayer1619469362\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer1675768827\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"notlayer1780490201\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer1948775714\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer1991184237\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer220442869\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer2208582832\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer2275670193\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"notlayer2333214707\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer2333216076\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer253198869\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer2596070344\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer262236988\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer2624681884\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer2681700979\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer2850085303\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"notlayer2925029377\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer3045031255\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer3048837612\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer3115744778\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"notlayer328238911\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer3425958478\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer3425959847\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer3444677016\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer3603115546\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer3603116915\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer3835447578\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer4018549566\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer4070554881\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer4079511021\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer4097977117\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer4098096220\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer4113007703\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer442294443\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"notlayer464719784\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer4650955\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer584721662\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer827905613\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"id\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer938200568\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} } ],\"tilestats\": {\"layerCount\": 88,\"layers\": [{\"layer\": \"layer1359089124\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"not type: 1, [\\\"in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\",\"type: 2, [\\\"in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\",\"type: 3, [\\\"in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\"]}]},{\"layer\": \"layer1392333553\",\"count\": 9,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 9,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer1479822166\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": false}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": true}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer1510660139\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"in\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"layer1549998271\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"not type: 2, [\\\"!=\\\", \\\"$type\\\", \\\"LineString\\\"]\",\"type: 1, [\\\"!=\\\", \\\"$type\\\", \\\"LineString\\\"]\"]}]},{\"layer\": \"layer1619469362\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\", [\\\"==\\\", \\\"foo\\\", 0], [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"layer1675768827\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"not type: 1, [\\\"==\\\", \\\"$type\\\", \\\"LineString\\\"]\",\"type: 2, [\\\"==\\\", \\\"$type\\\", \\\"LineString\\\"]\"]}]},{\"layer\": \"layer1780490201\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": false}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": true}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {}, [\\\"!=\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"!=\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"layer1948775714\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\"==\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer1991184237\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",0,1,false],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 6,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"!has\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"layer220442869\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {}, [\\\"==\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"layer2208582832\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\"]\"]}]},{\"layer\": \"layer2275670193\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"not type: 2, [\\\"!in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\",\"not type: 3, [\\\"!in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\",\"type: 1, [\\\"!in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\"]}]},{\"layer\": \"layer2333214707\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\", [\\\"==\\\", \\\"foo\\\", 0]]\"]}]},{\"layer\": \"layer2333216076\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\", [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"layer253198869\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\", [\\\"==\\\", \\\"foo\\\", 0], [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"layer2596070344\",\"count\": 9,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 9,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer262236988\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!in\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"layer2624681884\",\"count\": 10,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 10,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\"<\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer2681700979\",\"count\": 6,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",0,false,true],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 6,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer2850085303\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"string\",\"values\": [\"bar\",\"baz\"]},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"bar\\\"}, [\\\"==\\\", \\\"foo\\\", \\\"bar\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"baz\\\"}, [\\\"==\\\", \\\"foo\\\", \\\"bar\\\"]\"]}]},{\"layer\": \"layer2925029377\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 3,\"type\": \"number\",\"values\": [0,1,3],\"min\": 0,\"max\": 3},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 3}, [\\\"!in\\\", \\\"foo\\\", 0, 1]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", 0, 1]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!in\\\", \\\"foo\\\", 0, 1]\"]}]},{\"layer\": \"layer3045031255\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"mixed\",\"values\": [\"0\",0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!in\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"!in\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"layer3048837612\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"mixed\",\"values\": [\"0\",0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!in\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"!in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer3115744778\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"type: 1, [\\\"in\\\", \\\"$type\\\", \\\"Polygon\\\", \\\"LineString\\\", \\\"Point\\\"]\",\"type: 2, [\\\"in\\\", \\\"$type\\\", \\\"Polygon\\\", \\\"LineString\\\", \\\"Point\\\"]\",\"type: 3, [\\\"in\\\", \\\"$type\\\", \\\"Polygon\\\", \\\"LineString\\\", \\\"Point\\\"]\"]}]},{\"layer\": \"layer328238911\",\"count\": 5,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",0,false,true],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 5,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"in\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer3425958478\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\", [\\\"==\\\", \\\"foo\\\", 0]]\"]}]},{\"layer\": \"layer3425959847\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\", [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"layer3444677016\",\"count\": 4,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"mixed\",\"values\": [\"0\",0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 4,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer3603115546\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\", [\\\"==\\\", \\\"foo\\\", 0]]\"]}]},{\"layer\": \"layer3603116915\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\", [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"layer3835447578\",\"count\": 9,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 9,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer4018549566\",\"count\": 10,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 10,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\">\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer4070554881\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\", [\\\"==\\\", \\\"foo\\\", 0], [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"layer4079511021\",\"count\": 10,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 10,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\"<=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer4097977117\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\"]\"]}]},{\"layer\": \"layer4098096220\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\"]\"]}]},{\"layer\": \"layer4113007703\",\"count\": 10,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 10,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\">=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\">=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer442294443\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"string\",\"values\": [\"bar\",\"baz\"]},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"baz\\\"}, [\\\"!=\\\", \\\"foo\\\", \\\"bar\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"bar\\\"}, [\\\"!=\\\", \\\"foo\\\", \\\"bar\\\"]\"]}]},{\"layer\": \"layer464719784\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 3,\"type\": \"number\",\"values\": [0,1,3],\"min\": 0,\"max\": 3},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", 0, 1]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"in\\\", \\\"foo\\\", 0, 1]\",\"not \\\"properties\\\": {\\\"foo\\\": 3}, [\\\"in\\\", \\\"foo\\\", 0, 1]\"]}]},{\"layer\": \"layer4650955\",\"count\": 9,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 9,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer584721662\",\"count\": 5,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",0,false,true],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 5,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"in\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"layer827905613\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"id\",\"count\": 1,\"type\": \"number\",\"values\": [1234],\"min\": 1234,\"max\": 1234},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"id\\\": 1234, [\\\"==\\\", \\\"$id\\\", 1234]\",\"not \\\"id\\\": \\\"1234\\\", [\\\"==\\\", \\\"$id\\\", 1234]\",\"not \\\"properties\\\": {\\\"id\\\": 1234}, [\\\"==\\\", \\\"$id\\\", 1234]\"]}]},{\"layer\": \"layer938200568\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": false}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": true}, [\\\"has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {}, [\\\"has\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"notlayer1359089124\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"not type: 1, [\\\"in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\",\"type: 2, [\\\"in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\",\"type: 3, [\\\"in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\"]}]},{\"layer\": \"notlayer1392333553\",\"count\": 9,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 9,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer1479822166\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": false}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": true}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer1510660139\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"in\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"notlayer1549998271\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"not type: 2, [\\\"!=\\\", \\\"$type\\\", \\\"LineString\\\"]\",\"type: 1, [\\\"!=\\\", \\\"$type\\\", \\\"LineString\\\"]\"]}]},{\"layer\": \"notlayer1619469362\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\", [\\\"==\\\", \\\"foo\\\", 0], [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"notlayer1675768827\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"not type: 1, [\\\"==\\\", \\\"$type\\\", \\\"LineString\\\"]\",\"type: 2, [\\\"==\\\", \\\"$type\\\", \\\"LineString\\\"]\"]}]},{\"layer\": \"notlayer1780490201\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": false}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": true}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {}, [\\\"!=\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"!=\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"notlayer1948775714\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\"==\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer1991184237\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",0,1,false],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 6,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"!has\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"notlayer220442869\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {}, [\\\"==\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"notlayer2208582832\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\"]\"]}]},{\"layer\": \"notlayer2275670193\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"not type: 2, [\\\"!in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\",\"not type: 3, [\\\"!in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\",\"type: 1, [\\\"!in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\"]}]},{\"layer\": \"notlayer2333214707\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\", [\\\"==\\\", \\\"foo\\\", 0]]\"]}]},{\"layer\": \"notlayer2333216076\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\", [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"notlayer253198869\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\", [\\\"==\\\", \\\"foo\\\", 0], [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"notlayer2596070344\",\"count\": 9,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 9,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer262236988\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!in\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"notlayer2624681884\",\"count\": 10,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 10,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\"<\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer2681700979\",\"count\": 6,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",0,false,true],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 6,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer2850085303\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"string\",\"values\": [\"bar\",\"baz\"]},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"bar\\\"}, [\\\"==\\\", \\\"foo\\\", \\\"bar\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"baz\\\"}, [\\\"==\\\", \\\"foo\\\", \\\"bar\\\"]\"]}]},{\"layer\": \"notlayer2925029377\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 3,\"type\": \"number\",\"values\": [0,1,3],\"min\": 0,\"max\": 3},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 3}, [\\\"!in\\\", \\\"foo\\\", 0, 1]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", 0, 1]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!in\\\", \\\"foo\\\", 0, 1]\"]}]},{\"layer\": \"notlayer3045031255\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"mixed\",\"values\": [\"0\",0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!in\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"!in\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"notlayer3048837612\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"mixed\",\"values\": [\"0\",0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!in\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"!in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer3115744778\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"type: 1, [\\\"in\\\", \\\"$type\\\", \\\"Polygon\\\", \\\"LineString\\\", \\\"Point\\\"]\",\"type: 2, [\\\"in\\\", \\\"$type\\\", \\\"Polygon\\\", \\\"LineString\\\", \\\"Point\\\"]\",\"type: 3, [\\\"in\\\", \\\"$type\\\", \\\"Polygon\\\", \\\"LineString\\\", \\\"Point\\\"]\"]}]},{\"layer\": \"notlayer328238911\",\"count\": 5,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",0,false,true],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 5,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"in\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer3425958478\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\", [\\\"==\\\", \\\"foo\\\", 0]]\"]}]},{\"layer\": \"notlayer3425959847\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\", [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"notlayer3444677016\",\"count\": 4,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"mixed\",\"values\": [\"0\",0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 4,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer3603115546\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\", [\\\"==\\\", \\\"foo\\\", 0]]\"]}]},{\"layer\": \"notlayer3603116915\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\", [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"notlayer3835447578\",\"count\": 9,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 9,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer4018549566\",\"count\": 10,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 10,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\">\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer4070554881\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\", [\\\"==\\\", \\\"foo\\\", 0], [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"notlayer4079511021\",\"count\": 10,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 10,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\"<=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer4097977117\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\"]\"]}]},{\"layer\": \"notlayer4098096220\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\"]\"]}]},{\"layer\": \"notlayer4113007703\",\"count\": 10,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 10,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\">=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\">=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer442294443\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"string\",\"values\": [\"bar\",\"baz\"]},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"baz\\\"}, [\\\"!=\\\", \\\"foo\\\", \\\"bar\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"bar\\\"}, [\\\"!=\\\", \\\"foo\\\", \\\"bar\\\"]\"]}]},{\"layer\": \"notlayer464719784\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 3,\"type\": \"number\",\"values\": [0,1,3],\"min\": 0,\"max\": 3},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", 0, 1]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"in\\\", \\\"foo\\\", 0, 1]\",\"not \\\"properties\\\": {\\\"foo\\\": 3}, [\\\"in\\\", \\\"foo\\\", 0, 1]\"]}]},{\"layer\": \"notlayer4650955\",\"count\": 9,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 8,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 9,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer584721662\",\"count\": 5,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",0,false,true],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 5,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"in\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"notlayer827905613\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"id\",\"count\": 1,\"type\": \"number\",\"values\": [1234],\"min\": 1234,\"max\": 1234},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"id\\\": 1234, [\\\"==\\\", \\\"$id\\\", 1234]\",\"not \\\"id\\\": \\\"1234\\\", [\\\"==\\\", \\\"$id\\\", 1234]\",\"not \\\"properties\\\": {\\\"id\\\": 1234}, [\\\"==\\\", \\\"$id\\\", 1234]\"]}]},{\"layer\": \"notlayer938200568\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": false}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": true}, [\\\"has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {}, [\\\"has\\\", \\\"foo\\\"]\"]}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/feature-filter/out/filtered.json.standard b/tests/feature-filter/out/filtered.json.standard index 72e5cfe3f..c67bf6b37 100644 --- a/tests/feature-filter/out/filtered.json.standard +++ b/tests/feature-filter/out/filtered.json.standard @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/feature-filter/out/all.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -z0 -f -o tests/feature-filter/out/all.mbtiles tests/feature-filter/in.json; ./tile-join -q -J tests/feature-filter/filter -f -o tests/feature-filter/out/filtered.mbtiles tests/feature-filter/out/all.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"layer1359089124\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer1392333553\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"layer1479822166\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer1549998271\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer1675768827\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer1780490201\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer1948775714\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer1991184237\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer2208582832\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer2275670193\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer2333216076\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer2596070344\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"layer262236988\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer2624681884\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer2681700979\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"layer2850085303\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"layer2925029377\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer3045031255\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"layer3048837612\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"layer3115744778\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer328238911\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer3425958478\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer3444677016\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer3603116915\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer3835447578\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"layer4018549566\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer4070554881\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer4079511021\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer4097977117\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer4113007703\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer442294443\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"layer464719784\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"layer4650955\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"layer827905613\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"layer938200568\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer1359089124\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"notlayer1392333553\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer1479822166\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer1510660139\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer1549998271\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"notlayer1619469362\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer1675768827\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"notlayer1948775714\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer1991184237\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer220442869\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer2275670193\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} }, { \"id\": \"notlayer2333214707\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer253198869\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer2596070344\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer2624681884\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer2681700979\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer2850085303\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"notlayer2925029377\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer3048837612\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer328238911\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer3425959847\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer3444677016\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"notlayer3603115546\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer3835447578\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer4018549566\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer4079511021\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer4098096220\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer4113007703\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer442294443\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"String\", \"rule\": \"String\"} }, { \"id\": \"notlayer464719784\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer4650955\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer584721662\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"foo\": \"Mixed\", \"rule\": \"String\"} }, { \"id\": \"notlayer827905613\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"id\": \"Number\", \"rule\": \"String\"} }, { \"id\": \"notlayer938200568\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"rule\": \"String\"} } ],\"tilestats\": {\"layerCount\": 69,\"layers\": [{\"layer\": \"layer1359089124\",\"count\": 2,\"geometry\": \"LineString\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"type: 2, [\\\"in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\",\"type: 3, [\\\"in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\"]}]},{\"layer\": \"layer1392333553\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"string\",\"values\": [\"-1\",\"0\"]},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer1479822166\",\"count\": 6,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",1,false,true],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 6,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": false}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": true}, [\\\"!=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {}, [\\\"!=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer1549998271\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"type: 1, [\\\"!=\\\", \\\"$type\\\", \\\"LineString\\\"]\"]}]},{\"layer\": \"layer1675768827\",\"count\": 1,\"geometry\": \"LineString\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"type: 2, [\\\"==\\\", \\\"$type\\\", \\\"LineString\\\"]\"]}]},{\"layer\": \"layer1780490201\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": false}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": true}, [\\\"!=\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {}, [\\\"!=\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"!=\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"layer1948775714\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"==\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer1991184237\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"!has\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"layer2208582832\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\"]\"]}]},{\"layer\": \"layer2275670193\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"type: 1, [\\\"!in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\"]}]},{\"layer\": \"layer2333216076\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\", [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"layer2596070344\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"string\",\"values\": [\"-1\"]},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer262236988\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!in\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"layer2624681884\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [-1],\"min\": -1,\"max\": -1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer2681700979\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"string\",\"values\": [\"0\"]},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer2850085303\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"string\",\"values\": [\"bar\"]},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"bar\\\"}, [\\\"==\\\", \\\"foo\\\", \\\"bar\\\"]\"]}]},{\"layer\": \"layer2925029377\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [3],\"min\": 3,\"max\": 3},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 3}, [\\\"!in\\\", \\\"foo\\\", 0, 1]\"]}]},{\"layer\": \"layer3045031255\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"mixed\",\"values\": [\"0\",0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!in\\\", \\\"foo\\\", null]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"!in\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"layer3048837612\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"string\",\"values\": [\"0\"]},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!in\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"!in\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer3115744778\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"type: 1, [\\\"in\\\", \\\"$type\\\", \\\"Polygon\\\", \\\"LineString\\\", \\\"Point\\\"]\",\"type: 2, [\\\"in\\\", \\\"$type\\\", \\\"Polygon\\\", \\\"LineString\\\", \\\"Point\\\"]\",\"type: 3, [\\\"in\\\", \\\"$type\\\", \\\"Polygon\\\", \\\"LineString\\\", \\\"Point\\\"]\"]}]},{\"layer\": \"layer328238911\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer3425958478\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\", [\\\"==\\\", \\\"foo\\\", 0]]\"]}]},{\"layer\": \"layer3444677016\",\"count\": 3,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 3,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer3603116915\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\", [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"layer3835447578\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"string\",\"values\": [\"1\"]},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer4018549566\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\">\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer4070554881\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\", [\\\"==\\\", \\\"foo\\\", 0], [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"layer4079511021\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"number\",\"values\": [-1,0],\"min\": -1,\"max\": 0},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer4097977117\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\"]\"]}]},{\"layer\": \"layer4113007703\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\">=\\\", \\\"foo\\\", 0]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\">=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"layer442294443\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"string\",\"values\": [\"baz\"]},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"baz\\\"}, [\\\"!=\\\", \\\"foo\\\", \\\"bar\\\"]\"]}]},{\"layer\": \"layer464719784\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", 0, 1]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"in\\\", \\\"foo\\\", 0, 1]\"]}]},{\"layer\": \"layer4650955\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"string\",\"values\": [\"0\",\"1\"]},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"layer827905613\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"\\\"id\\\": 1234, [\\\"==\\\", \\\"$id\\\", 1234]\"]}]},{\"layer\": \"layer938200568\",\"count\": 5,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 5,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": 0}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": 1}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": false}, [\\\"has\\\", \\\"foo\\\"]\",\"\\\"properties\\\": {\\\"foo\\\": true}, [\\\"has\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"notlayer1359089124\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not type: 1, [\\\"in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\"]}]},{\"layer\": \"notlayer1392333553\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 6,\"type\": \"mixed\",\"values\": [-1,0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<=\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer1479822166\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer1510660139\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"in\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"notlayer1549998271\",\"count\": 1,\"geometry\": \"LineString\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not type: 2, [\\\"!=\\\", \\\"$type\\\", \\\"LineString\\\"]\"]}]},{\"layer\": \"notlayer1619469362\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\", [\\\"==\\\", \\\"foo\\\", 0], [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"notlayer1675768827\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not type: 1, [\\\"==\\\", \\\"$type\\\", \\\"LineString\\\"]\"]}]},{\"layer\": \"notlayer1948775714\",\"count\": 6,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",1,false,true],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 6,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"==\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\"==\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer1991184237\",\"count\": 5,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",0,1,false],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 4,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"!has\\\", \\\"foo\\\"]\"]}]},{\"layer\": \"notlayer220442869\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"0\",0,1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"==\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {}, [\\\"==\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"notlayer2275670193\",\"count\": 2,\"geometry\": \"LineString\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"not type: 2, [\\\"!in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\",\"not type: 3, [\\\"!in\\\", \\\"$type\\\", \\\"LineString\\\", \\\"Polygon\\\"]\"]}]},{\"layer\": \"notlayer2333214707\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"all\\\", [\\\"==\\\", \\\"foo\\\", 0]]\"]}]},{\"layer\": \"notlayer253198869\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\", [\\\"==\\\", \\\"foo\\\", 0], [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"notlayer2596070344\",\"count\": 8,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 7,\"type\": \"mixed\",\"values\": [-1,\"0\",0,\"1\",1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 8,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer2624681884\",\"count\": 9,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 7,\"type\": \"mixed\",\"values\": [\"-1\",\"0\",0,\"1\",1,false,true],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 9,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\"<\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer2681700979\",\"count\": 5,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 3,\"type\": \"mixed\",\"values\": [0,false,true],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 5,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {}, [\\\"in\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer2850085303\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"string\",\"values\": [\"baz\"]},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"baz\\\"}, [\\\"==\\\", \\\"foo\\\", \\\"bar\\\"]\"]}]},{\"layer\": \"notlayer2925029377\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", 0, 1]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"!in\\\", \\\"foo\\\", 0, 1]\"]}]},{\"layer\": \"notlayer3048837612\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"!in\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer328238911\",\"count\": 4,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 3,\"type\": \"mixed\",\"values\": [\"0\",false,true]},{\"attribute\": \"rule\",\"count\": 4,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"in\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"in\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer3425959847\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"none\\\", [\\\"==\\\", \\\"foo\\\", 1]]\"]}]},{\"layer\": \"notlayer3444677016\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"string\",\"values\": [\"0\"]},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"!in\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer3603115546\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\", [\\\"==\\\", \\\"foo\\\", 0]]\"]}]},{\"layer\": \"notlayer3835447578\",\"count\": 8,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 7,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 8,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer4018549566\",\"count\": 9,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 7,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",0,\"1\",false,true],\"min\": -1,\"max\": 0},{\"attribute\": \"rule\",\"count\": 9,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\">\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer4079511021\",\"count\": 8,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 6,\"type\": \"mixed\",\"values\": [\"-1\",\"0\",\"1\",1,false,true],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 8,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"<=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\"<=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer4098096220\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\"any\\\"]\"]}]},{\"layer\": \"notlayer4113007703\",\"count\": 8,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 6,\"type\": \"mixed\",\"values\": [\"-1\",-1,\"0\",\"1\",false,true],\"min\": -1,\"max\": -1},{\"attribute\": \"rule\",\"count\": 8,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"1\\\"}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">=\\\", \\\"foo\\\", 0]\",\"not \\\"properties\\\": {}, [\\\">=\\\", \\\"foo\\\", 0]\"]}]},{\"layer\": \"notlayer442294443\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"string\",\"values\": [\"bar\"]},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"bar\\\"}, [\\\"!=\\\", \\\"foo\\\", \\\"bar\\\"]\"]}]},{\"layer\": \"notlayer464719784\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 1,\"type\": \"number\",\"values\": [3],\"min\": 3,\"max\": 3},{\"attribute\": \"rule\",\"count\": 1,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": 3}, [\\\"in\\\", \\\"foo\\\", 0, 1]\"]}]},{\"layer\": \"notlayer4650955\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 6,\"type\": \"mixed\",\"values\": [\"-1\",-1,0,1,false,true],\"min\": -1,\"max\": 1},{\"attribute\": \"rule\",\"count\": 7,\"type\": \"string\",\"values\": [\"not \\\"properties\\\": {\\\"foo\\\": \\\"-1\\\"}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": -1}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": 1}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": null}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\">=\\\", \\\"foo\\\", \\\"0\\\"]\"]}]},{\"layer\": \"notlayer584721662\",\"count\": 5,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"foo\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"0\",0,false,true],\"min\": 0,\"max\": 0},{\"attribute\": \"rule\",\"count\": 5,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": \\\"0\\\"}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": 0}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": false}, [\\\"in\\\", \\\"foo\\\", null]\",\"not \\\"properties\\\": {\\\"foo\\\": true}, [\\\"in\\\", \\\"foo\\\", null]\"]}]},{\"layer\": \"notlayer827905613\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"id\",\"count\": 1,\"type\": \"number\",\"values\": [1234],\"min\": 1234,\"max\": 1234},{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"not \\\"id\\\": \\\"1234\\\", [\\\"==\\\", \\\"$id\\\", 1234]\",\"not \\\"properties\\\": {\\\"id\\\": 1234}, [\\\"==\\\", \\\"$id\\\", 1234]\"]}]},{\"layer\": \"notlayer938200568\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"rule\",\"count\": 2,\"type\": \"string\",\"values\": [\"\\\"properties\\\": {\\\"foo\\\": null}, [\\\"has\\\", \\\"foo\\\"]\",\"not \\\"properties\\\": {}, [\\\"has\\\", \\\"foo\\\"]\"]}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/feature-filter/out/places-filter.mbtiles.json.standard b/tests/feature-filter/out/places-filter.mbtiles.json.standard index 712da7b6a..84307770b 100644 --- a/tests/feature-filter/out/places-filter.mbtiles.json.standard +++ b/tests/feature-filter/out/places-filter.mbtiles.json.standard @@ -3,6 +3,7 @@ "center": "-62.578125,17.307462,8", "description": "tests/feature-filter/out/places.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -r1 -z8 -f -o tests/feature-filter/out/places.mbtiles tests/ne_110m_populated_places/in.json; ./tile-join -q -J tests/feature-filter/places-filter -f -o tests/feature-filter/out/places-filter.mbtiles tests/feature-filter/out/places.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 8, \"fields\": {\"ADM0CAP\": \"Number\", \"ADM0NAME\": \"String\", \"ADM0_A3\": \"String\", \"ADM1NAME\": \"String\", \"ADMIN1_COD\": \"Number\", \"CAPALT\": \"Number\", \"CAPIN\": \"String\", \"CHANGED\": \"Number\", \"CHECKME\": \"Number\", \"CITYALT\": \"String\", \"COMPARE\": \"Number\", \"DIFFASCII\": \"Number\", \"DIFFNOTE\": \"String\", \"ELEVATION\": \"Number\", \"FEATURECLA\": \"String\", \"FEATURE_CL\": \"String\", \"FEATURE_CO\": \"String\", \"GEONAMEID\": \"Number\", \"GEONAMESNO\": \"String\", \"GN_ASCII\": \"String\", \"GN_POP\": \"Number\", \"GTOPO30\": \"Number\", \"ISO_A2\": \"String\", \"LABELRANK\": \"Number\", \"LATITUDE\": \"Number\", \"LONGITUDE\": \"Number\", \"LS_MATCH\": \"Number\", \"LS_NAME\": \"String\", \"MAX_AREAKM\": \"Number\", \"MAX_AREAMI\": \"Number\", \"MAX_BBXMAX\": \"Number\", \"MAX_BBXMIN\": \"Number\", \"MAX_BBYMAX\": \"Number\", \"MAX_BBYMIN\": \"Number\", \"MAX_NATSCA\": \"Number\", \"MAX_PERKM\": \"Number\", \"MAX_PERMI\": \"Number\", \"MAX_POP10\": \"Number\", \"MAX_POP20\": \"Number\", \"MAX_POP300\": \"Number\", \"MAX_POP310\": \"Number\", \"MAX_POP50\": \"Number\", \"MEAN_BBXC\": \"Number\", \"MEAN_BBYC\": \"Number\", \"MEGACITY\": \"Number\", \"MEGANAME\": \"String\", \"MIN_AREAKM\": \"Number\", \"MIN_AREAMI\": \"Number\", \"MIN_BBXMAX\": \"Number\", \"MIN_BBXMIN\": \"Number\", \"MIN_BBYMAX\": \"Number\", \"MIN_BBYMIN\": \"Number\", \"MIN_PERKM\": \"Number\", \"MIN_PERMI\": \"Number\", \"NAME\": \"String\", \"NAMEALT\": \"String\", \"NAMEASCII\": \"String\", \"NAMEDIFF\": \"Number\", \"NAMEPAR\": \"String\", \"NATSCALE\": \"Number\", \"POP1950\": \"Number\", \"POP1955\": \"Number\", \"POP1960\": \"Number\", \"POP1965\": \"Number\", \"POP1970\": \"Number\", \"POP1975\": \"Number\", \"POP1980\": \"Number\", \"POP1985\": \"Number\", \"POP1990\": \"Number\", \"POP1995\": \"Number\", \"POP2000\": \"Number\", \"POP2005\": \"Number\", \"POP2010\": \"Number\", \"POP2015\": \"Number\", \"POP2020\": \"Number\", \"POP2025\": \"Number\", \"POP2050\": \"Number\", \"POP_MAX\": \"Number\", \"POP_MIN\": \"Number\", \"POP_OTHER\": \"Number\", \"RANK_MAX\": \"Number\", \"RANK_MIN\": \"Number\", \"SCALERANK\": \"Number\", \"SOV0NAME\": \"String\", \"SOV_A3\": \"String\", \"TIMEZONE\": \"String\", \"UN_ADM0\": \"String\", \"UN_FID\": \"Number\", \"UN_LAT\": \"Number\", \"UN_LONG\": \"Number\", \"WORLDCITY\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1686,\"geometry\": \"Point\",\"attributeCount\": 91,\"attributes\": [{\"attribute\": \"ADM0CAP\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"ADM0NAME\",\"count\": 198,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\": \"ADM0_A3\",\"count\": 198,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\": \"ADM1NAME\",\"count\": 204,\"type\": \"string\",\"values\": [\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunción\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavský\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrës\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazán\",\"Gauteng\",\"Genève\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\": \"ADMIN1_COD\",\"count\": 53,\"type\": \"number\",\"values\": [0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,32,33,34,36,37,38,39,4,40,42,44,45,49,5,50,52,53,57,6,61,65,68,7,78,8,81,82,9],\"min\": 0,\"max\": 82},{\"attribute\": \"CAPALT\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"CAPIN\",\"count\": 20,\"type\": \"string\",\"values\": [\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\": \"CHANGED\",\"count\": 7,\"type\": \"number\",\"values\": [0,1,20,3,4,40,5],\"min\": 0,\"max\": 40},{\"attribute\": \"CHECKME\",\"count\": 2,\"type\": \"number\",\"values\": [0,5],\"min\": 0,\"max\": 5},{\"attribute\": \"CITYALT\",\"count\": 53,\"type\": \"string\",\"values\": [\"Algiers\",\"Asuncion\",\"Athens\",\"Bangkok\",\"Beirut\",\"Belgrade\",\"Bogota\",\"Bombay\",\"Brasilia\",\"Brussels\",\"Bucharest\",\"Cairo\",\"Calcutta\",\"Casablanca\",\"Copenhagen\",\"Damascus\",\"Denver\",\"Dubai\",\"Guatemala\",\"Hanoi\",\"Havana\",\"Khartoum\",\"Kiev\",\"Kuwait\",\"Lisbon\",\"Lome\",\"Los Angeles\",\"Mexico City\",\"Mogadishu\",\"Moscow\",\"Ndjamena\",\"New York\",\"Osaka\",\"Ottawa\",\"Panama\",\"Phnom Penh\",\"Prague\",\"Rangoon\",\"Riyadh\",\"Rome\",\"San Francisco\",\"San Jose\",\"Sanaa\",\"Sao Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Tripoli\",\"Urumqi\",\"Valparaiso\",\"Vienna\",\"Warsaw\",\"Washington D.C.\",\"Yaounde\"]},{\"attribute\": \"COMPARE\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"DIFFASCII\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"DIFFNOTE\",\"count\": 12,\"type\": \"string\",\"values\": [\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\": \"ELEVATION\",\"count\": 19,\"type\": \"number\",\"values\": [0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\": 0,\"max\": 2320},{\"attribute\": \"FEATURECLA\",\"count\": 6,\"type\": \"string\",\"values\": [\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\": \"FEATURE_CL\",\"count\": 1,\"type\": \"string\",\"values\": [\"P\"]},{\"attribute\": \"FEATURE_CO\",\"count\": 4,\"type\": \"string\",\"values\": [\"PPL\",\"PPLA\",\"PPLC\",\"PPLG\"]},{\"attribute\": \"GEONAMEID\",\"count\": 242,\"type\": \"number\",\"values\": [-1,1018725,1040652,1070940,108410,112931,1138958,1176615,1185241,1221874,1238992,1252416,1261481,1275004,1275339,1277333,1283240,1298824,146268,1512569,1526273,1528675,1529102,1559804,1581130,160196,160263,1609350,162183,1642911,1645457,1651944,1668341,1690681,1701668,170654,1728930,1730025,1735161,1796236,1815286,1816670,1819729,1820906,1821306,1835848,184745,1850147,1853909,1857910,1871859,1880252,202061,2028462,2075807,2081986,2088122,2108502,2110079,2110394,2113779,2135171,2144168,2147714,2158177,2172517,2193733,2198148,2220957,223817,2240449,2253354,2260535,2267057,2274895,2279755,2293538,2306104,2309527,2314302,2322794,232422,2357048,2365267,2374775,2377450,2389853,2392087,2394819,2399697,2408770,241131,2413876,2422465,2427123,2440485,2460596,2462881,2464470,250441],\"min\": -1,\"max\": 6942553},{\"attribute\": \"GEONAMESNO\",\"count\": 8,\"type\": \"string\",\"values\": [\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames rough area, rough name, requires further research.\",\"GeoNames rough area, rough name.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\",\"No GeoNames match due to small population, not in GeoNames, or poor NEV placement.\"]},{\"attribute\": \"GN_ASCII\",\"count\": 239,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Bengaluru\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Den Haag\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Ejbei Uad el Aabd\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneve\",\"Georgetown\",\"Guatemala City\",\"Ha Noi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\"]},{\"attribute\": \"GN_POP\",\"count\": 236,\"type\": \"number\",\"values\": [0,10021295,1019022,1020,1024027,10349312,10356500,10444527,1049498,1086505,1093485,1116513,11174257,11177,1122874,11285654,113364,1137347,113906,1152556,1153615,115826,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1273651,1275857,1284609,12920,1297281,1299369,13076300,13381,1353189,136473,13768,1391433,1399814,1431270,1442271,1453975,1459640,14608512,147074,150000,1508225,1536,1542813,155226,155963,1573544,15938,1619438,162135,1655753,16571,1662,1691468,1696128,1702139,1724,1742124,1767200,180541,1815679,1837969,183981,1877155,188084,1916100,194530,1963264,196731,1974647,1977663,1978028,200452,2026469,20500,208411,2087,2138,2163824,217,217000,2207718,223757,22400,224838,227940,22881,229398,234168,235017,24226],\"min\": 0,\"max\": 14608512},{\"attribute\": \"GTOPO30\",\"count\": 166,\"type\": \"number\",\"values\": [-2,-9999,0,1,10,100,1002,1006,1025,103,104,108,1092,11,110,111,1129,1149,115,1156,12,1206,1247,125,1277,128,1282,1289,1299,13,1304,131,132,133,1398,14,1448,1468,1481,1482,15,151,152,1533,156,1561,1568,159,16,164,169,17,1722,1724,173,174,1775,1808,181,183,19,199,2,20,2004,203,205,21,219,22,2216,224,228,23,235,2360,2363,24,2400,246,259,26,2620,2737,2759,2764,28,284,290,3,30,304,305,306,307,31,339,35,350,373],\"min\": -9999,\"max\": 3829},{\"attribute\": \"ISO_A2\",\"count\": 196,\"type\": \"string\",\"values\": [\"-99\",\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"]},{\"attribute\": \"LABELRANK\",\"count\": 8,\"type\": \"number\",\"values\": [0,1,2,3,5,6,7,8],\"min\": 0,\"max\": 8},{\"attribute\": \"LATITUDE\",\"count\": 242,\"type\": \"number\",\"values\": [-0.214988,-1.283347,-1.95359,-11.704158,-12.048013,-13.841545,-13.983295,-15.416644,-15.78334,-16.497974,-17.73335,-17.81779,-18.133016,-18.916637,-19.040971,-20.166639,-21.138512,-22.570006,-22.925023,-23.55868,-24.646313,-25.296403,-25.706921,-25.955277,-26.170044999999999,-26.316651,-26.466667,-29.119994,-29.316674,-3.376087,-33.047764,-33.450014,-33.920011,-34.602502,-34.858042,-35.283029,-36.850013,-37.820031,-4.259186,-4.329724,-4.616632,-41.299974,-6.174418,-6.183306,-6.800013,-8.516652,-8.559388,-8.838286,-9.437994,-9.464708,0.316659,0.333402,0.385389,1.293033,1.338188,10.500999,10.651997,11.55003,11.595014,11.865024,12.052633,12.113097,12.153017,12.370316,12.650015,12.969995,13.102003,13.148279,13.453876,13.516706,13.710002,13.749999,14.001973,14.102045,14.604159,14.621135,14.715832,14.916698,15.301016,15.333339,15.354733,15.588078,16.429991,16.783354,17.118037,17.252034,17.30203,17.966693,17.977077,18.086427,18.470073,18.541025,19.01699,19.442442,19.766557,2.066681,2.91402,21.033327,22.304981,22.494969],\"min\": -41.299974,\"max\": 64.150024},{\"attribute\": \"LONGITUDE\",\"count\": 243,\"type\": \"number\",\"values\": [-0.116722,-0.216716,-1.524724,-10.804752,-100.329985,-104.984016,-118.179981,-122.459978,-123.121644,-13.200006,-13.234216,-13.680235,-15.598361,-15.97534,-16.591701,-17.47313,-171.738642,-175.220564,-21.950014,-23.516689,-3.683352,-4.040048,-43.225021,-46.62502,-47.916052,-5.275503,-55.167031,-56.171052,-57.641505,-58.167029,-58.397531,-59.616527,-6.248906,-6.836131,-61.000008,-61.212062,-61.387013,-61.517031,-61.741643,-61.850034,-62.717009,-65.259516,-66.917037,-68.149985,-69.900085,-7.616367,-70.667041,-71.621014,-72.336035,-73.980017,-74.083344,-75.700015,-76.767434,-77.009419,-77.050062,-77.350044,-78.500051,-79.420021,-79.533037,-8.000039,-80.224106,-82.364182,-84.084051,-84.399949,-86.268492,-87.217529,-87.750055,-88.767073,-89.203041,-9.144866,-9.652522,-90.526966,-95.339979,-99.130988,1.222757,1.516486,10.179678,10.749979,100.516645,101.699983,101.701947,102.59998,103.855821,104.070019,104.916634,105.850014,106.829438,106.916616,11.516651,114.185009,114.933284,116.388286,12.447808,12.46667,12.483258,12.563486,120.569943,120.982217,121.436505,121.568333],\"min\": -175.220564,\"max\": 179.216647},{\"attribute\": \"LS_MATCH\",\"count\": 3,\"type\": \"number\",\"values\": [0,1,2],\"min\": 0,\"max\": 2},{\"attribute\": \"LS_NAME\",\"count\": 242,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\": \"MAX_AREAKM\",\"count\": 212,\"type\": \"number\",\"values\": [0,1,10,1021,103,104,105,106,10661,108,109,112,113,114,1182,118844,12,120,122,126,1275,128,130,131,1327,1332,1345,135,1373,14049,1409,141,143,145,1471,1472,1479,148,15,152,1554,157,16,160,1614,1639,16400,17,1700,1708,171,172,174,1748,177,178,179,18,181,183,184,186559,191,19435,195,197,2080,209,21,211,217,2286,23,2344,2350,236,237,2415,24244,243,244,2447,245,246,249,25,251,2667,27,270,2718,28,2836,2843,2861,2907,3,30,300,302],\"min\": 0,\"max\": 186559},{\"attribute\": \"MAX_AREAMI\",\"count\": 181,\"type\": \"number\",\"values\": [0,1,10,1030,104,1049,1095,1098,11,1105,1122,116,117,1174,12,121,122,123,1235,126,13,130,133,1331,134,135,138,139,14,140,141,143,144,146,15,154,157,1578,16,160,162,165,166,168,169,17,173,174,176,179,180,182,183,1855,188,1892,191,19271,194,195,196,198,2,20,202,20591,206,209,21,210,2109,2148,215,2220,223,224,2241,227,229,23,2408,243,245,248,251,264,266,268,27,270,272,273,274,277,28,29,3,30,305,310],\"min\": 0,\"max\": 72030},{\"attribute\": \"MAX_BBXMAX\",\"count\": 240,\"type\": \"number\",\"values\": [-1.433333,-10.658333,-100.125,-104.708333,-117.008333,-121.733333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.125,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.15,-46.108333,-47.783333,-5.216667,-55.1,-55.8,-57.316667,-57.816667,-58.116667,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.325,-72.033333,-72.716667,-74.008333,-75.45,-76.4,-76.733333,-76.833333,-77.258333,-78.291667,-78.608333,-79.4,-8.958333,-80.025,-82.208333,-83.858333,-83.975,-86.158333,-87.125,-87.141667,-88.75,-88.966667,-90.425,-95,-98.808333,0,0.033333,0.816667,1.483333,1.591667,10.575,101.016667,101.891667,102.816667,104,105,105.375,106.808333,107.041667,109.808333,11.091667,11.6,114.775,114.991667,117.325,12.481009,12.541667,12.658333,12.766667,120.65,121.333333,121.816667,121.9,125.608333],\"min\": -175.166667,\"max\": 178.533333},{\"attribute\": \"MAX_BBXMIN\",\"count\": 241,\"type\": \"number\",\"values\": [-0.35,-0.546866,-1.616667,-10.816667,-100.5,-105.241667,-118.966667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.499182,-47.056372,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-58.757731,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-66.993057,-68.258333,-7.116667,-7.7,-70.208333,-70.8,-71.658333,-72.441667,-74.091431,-74.266667,-75.983333,-76.866667,-77.153161,-77.308333,-77.4,-78.591667,-79.576315,-79.806554,-8.058333,-80.441667,-82.533333,-84.166667,-84.608333,-86.383333,-87.266667,-88.03629,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,10.440355,100.216667,101.491667,101.575,102.491667,103.383333,103.658333,104.441667,105.616287,106.473854,106.725,11.433333,113.983333,114.825,116.058333,12.316667,12.333333,12.391667,12.450494,12.983333,120.541667,120.925,121.013757,121.325],\"min\": -175.233333,\"max\": 178.425},{\"attribute\": \"MAX_BBYMAX\",\"count\": 239,\"type\": \"number\",\"values\": [-1.075,-1.083333,-11.475,-11.808333,-13.641667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.544862,-20.108333,-21.125,-22.491667,-22.575,-23.241667,-24.6,-25.1,-25.641667,-25.75,-25.941667,-26.283333,-26.391667,-29.058333,-29.241667,-32.916667,-33.175,-33.6,-33.808333,-34.366667,-34.65,-35.183333,-36.8,-37.566667,-4.15,-4.291667,-4.6,-41.2,-5.875,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.475,10.05,10.541667,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.9,14.025,14.133333,14.158333,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.825,16.416667,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.491667,19.783333,19.908333,2.116667,21.783333,23.183333,23.641667],\"min\": -41.2,\"max\": 64.166667},{\"attribute\": \"MAX_BBYMIN\",\"count\": 240,\"type\": \"number\",\"values\": [-0.30257,-1.433333,-11.758333,-12.281801,-13.866667,-14.408333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.075,-20.248073,-21.166667,-22.625,-23.033333,-23.842331,-24.7,-25.391667,-25.891667,-25.983333,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.675,-33.075,-33.556142,-34.091667,-34.108333,-34.933333,-35.008333,-35.455764,-36.964958,-38.0105,-4.333333,-4.478678,-4.65,-41.35,-6.208333,-6.383127,-6.933333,-8.583333,-8.933333,-9.441667,-9.508333,0,0.166719,0.283333,0.3,1.25,1.325,10.408333,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.516667,13.591667,13.975,14.033333,14.441667,14.571814,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.875,17.958333,18.033333,18.316667,18.491667,18.891667,19.233333,19.633333,2,2.708333,20.620237,22.056849,22.2],\"min\": -41.35,\"max\": 64.05},{\"attribute\": \"MAX_NATSCA\",\"count\": 5,\"type\": \"number\",\"values\": [0,100,20,300,50],\"min\": 0,\"max\": 300},{\"attribute\": \"MAX_PERKM\",\"count\": 198,\"type\": \"number\",\"values\": [0,101,102,1021,10224,10267,105,106,1064,107,1086,1087,109,1100,1111,112,1135,116,1161,119,11900,1192,120,1202,121,122,123,12342,13,130296,131,132,1325,133,1354,142,144,149,15,151,153,154,155,16,160,162,164,1658,166,173,174,177,1773,179,18,184,186,1891,1898,190,1901,19314,196,199,202,205,208,210,215,218,219,22,2202,223,2284,234,2388,239,2412,2440,245,2459,249,25,250,256,26,261,266,27,270,278,28,283,286,287,288,2946,296,2982],\"min\": 0,\"max\": 130296},{\"attribute\": \"MAX_PERMI\",\"count\": 189,\"type\": \"number\",\"values\": [0,10,101,102,103,1030,108,11,110,1101,111,114,115,116,1175,1179,118,1181,12001,122,123,126,127,129,130,134,135,136,1369,138,14,1419,145,1484,149,1499,1516,152,1528,155,159,16,162,165,166,168,17,172,173,176,177,179,18,1830,184,1853,187,189,19,192,194,197,198,2,20,206,21,212,213,214,215,22054,222,223,224,227,23,238,239,24,240,243,25,251,255,2581,263,27,274,28,284,285,286,292,295,309,31,3102,311,3113],\"min\": 0,\"max\": 80962},{\"attribute\": \"MAX_POP10\",\"count\": 241,\"type\": \"number\",\"values\": [0,1005257,1014546,10169723,10190861,1042928,1046787,1060587,107260,1072902,1073782,1074311,10811002,108543,1086244,10929146,11029015,1105973,1115771,111975,1122682,1123733,1124323,112927,1154222,1163890,1173386,1193251,1200842,12322855,12495084,12814908,128698,1289566,1291613,1316564,1337078,1369629,13762740,1381747,143230,144164,144390,1444949,1450902,14548962,145850,1472051,14936123,1504217,15220,1548599,1551977,1561335,1577138,1581087,1590116,1590482,159243,160966,16172884,166212,1662508,1712125,1727538,1732952,1742194,1759840,176365,1788020,1831176,1832316,1833439,1835853,1838722,1904377,191152,1946052,194824,1951272,1990917,2010175,2037124,206499,2066046,2084,2129163,2143900,2150614,2155592,218269,2182723,21887,2189383,219674,221736,224300,22534,2324568,23336],\"min\": 0,\"max\": 16172884},{\"attribute\": \"MAX_POP20\",\"count\": 241,\"type\": \"number\",\"values\": [0,1005257,1014546,10259448,1060587,107260,1072902,1073782,1074311,1076471,108543,1086244,10991915,11030955,1105973,11120470,1115771,111975,112927,1130999,11359674,1163890,1173386,11947707,1200842,1230007,128698,1289566,1291613,13143622,1316564,1337078,13414375,1381747,143230,144164,1443206,1444949,145850,1504217,15074060,15091561,15220,1551977,1577138,15779579,1581475,1588839,1590482,159243,160966,1610331,16172884,166212,1662508,1712468,17250245,1727538,1742194,17425624,176365,1788020,1823845,1826034,1829910,1831176,1831921,1833439,1835853,1836390,18577087,1874437,1892286,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2100407,2129163,21394172,2140496,2142805,2143900,2150614,2153391,218269,21887,219674,221736,2240256,224300,2244726,22534,2263899,2297630],\"min\": 0,\"max\": 24218878},{\"attribute\": \"MAX_POP300\",\"count\": 219,\"type\": \"number\",\"values\": [0,10011551,1007529,10140950,1014546,1060587,1073782,1074311,1086244,1105973,1108173,1113489,1115771,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,1337078,1381747,143230,144164,1444949,145850,14870543,1504217,15220,1551977,15645640,1577138,1581475,1590116,1590482,159243,160966,1610331,166212,1662508,16718429,1727538,1740692,1742194,1788020,18203351,1823845,1826034,1831921,1835853,1838722,1838972,1839463,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,2066046,2084,2129163,2141255,2142805,2150614,2174327,21887,219674,21991959,22031364,221736,224300,2244726,22534,2297630,2322955,23336,23366503,23647944,23700631,2419489,2443605,2445384,244896,2498797,251136,254169,2564188,262796,264350,265361,2660614,26631586],\"min\": 0,\"max\": 87652060},{\"attribute\": \"MAX_POP310\",\"count\": 45,\"type\": \"number\",\"values\": [0,10011551,10140950,1108173,11547877,1256924,12611862,1337078,137121250,14903021,15645640,1610331,18203351,18924578,18948089,20149761,21991959,2244726,224908923,2666328,26749011,30696820,31303497,3164008,3503466,3576473,3767139,3910939,40576904,4207001,42594594,44354170,4561697,4983714,5187749,5190755,5451385,5678280,6333154,8450289,8889292,9206246,9212245,968976,9960588],\"min\": 0,\"max\": 224908923},{\"attribute\": \"MAX_POP50\",\"count\": 238,\"type\": \"number\",\"values\": [0,10011551,1007529,10140950,1014546,1060587,107260,1073782,1074311,1076471,108543,1086244,1105973,1108173,1115771,111975,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,13292739,1337078,1371285,1381747,143230,144164,1444949,145850,14868745,1504217,15220,1551977,1577138,1581475,1590116,1590482,159243,160966,1610331,16406759,16510327,1651113,166212,1662508,16718429,1727538,1740692,1742194,176365,1788020,18203351,1822603,1826034,1831921,1833439,1835853,1838722,1838972,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2129163,21387676,2141255,2142805,2150614,2174327,218269,21887,219674,22017580,221736,224300,2244726,22534,2297630,2312867,2322955,2324568,23336,2395309,2419489,24374217,2443605],\"min\": 0,\"max\": 53845691},{\"attribute\": \"MEAN_BBXC\",\"count\": 242,\"type\": \"number\",\"values\": [-0.169651,-0.188893,-1.521746,-10.734923,-100.290632,-104.993967,-118.107478,-122.301354,-122.982768,-13.194643,-13.230082,-13.588647,-15.612698,-15.960139,-16.58125,-17.343779,-171.781117,-175.206798,-21.8825,-23.514907,-3.749399,-4.019846,-43.407551,-46.651489,-47.9714,-5.263708,-55.188737,-56.12273,-57.535385,-58.153788,-58.50845,-59.589731,-6.278983,-6.87491,-60.988377,-61.202183,-61.3775,-61.383365,-61.745833,-61.824059,-62.726389,-65.260317,-66.917919,-68.157765,-69.980546,-7.518511,-7.987419,-70.66127,-71.541251,-72.222424,-73.815782,-74.116517,-75.717666,-76.798044,-77.002668,-77.010199,-77.335571,-78.460061,-79.464213,-79.494919,-80.236416,-82.354344,-84.111698,-84.328739,-86.263402,-87.19911,-87.85874,-88.767803,-89.176042,-9.232769,-90.54419,-95.431928,-99.116655,0,1.190359,1.535473,10.202041,10.756508,100.545047,101.644598,101.716617,102.648054,103.821508,104.039242,104.78577,105.892881,106.883013,106.989399,11.518344,114.035195,114.908824,115.929521,12.419907,12.437175,12.462153,12.561474,120.598765,120.915044,121.053901,121.292375],\"min\": -175.206798,\"max\": 178.472885},{\"attribute\": \"MEAN_BBYC\",\"count\": 242,\"type\": \"number\",\"values\": [-0.198438,-1.249679,-11.639931,-12.041474,-13.837855,-14.028166,-15.403941,-15.824583,-16.506439,-17.728125,-17.832399,-18.106731,-18.875473,-19.030556,-2.034427,-20.221833,-21.142325,-22.551143,-22.856463,-23.558961,-24.656793,-25.307462,-25.755716,-25.880831,-26.187259,-26.315428,-26.430254,-29.128155,-29.350222,-3.227847,-33.034648,-33.461735,-33.846724,-33.954979,-34.681331,-34.828337,-35.309627,-36.896818,-37.835257,-4.251293,-4.384467,-4.626389,-41.285539,-6.162244,-6.313824,-6.833434,-8.559115,-8.851964,-9.42996,-9.433491,0,0.323809,0.338176,0.395238,1.33869,1.352586,10.451672,10.638816,11.488418,11.5715,11.871032,12.046528,12.120479,12.13336,12.365975,12.626173,12.841733,13.128773,13.145833,13.455208,13.522591,13.738798,13.761017,14.005921,14.083298,14.603015,14.742828,14.823118,14.938056,15.298056,15.327408,15.376031,15.559101,16.421065,16.85864,17.120565,17.248864,17.306019,17.967124,18.018509,18.092569,18.467176,18.56946,19.189154,19.473748,19.720606,2.054239,2.915909,20.873406,22.616509],\"min\": -41.285539,\"max\": 64.116125},{\"attribute\": \"MEGACITY\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"MEGANAME\",\"count\": 145,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asunción\",\"Athínai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogotá\",\"Brasília\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá (Panama City)\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazaïr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hong Kong\",\"Houston\",\"Hà Noi\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"København\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomé\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djaména\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\",\"Osaka-Kobe\"]},{\"attribute\": \"MIN_AREAKM\",\"count\": 200,\"type\": \"number\",\"values\": [0,1,10,1010,1035,104,105,1054,106,1078,108,109,1093,1100,1114,112,1121,1124,113,1137,114,12,120,122,1249,126,1265,128,130,1303,131,1338,1345,141,143,1432,1434,145,1479,148,15,1561,16,160,166,1675,169,17,171,172,174,177,178,179,18,181,183,184,187,191,1914,192,195,197,202,209,21,211,2130,217,218,224,226,23,233,236,237,2388,244,2443,245,246,2490,25,2512,257,264,27,270,275,2761,278,28,3,30,305,310,316,317,32],\"min\": 0,\"max\": 5912},{\"attribute\": \"MIN_AREAMI\",\"count\": 166,\"type\": \"number\",\"values\": [0,1,10,102,104,106,1066,107,11,118,12,120,122,125,127,129,13,131,133,134,135,1362,139,14,144,146,1464,147,15,156,158,16,160,165,166,168,169,17,171,172,174,178,179,183,185,188,189,191,194,195,196,198,2,20,202,205,206,207,21,215,220,227,2283,229,23,232,247,257,26,266,268,269,27,270,273,279,28,29,298,3,30,310,313,315,32,330,334,34,342,345,347,35,351,37,375,38,390,4,40,400],\"min\": 0,\"max\": 2283},{\"attribute\": \"MIN_BBXMAX\",\"count\": 240,\"type\": \"number\",\"values\": [-0.098725,-1.433333,-10.658333,-100.125,-104.866667,-117.857183,-122.358333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.2,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.158333,-46.383333,-47.783333,-5.216667,-55.107566,-55.8,-57.543999,-58.116667,-58.175,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.57441,-72.033333,-73.574946,-74.008333,-75.45,-76.733333,-76.752653,-76.85,-77.258333,-78.291667,-79.130272,-79.4,-8.958333,-80.175719,-82.208333,-83.879976,-83.983333,-86.158333,-87.141667,-87.528138,-88.75,-88.966667,-90.425,-95.133333,-99.018165,0,0.307108,1.483333,1.591667,10.497585,100.844293,101.841667,101.891667,102.725,104,104.433333,105,106.2294,106.932506,107.041667,11.091667,11.6,114.3,114.991667,117.208333,12.481009,12.541667,12.658333,12.766667,120.65,121.038985,121.622484,121.9],\"min\": -175.166667,\"max\": 178.533333},{\"attribute\": \"MIN_BBXMIN\",\"count\": 238,\"type\": \"number\",\"values\": [-0.35,-1.091667,-1.616667,-10.816667,-100.5,-105.241667,-118.991667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.75,-47.058333,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-59.016667,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-67.133333,-68.258333,-7.116667,-7.7,-70.208333,-70.958333,-71.658333,-72.441667,-74.266667,-74.75,-75.983333,-76.866667,-77.166667,-77.4,-77.533333,-78.591667,-79.591667,-8.058333,-80.008333,-80.466667,-82.533333,-84.366667,-84.875,-86.383333,-87.266667,-88.408333,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,1.658333,10.333333,101.358333,102.491667,103.125,103.633333,104.441667,104.975,105.891667,106.725,11.433333,111.441667,112.533333,114.825,119.016667,12.116667,12.333333,12.391667,12.958333,12.983333,120.141667,120.541667,120.741667,125.516667],\"min\": -175.233333,\"max\": 178.425},{\"attribute\": \"MIN_BBYMAX\",\"count\": 241,\"type\": \"number\",\"values\": [-1.083333,-1.76663,-11.475,-11.808333,-13.691667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.95,-20.108333,-21.125,-22.491667,-22.837896,-23.358333,-24.6,-25.208333,-25.641667,-25.75,-25.991667,-26.283333,-26.391667,-29.058333,-29.241667,-33.016667,-33.175,-33.641667,-33.808333,-34.375,-34.65,-35.183333,-36.825,-37.589905,-4.15,-4.291667,-4.6,-41.2,-6.016667,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.425,10.041667,10.533671,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.872295,13.9,14.025,14.133333,14.702876,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.699422,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.308333,19.640315,19.783333,2.116667,21.319209,22.4,22.575491],\"min\": -41.2,\"max\": 64.166667},{\"attribute\": \"MIN_BBYMIN\",\"count\": 237,\"type\": \"number\",\"values\": [-0.391667,-1.433333,-11.758333,-12.316667,-13.866667,-14.433333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.991667,-20.333333,-21.166667,-22.625,-23.033333,-23.891667,-24.7,-25.491667,-25.891667,-25.991667,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.841667,-33.075,-33.7,-34.091667,-34.108333,-34.933333,-35.008333,-35.483333,-37.091667,-38.208333,-4.333333,-4.5,-4.65,-41.35,-6.208333,-6.933333,-7.716667,-8.583333,-8.933333,-9.441667,-9.508333,0,0.033333,0.283333,0.3,1.25,1.325,10.325,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.5,13.591667,13.975,14.016667,14.033333,14.433333,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.8,17.958333,18.033333,18.316667,18.491667,18.891667,19.2,19.283333,19.633333,19.866667,2,2.7,21.925],\"min\": -41.35,\"max\": 64.05},{\"attribute\": \"MIN_PERKM\",\"count\": 192,\"type\": \"number\",\"values\": [0,101,102,105,106,109,112,1148,116,1175,1180,119,120,121,122,123,1257,126,128,13,130,131,132,133,136,1360,1365,137,142,1439,144,149,1494,15,153,155,156,158,16,160,162,164,166,170,173,174,175,177,18,1837,184,186,190,1908,196,199,201,203,205,208,215,217,219,22,2219,222,223,228,2296,233,237,239,240,244,245,249,25,250,251,256,258,26,261,266,27,274,28,280,287,288,293,295,30,304,309,31,310,311,315,318],\"min\": 0,\"max\": 2296},{\"attribute\": \"MIN_PERMI\",\"count\": 181,\"type\": \"number\",\"values\": [0,10,100,101,102,103,106,108,109,11,110,114,1141,115,116,118,1186,122,123,124,125,126,127,129,130,134,135,136,1379,138,14,142,1427,145,147,149,152,155,156,159,16,160,162,165,17,170,174,179,18,182,183,189,19,192,193,196,197,198,2,20,21,211,215,216,217,219,221,222,224,227,23,231,234,238,24,240,243,247,248,25,251,254,255,27,274,276,28,285,286,289,29,290,291,293,295,300,302,309,31,317],\"min\": 0,\"max\": 1427},{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\": \"NAMEALT\",\"count\": 43,\"type\": \"string\",\"values\": [\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asunción\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogotá\",\"Brasília\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá|Panama City|Panama\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazaïr\",\"Hà Noi\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lomé\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djaména\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Pénh\",\"San Francisco-Oakland\",\"San José\",\"Sana'a'\",\"Sao Paulo|São Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaíso\",\"Washington D.C.\",\"Yangon\",\"Yaoundé\",\"Ürümqi|Wulumqi\"]},{\"attribute\": \"NAMEASCII\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\": \"NAMEDIFF\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"NAMEPAR\",\"count\": 12,\"type\": \"string\",\"values\": [\"Athínai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\": \"NATSCALE\",\"count\": 8,\"type\": \"number\",\"values\": [10,110,20,200,30,300,50,600],\"min\": 10,\"max\": 600},{\"attribute\": \"POP1950\",\"count\": 135,\"type\": \"number\",\"values\": [0,1002,1016,1021,104,1041,106,1066,1068,110,111,1116,11275,1212,1216,12338,129,1298,1302,1304,1322,133,1332,1347,1360,137,138,1415,143,145,1452,148,15,150,1544,1618,1682,1690,1700,171,177,18,183,1855,1884,194,20,202,206,208,2086,211,219,22,2334,24,2494,253,258,275,280,281,282,284,2857,287,2883,2950,305,31,319,32,322,328,33,3352,336,341,356,36,364,366,367,392,4046,411,4147,418,4331,4513,46,468,4999,505,5098,513,516,522,5356,556],\"min\": 0,\"max\": 12338},{\"attribute\": \"POP1955\",\"count\": 139,\"type\": \"number\",\"values\": [0,1016,104,106,1091,110,111,112,1227,1248,1249,125,1289,129,1306,131,13219,136,1365,1368,13713,1396,140,1405,1440,1449,148,1539,1553,1563,1574,1618,1712,1714,174,182,184,186,1872,189,1906,192,1972,201,2018,2021,2087,21,2121,2143,220,235,246,25,252,257,265,27,28,281,292,3029,3044,312,314,3299,34,340,342,3432,3592,37,370,374,376,377,3801,387,40,405,409,41,414,425,431,439,451,46,461,4628,468,49,498,501,5055,5120,5154,53,533,556],\"min\": 0,\"max\": 13713},{\"attribute\": \"POP1960\",\"count\": 141,\"type\": \"number\",\"values\": [0,1001,1002,1005,1019,1106,1119,112,1147,1151,1163,1165,1166,119,124,1269,128,1284,1285,130,1316,1361,137,14164,1436,1453,1485,1514,156,1592,162,1634,16679,174,1744,1756,179,181,1811,1814,1823,1851,1873,192,1980,199,2089,2135,2151,218,219,2200,2274,23,230,233,236,2361,2392,2456,247,248,252,2620,263,2679,283,293,311,319,3260,34,344,347,359,3680,382,384,389,393,3970,40,4060,415,419,433,4374,438,440,443,446,448,45,476,4945,5012,508,519,538,551],\"min\": 0,\"max\": 16679},{\"attribute\": \"POP1965\",\"count\": 143,\"type\": \"number\",\"values\": [0,1003,1038,1049,109,111,112,1132,1135,1154,1165,1206,121,1212,1229,1230,1288,132,1323,1327,1373,1377,138,1389,1396,146,148,15177,1525,158,1598,160,1614,1657,169,1709,172,1760,1780,1878,1880,2001,20284,2068,208,2080,2093,2121,2135,222,227,2284,2294,233,235,2361,2390,248,2511,2584,259,268,269,2780,2829,287,2898,29,298,299,303,310,315,319,3191,322,3232,3297,337,339,3452,360,369,394,399,404,436,45,461,472,473,4738,477,478,481,482,4854,488,499,51],\"min\": 0,\"max\": 20284},{\"attribute\": \"POP1970\",\"count\": 138,\"type\": \"number\",\"values\": [0,1029,1035,1045,1054,1070,1076,111,1114,1182,1254,1267,1274,129,1298,1300,1307,1341,1362,1374,1380,1396,1403,1414,1444,147,1505,155,1568,1592,1615,16191,163,164,1655,1693,1741,1779,1817,183,192,1946,206,2060,2070,2075,2141,222,223,23298,2334,238,2383,2485,2488,2529,2535,2647,2667,272,2772,278,298,2980,3110,3135,3206,3290,340,3458,3521,3534,357,359,363,366,371,388,3915,398,408,417,433,451,455,459,460,472,48,494,500,501,507,525,531,5312,532,548,552,553],\"min\": 0,\"max\": 23298},{\"attribute\": \"POP1975\",\"count\": 142,\"type\": \"number\",\"values\": [0,100,1015,1016,10690,107,1120,1122,1126,1150,1172,1198,1206,1339,1348,1386,1403,141,1429,1444,1482,149,1499,1500,1547,15880,1589,1610,1612,1622,167,1702,1709,1793,180,1848,1884,1890,1911,1926,198,2005,2023,2030,2059,2103,2111,2151,2221,226,2263,231,2342,240,2561,257,2590,2620,2626,26615,2738,2770,284,292,2960,3040,3130,3138,329,3300,356,3600,363,3696,3842,385,3890,3943,398,4273,440,443,445,454,456,4813,485,4999,500,528,530,532,572,575,581,582,596,6034,611,624],\"min\": 0,\"max\": 26615},{\"attribute\": \"POP1980\",\"count\": 143,\"type\": \"number\",\"values\": [0,1042,1055,1057,1074,1090,1096,1164,1175,1179,12089,1240,1247,125,128,1293,13010,1318,1356,1376,1384,1416,1454,15601,1565,1574,1609,1621,1623,1625,1654,1656,1701,1818,1842,1865,189,1891,1913,1992,2049,2053,2057,2109,2201,2217,225,2293,2378,238,2415,2424,2449,254,257,2572,2575,2606,2656,274,2765,2777,2812,28549,2987,3008,3056,3122,3145,3227,324,325,3266,337,3390,344,3525,361,371,3721,415,423,4253,4397,4438,446,4609,469,4723,489,5079,525,526,533,538,550,551,580,5955,5984],\"min\": 0,\"max\": 28549},{\"attribute\": \"POP1985\",\"count\": 144,\"type\": \"number\",\"values\": [0,1012,1013,1016,10181,1029,10341,10350,1046,1056,1090,1121,1122,1123,1160,1162,1177,1181,1197,1295,13395,1359,1396,14109,1437,1474,1476,1508,1546,1559,1566,15827,1585,1596,1611,1654,1660,1672,168,1681,1714,1716,1773,1879,1925,1950,1958,2005,2036,204,2069,2195,2213,2273,2406,2410,2446,2518,260,2629,2639,2658,2693,2709,2793,2805,2854,2935,297,30304,3047,3060,3063,3355,3395,3429,3432,344,345,3500,3521,3607,393,402,4087,412,4201,424,427,4355,460,466,4660,471,492,5070,5116,514,5279,5407],\"min\": 0,\"max\": 30304},{\"attribute\": \"POP1990\",\"count\": 144,\"type\": \"number\",\"values\": [0,1035,1038,1042,1047,10513,10544,1062,1088,10883,10890,1091,11035,1120,1134,1161,1162,1174,1175,1191,1197,1212,1224,12308,1293,1306,1316,1380,1392,1405,14776,1500,1522,1528,15312,1546,1559,1568,1607,16086,1628,1680,1691,1733,1760,1791,1863,1898,1908,2005,2026,2040,2096,2100,2102,2108,2155,2184,219,2325,2360,2526,2537,2561,2574,2594,2682,2711,2767,2907,2922,2955,2961,3016,3070,3117,3126,32530,330,3376,3422,343,3448,3450,3632,3807,3969,398,4036,4092,432,4414,4616,473,4740,4764,477,504,529,537],\"min\": 0,\"max\": 32530},{\"attribute\": \"POP1995\",\"count\": 144,\"type\": \"number\",\"values\": [0,10174,10256,1034,10423,1045,1048,11052,1107,11154,11339,1138,1142,1147,1149,1160,1168,1169,1190,11924,1194,1213,1217,1255,1267,1268,1287,1379,14111,1415,1417,1427,1584,15948,1616,1649,1652,1668,1670,1678,16811,1688,16943,1715,1747,1755,1766,1789,1804,1849,1893,1953,2018,2116,2127,2157,2183,2257,2265,2295,2394,2442,2535,2590,2600,2676,2781,2816,2838,2842,289,2951,2961,3035,3095,3122,3213,3242,3257,3353,33587,3403,3424,3425,3471,3478,3651,3839,4197,4431,4447,452,4598,464,4701,4744,4964,509,526,542],\"min\": 0,\"max\": 33587},{\"attribute\": \"POP2000\",\"count\": 141,\"type\": \"number\",\"values\": [0,10016,1005,1007,1019,1023,10285,1032,10534,1063,1072,1073,1077,1079,10803,1084,1096,1097,1100,1110,1111,11165,1127,1128,1160,1172,11814,11847,1192,1201,1206,1219,1233,13058,1306,13243,1357,1361,1365,1379,1390,1487,1499,1507,1561,16086,1653,1666,1674,1700,17099,1730,1733,17846,1787,18022,1806,1854,1877,1949,1959,1963,1998,2029,2044,2116,2135,2158,2187,2233,2493,2591,2606,2640,2672,2715,2732,2746,2752,2754,2864,3032,3043,3117,3179,3236,3266,3384,3385,3433,34450,3542,3553,3567,3752,3849,3919,3949,4017,4078],\"min\": 0,\"max\": 34450},{\"attribute\": \"POP2005\",\"count\": 143,\"type\": \"number\",\"values\": [0,1023,1037,10416,1042,1044,10717,10761,1085,1093,1094,1103,1106,1119,11258,1140,11469,11487,1164,1166,1189,1216,1217,12307,1248,12553,12576,1261,1272,1273,1315,1318,1334,1363,1368,1374,1405,1409,1415,14282,14503,1489,1515,1525,1527,1590,1593,1647,1693,1742,1762,1775,1777,1801,1805,18202,18333,1867,18732,18735,1885,1888,1936,1984,2025,2062,2093,2098,2158,2189,2241,2264,2330,2434,2606,2672,2679,2762,2787,2902,2930,2994,3012,3087,3138,3199,3230,3258,3265,3341,3348,3387,3391,35327,3533,3564,3572,3579,3641,3928],\"min\": 0,\"max\": 35327},{\"attribute\": \"POP2010\",\"count\": 143,\"type\": \"number\",\"values\": [0,10061,1024,1031,1041,10452,1059,1060,1085,1099,1100,1102,11100,11106,1115,11294,1145,1149,1162,11748,1185,11893,1245,12500,1264,12795,1281,1284,1328,1338,13485,1355,1379,1420,1433,1446,1448,1452,1466,14787,1494,14987,1513,1572,1576,1590,1611,1679,1697,1701,1705,1707,1743,1805,1846,1870,18845,1892,18978,19028,19040,1942,1998,2008,2063,2121,2146,2151,2154,2174,2184,2189,2313,2315,2466,2603,2604,2709,2812,2930,2985,3010,3100,3112,3181,3215,3242,3277,3300,3339,3354,3406,3435,3450,35676,3599,3712,3716,3728,3802],\"min\": 0,\"max\": 35676},{\"attribute\": \"POP2015\",\"count\": 144,\"type\": \"number\",\"values\": [0,1022,1024,1027,1029,1044,10495,10530,10572,1087,1096,1098,1102,1104,1106,1108,1127,11337,1139,1160,11662,11741,1182,1185,1212,12171,12503,12773,1285,13089,1321,1324,1374,1379,1409,1421,14796,1500,1504,1505,1516,1519,1520,15577,15789,1597,1621,1645,1651,1663,1664,1669,1692,1708,1724,1744,1787,1793,1804,1846,1877,1931,1941,19441,1947,19485,19582,1994,20072,2030,2159,2209,2219,2247,2298,2305,2322,2332,2340,2345,2385,2396,2651,2675,2748,2856,2890,3098,3256,3267,3319,3333,3346,3357,3363,3423,3453,3544,3574,36094],\"min\": 0,\"max\": 36094},{\"attribute\": \"POP2020\",\"count\": 143,\"type\": \"number\",\"values\": [0,10007,1004,1015,1029,10524,1064,10792,1092,1102,1108,1113,11177,11313,11365,1152,1159,1165,1169,1177,1185,1232,1233,12403,1258,12775,12786,1281,1284,12842,1308,13160,13432,13465,1398,1405,1457,1482,1506,1527,1587,1649,1655,1670,1676,17015,17039,1709,17214,1729,1735,1744,1794,1804,1839,1864,1879,1921,1938,1949,1979,1984,19974,2006,20189,2028,2035,2038,2051,20544,2058,2130,2151,21946,2229,2277,2310,2416,2451,2502,2525,2532,2558,2592,2620,2621,2688,2770,2862,2955,2981,2996,3275,3278,3306,3330,3434,3453,3475,3504],\"min\": 0,\"max\": 36371},{\"attribute\": \"POP2025\",\"count\": 144,\"type\": \"number\",\"values\": [0,10031,1011,1044,10526,1078,1095,1102,1104,1114,1132,11368,1148,1159,11689,11695,1195,1196,1200,1236,1257,1268,1274,1317,13179,1321,1326,13461,13653,13807,13875,13892,1413,14134,1441,14451,1481,1515,1544,1578,1580,1627,1653,1655,1736,1744,1753,1776,1797,1804,1820,18466,18707,1883,1894,1938,19422,1949,2027,2037,20370,20695,2083,2097,2111,21124,2119,2142,2150,2189,2235,2312,2380,2393,24051,2410,2457,2476,2506,2590,2633,2636,2642,2713,2722,2772,2790,2851,2971,3012,3041,3058,3104,3293,3300,3330,3436,3482,3537,3600],\"min\": 0,\"max\": 36399},{\"attribute\": \"POP2050\",\"count\": 143,\"type\": \"number\",\"values\": [0,10036,10526,1089,1096,1102,1112,1114,11368,1159,1163,1193,12102,1220,1236,12363,1315,1320,1332,13413,1343,1359,13672,13768,1406,1411,14545,1461,1472,1475,14808,1520,15561,15796,1604,1655,16762,1690,1715,1736,1737,1744,1759,1804,1883,1902,1907,1938,19412,1949,2028,2047,20560,20628,2077,2083,21009,21428,2150,2172,2173,2178,2187,22015,2222,2247,2316,2444,2496,2529,2549,2560,2632,26385,2661,2715,2772,2791,2855,2856,2885,2892,2911,2956,3038,3086,3118,3198,3214,3305,3326,3330,3346,3358,3382,3436,3605,3619,3630,36400],\"min\": 0,\"max\": 36400},{\"attribute\": \"POP_MAX\",\"count\": 240,\"type\": \"number\",\"values\": [10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,1245000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\": 500,\"max\": 35676000},{\"attribute\": \"POP_MIN\",\"count\": 243,\"type\": \"number\",\"values\": [10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,199200,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226],\"min\": 200,\"max\": 14608512},{\"attribute\": \"POP_OTHER\",\"count\": 218,\"type\": \"number\",\"values\": [0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,140594,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,243794,2456292,2470140],\"min\": 0,\"max\": 16803572},{\"attribute\": \"RANK_MAX\",\"count\": 12,\"type\": \"number\",\"values\": [10,11,12,13,14,2,4,5,6,7,8,9],\"min\": 2,\"max\": 14},{\"attribute\": \"RANK_MIN\",\"count\": 14,\"type\": \"number\",\"values\": [1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 14},{\"attribute\": \"SCALERANK\",\"count\": 8,\"type\": \"number\",\"values\": [0,1,2,3,4,6,7,8],\"min\": 0,\"max\": 8},{\"attribute\": \"SOV0NAME\",\"count\": 197,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\": \"SOV_A3\",\"count\": 197,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\": \"TIMEZONE\",\"count\": 187,\"type\": \"string\",\"values\": [\"Africa/Abidjan\",\"Africa/Accra\",\"Africa/Addis_Ababa\",\"Africa/Algiers\",\"Africa/Asmara\",\"Africa/Bamako\",\"Africa/Bangui\",\"Africa/Banjul\",\"Africa/Bissau\",\"Africa/Blantyre\",\"Africa/Brazzaville\",\"Africa/Bujumbura\",\"Africa/Cairo\",\"Africa/Casablanca\",\"Africa/Conakry\",\"Africa/Dakar\",\"Africa/Dar_es_Salaam\",\"Africa/Djibouti\",\"Africa/Douala\",\"Africa/El_Aaiun\",\"Africa/Freetown\",\"Africa/Gaborone\",\"Africa/Harare\",\"Africa/Johannesburg\",\"Africa/Kampala\",\"Africa/Khartoum\",\"Africa/Kigali\",\"Africa/Kinshasa\",\"Africa/Lagos\",\"Africa/Libreville\",\"Africa/Lome\",\"Africa/Luanda\",\"Africa/Lusaka\",\"Africa/Malabo\",\"Africa/Maputo\",\"Africa/Maseru\",\"Africa/Mbabane\",\"Africa/Mogadishu\",\"Africa/Monrovia\",\"Africa/Nairobi\",\"Africa/Ndjamena\",\"Africa/Niamey\",\"Africa/Nouakchott\",\"Africa/Ouagadougou\",\"Africa/Porto-Novo\",\"Africa/Tunis\",\"Africa/Windhoek\",\"America/Antigua\",\"America/Argentina/Buenos_Aires\",\"America/Belize\",\"America/Bogota\",\"America/Caracas\",\"America/Chicago\",\"America/Dominica\",\"America/Fortaleza\",\"America/Grenada\",\"America/Guatemala\",\"America/Guayaquil\",\"America/Guyana\",\"America/Havana\",\"America/Jamaica\",\"America/La_Paz\",\"America/Lima\",\"America/Los_Angeles\",\"America/Managua\",\"America/Mexico_City\",\"America/Monterrey\",\"America/Montreal\",\"America/Nassau\",\"America/New_York\",\"America/Panama\",\"America/Paramaribo\",\"America/Port-au-Prince\",\"America/Port_of_Spain\",\"America/Sao_Paulo\",\"America/St_Kitts\",\"America/Tegucigalpa\",\"America/Toronto\",\"America/Vancouver\",\"Asia/Amman\",\"Asia/Ashgabat\",\"Asia/Baghdad\",\"Asia/Bahrain\",\"Asia/Baku\",\"Asia/Bangkok\",\"Asia/Beirut\",\"Asia/Bishkek\",\"Asia/Brunei\",\"Asia/Chongqing\",\"Asia/Colombo\",\"Asia/Dhaka\",\"Asia/Dili\",\"Asia/Dubai\",\"Asia/Dushanbe\",\"Asia/Harbin\",\"Asia/Ho_Chi_Minh\",\"Asia/Hong_Kong\",\"Asia/Jakarta\",\"Asia/Jerusalem\",\"Asia/Kabul\"]},{\"attribute\": \"UN_ADM0\",\"count\": 116,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Algeria\",\"Angola\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Benin\",\"Bolivia\",\"Brazil\",\"Bulgaria\",\"Burkina Faso\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Chad\",\"Chile\",\"China\",\"China, Hong Kong Special Administrative Region\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Cuba\",\"Czech Republic\",\"Côte d'Ivoire\",\"Democratic People's Republic of Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Ethiopia\",\"Finland\",\"France\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Haiti\",\"Honduras\",\"Hungary\",\"India\",\"Indonesia\",\"Iran (Islamic Republic of)\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Japan\",\"Jordan\",\"Kenya\",\"Kuwait\",\"Kyrgyzstan\",\"Lebanon\",\"Liberia\",\"Libyan Arab Jamahiriya\",\"Madagascar\",\"Malaysia\",\"Mali\",\"Mexico\",\"Mongolia\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Nepal\",\"Netherlands\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"Norway\",\"Pakistan\",\"Panama\",\"Paraguay\",\"Peru\",\"Philippines\",\"Poland\",\"Portugal\",\"Republic of Korea\",\"Romania\",\"Russian Federation\",\"Rwanda\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Sierra Leone\",\"Singapore\",\"Somalia\",\"South Africa\",\"Spain\",\"Sudan\",\"Sweden\",\"Syrian Arab Republic\"]},{\"attribute\": \"UN_FID\",\"count\": 145,\"type\": \"number\",\"values\": [0,111,118,13,14,15,16,161,166,168,17,171,172,173,174,175,176,178,179,18,180,182,183,189,191,192,196,198,2,200,201,206,207,208,209,210,211,219,24,245,253,274,276,280,297,3,300,302,304,308,31,310,313,315,318,320,321,322,324,327,336,339,340,341,342,344,345,348,349,352,359,367,369,372,375,376,377,378,379,381,382,384,385,386,392,397,4,401,408,409,411,414,418,419,422,426,439,440,444,447],\"min\": 0,\"max\": 589},{\"attribute\": \"UN_LAT\",\"count\": 145,\"type\": \"number\",\"values\": [-0.22,-1.26,-1.95,-12.08,-15.42,-15.79,-17.82,-18.9,-22.72,-23.58,-25.3,-25.73,-25.96,-26.17,-33.02,-33.88,-33.97,-34.62,-34.92,-36.9,-37.85,-4.28,-4.32,-6.16,-6.81,-8.81,0,0.32,1.26,10.49,11.56,12.1,12.15,12.48,12.65,12.97,13.51,13.7,13.75,14.09,14.61,14.68,15.36,15.55,16.87,18.48,18.52,19.07,19.42,19.75,2.04,21.03,22.27,22.54,23.04,23.7,24.15,24.65,25.03,25.27,25.67,25.83,27.71,29.38,29.77,3.14,3.86,30.07,30.67,31.24,31.94,32.04,33.33,33.49,33.6,33.71,33.79,33.88,34,34.01,34.34,34.53,34.63,35,35.68,35.77,36.78,37.54,37.79,37.94,38.72,38.89,39.02,39.57,39.9,39.92,4.63,40.2,40.32,40.44],\"min\": -37.85,\"max\": 60.19},{\"attribute\": \"UN_LONG\",\"count\": 144,\"type\": \"number\",\"values\": [-0.17,-0.2,-1.67,-10.79,-100.31,-105.07,-110.3,-118.25,-122.38,-122.96,-13.23,-13.67,-17.45,-3.69,-4.02,-43.45,-46.62,-47.89,-56.16,-57.62,-58.44,-6.25,-6.83,-66.89,-69.89,-7.63,-7.98,-71.55,-72.34,-73.9,-74.08,-75.65,-76.95,-77.04,-78.52,-79.41,-79.51,-80.27,-80.96,-82.41,-84.07,-84.34,-86.27,-87.2,-87.64,-89.2,-9.12,-90.52,-95.4,-99.12,0,1.2,10.71,100.51,101.7,103.83,104.07,104.91,105.82,106.8,106.91,11.51,114.17,116.38,12.51,12.54,120.96,121.47,121.5,125.75,126.93,13.23,13.32,135.51,135.75,139.8,14.45,145.07,15.24,15.28,15.29,151.02,16.32,17.99,174.76,18.48,19.09,2.12,2.43,20.41,21.01,23.33,23.65,24.97,26.12,27.57,28,28.17,28.21,29],\"min\": -122.96,\"max\": 174.76},{\"attribute\": \"WORLDCITY\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1}]}]}}", "maxzoom": "8", "minzoom": "0", diff --git a/tests/geometry/out/-z3.json b/tests/geometry/out/-z3.json index 0efdff045..22db076d8 100644 --- a/tests/geometry/out/-z3.json +++ b/tests/geometry/out/-z3.json @@ -3,6 +3,7 @@ "center": "22.500000,20.489949,3", "description": "tests/geometry/out/-z3.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/geometry/out/-z3.json.check.mbtiles -z3 tests/geometry/bare.json tests/geometry/geometrycollection.json tests/geometry/multipoint.json tests/geometry/onebare.json", "json": "{\"vector_layers\": [ { \"id\": \"bare\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {} }, { \"id\": \"geometrycollection\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {\"collection\": \"Boolean\"} }, { \"id\": \"multipoint\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {\"point\": \"String\"} }, { \"id\": \"onebare\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 4,\"layers\": [{\"layer\": \"bare\",\"count\": 4,\"geometry\": \"LineString\",\"attributeCount\": 0,\"attributes\": []},{\"layer\": \"geometrycollection\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"collection\",\"count\": 1,\"type\": \"boolean\",\"values\": [true]}]},{\"layer\": \"multipoint\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"point\",\"count\": 1,\"type\": \"string\",\"values\": [\"multi\"]}]},{\"layer\": \"onebare\",\"count\": 1,\"geometry\": \"LineString\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "3", "minzoom": "0", diff --git a/tests/grid-aligned/in.json b/tests/grid-aligned/in.json new file mode 100644 index 000000000..6bf13cd24 --- /dev/null +++ b/tests/grid-aligned/in.json @@ -0,0 +1,1024 @@ +{"type": "Feature","properties": {"x":16,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0219726557114224],[0.023345947265625,-0.0219726557114224],[0.023345947265625,-0.0233459466196176],[0.02197265625,-0.0233459466196176],[0.02197265625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":16,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0233459466196176],[0.023345947265625,-0.0233459466196176],[0.023345947265625,-0.0247192375144014],[0.02197265625,-0.0247192375144014],[0.02197265625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":16,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0247192375144014],[0.023345947265625,-0.0247192375144014],[0.023345947265625,-0.026092528394991],[0.02197265625,-0.026092528394991],[0.02197265625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":16,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.026092528394991],[0.023345947265625,-0.026092528394991],[0.023345947265625,-0.0274658192605846],[0.02197265625,-0.0274658192605846],[0.02197265625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":16,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0274658192605846],[0.023345947265625,-0.0274658192605846],[0.023345947265625,-0.0288391101104026],[0.02197265625,-0.0288391101104026],[0.02197265625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":16,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0288391101104026],[0.023345947265625,-0.0288391101104026],[0.023345947265625,-0.0302124009436464],[0.02197265625,-0.0302124009436464],[0.02197265625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":16,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0302124009436464],[0.023345947265625,-0.0302124009436464],[0.023345947265625,-0.0315856917595396],[0.02197265625,-0.0315856917595396],[0.02197265625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":16,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0315856917595396],[0.023345947265625,-0.0315856917595396],[0.023345947265625,-0.0329589825572836],[0.02197265625,-0.0329589825572836],[0.02197265625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":16,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0329589825572836],[0.023345947265625,-0.0329589825572836],[0.023345947265625,-0.0343322733360987],[0.02197265625,-0.0343322733360987],[0.02197265625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":16,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0343322733360987],[0.023345947265625,-0.0343322733360987],[0.023345947265625,-0.0357055640951897],[0.02197265625,-0.0357055640951897],[0.02197265625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":16,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0357055640951897],[0.023345947265625,-0.0357055640951897],[0.023345947265625,-0.0370788548337641],[0.02197265625,-0.0370788548337641],[0.02197265625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":16,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0370788548337641],[0.023345947265625,-0.0370788548337641],[0.023345947265625,-0.0384521455510425],[0.02197265625,-0.0384521455510425],[0.02197265625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":16,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0384521455510425],[0.023345947265625,-0.0384521455510425],[0.023345947265625,-0.039825436246223],[0.02197265625,-0.039825436246223],[0.02197265625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":16,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.039825436246223],[0.023345947265625,-0.039825436246223],[0.023345947265625,-0.0411987269185324],[0.02197265625,-0.0411987269185324],[0.02197265625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":16,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0411987269185324],[0.023345947265625,-0.0411987269185324],[0.023345947265625,-0.042572017567172],[0.02197265625,-0.042572017567172],[0.02197265625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":16,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.042572017567172],[0.023345947265625,-0.042572017567172],[0.023345947265625,-0.0439453081913529],[0.02197265625,-0.0439453081913529],[0.02197265625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":16,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0439453081913529],[0.023345947265625,-0.0439453081913529],[0.023345947265625,-0.045318598790289],[0.02197265625,-0.045318598790289],[0.02197265625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":16,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.045318598790289],[0.023345947265625,-0.045318598790289],[0.023345947265625,-0.0466918893631913],[0.02197265625,-0.0466918893631913],[0.02197265625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":16,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0466918893631913],[0.023345947265625,-0.0466918893631913],[0.023345947265625,-0.0480651799092611],[0.02197265625,-0.0480651799092611],[0.02197265625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":16,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0480651799092611],[0.023345947265625,-0.0480651799092611],[0.023345947265625,-0.0494384704277221],[0.02197265625,-0.0494384704277221],[0.02197265625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":16,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0494384704277221],[0.023345947265625,-0.0494384704277221],[0.023345947265625,-0.0508117609177883],[0.02197265625,-0.0508117609177883],[0.02197265625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":16,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0508117609177883],[0.023345947265625,-0.0508117609177883],[0.023345947265625,-0.0521850513786548],[0.02197265625,-0.0521850513786548],[0.02197265625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":16,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0521850513786548],[0.023345947265625,-0.0521850513786548],[0.023345947265625,-0.0535583418095483],[0.02197265625,-0.0535583418095483],[0.02197265625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":16,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0535583418095483],[0.023345947265625,-0.0535583418095483],[0.023345947265625,-0.0549316322096735],[0.02197265625,-0.0549316322096735],[0.02197265625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":16,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0549316322096735],[0.023345947265625,-0.0549316322096735],[0.023345947265625,-0.0563049225782379],[0.02197265625,-0.0563049225782379],[0.02197265625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":16,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0563049225782379],[0.023345947265625,-0.0563049225782379],[0.023345947265625,-0.0576782129144526],[0.02197265625,-0.0576782129144526],[0.02197265625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":16,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0576782129144526],[0.023345947265625,-0.0576782129144526],[0.023345947265625,-0.0590515032175379],[0.02197265625,-0.0590515032175379],[0.02197265625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":16,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0590515032175379],[0.023345947265625,-0.0590515032175379],[0.023345947265625,-0.0604247934867017],[0.02197265625,-0.0604247934867017],[0.02197265625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":16,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0604247934867017],[0.023345947265625,-0.0604247934867017],[0.023345947265625,-0.0617980837211484],[0.02197265625,-0.0617980837211484],[0.02197265625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":16,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0617980837211484],[0.023345947265625,-0.0617980837211484],[0.023345947265625,-0.0631713739200889],[0.02197265625,-0.0631713739200889],[0.02197265625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":16,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0631713739200889],[0.023345947265625,-0.0631713739200889],[0.023345947265625,-0.0645446640827373],[0.02197265625,-0.0645446640827373],[0.02197265625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":16,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0645446640827373],[0.023345947265625,-0.0645446640827373],[0.023345947265625,-0.065917954208311],[0.02197265625,-0.065917954208311],[0.02197265625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":17,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0219726557114224],[0.02471923828125,-0.0219726557114224],[0.02471923828125,-0.0233459466196176],[0.023345947265625,-0.0233459466196176],[0.023345947265625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":17,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0233459466196176],[0.02471923828125,-0.0233459466196176],[0.02471923828125,-0.0247192375144014],[0.023345947265625,-0.0247192375144014],[0.023345947265625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":17,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0247192375144014],[0.02471923828125,-0.0247192375144014],[0.02471923828125,-0.026092528394991],[0.023345947265625,-0.026092528394991],[0.023345947265625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":17,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.026092528394991],[0.02471923828125,-0.026092528394991],[0.02471923828125,-0.0274658192605846],[0.023345947265625,-0.0274658192605846],[0.023345947265625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":17,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0274658192605846],[0.02471923828125,-0.0274658192605846],[0.02471923828125,-0.0288391101104026],[0.023345947265625,-0.0288391101104026],[0.023345947265625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":17,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0288391101104026],[0.02471923828125,-0.0288391101104026],[0.02471923828125,-0.0302124009436464],[0.023345947265625,-0.0302124009436464],[0.023345947265625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":17,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0302124009436464],[0.02471923828125,-0.0302124009436464],[0.02471923828125,-0.0315856917595396],[0.023345947265625,-0.0315856917595396],[0.023345947265625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":17,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0315856917595396],[0.02471923828125,-0.0315856917595396],[0.02471923828125,-0.0329589825572836],[0.023345947265625,-0.0329589825572836],[0.023345947265625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":17,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0329589825572836],[0.02471923828125,-0.0329589825572836],[0.02471923828125,-0.0343322733360987],[0.023345947265625,-0.0343322733360987],[0.023345947265625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":17,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0343322733360987],[0.02471923828125,-0.0343322733360987],[0.02471923828125,-0.0357055640951897],[0.023345947265625,-0.0357055640951897],[0.023345947265625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":17,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0357055640951897],[0.02471923828125,-0.0357055640951897],[0.02471923828125,-0.0370788548337641],[0.023345947265625,-0.0370788548337641],[0.023345947265625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":17,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0370788548337641],[0.02471923828125,-0.0370788548337641],[0.02471923828125,-0.0384521455510425],[0.023345947265625,-0.0384521455510425],[0.023345947265625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":17,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0384521455510425],[0.02471923828125,-0.0384521455510425],[0.02471923828125,-0.039825436246223],[0.023345947265625,-0.039825436246223],[0.023345947265625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":17,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.039825436246223],[0.02471923828125,-0.039825436246223],[0.02471923828125,-0.0411987269185324],[0.023345947265625,-0.0411987269185324],[0.023345947265625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":17,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0411987269185324],[0.02471923828125,-0.0411987269185324],[0.02471923828125,-0.042572017567172],[0.023345947265625,-0.042572017567172],[0.023345947265625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":17,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.042572017567172],[0.02471923828125,-0.042572017567172],[0.02471923828125,-0.0439453081913529],[0.023345947265625,-0.0439453081913529],[0.023345947265625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":17,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0439453081913529],[0.02471923828125,-0.0439453081913529],[0.02471923828125,-0.045318598790289],[0.023345947265625,-0.045318598790289],[0.023345947265625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":17,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.045318598790289],[0.02471923828125,-0.045318598790289],[0.02471923828125,-0.0466918893631913],[0.023345947265625,-0.0466918893631913],[0.023345947265625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":17,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0466918893631913],[0.02471923828125,-0.0466918893631913],[0.02471923828125,-0.0480651799092611],[0.023345947265625,-0.0480651799092611],[0.023345947265625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":17,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0480651799092611],[0.02471923828125,-0.0480651799092611],[0.02471923828125,-0.0494384704277221],[0.023345947265625,-0.0494384704277221],[0.023345947265625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":17,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0494384704277221],[0.02471923828125,-0.0494384704277221],[0.02471923828125,-0.0508117609177883],[0.023345947265625,-0.0508117609177883],[0.023345947265625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":17,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0508117609177883],[0.02471923828125,-0.0508117609177883],[0.02471923828125,-0.0521850513786548],[0.023345947265625,-0.0521850513786548],[0.023345947265625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":17,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0521850513786548],[0.02471923828125,-0.0521850513786548],[0.02471923828125,-0.0535583418095483],[0.023345947265625,-0.0535583418095483],[0.023345947265625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":17,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0535583418095483],[0.02471923828125,-0.0535583418095483],[0.02471923828125,-0.0549316322096735],[0.023345947265625,-0.0549316322096735],[0.023345947265625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":17,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0549316322096735],[0.02471923828125,-0.0549316322096735],[0.02471923828125,-0.0563049225782379],[0.023345947265625,-0.0563049225782379],[0.023345947265625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":17,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0563049225782379],[0.02471923828125,-0.0563049225782379],[0.02471923828125,-0.0576782129144526],[0.023345947265625,-0.0576782129144526],[0.023345947265625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":17,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0576782129144526],[0.02471923828125,-0.0576782129144526],[0.02471923828125,-0.0590515032175379],[0.023345947265625,-0.0590515032175379],[0.023345947265625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":17,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0590515032175379],[0.02471923828125,-0.0590515032175379],[0.02471923828125,-0.0604247934867017],[0.023345947265625,-0.0604247934867017],[0.023345947265625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":17,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0604247934867017],[0.02471923828125,-0.0604247934867017],[0.02471923828125,-0.0617980837211484],[0.023345947265625,-0.0617980837211484],[0.023345947265625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":17,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0617980837211484],[0.02471923828125,-0.0617980837211484],[0.02471923828125,-0.0631713739200889],[0.023345947265625,-0.0631713739200889],[0.023345947265625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":17,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0631713739200889],[0.02471923828125,-0.0631713739200889],[0.02471923828125,-0.0645446640827373],[0.023345947265625,-0.0645446640827373],[0.023345947265625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":17,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0645446640827373],[0.02471923828125,-0.0645446640827373],[0.02471923828125,-0.065917954208311],[0.023345947265625,-0.065917954208311],[0.023345947265625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":18,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0219726557114224],[0.026092529296875,-0.0219726557114224],[0.026092529296875,-0.0233459466196176],[0.02471923828125,-0.0233459466196176],[0.02471923828125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":18,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0233459466196176],[0.026092529296875,-0.0233459466196176],[0.026092529296875,-0.0247192375144014],[0.02471923828125,-0.0247192375144014],[0.02471923828125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":18,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0247192375144014],[0.026092529296875,-0.0247192375144014],[0.026092529296875,-0.026092528394991],[0.02471923828125,-0.026092528394991],[0.02471923828125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":18,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.026092528394991],[0.026092529296875,-0.026092528394991],[0.026092529296875,-0.0274658192605846],[0.02471923828125,-0.0274658192605846],[0.02471923828125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":18,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0274658192605846],[0.026092529296875,-0.0274658192605846],[0.026092529296875,-0.0288391101104026],[0.02471923828125,-0.0288391101104026],[0.02471923828125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":18,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0288391101104026],[0.026092529296875,-0.0288391101104026],[0.026092529296875,-0.0302124009436464],[0.02471923828125,-0.0302124009436464],[0.02471923828125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":18,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0302124009436464],[0.026092529296875,-0.0302124009436464],[0.026092529296875,-0.0315856917595396],[0.02471923828125,-0.0315856917595396],[0.02471923828125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":18,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0315856917595396],[0.026092529296875,-0.0315856917595396],[0.026092529296875,-0.0329589825572836],[0.02471923828125,-0.0329589825572836],[0.02471923828125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":18,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0329589825572836],[0.026092529296875,-0.0329589825572836],[0.026092529296875,-0.0343322733360987],[0.02471923828125,-0.0343322733360987],[0.02471923828125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":18,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0343322733360987],[0.026092529296875,-0.0343322733360987],[0.026092529296875,-0.0357055640951897],[0.02471923828125,-0.0357055640951897],[0.02471923828125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":18,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0357055640951897],[0.026092529296875,-0.0357055640951897],[0.026092529296875,-0.0370788548337641],[0.02471923828125,-0.0370788548337641],[0.02471923828125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":18,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0370788548337641],[0.026092529296875,-0.0370788548337641],[0.026092529296875,-0.0384521455510425],[0.02471923828125,-0.0384521455510425],[0.02471923828125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":18,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0384521455510425],[0.026092529296875,-0.0384521455510425],[0.026092529296875,-0.039825436246223],[0.02471923828125,-0.039825436246223],[0.02471923828125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":18,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.039825436246223],[0.026092529296875,-0.039825436246223],[0.026092529296875,-0.0411987269185324],[0.02471923828125,-0.0411987269185324],[0.02471923828125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":18,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0411987269185324],[0.026092529296875,-0.0411987269185324],[0.026092529296875,-0.042572017567172],[0.02471923828125,-0.042572017567172],[0.02471923828125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":18,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.042572017567172],[0.026092529296875,-0.042572017567172],[0.026092529296875,-0.0439453081913529],[0.02471923828125,-0.0439453081913529],[0.02471923828125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":18,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0439453081913529],[0.026092529296875,-0.0439453081913529],[0.026092529296875,-0.045318598790289],[0.02471923828125,-0.045318598790289],[0.02471923828125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":18,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.045318598790289],[0.026092529296875,-0.045318598790289],[0.026092529296875,-0.0466918893631913],[0.02471923828125,-0.0466918893631913],[0.02471923828125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":18,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0466918893631913],[0.026092529296875,-0.0466918893631913],[0.026092529296875,-0.0480651799092611],[0.02471923828125,-0.0480651799092611],[0.02471923828125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":18,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0480651799092611],[0.026092529296875,-0.0480651799092611],[0.026092529296875,-0.0494384704277221],[0.02471923828125,-0.0494384704277221],[0.02471923828125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":18,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0494384704277221],[0.026092529296875,-0.0494384704277221],[0.026092529296875,-0.0508117609177883],[0.02471923828125,-0.0508117609177883],[0.02471923828125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":18,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0508117609177883],[0.026092529296875,-0.0508117609177883],[0.026092529296875,-0.0521850513786548],[0.02471923828125,-0.0521850513786548],[0.02471923828125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":18,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0521850513786548],[0.026092529296875,-0.0521850513786548],[0.026092529296875,-0.0535583418095483],[0.02471923828125,-0.0535583418095483],[0.02471923828125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":18,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0535583418095483],[0.026092529296875,-0.0535583418095483],[0.026092529296875,-0.0549316322096735],[0.02471923828125,-0.0549316322096735],[0.02471923828125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":18,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0549316322096735],[0.026092529296875,-0.0549316322096735],[0.026092529296875,-0.0563049225782379],[0.02471923828125,-0.0563049225782379],[0.02471923828125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":18,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0563049225782379],[0.026092529296875,-0.0563049225782379],[0.026092529296875,-0.0576782129144526],[0.02471923828125,-0.0576782129144526],[0.02471923828125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":18,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0576782129144526],[0.026092529296875,-0.0576782129144526],[0.026092529296875,-0.0590515032175379],[0.02471923828125,-0.0590515032175379],[0.02471923828125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":18,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0590515032175379],[0.026092529296875,-0.0590515032175379],[0.026092529296875,-0.0604247934867017],[0.02471923828125,-0.0604247934867017],[0.02471923828125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":18,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0604247934867017],[0.026092529296875,-0.0604247934867017],[0.026092529296875,-0.0617980837211484],[0.02471923828125,-0.0617980837211484],[0.02471923828125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":18,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0617980837211484],[0.026092529296875,-0.0617980837211484],[0.026092529296875,-0.0631713739200889],[0.02471923828125,-0.0631713739200889],[0.02471923828125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":18,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0631713739200889],[0.026092529296875,-0.0631713739200889],[0.026092529296875,-0.0645446640827373],[0.02471923828125,-0.0645446640827373],[0.02471923828125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":18,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0645446640827373],[0.026092529296875,-0.0645446640827373],[0.026092529296875,-0.065917954208311],[0.02471923828125,-0.065917954208311],[0.02471923828125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":19,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0219726557114224],[0.0274658203125,-0.0219726557114224],[0.0274658203125,-0.0233459466196176],[0.026092529296875,-0.0233459466196176],[0.026092529296875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":19,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0233459466196176],[0.0274658203125,-0.0233459466196176],[0.0274658203125,-0.0247192375144014],[0.026092529296875,-0.0247192375144014],[0.026092529296875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":19,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0247192375144014],[0.0274658203125,-0.0247192375144014],[0.0274658203125,-0.026092528394991],[0.026092529296875,-0.026092528394991],[0.026092529296875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":19,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.026092528394991],[0.0274658203125,-0.026092528394991],[0.0274658203125,-0.0274658192605846],[0.026092529296875,-0.0274658192605846],[0.026092529296875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":19,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0274658192605846],[0.0274658203125,-0.0274658192605846],[0.0274658203125,-0.0288391101104026],[0.026092529296875,-0.0288391101104026],[0.026092529296875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":19,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0288391101104026],[0.0274658203125,-0.0288391101104026],[0.0274658203125,-0.0302124009436464],[0.026092529296875,-0.0302124009436464],[0.026092529296875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":19,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0302124009436464],[0.0274658203125,-0.0302124009436464],[0.0274658203125,-0.0315856917595396],[0.026092529296875,-0.0315856917595396],[0.026092529296875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":19,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0315856917595396],[0.0274658203125,-0.0315856917595396],[0.0274658203125,-0.0329589825572836],[0.026092529296875,-0.0329589825572836],[0.026092529296875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":19,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0329589825572836],[0.0274658203125,-0.0329589825572836],[0.0274658203125,-0.0343322733360987],[0.026092529296875,-0.0343322733360987],[0.026092529296875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":19,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0343322733360987],[0.0274658203125,-0.0343322733360987],[0.0274658203125,-0.0357055640951897],[0.026092529296875,-0.0357055640951897],[0.026092529296875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":19,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0357055640951897],[0.0274658203125,-0.0357055640951897],[0.0274658203125,-0.0370788548337641],[0.026092529296875,-0.0370788548337641],[0.026092529296875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":19,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0370788548337641],[0.0274658203125,-0.0370788548337641],[0.0274658203125,-0.0384521455510425],[0.026092529296875,-0.0384521455510425],[0.026092529296875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":19,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0384521455510425],[0.0274658203125,-0.0384521455510425],[0.0274658203125,-0.039825436246223],[0.026092529296875,-0.039825436246223],[0.026092529296875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":19,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.039825436246223],[0.0274658203125,-0.039825436246223],[0.0274658203125,-0.0411987269185324],[0.026092529296875,-0.0411987269185324],[0.026092529296875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":19,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0411987269185324],[0.0274658203125,-0.0411987269185324],[0.0274658203125,-0.042572017567172],[0.026092529296875,-0.042572017567172],[0.026092529296875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":19,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.042572017567172],[0.0274658203125,-0.042572017567172],[0.0274658203125,-0.0439453081913529],[0.026092529296875,-0.0439453081913529],[0.026092529296875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":19,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0439453081913529],[0.0274658203125,-0.0439453081913529],[0.0274658203125,-0.045318598790289],[0.026092529296875,-0.045318598790289],[0.026092529296875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":19,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.045318598790289],[0.0274658203125,-0.045318598790289],[0.0274658203125,-0.0466918893631913],[0.026092529296875,-0.0466918893631913],[0.026092529296875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":19,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0466918893631913],[0.0274658203125,-0.0466918893631913],[0.0274658203125,-0.0480651799092611],[0.026092529296875,-0.0480651799092611],[0.026092529296875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":19,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0480651799092611],[0.0274658203125,-0.0480651799092611],[0.0274658203125,-0.0494384704277221],[0.026092529296875,-0.0494384704277221],[0.026092529296875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":19,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0494384704277221],[0.0274658203125,-0.0494384704277221],[0.0274658203125,-0.0508117609177883],[0.026092529296875,-0.0508117609177883],[0.026092529296875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":19,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0508117609177883],[0.0274658203125,-0.0508117609177883],[0.0274658203125,-0.0521850513786548],[0.026092529296875,-0.0521850513786548],[0.026092529296875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":19,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0521850513786548],[0.0274658203125,-0.0521850513786548],[0.0274658203125,-0.0535583418095483],[0.026092529296875,-0.0535583418095483],[0.026092529296875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":19,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0535583418095483],[0.0274658203125,-0.0535583418095483],[0.0274658203125,-0.0549316322096735],[0.026092529296875,-0.0549316322096735],[0.026092529296875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":19,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0549316322096735],[0.0274658203125,-0.0549316322096735],[0.0274658203125,-0.0563049225782379],[0.026092529296875,-0.0563049225782379],[0.026092529296875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":19,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0563049225782379],[0.0274658203125,-0.0563049225782379],[0.0274658203125,-0.0576782129144526],[0.026092529296875,-0.0576782129144526],[0.026092529296875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":19,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0576782129144526],[0.0274658203125,-0.0576782129144526],[0.0274658203125,-0.0590515032175379],[0.026092529296875,-0.0590515032175379],[0.026092529296875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":19,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0590515032175379],[0.0274658203125,-0.0590515032175379],[0.0274658203125,-0.0604247934867017],[0.026092529296875,-0.0604247934867017],[0.026092529296875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":19,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0604247934867017],[0.0274658203125,-0.0604247934867017],[0.0274658203125,-0.0617980837211484],[0.026092529296875,-0.0617980837211484],[0.026092529296875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":19,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0617980837211484],[0.0274658203125,-0.0617980837211484],[0.0274658203125,-0.0631713739200889],[0.026092529296875,-0.0631713739200889],[0.026092529296875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":19,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0631713739200889],[0.0274658203125,-0.0631713739200889],[0.0274658203125,-0.0645446640827373],[0.026092529296875,-0.0645446640827373],[0.026092529296875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":19,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0645446640827373],[0.0274658203125,-0.0645446640827373],[0.0274658203125,-0.065917954208311],[0.026092529296875,-0.065917954208311],[0.026092529296875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":20,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0219726557114224],[0.028839111328125,-0.0219726557114224],[0.028839111328125,-0.0233459466196176],[0.0274658203125,-0.0233459466196176],[0.0274658203125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":20,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0233459466196176],[0.028839111328125,-0.0233459466196176],[0.028839111328125,-0.0247192375144014],[0.0274658203125,-0.0247192375144014],[0.0274658203125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":20,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0247192375144014],[0.028839111328125,-0.0247192375144014],[0.028839111328125,-0.026092528394991],[0.0274658203125,-0.026092528394991],[0.0274658203125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":20,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.026092528394991],[0.028839111328125,-0.026092528394991],[0.028839111328125,-0.0274658192605846],[0.0274658203125,-0.0274658192605846],[0.0274658203125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":20,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0274658192605846],[0.028839111328125,-0.0274658192605846],[0.028839111328125,-0.0288391101104026],[0.0274658203125,-0.0288391101104026],[0.0274658203125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":20,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0288391101104026],[0.028839111328125,-0.0288391101104026],[0.028839111328125,-0.0302124009436464],[0.0274658203125,-0.0302124009436464],[0.0274658203125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":20,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0302124009436464],[0.028839111328125,-0.0302124009436464],[0.028839111328125,-0.0315856917595396],[0.0274658203125,-0.0315856917595396],[0.0274658203125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":20,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0315856917595396],[0.028839111328125,-0.0315856917595396],[0.028839111328125,-0.0329589825572836],[0.0274658203125,-0.0329589825572836],[0.0274658203125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":20,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0329589825572836],[0.028839111328125,-0.0329589825572836],[0.028839111328125,-0.0343322733360987],[0.0274658203125,-0.0343322733360987],[0.0274658203125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":20,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0343322733360987],[0.028839111328125,-0.0343322733360987],[0.028839111328125,-0.0357055640951897],[0.0274658203125,-0.0357055640951897],[0.0274658203125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":20,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0357055640951897],[0.028839111328125,-0.0357055640951897],[0.028839111328125,-0.0370788548337641],[0.0274658203125,-0.0370788548337641],[0.0274658203125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":20,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0370788548337641],[0.028839111328125,-0.0370788548337641],[0.028839111328125,-0.0384521455510425],[0.0274658203125,-0.0384521455510425],[0.0274658203125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":20,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0384521455510425],[0.028839111328125,-0.0384521455510425],[0.028839111328125,-0.039825436246223],[0.0274658203125,-0.039825436246223],[0.0274658203125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":20,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.039825436246223],[0.028839111328125,-0.039825436246223],[0.028839111328125,-0.0411987269185324],[0.0274658203125,-0.0411987269185324],[0.0274658203125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":20,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0411987269185324],[0.028839111328125,-0.0411987269185324],[0.028839111328125,-0.042572017567172],[0.0274658203125,-0.042572017567172],[0.0274658203125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":20,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.042572017567172],[0.028839111328125,-0.042572017567172],[0.028839111328125,-0.0439453081913529],[0.0274658203125,-0.0439453081913529],[0.0274658203125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":20,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0439453081913529],[0.028839111328125,-0.0439453081913529],[0.028839111328125,-0.045318598790289],[0.0274658203125,-0.045318598790289],[0.0274658203125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":20,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.045318598790289],[0.028839111328125,-0.045318598790289],[0.028839111328125,-0.0466918893631913],[0.0274658203125,-0.0466918893631913],[0.0274658203125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":20,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0466918893631913],[0.028839111328125,-0.0466918893631913],[0.028839111328125,-0.0480651799092611],[0.0274658203125,-0.0480651799092611],[0.0274658203125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":20,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0480651799092611],[0.028839111328125,-0.0480651799092611],[0.028839111328125,-0.0494384704277221],[0.0274658203125,-0.0494384704277221],[0.0274658203125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":20,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0494384704277221],[0.028839111328125,-0.0494384704277221],[0.028839111328125,-0.0508117609177883],[0.0274658203125,-0.0508117609177883],[0.0274658203125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":20,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0508117609177883],[0.028839111328125,-0.0508117609177883],[0.028839111328125,-0.0521850513786548],[0.0274658203125,-0.0521850513786548],[0.0274658203125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":20,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0521850513786548],[0.028839111328125,-0.0521850513786548],[0.028839111328125,-0.0535583418095483],[0.0274658203125,-0.0535583418095483],[0.0274658203125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":20,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0535583418095483],[0.028839111328125,-0.0535583418095483],[0.028839111328125,-0.0549316322096735],[0.0274658203125,-0.0549316322096735],[0.0274658203125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":20,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0549316322096735],[0.028839111328125,-0.0549316322096735],[0.028839111328125,-0.0563049225782379],[0.0274658203125,-0.0563049225782379],[0.0274658203125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":20,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0563049225782379],[0.028839111328125,-0.0563049225782379],[0.028839111328125,-0.0576782129144526],[0.0274658203125,-0.0576782129144526],[0.0274658203125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":20,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0576782129144526],[0.028839111328125,-0.0576782129144526],[0.028839111328125,-0.0590515032175379],[0.0274658203125,-0.0590515032175379],[0.0274658203125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":20,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0590515032175379],[0.028839111328125,-0.0590515032175379],[0.028839111328125,-0.0604247934867017],[0.0274658203125,-0.0604247934867017],[0.0274658203125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":20,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0604247934867017],[0.028839111328125,-0.0604247934867017],[0.028839111328125,-0.0617980837211484],[0.0274658203125,-0.0617980837211484],[0.0274658203125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":20,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0617980837211484],[0.028839111328125,-0.0617980837211484],[0.028839111328125,-0.0631713739200889],[0.0274658203125,-0.0631713739200889],[0.0274658203125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":20,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0631713739200889],[0.028839111328125,-0.0631713739200889],[0.028839111328125,-0.0645446640827373],[0.0274658203125,-0.0645446640827373],[0.0274658203125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":20,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0645446640827373],[0.028839111328125,-0.0645446640827373],[0.028839111328125,-0.065917954208311],[0.0274658203125,-0.065917954208311],[0.0274658203125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":21,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0219726557114224],[0.03021240234375,-0.0219726557114224],[0.03021240234375,-0.0233459466196176],[0.028839111328125,-0.0233459466196176],[0.028839111328125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":21,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0233459466196176],[0.03021240234375,-0.0233459466196176],[0.03021240234375,-0.0247192375144014],[0.028839111328125,-0.0247192375144014],[0.028839111328125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":21,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0247192375144014],[0.03021240234375,-0.0247192375144014],[0.03021240234375,-0.026092528394991],[0.028839111328125,-0.026092528394991],[0.028839111328125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":21,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.026092528394991],[0.03021240234375,-0.026092528394991],[0.03021240234375,-0.0274658192605846],[0.028839111328125,-0.0274658192605846],[0.028839111328125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":21,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0274658192605846],[0.03021240234375,-0.0274658192605846],[0.03021240234375,-0.0288391101104026],[0.028839111328125,-0.0288391101104026],[0.028839111328125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":21,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0288391101104026],[0.03021240234375,-0.0288391101104026],[0.03021240234375,-0.0302124009436464],[0.028839111328125,-0.0302124009436464],[0.028839111328125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":21,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0302124009436464],[0.03021240234375,-0.0302124009436464],[0.03021240234375,-0.0315856917595396],[0.028839111328125,-0.0315856917595396],[0.028839111328125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":21,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0315856917595396],[0.03021240234375,-0.0315856917595396],[0.03021240234375,-0.0329589825572836],[0.028839111328125,-0.0329589825572836],[0.028839111328125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":21,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0329589825572836],[0.03021240234375,-0.0329589825572836],[0.03021240234375,-0.0343322733360987],[0.028839111328125,-0.0343322733360987],[0.028839111328125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":21,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0343322733360987],[0.03021240234375,-0.0343322733360987],[0.03021240234375,-0.0357055640951897],[0.028839111328125,-0.0357055640951897],[0.028839111328125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":21,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0357055640951897],[0.03021240234375,-0.0357055640951897],[0.03021240234375,-0.0370788548337641],[0.028839111328125,-0.0370788548337641],[0.028839111328125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":21,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0370788548337641],[0.03021240234375,-0.0370788548337641],[0.03021240234375,-0.0384521455510425],[0.028839111328125,-0.0384521455510425],[0.028839111328125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":21,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0384521455510425],[0.03021240234375,-0.0384521455510425],[0.03021240234375,-0.039825436246223],[0.028839111328125,-0.039825436246223],[0.028839111328125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":21,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.039825436246223],[0.03021240234375,-0.039825436246223],[0.03021240234375,-0.0411987269185324],[0.028839111328125,-0.0411987269185324],[0.028839111328125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":21,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0411987269185324],[0.03021240234375,-0.0411987269185324],[0.03021240234375,-0.042572017567172],[0.028839111328125,-0.042572017567172],[0.028839111328125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":21,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.042572017567172],[0.03021240234375,-0.042572017567172],[0.03021240234375,-0.0439453081913529],[0.028839111328125,-0.0439453081913529],[0.028839111328125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":21,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0439453081913529],[0.03021240234375,-0.0439453081913529],[0.03021240234375,-0.045318598790289],[0.028839111328125,-0.045318598790289],[0.028839111328125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":21,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.045318598790289],[0.03021240234375,-0.045318598790289],[0.03021240234375,-0.0466918893631913],[0.028839111328125,-0.0466918893631913],[0.028839111328125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":21,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0466918893631913],[0.03021240234375,-0.0466918893631913],[0.03021240234375,-0.0480651799092611],[0.028839111328125,-0.0480651799092611],[0.028839111328125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":21,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0480651799092611],[0.03021240234375,-0.0480651799092611],[0.03021240234375,-0.0494384704277221],[0.028839111328125,-0.0494384704277221],[0.028839111328125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":21,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0494384704277221],[0.03021240234375,-0.0494384704277221],[0.03021240234375,-0.0508117609177883],[0.028839111328125,-0.0508117609177883],[0.028839111328125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":21,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0508117609177883],[0.03021240234375,-0.0508117609177883],[0.03021240234375,-0.0521850513786548],[0.028839111328125,-0.0521850513786548],[0.028839111328125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":21,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0521850513786548],[0.03021240234375,-0.0521850513786548],[0.03021240234375,-0.0535583418095483],[0.028839111328125,-0.0535583418095483],[0.028839111328125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":21,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0535583418095483],[0.03021240234375,-0.0535583418095483],[0.03021240234375,-0.0549316322096735],[0.028839111328125,-0.0549316322096735],[0.028839111328125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":21,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0549316322096735],[0.03021240234375,-0.0549316322096735],[0.03021240234375,-0.0563049225782379],[0.028839111328125,-0.0563049225782379],[0.028839111328125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":21,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0563049225782379],[0.03021240234375,-0.0563049225782379],[0.03021240234375,-0.0576782129144526],[0.028839111328125,-0.0576782129144526],[0.028839111328125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":21,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0576782129144526],[0.03021240234375,-0.0576782129144526],[0.03021240234375,-0.0590515032175379],[0.028839111328125,-0.0590515032175379],[0.028839111328125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":21,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0590515032175379],[0.03021240234375,-0.0590515032175379],[0.03021240234375,-0.0604247934867017],[0.028839111328125,-0.0604247934867017],[0.028839111328125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":21,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0604247934867017],[0.03021240234375,-0.0604247934867017],[0.03021240234375,-0.0617980837211484],[0.028839111328125,-0.0617980837211484],[0.028839111328125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":21,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0617980837211484],[0.03021240234375,-0.0617980837211484],[0.03021240234375,-0.0631713739200889],[0.028839111328125,-0.0631713739200889],[0.028839111328125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":21,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0631713739200889],[0.03021240234375,-0.0631713739200889],[0.03021240234375,-0.0645446640827373],[0.028839111328125,-0.0645446640827373],[0.028839111328125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":21,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0645446640827373],[0.03021240234375,-0.0645446640827373],[0.03021240234375,-0.065917954208311],[0.028839111328125,-0.065917954208311],[0.028839111328125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":22,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0219726557114224],[0.031585693359375,-0.0219726557114224],[0.031585693359375,-0.0233459466196176],[0.03021240234375,-0.0233459466196176],[0.03021240234375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":22,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0233459466196176],[0.031585693359375,-0.0233459466196176],[0.031585693359375,-0.0247192375144014],[0.03021240234375,-0.0247192375144014],[0.03021240234375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":22,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0247192375144014],[0.031585693359375,-0.0247192375144014],[0.031585693359375,-0.026092528394991],[0.03021240234375,-0.026092528394991],[0.03021240234375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":22,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.026092528394991],[0.031585693359375,-0.026092528394991],[0.031585693359375,-0.0274658192605846],[0.03021240234375,-0.0274658192605846],[0.03021240234375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":22,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0274658192605846],[0.031585693359375,-0.0274658192605846],[0.031585693359375,-0.0288391101104026],[0.03021240234375,-0.0288391101104026],[0.03021240234375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":22,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0288391101104026],[0.031585693359375,-0.0288391101104026],[0.031585693359375,-0.0302124009436464],[0.03021240234375,-0.0302124009436464],[0.03021240234375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":22,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0302124009436464],[0.031585693359375,-0.0302124009436464],[0.031585693359375,-0.0315856917595396],[0.03021240234375,-0.0315856917595396],[0.03021240234375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":22,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0315856917595396],[0.031585693359375,-0.0315856917595396],[0.031585693359375,-0.0329589825572836],[0.03021240234375,-0.0329589825572836],[0.03021240234375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":22,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0329589825572836],[0.031585693359375,-0.0329589825572836],[0.031585693359375,-0.0343322733360987],[0.03021240234375,-0.0343322733360987],[0.03021240234375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":22,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0343322733360987],[0.031585693359375,-0.0343322733360987],[0.031585693359375,-0.0357055640951897],[0.03021240234375,-0.0357055640951897],[0.03021240234375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":22,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0357055640951897],[0.031585693359375,-0.0357055640951897],[0.031585693359375,-0.0370788548337641],[0.03021240234375,-0.0370788548337641],[0.03021240234375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":22,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0370788548337641],[0.031585693359375,-0.0370788548337641],[0.031585693359375,-0.0384521455510425],[0.03021240234375,-0.0384521455510425],[0.03021240234375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":22,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0384521455510425],[0.031585693359375,-0.0384521455510425],[0.031585693359375,-0.039825436246223],[0.03021240234375,-0.039825436246223],[0.03021240234375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":22,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.039825436246223],[0.031585693359375,-0.039825436246223],[0.031585693359375,-0.0411987269185324],[0.03021240234375,-0.0411987269185324],[0.03021240234375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":22,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0411987269185324],[0.031585693359375,-0.0411987269185324],[0.031585693359375,-0.042572017567172],[0.03021240234375,-0.042572017567172],[0.03021240234375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":22,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.042572017567172],[0.031585693359375,-0.042572017567172],[0.031585693359375,-0.0439453081913529],[0.03021240234375,-0.0439453081913529],[0.03021240234375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":22,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0439453081913529],[0.031585693359375,-0.0439453081913529],[0.031585693359375,-0.045318598790289],[0.03021240234375,-0.045318598790289],[0.03021240234375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":22,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.045318598790289],[0.031585693359375,-0.045318598790289],[0.031585693359375,-0.0466918893631913],[0.03021240234375,-0.0466918893631913],[0.03021240234375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":22,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0466918893631913],[0.031585693359375,-0.0466918893631913],[0.031585693359375,-0.0480651799092611],[0.03021240234375,-0.0480651799092611],[0.03021240234375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":22,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0480651799092611],[0.031585693359375,-0.0480651799092611],[0.031585693359375,-0.0494384704277221],[0.03021240234375,-0.0494384704277221],[0.03021240234375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":22,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0494384704277221],[0.031585693359375,-0.0494384704277221],[0.031585693359375,-0.0508117609177883],[0.03021240234375,-0.0508117609177883],[0.03021240234375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":22,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0508117609177883],[0.031585693359375,-0.0508117609177883],[0.031585693359375,-0.0521850513786548],[0.03021240234375,-0.0521850513786548],[0.03021240234375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":22,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0521850513786548],[0.031585693359375,-0.0521850513786548],[0.031585693359375,-0.0535583418095483],[0.03021240234375,-0.0535583418095483],[0.03021240234375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":22,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0535583418095483],[0.031585693359375,-0.0535583418095483],[0.031585693359375,-0.0549316322096735],[0.03021240234375,-0.0549316322096735],[0.03021240234375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":22,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0549316322096735],[0.031585693359375,-0.0549316322096735],[0.031585693359375,-0.0563049225782379],[0.03021240234375,-0.0563049225782379],[0.03021240234375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":22,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0563049225782379],[0.031585693359375,-0.0563049225782379],[0.031585693359375,-0.0576782129144526],[0.03021240234375,-0.0576782129144526],[0.03021240234375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":22,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0576782129144526],[0.031585693359375,-0.0576782129144526],[0.031585693359375,-0.0590515032175379],[0.03021240234375,-0.0590515032175379],[0.03021240234375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":22,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0590515032175379],[0.031585693359375,-0.0590515032175379],[0.031585693359375,-0.0604247934867017],[0.03021240234375,-0.0604247934867017],[0.03021240234375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":22,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0604247934867017],[0.031585693359375,-0.0604247934867017],[0.031585693359375,-0.0617980837211484],[0.03021240234375,-0.0617980837211484],[0.03021240234375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":22,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0617980837211484],[0.031585693359375,-0.0617980837211484],[0.031585693359375,-0.0631713739200889],[0.03021240234375,-0.0631713739200889],[0.03021240234375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":22,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0631713739200889],[0.031585693359375,-0.0631713739200889],[0.031585693359375,-0.0645446640827373],[0.03021240234375,-0.0645446640827373],[0.03021240234375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":22,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0645446640827373],[0.031585693359375,-0.0645446640827373],[0.031585693359375,-0.065917954208311],[0.03021240234375,-0.065917954208311],[0.03021240234375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":23,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0219726557114224],[0.032958984375,-0.0219726557114224],[0.032958984375,-0.0233459466196176],[0.031585693359375,-0.0233459466196176],[0.031585693359375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":23,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0233459466196176],[0.032958984375,-0.0233459466196176],[0.032958984375,-0.0247192375144014],[0.031585693359375,-0.0247192375144014],[0.031585693359375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":23,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0247192375144014],[0.032958984375,-0.0247192375144014],[0.032958984375,-0.026092528394991],[0.031585693359375,-0.026092528394991],[0.031585693359375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":23,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.026092528394991],[0.032958984375,-0.026092528394991],[0.032958984375,-0.0274658192605846],[0.031585693359375,-0.0274658192605846],[0.031585693359375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":23,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0274658192605846],[0.032958984375,-0.0274658192605846],[0.032958984375,-0.0288391101104026],[0.031585693359375,-0.0288391101104026],[0.031585693359375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":23,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0288391101104026],[0.032958984375,-0.0288391101104026],[0.032958984375,-0.0302124009436464],[0.031585693359375,-0.0302124009436464],[0.031585693359375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":23,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0302124009436464],[0.032958984375,-0.0302124009436464],[0.032958984375,-0.0315856917595396],[0.031585693359375,-0.0315856917595396],[0.031585693359375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":23,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0315856917595396],[0.032958984375,-0.0315856917595396],[0.032958984375,-0.0329589825572836],[0.031585693359375,-0.0329589825572836],[0.031585693359375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":23,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0329589825572836],[0.032958984375,-0.0329589825572836],[0.032958984375,-0.0343322733360987],[0.031585693359375,-0.0343322733360987],[0.031585693359375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":23,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0343322733360987],[0.032958984375,-0.0343322733360987],[0.032958984375,-0.0357055640951897],[0.031585693359375,-0.0357055640951897],[0.031585693359375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":23,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0357055640951897],[0.032958984375,-0.0357055640951897],[0.032958984375,-0.0370788548337641],[0.031585693359375,-0.0370788548337641],[0.031585693359375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":23,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0370788548337641],[0.032958984375,-0.0370788548337641],[0.032958984375,-0.0384521455510425],[0.031585693359375,-0.0384521455510425],[0.031585693359375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":23,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0384521455510425],[0.032958984375,-0.0384521455510425],[0.032958984375,-0.039825436246223],[0.031585693359375,-0.039825436246223],[0.031585693359375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":23,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.039825436246223],[0.032958984375,-0.039825436246223],[0.032958984375,-0.0411987269185324],[0.031585693359375,-0.0411987269185324],[0.031585693359375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":23,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0411987269185324],[0.032958984375,-0.0411987269185324],[0.032958984375,-0.042572017567172],[0.031585693359375,-0.042572017567172],[0.031585693359375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":23,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.042572017567172],[0.032958984375,-0.042572017567172],[0.032958984375,-0.0439453081913529],[0.031585693359375,-0.0439453081913529],[0.031585693359375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":23,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0439453081913529],[0.032958984375,-0.0439453081913529],[0.032958984375,-0.045318598790289],[0.031585693359375,-0.045318598790289],[0.031585693359375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":23,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.045318598790289],[0.032958984375,-0.045318598790289],[0.032958984375,-0.0466918893631913],[0.031585693359375,-0.0466918893631913],[0.031585693359375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":23,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0466918893631913],[0.032958984375,-0.0466918893631913],[0.032958984375,-0.0480651799092611],[0.031585693359375,-0.0480651799092611],[0.031585693359375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":23,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0480651799092611],[0.032958984375,-0.0480651799092611],[0.032958984375,-0.0494384704277221],[0.031585693359375,-0.0494384704277221],[0.031585693359375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":23,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0494384704277221],[0.032958984375,-0.0494384704277221],[0.032958984375,-0.0508117609177883],[0.031585693359375,-0.0508117609177883],[0.031585693359375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":23,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0508117609177883],[0.032958984375,-0.0508117609177883],[0.032958984375,-0.0521850513786548],[0.031585693359375,-0.0521850513786548],[0.031585693359375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":23,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0521850513786548],[0.032958984375,-0.0521850513786548],[0.032958984375,-0.0535583418095483],[0.031585693359375,-0.0535583418095483],[0.031585693359375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":23,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0535583418095483],[0.032958984375,-0.0535583418095483],[0.032958984375,-0.0549316322096735],[0.031585693359375,-0.0549316322096735],[0.031585693359375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":23,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0549316322096735],[0.032958984375,-0.0549316322096735],[0.032958984375,-0.0563049225782379],[0.031585693359375,-0.0563049225782379],[0.031585693359375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":23,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0563049225782379],[0.032958984375,-0.0563049225782379],[0.032958984375,-0.0576782129144526],[0.031585693359375,-0.0576782129144526],[0.031585693359375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":23,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0576782129144526],[0.032958984375,-0.0576782129144526],[0.032958984375,-0.0590515032175379],[0.031585693359375,-0.0590515032175379],[0.031585693359375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":23,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0590515032175379],[0.032958984375,-0.0590515032175379],[0.032958984375,-0.0604247934867017],[0.031585693359375,-0.0604247934867017],[0.031585693359375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":23,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0604247934867017],[0.032958984375,-0.0604247934867017],[0.032958984375,-0.0617980837211484],[0.031585693359375,-0.0617980837211484],[0.031585693359375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":23,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0617980837211484],[0.032958984375,-0.0617980837211484],[0.032958984375,-0.0631713739200889],[0.031585693359375,-0.0631713739200889],[0.031585693359375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":23,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0631713739200889],[0.032958984375,-0.0631713739200889],[0.032958984375,-0.0645446640827373],[0.031585693359375,-0.0645446640827373],[0.031585693359375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":23,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0645446640827373],[0.032958984375,-0.0645446640827373],[0.032958984375,-0.065917954208311],[0.031585693359375,-0.065917954208311],[0.031585693359375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":24,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0219726557114224],[0.034332275390625,-0.0219726557114224],[0.034332275390625,-0.0233459466196176],[0.032958984375,-0.0233459466196176],[0.032958984375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":24,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0233459466196176],[0.034332275390625,-0.0233459466196176],[0.034332275390625,-0.0247192375144014],[0.032958984375,-0.0247192375144014],[0.032958984375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":24,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0247192375144014],[0.034332275390625,-0.0247192375144014],[0.034332275390625,-0.026092528394991],[0.032958984375,-0.026092528394991],[0.032958984375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":24,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.026092528394991],[0.034332275390625,-0.026092528394991],[0.034332275390625,-0.0274658192605846],[0.032958984375,-0.0274658192605846],[0.032958984375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":24,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0274658192605846],[0.034332275390625,-0.0274658192605846],[0.034332275390625,-0.0288391101104026],[0.032958984375,-0.0288391101104026],[0.032958984375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":24,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0288391101104026],[0.034332275390625,-0.0288391101104026],[0.034332275390625,-0.0302124009436464],[0.032958984375,-0.0302124009436464],[0.032958984375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":24,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0302124009436464],[0.034332275390625,-0.0302124009436464],[0.034332275390625,-0.0315856917595396],[0.032958984375,-0.0315856917595396],[0.032958984375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":24,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0315856917595396],[0.034332275390625,-0.0315856917595396],[0.034332275390625,-0.0329589825572836],[0.032958984375,-0.0329589825572836],[0.032958984375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":24,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0329589825572836],[0.034332275390625,-0.0329589825572836],[0.034332275390625,-0.0343322733360987],[0.032958984375,-0.0343322733360987],[0.032958984375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":24,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0343322733360987],[0.034332275390625,-0.0343322733360987],[0.034332275390625,-0.0357055640951897],[0.032958984375,-0.0357055640951897],[0.032958984375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":24,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0357055640951897],[0.034332275390625,-0.0357055640951897],[0.034332275390625,-0.0370788548337641],[0.032958984375,-0.0370788548337641],[0.032958984375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":24,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0370788548337641],[0.034332275390625,-0.0370788548337641],[0.034332275390625,-0.0384521455510425],[0.032958984375,-0.0384521455510425],[0.032958984375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":24,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0384521455510425],[0.034332275390625,-0.0384521455510425],[0.034332275390625,-0.039825436246223],[0.032958984375,-0.039825436246223],[0.032958984375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":24,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.039825436246223],[0.034332275390625,-0.039825436246223],[0.034332275390625,-0.0411987269185324],[0.032958984375,-0.0411987269185324],[0.032958984375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":24,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0411987269185324],[0.034332275390625,-0.0411987269185324],[0.034332275390625,-0.042572017567172],[0.032958984375,-0.042572017567172],[0.032958984375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":24,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.042572017567172],[0.034332275390625,-0.042572017567172],[0.034332275390625,-0.0439453081913529],[0.032958984375,-0.0439453081913529],[0.032958984375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":24,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0439453081913529],[0.034332275390625,-0.0439453081913529],[0.034332275390625,-0.045318598790289],[0.032958984375,-0.045318598790289],[0.032958984375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":24,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.045318598790289],[0.034332275390625,-0.045318598790289],[0.034332275390625,-0.0466918893631913],[0.032958984375,-0.0466918893631913],[0.032958984375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":24,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0466918893631913],[0.034332275390625,-0.0466918893631913],[0.034332275390625,-0.0480651799092611],[0.032958984375,-0.0480651799092611],[0.032958984375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":24,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0480651799092611],[0.034332275390625,-0.0480651799092611],[0.034332275390625,-0.0494384704277221],[0.032958984375,-0.0494384704277221],[0.032958984375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":24,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0494384704277221],[0.034332275390625,-0.0494384704277221],[0.034332275390625,-0.0508117609177883],[0.032958984375,-0.0508117609177883],[0.032958984375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":24,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0508117609177883],[0.034332275390625,-0.0508117609177883],[0.034332275390625,-0.0521850513786548],[0.032958984375,-0.0521850513786548],[0.032958984375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":24,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0521850513786548],[0.034332275390625,-0.0521850513786548],[0.034332275390625,-0.0535583418095483],[0.032958984375,-0.0535583418095483],[0.032958984375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":24,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0535583418095483],[0.034332275390625,-0.0535583418095483],[0.034332275390625,-0.0549316322096735],[0.032958984375,-0.0549316322096735],[0.032958984375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":24,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0549316322096735],[0.034332275390625,-0.0549316322096735],[0.034332275390625,-0.0563049225782379],[0.032958984375,-0.0563049225782379],[0.032958984375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":24,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0563049225782379],[0.034332275390625,-0.0563049225782379],[0.034332275390625,-0.0576782129144526],[0.032958984375,-0.0576782129144526],[0.032958984375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":24,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0576782129144526],[0.034332275390625,-0.0576782129144526],[0.034332275390625,-0.0590515032175379],[0.032958984375,-0.0590515032175379],[0.032958984375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":24,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0590515032175379],[0.034332275390625,-0.0590515032175379],[0.034332275390625,-0.0604247934867017],[0.032958984375,-0.0604247934867017],[0.032958984375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":24,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0604247934867017],[0.034332275390625,-0.0604247934867017],[0.034332275390625,-0.0617980837211484],[0.032958984375,-0.0617980837211484],[0.032958984375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":24,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0617980837211484],[0.034332275390625,-0.0617980837211484],[0.034332275390625,-0.0631713739200889],[0.032958984375,-0.0631713739200889],[0.032958984375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":24,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0631713739200889],[0.034332275390625,-0.0631713739200889],[0.034332275390625,-0.0645446640827373],[0.032958984375,-0.0645446640827373],[0.032958984375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":24,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0645446640827373],[0.034332275390625,-0.0645446640827373],[0.034332275390625,-0.065917954208311],[0.032958984375,-0.065917954208311],[0.032958984375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":25,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0219726557114224],[0.03570556640625,-0.0219726557114224],[0.03570556640625,-0.0233459466196176],[0.034332275390625,-0.0233459466196176],[0.034332275390625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":25,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0233459466196176],[0.03570556640625,-0.0233459466196176],[0.03570556640625,-0.0247192375144014],[0.034332275390625,-0.0247192375144014],[0.034332275390625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":25,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0247192375144014],[0.03570556640625,-0.0247192375144014],[0.03570556640625,-0.026092528394991],[0.034332275390625,-0.026092528394991],[0.034332275390625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":25,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.026092528394991],[0.03570556640625,-0.026092528394991],[0.03570556640625,-0.0274658192605846],[0.034332275390625,-0.0274658192605846],[0.034332275390625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":25,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0274658192605846],[0.03570556640625,-0.0274658192605846],[0.03570556640625,-0.0288391101104026],[0.034332275390625,-0.0288391101104026],[0.034332275390625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":25,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0288391101104026],[0.03570556640625,-0.0288391101104026],[0.03570556640625,-0.0302124009436464],[0.034332275390625,-0.0302124009436464],[0.034332275390625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":25,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0302124009436464],[0.03570556640625,-0.0302124009436464],[0.03570556640625,-0.0315856917595396],[0.034332275390625,-0.0315856917595396],[0.034332275390625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":25,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0315856917595396],[0.03570556640625,-0.0315856917595396],[0.03570556640625,-0.0329589825572836],[0.034332275390625,-0.0329589825572836],[0.034332275390625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":25,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0329589825572836],[0.03570556640625,-0.0329589825572836],[0.03570556640625,-0.0343322733360987],[0.034332275390625,-0.0343322733360987],[0.034332275390625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":25,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0343322733360987],[0.03570556640625,-0.0343322733360987],[0.03570556640625,-0.0357055640951897],[0.034332275390625,-0.0357055640951897],[0.034332275390625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":25,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0357055640951897],[0.03570556640625,-0.0357055640951897],[0.03570556640625,-0.0370788548337641],[0.034332275390625,-0.0370788548337641],[0.034332275390625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":25,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0370788548337641],[0.03570556640625,-0.0370788548337641],[0.03570556640625,-0.0384521455510425],[0.034332275390625,-0.0384521455510425],[0.034332275390625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":25,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0384521455510425],[0.03570556640625,-0.0384521455510425],[0.03570556640625,-0.039825436246223],[0.034332275390625,-0.039825436246223],[0.034332275390625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":25,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.039825436246223],[0.03570556640625,-0.039825436246223],[0.03570556640625,-0.0411987269185324],[0.034332275390625,-0.0411987269185324],[0.034332275390625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":25,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0411987269185324],[0.03570556640625,-0.0411987269185324],[0.03570556640625,-0.042572017567172],[0.034332275390625,-0.042572017567172],[0.034332275390625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":25,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.042572017567172],[0.03570556640625,-0.042572017567172],[0.03570556640625,-0.0439453081913529],[0.034332275390625,-0.0439453081913529],[0.034332275390625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":25,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0439453081913529],[0.03570556640625,-0.0439453081913529],[0.03570556640625,-0.045318598790289],[0.034332275390625,-0.045318598790289],[0.034332275390625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":25,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.045318598790289],[0.03570556640625,-0.045318598790289],[0.03570556640625,-0.0466918893631913],[0.034332275390625,-0.0466918893631913],[0.034332275390625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":25,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0466918893631913],[0.03570556640625,-0.0466918893631913],[0.03570556640625,-0.0480651799092611],[0.034332275390625,-0.0480651799092611],[0.034332275390625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":25,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0480651799092611],[0.03570556640625,-0.0480651799092611],[0.03570556640625,-0.0494384704277221],[0.034332275390625,-0.0494384704277221],[0.034332275390625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":25,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0494384704277221],[0.03570556640625,-0.0494384704277221],[0.03570556640625,-0.0508117609177883],[0.034332275390625,-0.0508117609177883],[0.034332275390625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":25,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0508117609177883],[0.03570556640625,-0.0508117609177883],[0.03570556640625,-0.0521850513786548],[0.034332275390625,-0.0521850513786548],[0.034332275390625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":25,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0521850513786548],[0.03570556640625,-0.0521850513786548],[0.03570556640625,-0.0535583418095483],[0.034332275390625,-0.0535583418095483],[0.034332275390625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":25,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0535583418095483],[0.03570556640625,-0.0535583418095483],[0.03570556640625,-0.0549316322096735],[0.034332275390625,-0.0549316322096735],[0.034332275390625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":25,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0549316322096735],[0.03570556640625,-0.0549316322096735],[0.03570556640625,-0.0563049225782379],[0.034332275390625,-0.0563049225782379],[0.034332275390625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":25,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0563049225782379],[0.03570556640625,-0.0563049225782379],[0.03570556640625,-0.0576782129144526],[0.034332275390625,-0.0576782129144526],[0.034332275390625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":25,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0576782129144526],[0.03570556640625,-0.0576782129144526],[0.03570556640625,-0.0590515032175379],[0.034332275390625,-0.0590515032175379],[0.034332275390625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":25,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0590515032175379],[0.03570556640625,-0.0590515032175379],[0.03570556640625,-0.0604247934867017],[0.034332275390625,-0.0604247934867017],[0.034332275390625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":25,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0604247934867017],[0.03570556640625,-0.0604247934867017],[0.03570556640625,-0.0617980837211484],[0.034332275390625,-0.0617980837211484],[0.034332275390625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":25,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0617980837211484],[0.03570556640625,-0.0617980837211484],[0.03570556640625,-0.0631713739200889],[0.034332275390625,-0.0631713739200889],[0.034332275390625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":25,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0631713739200889],[0.03570556640625,-0.0631713739200889],[0.03570556640625,-0.0645446640827373],[0.034332275390625,-0.0645446640827373],[0.034332275390625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":25,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0645446640827373],[0.03570556640625,-0.0645446640827373],[0.03570556640625,-0.065917954208311],[0.034332275390625,-0.065917954208311],[0.034332275390625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":26,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0219726557114224],[0.037078857421875,-0.0219726557114224],[0.037078857421875,-0.0233459466196176],[0.03570556640625,-0.0233459466196176],[0.03570556640625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":26,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0233459466196176],[0.037078857421875,-0.0233459466196176],[0.037078857421875,-0.0247192375144014],[0.03570556640625,-0.0247192375144014],[0.03570556640625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":26,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0247192375144014],[0.037078857421875,-0.0247192375144014],[0.037078857421875,-0.026092528394991],[0.03570556640625,-0.026092528394991],[0.03570556640625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":26,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.026092528394991],[0.037078857421875,-0.026092528394991],[0.037078857421875,-0.0274658192605846],[0.03570556640625,-0.0274658192605846],[0.03570556640625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":26,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0274658192605846],[0.037078857421875,-0.0274658192605846],[0.037078857421875,-0.0288391101104026],[0.03570556640625,-0.0288391101104026],[0.03570556640625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":26,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0288391101104026],[0.037078857421875,-0.0288391101104026],[0.037078857421875,-0.0302124009436464],[0.03570556640625,-0.0302124009436464],[0.03570556640625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":26,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0302124009436464],[0.037078857421875,-0.0302124009436464],[0.037078857421875,-0.0315856917595396],[0.03570556640625,-0.0315856917595396],[0.03570556640625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":26,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0315856917595396],[0.037078857421875,-0.0315856917595396],[0.037078857421875,-0.0329589825572836],[0.03570556640625,-0.0329589825572836],[0.03570556640625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":26,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0329589825572836],[0.037078857421875,-0.0329589825572836],[0.037078857421875,-0.0343322733360987],[0.03570556640625,-0.0343322733360987],[0.03570556640625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":26,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0343322733360987],[0.037078857421875,-0.0343322733360987],[0.037078857421875,-0.0357055640951897],[0.03570556640625,-0.0357055640951897],[0.03570556640625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":26,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0357055640951897],[0.037078857421875,-0.0357055640951897],[0.037078857421875,-0.0370788548337641],[0.03570556640625,-0.0370788548337641],[0.03570556640625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":26,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0370788548337641],[0.037078857421875,-0.0370788548337641],[0.037078857421875,-0.0384521455510425],[0.03570556640625,-0.0384521455510425],[0.03570556640625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":26,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0384521455510425],[0.037078857421875,-0.0384521455510425],[0.037078857421875,-0.039825436246223],[0.03570556640625,-0.039825436246223],[0.03570556640625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":26,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.039825436246223],[0.037078857421875,-0.039825436246223],[0.037078857421875,-0.0411987269185324],[0.03570556640625,-0.0411987269185324],[0.03570556640625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":26,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0411987269185324],[0.037078857421875,-0.0411987269185324],[0.037078857421875,-0.042572017567172],[0.03570556640625,-0.042572017567172],[0.03570556640625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":26,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.042572017567172],[0.037078857421875,-0.042572017567172],[0.037078857421875,-0.0439453081913529],[0.03570556640625,-0.0439453081913529],[0.03570556640625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":26,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0439453081913529],[0.037078857421875,-0.0439453081913529],[0.037078857421875,-0.045318598790289],[0.03570556640625,-0.045318598790289],[0.03570556640625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":26,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.045318598790289],[0.037078857421875,-0.045318598790289],[0.037078857421875,-0.0466918893631913],[0.03570556640625,-0.0466918893631913],[0.03570556640625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":26,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0466918893631913],[0.037078857421875,-0.0466918893631913],[0.037078857421875,-0.0480651799092611],[0.03570556640625,-0.0480651799092611],[0.03570556640625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":26,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0480651799092611],[0.037078857421875,-0.0480651799092611],[0.037078857421875,-0.0494384704277221],[0.03570556640625,-0.0494384704277221],[0.03570556640625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":26,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0494384704277221],[0.037078857421875,-0.0494384704277221],[0.037078857421875,-0.0508117609177883],[0.03570556640625,-0.0508117609177883],[0.03570556640625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":26,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0508117609177883],[0.037078857421875,-0.0508117609177883],[0.037078857421875,-0.0521850513786548],[0.03570556640625,-0.0521850513786548],[0.03570556640625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":26,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0521850513786548],[0.037078857421875,-0.0521850513786548],[0.037078857421875,-0.0535583418095483],[0.03570556640625,-0.0535583418095483],[0.03570556640625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":26,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0535583418095483],[0.037078857421875,-0.0535583418095483],[0.037078857421875,-0.0549316322096735],[0.03570556640625,-0.0549316322096735],[0.03570556640625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":26,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0549316322096735],[0.037078857421875,-0.0549316322096735],[0.037078857421875,-0.0563049225782379],[0.03570556640625,-0.0563049225782379],[0.03570556640625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":26,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0563049225782379],[0.037078857421875,-0.0563049225782379],[0.037078857421875,-0.0576782129144526],[0.03570556640625,-0.0576782129144526],[0.03570556640625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":26,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0576782129144526],[0.037078857421875,-0.0576782129144526],[0.037078857421875,-0.0590515032175379],[0.03570556640625,-0.0590515032175379],[0.03570556640625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":26,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0590515032175379],[0.037078857421875,-0.0590515032175379],[0.037078857421875,-0.0604247934867017],[0.03570556640625,-0.0604247934867017],[0.03570556640625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":26,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0604247934867017],[0.037078857421875,-0.0604247934867017],[0.037078857421875,-0.0617980837211484],[0.03570556640625,-0.0617980837211484],[0.03570556640625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":26,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0617980837211484],[0.037078857421875,-0.0617980837211484],[0.037078857421875,-0.0631713739200889],[0.03570556640625,-0.0631713739200889],[0.03570556640625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":26,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0631713739200889],[0.037078857421875,-0.0631713739200889],[0.037078857421875,-0.0645446640827373],[0.03570556640625,-0.0645446640827373],[0.03570556640625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":26,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0645446640827373],[0.037078857421875,-0.0645446640827373],[0.037078857421875,-0.065917954208311],[0.03570556640625,-0.065917954208311],[0.03570556640625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":27,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0219726557114224],[0.0384521484375,-0.0219726557114224],[0.0384521484375,-0.0233459466196176],[0.037078857421875,-0.0233459466196176],[0.037078857421875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":27,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0233459466196176],[0.0384521484375,-0.0233459466196176],[0.0384521484375,-0.0247192375144014],[0.037078857421875,-0.0247192375144014],[0.037078857421875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":27,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0247192375144014],[0.0384521484375,-0.0247192375144014],[0.0384521484375,-0.026092528394991],[0.037078857421875,-0.026092528394991],[0.037078857421875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":27,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.026092528394991],[0.0384521484375,-0.026092528394991],[0.0384521484375,-0.0274658192605846],[0.037078857421875,-0.0274658192605846],[0.037078857421875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":27,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0274658192605846],[0.0384521484375,-0.0274658192605846],[0.0384521484375,-0.0288391101104026],[0.037078857421875,-0.0288391101104026],[0.037078857421875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":27,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0288391101104026],[0.0384521484375,-0.0288391101104026],[0.0384521484375,-0.0302124009436464],[0.037078857421875,-0.0302124009436464],[0.037078857421875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":27,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0302124009436464],[0.0384521484375,-0.0302124009436464],[0.0384521484375,-0.0315856917595396],[0.037078857421875,-0.0315856917595396],[0.037078857421875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":27,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0315856917595396],[0.0384521484375,-0.0315856917595396],[0.0384521484375,-0.0329589825572836],[0.037078857421875,-0.0329589825572836],[0.037078857421875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":27,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0329589825572836],[0.0384521484375,-0.0329589825572836],[0.0384521484375,-0.0343322733360987],[0.037078857421875,-0.0343322733360987],[0.037078857421875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":27,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0343322733360987],[0.0384521484375,-0.0343322733360987],[0.0384521484375,-0.0357055640951897],[0.037078857421875,-0.0357055640951897],[0.037078857421875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":27,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0357055640951897],[0.0384521484375,-0.0357055640951897],[0.0384521484375,-0.0370788548337641],[0.037078857421875,-0.0370788548337641],[0.037078857421875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":27,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0370788548337641],[0.0384521484375,-0.0370788548337641],[0.0384521484375,-0.0384521455510425],[0.037078857421875,-0.0384521455510425],[0.037078857421875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":27,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0384521455510425],[0.0384521484375,-0.0384521455510425],[0.0384521484375,-0.039825436246223],[0.037078857421875,-0.039825436246223],[0.037078857421875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":27,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.039825436246223],[0.0384521484375,-0.039825436246223],[0.0384521484375,-0.0411987269185324],[0.037078857421875,-0.0411987269185324],[0.037078857421875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":27,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0411987269185324],[0.0384521484375,-0.0411987269185324],[0.0384521484375,-0.042572017567172],[0.037078857421875,-0.042572017567172],[0.037078857421875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":27,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.042572017567172],[0.0384521484375,-0.042572017567172],[0.0384521484375,-0.0439453081913529],[0.037078857421875,-0.0439453081913529],[0.037078857421875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":27,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0439453081913529],[0.0384521484375,-0.0439453081913529],[0.0384521484375,-0.045318598790289],[0.037078857421875,-0.045318598790289],[0.037078857421875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":27,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.045318598790289],[0.0384521484375,-0.045318598790289],[0.0384521484375,-0.0466918893631913],[0.037078857421875,-0.0466918893631913],[0.037078857421875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":27,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0466918893631913],[0.0384521484375,-0.0466918893631913],[0.0384521484375,-0.0480651799092611],[0.037078857421875,-0.0480651799092611],[0.037078857421875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":27,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0480651799092611],[0.0384521484375,-0.0480651799092611],[0.0384521484375,-0.0494384704277221],[0.037078857421875,-0.0494384704277221],[0.037078857421875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":27,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0494384704277221],[0.0384521484375,-0.0494384704277221],[0.0384521484375,-0.0508117609177883],[0.037078857421875,-0.0508117609177883],[0.037078857421875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":27,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0508117609177883],[0.0384521484375,-0.0508117609177883],[0.0384521484375,-0.0521850513786548],[0.037078857421875,-0.0521850513786548],[0.037078857421875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":27,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0521850513786548],[0.0384521484375,-0.0521850513786548],[0.0384521484375,-0.0535583418095483],[0.037078857421875,-0.0535583418095483],[0.037078857421875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":27,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0535583418095483],[0.0384521484375,-0.0535583418095483],[0.0384521484375,-0.0549316322096735],[0.037078857421875,-0.0549316322096735],[0.037078857421875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":27,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0549316322096735],[0.0384521484375,-0.0549316322096735],[0.0384521484375,-0.0563049225782379],[0.037078857421875,-0.0563049225782379],[0.037078857421875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":27,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0563049225782379],[0.0384521484375,-0.0563049225782379],[0.0384521484375,-0.0576782129144526],[0.037078857421875,-0.0576782129144526],[0.037078857421875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":27,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0576782129144526],[0.0384521484375,-0.0576782129144526],[0.0384521484375,-0.0590515032175379],[0.037078857421875,-0.0590515032175379],[0.037078857421875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":27,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0590515032175379],[0.0384521484375,-0.0590515032175379],[0.0384521484375,-0.0604247934867017],[0.037078857421875,-0.0604247934867017],[0.037078857421875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":27,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0604247934867017],[0.0384521484375,-0.0604247934867017],[0.0384521484375,-0.0617980837211484],[0.037078857421875,-0.0617980837211484],[0.037078857421875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":27,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0617980837211484],[0.0384521484375,-0.0617980837211484],[0.0384521484375,-0.0631713739200889],[0.037078857421875,-0.0631713739200889],[0.037078857421875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":27,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0631713739200889],[0.0384521484375,-0.0631713739200889],[0.0384521484375,-0.0645446640827373],[0.037078857421875,-0.0645446640827373],[0.037078857421875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":27,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0645446640827373],[0.0384521484375,-0.0645446640827373],[0.0384521484375,-0.065917954208311],[0.037078857421875,-0.065917954208311],[0.037078857421875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":28,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0219726557114224],[0.039825439453125,-0.0219726557114224],[0.039825439453125,-0.0233459466196176],[0.0384521484375,-0.0233459466196176],[0.0384521484375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":28,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0233459466196176],[0.039825439453125,-0.0233459466196176],[0.039825439453125,-0.0247192375144014],[0.0384521484375,-0.0247192375144014],[0.0384521484375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":28,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0247192375144014],[0.039825439453125,-0.0247192375144014],[0.039825439453125,-0.026092528394991],[0.0384521484375,-0.026092528394991],[0.0384521484375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":28,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.026092528394991],[0.039825439453125,-0.026092528394991],[0.039825439453125,-0.0274658192605846],[0.0384521484375,-0.0274658192605846],[0.0384521484375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":28,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0274658192605846],[0.039825439453125,-0.0274658192605846],[0.039825439453125,-0.0288391101104026],[0.0384521484375,-0.0288391101104026],[0.0384521484375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":28,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0288391101104026],[0.039825439453125,-0.0288391101104026],[0.039825439453125,-0.0302124009436464],[0.0384521484375,-0.0302124009436464],[0.0384521484375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":28,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0302124009436464],[0.039825439453125,-0.0302124009436464],[0.039825439453125,-0.0315856917595396],[0.0384521484375,-0.0315856917595396],[0.0384521484375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":28,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0315856917595396],[0.039825439453125,-0.0315856917595396],[0.039825439453125,-0.0329589825572836],[0.0384521484375,-0.0329589825572836],[0.0384521484375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":28,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0329589825572836],[0.039825439453125,-0.0329589825572836],[0.039825439453125,-0.0343322733360987],[0.0384521484375,-0.0343322733360987],[0.0384521484375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":28,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0343322733360987],[0.039825439453125,-0.0343322733360987],[0.039825439453125,-0.0357055640951897],[0.0384521484375,-0.0357055640951897],[0.0384521484375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":28,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0357055640951897],[0.039825439453125,-0.0357055640951897],[0.039825439453125,-0.0370788548337641],[0.0384521484375,-0.0370788548337641],[0.0384521484375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":28,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0370788548337641],[0.039825439453125,-0.0370788548337641],[0.039825439453125,-0.0384521455510425],[0.0384521484375,-0.0384521455510425],[0.0384521484375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":28,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0384521455510425],[0.039825439453125,-0.0384521455510425],[0.039825439453125,-0.039825436246223],[0.0384521484375,-0.039825436246223],[0.0384521484375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":28,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.039825436246223],[0.039825439453125,-0.039825436246223],[0.039825439453125,-0.0411987269185324],[0.0384521484375,-0.0411987269185324],[0.0384521484375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":28,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0411987269185324],[0.039825439453125,-0.0411987269185324],[0.039825439453125,-0.042572017567172],[0.0384521484375,-0.042572017567172],[0.0384521484375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":28,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.042572017567172],[0.039825439453125,-0.042572017567172],[0.039825439453125,-0.0439453081913529],[0.0384521484375,-0.0439453081913529],[0.0384521484375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":28,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0439453081913529],[0.039825439453125,-0.0439453081913529],[0.039825439453125,-0.045318598790289],[0.0384521484375,-0.045318598790289],[0.0384521484375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":28,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.045318598790289],[0.039825439453125,-0.045318598790289],[0.039825439453125,-0.0466918893631913],[0.0384521484375,-0.0466918893631913],[0.0384521484375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":28,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0466918893631913],[0.039825439453125,-0.0466918893631913],[0.039825439453125,-0.0480651799092611],[0.0384521484375,-0.0480651799092611],[0.0384521484375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":28,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0480651799092611],[0.039825439453125,-0.0480651799092611],[0.039825439453125,-0.0494384704277221],[0.0384521484375,-0.0494384704277221],[0.0384521484375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":28,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0494384704277221],[0.039825439453125,-0.0494384704277221],[0.039825439453125,-0.0508117609177883],[0.0384521484375,-0.0508117609177883],[0.0384521484375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":28,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0508117609177883],[0.039825439453125,-0.0508117609177883],[0.039825439453125,-0.0521850513786548],[0.0384521484375,-0.0521850513786548],[0.0384521484375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":28,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0521850513786548],[0.039825439453125,-0.0521850513786548],[0.039825439453125,-0.0535583418095483],[0.0384521484375,-0.0535583418095483],[0.0384521484375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":28,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0535583418095483],[0.039825439453125,-0.0535583418095483],[0.039825439453125,-0.0549316322096735],[0.0384521484375,-0.0549316322096735],[0.0384521484375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":28,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0549316322096735],[0.039825439453125,-0.0549316322096735],[0.039825439453125,-0.0563049225782379],[0.0384521484375,-0.0563049225782379],[0.0384521484375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":28,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0563049225782379],[0.039825439453125,-0.0563049225782379],[0.039825439453125,-0.0576782129144526],[0.0384521484375,-0.0576782129144526],[0.0384521484375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":28,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0576782129144526],[0.039825439453125,-0.0576782129144526],[0.039825439453125,-0.0590515032175379],[0.0384521484375,-0.0590515032175379],[0.0384521484375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":28,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0590515032175379],[0.039825439453125,-0.0590515032175379],[0.039825439453125,-0.0604247934867017],[0.0384521484375,-0.0604247934867017],[0.0384521484375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":28,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0604247934867017],[0.039825439453125,-0.0604247934867017],[0.039825439453125,-0.0617980837211484],[0.0384521484375,-0.0617980837211484],[0.0384521484375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":28,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0617980837211484],[0.039825439453125,-0.0617980837211484],[0.039825439453125,-0.0631713739200889],[0.0384521484375,-0.0631713739200889],[0.0384521484375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":28,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0631713739200889],[0.039825439453125,-0.0631713739200889],[0.039825439453125,-0.0645446640827373],[0.0384521484375,-0.0645446640827373],[0.0384521484375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":28,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0645446640827373],[0.039825439453125,-0.0645446640827373],[0.039825439453125,-0.065917954208311],[0.0384521484375,-0.065917954208311],[0.0384521484375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":29,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0219726557114224],[0.04119873046875,-0.0219726557114224],[0.04119873046875,-0.0233459466196176],[0.039825439453125,-0.0233459466196176],[0.039825439453125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":29,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0233459466196176],[0.04119873046875,-0.0233459466196176],[0.04119873046875,-0.0247192375144014],[0.039825439453125,-0.0247192375144014],[0.039825439453125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":29,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0247192375144014],[0.04119873046875,-0.0247192375144014],[0.04119873046875,-0.026092528394991],[0.039825439453125,-0.026092528394991],[0.039825439453125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":29,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.026092528394991],[0.04119873046875,-0.026092528394991],[0.04119873046875,-0.0274658192605846],[0.039825439453125,-0.0274658192605846],[0.039825439453125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":29,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0274658192605846],[0.04119873046875,-0.0274658192605846],[0.04119873046875,-0.0288391101104026],[0.039825439453125,-0.0288391101104026],[0.039825439453125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":29,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0288391101104026],[0.04119873046875,-0.0288391101104026],[0.04119873046875,-0.0302124009436464],[0.039825439453125,-0.0302124009436464],[0.039825439453125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":29,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0302124009436464],[0.04119873046875,-0.0302124009436464],[0.04119873046875,-0.0315856917595396],[0.039825439453125,-0.0315856917595396],[0.039825439453125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":29,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0315856917595396],[0.04119873046875,-0.0315856917595396],[0.04119873046875,-0.0329589825572836],[0.039825439453125,-0.0329589825572836],[0.039825439453125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":29,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0329589825572836],[0.04119873046875,-0.0329589825572836],[0.04119873046875,-0.0343322733360987],[0.039825439453125,-0.0343322733360987],[0.039825439453125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":29,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0343322733360987],[0.04119873046875,-0.0343322733360987],[0.04119873046875,-0.0357055640951897],[0.039825439453125,-0.0357055640951897],[0.039825439453125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":29,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0357055640951897],[0.04119873046875,-0.0357055640951897],[0.04119873046875,-0.0370788548337641],[0.039825439453125,-0.0370788548337641],[0.039825439453125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":29,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0370788548337641],[0.04119873046875,-0.0370788548337641],[0.04119873046875,-0.0384521455510425],[0.039825439453125,-0.0384521455510425],[0.039825439453125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":29,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0384521455510425],[0.04119873046875,-0.0384521455510425],[0.04119873046875,-0.039825436246223],[0.039825439453125,-0.039825436246223],[0.039825439453125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":29,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.039825436246223],[0.04119873046875,-0.039825436246223],[0.04119873046875,-0.0411987269185324],[0.039825439453125,-0.0411987269185324],[0.039825439453125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":29,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0411987269185324],[0.04119873046875,-0.0411987269185324],[0.04119873046875,-0.042572017567172],[0.039825439453125,-0.042572017567172],[0.039825439453125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":29,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.042572017567172],[0.04119873046875,-0.042572017567172],[0.04119873046875,-0.0439453081913529],[0.039825439453125,-0.0439453081913529],[0.039825439453125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":29,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0439453081913529],[0.04119873046875,-0.0439453081913529],[0.04119873046875,-0.045318598790289],[0.039825439453125,-0.045318598790289],[0.039825439453125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":29,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.045318598790289],[0.04119873046875,-0.045318598790289],[0.04119873046875,-0.0466918893631913],[0.039825439453125,-0.0466918893631913],[0.039825439453125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":29,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0466918893631913],[0.04119873046875,-0.0466918893631913],[0.04119873046875,-0.0480651799092611],[0.039825439453125,-0.0480651799092611],[0.039825439453125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":29,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0480651799092611],[0.04119873046875,-0.0480651799092611],[0.04119873046875,-0.0494384704277221],[0.039825439453125,-0.0494384704277221],[0.039825439453125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":29,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0494384704277221],[0.04119873046875,-0.0494384704277221],[0.04119873046875,-0.0508117609177883],[0.039825439453125,-0.0508117609177883],[0.039825439453125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":29,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0508117609177883],[0.04119873046875,-0.0508117609177883],[0.04119873046875,-0.0521850513786548],[0.039825439453125,-0.0521850513786548],[0.039825439453125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":29,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0521850513786548],[0.04119873046875,-0.0521850513786548],[0.04119873046875,-0.0535583418095483],[0.039825439453125,-0.0535583418095483],[0.039825439453125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":29,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0535583418095483],[0.04119873046875,-0.0535583418095483],[0.04119873046875,-0.0549316322096735],[0.039825439453125,-0.0549316322096735],[0.039825439453125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":29,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0549316322096735],[0.04119873046875,-0.0549316322096735],[0.04119873046875,-0.0563049225782379],[0.039825439453125,-0.0563049225782379],[0.039825439453125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":29,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0563049225782379],[0.04119873046875,-0.0563049225782379],[0.04119873046875,-0.0576782129144526],[0.039825439453125,-0.0576782129144526],[0.039825439453125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":29,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0576782129144526],[0.04119873046875,-0.0576782129144526],[0.04119873046875,-0.0590515032175379],[0.039825439453125,-0.0590515032175379],[0.039825439453125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":29,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0590515032175379],[0.04119873046875,-0.0590515032175379],[0.04119873046875,-0.0604247934867017],[0.039825439453125,-0.0604247934867017],[0.039825439453125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":29,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0604247934867017],[0.04119873046875,-0.0604247934867017],[0.04119873046875,-0.0617980837211484],[0.039825439453125,-0.0617980837211484],[0.039825439453125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":29,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0617980837211484],[0.04119873046875,-0.0617980837211484],[0.04119873046875,-0.0631713739200889],[0.039825439453125,-0.0631713739200889],[0.039825439453125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":29,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0631713739200889],[0.04119873046875,-0.0631713739200889],[0.04119873046875,-0.0645446640827373],[0.039825439453125,-0.0645446640827373],[0.039825439453125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":29,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0645446640827373],[0.04119873046875,-0.0645446640827373],[0.04119873046875,-0.065917954208311],[0.039825439453125,-0.065917954208311],[0.039825439453125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":30,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0219726557114224],[0.042572021484375,-0.0219726557114224],[0.042572021484375,-0.0233459466196176],[0.04119873046875,-0.0233459466196176],[0.04119873046875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":30,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0233459466196176],[0.042572021484375,-0.0233459466196176],[0.042572021484375,-0.0247192375144014],[0.04119873046875,-0.0247192375144014],[0.04119873046875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":30,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0247192375144014],[0.042572021484375,-0.0247192375144014],[0.042572021484375,-0.026092528394991],[0.04119873046875,-0.026092528394991],[0.04119873046875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":30,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.026092528394991],[0.042572021484375,-0.026092528394991],[0.042572021484375,-0.0274658192605846],[0.04119873046875,-0.0274658192605846],[0.04119873046875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":30,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0274658192605846],[0.042572021484375,-0.0274658192605846],[0.042572021484375,-0.0288391101104026],[0.04119873046875,-0.0288391101104026],[0.04119873046875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":30,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0288391101104026],[0.042572021484375,-0.0288391101104026],[0.042572021484375,-0.0302124009436464],[0.04119873046875,-0.0302124009436464],[0.04119873046875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":30,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0302124009436464],[0.042572021484375,-0.0302124009436464],[0.042572021484375,-0.0315856917595396],[0.04119873046875,-0.0315856917595396],[0.04119873046875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":30,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0315856917595396],[0.042572021484375,-0.0315856917595396],[0.042572021484375,-0.0329589825572836],[0.04119873046875,-0.0329589825572836],[0.04119873046875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":30,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0329589825572836],[0.042572021484375,-0.0329589825572836],[0.042572021484375,-0.0343322733360987],[0.04119873046875,-0.0343322733360987],[0.04119873046875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":30,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0343322733360987],[0.042572021484375,-0.0343322733360987],[0.042572021484375,-0.0357055640951897],[0.04119873046875,-0.0357055640951897],[0.04119873046875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":30,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0357055640951897],[0.042572021484375,-0.0357055640951897],[0.042572021484375,-0.0370788548337641],[0.04119873046875,-0.0370788548337641],[0.04119873046875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":30,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0370788548337641],[0.042572021484375,-0.0370788548337641],[0.042572021484375,-0.0384521455510425],[0.04119873046875,-0.0384521455510425],[0.04119873046875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":30,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0384521455510425],[0.042572021484375,-0.0384521455510425],[0.042572021484375,-0.039825436246223],[0.04119873046875,-0.039825436246223],[0.04119873046875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":30,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.039825436246223],[0.042572021484375,-0.039825436246223],[0.042572021484375,-0.0411987269185324],[0.04119873046875,-0.0411987269185324],[0.04119873046875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":30,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0411987269185324],[0.042572021484375,-0.0411987269185324],[0.042572021484375,-0.042572017567172],[0.04119873046875,-0.042572017567172],[0.04119873046875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":30,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.042572017567172],[0.042572021484375,-0.042572017567172],[0.042572021484375,-0.0439453081913529],[0.04119873046875,-0.0439453081913529],[0.04119873046875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":30,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0439453081913529],[0.042572021484375,-0.0439453081913529],[0.042572021484375,-0.045318598790289],[0.04119873046875,-0.045318598790289],[0.04119873046875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":30,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.045318598790289],[0.042572021484375,-0.045318598790289],[0.042572021484375,-0.0466918893631913],[0.04119873046875,-0.0466918893631913],[0.04119873046875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":30,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0466918893631913],[0.042572021484375,-0.0466918893631913],[0.042572021484375,-0.0480651799092611],[0.04119873046875,-0.0480651799092611],[0.04119873046875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":30,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0480651799092611],[0.042572021484375,-0.0480651799092611],[0.042572021484375,-0.0494384704277221],[0.04119873046875,-0.0494384704277221],[0.04119873046875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":30,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0494384704277221],[0.042572021484375,-0.0494384704277221],[0.042572021484375,-0.0508117609177883],[0.04119873046875,-0.0508117609177883],[0.04119873046875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":30,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0508117609177883],[0.042572021484375,-0.0508117609177883],[0.042572021484375,-0.0521850513786548],[0.04119873046875,-0.0521850513786548],[0.04119873046875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":30,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0521850513786548],[0.042572021484375,-0.0521850513786548],[0.042572021484375,-0.0535583418095483],[0.04119873046875,-0.0535583418095483],[0.04119873046875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":30,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0535583418095483],[0.042572021484375,-0.0535583418095483],[0.042572021484375,-0.0549316322096735],[0.04119873046875,-0.0549316322096735],[0.04119873046875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":30,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0549316322096735],[0.042572021484375,-0.0549316322096735],[0.042572021484375,-0.0563049225782379],[0.04119873046875,-0.0563049225782379],[0.04119873046875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":30,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0563049225782379],[0.042572021484375,-0.0563049225782379],[0.042572021484375,-0.0576782129144526],[0.04119873046875,-0.0576782129144526],[0.04119873046875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":30,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0576782129144526],[0.042572021484375,-0.0576782129144526],[0.042572021484375,-0.0590515032175379],[0.04119873046875,-0.0590515032175379],[0.04119873046875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":30,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0590515032175379],[0.042572021484375,-0.0590515032175379],[0.042572021484375,-0.0604247934867017],[0.04119873046875,-0.0604247934867017],[0.04119873046875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":30,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0604247934867017],[0.042572021484375,-0.0604247934867017],[0.042572021484375,-0.0617980837211484],[0.04119873046875,-0.0617980837211484],[0.04119873046875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":30,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0617980837211484],[0.042572021484375,-0.0617980837211484],[0.042572021484375,-0.0631713739200889],[0.04119873046875,-0.0631713739200889],[0.04119873046875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":30,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0631713739200889],[0.042572021484375,-0.0631713739200889],[0.042572021484375,-0.0645446640827373],[0.04119873046875,-0.0645446640827373],[0.04119873046875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":30,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0645446640827373],[0.042572021484375,-0.0645446640827373],[0.042572021484375,-0.065917954208311],[0.04119873046875,-0.065917954208311],[0.04119873046875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":31,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0219726557114224],[0.0439453125,-0.0219726557114224],[0.0439453125,-0.0233459466196176],[0.042572021484375,-0.0233459466196176],[0.042572021484375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":31,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0233459466196176],[0.0439453125,-0.0233459466196176],[0.0439453125,-0.0247192375144014],[0.042572021484375,-0.0247192375144014],[0.042572021484375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":31,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0247192375144014],[0.0439453125,-0.0247192375144014],[0.0439453125,-0.026092528394991],[0.042572021484375,-0.026092528394991],[0.042572021484375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":31,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.026092528394991],[0.0439453125,-0.026092528394991],[0.0439453125,-0.0274658192605846],[0.042572021484375,-0.0274658192605846],[0.042572021484375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":31,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0274658192605846],[0.0439453125,-0.0274658192605846],[0.0439453125,-0.0288391101104026],[0.042572021484375,-0.0288391101104026],[0.042572021484375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":31,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0288391101104026],[0.0439453125,-0.0288391101104026],[0.0439453125,-0.0302124009436464],[0.042572021484375,-0.0302124009436464],[0.042572021484375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":31,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0302124009436464],[0.0439453125,-0.0302124009436464],[0.0439453125,-0.0315856917595396],[0.042572021484375,-0.0315856917595396],[0.042572021484375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":31,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0315856917595396],[0.0439453125,-0.0315856917595396],[0.0439453125,-0.0329589825572836],[0.042572021484375,-0.0329589825572836],[0.042572021484375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":31,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0329589825572836],[0.0439453125,-0.0329589825572836],[0.0439453125,-0.0343322733360987],[0.042572021484375,-0.0343322733360987],[0.042572021484375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":31,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0343322733360987],[0.0439453125,-0.0343322733360987],[0.0439453125,-0.0357055640951897],[0.042572021484375,-0.0357055640951897],[0.042572021484375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":31,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0357055640951897],[0.0439453125,-0.0357055640951897],[0.0439453125,-0.0370788548337641],[0.042572021484375,-0.0370788548337641],[0.042572021484375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":31,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0370788548337641],[0.0439453125,-0.0370788548337641],[0.0439453125,-0.0384521455510425],[0.042572021484375,-0.0384521455510425],[0.042572021484375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":31,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0384521455510425],[0.0439453125,-0.0384521455510425],[0.0439453125,-0.039825436246223],[0.042572021484375,-0.039825436246223],[0.042572021484375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":31,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.039825436246223],[0.0439453125,-0.039825436246223],[0.0439453125,-0.0411987269185324],[0.042572021484375,-0.0411987269185324],[0.042572021484375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":31,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0411987269185324],[0.0439453125,-0.0411987269185324],[0.0439453125,-0.042572017567172],[0.042572021484375,-0.042572017567172],[0.042572021484375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":31,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.042572017567172],[0.0439453125,-0.042572017567172],[0.0439453125,-0.0439453081913529],[0.042572021484375,-0.0439453081913529],[0.042572021484375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":31,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0439453081913529],[0.0439453125,-0.0439453081913529],[0.0439453125,-0.045318598790289],[0.042572021484375,-0.045318598790289],[0.042572021484375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":31,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.045318598790289],[0.0439453125,-0.045318598790289],[0.0439453125,-0.0466918893631913],[0.042572021484375,-0.0466918893631913],[0.042572021484375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":31,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0466918893631913],[0.0439453125,-0.0466918893631913],[0.0439453125,-0.0480651799092611],[0.042572021484375,-0.0480651799092611],[0.042572021484375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":31,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0480651799092611],[0.0439453125,-0.0480651799092611],[0.0439453125,-0.0494384704277221],[0.042572021484375,-0.0494384704277221],[0.042572021484375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":31,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0494384704277221],[0.0439453125,-0.0494384704277221],[0.0439453125,-0.0508117609177883],[0.042572021484375,-0.0508117609177883],[0.042572021484375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":31,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0508117609177883],[0.0439453125,-0.0508117609177883],[0.0439453125,-0.0521850513786548],[0.042572021484375,-0.0521850513786548],[0.042572021484375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":31,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0521850513786548],[0.0439453125,-0.0521850513786548],[0.0439453125,-0.0535583418095483],[0.042572021484375,-0.0535583418095483],[0.042572021484375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":31,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0535583418095483],[0.0439453125,-0.0535583418095483],[0.0439453125,-0.0549316322096735],[0.042572021484375,-0.0549316322096735],[0.042572021484375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":31,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0549316322096735],[0.0439453125,-0.0549316322096735],[0.0439453125,-0.0563049225782379],[0.042572021484375,-0.0563049225782379],[0.042572021484375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":31,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0563049225782379],[0.0439453125,-0.0563049225782379],[0.0439453125,-0.0576782129144526],[0.042572021484375,-0.0576782129144526],[0.042572021484375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":31,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0576782129144526],[0.0439453125,-0.0576782129144526],[0.0439453125,-0.0590515032175379],[0.042572021484375,-0.0590515032175379],[0.042572021484375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":31,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0590515032175379],[0.0439453125,-0.0590515032175379],[0.0439453125,-0.0604247934867017],[0.042572021484375,-0.0604247934867017],[0.042572021484375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":31,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0604247934867017],[0.0439453125,-0.0604247934867017],[0.0439453125,-0.0617980837211484],[0.042572021484375,-0.0617980837211484],[0.042572021484375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":31,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0617980837211484],[0.0439453125,-0.0617980837211484],[0.0439453125,-0.0631713739200889],[0.042572021484375,-0.0631713739200889],[0.042572021484375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":31,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0631713739200889],[0.0439453125,-0.0631713739200889],[0.0439453125,-0.0645446640827373],[0.042572021484375,-0.0645446640827373],[0.042572021484375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":31,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0645446640827373],[0.0439453125,-0.0645446640827373],[0.0439453125,-0.065917954208311],[0.042572021484375,-0.065917954208311],[0.042572021484375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":32,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0219726557114224],[0.045318603515625,-0.0219726557114224],[0.045318603515625,-0.0233459466196176],[0.0439453125,-0.0233459466196176],[0.0439453125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":32,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0233459466196176],[0.045318603515625,-0.0233459466196176],[0.045318603515625,-0.0247192375144014],[0.0439453125,-0.0247192375144014],[0.0439453125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":32,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0247192375144014],[0.045318603515625,-0.0247192375144014],[0.045318603515625,-0.026092528394991],[0.0439453125,-0.026092528394991],[0.0439453125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":32,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.026092528394991],[0.045318603515625,-0.026092528394991],[0.045318603515625,-0.0274658192605846],[0.0439453125,-0.0274658192605846],[0.0439453125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":32,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0274658192605846],[0.045318603515625,-0.0274658192605846],[0.045318603515625,-0.0288391101104026],[0.0439453125,-0.0288391101104026],[0.0439453125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":32,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0288391101104026],[0.045318603515625,-0.0288391101104026],[0.045318603515625,-0.0302124009436464],[0.0439453125,-0.0302124009436464],[0.0439453125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":32,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0302124009436464],[0.045318603515625,-0.0302124009436464],[0.045318603515625,-0.0315856917595396],[0.0439453125,-0.0315856917595396],[0.0439453125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":32,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0315856917595396],[0.045318603515625,-0.0315856917595396],[0.045318603515625,-0.0329589825572836],[0.0439453125,-0.0329589825572836],[0.0439453125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":32,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0329589825572836],[0.045318603515625,-0.0329589825572836],[0.045318603515625,-0.0343322733360987],[0.0439453125,-0.0343322733360987],[0.0439453125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":32,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0343322733360987],[0.045318603515625,-0.0343322733360987],[0.045318603515625,-0.0357055640951897],[0.0439453125,-0.0357055640951897],[0.0439453125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":32,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0357055640951897],[0.045318603515625,-0.0357055640951897],[0.045318603515625,-0.0370788548337641],[0.0439453125,-0.0370788548337641],[0.0439453125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":32,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0370788548337641],[0.045318603515625,-0.0370788548337641],[0.045318603515625,-0.0384521455510425],[0.0439453125,-0.0384521455510425],[0.0439453125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":32,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0384521455510425],[0.045318603515625,-0.0384521455510425],[0.045318603515625,-0.039825436246223],[0.0439453125,-0.039825436246223],[0.0439453125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":32,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.039825436246223],[0.045318603515625,-0.039825436246223],[0.045318603515625,-0.0411987269185324],[0.0439453125,-0.0411987269185324],[0.0439453125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":32,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0411987269185324],[0.045318603515625,-0.0411987269185324],[0.045318603515625,-0.042572017567172],[0.0439453125,-0.042572017567172],[0.0439453125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":32,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.042572017567172],[0.045318603515625,-0.042572017567172],[0.045318603515625,-0.0439453081913529],[0.0439453125,-0.0439453081913529],[0.0439453125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":32,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0439453081913529],[0.045318603515625,-0.0439453081913529],[0.045318603515625,-0.045318598790289],[0.0439453125,-0.045318598790289],[0.0439453125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":32,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.045318598790289],[0.045318603515625,-0.045318598790289],[0.045318603515625,-0.0466918893631913],[0.0439453125,-0.0466918893631913],[0.0439453125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":32,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0466918893631913],[0.045318603515625,-0.0466918893631913],[0.045318603515625,-0.0480651799092611],[0.0439453125,-0.0480651799092611],[0.0439453125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":32,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0480651799092611],[0.045318603515625,-0.0480651799092611],[0.045318603515625,-0.0494384704277221],[0.0439453125,-0.0494384704277221],[0.0439453125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":32,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0494384704277221],[0.045318603515625,-0.0494384704277221],[0.045318603515625,-0.0508117609177883],[0.0439453125,-0.0508117609177883],[0.0439453125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":32,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0508117609177883],[0.045318603515625,-0.0508117609177883],[0.045318603515625,-0.0521850513786548],[0.0439453125,-0.0521850513786548],[0.0439453125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":32,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0521850513786548],[0.045318603515625,-0.0521850513786548],[0.045318603515625,-0.0535583418095483],[0.0439453125,-0.0535583418095483],[0.0439453125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":32,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0535583418095483],[0.045318603515625,-0.0535583418095483],[0.045318603515625,-0.0549316322096735],[0.0439453125,-0.0549316322096735],[0.0439453125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":32,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0549316322096735],[0.045318603515625,-0.0549316322096735],[0.045318603515625,-0.0563049225782379],[0.0439453125,-0.0563049225782379],[0.0439453125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":32,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0563049225782379],[0.045318603515625,-0.0563049225782379],[0.045318603515625,-0.0576782129144526],[0.0439453125,-0.0576782129144526],[0.0439453125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":32,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0576782129144526],[0.045318603515625,-0.0576782129144526],[0.045318603515625,-0.0590515032175379],[0.0439453125,-0.0590515032175379],[0.0439453125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":32,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0590515032175379],[0.045318603515625,-0.0590515032175379],[0.045318603515625,-0.0604247934867017],[0.0439453125,-0.0604247934867017],[0.0439453125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":32,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0604247934867017],[0.045318603515625,-0.0604247934867017],[0.045318603515625,-0.0617980837211484],[0.0439453125,-0.0617980837211484],[0.0439453125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":32,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0617980837211484],[0.045318603515625,-0.0617980837211484],[0.045318603515625,-0.0631713739200889],[0.0439453125,-0.0631713739200889],[0.0439453125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":32,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0631713739200889],[0.045318603515625,-0.0631713739200889],[0.045318603515625,-0.0645446640827373],[0.0439453125,-0.0645446640827373],[0.0439453125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":32,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0645446640827373],[0.045318603515625,-0.0645446640827373],[0.045318603515625,-0.065917954208311],[0.0439453125,-0.065917954208311],[0.0439453125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":33,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0219726557114224],[0.04669189453125,-0.0219726557114224],[0.04669189453125,-0.0233459466196176],[0.045318603515625,-0.0233459466196176],[0.045318603515625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":33,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0233459466196176],[0.04669189453125,-0.0233459466196176],[0.04669189453125,-0.0247192375144014],[0.045318603515625,-0.0247192375144014],[0.045318603515625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":33,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0247192375144014],[0.04669189453125,-0.0247192375144014],[0.04669189453125,-0.026092528394991],[0.045318603515625,-0.026092528394991],[0.045318603515625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":33,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.026092528394991],[0.04669189453125,-0.026092528394991],[0.04669189453125,-0.0274658192605846],[0.045318603515625,-0.0274658192605846],[0.045318603515625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":33,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0274658192605846],[0.04669189453125,-0.0274658192605846],[0.04669189453125,-0.0288391101104026],[0.045318603515625,-0.0288391101104026],[0.045318603515625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":33,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0288391101104026],[0.04669189453125,-0.0288391101104026],[0.04669189453125,-0.0302124009436464],[0.045318603515625,-0.0302124009436464],[0.045318603515625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":33,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0302124009436464],[0.04669189453125,-0.0302124009436464],[0.04669189453125,-0.0315856917595396],[0.045318603515625,-0.0315856917595396],[0.045318603515625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":33,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0315856917595396],[0.04669189453125,-0.0315856917595396],[0.04669189453125,-0.0329589825572836],[0.045318603515625,-0.0329589825572836],[0.045318603515625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":33,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0329589825572836],[0.04669189453125,-0.0329589825572836],[0.04669189453125,-0.0343322733360987],[0.045318603515625,-0.0343322733360987],[0.045318603515625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":33,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0343322733360987],[0.04669189453125,-0.0343322733360987],[0.04669189453125,-0.0357055640951897],[0.045318603515625,-0.0357055640951897],[0.045318603515625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":33,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0357055640951897],[0.04669189453125,-0.0357055640951897],[0.04669189453125,-0.0370788548337641],[0.045318603515625,-0.0370788548337641],[0.045318603515625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":33,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0370788548337641],[0.04669189453125,-0.0370788548337641],[0.04669189453125,-0.0384521455510425],[0.045318603515625,-0.0384521455510425],[0.045318603515625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":33,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0384521455510425],[0.04669189453125,-0.0384521455510425],[0.04669189453125,-0.039825436246223],[0.045318603515625,-0.039825436246223],[0.045318603515625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":33,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.039825436246223],[0.04669189453125,-0.039825436246223],[0.04669189453125,-0.0411987269185324],[0.045318603515625,-0.0411987269185324],[0.045318603515625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":33,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0411987269185324],[0.04669189453125,-0.0411987269185324],[0.04669189453125,-0.042572017567172],[0.045318603515625,-0.042572017567172],[0.045318603515625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":33,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.042572017567172],[0.04669189453125,-0.042572017567172],[0.04669189453125,-0.0439453081913529],[0.045318603515625,-0.0439453081913529],[0.045318603515625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":33,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0439453081913529],[0.04669189453125,-0.0439453081913529],[0.04669189453125,-0.045318598790289],[0.045318603515625,-0.045318598790289],[0.045318603515625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":33,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.045318598790289],[0.04669189453125,-0.045318598790289],[0.04669189453125,-0.0466918893631913],[0.045318603515625,-0.0466918893631913],[0.045318603515625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":33,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0466918893631913],[0.04669189453125,-0.0466918893631913],[0.04669189453125,-0.0480651799092611],[0.045318603515625,-0.0480651799092611],[0.045318603515625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":33,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0480651799092611],[0.04669189453125,-0.0480651799092611],[0.04669189453125,-0.0494384704277221],[0.045318603515625,-0.0494384704277221],[0.045318603515625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":33,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0494384704277221],[0.04669189453125,-0.0494384704277221],[0.04669189453125,-0.0508117609177883],[0.045318603515625,-0.0508117609177883],[0.045318603515625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":33,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0508117609177883],[0.04669189453125,-0.0508117609177883],[0.04669189453125,-0.0521850513786548],[0.045318603515625,-0.0521850513786548],[0.045318603515625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":33,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0521850513786548],[0.04669189453125,-0.0521850513786548],[0.04669189453125,-0.0535583418095483],[0.045318603515625,-0.0535583418095483],[0.045318603515625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":33,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0535583418095483],[0.04669189453125,-0.0535583418095483],[0.04669189453125,-0.0549316322096735],[0.045318603515625,-0.0549316322096735],[0.045318603515625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":33,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0549316322096735],[0.04669189453125,-0.0549316322096735],[0.04669189453125,-0.0563049225782379],[0.045318603515625,-0.0563049225782379],[0.045318603515625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":33,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0563049225782379],[0.04669189453125,-0.0563049225782379],[0.04669189453125,-0.0576782129144526],[0.045318603515625,-0.0576782129144526],[0.045318603515625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":33,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0576782129144526],[0.04669189453125,-0.0576782129144526],[0.04669189453125,-0.0590515032175379],[0.045318603515625,-0.0590515032175379],[0.045318603515625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":33,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0590515032175379],[0.04669189453125,-0.0590515032175379],[0.04669189453125,-0.0604247934867017],[0.045318603515625,-0.0604247934867017],[0.045318603515625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":33,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0604247934867017],[0.04669189453125,-0.0604247934867017],[0.04669189453125,-0.0617980837211484],[0.045318603515625,-0.0617980837211484],[0.045318603515625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":33,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0617980837211484],[0.04669189453125,-0.0617980837211484],[0.04669189453125,-0.0631713739200889],[0.045318603515625,-0.0631713739200889],[0.045318603515625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":33,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0631713739200889],[0.04669189453125,-0.0631713739200889],[0.04669189453125,-0.0645446640827373],[0.045318603515625,-0.0645446640827373],[0.045318603515625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":33,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0645446640827373],[0.04669189453125,-0.0645446640827373],[0.04669189453125,-0.065917954208311],[0.045318603515625,-0.065917954208311],[0.045318603515625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":34,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0219726557114224],[0.048065185546875,-0.0219726557114224],[0.048065185546875,-0.0233459466196176],[0.04669189453125,-0.0233459466196176],[0.04669189453125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":34,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0233459466196176],[0.048065185546875,-0.0233459466196176],[0.048065185546875,-0.0247192375144014],[0.04669189453125,-0.0247192375144014],[0.04669189453125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":34,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0247192375144014],[0.048065185546875,-0.0247192375144014],[0.048065185546875,-0.026092528394991],[0.04669189453125,-0.026092528394991],[0.04669189453125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":34,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.026092528394991],[0.048065185546875,-0.026092528394991],[0.048065185546875,-0.0274658192605846],[0.04669189453125,-0.0274658192605846],[0.04669189453125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":34,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0274658192605846],[0.048065185546875,-0.0274658192605846],[0.048065185546875,-0.0288391101104026],[0.04669189453125,-0.0288391101104026],[0.04669189453125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":34,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0288391101104026],[0.048065185546875,-0.0288391101104026],[0.048065185546875,-0.0302124009436464],[0.04669189453125,-0.0302124009436464],[0.04669189453125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":34,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0302124009436464],[0.048065185546875,-0.0302124009436464],[0.048065185546875,-0.0315856917595396],[0.04669189453125,-0.0315856917595396],[0.04669189453125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":34,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0315856917595396],[0.048065185546875,-0.0315856917595396],[0.048065185546875,-0.0329589825572836],[0.04669189453125,-0.0329589825572836],[0.04669189453125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":34,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0329589825572836],[0.048065185546875,-0.0329589825572836],[0.048065185546875,-0.0343322733360987],[0.04669189453125,-0.0343322733360987],[0.04669189453125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":34,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0343322733360987],[0.048065185546875,-0.0343322733360987],[0.048065185546875,-0.0357055640951897],[0.04669189453125,-0.0357055640951897],[0.04669189453125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":34,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0357055640951897],[0.048065185546875,-0.0357055640951897],[0.048065185546875,-0.0370788548337641],[0.04669189453125,-0.0370788548337641],[0.04669189453125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":34,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0370788548337641],[0.048065185546875,-0.0370788548337641],[0.048065185546875,-0.0384521455510425],[0.04669189453125,-0.0384521455510425],[0.04669189453125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":34,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0384521455510425],[0.048065185546875,-0.0384521455510425],[0.048065185546875,-0.039825436246223],[0.04669189453125,-0.039825436246223],[0.04669189453125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":34,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.039825436246223],[0.048065185546875,-0.039825436246223],[0.048065185546875,-0.0411987269185324],[0.04669189453125,-0.0411987269185324],[0.04669189453125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":34,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0411987269185324],[0.048065185546875,-0.0411987269185324],[0.048065185546875,-0.042572017567172],[0.04669189453125,-0.042572017567172],[0.04669189453125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":34,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.042572017567172],[0.048065185546875,-0.042572017567172],[0.048065185546875,-0.0439453081913529],[0.04669189453125,-0.0439453081913529],[0.04669189453125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":34,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0439453081913529],[0.048065185546875,-0.0439453081913529],[0.048065185546875,-0.045318598790289],[0.04669189453125,-0.045318598790289],[0.04669189453125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":34,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.045318598790289],[0.048065185546875,-0.045318598790289],[0.048065185546875,-0.0466918893631913],[0.04669189453125,-0.0466918893631913],[0.04669189453125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":34,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0466918893631913],[0.048065185546875,-0.0466918893631913],[0.048065185546875,-0.0480651799092611],[0.04669189453125,-0.0480651799092611],[0.04669189453125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":34,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0480651799092611],[0.048065185546875,-0.0480651799092611],[0.048065185546875,-0.0494384704277221],[0.04669189453125,-0.0494384704277221],[0.04669189453125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":34,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0494384704277221],[0.048065185546875,-0.0494384704277221],[0.048065185546875,-0.0508117609177883],[0.04669189453125,-0.0508117609177883],[0.04669189453125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":34,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0508117609177883],[0.048065185546875,-0.0508117609177883],[0.048065185546875,-0.0521850513786548],[0.04669189453125,-0.0521850513786548],[0.04669189453125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":34,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0521850513786548],[0.048065185546875,-0.0521850513786548],[0.048065185546875,-0.0535583418095483],[0.04669189453125,-0.0535583418095483],[0.04669189453125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":34,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0535583418095483],[0.048065185546875,-0.0535583418095483],[0.048065185546875,-0.0549316322096735],[0.04669189453125,-0.0549316322096735],[0.04669189453125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":34,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0549316322096735],[0.048065185546875,-0.0549316322096735],[0.048065185546875,-0.0563049225782379],[0.04669189453125,-0.0563049225782379],[0.04669189453125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":34,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0563049225782379],[0.048065185546875,-0.0563049225782379],[0.048065185546875,-0.0576782129144526],[0.04669189453125,-0.0576782129144526],[0.04669189453125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":34,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0576782129144526],[0.048065185546875,-0.0576782129144526],[0.048065185546875,-0.0590515032175379],[0.04669189453125,-0.0590515032175379],[0.04669189453125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":34,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0590515032175379],[0.048065185546875,-0.0590515032175379],[0.048065185546875,-0.0604247934867017],[0.04669189453125,-0.0604247934867017],[0.04669189453125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":34,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0604247934867017],[0.048065185546875,-0.0604247934867017],[0.048065185546875,-0.0617980837211484],[0.04669189453125,-0.0617980837211484],[0.04669189453125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":34,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0617980837211484],[0.048065185546875,-0.0617980837211484],[0.048065185546875,-0.0631713739200889],[0.04669189453125,-0.0631713739200889],[0.04669189453125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":34,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0631713739200889],[0.048065185546875,-0.0631713739200889],[0.048065185546875,-0.0645446640827373],[0.04669189453125,-0.0645446640827373],[0.04669189453125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":34,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0645446640827373],[0.048065185546875,-0.0645446640827373],[0.048065185546875,-0.065917954208311],[0.04669189453125,-0.065917954208311],[0.04669189453125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":35,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0219726557114224],[0.0494384765625,-0.0219726557114224],[0.0494384765625,-0.0233459466196176],[0.048065185546875,-0.0233459466196176],[0.048065185546875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":35,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0233459466196176],[0.0494384765625,-0.0233459466196176],[0.0494384765625,-0.0247192375144014],[0.048065185546875,-0.0247192375144014],[0.048065185546875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":35,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0247192375144014],[0.0494384765625,-0.0247192375144014],[0.0494384765625,-0.026092528394991],[0.048065185546875,-0.026092528394991],[0.048065185546875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":35,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.026092528394991],[0.0494384765625,-0.026092528394991],[0.0494384765625,-0.0274658192605846],[0.048065185546875,-0.0274658192605846],[0.048065185546875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":35,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0274658192605846],[0.0494384765625,-0.0274658192605846],[0.0494384765625,-0.0288391101104026],[0.048065185546875,-0.0288391101104026],[0.048065185546875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":35,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0288391101104026],[0.0494384765625,-0.0288391101104026],[0.0494384765625,-0.0302124009436464],[0.048065185546875,-0.0302124009436464],[0.048065185546875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":35,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0302124009436464],[0.0494384765625,-0.0302124009436464],[0.0494384765625,-0.0315856917595396],[0.048065185546875,-0.0315856917595396],[0.048065185546875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":35,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0315856917595396],[0.0494384765625,-0.0315856917595396],[0.0494384765625,-0.0329589825572836],[0.048065185546875,-0.0329589825572836],[0.048065185546875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":35,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0329589825572836],[0.0494384765625,-0.0329589825572836],[0.0494384765625,-0.0343322733360987],[0.048065185546875,-0.0343322733360987],[0.048065185546875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":35,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0343322733360987],[0.0494384765625,-0.0343322733360987],[0.0494384765625,-0.0357055640951897],[0.048065185546875,-0.0357055640951897],[0.048065185546875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":35,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0357055640951897],[0.0494384765625,-0.0357055640951897],[0.0494384765625,-0.0370788548337641],[0.048065185546875,-0.0370788548337641],[0.048065185546875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":35,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0370788548337641],[0.0494384765625,-0.0370788548337641],[0.0494384765625,-0.0384521455510425],[0.048065185546875,-0.0384521455510425],[0.048065185546875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":35,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0384521455510425],[0.0494384765625,-0.0384521455510425],[0.0494384765625,-0.039825436246223],[0.048065185546875,-0.039825436246223],[0.048065185546875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":35,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.039825436246223],[0.0494384765625,-0.039825436246223],[0.0494384765625,-0.0411987269185324],[0.048065185546875,-0.0411987269185324],[0.048065185546875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":35,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0411987269185324],[0.0494384765625,-0.0411987269185324],[0.0494384765625,-0.042572017567172],[0.048065185546875,-0.042572017567172],[0.048065185546875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":35,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.042572017567172],[0.0494384765625,-0.042572017567172],[0.0494384765625,-0.0439453081913529],[0.048065185546875,-0.0439453081913529],[0.048065185546875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":35,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0439453081913529],[0.0494384765625,-0.0439453081913529],[0.0494384765625,-0.045318598790289],[0.048065185546875,-0.045318598790289],[0.048065185546875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":35,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.045318598790289],[0.0494384765625,-0.045318598790289],[0.0494384765625,-0.0466918893631913],[0.048065185546875,-0.0466918893631913],[0.048065185546875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":35,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0466918893631913],[0.0494384765625,-0.0466918893631913],[0.0494384765625,-0.0480651799092611],[0.048065185546875,-0.0480651799092611],[0.048065185546875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":35,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0480651799092611],[0.0494384765625,-0.0480651799092611],[0.0494384765625,-0.0494384704277221],[0.048065185546875,-0.0494384704277221],[0.048065185546875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":35,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0494384704277221],[0.0494384765625,-0.0494384704277221],[0.0494384765625,-0.0508117609177883],[0.048065185546875,-0.0508117609177883],[0.048065185546875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":35,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0508117609177883],[0.0494384765625,-0.0508117609177883],[0.0494384765625,-0.0521850513786548],[0.048065185546875,-0.0521850513786548],[0.048065185546875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":35,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0521850513786548],[0.0494384765625,-0.0521850513786548],[0.0494384765625,-0.0535583418095483],[0.048065185546875,-0.0535583418095483],[0.048065185546875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":35,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0535583418095483],[0.0494384765625,-0.0535583418095483],[0.0494384765625,-0.0549316322096735],[0.048065185546875,-0.0549316322096735],[0.048065185546875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":35,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0549316322096735],[0.0494384765625,-0.0549316322096735],[0.0494384765625,-0.0563049225782379],[0.048065185546875,-0.0563049225782379],[0.048065185546875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":35,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0563049225782379],[0.0494384765625,-0.0563049225782379],[0.0494384765625,-0.0576782129144526],[0.048065185546875,-0.0576782129144526],[0.048065185546875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":35,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0576782129144526],[0.0494384765625,-0.0576782129144526],[0.0494384765625,-0.0590515032175379],[0.048065185546875,-0.0590515032175379],[0.048065185546875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":35,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0590515032175379],[0.0494384765625,-0.0590515032175379],[0.0494384765625,-0.0604247934867017],[0.048065185546875,-0.0604247934867017],[0.048065185546875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":35,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0604247934867017],[0.0494384765625,-0.0604247934867017],[0.0494384765625,-0.0617980837211484],[0.048065185546875,-0.0617980837211484],[0.048065185546875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":35,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0617980837211484],[0.0494384765625,-0.0617980837211484],[0.0494384765625,-0.0631713739200889],[0.048065185546875,-0.0631713739200889],[0.048065185546875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":35,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0631713739200889],[0.0494384765625,-0.0631713739200889],[0.0494384765625,-0.0645446640827373],[0.048065185546875,-0.0645446640827373],[0.048065185546875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":35,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0645446640827373],[0.0494384765625,-0.0645446640827373],[0.0494384765625,-0.065917954208311],[0.048065185546875,-0.065917954208311],[0.048065185546875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":36,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0219726557114224],[0.050811767578125,-0.0219726557114224],[0.050811767578125,-0.0233459466196176],[0.0494384765625,-0.0233459466196176],[0.0494384765625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":36,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0233459466196176],[0.050811767578125,-0.0233459466196176],[0.050811767578125,-0.0247192375144014],[0.0494384765625,-0.0247192375144014],[0.0494384765625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":36,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0247192375144014],[0.050811767578125,-0.0247192375144014],[0.050811767578125,-0.026092528394991],[0.0494384765625,-0.026092528394991],[0.0494384765625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":36,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.026092528394991],[0.050811767578125,-0.026092528394991],[0.050811767578125,-0.0274658192605846],[0.0494384765625,-0.0274658192605846],[0.0494384765625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":36,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0274658192605846],[0.050811767578125,-0.0274658192605846],[0.050811767578125,-0.0288391101104026],[0.0494384765625,-0.0288391101104026],[0.0494384765625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":36,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0288391101104026],[0.050811767578125,-0.0288391101104026],[0.050811767578125,-0.0302124009436464],[0.0494384765625,-0.0302124009436464],[0.0494384765625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":36,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0302124009436464],[0.050811767578125,-0.0302124009436464],[0.050811767578125,-0.0315856917595396],[0.0494384765625,-0.0315856917595396],[0.0494384765625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":36,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0315856917595396],[0.050811767578125,-0.0315856917595396],[0.050811767578125,-0.0329589825572836],[0.0494384765625,-0.0329589825572836],[0.0494384765625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":36,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0329589825572836],[0.050811767578125,-0.0329589825572836],[0.050811767578125,-0.0343322733360987],[0.0494384765625,-0.0343322733360987],[0.0494384765625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":36,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0343322733360987],[0.050811767578125,-0.0343322733360987],[0.050811767578125,-0.0357055640951897],[0.0494384765625,-0.0357055640951897],[0.0494384765625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":36,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0357055640951897],[0.050811767578125,-0.0357055640951897],[0.050811767578125,-0.0370788548337641],[0.0494384765625,-0.0370788548337641],[0.0494384765625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":36,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0370788548337641],[0.050811767578125,-0.0370788548337641],[0.050811767578125,-0.0384521455510425],[0.0494384765625,-0.0384521455510425],[0.0494384765625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":36,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0384521455510425],[0.050811767578125,-0.0384521455510425],[0.050811767578125,-0.039825436246223],[0.0494384765625,-0.039825436246223],[0.0494384765625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":36,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.039825436246223],[0.050811767578125,-0.039825436246223],[0.050811767578125,-0.0411987269185324],[0.0494384765625,-0.0411987269185324],[0.0494384765625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":36,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0411987269185324],[0.050811767578125,-0.0411987269185324],[0.050811767578125,-0.042572017567172],[0.0494384765625,-0.042572017567172],[0.0494384765625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":36,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.042572017567172],[0.050811767578125,-0.042572017567172],[0.050811767578125,-0.0439453081913529],[0.0494384765625,-0.0439453081913529],[0.0494384765625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":36,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0439453081913529],[0.050811767578125,-0.0439453081913529],[0.050811767578125,-0.045318598790289],[0.0494384765625,-0.045318598790289],[0.0494384765625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":36,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.045318598790289],[0.050811767578125,-0.045318598790289],[0.050811767578125,-0.0466918893631913],[0.0494384765625,-0.0466918893631913],[0.0494384765625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":36,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0466918893631913],[0.050811767578125,-0.0466918893631913],[0.050811767578125,-0.0480651799092611],[0.0494384765625,-0.0480651799092611],[0.0494384765625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":36,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0480651799092611],[0.050811767578125,-0.0480651799092611],[0.050811767578125,-0.0494384704277221],[0.0494384765625,-0.0494384704277221],[0.0494384765625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":36,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0494384704277221],[0.050811767578125,-0.0494384704277221],[0.050811767578125,-0.0508117609177883],[0.0494384765625,-0.0508117609177883],[0.0494384765625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":36,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0508117609177883],[0.050811767578125,-0.0508117609177883],[0.050811767578125,-0.0521850513786548],[0.0494384765625,-0.0521850513786548],[0.0494384765625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":36,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0521850513786548],[0.050811767578125,-0.0521850513786548],[0.050811767578125,-0.0535583418095483],[0.0494384765625,-0.0535583418095483],[0.0494384765625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":36,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0535583418095483],[0.050811767578125,-0.0535583418095483],[0.050811767578125,-0.0549316322096735],[0.0494384765625,-0.0549316322096735],[0.0494384765625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":36,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0549316322096735],[0.050811767578125,-0.0549316322096735],[0.050811767578125,-0.0563049225782379],[0.0494384765625,-0.0563049225782379],[0.0494384765625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":36,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0563049225782379],[0.050811767578125,-0.0563049225782379],[0.050811767578125,-0.0576782129144526],[0.0494384765625,-0.0576782129144526],[0.0494384765625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":36,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0576782129144526],[0.050811767578125,-0.0576782129144526],[0.050811767578125,-0.0590515032175379],[0.0494384765625,-0.0590515032175379],[0.0494384765625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":36,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0590515032175379],[0.050811767578125,-0.0590515032175379],[0.050811767578125,-0.0604247934867017],[0.0494384765625,-0.0604247934867017],[0.0494384765625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":36,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0604247934867017],[0.050811767578125,-0.0604247934867017],[0.050811767578125,-0.0617980837211484],[0.0494384765625,-0.0617980837211484],[0.0494384765625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":36,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0617980837211484],[0.050811767578125,-0.0617980837211484],[0.050811767578125,-0.0631713739200889],[0.0494384765625,-0.0631713739200889],[0.0494384765625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":36,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0631713739200889],[0.050811767578125,-0.0631713739200889],[0.050811767578125,-0.0645446640827373],[0.0494384765625,-0.0645446640827373],[0.0494384765625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":36,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0645446640827373],[0.050811767578125,-0.0645446640827373],[0.050811767578125,-0.065917954208311],[0.0494384765625,-0.065917954208311],[0.0494384765625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":37,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0219726557114224],[0.05218505859375,-0.0219726557114224],[0.05218505859375,-0.0233459466196176],[0.050811767578125,-0.0233459466196176],[0.050811767578125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":37,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0233459466196176],[0.05218505859375,-0.0233459466196176],[0.05218505859375,-0.0247192375144014],[0.050811767578125,-0.0247192375144014],[0.050811767578125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":37,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0247192375144014],[0.05218505859375,-0.0247192375144014],[0.05218505859375,-0.026092528394991],[0.050811767578125,-0.026092528394991],[0.050811767578125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":37,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.026092528394991],[0.05218505859375,-0.026092528394991],[0.05218505859375,-0.0274658192605846],[0.050811767578125,-0.0274658192605846],[0.050811767578125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":37,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0274658192605846],[0.05218505859375,-0.0274658192605846],[0.05218505859375,-0.0288391101104026],[0.050811767578125,-0.0288391101104026],[0.050811767578125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":37,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0288391101104026],[0.05218505859375,-0.0288391101104026],[0.05218505859375,-0.0302124009436464],[0.050811767578125,-0.0302124009436464],[0.050811767578125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":37,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0302124009436464],[0.05218505859375,-0.0302124009436464],[0.05218505859375,-0.0315856917595396],[0.050811767578125,-0.0315856917595396],[0.050811767578125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":37,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0315856917595396],[0.05218505859375,-0.0315856917595396],[0.05218505859375,-0.0329589825572836],[0.050811767578125,-0.0329589825572836],[0.050811767578125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":37,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0329589825572836],[0.05218505859375,-0.0329589825572836],[0.05218505859375,-0.0343322733360987],[0.050811767578125,-0.0343322733360987],[0.050811767578125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":37,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0343322733360987],[0.05218505859375,-0.0343322733360987],[0.05218505859375,-0.0357055640951897],[0.050811767578125,-0.0357055640951897],[0.050811767578125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":37,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0357055640951897],[0.05218505859375,-0.0357055640951897],[0.05218505859375,-0.0370788548337641],[0.050811767578125,-0.0370788548337641],[0.050811767578125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":37,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0370788548337641],[0.05218505859375,-0.0370788548337641],[0.05218505859375,-0.0384521455510425],[0.050811767578125,-0.0384521455510425],[0.050811767578125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":37,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0384521455510425],[0.05218505859375,-0.0384521455510425],[0.05218505859375,-0.039825436246223],[0.050811767578125,-0.039825436246223],[0.050811767578125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":37,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.039825436246223],[0.05218505859375,-0.039825436246223],[0.05218505859375,-0.0411987269185324],[0.050811767578125,-0.0411987269185324],[0.050811767578125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":37,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0411987269185324],[0.05218505859375,-0.0411987269185324],[0.05218505859375,-0.042572017567172],[0.050811767578125,-0.042572017567172],[0.050811767578125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":37,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.042572017567172],[0.05218505859375,-0.042572017567172],[0.05218505859375,-0.0439453081913529],[0.050811767578125,-0.0439453081913529],[0.050811767578125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":37,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0439453081913529],[0.05218505859375,-0.0439453081913529],[0.05218505859375,-0.045318598790289],[0.050811767578125,-0.045318598790289],[0.050811767578125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":37,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.045318598790289],[0.05218505859375,-0.045318598790289],[0.05218505859375,-0.0466918893631913],[0.050811767578125,-0.0466918893631913],[0.050811767578125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":37,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0466918893631913],[0.05218505859375,-0.0466918893631913],[0.05218505859375,-0.0480651799092611],[0.050811767578125,-0.0480651799092611],[0.050811767578125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":37,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0480651799092611],[0.05218505859375,-0.0480651799092611],[0.05218505859375,-0.0494384704277221],[0.050811767578125,-0.0494384704277221],[0.050811767578125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":37,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0494384704277221],[0.05218505859375,-0.0494384704277221],[0.05218505859375,-0.0508117609177883],[0.050811767578125,-0.0508117609177883],[0.050811767578125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":37,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0508117609177883],[0.05218505859375,-0.0508117609177883],[0.05218505859375,-0.0521850513786548],[0.050811767578125,-0.0521850513786548],[0.050811767578125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":37,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0521850513786548],[0.05218505859375,-0.0521850513786548],[0.05218505859375,-0.0535583418095483],[0.050811767578125,-0.0535583418095483],[0.050811767578125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":37,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0535583418095483],[0.05218505859375,-0.0535583418095483],[0.05218505859375,-0.0549316322096735],[0.050811767578125,-0.0549316322096735],[0.050811767578125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":37,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0549316322096735],[0.05218505859375,-0.0549316322096735],[0.05218505859375,-0.0563049225782379],[0.050811767578125,-0.0563049225782379],[0.050811767578125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":37,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0563049225782379],[0.05218505859375,-0.0563049225782379],[0.05218505859375,-0.0576782129144526],[0.050811767578125,-0.0576782129144526],[0.050811767578125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":37,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0576782129144526],[0.05218505859375,-0.0576782129144526],[0.05218505859375,-0.0590515032175379],[0.050811767578125,-0.0590515032175379],[0.050811767578125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":37,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0590515032175379],[0.05218505859375,-0.0590515032175379],[0.05218505859375,-0.0604247934867017],[0.050811767578125,-0.0604247934867017],[0.050811767578125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":37,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0604247934867017],[0.05218505859375,-0.0604247934867017],[0.05218505859375,-0.0617980837211484],[0.050811767578125,-0.0617980837211484],[0.050811767578125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":37,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0617980837211484],[0.05218505859375,-0.0617980837211484],[0.05218505859375,-0.0631713739200889],[0.050811767578125,-0.0631713739200889],[0.050811767578125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":37,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0631713739200889],[0.05218505859375,-0.0631713739200889],[0.05218505859375,-0.0645446640827373],[0.050811767578125,-0.0645446640827373],[0.050811767578125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":37,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0645446640827373],[0.05218505859375,-0.0645446640827373],[0.05218505859375,-0.065917954208311],[0.050811767578125,-0.065917954208311],[0.050811767578125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":38,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0219726557114224],[0.053558349609375,-0.0219726557114224],[0.053558349609375,-0.0233459466196176],[0.05218505859375,-0.0233459466196176],[0.05218505859375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":38,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0233459466196176],[0.053558349609375,-0.0233459466196176],[0.053558349609375,-0.0247192375144014],[0.05218505859375,-0.0247192375144014],[0.05218505859375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":38,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0247192375144014],[0.053558349609375,-0.0247192375144014],[0.053558349609375,-0.026092528394991],[0.05218505859375,-0.026092528394991],[0.05218505859375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":38,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.026092528394991],[0.053558349609375,-0.026092528394991],[0.053558349609375,-0.0274658192605846],[0.05218505859375,-0.0274658192605846],[0.05218505859375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":38,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0274658192605846],[0.053558349609375,-0.0274658192605846],[0.053558349609375,-0.0288391101104026],[0.05218505859375,-0.0288391101104026],[0.05218505859375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":38,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0288391101104026],[0.053558349609375,-0.0288391101104026],[0.053558349609375,-0.0302124009436464],[0.05218505859375,-0.0302124009436464],[0.05218505859375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":38,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0302124009436464],[0.053558349609375,-0.0302124009436464],[0.053558349609375,-0.0315856917595396],[0.05218505859375,-0.0315856917595396],[0.05218505859375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":38,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0315856917595396],[0.053558349609375,-0.0315856917595396],[0.053558349609375,-0.0329589825572836],[0.05218505859375,-0.0329589825572836],[0.05218505859375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":38,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0329589825572836],[0.053558349609375,-0.0329589825572836],[0.053558349609375,-0.0343322733360987],[0.05218505859375,-0.0343322733360987],[0.05218505859375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":38,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0343322733360987],[0.053558349609375,-0.0343322733360987],[0.053558349609375,-0.0357055640951897],[0.05218505859375,-0.0357055640951897],[0.05218505859375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":38,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0357055640951897],[0.053558349609375,-0.0357055640951897],[0.053558349609375,-0.0370788548337641],[0.05218505859375,-0.0370788548337641],[0.05218505859375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":38,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0370788548337641],[0.053558349609375,-0.0370788548337641],[0.053558349609375,-0.0384521455510425],[0.05218505859375,-0.0384521455510425],[0.05218505859375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":38,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0384521455510425],[0.053558349609375,-0.0384521455510425],[0.053558349609375,-0.039825436246223],[0.05218505859375,-0.039825436246223],[0.05218505859375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":38,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.039825436246223],[0.053558349609375,-0.039825436246223],[0.053558349609375,-0.0411987269185324],[0.05218505859375,-0.0411987269185324],[0.05218505859375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":38,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0411987269185324],[0.053558349609375,-0.0411987269185324],[0.053558349609375,-0.042572017567172],[0.05218505859375,-0.042572017567172],[0.05218505859375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":38,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.042572017567172],[0.053558349609375,-0.042572017567172],[0.053558349609375,-0.0439453081913529],[0.05218505859375,-0.0439453081913529],[0.05218505859375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":38,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0439453081913529],[0.053558349609375,-0.0439453081913529],[0.053558349609375,-0.045318598790289],[0.05218505859375,-0.045318598790289],[0.05218505859375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":38,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.045318598790289],[0.053558349609375,-0.045318598790289],[0.053558349609375,-0.0466918893631913],[0.05218505859375,-0.0466918893631913],[0.05218505859375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":38,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0466918893631913],[0.053558349609375,-0.0466918893631913],[0.053558349609375,-0.0480651799092611],[0.05218505859375,-0.0480651799092611],[0.05218505859375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":38,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0480651799092611],[0.053558349609375,-0.0480651799092611],[0.053558349609375,-0.0494384704277221],[0.05218505859375,-0.0494384704277221],[0.05218505859375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":38,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0494384704277221],[0.053558349609375,-0.0494384704277221],[0.053558349609375,-0.0508117609177883],[0.05218505859375,-0.0508117609177883],[0.05218505859375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":38,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0508117609177883],[0.053558349609375,-0.0508117609177883],[0.053558349609375,-0.0521850513786548],[0.05218505859375,-0.0521850513786548],[0.05218505859375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":38,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0521850513786548],[0.053558349609375,-0.0521850513786548],[0.053558349609375,-0.0535583418095483],[0.05218505859375,-0.0535583418095483],[0.05218505859375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":38,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0535583418095483],[0.053558349609375,-0.0535583418095483],[0.053558349609375,-0.0549316322096735],[0.05218505859375,-0.0549316322096735],[0.05218505859375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":38,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0549316322096735],[0.053558349609375,-0.0549316322096735],[0.053558349609375,-0.0563049225782379],[0.05218505859375,-0.0563049225782379],[0.05218505859375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":38,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0563049225782379],[0.053558349609375,-0.0563049225782379],[0.053558349609375,-0.0576782129144526],[0.05218505859375,-0.0576782129144526],[0.05218505859375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":38,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0576782129144526],[0.053558349609375,-0.0576782129144526],[0.053558349609375,-0.0590515032175379],[0.05218505859375,-0.0590515032175379],[0.05218505859375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":38,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0590515032175379],[0.053558349609375,-0.0590515032175379],[0.053558349609375,-0.0604247934867017],[0.05218505859375,-0.0604247934867017],[0.05218505859375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":38,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0604247934867017],[0.053558349609375,-0.0604247934867017],[0.053558349609375,-0.0617980837211484],[0.05218505859375,-0.0617980837211484],[0.05218505859375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":38,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0617980837211484],[0.053558349609375,-0.0617980837211484],[0.053558349609375,-0.0631713739200889],[0.05218505859375,-0.0631713739200889],[0.05218505859375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":38,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0631713739200889],[0.053558349609375,-0.0631713739200889],[0.053558349609375,-0.0645446640827373],[0.05218505859375,-0.0645446640827373],[0.05218505859375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":38,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0645446640827373],[0.053558349609375,-0.0645446640827373],[0.053558349609375,-0.065917954208311],[0.05218505859375,-0.065917954208311],[0.05218505859375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":39,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0219726557114224],[0.054931640625,-0.0219726557114224],[0.054931640625,-0.0233459466196176],[0.053558349609375,-0.0233459466196176],[0.053558349609375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":39,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0233459466196176],[0.054931640625,-0.0233459466196176],[0.054931640625,-0.0247192375144014],[0.053558349609375,-0.0247192375144014],[0.053558349609375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":39,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0247192375144014],[0.054931640625,-0.0247192375144014],[0.054931640625,-0.026092528394991],[0.053558349609375,-0.026092528394991],[0.053558349609375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":39,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.026092528394991],[0.054931640625,-0.026092528394991],[0.054931640625,-0.0274658192605846],[0.053558349609375,-0.0274658192605846],[0.053558349609375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":39,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0274658192605846],[0.054931640625,-0.0274658192605846],[0.054931640625,-0.0288391101104026],[0.053558349609375,-0.0288391101104026],[0.053558349609375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":39,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0288391101104026],[0.054931640625,-0.0288391101104026],[0.054931640625,-0.0302124009436464],[0.053558349609375,-0.0302124009436464],[0.053558349609375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":39,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0302124009436464],[0.054931640625,-0.0302124009436464],[0.054931640625,-0.0315856917595396],[0.053558349609375,-0.0315856917595396],[0.053558349609375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":39,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0315856917595396],[0.054931640625,-0.0315856917595396],[0.054931640625,-0.0329589825572836],[0.053558349609375,-0.0329589825572836],[0.053558349609375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":39,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0329589825572836],[0.054931640625,-0.0329589825572836],[0.054931640625,-0.0343322733360987],[0.053558349609375,-0.0343322733360987],[0.053558349609375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":39,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0343322733360987],[0.054931640625,-0.0343322733360987],[0.054931640625,-0.0357055640951897],[0.053558349609375,-0.0357055640951897],[0.053558349609375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":39,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0357055640951897],[0.054931640625,-0.0357055640951897],[0.054931640625,-0.0370788548337641],[0.053558349609375,-0.0370788548337641],[0.053558349609375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":39,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0370788548337641],[0.054931640625,-0.0370788548337641],[0.054931640625,-0.0384521455510425],[0.053558349609375,-0.0384521455510425],[0.053558349609375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":39,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0384521455510425],[0.054931640625,-0.0384521455510425],[0.054931640625,-0.039825436246223],[0.053558349609375,-0.039825436246223],[0.053558349609375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":39,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.039825436246223],[0.054931640625,-0.039825436246223],[0.054931640625,-0.0411987269185324],[0.053558349609375,-0.0411987269185324],[0.053558349609375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":39,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0411987269185324],[0.054931640625,-0.0411987269185324],[0.054931640625,-0.042572017567172],[0.053558349609375,-0.042572017567172],[0.053558349609375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":39,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.042572017567172],[0.054931640625,-0.042572017567172],[0.054931640625,-0.0439453081913529],[0.053558349609375,-0.0439453081913529],[0.053558349609375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":39,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0439453081913529],[0.054931640625,-0.0439453081913529],[0.054931640625,-0.045318598790289],[0.053558349609375,-0.045318598790289],[0.053558349609375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":39,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.045318598790289],[0.054931640625,-0.045318598790289],[0.054931640625,-0.0466918893631913],[0.053558349609375,-0.0466918893631913],[0.053558349609375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":39,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0466918893631913],[0.054931640625,-0.0466918893631913],[0.054931640625,-0.0480651799092611],[0.053558349609375,-0.0480651799092611],[0.053558349609375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":39,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0480651799092611],[0.054931640625,-0.0480651799092611],[0.054931640625,-0.0494384704277221],[0.053558349609375,-0.0494384704277221],[0.053558349609375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":39,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0494384704277221],[0.054931640625,-0.0494384704277221],[0.054931640625,-0.0508117609177883],[0.053558349609375,-0.0508117609177883],[0.053558349609375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":39,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0508117609177883],[0.054931640625,-0.0508117609177883],[0.054931640625,-0.0521850513786548],[0.053558349609375,-0.0521850513786548],[0.053558349609375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":39,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0521850513786548],[0.054931640625,-0.0521850513786548],[0.054931640625,-0.0535583418095483],[0.053558349609375,-0.0535583418095483],[0.053558349609375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":39,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0535583418095483],[0.054931640625,-0.0535583418095483],[0.054931640625,-0.0549316322096735],[0.053558349609375,-0.0549316322096735],[0.053558349609375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":39,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0549316322096735],[0.054931640625,-0.0549316322096735],[0.054931640625,-0.0563049225782379],[0.053558349609375,-0.0563049225782379],[0.053558349609375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":39,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0563049225782379],[0.054931640625,-0.0563049225782379],[0.054931640625,-0.0576782129144526],[0.053558349609375,-0.0576782129144526],[0.053558349609375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":39,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0576782129144526],[0.054931640625,-0.0576782129144526],[0.054931640625,-0.0590515032175379],[0.053558349609375,-0.0590515032175379],[0.053558349609375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":39,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0590515032175379],[0.054931640625,-0.0590515032175379],[0.054931640625,-0.0604247934867017],[0.053558349609375,-0.0604247934867017],[0.053558349609375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":39,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0604247934867017],[0.054931640625,-0.0604247934867017],[0.054931640625,-0.0617980837211484],[0.053558349609375,-0.0617980837211484],[0.053558349609375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":39,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0617980837211484],[0.054931640625,-0.0617980837211484],[0.054931640625,-0.0631713739200889],[0.053558349609375,-0.0631713739200889],[0.053558349609375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":39,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0631713739200889],[0.054931640625,-0.0631713739200889],[0.054931640625,-0.0645446640827373],[0.053558349609375,-0.0645446640827373],[0.053558349609375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":39,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0645446640827373],[0.054931640625,-0.0645446640827373],[0.054931640625,-0.065917954208311],[0.053558349609375,-0.065917954208311],[0.053558349609375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":40,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0219726557114224],[0.056304931640625,-0.0219726557114224],[0.056304931640625,-0.0233459466196176],[0.054931640625,-0.0233459466196176],[0.054931640625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":40,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0233459466196176],[0.056304931640625,-0.0233459466196176],[0.056304931640625,-0.0247192375144014],[0.054931640625,-0.0247192375144014],[0.054931640625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":40,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0247192375144014],[0.056304931640625,-0.0247192375144014],[0.056304931640625,-0.026092528394991],[0.054931640625,-0.026092528394991],[0.054931640625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":40,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.026092528394991],[0.056304931640625,-0.026092528394991],[0.056304931640625,-0.0274658192605846],[0.054931640625,-0.0274658192605846],[0.054931640625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":40,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0274658192605846],[0.056304931640625,-0.0274658192605846],[0.056304931640625,-0.0288391101104026],[0.054931640625,-0.0288391101104026],[0.054931640625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":40,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0288391101104026],[0.056304931640625,-0.0288391101104026],[0.056304931640625,-0.0302124009436464],[0.054931640625,-0.0302124009436464],[0.054931640625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":40,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0302124009436464],[0.056304931640625,-0.0302124009436464],[0.056304931640625,-0.0315856917595396],[0.054931640625,-0.0315856917595396],[0.054931640625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":40,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0315856917595396],[0.056304931640625,-0.0315856917595396],[0.056304931640625,-0.0329589825572836],[0.054931640625,-0.0329589825572836],[0.054931640625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":40,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0329589825572836],[0.056304931640625,-0.0329589825572836],[0.056304931640625,-0.0343322733360987],[0.054931640625,-0.0343322733360987],[0.054931640625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":40,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0343322733360987],[0.056304931640625,-0.0343322733360987],[0.056304931640625,-0.0357055640951897],[0.054931640625,-0.0357055640951897],[0.054931640625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":40,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0357055640951897],[0.056304931640625,-0.0357055640951897],[0.056304931640625,-0.0370788548337641],[0.054931640625,-0.0370788548337641],[0.054931640625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":40,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0370788548337641],[0.056304931640625,-0.0370788548337641],[0.056304931640625,-0.0384521455510425],[0.054931640625,-0.0384521455510425],[0.054931640625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":40,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0384521455510425],[0.056304931640625,-0.0384521455510425],[0.056304931640625,-0.039825436246223],[0.054931640625,-0.039825436246223],[0.054931640625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":40,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.039825436246223],[0.056304931640625,-0.039825436246223],[0.056304931640625,-0.0411987269185324],[0.054931640625,-0.0411987269185324],[0.054931640625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":40,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0411987269185324],[0.056304931640625,-0.0411987269185324],[0.056304931640625,-0.042572017567172],[0.054931640625,-0.042572017567172],[0.054931640625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":40,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.042572017567172],[0.056304931640625,-0.042572017567172],[0.056304931640625,-0.0439453081913529],[0.054931640625,-0.0439453081913529],[0.054931640625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":40,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0439453081913529],[0.056304931640625,-0.0439453081913529],[0.056304931640625,-0.045318598790289],[0.054931640625,-0.045318598790289],[0.054931640625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":40,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.045318598790289],[0.056304931640625,-0.045318598790289],[0.056304931640625,-0.0466918893631913],[0.054931640625,-0.0466918893631913],[0.054931640625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":40,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0466918893631913],[0.056304931640625,-0.0466918893631913],[0.056304931640625,-0.0480651799092611],[0.054931640625,-0.0480651799092611],[0.054931640625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":40,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0480651799092611],[0.056304931640625,-0.0480651799092611],[0.056304931640625,-0.0494384704277221],[0.054931640625,-0.0494384704277221],[0.054931640625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":40,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0494384704277221],[0.056304931640625,-0.0494384704277221],[0.056304931640625,-0.0508117609177883],[0.054931640625,-0.0508117609177883],[0.054931640625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":40,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0508117609177883],[0.056304931640625,-0.0508117609177883],[0.056304931640625,-0.0521850513786548],[0.054931640625,-0.0521850513786548],[0.054931640625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":40,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0521850513786548],[0.056304931640625,-0.0521850513786548],[0.056304931640625,-0.0535583418095483],[0.054931640625,-0.0535583418095483],[0.054931640625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":40,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0535583418095483],[0.056304931640625,-0.0535583418095483],[0.056304931640625,-0.0549316322096735],[0.054931640625,-0.0549316322096735],[0.054931640625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":40,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0549316322096735],[0.056304931640625,-0.0549316322096735],[0.056304931640625,-0.0563049225782379],[0.054931640625,-0.0563049225782379],[0.054931640625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":40,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0563049225782379],[0.056304931640625,-0.0563049225782379],[0.056304931640625,-0.0576782129144526],[0.054931640625,-0.0576782129144526],[0.054931640625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":40,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0576782129144526],[0.056304931640625,-0.0576782129144526],[0.056304931640625,-0.0590515032175379],[0.054931640625,-0.0590515032175379],[0.054931640625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":40,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0590515032175379],[0.056304931640625,-0.0590515032175379],[0.056304931640625,-0.0604247934867017],[0.054931640625,-0.0604247934867017],[0.054931640625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":40,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0604247934867017],[0.056304931640625,-0.0604247934867017],[0.056304931640625,-0.0617980837211484],[0.054931640625,-0.0617980837211484],[0.054931640625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":40,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0617980837211484],[0.056304931640625,-0.0617980837211484],[0.056304931640625,-0.0631713739200889],[0.054931640625,-0.0631713739200889],[0.054931640625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":40,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0631713739200889],[0.056304931640625,-0.0631713739200889],[0.056304931640625,-0.0645446640827373],[0.054931640625,-0.0645446640827373],[0.054931640625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":40,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0645446640827373],[0.056304931640625,-0.0645446640827373],[0.056304931640625,-0.065917954208311],[0.054931640625,-0.065917954208311],[0.054931640625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":41,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0219726557114224],[0.05767822265625,-0.0219726557114224],[0.05767822265625,-0.0233459466196176],[0.056304931640625,-0.0233459466196176],[0.056304931640625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":41,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0233459466196176],[0.05767822265625,-0.0233459466196176],[0.05767822265625,-0.0247192375144014],[0.056304931640625,-0.0247192375144014],[0.056304931640625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":41,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0247192375144014],[0.05767822265625,-0.0247192375144014],[0.05767822265625,-0.026092528394991],[0.056304931640625,-0.026092528394991],[0.056304931640625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":41,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.026092528394991],[0.05767822265625,-0.026092528394991],[0.05767822265625,-0.0274658192605846],[0.056304931640625,-0.0274658192605846],[0.056304931640625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":41,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0274658192605846],[0.05767822265625,-0.0274658192605846],[0.05767822265625,-0.0288391101104026],[0.056304931640625,-0.0288391101104026],[0.056304931640625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":41,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0288391101104026],[0.05767822265625,-0.0288391101104026],[0.05767822265625,-0.0302124009436464],[0.056304931640625,-0.0302124009436464],[0.056304931640625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":41,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0302124009436464],[0.05767822265625,-0.0302124009436464],[0.05767822265625,-0.0315856917595396],[0.056304931640625,-0.0315856917595396],[0.056304931640625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":41,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0315856917595396],[0.05767822265625,-0.0315856917595396],[0.05767822265625,-0.0329589825572836],[0.056304931640625,-0.0329589825572836],[0.056304931640625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":41,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0329589825572836],[0.05767822265625,-0.0329589825572836],[0.05767822265625,-0.0343322733360987],[0.056304931640625,-0.0343322733360987],[0.056304931640625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":41,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0343322733360987],[0.05767822265625,-0.0343322733360987],[0.05767822265625,-0.0357055640951897],[0.056304931640625,-0.0357055640951897],[0.056304931640625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":41,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0357055640951897],[0.05767822265625,-0.0357055640951897],[0.05767822265625,-0.0370788548337641],[0.056304931640625,-0.0370788548337641],[0.056304931640625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":41,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0370788548337641],[0.05767822265625,-0.0370788548337641],[0.05767822265625,-0.0384521455510425],[0.056304931640625,-0.0384521455510425],[0.056304931640625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":41,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0384521455510425],[0.05767822265625,-0.0384521455510425],[0.05767822265625,-0.039825436246223],[0.056304931640625,-0.039825436246223],[0.056304931640625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":41,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.039825436246223],[0.05767822265625,-0.039825436246223],[0.05767822265625,-0.0411987269185324],[0.056304931640625,-0.0411987269185324],[0.056304931640625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":41,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0411987269185324],[0.05767822265625,-0.0411987269185324],[0.05767822265625,-0.042572017567172],[0.056304931640625,-0.042572017567172],[0.056304931640625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":41,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.042572017567172],[0.05767822265625,-0.042572017567172],[0.05767822265625,-0.0439453081913529],[0.056304931640625,-0.0439453081913529],[0.056304931640625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":41,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0439453081913529],[0.05767822265625,-0.0439453081913529],[0.05767822265625,-0.045318598790289],[0.056304931640625,-0.045318598790289],[0.056304931640625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":41,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.045318598790289],[0.05767822265625,-0.045318598790289],[0.05767822265625,-0.0466918893631913],[0.056304931640625,-0.0466918893631913],[0.056304931640625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":41,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0466918893631913],[0.05767822265625,-0.0466918893631913],[0.05767822265625,-0.0480651799092611],[0.056304931640625,-0.0480651799092611],[0.056304931640625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":41,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0480651799092611],[0.05767822265625,-0.0480651799092611],[0.05767822265625,-0.0494384704277221],[0.056304931640625,-0.0494384704277221],[0.056304931640625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":41,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0494384704277221],[0.05767822265625,-0.0494384704277221],[0.05767822265625,-0.0508117609177883],[0.056304931640625,-0.0508117609177883],[0.056304931640625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":41,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0508117609177883],[0.05767822265625,-0.0508117609177883],[0.05767822265625,-0.0521850513786548],[0.056304931640625,-0.0521850513786548],[0.056304931640625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":41,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0521850513786548],[0.05767822265625,-0.0521850513786548],[0.05767822265625,-0.0535583418095483],[0.056304931640625,-0.0535583418095483],[0.056304931640625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":41,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0535583418095483],[0.05767822265625,-0.0535583418095483],[0.05767822265625,-0.0549316322096735],[0.056304931640625,-0.0549316322096735],[0.056304931640625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":41,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0549316322096735],[0.05767822265625,-0.0549316322096735],[0.05767822265625,-0.0563049225782379],[0.056304931640625,-0.0563049225782379],[0.056304931640625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":41,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0563049225782379],[0.05767822265625,-0.0563049225782379],[0.05767822265625,-0.0576782129144526],[0.056304931640625,-0.0576782129144526],[0.056304931640625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":41,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0576782129144526],[0.05767822265625,-0.0576782129144526],[0.05767822265625,-0.0590515032175379],[0.056304931640625,-0.0590515032175379],[0.056304931640625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":41,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0590515032175379],[0.05767822265625,-0.0590515032175379],[0.05767822265625,-0.0604247934867017],[0.056304931640625,-0.0604247934867017],[0.056304931640625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":41,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0604247934867017],[0.05767822265625,-0.0604247934867017],[0.05767822265625,-0.0617980837211484],[0.056304931640625,-0.0617980837211484],[0.056304931640625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":41,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0617980837211484],[0.05767822265625,-0.0617980837211484],[0.05767822265625,-0.0631713739200889],[0.056304931640625,-0.0631713739200889],[0.056304931640625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":41,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0631713739200889],[0.05767822265625,-0.0631713739200889],[0.05767822265625,-0.0645446640827373],[0.056304931640625,-0.0645446640827373],[0.056304931640625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":41,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0645446640827373],[0.05767822265625,-0.0645446640827373],[0.05767822265625,-0.065917954208311],[0.056304931640625,-0.065917954208311],[0.056304931640625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":42,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0219726557114224],[0.059051513671875,-0.0219726557114224],[0.059051513671875,-0.0233459466196176],[0.05767822265625,-0.0233459466196176],[0.05767822265625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":42,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0233459466196176],[0.059051513671875,-0.0233459466196176],[0.059051513671875,-0.0247192375144014],[0.05767822265625,-0.0247192375144014],[0.05767822265625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":42,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0247192375144014],[0.059051513671875,-0.0247192375144014],[0.059051513671875,-0.026092528394991],[0.05767822265625,-0.026092528394991],[0.05767822265625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":42,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.026092528394991],[0.059051513671875,-0.026092528394991],[0.059051513671875,-0.0274658192605846],[0.05767822265625,-0.0274658192605846],[0.05767822265625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":42,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0274658192605846],[0.059051513671875,-0.0274658192605846],[0.059051513671875,-0.0288391101104026],[0.05767822265625,-0.0288391101104026],[0.05767822265625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":42,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0288391101104026],[0.059051513671875,-0.0288391101104026],[0.059051513671875,-0.0302124009436464],[0.05767822265625,-0.0302124009436464],[0.05767822265625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":42,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0302124009436464],[0.059051513671875,-0.0302124009436464],[0.059051513671875,-0.0315856917595396],[0.05767822265625,-0.0315856917595396],[0.05767822265625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":42,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0315856917595396],[0.059051513671875,-0.0315856917595396],[0.059051513671875,-0.0329589825572836],[0.05767822265625,-0.0329589825572836],[0.05767822265625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":42,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0329589825572836],[0.059051513671875,-0.0329589825572836],[0.059051513671875,-0.0343322733360987],[0.05767822265625,-0.0343322733360987],[0.05767822265625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":42,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0343322733360987],[0.059051513671875,-0.0343322733360987],[0.059051513671875,-0.0357055640951897],[0.05767822265625,-0.0357055640951897],[0.05767822265625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":42,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0357055640951897],[0.059051513671875,-0.0357055640951897],[0.059051513671875,-0.0370788548337641],[0.05767822265625,-0.0370788548337641],[0.05767822265625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":42,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0370788548337641],[0.059051513671875,-0.0370788548337641],[0.059051513671875,-0.0384521455510425],[0.05767822265625,-0.0384521455510425],[0.05767822265625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":42,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0384521455510425],[0.059051513671875,-0.0384521455510425],[0.059051513671875,-0.039825436246223],[0.05767822265625,-0.039825436246223],[0.05767822265625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":42,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.039825436246223],[0.059051513671875,-0.039825436246223],[0.059051513671875,-0.0411987269185324],[0.05767822265625,-0.0411987269185324],[0.05767822265625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":42,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0411987269185324],[0.059051513671875,-0.0411987269185324],[0.059051513671875,-0.042572017567172],[0.05767822265625,-0.042572017567172],[0.05767822265625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":42,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.042572017567172],[0.059051513671875,-0.042572017567172],[0.059051513671875,-0.0439453081913529],[0.05767822265625,-0.0439453081913529],[0.05767822265625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":42,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0439453081913529],[0.059051513671875,-0.0439453081913529],[0.059051513671875,-0.045318598790289],[0.05767822265625,-0.045318598790289],[0.05767822265625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":42,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.045318598790289],[0.059051513671875,-0.045318598790289],[0.059051513671875,-0.0466918893631913],[0.05767822265625,-0.0466918893631913],[0.05767822265625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":42,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0466918893631913],[0.059051513671875,-0.0466918893631913],[0.059051513671875,-0.0480651799092611],[0.05767822265625,-0.0480651799092611],[0.05767822265625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":42,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0480651799092611],[0.059051513671875,-0.0480651799092611],[0.059051513671875,-0.0494384704277221],[0.05767822265625,-0.0494384704277221],[0.05767822265625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":42,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0494384704277221],[0.059051513671875,-0.0494384704277221],[0.059051513671875,-0.0508117609177883],[0.05767822265625,-0.0508117609177883],[0.05767822265625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":42,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0508117609177883],[0.059051513671875,-0.0508117609177883],[0.059051513671875,-0.0521850513786548],[0.05767822265625,-0.0521850513786548],[0.05767822265625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":42,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0521850513786548],[0.059051513671875,-0.0521850513786548],[0.059051513671875,-0.0535583418095483],[0.05767822265625,-0.0535583418095483],[0.05767822265625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":42,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0535583418095483],[0.059051513671875,-0.0535583418095483],[0.059051513671875,-0.0549316322096735],[0.05767822265625,-0.0549316322096735],[0.05767822265625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":42,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0549316322096735],[0.059051513671875,-0.0549316322096735],[0.059051513671875,-0.0563049225782379],[0.05767822265625,-0.0563049225782379],[0.05767822265625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":42,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0563049225782379],[0.059051513671875,-0.0563049225782379],[0.059051513671875,-0.0576782129144526],[0.05767822265625,-0.0576782129144526],[0.05767822265625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":42,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0576782129144526],[0.059051513671875,-0.0576782129144526],[0.059051513671875,-0.0590515032175379],[0.05767822265625,-0.0590515032175379],[0.05767822265625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":42,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0590515032175379],[0.059051513671875,-0.0590515032175379],[0.059051513671875,-0.0604247934867017],[0.05767822265625,-0.0604247934867017],[0.05767822265625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":42,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0604247934867017],[0.059051513671875,-0.0604247934867017],[0.059051513671875,-0.0617980837211484],[0.05767822265625,-0.0617980837211484],[0.05767822265625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":42,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0617980837211484],[0.059051513671875,-0.0617980837211484],[0.059051513671875,-0.0631713739200889],[0.05767822265625,-0.0631713739200889],[0.05767822265625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":42,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0631713739200889],[0.059051513671875,-0.0631713739200889],[0.059051513671875,-0.0645446640827373],[0.05767822265625,-0.0645446640827373],[0.05767822265625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":42,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0645446640827373],[0.059051513671875,-0.0645446640827373],[0.059051513671875,-0.065917954208311],[0.05767822265625,-0.065917954208311],[0.05767822265625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":43,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0219726557114224],[0.0604248046875,-0.0219726557114224],[0.0604248046875,-0.0233459466196176],[0.059051513671875,-0.0233459466196176],[0.059051513671875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":43,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0233459466196176],[0.0604248046875,-0.0233459466196176],[0.0604248046875,-0.0247192375144014],[0.059051513671875,-0.0247192375144014],[0.059051513671875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":43,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0247192375144014],[0.0604248046875,-0.0247192375144014],[0.0604248046875,-0.026092528394991],[0.059051513671875,-0.026092528394991],[0.059051513671875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":43,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.026092528394991],[0.0604248046875,-0.026092528394991],[0.0604248046875,-0.0274658192605846],[0.059051513671875,-0.0274658192605846],[0.059051513671875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":43,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0274658192605846],[0.0604248046875,-0.0274658192605846],[0.0604248046875,-0.0288391101104026],[0.059051513671875,-0.0288391101104026],[0.059051513671875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":43,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0288391101104026],[0.0604248046875,-0.0288391101104026],[0.0604248046875,-0.0302124009436464],[0.059051513671875,-0.0302124009436464],[0.059051513671875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":43,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0302124009436464],[0.0604248046875,-0.0302124009436464],[0.0604248046875,-0.0315856917595396],[0.059051513671875,-0.0315856917595396],[0.059051513671875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":43,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0315856917595396],[0.0604248046875,-0.0315856917595396],[0.0604248046875,-0.0329589825572836],[0.059051513671875,-0.0329589825572836],[0.059051513671875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":43,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0329589825572836],[0.0604248046875,-0.0329589825572836],[0.0604248046875,-0.0343322733360987],[0.059051513671875,-0.0343322733360987],[0.059051513671875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":43,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0343322733360987],[0.0604248046875,-0.0343322733360987],[0.0604248046875,-0.0357055640951897],[0.059051513671875,-0.0357055640951897],[0.059051513671875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":43,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0357055640951897],[0.0604248046875,-0.0357055640951897],[0.0604248046875,-0.0370788548337641],[0.059051513671875,-0.0370788548337641],[0.059051513671875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":43,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0370788548337641],[0.0604248046875,-0.0370788548337641],[0.0604248046875,-0.0384521455510425],[0.059051513671875,-0.0384521455510425],[0.059051513671875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":43,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0384521455510425],[0.0604248046875,-0.0384521455510425],[0.0604248046875,-0.039825436246223],[0.059051513671875,-0.039825436246223],[0.059051513671875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":43,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.039825436246223],[0.0604248046875,-0.039825436246223],[0.0604248046875,-0.0411987269185324],[0.059051513671875,-0.0411987269185324],[0.059051513671875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":43,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0411987269185324],[0.0604248046875,-0.0411987269185324],[0.0604248046875,-0.042572017567172],[0.059051513671875,-0.042572017567172],[0.059051513671875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":43,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.042572017567172],[0.0604248046875,-0.042572017567172],[0.0604248046875,-0.0439453081913529],[0.059051513671875,-0.0439453081913529],[0.059051513671875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":43,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0439453081913529],[0.0604248046875,-0.0439453081913529],[0.0604248046875,-0.045318598790289],[0.059051513671875,-0.045318598790289],[0.059051513671875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":43,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.045318598790289],[0.0604248046875,-0.045318598790289],[0.0604248046875,-0.0466918893631913],[0.059051513671875,-0.0466918893631913],[0.059051513671875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":43,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0466918893631913],[0.0604248046875,-0.0466918893631913],[0.0604248046875,-0.0480651799092611],[0.059051513671875,-0.0480651799092611],[0.059051513671875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":43,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0480651799092611],[0.0604248046875,-0.0480651799092611],[0.0604248046875,-0.0494384704277221],[0.059051513671875,-0.0494384704277221],[0.059051513671875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":43,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0494384704277221],[0.0604248046875,-0.0494384704277221],[0.0604248046875,-0.0508117609177883],[0.059051513671875,-0.0508117609177883],[0.059051513671875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":43,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0508117609177883],[0.0604248046875,-0.0508117609177883],[0.0604248046875,-0.0521850513786548],[0.059051513671875,-0.0521850513786548],[0.059051513671875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":43,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0521850513786548],[0.0604248046875,-0.0521850513786548],[0.0604248046875,-0.0535583418095483],[0.059051513671875,-0.0535583418095483],[0.059051513671875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":43,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0535583418095483],[0.0604248046875,-0.0535583418095483],[0.0604248046875,-0.0549316322096735],[0.059051513671875,-0.0549316322096735],[0.059051513671875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":43,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0549316322096735],[0.0604248046875,-0.0549316322096735],[0.0604248046875,-0.0563049225782379],[0.059051513671875,-0.0563049225782379],[0.059051513671875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":43,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0563049225782379],[0.0604248046875,-0.0563049225782379],[0.0604248046875,-0.0576782129144526],[0.059051513671875,-0.0576782129144526],[0.059051513671875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":43,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0576782129144526],[0.0604248046875,-0.0576782129144526],[0.0604248046875,-0.0590515032175379],[0.059051513671875,-0.0590515032175379],[0.059051513671875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":43,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0590515032175379],[0.0604248046875,-0.0590515032175379],[0.0604248046875,-0.0604247934867017],[0.059051513671875,-0.0604247934867017],[0.059051513671875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":43,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0604247934867017],[0.0604248046875,-0.0604247934867017],[0.0604248046875,-0.0617980837211484],[0.059051513671875,-0.0617980837211484],[0.059051513671875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":43,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0617980837211484],[0.0604248046875,-0.0617980837211484],[0.0604248046875,-0.0631713739200889],[0.059051513671875,-0.0631713739200889],[0.059051513671875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":43,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0631713739200889],[0.0604248046875,-0.0631713739200889],[0.0604248046875,-0.0645446640827373],[0.059051513671875,-0.0645446640827373],[0.059051513671875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":43,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0645446640827373],[0.0604248046875,-0.0645446640827373],[0.0604248046875,-0.065917954208311],[0.059051513671875,-0.065917954208311],[0.059051513671875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":44,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0219726557114224],[0.061798095703125,-0.0219726557114224],[0.061798095703125,-0.0233459466196176],[0.0604248046875,-0.0233459466196176],[0.0604248046875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":44,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0233459466196176],[0.061798095703125,-0.0233459466196176],[0.061798095703125,-0.0247192375144014],[0.0604248046875,-0.0247192375144014],[0.0604248046875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":44,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0247192375144014],[0.061798095703125,-0.0247192375144014],[0.061798095703125,-0.026092528394991],[0.0604248046875,-0.026092528394991],[0.0604248046875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":44,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.026092528394991],[0.061798095703125,-0.026092528394991],[0.061798095703125,-0.0274658192605846],[0.0604248046875,-0.0274658192605846],[0.0604248046875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":44,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0274658192605846],[0.061798095703125,-0.0274658192605846],[0.061798095703125,-0.0288391101104026],[0.0604248046875,-0.0288391101104026],[0.0604248046875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":44,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0288391101104026],[0.061798095703125,-0.0288391101104026],[0.061798095703125,-0.0302124009436464],[0.0604248046875,-0.0302124009436464],[0.0604248046875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":44,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0302124009436464],[0.061798095703125,-0.0302124009436464],[0.061798095703125,-0.0315856917595396],[0.0604248046875,-0.0315856917595396],[0.0604248046875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":44,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0315856917595396],[0.061798095703125,-0.0315856917595396],[0.061798095703125,-0.0329589825572836],[0.0604248046875,-0.0329589825572836],[0.0604248046875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":44,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0329589825572836],[0.061798095703125,-0.0329589825572836],[0.061798095703125,-0.0343322733360987],[0.0604248046875,-0.0343322733360987],[0.0604248046875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":44,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0343322733360987],[0.061798095703125,-0.0343322733360987],[0.061798095703125,-0.0357055640951897],[0.0604248046875,-0.0357055640951897],[0.0604248046875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":44,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0357055640951897],[0.061798095703125,-0.0357055640951897],[0.061798095703125,-0.0370788548337641],[0.0604248046875,-0.0370788548337641],[0.0604248046875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":44,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0370788548337641],[0.061798095703125,-0.0370788548337641],[0.061798095703125,-0.0384521455510425],[0.0604248046875,-0.0384521455510425],[0.0604248046875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":44,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0384521455510425],[0.061798095703125,-0.0384521455510425],[0.061798095703125,-0.039825436246223],[0.0604248046875,-0.039825436246223],[0.0604248046875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":44,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.039825436246223],[0.061798095703125,-0.039825436246223],[0.061798095703125,-0.0411987269185324],[0.0604248046875,-0.0411987269185324],[0.0604248046875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":44,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0411987269185324],[0.061798095703125,-0.0411987269185324],[0.061798095703125,-0.042572017567172],[0.0604248046875,-0.042572017567172],[0.0604248046875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":44,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.042572017567172],[0.061798095703125,-0.042572017567172],[0.061798095703125,-0.0439453081913529],[0.0604248046875,-0.0439453081913529],[0.0604248046875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":44,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0439453081913529],[0.061798095703125,-0.0439453081913529],[0.061798095703125,-0.045318598790289],[0.0604248046875,-0.045318598790289],[0.0604248046875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":44,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.045318598790289],[0.061798095703125,-0.045318598790289],[0.061798095703125,-0.0466918893631913],[0.0604248046875,-0.0466918893631913],[0.0604248046875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":44,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0466918893631913],[0.061798095703125,-0.0466918893631913],[0.061798095703125,-0.0480651799092611],[0.0604248046875,-0.0480651799092611],[0.0604248046875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":44,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0480651799092611],[0.061798095703125,-0.0480651799092611],[0.061798095703125,-0.0494384704277221],[0.0604248046875,-0.0494384704277221],[0.0604248046875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":44,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0494384704277221],[0.061798095703125,-0.0494384704277221],[0.061798095703125,-0.0508117609177883],[0.0604248046875,-0.0508117609177883],[0.0604248046875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":44,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0508117609177883],[0.061798095703125,-0.0508117609177883],[0.061798095703125,-0.0521850513786548],[0.0604248046875,-0.0521850513786548],[0.0604248046875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":44,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0521850513786548],[0.061798095703125,-0.0521850513786548],[0.061798095703125,-0.0535583418095483],[0.0604248046875,-0.0535583418095483],[0.0604248046875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":44,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0535583418095483],[0.061798095703125,-0.0535583418095483],[0.061798095703125,-0.0549316322096735],[0.0604248046875,-0.0549316322096735],[0.0604248046875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":44,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0549316322096735],[0.061798095703125,-0.0549316322096735],[0.061798095703125,-0.0563049225782379],[0.0604248046875,-0.0563049225782379],[0.0604248046875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":44,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0563049225782379],[0.061798095703125,-0.0563049225782379],[0.061798095703125,-0.0576782129144526],[0.0604248046875,-0.0576782129144526],[0.0604248046875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":44,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0576782129144526],[0.061798095703125,-0.0576782129144526],[0.061798095703125,-0.0590515032175379],[0.0604248046875,-0.0590515032175379],[0.0604248046875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":44,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0590515032175379],[0.061798095703125,-0.0590515032175379],[0.061798095703125,-0.0604247934867017],[0.0604248046875,-0.0604247934867017],[0.0604248046875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":44,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0604247934867017],[0.061798095703125,-0.0604247934867017],[0.061798095703125,-0.0617980837211484],[0.0604248046875,-0.0617980837211484],[0.0604248046875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":44,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0617980837211484],[0.061798095703125,-0.0617980837211484],[0.061798095703125,-0.0631713739200889],[0.0604248046875,-0.0631713739200889],[0.0604248046875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":44,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0631713739200889],[0.061798095703125,-0.0631713739200889],[0.061798095703125,-0.0645446640827373],[0.0604248046875,-0.0645446640827373],[0.0604248046875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":44,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0645446640827373],[0.061798095703125,-0.0645446640827373],[0.061798095703125,-0.065917954208311],[0.0604248046875,-0.065917954208311],[0.0604248046875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":45,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0219726557114224],[0.06317138671875,-0.0219726557114224],[0.06317138671875,-0.0233459466196176],[0.061798095703125,-0.0233459466196176],[0.061798095703125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":45,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0233459466196176],[0.06317138671875,-0.0233459466196176],[0.06317138671875,-0.0247192375144014],[0.061798095703125,-0.0247192375144014],[0.061798095703125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":45,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0247192375144014],[0.06317138671875,-0.0247192375144014],[0.06317138671875,-0.026092528394991],[0.061798095703125,-0.026092528394991],[0.061798095703125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":45,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.026092528394991],[0.06317138671875,-0.026092528394991],[0.06317138671875,-0.0274658192605846],[0.061798095703125,-0.0274658192605846],[0.061798095703125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":45,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0274658192605846],[0.06317138671875,-0.0274658192605846],[0.06317138671875,-0.0288391101104026],[0.061798095703125,-0.0288391101104026],[0.061798095703125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":45,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0288391101104026],[0.06317138671875,-0.0288391101104026],[0.06317138671875,-0.0302124009436464],[0.061798095703125,-0.0302124009436464],[0.061798095703125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":45,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0302124009436464],[0.06317138671875,-0.0302124009436464],[0.06317138671875,-0.0315856917595396],[0.061798095703125,-0.0315856917595396],[0.061798095703125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":45,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0315856917595396],[0.06317138671875,-0.0315856917595396],[0.06317138671875,-0.0329589825572836],[0.061798095703125,-0.0329589825572836],[0.061798095703125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":45,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0329589825572836],[0.06317138671875,-0.0329589825572836],[0.06317138671875,-0.0343322733360987],[0.061798095703125,-0.0343322733360987],[0.061798095703125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":45,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0343322733360987],[0.06317138671875,-0.0343322733360987],[0.06317138671875,-0.0357055640951897],[0.061798095703125,-0.0357055640951897],[0.061798095703125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":45,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0357055640951897],[0.06317138671875,-0.0357055640951897],[0.06317138671875,-0.0370788548337641],[0.061798095703125,-0.0370788548337641],[0.061798095703125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":45,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0370788548337641],[0.06317138671875,-0.0370788548337641],[0.06317138671875,-0.0384521455510425],[0.061798095703125,-0.0384521455510425],[0.061798095703125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":45,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0384521455510425],[0.06317138671875,-0.0384521455510425],[0.06317138671875,-0.039825436246223],[0.061798095703125,-0.039825436246223],[0.061798095703125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":45,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.039825436246223],[0.06317138671875,-0.039825436246223],[0.06317138671875,-0.0411987269185324],[0.061798095703125,-0.0411987269185324],[0.061798095703125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":45,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0411987269185324],[0.06317138671875,-0.0411987269185324],[0.06317138671875,-0.042572017567172],[0.061798095703125,-0.042572017567172],[0.061798095703125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":45,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.042572017567172],[0.06317138671875,-0.042572017567172],[0.06317138671875,-0.0439453081913529],[0.061798095703125,-0.0439453081913529],[0.061798095703125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":45,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0439453081913529],[0.06317138671875,-0.0439453081913529],[0.06317138671875,-0.045318598790289],[0.061798095703125,-0.045318598790289],[0.061798095703125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":45,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.045318598790289],[0.06317138671875,-0.045318598790289],[0.06317138671875,-0.0466918893631913],[0.061798095703125,-0.0466918893631913],[0.061798095703125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":45,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0466918893631913],[0.06317138671875,-0.0466918893631913],[0.06317138671875,-0.0480651799092611],[0.061798095703125,-0.0480651799092611],[0.061798095703125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":45,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0480651799092611],[0.06317138671875,-0.0480651799092611],[0.06317138671875,-0.0494384704277221],[0.061798095703125,-0.0494384704277221],[0.061798095703125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":45,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0494384704277221],[0.06317138671875,-0.0494384704277221],[0.06317138671875,-0.0508117609177883],[0.061798095703125,-0.0508117609177883],[0.061798095703125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":45,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0508117609177883],[0.06317138671875,-0.0508117609177883],[0.06317138671875,-0.0521850513786548],[0.061798095703125,-0.0521850513786548],[0.061798095703125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":45,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0521850513786548],[0.06317138671875,-0.0521850513786548],[0.06317138671875,-0.0535583418095483],[0.061798095703125,-0.0535583418095483],[0.061798095703125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":45,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0535583418095483],[0.06317138671875,-0.0535583418095483],[0.06317138671875,-0.0549316322096735],[0.061798095703125,-0.0549316322096735],[0.061798095703125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":45,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0549316322096735],[0.06317138671875,-0.0549316322096735],[0.06317138671875,-0.0563049225782379],[0.061798095703125,-0.0563049225782379],[0.061798095703125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":45,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0563049225782379],[0.06317138671875,-0.0563049225782379],[0.06317138671875,-0.0576782129144526],[0.061798095703125,-0.0576782129144526],[0.061798095703125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":45,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0576782129144526],[0.06317138671875,-0.0576782129144526],[0.06317138671875,-0.0590515032175379],[0.061798095703125,-0.0590515032175379],[0.061798095703125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":45,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0590515032175379],[0.06317138671875,-0.0590515032175379],[0.06317138671875,-0.0604247934867017],[0.061798095703125,-0.0604247934867017],[0.061798095703125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":45,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0604247934867017],[0.06317138671875,-0.0604247934867017],[0.06317138671875,-0.0617980837211484],[0.061798095703125,-0.0617980837211484],[0.061798095703125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":45,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0617980837211484],[0.06317138671875,-0.0617980837211484],[0.06317138671875,-0.0631713739200889],[0.061798095703125,-0.0631713739200889],[0.061798095703125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":45,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0631713739200889],[0.06317138671875,-0.0631713739200889],[0.06317138671875,-0.0645446640827373],[0.061798095703125,-0.0645446640827373],[0.061798095703125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":45,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0645446640827373],[0.06317138671875,-0.0645446640827373],[0.06317138671875,-0.065917954208311],[0.061798095703125,-0.065917954208311],[0.061798095703125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":46,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0219726557114224],[0.064544677734375,-0.0219726557114224],[0.064544677734375,-0.0233459466196176],[0.06317138671875,-0.0233459466196176],[0.06317138671875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":46,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0233459466196176],[0.064544677734375,-0.0233459466196176],[0.064544677734375,-0.0247192375144014],[0.06317138671875,-0.0247192375144014],[0.06317138671875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":46,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0247192375144014],[0.064544677734375,-0.0247192375144014],[0.064544677734375,-0.026092528394991],[0.06317138671875,-0.026092528394991],[0.06317138671875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":46,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.026092528394991],[0.064544677734375,-0.026092528394991],[0.064544677734375,-0.0274658192605846],[0.06317138671875,-0.0274658192605846],[0.06317138671875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":46,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0274658192605846],[0.064544677734375,-0.0274658192605846],[0.064544677734375,-0.0288391101104026],[0.06317138671875,-0.0288391101104026],[0.06317138671875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":46,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0288391101104026],[0.064544677734375,-0.0288391101104026],[0.064544677734375,-0.0302124009436464],[0.06317138671875,-0.0302124009436464],[0.06317138671875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":46,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0302124009436464],[0.064544677734375,-0.0302124009436464],[0.064544677734375,-0.0315856917595396],[0.06317138671875,-0.0315856917595396],[0.06317138671875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":46,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0315856917595396],[0.064544677734375,-0.0315856917595396],[0.064544677734375,-0.0329589825572836],[0.06317138671875,-0.0329589825572836],[0.06317138671875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":46,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0329589825572836],[0.064544677734375,-0.0329589825572836],[0.064544677734375,-0.0343322733360987],[0.06317138671875,-0.0343322733360987],[0.06317138671875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":46,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0343322733360987],[0.064544677734375,-0.0343322733360987],[0.064544677734375,-0.0357055640951897],[0.06317138671875,-0.0357055640951897],[0.06317138671875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":46,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0357055640951897],[0.064544677734375,-0.0357055640951897],[0.064544677734375,-0.0370788548337641],[0.06317138671875,-0.0370788548337641],[0.06317138671875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":46,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0370788548337641],[0.064544677734375,-0.0370788548337641],[0.064544677734375,-0.0384521455510425],[0.06317138671875,-0.0384521455510425],[0.06317138671875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":46,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0384521455510425],[0.064544677734375,-0.0384521455510425],[0.064544677734375,-0.039825436246223],[0.06317138671875,-0.039825436246223],[0.06317138671875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":46,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.039825436246223],[0.064544677734375,-0.039825436246223],[0.064544677734375,-0.0411987269185324],[0.06317138671875,-0.0411987269185324],[0.06317138671875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":46,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0411987269185324],[0.064544677734375,-0.0411987269185324],[0.064544677734375,-0.042572017567172],[0.06317138671875,-0.042572017567172],[0.06317138671875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":46,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.042572017567172],[0.064544677734375,-0.042572017567172],[0.064544677734375,-0.0439453081913529],[0.06317138671875,-0.0439453081913529],[0.06317138671875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":46,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0439453081913529],[0.064544677734375,-0.0439453081913529],[0.064544677734375,-0.045318598790289],[0.06317138671875,-0.045318598790289],[0.06317138671875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":46,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.045318598790289],[0.064544677734375,-0.045318598790289],[0.064544677734375,-0.0466918893631913],[0.06317138671875,-0.0466918893631913],[0.06317138671875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":46,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0466918893631913],[0.064544677734375,-0.0466918893631913],[0.064544677734375,-0.0480651799092611],[0.06317138671875,-0.0480651799092611],[0.06317138671875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":46,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0480651799092611],[0.064544677734375,-0.0480651799092611],[0.064544677734375,-0.0494384704277221],[0.06317138671875,-0.0494384704277221],[0.06317138671875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":46,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0494384704277221],[0.064544677734375,-0.0494384704277221],[0.064544677734375,-0.0508117609177883],[0.06317138671875,-0.0508117609177883],[0.06317138671875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":46,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0508117609177883],[0.064544677734375,-0.0508117609177883],[0.064544677734375,-0.0521850513786548],[0.06317138671875,-0.0521850513786548],[0.06317138671875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":46,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0521850513786548],[0.064544677734375,-0.0521850513786548],[0.064544677734375,-0.0535583418095483],[0.06317138671875,-0.0535583418095483],[0.06317138671875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":46,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0535583418095483],[0.064544677734375,-0.0535583418095483],[0.064544677734375,-0.0549316322096735],[0.06317138671875,-0.0549316322096735],[0.06317138671875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":46,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0549316322096735],[0.064544677734375,-0.0549316322096735],[0.064544677734375,-0.0563049225782379],[0.06317138671875,-0.0563049225782379],[0.06317138671875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":46,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0563049225782379],[0.064544677734375,-0.0563049225782379],[0.064544677734375,-0.0576782129144526],[0.06317138671875,-0.0576782129144526],[0.06317138671875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":46,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0576782129144526],[0.064544677734375,-0.0576782129144526],[0.064544677734375,-0.0590515032175379],[0.06317138671875,-0.0590515032175379],[0.06317138671875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":46,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0590515032175379],[0.064544677734375,-0.0590515032175379],[0.064544677734375,-0.0604247934867017],[0.06317138671875,-0.0604247934867017],[0.06317138671875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":46,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0604247934867017],[0.064544677734375,-0.0604247934867017],[0.064544677734375,-0.0617980837211484],[0.06317138671875,-0.0617980837211484],[0.06317138671875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":46,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0617980837211484],[0.064544677734375,-0.0617980837211484],[0.064544677734375,-0.0631713739200889],[0.06317138671875,-0.0631713739200889],[0.06317138671875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":46,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0631713739200889],[0.064544677734375,-0.0631713739200889],[0.064544677734375,-0.0645446640827373],[0.06317138671875,-0.0645446640827373],[0.06317138671875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":46,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0645446640827373],[0.064544677734375,-0.0645446640827373],[0.064544677734375,-0.065917954208311],[0.06317138671875,-0.065917954208311],[0.06317138671875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":47,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0219726557114224],[0.06591796875,-0.0219726557114224],[0.06591796875,-0.0233459466196176],[0.064544677734375,-0.0233459466196176],[0.064544677734375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":47,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0233459466196176],[0.06591796875,-0.0233459466196176],[0.06591796875,-0.0247192375144014],[0.064544677734375,-0.0247192375144014],[0.064544677734375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":47,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0247192375144014],[0.06591796875,-0.0247192375144014],[0.06591796875,-0.026092528394991],[0.064544677734375,-0.026092528394991],[0.064544677734375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":47,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.026092528394991],[0.06591796875,-0.026092528394991],[0.06591796875,-0.0274658192605846],[0.064544677734375,-0.0274658192605846],[0.064544677734375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":47,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0274658192605846],[0.06591796875,-0.0274658192605846],[0.06591796875,-0.0288391101104026],[0.064544677734375,-0.0288391101104026],[0.064544677734375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":47,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0288391101104026],[0.06591796875,-0.0288391101104026],[0.06591796875,-0.0302124009436464],[0.064544677734375,-0.0302124009436464],[0.064544677734375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":47,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0302124009436464],[0.06591796875,-0.0302124009436464],[0.06591796875,-0.0315856917595396],[0.064544677734375,-0.0315856917595396],[0.064544677734375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":47,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0315856917595396],[0.06591796875,-0.0315856917595396],[0.06591796875,-0.0329589825572836],[0.064544677734375,-0.0329589825572836],[0.064544677734375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":47,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0329589825572836],[0.06591796875,-0.0329589825572836],[0.06591796875,-0.0343322733360987],[0.064544677734375,-0.0343322733360987],[0.064544677734375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":47,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0343322733360987],[0.06591796875,-0.0343322733360987],[0.06591796875,-0.0357055640951897],[0.064544677734375,-0.0357055640951897],[0.064544677734375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":47,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0357055640951897],[0.06591796875,-0.0357055640951897],[0.06591796875,-0.0370788548337641],[0.064544677734375,-0.0370788548337641],[0.064544677734375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":47,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0370788548337641],[0.06591796875,-0.0370788548337641],[0.06591796875,-0.0384521455510425],[0.064544677734375,-0.0384521455510425],[0.064544677734375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":47,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0384521455510425],[0.06591796875,-0.0384521455510425],[0.06591796875,-0.039825436246223],[0.064544677734375,-0.039825436246223],[0.064544677734375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":47,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.039825436246223],[0.06591796875,-0.039825436246223],[0.06591796875,-0.0411987269185324],[0.064544677734375,-0.0411987269185324],[0.064544677734375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":47,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0411987269185324],[0.06591796875,-0.0411987269185324],[0.06591796875,-0.042572017567172],[0.064544677734375,-0.042572017567172],[0.064544677734375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":47,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.042572017567172],[0.06591796875,-0.042572017567172],[0.06591796875,-0.0439453081913529],[0.064544677734375,-0.0439453081913529],[0.064544677734375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":47,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0439453081913529],[0.06591796875,-0.0439453081913529],[0.06591796875,-0.045318598790289],[0.064544677734375,-0.045318598790289],[0.064544677734375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":47,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.045318598790289],[0.06591796875,-0.045318598790289],[0.06591796875,-0.0466918893631913],[0.064544677734375,-0.0466918893631913],[0.064544677734375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":47,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0466918893631913],[0.06591796875,-0.0466918893631913],[0.06591796875,-0.0480651799092611],[0.064544677734375,-0.0480651799092611],[0.064544677734375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":47,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0480651799092611],[0.06591796875,-0.0480651799092611],[0.06591796875,-0.0494384704277221],[0.064544677734375,-0.0494384704277221],[0.064544677734375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":47,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0494384704277221],[0.06591796875,-0.0494384704277221],[0.06591796875,-0.0508117609177883],[0.064544677734375,-0.0508117609177883],[0.064544677734375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":47,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0508117609177883],[0.06591796875,-0.0508117609177883],[0.06591796875,-0.0521850513786548],[0.064544677734375,-0.0521850513786548],[0.064544677734375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":47,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0521850513786548],[0.06591796875,-0.0521850513786548],[0.06591796875,-0.0535583418095483],[0.064544677734375,-0.0535583418095483],[0.064544677734375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":47,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0535583418095483],[0.06591796875,-0.0535583418095483],[0.06591796875,-0.0549316322096735],[0.064544677734375,-0.0549316322096735],[0.064544677734375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":47,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0549316322096735],[0.06591796875,-0.0549316322096735],[0.06591796875,-0.0563049225782379],[0.064544677734375,-0.0563049225782379],[0.064544677734375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":47,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0563049225782379],[0.06591796875,-0.0563049225782379],[0.06591796875,-0.0576782129144526],[0.064544677734375,-0.0576782129144526],[0.064544677734375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":47,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0576782129144526],[0.06591796875,-0.0576782129144526],[0.06591796875,-0.0590515032175379],[0.064544677734375,-0.0590515032175379],[0.064544677734375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":47,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0590515032175379],[0.06591796875,-0.0590515032175379],[0.06591796875,-0.0604247934867017],[0.064544677734375,-0.0604247934867017],[0.064544677734375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":47,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0604247934867017],[0.06591796875,-0.0604247934867017],[0.06591796875,-0.0617980837211484],[0.064544677734375,-0.0617980837211484],[0.064544677734375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":47,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0617980837211484],[0.06591796875,-0.0617980837211484],[0.06591796875,-0.0631713739200889],[0.064544677734375,-0.0631713739200889],[0.064544677734375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":47,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0631713739200889],[0.06591796875,-0.0631713739200889],[0.06591796875,-0.0645446640827373],[0.064544677734375,-0.0645446640827373],[0.064544677734375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":47,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0645446640827373],[0.06591796875,-0.0645446640827373],[0.06591796875,-0.065917954208311],[0.064544677734375,-0.065917954208311],[0.064544677734375,-0.0645446640827373]]]}} diff --git a/tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json b/tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json new file mode 100644 index 000000000..8e6d93d0b --- /dev/null +++ b/tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json @@ -0,0 +1,2807 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "0.021973,-0.065918,0.065918,-0.021973", +"center": "0.065918,-0.065918,11", +"description": "tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles -z11 -D7 --grid-low-zooms tests/grid-aligned/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 11, \"fields\": {\"x\": \"Number\", \"y\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1024,\"geometry\": \"Polygon\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"x\",\"count\": 32,\"type\": \"number\",\"values\": [16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],\"min\": 16,\"max\": 47},{\"attribute\": \"y\",\"count\": 32,\"type\": \"number\",\"values\": [16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],\"min\": 16,\"max\": 47}]}]}}", +"maxzoom": "11", +"minzoom": "0", +"name": "tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 32 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.000000 ], [ 0.043945, -0.043945 ], [ 0.000000, -0.043945 ], [ 0.000000, 0.000000 ], [ 0.043945, 0.000000 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.000000 ], [ 0.043945, -0.043945 ], [ 0.000000, -0.043945 ], [ 0.000000, 0.000000 ], [ 0.043945, 0.000000 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 32 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.000000 ], [ 0.043945, -0.043945 ], [ 0.000000, -0.043945 ], [ 0.000000, 0.000000 ], [ 0.043945, 0.000000 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.000000 ], [ 0.043945, -0.043945 ], [ 0.000000, -0.043945 ], [ 0.000000, 0.000000 ], [ 0.043945, 0.000000 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 64 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 63 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 64 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.043945 ], [ 0.065918, -0.065918 ], [ 0.043945, -0.065918 ], [ 0.043945, -0.043945 ], [ 0.065918, -0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 63 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 128, "y": 128 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 23, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.021973 ], [ 0.032959, -0.032959 ], [ 0.021973, -0.032959 ], [ 0.021973, -0.021973 ], [ 0.032959, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.032959 ], [ 0.032959, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.032959 ], [ 0.032959, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.032959 ], [ 0.032959, -0.032959 ], [ 0.032959, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.032959 ], [ 0.043945, -0.043945 ], [ 0.032959, -0.043945 ], [ 0.032959, -0.032959 ], [ 0.043945, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.043945 ], [ 0.032959, -0.054932 ], [ 0.021973, -0.054932 ], [ 0.021973, -0.043945 ], [ 0.032959, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.054932 ], [ 0.032959, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.054932 ], [ 0.032959, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.054932 ], [ 0.032959, -0.054932 ], [ 0.032959, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.054932 ], [ 0.043945, -0.065918 ], [ 0.032959, -0.065918 ], [ 0.032959, -0.054932 ], [ 0.043945, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.021973 ], [ 0.054932, -0.032959 ], [ 0.043945, -0.032959 ], [ 0.043945, -0.021973 ], [ 0.054932, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.032959 ], [ 0.054932, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.032959 ], [ 0.054932, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.032959 ], [ 0.054932, -0.032959 ], [ 0.054932, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.032959 ], [ 0.065918, -0.043945 ], [ 0.054932, -0.043945 ], [ 0.054932, -0.032959 ], [ 0.065918, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.043945 ], [ 0.054932, -0.054932 ], [ 0.043945, -0.054932 ], [ 0.043945, -0.043945 ], [ 0.054932, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.054932 ], [ 0.054932, -0.065918 ], [ 0.043945, -0.065918 ], [ 0.043945, -0.054932 ], [ 0.054932, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.043945 ], [ 0.065918, -0.054932 ], [ 0.054932, -0.054932 ], [ 0.054932, -0.043945 ], [ 0.065918, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.054932 ], [ 0.065918, -0.065918 ], [ 0.054932, -0.065918 ], [ 0.054932, -0.054932 ], [ 0.065918, -0.054932 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 256, "y": 256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 19, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.021973 ], [ 0.027466, -0.027466 ], [ 0.021973, -0.027466 ], [ 0.021973, -0.021973 ], [ 0.027466, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.027466 ], [ 0.027466, -0.032959 ], [ 0.021973, -0.032959 ], [ 0.021973, -0.027466 ], [ 0.027466, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.021973 ], [ 0.032959, -0.027466 ], [ 0.027466, -0.027466 ], [ 0.027466, -0.021973 ], [ 0.032959, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.027466 ], [ 0.032959, -0.032959 ], [ 0.027466, -0.032959 ], [ 0.027466, -0.027466 ], [ 0.032959, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.032959 ], [ 0.027466, -0.038452 ], [ 0.021973, -0.038452 ], [ 0.021973, -0.032959 ], [ 0.027466, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.038452 ], [ 0.027466, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.038452 ], [ 0.027466, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.032959 ], [ 0.032959, -0.038452 ], [ 0.027466, -0.038452 ], [ 0.027466, -0.032959 ], [ 0.032959, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.038452 ], [ 0.032959, -0.043945 ], [ 0.027466, -0.043945 ], [ 0.027466, -0.038452 ], [ 0.032959, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.021973 ], [ 0.038452, -0.027466 ], [ 0.032959, -0.027466 ], [ 0.032959, -0.021973 ], [ 0.038452, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.027466 ], [ 0.038452, -0.032959 ], [ 0.032959, -0.032959 ], [ 0.032959, -0.027466 ], [ 0.038452, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.027466 ], [ 0.038452, -0.027466 ], [ 0.038452, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.027466 ], [ 0.043945, -0.032959 ], [ 0.038452, -0.032959 ], [ 0.038452, -0.027466 ], [ 0.043945, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.032959 ], [ 0.038452, -0.038452 ], [ 0.032959, -0.038452 ], [ 0.032959, -0.032959 ], [ 0.038452, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.038452 ], [ 0.038452, -0.043945 ], [ 0.032959, -0.043945 ], [ 0.032959, -0.038452 ], [ 0.038452, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.032959 ], [ 0.043945, -0.038452 ], [ 0.038452, -0.038452 ], [ 0.038452, -0.032959 ], [ 0.043945, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.038452 ], [ 0.043945, -0.043945 ], [ 0.038452, -0.043945 ], [ 0.038452, -0.038452 ], [ 0.043945, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.043945 ], [ 0.027466, -0.049438 ], [ 0.021973, -0.049438 ], [ 0.021973, -0.043945 ], [ 0.027466, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.049438 ], [ 0.027466, -0.054932 ], [ 0.021973, -0.054932 ], [ 0.021973, -0.049438 ], [ 0.027466, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.043945 ], [ 0.032959, -0.049438 ], [ 0.027466, -0.049438 ], [ 0.027466, -0.043945 ], [ 0.032959, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.049438 ], [ 0.032959, -0.054932 ], [ 0.027466, -0.054932 ], [ 0.027466, -0.049438 ], [ 0.032959, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.054932 ], [ 0.027466, -0.060425 ], [ 0.021973, -0.060425 ], [ 0.021973, -0.054932 ], [ 0.027466, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.060425 ], [ 0.027466, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.060425 ], [ 0.027466, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.054932 ], [ 0.032959, -0.060425 ], [ 0.027466, -0.060425 ], [ 0.027466, -0.054932 ], [ 0.032959, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.060425 ], [ 0.032959, -0.065918 ], [ 0.027466, -0.065918 ], [ 0.027466, -0.060425 ], [ 0.032959, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.043945 ], [ 0.038452, -0.049438 ], [ 0.032959, -0.049438 ], [ 0.032959, -0.043945 ], [ 0.038452, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.049438 ], [ 0.038452, -0.054932 ], [ 0.032959, -0.054932 ], [ 0.032959, -0.049438 ], [ 0.038452, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.049438 ], [ 0.038452, -0.049438 ], [ 0.038452, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.049438 ], [ 0.043945, -0.054932 ], [ 0.038452, -0.054932 ], [ 0.038452, -0.049438 ], [ 0.043945, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.054932 ], [ 0.038452, -0.060425 ], [ 0.032959, -0.060425 ], [ 0.032959, -0.054932 ], [ 0.038452, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.060425 ], [ 0.038452, -0.065918 ], [ 0.032959, -0.065918 ], [ 0.032959, -0.060425 ], [ 0.038452, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.054932 ], [ 0.043945, -0.060425 ], [ 0.038452, -0.060425 ], [ 0.038452, -0.054932 ], [ 0.043945, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.060425 ], [ 0.043945, -0.065918 ], [ 0.038452, -0.065918 ], [ 0.038452, -0.060425 ], [ 0.043945, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.021973 ], [ 0.049438, -0.027466 ], [ 0.043945, -0.027466 ], [ 0.043945, -0.021973 ], [ 0.049438, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.027466 ], [ 0.049438, -0.032959 ], [ 0.043945, -0.032959 ], [ 0.043945, -0.027466 ], [ 0.049438, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.021973 ], [ 0.054932, -0.027466 ], [ 0.049438, -0.027466 ], [ 0.049438, -0.021973 ], [ 0.054932, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.027466 ], [ 0.054932, -0.032959 ], [ 0.049438, -0.032959 ], [ 0.049438, -0.027466 ], [ 0.054932, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.032959 ], [ 0.049438, -0.038452 ], [ 0.043945, -0.038452 ], [ 0.043945, -0.032959 ], [ 0.049438, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.038452 ], [ 0.049438, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.038452 ], [ 0.049438, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.032959 ], [ 0.054932, -0.038452 ], [ 0.049438, -0.038452 ], [ 0.049438, -0.032959 ], [ 0.054932, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.038452 ], [ 0.054932, -0.043945 ], [ 0.049438, -0.043945 ], [ 0.049438, -0.038452 ], [ 0.054932, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.021973 ], [ 0.060425, -0.027466 ], [ 0.054932, -0.027466 ], [ 0.054932, -0.021973 ], [ 0.060425, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.027466 ], [ 0.060425, -0.032959 ], [ 0.054932, -0.032959 ], [ 0.054932, -0.027466 ], [ 0.060425, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.027466 ], [ 0.060425, -0.027466 ], [ 0.060425, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.027466 ], [ 0.065918, -0.032959 ], [ 0.060425, -0.032959 ], [ 0.060425, -0.027466 ], [ 0.065918, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.032959 ], [ 0.060425, -0.038452 ], [ 0.054932, -0.038452 ], [ 0.054932, -0.032959 ], [ 0.060425, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.038452 ], [ 0.060425, -0.043945 ], [ 0.054932, -0.043945 ], [ 0.054932, -0.038452 ], [ 0.060425, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.032959 ], [ 0.065918, -0.038452 ], [ 0.060425, -0.038452 ], [ 0.060425, -0.032959 ], [ 0.065918, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.038452 ], [ 0.065918, -0.043945 ], [ 0.060425, -0.043945 ], [ 0.060425, -0.038452 ], [ 0.065918, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.043945 ], [ 0.049438, -0.049438 ], [ 0.043945, -0.049438 ], [ 0.043945, -0.043945 ], [ 0.049438, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.049438 ], [ 0.049438, -0.054932 ], [ 0.043945, -0.054932 ], [ 0.043945, -0.049438 ], [ 0.049438, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.043945 ], [ 0.054932, -0.049438 ], [ 0.049438, -0.049438 ], [ 0.049438, -0.043945 ], [ 0.054932, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.049438 ], [ 0.054932, -0.054932 ], [ 0.049438, -0.054932 ], [ 0.049438, -0.049438 ], [ 0.054932, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.054932 ], [ 0.049438, -0.060425 ], [ 0.043945, -0.060425 ], [ 0.043945, -0.054932 ], [ 0.049438, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.060425 ], [ 0.049438, -0.065918 ], [ 0.043945, -0.065918 ], [ 0.043945, -0.060425 ], [ 0.049438, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.054932 ], [ 0.054932, -0.060425 ], [ 0.049438, -0.060425 ], [ 0.049438, -0.054932 ], [ 0.054932, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.060425 ], [ 0.054932, -0.065918 ], [ 0.049438, -0.065918 ], [ 0.049438, -0.060425 ], [ 0.054932, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.043945 ], [ 0.060425, -0.049438 ], [ 0.054932, -0.049438 ], [ 0.054932, -0.043945 ], [ 0.060425, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.049438 ], [ 0.060425, -0.054932 ], [ 0.054932, -0.054932 ], [ 0.054932, -0.049438 ], [ 0.060425, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.043945 ], [ 0.065918, -0.049438 ], [ 0.060425, -0.049438 ], [ 0.060425, -0.043945 ], [ 0.065918, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.049438 ], [ 0.065918, -0.054932 ], [ 0.060425, -0.054932 ], [ 0.060425, -0.049438 ], [ 0.065918, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.054932 ], [ 0.060425, -0.060425 ], [ 0.054932, -0.060425 ], [ 0.054932, -0.054932 ], [ 0.060425, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.060425 ], [ 0.060425, -0.065918 ], [ 0.054932, -0.065918 ], [ 0.054932, -0.060425 ], [ 0.060425, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.054932 ], [ 0.065918, -0.060425 ], [ 0.060425, -0.060425 ], [ 0.060425, -0.054932 ], [ 0.065918, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.060425 ], [ 0.065918, -0.065918 ], [ 0.060425, -0.065918 ], [ 0.060425, -0.060425 ], [ 0.065918, -0.060425 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 512, "y": 512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 17, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.021973 ], [ 0.024719, -0.024719 ], [ 0.021973, -0.024719 ], [ 0.021973, -0.021973 ], [ 0.024719, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.024719 ], [ 0.024719, -0.027466 ], [ 0.021973, -0.027466 ], [ 0.021973, -0.024719 ], [ 0.024719, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.021973 ], [ 0.027466, -0.024719 ], [ 0.024719, -0.024719 ], [ 0.024719, -0.021973 ], [ 0.027466, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.024719 ], [ 0.027466, -0.027466 ], [ 0.024719, -0.027466 ], [ 0.024719, -0.024719 ], [ 0.027466, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.027466 ], [ 0.024719, -0.030212 ], [ 0.021973, -0.030212 ], [ 0.021973, -0.027466 ], [ 0.024719, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.030212 ], [ 0.024719, -0.032959 ], [ 0.021973, -0.032959 ], [ 0.021973, -0.030212 ], [ 0.024719, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.027466 ], [ 0.027466, -0.030212 ], [ 0.024719, -0.030212 ], [ 0.024719, -0.027466 ], [ 0.027466, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.030212 ], [ 0.027466, -0.032959 ], [ 0.024719, -0.032959 ], [ 0.024719, -0.030212 ], [ 0.027466, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.021973 ], [ 0.030212, -0.024719 ], [ 0.027466, -0.024719 ], [ 0.027466, -0.021973 ], [ 0.030212, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.024719 ], [ 0.030212, -0.027466 ], [ 0.027466, -0.027466 ], [ 0.027466, -0.024719 ], [ 0.030212, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.021973 ], [ 0.032959, -0.024719 ], [ 0.030212, -0.024719 ], [ 0.030212, -0.021973 ], [ 0.032959, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.024719 ], [ 0.032959, -0.027466 ], [ 0.030212, -0.027466 ], [ 0.030212, -0.024719 ], [ 0.032959, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.027466 ], [ 0.030212, -0.030212 ], [ 0.027466, -0.030212 ], [ 0.027466, -0.027466 ], [ 0.030212, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.030212 ], [ 0.030212, -0.032959 ], [ 0.027466, -0.032959 ], [ 0.027466, -0.030212 ], [ 0.030212, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.027466 ], [ 0.032959, -0.030212 ], [ 0.030212, -0.030212 ], [ 0.030212, -0.027466 ], [ 0.032959, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.030212 ], [ 0.032959, -0.032959 ], [ 0.030212, -0.032959 ], [ 0.030212, -0.030212 ], [ 0.032959, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.032959 ], [ 0.024719, -0.035706 ], [ 0.021973, -0.035706 ], [ 0.021973, -0.032959 ], [ 0.024719, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.035706 ], [ 0.024719, -0.038452 ], [ 0.021973, -0.038452 ], [ 0.021973, -0.035706 ], [ 0.024719, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.032959 ], [ 0.027466, -0.035706 ], [ 0.024719, -0.035706 ], [ 0.024719, -0.032959 ], [ 0.027466, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.035706 ], [ 0.027466, -0.038452 ], [ 0.024719, -0.038452 ], [ 0.024719, -0.035706 ], [ 0.027466, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.038452 ], [ 0.024719, -0.041199 ], [ 0.021973, -0.041199 ], [ 0.021973, -0.038452 ], [ 0.024719, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.041199 ], [ 0.024719, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.041199 ], [ 0.024719, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.038452 ], [ 0.027466, -0.041199 ], [ 0.024719, -0.041199 ], [ 0.024719, -0.038452 ], [ 0.027466, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.041199 ], [ 0.027466, -0.043945 ], [ 0.024719, -0.043945 ], [ 0.024719, -0.041199 ], [ 0.027466, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.032959 ], [ 0.030212, -0.035706 ], [ 0.027466, -0.035706 ], [ 0.027466, -0.032959 ], [ 0.030212, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.035706 ], [ 0.030212, -0.038452 ], [ 0.027466, -0.038452 ], [ 0.027466, -0.035706 ], [ 0.030212, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.032959 ], [ 0.032959, -0.035706 ], [ 0.030212, -0.035706 ], [ 0.030212, -0.032959 ], [ 0.032959, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.035706 ], [ 0.032959, -0.038452 ], [ 0.030212, -0.038452 ], [ 0.030212, -0.035706 ], [ 0.032959, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.038452 ], [ 0.030212, -0.041199 ], [ 0.027466, -0.041199 ], [ 0.027466, -0.038452 ], [ 0.030212, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.041199 ], [ 0.030212, -0.043945 ], [ 0.027466, -0.043945 ], [ 0.027466, -0.041199 ], [ 0.030212, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.038452 ], [ 0.032959, -0.041199 ], [ 0.030212, -0.041199 ], [ 0.030212, -0.038452 ], [ 0.032959, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.041199 ], [ 0.032959, -0.043945 ], [ 0.030212, -0.043945 ], [ 0.030212, -0.041199 ], [ 0.032959, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.021973 ], [ 0.035706, -0.024719 ], [ 0.032959, -0.024719 ], [ 0.032959, -0.021973 ], [ 0.035706, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.024719 ], [ 0.035706, -0.027466 ], [ 0.032959, -0.027466 ], [ 0.032959, -0.024719 ], [ 0.035706, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.021973 ], [ 0.038452, -0.024719 ], [ 0.035706, -0.024719 ], [ 0.035706, -0.021973 ], [ 0.038452, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.024719 ], [ 0.038452, -0.027466 ], [ 0.035706, -0.027466 ], [ 0.035706, -0.024719 ], [ 0.038452, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.027466 ], [ 0.035706, -0.030212 ], [ 0.032959, -0.030212 ], [ 0.032959, -0.027466 ], [ 0.035706, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.030212 ], [ 0.035706, -0.032959 ], [ 0.032959, -0.032959 ], [ 0.032959, -0.030212 ], [ 0.035706, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.027466 ], [ 0.038452, -0.030212 ], [ 0.035706, -0.030212 ], [ 0.035706, -0.027466 ], [ 0.038452, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.030212 ], [ 0.038452, -0.032959 ], [ 0.035706, -0.032959 ], [ 0.035706, -0.030212 ], [ 0.038452, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.021973 ], [ 0.041199, -0.024719 ], [ 0.038452, -0.024719 ], [ 0.038452, -0.021973 ], [ 0.041199, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.024719 ], [ 0.041199, -0.027466 ], [ 0.038452, -0.027466 ], [ 0.038452, -0.024719 ], [ 0.041199, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.024719 ], [ 0.041199, -0.024719 ], [ 0.041199, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.024719 ], [ 0.043945, -0.027466 ], [ 0.041199, -0.027466 ], [ 0.041199, -0.024719 ], [ 0.043945, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.027466 ], [ 0.041199, -0.030212 ], [ 0.038452, -0.030212 ], [ 0.038452, -0.027466 ], [ 0.041199, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.030212 ], [ 0.041199, -0.032959 ], [ 0.038452, -0.032959 ], [ 0.038452, -0.030212 ], [ 0.041199, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.027466 ], [ 0.043945, -0.030212 ], [ 0.041199, -0.030212 ], [ 0.041199, -0.027466 ], [ 0.043945, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.030212 ], [ 0.043945, -0.032959 ], [ 0.041199, -0.032959 ], [ 0.041199, -0.030212 ], [ 0.043945, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.032959 ], [ 0.035706, -0.035706 ], [ 0.032959, -0.035706 ], [ 0.032959, -0.032959 ], [ 0.035706, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.035706 ], [ 0.035706, -0.038452 ], [ 0.032959, -0.038452 ], [ 0.032959, -0.035706 ], [ 0.035706, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.032959 ], [ 0.038452, -0.035706 ], [ 0.035706, -0.035706 ], [ 0.035706, -0.032959 ], [ 0.038452, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.035706 ], [ 0.038452, -0.038452 ], [ 0.035706, -0.038452 ], [ 0.035706, -0.035706 ], [ 0.038452, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.038452 ], [ 0.035706, -0.041199 ], [ 0.032959, -0.041199 ], [ 0.032959, -0.038452 ], [ 0.035706, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.041199 ], [ 0.035706, -0.043945 ], [ 0.032959, -0.043945 ], [ 0.032959, -0.041199 ], [ 0.035706, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.038452 ], [ 0.038452, -0.041199 ], [ 0.035706, -0.041199 ], [ 0.035706, -0.038452 ], [ 0.038452, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.041199 ], [ 0.038452, -0.043945 ], [ 0.035706, -0.043945 ], [ 0.035706, -0.041199 ], [ 0.038452, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.032959 ], [ 0.041199, -0.035706 ], [ 0.038452, -0.035706 ], [ 0.038452, -0.032959 ], [ 0.041199, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.035706 ], [ 0.041199, -0.038452 ], [ 0.038452, -0.038452 ], [ 0.038452, -0.035706 ], [ 0.041199, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.032959 ], [ 0.043945, -0.035706 ], [ 0.041199, -0.035706 ], [ 0.041199, -0.032959 ], [ 0.043945, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.035706 ], [ 0.043945, -0.038452 ], [ 0.041199, -0.038452 ], [ 0.041199, -0.035706 ], [ 0.043945, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.038452 ], [ 0.041199, -0.041199 ], [ 0.038452, -0.041199 ], [ 0.038452, -0.038452 ], [ 0.041199, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.041199 ], [ 0.041199, -0.043945 ], [ 0.038452, -0.043945 ], [ 0.038452, -0.041199 ], [ 0.041199, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.038452 ], [ 0.043945, -0.041199 ], [ 0.041199, -0.041199 ], [ 0.041199, -0.038452 ], [ 0.043945, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.041199 ], [ 0.043945, -0.043945 ], [ 0.041199, -0.043945 ], [ 0.041199, -0.041199 ], [ 0.043945, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.043945 ], [ 0.024719, -0.046692 ], [ 0.021973, -0.046692 ], [ 0.021973, -0.043945 ], [ 0.024719, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.046692 ], [ 0.024719, -0.049438 ], [ 0.021973, -0.049438 ], [ 0.021973, -0.046692 ], [ 0.024719, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.043945 ], [ 0.027466, -0.046692 ], [ 0.024719, -0.046692 ], [ 0.024719, -0.043945 ], [ 0.027466, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.046692 ], [ 0.027466, -0.049438 ], [ 0.024719, -0.049438 ], [ 0.024719, -0.046692 ], [ 0.027466, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.049438 ], [ 0.024719, -0.052185 ], [ 0.021973, -0.052185 ], [ 0.021973, -0.049438 ], [ 0.024719, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.052185 ], [ 0.024719, -0.054932 ], [ 0.021973, -0.054932 ], [ 0.021973, -0.052185 ], [ 0.024719, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.049438 ], [ 0.027466, -0.052185 ], [ 0.024719, -0.052185 ], [ 0.024719, -0.049438 ], [ 0.027466, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.052185 ], [ 0.027466, -0.054932 ], [ 0.024719, -0.054932 ], [ 0.024719, -0.052185 ], [ 0.027466, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.043945 ], [ 0.030212, -0.046692 ], [ 0.027466, -0.046692 ], [ 0.027466, -0.043945 ], [ 0.030212, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.046692 ], [ 0.030212, -0.049438 ], [ 0.027466, -0.049438 ], [ 0.027466, -0.046692 ], [ 0.030212, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.043945 ], [ 0.032959, -0.046692 ], [ 0.030212, -0.046692 ], [ 0.030212, -0.043945 ], [ 0.032959, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.046692 ], [ 0.032959, -0.049438 ], [ 0.030212, -0.049438 ], [ 0.030212, -0.046692 ], [ 0.032959, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.049438 ], [ 0.030212, -0.052185 ], [ 0.027466, -0.052185 ], [ 0.027466, -0.049438 ], [ 0.030212, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.052185 ], [ 0.030212, -0.054932 ], [ 0.027466, -0.054932 ], [ 0.027466, -0.052185 ], [ 0.030212, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.049438 ], [ 0.032959, -0.052185 ], [ 0.030212, -0.052185 ], [ 0.030212, -0.049438 ], [ 0.032959, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.052185 ], [ 0.032959, -0.054932 ], [ 0.030212, -0.054932 ], [ 0.030212, -0.052185 ], [ 0.032959, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.054932 ], [ 0.024719, -0.057678 ], [ 0.021973, -0.057678 ], [ 0.021973, -0.054932 ], [ 0.024719, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.057678 ], [ 0.024719, -0.060425 ], [ 0.021973, -0.060425 ], [ 0.021973, -0.057678 ], [ 0.024719, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.054932 ], [ 0.027466, -0.057678 ], [ 0.024719, -0.057678 ], [ 0.024719, -0.054932 ], [ 0.027466, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.057678 ], [ 0.027466, -0.060425 ], [ 0.024719, -0.060425 ], [ 0.024719, -0.057678 ], [ 0.027466, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.060425 ], [ 0.024719, -0.063171 ], [ 0.021973, -0.063171 ], [ 0.021973, -0.060425 ], [ 0.024719, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.063171 ], [ 0.024719, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.063171 ], [ 0.024719, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.060425 ], [ 0.027466, -0.063171 ], [ 0.024719, -0.063171 ], [ 0.024719, -0.060425 ], [ 0.027466, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.063171 ], [ 0.027466, -0.065918 ], [ 0.024719, -0.065918 ], [ 0.024719, -0.063171 ], [ 0.027466, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.054932 ], [ 0.030212, -0.057678 ], [ 0.027466, -0.057678 ], [ 0.027466, -0.054932 ], [ 0.030212, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.057678 ], [ 0.030212, -0.060425 ], [ 0.027466, -0.060425 ], [ 0.027466, -0.057678 ], [ 0.030212, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.054932 ], [ 0.032959, -0.057678 ], [ 0.030212, -0.057678 ], [ 0.030212, -0.054932 ], [ 0.032959, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.057678 ], [ 0.032959, -0.060425 ], [ 0.030212, -0.060425 ], [ 0.030212, -0.057678 ], [ 0.032959, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.060425 ], [ 0.030212, -0.063171 ], [ 0.027466, -0.063171 ], [ 0.027466, -0.060425 ], [ 0.030212, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.063171 ], [ 0.030212, -0.065918 ], [ 0.027466, -0.065918 ], [ 0.027466, -0.063171 ], [ 0.030212, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.060425 ], [ 0.032959, -0.063171 ], [ 0.030212, -0.063171 ], [ 0.030212, -0.060425 ], [ 0.032959, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.063171 ], [ 0.032959, -0.065918 ], [ 0.030212, -0.065918 ], [ 0.030212, -0.063171 ], [ 0.032959, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.043945 ], [ 0.035706, -0.046692 ], [ 0.032959, -0.046692 ], [ 0.032959, -0.043945 ], [ 0.035706, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.046692 ], [ 0.035706, -0.049438 ], [ 0.032959, -0.049438 ], [ 0.032959, -0.046692 ], [ 0.035706, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.043945 ], [ 0.038452, -0.046692 ], [ 0.035706, -0.046692 ], [ 0.035706, -0.043945 ], [ 0.038452, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.046692 ], [ 0.038452, -0.049438 ], [ 0.035706, -0.049438 ], [ 0.035706, -0.046692 ], [ 0.038452, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.049438 ], [ 0.035706, -0.052185 ], [ 0.032959, -0.052185 ], [ 0.032959, -0.049438 ], [ 0.035706, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.052185 ], [ 0.035706, -0.054932 ], [ 0.032959, -0.054932 ], [ 0.032959, -0.052185 ], [ 0.035706, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.049438 ], [ 0.038452, -0.052185 ], [ 0.035706, -0.052185 ], [ 0.035706, -0.049438 ], [ 0.038452, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.052185 ], [ 0.038452, -0.054932 ], [ 0.035706, -0.054932 ], [ 0.035706, -0.052185 ], [ 0.038452, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.043945 ], [ 0.041199, -0.046692 ], [ 0.038452, -0.046692 ], [ 0.038452, -0.043945 ], [ 0.041199, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.046692 ], [ 0.041199, -0.049438 ], [ 0.038452, -0.049438 ], [ 0.038452, -0.046692 ], [ 0.041199, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.046692 ], [ 0.041199, -0.046692 ], [ 0.041199, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.046692 ], [ 0.043945, -0.049438 ], [ 0.041199, -0.049438 ], [ 0.041199, -0.046692 ], [ 0.043945, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.049438 ], [ 0.041199, -0.052185 ], [ 0.038452, -0.052185 ], [ 0.038452, -0.049438 ], [ 0.041199, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.052185 ], [ 0.041199, -0.054932 ], [ 0.038452, -0.054932 ], [ 0.038452, -0.052185 ], [ 0.041199, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.049438 ], [ 0.043945, -0.052185 ], [ 0.041199, -0.052185 ], [ 0.041199, -0.049438 ], [ 0.043945, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.052185 ], [ 0.043945, -0.054932 ], [ 0.041199, -0.054932 ], [ 0.041199, -0.052185 ], [ 0.043945, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.054932 ], [ 0.035706, -0.057678 ], [ 0.032959, -0.057678 ], [ 0.032959, -0.054932 ], [ 0.035706, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.057678 ], [ 0.035706, -0.060425 ], [ 0.032959, -0.060425 ], [ 0.032959, -0.057678 ], [ 0.035706, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.054932 ], [ 0.038452, -0.057678 ], [ 0.035706, -0.057678 ], [ 0.035706, -0.054932 ], [ 0.038452, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.057678 ], [ 0.038452, -0.060425 ], [ 0.035706, -0.060425 ], [ 0.035706, -0.057678 ], [ 0.038452, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.060425 ], [ 0.035706, -0.063171 ], [ 0.032959, -0.063171 ], [ 0.032959, -0.060425 ], [ 0.035706, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.063171 ], [ 0.035706, -0.065918 ], [ 0.032959, -0.065918 ], [ 0.032959, -0.063171 ], [ 0.035706, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.060425 ], [ 0.038452, -0.063171 ], [ 0.035706, -0.063171 ], [ 0.035706, -0.060425 ], [ 0.038452, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.063171 ], [ 0.038452, -0.065918 ], [ 0.035706, -0.065918 ], [ 0.035706, -0.063171 ], [ 0.038452, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.054932 ], [ 0.041199, -0.057678 ], [ 0.038452, -0.057678 ], [ 0.038452, -0.054932 ], [ 0.041199, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.057678 ], [ 0.041199, -0.060425 ], [ 0.038452, -0.060425 ], [ 0.038452, -0.057678 ], [ 0.041199, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.054932 ], [ 0.043945, -0.057678 ], [ 0.041199, -0.057678 ], [ 0.041199, -0.054932 ], [ 0.043945, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.057678 ], [ 0.043945, -0.060425 ], [ 0.041199, -0.060425 ], [ 0.041199, -0.057678 ], [ 0.043945, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.060425 ], [ 0.041199, -0.063171 ], [ 0.038452, -0.063171 ], [ 0.038452, -0.060425 ], [ 0.041199, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.063171 ], [ 0.041199, -0.065918 ], [ 0.038452, -0.065918 ], [ 0.038452, -0.063171 ], [ 0.041199, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.060425 ], [ 0.043945, -0.063171 ], [ 0.041199, -0.063171 ], [ 0.041199, -0.060425 ], [ 0.043945, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.063171 ], [ 0.043945, -0.065918 ], [ 0.041199, -0.065918 ], [ 0.041199, -0.063171 ], [ 0.043945, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.021973 ], [ 0.046692, -0.024719 ], [ 0.043945, -0.024719 ], [ 0.043945, -0.021973 ], [ 0.046692, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.024719 ], [ 0.046692, -0.027466 ], [ 0.043945, -0.027466 ], [ 0.043945, -0.024719 ], [ 0.046692, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.021973 ], [ 0.049438, -0.024719 ], [ 0.046692, -0.024719 ], [ 0.046692, -0.021973 ], [ 0.049438, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.024719 ], [ 0.049438, -0.027466 ], [ 0.046692, -0.027466 ], [ 0.046692, -0.024719 ], [ 0.049438, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.027466 ], [ 0.046692, -0.030212 ], [ 0.043945, -0.030212 ], [ 0.043945, -0.027466 ], [ 0.046692, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.030212 ], [ 0.046692, -0.032959 ], [ 0.043945, -0.032959 ], [ 0.043945, -0.030212 ], [ 0.046692, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.027466 ], [ 0.049438, -0.030212 ], [ 0.046692, -0.030212 ], [ 0.046692, -0.027466 ], [ 0.049438, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.030212 ], [ 0.049438, -0.032959 ], [ 0.046692, -0.032959 ], [ 0.046692, -0.030212 ], [ 0.049438, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.021973 ], [ 0.052185, -0.024719 ], [ 0.049438, -0.024719 ], [ 0.049438, -0.021973 ], [ 0.052185, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.024719 ], [ 0.052185, -0.027466 ], [ 0.049438, -0.027466 ], [ 0.049438, -0.024719 ], [ 0.052185, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.021973 ], [ 0.054932, -0.024719 ], [ 0.052185, -0.024719 ], [ 0.052185, -0.021973 ], [ 0.054932, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.024719 ], [ 0.054932, -0.027466 ], [ 0.052185, -0.027466 ], [ 0.052185, -0.024719 ], [ 0.054932, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.027466 ], [ 0.052185, -0.030212 ], [ 0.049438, -0.030212 ], [ 0.049438, -0.027466 ], [ 0.052185, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.030212 ], [ 0.052185, -0.032959 ], [ 0.049438, -0.032959 ], [ 0.049438, -0.030212 ], [ 0.052185, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.027466 ], [ 0.054932, -0.030212 ], [ 0.052185, -0.030212 ], [ 0.052185, -0.027466 ], [ 0.054932, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.030212 ], [ 0.054932, -0.032959 ], [ 0.052185, -0.032959 ], [ 0.052185, -0.030212 ], [ 0.054932, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.032959 ], [ 0.046692, -0.035706 ], [ 0.043945, -0.035706 ], [ 0.043945, -0.032959 ], [ 0.046692, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.035706 ], [ 0.046692, -0.038452 ], [ 0.043945, -0.038452 ], [ 0.043945, -0.035706 ], [ 0.046692, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.032959 ], [ 0.049438, -0.035706 ], [ 0.046692, -0.035706 ], [ 0.046692, -0.032959 ], [ 0.049438, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.035706 ], [ 0.049438, -0.038452 ], [ 0.046692, -0.038452 ], [ 0.046692, -0.035706 ], [ 0.049438, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.038452 ], [ 0.046692, -0.041199 ], [ 0.043945, -0.041199 ], [ 0.043945, -0.038452 ], [ 0.046692, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.041199 ], [ 0.046692, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.041199 ], [ 0.046692, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.038452 ], [ 0.049438, -0.041199 ], [ 0.046692, -0.041199 ], [ 0.046692, -0.038452 ], [ 0.049438, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.041199 ], [ 0.049438, -0.043945 ], [ 0.046692, -0.043945 ], [ 0.046692, -0.041199 ], [ 0.049438, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.032959 ], [ 0.052185, -0.035706 ], [ 0.049438, -0.035706 ], [ 0.049438, -0.032959 ], [ 0.052185, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.035706 ], [ 0.052185, -0.038452 ], [ 0.049438, -0.038452 ], [ 0.049438, -0.035706 ], [ 0.052185, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.032959 ], [ 0.054932, -0.035706 ], [ 0.052185, -0.035706 ], [ 0.052185, -0.032959 ], [ 0.054932, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.035706 ], [ 0.054932, -0.038452 ], [ 0.052185, -0.038452 ], [ 0.052185, -0.035706 ], [ 0.054932, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.038452 ], [ 0.052185, -0.041199 ], [ 0.049438, -0.041199 ], [ 0.049438, -0.038452 ], [ 0.052185, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.041199 ], [ 0.052185, -0.043945 ], [ 0.049438, -0.043945 ], [ 0.049438, -0.041199 ], [ 0.052185, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.038452 ], [ 0.054932, -0.041199 ], [ 0.052185, -0.041199 ], [ 0.052185, -0.038452 ], [ 0.054932, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.041199 ], [ 0.054932, -0.043945 ], [ 0.052185, -0.043945 ], [ 0.052185, -0.041199 ], [ 0.054932, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.021973 ], [ 0.057678, -0.024719 ], [ 0.054932, -0.024719 ], [ 0.054932, -0.021973 ], [ 0.057678, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.024719 ], [ 0.057678, -0.027466 ], [ 0.054932, -0.027466 ], [ 0.054932, -0.024719 ], [ 0.057678, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.021973 ], [ 0.060425, -0.024719 ], [ 0.057678, -0.024719 ], [ 0.057678, -0.021973 ], [ 0.060425, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.024719 ], [ 0.060425, -0.027466 ], [ 0.057678, -0.027466 ], [ 0.057678, -0.024719 ], [ 0.060425, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.027466 ], [ 0.057678, -0.030212 ], [ 0.054932, -0.030212 ], [ 0.054932, -0.027466 ], [ 0.057678, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.030212 ], [ 0.057678, -0.032959 ], [ 0.054932, -0.032959 ], [ 0.054932, -0.030212 ], [ 0.057678, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.027466 ], [ 0.060425, -0.030212 ], [ 0.057678, -0.030212 ], [ 0.057678, -0.027466 ], [ 0.060425, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.030212 ], [ 0.060425, -0.032959 ], [ 0.057678, -0.032959 ], [ 0.057678, -0.030212 ], [ 0.060425, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.021973 ], [ 0.063171, -0.024719 ], [ 0.060425, -0.024719 ], [ 0.060425, -0.021973 ], [ 0.063171, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.024719 ], [ 0.063171, -0.027466 ], [ 0.060425, -0.027466 ], [ 0.060425, -0.024719 ], [ 0.063171, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.024719 ], [ 0.063171, -0.024719 ], [ 0.063171, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.024719 ], [ 0.065918, -0.027466 ], [ 0.063171, -0.027466 ], [ 0.063171, -0.024719 ], [ 0.065918, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.027466 ], [ 0.063171, -0.030212 ], [ 0.060425, -0.030212 ], [ 0.060425, -0.027466 ], [ 0.063171, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.030212 ], [ 0.063171, -0.032959 ], [ 0.060425, -0.032959 ], [ 0.060425, -0.030212 ], [ 0.063171, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.027466 ], [ 0.065918, -0.030212 ], [ 0.063171, -0.030212 ], [ 0.063171, -0.027466 ], [ 0.065918, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.030212 ], [ 0.065918, -0.032959 ], [ 0.063171, -0.032959 ], [ 0.063171, -0.030212 ], [ 0.065918, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.032959 ], [ 0.057678, -0.035706 ], [ 0.054932, -0.035706 ], [ 0.054932, -0.032959 ], [ 0.057678, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.035706 ], [ 0.057678, -0.038452 ], [ 0.054932, -0.038452 ], [ 0.054932, -0.035706 ], [ 0.057678, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.032959 ], [ 0.060425, -0.035706 ], [ 0.057678, -0.035706 ], [ 0.057678, -0.032959 ], [ 0.060425, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.035706 ], [ 0.060425, -0.038452 ], [ 0.057678, -0.038452 ], [ 0.057678, -0.035706 ], [ 0.060425, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.038452 ], [ 0.057678, -0.041199 ], [ 0.054932, -0.041199 ], [ 0.054932, -0.038452 ], [ 0.057678, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.041199 ], [ 0.057678, -0.043945 ], [ 0.054932, -0.043945 ], [ 0.054932, -0.041199 ], [ 0.057678, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.038452 ], [ 0.060425, -0.041199 ], [ 0.057678, -0.041199 ], [ 0.057678, -0.038452 ], [ 0.060425, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.041199 ], [ 0.060425, -0.043945 ], [ 0.057678, -0.043945 ], [ 0.057678, -0.041199 ], [ 0.060425, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.032959 ], [ 0.063171, -0.035706 ], [ 0.060425, -0.035706 ], [ 0.060425, -0.032959 ], [ 0.063171, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.035706 ], [ 0.063171, -0.038452 ], [ 0.060425, -0.038452 ], [ 0.060425, -0.035706 ], [ 0.063171, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.032959 ], [ 0.065918, -0.035706 ], [ 0.063171, -0.035706 ], [ 0.063171, -0.032959 ], [ 0.065918, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.035706 ], [ 0.065918, -0.038452 ], [ 0.063171, -0.038452 ], [ 0.063171, -0.035706 ], [ 0.065918, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.038452 ], [ 0.063171, -0.041199 ], [ 0.060425, -0.041199 ], [ 0.060425, -0.038452 ], [ 0.063171, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.041199 ], [ 0.063171, -0.043945 ], [ 0.060425, -0.043945 ], [ 0.060425, -0.041199 ], [ 0.063171, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.038452 ], [ 0.065918, -0.041199 ], [ 0.063171, -0.041199 ], [ 0.063171, -0.038452 ], [ 0.065918, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.041199 ], [ 0.065918, -0.043945 ], [ 0.063171, -0.043945 ], [ 0.063171, -0.041199 ], [ 0.065918, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.043945 ], [ 0.046692, -0.046692 ], [ 0.043945, -0.046692 ], [ 0.043945, -0.043945 ], [ 0.046692, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.046692 ], [ 0.046692, -0.049438 ], [ 0.043945, -0.049438 ], [ 0.043945, -0.046692 ], [ 0.046692, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.043945 ], [ 0.049438, -0.046692 ], [ 0.046692, -0.046692 ], [ 0.046692, -0.043945 ], [ 0.049438, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.046692 ], [ 0.049438, -0.049438 ], [ 0.046692, -0.049438 ], [ 0.046692, -0.046692 ], [ 0.049438, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.049438 ], [ 0.046692, -0.052185 ], [ 0.043945, -0.052185 ], [ 0.043945, -0.049438 ], [ 0.046692, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.052185 ], [ 0.046692, -0.054932 ], [ 0.043945, -0.054932 ], [ 0.043945, -0.052185 ], [ 0.046692, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.049438 ], [ 0.049438, -0.052185 ], [ 0.046692, -0.052185 ], [ 0.046692, -0.049438 ], [ 0.049438, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.052185 ], [ 0.049438, -0.054932 ], [ 0.046692, -0.054932 ], [ 0.046692, -0.052185 ], [ 0.049438, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.043945 ], [ 0.052185, -0.046692 ], [ 0.049438, -0.046692 ], [ 0.049438, -0.043945 ], [ 0.052185, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.046692 ], [ 0.052185, -0.049438 ], [ 0.049438, -0.049438 ], [ 0.049438, -0.046692 ], [ 0.052185, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.043945 ], [ 0.054932, -0.046692 ], [ 0.052185, -0.046692 ], [ 0.052185, -0.043945 ], [ 0.054932, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.046692 ], [ 0.054932, -0.049438 ], [ 0.052185, -0.049438 ], [ 0.052185, -0.046692 ], [ 0.054932, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.049438 ], [ 0.052185, -0.052185 ], [ 0.049438, -0.052185 ], [ 0.049438, -0.049438 ], [ 0.052185, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.052185 ], [ 0.052185, -0.054932 ], [ 0.049438, -0.054932 ], [ 0.049438, -0.052185 ], [ 0.052185, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.049438 ], [ 0.054932, -0.052185 ], [ 0.052185, -0.052185 ], [ 0.052185, -0.049438 ], [ 0.054932, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.052185 ], [ 0.054932, -0.054932 ], [ 0.052185, -0.054932 ], [ 0.052185, -0.052185 ], [ 0.054932, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.054932 ], [ 0.046692, -0.057678 ], [ 0.043945, -0.057678 ], [ 0.043945, -0.054932 ], [ 0.046692, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.057678 ], [ 0.046692, -0.060425 ], [ 0.043945, -0.060425 ], [ 0.043945, -0.057678 ], [ 0.046692, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.054932 ], [ 0.049438, -0.057678 ], [ 0.046692, -0.057678 ], [ 0.046692, -0.054932 ], [ 0.049438, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.057678 ], [ 0.049438, -0.060425 ], [ 0.046692, -0.060425 ], [ 0.046692, -0.057678 ], [ 0.049438, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.060425 ], [ 0.046692, -0.063171 ], [ 0.043945, -0.063171 ], [ 0.043945, -0.060425 ], [ 0.046692, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.063171 ], [ 0.046692, -0.065918 ], [ 0.043945, -0.065918 ], [ 0.043945, -0.063171 ], [ 0.046692, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.060425 ], [ 0.049438, -0.063171 ], [ 0.046692, -0.063171 ], [ 0.046692, -0.060425 ], [ 0.049438, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.063171 ], [ 0.049438, -0.065918 ], [ 0.046692, -0.065918 ], [ 0.046692, -0.063171 ], [ 0.049438, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.054932 ], [ 0.052185, -0.057678 ], [ 0.049438, -0.057678 ], [ 0.049438, -0.054932 ], [ 0.052185, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.057678 ], [ 0.052185, -0.060425 ], [ 0.049438, -0.060425 ], [ 0.049438, -0.057678 ], [ 0.052185, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.054932 ], [ 0.054932, -0.057678 ], [ 0.052185, -0.057678 ], [ 0.052185, -0.054932 ], [ 0.054932, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.057678 ], [ 0.054932, -0.060425 ], [ 0.052185, -0.060425 ], [ 0.052185, -0.057678 ], [ 0.054932, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.060425 ], [ 0.052185, -0.063171 ], [ 0.049438, -0.063171 ], [ 0.049438, -0.060425 ], [ 0.052185, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.063171 ], [ 0.052185, -0.065918 ], [ 0.049438, -0.065918 ], [ 0.049438, -0.063171 ], [ 0.052185, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.060425 ], [ 0.054932, -0.063171 ], [ 0.052185, -0.063171 ], [ 0.052185, -0.060425 ], [ 0.054932, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.063171 ], [ 0.054932, -0.065918 ], [ 0.052185, -0.065918 ], [ 0.052185, -0.063171 ], [ 0.054932, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.043945 ], [ 0.057678, -0.046692 ], [ 0.054932, -0.046692 ], [ 0.054932, -0.043945 ], [ 0.057678, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.046692 ], [ 0.057678, -0.049438 ], [ 0.054932, -0.049438 ], [ 0.054932, -0.046692 ], [ 0.057678, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.043945 ], [ 0.060425, -0.046692 ], [ 0.057678, -0.046692 ], [ 0.057678, -0.043945 ], [ 0.060425, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.046692 ], [ 0.060425, -0.049438 ], [ 0.057678, -0.049438 ], [ 0.057678, -0.046692 ], [ 0.060425, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.049438 ], [ 0.057678, -0.052185 ], [ 0.054932, -0.052185 ], [ 0.054932, -0.049438 ], [ 0.057678, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.052185 ], [ 0.057678, -0.054932 ], [ 0.054932, -0.054932 ], [ 0.054932, -0.052185 ], [ 0.057678, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.049438 ], [ 0.060425, -0.052185 ], [ 0.057678, -0.052185 ], [ 0.057678, -0.049438 ], [ 0.060425, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.052185 ], [ 0.060425, -0.054932 ], [ 0.057678, -0.054932 ], [ 0.057678, -0.052185 ], [ 0.060425, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.043945 ], [ 0.063171, -0.046692 ], [ 0.060425, -0.046692 ], [ 0.060425, -0.043945 ], [ 0.063171, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.046692 ], [ 0.063171, -0.049438 ], [ 0.060425, -0.049438 ], [ 0.060425, -0.046692 ], [ 0.063171, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.043945 ], [ 0.065918, -0.046692 ], [ 0.063171, -0.046692 ], [ 0.063171, -0.043945 ], [ 0.065918, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.046692 ], [ 0.065918, -0.049438 ], [ 0.063171, -0.049438 ], [ 0.063171, -0.046692 ], [ 0.065918, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.049438 ], [ 0.063171, -0.052185 ], [ 0.060425, -0.052185 ], [ 0.060425, -0.049438 ], [ 0.063171, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.052185 ], [ 0.063171, -0.054932 ], [ 0.060425, -0.054932 ], [ 0.060425, -0.052185 ], [ 0.063171, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.049438 ], [ 0.065918, -0.052185 ], [ 0.063171, -0.052185 ], [ 0.063171, -0.049438 ], [ 0.065918, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.052185 ], [ 0.065918, -0.054932 ], [ 0.063171, -0.054932 ], [ 0.063171, -0.052185 ], [ 0.065918, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.054932 ], [ 0.057678, -0.057678 ], [ 0.054932, -0.057678 ], [ 0.054932, -0.054932 ], [ 0.057678, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.057678 ], [ 0.057678, -0.060425 ], [ 0.054932, -0.060425 ], [ 0.054932, -0.057678 ], [ 0.057678, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.054932 ], [ 0.060425, -0.057678 ], [ 0.057678, -0.057678 ], [ 0.057678, -0.054932 ], [ 0.060425, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.057678 ], [ 0.060425, -0.060425 ], [ 0.057678, -0.060425 ], [ 0.057678, -0.057678 ], [ 0.060425, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.060425 ], [ 0.057678, -0.063171 ], [ 0.054932, -0.063171 ], [ 0.054932, -0.060425 ], [ 0.057678, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.063171 ], [ 0.057678, -0.065918 ], [ 0.054932, -0.065918 ], [ 0.054932, -0.063171 ], [ 0.057678, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.060425 ], [ 0.060425, -0.063171 ], [ 0.057678, -0.063171 ], [ 0.057678, -0.060425 ], [ 0.060425, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.063171 ], [ 0.060425, -0.065918 ], [ 0.057678, -0.065918 ], [ 0.057678, -0.063171 ], [ 0.060425, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.054932 ], [ 0.063171, -0.057678 ], [ 0.060425, -0.057678 ], [ 0.060425, -0.054932 ], [ 0.063171, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.057678 ], [ 0.063171, -0.060425 ], [ 0.060425, -0.060425 ], [ 0.060425, -0.057678 ], [ 0.063171, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.054932 ], [ 0.065918, -0.057678 ], [ 0.063171, -0.057678 ], [ 0.063171, -0.054932 ], [ 0.065918, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.057678 ], [ 0.065918, -0.060425 ], [ 0.063171, -0.060425 ], [ 0.063171, -0.057678 ], [ 0.065918, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.060425 ], [ 0.063171, -0.063171 ], [ 0.060425, -0.063171 ], [ 0.060425, -0.060425 ], [ 0.063171, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.063171 ], [ 0.063171, -0.065918 ], [ 0.060425, -0.065918 ], [ 0.060425, -0.063171 ], [ 0.063171, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.060425 ], [ 0.065918, -0.063171 ], [ 0.063171, -0.063171 ], [ 0.063171, -0.060425 ], [ 0.065918, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.063171 ], [ 0.065918, -0.065918 ], [ 0.063171, -0.065918 ], [ 0.063171, -0.063171 ], [ 0.065918, -0.063171 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1024, "y": 1024 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "x": 16, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.021973 ], [ 0.023346, -0.023346 ], [ 0.021973, -0.023346 ], [ 0.021973, -0.021973 ], [ 0.023346, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.023346 ], [ 0.023346, -0.024719 ], [ 0.021973, -0.024719 ], [ 0.021973, -0.023346 ], [ 0.023346, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.021973 ], [ 0.024719, -0.023346 ], [ 0.023346, -0.023346 ], [ 0.023346, -0.021973 ], [ 0.024719, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.023346 ], [ 0.024719, -0.024719 ], [ 0.023346, -0.024719 ], [ 0.023346, -0.023346 ], [ 0.024719, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.024719 ], [ 0.023346, -0.026093 ], [ 0.021973, -0.026093 ], [ 0.021973, -0.024719 ], [ 0.023346, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.026093 ], [ 0.023346, -0.027466 ], [ 0.021973, -0.027466 ], [ 0.021973, -0.026093 ], [ 0.023346, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.024719 ], [ 0.024719, -0.026093 ], [ 0.023346, -0.026093 ], [ 0.023346, -0.024719 ], [ 0.024719, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.026093 ], [ 0.024719, -0.027466 ], [ 0.023346, -0.027466 ], [ 0.023346, -0.026093 ], [ 0.024719, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.021973 ], [ 0.026093, -0.023346 ], [ 0.024719, -0.023346 ], [ 0.024719, -0.021973 ], [ 0.026093, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.023346 ], [ 0.026093, -0.024719 ], [ 0.024719, -0.024719 ], [ 0.024719, -0.023346 ], [ 0.026093, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.021973 ], [ 0.027466, -0.023346 ], [ 0.026093, -0.023346 ], [ 0.026093, -0.021973 ], [ 0.027466, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.023346 ], [ 0.027466, -0.024719 ], [ 0.026093, -0.024719 ], [ 0.026093, -0.023346 ], [ 0.027466, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.024719 ], [ 0.026093, -0.026093 ], [ 0.024719, -0.026093 ], [ 0.024719, -0.024719 ], [ 0.026093, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.026093 ], [ 0.026093, -0.027466 ], [ 0.024719, -0.027466 ], [ 0.024719, -0.026093 ], [ 0.026093, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.024719 ], [ 0.027466, -0.026093 ], [ 0.026093, -0.026093 ], [ 0.026093, -0.024719 ], [ 0.027466, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.026093 ], [ 0.027466, -0.027466 ], [ 0.026093, -0.027466 ], [ 0.026093, -0.026093 ], [ 0.027466, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.027466 ], [ 0.023346, -0.028839 ], [ 0.021973, -0.028839 ], [ 0.021973, -0.027466 ], [ 0.023346, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.028839 ], [ 0.023346, -0.030212 ], [ 0.021973, -0.030212 ], [ 0.021973, -0.028839 ], [ 0.023346, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.027466 ], [ 0.024719, -0.028839 ], [ 0.023346, -0.028839 ], [ 0.023346, -0.027466 ], [ 0.024719, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.028839 ], [ 0.024719, -0.030212 ], [ 0.023346, -0.030212 ], [ 0.023346, -0.028839 ], [ 0.024719, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.030212 ], [ 0.023346, -0.031586 ], [ 0.021973, -0.031586 ], [ 0.021973, -0.030212 ], [ 0.023346, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.031586 ], [ 0.023346, -0.032959 ], [ 0.021973, -0.032959 ], [ 0.021973, -0.031586 ], [ 0.023346, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.030212 ], [ 0.024719, -0.031586 ], [ 0.023346, -0.031586 ], [ 0.023346, -0.030212 ], [ 0.024719, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.031586 ], [ 0.024719, -0.032959 ], [ 0.023346, -0.032959 ], [ 0.023346, -0.031586 ], [ 0.024719, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.027466 ], [ 0.026093, -0.028839 ], [ 0.024719, -0.028839 ], [ 0.024719, -0.027466 ], [ 0.026093, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.028839 ], [ 0.026093, -0.030212 ], [ 0.024719, -0.030212 ], [ 0.024719, -0.028839 ], [ 0.026093, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.027466 ], [ 0.027466, -0.028839 ], [ 0.026093, -0.028839 ], [ 0.026093, -0.027466 ], [ 0.027466, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.028839 ], [ 0.027466, -0.030212 ], [ 0.026093, -0.030212 ], [ 0.026093, -0.028839 ], [ 0.027466, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.030212 ], [ 0.026093, -0.031586 ], [ 0.024719, -0.031586 ], [ 0.024719, -0.030212 ], [ 0.026093, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.031586 ], [ 0.026093, -0.032959 ], [ 0.024719, -0.032959 ], [ 0.024719, -0.031586 ], [ 0.026093, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.030212 ], [ 0.027466, -0.031586 ], [ 0.026093, -0.031586 ], [ 0.026093, -0.030212 ], [ 0.027466, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.031586 ], [ 0.027466, -0.032959 ], [ 0.026093, -0.032959 ], [ 0.026093, -0.031586 ], [ 0.027466, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.021973 ], [ 0.028839, -0.023346 ], [ 0.027466, -0.023346 ], [ 0.027466, -0.021973 ], [ 0.028839, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.023346 ], [ 0.028839, -0.024719 ], [ 0.027466, -0.024719 ], [ 0.027466, -0.023346 ], [ 0.028839, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.021973 ], [ 0.030212, -0.023346 ], [ 0.028839, -0.023346 ], [ 0.028839, -0.021973 ], [ 0.030212, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.023346 ], [ 0.030212, -0.024719 ], [ 0.028839, -0.024719 ], [ 0.028839, -0.023346 ], [ 0.030212, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.024719 ], [ 0.028839, -0.026093 ], [ 0.027466, -0.026093 ], [ 0.027466, -0.024719 ], [ 0.028839, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.026093 ], [ 0.028839, -0.027466 ], [ 0.027466, -0.027466 ], [ 0.027466, -0.026093 ], [ 0.028839, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.024719 ], [ 0.030212, -0.026093 ], [ 0.028839, -0.026093 ], [ 0.028839, -0.024719 ], [ 0.030212, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.026093 ], [ 0.030212, -0.027466 ], [ 0.028839, -0.027466 ], [ 0.028839, -0.026093 ], [ 0.030212, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.021973 ], [ 0.031586, -0.023346 ], [ 0.030212, -0.023346 ], [ 0.030212, -0.021973 ], [ 0.031586, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.023346 ], [ 0.031586, -0.024719 ], [ 0.030212, -0.024719 ], [ 0.030212, -0.023346 ], [ 0.031586, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.021973 ], [ 0.032959, -0.023346 ], [ 0.031586, -0.023346 ], [ 0.031586, -0.021973 ], [ 0.032959, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.023346 ], [ 0.032959, -0.024719 ], [ 0.031586, -0.024719 ], [ 0.031586, -0.023346 ], [ 0.032959, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.024719 ], [ 0.031586, -0.026093 ], [ 0.030212, -0.026093 ], [ 0.030212, -0.024719 ], [ 0.031586, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.026093 ], [ 0.031586, -0.027466 ], [ 0.030212, -0.027466 ], [ 0.030212, -0.026093 ], [ 0.031586, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.024719 ], [ 0.032959, -0.026093 ], [ 0.031586, -0.026093 ], [ 0.031586, -0.024719 ], [ 0.032959, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.026093 ], [ 0.032959, -0.027466 ], [ 0.031586, -0.027466 ], [ 0.031586, -0.026093 ], [ 0.032959, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.027466 ], [ 0.028839, -0.028839 ], [ 0.027466, -0.028839 ], [ 0.027466, -0.027466 ], [ 0.028839, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.028839 ], [ 0.028839, -0.030212 ], [ 0.027466, -0.030212 ], [ 0.027466, -0.028839 ], [ 0.028839, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.027466 ], [ 0.030212, -0.028839 ], [ 0.028839, -0.028839 ], [ 0.028839, -0.027466 ], [ 0.030212, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.028839 ], [ 0.030212, -0.030212 ], [ 0.028839, -0.030212 ], [ 0.028839, -0.028839 ], [ 0.030212, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.030212 ], [ 0.028839, -0.031586 ], [ 0.027466, -0.031586 ], [ 0.027466, -0.030212 ], [ 0.028839, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.031586 ], [ 0.028839, -0.032959 ], [ 0.027466, -0.032959 ], [ 0.027466, -0.031586 ], [ 0.028839, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.030212 ], [ 0.030212, -0.031586 ], [ 0.028839, -0.031586 ], [ 0.028839, -0.030212 ], [ 0.030212, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.031586 ], [ 0.030212, -0.032959 ], [ 0.028839, -0.032959 ], [ 0.028839, -0.031586 ], [ 0.030212, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.027466 ], [ 0.031586, -0.028839 ], [ 0.030212, -0.028839 ], [ 0.030212, -0.027466 ], [ 0.031586, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.028839 ], [ 0.031586, -0.030212 ], [ 0.030212, -0.030212 ], [ 0.030212, -0.028839 ], [ 0.031586, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.027466 ], [ 0.032959, -0.028839 ], [ 0.031586, -0.028839 ], [ 0.031586, -0.027466 ], [ 0.032959, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.028839 ], [ 0.032959, -0.030212 ], [ 0.031586, -0.030212 ], [ 0.031586, -0.028839 ], [ 0.032959, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.030212 ], [ 0.031586, -0.031586 ], [ 0.030212, -0.031586 ], [ 0.030212, -0.030212 ], [ 0.031586, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.031586 ], [ 0.031586, -0.032959 ], [ 0.030212, -0.032959 ], [ 0.030212, -0.031586 ], [ 0.031586, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.030212 ], [ 0.032959, -0.031586 ], [ 0.031586, -0.031586 ], [ 0.031586, -0.030212 ], [ 0.032959, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.031586 ], [ 0.032959, -0.032959 ], [ 0.031586, -0.032959 ], [ 0.031586, -0.031586 ], [ 0.032959, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.032959 ], [ 0.023346, -0.034332 ], [ 0.021973, -0.034332 ], [ 0.021973, -0.032959 ], [ 0.023346, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.034332 ], [ 0.023346, -0.035706 ], [ 0.021973, -0.035706 ], [ 0.021973, -0.034332 ], [ 0.023346, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.032959 ], [ 0.024719, -0.034332 ], [ 0.023346, -0.034332 ], [ 0.023346, -0.032959 ], [ 0.024719, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.034332 ], [ 0.024719, -0.035706 ], [ 0.023346, -0.035706 ], [ 0.023346, -0.034332 ], [ 0.024719, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.035706 ], [ 0.023346, -0.037079 ], [ 0.021973, -0.037079 ], [ 0.021973, -0.035706 ], [ 0.023346, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.037079 ], [ 0.023346, -0.038452 ], [ 0.021973, -0.038452 ], [ 0.021973, -0.037079 ], [ 0.023346, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.035706 ], [ 0.024719, -0.037079 ], [ 0.023346, -0.037079 ], [ 0.023346, -0.035706 ], [ 0.024719, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.037079 ], [ 0.024719, -0.038452 ], [ 0.023346, -0.038452 ], [ 0.023346, -0.037079 ], [ 0.024719, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.032959 ], [ 0.026093, -0.034332 ], [ 0.024719, -0.034332 ], [ 0.024719, -0.032959 ], [ 0.026093, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.034332 ], [ 0.026093, -0.035706 ], [ 0.024719, -0.035706 ], [ 0.024719, -0.034332 ], [ 0.026093, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.032959 ], [ 0.027466, -0.034332 ], [ 0.026093, -0.034332 ], [ 0.026093, -0.032959 ], [ 0.027466, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.034332 ], [ 0.027466, -0.035706 ], [ 0.026093, -0.035706 ], [ 0.026093, -0.034332 ], [ 0.027466, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.035706 ], [ 0.026093, -0.037079 ], [ 0.024719, -0.037079 ], [ 0.024719, -0.035706 ], [ 0.026093, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.037079 ], [ 0.026093, -0.038452 ], [ 0.024719, -0.038452 ], [ 0.024719, -0.037079 ], [ 0.026093, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.035706 ], [ 0.027466, -0.037079 ], [ 0.026093, -0.037079 ], [ 0.026093, -0.035706 ], [ 0.027466, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.037079 ], [ 0.027466, -0.038452 ], [ 0.026093, -0.038452 ], [ 0.026093, -0.037079 ], [ 0.027466, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.038452 ], [ 0.023346, -0.039825 ], [ 0.021973, -0.039825 ], [ 0.021973, -0.038452 ], [ 0.023346, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.039825 ], [ 0.023346, -0.041199 ], [ 0.021973, -0.041199 ], [ 0.021973, -0.039825 ], [ 0.023346, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.038452 ], [ 0.024719, -0.039825 ], [ 0.023346, -0.039825 ], [ 0.023346, -0.038452 ], [ 0.024719, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.039825 ], [ 0.024719, -0.041199 ], [ 0.023346, -0.041199 ], [ 0.023346, -0.039825 ], [ 0.024719, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.041199 ], [ 0.023346, -0.042572 ], [ 0.021973, -0.042572 ], [ 0.021973, -0.041199 ], [ 0.023346, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.042572 ], [ 0.023346, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.042572 ], [ 0.023346, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.041199 ], [ 0.024719, -0.042572 ], [ 0.023346, -0.042572 ], [ 0.023346, -0.041199 ], [ 0.024719, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.042572 ], [ 0.024719, -0.043945 ], [ 0.023346, -0.043945 ], [ 0.023346, -0.042572 ], [ 0.024719, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.038452 ], [ 0.026093, -0.039825 ], [ 0.024719, -0.039825 ], [ 0.024719, -0.038452 ], [ 0.026093, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.039825 ], [ 0.026093, -0.041199 ], [ 0.024719, -0.041199 ], [ 0.024719, -0.039825 ], [ 0.026093, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.038452 ], [ 0.027466, -0.039825 ], [ 0.026093, -0.039825 ], [ 0.026093, -0.038452 ], [ 0.027466, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.039825 ], [ 0.027466, -0.041199 ], [ 0.026093, -0.041199 ], [ 0.026093, -0.039825 ], [ 0.027466, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.041199 ], [ 0.026093, -0.042572 ], [ 0.024719, -0.042572 ], [ 0.024719, -0.041199 ], [ 0.026093, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.042572 ], [ 0.026093, -0.043945 ], [ 0.024719, -0.043945 ], [ 0.024719, -0.042572 ], [ 0.026093, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.041199 ], [ 0.027466, -0.042572 ], [ 0.026093, -0.042572 ], [ 0.026093, -0.041199 ], [ 0.027466, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.042572 ], [ 0.027466, -0.043945 ], [ 0.026093, -0.043945 ], [ 0.026093, -0.042572 ], [ 0.027466, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.032959 ], [ 0.028839, -0.034332 ], [ 0.027466, -0.034332 ], [ 0.027466, -0.032959 ], [ 0.028839, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.034332 ], [ 0.028839, -0.035706 ], [ 0.027466, -0.035706 ], [ 0.027466, -0.034332 ], [ 0.028839, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.032959 ], [ 0.030212, -0.034332 ], [ 0.028839, -0.034332 ], [ 0.028839, -0.032959 ], [ 0.030212, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.034332 ], [ 0.030212, -0.035706 ], [ 0.028839, -0.035706 ], [ 0.028839, -0.034332 ], [ 0.030212, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.035706 ], [ 0.028839, -0.037079 ], [ 0.027466, -0.037079 ], [ 0.027466, -0.035706 ], [ 0.028839, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.037079 ], [ 0.028839, -0.038452 ], [ 0.027466, -0.038452 ], [ 0.027466, -0.037079 ], [ 0.028839, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.035706 ], [ 0.030212, -0.037079 ], [ 0.028839, -0.037079 ], [ 0.028839, -0.035706 ], [ 0.030212, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.037079 ], [ 0.030212, -0.038452 ], [ 0.028839, -0.038452 ], [ 0.028839, -0.037079 ], [ 0.030212, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.032959 ], [ 0.031586, -0.034332 ], [ 0.030212, -0.034332 ], [ 0.030212, -0.032959 ], [ 0.031586, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.034332 ], [ 0.031586, -0.035706 ], [ 0.030212, -0.035706 ], [ 0.030212, -0.034332 ], [ 0.031586, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.032959 ], [ 0.032959, -0.034332 ], [ 0.031586, -0.034332 ], [ 0.031586, -0.032959 ], [ 0.032959, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.034332 ], [ 0.032959, -0.035706 ], [ 0.031586, -0.035706 ], [ 0.031586, -0.034332 ], [ 0.032959, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.035706 ], [ 0.031586, -0.037079 ], [ 0.030212, -0.037079 ], [ 0.030212, -0.035706 ], [ 0.031586, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.037079 ], [ 0.031586, -0.038452 ], [ 0.030212, -0.038452 ], [ 0.030212, -0.037079 ], [ 0.031586, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.035706 ], [ 0.032959, -0.037079 ], [ 0.031586, -0.037079 ], [ 0.031586, -0.035706 ], [ 0.032959, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.037079 ], [ 0.032959, -0.038452 ], [ 0.031586, -0.038452 ], [ 0.031586, -0.037079 ], [ 0.032959, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.038452 ], [ 0.028839, -0.039825 ], [ 0.027466, -0.039825 ], [ 0.027466, -0.038452 ], [ 0.028839, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.039825 ], [ 0.028839, -0.041199 ], [ 0.027466, -0.041199 ], [ 0.027466, -0.039825 ], [ 0.028839, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.038452 ], [ 0.030212, -0.039825 ], [ 0.028839, -0.039825 ], [ 0.028839, -0.038452 ], [ 0.030212, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.039825 ], [ 0.030212, -0.041199 ], [ 0.028839, -0.041199 ], [ 0.028839, -0.039825 ], [ 0.030212, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.041199 ], [ 0.028839, -0.042572 ], [ 0.027466, -0.042572 ], [ 0.027466, -0.041199 ], [ 0.028839, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.042572 ], [ 0.028839, -0.043945 ], [ 0.027466, -0.043945 ], [ 0.027466, -0.042572 ], [ 0.028839, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.041199 ], [ 0.030212, -0.042572 ], [ 0.028839, -0.042572 ], [ 0.028839, -0.041199 ], [ 0.030212, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.042572 ], [ 0.030212, -0.043945 ], [ 0.028839, -0.043945 ], [ 0.028839, -0.042572 ], [ 0.030212, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.038452 ], [ 0.031586, -0.039825 ], [ 0.030212, -0.039825 ], [ 0.030212, -0.038452 ], [ 0.031586, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.039825 ], [ 0.031586, -0.041199 ], [ 0.030212, -0.041199 ], [ 0.030212, -0.039825 ], [ 0.031586, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.038452 ], [ 0.032959, -0.039825 ], [ 0.031586, -0.039825 ], [ 0.031586, -0.038452 ], [ 0.032959, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.039825 ], [ 0.032959, -0.041199 ], [ 0.031586, -0.041199 ], [ 0.031586, -0.039825 ], [ 0.032959, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.041199 ], [ 0.031586, -0.042572 ], [ 0.030212, -0.042572 ], [ 0.030212, -0.041199 ], [ 0.031586, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.042572 ], [ 0.031586, -0.043945 ], [ 0.030212, -0.043945 ], [ 0.030212, -0.042572 ], [ 0.031586, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.041199 ], [ 0.032959, -0.042572 ], [ 0.031586, -0.042572 ], [ 0.031586, -0.041199 ], [ 0.032959, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.042572 ], [ 0.032959, -0.043945 ], [ 0.031586, -0.043945 ], [ 0.031586, -0.042572 ], [ 0.032959, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.021973 ], [ 0.034332, -0.023346 ], [ 0.032959, -0.023346 ], [ 0.032959, -0.021973 ], [ 0.034332, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.023346 ], [ 0.034332, -0.024719 ], [ 0.032959, -0.024719 ], [ 0.032959, -0.023346 ], [ 0.034332, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.021973 ], [ 0.035706, -0.023346 ], [ 0.034332, -0.023346 ], [ 0.034332, -0.021973 ], [ 0.035706, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.023346 ], [ 0.035706, -0.024719 ], [ 0.034332, -0.024719 ], [ 0.034332, -0.023346 ], [ 0.035706, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.024719 ], [ 0.034332, -0.026093 ], [ 0.032959, -0.026093 ], [ 0.032959, -0.024719 ], [ 0.034332, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.026093 ], [ 0.034332, -0.027466 ], [ 0.032959, -0.027466 ], [ 0.032959, -0.026093 ], [ 0.034332, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.024719 ], [ 0.035706, -0.026093 ], [ 0.034332, -0.026093 ], [ 0.034332, -0.024719 ], [ 0.035706, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.026093 ], [ 0.035706, -0.027466 ], [ 0.034332, -0.027466 ], [ 0.034332, -0.026093 ], [ 0.035706, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.021973 ], [ 0.037079, -0.023346 ], [ 0.035706, -0.023346 ], [ 0.035706, -0.021973 ], [ 0.037079, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.023346 ], [ 0.037079, -0.024719 ], [ 0.035706, -0.024719 ], [ 0.035706, -0.023346 ], [ 0.037079, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.021973 ], [ 0.038452, -0.023346 ], [ 0.037079, -0.023346 ], [ 0.037079, -0.021973 ], [ 0.038452, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.023346 ], [ 0.038452, -0.024719 ], [ 0.037079, -0.024719 ], [ 0.037079, -0.023346 ], [ 0.038452, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.024719 ], [ 0.037079, -0.026093 ], [ 0.035706, -0.026093 ], [ 0.035706, -0.024719 ], [ 0.037079, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.026093 ], [ 0.037079, -0.027466 ], [ 0.035706, -0.027466 ], [ 0.035706, -0.026093 ], [ 0.037079, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.024719 ], [ 0.038452, -0.026093 ], [ 0.037079, -0.026093 ], [ 0.037079, -0.024719 ], [ 0.038452, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.026093 ], [ 0.038452, -0.027466 ], [ 0.037079, -0.027466 ], [ 0.037079, -0.026093 ], [ 0.038452, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.027466 ], [ 0.034332, -0.028839 ], [ 0.032959, -0.028839 ], [ 0.032959, -0.027466 ], [ 0.034332, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.028839 ], [ 0.034332, -0.030212 ], [ 0.032959, -0.030212 ], [ 0.032959, -0.028839 ], [ 0.034332, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.027466 ], [ 0.035706, -0.028839 ], [ 0.034332, -0.028839 ], [ 0.034332, -0.027466 ], [ 0.035706, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.028839 ], [ 0.035706, -0.030212 ], [ 0.034332, -0.030212 ], [ 0.034332, -0.028839 ], [ 0.035706, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.030212 ], [ 0.034332, -0.031586 ], [ 0.032959, -0.031586 ], [ 0.032959, -0.030212 ], [ 0.034332, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.031586 ], [ 0.034332, -0.032959 ], [ 0.032959, -0.032959 ], [ 0.032959, -0.031586 ], [ 0.034332, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.030212 ], [ 0.035706, -0.031586 ], [ 0.034332, -0.031586 ], [ 0.034332, -0.030212 ], [ 0.035706, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.031586 ], [ 0.035706, -0.032959 ], [ 0.034332, -0.032959 ], [ 0.034332, -0.031586 ], [ 0.035706, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.027466 ], [ 0.037079, -0.028839 ], [ 0.035706, -0.028839 ], [ 0.035706, -0.027466 ], [ 0.037079, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.028839 ], [ 0.037079, -0.030212 ], [ 0.035706, -0.030212 ], [ 0.035706, -0.028839 ], [ 0.037079, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.027466 ], [ 0.038452, -0.028839 ], [ 0.037079, -0.028839 ], [ 0.037079, -0.027466 ], [ 0.038452, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.028839 ], [ 0.038452, -0.030212 ], [ 0.037079, -0.030212 ], [ 0.037079, -0.028839 ], [ 0.038452, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.030212 ], [ 0.037079, -0.031586 ], [ 0.035706, -0.031586 ], [ 0.035706, -0.030212 ], [ 0.037079, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.031586 ], [ 0.037079, -0.032959 ], [ 0.035706, -0.032959 ], [ 0.035706, -0.031586 ], [ 0.037079, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.030212 ], [ 0.038452, -0.031586 ], [ 0.037079, -0.031586 ], [ 0.037079, -0.030212 ], [ 0.038452, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.031586 ], [ 0.038452, -0.032959 ], [ 0.037079, -0.032959 ], [ 0.037079, -0.031586 ], [ 0.038452, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.021973 ], [ 0.039825, -0.023346 ], [ 0.038452, -0.023346 ], [ 0.038452, -0.021973 ], [ 0.039825, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.023346 ], [ 0.039825, -0.024719 ], [ 0.038452, -0.024719 ], [ 0.038452, -0.023346 ], [ 0.039825, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.021973 ], [ 0.041199, -0.023346 ], [ 0.039825, -0.023346 ], [ 0.039825, -0.021973 ], [ 0.041199, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.023346 ], [ 0.041199, -0.024719 ], [ 0.039825, -0.024719 ], [ 0.039825, -0.023346 ], [ 0.041199, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.024719 ], [ 0.039825, -0.026093 ], [ 0.038452, -0.026093 ], [ 0.038452, -0.024719 ], [ 0.039825, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.026093 ], [ 0.039825, -0.027466 ], [ 0.038452, -0.027466 ], [ 0.038452, -0.026093 ], [ 0.039825, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.024719 ], [ 0.041199, -0.026093 ], [ 0.039825, -0.026093 ], [ 0.039825, -0.024719 ], [ 0.041199, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.026093 ], [ 0.041199, -0.027466 ], [ 0.039825, -0.027466 ], [ 0.039825, -0.026093 ], [ 0.041199, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.021973 ], [ 0.042572, -0.023346 ], [ 0.041199, -0.023346 ], [ 0.041199, -0.021973 ], [ 0.042572, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.023346 ], [ 0.042572, -0.024719 ], [ 0.041199, -0.024719 ], [ 0.041199, -0.023346 ], [ 0.042572, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.023346 ], [ 0.042572, -0.023346 ], [ 0.042572, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.023346 ], [ 0.043945, -0.024719 ], [ 0.042572, -0.024719 ], [ 0.042572, -0.023346 ], [ 0.043945, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.024719 ], [ 0.042572, -0.026093 ], [ 0.041199, -0.026093 ], [ 0.041199, -0.024719 ], [ 0.042572, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.026093 ], [ 0.042572, -0.027466 ], [ 0.041199, -0.027466 ], [ 0.041199, -0.026093 ], [ 0.042572, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.024719 ], [ 0.043945, -0.026093 ], [ 0.042572, -0.026093 ], [ 0.042572, -0.024719 ], [ 0.043945, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.026093 ], [ 0.043945, -0.027466 ], [ 0.042572, -0.027466 ], [ 0.042572, -0.026093 ], [ 0.043945, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.027466 ], [ 0.039825, -0.028839 ], [ 0.038452, -0.028839 ], [ 0.038452, -0.027466 ], [ 0.039825, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.028839 ], [ 0.039825, -0.030212 ], [ 0.038452, -0.030212 ], [ 0.038452, -0.028839 ], [ 0.039825, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.027466 ], [ 0.041199, -0.028839 ], [ 0.039825, -0.028839 ], [ 0.039825, -0.027466 ], [ 0.041199, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.028839 ], [ 0.041199, -0.030212 ], [ 0.039825, -0.030212 ], [ 0.039825, -0.028839 ], [ 0.041199, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.030212 ], [ 0.039825, -0.031586 ], [ 0.038452, -0.031586 ], [ 0.038452, -0.030212 ], [ 0.039825, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.031586 ], [ 0.039825, -0.032959 ], [ 0.038452, -0.032959 ], [ 0.038452, -0.031586 ], [ 0.039825, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.030212 ], [ 0.041199, -0.031586 ], [ 0.039825, -0.031586 ], [ 0.039825, -0.030212 ], [ 0.041199, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.031586 ], [ 0.041199, -0.032959 ], [ 0.039825, -0.032959 ], [ 0.039825, -0.031586 ], [ 0.041199, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.027466 ], [ 0.042572, -0.028839 ], [ 0.041199, -0.028839 ], [ 0.041199, -0.027466 ], [ 0.042572, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.028839 ], [ 0.042572, -0.030212 ], [ 0.041199, -0.030212 ], [ 0.041199, -0.028839 ], [ 0.042572, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.027466 ], [ 0.043945, -0.028839 ], [ 0.042572, -0.028839 ], [ 0.042572, -0.027466 ], [ 0.043945, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.028839 ], [ 0.043945, -0.030212 ], [ 0.042572, -0.030212 ], [ 0.042572, -0.028839 ], [ 0.043945, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.030212 ], [ 0.042572, -0.031586 ], [ 0.041199, -0.031586 ], [ 0.041199, -0.030212 ], [ 0.042572, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.031586 ], [ 0.042572, -0.032959 ], [ 0.041199, -0.032959 ], [ 0.041199, -0.031586 ], [ 0.042572, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.030212 ], [ 0.043945, -0.031586 ], [ 0.042572, -0.031586 ], [ 0.042572, -0.030212 ], [ 0.043945, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.031586 ], [ 0.043945, -0.032959 ], [ 0.042572, -0.032959 ], [ 0.042572, -0.031586 ], [ 0.043945, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.032959 ], [ 0.034332, -0.034332 ], [ 0.032959, -0.034332 ], [ 0.032959, -0.032959 ], [ 0.034332, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.034332 ], [ 0.034332, -0.035706 ], [ 0.032959, -0.035706 ], [ 0.032959, -0.034332 ], [ 0.034332, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.032959 ], [ 0.035706, -0.034332 ], [ 0.034332, -0.034332 ], [ 0.034332, -0.032959 ], [ 0.035706, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.034332 ], [ 0.035706, -0.035706 ], [ 0.034332, -0.035706 ], [ 0.034332, -0.034332 ], [ 0.035706, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.035706 ], [ 0.034332, -0.037079 ], [ 0.032959, -0.037079 ], [ 0.032959, -0.035706 ], [ 0.034332, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.037079 ], [ 0.034332, -0.038452 ], [ 0.032959, -0.038452 ], [ 0.032959, -0.037079 ], [ 0.034332, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.035706 ], [ 0.035706, -0.037079 ], [ 0.034332, -0.037079 ], [ 0.034332, -0.035706 ], [ 0.035706, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.037079 ], [ 0.035706, -0.038452 ], [ 0.034332, -0.038452 ], [ 0.034332, -0.037079 ], [ 0.035706, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.032959 ], [ 0.037079, -0.034332 ], [ 0.035706, -0.034332 ], [ 0.035706, -0.032959 ], [ 0.037079, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.034332 ], [ 0.037079, -0.035706 ], [ 0.035706, -0.035706 ], [ 0.035706, -0.034332 ], [ 0.037079, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.032959 ], [ 0.038452, -0.034332 ], [ 0.037079, -0.034332 ], [ 0.037079, -0.032959 ], [ 0.038452, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.034332 ], [ 0.038452, -0.035706 ], [ 0.037079, -0.035706 ], [ 0.037079, -0.034332 ], [ 0.038452, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.035706 ], [ 0.037079, -0.037079 ], [ 0.035706, -0.037079 ], [ 0.035706, -0.035706 ], [ 0.037079, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.037079 ], [ 0.037079, -0.038452 ], [ 0.035706, -0.038452 ], [ 0.035706, -0.037079 ], [ 0.037079, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.035706 ], [ 0.038452, -0.037079 ], [ 0.037079, -0.037079 ], [ 0.037079, -0.035706 ], [ 0.038452, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.037079 ], [ 0.038452, -0.038452 ], [ 0.037079, -0.038452 ], [ 0.037079, -0.037079 ], [ 0.038452, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.038452 ], [ 0.034332, -0.039825 ], [ 0.032959, -0.039825 ], [ 0.032959, -0.038452 ], [ 0.034332, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.039825 ], [ 0.034332, -0.041199 ], [ 0.032959, -0.041199 ], [ 0.032959, -0.039825 ], [ 0.034332, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.038452 ], [ 0.035706, -0.039825 ], [ 0.034332, -0.039825 ], [ 0.034332, -0.038452 ], [ 0.035706, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.039825 ], [ 0.035706, -0.041199 ], [ 0.034332, -0.041199 ], [ 0.034332, -0.039825 ], [ 0.035706, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.041199 ], [ 0.034332, -0.042572 ], [ 0.032959, -0.042572 ], [ 0.032959, -0.041199 ], [ 0.034332, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.042572 ], [ 0.034332, -0.043945 ], [ 0.032959, -0.043945 ], [ 0.032959, -0.042572 ], [ 0.034332, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.041199 ], [ 0.035706, -0.042572 ], [ 0.034332, -0.042572 ], [ 0.034332, -0.041199 ], [ 0.035706, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.042572 ], [ 0.035706, -0.043945 ], [ 0.034332, -0.043945 ], [ 0.034332, -0.042572 ], [ 0.035706, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.038452 ], [ 0.037079, -0.039825 ], [ 0.035706, -0.039825 ], [ 0.035706, -0.038452 ], [ 0.037079, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.039825 ], [ 0.037079, -0.041199 ], [ 0.035706, -0.041199 ], [ 0.035706, -0.039825 ], [ 0.037079, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.038452 ], [ 0.038452, -0.039825 ], [ 0.037079, -0.039825 ], [ 0.037079, -0.038452 ], [ 0.038452, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.039825 ], [ 0.038452, -0.041199 ], [ 0.037079, -0.041199 ], [ 0.037079, -0.039825 ], [ 0.038452, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.041199 ], [ 0.037079, -0.042572 ], [ 0.035706, -0.042572 ], [ 0.035706, -0.041199 ], [ 0.037079, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.042572 ], [ 0.037079, -0.043945 ], [ 0.035706, -0.043945 ], [ 0.035706, -0.042572 ], [ 0.037079, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.041199 ], [ 0.038452, -0.042572 ], [ 0.037079, -0.042572 ], [ 0.037079, -0.041199 ], [ 0.038452, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.042572 ], [ 0.038452, -0.043945 ], [ 0.037079, -0.043945 ], [ 0.037079, -0.042572 ], [ 0.038452, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.032959 ], [ 0.039825, -0.034332 ], [ 0.038452, -0.034332 ], [ 0.038452, -0.032959 ], [ 0.039825, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.034332 ], [ 0.039825, -0.035706 ], [ 0.038452, -0.035706 ], [ 0.038452, -0.034332 ], [ 0.039825, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.032959 ], [ 0.041199, -0.034332 ], [ 0.039825, -0.034332 ], [ 0.039825, -0.032959 ], [ 0.041199, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.034332 ], [ 0.041199, -0.035706 ], [ 0.039825, -0.035706 ], [ 0.039825, -0.034332 ], [ 0.041199, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.035706 ], [ 0.039825, -0.037079 ], [ 0.038452, -0.037079 ], [ 0.038452, -0.035706 ], [ 0.039825, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.037079 ], [ 0.039825, -0.038452 ], [ 0.038452, -0.038452 ], [ 0.038452, -0.037079 ], [ 0.039825, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.035706 ], [ 0.041199, -0.037079 ], [ 0.039825, -0.037079 ], [ 0.039825, -0.035706 ], [ 0.041199, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.037079 ], [ 0.041199, -0.038452 ], [ 0.039825, -0.038452 ], [ 0.039825, -0.037079 ], [ 0.041199, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.032959 ], [ 0.042572, -0.034332 ], [ 0.041199, -0.034332 ], [ 0.041199, -0.032959 ], [ 0.042572, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.034332 ], [ 0.042572, -0.035706 ], [ 0.041199, -0.035706 ], [ 0.041199, -0.034332 ], [ 0.042572, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.032959 ], [ 0.043945, -0.034332 ], [ 0.042572, -0.034332 ], [ 0.042572, -0.032959 ], [ 0.043945, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.034332 ], [ 0.043945, -0.035706 ], [ 0.042572, -0.035706 ], [ 0.042572, -0.034332 ], [ 0.043945, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.035706 ], [ 0.042572, -0.037079 ], [ 0.041199, -0.037079 ], [ 0.041199, -0.035706 ], [ 0.042572, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.037079 ], [ 0.042572, -0.038452 ], [ 0.041199, -0.038452 ], [ 0.041199, -0.037079 ], [ 0.042572, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.035706 ], [ 0.043945, -0.037079 ], [ 0.042572, -0.037079 ], [ 0.042572, -0.035706 ], [ 0.043945, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.037079 ], [ 0.043945, -0.038452 ], [ 0.042572, -0.038452 ], [ 0.042572, -0.037079 ], [ 0.043945, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.038452 ], [ 0.039825, -0.039825 ], [ 0.038452, -0.039825 ], [ 0.038452, -0.038452 ], [ 0.039825, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.039825 ], [ 0.039825, -0.041199 ], [ 0.038452, -0.041199 ], [ 0.038452, -0.039825 ], [ 0.039825, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.038452 ], [ 0.041199, -0.039825 ], [ 0.039825, -0.039825 ], [ 0.039825, -0.038452 ], [ 0.041199, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.039825 ], [ 0.041199, -0.041199 ], [ 0.039825, -0.041199 ], [ 0.039825, -0.039825 ], [ 0.041199, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.041199 ], [ 0.039825, -0.042572 ], [ 0.038452, -0.042572 ], [ 0.038452, -0.041199 ], [ 0.039825, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.042572 ], [ 0.039825, -0.043945 ], [ 0.038452, -0.043945 ], [ 0.038452, -0.042572 ], [ 0.039825, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.041199 ], [ 0.041199, -0.042572 ], [ 0.039825, -0.042572 ], [ 0.039825, -0.041199 ], [ 0.041199, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.042572 ], [ 0.041199, -0.043945 ], [ 0.039825, -0.043945 ], [ 0.039825, -0.042572 ], [ 0.041199, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.038452 ], [ 0.042572, -0.039825 ], [ 0.041199, -0.039825 ], [ 0.041199, -0.038452 ], [ 0.042572, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.039825 ], [ 0.042572, -0.041199 ], [ 0.041199, -0.041199 ], [ 0.041199, -0.039825 ], [ 0.042572, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.038452 ], [ 0.043945, -0.039825 ], [ 0.042572, -0.039825 ], [ 0.042572, -0.038452 ], [ 0.043945, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.039825 ], [ 0.043945, -0.041199 ], [ 0.042572, -0.041199 ], [ 0.042572, -0.039825 ], [ 0.043945, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.041199 ], [ 0.042572, -0.042572 ], [ 0.041199, -0.042572 ], [ 0.041199, -0.041199 ], [ 0.042572, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.042572 ], [ 0.042572, -0.043945 ], [ 0.041199, -0.043945 ], [ 0.041199, -0.042572 ], [ 0.042572, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.041199 ], [ 0.043945, -0.042572 ], [ 0.042572, -0.042572 ], [ 0.042572, -0.041199 ], [ 0.043945, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.042572 ], [ 0.043945, -0.043945 ], [ 0.042572, -0.043945 ], [ 0.042572, -0.042572 ], [ 0.043945, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.043945 ], [ 0.023346, -0.045319 ], [ 0.021973, -0.045319 ], [ 0.021973, -0.043945 ], [ 0.023346, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.045319 ], [ 0.023346, -0.046692 ], [ 0.021973, -0.046692 ], [ 0.021973, -0.045319 ], [ 0.023346, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.043945 ], [ 0.024719, -0.045319 ], [ 0.023346, -0.045319 ], [ 0.023346, -0.043945 ], [ 0.024719, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.045319 ], [ 0.024719, -0.046692 ], [ 0.023346, -0.046692 ], [ 0.023346, -0.045319 ], [ 0.024719, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.046692 ], [ 0.023346, -0.048065 ], [ 0.021973, -0.048065 ], [ 0.021973, -0.046692 ], [ 0.023346, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.048065 ], [ 0.023346, -0.049438 ], [ 0.021973, -0.049438 ], [ 0.021973, -0.048065 ], [ 0.023346, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.046692 ], [ 0.024719, -0.048065 ], [ 0.023346, -0.048065 ], [ 0.023346, -0.046692 ], [ 0.024719, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.048065 ], [ 0.024719, -0.049438 ], [ 0.023346, -0.049438 ], [ 0.023346, -0.048065 ], [ 0.024719, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.043945 ], [ 0.026093, -0.045319 ], [ 0.024719, -0.045319 ], [ 0.024719, -0.043945 ], [ 0.026093, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.045319 ], [ 0.026093, -0.046692 ], [ 0.024719, -0.046692 ], [ 0.024719, -0.045319 ], [ 0.026093, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.043945 ], [ 0.027466, -0.045319 ], [ 0.026093, -0.045319 ], [ 0.026093, -0.043945 ], [ 0.027466, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.045319 ], [ 0.027466, -0.046692 ], [ 0.026093, -0.046692 ], [ 0.026093, -0.045319 ], [ 0.027466, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.046692 ], [ 0.026093, -0.048065 ], [ 0.024719, -0.048065 ], [ 0.024719, -0.046692 ], [ 0.026093, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.048065 ], [ 0.026093, -0.049438 ], [ 0.024719, -0.049438 ], [ 0.024719, -0.048065 ], [ 0.026093, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.046692 ], [ 0.027466, -0.048065 ], [ 0.026093, -0.048065 ], [ 0.026093, -0.046692 ], [ 0.027466, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.048065 ], [ 0.027466, -0.049438 ], [ 0.026093, -0.049438 ], [ 0.026093, -0.048065 ], [ 0.027466, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.049438 ], [ 0.023346, -0.050812 ], [ 0.021973, -0.050812 ], [ 0.021973, -0.049438 ], [ 0.023346, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.050812 ], [ 0.023346, -0.052185 ], [ 0.021973, -0.052185 ], [ 0.021973, -0.050812 ], [ 0.023346, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.049438 ], [ 0.024719, -0.050812 ], [ 0.023346, -0.050812 ], [ 0.023346, -0.049438 ], [ 0.024719, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.050812 ], [ 0.024719, -0.052185 ], [ 0.023346, -0.052185 ], [ 0.023346, -0.050812 ], [ 0.024719, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.052185 ], [ 0.023346, -0.053558 ], [ 0.021973, -0.053558 ], [ 0.021973, -0.052185 ], [ 0.023346, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.053558 ], [ 0.023346, -0.054932 ], [ 0.021973, -0.054932 ], [ 0.021973, -0.053558 ], [ 0.023346, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.052185 ], [ 0.024719, -0.053558 ], [ 0.023346, -0.053558 ], [ 0.023346, -0.052185 ], [ 0.024719, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.053558 ], [ 0.024719, -0.054932 ], [ 0.023346, -0.054932 ], [ 0.023346, -0.053558 ], [ 0.024719, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.049438 ], [ 0.026093, -0.050812 ], [ 0.024719, -0.050812 ], [ 0.024719, -0.049438 ], [ 0.026093, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.050812 ], [ 0.026093, -0.052185 ], [ 0.024719, -0.052185 ], [ 0.024719, -0.050812 ], [ 0.026093, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.049438 ], [ 0.027466, -0.050812 ], [ 0.026093, -0.050812 ], [ 0.026093, -0.049438 ], [ 0.027466, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.050812 ], [ 0.027466, -0.052185 ], [ 0.026093, -0.052185 ], [ 0.026093, -0.050812 ], [ 0.027466, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.052185 ], [ 0.026093, -0.053558 ], [ 0.024719, -0.053558 ], [ 0.024719, -0.052185 ], [ 0.026093, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.053558 ], [ 0.026093, -0.054932 ], [ 0.024719, -0.054932 ], [ 0.024719, -0.053558 ], [ 0.026093, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.052185 ], [ 0.027466, -0.053558 ], [ 0.026093, -0.053558 ], [ 0.026093, -0.052185 ], [ 0.027466, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.053558 ], [ 0.027466, -0.054932 ], [ 0.026093, -0.054932 ], [ 0.026093, -0.053558 ], [ 0.027466, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.043945 ], [ 0.028839, -0.045319 ], [ 0.027466, -0.045319 ], [ 0.027466, -0.043945 ], [ 0.028839, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.045319 ], [ 0.028839, -0.046692 ], [ 0.027466, -0.046692 ], [ 0.027466, -0.045319 ], [ 0.028839, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.043945 ], [ 0.030212, -0.045319 ], [ 0.028839, -0.045319 ], [ 0.028839, -0.043945 ], [ 0.030212, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.045319 ], [ 0.030212, -0.046692 ], [ 0.028839, -0.046692 ], [ 0.028839, -0.045319 ], [ 0.030212, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.046692 ], [ 0.028839, -0.048065 ], [ 0.027466, -0.048065 ], [ 0.027466, -0.046692 ], [ 0.028839, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.048065 ], [ 0.028839, -0.049438 ], [ 0.027466, -0.049438 ], [ 0.027466, -0.048065 ], [ 0.028839, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.046692 ], [ 0.030212, -0.048065 ], [ 0.028839, -0.048065 ], [ 0.028839, -0.046692 ], [ 0.030212, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.048065 ], [ 0.030212, -0.049438 ], [ 0.028839, -0.049438 ], [ 0.028839, -0.048065 ], [ 0.030212, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.043945 ], [ 0.031586, -0.045319 ], [ 0.030212, -0.045319 ], [ 0.030212, -0.043945 ], [ 0.031586, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.045319 ], [ 0.031586, -0.046692 ], [ 0.030212, -0.046692 ], [ 0.030212, -0.045319 ], [ 0.031586, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.043945 ], [ 0.032959, -0.045319 ], [ 0.031586, -0.045319 ], [ 0.031586, -0.043945 ], [ 0.032959, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.045319 ], [ 0.032959, -0.046692 ], [ 0.031586, -0.046692 ], [ 0.031586, -0.045319 ], [ 0.032959, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.046692 ], [ 0.031586, -0.048065 ], [ 0.030212, -0.048065 ], [ 0.030212, -0.046692 ], [ 0.031586, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.048065 ], [ 0.031586, -0.049438 ], [ 0.030212, -0.049438 ], [ 0.030212, -0.048065 ], [ 0.031586, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.046692 ], [ 0.032959, -0.048065 ], [ 0.031586, -0.048065 ], [ 0.031586, -0.046692 ], [ 0.032959, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.048065 ], [ 0.032959, -0.049438 ], [ 0.031586, -0.049438 ], [ 0.031586, -0.048065 ], [ 0.032959, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.049438 ], [ 0.028839, -0.050812 ], [ 0.027466, -0.050812 ], [ 0.027466, -0.049438 ], [ 0.028839, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.050812 ], [ 0.028839, -0.052185 ], [ 0.027466, -0.052185 ], [ 0.027466, -0.050812 ], [ 0.028839, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.049438 ], [ 0.030212, -0.050812 ], [ 0.028839, -0.050812 ], [ 0.028839, -0.049438 ], [ 0.030212, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.050812 ], [ 0.030212, -0.052185 ], [ 0.028839, -0.052185 ], [ 0.028839, -0.050812 ], [ 0.030212, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.052185 ], [ 0.028839, -0.053558 ], [ 0.027466, -0.053558 ], [ 0.027466, -0.052185 ], [ 0.028839, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.053558 ], [ 0.028839, -0.054932 ], [ 0.027466, -0.054932 ], [ 0.027466, -0.053558 ], [ 0.028839, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.052185 ], [ 0.030212, -0.053558 ], [ 0.028839, -0.053558 ], [ 0.028839, -0.052185 ], [ 0.030212, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.053558 ], [ 0.030212, -0.054932 ], [ 0.028839, -0.054932 ], [ 0.028839, -0.053558 ], [ 0.030212, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.049438 ], [ 0.031586, -0.050812 ], [ 0.030212, -0.050812 ], [ 0.030212, -0.049438 ], [ 0.031586, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.050812 ], [ 0.031586, -0.052185 ], [ 0.030212, -0.052185 ], [ 0.030212, -0.050812 ], [ 0.031586, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.049438 ], [ 0.032959, -0.050812 ], [ 0.031586, -0.050812 ], [ 0.031586, -0.049438 ], [ 0.032959, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.050812 ], [ 0.032959, -0.052185 ], [ 0.031586, -0.052185 ], [ 0.031586, -0.050812 ], [ 0.032959, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.052185 ], [ 0.031586, -0.053558 ], [ 0.030212, -0.053558 ], [ 0.030212, -0.052185 ], [ 0.031586, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.053558 ], [ 0.031586, -0.054932 ], [ 0.030212, -0.054932 ], [ 0.030212, -0.053558 ], [ 0.031586, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.052185 ], [ 0.032959, -0.053558 ], [ 0.031586, -0.053558 ], [ 0.031586, -0.052185 ], [ 0.032959, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.053558 ], [ 0.032959, -0.054932 ], [ 0.031586, -0.054932 ], [ 0.031586, -0.053558 ], [ 0.032959, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.054932 ], [ 0.023346, -0.056305 ], [ 0.021973, -0.056305 ], [ 0.021973, -0.054932 ], [ 0.023346, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.056305 ], [ 0.023346, -0.057678 ], [ 0.021973, -0.057678 ], [ 0.021973, -0.056305 ], [ 0.023346, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.054932 ], [ 0.024719, -0.056305 ], [ 0.023346, -0.056305 ], [ 0.023346, -0.054932 ], [ 0.024719, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.056305 ], [ 0.024719, -0.057678 ], [ 0.023346, -0.057678 ], [ 0.023346, -0.056305 ], [ 0.024719, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.057678 ], [ 0.023346, -0.059052 ], [ 0.021973, -0.059052 ], [ 0.021973, -0.057678 ], [ 0.023346, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.059052 ], [ 0.023346, -0.060425 ], [ 0.021973, -0.060425 ], [ 0.021973, -0.059052 ], [ 0.023346, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.057678 ], [ 0.024719, -0.059052 ], [ 0.023346, -0.059052 ], [ 0.023346, -0.057678 ], [ 0.024719, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.059052 ], [ 0.024719, -0.060425 ], [ 0.023346, -0.060425 ], [ 0.023346, -0.059052 ], [ 0.024719, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.054932 ], [ 0.026093, -0.056305 ], [ 0.024719, -0.056305 ], [ 0.024719, -0.054932 ], [ 0.026093, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.056305 ], [ 0.026093, -0.057678 ], [ 0.024719, -0.057678 ], [ 0.024719, -0.056305 ], [ 0.026093, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.054932 ], [ 0.027466, -0.056305 ], [ 0.026093, -0.056305 ], [ 0.026093, -0.054932 ], [ 0.027466, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.056305 ], [ 0.027466, -0.057678 ], [ 0.026093, -0.057678 ], [ 0.026093, -0.056305 ], [ 0.027466, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.057678 ], [ 0.026093, -0.059052 ], [ 0.024719, -0.059052 ], [ 0.024719, -0.057678 ], [ 0.026093, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.059052 ], [ 0.026093, -0.060425 ], [ 0.024719, -0.060425 ], [ 0.024719, -0.059052 ], [ 0.026093, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.057678 ], [ 0.027466, -0.059052 ], [ 0.026093, -0.059052 ], [ 0.026093, -0.057678 ], [ 0.027466, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.059052 ], [ 0.027466, -0.060425 ], [ 0.026093, -0.060425 ], [ 0.026093, -0.059052 ], [ 0.027466, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.060425 ], [ 0.023346, -0.061798 ], [ 0.021973, -0.061798 ], [ 0.021973, -0.060425 ], [ 0.023346, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.061798 ], [ 0.023346, -0.063171 ], [ 0.021973, -0.063171 ], [ 0.021973, -0.061798 ], [ 0.023346, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.060425 ], [ 0.024719, -0.061798 ], [ 0.023346, -0.061798 ], [ 0.023346, -0.060425 ], [ 0.024719, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.061798 ], [ 0.024719, -0.063171 ], [ 0.023346, -0.063171 ], [ 0.023346, -0.061798 ], [ 0.024719, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.063171 ], [ 0.023346, -0.064545 ], [ 0.021973, -0.064545 ], [ 0.021973, -0.063171 ], [ 0.023346, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.064545 ], [ 0.023346, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.064545 ], [ 0.023346, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.063171 ], [ 0.024719, -0.064545 ], [ 0.023346, -0.064545 ], [ 0.023346, -0.063171 ], [ 0.024719, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.064545 ], [ 0.024719, -0.065918 ], [ 0.023346, -0.065918 ], [ 0.023346, -0.064545 ], [ 0.024719, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.060425 ], [ 0.026093, -0.061798 ], [ 0.024719, -0.061798 ], [ 0.024719, -0.060425 ], [ 0.026093, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.061798 ], [ 0.026093, -0.063171 ], [ 0.024719, -0.063171 ], [ 0.024719, -0.061798 ], [ 0.026093, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.060425 ], [ 0.027466, -0.061798 ], [ 0.026093, -0.061798 ], [ 0.026093, -0.060425 ], [ 0.027466, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.061798 ], [ 0.027466, -0.063171 ], [ 0.026093, -0.063171 ], [ 0.026093, -0.061798 ], [ 0.027466, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.063171 ], [ 0.026093, -0.064545 ], [ 0.024719, -0.064545 ], [ 0.024719, -0.063171 ], [ 0.026093, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.064545 ], [ 0.026093, -0.065918 ], [ 0.024719, -0.065918 ], [ 0.024719, -0.064545 ], [ 0.026093, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.063171 ], [ 0.027466, -0.064545 ], [ 0.026093, -0.064545 ], [ 0.026093, -0.063171 ], [ 0.027466, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.064545 ], [ 0.027466, -0.065918 ], [ 0.026093, -0.065918 ], [ 0.026093, -0.064545 ], [ 0.027466, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.054932 ], [ 0.028839, -0.056305 ], [ 0.027466, -0.056305 ], [ 0.027466, -0.054932 ], [ 0.028839, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.056305 ], [ 0.028839, -0.057678 ], [ 0.027466, -0.057678 ], [ 0.027466, -0.056305 ], [ 0.028839, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.054932 ], [ 0.030212, -0.056305 ], [ 0.028839, -0.056305 ], [ 0.028839, -0.054932 ], [ 0.030212, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.056305 ], [ 0.030212, -0.057678 ], [ 0.028839, -0.057678 ], [ 0.028839, -0.056305 ], [ 0.030212, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.057678 ], [ 0.028839, -0.059052 ], [ 0.027466, -0.059052 ], [ 0.027466, -0.057678 ], [ 0.028839, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.059052 ], [ 0.028839, -0.060425 ], [ 0.027466, -0.060425 ], [ 0.027466, -0.059052 ], [ 0.028839, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.057678 ], [ 0.030212, -0.059052 ], [ 0.028839, -0.059052 ], [ 0.028839, -0.057678 ], [ 0.030212, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.059052 ], [ 0.030212, -0.060425 ], [ 0.028839, -0.060425 ], [ 0.028839, -0.059052 ], [ 0.030212, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.054932 ], [ 0.031586, -0.056305 ], [ 0.030212, -0.056305 ], [ 0.030212, -0.054932 ], [ 0.031586, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.056305 ], [ 0.031586, -0.057678 ], [ 0.030212, -0.057678 ], [ 0.030212, -0.056305 ], [ 0.031586, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.054932 ], [ 0.032959, -0.056305 ], [ 0.031586, -0.056305 ], [ 0.031586, -0.054932 ], [ 0.032959, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.056305 ], [ 0.032959, -0.057678 ], [ 0.031586, -0.057678 ], [ 0.031586, -0.056305 ], [ 0.032959, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.057678 ], [ 0.031586, -0.059052 ], [ 0.030212, -0.059052 ], [ 0.030212, -0.057678 ], [ 0.031586, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.059052 ], [ 0.031586, -0.060425 ], [ 0.030212, -0.060425 ], [ 0.030212, -0.059052 ], [ 0.031586, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.057678 ], [ 0.032959, -0.059052 ], [ 0.031586, -0.059052 ], [ 0.031586, -0.057678 ], [ 0.032959, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.059052 ], [ 0.032959, -0.060425 ], [ 0.031586, -0.060425 ], [ 0.031586, -0.059052 ], [ 0.032959, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.060425 ], [ 0.028839, -0.061798 ], [ 0.027466, -0.061798 ], [ 0.027466, -0.060425 ], [ 0.028839, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.061798 ], [ 0.028839, -0.063171 ], [ 0.027466, -0.063171 ], [ 0.027466, -0.061798 ], [ 0.028839, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.060425 ], [ 0.030212, -0.061798 ], [ 0.028839, -0.061798 ], [ 0.028839, -0.060425 ], [ 0.030212, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.061798 ], [ 0.030212, -0.063171 ], [ 0.028839, -0.063171 ], [ 0.028839, -0.061798 ], [ 0.030212, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.063171 ], [ 0.028839, -0.064545 ], [ 0.027466, -0.064545 ], [ 0.027466, -0.063171 ], [ 0.028839, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.064545 ], [ 0.028839, -0.065918 ], [ 0.027466, -0.065918 ], [ 0.027466, -0.064545 ], [ 0.028839, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.063171 ], [ 0.030212, -0.064545 ], [ 0.028839, -0.064545 ], [ 0.028839, -0.063171 ], [ 0.030212, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.064545 ], [ 0.030212, -0.065918 ], [ 0.028839, -0.065918 ], [ 0.028839, -0.064545 ], [ 0.030212, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.060425 ], [ 0.031586, -0.061798 ], [ 0.030212, -0.061798 ], [ 0.030212, -0.060425 ], [ 0.031586, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.061798 ], [ 0.031586, -0.063171 ], [ 0.030212, -0.063171 ], [ 0.030212, -0.061798 ], [ 0.031586, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.060425 ], [ 0.032959, -0.061798 ], [ 0.031586, -0.061798 ], [ 0.031586, -0.060425 ], [ 0.032959, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.061798 ], [ 0.032959, -0.063171 ], [ 0.031586, -0.063171 ], [ 0.031586, -0.061798 ], [ 0.032959, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.063171 ], [ 0.031586, -0.064545 ], [ 0.030212, -0.064545 ], [ 0.030212, -0.063171 ], [ 0.031586, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.064545 ], [ 0.031586, -0.065918 ], [ 0.030212, -0.065918 ], [ 0.030212, -0.064545 ], [ 0.031586, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.063171 ], [ 0.032959, -0.064545 ], [ 0.031586, -0.064545 ], [ 0.031586, -0.063171 ], [ 0.032959, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.064545 ], [ 0.032959, -0.065918 ], [ 0.031586, -0.065918 ], [ 0.031586, -0.064545 ], [ 0.032959, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.043945 ], [ 0.034332, -0.045319 ], [ 0.032959, -0.045319 ], [ 0.032959, -0.043945 ], [ 0.034332, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.045319 ], [ 0.034332, -0.046692 ], [ 0.032959, -0.046692 ], [ 0.032959, -0.045319 ], [ 0.034332, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.043945 ], [ 0.035706, -0.045319 ], [ 0.034332, -0.045319 ], [ 0.034332, -0.043945 ], [ 0.035706, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.045319 ], [ 0.035706, -0.046692 ], [ 0.034332, -0.046692 ], [ 0.034332, -0.045319 ], [ 0.035706, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.046692 ], [ 0.034332, -0.048065 ], [ 0.032959, -0.048065 ], [ 0.032959, -0.046692 ], [ 0.034332, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.048065 ], [ 0.034332, -0.049438 ], [ 0.032959, -0.049438 ], [ 0.032959, -0.048065 ], [ 0.034332, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.046692 ], [ 0.035706, -0.048065 ], [ 0.034332, -0.048065 ], [ 0.034332, -0.046692 ], [ 0.035706, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.048065 ], [ 0.035706, -0.049438 ], [ 0.034332, -0.049438 ], [ 0.034332, -0.048065 ], [ 0.035706, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.043945 ], [ 0.037079, -0.045319 ], [ 0.035706, -0.045319 ], [ 0.035706, -0.043945 ], [ 0.037079, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.045319 ], [ 0.037079, -0.046692 ], [ 0.035706, -0.046692 ], [ 0.035706, -0.045319 ], [ 0.037079, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.043945 ], [ 0.038452, -0.045319 ], [ 0.037079, -0.045319 ], [ 0.037079, -0.043945 ], [ 0.038452, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.045319 ], [ 0.038452, -0.046692 ], [ 0.037079, -0.046692 ], [ 0.037079, -0.045319 ], [ 0.038452, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.046692 ], [ 0.037079, -0.048065 ], [ 0.035706, -0.048065 ], [ 0.035706, -0.046692 ], [ 0.037079, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.048065 ], [ 0.037079, -0.049438 ], [ 0.035706, -0.049438 ], [ 0.035706, -0.048065 ], [ 0.037079, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.046692 ], [ 0.038452, -0.048065 ], [ 0.037079, -0.048065 ], [ 0.037079, -0.046692 ], [ 0.038452, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.048065 ], [ 0.038452, -0.049438 ], [ 0.037079, -0.049438 ], [ 0.037079, -0.048065 ], [ 0.038452, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.049438 ], [ 0.034332, -0.050812 ], [ 0.032959, -0.050812 ], [ 0.032959, -0.049438 ], [ 0.034332, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.050812 ], [ 0.034332, -0.052185 ], [ 0.032959, -0.052185 ], [ 0.032959, -0.050812 ], [ 0.034332, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.049438 ], [ 0.035706, -0.050812 ], [ 0.034332, -0.050812 ], [ 0.034332, -0.049438 ], [ 0.035706, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.050812 ], [ 0.035706, -0.052185 ], [ 0.034332, -0.052185 ], [ 0.034332, -0.050812 ], [ 0.035706, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.052185 ], [ 0.034332, -0.053558 ], [ 0.032959, -0.053558 ], [ 0.032959, -0.052185 ], [ 0.034332, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.053558 ], [ 0.034332, -0.054932 ], [ 0.032959, -0.054932 ], [ 0.032959, -0.053558 ], [ 0.034332, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.052185 ], [ 0.035706, -0.053558 ], [ 0.034332, -0.053558 ], [ 0.034332, -0.052185 ], [ 0.035706, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.053558 ], [ 0.035706, -0.054932 ], [ 0.034332, -0.054932 ], [ 0.034332, -0.053558 ], [ 0.035706, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.049438 ], [ 0.037079, -0.050812 ], [ 0.035706, -0.050812 ], [ 0.035706, -0.049438 ], [ 0.037079, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.050812 ], [ 0.037079, -0.052185 ], [ 0.035706, -0.052185 ], [ 0.035706, -0.050812 ], [ 0.037079, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.049438 ], [ 0.038452, -0.050812 ], [ 0.037079, -0.050812 ], [ 0.037079, -0.049438 ], [ 0.038452, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.050812 ], [ 0.038452, -0.052185 ], [ 0.037079, -0.052185 ], [ 0.037079, -0.050812 ], [ 0.038452, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.052185 ], [ 0.037079, -0.053558 ], [ 0.035706, -0.053558 ], [ 0.035706, -0.052185 ], [ 0.037079, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.053558 ], [ 0.037079, -0.054932 ], [ 0.035706, -0.054932 ], [ 0.035706, -0.053558 ], [ 0.037079, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.052185 ], [ 0.038452, -0.053558 ], [ 0.037079, -0.053558 ], [ 0.037079, -0.052185 ], [ 0.038452, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.053558 ], [ 0.038452, -0.054932 ], [ 0.037079, -0.054932 ], [ 0.037079, -0.053558 ], [ 0.038452, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.043945 ], [ 0.039825, -0.045319 ], [ 0.038452, -0.045319 ], [ 0.038452, -0.043945 ], [ 0.039825, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.045319 ], [ 0.039825, -0.046692 ], [ 0.038452, -0.046692 ], [ 0.038452, -0.045319 ], [ 0.039825, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.043945 ], [ 0.041199, -0.045319 ], [ 0.039825, -0.045319 ], [ 0.039825, -0.043945 ], [ 0.041199, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.045319 ], [ 0.041199, -0.046692 ], [ 0.039825, -0.046692 ], [ 0.039825, -0.045319 ], [ 0.041199, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.046692 ], [ 0.039825, -0.048065 ], [ 0.038452, -0.048065 ], [ 0.038452, -0.046692 ], [ 0.039825, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.048065 ], [ 0.039825, -0.049438 ], [ 0.038452, -0.049438 ], [ 0.038452, -0.048065 ], [ 0.039825, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.046692 ], [ 0.041199, -0.048065 ], [ 0.039825, -0.048065 ], [ 0.039825, -0.046692 ], [ 0.041199, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.048065 ], [ 0.041199, -0.049438 ], [ 0.039825, -0.049438 ], [ 0.039825, -0.048065 ], [ 0.041199, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.043945 ], [ 0.042572, -0.045319 ], [ 0.041199, -0.045319 ], [ 0.041199, -0.043945 ], [ 0.042572, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.045319 ], [ 0.042572, -0.046692 ], [ 0.041199, -0.046692 ], [ 0.041199, -0.045319 ], [ 0.042572, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.045319 ], [ 0.042572, -0.045319 ], [ 0.042572, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.045319 ], [ 0.043945, -0.046692 ], [ 0.042572, -0.046692 ], [ 0.042572, -0.045319 ], [ 0.043945, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.046692 ], [ 0.042572, -0.048065 ], [ 0.041199, -0.048065 ], [ 0.041199, -0.046692 ], [ 0.042572, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.048065 ], [ 0.042572, -0.049438 ], [ 0.041199, -0.049438 ], [ 0.041199, -0.048065 ], [ 0.042572, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.046692 ], [ 0.043945, -0.048065 ], [ 0.042572, -0.048065 ], [ 0.042572, -0.046692 ], [ 0.043945, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.048065 ], [ 0.043945, -0.049438 ], [ 0.042572, -0.049438 ], [ 0.042572, -0.048065 ], [ 0.043945, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.049438 ], [ 0.039825, -0.050812 ], [ 0.038452, -0.050812 ], [ 0.038452, -0.049438 ], [ 0.039825, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.050812 ], [ 0.039825, -0.052185 ], [ 0.038452, -0.052185 ], [ 0.038452, -0.050812 ], [ 0.039825, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.049438 ], [ 0.041199, -0.050812 ], [ 0.039825, -0.050812 ], [ 0.039825, -0.049438 ], [ 0.041199, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.050812 ], [ 0.041199, -0.052185 ], [ 0.039825, -0.052185 ], [ 0.039825, -0.050812 ], [ 0.041199, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.052185 ], [ 0.039825, -0.053558 ], [ 0.038452, -0.053558 ], [ 0.038452, -0.052185 ], [ 0.039825, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.053558 ], [ 0.039825, -0.054932 ], [ 0.038452, -0.054932 ], [ 0.038452, -0.053558 ], [ 0.039825, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.052185 ], [ 0.041199, -0.053558 ], [ 0.039825, -0.053558 ], [ 0.039825, -0.052185 ], [ 0.041199, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.053558 ], [ 0.041199, -0.054932 ], [ 0.039825, -0.054932 ], [ 0.039825, -0.053558 ], [ 0.041199, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.049438 ], [ 0.042572, -0.050812 ], [ 0.041199, -0.050812 ], [ 0.041199, -0.049438 ], [ 0.042572, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.050812 ], [ 0.042572, -0.052185 ], [ 0.041199, -0.052185 ], [ 0.041199, -0.050812 ], [ 0.042572, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.049438 ], [ 0.043945, -0.050812 ], [ 0.042572, -0.050812 ], [ 0.042572, -0.049438 ], [ 0.043945, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.050812 ], [ 0.043945, -0.052185 ], [ 0.042572, -0.052185 ], [ 0.042572, -0.050812 ], [ 0.043945, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.052185 ], [ 0.042572, -0.053558 ], [ 0.041199, -0.053558 ], [ 0.041199, -0.052185 ], [ 0.042572, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.053558 ], [ 0.042572, -0.054932 ], [ 0.041199, -0.054932 ], [ 0.041199, -0.053558 ], [ 0.042572, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.052185 ], [ 0.043945, -0.053558 ], [ 0.042572, -0.053558 ], [ 0.042572, -0.052185 ], [ 0.043945, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.053558 ], [ 0.043945, -0.054932 ], [ 0.042572, -0.054932 ], [ 0.042572, -0.053558 ], [ 0.043945, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.054932 ], [ 0.034332, -0.056305 ], [ 0.032959, -0.056305 ], [ 0.032959, -0.054932 ], [ 0.034332, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.056305 ], [ 0.034332, -0.057678 ], [ 0.032959, -0.057678 ], [ 0.032959, -0.056305 ], [ 0.034332, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.054932 ], [ 0.035706, -0.056305 ], [ 0.034332, -0.056305 ], [ 0.034332, -0.054932 ], [ 0.035706, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.056305 ], [ 0.035706, -0.057678 ], [ 0.034332, -0.057678 ], [ 0.034332, -0.056305 ], [ 0.035706, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.057678 ], [ 0.034332, -0.059052 ], [ 0.032959, -0.059052 ], [ 0.032959, -0.057678 ], [ 0.034332, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.059052 ], [ 0.034332, -0.060425 ], [ 0.032959, -0.060425 ], [ 0.032959, -0.059052 ], [ 0.034332, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.057678 ], [ 0.035706, -0.059052 ], [ 0.034332, -0.059052 ], [ 0.034332, -0.057678 ], [ 0.035706, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.059052 ], [ 0.035706, -0.060425 ], [ 0.034332, -0.060425 ], [ 0.034332, -0.059052 ], [ 0.035706, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.054932 ], [ 0.037079, -0.056305 ], [ 0.035706, -0.056305 ], [ 0.035706, -0.054932 ], [ 0.037079, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.056305 ], [ 0.037079, -0.057678 ], [ 0.035706, -0.057678 ], [ 0.035706, -0.056305 ], [ 0.037079, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.054932 ], [ 0.038452, -0.056305 ], [ 0.037079, -0.056305 ], [ 0.037079, -0.054932 ], [ 0.038452, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.056305 ], [ 0.038452, -0.057678 ], [ 0.037079, -0.057678 ], [ 0.037079, -0.056305 ], [ 0.038452, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.057678 ], [ 0.037079, -0.059052 ], [ 0.035706, -0.059052 ], [ 0.035706, -0.057678 ], [ 0.037079, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.059052 ], [ 0.037079, -0.060425 ], [ 0.035706, -0.060425 ], [ 0.035706, -0.059052 ], [ 0.037079, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.057678 ], [ 0.038452, -0.059052 ], [ 0.037079, -0.059052 ], [ 0.037079, -0.057678 ], [ 0.038452, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.059052 ], [ 0.038452, -0.060425 ], [ 0.037079, -0.060425 ], [ 0.037079, -0.059052 ], [ 0.038452, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.060425 ], [ 0.034332, -0.061798 ], [ 0.032959, -0.061798 ], [ 0.032959, -0.060425 ], [ 0.034332, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.061798 ], [ 0.034332, -0.063171 ], [ 0.032959, -0.063171 ], [ 0.032959, -0.061798 ], [ 0.034332, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.060425 ], [ 0.035706, -0.061798 ], [ 0.034332, -0.061798 ], [ 0.034332, -0.060425 ], [ 0.035706, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.061798 ], [ 0.035706, -0.063171 ], [ 0.034332, -0.063171 ], [ 0.034332, -0.061798 ], [ 0.035706, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.063171 ], [ 0.034332, -0.064545 ], [ 0.032959, -0.064545 ], [ 0.032959, -0.063171 ], [ 0.034332, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.064545 ], [ 0.034332, -0.065918 ], [ 0.032959, -0.065918 ], [ 0.032959, -0.064545 ], [ 0.034332, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.063171 ], [ 0.035706, -0.064545 ], [ 0.034332, -0.064545 ], [ 0.034332, -0.063171 ], [ 0.035706, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.064545 ], [ 0.035706, -0.065918 ], [ 0.034332, -0.065918 ], [ 0.034332, -0.064545 ], [ 0.035706, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.060425 ], [ 0.037079, -0.061798 ], [ 0.035706, -0.061798 ], [ 0.035706, -0.060425 ], [ 0.037079, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.061798 ], [ 0.037079, -0.063171 ], [ 0.035706, -0.063171 ], [ 0.035706, -0.061798 ], [ 0.037079, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.060425 ], [ 0.038452, -0.061798 ], [ 0.037079, -0.061798 ], [ 0.037079, -0.060425 ], [ 0.038452, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.061798 ], [ 0.038452, -0.063171 ], [ 0.037079, -0.063171 ], [ 0.037079, -0.061798 ], [ 0.038452, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.063171 ], [ 0.037079, -0.064545 ], [ 0.035706, -0.064545 ], [ 0.035706, -0.063171 ], [ 0.037079, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.064545 ], [ 0.037079, -0.065918 ], [ 0.035706, -0.065918 ], [ 0.035706, -0.064545 ], [ 0.037079, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.063171 ], [ 0.038452, -0.064545 ], [ 0.037079, -0.064545 ], [ 0.037079, -0.063171 ], [ 0.038452, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.064545 ], [ 0.038452, -0.065918 ], [ 0.037079, -0.065918 ], [ 0.037079, -0.064545 ], [ 0.038452, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.054932 ], [ 0.039825, -0.056305 ], [ 0.038452, -0.056305 ], [ 0.038452, -0.054932 ], [ 0.039825, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.056305 ], [ 0.039825, -0.057678 ], [ 0.038452, -0.057678 ], [ 0.038452, -0.056305 ], [ 0.039825, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.054932 ], [ 0.041199, -0.056305 ], [ 0.039825, -0.056305 ], [ 0.039825, -0.054932 ], [ 0.041199, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.056305 ], [ 0.041199, -0.057678 ], [ 0.039825, -0.057678 ], [ 0.039825, -0.056305 ], [ 0.041199, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.057678 ], [ 0.039825, -0.059052 ], [ 0.038452, -0.059052 ], [ 0.038452, -0.057678 ], [ 0.039825, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.059052 ], [ 0.039825, -0.060425 ], [ 0.038452, -0.060425 ], [ 0.038452, -0.059052 ], [ 0.039825, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.057678 ], [ 0.041199, -0.059052 ], [ 0.039825, -0.059052 ], [ 0.039825, -0.057678 ], [ 0.041199, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.059052 ], [ 0.041199, -0.060425 ], [ 0.039825, -0.060425 ], [ 0.039825, -0.059052 ], [ 0.041199, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.054932 ], [ 0.042572, -0.056305 ], [ 0.041199, -0.056305 ], [ 0.041199, -0.054932 ], [ 0.042572, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.056305 ], [ 0.042572, -0.057678 ], [ 0.041199, -0.057678 ], [ 0.041199, -0.056305 ], [ 0.042572, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.054932 ], [ 0.043945, -0.056305 ], [ 0.042572, -0.056305 ], [ 0.042572, -0.054932 ], [ 0.043945, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.056305 ], [ 0.043945, -0.057678 ], [ 0.042572, -0.057678 ], [ 0.042572, -0.056305 ], [ 0.043945, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.057678 ], [ 0.042572, -0.059052 ], [ 0.041199, -0.059052 ], [ 0.041199, -0.057678 ], [ 0.042572, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.059052 ], [ 0.042572, -0.060425 ], [ 0.041199, -0.060425 ], [ 0.041199, -0.059052 ], [ 0.042572, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.057678 ], [ 0.043945, -0.059052 ], [ 0.042572, -0.059052 ], [ 0.042572, -0.057678 ], [ 0.043945, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.059052 ], [ 0.043945, -0.060425 ], [ 0.042572, -0.060425 ], [ 0.042572, -0.059052 ], [ 0.043945, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.060425 ], [ 0.039825, -0.061798 ], [ 0.038452, -0.061798 ], [ 0.038452, -0.060425 ], [ 0.039825, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.061798 ], [ 0.039825, -0.063171 ], [ 0.038452, -0.063171 ], [ 0.038452, -0.061798 ], [ 0.039825, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.060425 ], [ 0.041199, -0.061798 ], [ 0.039825, -0.061798 ], [ 0.039825, -0.060425 ], [ 0.041199, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.061798 ], [ 0.041199, -0.063171 ], [ 0.039825, -0.063171 ], [ 0.039825, -0.061798 ], [ 0.041199, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.063171 ], [ 0.039825, -0.064545 ], [ 0.038452, -0.064545 ], [ 0.038452, -0.063171 ], [ 0.039825, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.064545 ], [ 0.039825, -0.065918 ], [ 0.038452, -0.065918 ], [ 0.038452, -0.064545 ], [ 0.039825, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.063171 ], [ 0.041199, -0.064545 ], [ 0.039825, -0.064545 ], [ 0.039825, -0.063171 ], [ 0.041199, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.064545 ], [ 0.041199, -0.065918 ], [ 0.039825, -0.065918 ], [ 0.039825, -0.064545 ], [ 0.041199, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.060425 ], [ 0.042572, -0.061798 ], [ 0.041199, -0.061798 ], [ 0.041199, -0.060425 ], [ 0.042572, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.061798 ], [ 0.042572, -0.063171 ], [ 0.041199, -0.063171 ], [ 0.041199, -0.061798 ], [ 0.042572, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.060425 ], [ 0.043945, -0.061798 ], [ 0.042572, -0.061798 ], [ 0.042572, -0.060425 ], [ 0.043945, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.061798 ], [ 0.043945, -0.063171 ], [ 0.042572, -0.063171 ], [ 0.042572, -0.061798 ], [ 0.043945, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.063171 ], [ 0.042572, -0.064545 ], [ 0.041199, -0.064545 ], [ 0.041199, -0.063171 ], [ 0.042572, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.064545 ], [ 0.042572, -0.065918 ], [ 0.041199, -0.065918 ], [ 0.041199, -0.064545 ], [ 0.042572, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.063171 ], [ 0.043945, -0.064545 ], [ 0.042572, -0.064545 ], [ 0.042572, -0.063171 ], [ 0.043945, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.064545 ], [ 0.043945, -0.065918 ], [ 0.042572, -0.065918 ], [ 0.042572, -0.064545 ], [ 0.043945, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.021973 ], [ 0.045319, -0.023346 ], [ 0.043945, -0.023346 ], [ 0.043945, -0.021973 ], [ 0.045319, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.023346 ], [ 0.045319, -0.024719 ], [ 0.043945, -0.024719 ], [ 0.043945, -0.023346 ], [ 0.045319, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.021973 ], [ 0.046692, -0.023346 ], [ 0.045319, -0.023346 ], [ 0.045319, -0.021973 ], [ 0.046692, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.023346 ], [ 0.046692, -0.024719 ], [ 0.045319, -0.024719 ], [ 0.045319, -0.023346 ], [ 0.046692, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.024719 ], [ 0.045319, -0.026093 ], [ 0.043945, -0.026093 ], [ 0.043945, -0.024719 ], [ 0.045319, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.026093 ], [ 0.045319, -0.027466 ], [ 0.043945, -0.027466 ], [ 0.043945, -0.026093 ], [ 0.045319, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.024719 ], [ 0.046692, -0.026093 ], [ 0.045319, -0.026093 ], [ 0.045319, -0.024719 ], [ 0.046692, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.026093 ], [ 0.046692, -0.027466 ], [ 0.045319, -0.027466 ], [ 0.045319, -0.026093 ], [ 0.046692, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.021973 ], [ 0.048065, -0.023346 ], [ 0.046692, -0.023346 ], [ 0.046692, -0.021973 ], [ 0.048065, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.023346 ], [ 0.048065, -0.024719 ], [ 0.046692, -0.024719 ], [ 0.046692, -0.023346 ], [ 0.048065, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.021973 ], [ 0.049438, -0.023346 ], [ 0.048065, -0.023346 ], [ 0.048065, -0.021973 ], [ 0.049438, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.023346 ], [ 0.049438, -0.024719 ], [ 0.048065, -0.024719 ], [ 0.048065, -0.023346 ], [ 0.049438, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.024719 ], [ 0.048065, -0.026093 ], [ 0.046692, -0.026093 ], [ 0.046692, -0.024719 ], [ 0.048065, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.026093 ], [ 0.048065, -0.027466 ], [ 0.046692, -0.027466 ], [ 0.046692, -0.026093 ], [ 0.048065, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.024719 ], [ 0.049438, -0.026093 ], [ 0.048065, -0.026093 ], [ 0.048065, -0.024719 ], [ 0.049438, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.026093 ], [ 0.049438, -0.027466 ], [ 0.048065, -0.027466 ], [ 0.048065, -0.026093 ], [ 0.049438, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.027466 ], [ 0.045319, -0.028839 ], [ 0.043945, -0.028839 ], [ 0.043945, -0.027466 ], [ 0.045319, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.028839 ], [ 0.045319, -0.030212 ], [ 0.043945, -0.030212 ], [ 0.043945, -0.028839 ], [ 0.045319, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.027466 ], [ 0.046692, -0.028839 ], [ 0.045319, -0.028839 ], [ 0.045319, -0.027466 ], [ 0.046692, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.028839 ], [ 0.046692, -0.030212 ], [ 0.045319, -0.030212 ], [ 0.045319, -0.028839 ], [ 0.046692, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.030212 ], [ 0.045319, -0.031586 ], [ 0.043945, -0.031586 ], [ 0.043945, -0.030212 ], [ 0.045319, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.031586 ], [ 0.045319, -0.032959 ], [ 0.043945, -0.032959 ], [ 0.043945, -0.031586 ], [ 0.045319, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.030212 ], [ 0.046692, -0.031586 ], [ 0.045319, -0.031586 ], [ 0.045319, -0.030212 ], [ 0.046692, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.031586 ], [ 0.046692, -0.032959 ], [ 0.045319, -0.032959 ], [ 0.045319, -0.031586 ], [ 0.046692, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.027466 ], [ 0.048065, -0.028839 ], [ 0.046692, -0.028839 ], [ 0.046692, -0.027466 ], [ 0.048065, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.028839 ], [ 0.048065, -0.030212 ], [ 0.046692, -0.030212 ], [ 0.046692, -0.028839 ], [ 0.048065, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.027466 ], [ 0.049438, -0.028839 ], [ 0.048065, -0.028839 ], [ 0.048065, -0.027466 ], [ 0.049438, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.028839 ], [ 0.049438, -0.030212 ], [ 0.048065, -0.030212 ], [ 0.048065, -0.028839 ], [ 0.049438, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.030212 ], [ 0.048065, -0.031586 ], [ 0.046692, -0.031586 ], [ 0.046692, -0.030212 ], [ 0.048065, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.031586 ], [ 0.048065, -0.032959 ], [ 0.046692, -0.032959 ], [ 0.046692, -0.031586 ], [ 0.048065, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.030212 ], [ 0.049438, -0.031586 ], [ 0.048065, -0.031586 ], [ 0.048065, -0.030212 ], [ 0.049438, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.031586 ], [ 0.049438, -0.032959 ], [ 0.048065, -0.032959 ], [ 0.048065, -0.031586 ], [ 0.049438, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.021973 ], [ 0.050812, -0.023346 ], [ 0.049438, -0.023346 ], [ 0.049438, -0.021973 ], [ 0.050812, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.023346 ], [ 0.050812, -0.024719 ], [ 0.049438, -0.024719 ], [ 0.049438, -0.023346 ], [ 0.050812, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.021973 ], [ 0.052185, -0.023346 ], [ 0.050812, -0.023346 ], [ 0.050812, -0.021973 ], [ 0.052185, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.023346 ], [ 0.052185, -0.024719 ], [ 0.050812, -0.024719 ], [ 0.050812, -0.023346 ], [ 0.052185, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.024719 ], [ 0.050812, -0.026093 ], [ 0.049438, -0.026093 ], [ 0.049438, -0.024719 ], [ 0.050812, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.026093 ], [ 0.050812, -0.027466 ], [ 0.049438, -0.027466 ], [ 0.049438, -0.026093 ], [ 0.050812, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.024719 ], [ 0.052185, -0.026093 ], [ 0.050812, -0.026093 ], [ 0.050812, -0.024719 ], [ 0.052185, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.026093 ], [ 0.052185, -0.027466 ], [ 0.050812, -0.027466 ], [ 0.050812, -0.026093 ], [ 0.052185, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.021973 ], [ 0.053558, -0.023346 ], [ 0.052185, -0.023346 ], [ 0.052185, -0.021973 ], [ 0.053558, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.023346 ], [ 0.053558, -0.024719 ], [ 0.052185, -0.024719 ], [ 0.052185, -0.023346 ], [ 0.053558, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.021973 ], [ 0.054932, -0.023346 ], [ 0.053558, -0.023346 ], [ 0.053558, -0.021973 ], [ 0.054932, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.023346 ], [ 0.054932, -0.024719 ], [ 0.053558, -0.024719 ], [ 0.053558, -0.023346 ], [ 0.054932, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.024719 ], [ 0.053558, -0.026093 ], [ 0.052185, -0.026093 ], [ 0.052185, -0.024719 ], [ 0.053558, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.026093 ], [ 0.053558, -0.027466 ], [ 0.052185, -0.027466 ], [ 0.052185, -0.026093 ], [ 0.053558, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.024719 ], [ 0.054932, -0.026093 ], [ 0.053558, -0.026093 ], [ 0.053558, -0.024719 ], [ 0.054932, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.026093 ], [ 0.054932, -0.027466 ], [ 0.053558, -0.027466 ], [ 0.053558, -0.026093 ], [ 0.054932, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.027466 ], [ 0.050812, -0.028839 ], [ 0.049438, -0.028839 ], [ 0.049438, -0.027466 ], [ 0.050812, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.028839 ], [ 0.050812, -0.030212 ], [ 0.049438, -0.030212 ], [ 0.049438, -0.028839 ], [ 0.050812, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.027466 ], [ 0.052185, -0.028839 ], [ 0.050812, -0.028839 ], [ 0.050812, -0.027466 ], [ 0.052185, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.028839 ], [ 0.052185, -0.030212 ], [ 0.050812, -0.030212 ], [ 0.050812, -0.028839 ], [ 0.052185, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.030212 ], [ 0.050812, -0.031586 ], [ 0.049438, -0.031586 ], [ 0.049438, -0.030212 ], [ 0.050812, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.031586 ], [ 0.050812, -0.032959 ], [ 0.049438, -0.032959 ], [ 0.049438, -0.031586 ], [ 0.050812, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.030212 ], [ 0.052185, -0.031586 ], [ 0.050812, -0.031586 ], [ 0.050812, -0.030212 ], [ 0.052185, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.031586 ], [ 0.052185, -0.032959 ], [ 0.050812, -0.032959 ], [ 0.050812, -0.031586 ], [ 0.052185, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.027466 ], [ 0.053558, -0.028839 ], [ 0.052185, -0.028839 ], [ 0.052185, -0.027466 ], [ 0.053558, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.028839 ], [ 0.053558, -0.030212 ], [ 0.052185, -0.030212 ], [ 0.052185, -0.028839 ], [ 0.053558, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.027466 ], [ 0.054932, -0.028839 ], [ 0.053558, -0.028839 ], [ 0.053558, -0.027466 ], [ 0.054932, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.028839 ], [ 0.054932, -0.030212 ], [ 0.053558, -0.030212 ], [ 0.053558, -0.028839 ], [ 0.054932, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.030212 ], [ 0.053558, -0.031586 ], [ 0.052185, -0.031586 ], [ 0.052185, -0.030212 ], [ 0.053558, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.031586 ], [ 0.053558, -0.032959 ], [ 0.052185, -0.032959 ], [ 0.052185, -0.031586 ], [ 0.053558, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.030212 ], [ 0.054932, -0.031586 ], [ 0.053558, -0.031586 ], [ 0.053558, -0.030212 ], [ 0.054932, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.031586 ], [ 0.054932, -0.032959 ], [ 0.053558, -0.032959 ], [ 0.053558, -0.031586 ], [ 0.054932, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.032959 ], [ 0.045319, -0.034332 ], [ 0.043945, -0.034332 ], [ 0.043945, -0.032959 ], [ 0.045319, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.034332 ], [ 0.045319, -0.035706 ], [ 0.043945, -0.035706 ], [ 0.043945, -0.034332 ], [ 0.045319, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.032959 ], [ 0.046692, -0.034332 ], [ 0.045319, -0.034332 ], [ 0.045319, -0.032959 ], [ 0.046692, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.034332 ], [ 0.046692, -0.035706 ], [ 0.045319, -0.035706 ], [ 0.045319, -0.034332 ], [ 0.046692, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.035706 ], [ 0.045319, -0.037079 ], [ 0.043945, -0.037079 ], [ 0.043945, -0.035706 ], [ 0.045319, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.037079 ], [ 0.045319, -0.038452 ], [ 0.043945, -0.038452 ], [ 0.043945, -0.037079 ], [ 0.045319, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.035706 ], [ 0.046692, -0.037079 ], [ 0.045319, -0.037079 ], [ 0.045319, -0.035706 ], [ 0.046692, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.037079 ], [ 0.046692, -0.038452 ], [ 0.045319, -0.038452 ], [ 0.045319, -0.037079 ], [ 0.046692, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.032959 ], [ 0.048065, -0.034332 ], [ 0.046692, -0.034332 ], [ 0.046692, -0.032959 ], [ 0.048065, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.034332 ], [ 0.048065, -0.035706 ], [ 0.046692, -0.035706 ], [ 0.046692, -0.034332 ], [ 0.048065, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.032959 ], [ 0.049438, -0.034332 ], [ 0.048065, -0.034332 ], [ 0.048065, -0.032959 ], [ 0.049438, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.034332 ], [ 0.049438, -0.035706 ], [ 0.048065, -0.035706 ], [ 0.048065, -0.034332 ], [ 0.049438, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.035706 ], [ 0.048065, -0.037079 ], [ 0.046692, -0.037079 ], [ 0.046692, -0.035706 ], [ 0.048065, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.037079 ], [ 0.048065, -0.038452 ], [ 0.046692, -0.038452 ], [ 0.046692, -0.037079 ], [ 0.048065, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.035706 ], [ 0.049438, -0.037079 ], [ 0.048065, -0.037079 ], [ 0.048065, -0.035706 ], [ 0.049438, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.037079 ], [ 0.049438, -0.038452 ], [ 0.048065, -0.038452 ], [ 0.048065, -0.037079 ], [ 0.049438, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.038452 ], [ 0.045319, -0.039825 ], [ 0.043945, -0.039825 ], [ 0.043945, -0.038452 ], [ 0.045319, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.039825 ], [ 0.045319, -0.041199 ], [ 0.043945, -0.041199 ], [ 0.043945, -0.039825 ], [ 0.045319, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.038452 ], [ 0.046692, -0.039825 ], [ 0.045319, -0.039825 ], [ 0.045319, -0.038452 ], [ 0.046692, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.039825 ], [ 0.046692, -0.041199 ], [ 0.045319, -0.041199 ], [ 0.045319, -0.039825 ], [ 0.046692, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.041199 ], [ 0.045319, -0.042572 ], [ 0.043945, -0.042572 ], [ 0.043945, -0.041199 ], [ 0.045319, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.042572 ], [ 0.045319, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.042572 ], [ 0.045319, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.041199 ], [ 0.046692, -0.042572 ], [ 0.045319, -0.042572 ], [ 0.045319, -0.041199 ], [ 0.046692, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.042572 ], [ 0.046692, -0.043945 ], [ 0.045319, -0.043945 ], [ 0.045319, -0.042572 ], [ 0.046692, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.038452 ], [ 0.048065, -0.039825 ], [ 0.046692, -0.039825 ], [ 0.046692, -0.038452 ], [ 0.048065, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.039825 ], [ 0.048065, -0.041199 ], [ 0.046692, -0.041199 ], [ 0.046692, -0.039825 ], [ 0.048065, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.038452 ], [ 0.049438, -0.039825 ], [ 0.048065, -0.039825 ], [ 0.048065, -0.038452 ], [ 0.049438, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.039825 ], [ 0.049438, -0.041199 ], [ 0.048065, -0.041199 ], [ 0.048065, -0.039825 ], [ 0.049438, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.041199 ], [ 0.048065, -0.042572 ], [ 0.046692, -0.042572 ], [ 0.046692, -0.041199 ], [ 0.048065, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.042572 ], [ 0.048065, -0.043945 ], [ 0.046692, -0.043945 ], [ 0.046692, -0.042572 ], [ 0.048065, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.041199 ], [ 0.049438, -0.042572 ], [ 0.048065, -0.042572 ], [ 0.048065, -0.041199 ], [ 0.049438, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.042572 ], [ 0.049438, -0.043945 ], [ 0.048065, -0.043945 ], [ 0.048065, -0.042572 ], [ 0.049438, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.032959 ], [ 0.050812, -0.034332 ], [ 0.049438, -0.034332 ], [ 0.049438, -0.032959 ], [ 0.050812, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.034332 ], [ 0.050812, -0.035706 ], [ 0.049438, -0.035706 ], [ 0.049438, -0.034332 ], [ 0.050812, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.032959 ], [ 0.052185, -0.034332 ], [ 0.050812, -0.034332 ], [ 0.050812, -0.032959 ], [ 0.052185, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.034332 ], [ 0.052185, -0.035706 ], [ 0.050812, -0.035706 ], [ 0.050812, -0.034332 ], [ 0.052185, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.035706 ], [ 0.050812, -0.037079 ], [ 0.049438, -0.037079 ], [ 0.049438, -0.035706 ], [ 0.050812, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.037079 ], [ 0.050812, -0.038452 ], [ 0.049438, -0.038452 ], [ 0.049438, -0.037079 ], [ 0.050812, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.035706 ], [ 0.052185, -0.037079 ], [ 0.050812, -0.037079 ], [ 0.050812, -0.035706 ], [ 0.052185, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.037079 ], [ 0.052185, -0.038452 ], [ 0.050812, -0.038452 ], [ 0.050812, -0.037079 ], [ 0.052185, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.032959 ], [ 0.053558, -0.034332 ], [ 0.052185, -0.034332 ], [ 0.052185, -0.032959 ], [ 0.053558, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.034332 ], [ 0.053558, -0.035706 ], [ 0.052185, -0.035706 ], [ 0.052185, -0.034332 ], [ 0.053558, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.032959 ], [ 0.054932, -0.034332 ], [ 0.053558, -0.034332 ], [ 0.053558, -0.032959 ], [ 0.054932, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.034332 ], [ 0.054932, -0.035706 ], [ 0.053558, -0.035706 ], [ 0.053558, -0.034332 ], [ 0.054932, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.035706 ], [ 0.053558, -0.037079 ], [ 0.052185, -0.037079 ], [ 0.052185, -0.035706 ], [ 0.053558, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.037079 ], [ 0.053558, -0.038452 ], [ 0.052185, -0.038452 ], [ 0.052185, -0.037079 ], [ 0.053558, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.035706 ], [ 0.054932, -0.037079 ], [ 0.053558, -0.037079 ], [ 0.053558, -0.035706 ], [ 0.054932, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.037079 ], [ 0.054932, -0.038452 ], [ 0.053558, -0.038452 ], [ 0.053558, -0.037079 ], [ 0.054932, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.038452 ], [ 0.050812, -0.039825 ], [ 0.049438, -0.039825 ], [ 0.049438, -0.038452 ], [ 0.050812, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.039825 ], [ 0.050812, -0.041199 ], [ 0.049438, -0.041199 ], [ 0.049438, -0.039825 ], [ 0.050812, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.038452 ], [ 0.052185, -0.039825 ], [ 0.050812, -0.039825 ], [ 0.050812, -0.038452 ], [ 0.052185, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.039825 ], [ 0.052185, -0.041199 ], [ 0.050812, -0.041199 ], [ 0.050812, -0.039825 ], [ 0.052185, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.041199 ], [ 0.050812, -0.042572 ], [ 0.049438, -0.042572 ], [ 0.049438, -0.041199 ], [ 0.050812, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.042572 ], [ 0.050812, -0.043945 ], [ 0.049438, -0.043945 ], [ 0.049438, -0.042572 ], [ 0.050812, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.041199 ], [ 0.052185, -0.042572 ], [ 0.050812, -0.042572 ], [ 0.050812, -0.041199 ], [ 0.052185, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.042572 ], [ 0.052185, -0.043945 ], [ 0.050812, -0.043945 ], [ 0.050812, -0.042572 ], [ 0.052185, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.038452 ], [ 0.053558, -0.039825 ], [ 0.052185, -0.039825 ], [ 0.052185, -0.038452 ], [ 0.053558, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.039825 ], [ 0.053558, -0.041199 ], [ 0.052185, -0.041199 ], [ 0.052185, -0.039825 ], [ 0.053558, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.038452 ], [ 0.054932, -0.039825 ], [ 0.053558, -0.039825 ], [ 0.053558, -0.038452 ], [ 0.054932, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.039825 ], [ 0.054932, -0.041199 ], [ 0.053558, -0.041199 ], [ 0.053558, -0.039825 ], [ 0.054932, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.041199 ], [ 0.053558, -0.042572 ], [ 0.052185, -0.042572 ], [ 0.052185, -0.041199 ], [ 0.053558, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.042572 ], [ 0.053558, -0.043945 ], [ 0.052185, -0.043945 ], [ 0.052185, -0.042572 ], [ 0.053558, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.041199 ], [ 0.054932, -0.042572 ], [ 0.053558, -0.042572 ], [ 0.053558, -0.041199 ], [ 0.054932, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.042572 ], [ 0.054932, -0.043945 ], [ 0.053558, -0.043945 ], [ 0.053558, -0.042572 ], [ 0.054932, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.021973 ], [ 0.056305, -0.023346 ], [ 0.054932, -0.023346 ], [ 0.054932, -0.021973 ], [ 0.056305, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.023346 ], [ 0.056305, -0.024719 ], [ 0.054932, -0.024719 ], [ 0.054932, -0.023346 ], [ 0.056305, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.021973 ], [ 0.057678, -0.023346 ], [ 0.056305, -0.023346 ], [ 0.056305, -0.021973 ], [ 0.057678, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.023346 ], [ 0.057678, -0.024719 ], [ 0.056305, -0.024719 ], [ 0.056305, -0.023346 ], [ 0.057678, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.024719 ], [ 0.056305, -0.026093 ], [ 0.054932, -0.026093 ], [ 0.054932, -0.024719 ], [ 0.056305, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.026093 ], [ 0.056305, -0.027466 ], [ 0.054932, -0.027466 ], [ 0.054932, -0.026093 ], [ 0.056305, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.024719 ], [ 0.057678, -0.026093 ], [ 0.056305, -0.026093 ], [ 0.056305, -0.024719 ], [ 0.057678, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.026093 ], [ 0.057678, -0.027466 ], [ 0.056305, -0.027466 ], [ 0.056305, -0.026093 ], [ 0.057678, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.021973 ], [ 0.059052, -0.023346 ], [ 0.057678, -0.023346 ], [ 0.057678, -0.021973 ], [ 0.059052, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.023346 ], [ 0.059052, -0.024719 ], [ 0.057678, -0.024719 ], [ 0.057678, -0.023346 ], [ 0.059052, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.021973 ], [ 0.060425, -0.023346 ], [ 0.059052, -0.023346 ], [ 0.059052, -0.021973 ], [ 0.060425, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.023346 ], [ 0.060425, -0.024719 ], [ 0.059052, -0.024719 ], [ 0.059052, -0.023346 ], [ 0.060425, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.024719 ], [ 0.059052, -0.026093 ], [ 0.057678, -0.026093 ], [ 0.057678, -0.024719 ], [ 0.059052, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.026093 ], [ 0.059052, -0.027466 ], [ 0.057678, -0.027466 ], [ 0.057678, -0.026093 ], [ 0.059052, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.024719 ], [ 0.060425, -0.026093 ], [ 0.059052, -0.026093 ], [ 0.059052, -0.024719 ], [ 0.060425, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.026093 ], [ 0.060425, -0.027466 ], [ 0.059052, -0.027466 ], [ 0.059052, -0.026093 ], [ 0.060425, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.027466 ], [ 0.056305, -0.028839 ], [ 0.054932, -0.028839 ], [ 0.054932, -0.027466 ], [ 0.056305, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.028839 ], [ 0.056305, -0.030212 ], [ 0.054932, -0.030212 ], [ 0.054932, -0.028839 ], [ 0.056305, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.027466 ], [ 0.057678, -0.028839 ], [ 0.056305, -0.028839 ], [ 0.056305, -0.027466 ], [ 0.057678, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.028839 ], [ 0.057678, -0.030212 ], [ 0.056305, -0.030212 ], [ 0.056305, -0.028839 ], [ 0.057678, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.030212 ], [ 0.056305, -0.031586 ], [ 0.054932, -0.031586 ], [ 0.054932, -0.030212 ], [ 0.056305, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.031586 ], [ 0.056305, -0.032959 ], [ 0.054932, -0.032959 ], [ 0.054932, -0.031586 ], [ 0.056305, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.030212 ], [ 0.057678, -0.031586 ], [ 0.056305, -0.031586 ], [ 0.056305, -0.030212 ], [ 0.057678, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.031586 ], [ 0.057678, -0.032959 ], [ 0.056305, -0.032959 ], [ 0.056305, -0.031586 ], [ 0.057678, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.027466 ], [ 0.059052, -0.028839 ], [ 0.057678, -0.028839 ], [ 0.057678, -0.027466 ], [ 0.059052, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.028839 ], [ 0.059052, -0.030212 ], [ 0.057678, -0.030212 ], [ 0.057678, -0.028839 ], [ 0.059052, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.027466 ], [ 0.060425, -0.028839 ], [ 0.059052, -0.028839 ], [ 0.059052, -0.027466 ], [ 0.060425, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.028839 ], [ 0.060425, -0.030212 ], [ 0.059052, -0.030212 ], [ 0.059052, -0.028839 ], [ 0.060425, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.030212 ], [ 0.059052, -0.031586 ], [ 0.057678, -0.031586 ], [ 0.057678, -0.030212 ], [ 0.059052, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.031586 ], [ 0.059052, -0.032959 ], [ 0.057678, -0.032959 ], [ 0.057678, -0.031586 ], [ 0.059052, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.030212 ], [ 0.060425, -0.031586 ], [ 0.059052, -0.031586 ], [ 0.059052, -0.030212 ], [ 0.060425, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.031586 ], [ 0.060425, -0.032959 ], [ 0.059052, -0.032959 ], [ 0.059052, -0.031586 ], [ 0.060425, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.021973 ], [ 0.061798, -0.023346 ], [ 0.060425, -0.023346 ], [ 0.060425, -0.021973 ], [ 0.061798, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.023346 ], [ 0.061798, -0.024719 ], [ 0.060425, -0.024719 ], [ 0.060425, -0.023346 ], [ 0.061798, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.021973 ], [ 0.063171, -0.023346 ], [ 0.061798, -0.023346 ], [ 0.061798, -0.021973 ], [ 0.063171, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.023346 ], [ 0.063171, -0.024719 ], [ 0.061798, -0.024719 ], [ 0.061798, -0.023346 ], [ 0.063171, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.024719 ], [ 0.061798, -0.026093 ], [ 0.060425, -0.026093 ], [ 0.060425, -0.024719 ], [ 0.061798, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.026093 ], [ 0.061798, -0.027466 ], [ 0.060425, -0.027466 ], [ 0.060425, -0.026093 ], [ 0.061798, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.024719 ], [ 0.063171, -0.026093 ], [ 0.061798, -0.026093 ], [ 0.061798, -0.024719 ], [ 0.063171, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.026093 ], [ 0.063171, -0.027466 ], [ 0.061798, -0.027466 ], [ 0.061798, -0.026093 ], [ 0.063171, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.021973 ], [ 0.064545, -0.023346 ], [ 0.063171, -0.023346 ], [ 0.063171, -0.021973 ], [ 0.064545, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.023346 ], [ 0.064545, -0.024719 ], [ 0.063171, -0.024719 ], [ 0.063171, -0.023346 ], [ 0.064545, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.023346 ], [ 0.064545, -0.023346 ], [ 0.064545, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.023346 ], [ 0.065918, -0.024719 ], [ 0.064545, -0.024719 ], [ 0.064545, -0.023346 ], [ 0.065918, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.024719 ], [ 0.064545, -0.026093 ], [ 0.063171, -0.026093 ], [ 0.063171, -0.024719 ], [ 0.064545, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.026093 ], [ 0.064545, -0.027466 ], [ 0.063171, -0.027466 ], [ 0.063171, -0.026093 ], [ 0.064545, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.024719 ], [ 0.065918, -0.026093 ], [ 0.064545, -0.026093 ], [ 0.064545, -0.024719 ], [ 0.065918, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.026093 ], [ 0.065918, -0.027466 ], [ 0.064545, -0.027466 ], [ 0.064545, -0.026093 ], [ 0.065918, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.027466 ], [ 0.061798, -0.028839 ], [ 0.060425, -0.028839 ], [ 0.060425, -0.027466 ], [ 0.061798, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.028839 ], [ 0.061798, -0.030212 ], [ 0.060425, -0.030212 ], [ 0.060425, -0.028839 ], [ 0.061798, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.027466 ], [ 0.063171, -0.028839 ], [ 0.061798, -0.028839 ], [ 0.061798, -0.027466 ], [ 0.063171, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.028839 ], [ 0.063171, -0.030212 ], [ 0.061798, -0.030212 ], [ 0.061798, -0.028839 ], [ 0.063171, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.030212 ], [ 0.061798, -0.031586 ], [ 0.060425, -0.031586 ], [ 0.060425, -0.030212 ], [ 0.061798, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.031586 ], [ 0.061798, -0.032959 ], [ 0.060425, -0.032959 ], [ 0.060425, -0.031586 ], [ 0.061798, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.030212 ], [ 0.063171, -0.031586 ], [ 0.061798, -0.031586 ], [ 0.061798, -0.030212 ], [ 0.063171, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.031586 ], [ 0.063171, -0.032959 ], [ 0.061798, -0.032959 ], [ 0.061798, -0.031586 ], [ 0.063171, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.027466 ], [ 0.064545, -0.028839 ], [ 0.063171, -0.028839 ], [ 0.063171, -0.027466 ], [ 0.064545, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.028839 ], [ 0.064545, -0.030212 ], [ 0.063171, -0.030212 ], [ 0.063171, -0.028839 ], [ 0.064545, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.027466 ], [ 0.065918, -0.028839 ], [ 0.064545, -0.028839 ], [ 0.064545, -0.027466 ], [ 0.065918, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.028839 ], [ 0.065918, -0.030212 ], [ 0.064545, -0.030212 ], [ 0.064545, -0.028839 ], [ 0.065918, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.030212 ], [ 0.064545, -0.031586 ], [ 0.063171, -0.031586 ], [ 0.063171, -0.030212 ], [ 0.064545, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.031586 ], [ 0.064545, -0.032959 ], [ 0.063171, -0.032959 ], [ 0.063171, -0.031586 ], [ 0.064545, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.030212 ], [ 0.065918, -0.031586 ], [ 0.064545, -0.031586 ], [ 0.064545, -0.030212 ], [ 0.065918, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.031586 ], [ 0.065918, -0.032959 ], [ 0.064545, -0.032959 ], [ 0.064545, -0.031586 ], [ 0.065918, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.032959 ], [ 0.056305, -0.034332 ], [ 0.054932, -0.034332 ], [ 0.054932, -0.032959 ], [ 0.056305, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.034332 ], [ 0.056305, -0.035706 ], [ 0.054932, -0.035706 ], [ 0.054932, -0.034332 ], [ 0.056305, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.032959 ], [ 0.057678, -0.034332 ], [ 0.056305, -0.034332 ], [ 0.056305, -0.032959 ], [ 0.057678, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.034332 ], [ 0.057678, -0.035706 ], [ 0.056305, -0.035706 ], [ 0.056305, -0.034332 ], [ 0.057678, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.035706 ], [ 0.056305, -0.037079 ], [ 0.054932, -0.037079 ], [ 0.054932, -0.035706 ], [ 0.056305, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.037079 ], [ 0.056305, -0.038452 ], [ 0.054932, -0.038452 ], [ 0.054932, -0.037079 ], [ 0.056305, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.035706 ], [ 0.057678, -0.037079 ], [ 0.056305, -0.037079 ], [ 0.056305, -0.035706 ], [ 0.057678, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.037079 ], [ 0.057678, -0.038452 ], [ 0.056305, -0.038452 ], [ 0.056305, -0.037079 ], [ 0.057678, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.032959 ], [ 0.059052, -0.034332 ], [ 0.057678, -0.034332 ], [ 0.057678, -0.032959 ], [ 0.059052, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.034332 ], [ 0.059052, -0.035706 ], [ 0.057678, -0.035706 ], [ 0.057678, -0.034332 ], [ 0.059052, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.032959 ], [ 0.060425, -0.034332 ], [ 0.059052, -0.034332 ], [ 0.059052, -0.032959 ], [ 0.060425, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.034332 ], [ 0.060425, -0.035706 ], [ 0.059052, -0.035706 ], [ 0.059052, -0.034332 ], [ 0.060425, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.035706 ], [ 0.059052, -0.037079 ], [ 0.057678, -0.037079 ], [ 0.057678, -0.035706 ], [ 0.059052, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.037079 ], [ 0.059052, -0.038452 ], [ 0.057678, -0.038452 ], [ 0.057678, -0.037079 ], [ 0.059052, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.035706 ], [ 0.060425, -0.037079 ], [ 0.059052, -0.037079 ], [ 0.059052, -0.035706 ], [ 0.060425, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.037079 ], [ 0.060425, -0.038452 ], [ 0.059052, -0.038452 ], [ 0.059052, -0.037079 ], [ 0.060425, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.038452 ], [ 0.056305, -0.039825 ], [ 0.054932, -0.039825 ], [ 0.054932, -0.038452 ], [ 0.056305, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.039825 ], [ 0.056305, -0.041199 ], [ 0.054932, -0.041199 ], [ 0.054932, -0.039825 ], [ 0.056305, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.038452 ], [ 0.057678, -0.039825 ], [ 0.056305, -0.039825 ], [ 0.056305, -0.038452 ], [ 0.057678, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.039825 ], [ 0.057678, -0.041199 ], [ 0.056305, -0.041199 ], [ 0.056305, -0.039825 ], [ 0.057678, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.041199 ], [ 0.056305, -0.042572 ], [ 0.054932, -0.042572 ], [ 0.054932, -0.041199 ], [ 0.056305, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.042572 ], [ 0.056305, -0.043945 ], [ 0.054932, -0.043945 ], [ 0.054932, -0.042572 ], [ 0.056305, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.041199 ], [ 0.057678, -0.042572 ], [ 0.056305, -0.042572 ], [ 0.056305, -0.041199 ], [ 0.057678, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.042572 ], [ 0.057678, -0.043945 ], [ 0.056305, -0.043945 ], [ 0.056305, -0.042572 ], [ 0.057678, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.038452 ], [ 0.059052, -0.039825 ], [ 0.057678, -0.039825 ], [ 0.057678, -0.038452 ], [ 0.059052, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.039825 ], [ 0.059052, -0.041199 ], [ 0.057678, -0.041199 ], [ 0.057678, -0.039825 ], [ 0.059052, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.038452 ], [ 0.060425, -0.039825 ], [ 0.059052, -0.039825 ], [ 0.059052, -0.038452 ], [ 0.060425, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.039825 ], [ 0.060425, -0.041199 ], [ 0.059052, -0.041199 ], [ 0.059052, -0.039825 ], [ 0.060425, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.041199 ], [ 0.059052, -0.042572 ], [ 0.057678, -0.042572 ], [ 0.057678, -0.041199 ], [ 0.059052, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.042572 ], [ 0.059052, -0.043945 ], [ 0.057678, -0.043945 ], [ 0.057678, -0.042572 ], [ 0.059052, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.041199 ], [ 0.060425, -0.042572 ], [ 0.059052, -0.042572 ], [ 0.059052, -0.041199 ], [ 0.060425, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.042572 ], [ 0.060425, -0.043945 ], [ 0.059052, -0.043945 ], [ 0.059052, -0.042572 ], [ 0.060425, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.032959 ], [ 0.061798, -0.034332 ], [ 0.060425, -0.034332 ], [ 0.060425, -0.032959 ], [ 0.061798, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.034332 ], [ 0.061798, -0.035706 ], [ 0.060425, -0.035706 ], [ 0.060425, -0.034332 ], [ 0.061798, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.032959 ], [ 0.063171, -0.034332 ], [ 0.061798, -0.034332 ], [ 0.061798, -0.032959 ], [ 0.063171, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.034332 ], [ 0.063171, -0.035706 ], [ 0.061798, -0.035706 ], [ 0.061798, -0.034332 ], [ 0.063171, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.035706 ], [ 0.061798, -0.037079 ], [ 0.060425, -0.037079 ], [ 0.060425, -0.035706 ], [ 0.061798, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.037079 ], [ 0.061798, -0.038452 ], [ 0.060425, -0.038452 ], [ 0.060425, -0.037079 ], [ 0.061798, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.035706 ], [ 0.063171, -0.037079 ], [ 0.061798, -0.037079 ], [ 0.061798, -0.035706 ], [ 0.063171, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.037079 ], [ 0.063171, -0.038452 ], [ 0.061798, -0.038452 ], [ 0.061798, -0.037079 ], [ 0.063171, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.032959 ], [ 0.064545, -0.034332 ], [ 0.063171, -0.034332 ], [ 0.063171, -0.032959 ], [ 0.064545, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.034332 ], [ 0.064545, -0.035706 ], [ 0.063171, -0.035706 ], [ 0.063171, -0.034332 ], [ 0.064545, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.032959 ], [ 0.065918, -0.034332 ], [ 0.064545, -0.034332 ], [ 0.064545, -0.032959 ], [ 0.065918, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.034332 ], [ 0.065918, -0.035706 ], [ 0.064545, -0.035706 ], [ 0.064545, -0.034332 ], [ 0.065918, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.035706 ], [ 0.064545, -0.037079 ], [ 0.063171, -0.037079 ], [ 0.063171, -0.035706 ], [ 0.064545, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.037079 ], [ 0.064545, -0.038452 ], [ 0.063171, -0.038452 ], [ 0.063171, -0.037079 ], [ 0.064545, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.035706 ], [ 0.065918, -0.037079 ], [ 0.064545, -0.037079 ], [ 0.064545, -0.035706 ], [ 0.065918, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.037079 ], [ 0.065918, -0.038452 ], [ 0.064545, -0.038452 ], [ 0.064545, -0.037079 ], [ 0.065918, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.038452 ], [ 0.061798, -0.039825 ], [ 0.060425, -0.039825 ], [ 0.060425, -0.038452 ], [ 0.061798, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.039825 ], [ 0.061798, -0.041199 ], [ 0.060425, -0.041199 ], [ 0.060425, -0.039825 ], [ 0.061798, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.038452 ], [ 0.063171, -0.039825 ], [ 0.061798, -0.039825 ], [ 0.061798, -0.038452 ], [ 0.063171, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.039825 ], [ 0.063171, -0.041199 ], [ 0.061798, -0.041199 ], [ 0.061798, -0.039825 ], [ 0.063171, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.041199 ], [ 0.061798, -0.042572 ], [ 0.060425, -0.042572 ], [ 0.060425, -0.041199 ], [ 0.061798, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.042572 ], [ 0.061798, -0.043945 ], [ 0.060425, -0.043945 ], [ 0.060425, -0.042572 ], [ 0.061798, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.041199 ], [ 0.063171, -0.042572 ], [ 0.061798, -0.042572 ], [ 0.061798, -0.041199 ], [ 0.063171, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.042572 ], [ 0.063171, -0.043945 ], [ 0.061798, -0.043945 ], [ 0.061798, -0.042572 ], [ 0.063171, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.038452 ], [ 0.064545, -0.039825 ], [ 0.063171, -0.039825 ], [ 0.063171, -0.038452 ], [ 0.064545, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.039825 ], [ 0.064545, -0.041199 ], [ 0.063171, -0.041199 ], [ 0.063171, -0.039825 ], [ 0.064545, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.038452 ], [ 0.065918, -0.039825 ], [ 0.064545, -0.039825 ], [ 0.064545, -0.038452 ], [ 0.065918, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.039825 ], [ 0.065918, -0.041199 ], [ 0.064545, -0.041199 ], [ 0.064545, -0.039825 ], [ 0.065918, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.041199 ], [ 0.064545, -0.042572 ], [ 0.063171, -0.042572 ], [ 0.063171, -0.041199 ], [ 0.064545, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.042572 ], [ 0.064545, -0.043945 ], [ 0.063171, -0.043945 ], [ 0.063171, -0.042572 ], [ 0.064545, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.041199 ], [ 0.065918, -0.042572 ], [ 0.064545, -0.042572 ], [ 0.064545, -0.041199 ], [ 0.065918, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.042572 ], [ 0.065918, -0.043945 ], [ 0.064545, -0.043945 ], [ 0.064545, -0.042572 ], [ 0.065918, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.043945 ], [ 0.045319, -0.045319 ], [ 0.043945, -0.045319 ], [ 0.043945, -0.043945 ], [ 0.045319, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.045319 ], [ 0.045319, -0.046692 ], [ 0.043945, -0.046692 ], [ 0.043945, -0.045319 ], [ 0.045319, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.043945 ], [ 0.046692, -0.045319 ], [ 0.045319, -0.045319 ], [ 0.045319, -0.043945 ], [ 0.046692, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.045319 ], [ 0.046692, -0.046692 ], [ 0.045319, -0.046692 ], [ 0.045319, -0.045319 ], [ 0.046692, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.046692 ], [ 0.045319, -0.048065 ], [ 0.043945, -0.048065 ], [ 0.043945, -0.046692 ], [ 0.045319, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.048065 ], [ 0.045319, -0.049438 ], [ 0.043945, -0.049438 ], [ 0.043945, -0.048065 ], [ 0.045319, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.046692 ], [ 0.046692, -0.048065 ], [ 0.045319, -0.048065 ], [ 0.045319, -0.046692 ], [ 0.046692, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.048065 ], [ 0.046692, -0.049438 ], [ 0.045319, -0.049438 ], [ 0.045319, -0.048065 ], [ 0.046692, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.043945 ], [ 0.048065, -0.045319 ], [ 0.046692, -0.045319 ], [ 0.046692, -0.043945 ], [ 0.048065, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.045319 ], [ 0.048065, -0.046692 ], [ 0.046692, -0.046692 ], [ 0.046692, -0.045319 ], [ 0.048065, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.043945 ], [ 0.049438, -0.045319 ], [ 0.048065, -0.045319 ], [ 0.048065, -0.043945 ], [ 0.049438, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.045319 ], [ 0.049438, -0.046692 ], [ 0.048065, -0.046692 ], [ 0.048065, -0.045319 ], [ 0.049438, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.046692 ], [ 0.048065, -0.048065 ], [ 0.046692, -0.048065 ], [ 0.046692, -0.046692 ], [ 0.048065, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.048065 ], [ 0.048065, -0.049438 ], [ 0.046692, -0.049438 ], [ 0.046692, -0.048065 ], [ 0.048065, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.046692 ], [ 0.049438, -0.048065 ], [ 0.048065, -0.048065 ], [ 0.048065, -0.046692 ], [ 0.049438, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.048065 ], [ 0.049438, -0.049438 ], [ 0.048065, -0.049438 ], [ 0.048065, -0.048065 ], [ 0.049438, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.049438 ], [ 0.045319, -0.050812 ], [ 0.043945, -0.050812 ], [ 0.043945, -0.049438 ], [ 0.045319, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.050812 ], [ 0.045319, -0.052185 ], [ 0.043945, -0.052185 ], [ 0.043945, -0.050812 ], [ 0.045319, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.049438 ], [ 0.046692, -0.050812 ], [ 0.045319, -0.050812 ], [ 0.045319, -0.049438 ], [ 0.046692, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.050812 ], [ 0.046692, -0.052185 ], [ 0.045319, -0.052185 ], [ 0.045319, -0.050812 ], [ 0.046692, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.052185 ], [ 0.045319, -0.053558 ], [ 0.043945, -0.053558 ], [ 0.043945, -0.052185 ], [ 0.045319, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.053558 ], [ 0.045319, -0.054932 ], [ 0.043945, -0.054932 ], [ 0.043945, -0.053558 ], [ 0.045319, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.052185 ], [ 0.046692, -0.053558 ], [ 0.045319, -0.053558 ], [ 0.045319, -0.052185 ], [ 0.046692, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.053558 ], [ 0.046692, -0.054932 ], [ 0.045319, -0.054932 ], [ 0.045319, -0.053558 ], [ 0.046692, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.049438 ], [ 0.048065, -0.050812 ], [ 0.046692, -0.050812 ], [ 0.046692, -0.049438 ], [ 0.048065, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.050812 ], [ 0.048065, -0.052185 ], [ 0.046692, -0.052185 ], [ 0.046692, -0.050812 ], [ 0.048065, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.049438 ], [ 0.049438, -0.050812 ], [ 0.048065, -0.050812 ], [ 0.048065, -0.049438 ], [ 0.049438, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.050812 ], [ 0.049438, -0.052185 ], [ 0.048065, -0.052185 ], [ 0.048065, -0.050812 ], [ 0.049438, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.052185 ], [ 0.048065, -0.053558 ], [ 0.046692, -0.053558 ], [ 0.046692, -0.052185 ], [ 0.048065, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.053558 ], [ 0.048065, -0.054932 ], [ 0.046692, -0.054932 ], [ 0.046692, -0.053558 ], [ 0.048065, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.052185 ], [ 0.049438, -0.053558 ], [ 0.048065, -0.053558 ], [ 0.048065, -0.052185 ], [ 0.049438, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.053558 ], [ 0.049438, -0.054932 ], [ 0.048065, -0.054932 ], [ 0.048065, -0.053558 ], [ 0.049438, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.043945 ], [ 0.050812, -0.045319 ], [ 0.049438, -0.045319 ], [ 0.049438, -0.043945 ], [ 0.050812, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.045319 ], [ 0.050812, -0.046692 ], [ 0.049438, -0.046692 ], [ 0.049438, -0.045319 ], [ 0.050812, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.043945 ], [ 0.052185, -0.045319 ], [ 0.050812, -0.045319 ], [ 0.050812, -0.043945 ], [ 0.052185, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.045319 ], [ 0.052185, -0.046692 ], [ 0.050812, -0.046692 ], [ 0.050812, -0.045319 ], [ 0.052185, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.046692 ], [ 0.050812, -0.048065 ], [ 0.049438, -0.048065 ], [ 0.049438, -0.046692 ], [ 0.050812, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.048065 ], [ 0.050812, -0.049438 ], [ 0.049438, -0.049438 ], [ 0.049438, -0.048065 ], [ 0.050812, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.046692 ], [ 0.052185, -0.048065 ], [ 0.050812, -0.048065 ], [ 0.050812, -0.046692 ], [ 0.052185, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.048065 ], [ 0.052185, -0.049438 ], [ 0.050812, -0.049438 ], [ 0.050812, -0.048065 ], [ 0.052185, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.043945 ], [ 0.053558, -0.045319 ], [ 0.052185, -0.045319 ], [ 0.052185, -0.043945 ], [ 0.053558, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.045319 ], [ 0.053558, -0.046692 ], [ 0.052185, -0.046692 ], [ 0.052185, -0.045319 ], [ 0.053558, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.043945 ], [ 0.054932, -0.045319 ], [ 0.053558, -0.045319 ], [ 0.053558, -0.043945 ], [ 0.054932, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.045319 ], [ 0.054932, -0.046692 ], [ 0.053558, -0.046692 ], [ 0.053558, -0.045319 ], [ 0.054932, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.046692 ], [ 0.053558, -0.048065 ], [ 0.052185, -0.048065 ], [ 0.052185, -0.046692 ], [ 0.053558, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.048065 ], [ 0.053558, -0.049438 ], [ 0.052185, -0.049438 ], [ 0.052185, -0.048065 ], [ 0.053558, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.046692 ], [ 0.054932, -0.048065 ], [ 0.053558, -0.048065 ], [ 0.053558, -0.046692 ], [ 0.054932, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.048065 ], [ 0.054932, -0.049438 ], [ 0.053558, -0.049438 ], [ 0.053558, -0.048065 ], [ 0.054932, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.049438 ], [ 0.050812, -0.050812 ], [ 0.049438, -0.050812 ], [ 0.049438, -0.049438 ], [ 0.050812, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.050812 ], [ 0.050812, -0.052185 ], [ 0.049438, -0.052185 ], [ 0.049438, -0.050812 ], [ 0.050812, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.049438 ], [ 0.052185, -0.050812 ], [ 0.050812, -0.050812 ], [ 0.050812, -0.049438 ], [ 0.052185, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.050812 ], [ 0.052185, -0.052185 ], [ 0.050812, -0.052185 ], [ 0.050812, -0.050812 ], [ 0.052185, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.052185 ], [ 0.050812, -0.053558 ], [ 0.049438, -0.053558 ], [ 0.049438, -0.052185 ], [ 0.050812, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.053558 ], [ 0.050812, -0.054932 ], [ 0.049438, -0.054932 ], [ 0.049438, -0.053558 ], [ 0.050812, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.052185 ], [ 0.052185, -0.053558 ], [ 0.050812, -0.053558 ], [ 0.050812, -0.052185 ], [ 0.052185, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.053558 ], [ 0.052185, -0.054932 ], [ 0.050812, -0.054932 ], [ 0.050812, -0.053558 ], [ 0.052185, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.049438 ], [ 0.053558, -0.050812 ], [ 0.052185, -0.050812 ], [ 0.052185, -0.049438 ], [ 0.053558, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.050812 ], [ 0.053558, -0.052185 ], [ 0.052185, -0.052185 ], [ 0.052185, -0.050812 ], [ 0.053558, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.049438 ], [ 0.054932, -0.050812 ], [ 0.053558, -0.050812 ], [ 0.053558, -0.049438 ], [ 0.054932, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.050812 ], [ 0.054932, -0.052185 ], [ 0.053558, -0.052185 ], [ 0.053558, -0.050812 ], [ 0.054932, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.052185 ], [ 0.053558, -0.053558 ], [ 0.052185, -0.053558 ], [ 0.052185, -0.052185 ], [ 0.053558, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.053558 ], [ 0.053558, -0.054932 ], [ 0.052185, -0.054932 ], [ 0.052185, -0.053558 ], [ 0.053558, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.052185 ], [ 0.054932, -0.053558 ], [ 0.053558, -0.053558 ], [ 0.053558, -0.052185 ], [ 0.054932, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.053558 ], [ 0.054932, -0.054932 ], [ 0.053558, -0.054932 ], [ 0.053558, -0.053558 ], [ 0.054932, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.054932 ], [ 0.045319, -0.056305 ], [ 0.043945, -0.056305 ], [ 0.043945, -0.054932 ], [ 0.045319, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.056305 ], [ 0.045319, -0.057678 ], [ 0.043945, -0.057678 ], [ 0.043945, -0.056305 ], [ 0.045319, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.054932 ], [ 0.046692, -0.056305 ], [ 0.045319, -0.056305 ], [ 0.045319, -0.054932 ], [ 0.046692, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.056305 ], [ 0.046692, -0.057678 ], [ 0.045319, -0.057678 ], [ 0.045319, -0.056305 ], [ 0.046692, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.057678 ], [ 0.045319, -0.059052 ], [ 0.043945, -0.059052 ], [ 0.043945, -0.057678 ], [ 0.045319, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.059052 ], [ 0.045319, -0.060425 ], [ 0.043945, -0.060425 ], [ 0.043945, -0.059052 ], [ 0.045319, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.057678 ], [ 0.046692, -0.059052 ], [ 0.045319, -0.059052 ], [ 0.045319, -0.057678 ], [ 0.046692, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.059052 ], [ 0.046692, -0.060425 ], [ 0.045319, -0.060425 ], [ 0.045319, -0.059052 ], [ 0.046692, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.054932 ], [ 0.048065, -0.056305 ], [ 0.046692, -0.056305 ], [ 0.046692, -0.054932 ], [ 0.048065, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.056305 ], [ 0.048065, -0.057678 ], [ 0.046692, -0.057678 ], [ 0.046692, -0.056305 ], [ 0.048065, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.054932 ], [ 0.049438, -0.056305 ], [ 0.048065, -0.056305 ], [ 0.048065, -0.054932 ], [ 0.049438, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.056305 ], [ 0.049438, -0.057678 ], [ 0.048065, -0.057678 ], [ 0.048065, -0.056305 ], [ 0.049438, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.057678 ], [ 0.048065, -0.059052 ], [ 0.046692, -0.059052 ], [ 0.046692, -0.057678 ], [ 0.048065, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.059052 ], [ 0.048065, -0.060425 ], [ 0.046692, -0.060425 ], [ 0.046692, -0.059052 ], [ 0.048065, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.057678 ], [ 0.049438, -0.059052 ], [ 0.048065, -0.059052 ], [ 0.048065, -0.057678 ], [ 0.049438, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.059052 ], [ 0.049438, -0.060425 ], [ 0.048065, -0.060425 ], [ 0.048065, -0.059052 ], [ 0.049438, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.060425 ], [ 0.045319, -0.061798 ], [ 0.043945, -0.061798 ], [ 0.043945, -0.060425 ], [ 0.045319, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.061798 ], [ 0.045319, -0.063171 ], [ 0.043945, -0.063171 ], [ 0.043945, -0.061798 ], [ 0.045319, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.060425 ], [ 0.046692, -0.061798 ], [ 0.045319, -0.061798 ], [ 0.045319, -0.060425 ], [ 0.046692, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.061798 ], [ 0.046692, -0.063171 ], [ 0.045319, -0.063171 ], [ 0.045319, -0.061798 ], [ 0.046692, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.063171 ], [ 0.045319, -0.064545 ], [ 0.043945, -0.064545 ], [ 0.043945, -0.063171 ], [ 0.045319, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.064545 ], [ 0.045319, -0.065918 ], [ 0.043945, -0.065918 ], [ 0.043945, -0.064545 ], [ 0.045319, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.063171 ], [ 0.046692, -0.064545 ], [ 0.045319, -0.064545 ], [ 0.045319, -0.063171 ], [ 0.046692, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.064545 ], [ 0.046692, -0.065918 ], [ 0.045319, -0.065918 ], [ 0.045319, -0.064545 ], [ 0.046692, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.060425 ], [ 0.048065, -0.061798 ], [ 0.046692, -0.061798 ], [ 0.046692, -0.060425 ], [ 0.048065, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.061798 ], [ 0.048065, -0.063171 ], [ 0.046692, -0.063171 ], [ 0.046692, -0.061798 ], [ 0.048065, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.060425 ], [ 0.049438, -0.061798 ], [ 0.048065, -0.061798 ], [ 0.048065, -0.060425 ], [ 0.049438, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.061798 ], [ 0.049438, -0.063171 ], [ 0.048065, -0.063171 ], [ 0.048065, -0.061798 ], [ 0.049438, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.063171 ], [ 0.048065, -0.064545 ], [ 0.046692, -0.064545 ], [ 0.046692, -0.063171 ], [ 0.048065, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.064545 ], [ 0.048065, -0.065918 ], [ 0.046692, -0.065918 ], [ 0.046692, -0.064545 ], [ 0.048065, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.063171 ], [ 0.049438, -0.064545 ], [ 0.048065, -0.064545 ], [ 0.048065, -0.063171 ], [ 0.049438, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.064545 ], [ 0.049438, -0.065918 ], [ 0.048065, -0.065918 ], [ 0.048065, -0.064545 ], [ 0.049438, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.054932 ], [ 0.050812, -0.056305 ], [ 0.049438, -0.056305 ], [ 0.049438, -0.054932 ], [ 0.050812, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.056305 ], [ 0.050812, -0.057678 ], [ 0.049438, -0.057678 ], [ 0.049438, -0.056305 ], [ 0.050812, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.054932 ], [ 0.052185, -0.056305 ], [ 0.050812, -0.056305 ], [ 0.050812, -0.054932 ], [ 0.052185, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.056305 ], [ 0.052185, -0.057678 ], [ 0.050812, -0.057678 ], [ 0.050812, -0.056305 ], [ 0.052185, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.057678 ], [ 0.050812, -0.059052 ], [ 0.049438, -0.059052 ], [ 0.049438, -0.057678 ], [ 0.050812, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.059052 ], [ 0.050812, -0.060425 ], [ 0.049438, -0.060425 ], [ 0.049438, -0.059052 ], [ 0.050812, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.057678 ], [ 0.052185, -0.059052 ], [ 0.050812, -0.059052 ], [ 0.050812, -0.057678 ], [ 0.052185, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.059052 ], [ 0.052185, -0.060425 ], [ 0.050812, -0.060425 ], [ 0.050812, -0.059052 ], [ 0.052185, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.054932 ], [ 0.053558, -0.056305 ], [ 0.052185, -0.056305 ], [ 0.052185, -0.054932 ], [ 0.053558, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.056305 ], [ 0.053558, -0.057678 ], [ 0.052185, -0.057678 ], [ 0.052185, -0.056305 ], [ 0.053558, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.054932 ], [ 0.054932, -0.056305 ], [ 0.053558, -0.056305 ], [ 0.053558, -0.054932 ], [ 0.054932, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.056305 ], [ 0.054932, -0.057678 ], [ 0.053558, -0.057678 ], [ 0.053558, -0.056305 ], [ 0.054932, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.057678 ], [ 0.053558, -0.059052 ], [ 0.052185, -0.059052 ], [ 0.052185, -0.057678 ], [ 0.053558, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.059052 ], [ 0.053558, -0.060425 ], [ 0.052185, -0.060425 ], [ 0.052185, -0.059052 ], [ 0.053558, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.057678 ], [ 0.054932, -0.059052 ], [ 0.053558, -0.059052 ], [ 0.053558, -0.057678 ], [ 0.054932, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.059052 ], [ 0.054932, -0.060425 ], [ 0.053558, -0.060425 ], [ 0.053558, -0.059052 ], [ 0.054932, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.060425 ], [ 0.050812, -0.061798 ], [ 0.049438, -0.061798 ], [ 0.049438, -0.060425 ], [ 0.050812, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.061798 ], [ 0.050812, -0.063171 ], [ 0.049438, -0.063171 ], [ 0.049438, -0.061798 ], [ 0.050812, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.060425 ], [ 0.052185, -0.061798 ], [ 0.050812, -0.061798 ], [ 0.050812, -0.060425 ], [ 0.052185, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.061798 ], [ 0.052185, -0.063171 ], [ 0.050812, -0.063171 ], [ 0.050812, -0.061798 ], [ 0.052185, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.063171 ], [ 0.050812, -0.064545 ], [ 0.049438, -0.064545 ], [ 0.049438, -0.063171 ], [ 0.050812, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.064545 ], [ 0.050812, -0.065918 ], [ 0.049438, -0.065918 ], [ 0.049438, -0.064545 ], [ 0.050812, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.063171 ], [ 0.052185, -0.064545 ], [ 0.050812, -0.064545 ], [ 0.050812, -0.063171 ], [ 0.052185, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.064545 ], [ 0.052185, -0.065918 ], [ 0.050812, -0.065918 ], [ 0.050812, -0.064545 ], [ 0.052185, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.060425 ], [ 0.053558, -0.061798 ], [ 0.052185, -0.061798 ], [ 0.052185, -0.060425 ], [ 0.053558, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.061798 ], [ 0.053558, -0.063171 ], [ 0.052185, -0.063171 ], [ 0.052185, -0.061798 ], [ 0.053558, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.060425 ], [ 0.054932, -0.061798 ], [ 0.053558, -0.061798 ], [ 0.053558, -0.060425 ], [ 0.054932, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.061798 ], [ 0.054932, -0.063171 ], [ 0.053558, -0.063171 ], [ 0.053558, -0.061798 ], [ 0.054932, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.063171 ], [ 0.053558, -0.064545 ], [ 0.052185, -0.064545 ], [ 0.052185, -0.063171 ], [ 0.053558, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.064545 ], [ 0.053558, -0.065918 ], [ 0.052185, -0.065918 ], [ 0.052185, -0.064545 ], [ 0.053558, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.063171 ], [ 0.054932, -0.064545 ], [ 0.053558, -0.064545 ], [ 0.053558, -0.063171 ], [ 0.054932, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.064545 ], [ 0.054932, -0.065918 ], [ 0.053558, -0.065918 ], [ 0.053558, -0.064545 ], [ 0.054932, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.043945 ], [ 0.056305, -0.045319 ], [ 0.054932, -0.045319 ], [ 0.054932, -0.043945 ], [ 0.056305, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.045319 ], [ 0.056305, -0.046692 ], [ 0.054932, -0.046692 ], [ 0.054932, -0.045319 ], [ 0.056305, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.043945 ], [ 0.057678, -0.045319 ], [ 0.056305, -0.045319 ], [ 0.056305, -0.043945 ], [ 0.057678, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.045319 ], [ 0.057678, -0.046692 ], [ 0.056305, -0.046692 ], [ 0.056305, -0.045319 ], [ 0.057678, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.046692 ], [ 0.056305, -0.048065 ], [ 0.054932, -0.048065 ], [ 0.054932, -0.046692 ], [ 0.056305, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.048065 ], [ 0.056305, -0.049438 ], [ 0.054932, -0.049438 ], [ 0.054932, -0.048065 ], [ 0.056305, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.046692 ], [ 0.057678, -0.048065 ], [ 0.056305, -0.048065 ], [ 0.056305, -0.046692 ], [ 0.057678, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.048065 ], [ 0.057678, -0.049438 ], [ 0.056305, -0.049438 ], [ 0.056305, -0.048065 ], [ 0.057678, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.043945 ], [ 0.059052, -0.045319 ], [ 0.057678, -0.045319 ], [ 0.057678, -0.043945 ], [ 0.059052, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.045319 ], [ 0.059052, -0.046692 ], [ 0.057678, -0.046692 ], [ 0.057678, -0.045319 ], [ 0.059052, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.043945 ], [ 0.060425, -0.045319 ], [ 0.059052, -0.045319 ], [ 0.059052, -0.043945 ], [ 0.060425, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.045319 ], [ 0.060425, -0.046692 ], [ 0.059052, -0.046692 ], [ 0.059052, -0.045319 ], [ 0.060425, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.046692 ], [ 0.059052, -0.048065 ], [ 0.057678, -0.048065 ], [ 0.057678, -0.046692 ], [ 0.059052, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.048065 ], [ 0.059052, -0.049438 ], [ 0.057678, -0.049438 ], [ 0.057678, -0.048065 ], [ 0.059052, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.046692 ], [ 0.060425, -0.048065 ], [ 0.059052, -0.048065 ], [ 0.059052, -0.046692 ], [ 0.060425, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.048065 ], [ 0.060425, -0.049438 ], [ 0.059052, -0.049438 ], [ 0.059052, -0.048065 ], [ 0.060425, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.049438 ], [ 0.056305, -0.050812 ], [ 0.054932, -0.050812 ], [ 0.054932, -0.049438 ], [ 0.056305, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.050812 ], [ 0.056305, -0.052185 ], [ 0.054932, -0.052185 ], [ 0.054932, -0.050812 ], [ 0.056305, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.049438 ], [ 0.057678, -0.050812 ], [ 0.056305, -0.050812 ], [ 0.056305, -0.049438 ], [ 0.057678, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.050812 ], [ 0.057678, -0.052185 ], [ 0.056305, -0.052185 ], [ 0.056305, -0.050812 ], [ 0.057678, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.052185 ], [ 0.056305, -0.053558 ], [ 0.054932, -0.053558 ], [ 0.054932, -0.052185 ], [ 0.056305, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.053558 ], [ 0.056305, -0.054932 ], [ 0.054932, -0.054932 ], [ 0.054932, -0.053558 ], [ 0.056305, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.052185 ], [ 0.057678, -0.053558 ], [ 0.056305, -0.053558 ], [ 0.056305, -0.052185 ], [ 0.057678, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.053558 ], [ 0.057678, -0.054932 ], [ 0.056305, -0.054932 ], [ 0.056305, -0.053558 ], [ 0.057678, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.049438 ], [ 0.059052, -0.050812 ], [ 0.057678, -0.050812 ], [ 0.057678, -0.049438 ], [ 0.059052, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.050812 ], [ 0.059052, -0.052185 ], [ 0.057678, -0.052185 ], [ 0.057678, -0.050812 ], [ 0.059052, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.049438 ], [ 0.060425, -0.050812 ], [ 0.059052, -0.050812 ], [ 0.059052, -0.049438 ], [ 0.060425, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.050812 ], [ 0.060425, -0.052185 ], [ 0.059052, -0.052185 ], [ 0.059052, -0.050812 ], [ 0.060425, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.052185 ], [ 0.059052, -0.053558 ], [ 0.057678, -0.053558 ], [ 0.057678, -0.052185 ], [ 0.059052, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.053558 ], [ 0.059052, -0.054932 ], [ 0.057678, -0.054932 ], [ 0.057678, -0.053558 ], [ 0.059052, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.052185 ], [ 0.060425, -0.053558 ], [ 0.059052, -0.053558 ], [ 0.059052, -0.052185 ], [ 0.060425, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.053558 ], [ 0.060425, -0.054932 ], [ 0.059052, -0.054932 ], [ 0.059052, -0.053558 ], [ 0.060425, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.043945 ], [ 0.061798, -0.045319 ], [ 0.060425, -0.045319 ], [ 0.060425, -0.043945 ], [ 0.061798, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.045319 ], [ 0.061798, -0.046692 ], [ 0.060425, -0.046692 ], [ 0.060425, -0.045319 ], [ 0.061798, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.043945 ], [ 0.063171, -0.045319 ], [ 0.061798, -0.045319 ], [ 0.061798, -0.043945 ], [ 0.063171, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.045319 ], [ 0.063171, -0.046692 ], [ 0.061798, -0.046692 ], [ 0.061798, -0.045319 ], [ 0.063171, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.046692 ], [ 0.061798, -0.048065 ], [ 0.060425, -0.048065 ], [ 0.060425, -0.046692 ], [ 0.061798, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.048065 ], [ 0.061798, -0.049438 ], [ 0.060425, -0.049438 ], [ 0.060425, -0.048065 ], [ 0.061798, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.046692 ], [ 0.063171, -0.048065 ], [ 0.061798, -0.048065 ], [ 0.061798, -0.046692 ], [ 0.063171, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.048065 ], [ 0.063171, -0.049438 ], [ 0.061798, -0.049438 ], [ 0.061798, -0.048065 ], [ 0.063171, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.043945 ], [ 0.064545, -0.045319 ], [ 0.063171, -0.045319 ], [ 0.063171, -0.043945 ], [ 0.064545, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.045319 ], [ 0.064545, -0.046692 ], [ 0.063171, -0.046692 ], [ 0.063171, -0.045319 ], [ 0.064545, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.043945 ], [ 0.065918, -0.045319 ], [ 0.064545, -0.045319 ], [ 0.064545, -0.043945 ], [ 0.065918, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.045319 ], [ 0.065918, -0.046692 ], [ 0.064545, -0.046692 ], [ 0.064545, -0.045319 ], [ 0.065918, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.046692 ], [ 0.064545, -0.048065 ], [ 0.063171, -0.048065 ], [ 0.063171, -0.046692 ], [ 0.064545, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.048065 ], [ 0.064545, -0.049438 ], [ 0.063171, -0.049438 ], [ 0.063171, -0.048065 ], [ 0.064545, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.046692 ], [ 0.065918, -0.048065 ], [ 0.064545, -0.048065 ], [ 0.064545, -0.046692 ], [ 0.065918, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.048065 ], [ 0.065918, -0.049438 ], [ 0.064545, -0.049438 ], [ 0.064545, -0.048065 ], [ 0.065918, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.049438 ], [ 0.061798, -0.050812 ], [ 0.060425, -0.050812 ], [ 0.060425, -0.049438 ], [ 0.061798, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.050812 ], [ 0.061798, -0.052185 ], [ 0.060425, -0.052185 ], [ 0.060425, -0.050812 ], [ 0.061798, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.049438 ], [ 0.063171, -0.050812 ], [ 0.061798, -0.050812 ], [ 0.061798, -0.049438 ], [ 0.063171, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.050812 ], [ 0.063171, -0.052185 ], [ 0.061798, -0.052185 ], [ 0.061798, -0.050812 ], [ 0.063171, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.052185 ], [ 0.061798, -0.053558 ], [ 0.060425, -0.053558 ], [ 0.060425, -0.052185 ], [ 0.061798, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.053558 ], [ 0.061798, -0.054932 ], [ 0.060425, -0.054932 ], [ 0.060425, -0.053558 ], [ 0.061798, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.052185 ], [ 0.063171, -0.053558 ], [ 0.061798, -0.053558 ], [ 0.061798, -0.052185 ], [ 0.063171, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.053558 ], [ 0.063171, -0.054932 ], [ 0.061798, -0.054932 ], [ 0.061798, -0.053558 ], [ 0.063171, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.049438 ], [ 0.064545, -0.050812 ], [ 0.063171, -0.050812 ], [ 0.063171, -0.049438 ], [ 0.064545, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.050812 ], [ 0.064545, -0.052185 ], [ 0.063171, -0.052185 ], [ 0.063171, -0.050812 ], [ 0.064545, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.049438 ], [ 0.065918, -0.050812 ], [ 0.064545, -0.050812 ], [ 0.064545, -0.049438 ], [ 0.065918, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.050812 ], [ 0.065918, -0.052185 ], [ 0.064545, -0.052185 ], [ 0.064545, -0.050812 ], [ 0.065918, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.052185 ], [ 0.064545, -0.053558 ], [ 0.063171, -0.053558 ], [ 0.063171, -0.052185 ], [ 0.064545, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.053558 ], [ 0.064545, -0.054932 ], [ 0.063171, -0.054932 ], [ 0.063171, -0.053558 ], [ 0.064545, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.052185 ], [ 0.065918, -0.053558 ], [ 0.064545, -0.053558 ], [ 0.064545, -0.052185 ], [ 0.065918, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.053558 ], [ 0.065918, -0.054932 ], [ 0.064545, -0.054932 ], [ 0.064545, -0.053558 ], [ 0.065918, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.054932 ], [ 0.056305, -0.056305 ], [ 0.054932, -0.056305 ], [ 0.054932, -0.054932 ], [ 0.056305, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.056305 ], [ 0.056305, -0.057678 ], [ 0.054932, -0.057678 ], [ 0.054932, -0.056305 ], [ 0.056305, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.054932 ], [ 0.057678, -0.056305 ], [ 0.056305, -0.056305 ], [ 0.056305, -0.054932 ], [ 0.057678, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.056305 ], [ 0.057678, -0.057678 ], [ 0.056305, -0.057678 ], [ 0.056305, -0.056305 ], [ 0.057678, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.057678 ], [ 0.056305, -0.059052 ], [ 0.054932, -0.059052 ], [ 0.054932, -0.057678 ], [ 0.056305, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.059052 ], [ 0.056305, -0.060425 ], [ 0.054932, -0.060425 ], [ 0.054932, -0.059052 ], [ 0.056305, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.057678 ], [ 0.057678, -0.059052 ], [ 0.056305, -0.059052 ], [ 0.056305, -0.057678 ], [ 0.057678, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.059052 ], [ 0.057678, -0.060425 ], [ 0.056305, -0.060425 ], [ 0.056305, -0.059052 ], [ 0.057678, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.054932 ], [ 0.059052, -0.056305 ], [ 0.057678, -0.056305 ], [ 0.057678, -0.054932 ], [ 0.059052, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.056305 ], [ 0.059052, -0.057678 ], [ 0.057678, -0.057678 ], [ 0.057678, -0.056305 ], [ 0.059052, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.054932 ], [ 0.060425, -0.056305 ], [ 0.059052, -0.056305 ], [ 0.059052, -0.054932 ], [ 0.060425, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.056305 ], [ 0.060425, -0.057678 ], [ 0.059052, -0.057678 ], [ 0.059052, -0.056305 ], [ 0.060425, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.057678 ], [ 0.059052, -0.059052 ], [ 0.057678, -0.059052 ], [ 0.057678, -0.057678 ], [ 0.059052, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.059052 ], [ 0.059052, -0.060425 ], [ 0.057678, -0.060425 ], [ 0.057678, -0.059052 ], [ 0.059052, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.057678 ], [ 0.060425, -0.059052 ], [ 0.059052, -0.059052 ], [ 0.059052, -0.057678 ], [ 0.060425, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.059052 ], [ 0.060425, -0.060425 ], [ 0.059052, -0.060425 ], [ 0.059052, -0.059052 ], [ 0.060425, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.060425 ], [ 0.056305, -0.061798 ], [ 0.054932, -0.061798 ], [ 0.054932, -0.060425 ], [ 0.056305, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.061798 ], [ 0.056305, -0.063171 ], [ 0.054932, -0.063171 ], [ 0.054932, -0.061798 ], [ 0.056305, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.060425 ], [ 0.057678, -0.061798 ], [ 0.056305, -0.061798 ], [ 0.056305, -0.060425 ], [ 0.057678, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.061798 ], [ 0.057678, -0.063171 ], [ 0.056305, -0.063171 ], [ 0.056305, -0.061798 ], [ 0.057678, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.063171 ], [ 0.056305, -0.064545 ], [ 0.054932, -0.064545 ], [ 0.054932, -0.063171 ], [ 0.056305, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.064545 ], [ 0.056305, -0.065918 ], [ 0.054932, -0.065918 ], [ 0.054932, -0.064545 ], [ 0.056305, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.063171 ], [ 0.057678, -0.064545 ], [ 0.056305, -0.064545 ], [ 0.056305, -0.063171 ], [ 0.057678, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.064545 ], [ 0.057678, -0.065918 ], [ 0.056305, -0.065918 ], [ 0.056305, -0.064545 ], [ 0.057678, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.060425 ], [ 0.059052, -0.061798 ], [ 0.057678, -0.061798 ], [ 0.057678, -0.060425 ], [ 0.059052, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.061798 ], [ 0.059052, -0.063171 ], [ 0.057678, -0.063171 ], [ 0.057678, -0.061798 ], [ 0.059052, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.060425 ], [ 0.060425, -0.061798 ], [ 0.059052, -0.061798 ], [ 0.059052, -0.060425 ], [ 0.060425, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.061798 ], [ 0.060425, -0.063171 ], [ 0.059052, -0.063171 ], [ 0.059052, -0.061798 ], [ 0.060425, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.063171 ], [ 0.059052, -0.064545 ], [ 0.057678, -0.064545 ], [ 0.057678, -0.063171 ], [ 0.059052, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.064545 ], [ 0.059052, -0.065918 ], [ 0.057678, -0.065918 ], [ 0.057678, -0.064545 ], [ 0.059052, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.063171 ], [ 0.060425, -0.064545 ], [ 0.059052, -0.064545 ], [ 0.059052, -0.063171 ], [ 0.060425, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.064545 ], [ 0.060425, -0.065918 ], [ 0.059052, -0.065918 ], [ 0.059052, -0.064545 ], [ 0.060425, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.054932 ], [ 0.061798, -0.056305 ], [ 0.060425, -0.056305 ], [ 0.060425, -0.054932 ], [ 0.061798, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.056305 ], [ 0.061798, -0.057678 ], [ 0.060425, -0.057678 ], [ 0.060425, -0.056305 ], [ 0.061798, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.054932 ], [ 0.063171, -0.056305 ], [ 0.061798, -0.056305 ], [ 0.061798, -0.054932 ], [ 0.063171, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.056305 ], [ 0.063171, -0.057678 ], [ 0.061798, -0.057678 ], [ 0.061798, -0.056305 ], [ 0.063171, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.057678 ], [ 0.061798, -0.059052 ], [ 0.060425, -0.059052 ], [ 0.060425, -0.057678 ], [ 0.061798, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.059052 ], [ 0.061798, -0.060425 ], [ 0.060425, -0.060425 ], [ 0.060425, -0.059052 ], [ 0.061798, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.057678 ], [ 0.063171, -0.059052 ], [ 0.061798, -0.059052 ], [ 0.061798, -0.057678 ], [ 0.063171, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.059052 ], [ 0.063171, -0.060425 ], [ 0.061798, -0.060425 ], [ 0.061798, -0.059052 ], [ 0.063171, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.054932 ], [ 0.064545, -0.056305 ], [ 0.063171, -0.056305 ], [ 0.063171, -0.054932 ], [ 0.064545, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.056305 ], [ 0.064545, -0.057678 ], [ 0.063171, -0.057678 ], [ 0.063171, -0.056305 ], [ 0.064545, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.054932 ], [ 0.065918, -0.056305 ], [ 0.064545, -0.056305 ], [ 0.064545, -0.054932 ], [ 0.065918, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.056305 ], [ 0.065918, -0.057678 ], [ 0.064545, -0.057678 ], [ 0.064545, -0.056305 ], [ 0.065918, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.057678 ], [ 0.064545, -0.059052 ], [ 0.063171, -0.059052 ], [ 0.063171, -0.057678 ], [ 0.064545, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.059052 ], [ 0.064545, -0.060425 ], [ 0.063171, -0.060425 ], [ 0.063171, -0.059052 ], [ 0.064545, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.057678 ], [ 0.065918, -0.059052 ], [ 0.064545, -0.059052 ], [ 0.064545, -0.057678 ], [ 0.065918, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.059052 ], [ 0.065918, -0.060425 ], [ 0.064545, -0.060425 ], [ 0.064545, -0.059052 ], [ 0.065918, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.060425 ], [ 0.061798, -0.061798 ], [ 0.060425, -0.061798 ], [ 0.060425, -0.060425 ], [ 0.061798, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.061798 ], [ 0.061798, -0.063171 ], [ 0.060425, -0.063171 ], [ 0.060425, -0.061798 ], [ 0.061798, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.060425 ], [ 0.063171, -0.061798 ], [ 0.061798, -0.061798 ], [ 0.061798, -0.060425 ], [ 0.063171, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.061798 ], [ 0.063171, -0.063171 ], [ 0.061798, -0.063171 ], [ 0.061798, -0.061798 ], [ 0.063171, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.063171 ], [ 0.061798, -0.064545 ], [ 0.060425, -0.064545 ], [ 0.060425, -0.063171 ], [ 0.061798, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.064545 ], [ 0.061798, -0.065918 ], [ 0.060425, -0.065918 ], [ 0.060425, -0.064545 ], [ 0.061798, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.063171 ], [ 0.063171, -0.064545 ], [ 0.061798, -0.064545 ], [ 0.061798, -0.063171 ], [ 0.063171, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.064545 ], [ 0.063171, -0.065918 ], [ 0.061798, -0.065918 ], [ 0.061798, -0.064545 ], [ 0.063171, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.060425 ], [ 0.064545, -0.061798 ], [ 0.063171, -0.061798 ], [ 0.063171, -0.060425 ], [ 0.064545, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.061798 ], [ 0.064545, -0.063171 ], [ 0.063171, -0.063171 ], [ 0.063171, -0.061798 ], [ 0.064545, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.060425 ], [ 0.065918, -0.061798 ], [ 0.064545, -0.061798 ], [ 0.064545, -0.060425 ], [ 0.065918, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.061798 ], [ 0.065918, -0.063171 ], [ 0.064545, -0.063171 ], [ 0.064545, -0.061798 ], [ 0.065918, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.063171 ], [ 0.064545, -0.064545 ], [ 0.063171, -0.064545 ], [ 0.063171, -0.063171 ], [ 0.064545, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.064545 ], [ 0.064545, -0.065918 ], [ 0.063171, -0.065918 ], [ 0.063171, -0.064545 ], [ 0.064545, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.063171 ], [ 0.065918, -0.064545 ], [ 0.064545, -0.064545 ], [ 0.064545, -0.063171 ], [ 0.065918, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.064545 ], [ 0.065918, -0.065918 ], [ 0.064545, -0.065918 ], [ 0.064545, -0.064545 ], [ 0.065918, -0.064545 ] ] ] } } +] } +] } +] } diff --git a/tests/grid-unaligned/in.json b/tests/grid-unaligned/in.json new file mode 100644 index 000000000..5cb8a4c40 --- /dev/null +++ b/tests/grid-unaligned/in.json @@ -0,0 +1,1024 @@ +{"type": "Feature","properties": {"Tile":85,"Long":"0.0000000","Lat":"0.0000000","KPI":395,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0000000],[0.0026300,0.0000000],[0.0026300,0.0018000],[0.0000000,0.0018000],[0.0000000,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0000000","Lat":"0.0018000","KPI":334,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0018000],[0.0026300,0.0018000],[0.0026300,0.0036000],[0.0000000,0.0036000],[0.0000000,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0000000","Lat":"0.0036000","KPI":420,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0036000],[0.0026300,0.0036000],[0.0026300,0.0054000],[0.0000000,0.0054000],[0.0000000,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0000000","Lat":"0.0054000","KPI":648,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0054000],[0.0026300,0.0054000],[0.0026300,0.0072000],[0.0000000,0.0072000],[0.0000000,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0000000","Lat":"0.0072000","KPI":125,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0072000],[0.0026300,0.0072000],[0.0026300,0.0090000],[0.0000000,0.0090000],[0.0000000,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0000000","Lat":"0.0090000","KPI":683,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0090000],[0.0026300,0.0090000],[0.0026300,0.0108000],[0.0000000,0.0108000],[0.0000000,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0000000","Lat":"0.0108000","KPI":463,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0108000],[0.0026300,0.0108000],[0.0026300,0.0126000],[0.0000000,0.0126000],[0.0000000,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0000000","Lat":"0.0126000","KPI":5,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0126000],[0.0026300,0.0126000],[0.0026300,0.0144000],[0.0000000,0.0144000],[0.0000000,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0000000","Lat":"0.0144000","KPI":723,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0144000],[0.0026300,0.0144000],[0.0026300,0.0162000],[0.0000000,0.0162000],[0.0000000,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0000000","Lat":"0.0162000","KPI":258,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0162000],[0.0026300,0.0162000],[0.0026300,0.0180000],[0.0000000,0.0180000],[0.0000000,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0000000","Lat":"0.0180000","KPI":224,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0180000],[0.0026300,0.0180000],[0.0026300,0.0198000],[0.0000000,0.0198000],[0.0000000,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0000000","Lat":"0.0198000","KPI":565,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0198000],[0.0026300,0.0198000],[0.0026300,0.0216000],[0.0000000,0.0216000],[0.0000000,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0000000","Lat":"0.0216000","KPI":684,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0216000],[0.0026300,0.0216000],[0.0026300,0.0234000],[0.0000000,0.0234000],[0.0000000,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0000000","Lat":"0.0234000","KPI":165,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0234000],[0.0026300,0.0234000],[0.0026300,0.0252000],[0.0000000,0.0252000],[0.0000000,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0000000","Lat":"0.0252000","KPI":193,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0252000],[0.0026300,0.0252000],[0.0026300,0.0270000],[0.0000000,0.0270000],[0.0000000,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0000000","Lat":"0.0270000","KPI":323,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0270000],[0.0026300,0.0270000],[0.0026300,0.0288000],[0.0000000,0.0288000],[0.0000000,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0000000","Lat":"0.0288000","KPI":461,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0288000],[0.0026300,0.0288000],[0.0026300,0.0306000],[0.0000000,0.0306000],[0.0000000,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0000000","Lat":"0.0306000","KPI":422,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0306000],[0.0026300,0.0306000],[0.0026300,0.0324000],[0.0000000,0.0324000],[0.0000000,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0000000","Lat":"0.0324000","KPI":229,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0324000],[0.0026300,0.0324000],[0.0026300,0.0342000],[0.0000000,0.0342000],[0.0000000,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0000000","Lat":"0.0342000","KPI":13,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0342000],[0.0026300,0.0342000],[0.0026300,0.0360000],[0.0000000,0.0360000],[0.0000000,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0000000","Lat":"0.0360000","KPI":525,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0360000],[0.0026300,0.0360000],[0.0026300,0.0378000],[0.0000000,0.0378000],[0.0000000,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0000000","Lat":"0.0378000","KPI":526,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0378000],[0.0026300,0.0378000],[0.0026300,0.0396000],[0.0000000,0.0396000],[0.0000000,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0000000","Lat":"0.0396000","KPI":735,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0396000],[0.0026300,0.0396000],[0.0026300,0.0414000],[0.0000000,0.0414000],[0.0000000,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0000000","Lat":"0.0414000","KPI":278,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0414000],[0.0026300,0.0414000],[0.0026300,0.0432000],[0.0000000,0.0432000],[0.0000000,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0000000","Lat":"0.0432000","KPI":317,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0432000],[0.0026300,0.0432000],[0.0026300,0.0450000],[0.0000000,0.0450000],[0.0000000,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0000000","Lat":"0.0450000","KPI":408,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0450000],[0.0026300,0.0450000],[0.0026300,0.0468000],[0.0000000,0.0468000],[0.0000000,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0000000","Lat":"0.0468000","KPI":333,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0468000],[0.0026300,0.0468000],[0.0026300,0.0486000],[0.0000000,0.0486000],[0.0000000,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0000000","Lat":"0.0486000","KPI":368,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0486000],[0.0026300,0.0486000],[0.0026300,0.0504000],[0.0000000,0.0504000],[0.0000000,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0000000","Lat":"0.0504000","KPI":890,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0504000],[0.0026300,0.0504000],[0.0026300,0.0522000],[0.0000000,0.0522000],[0.0000000,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0000000","Lat":"0.0522000","KPI":634,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0522000],[0.0026300,0.0522000],[0.0026300,0.0540000],[0.0000000,0.0540000],[0.0000000,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0000000","Lat":"0.0540000","KPI":998,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0540000],[0.0026300,0.0540000],[0.0026300,0.0558000],[0.0000000,0.0558000],[0.0000000,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0000000","Lat":"0.0558000","KPI":384,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0558000],[0.0026300,0.0558000],[0.0026300,0.0576000],[0.0000000,0.0576000],[0.0000000,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0026300","Lat":"0.0000000","KPI":325,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0000000],[0.0052600,0.0000000],[0.0052600,0.0018000],[0.0026300,0.0018000],[0.0026300,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0026300","Lat":"0.0018000","KPI":994,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0018000],[0.0052600,0.0018000],[0.0052600,0.0036000],[0.0026300,0.0036000],[0.0026300,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0026300","Lat":"0.0036000","KPI":827,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0036000],[0.0052600,0.0036000],[0.0052600,0.0054000],[0.0026300,0.0054000],[0.0026300,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0026300","Lat":"0.0054000","KPI":309,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0054000],[0.0052600,0.0054000],[0.0052600,0.0072000],[0.0026300,0.0072000],[0.0026300,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0026300","Lat":"0.0072000","KPI":226,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0072000],[0.0052600,0.0072000],[0.0052600,0.0090000],[0.0026300,0.0090000],[0.0026300,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0026300","Lat":"0.0090000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0090000],[0.0052600,0.0090000],[0.0052600,0.0108000],[0.0026300,0.0108000],[0.0026300,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0026300","Lat":"0.0108000","KPI":906,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0108000],[0.0052600,0.0108000],[0.0052600,0.0126000],[0.0026300,0.0126000],[0.0026300,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0026300","Lat":"0.0126000","KPI":339,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0126000],[0.0052600,0.0126000],[0.0052600,0.0144000],[0.0026300,0.0144000],[0.0026300,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0026300","Lat":"0.0144000","KPI":861,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0144000],[0.0052600,0.0144000],[0.0052600,0.0162000],[0.0026300,0.0162000],[0.0026300,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0026300","Lat":"0.0162000","KPI":924,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0162000],[0.0052600,0.0162000],[0.0052600,0.0180000],[0.0026300,0.0180000],[0.0026300,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0026300","Lat":"0.0180000","KPI":936,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0180000],[0.0052600,0.0180000],[0.0052600,0.0198000],[0.0026300,0.0198000],[0.0026300,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0026300","Lat":"0.0198000","KPI":260,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0198000],[0.0052600,0.0198000],[0.0052600,0.0216000],[0.0026300,0.0216000],[0.0026300,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0026300","Lat":"0.0216000","KPI":779,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0216000],[0.0052600,0.0216000],[0.0052600,0.0234000],[0.0026300,0.0234000],[0.0026300,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0026300","Lat":"0.0234000","KPI":221,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0234000],[0.0052600,0.0234000],[0.0052600,0.0252000],[0.0026300,0.0252000],[0.0026300,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0026300","Lat":"0.0252000","KPI":589,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0252000],[0.0052600,0.0252000],[0.0052600,0.0270000],[0.0026300,0.0270000],[0.0026300,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0026300","Lat":"0.0270000","KPI":888,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0270000],[0.0052600,0.0270000],[0.0052600,0.0288000],[0.0026300,0.0288000],[0.0026300,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0026300","Lat":"0.0288000","KPI":945,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0288000],[0.0052600,0.0288000],[0.0052600,0.0306000],[0.0026300,0.0306000],[0.0026300,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0026300","Lat":"0.0306000","KPI":537,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0306000],[0.0052600,0.0306000],[0.0052600,0.0324000],[0.0026300,0.0324000],[0.0026300,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0026300","Lat":"0.0324000","KPI":769,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0324000],[0.0052600,0.0324000],[0.0052600,0.0342000],[0.0026300,0.0342000],[0.0026300,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0026300","Lat":"0.0342000","KPI":803,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0342000],[0.0052600,0.0342000],[0.0052600,0.0360000],[0.0026300,0.0360000],[0.0026300,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0026300","Lat":"0.0360000","KPI":732,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0360000],[0.0052600,0.0360000],[0.0052600,0.0378000],[0.0026300,0.0378000],[0.0026300,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0026300","Lat":"0.0378000","KPI":611,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0378000],[0.0052600,0.0378000],[0.0052600,0.0396000],[0.0026300,0.0396000],[0.0026300,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0026300","Lat":"0.0396000","KPI":220,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0396000],[0.0052600,0.0396000],[0.0052600,0.0414000],[0.0026300,0.0414000],[0.0026300,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0026300","Lat":"0.0414000","KPI":912,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0414000],[0.0052600,0.0414000],[0.0052600,0.0432000],[0.0026300,0.0432000],[0.0026300,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0026300","Lat":"0.0432000","KPI":326,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0432000],[0.0052600,0.0432000],[0.0052600,0.0450000],[0.0026300,0.0450000],[0.0026300,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0026300","Lat":"0.0450000","KPI":733,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0450000],[0.0052600,0.0450000],[0.0052600,0.0468000],[0.0026300,0.0468000],[0.0026300,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0026300","Lat":"0.0468000","KPI":182,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0468000],[0.0052600,0.0468000],[0.0052600,0.0486000],[0.0026300,0.0486000],[0.0026300,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0026300","Lat":"0.0486000","KPI":563,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0486000],[0.0052600,0.0486000],[0.0052600,0.0504000],[0.0026300,0.0504000],[0.0026300,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0026300","Lat":"0.0504000","KPI":364,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0504000],[0.0052600,0.0504000],[0.0052600,0.0522000],[0.0026300,0.0522000],[0.0026300,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0026300","Lat":"0.0522000","KPI":634,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0522000],[0.0052600,0.0522000],[0.0052600,0.0540000],[0.0026300,0.0540000],[0.0026300,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0026300","Lat":"0.0540000","KPI":23,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0540000],[0.0052600,0.0540000],[0.0052600,0.0558000],[0.0026300,0.0558000],[0.0026300,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0026300","Lat":"0.0558000","KPI":236,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0558000],[0.0052600,0.0558000],[0.0052600,0.0576000],[0.0026300,0.0576000],[0.0026300,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0052500","Lat":"0.0000000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0000000],[0.0078800,0.0000000],[0.0078800,0.0018000],[0.0052500,0.0018000],[0.0052500,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0052500","Lat":"0.0018000","KPI":792,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0018000],[0.0078800,0.0018000],[0.0078800,0.0036000],[0.0052500,0.0036000],[0.0052500,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0052500","Lat":"0.0036000","KPI":50,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0036000],[0.0078800,0.0036000],[0.0078800,0.0054000],[0.0052500,0.0054000],[0.0052500,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0052500","Lat":"0.0054000","KPI":63,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0054000],[0.0078800,0.0054000],[0.0078800,0.0072000],[0.0052500,0.0072000],[0.0052500,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0052500","Lat":"0.0072000","KPI":759,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0072000],[0.0078800,0.0072000],[0.0078800,0.0090000],[0.0052500,0.0090000],[0.0052500,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0052500","Lat":"0.0090000","KPI":529,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0090000],[0.0078800,0.0090000],[0.0078800,0.0108000],[0.0052500,0.0108000],[0.0052500,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0052500","Lat":"0.0108000","KPI":936,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0108000],[0.0078800,0.0108000],[0.0078800,0.0126000],[0.0052500,0.0126000],[0.0052500,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0052500","Lat":"0.0126000","KPI":660,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0126000],[0.0078800,0.0126000],[0.0078800,0.0144000],[0.0052500,0.0144000],[0.0052500,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0052500","Lat":"0.0144000","KPI":661,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0144000],[0.0078800,0.0144000],[0.0078800,0.0162000],[0.0052500,0.0162000],[0.0052500,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0052500","Lat":"0.0162000","KPI":539,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0162000],[0.0078800,0.0162000],[0.0078800,0.0180000],[0.0052500,0.0180000],[0.0052500,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0052500","Lat":"0.0180000","KPI":448,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0180000],[0.0078800,0.0180000],[0.0078800,0.0198000],[0.0052500,0.0198000],[0.0052500,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0052500","Lat":"0.0198000","KPI":60,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0198000],[0.0078800,0.0198000],[0.0078800,0.0216000],[0.0052500,0.0216000],[0.0052500,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0052500","Lat":"0.0216000","KPI":541,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0216000],[0.0078800,0.0216000],[0.0078800,0.0234000],[0.0052500,0.0234000],[0.0052500,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0052500","Lat":"0.0234000","KPI":704,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0234000],[0.0078800,0.0234000],[0.0078800,0.0252000],[0.0052500,0.0252000],[0.0052500,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0052500","Lat":"0.0252000","KPI":434,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0252000],[0.0078800,0.0252000],[0.0078800,0.0270000],[0.0052500,0.0270000],[0.0052500,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0052500","Lat":"0.0270000","KPI":714,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0270000],[0.0078800,0.0270000],[0.0078800,0.0288000],[0.0052500,0.0288000],[0.0052500,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0052500","Lat":"0.0288000","KPI":544,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0288000],[0.0078800,0.0288000],[0.0078800,0.0306000],[0.0052500,0.0306000],[0.0052500,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0052500","Lat":"0.0306000","KPI":359,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0306000],[0.0078800,0.0306000],[0.0078800,0.0324000],[0.0052500,0.0324000],[0.0052500,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0052500","Lat":"0.0324000","KPI":240,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0324000],[0.0078800,0.0324000],[0.0078800,0.0342000],[0.0052500,0.0342000],[0.0052500,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0052500","Lat":"0.0342000","KPI":845,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0342000],[0.0078800,0.0342000],[0.0078800,0.0360000],[0.0052500,0.0360000],[0.0052500,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0052500","Lat":"0.0360000","KPI":145,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0360000],[0.0078800,0.0360000],[0.0078800,0.0378000],[0.0052500,0.0378000],[0.0052500,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0052500","Lat":"0.0378000","KPI":354,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0378000],[0.0078800,0.0378000],[0.0078800,0.0396000],[0.0052500,0.0396000],[0.0052500,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0052500","Lat":"0.0396000","KPI":15,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0396000],[0.0078800,0.0396000],[0.0078800,0.0414000],[0.0052500,0.0414000],[0.0052500,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0052500","Lat":"0.0414000","KPI":635,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0414000],[0.0078800,0.0414000],[0.0078800,0.0432000],[0.0052500,0.0432000],[0.0052500,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0052500","Lat":"0.0432000","KPI":259,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0432000],[0.0078800,0.0432000],[0.0078800,0.0450000],[0.0052500,0.0450000],[0.0052500,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0052500","Lat":"0.0450000","KPI":558,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0450000],[0.0078800,0.0450000],[0.0078800,0.0468000],[0.0052500,0.0468000],[0.0052500,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0052500","Lat":"0.0468000","KPI":585,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0468000],[0.0078800,0.0468000],[0.0078800,0.0486000],[0.0052500,0.0486000],[0.0052500,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0052500","Lat":"0.0486000","KPI":19,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0486000],[0.0078800,0.0486000],[0.0078800,0.0504000],[0.0052500,0.0504000],[0.0052500,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0052500","Lat":"0.0504000","KPI":124,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0504000],[0.0078800,0.0504000],[0.0078800,0.0522000],[0.0052500,0.0522000],[0.0052500,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0052500","Lat":"0.0522000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0522000],[0.0078800,0.0522000],[0.0078800,0.0540000],[0.0052500,0.0540000],[0.0052500,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0052500","Lat":"0.0540000","KPI":844,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0540000],[0.0078800,0.0540000],[0.0078800,0.0558000],[0.0052500,0.0558000],[0.0052500,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0052500","Lat":"0.0558000","KPI":68,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0558000],[0.0078800,0.0558000],[0.0078800,0.0576000],[0.0052500,0.0576000],[0.0052500,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0078800","Lat":"0.0000000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0000000],[0.0105100,0.0000000],[0.0105100,0.0018000],[0.0078800,0.0018000],[0.0078800,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0078800","Lat":"0.0018000","KPI":566,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0018000],[0.0105100,0.0018000],[0.0105100,0.0036000],[0.0078800,0.0036000],[0.0078800,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0078800","Lat":"0.0036000","KPI":849,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0036000],[0.0105100,0.0036000],[0.0105100,0.0054000],[0.0078800,0.0054000],[0.0078800,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0078800","Lat":"0.0054000","KPI":242,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0054000],[0.0105100,0.0054000],[0.0105100,0.0072000],[0.0078800,0.0072000],[0.0078800,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0078800","Lat":"0.0072000","KPI":998,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0072000],[0.0105100,0.0072000],[0.0105100,0.0090000],[0.0078800,0.0090000],[0.0078800,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0078800","Lat":"0.0090000","KPI":239,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0090000],[0.0105100,0.0090000],[0.0105100,0.0108000],[0.0078800,0.0108000],[0.0078800,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0078800","Lat":"0.0108000","KPI":60,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0108000],[0.0105100,0.0108000],[0.0105100,0.0126000],[0.0078800,0.0126000],[0.0078800,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0078800","Lat":"0.0126000","KPI":986,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0126000],[0.0105100,0.0126000],[0.0105100,0.0144000],[0.0078800,0.0144000],[0.0078800,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0078800","Lat":"0.0144000","KPI":685,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0144000],[0.0105100,0.0144000],[0.0105100,0.0162000],[0.0078800,0.0162000],[0.0078800,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0078800","Lat":"0.0162000","KPI":503,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0162000],[0.0105100,0.0162000],[0.0105100,0.0180000],[0.0078800,0.0180000],[0.0078800,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0078800","Lat":"0.0180000","KPI":424,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0180000],[0.0105100,0.0180000],[0.0105100,0.0198000],[0.0078800,0.0198000],[0.0078800,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0078800","Lat":"0.0198000","KPI":453,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0198000],[0.0105100,0.0198000],[0.0105100,0.0216000],[0.0078800,0.0216000],[0.0078800,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0078800","Lat":"0.0216000","KPI":124,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0216000],[0.0105100,0.0216000],[0.0105100,0.0234000],[0.0078800,0.0234000],[0.0078800,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0078800","Lat":"0.0234000","KPI":803,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0234000],[0.0105100,0.0234000],[0.0105100,0.0252000],[0.0078800,0.0252000],[0.0078800,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0078800","Lat":"0.0252000","KPI":234,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0252000],[0.0105100,0.0252000],[0.0105100,0.0270000],[0.0078800,0.0270000],[0.0078800,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0078800","Lat":"0.0270000","KPI":335,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0270000],[0.0105100,0.0270000],[0.0105100,0.0288000],[0.0078800,0.0288000],[0.0078800,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0078800","Lat":"0.0288000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0288000],[0.0105100,0.0288000],[0.0105100,0.0306000],[0.0078800,0.0306000],[0.0078800,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0078800","Lat":"0.0306000","KPI":573,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0306000],[0.0105100,0.0306000],[0.0105100,0.0324000],[0.0078800,0.0324000],[0.0078800,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0078800","Lat":"0.0324000","KPI":963,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0324000],[0.0105100,0.0324000],[0.0105100,0.0342000],[0.0078800,0.0342000],[0.0078800,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0078800","Lat":"0.0342000","KPI":68,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0342000],[0.0105100,0.0342000],[0.0105100,0.0360000],[0.0078800,0.0360000],[0.0078800,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0078800","Lat":"0.0360000","KPI":114,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0360000],[0.0105100,0.0360000],[0.0105100,0.0378000],[0.0078800,0.0378000],[0.0078800,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0078800","Lat":"0.0378000","KPI":429,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0378000],[0.0105100,0.0378000],[0.0105100,0.0396000],[0.0078800,0.0396000],[0.0078800,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0078800","Lat":"0.0396000","KPI":503,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0396000],[0.0105100,0.0396000],[0.0105100,0.0414000],[0.0078800,0.0414000],[0.0078800,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0078800","Lat":"0.0414000","KPI":907,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0414000],[0.0105100,0.0414000],[0.0105100,0.0432000],[0.0078800,0.0432000],[0.0078800,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0078800","Lat":"0.0432000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0432000],[0.0105100,0.0432000],[0.0105100,0.0450000],[0.0078800,0.0450000],[0.0078800,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0078800","Lat":"0.0450000","KPI":822,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0450000],[0.0105100,0.0450000],[0.0105100,0.0468000],[0.0078800,0.0468000],[0.0078800,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0078800","Lat":"0.0468000","KPI":522,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0468000],[0.0105100,0.0468000],[0.0105100,0.0486000],[0.0078800,0.0486000],[0.0078800,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0078800","Lat":"0.0486000","KPI":640,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0486000],[0.0105100,0.0486000],[0.0105100,0.0504000],[0.0078800,0.0504000],[0.0078800,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0078800","Lat":"0.0504000","KPI":283,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0504000],[0.0105100,0.0504000],[0.0105100,0.0522000],[0.0078800,0.0522000],[0.0078800,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0078800","Lat":"0.0522000","KPI":48,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0522000],[0.0105100,0.0522000],[0.0105100,0.0540000],[0.0078800,0.0540000],[0.0078800,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0078800","Lat":"0.0540000","KPI":849,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0540000],[0.0105100,0.0540000],[0.0105100,0.0558000],[0.0078800,0.0558000],[0.0078800,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0078800","Lat":"0.0558000","KPI":923,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0558000],[0.0105100,0.0558000],[0.0105100,0.0576000],[0.0078800,0.0576000],[0.0078800,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0105100","Lat":"0.0000000","KPI":138,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0000000],[0.0131400,0.0000000],[0.0131400,0.0018000],[0.0105100,0.0018000],[0.0105100,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0105100","Lat":"0.0018000","KPI":734,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0018000],[0.0131400,0.0018000],[0.0131400,0.0036000],[0.0105100,0.0036000],[0.0105100,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0105100","Lat":"0.0036000","KPI":112,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0036000],[0.0131400,0.0036000],[0.0131400,0.0054000],[0.0105100,0.0054000],[0.0105100,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0105100","Lat":"0.0054000","KPI":506,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0054000],[0.0131400,0.0054000],[0.0131400,0.0072000],[0.0105100,0.0072000],[0.0105100,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0105100","Lat":"0.0072000","KPI":628,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0072000],[0.0131400,0.0072000],[0.0131400,0.0090000],[0.0105100,0.0090000],[0.0105100,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0105100","Lat":"0.0090000","KPI":177,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0090000],[0.0131400,0.0090000],[0.0131400,0.0108000],[0.0105100,0.0108000],[0.0105100,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0105100","Lat":"0.0108000","KPI":46,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0108000],[0.0131400,0.0108000],[0.0131400,0.0126000],[0.0105100,0.0126000],[0.0105100,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0105100","Lat":"0.0126000","KPI":850,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0126000],[0.0131400,0.0126000],[0.0131400,0.0144000],[0.0105100,0.0144000],[0.0105100,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0105100","Lat":"0.0144000","KPI":166,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0144000],[0.0131400,0.0144000],[0.0131400,0.0162000],[0.0105100,0.0162000],[0.0105100,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0105100","Lat":"0.0162000","KPI":178,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0162000],[0.0131400,0.0162000],[0.0131400,0.0180000],[0.0105100,0.0180000],[0.0105100,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0105100","Lat":"0.0180000","KPI":166,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0180000],[0.0131400,0.0180000],[0.0131400,0.0198000],[0.0105100,0.0198000],[0.0105100,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0105100","Lat":"0.0198000","KPI":889,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0198000],[0.0131400,0.0198000],[0.0131400,0.0216000],[0.0105100,0.0216000],[0.0105100,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0105100","Lat":"0.0216000","KPI":854,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0216000],[0.0131400,0.0216000],[0.0131400,0.0234000],[0.0105100,0.0234000],[0.0105100,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0105100","Lat":"0.0234000","KPI":230,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0234000],[0.0131400,0.0234000],[0.0131400,0.0252000],[0.0105100,0.0252000],[0.0105100,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0105100","Lat":"0.0252000","KPI":766,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0252000],[0.0131400,0.0252000],[0.0131400,0.0270000],[0.0105100,0.0270000],[0.0105100,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0105100","Lat":"0.0270000","KPI":937,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0270000],[0.0131400,0.0270000],[0.0131400,0.0288000],[0.0105100,0.0288000],[0.0105100,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0105100","Lat":"0.0288000","KPI":306,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0288000],[0.0131400,0.0288000],[0.0131400,0.0306000],[0.0105100,0.0306000],[0.0105100,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0105100","Lat":"0.0306000","KPI":206,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0306000],[0.0131400,0.0306000],[0.0131400,0.0324000],[0.0105100,0.0324000],[0.0105100,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0105100","Lat":"0.0324000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0324000],[0.0131400,0.0324000],[0.0131400,0.0342000],[0.0105100,0.0342000],[0.0105100,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0105100","Lat":"0.0342000","KPI":994,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0342000],[0.0131400,0.0342000],[0.0131400,0.0360000],[0.0105100,0.0360000],[0.0105100,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0105100","Lat":"0.0360000","KPI":921,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0360000],[0.0131400,0.0360000],[0.0131400,0.0378000],[0.0105100,0.0378000],[0.0105100,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0105100","Lat":"0.0378000","KPI":921,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0378000],[0.0131400,0.0378000],[0.0131400,0.0396000],[0.0105100,0.0396000],[0.0105100,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0105100","Lat":"0.0396000","KPI":344,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0396000],[0.0131400,0.0396000],[0.0131400,0.0414000],[0.0105100,0.0414000],[0.0105100,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0105100","Lat":"0.0414000","KPI":971,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0414000],[0.0131400,0.0414000],[0.0131400,0.0432000],[0.0105100,0.0432000],[0.0105100,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0105100","Lat":"0.0432000","KPI":158,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0432000],[0.0131400,0.0432000],[0.0131400,0.0450000],[0.0105100,0.0450000],[0.0105100,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0105100","Lat":"0.0450000","KPI":189,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0450000],[0.0131400,0.0450000],[0.0131400,0.0468000],[0.0105100,0.0468000],[0.0105100,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0105100","Lat":"0.0468000","KPI":624,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0468000],[0.0131400,0.0468000],[0.0131400,0.0486000],[0.0105100,0.0486000],[0.0105100,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0105100","Lat":"0.0486000","KPI":556,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0486000],[0.0131400,0.0486000],[0.0131400,0.0504000],[0.0105100,0.0504000],[0.0105100,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0105100","Lat":"0.0504000","KPI":637,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0504000],[0.0131400,0.0504000],[0.0131400,0.0522000],[0.0105100,0.0522000],[0.0105100,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0105100","Lat":"0.0522000","KPI":270,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0522000],[0.0131400,0.0522000],[0.0131400,0.0540000],[0.0105100,0.0540000],[0.0105100,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0105100","Lat":"0.0540000","KPI":706,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0540000],[0.0131400,0.0540000],[0.0131400,0.0558000],[0.0105100,0.0558000],[0.0105100,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0105100","Lat":"0.0558000","KPI":760,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0558000],[0.0131400,0.0558000],[0.0131400,0.0576000],[0.0105100,0.0576000],[0.0105100,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0131400","Lat":"0.0000000","KPI":134,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0000000],[0.0157700,0.0000000],[0.0157700,0.0018000],[0.0131400,0.0018000],[0.0131400,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0131400","Lat":"0.0018000","KPI":813,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0018000],[0.0157700,0.0018000],[0.0157700,0.0036000],[0.0131400,0.0036000],[0.0131400,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0131400","Lat":"0.0036000","KPI":892,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0036000],[0.0157700,0.0036000],[0.0157700,0.0054000],[0.0131400,0.0054000],[0.0131400,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0131400","Lat":"0.0054000","KPI":372,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0054000],[0.0157700,0.0054000],[0.0157700,0.0072000],[0.0131400,0.0072000],[0.0131400,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0131400","Lat":"0.0072000","KPI":780,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0072000],[0.0157700,0.0072000],[0.0157700,0.0090000],[0.0131400,0.0090000],[0.0131400,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0131400","Lat":"0.0090000","KPI":704,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0090000],[0.0157700,0.0090000],[0.0157700,0.0108000],[0.0131400,0.0108000],[0.0131400,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0131400","Lat":"0.0108000","KPI":951,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0108000],[0.0157700,0.0108000],[0.0157700,0.0126000],[0.0131400,0.0126000],[0.0131400,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0131400","Lat":"0.0126000","KPI":837,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0126000],[0.0157700,0.0126000],[0.0157700,0.0144000],[0.0131400,0.0144000],[0.0131400,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0131400","Lat":"0.0144000","KPI":36,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0144000],[0.0157700,0.0144000],[0.0157700,0.0162000],[0.0131400,0.0162000],[0.0131400,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0131400","Lat":"0.0162000","KPI":412,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0162000],[0.0157700,0.0162000],[0.0157700,0.0180000],[0.0131400,0.0180000],[0.0131400,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0131400","Lat":"0.0180000","KPI":646,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0180000],[0.0157700,0.0180000],[0.0157700,0.0198000],[0.0131400,0.0198000],[0.0131400,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0131400","Lat":"0.0198000","KPI":309,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0198000],[0.0157700,0.0198000],[0.0157700,0.0216000],[0.0131400,0.0216000],[0.0131400,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0131400","Lat":"0.0216000","KPI":258,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0216000],[0.0157700,0.0216000],[0.0157700,0.0234000],[0.0131400,0.0234000],[0.0131400,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0131400","Lat":"0.0234000","KPI":752,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0234000],[0.0157700,0.0234000],[0.0157700,0.0252000],[0.0131400,0.0252000],[0.0131400,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0131400","Lat":"0.0252000","KPI":101,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0252000],[0.0157700,0.0252000],[0.0157700,0.0270000],[0.0131400,0.0270000],[0.0131400,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0131400","Lat":"0.0270000","KPI":885,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0270000],[0.0157700,0.0270000],[0.0157700,0.0288000],[0.0131400,0.0288000],[0.0131400,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0131400","Lat":"0.0288000","KPI":919,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0288000],[0.0157700,0.0288000],[0.0157700,0.0306000],[0.0131400,0.0306000],[0.0131400,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0131400","Lat":"0.0306000","KPI":155,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0306000],[0.0157700,0.0306000],[0.0157700,0.0324000],[0.0131400,0.0324000],[0.0131400,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0131400","Lat":"0.0324000","KPI":208,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0324000],[0.0157700,0.0324000],[0.0157700,0.0342000],[0.0131400,0.0342000],[0.0131400,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0131400","Lat":"0.0342000","KPI":270,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0342000],[0.0157700,0.0342000],[0.0157700,0.0360000],[0.0131400,0.0360000],[0.0131400,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0131400","Lat":"0.0360000","KPI":804,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0360000],[0.0157700,0.0360000],[0.0157700,0.0378000],[0.0131400,0.0378000],[0.0131400,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0131400","Lat":"0.0378000","KPI":849,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0378000],[0.0157700,0.0378000],[0.0157700,0.0396000],[0.0131400,0.0396000],[0.0131400,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0131400","Lat":"0.0396000","KPI":503,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0396000],[0.0157700,0.0396000],[0.0157700,0.0414000],[0.0131400,0.0414000],[0.0131400,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0131400","Lat":"0.0414000","KPI":383,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0414000],[0.0157700,0.0414000],[0.0157700,0.0432000],[0.0131400,0.0432000],[0.0131400,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0131400","Lat":"0.0432000","KPI":742,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0432000],[0.0157700,0.0432000],[0.0157700,0.0450000],[0.0131400,0.0450000],[0.0131400,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0131400","Lat":"0.0450000","KPI":577,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0450000],[0.0157700,0.0450000],[0.0157700,0.0468000],[0.0131400,0.0468000],[0.0131400,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0131400","Lat":"0.0468000","KPI":212,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0468000],[0.0157700,0.0468000],[0.0157700,0.0486000],[0.0131400,0.0486000],[0.0131400,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0131400","Lat":"0.0486000","KPI":649,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0486000],[0.0157700,0.0486000],[0.0157700,0.0504000],[0.0131400,0.0504000],[0.0131400,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0131400","Lat":"0.0504000","KPI":703,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0504000],[0.0157700,0.0504000],[0.0157700,0.0522000],[0.0131400,0.0522000],[0.0131400,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0131400","Lat":"0.0522000","KPI":721,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0522000],[0.0157700,0.0522000],[0.0157700,0.0540000],[0.0131400,0.0540000],[0.0131400,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0131400","Lat":"0.0540000","KPI":401,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0540000],[0.0157700,0.0540000],[0.0157700,0.0558000],[0.0131400,0.0558000],[0.0131400,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0131400","Lat":"0.0558000","KPI":987,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0558000],[0.0157700,0.0558000],[0.0157700,0.0576000],[0.0131400,0.0576000],[0.0131400,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0157600","Lat":"0.0000000","KPI":303,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0000000],[0.0183900,0.0000000],[0.0183900,0.0018000],[0.0157600,0.0018000],[0.0157600,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0157600","Lat":"0.0018000","KPI":964,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0018000],[0.0183900,0.0018000],[0.0183900,0.0036000],[0.0157600,0.0036000],[0.0157600,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0157600","Lat":"0.0036000","KPI":433,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0036000],[0.0183900,0.0036000],[0.0183900,0.0054000],[0.0157600,0.0054000],[0.0157600,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0157600","Lat":"0.0054000","KPI":749,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0054000],[0.0183900,0.0054000],[0.0183900,0.0072000],[0.0157600,0.0072000],[0.0157600,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0157600","Lat":"0.0072000","KPI":60,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0072000],[0.0183900,0.0072000],[0.0183900,0.0090000],[0.0157600,0.0090000],[0.0157600,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0157600","Lat":"0.0090000","KPI":882,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0090000],[0.0183900,0.0090000],[0.0183900,0.0108000],[0.0157600,0.0108000],[0.0157600,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0157600","Lat":"0.0108000","KPI":157,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0108000],[0.0183900,0.0108000],[0.0183900,0.0126000],[0.0157600,0.0126000],[0.0157600,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0157600","Lat":"0.0126000","KPI":112,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0126000],[0.0183900,0.0126000],[0.0183900,0.0144000],[0.0157600,0.0144000],[0.0157600,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0157600","Lat":"0.0144000","KPI":954,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0144000],[0.0183900,0.0144000],[0.0183900,0.0162000],[0.0157600,0.0162000],[0.0157600,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0157600","Lat":"0.0162000","KPI":75,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0162000],[0.0183900,0.0162000],[0.0183900,0.0180000],[0.0157600,0.0180000],[0.0157600,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0157600","Lat":"0.0180000","KPI":536,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0180000],[0.0183900,0.0180000],[0.0183900,0.0198000],[0.0157600,0.0198000],[0.0157600,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0157600","Lat":"0.0198000","KPI":674,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0198000],[0.0183900,0.0198000],[0.0183900,0.0216000],[0.0157600,0.0216000],[0.0157600,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0157600","Lat":"0.0216000","KPI":99,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0216000],[0.0183900,0.0216000],[0.0183900,0.0234000],[0.0157600,0.0234000],[0.0157600,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0157600","Lat":"0.0234000","KPI":725,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0234000],[0.0183900,0.0234000],[0.0183900,0.0252000],[0.0157600,0.0252000],[0.0157600,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0157600","Lat":"0.0252000","KPI":643,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0252000],[0.0183900,0.0252000],[0.0183900,0.0270000],[0.0157600,0.0270000],[0.0157600,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0157600","Lat":"0.0270000","KPI":260,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0270000],[0.0183900,0.0270000],[0.0183900,0.0288000],[0.0157600,0.0288000],[0.0157600,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0157600","Lat":"0.0288000","KPI":614,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0288000],[0.0183900,0.0288000],[0.0183900,0.0306000],[0.0157600,0.0306000],[0.0157600,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0157600","Lat":"0.0306000","KPI":721,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0306000],[0.0183900,0.0306000],[0.0183900,0.0324000],[0.0157600,0.0324000],[0.0157600,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0157600","Lat":"0.0324000","KPI":227,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0324000],[0.0183900,0.0324000],[0.0183900,0.0342000],[0.0157600,0.0342000],[0.0157600,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0157600","Lat":"0.0342000","KPI":196,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0342000],[0.0183900,0.0342000],[0.0183900,0.0360000],[0.0157600,0.0360000],[0.0157600,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0157600","Lat":"0.0360000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0360000],[0.0183900,0.0360000],[0.0183900,0.0378000],[0.0157600,0.0378000],[0.0157600,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0157600","Lat":"0.0378000","KPI":704,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0378000],[0.0183900,0.0378000],[0.0183900,0.0396000],[0.0157600,0.0396000],[0.0157600,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0157600","Lat":"0.0396000","KPI":283,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0396000],[0.0183900,0.0396000],[0.0183900,0.0414000],[0.0157600,0.0414000],[0.0157600,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0157600","Lat":"0.0414000","KPI":550,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0414000],[0.0183900,0.0414000],[0.0183900,0.0432000],[0.0157600,0.0432000],[0.0157600,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0157600","Lat":"0.0432000","KPI":553,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0432000],[0.0183900,0.0432000],[0.0183900,0.0450000],[0.0157600,0.0450000],[0.0157600,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0157600","Lat":"0.0450000","KPI":689,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0450000],[0.0183900,0.0450000],[0.0183900,0.0468000],[0.0157600,0.0468000],[0.0157600,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0157600","Lat":"0.0468000","KPI":318,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0468000],[0.0183900,0.0468000],[0.0183900,0.0486000],[0.0157600,0.0486000],[0.0157600,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0157600","Lat":"0.0486000","KPI":94,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0486000],[0.0183900,0.0486000],[0.0183900,0.0504000],[0.0157600,0.0504000],[0.0157600,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0157600","Lat":"0.0504000","KPI":747,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0504000],[0.0183900,0.0504000],[0.0183900,0.0522000],[0.0157600,0.0522000],[0.0157600,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0157600","Lat":"0.0522000","KPI":122,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0522000],[0.0183900,0.0522000],[0.0183900,0.0540000],[0.0157600,0.0540000],[0.0157600,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0157600","Lat":"0.0540000","KPI":262,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0540000],[0.0183900,0.0540000],[0.0183900,0.0558000],[0.0157600,0.0558000],[0.0157600,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0157600","Lat":"0.0558000","KPI":989,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0558000],[0.0183900,0.0558000],[0.0183900,0.0576000],[0.0157600,0.0576000],[0.0157600,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0183900","Lat":"0.0000000","KPI":467,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0000000],[0.0210200,0.0000000],[0.0210200,0.0018000],[0.0183900,0.0018000],[0.0183900,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0183900","Lat":"0.0018000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0018000],[0.0210200,0.0018000],[0.0210200,0.0036000],[0.0183900,0.0036000],[0.0183900,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0183900","Lat":"0.0036000","KPI":203,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0036000],[0.0210200,0.0036000],[0.0210200,0.0054000],[0.0183900,0.0054000],[0.0183900,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0183900","Lat":"0.0054000","KPI":463,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0054000],[0.0210200,0.0054000],[0.0210200,0.0072000],[0.0183900,0.0072000],[0.0183900,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0183900","Lat":"0.0072000","KPI":584,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0072000],[0.0210200,0.0072000],[0.0210200,0.0090000],[0.0183900,0.0090000],[0.0183900,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0183900","Lat":"0.0090000","KPI":13,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0090000],[0.0210200,0.0090000],[0.0210200,0.0108000],[0.0183900,0.0108000],[0.0183900,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0183900","Lat":"0.0108000","KPI":397,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0108000],[0.0210200,0.0108000],[0.0210200,0.0126000],[0.0183900,0.0126000],[0.0183900,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0183900","Lat":"0.0126000","KPI":952,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0126000],[0.0210200,0.0126000],[0.0210200,0.0144000],[0.0183900,0.0144000],[0.0183900,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0183900","Lat":"0.0144000","KPI":344,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0144000],[0.0210200,0.0144000],[0.0210200,0.0162000],[0.0183900,0.0162000],[0.0183900,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0183900","Lat":"0.0162000","KPI":586,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0162000],[0.0210200,0.0162000],[0.0210200,0.0180000],[0.0183900,0.0180000],[0.0183900,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0183900","Lat":"0.0180000","KPI":241,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0180000],[0.0210200,0.0180000],[0.0210200,0.0198000],[0.0183900,0.0198000],[0.0183900,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0183900","Lat":"0.0198000","KPI":500,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0198000],[0.0210200,0.0198000],[0.0210200,0.0216000],[0.0183900,0.0216000],[0.0183900,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0183900","Lat":"0.0216000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0216000],[0.0210200,0.0216000],[0.0210200,0.0234000],[0.0183900,0.0234000],[0.0183900,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0183900","Lat":"0.0234000","KPI":620,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0234000],[0.0210200,0.0234000],[0.0210200,0.0252000],[0.0183900,0.0252000],[0.0183900,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0183900","Lat":"0.0252000","KPI":156,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0252000],[0.0210200,0.0252000],[0.0210200,0.0270000],[0.0183900,0.0270000],[0.0183900,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0183900","Lat":"0.0270000","KPI":387,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0270000],[0.0210200,0.0270000],[0.0210200,0.0288000],[0.0183900,0.0288000],[0.0183900,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0183900","Lat":"0.0288000","KPI":602,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0288000],[0.0210200,0.0288000],[0.0210200,0.0306000],[0.0183900,0.0306000],[0.0183900,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0183900","Lat":"0.0306000","KPI":140,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0306000],[0.0210200,0.0306000],[0.0210200,0.0324000],[0.0183900,0.0324000],[0.0183900,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0183900","Lat":"0.0324000","KPI":553,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0324000],[0.0210200,0.0324000],[0.0210200,0.0342000],[0.0183900,0.0342000],[0.0183900,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0183900","Lat":"0.0342000","KPI":259,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0342000],[0.0210200,0.0342000],[0.0210200,0.0360000],[0.0183900,0.0360000],[0.0183900,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0183900","Lat":"0.0360000","KPI":749,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0360000],[0.0210200,0.0360000],[0.0210200,0.0378000],[0.0183900,0.0378000],[0.0183900,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0183900","Lat":"0.0378000","KPI":977,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0378000],[0.0210200,0.0378000],[0.0210200,0.0396000],[0.0183900,0.0396000],[0.0183900,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0183900","Lat":"0.0396000","KPI":354,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0396000],[0.0210200,0.0396000],[0.0210200,0.0414000],[0.0183900,0.0414000],[0.0183900,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0183900","Lat":"0.0414000","KPI":252,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0414000],[0.0210200,0.0414000],[0.0210200,0.0432000],[0.0183900,0.0432000],[0.0183900,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0183900","Lat":"0.0432000","KPI":28,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0432000],[0.0210200,0.0432000],[0.0210200,0.0450000],[0.0183900,0.0450000],[0.0183900,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0183900","Lat":"0.0450000","KPI":546,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0450000],[0.0210200,0.0450000],[0.0210200,0.0468000],[0.0183900,0.0468000],[0.0183900,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0183900","Lat":"0.0468000","KPI":726,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0468000],[0.0210200,0.0468000],[0.0210200,0.0486000],[0.0183900,0.0486000],[0.0183900,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0183900","Lat":"0.0486000","KPI":880,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0486000],[0.0210200,0.0486000],[0.0210200,0.0504000],[0.0183900,0.0504000],[0.0183900,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0183900","Lat":"0.0504000","KPI":816,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0504000],[0.0210200,0.0504000],[0.0210200,0.0522000],[0.0183900,0.0522000],[0.0183900,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0183900","Lat":"0.0522000","KPI":80,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0522000],[0.0210200,0.0522000],[0.0210200,0.0540000],[0.0183900,0.0540000],[0.0183900,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0183900","Lat":"0.0540000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0540000],[0.0210200,0.0540000],[0.0210200,0.0558000],[0.0183900,0.0558000],[0.0183900,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0183900","Lat":"0.0558000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0558000],[0.0210200,0.0558000],[0.0210200,0.0576000],[0.0183900,0.0576000],[0.0183900,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0210200","Lat":"0.0000000","KPI":985,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0000000],[0.0236500,0.0000000],[0.0236500,0.0018000],[0.0210200,0.0018000],[0.0210200,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0210200","Lat":"0.0018000","KPI":484,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0018000],[0.0236500,0.0018000],[0.0236500,0.0036000],[0.0210200,0.0036000],[0.0210200,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0210200","Lat":"0.0036000","KPI":926,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0036000],[0.0236500,0.0036000],[0.0236500,0.0054000],[0.0210200,0.0054000],[0.0210200,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0210200","Lat":"0.0054000","KPI":792,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0054000],[0.0236500,0.0054000],[0.0236500,0.0072000],[0.0210200,0.0072000],[0.0210200,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0210200","Lat":"0.0072000","KPI":5,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0072000],[0.0236500,0.0072000],[0.0236500,0.0090000],[0.0210200,0.0090000],[0.0210200,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0210200","Lat":"0.0090000","KPI":160,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0090000],[0.0236500,0.0090000],[0.0236500,0.0108000],[0.0210200,0.0108000],[0.0210200,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0210200","Lat":"0.0108000","KPI":786,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0108000],[0.0236500,0.0108000],[0.0236500,0.0126000],[0.0210200,0.0126000],[0.0210200,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0210200","Lat":"0.0126000","KPI":275,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0126000],[0.0236500,0.0126000],[0.0236500,0.0144000],[0.0210200,0.0144000],[0.0210200,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0210200","Lat":"0.0144000","KPI":419,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0144000],[0.0236500,0.0144000],[0.0236500,0.0162000],[0.0210200,0.0162000],[0.0210200,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0210200","Lat":"0.0162000","KPI":449,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0162000],[0.0236500,0.0162000],[0.0236500,0.0180000],[0.0210200,0.0180000],[0.0210200,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0210200","Lat":"0.0180000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0180000],[0.0236500,0.0180000],[0.0236500,0.0198000],[0.0210200,0.0198000],[0.0210200,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0210200","Lat":"0.0198000","KPI":386,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0198000],[0.0236500,0.0198000],[0.0236500,0.0216000],[0.0210200,0.0216000],[0.0210200,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0210200","Lat":"0.0216000","KPI":498,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0216000],[0.0236500,0.0216000],[0.0236500,0.0234000],[0.0210200,0.0234000],[0.0210200,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0210200","Lat":"0.0234000","KPI":558,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0234000],[0.0236500,0.0234000],[0.0236500,0.0252000],[0.0210200,0.0252000],[0.0210200,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0210200","Lat":"0.0252000","KPI":795,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0252000],[0.0236500,0.0252000],[0.0236500,0.0270000],[0.0210200,0.0270000],[0.0210200,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0210200","Lat":"0.0270000","KPI":368,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0270000],[0.0236500,0.0270000],[0.0236500,0.0288000],[0.0210200,0.0288000],[0.0210200,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0210200","Lat":"0.0288000","KPI":145,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0288000],[0.0236500,0.0288000],[0.0236500,0.0306000],[0.0210200,0.0306000],[0.0210200,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0210200","Lat":"0.0306000","KPI":111,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0306000],[0.0236500,0.0306000],[0.0236500,0.0324000],[0.0210200,0.0324000],[0.0210200,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0210200","Lat":"0.0324000","KPI":551,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0324000],[0.0236500,0.0324000],[0.0236500,0.0342000],[0.0210200,0.0342000],[0.0210200,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0210200","Lat":"0.0342000","KPI":662,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0342000],[0.0236500,0.0342000],[0.0236500,0.0360000],[0.0210200,0.0360000],[0.0210200,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0210200","Lat":"0.0360000","KPI":375,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0360000],[0.0236500,0.0360000],[0.0236500,0.0378000],[0.0210200,0.0378000],[0.0210200,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0210200","Lat":"0.0378000","KPI":690,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0378000],[0.0236500,0.0378000],[0.0236500,0.0396000],[0.0210200,0.0396000],[0.0210200,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0210200","Lat":"0.0396000","KPI":789,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0396000],[0.0236500,0.0396000],[0.0236500,0.0414000],[0.0210200,0.0414000],[0.0210200,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0210200","Lat":"0.0414000","KPI":181,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0414000],[0.0236500,0.0414000],[0.0236500,0.0432000],[0.0210200,0.0432000],[0.0210200,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0210200","Lat":"0.0432000","KPI":916,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0432000],[0.0236500,0.0432000],[0.0236500,0.0450000],[0.0210200,0.0450000],[0.0210200,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0210200","Lat":"0.0450000","KPI":15,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0450000],[0.0236500,0.0450000],[0.0236500,0.0468000],[0.0210200,0.0468000],[0.0210200,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0210200","Lat":"0.0468000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0468000],[0.0236500,0.0468000],[0.0236500,0.0486000],[0.0210200,0.0486000],[0.0210200,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0210200","Lat":"0.0486000","KPI":350,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0486000],[0.0236500,0.0486000],[0.0236500,0.0504000],[0.0210200,0.0504000],[0.0210200,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0210200","Lat":"0.0504000","KPI":768,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0504000],[0.0236500,0.0504000],[0.0236500,0.0522000],[0.0210200,0.0522000],[0.0210200,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0210200","Lat":"0.0522000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0522000],[0.0236500,0.0522000],[0.0236500,0.0540000],[0.0210200,0.0540000],[0.0210200,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0210200","Lat":"0.0540000","KPI":716,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0540000],[0.0236500,0.0540000],[0.0236500,0.0558000],[0.0210200,0.0558000],[0.0210200,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0210200","Lat":"0.0558000","KPI":951,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0558000],[0.0236500,0.0558000],[0.0236500,0.0576000],[0.0210200,0.0576000],[0.0210200,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0236400","Lat":"0.0000000","KPI":779,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0000000],[0.0262700,0.0000000],[0.0262700,0.0018000],[0.0236400,0.0018000],[0.0236400,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0236400","Lat":"0.0018000","KPI":136,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0018000],[0.0262700,0.0018000],[0.0262700,0.0036000],[0.0236400,0.0036000],[0.0236400,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0236400","Lat":"0.0036000","KPI":613,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0036000],[0.0262700,0.0036000],[0.0262700,0.0054000],[0.0236400,0.0054000],[0.0236400,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0236400","Lat":"0.0054000","KPI":0,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0054000],[0.0262700,0.0054000],[0.0262700,0.0072000],[0.0236400,0.0072000],[0.0236400,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0236400","Lat":"0.0072000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0072000],[0.0262700,0.0072000],[0.0262700,0.0090000],[0.0236400,0.0090000],[0.0236400,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0236400","Lat":"0.0090000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0090000],[0.0262700,0.0090000],[0.0262700,0.0108000],[0.0236400,0.0108000],[0.0236400,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0236400","Lat":"0.0108000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0108000],[0.0262700,0.0108000],[0.0262700,0.0126000],[0.0236400,0.0126000],[0.0236400,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0236400","Lat":"0.0126000","KPI":176,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0126000],[0.0262700,0.0126000],[0.0262700,0.0144000],[0.0236400,0.0144000],[0.0236400,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0236400","Lat":"0.0144000","KPI":219,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0144000],[0.0262700,0.0144000],[0.0262700,0.0162000],[0.0236400,0.0162000],[0.0236400,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0236400","Lat":"0.0162000","KPI":781,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0162000],[0.0262700,0.0162000],[0.0262700,0.0180000],[0.0236400,0.0180000],[0.0236400,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0236400","Lat":"0.0180000","KPI":561,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0180000],[0.0262700,0.0180000],[0.0262700,0.0198000],[0.0236400,0.0198000],[0.0236400,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0236400","Lat":"0.0198000","KPI":549,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0198000],[0.0262700,0.0198000],[0.0262700,0.0216000],[0.0236400,0.0216000],[0.0236400,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0236400","Lat":"0.0216000","KPI":31,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0216000],[0.0262700,0.0216000],[0.0262700,0.0234000],[0.0236400,0.0234000],[0.0236400,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0236400","Lat":"0.0234000","KPI":841,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0234000],[0.0262700,0.0234000],[0.0262700,0.0252000],[0.0236400,0.0252000],[0.0236400,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0236400","Lat":"0.0252000","KPI":140,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0252000],[0.0262700,0.0252000],[0.0262700,0.0270000],[0.0236400,0.0270000],[0.0236400,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0236400","Lat":"0.0270000","KPI":610,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0270000],[0.0262700,0.0270000],[0.0262700,0.0288000],[0.0236400,0.0288000],[0.0236400,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0236400","Lat":"0.0288000","KPI":586,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0288000],[0.0262700,0.0288000],[0.0262700,0.0306000],[0.0236400,0.0306000],[0.0236400,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0236400","Lat":"0.0306000","KPI":332,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0306000],[0.0262700,0.0306000],[0.0262700,0.0324000],[0.0236400,0.0324000],[0.0236400,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0236400","Lat":"0.0324000","KPI":884,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0324000],[0.0262700,0.0324000],[0.0262700,0.0342000],[0.0236400,0.0342000],[0.0236400,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0236400","Lat":"0.0342000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0342000],[0.0262700,0.0342000],[0.0262700,0.0360000],[0.0236400,0.0360000],[0.0236400,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0236400","Lat":"0.0360000","KPI":268,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0360000],[0.0262700,0.0360000],[0.0262700,0.0378000],[0.0236400,0.0378000],[0.0236400,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0236400","Lat":"0.0378000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0378000],[0.0262700,0.0378000],[0.0262700,0.0396000],[0.0236400,0.0396000],[0.0236400,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0236400","Lat":"0.0396000","KPI":89,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0396000],[0.0262700,0.0396000],[0.0262700,0.0414000],[0.0236400,0.0414000],[0.0236400,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0236400","Lat":"0.0414000","KPI":466,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0414000],[0.0262700,0.0414000],[0.0262700,0.0432000],[0.0236400,0.0432000],[0.0236400,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0236400","Lat":"0.0432000","KPI":304,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0432000],[0.0262700,0.0432000],[0.0262700,0.0450000],[0.0236400,0.0450000],[0.0236400,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0236400","Lat":"0.0450000","KPI":344,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0450000],[0.0262700,0.0450000],[0.0262700,0.0468000],[0.0236400,0.0468000],[0.0236400,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0236400","Lat":"0.0468000","KPI":499,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0468000],[0.0262700,0.0468000],[0.0262700,0.0486000],[0.0236400,0.0486000],[0.0236400,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0236400","Lat":"0.0486000","KPI":726,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0486000],[0.0262700,0.0486000],[0.0262700,0.0504000],[0.0236400,0.0504000],[0.0236400,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0236400","Lat":"0.0504000","KPI":306,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0504000],[0.0262700,0.0504000],[0.0262700,0.0522000],[0.0236400,0.0522000],[0.0236400,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0236400","Lat":"0.0522000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0522000],[0.0262700,0.0522000],[0.0262700,0.0540000],[0.0236400,0.0540000],[0.0236400,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0236400","Lat":"0.0540000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0540000],[0.0262700,0.0540000],[0.0262700,0.0558000],[0.0236400,0.0558000],[0.0236400,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0236400","Lat":"0.0558000","KPI":359,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0558000],[0.0262700,0.0558000],[0.0262700,0.0576000],[0.0236400,0.0576000],[0.0236400,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0262700","Lat":"0.0000000","KPI":370,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0000000],[0.0289000,0.0000000],[0.0289000,0.0018000],[0.0262700,0.0018000],[0.0262700,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0262700","Lat":"0.0018000","KPI":489,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0018000],[0.0289000,0.0018000],[0.0289000,0.0036000],[0.0262700,0.0036000],[0.0262700,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0262700","Lat":"0.0036000","KPI":593,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0036000],[0.0289000,0.0036000],[0.0289000,0.0054000],[0.0262700,0.0054000],[0.0262700,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0262700","Lat":"0.0054000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0054000],[0.0289000,0.0054000],[0.0289000,0.0072000],[0.0262700,0.0072000],[0.0262700,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0262700","Lat":"0.0072000","KPI":28,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0072000],[0.0289000,0.0072000],[0.0289000,0.0090000],[0.0262700,0.0090000],[0.0262700,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0262700","Lat":"0.0090000","KPI":783,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0090000],[0.0289000,0.0090000],[0.0289000,0.0108000],[0.0262700,0.0108000],[0.0262700,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0262700","Lat":"0.0108000","KPI":597,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0108000],[0.0289000,0.0108000],[0.0289000,0.0126000],[0.0262700,0.0126000],[0.0262700,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0262700","Lat":"0.0126000","KPI":456,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0126000],[0.0289000,0.0126000],[0.0289000,0.0144000],[0.0262700,0.0144000],[0.0262700,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0262700","Lat":"0.0144000","KPI":637,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0144000],[0.0289000,0.0144000],[0.0289000,0.0162000],[0.0262700,0.0162000],[0.0262700,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0262700","Lat":"0.0162000","KPI":843,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0162000],[0.0289000,0.0162000],[0.0289000,0.0180000],[0.0262700,0.0180000],[0.0262700,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0262700","Lat":"0.0180000","KPI":926,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0180000],[0.0289000,0.0180000],[0.0289000,0.0198000],[0.0262700,0.0198000],[0.0262700,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0262700","Lat":"0.0198000","KPI":352,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0198000],[0.0289000,0.0198000],[0.0289000,0.0216000],[0.0262700,0.0216000],[0.0262700,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0262700","Lat":"0.0216000","KPI":14,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0216000],[0.0289000,0.0216000],[0.0289000,0.0234000],[0.0262700,0.0234000],[0.0262700,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0262700","Lat":"0.0234000","KPI":480,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0234000],[0.0289000,0.0234000],[0.0289000,0.0252000],[0.0262700,0.0252000],[0.0262700,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0262700","Lat":"0.0252000","KPI":225,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0252000],[0.0289000,0.0252000],[0.0289000,0.0270000],[0.0262700,0.0270000],[0.0262700,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0262700","Lat":"0.0270000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0270000],[0.0289000,0.0270000],[0.0289000,0.0288000],[0.0262700,0.0288000],[0.0262700,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0262700","Lat":"0.0288000","KPI":380,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0288000],[0.0289000,0.0288000],[0.0289000,0.0306000],[0.0262700,0.0306000],[0.0262700,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0262700","Lat":"0.0306000","KPI":27,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0306000],[0.0289000,0.0306000],[0.0289000,0.0324000],[0.0262700,0.0324000],[0.0262700,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0262700","Lat":"0.0324000","KPI":553,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0324000],[0.0289000,0.0324000],[0.0289000,0.0342000],[0.0262700,0.0342000],[0.0262700,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0262700","Lat":"0.0342000","KPI":84,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0342000],[0.0289000,0.0342000],[0.0289000,0.0360000],[0.0262700,0.0360000],[0.0262700,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0262700","Lat":"0.0360000","KPI":939,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0360000],[0.0289000,0.0360000],[0.0289000,0.0378000],[0.0262700,0.0378000],[0.0262700,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0262700","Lat":"0.0378000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0378000],[0.0289000,0.0378000],[0.0289000,0.0396000],[0.0262700,0.0396000],[0.0262700,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0262700","Lat":"0.0396000","KPI":220,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0396000],[0.0289000,0.0396000],[0.0289000,0.0414000],[0.0262700,0.0414000],[0.0262700,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0262700","Lat":"0.0414000","KPI":210,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0414000],[0.0289000,0.0414000],[0.0289000,0.0432000],[0.0262700,0.0432000],[0.0262700,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0262700","Lat":"0.0432000","KPI":649,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0432000],[0.0289000,0.0432000],[0.0289000,0.0450000],[0.0262700,0.0450000],[0.0262700,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0262700","Lat":"0.0450000","KPI":693,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0450000],[0.0289000,0.0450000],[0.0289000,0.0468000],[0.0262700,0.0468000],[0.0262700,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0262700","Lat":"0.0468000","KPI":449,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0468000],[0.0289000,0.0468000],[0.0289000,0.0486000],[0.0262700,0.0486000],[0.0262700,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0262700","Lat":"0.0486000","KPI":645,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0486000],[0.0289000,0.0486000],[0.0289000,0.0504000],[0.0262700,0.0504000],[0.0262700,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0262700","Lat":"0.0504000","KPI":6,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0504000],[0.0289000,0.0504000],[0.0289000,0.0522000],[0.0262700,0.0522000],[0.0262700,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0262700","Lat":"0.0522000","KPI":743,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0522000],[0.0289000,0.0522000],[0.0289000,0.0540000],[0.0262700,0.0540000],[0.0262700,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0262700","Lat":"0.0540000","KPI":797,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0540000],[0.0289000,0.0540000],[0.0289000,0.0558000],[0.0262700,0.0558000],[0.0262700,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0262700","Lat":"0.0558000","KPI":504,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0558000],[0.0289000,0.0558000],[0.0289000,0.0576000],[0.0262700,0.0576000],[0.0262700,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0289000","Lat":"0.0000000","KPI":907,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0000000],[0.0315300,0.0000000],[0.0315300,0.0018000],[0.0289000,0.0018000],[0.0289000,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0289000","Lat":"0.0018000","KPI":855,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0018000],[0.0315300,0.0018000],[0.0315300,0.0036000],[0.0289000,0.0036000],[0.0289000,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0289000","Lat":"0.0036000","KPI":542,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0036000],[0.0315300,0.0036000],[0.0315300,0.0054000],[0.0289000,0.0054000],[0.0289000,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0289000","Lat":"0.0054000","KPI":200,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0054000],[0.0315300,0.0054000],[0.0315300,0.0072000],[0.0289000,0.0072000],[0.0289000,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0289000","Lat":"0.0072000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0072000],[0.0315300,0.0072000],[0.0315300,0.0090000],[0.0289000,0.0090000],[0.0289000,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0289000","Lat":"0.0090000","KPI":2,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0090000],[0.0315300,0.0090000],[0.0315300,0.0108000],[0.0289000,0.0108000],[0.0289000,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0289000","Lat":"0.0108000","KPI":455,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0108000],[0.0315300,0.0108000],[0.0315300,0.0126000],[0.0289000,0.0126000],[0.0289000,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0289000","Lat":"0.0126000","KPI":150,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0126000],[0.0315300,0.0126000],[0.0315300,0.0144000],[0.0289000,0.0144000],[0.0289000,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0289000","Lat":"0.0144000","KPI":453,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0144000],[0.0315300,0.0144000],[0.0315300,0.0162000],[0.0289000,0.0162000],[0.0289000,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0289000","Lat":"0.0162000","KPI":573,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0162000],[0.0315300,0.0162000],[0.0315300,0.0180000],[0.0289000,0.0180000],[0.0289000,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0289000","Lat":"0.0180000","KPI":668,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0180000],[0.0315300,0.0180000],[0.0315300,0.0198000],[0.0289000,0.0198000],[0.0289000,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0289000","Lat":"0.0198000","KPI":835,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0198000],[0.0315300,0.0198000],[0.0315300,0.0216000],[0.0289000,0.0216000],[0.0289000,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0289000","Lat":"0.0216000","KPI":848,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0216000],[0.0315300,0.0216000],[0.0315300,0.0234000],[0.0289000,0.0234000],[0.0289000,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0289000","Lat":"0.0234000","KPI":732,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0234000],[0.0315300,0.0234000],[0.0315300,0.0252000],[0.0289000,0.0252000],[0.0289000,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0289000","Lat":"0.0252000","KPI":570,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0252000],[0.0315300,0.0252000],[0.0315300,0.0270000],[0.0289000,0.0270000],[0.0289000,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0289000","Lat":"0.0270000","KPI":235,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0270000],[0.0315300,0.0270000],[0.0315300,0.0288000],[0.0289000,0.0288000],[0.0289000,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0289000","Lat":"0.0288000","KPI":128,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0288000],[0.0315300,0.0288000],[0.0315300,0.0306000],[0.0289000,0.0306000],[0.0289000,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0289000","Lat":"0.0306000","KPI":481,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0306000],[0.0315300,0.0306000],[0.0315300,0.0324000],[0.0289000,0.0324000],[0.0289000,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0289000","Lat":"0.0324000","KPI":922,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0324000],[0.0315300,0.0324000],[0.0315300,0.0342000],[0.0289000,0.0342000],[0.0289000,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0289000","Lat":"0.0342000","KPI":877,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0342000],[0.0315300,0.0342000],[0.0315300,0.0360000],[0.0289000,0.0360000],[0.0289000,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0289000","Lat":"0.0360000","KPI":48,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0360000],[0.0315300,0.0360000],[0.0315300,0.0378000],[0.0289000,0.0378000],[0.0289000,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0289000","Lat":"0.0378000","KPI":828,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0378000],[0.0315300,0.0378000],[0.0315300,0.0396000],[0.0289000,0.0396000],[0.0289000,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0289000","Lat":"0.0396000","KPI":641,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0396000],[0.0315300,0.0396000],[0.0315300,0.0414000],[0.0289000,0.0414000],[0.0289000,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0289000","Lat":"0.0414000","KPI":16,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0414000],[0.0315300,0.0414000],[0.0315300,0.0432000],[0.0289000,0.0432000],[0.0289000,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0289000","Lat":"0.0432000","KPI":813,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0432000],[0.0315300,0.0432000],[0.0315300,0.0450000],[0.0289000,0.0450000],[0.0289000,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0289000","Lat":"0.0450000","KPI":662,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0450000],[0.0315300,0.0450000],[0.0315300,0.0468000],[0.0289000,0.0468000],[0.0289000,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0289000","Lat":"0.0468000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0468000],[0.0315300,0.0468000],[0.0315300,0.0486000],[0.0289000,0.0486000],[0.0289000,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0289000","Lat":"0.0486000","KPI":685,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0486000],[0.0315300,0.0486000],[0.0315300,0.0504000],[0.0289000,0.0504000],[0.0289000,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0289000","Lat":"0.0504000","KPI":351,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0504000],[0.0315300,0.0504000],[0.0315300,0.0522000],[0.0289000,0.0522000],[0.0289000,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0289000","Lat":"0.0522000","KPI":235,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0522000],[0.0315300,0.0522000],[0.0315300,0.0540000],[0.0289000,0.0540000],[0.0289000,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0289000","Lat":"0.0540000","KPI":705,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0540000],[0.0315300,0.0540000],[0.0315300,0.0558000],[0.0289000,0.0558000],[0.0289000,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0289000","Lat":"0.0558000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0558000],[0.0315300,0.0558000],[0.0315300,0.0576000],[0.0289000,0.0576000],[0.0289000,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0315200","Lat":"0.0000000","KPI":200,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0000000],[0.0341500,0.0000000],[0.0341500,0.0018000],[0.0315200,0.0018000],[0.0315200,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0315200","Lat":"0.0018000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0018000],[0.0341500,0.0018000],[0.0341500,0.0036000],[0.0315200,0.0036000],[0.0315200,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0315200","Lat":"0.0036000","KPI":520,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0036000],[0.0341500,0.0036000],[0.0341500,0.0054000],[0.0315200,0.0054000],[0.0315200,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0315200","Lat":"0.0054000","KPI":413,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0054000],[0.0341500,0.0054000],[0.0341500,0.0072000],[0.0315200,0.0072000],[0.0315200,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0315200","Lat":"0.0072000","KPI":314,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0072000],[0.0341500,0.0072000],[0.0341500,0.0090000],[0.0315200,0.0090000],[0.0315200,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0315200","Lat":"0.0090000","KPI":785,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0090000],[0.0341500,0.0090000],[0.0341500,0.0108000],[0.0315200,0.0108000],[0.0315200,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0315200","Lat":"0.0108000","KPI":402,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0108000],[0.0341500,0.0108000],[0.0341500,0.0126000],[0.0315200,0.0126000],[0.0315200,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0315200","Lat":"0.0126000","KPI":63,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0126000],[0.0341500,0.0126000],[0.0341500,0.0144000],[0.0315200,0.0144000],[0.0315200,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0315200","Lat":"0.0144000","KPI":364,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0144000],[0.0341500,0.0144000],[0.0341500,0.0162000],[0.0315200,0.0162000],[0.0315200,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0315200","Lat":"0.0162000","KPI":118,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0162000],[0.0341500,0.0162000],[0.0341500,0.0180000],[0.0315200,0.0180000],[0.0315200,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0315200","Lat":"0.0180000","KPI":321,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0180000],[0.0341500,0.0180000],[0.0341500,0.0198000],[0.0315200,0.0198000],[0.0315200,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0315200","Lat":"0.0198000","KPI":250,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0198000],[0.0341500,0.0198000],[0.0341500,0.0216000],[0.0315200,0.0216000],[0.0315200,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0315200","Lat":"0.0216000","KPI":355,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0216000],[0.0341500,0.0216000],[0.0341500,0.0234000],[0.0315200,0.0234000],[0.0315200,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0315200","Lat":"0.0234000","KPI":625,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0234000],[0.0341500,0.0234000],[0.0341500,0.0252000],[0.0315200,0.0252000],[0.0315200,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0315200","Lat":"0.0252000","KPI":211,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0252000],[0.0341500,0.0252000],[0.0341500,0.0270000],[0.0315200,0.0270000],[0.0315200,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0315200","Lat":"0.0270000","KPI":752,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0270000],[0.0341500,0.0270000],[0.0341500,0.0288000],[0.0315200,0.0288000],[0.0315200,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0315200","Lat":"0.0288000","KPI":606,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0288000],[0.0341500,0.0288000],[0.0341500,0.0306000],[0.0315200,0.0306000],[0.0315200,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0315200","Lat":"0.0306000","KPI":568,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0306000],[0.0341500,0.0306000],[0.0341500,0.0324000],[0.0315200,0.0324000],[0.0315200,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0315200","Lat":"0.0324000","KPI":751,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0324000],[0.0341500,0.0324000],[0.0341500,0.0342000],[0.0315200,0.0342000],[0.0315200,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0315200","Lat":"0.0342000","KPI":627,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0342000],[0.0341500,0.0342000],[0.0341500,0.0360000],[0.0315200,0.0360000],[0.0315200,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0315200","Lat":"0.0360000","KPI":433,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0360000],[0.0341500,0.0360000],[0.0341500,0.0378000],[0.0315200,0.0378000],[0.0315200,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0315200","Lat":"0.0378000","KPI":756,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0378000],[0.0341500,0.0378000],[0.0341500,0.0396000],[0.0315200,0.0396000],[0.0315200,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0315200","Lat":"0.0396000","KPI":335,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0396000],[0.0341500,0.0396000],[0.0341500,0.0414000],[0.0315200,0.0414000],[0.0315200,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0315200","Lat":"0.0414000","KPI":523,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0414000],[0.0341500,0.0414000],[0.0341500,0.0432000],[0.0315200,0.0432000],[0.0315200,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0315200","Lat":"0.0432000","KPI":86,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0432000],[0.0341500,0.0432000],[0.0341500,0.0450000],[0.0315200,0.0450000],[0.0315200,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0315200","Lat":"0.0450000","KPI":824,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0450000],[0.0341500,0.0450000],[0.0341500,0.0468000],[0.0315200,0.0468000],[0.0315200,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0315200","Lat":"0.0468000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0468000],[0.0341500,0.0468000],[0.0341500,0.0486000],[0.0315200,0.0486000],[0.0315200,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0315200","Lat":"0.0486000","KPI":901,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0486000],[0.0341500,0.0486000],[0.0341500,0.0504000],[0.0315200,0.0504000],[0.0315200,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0315200","Lat":"0.0504000","KPI":760,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0504000],[0.0341500,0.0504000],[0.0341500,0.0522000],[0.0315200,0.0522000],[0.0315200,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0315200","Lat":"0.0522000","KPI":152,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0522000],[0.0341500,0.0522000],[0.0341500,0.0540000],[0.0315200,0.0540000],[0.0315200,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0315200","Lat":"0.0540000","KPI":756,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0540000],[0.0341500,0.0540000],[0.0341500,0.0558000],[0.0315200,0.0558000],[0.0315200,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0315200","Lat":"0.0558000","KPI":172,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0558000],[0.0341500,0.0558000],[0.0341500,0.0576000],[0.0315200,0.0576000],[0.0315200,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0341500","Lat":"0.0000000","KPI":748,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0000000],[0.0367800,0.0000000],[0.0367800,0.0018000],[0.0341500,0.0018000],[0.0341500,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0341500","Lat":"0.0018000","KPI":536,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0018000],[0.0367800,0.0018000],[0.0367800,0.0036000],[0.0341500,0.0036000],[0.0341500,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0341500","Lat":"0.0036000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0036000],[0.0367800,0.0036000],[0.0367800,0.0054000],[0.0341500,0.0054000],[0.0341500,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0341500","Lat":"0.0054000","KPI":6,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0054000],[0.0367800,0.0054000],[0.0367800,0.0072000],[0.0341500,0.0072000],[0.0341500,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0341500","Lat":"0.0072000","KPI":52,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0072000],[0.0367800,0.0072000],[0.0367800,0.0090000],[0.0341500,0.0090000],[0.0341500,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0341500","Lat":"0.0090000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0090000],[0.0367800,0.0090000],[0.0367800,0.0108000],[0.0341500,0.0108000],[0.0341500,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0341500","Lat":"0.0108000","KPI":946,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0108000],[0.0367800,0.0108000],[0.0367800,0.0126000],[0.0341500,0.0126000],[0.0341500,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0341500","Lat":"0.0126000","KPI":300,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0126000],[0.0367800,0.0126000],[0.0367800,0.0144000],[0.0341500,0.0144000],[0.0341500,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0341500","Lat":"0.0144000","KPI":17,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0144000],[0.0367800,0.0144000],[0.0367800,0.0162000],[0.0341500,0.0162000],[0.0341500,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0341500","Lat":"0.0162000","KPI":363,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0162000],[0.0367800,0.0162000],[0.0367800,0.0180000],[0.0341500,0.0180000],[0.0341500,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0341500","Lat":"0.0180000","KPI":337,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0180000],[0.0367800,0.0180000],[0.0367800,0.0198000],[0.0341500,0.0198000],[0.0341500,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0341500","Lat":"0.0198000","KPI":587,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0198000],[0.0367800,0.0198000],[0.0367800,0.0216000],[0.0341500,0.0216000],[0.0341500,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0341500","Lat":"0.0216000","KPI":810,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0216000],[0.0367800,0.0216000],[0.0367800,0.0234000],[0.0341500,0.0234000],[0.0341500,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0341500","Lat":"0.0234000","KPI":495,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0234000],[0.0367800,0.0234000],[0.0367800,0.0252000],[0.0341500,0.0252000],[0.0341500,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0341500","Lat":"0.0252000","KPI":734,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0252000],[0.0367800,0.0252000],[0.0367800,0.0270000],[0.0341500,0.0270000],[0.0341500,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0341500","Lat":"0.0270000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0270000],[0.0367800,0.0270000],[0.0367800,0.0288000],[0.0341500,0.0288000],[0.0341500,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0341500","Lat":"0.0288000","KPI":794,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0288000],[0.0367800,0.0288000],[0.0367800,0.0306000],[0.0341500,0.0306000],[0.0341500,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0341500","Lat":"0.0306000","KPI":284,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0306000],[0.0367800,0.0306000],[0.0367800,0.0324000],[0.0341500,0.0324000],[0.0341500,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0341500","Lat":"0.0324000","KPI":226,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0324000],[0.0367800,0.0324000],[0.0367800,0.0342000],[0.0341500,0.0342000],[0.0341500,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0341500","Lat":"0.0342000","KPI":92,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0342000],[0.0367800,0.0342000],[0.0367800,0.0360000],[0.0341500,0.0360000],[0.0341500,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0341500","Lat":"0.0360000","KPI":143,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0360000],[0.0367800,0.0360000],[0.0367800,0.0378000],[0.0341500,0.0378000],[0.0341500,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0341500","Lat":"0.0378000","KPI":806,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0378000],[0.0367800,0.0378000],[0.0367800,0.0396000],[0.0341500,0.0396000],[0.0341500,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0341500","Lat":"0.0396000","KPI":842,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0396000],[0.0367800,0.0396000],[0.0367800,0.0414000],[0.0341500,0.0414000],[0.0341500,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0341500","Lat":"0.0414000","KPI":934,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0414000],[0.0367800,0.0414000],[0.0367800,0.0432000],[0.0341500,0.0432000],[0.0341500,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0341500","Lat":"0.0432000","KPI":228,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0432000],[0.0367800,0.0432000],[0.0367800,0.0450000],[0.0341500,0.0450000],[0.0341500,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0341500","Lat":"0.0450000","KPI":258,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0450000],[0.0367800,0.0450000],[0.0367800,0.0468000],[0.0341500,0.0468000],[0.0341500,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0341500","Lat":"0.0468000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0468000],[0.0367800,0.0468000],[0.0367800,0.0486000],[0.0341500,0.0486000],[0.0341500,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0341500","Lat":"0.0486000","KPI":354,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0486000],[0.0367800,0.0486000],[0.0367800,0.0504000],[0.0341500,0.0504000],[0.0341500,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0341500","Lat":"0.0504000","KPI":622,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0504000],[0.0367800,0.0504000],[0.0367800,0.0522000],[0.0341500,0.0522000],[0.0341500,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0341500","Lat":"0.0522000","KPI":556,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0522000],[0.0367800,0.0522000],[0.0367800,0.0540000],[0.0341500,0.0540000],[0.0341500,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0341500","Lat":"0.0540000","KPI":573,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0540000],[0.0367800,0.0540000],[0.0367800,0.0558000],[0.0341500,0.0558000],[0.0341500,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0341500","Lat":"0.0558000","KPI":228,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0558000],[0.0367800,0.0558000],[0.0367800,0.0576000],[0.0341500,0.0576000],[0.0341500,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0367800","Lat":"0.0000000","KPI":773,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0000000],[0.0394100,0.0000000],[0.0394100,0.0018000],[0.0367800,0.0018000],[0.0367800,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0367800","Lat":"0.0018000","KPI":725,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0018000],[0.0394100,0.0018000],[0.0394100,0.0036000],[0.0367800,0.0036000],[0.0367800,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0367800","Lat":"0.0036000","KPI":882,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0036000],[0.0394100,0.0036000],[0.0394100,0.0054000],[0.0367800,0.0054000],[0.0367800,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0367800","Lat":"0.0054000","KPI":126,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0054000],[0.0394100,0.0054000],[0.0394100,0.0072000],[0.0367800,0.0072000],[0.0367800,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0367800","Lat":"0.0072000","KPI":666,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0072000],[0.0394100,0.0072000],[0.0394100,0.0090000],[0.0367800,0.0090000],[0.0367800,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0367800","Lat":"0.0090000","KPI":455,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0090000],[0.0394100,0.0090000],[0.0394100,0.0108000],[0.0367800,0.0108000],[0.0367800,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0367800","Lat":"0.0108000","KPI":166,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0108000],[0.0394100,0.0108000],[0.0394100,0.0126000],[0.0367800,0.0126000],[0.0367800,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0367800","Lat":"0.0126000","KPI":795,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0126000],[0.0394100,0.0126000],[0.0394100,0.0144000],[0.0367800,0.0144000],[0.0367800,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0367800","Lat":"0.0144000","KPI":38,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0144000],[0.0394100,0.0144000],[0.0394100,0.0162000],[0.0367800,0.0162000],[0.0367800,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0367800","Lat":"0.0162000","KPI":460,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0162000],[0.0394100,0.0162000],[0.0394100,0.0180000],[0.0367800,0.0180000],[0.0367800,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0367800","Lat":"0.0180000","KPI":119,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0180000],[0.0394100,0.0180000],[0.0394100,0.0198000],[0.0367800,0.0198000],[0.0367800,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0367800","Lat":"0.0198000","KPI":110,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0198000],[0.0394100,0.0198000],[0.0394100,0.0216000],[0.0367800,0.0216000],[0.0367800,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0367800","Lat":"0.0216000","KPI":971,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0216000],[0.0394100,0.0216000],[0.0394100,0.0234000],[0.0367800,0.0234000],[0.0367800,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0367800","Lat":"0.0234000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0234000],[0.0394100,0.0234000],[0.0394100,0.0252000],[0.0367800,0.0252000],[0.0367800,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0367800","Lat":"0.0252000","KPI":304,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0252000],[0.0394100,0.0252000],[0.0394100,0.0270000],[0.0367800,0.0270000],[0.0367800,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0367800","Lat":"0.0270000","KPI":472,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0270000],[0.0394100,0.0270000],[0.0394100,0.0288000],[0.0367800,0.0288000],[0.0367800,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0367800","Lat":"0.0288000","KPI":914,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0288000],[0.0394100,0.0288000],[0.0394100,0.0306000],[0.0367800,0.0306000],[0.0367800,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0367800","Lat":"0.0306000","KPI":279,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0306000],[0.0394100,0.0306000],[0.0394100,0.0324000],[0.0367800,0.0324000],[0.0367800,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0367800","Lat":"0.0324000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0324000],[0.0394100,0.0324000],[0.0394100,0.0342000],[0.0367800,0.0342000],[0.0367800,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0367800","Lat":"0.0342000","KPI":938,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0342000],[0.0394100,0.0342000],[0.0394100,0.0360000],[0.0367800,0.0360000],[0.0367800,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0367800","Lat":"0.0360000","KPI":469,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0360000],[0.0394100,0.0360000],[0.0394100,0.0378000],[0.0367800,0.0378000],[0.0367800,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0367800","Lat":"0.0378000","KPI":350,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0378000],[0.0394100,0.0378000],[0.0394100,0.0396000],[0.0367800,0.0396000],[0.0367800,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0367800","Lat":"0.0396000","KPI":289,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0396000],[0.0394100,0.0396000],[0.0394100,0.0414000],[0.0367800,0.0414000],[0.0367800,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0367800","Lat":"0.0414000","KPI":548,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0414000],[0.0394100,0.0414000],[0.0394100,0.0432000],[0.0367800,0.0432000],[0.0367800,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0367800","Lat":"0.0432000","KPI":490,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0432000],[0.0394100,0.0432000],[0.0394100,0.0450000],[0.0367800,0.0450000],[0.0367800,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0367800","Lat":"0.0450000","KPI":79,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0450000],[0.0394100,0.0450000],[0.0394100,0.0468000],[0.0367800,0.0468000],[0.0367800,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0367800","Lat":"0.0468000","KPI":153,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0468000],[0.0394100,0.0468000],[0.0394100,0.0486000],[0.0367800,0.0486000],[0.0367800,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0367800","Lat":"0.0486000","KPI":642,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0486000],[0.0394100,0.0486000],[0.0394100,0.0504000],[0.0367800,0.0504000],[0.0367800,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0367800","Lat":"0.0504000","KPI":323,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0504000],[0.0394100,0.0504000],[0.0394100,0.0522000],[0.0367800,0.0522000],[0.0367800,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0367800","Lat":"0.0522000","KPI":110,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0522000],[0.0394100,0.0522000],[0.0394100,0.0540000],[0.0367800,0.0540000],[0.0367800,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0367800","Lat":"0.0540000","KPI":371,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0540000],[0.0394100,0.0540000],[0.0394100,0.0558000],[0.0367800,0.0558000],[0.0367800,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0367800","Lat":"0.0558000","KPI":147,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0558000],[0.0394100,0.0558000],[0.0394100,0.0576000],[0.0367800,0.0576000],[0.0367800,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0394100","Lat":"0.0000000","KPI":250,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0000000],[0.0420400,0.0000000],[0.0420400,0.0018000],[0.0394100,0.0018000],[0.0394100,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0394100","Lat":"0.0018000","KPI":740,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0018000],[0.0420400,0.0018000],[0.0420400,0.0036000],[0.0394100,0.0036000],[0.0394100,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0394100","Lat":"0.0036000","KPI":567,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0036000],[0.0420400,0.0036000],[0.0420400,0.0054000],[0.0394100,0.0054000],[0.0394100,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0394100","Lat":"0.0054000","KPI":89,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0054000],[0.0420400,0.0054000],[0.0420400,0.0072000],[0.0394100,0.0072000],[0.0394100,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0394100","Lat":"0.0072000","KPI":454,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0072000],[0.0420400,0.0072000],[0.0420400,0.0090000],[0.0394100,0.0090000],[0.0394100,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0394100","Lat":"0.0090000","KPI":464,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0090000],[0.0420400,0.0090000],[0.0420400,0.0108000],[0.0394100,0.0108000],[0.0394100,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0394100","Lat":"0.0108000","KPI":745,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0108000],[0.0420400,0.0108000],[0.0420400,0.0126000],[0.0394100,0.0126000],[0.0394100,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0394100","Lat":"0.0126000","KPI":845,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0126000],[0.0420400,0.0126000],[0.0420400,0.0144000],[0.0394100,0.0144000],[0.0394100,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0394100","Lat":"0.0144000","KPI":64,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0144000],[0.0420400,0.0144000],[0.0420400,0.0162000],[0.0394100,0.0162000],[0.0394100,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0394100","Lat":"0.0162000","KPI":368,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0162000],[0.0420400,0.0162000],[0.0420400,0.0180000],[0.0394100,0.0180000],[0.0394100,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0394100","Lat":"0.0180000","KPI":54,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0180000],[0.0420400,0.0180000],[0.0420400,0.0198000],[0.0394100,0.0198000],[0.0394100,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0394100","Lat":"0.0198000","KPI":885,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0198000],[0.0420400,0.0198000],[0.0420400,0.0216000],[0.0394100,0.0216000],[0.0394100,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0394100","Lat":"0.0216000","KPI":113,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0216000],[0.0420400,0.0216000],[0.0420400,0.0234000],[0.0394100,0.0234000],[0.0394100,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0394100","Lat":"0.0234000","KPI":216,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0234000],[0.0420400,0.0234000],[0.0420400,0.0252000],[0.0394100,0.0252000],[0.0394100,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0394100","Lat":"0.0252000","KPI":697,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0252000],[0.0420400,0.0252000],[0.0420400,0.0270000],[0.0394100,0.0270000],[0.0394100,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0394100","Lat":"0.0270000","KPI":997,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0270000],[0.0420400,0.0270000],[0.0420400,0.0288000],[0.0394100,0.0288000],[0.0394100,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0394100","Lat":"0.0288000","KPI":455,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0288000],[0.0420400,0.0288000],[0.0420400,0.0306000],[0.0394100,0.0306000],[0.0394100,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0394100","Lat":"0.0306000","KPI":384,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0306000],[0.0420400,0.0306000],[0.0420400,0.0324000],[0.0394100,0.0324000],[0.0394100,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0394100","Lat":"0.0324000","KPI":193,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0324000],[0.0420400,0.0324000],[0.0420400,0.0342000],[0.0394100,0.0342000],[0.0394100,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0394100","Lat":"0.0342000","KPI":264,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0342000],[0.0420400,0.0342000],[0.0420400,0.0360000],[0.0394100,0.0360000],[0.0394100,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0394100","Lat":"0.0360000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0360000],[0.0420400,0.0360000],[0.0420400,0.0378000],[0.0394100,0.0378000],[0.0394100,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0394100","Lat":"0.0378000","KPI":6,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0378000],[0.0420400,0.0378000],[0.0420400,0.0396000],[0.0394100,0.0396000],[0.0394100,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0394100","Lat":"0.0396000","KPI":423,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0396000],[0.0420400,0.0396000],[0.0420400,0.0414000],[0.0394100,0.0414000],[0.0394100,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0394100","Lat":"0.0414000","KPI":291,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0414000],[0.0420400,0.0414000],[0.0420400,0.0432000],[0.0394100,0.0432000],[0.0394100,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0394100","Lat":"0.0432000","KPI":653,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0432000],[0.0420400,0.0432000],[0.0420400,0.0450000],[0.0394100,0.0450000],[0.0394100,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0394100","Lat":"0.0450000","KPI":966,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0450000],[0.0420400,0.0450000],[0.0420400,0.0468000],[0.0394100,0.0468000],[0.0394100,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0394100","Lat":"0.0468000","KPI":155,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0468000],[0.0420400,0.0468000],[0.0420400,0.0486000],[0.0394100,0.0486000],[0.0394100,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0394100","Lat":"0.0486000","KPI":434,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0486000],[0.0420400,0.0486000],[0.0420400,0.0504000],[0.0394100,0.0504000],[0.0394100,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0394100","Lat":"0.0504000","KPI":282,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0504000],[0.0420400,0.0504000],[0.0420400,0.0522000],[0.0394100,0.0522000],[0.0394100,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0394100","Lat":"0.0522000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0522000],[0.0420400,0.0522000],[0.0420400,0.0540000],[0.0394100,0.0540000],[0.0394100,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0394100","Lat":"0.0540000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0540000],[0.0420400,0.0540000],[0.0420400,0.0558000],[0.0394100,0.0558000],[0.0394100,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0394100","Lat":"0.0558000","KPI":33,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0558000],[0.0420400,0.0558000],[0.0420400,0.0576000],[0.0394100,0.0576000],[0.0394100,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0420300","Lat":"0.0000000","KPI":941,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0000000],[0.0446600,0.0000000],[0.0446600,0.0018000],[0.0420300,0.0018000],[0.0420300,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0420300","Lat":"0.0018000","KPI":331,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0018000],[0.0446600,0.0018000],[0.0446600,0.0036000],[0.0420300,0.0036000],[0.0420300,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0420300","Lat":"0.0036000","KPI":942,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0036000],[0.0446600,0.0036000],[0.0446600,0.0054000],[0.0420300,0.0054000],[0.0420300,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0420300","Lat":"0.0054000","KPI":912,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0054000],[0.0446600,0.0054000],[0.0446600,0.0072000],[0.0420300,0.0072000],[0.0420300,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0420300","Lat":"0.0072000","KPI":504,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0072000],[0.0446600,0.0072000],[0.0446600,0.0090000],[0.0420300,0.0090000],[0.0420300,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0420300","Lat":"0.0090000","KPI":344,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0090000],[0.0446600,0.0090000],[0.0446600,0.0108000],[0.0420300,0.0108000],[0.0420300,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0420300","Lat":"0.0108000","KPI":1,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0108000],[0.0446600,0.0108000],[0.0446600,0.0126000],[0.0420300,0.0126000],[0.0420300,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0420300","Lat":"0.0126000","KPI":640,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0126000],[0.0446600,0.0126000],[0.0446600,0.0144000],[0.0420300,0.0144000],[0.0420300,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0420300","Lat":"0.0144000","KPI":776,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0144000],[0.0446600,0.0144000],[0.0446600,0.0162000],[0.0420300,0.0162000],[0.0420300,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0420300","Lat":"0.0162000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0162000],[0.0446600,0.0162000],[0.0446600,0.0180000],[0.0420300,0.0180000],[0.0420300,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0420300","Lat":"0.0180000","KPI":540,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0180000],[0.0446600,0.0180000],[0.0446600,0.0198000],[0.0420300,0.0198000],[0.0420300,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0420300","Lat":"0.0198000","KPI":315,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0198000],[0.0446600,0.0198000],[0.0446600,0.0216000],[0.0420300,0.0216000],[0.0420300,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0420300","Lat":"0.0216000","KPI":56,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0216000],[0.0446600,0.0216000],[0.0446600,0.0234000],[0.0420300,0.0234000],[0.0420300,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0420300","Lat":"0.0234000","KPI":44,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0234000],[0.0446600,0.0234000],[0.0446600,0.0252000],[0.0420300,0.0252000],[0.0420300,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0420300","Lat":"0.0252000","KPI":332,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0252000],[0.0446600,0.0252000],[0.0446600,0.0270000],[0.0420300,0.0270000],[0.0420300,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0420300","Lat":"0.0270000","KPI":866,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0270000],[0.0446600,0.0270000],[0.0446600,0.0288000],[0.0420300,0.0288000],[0.0420300,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0420300","Lat":"0.0288000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0288000],[0.0446600,0.0288000],[0.0446600,0.0306000],[0.0420300,0.0306000],[0.0420300,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0420300","Lat":"0.0306000","KPI":150,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0306000],[0.0446600,0.0306000],[0.0446600,0.0324000],[0.0420300,0.0324000],[0.0420300,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0420300","Lat":"0.0324000","KPI":477,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0324000],[0.0446600,0.0324000],[0.0446600,0.0342000],[0.0420300,0.0342000],[0.0420300,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0420300","Lat":"0.0342000","KPI":138,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0342000],[0.0446600,0.0342000],[0.0446600,0.0360000],[0.0420300,0.0360000],[0.0420300,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0420300","Lat":"0.0360000","KPI":530,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0360000],[0.0446600,0.0360000],[0.0446600,0.0378000],[0.0420300,0.0378000],[0.0420300,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0420300","Lat":"0.0378000","KPI":177,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0378000],[0.0446600,0.0378000],[0.0446600,0.0396000],[0.0420300,0.0396000],[0.0420300,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0420300","Lat":"0.0396000","KPI":639,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0396000],[0.0446600,0.0396000],[0.0446600,0.0414000],[0.0420300,0.0414000],[0.0420300,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0420300","Lat":"0.0414000","KPI":251,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0414000],[0.0446600,0.0414000],[0.0446600,0.0432000],[0.0420300,0.0432000],[0.0420300,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0420300","Lat":"0.0432000","KPI":55,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0432000],[0.0446600,0.0432000],[0.0446600,0.0450000],[0.0420300,0.0450000],[0.0420300,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0420300","Lat":"0.0450000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0450000],[0.0446600,0.0450000],[0.0446600,0.0468000],[0.0420300,0.0468000],[0.0420300,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0420300","Lat":"0.0468000","KPI":296,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0468000],[0.0446600,0.0468000],[0.0446600,0.0486000],[0.0420300,0.0486000],[0.0420300,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0420300","Lat":"0.0486000","KPI":997,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0486000],[0.0446600,0.0486000],[0.0446600,0.0504000],[0.0420300,0.0504000],[0.0420300,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0420300","Lat":"0.0504000","KPI":979,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0504000],[0.0446600,0.0504000],[0.0446600,0.0522000],[0.0420300,0.0522000],[0.0420300,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0420300","Lat":"0.0522000","KPI":522,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0522000],[0.0446600,0.0522000],[0.0446600,0.0540000],[0.0420300,0.0540000],[0.0420300,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0420300","Lat":"0.0540000","KPI":944,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0540000],[0.0446600,0.0540000],[0.0446600,0.0558000],[0.0420300,0.0558000],[0.0420300,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0420300","Lat":"0.0558000","KPI":282,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0558000],[0.0446600,0.0558000],[0.0446600,0.0576000],[0.0420300,0.0576000],[0.0420300,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0446600","Lat":"0.0000000","KPI":420,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0000000],[0.0472900,0.0000000],[0.0472900,0.0018000],[0.0446600,0.0018000],[0.0446600,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0446600","Lat":"0.0018000","KPI":727,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0018000],[0.0472900,0.0018000],[0.0472900,0.0036000],[0.0446600,0.0036000],[0.0446600,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0446600","Lat":"0.0036000","KPI":436,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0036000],[0.0472900,0.0036000],[0.0472900,0.0054000],[0.0446600,0.0054000],[0.0446600,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0446600","Lat":"0.0054000","KPI":846,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0054000],[0.0472900,0.0054000],[0.0472900,0.0072000],[0.0446600,0.0072000],[0.0446600,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0446600","Lat":"0.0072000","KPI":723,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0072000],[0.0472900,0.0072000],[0.0472900,0.0090000],[0.0446600,0.0090000],[0.0446600,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0446600","Lat":"0.0090000","KPI":961,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0090000],[0.0472900,0.0090000],[0.0472900,0.0108000],[0.0446600,0.0108000],[0.0446600,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0446600","Lat":"0.0108000","KPI":915,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0108000],[0.0472900,0.0108000],[0.0472900,0.0126000],[0.0446600,0.0126000],[0.0446600,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0446600","Lat":"0.0126000","KPI":793,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0126000],[0.0472900,0.0126000],[0.0472900,0.0144000],[0.0446600,0.0144000],[0.0446600,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0446600","Lat":"0.0144000","KPI":927,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0144000],[0.0472900,0.0144000],[0.0472900,0.0162000],[0.0446600,0.0162000],[0.0446600,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0446600","Lat":"0.0162000","KPI":631,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0162000],[0.0472900,0.0162000],[0.0472900,0.0180000],[0.0446600,0.0180000],[0.0446600,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0446600","Lat":"0.0180000","KPI":19,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0180000],[0.0472900,0.0180000],[0.0472900,0.0198000],[0.0446600,0.0198000],[0.0446600,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0446600","Lat":"0.0198000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0198000],[0.0472900,0.0198000],[0.0472900,0.0216000],[0.0446600,0.0216000],[0.0446600,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0446600","Lat":"0.0216000","KPI":198,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0216000],[0.0472900,0.0216000],[0.0472900,0.0234000],[0.0446600,0.0234000],[0.0446600,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0446600","Lat":"0.0234000","KPI":865,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0234000],[0.0472900,0.0234000],[0.0472900,0.0252000],[0.0446600,0.0252000],[0.0446600,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0446600","Lat":"0.0252000","KPI":299,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0252000],[0.0472900,0.0252000],[0.0472900,0.0270000],[0.0446600,0.0270000],[0.0446600,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0446600","Lat":"0.0270000","KPI":72,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0270000],[0.0472900,0.0270000],[0.0472900,0.0288000],[0.0446600,0.0288000],[0.0446600,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0446600","Lat":"0.0288000","KPI":285,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0288000],[0.0472900,0.0288000],[0.0472900,0.0306000],[0.0446600,0.0306000],[0.0446600,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0446600","Lat":"0.0306000","KPI":370,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0306000],[0.0472900,0.0306000],[0.0472900,0.0324000],[0.0446600,0.0324000],[0.0446600,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0446600","Lat":"0.0324000","KPI":55,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0324000],[0.0472900,0.0324000],[0.0472900,0.0342000],[0.0446600,0.0342000],[0.0446600,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0446600","Lat":"0.0342000","KPI":128,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0342000],[0.0472900,0.0342000],[0.0472900,0.0360000],[0.0446600,0.0360000],[0.0446600,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0446600","Lat":"0.0360000","KPI":337,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0360000],[0.0472900,0.0360000],[0.0472900,0.0378000],[0.0446600,0.0378000],[0.0446600,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0446600","Lat":"0.0378000","KPI":578,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0378000],[0.0472900,0.0378000],[0.0472900,0.0396000],[0.0446600,0.0396000],[0.0446600,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0446600","Lat":"0.0396000","KPI":15,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0396000],[0.0472900,0.0396000],[0.0472900,0.0414000],[0.0446600,0.0414000],[0.0446600,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0446600","Lat":"0.0414000","KPI":201,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0414000],[0.0472900,0.0414000],[0.0472900,0.0432000],[0.0446600,0.0432000],[0.0446600,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0446600","Lat":"0.0432000","KPI":623,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0432000],[0.0472900,0.0432000],[0.0472900,0.0450000],[0.0446600,0.0450000],[0.0446600,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0446600","Lat":"0.0450000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0450000],[0.0472900,0.0450000],[0.0472900,0.0468000],[0.0446600,0.0468000],[0.0446600,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0446600","Lat":"0.0468000","KPI":555,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0468000],[0.0472900,0.0468000],[0.0472900,0.0486000],[0.0446600,0.0486000],[0.0446600,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0446600","Lat":"0.0486000","KPI":731,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0486000],[0.0472900,0.0486000],[0.0472900,0.0504000],[0.0446600,0.0504000],[0.0446600,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0446600","Lat":"0.0504000","KPI":989,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0504000],[0.0472900,0.0504000],[0.0472900,0.0522000],[0.0446600,0.0522000],[0.0446600,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0446600","Lat":"0.0522000","KPI":499,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0522000],[0.0472900,0.0522000],[0.0472900,0.0540000],[0.0446600,0.0540000],[0.0446600,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0446600","Lat":"0.0540000","KPI":409,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0540000],[0.0472900,0.0540000],[0.0472900,0.0558000],[0.0446600,0.0558000],[0.0446600,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0446600","Lat":"0.0558000","KPI":113,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0558000],[0.0472900,0.0558000],[0.0472900,0.0576000],[0.0446600,0.0576000],[0.0446600,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0472900","Lat":"0.0000000","KPI":112,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0000000],[0.0499200,0.0000000],[0.0499200,0.0018000],[0.0472900,0.0018000],[0.0472900,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0472900","Lat":"0.0018000","KPI":172,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0018000],[0.0499200,0.0018000],[0.0499200,0.0036000],[0.0472900,0.0036000],[0.0472900,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0472900","Lat":"0.0036000","KPI":46,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0036000],[0.0499200,0.0036000],[0.0499200,0.0054000],[0.0472900,0.0054000],[0.0472900,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0472900","Lat":"0.0054000","KPI":907,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0054000],[0.0499200,0.0054000],[0.0499200,0.0072000],[0.0472900,0.0072000],[0.0472900,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0472900","Lat":"0.0072000","KPI":869,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0072000],[0.0499200,0.0072000],[0.0499200,0.0090000],[0.0472900,0.0090000],[0.0472900,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0472900","Lat":"0.0090000","KPI":261,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0090000],[0.0499200,0.0090000],[0.0499200,0.0108000],[0.0472900,0.0108000],[0.0472900,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0472900","Lat":"0.0108000","KPI":168,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0108000],[0.0499200,0.0108000],[0.0499200,0.0126000],[0.0472900,0.0126000],[0.0472900,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0472900","Lat":"0.0126000","KPI":875,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0126000],[0.0499200,0.0126000],[0.0499200,0.0144000],[0.0472900,0.0144000],[0.0472900,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0472900","Lat":"0.0144000","KPI":377,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0144000],[0.0499200,0.0144000],[0.0499200,0.0162000],[0.0472900,0.0162000],[0.0472900,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0472900","Lat":"0.0162000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0162000],[0.0499200,0.0162000],[0.0499200,0.0180000],[0.0472900,0.0180000],[0.0472900,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0472900","Lat":"0.0180000","KPI":11,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0180000],[0.0499200,0.0180000],[0.0499200,0.0198000],[0.0472900,0.0198000],[0.0472900,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0472900","Lat":"0.0198000","KPI":601,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0198000],[0.0499200,0.0198000],[0.0499200,0.0216000],[0.0472900,0.0216000],[0.0472900,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0472900","Lat":"0.0216000","KPI":546,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0216000],[0.0499200,0.0216000],[0.0499200,0.0234000],[0.0472900,0.0234000],[0.0472900,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0472900","Lat":"0.0234000","KPI":507,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0234000],[0.0499200,0.0234000],[0.0499200,0.0252000],[0.0472900,0.0252000],[0.0472900,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0472900","Lat":"0.0252000","KPI":395,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0252000],[0.0499200,0.0252000],[0.0499200,0.0270000],[0.0472900,0.0270000],[0.0472900,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0472900","Lat":"0.0270000","KPI":694,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0270000],[0.0499200,0.0270000],[0.0499200,0.0288000],[0.0472900,0.0288000],[0.0472900,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0472900","Lat":"0.0288000","KPI":180,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0288000],[0.0499200,0.0288000],[0.0499200,0.0306000],[0.0472900,0.0306000],[0.0472900,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0472900","Lat":"0.0306000","KPI":619,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0306000],[0.0499200,0.0306000],[0.0499200,0.0324000],[0.0472900,0.0324000],[0.0472900,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0472900","Lat":"0.0324000","KPI":721,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0324000],[0.0499200,0.0324000],[0.0499200,0.0342000],[0.0472900,0.0342000],[0.0472900,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0472900","Lat":"0.0342000","KPI":829,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0342000],[0.0499200,0.0342000],[0.0499200,0.0360000],[0.0472900,0.0360000],[0.0472900,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0472900","Lat":"0.0360000","KPI":966,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0360000],[0.0499200,0.0360000],[0.0499200,0.0378000],[0.0472900,0.0378000],[0.0472900,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0472900","Lat":"0.0378000","KPI":767,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0378000],[0.0499200,0.0378000],[0.0499200,0.0396000],[0.0472900,0.0396000],[0.0472900,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0472900","Lat":"0.0396000","KPI":340,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0396000],[0.0499200,0.0396000],[0.0499200,0.0414000],[0.0472900,0.0414000],[0.0472900,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0472900","Lat":"0.0414000","KPI":139,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0414000],[0.0499200,0.0414000],[0.0499200,0.0432000],[0.0472900,0.0432000],[0.0472900,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0472900","Lat":"0.0432000","KPI":905,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0432000],[0.0499200,0.0432000],[0.0499200,0.0450000],[0.0472900,0.0450000],[0.0472900,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0472900","Lat":"0.0450000","KPI":498,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0450000],[0.0499200,0.0450000],[0.0499200,0.0468000],[0.0472900,0.0468000],[0.0472900,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0472900","Lat":"0.0468000","KPI":999,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0468000],[0.0499200,0.0468000],[0.0499200,0.0486000],[0.0472900,0.0486000],[0.0472900,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0472900","Lat":"0.0486000","KPI":696,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0486000],[0.0499200,0.0486000],[0.0499200,0.0504000],[0.0472900,0.0504000],[0.0472900,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0472900","Lat":"0.0504000","KPI":8,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0504000],[0.0499200,0.0504000],[0.0499200,0.0522000],[0.0472900,0.0522000],[0.0472900,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0472900","Lat":"0.0522000","KPI":926,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0522000],[0.0499200,0.0522000],[0.0499200,0.0540000],[0.0472900,0.0540000],[0.0472900,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0472900","Lat":"0.0540000","KPI":300,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0540000],[0.0499200,0.0540000],[0.0499200,0.0558000],[0.0472900,0.0558000],[0.0472900,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0472900","Lat":"0.0558000","KPI":97,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0558000],[0.0499200,0.0558000],[0.0499200,0.0576000],[0.0472900,0.0576000],[0.0472900,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0499100","Lat":"0.0000000","KPI":319,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0000000],[0.0525400,0.0000000],[0.0525400,0.0018000],[0.0499100,0.0018000],[0.0499100,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0499100","Lat":"0.0018000","KPI":452,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0018000],[0.0525400,0.0018000],[0.0525400,0.0036000],[0.0499100,0.0036000],[0.0499100,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0499100","Lat":"0.0036000","KPI":369,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0036000],[0.0525400,0.0036000],[0.0525400,0.0054000],[0.0499100,0.0054000],[0.0499100,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0499100","Lat":"0.0054000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0054000],[0.0525400,0.0054000],[0.0525400,0.0072000],[0.0499100,0.0072000],[0.0499100,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0499100","Lat":"0.0072000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0072000],[0.0525400,0.0072000],[0.0525400,0.0090000],[0.0499100,0.0090000],[0.0499100,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0499100","Lat":"0.0090000","KPI":799,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0090000],[0.0525400,0.0090000],[0.0525400,0.0108000],[0.0499100,0.0108000],[0.0499100,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0499100","Lat":"0.0108000","KPI":168,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0108000],[0.0525400,0.0108000],[0.0525400,0.0126000],[0.0499100,0.0126000],[0.0499100,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0499100","Lat":"0.0126000","KPI":942,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0126000],[0.0525400,0.0126000],[0.0525400,0.0144000],[0.0499100,0.0144000],[0.0499100,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0499100","Lat":"0.0144000","KPI":120,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0144000],[0.0525400,0.0144000],[0.0525400,0.0162000],[0.0499100,0.0162000],[0.0499100,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0499100","Lat":"0.0162000","KPI":14,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0162000],[0.0525400,0.0162000],[0.0525400,0.0180000],[0.0499100,0.0180000],[0.0499100,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0499100","Lat":"0.0180000","KPI":141,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0180000],[0.0525400,0.0180000],[0.0525400,0.0198000],[0.0499100,0.0198000],[0.0499100,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0499100","Lat":"0.0198000","KPI":715,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0198000],[0.0525400,0.0198000],[0.0525400,0.0216000],[0.0499100,0.0216000],[0.0499100,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0499100","Lat":"0.0216000","KPI":747,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0216000],[0.0525400,0.0216000],[0.0525400,0.0234000],[0.0499100,0.0234000],[0.0499100,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0499100","Lat":"0.0234000","KPI":294,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0234000],[0.0525400,0.0234000],[0.0525400,0.0252000],[0.0499100,0.0252000],[0.0499100,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0499100","Lat":"0.0252000","KPI":152,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0252000],[0.0525400,0.0252000],[0.0525400,0.0270000],[0.0499100,0.0270000],[0.0499100,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0499100","Lat":"0.0270000","KPI":429,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0270000],[0.0525400,0.0270000],[0.0525400,0.0288000],[0.0499100,0.0288000],[0.0499100,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0499100","Lat":"0.0288000","KPI":767,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0288000],[0.0525400,0.0288000],[0.0525400,0.0306000],[0.0499100,0.0306000],[0.0499100,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0499100","Lat":"0.0306000","KPI":777,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0306000],[0.0525400,0.0306000],[0.0525400,0.0324000],[0.0499100,0.0324000],[0.0499100,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0499100","Lat":"0.0324000","KPI":883,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0324000],[0.0525400,0.0324000],[0.0525400,0.0342000],[0.0499100,0.0342000],[0.0499100,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0499100","Lat":"0.0342000","KPI":398,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0342000],[0.0525400,0.0342000],[0.0525400,0.0360000],[0.0499100,0.0360000],[0.0499100,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0499100","Lat":"0.0360000","KPI":385,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0360000],[0.0525400,0.0360000],[0.0525400,0.0378000],[0.0499100,0.0378000],[0.0499100,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0499100","Lat":"0.0378000","KPI":679,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0378000],[0.0525400,0.0378000],[0.0525400,0.0396000],[0.0499100,0.0396000],[0.0499100,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0499100","Lat":"0.0396000","KPI":149,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0396000],[0.0525400,0.0396000],[0.0525400,0.0414000],[0.0499100,0.0414000],[0.0499100,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0499100","Lat":"0.0414000","KPI":814,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0414000],[0.0525400,0.0414000],[0.0525400,0.0432000],[0.0499100,0.0432000],[0.0499100,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0499100","Lat":"0.0432000","KPI":102,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0432000],[0.0525400,0.0432000],[0.0525400,0.0450000],[0.0499100,0.0450000],[0.0499100,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0499100","Lat":"0.0450000","KPI":394,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0450000],[0.0525400,0.0450000],[0.0525400,0.0468000],[0.0499100,0.0468000],[0.0499100,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0499100","Lat":"0.0468000","KPI":819,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0468000],[0.0525400,0.0468000],[0.0525400,0.0486000],[0.0499100,0.0486000],[0.0499100,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0499100","Lat":"0.0486000","KPI":150,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0486000],[0.0525400,0.0486000],[0.0525400,0.0504000],[0.0499100,0.0504000],[0.0499100,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0499100","Lat":"0.0504000","KPI":893,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0504000],[0.0525400,0.0504000],[0.0525400,0.0522000],[0.0499100,0.0522000],[0.0499100,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0499100","Lat":"0.0522000","KPI":447,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0522000],[0.0525400,0.0522000],[0.0525400,0.0540000],[0.0499100,0.0540000],[0.0499100,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0499100","Lat":"0.0540000","KPI":278,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0540000],[0.0525400,0.0540000],[0.0525400,0.0558000],[0.0499100,0.0558000],[0.0499100,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0499100","Lat":"0.0558000","KPI":694,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0558000],[0.0525400,0.0558000],[0.0525400,0.0576000],[0.0499100,0.0576000],[0.0499100,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0525400","Lat":"0.0000000","KPI":253,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0000000],[0.0551700,0.0000000],[0.0551700,0.0018000],[0.0525400,0.0018000],[0.0525400,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0525400","Lat":"0.0018000","KPI":427,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0018000],[0.0551700,0.0018000],[0.0551700,0.0036000],[0.0525400,0.0036000],[0.0525400,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0525400","Lat":"0.0036000","KPI":632,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0036000],[0.0551700,0.0036000],[0.0551700,0.0054000],[0.0525400,0.0054000],[0.0525400,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0525400","Lat":"0.0054000","KPI":475,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0054000],[0.0551700,0.0054000],[0.0551700,0.0072000],[0.0525400,0.0072000],[0.0525400,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0525400","Lat":"0.0072000","KPI":416,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0072000],[0.0551700,0.0072000],[0.0551700,0.0090000],[0.0525400,0.0090000],[0.0525400,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0525400","Lat":"0.0090000","KPI":272,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0090000],[0.0551700,0.0090000],[0.0551700,0.0108000],[0.0525400,0.0108000],[0.0525400,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0525400","Lat":"0.0108000","KPI":80,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0108000],[0.0551700,0.0108000],[0.0551700,0.0126000],[0.0525400,0.0126000],[0.0525400,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0525400","Lat":"0.0126000","KPI":69,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0126000],[0.0551700,0.0126000],[0.0551700,0.0144000],[0.0525400,0.0144000],[0.0525400,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0525400","Lat":"0.0144000","KPI":319,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0144000],[0.0551700,0.0144000],[0.0551700,0.0162000],[0.0525400,0.0162000],[0.0525400,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0525400","Lat":"0.0162000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0162000],[0.0551700,0.0162000],[0.0551700,0.0180000],[0.0525400,0.0180000],[0.0525400,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0525400","Lat":"0.0180000","KPI":174,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0180000],[0.0551700,0.0180000],[0.0551700,0.0198000],[0.0525400,0.0198000],[0.0525400,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0525400","Lat":"0.0198000","KPI":57,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0198000],[0.0551700,0.0198000],[0.0551700,0.0216000],[0.0525400,0.0216000],[0.0525400,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0525400","Lat":"0.0216000","KPI":121,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0216000],[0.0551700,0.0216000],[0.0551700,0.0234000],[0.0525400,0.0234000],[0.0525400,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0525400","Lat":"0.0234000","KPI":571,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0234000],[0.0551700,0.0234000],[0.0551700,0.0252000],[0.0525400,0.0252000],[0.0525400,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0525400","Lat":"0.0252000","KPI":869,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0252000],[0.0551700,0.0252000],[0.0551700,0.0270000],[0.0525400,0.0270000],[0.0525400,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0525400","Lat":"0.0270000","KPI":129,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0270000],[0.0551700,0.0270000],[0.0551700,0.0288000],[0.0525400,0.0288000],[0.0525400,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0525400","Lat":"0.0288000","KPI":349,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0288000],[0.0551700,0.0288000],[0.0551700,0.0306000],[0.0525400,0.0306000],[0.0525400,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0525400","Lat":"0.0306000","KPI":568,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0306000],[0.0551700,0.0306000],[0.0551700,0.0324000],[0.0525400,0.0324000],[0.0525400,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0525400","Lat":"0.0324000","KPI":592,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0324000],[0.0551700,0.0324000],[0.0551700,0.0342000],[0.0525400,0.0342000],[0.0525400,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0525400","Lat":"0.0342000","KPI":87,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0342000],[0.0551700,0.0342000],[0.0551700,0.0360000],[0.0525400,0.0360000],[0.0525400,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0525400","Lat":"0.0360000","KPI":993,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0360000],[0.0551700,0.0360000],[0.0551700,0.0378000],[0.0525400,0.0378000],[0.0525400,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0525400","Lat":"0.0378000","KPI":157,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0378000],[0.0551700,0.0378000],[0.0551700,0.0396000],[0.0525400,0.0396000],[0.0525400,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0525400","Lat":"0.0396000","KPI":748,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0396000],[0.0551700,0.0396000],[0.0551700,0.0414000],[0.0525400,0.0414000],[0.0525400,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0525400","Lat":"0.0414000","KPI":260,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0414000],[0.0551700,0.0414000],[0.0551700,0.0432000],[0.0525400,0.0432000],[0.0525400,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0525400","Lat":"0.0432000","KPI":97,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0432000],[0.0551700,0.0432000],[0.0551700,0.0450000],[0.0525400,0.0450000],[0.0525400,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0525400","Lat":"0.0450000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0450000],[0.0551700,0.0450000],[0.0551700,0.0468000],[0.0525400,0.0468000],[0.0525400,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0525400","Lat":"0.0468000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0468000],[0.0551700,0.0468000],[0.0551700,0.0486000],[0.0525400,0.0486000],[0.0525400,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0525400","Lat":"0.0486000","KPI":71,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0486000],[0.0551700,0.0486000],[0.0551700,0.0504000],[0.0525400,0.0504000],[0.0525400,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0525400","Lat":"0.0504000","KPI":682,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0504000],[0.0551700,0.0504000],[0.0551700,0.0522000],[0.0525400,0.0522000],[0.0525400,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0525400","Lat":"0.0522000","KPI":494,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0522000],[0.0551700,0.0522000],[0.0551700,0.0540000],[0.0525400,0.0540000],[0.0525400,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0525400","Lat":"0.0540000","KPI":789,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0540000],[0.0551700,0.0540000],[0.0551700,0.0558000],[0.0525400,0.0558000],[0.0525400,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0525400","Lat":"0.0558000","KPI":777,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0558000],[0.0551700,0.0558000],[0.0551700,0.0576000],[0.0525400,0.0576000],[0.0525400,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0551700","Lat":"0.0000000","KPI":65,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0000000],[0.0578000,0.0000000],[0.0578000,0.0018000],[0.0551700,0.0018000],[0.0551700,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0551700","Lat":"0.0018000","KPI":565,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0018000],[0.0578000,0.0018000],[0.0578000,0.0036000],[0.0551700,0.0036000],[0.0551700,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0551700","Lat":"0.0036000","KPI":721,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0036000],[0.0578000,0.0036000],[0.0578000,0.0054000],[0.0551700,0.0054000],[0.0551700,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0551700","Lat":"0.0054000","KPI":616,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0054000],[0.0578000,0.0054000],[0.0578000,0.0072000],[0.0551700,0.0072000],[0.0551700,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0551700","Lat":"0.0072000","KPI":871,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0072000],[0.0578000,0.0072000],[0.0578000,0.0090000],[0.0551700,0.0090000],[0.0551700,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0551700","Lat":"0.0090000","KPI":50,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0090000],[0.0578000,0.0090000],[0.0578000,0.0108000],[0.0551700,0.0108000],[0.0551700,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0551700","Lat":"0.0108000","KPI":864,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0108000],[0.0578000,0.0108000],[0.0578000,0.0126000],[0.0551700,0.0126000],[0.0551700,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0551700","Lat":"0.0126000","KPI":880,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0126000],[0.0578000,0.0126000],[0.0578000,0.0144000],[0.0551700,0.0144000],[0.0551700,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0551700","Lat":"0.0144000","KPI":336,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0144000],[0.0578000,0.0144000],[0.0578000,0.0162000],[0.0551700,0.0162000],[0.0551700,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0551700","Lat":"0.0162000","KPI":200,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0162000],[0.0578000,0.0162000],[0.0578000,0.0180000],[0.0551700,0.0180000],[0.0551700,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0551700","Lat":"0.0180000","KPI":43,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0180000],[0.0578000,0.0180000],[0.0578000,0.0198000],[0.0551700,0.0198000],[0.0551700,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0551700","Lat":"0.0198000","KPI":672,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0198000],[0.0578000,0.0198000],[0.0578000,0.0216000],[0.0551700,0.0216000],[0.0551700,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0551700","Lat":"0.0216000","KPI":688,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0216000],[0.0578000,0.0216000],[0.0578000,0.0234000],[0.0551700,0.0234000],[0.0551700,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0551700","Lat":"0.0234000","KPI":240,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0234000],[0.0578000,0.0234000],[0.0578000,0.0252000],[0.0551700,0.0252000],[0.0551700,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0551700","Lat":"0.0252000","KPI":644,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0252000],[0.0578000,0.0252000],[0.0578000,0.0270000],[0.0551700,0.0270000],[0.0551700,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0551700","Lat":"0.0270000","KPI":324,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0270000],[0.0578000,0.0270000],[0.0578000,0.0288000],[0.0551700,0.0288000],[0.0551700,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0551700","Lat":"0.0288000","KPI":687,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0288000],[0.0578000,0.0288000],[0.0578000,0.0306000],[0.0551700,0.0306000],[0.0551700,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0551700","Lat":"0.0306000","KPI":87,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0306000],[0.0578000,0.0306000],[0.0578000,0.0324000],[0.0551700,0.0324000],[0.0551700,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0551700","Lat":"0.0324000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0324000],[0.0578000,0.0324000],[0.0578000,0.0342000],[0.0551700,0.0342000],[0.0551700,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0551700","Lat":"0.0342000","KPI":767,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0342000],[0.0578000,0.0342000],[0.0578000,0.0360000],[0.0551700,0.0360000],[0.0551700,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0551700","Lat":"0.0360000","KPI":648,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0360000],[0.0578000,0.0360000],[0.0578000,0.0378000],[0.0551700,0.0378000],[0.0551700,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0551700","Lat":"0.0378000","KPI":479,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0378000],[0.0578000,0.0378000],[0.0578000,0.0396000],[0.0551700,0.0396000],[0.0551700,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0551700","Lat":"0.0396000","KPI":254,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0396000],[0.0578000,0.0396000],[0.0578000,0.0414000],[0.0551700,0.0414000],[0.0551700,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0551700","Lat":"0.0414000","KPI":323,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0414000],[0.0578000,0.0414000],[0.0578000,0.0432000],[0.0551700,0.0432000],[0.0551700,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0551700","Lat":"0.0432000","KPI":487,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0432000],[0.0578000,0.0432000],[0.0578000,0.0450000],[0.0551700,0.0450000],[0.0551700,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0551700","Lat":"0.0450000","KPI":134,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0450000],[0.0578000,0.0450000],[0.0578000,0.0468000],[0.0551700,0.0468000],[0.0551700,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0551700","Lat":"0.0468000","KPI":153,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0468000],[0.0578000,0.0468000],[0.0578000,0.0486000],[0.0551700,0.0486000],[0.0551700,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0551700","Lat":"0.0486000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0486000],[0.0578000,0.0486000],[0.0578000,0.0504000],[0.0551700,0.0504000],[0.0551700,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0551700","Lat":"0.0504000","KPI":637,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0504000],[0.0578000,0.0504000],[0.0578000,0.0522000],[0.0551700,0.0522000],[0.0551700,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0551700","Lat":"0.0522000","KPI":821,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0522000],[0.0578000,0.0522000],[0.0578000,0.0540000],[0.0551700,0.0540000],[0.0551700,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0551700","Lat":"0.0540000","KPI":91,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0540000],[0.0578000,0.0540000],[0.0578000,0.0558000],[0.0551700,0.0558000],[0.0551700,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0551700","Lat":"0.0558000","KPI":170,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0558000],[0.0578000,0.0558000],[0.0578000,0.0576000],[0.0551700,0.0576000],[0.0551700,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0577900","Lat":"0.0000000","KPI":881,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0000000],[0.0604200,0.0000000],[0.0604200,0.0018000],[0.0577900,0.0018000],[0.0577900,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0577900","Lat":"0.0018000","KPI":470,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0018000],[0.0604200,0.0018000],[0.0604200,0.0036000],[0.0577900,0.0036000],[0.0577900,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0577900","Lat":"0.0036000","KPI":220,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0036000],[0.0604200,0.0036000],[0.0604200,0.0054000],[0.0577900,0.0054000],[0.0577900,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0577900","Lat":"0.0054000","KPI":209,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0054000],[0.0604200,0.0054000],[0.0604200,0.0072000],[0.0577900,0.0072000],[0.0577900,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0577900","Lat":"0.0072000","KPI":422,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0072000],[0.0604200,0.0072000],[0.0604200,0.0090000],[0.0577900,0.0090000],[0.0577900,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0577900","Lat":"0.0090000","KPI":705,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0090000],[0.0604200,0.0090000],[0.0604200,0.0108000],[0.0577900,0.0108000],[0.0577900,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0577900","Lat":"0.0108000","KPI":298,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0108000],[0.0604200,0.0108000],[0.0604200,0.0126000],[0.0577900,0.0126000],[0.0577900,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0577900","Lat":"0.0126000","KPI":80,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0126000],[0.0604200,0.0126000],[0.0604200,0.0144000],[0.0577900,0.0144000],[0.0577900,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0577900","Lat":"0.0144000","KPI":763,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0144000],[0.0604200,0.0144000],[0.0604200,0.0162000],[0.0577900,0.0162000],[0.0577900,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0577900","Lat":"0.0162000","KPI":420,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0162000],[0.0604200,0.0162000],[0.0604200,0.0180000],[0.0577900,0.0180000],[0.0577900,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0577900","Lat":"0.0180000","KPI":883,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0180000],[0.0604200,0.0180000],[0.0604200,0.0198000],[0.0577900,0.0198000],[0.0577900,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0577900","Lat":"0.0198000","KPI":123,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0198000],[0.0604200,0.0198000],[0.0604200,0.0216000],[0.0577900,0.0216000],[0.0577900,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0577900","Lat":"0.0216000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0216000],[0.0604200,0.0216000],[0.0604200,0.0234000],[0.0577900,0.0234000],[0.0577900,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0577900","Lat":"0.0234000","KPI":289,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0234000],[0.0604200,0.0234000],[0.0604200,0.0252000],[0.0577900,0.0252000],[0.0577900,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0577900","Lat":"0.0252000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0252000],[0.0604200,0.0252000],[0.0604200,0.0270000],[0.0577900,0.0270000],[0.0577900,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0577900","Lat":"0.0270000","KPI":761,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0270000],[0.0604200,0.0270000],[0.0604200,0.0288000],[0.0577900,0.0288000],[0.0577900,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0577900","Lat":"0.0288000","KPI":29,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0288000],[0.0604200,0.0288000],[0.0604200,0.0306000],[0.0577900,0.0306000],[0.0577900,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0577900","Lat":"0.0306000","KPI":329,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0306000],[0.0604200,0.0306000],[0.0604200,0.0324000],[0.0577900,0.0324000],[0.0577900,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0577900","Lat":"0.0324000","KPI":290,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0324000],[0.0604200,0.0324000],[0.0604200,0.0342000],[0.0577900,0.0342000],[0.0577900,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0577900","Lat":"0.0342000","KPI":467,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0342000],[0.0604200,0.0342000],[0.0604200,0.0360000],[0.0577900,0.0360000],[0.0577900,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0577900","Lat":"0.0360000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0360000],[0.0604200,0.0360000],[0.0604200,0.0378000],[0.0577900,0.0378000],[0.0577900,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0577900","Lat":"0.0378000","KPI":895,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0378000],[0.0604200,0.0378000],[0.0604200,0.0396000],[0.0577900,0.0396000],[0.0577900,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0577900","Lat":"0.0396000","KPI":617,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0396000],[0.0604200,0.0396000],[0.0604200,0.0414000],[0.0577900,0.0414000],[0.0577900,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0577900","Lat":"0.0414000","KPI":199,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0414000],[0.0604200,0.0414000],[0.0604200,0.0432000],[0.0577900,0.0432000],[0.0577900,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0577900","Lat":"0.0432000","KPI":616,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0432000],[0.0604200,0.0432000],[0.0604200,0.0450000],[0.0577900,0.0450000],[0.0577900,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0577900","Lat":"0.0450000","KPI":741,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0450000],[0.0604200,0.0450000],[0.0604200,0.0468000],[0.0577900,0.0468000],[0.0577900,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0577900","Lat":"0.0468000","KPI":944,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0468000],[0.0604200,0.0468000],[0.0604200,0.0486000],[0.0577900,0.0486000],[0.0577900,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0577900","Lat":"0.0486000","KPI":58,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0486000],[0.0604200,0.0486000],[0.0604200,0.0504000],[0.0577900,0.0504000],[0.0577900,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0577900","Lat":"0.0504000","KPI":266,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0504000],[0.0604200,0.0504000],[0.0604200,0.0522000],[0.0577900,0.0522000],[0.0577900,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0577900","Lat":"0.0522000","KPI":33,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0522000],[0.0604200,0.0522000],[0.0604200,0.0540000],[0.0577900,0.0540000],[0.0577900,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0577900","Lat":"0.0540000","KPI":287,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0540000],[0.0604200,0.0540000],[0.0604200,0.0558000],[0.0577900,0.0558000],[0.0577900,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0577900","Lat":"0.0558000","KPI":172,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0558000],[0.0604200,0.0558000],[0.0604200,0.0576000],[0.0577900,0.0576000],[0.0577900,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0604200","Lat":"0.0000000","KPI":829,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0000000],[0.0630500,0.0000000],[0.0630500,0.0018000],[0.0604200,0.0018000],[0.0604200,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0604200","Lat":"0.0018000","KPI":415,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0018000],[0.0630500,0.0018000],[0.0630500,0.0036000],[0.0604200,0.0036000],[0.0604200,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0604200","Lat":"0.0036000","KPI":432,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0036000],[0.0630500,0.0036000],[0.0630500,0.0054000],[0.0604200,0.0054000],[0.0604200,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0604200","Lat":"0.0054000","KPI":62,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0054000],[0.0630500,0.0054000],[0.0630500,0.0072000],[0.0604200,0.0072000],[0.0604200,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0604200","Lat":"0.0072000","KPI":551,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0072000],[0.0630500,0.0072000],[0.0630500,0.0090000],[0.0604200,0.0090000],[0.0604200,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0604200","Lat":"0.0090000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0090000],[0.0630500,0.0090000],[0.0630500,0.0108000],[0.0604200,0.0108000],[0.0604200,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0604200","Lat":"0.0108000","KPI":14,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0108000],[0.0630500,0.0108000],[0.0630500,0.0126000],[0.0604200,0.0126000],[0.0604200,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0604200","Lat":"0.0126000","KPI":986,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0126000],[0.0630500,0.0126000],[0.0630500,0.0144000],[0.0604200,0.0144000],[0.0604200,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0604200","Lat":"0.0144000","KPI":452,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0144000],[0.0630500,0.0144000],[0.0630500,0.0162000],[0.0604200,0.0162000],[0.0604200,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0604200","Lat":"0.0162000","KPI":695,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0162000],[0.0630500,0.0162000],[0.0630500,0.0180000],[0.0604200,0.0180000],[0.0604200,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0604200","Lat":"0.0180000","KPI":60,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0180000],[0.0630500,0.0180000],[0.0630500,0.0198000],[0.0604200,0.0198000],[0.0604200,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0604200","Lat":"0.0198000","KPI":29,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0198000],[0.0630500,0.0198000],[0.0630500,0.0216000],[0.0604200,0.0216000],[0.0604200,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0604200","Lat":"0.0216000","KPI":189,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0216000],[0.0630500,0.0216000],[0.0630500,0.0234000],[0.0604200,0.0234000],[0.0604200,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0604200","Lat":"0.0234000","KPI":325,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0234000],[0.0630500,0.0234000],[0.0630500,0.0252000],[0.0604200,0.0252000],[0.0604200,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0604200","Lat":"0.0252000","KPI":937,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0252000],[0.0630500,0.0252000],[0.0630500,0.0270000],[0.0604200,0.0270000],[0.0604200,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0604200","Lat":"0.0270000","KPI":930,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0270000],[0.0630500,0.0270000],[0.0630500,0.0288000],[0.0604200,0.0288000],[0.0604200,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0604200","Lat":"0.0288000","KPI":140,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0288000],[0.0630500,0.0288000],[0.0630500,0.0306000],[0.0604200,0.0306000],[0.0604200,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0604200","Lat":"0.0306000","KPI":727,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0306000],[0.0630500,0.0306000],[0.0630500,0.0324000],[0.0604200,0.0324000],[0.0604200,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0604200","Lat":"0.0324000","KPI":896,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0324000],[0.0630500,0.0324000],[0.0630500,0.0342000],[0.0604200,0.0342000],[0.0604200,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0604200","Lat":"0.0342000","KPI":902,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0342000],[0.0630500,0.0342000],[0.0630500,0.0360000],[0.0604200,0.0360000],[0.0604200,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0604200","Lat":"0.0360000","KPI":21,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0360000],[0.0630500,0.0360000],[0.0630500,0.0378000],[0.0604200,0.0378000],[0.0604200,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0604200","Lat":"0.0378000","KPI":153,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0378000],[0.0630500,0.0378000],[0.0630500,0.0396000],[0.0604200,0.0396000],[0.0604200,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0604200","Lat":"0.0396000","KPI":659,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0396000],[0.0630500,0.0396000],[0.0630500,0.0414000],[0.0604200,0.0414000],[0.0604200,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0604200","Lat":"0.0414000","KPI":960,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0414000],[0.0630500,0.0414000],[0.0630500,0.0432000],[0.0604200,0.0432000],[0.0604200,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0604200","Lat":"0.0432000","KPI":604,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0432000],[0.0630500,0.0432000],[0.0630500,0.0450000],[0.0604200,0.0450000],[0.0604200,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0604200","Lat":"0.0450000","KPI":23,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0450000],[0.0630500,0.0450000],[0.0630500,0.0468000],[0.0604200,0.0468000],[0.0604200,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0604200","Lat":"0.0468000","KPI":726,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0468000],[0.0630500,0.0468000],[0.0630500,0.0486000],[0.0604200,0.0486000],[0.0604200,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0604200","Lat":"0.0486000","KPI":491,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0486000],[0.0630500,0.0486000],[0.0630500,0.0504000],[0.0604200,0.0504000],[0.0604200,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0604200","Lat":"0.0504000","KPI":358,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0504000],[0.0630500,0.0504000],[0.0630500,0.0522000],[0.0604200,0.0522000],[0.0604200,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0604200","Lat":"0.0522000","KPI":119,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0522000],[0.0630500,0.0522000],[0.0630500,0.0540000],[0.0604200,0.0540000],[0.0604200,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0604200","Lat":"0.0540000","KPI":357,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0540000],[0.0630500,0.0540000],[0.0630500,0.0558000],[0.0604200,0.0558000],[0.0604200,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0604200","Lat":"0.0558000","KPI":97,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0558000],[0.0630500,0.0558000],[0.0630500,0.0576000],[0.0604200,0.0576000],[0.0604200,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0630500","Lat":"0.0000000","KPI":73,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0000000],[0.0656800,0.0000000],[0.0656800,0.0018000],[0.0630500,0.0018000],[0.0630500,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0630500","Lat":"0.0018000","KPI":873,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0018000],[0.0656800,0.0018000],[0.0656800,0.0036000],[0.0630500,0.0036000],[0.0630500,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0630500","Lat":"0.0036000","KPI":419,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0036000],[0.0656800,0.0036000],[0.0656800,0.0054000],[0.0630500,0.0054000],[0.0630500,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0630500","Lat":"0.0054000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0054000],[0.0656800,0.0054000],[0.0656800,0.0072000],[0.0630500,0.0072000],[0.0630500,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0630500","Lat":"0.0072000","KPI":780,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0072000],[0.0656800,0.0072000],[0.0656800,0.0090000],[0.0630500,0.0090000],[0.0630500,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0630500","Lat":"0.0090000","KPI":143,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0090000],[0.0656800,0.0090000],[0.0656800,0.0108000],[0.0630500,0.0108000],[0.0630500,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0630500","Lat":"0.0108000","KPI":531,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0108000],[0.0656800,0.0108000],[0.0656800,0.0126000],[0.0630500,0.0126000],[0.0630500,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0630500","Lat":"0.0126000","KPI":57,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0126000],[0.0656800,0.0126000],[0.0656800,0.0144000],[0.0630500,0.0144000],[0.0630500,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0630500","Lat":"0.0144000","KPI":549,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0144000],[0.0656800,0.0144000],[0.0656800,0.0162000],[0.0630500,0.0162000],[0.0630500,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0630500","Lat":"0.0162000","KPI":101,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0162000],[0.0656800,0.0162000],[0.0656800,0.0180000],[0.0630500,0.0180000],[0.0630500,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0630500","Lat":"0.0180000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0180000],[0.0656800,0.0180000],[0.0656800,0.0198000],[0.0630500,0.0198000],[0.0630500,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0630500","Lat":"0.0198000","KPI":593,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0198000],[0.0656800,0.0198000],[0.0656800,0.0216000],[0.0630500,0.0216000],[0.0630500,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0630500","Lat":"0.0216000","KPI":961,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0216000],[0.0656800,0.0216000],[0.0656800,0.0234000],[0.0630500,0.0234000],[0.0630500,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0630500","Lat":"0.0234000","KPI":101,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0234000],[0.0656800,0.0234000],[0.0656800,0.0252000],[0.0630500,0.0252000],[0.0630500,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0630500","Lat":"0.0252000","KPI":923,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0252000],[0.0656800,0.0252000],[0.0656800,0.0270000],[0.0630500,0.0270000],[0.0630500,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0630500","Lat":"0.0270000","KPI":597,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0270000],[0.0656800,0.0270000],[0.0656800,0.0288000],[0.0630500,0.0288000],[0.0630500,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0630500","Lat":"0.0288000","KPI":339,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0288000],[0.0656800,0.0288000],[0.0656800,0.0306000],[0.0630500,0.0306000],[0.0630500,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0630500","Lat":"0.0306000","KPI":677,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0306000],[0.0656800,0.0306000],[0.0656800,0.0324000],[0.0630500,0.0324000],[0.0630500,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0630500","Lat":"0.0324000","KPI":351,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0324000],[0.0656800,0.0324000],[0.0656800,0.0342000],[0.0630500,0.0342000],[0.0630500,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0630500","Lat":"0.0342000","KPI":4,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0342000],[0.0656800,0.0342000],[0.0656800,0.0360000],[0.0630500,0.0360000],[0.0630500,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0630500","Lat":"0.0360000","KPI":39,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0360000],[0.0656800,0.0360000],[0.0656800,0.0378000],[0.0630500,0.0378000],[0.0630500,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0630500","Lat":"0.0378000","KPI":36,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0378000],[0.0656800,0.0378000],[0.0656800,0.0396000],[0.0630500,0.0396000],[0.0630500,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0630500","Lat":"0.0396000","KPI":101,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0396000],[0.0656800,0.0396000],[0.0656800,0.0414000],[0.0630500,0.0414000],[0.0630500,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0630500","Lat":"0.0414000","KPI":85,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0414000],[0.0656800,0.0414000],[0.0656800,0.0432000],[0.0630500,0.0432000],[0.0630500,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0630500","Lat":"0.0432000","KPI":379,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0432000],[0.0656800,0.0432000],[0.0656800,0.0450000],[0.0630500,0.0450000],[0.0630500,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0630500","Lat":"0.0450000","KPI":670,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0450000],[0.0656800,0.0450000],[0.0656800,0.0468000],[0.0630500,0.0468000],[0.0630500,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0630500","Lat":"0.0468000","KPI":773,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0468000],[0.0656800,0.0468000],[0.0656800,0.0486000],[0.0630500,0.0486000],[0.0630500,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0630500","Lat":"0.0486000","KPI":194,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0486000],[0.0656800,0.0486000],[0.0656800,0.0504000],[0.0630500,0.0504000],[0.0630500,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0630500","Lat":"0.0504000","KPI":17,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0504000],[0.0656800,0.0504000],[0.0656800,0.0522000],[0.0630500,0.0522000],[0.0630500,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0630500","Lat":"0.0522000","KPI":982,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0522000],[0.0656800,0.0522000],[0.0656800,0.0540000],[0.0630500,0.0540000],[0.0630500,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0630500","Lat":"0.0540000","KPI":191,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0540000],[0.0656800,0.0540000],[0.0656800,0.0558000],[0.0630500,0.0558000],[0.0630500,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0630500","Lat":"0.0558000","KPI":797,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0558000],[0.0656800,0.0558000],[0.0656800,0.0576000],[0.0630500,0.0576000],[0.0630500,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0656800","Lat":"0.0000000","KPI":841,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0000000],[0.0683100,0.0000000],[0.0683100,0.0018000],[0.0656800,0.0018000],[0.0656800,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0656800","Lat":"0.0018000","KPI":46,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0018000],[0.0683100,0.0018000],[0.0683100,0.0036000],[0.0656800,0.0036000],[0.0656800,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0656800","Lat":"0.0036000","KPI":29,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0036000],[0.0683100,0.0036000],[0.0683100,0.0054000],[0.0656800,0.0054000],[0.0656800,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0656800","Lat":"0.0054000","KPI":51,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0054000],[0.0683100,0.0054000],[0.0683100,0.0072000],[0.0656800,0.0072000],[0.0656800,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0656800","Lat":"0.0072000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0072000],[0.0683100,0.0072000],[0.0683100,0.0090000],[0.0656800,0.0090000],[0.0656800,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0656800","Lat":"0.0090000","KPI":872,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0090000],[0.0683100,0.0090000],[0.0683100,0.0108000],[0.0656800,0.0108000],[0.0656800,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0656800","Lat":"0.0108000","KPI":279,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0108000],[0.0683100,0.0108000],[0.0683100,0.0126000],[0.0656800,0.0126000],[0.0656800,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0656800","Lat":"0.0126000","KPI":427,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0126000],[0.0683100,0.0126000],[0.0683100,0.0144000],[0.0656800,0.0144000],[0.0656800,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0656800","Lat":"0.0144000","KPI":522,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0144000],[0.0683100,0.0144000],[0.0683100,0.0162000],[0.0656800,0.0162000],[0.0656800,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0656800","Lat":"0.0162000","KPI":825,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0162000],[0.0683100,0.0162000],[0.0683100,0.0180000],[0.0656800,0.0180000],[0.0656800,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0656800","Lat":"0.0180000","KPI":238,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0180000],[0.0683100,0.0180000],[0.0683100,0.0198000],[0.0656800,0.0198000],[0.0656800,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0656800","Lat":"0.0198000","KPI":132,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0198000],[0.0683100,0.0198000],[0.0683100,0.0216000],[0.0656800,0.0216000],[0.0656800,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0656800","Lat":"0.0216000","KPI":664,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0216000],[0.0683100,0.0216000],[0.0683100,0.0234000],[0.0656800,0.0234000],[0.0656800,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0656800","Lat":"0.0234000","KPI":52,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0234000],[0.0683100,0.0234000],[0.0683100,0.0252000],[0.0656800,0.0252000],[0.0656800,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0656800","Lat":"0.0252000","KPI":967,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0252000],[0.0683100,0.0252000],[0.0683100,0.0270000],[0.0656800,0.0270000],[0.0656800,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0656800","Lat":"0.0270000","KPI":334,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0270000],[0.0683100,0.0270000],[0.0683100,0.0288000],[0.0656800,0.0288000],[0.0656800,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0656800","Lat":"0.0288000","KPI":523,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0288000],[0.0683100,0.0288000],[0.0683100,0.0306000],[0.0656800,0.0306000],[0.0656800,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0656800","Lat":"0.0306000","KPI":73,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0306000],[0.0683100,0.0306000],[0.0683100,0.0324000],[0.0656800,0.0324000],[0.0656800,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0656800","Lat":"0.0324000","KPI":407,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0324000],[0.0683100,0.0324000],[0.0683100,0.0342000],[0.0656800,0.0342000],[0.0656800,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0656800","Lat":"0.0342000","KPI":451,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0342000],[0.0683100,0.0342000],[0.0683100,0.0360000],[0.0656800,0.0360000],[0.0656800,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0656800","Lat":"0.0360000","KPI":766,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0360000],[0.0683100,0.0360000],[0.0683100,0.0378000],[0.0656800,0.0378000],[0.0656800,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0656800","Lat":"0.0378000","KPI":887,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0378000],[0.0683100,0.0378000],[0.0683100,0.0396000],[0.0656800,0.0396000],[0.0656800,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0656800","Lat":"0.0396000","KPI":594,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0396000],[0.0683100,0.0396000],[0.0683100,0.0414000],[0.0656800,0.0414000],[0.0656800,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0656800","Lat":"0.0414000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0414000],[0.0683100,0.0414000],[0.0683100,0.0432000],[0.0656800,0.0432000],[0.0656800,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0656800","Lat":"0.0432000","KPI":710,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0432000],[0.0683100,0.0432000],[0.0683100,0.0450000],[0.0656800,0.0450000],[0.0656800,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0656800","Lat":"0.0450000","KPI":250,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0450000],[0.0683100,0.0450000],[0.0683100,0.0468000],[0.0656800,0.0468000],[0.0656800,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0656800","Lat":"0.0468000","KPI":669,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0468000],[0.0683100,0.0468000],[0.0683100,0.0486000],[0.0656800,0.0486000],[0.0656800,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0656800","Lat":"0.0486000","KPI":740,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0486000],[0.0683100,0.0486000],[0.0683100,0.0504000],[0.0656800,0.0504000],[0.0656800,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0656800","Lat":"0.0504000","KPI":687,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0504000],[0.0683100,0.0504000],[0.0683100,0.0522000],[0.0656800,0.0522000],[0.0656800,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0656800","Lat":"0.0522000","KPI":972,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0522000],[0.0683100,0.0522000],[0.0683100,0.0540000],[0.0656800,0.0540000],[0.0656800,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0656800","Lat":"0.0540000","KPI":615,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0540000],[0.0683100,0.0540000],[0.0683100,0.0558000],[0.0656800,0.0558000],[0.0656800,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0656800","Lat":"0.0558000","KPI":198,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0558000],[0.0683100,0.0558000],[0.0683100,0.0576000],[0.0656800,0.0576000],[0.0656800,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0683000","Lat":"0.0000000","KPI":460,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0000000],[0.0709300,0.0000000],[0.0709300,0.0018000],[0.0683000,0.0018000],[0.0683000,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0683000","Lat":"0.0018000","KPI":401,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0018000],[0.0709300,0.0018000],[0.0709300,0.0036000],[0.0683000,0.0036000],[0.0683000,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0683000","Lat":"0.0036000","KPI":927,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0036000],[0.0709300,0.0036000],[0.0709300,0.0054000],[0.0683000,0.0054000],[0.0683000,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0683000","Lat":"0.0054000","KPI":681,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0054000],[0.0709300,0.0054000],[0.0709300,0.0072000],[0.0683000,0.0072000],[0.0683000,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0683000","Lat":"0.0072000","KPI":2,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0072000],[0.0709300,0.0072000],[0.0709300,0.0090000],[0.0683000,0.0090000],[0.0683000,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0683000","Lat":"0.0090000","KPI":432,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0090000],[0.0709300,0.0090000],[0.0709300,0.0108000],[0.0683000,0.0108000],[0.0683000,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0683000","Lat":"0.0108000","KPI":638,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0108000],[0.0709300,0.0108000],[0.0709300,0.0126000],[0.0683000,0.0126000],[0.0683000,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0683000","Lat":"0.0126000","KPI":437,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0126000],[0.0709300,0.0126000],[0.0709300,0.0144000],[0.0683000,0.0144000],[0.0683000,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0683000","Lat":"0.0144000","KPI":197,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0144000],[0.0709300,0.0144000],[0.0709300,0.0162000],[0.0683000,0.0162000],[0.0683000,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0683000","Lat":"0.0162000","KPI":700,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0162000],[0.0709300,0.0162000],[0.0709300,0.0180000],[0.0683000,0.0180000],[0.0683000,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0683000","Lat":"0.0180000","KPI":412,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0180000],[0.0709300,0.0180000],[0.0709300,0.0198000],[0.0683000,0.0198000],[0.0683000,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0683000","Lat":"0.0198000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0198000],[0.0709300,0.0198000],[0.0709300,0.0216000],[0.0683000,0.0216000],[0.0683000,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0683000","Lat":"0.0216000","KPI":301,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0216000],[0.0709300,0.0216000],[0.0709300,0.0234000],[0.0683000,0.0234000],[0.0683000,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0683000","Lat":"0.0234000","KPI":826,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0234000],[0.0709300,0.0234000],[0.0709300,0.0252000],[0.0683000,0.0252000],[0.0683000,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0683000","Lat":"0.0252000","KPI":626,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0252000],[0.0709300,0.0252000],[0.0709300,0.0270000],[0.0683000,0.0270000],[0.0683000,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0683000","Lat":"0.0270000","KPI":54,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0270000],[0.0709300,0.0270000],[0.0709300,0.0288000],[0.0683000,0.0288000],[0.0683000,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0683000","Lat":"0.0288000","KPI":206,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0288000],[0.0709300,0.0288000],[0.0709300,0.0306000],[0.0683000,0.0306000],[0.0683000,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0683000","Lat":"0.0306000","KPI":835,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0306000],[0.0709300,0.0306000],[0.0709300,0.0324000],[0.0683000,0.0324000],[0.0683000,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0683000","Lat":"0.0324000","KPI":650,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0324000],[0.0709300,0.0324000],[0.0709300,0.0342000],[0.0683000,0.0342000],[0.0683000,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0683000","Lat":"0.0342000","KPI":205,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0342000],[0.0709300,0.0342000],[0.0709300,0.0360000],[0.0683000,0.0360000],[0.0683000,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0683000","Lat":"0.0360000","KPI":833,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0360000],[0.0709300,0.0360000],[0.0709300,0.0378000],[0.0683000,0.0378000],[0.0683000,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0683000","Lat":"0.0378000","KPI":146,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0378000],[0.0709300,0.0378000],[0.0709300,0.0396000],[0.0683000,0.0396000],[0.0683000,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0683000","Lat":"0.0396000","KPI":753,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0396000],[0.0709300,0.0396000],[0.0709300,0.0414000],[0.0683000,0.0414000],[0.0683000,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0683000","Lat":"0.0414000","KPI":584,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0414000],[0.0709300,0.0414000],[0.0709300,0.0432000],[0.0683000,0.0432000],[0.0683000,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0683000","Lat":"0.0432000","KPI":234,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0432000],[0.0709300,0.0432000],[0.0709300,0.0450000],[0.0683000,0.0450000],[0.0683000,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0683000","Lat":"0.0450000","KPI":743,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0450000],[0.0709300,0.0450000],[0.0709300,0.0468000],[0.0683000,0.0468000],[0.0683000,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0683000","Lat":"0.0468000","KPI":336,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0468000],[0.0709300,0.0468000],[0.0709300,0.0486000],[0.0683000,0.0486000],[0.0683000,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0683000","Lat":"0.0486000","KPI":619,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0486000],[0.0709300,0.0486000],[0.0709300,0.0504000],[0.0683000,0.0504000],[0.0683000,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0683000","Lat":"0.0504000","KPI":187,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0504000],[0.0709300,0.0504000],[0.0709300,0.0522000],[0.0683000,0.0522000],[0.0683000,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0683000","Lat":"0.0522000","KPI":415,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0522000],[0.0709300,0.0522000],[0.0709300,0.0540000],[0.0683000,0.0540000],[0.0683000,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0683000","Lat":"0.0540000","KPI":427,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0540000],[0.0709300,0.0540000],[0.0709300,0.0558000],[0.0683000,0.0558000],[0.0683000,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0683000","Lat":"0.0558000","KPI":830,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0558000],[0.0709300,0.0558000],[0.0709300,0.0576000],[0.0683000,0.0576000],[0.0683000,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0709300","Lat":"0.0000000","KPI":385,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0000000],[0.0735600,0.0000000],[0.0735600,0.0018000],[0.0709300,0.0018000],[0.0709300,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0709300","Lat":"0.0018000","KPI":198,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0018000],[0.0735600,0.0018000],[0.0735600,0.0036000],[0.0709300,0.0036000],[0.0709300,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0709300","Lat":"0.0036000","KPI":627,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0036000],[0.0735600,0.0036000],[0.0735600,0.0054000],[0.0709300,0.0054000],[0.0709300,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0709300","Lat":"0.0054000","KPI":619,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0054000],[0.0735600,0.0054000],[0.0735600,0.0072000],[0.0709300,0.0072000],[0.0709300,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0709300","Lat":"0.0072000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0072000],[0.0735600,0.0072000],[0.0735600,0.0090000],[0.0709300,0.0090000],[0.0709300,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0709300","Lat":"0.0090000","KPI":382,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0090000],[0.0735600,0.0090000],[0.0735600,0.0108000],[0.0709300,0.0108000],[0.0709300,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0709300","Lat":"0.0108000","KPI":967,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0108000],[0.0735600,0.0108000],[0.0735600,0.0126000],[0.0709300,0.0126000],[0.0709300,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0709300","Lat":"0.0126000","KPI":163,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0126000],[0.0735600,0.0126000],[0.0735600,0.0144000],[0.0709300,0.0144000],[0.0709300,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0709300","Lat":"0.0144000","KPI":784,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0144000],[0.0735600,0.0144000],[0.0735600,0.0162000],[0.0709300,0.0162000],[0.0709300,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0709300","Lat":"0.0162000","KPI":737,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0162000],[0.0735600,0.0162000],[0.0735600,0.0180000],[0.0709300,0.0180000],[0.0709300,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0709300","Lat":"0.0180000","KPI":334,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0180000],[0.0735600,0.0180000],[0.0735600,0.0198000],[0.0709300,0.0198000],[0.0709300,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0709300","Lat":"0.0198000","KPI":177,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0198000],[0.0735600,0.0198000],[0.0735600,0.0216000],[0.0709300,0.0216000],[0.0709300,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0709300","Lat":"0.0216000","KPI":768,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0216000],[0.0735600,0.0216000],[0.0735600,0.0234000],[0.0709300,0.0234000],[0.0709300,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0709300","Lat":"0.0234000","KPI":811,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0234000],[0.0735600,0.0234000],[0.0735600,0.0252000],[0.0709300,0.0252000],[0.0709300,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0709300","Lat":"0.0252000","KPI":445,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0252000],[0.0735600,0.0252000],[0.0735600,0.0270000],[0.0709300,0.0270000],[0.0709300,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0709300","Lat":"0.0270000","KPI":539,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0270000],[0.0735600,0.0270000],[0.0735600,0.0288000],[0.0709300,0.0288000],[0.0709300,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0709300","Lat":"0.0288000","KPI":541,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0288000],[0.0735600,0.0288000],[0.0735600,0.0306000],[0.0709300,0.0306000],[0.0709300,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0709300","Lat":"0.0306000","KPI":444,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0306000],[0.0735600,0.0306000],[0.0735600,0.0324000],[0.0709300,0.0324000],[0.0709300,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0709300","Lat":"0.0324000","KPI":531,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0324000],[0.0735600,0.0324000],[0.0735600,0.0342000],[0.0709300,0.0342000],[0.0709300,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0709300","Lat":"0.0342000","KPI":37,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0342000],[0.0735600,0.0342000],[0.0735600,0.0360000],[0.0709300,0.0360000],[0.0709300,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0709300","Lat":"0.0360000","KPI":517,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0360000],[0.0735600,0.0360000],[0.0735600,0.0378000],[0.0709300,0.0378000],[0.0709300,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0709300","Lat":"0.0378000","KPI":876,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0378000],[0.0735600,0.0378000],[0.0735600,0.0396000],[0.0709300,0.0396000],[0.0709300,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0709300","Lat":"0.0396000","KPI":186,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0396000],[0.0735600,0.0396000],[0.0735600,0.0414000],[0.0709300,0.0414000],[0.0709300,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0709300","Lat":"0.0414000","KPI":744,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0414000],[0.0735600,0.0414000],[0.0735600,0.0432000],[0.0709300,0.0432000],[0.0709300,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0709300","Lat":"0.0432000","KPI":493,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0432000],[0.0735600,0.0432000],[0.0735600,0.0450000],[0.0709300,0.0450000],[0.0709300,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0709300","Lat":"0.0450000","KPI":72,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0450000],[0.0735600,0.0450000],[0.0735600,0.0468000],[0.0709300,0.0468000],[0.0709300,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0709300","Lat":"0.0468000","KPI":73,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0468000],[0.0735600,0.0468000],[0.0735600,0.0486000],[0.0709300,0.0486000],[0.0709300,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0709300","Lat":"0.0486000","KPI":762,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0486000],[0.0735600,0.0486000],[0.0735600,0.0504000],[0.0709300,0.0504000],[0.0709300,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0709300","Lat":"0.0504000","KPI":745,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0504000],[0.0735600,0.0504000],[0.0735600,0.0522000],[0.0709300,0.0522000],[0.0709300,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0709300","Lat":"0.0522000","KPI":146,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0522000],[0.0735600,0.0522000],[0.0735600,0.0540000],[0.0709300,0.0540000],[0.0709300,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0709300","Lat":"0.0540000","KPI":425,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0540000],[0.0735600,0.0540000],[0.0735600,0.0558000],[0.0709300,0.0558000],[0.0709300,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0709300","Lat":"0.0558000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0558000],[0.0735600,0.0558000],[0.0735600,0.0576000],[0.0709300,0.0576000],[0.0709300,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0735600","Lat":"0.0000000","KPI":230,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0000000],[0.0761900,0.0000000],[0.0761900,0.0018000],[0.0735600,0.0018000],[0.0735600,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0735600","Lat":"0.0018000","KPI":19,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0018000],[0.0761900,0.0018000],[0.0761900,0.0036000],[0.0735600,0.0036000],[0.0735600,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0735600","Lat":"0.0036000","KPI":525,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0036000],[0.0761900,0.0036000],[0.0761900,0.0054000],[0.0735600,0.0054000],[0.0735600,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0735600","Lat":"0.0054000","KPI":740,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0054000],[0.0761900,0.0054000],[0.0761900,0.0072000],[0.0735600,0.0072000],[0.0735600,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0735600","Lat":"0.0072000","KPI":217,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0072000],[0.0761900,0.0072000],[0.0761900,0.0090000],[0.0735600,0.0090000],[0.0735600,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0735600","Lat":"0.0090000","KPI":673,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0090000],[0.0761900,0.0090000],[0.0761900,0.0108000],[0.0735600,0.0108000],[0.0735600,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0735600","Lat":"0.0108000","KPI":630,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0108000],[0.0761900,0.0108000],[0.0761900,0.0126000],[0.0735600,0.0126000],[0.0735600,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0735600","Lat":"0.0126000","KPI":949,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0126000],[0.0761900,0.0126000],[0.0761900,0.0144000],[0.0735600,0.0144000],[0.0735600,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0735600","Lat":"0.0144000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0144000],[0.0761900,0.0144000],[0.0761900,0.0162000],[0.0735600,0.0162000],[0.0735600,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0735600","Lat":"0.0162000","KPI":652,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0162000],[0.0761900,0.0162000],[0.0761900,0.0180000],[0.0735600,0.0180000],[0.0735600,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0735600","Lat":"0.0180000","KPI":998,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0180000],[0.0761900,0.0180000],[0.0761900,0.0198000],[0.0735600,0.0198000],[0.0735600,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0735600","Lat":"0.0198000","KPI":679,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0198000],[0.0761900,0.0198000],[0.0761900,0.0216000],[0.0735600,0.0216000],[0.0735600,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0735600","Lat":"0.0216000","KPI":878,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0216000],[0.0761900,0.0216000],[0.0761900,0.0234000],[0.0735600,0.0234000],[0.0735600,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0735600","Lat":"0.0234000","KPI":670,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0234000],[0.0761900,0.0234000],[0.0761900,0.0252000],[0.0735600,0.0252000],[0.0735600,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0735600","Lat":"0.0252000","KPI":986,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0252000],[0.0761900,0.0252000],[0.0761900,0.0270000],[0.0735600,0.0270000],[0.0735600,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0735600","Lat":"0.0270000","KPI":969,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0270000],[0.0761900,0.0270000],[0.0761900,0.0288000],[0.0735600,0.0288000],[0.0735600,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0735600","Lat":"0.0288000","KPI":362,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0288000],[0.0761900,0.0288000],[0.0761900,0.0306000],[0.0735600,0.0306000],[0.0735600,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0735600","Lat":"0.0306000","KPI":470,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0306000],[0.0761900,0.0306000],[0.0761900,0.0324000],[0.0735600,0.0324000],[0.0735600,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0735600","Lat":"0.0324000","KPI":397,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0324000],[0.0761900,0.0324000],[0.0761900,0.0342000],[0.0735600,0.0342000],[0.0735600,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0735600","Lat":"0.0342000","KPI":61,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0342000],[0.0761900,0.0342000],[0.0761900,0.0360000],[0.0735600,0.0360000],[0.0735600,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0735600","Lat":"0.0360000","KPI":774,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0360000],[0.0761900,0.0360000],[0.0761900,0.0378000],[0.0735600,0.0378000],[0.0735600,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0735600","Lat":"0.0378000","KPI":298,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0378000],[0.0761900,0.0378000],[0.0761900,0.0396000],[0.0735600,0.0396000],[0.0735600,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0735600","Lat":"0.0396000","KPI":525,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0396000],[0.0761900,0.0396000],[0.0761900,0.0414000],[0.0735600,0.0414000],[0.0735600,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0735600","Lat":"0.0414000","KPI":904,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0414000],[0.0761900,0.0414000],[0.0761900,0.0432000],[0.0735600,0.0432000],[0.0735600,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0735600","Lat":"0.0432000","KPI":959,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0432000],[0.0761900,0.0432000],[0.0761900,0.0450000],[0.0735600,0.0450000],[0.0735600,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0735600","Lat":"0.0450000","KPI":631,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0450000],[0.0761900,0.0450000],[0.0761900,0.0468000],[0.0735600,0.0468000],[0.0735600,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0735600","Lat":"0.0468000","KPI":580,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0468000],[0.0761900,0.0468000],[0.0761900,0.0486000],[0.0735600,0.0486000],[0.0735600,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0735600","Lat":"0.0486000","KPI":76,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0486000],[0.0761900,0.0486000],[0.0761900,0.0504000],[0.0735600,0.0504000],[0.0735600,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0735600","Lat":"0.0504000","KPI":21,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0504000],[0.0761900,0.0504000],[0.0761900,0.0522000],[0.0735600,0.0522000],[0.0735600,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0735600","Lat":"0.0522000","KPI":40,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0522000],[0.0761900,0.0522000],[0.0761900,0.0540000],[0.0735600,0.0540000],[0.0735600,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0735600","Lat":"0.0540000","KPI":441,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0540000],[0.0761900,0.0540000],[0.0761900,0.0558000],[0.0735600,0.0558000],[0.0735600,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0735600","Lat":"0.0558000","KPI":118,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0558000],[0.0761900,0.0558000],[0.0761900,0.0576000],[0.0735600,0.0576000],[0.0735600,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0761800","Lat":"0.0000000","KPI":800,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0000000],[0.0788100,0.0000000],[0.0788100,0.0018000],[0.0761800,0.0018000],[0.0761800,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0761800","Lat":"0.0018000","KPI":306,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0018000],[0.0788100,0.0018000],[0.0788100,0.0036000],[0.0761800,0.0036000],[0.0761800,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0761800","Lat":"0.0036000","KPI":928,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0036000],[0.0788100,0.0036000],[0.0788100,0.0054000],[0.0761800,0.0054000],[0.0761800,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0761800","Lat":"0.0054000","KPI":529,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0054000],[0.0788100,0.0054000],[0.0788100,0.0072000],[0.0761800,0.0072000],[0.0761800,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0761800","Lat":"0.0072000","KPI":302,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0072000],[0.0788100,0.0072000],[0.0788100,0.0090000],[0.0761800,0.0090000],[0.0761800,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0761800","Lat":"0.0090000","KPI":179,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0090000],[0.0788100,0.0090000],[0.0788100,0.0108000],[0.0761800,0.0108000],[0.0761800,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0761800","Lat":"0.0108000","KPI":37,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0108000],[0.0788100,0.0108000],[0.0788100,0.0126000],[0.0761800,0.0126000],[0.0761800,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0761800","Lat":"0.0126000","KPI":941,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0126000],[0.0788100,0.0126000],[0.0788100,0.0144000],[0.0761800,0.0144000],[0.0761800,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0761800","Lat":"0.0144000","KPI":654,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0144000],[0.0788100,0.0144000],[0.0788100,0.0162000],[0.0761800,0.0162000],[0.0761800,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0761800","Lat":"0.0162000","KPI":400,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0162000],[0.0788100,0.0162000],[0.0788100,0.0180000],[0.0761800,0.0180000],[0.0761800,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0761800","Lat":"0.0180000","KPI":819,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0180000],[0.0788100,0.0180000],[0.0788100,0.0198000],[0.0761800,0.0198000],[0.0761800,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0761800","Lat":"0.0198000","KPI":213,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0198000],[0.0788100,0.0198000],[0.0788100,0.0216000],[0.0761800,0.0216000],[0.0761800,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0761800","Lat":"0.0216000","KPI":400,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0216000],[0.0788100,0.0216000],[0.0788100,0.0234000],[0.0761800,0.0234000],[0.0761800,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0761800","Lat":"0.0234000","KPI":872,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0234000],[0.0788100,0.0234000],[0.0788100,0.0252000],[0.0761800,0.0252000],[0.0761800,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0761800","Lat":"0.0252000","KPI":857,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0252000],[0.0788100,0.0252000],[0.0788100,0.0270000],[0.0761800,0.0270000],[0.0761800,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0761800","Lat":"0.0270000","KPI":461,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0270000],[0.0788100,0.0270000],[0.0788100,0.0288000],[0.0761800,0.0288000],[0.0761800,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0761800","Lat":"0.0288000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0288000],[0.0788100,0.0288000],[0.0788100,0.0306000],[0.0761800,0.0306000],[0.0761800,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0761800","Lat":"0.0306000","KPI":107,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0306000],[0.0788100,0.0306000],[0.0788100,0.0324000],[0.0761800,0.0324000],[0.0761800,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0761800","Lat":"0.0324000","KPI":523,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0324000],[0.0788100,0.0324000],[0.0788100,0.0342000],[0.0761800,0.0342000],[0.0761800,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0761800","Lat":"0.0342000","KPI":263,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0342000],[0.0788100,0.0342000],[0.0788100,0.0360000],[0.0761800,0.0360000],[0.0761800,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0761800","Lat":"0.0360000","KPI":272,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0360000],[0.0788100,0.0360000],[0.0788100,0.0378000],[0.0761800,0.0378000],[0.0761800,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0761800","Lat":"0.0378000","KPI":321,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0378000],[0.0788100,0.0378000],[0.0788100,0.0396000],[0.0761800,0.0396000],[0.0761800,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0761800","Lat":"0.0396000","KPI":462,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0396000],[0.0788100,0.0396000],[0.0788100,0.0414000],[0.0761800,0.0414000],[0.0761800,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0761800","Lat":"0.0414000","KPI":556,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0414000],[0.0788100,0.0414000],[0.0788100,0.0432000],[0.0761800,0.0432000],[0.0761800,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0761800","Lat":"0.0432000","KPI":71,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0432000],[0.0788100,0.0432000],[0.0788100,0.0450000],[0.0761800,0.0450000],[0.0761800,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0761800","Lat":"0.0450000","KPI":820,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0450000],[0.0788100,0.0450000],[0.0788100,0.0468000],[0.0761800,0.0468000],[0.0761800,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0761800","Lat":"0.0468000","KPI":994,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0468000],[0.0788100,0.0468000],[0.0788100,0.0486000],[0.0761800,0.0486000],[0.0761800,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0761800","Lat":"0.0486000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0486000],[0.0788100,0.0486000],[0.0788100,0.0504000],[0.0761800,0.0504000],[0.0761800,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0761800","Lat":"0.0504000","KPI":148,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0504000],[0.0788100,0.0504000],[0.0788100,0.0522000],[0.0761800,0.0522000],[0.0761800,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0761800","Lat":"0.0522000","KPI":541,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0522000],[0.0788100,0.0522000],[0.0788100,0.0540000],[0.0761800,0.0540000],[0.0761800,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0761800","Lat":"0.0540000","KPI":371,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0540000],[0.0788100,0.0540000],[0.0788100,0.0558000],[0.0761800,0.0558000],[0.0761800,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0761800","Lat":"0.0558000","KPI":635,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0558000],[0.0788100,0.0558000],[0.0788100,0.0576000],[0.0761800,0.0576000],[0.0761800,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0788100","Lat":"0.0000000","KPI":124,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0000000],[0.0814400,0.0000000],[0.0814400,0.0018000],[0.0788100,0.0018000],[0.0788100,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0788100","Lat":"0.0018000","KPI":886,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0018000],[0.0814400,0.0018000],[0.0814400,0.0036000],[0.0788100,0.0036000],[0.0788100,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0788100","Lat":"0.0036000","KPI":84,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0036000],[0.0814400,0.0036000],[0.0814400,0.0054000],[0.0788100,0.0054000],[0.0788100,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0788100","Lat":"0.0054000","KPI":609,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0054000],[0.0814400,0.0054000],[0.0814400,0.0072000],[0.0788100,0.0072000],[0.0788100,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0788100","Lat":"0.0072000","KPI":174,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0072000],[0.0814400,0.0072000],[0.0814400,0.0090000],[0.0788100,0.0090000],[0.0788100,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0788100","Lat":"0.0090000","KPI":228,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0090000],[0.0814400,0.0090000],[0.0814400,0.0108000],[0.0788100,0.0108000],[0.0788100,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0788100","Lat":"0.0108000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0108000],[0.0814400,0.0108000],[0.0814400,0.0126000],[0.0788100,0.0126000],[0.0788100,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0788100","Lat":"0.0126000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0126000],[0.0814400,0.0126000],[0.0814400,0.0144000],[0.0788100,0.0144000],[0.0788100,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0788100","Lat":"0.0144000","KPI":571,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0144000],[0.0814400,0.0144000],[0.0814400,0.0162000],[0.0788100,0.0162000],[0.0788100,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0788100","Lat":"0.0162000","KPI":709,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0162000],[0.0814400,0.0162000],[0.0814400,0.0180000],[0.0788100,0.0180000],[0.0788100,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0788100","Lat":"0.0180000","KPI":663,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0180000],[0.0814400,0.0180000],[0.0814400,0.0198000],[0.0788100,0.0198000],[0.0788100,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0788100","Lat":"0.0198000","KPI":645,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0198000],[0.0814400,0.0198000],[0.0814400,0.0216000],[0.0788100,0.0216000],[0.0788100,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0788100","Lat":"0.0216000","KPI":86,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0216000],[0.0814400,0.0216000],[0.0814400,0.0234000],[0.0788100,0.0234000],[0.0788100,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0788100","Lat":"0.0234000","KPI":223,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0234000],[0.0814400,0.0234000],[0.0814400,0.0252000],[0.0788100,0.0252000],[0.0788100,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0788100","Lat":"0.0252000","KPI":749,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0252000],[0.0814400,0.0252000],[0.0814400,0.0270000],[0.0788100,0.0270000],[0.0788100,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0788100","Lat":"0.0270000","KPI":591,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0270000],[0.0814400,0.0270000],[0.0814400,0.0288000],[0.0788100,0.0288000],[0.0788100,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0788100","Lat":"0.0288000","KPI":345,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0288000],[0.0814400,0.0288000],[0.0814400,0.0306000],[0.0788100,0.0306000],[0.0788100,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0788100","Lat":"0.0306000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0306000],[0.0814400,0.0306000],[0.0814400,0.0324000],[0.0788100,0.0324000],[0.0788100,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0788100","Lat":"0.0324000","KPI":141,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0324000],[0.0814400,0.0324000],[0.0814400,0.0342000],[0.0788100,0.0342000],[0.0788100,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0788100","Lat":"0.0342000","KPI":35,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0342000],[0.0814400,0.0342000],[0.0814400,0.0360000],[0.0788100,0.0360000],[0.0788100,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0788100","Lat":"0.0360000","KPI":420,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0360000],[0.0814400,0.0360000],[0.0814400,0.0378000],[0.0788100,0.0378000],[0.0788100,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0788100","Lat":"0.0378000","KPI":74,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0378000],[0.0814400,0.0378000],[0.0814400,0.0396000],[0.0788100,0.0396000],[0.0788100,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0788100","Lat":"0.0396000","KPI":771,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0396000],[0.0814400,0.0396000],[0.0814400,0.0414000],[0.0788100,0.0414000],[0.0788100,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0788100","Lat":"0.0414000","KPI":790,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0414000],[0.0814400,0.0414000],[0.0814400,0.0432000],[0.0788100,0.0432000],[0.0788100,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0788100","Lat":"0.0432000","KPI":263,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0432000],[0.0814400,0.0432000],[0.0814400,0.0450000],[0.0788100,0.0450000],[0.0788100,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0788100","Lat":"0.0450000","KPI":575,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0450000],[0.0814400,0.0450000],[0.0814400,0.0468000],[0.0788100,0.0468000],[0.0788100,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0788100","Lat":"0.0468000","KPI":916,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0468000],[0.0814400,0.0468000],[0.0814400,0.0486000],[0.0788100,0.0486000],[0.0788100,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0788100","Lat":"0.0486000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0486000],[0.0814400,0.0486000],[0.0814400,0.0504000],[0.0788100,0.0504000],[0.0788100,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0788100","Lat":"0.0504000","KPI":757,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0504000],[0.0814400,0.0504000],[0.0814400,0.0522000],[0.0788100,0.0522000],[0.0788100,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0788100","Lat":"0.0522000","KPI":197,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0522000],[0.0814400,0.0522000],[0.0814400,0.0540000],[0.0788100,0.0540000],[0.0788100,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0788100","Lat":"0.0540000","KPI":206,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0540000],[0.0814400,0.0540000],[0.0814400,0.0558000],[0.0788100,0.0558000],[0.0788100,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0788100","Lat":"0.0558000","KPI":170,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0558000],[0.0814400,0.0558000],[0.0814400,0.0576000],[0.0788100,0.0576000],[0.0788100,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0814400","Lat":"0.0000000","KPI":482,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0000000],[0.0840700,0.0000000],[0.0840700,0.0018000],[0.0814400,0.0018000],[0.0814400,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0814400","Lat":"0.0018000","KPI":505,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0018000],[0.0840700,0.0018000],[0.0840700,0.0036000],[0.0814400,0.0036000],[0.0814400,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0814400","Lat":"0.0036000","KPI":219,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0036000],[0.0840700,0.0036000],[0.0840700,0.0054000],[0.0814400,0.0054000],[0.0814400,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0814400","Lat":"0.0054000","KPI":272,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0054000],[0.0840700,0.0054000],[0.0840700,0.0072000],[0.0814400,0.0072000],[0.0814400,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0814400","Lat":"0.0072000","KPI":502,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0072000],[0.0840700,0.0072000],[0.0840700,0.0090000],[0.0814400,0.0090000],[0.0814400,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0814400","Lat":"0.0090000","KPI":131,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0090000],[0.0840700,0.0090000],[0.0840700,0.0108000],[0.0814400,0.0108000],[0.0814400,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0814400","Lat":"0.0108000","KPI":98,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0108000],[0.0840700,0.0108000],[0.0840700,0.0126000],[0.0814400,0.0126000],[0.0814400,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0814400","Lat":"0.0126000","KPI":299,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0126000],[0.0840700,0.0126000],[0.0840700,0.0144000],[0.0814400,0.0144000],[0.0814400,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0814400","Lat":"0.0144000","KPI":730,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0144000],[0.0840700,0.0144000],[0.0840700,0.0162000],[0.0814400,0.0162000],[0.0814400,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0814400","Lat":"0.0162000","KPI":605,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0162000],[0.0840700,0.0162000],[0.0840700,0.0180000],[0.0814400,0.0180000],[0.0814400,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0814400","Lat":"0.0180000","KPI":875,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0180000],[0.0840700,0.0180000],[0.0840700,0.0198000],[0.0814400,0.0198000],[0.0814400,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0814400","Lat":"0.0198000","KPI":143,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0198000],[0.0840700,0.0198000],[0.0840700,0.0216000],[0.0814400,0.0216000],[0.0814400,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0814400","Lat":"0.0216000","KPI":704,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0216000],[0.0840700,0.0216000],[0.0840700,0.0234000],[0.0814400,0.0234000],[0.0814400,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0814400","Lat":"0.0234000","KPI":393,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0234000],[0.0840700,0.0234000],[0.0840700,0.0252000],[0.0814400,0.0252000],[0.0814400,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0814400","Lat":"0.0252000","KPI":462,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0252000],[0.0840700,0.0252000],[0.0840700,0.0270000],[0.0814400,0.0270000],[0.0814400,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0814400","Lat":"0.0270000","KPI":934,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0270000],[0.0840700,0.0270000],[0.0840700,0.0288000],[0.0814400,0.0288000],[0.0814400,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0814400","Lat":"0.0288000","KPI":827,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0288000],[0.0840700,0.0288000],[0.0840700,0.0306000],[0.0814400,0.0306000],[0.0814400,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0814400","Lat":"0.0306000","KPI":276,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0306000],[0.0840700,0.0306000],[0.0840700,0.0324000],[0.0814400,0.0324000],[0.0814400,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0814400","Lat":"0.0324000","KPI":474,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0324000],[0.0840700,0.0324000],[0.0840700,0.0342000],[0.0814400,0.0342000],[0.0814400,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0814400","Lat":"0.0342000","KPI":706,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0342000],[0.0840700,0.0342000],[0.0840700,0.0360000],[0.0814400,0.0360000],[0.0814400,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0814400","Lat":"0.0360000","KPI":400,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0360000],[0.0840700,0.0360000],[0.0840700,0.0378000],[0.0814400,0.0378000],[0.0814400,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0814400","Lat":"0.0378000","KPI":435,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0378000],[0.0840700,0.0378000],[0.0840700,0.0396000],[0.0814400,0.0396000],[0.0814400,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0814400","Lat":"0.0396000","KPI":349,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0396000],[0.0840700,0.0396000],[0.0840700,0.0414000],[0.0814400,0.0414000],[0.0814400,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0814400","Lat":"0.0414000","KPI":824,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0414000],[0.0840700,0.0414000],[0.0840700,0.0432000],[0.0814400,0.0432000],[0.0814400,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0814400","Lat":"0.0432000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0432000],[0.0840700,0.0432000],[0.0840700,0.0450000],[0.0814400,0.0450000],[0.0814400,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0814400","Lat":"0.0450000","KPI":897,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0450000],[0.0840700,0.0450000],[0.0840700,0.0468000],[0.0814400,0.0468000],[0.0814400,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0814400","Lat":"0.0468000","KPI":447,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0468000],[0.0840700,0.0468000],[0.0840700,0.0486000],[0.0814400,0.0486000],[0.0814400,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0814400","Lat":"0.0486000","KPI":903,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0486000],[0.0840700,0.0486000],[0.0840700,0.0504000],[0.0814400,0.0504000],[0.0814400,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0814400","Lat":"0.0504000","KPI":7,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0504000],[0.0840700,0.0504000],[0.0840700,0.0522000],[0.0814400,0.0522000],[0.0814400,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0814400","Lat":"0.0522000","KPI":189,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0522000],[0.0840700,0.0522000],[0.0840700,0.0540000],[0.0814400,0.0540000],[0.0814400,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0814400","Lat":"0.0540000","KPI":63,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0540000],[0.0840700,0.0540000],[0.0840700,0.0558000],[0.0814400,0.0558000],[0.0814400,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0814400","Lat":"0.0558000","KPI":242,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0558000],[0.0840700,0.0558000],[0.0840700,0.0576000],[0.0814400,0.0576000],[0.0814400,0.0558000]]]}} diff --git a/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json b/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json new file mode 100644 index 000000000..a2cbca0fe --- /dev/null +++ b/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json @@ -0,0 +1,4671 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "0.000000,0.000000,0.084070,0.057600", +"center": "0.084070,0.057600,11", +"description": "tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles -z11 -D7 --grid-low-zooms tests/grid-unaligned/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 11, \"fields\": {\"KPI\": \"Number\", \"Lat\": \"String\", \"Long\": \"String\", \"Tile\": \"Number\", \"fill\": \"String\", \"fill-opacity\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1024,\"geometry\": \"Polygon\",\"attributeCount\": 6,\"attributes\": [{\"attribute\": \"KPI\",\"count\": 651,\"type\": \"number\",\"values\": [0,1,101,102,107,11,110,111,112,113,114,118,119,120,121,122,123,124,125,126,128,129,13,131,132,134,136,138,139,14,140,141,143,145,146,147,148,149,15,150,152,153,155,156,157,158,16,160,163,165,166,168,17,170,172,174,176,177,178,179,180,181,182,186,187,189,19,191,193,194,196,197,198,199,2,200,201,203,204,205,206,208,209,21,210,211,212,213,216,217,219,220,221,223,224,225,226,227,228,229],\"min\": 0,\"max\": 999},{\"attribute\": \"Lat\",\"count\": 32,\"type\": \"string\",\"values\": [\"0.0000000\",\"0.0018000\",\"0.0036000\",\"0.0054000\",\"0.0072000\",\"0.0090000\",\"0.0108000\",\"0.0126000\",\"0.0144000\",\"0.0162000\",\"0.0180000\",\"0.0198000\",\"0.0216000\",\"0.0234000\",\"0.0252000\",\"0.0270000\",\"0.0288000\",\"0.0306000\",\"0.0324000\",\"0.0342000\",\"0.0360000\",\"0.0378000\",\"0.0396000\",\"0.0414000\",\"0.0432000\",\"0.0450000\",\"0.0468000\",\"0.0486000\",\"0.0504000\",\"0.0522000\",\"0.0540000\",\"0.0558000\"]},{\"attribute\": \"Long\",\"count\": 32,\"type\": \"string\",\"values\": [\"0.0000000\",\"0.0026300\",\"0.0052500\",\"0.0078800\",\"0.0105100\",\"0.0131400\",\"0.0157600\",\"0.0183900\",\"0.0210200\",\"0.0236400\",\"0.0262700\",\"0.0289000\",\"0.0315200\",\"0.0341500\",\"0.0367800\",\"0.0394100\",\"0.0420300\",\"0.0446600\",\"0.0472900\",\"0.0499100\",\"0.0525400\",\"0.0551700\",\"0.0577900\",\"0.0604200\",\"0.0630500\",\"0.0656800\",\"0.0683000\",\"0.0709300\",\"0.0735600\",\"0.0761800\",\"0.0788100\",\"0.0814400\"]},{\"attribute\": \"Tile\",\"count\": 100,\"type\": \"number\",\"values\": [0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 0,\"max\": 99},{\"attribute\": \"fill\",\"count\": 1,\"type\": \"string\",\"values\": [\"#000066\"]},{\"attribute\": \"fill-opacity\",\"count\": 1,\"type\": \"number\",\"values\": [0.5],\"min\": 0.5,\"max\": 0.5}]}]}}", +"maxzoom": "11", +"minzoom": "0", +"name": "tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 32 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 32 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 64 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 63 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 64 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 63 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 127, "y": 128 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 127, "y": 127 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.065918 ], [ 0.010986, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.065918 ], [ 0.010986, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0210200", "Lat": "0.0540000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0324000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 128, "y": 128 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0315200", "Lat": "0.0216000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0525400", "Lat": "0.0216000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0216000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 128, "y": 127 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.065918 ], [ 0.010986, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.065918 ], [ 0.010986, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0210200", "Lat": "0.0540000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0315200", "Lat": "0.0540000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.065918 ], [ 0.032959, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.065918 ], [ 0.032959, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0315200", "Lat": "0.0432000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0420300", "Lat": "0.0540000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0324000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0315200", "Lat": "0.0324000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0315200", "Lat": "0.0216000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0324000", "KPI": 477, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525400", "Lat": "0.0540000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.065918 ], [ 0.054932, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.065918 ], [ 0.054932, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0525400", "Lat": "0.0432000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0656800", "Lat": "0.0540000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0761800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.065918 ], [ 0.076904, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.065918 ], [ 0.076904, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0432000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0324000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0525400", "Lat": "0.0216000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0656800", "Lat": "0.0324000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0761800", "Lat": "0.0324000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0216000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 255, "y": 256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 255, "y": 255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0052500", "Lat": "0.0540000", "KPI": 844, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.060425 ], [ 0.005493, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.060425 ], [ 0.005493, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0052500", "Lat": "0.0486000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052500", "Lat": "0.0432000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.060425 ], [ 0.010986, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.060425 ], [ 0.010986, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0105100", "Lat": "0.0486000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0378000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052500", "Lat": "0.0324000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0052500", "Lat": "0.0270000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0052500", "Lat": "0.0216000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0105100", "Lat": "0.0378000", "KPI": 921, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0105100", "Lat": "0.0270000", "KPI": 937, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0052500", "Lat": "0.0162000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105100", "Lat": "0.0162000", "KPI": 178, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 256, "y": 256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157600", "Lat": "0.0108000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0157600", "Lat": "0.0054000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262700", "Lat": "0.0108000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0054000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0262700", "Lat": "0.0054000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0315200", "Lat": "0.0054000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0108000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0367800", "Lat": "0.0054000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0054000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0054000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0525400", "Lat": "0.0054000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0577900", "Lat": "0.0108000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0577900", "Lat": "0.0054000", "KPI": 209, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0709300", "Lat": "0.0108000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656800", "Lat": "0.0054000", "KPI": 51, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0709300", "Lat": "0.0054000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0814400", "Lat": "0.0108000", "KPI": 98, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0814400", "Lat": "0.0054000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 256, "y": 255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0052500", "Lat": "0.0540000", "KPI": 844, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.060425 ], [ 0.005493, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.060425 ], [ 0.005493, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0052500", "Lat": "0.0486000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052500", "Lat": "0.0432000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.060425 ], [ 0.010986, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.060425 ], [ 0.010986, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0105100", "Lat": "0.0486000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0157600", "Lat": "0.0540000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.060425 ], [ 0.016479, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.060425 ], [ 0.016479, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0157600", "Lat": "0.0486000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.054932 ], [ 0.016479, 0.049438 ], [ 0.010986, 0.049438 ], [ 0.010986, 0.054932 ], [ 0.016479, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0432000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.049438 ], [ 0.016479, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.049438 ], [ 0.016479, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0210200", "Lat": "0.0540000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.060425 ], [ 0.021973, 0.054932 ], [ 0.016479, 0.054932 ], [ 0.016479, 0.060425 ], [ 0.021973, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0210200", "Lat": "0.0486000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.049438 ], [ 0.016479, 0.049438 ], [ 0.016479, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.049438 ], [ 0.021973, 0.043945 ], [ 0.016479, 0.043945 ], [ 0.016479, 0.049438 ], [ 0.021973, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0262700", "Lat": "0.0540000", "KPI": 797, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.060425 ], [ 0.027466, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.060425 ], [ 0.027466, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0262700", "Lat": "0.0486000", "KPI": 645, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.054932 ], [ 0.027466, 0.049438 ], [ 0.021973, 0.049438 ], [ 0.021973, 0.054932 ], [ 0.027466, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0315200", "Lat": "0.0540000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.060425 ], [ 0.032959, 0.054932 ], [ 0.027466, 0.054932 ], [ 0.027466, 0.060425 ], [ 0.032959, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0315200", "Lat": "0.0486000", "KPI": 901, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.049438 ], [ 0.027466, 0.049438 ], [ 0.027466, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0262700", "Lat": "0.0432000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.049438 ], [ 0.027466, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.049438 ], [ 0.027466, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0315200", "Lat": "0.0432000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.049438 ], [ 0.032959, 0.043945 ], [ 0.027466, 0.043945 ], [ 0.027466, 0.049438 ], [ 0.032959, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0367800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.060425 ], [ 0.038452, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.060425 ], [ 0.038452, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0367800", "Lat": "0.0486000", "KPI": 642, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.054932 ], [ 0.038452, 0.049438 ], [ 0.032959, 0.049438 ], [ 0.032959, 0.054932 ], [ 0.038452, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0367800", "Lat": "0.0432000", "KPI": 490, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.049438 ], [ 0.038452, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.049438 ], [ 0.038452, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0420300", "Lat": "0.0540000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.060425 ], [ 0.043945, 0.054932 ], [ 0.038452, 0.054932 ], [ 0.038452, 0.060425 ], [ 0.043945, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0420300", "Lat": "0.0486000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.049438 ], [ 0.038452, 0.049438 ], [ 0.038452, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.049438 ], [ 0.043945, 0.043945 ], [ 0.038452, 0.043945 ], [ 0.038452, 0.049438 ], [ 0.043945, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0378000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052500", "Lat": "0.0324000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0052500", "Lat": "0.0270000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0052500", "Lat": "0.0216000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0105100", "Lat": "0.0378000", "KPI": 921, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0378000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.043945 ], [ 0.016479, 0.038452 ], [ 0.010986, 0.038452 ], [ 0.010986, 0.043945 ], [ 0.016479, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0157600", "Lat": "0.0324000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.038452 ], [ 0.016479, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.038452 ], [ 0.016479, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0105100", "Lat": "0.0270000", "KPI": 937, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157600", "Lat": "0.0270000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.032959 ], [ 0.016479, 0.027466 ], [ 0.010986, 0.027466 ], [ 0.010986, 0.032959 ], [ 0.016479, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0157600", "Lat": "0.0216000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.027466 ], [ 0.016479, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.027466 ], [ 0.016479, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0052500", "Lat": "0.0162000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105100", "Lat": "0.0162000", "KPI": 178, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0157600", "Lat": "0.0162000", "KPI": 75, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.021973 ], [ 0.016479, 0.016479 ], [ 0.010986, 0.016479 ], [ 0.010986, 0.021973 ], [ 0.016479, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157600", "Lat": "0.0108000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0157600", "Lat": "0.0054000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0210200", "Lat": "0.0378000", "KPI": 690, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.038452 ], [ 0.016479, 0.038452 ], [ 0.016479, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0324000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.038452 ], [ 0.021973, 0.032959 ], [ 0.016479, 0.032959 ], [ 0.016479, 0.038452 ], [ 0.021973, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262700", "Lat": "0.0378000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.043945 ], [ 0.027466, 0.038452 ], [ 0.021973, 0.038452 ], [ 0.021973, 0.043945 ], [ 0.027466, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0315200", "Lat": "0.0378000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.038452 ], [ 0.027466, 0.038452 ], [ 0.027466, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0262700", "Lat": "0.0324000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.038452 ], [ 0.027466, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.038452 ], [ 0.027466, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0315200", "Lat": "0.0324000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.038452 ], [ 0.032959, 0.032959 ], [ 0.027466, 0.032959 ], [ 0.027466, 0.038452 ], [ 0.032959, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210200", "Lat": "0.0270000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.027466 ], [ 0.016479, 0.027466 ], [ 0.016479, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.027466 ], [ 0.021973, 0.021973 ], [ 0.016479, 0.021973 ], [ 0.016479, 0.027466 ], [ 0.021973, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262700", "Lat": "0.0270000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.032959 ], [ 0.027466, 0.027466 ], [ 0.021973, 0.027466 ], [ 0.021973, 0.032959 ], [ 0.027466, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0315200", "Lat": "0.0270000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.027466 ], [ 0.027466, 0.027466 ], [ 0.027466, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262700", "Lat": "0.0216000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.027466 ], [ 0.027466, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.027466 ], [ 0.027466, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0315200", "Lat": "0.0216000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.027466 ], [ 0.032959, 0.021973 ], [ 0.027466, 0.021973 ], [ 0.027466, 0.027466 ], [ 0.032959, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0378000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.043945 ], [ 0.038452, 0.038452 ], [ 0.032959, 0.038452 ], [ 0.032959, 0.043945 ], [ 0.038452, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0324000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.038452 ], [ 0.038452, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.038452 ], [ 0.038452, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0420300", "Lat": "0.0378000", "KPI": 177, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.038452 ], [ 0.038452, 0.038452 ], [ 0.038452, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0324000", "KPI": 477, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.038452 ], [ 0.043945, 0.032959 ], [ 0.038452, 0.032959 ], [ 0.038452, 0.038452 ], [ 0.043945, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0367800", "Lat": "0.0270000", "KPI": 472, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.032959 ], [ 0.038452, 0.027466 ], [ 0.032959, 0.027466 ], [ 0.032959, 0.032959 ], [ 0.038452, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0367800", "Lat": "0.0216000", "KPI": 971, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.027466 ], [ 0.038452, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.027466 ], [ 0.038452, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0270000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.027466 ], [ 0.038452, 0.027466 ], [ 0.038452, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.027466 ], [ 0.043945, 0.021973 ], [ 0.038452, 0.021973 ], [ 0.038452, 0.027466 ], [ 0.043945, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0210200", "Lat": "0.0162000", "KPI": 449, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.016479 ], [ 0.016479, 0.016479 ], [ 0.016479, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0162000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.021973 ], [ 0.027466, 0.016479 ], [ 0.021973, 0.016479 ], [ 0.021973, 0.021973 ], [ 0.027466, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0315200", "Lat": "0.0162000", "KPI": 118, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.016479 ], [ 0.027466, 0.016479 ], [ 0.027466, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262700", "Lat": "0.0108000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0054000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0262700", "Lat": "0.0054000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0315200", "Lat": "0.0054000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0367800", "Lat": "0.0162000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.021973 ], [ 0.038452, 0.016479 ], [ 0.032959, 0.016479 ], [ 0.032959, 0.021973 ], [ 0.038452, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0108000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0420300", "Lat": "0.0162000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.016479 ], [ 0.038452, 0.016479 ], [ 0.038452, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0367800", "Lat": "0.0054000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0054000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0472900", "Lat": "0.0540000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.060425 ], [ 0.049438, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.060425 ], [ 0.049438, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0472900", "Lat": "0.0486000", "KPI": 696, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.054932 ], [ 0.049438, 0.049438 ], [ 0.043945, 0.049438 ], [ 0.043945, 0.054932 ], [ 0.049438, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0472900", "Lat": "0.0432000", "KPI": 905, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.049438 ], [ 0.049438, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.049438 ], [ 0.049438, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525400", "Lat": "0.0540000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.060425 ], [ 0.054932, 0.054932 ], [ 0.049438, 0.054932 ], [ 0.049438, 0.060425 ], [ 0.054932, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0525400", "Lat": "0.0486000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.049438 ], [ 0.049438, 0.049438 ], [ 0.049438, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0525400", "Lat": "0.0432000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.049438 ], [ 0.054932, 0.043945 ], [ 0.049438, 0.043945 ], [ 0.049438, 0.049438 ], [ 0.054932, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0577900", "Lat": "0.0540000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.060425 ], [ 0.060425, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.060425 ], [ 0.060425, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0577900", "Lat": "0.0486000", "KPI": 58, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.054932 ], [ 0.060425, 0.049438 ], [ 0.054932, 0.049438 ], [ 0.054932, 0.054932 ], [ 0.060425, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577900", "Lat": "0.0432000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.049438 ], [ 0.060425, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.049438 ], [ 0.060425, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0656800", "Lat": "0.0540000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.060425 ], [ 0.065918, 0.054932 ], [ 0.060425, 0.054932 ], [ 0.060425, 0.060425 ], [ 0.065918, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0656800", "Lat": "0.0486000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.049438 ], [ 0.060425, 0.049438 ], [ 0.060425, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.049438 ], [ 0.065918, 0.043945 ], [ 0.060425, 0.043945 ], [ 0.060425, 0.049438 ], [ 0.065918, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0709300", "Lat": "0.0540000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.060425 ], [ 0.071411, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.060425 ], [ 0.071411, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0486000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.054932 ], [ 0.071411, 0.049438 ], [ 0.065918, 0.049438 ], [ 0.065918, 0.054932 ], [ 0.071411, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0709300", "Lat": "0.0432000", "KPI": 493, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.049438 ], [ 0.071411, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.049438 ], [ 0.071411, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0761800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.060425 ], [ 0.076904, 0.054932 ], [ 0.071411, 0.054932 ], [ 0.071411, 0.060425 ], [ 0.076904, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0486000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.049438 ], [ 0.071411, 0.049438 ], [ 0.071411, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0432000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.049438 ], [ 0.076904, 0.043945 ], [ 0.071411, 0.043945 ], [ 0.071411, 0.049438 ], [ 0.076904, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0814400", "Lat": "0.0540000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.060425 ], [ 0.082397, 0.054932 ], [ 0.076904, 0.054932 ], [ 0.076904, 0.060425 ], [ 0.082397, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0814400", "Lat": "0.0486000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.054932 ], [ 0.082397, 0.049438 ], [ 0.076904, 0.049438 ], [ 0.076904, 0.054932 ], [ 0.082397, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0814400", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.049438 ], [ 0.082397, 0.043945 ], [ 0.076904, 0.043945 ], [ 0.076904, 0.049438 ], [ 0.082397, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0472900", "Lat": "0.0378000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.043945 ], [ 0.049438, 0.038452 ], [ 0.043945, 0.038452 ], [ 0.043945, 0.043945 ], [ 0.049438, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0472900", "Lat": "0.0324000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.038452 ], [ 0.049438, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.038452 ], [ 0.049438, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0525400", "Lat": "0.0378000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.038452 ], [ 0.049438, 0.038452 ], [ 0.049438, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0324000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.038452 ], [ 0.054932, 0.032959 ], [ 0.049438, 0.032959 ], [ 0.049438, 0.038452 ], [ 0.054932, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0472900", "Lat": "0.0270000", "KPI": 694, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.032959 ], [ 0.049438, 0.027466 ], [ 0.043945, 0.027466 ], [ 0.043945, 0.032959 ], [ 0.049438, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0216000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.027466 ], [ 0.049438, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.027466 ], [ 0.049438, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0525400", "Lat": "0.0270000", "KPI": 129, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.027466 ], [ 0.049438, 0.027466 ], [ 0.049438, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0525400", "Lat": "0.0216000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.027466 ], [ 0.054932, 0.021973 ], [ 0.049438, 0.021973 ], [ 0.049438, 0.027466 ], [ 0.054932, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577900", "Lat": "0.0378000", "KPI": 895, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043945 ], [ 0.060425, 0.038452 ], [ 0.054932, 0.038452 ], [ 0.054932, 0.043945 ], [ 0.060425, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0577900", "Lat": "0.0324000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.038452 ], [ 0.060425, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.038452 ], [ 0.060425, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0577900", "Lat": "0.0270000", "KPI": 761, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032959 ], [ 0.060425, 0.027466 ], [ 0.054932, 0.027466 ], [ 0.054932, 0.032959 ], [ 0.060425, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0577900", "Lat": "0.0216000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.027466 ], [ 0.060425, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.027466 ], [ 0.060425, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0472900", "Lat": "0.0162000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.021973 ], [ 0.049438, 0.016479 ], [ 0.043945, 0.016479 ], [ 0.043945, 0.021973 ], [ 0.049438, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0525400", "Lat": "0.0162000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.016479 ], [ 0.049438, 0.016479 ], [ 0.049438, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0054000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0525400", "Lat": "0.0054000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0577900", "Lat": "0.0162000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021973 ], [ 0.060425, 0.016479 ], [ 0.054932, 0.016479 ], [ 0.054932, 0.021973 ], [ 0.060425, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0577900", "Lat": "0.0108000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0577900", "Lat": "0.0054000", "KPI": 209, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0656800", "Lat": "0.0378000", "KPI": 887, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.038452 ], [ 0.060425, 0.038452 ], [ 0.060425, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0656800", "Lat": "0.0324000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.038452 ], [ 0.065918, 0.032959 ], [ 0.060425, 0.032959 ], [ 0.060425, 0.038452 ], [ 0.065918, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0709300", "Lat": "0.0378000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.043945 ], [ 0.071411, 0.038452 ], [ 0.065918, 0.038452 ], [ 0.065918, 0.043945 ], [ 0.071411, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0709300", "Lat": "0.0324000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.038452 ], [ 0.071411, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.038452 ], [ 0.071411, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0656800", "Lat": "0.0270000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.027466 ], [ 0.060425, 0.027466 ], [ 0.060425, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.027466 ], [ 0.065918, 0.021973 ], [ 0.060425, 0.021973 ], [ 0.060425, 0.027466 ], [ 0.065918, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0709300", "Lat": "0.0270000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.032959 ], [ 0.071411, 0.027466 ], [ 0.065918, 0.027466 ], [ 0.065918, 0.032959 ], [ 0.071411, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709300", "Lat": "0.0216000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.027466 ], [ 0.071411, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.027466 ], [ 0.071411, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0761800", "Lat": "0.0378000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.038452 ], [ 0.071411, 0.038452 ], [ 0.071411, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0761800", "Lat": "0.0324000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.038452 ], [ 0.076904, 0.032959 ], [ 0.071411, 0.032959 ], [ 0.071411, 0.038452 ], [ 0.076904, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0814400", "Lat": "0.0378000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.043945 ], [ 0.082397, 0.038452 ], [ 0.076904, 0.038452 ], [ 0.076904, 0.043945 ], [ 0.082397, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0814400", "Lat": "0.0324000", "KPI": 474, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.038452 ], [ 0.082397, 0.032959 ], [ 0.076904, 0.032959 ], [ 0.076904, 0.038452 ], [ 0.082397, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0761800", "Lat": "0.0270000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.027466 ], [ 0.071411, 0.027466 ], [ 0.071411, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0216000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.027466 ], [ 0.076904, 0.021973 ], [ 0.071411, 0.021973 ], [ 0.071411, 0.027466 ], [ 0.076904, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0270000", "KPI": 934, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.032959 ], [ 0.082397, 0.027466 ], [ 0.076904, 0.027466 ], [ 0.076904, 0.032959 ], [ 0.082397, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0814400", "Lat": "0.0216000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.027466 ], [ 0.082397, 0.021973 ], [ 0.076904, 0.021973 ], [ 0.076904, 0.027466 ], [ 0.082397, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0656800", "Lat": "0.0162000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.016479 ], [ 0.060425, 0.016479 ], [ 0.060425, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709300", "Lat": "0.0162000", "KPI": 737, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.021973 ], [ 0.071411, 0.016479 ], [ 0.065918, 0.016479 ], [ 0.065918, 0.021973 ], [ 0.071411, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0709300", "Lat": "0.0108000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656800", "Lat": "0.0054000", "KPI": 51, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0709300", "Lat": "0.0054000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761800", "Lat": "0.0162000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.016479 ], [ 0.071411, 0.016479 ], [ 0.071411, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0814400", "Lat": "0.0162000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.021973 ], [ 0.082397, 0.016479 ], [ 0.076904, 0.016479 ], [ 0.076904, 0.021973 ], [ 0.082397, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0814400", "Lat": "0.0108000", "KPI": 98, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0814400", "Lat": "0.0054000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 511, "y": 512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 511, "y": 511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0026300", "Lat": "0.0540000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.057678 ], [ 0.002747, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.057678 ], [ 0.002747, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026300", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.054932 ], [ 0.002747, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.054932 ], [ 0.002747, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0026300", "Lat": "0.0486000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.052185 ], [ 0.002747, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.052185 ], [ 0.002747, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0026300", "Lat": "0.0450000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.049438 ], [ 0.002747, 0.046692 ], [ 0.000000, 0.046692 ], [ 0.000000, 0.049438 ], [ 0.002747, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0026300", "Lat": "0.0432000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.046692 ], [ 0.002747, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.046692 ], [ 0.002747, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0052500", "Lat": "0.0540000", "KPI": 844, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.057678 ], [ 0.005493, 0.054932 ], [ 0.002747, 0.054932 ], [ 0.002747, 0.057678 ], [ 0.005493, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0522000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.052185 ], [ 0.002747, 0.052185 ], [ 0.002747, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0052500", "Lat": "0.0486000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.052185 ], [ 0.005493, 0.049438 ], [ 0.002747, 0.049438 ], [ 0.002747, 0.052185 ], [ 0.005493, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0450000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.046692 ], [ 0.002747, 0.046692 ], [ 0.002747, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052500", "Lat": "0.0432000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.046692 ], [ 0.005493, 0.043945 ], [ 0.002747, 0.043945 ], [ 0.002747, 0.046692 ], [ 0.005493, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0026300", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.043945 ], [ 0.002747, 0.041199 ], [ 0.000000, 0.041199 ], [ 0.000000, 0.043945 ], [ 0.002747, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0378000", "KPI": 611, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.041199 ], [ 0.002747, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.041199 ], [ 0.002747, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0026300", "Lat": "0.0342000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.038452 ], [ 0.002747, 0.035706 ], [ 0.000000, 0.035706 ], [ 0.000000, 0.038452 ], [ 0.002747, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0026300", "Lat": "0.0324000", "KPI": 769, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.035706 ], [ 0.002747, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.035706 ], [ 0.002747, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052500", "Lat": "0.0396000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.041199 ], [ 0.002747, 0.041199 ], [ 0.002747, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0378000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.041199 ], [ 0.005493, 0.038452 ], [ 0.002747, 0.038452 ], [ 0.002747, 0.041199 ], [ 0.005493, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0052500", "Lat": "0.0342000", "KPI": 845, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.035706 ], [ 0.002747, 0.035706 ], [ 0.002747, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052500", "Lat": "0.0324000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.035706 ], [ 0.005493, 0.032959 ], [ 0.002747, 0.032959 ], [ 0.002747, 0.035706 ], [ 0.005493, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0026300", "Lat": "0.0288000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.032959 ], [ 0.002747, 0.030212 ], [ 0.000000, 0.030212 ], [ 0.000000, 0.032959 ], [ 0.002747, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0270000", "KPI": 888, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.030212 ], [ 0.002747, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.030212 ], [ 0.002747, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026300", "Lat": "0.0234000", "KPI": 221, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.027466 ], [ 0.002747, 0.024719 ], [ 0.000000, 0.024719 ], [ 0.000000, 0.027466 ], [ 0.002747, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0026300", "Lat": "0.0216000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.024719 ], [ 0.002747, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.024719 ], [ 0.002747, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0052500", "Lat": "0.0288000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.030212 ], [ 0.002747, 0.030212 ], [ 0.002747, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0052500", "Lat": "0.0270000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.030212 ], [ 0.005493, 0.027466 ], [ 0.002747, 0.027466 ], [ 0.002747, 0.030212 ], [ 0.005493, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0052500", "Lat": "0.0234000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.024719 ], [ 0.002747, 0.024719 ], [ 0.002747, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0052500", "Lat": "0.0216000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.024719 ], [ 0.005493, 0.021973 ], [ 0.002747, 0.021973 ], [ 0.002747, 0.024719 ], [ 0.005493, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0026300", "Lat": "0.0180000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.021973 ], [ 0.002747, 0.019226 ], [ 0.000000, 0.019226 ], [ 0.000000, 0.021973 ], [ 0.002747, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0026300", "Lat": "0.0162000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.019226 ], [ 0.002747, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.019226 ], [ 0.002747, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0026300", "Lat": "0.0126000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.016479 ], [ 0.002747, 0.013733 ], [ 0.000000, 0.013733 ], [ 0.000000, 0.016479 ], [ 0.002747, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0026300", "Lat": "0.0108000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.013733 ], [ 0.002747, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.013733 ], [ 0.002747, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0052500", "Lat": "0.0180000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.019226 ], [ 0.002747, 0.019226 ], [ 0.002747, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0052500", "Lat": "0.0162000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.019226 ], [ 0.005493, 0.016479 ], [ 0.002747, 0.016479 ], [ 0.002747, 0.019226 ], [ 0.005493, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0126000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.013733 ], [ 0.002747, 0.013733 ], [ 0.002747, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.013733 ], [ 0.005493, 0.010986 ], [ 0.002747, 0.010986 ], [ 0.002747, 0.013733 ], [ 0.005493, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0072000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.010986 ], [ 0.002747, 0.008240 ], [ 0.000000, 0.008240 ], [ 0.000000, 0.010986 ], [ 0.002747, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0052500", "Lat": "0.0072000", "KPI": 759, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.008240 ], [ 0.002747, 0.008240 ], [ 0.002747, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 512, "y": 512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078800", "Lat": "0.0054000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.008240 ], [ 0.008240, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.008240 ], [ 0.008240, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0078800", "Lat": "0.0018000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.005493 ], [ 0.008240, 0.002747 ], [ 0.005493, 0.002747 ], [ 0.005493, 0.005493 ], [ 0.008240, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0078800", "Lat": "0.0000000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.002747 ], [ 0.008240, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.002747 ], [ 0.008240, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.008240 ], [ 0.010986, 0.005493 ], [ 0.008240, 0.005493 ], [ 0.008240, 0.008240 ], [ 0.010986, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0131400", "Lat": "0.0054000", "KPI": 372, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.008240 ], [ 0.013733, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.008240 ], [ 0.013733, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105100", "Lat": "0.0018000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.002747 ], [ 0.008240, 0.002747 ], [ 0.008240, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.002747 ], [ 0.010986, 0.000000 ], [ 0.008240, 0.000000 ], [ 0.008240, 0.002747 ], [ 0.010986, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0131400", "Lat": "0.0018000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.005493 ], [ 0.013733, 0.002747 ], [ 0.010986, 0.002747 ], [ 0.010986, 0.005493 ], [ 0.013733, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0131400", "Lat": "0.0000000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.002747 ], [ 0.013733, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.002747 ], [ 0.013733, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0157600", "Lat": "0.0054000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.008240 ], [ 0.016479, 0.005493 ], [ 0.013733, 0.005493 ], [ 0.013733, 0.008240 ], [ 0.016479, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0183900", "Lat": "0.0054000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.008240 ], [ 0.019226, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.008240 ], [ 0.019226, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0157600", "Lat": "0.0018000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.002747 ], [ 0.013733, 0.002747 ], [ 0.013733, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.002747 ], [ 0.016479, 0.000000 ], [ 0.013733, 0.000000 ], [ 0.013733, 0.002747 ], [ 0.016479, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0183900", "Lat": "0.0018000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.005493 ], [ 0.019226, 0.002747 ], [ 0.016479, 0.002747 ], [ 0.016479, 0.005493 ], [ 0.019226, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183900", "Lat": "0.0000000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.002747 ], [ 0.019226, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.002747 ], [ 0.019226, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0054000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.008240 ], [ 0.021973, 0.005493 ], [ 0.019226, 0.005493 ], [ 0.019226, 0.008240 ], [ 0.021973, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0236400", "Lat": "0.0054000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.008240 ], [ 0.024719, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.008240 ], [ 0.024719, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0210200", "Lat": "0.0018000", "KPI": 484, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.002747 ], [ 0.019226, 0.002747 ], [ 0.019226, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.002747 ], [ 0.021973, 0.000000 ], [ 0.019226, 0.000000 ], [ 0.019226, 0.002747 ], [ 0.021973, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0236400", "Lat": "0.0018000", "KPI": 136, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.005493 ], [ 0.024719, 0.002747 ], [ 0.021973, 0.002747 ], [ 0.021973, 0.005493 ], [ 0.024719, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0000000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.002747 ], [ 0.024719, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.002747 ], [ 0.024719, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0262700", "Lat": "0.0054000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.008240 ], [ 0.027466, 0.005493 ], [ 0.024719, 0.005493 ], [ 0.024719, 0.008240 ], [ 0.027466, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0289000", "Lat": "0.0054000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.008240 ], [ 0.030212, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.008240 ], [ 0.030212, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0315200", "Lat": "0.0054000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.008240 ], [ 0.032959, 0.005493 ], [ 0.030212, 0.005493 ], [ 0.030212, 0.008240 ], [ 0.032959, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0262700", "Lat": "0.0018000", "KPI": 489, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.002747 ], [ 0.024719, 0.002747 ], [ 0.024719, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.002747 ], [ 0.027466, 0.000000 ], [ 0.024719, 0.000000 ], [ 0.024719, 0.002747 ], [ 0.027466, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0289000", "Lat": "0.0018000", "KPI": 855, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.005493 ], [ 0.030212, 0.002747 ], [ 0.027466, 0.002747 ], [ 0.027466, 0.005493 ], [ 0.030212, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0289000", "Lat": "0.0000000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.002747 ], [ 0.030212, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.002747 ], [ 0.030212, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0315200", "Lat": "0.0018000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.002747 ], [ 0.030212, 0.002747 ], [ 0.030212, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.002747 ], [ 0.032959, 0.000000 ], [ 0.030212, 0.000000 ], [ 0.030212, 0.002747 ], [ 0.032959, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341500", "Lat": "0.0054000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.008240 ], [ 0.035706, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.008240 ], [ 0.035706, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0367800", "Lat": "0.0054000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.008240 ], [ 0.038452, 0.005493 ], [ 0.035706, 0.005493 ], [ 0.035706, 0.008240 ], [ 0.038452, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0018000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.005493 ], [ 0.035706, 0.002747 ], [ 0.032959, 0.002747 ], [ 0.032959, 0.005493 ], [ 0.035706, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0000000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.002747 ], [ 0.035706, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.002747 ], [ 0.035706, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0018000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.002747 ], [ 0.035706, 0.002747 ], [ 0.035706, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.002747 ], [ 0.038452, 0.000000 ], [ 0.035706, 0.000000 ], [ 0.035706, 0.002747 ], [ 0.038452, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0394100", "Lat": "0.0054000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.008240 ], [ 0.041199, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.008240 ], [ 0.041199, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0054000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.008240 ], [ 0.043945, 0.005493 ], [ 0.041199, 0.005493 ], [ 0.041199, 0.008240 ], [ 0.043945, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394100", "Lat": "0.0018000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.005493 ], [ 0.041199, 0.002747 ], [ 0.038452, 0.002747 ], [ 0.038452, 0.005493 ], [ 0.041199, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394100", "Lat": "0.0000000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.002747 ], [ 0.041199, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.002747 ], [ 0.041199, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0420300", "Lat": "0.0018000", "KPI": 331, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.002747 ], [ 0.041199, 0.002747 ], [ 0.041199, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.002747 ], [ 0.043945, 0.000000 ], [ 0.041199, 0.000000 ], [ 0.041199, 0.002747 ], [ 0.043945, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0446600", "Lat": "0.0054000", "KPI": 846, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.008240 ], [ 0.046692, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.008240 ], [ 0.046692, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0054000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.008240 ], [ 0.049438, 0.005493 ], [ 0.046692, 0.005493 ], [ 0.046692, 0.008240 ], [ 0.049438, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0446600", "Lat": "0.0018000", "KPI": 727, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.005493 ], [ 0.046692, 0.002747 ], [ 0.043945, 0.002747 ], [ 0.043945, 0.005493 ], [ 0.046692, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0446600", "Lat": "0.0000000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.002747 ], [ 0.046692, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.002747 ], [ 0.046692, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0018000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.002747 ], [ 0.046692, 0.002747 ], [ 0.046692, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.002747 ], [ 0.049438, 0.000000 ], [ 0.046692, 0.000000 ], [ 0.046692, 0.002747 ], [ 0.049438, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0499100", "Lat": "0.0054000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.008240 ], [ 0.052185, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.008240 ], [ 0.052185, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0525400", "Lat": "0.0054000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.008240 ], [ 0.054932, 0.005493 ], [ 0.052185, 0.005493 ], [ 0.052185, 0.008240 ], [ 0.054932, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0018000", "KPI": 452, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.005493 ], [ 0.052185, 0.002747 ], [ 0.049438, 0.002747 ], [ 0.049438, 0.005493 ], [ 0.052185, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0499100", "Lat": "0.0000000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.002747 ], [ 0.052185, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.002747 ], [ 0.052185, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0525400", "Lat": "0.0018000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.002747 ], [ 0.052185, 0.002747 ], [ 0.052185, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.002747 ], [ 0.054932, 0.000000 ], [ 0.052185, 0.000000 ], [ 0.052185, 0.002747 ], [ 0.054932, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0551700", "Lat": "0.0054000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.008240 ], [ 0.057678, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.008240 ], [ 0.057678, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0577900", "Lat": "0.0054000", "KPI": 209, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.008240 ], [ 0.060425, 0.005493 ], [ 0.057678, 0.005493 ], [ 0.057678, 0.008240 ], [ 0.060425, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0551700", "Lat": "0.0018000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.005493 ], [ 0.057678, 0.002747 ], [ 0.054932, 0.002747 ], [ 0.054932, 0.005493 ], [ 0.057678, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0551700", "Lat": "0.0000000", "KPI": 65, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.002747 ], [ 0.057678, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.002747 ], [ 0.057678, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577900", "Lat": "0.0018000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.002747 ], [ 0.057678, 0.002747 ], [ 0.057678, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.002747 ], [ 0.060425, 0.000000 ], [ 0.057678, 0.000000 ], [ 0.057678, 0.002747 ], [ 0.060425, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0630500", "Lat": "0.0054000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.008240 ], [ 0.063171, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.008240 ], [ 0.063171, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0018000", "KPI": 873, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.005493 ], [ 0.063171, 0.002747 ], [ 0.060425, 0.002747 ], [ 0.060425, 0.005493 ], [ 0.063171, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0630500", "Lat": "0.0000000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.002747 ], [ 0.063171, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.002747 ], [ 0.063171, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656800", "Lat": "0.0054000", "KPI": 51, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.008240 ], [ 0.065918, 0.005493 ], [ 0.063171, 0.005493 ], [ 0.063171, 0.008240 ], [ 0.065918, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0683000", "Lat": "0.0054000", "KPI": 681, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.008240 ], [ 0.068665, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.008240 ], [ 0.068665, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656800", "Lat": "0.0018000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.002747 ], [ 0.063171, 0.002747 ], [ 0.063171, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.002747 ], [ 0.065918, 0.000000 ], [ 0.063171, 0.000000 ], [ 0.063171, 0.002747 ], [ 0.065918, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0683000", "Lat": "0.0018000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.005493 ], [ 0.068665, 0.002747 ], [ 0.065918, 0.002747 ], [ 0.065918, 0.005493 ], [ 0.068665, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0683000", "Lat": "0.0000000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.002747 ], [ 0.068665, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.002747 ], [ 0.068665, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0709300", "Lat": "0.0054000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.008240 ], [ 0.071411, 0.005493 ], [ 0.068665, 0.005493 ], [ 0.068665, 0.008240 ], [ 0.071411, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0735600", "Lat": "0.0054000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.008240 ], [ 0.074158, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.008240 ], [ 0.074158, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0709300", "Lat": "0.0018000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.002747 ], [ 0.068665, 0.002747 ], [ 0.068665, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.002747 ], [ 0.071411, 0.000000 ], [ 0.068665, 0.000000 ], [ 0.068665, 0.002747 ], [ 0.071411, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0735600", "Lat": "0.0018000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.005493 ], [ 0.074158, 0.002747 ], [ 0.071411, 0.002747 ], [ 0.071411, 0.005493 ], [ 0.074158, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0735600", "Lat": "0.0000000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.002747 ], [ 0.074158, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.002747 ], [ 0.074158, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.008240 ], [ 0.076904, 0.005493 ], [ 0.074158, 0.005493 ], [ 0.074158, 0.008240 ], [ 0.076904, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0788100", "Lat": "0.0054000", "KPI": 609, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.008240 ], [ 0.079651, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.008240 ], [ 0.079651, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0761800", "Lat": "0.0018000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.002747 ], [ 0.074158, 0.002747 ], [ 0.074158, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.002747 ], [ 0.076904, 0.000000 ], [ 0.074158, 0.000000 ], [ 0.074158, 0.002747 ], [ 0.076904, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0788100", "Lat": "0.0018000", "KPI": 886, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.005493 ], [ 0.079651, 0.002747 ], [ 0.076904, 0.002747 ], [ 0.076904, 0.005493 ], [ 0.079651, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0788100", "Lat": "0.0000000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.002747 ], [ 0.079651, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.002747 ], [ 0.079651, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0814400", "Lat": "0.0054000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.008240 ], [ 0.082397, 0.005493 ], [ 0.079651, 0.005493 ], [ 0.079651, 0.008240 ], [ 0.082397, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0018000", "KPI": 505, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.002747 ], [ 0.079651, 0.002747 ], [ 0.079651, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.002747 ], [ 0.082397, 0.000000 ], [ 0.079651, 0.000000 ], [ 0.079651, 0.002747 ], [ 0.082397, 0.002747 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 512, "y": 511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0026300", "Lat": "0.0540000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.057678 ], [ 0.002747, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.057678 ], [ 0.002747, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026300", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.054932 ], [ 0.002747, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.054932 ], [ 0.002747, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0026300", "Lat": "0.0486000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.052185 ], [ 0.002747, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.052185 ], [ 0.002747, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0026300", "Lat": "0.0450000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.049438 ], [ 0.002747, 0.046692 ], [ 0.000000, 0.046692 ], [ 0.000000, 0.049438 ], [ 0.002747, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0026300", "Lat": "0.0432000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.046692 ], [ 0.002747, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.046692 ], [ 0.002747, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0052500", "Lat": "0.0540000", "KPI": 844, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.057678 ], [ 0.005493, 0.054932 ], [ 0.002747, 0.054932 ], [ 0.002747, 0.057678 ], [ 0.005493, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0522000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.052185 ], [ 0.002747, 0.052185 ], [ 0.002747, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0052500", "Lat": "0.0486000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.052185 ], [ 0.005493, 0.049438 ], [ 0.002747, 0.049438 ], [ 0.002747, 0.052185 ], [ 0.005493, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078800", "Lat": "0.0540000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.057678 ], [ 0.008240, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.057678 ], [ 0.008240, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0078800", "Lat": "0.0522000", "KPI": 48, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.054932 ], [ 0.008240, 0.052185 ], [ 0.005493, 0.052185 ], [ 0.005493, 0.054932 ], [ 0.008240, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0078800", "Lat": "0.0486000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.052185 ], [ 0.008240, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.052185 ], [ 0.008240, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0450000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.046692 ], [ 0.002747, 0.046692 ], [ 0.002747, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052500", "Lat": "0.0432000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.046692 ], [ 0.005493, 0.043945 ], [ 0.002747, 0.043945 ], [ 0.002747, 0.046692 ], [ 0.005493, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0078800", "Lat": "0.0450000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.049438 ], [ 0.008240, 0.046692 ], [ 0.005493, 0.046692 ], [ 0.005493, 0.049438 ], [ 0.008240, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0078800", "Lat": "0.0432000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.046692 ], [ 0.008240, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.046692 ], [ 0.008240, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.057678 ], [ 0.010986, 0.054932 ], [ 0.008240, 0.054932 ], [ 0.008240, 0.057678 ], [ 0.010986, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0105100", "Lat": "0.0522000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.052185 ], [ 0.008240, 0.052185 ], [ 0.008240, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0105100", "Lat": "0.0486000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.052185 ], [ 0.010986, 0.049438 ], [ 0.008240, 0.049438 ], [ 0.008240, 0.052185 ], [ 0.010986, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0131400", "Lat": "0.0540000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.057678 ], [ 0.013733, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.057678 ], [ 0.013733, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0131400", "Lat": "0.0522000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.054932 ], [ 0.013733, 0.052185 ], [ 0.010986, 0.052185 ], [ 0.010986, 0.054932 ], [ 0.013733, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0131400", "Lat": "0.0486000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.052185 ], [ 0.013733, 0.049438 ], [ 0.010986, 0.049438 ], [ 0.010986, 0.052185 ], [ 0.013733, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0105100", "Lat": "0.0450000", "KPI": 189, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.046692 ], [ 0.008240, 0.046692 ], [ 0.008240, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.046692 ], [ 0.010986, 0.043945 ], [ 0.008240, 0.043945 ], [ 0.008240, 0.046692 ], [ 0.010986, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0131400", "Lat": "0.0450000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.049438 ], [ 0.013733, 0.046692 ], [ 0.010986, 0.046692 ], [ 0.010986, 0.049438 ], [ 0.013733, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0131400", "Lat": "0.0432000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.046692 ], [ 0.013733, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.046692 ], [ 0.013733, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0157600", "Lat": "0.0540000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.057678 ], [ 0.016479, 0.054932 ], [ 0.013733, 0.054932 ], [ 0.013733, 0.057678 ], [ 0.016479, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0157600", "Lat": "0.0522000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.054932 ], [ 0.016479, 0.052185 ], [ 0.013733, 0.052185 ], [ 0.013733, 0.054932 ], [ 0.016479, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0157600", "Lat": "0.0486000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.052185 ], [ 0.016479, 0.049438 ], [ 0.013733, 0.049438 ], [ 0.013733, 0.052185 ], [ 0.016479, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183900", "Lat": "0.0540000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.057678 ], [ 0.019226, 0.054932 ], [ 0.016479, 0.054932 ], [ 0.016479, 0.057678 ], [ 0.019226, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0183900", "Lat": "0.0522000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.054932 ], [ 0.019226, 0.052185 ], [ 0.016479, 0.052185 ], [ 0.016479, 0.054932 ], [ 0.019226, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0183900", "Lat": "0.0486000", "KPI": 880, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.052185 ], [ 0.019226, 0.049438 ], [ 0.016479, 0.049438 ], [ 0.016479, 0.052185 ], [ 0.019226, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0157600", "Lat": "0.0450000", "KPI": 689, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.049438 ], [ 0.016479, 0.046692 ], [ 0.013733, 0.046692 ], [ 0.013733, 0.049438 ], [ 0.016479, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0432000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.046692 ], [ 0.016479, 0.043945 ], [ 0.013733, 0.043945 ], [ 0.013733, 0.046692 ], [ 0.016479, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0183900", "Lat": "0.0450000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.049438 ], [ 0.019226, 0.046692 ], [ 0.016479, 0.046692 ], [ 0.016479, 0.049438 ], [ 0.019226, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0183900", "Lat": "0.0432000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.046692 ], [ 0.019226, 0.043945 ], [ 0.016479, 0.043945 ], [ 0.016479, 0.046692 ], [ 0.019226, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0210200", "Lat": "0.0540000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.057678 ], [ 0.021973, 0.054932 ], [ 0.019226, 0.054932 ], [ 0.019226, 0.057678 ], [ 0.021973, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0522000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.052185 ], [ 0.019226, 0.052185 ], [ 0.019226, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0210200", "Lat": "0.0486000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.052185 ], [ 0.021973, 0.049438 ], [ 0.019226, 0.049438 ], [ 0.019226, 0.052185 ], [ 0.021973, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0236400", "Lat": "0.0540000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.057678 ], [ 0.024719, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.057678 ], [ 0.024719, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0236400", "Lat": "0.0522000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.054932 ], [ 0.024719, 0.052185 ], [ 0.021973, 0.052185 ], [ 0.021973, 0.054932 ], [ 0.024719, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0236400", "Lat": "0.0486000", "KPI": 726, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.052185 ], [ 0.024719, 0.049438 ], [ 0.021973, 0.049438 ], [ 0.021973, 0.052185 ], [ 0.024719, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0210200", "Lat": "0.0450000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.049438 ], [ 0.021973, 0.046692 ], [ 0.019226, 0.046692 ], [ 0.019226, 0.049438 ], [ 0.021973, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.046692 ], [ 0.021973, 0.043945 ], [ 0.019226, 0.043945 ], [ 0.019226, 0.046692 ], [ 0.021973, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0236400", "Lat": "0.0450000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.049438 ], [ 0.024719, 0.046692 ], [ 0.021973, 0.046692 ], [ 0.021973, 0.049438 ], [ 0.024719, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0236400", "Lat": "0.0432000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.046692 ], [ 0.024719, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.046692 ], [ 0.024719, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0262700", "Lat": "0.0540000", "KPI": 797, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.057678 ], [ 0.027466, 0.054932 ], [ 0.024719, 0.054932 ], [ 0.024719, 0.057678 ], [ 0.027466, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0262700", "Lat": "0.0522000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.054932 ], [ 0.027466, 0.052185 ], [ 0.024719, 0.052185 ], [ 0.024719, 0.054932 ], [ 0.027466, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0262700", "Lat": "0.0486000", "KPI": 645, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.052185 ], [ 0.027466, 0.049438 ], [ 0.024719, 0.049438 ], [ 0.024719, 0.052185 ], [ 0.027466, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0289000", "Lat": "0.0540000", "KPI": 705, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.057678 ], [ 0.030212, 0.054932 ], [ 0.027466, 0.054932 ], [ 0.027466, 0.057678 ], [ 0.030212, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0289000", "Lat": "0.0522000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.054932 ], [ 0.030212, 0.052185 ], [ 0.027466, 0.052185 ], [ 0.027466, 0.054932 ], [ 0.030212, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0315200", "Lat": "0.0540000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.057678 ], [ 0.032959, 0.054932 ], [ 0.030212, 0.054932 ], [ 0.030212, 0.057678 ], [ 0.032959, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0315200", "Lat": "0.0522000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.052185 ], [ 0.030212, 0.052185 ], [ 0.030212, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0289000", "Lat": "0.0486000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.052185 ], [ 0.030212, 0.049438 ], [ 0.027466, 0.049438 ], [ 0.027466, 0.052185 ], [ 0.030212, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0315200", "Lat": "0.0486000", "KPI": 901, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.052185 ], [ 0.032959, 0.049438 ], [ 0.030212, 0.049438 ], [ 0.030212, 0.052185 ], [ 0.032959, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0262700", "Lat": "0.0450000", "KPI": 693, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.049438 ], [ 0.027466, 0.046692 ], [ 0.024719, 0.046692 ], [ 0.024719, 0.049438 ], [ 0.027466, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0262700", "Lat": "0.0432000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.046692 ], [ 0.027466, 0.043945 ], [ 0.024719, 0.043945 ], [ 0.024719, 0.046692 ], [ 0.027466, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0289000", "Lat": "0.0450000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.049438 ], [ 0.030212, 0.046692 ], [ 0.027466, 0.046692 ], [ 0.027466, 0.049438 ], [ 0.030212, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0289000", "Lat": "0.0432000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.046692 ], [ 0.030212, 0.043945 ], [ 0.027466, 0.043945 ], [ 0.027466, 0.046692 ], [ 0.030212, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0315200", "Lat": "0.0450000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.049438 ], [ 0.032959, 0.046692 ], [ 0.030212, 0.046692 ], [ 0.030212, 0.049438 ], [ 0.032959, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0315200", "Lat": "0.0432000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.046692 ], [ 0.032959, 0.043945 ], [ 0.030212, 0.043945 ], [ 0.030212, 0.046692 ], [ 0.032959, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0341500", "Lat": "0.0540000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.057678 ], [ 0.035706, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.057678 ], [ 0.035706, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0341500", "Lat": "0.0522000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.054932 ], [ 0.035706, 0.052185 ], [ 0.032959, 0.052185 ], [ 0.032959, 0.054932 ], [ 0.035706, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0341500", "Lat": "0.0486000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.052185 ], [ 0.035706, 0.049438 ], [ 0.032959, 0.049438 ], [ 0.032959, 0.052185 ], [ 0.035706, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0367800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.057678 ], [ 0.038452, 0.054932 ], [ 0.035706, 0.054932 ], [ 0.035706, 0.057678 ], [ 0.038452, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0367800", "Lat": "0.0522000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.054932 ], [ 0.038452, 0.052185 ], [ 0.035706, 0.052185 ], [ 0.035706, 0.054932 ], [ 0.038452, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0367800", "Lat": "0.0486000", "KPI": 642, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.052185 ], [ 0.038452, 0.049438 ], [ 0.035706, 0.049438 ], [ 0.035706, 0.052185 ], [ 0.038452, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0341500", "Lat": "0.0450000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.049438 ], [ 0.035706, 0.046692 ], [ 0.032959, 0.046692 ], [ 0.032959, 0.049438 ], [ 0.035706, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0341500", "Lat": "0.0432000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.046692 ], [ 0.035706, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.046692 ], [ 0.035706, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0450000", "KPI": 79, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.049438 ], [ 0.038452, 0.046692 ], [ 0.035706, 0.046692 ], [ 0.035706, 0.049438 ], [ 0.038452, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0367800", "Lat": "0.0432000", "KPI": 490, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.046692 ], [ 0.038452, 0.043945 ], [ 0.035706, 0.043945 ], [ 0.035706, 0.046692 ], [ 0.038452, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0394100", "Lat": "0.0540000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.057678 ], [ 0.041199, 0.054932 ], [ 0.038452, 0.054932 ], [ 0.038452, 0.057678 ], [ 0.041199, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0394100", "Lat": "0.0522000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.054932 ], [ 0.041199, 0.052185 ], [ 0.038452, 0.052185 ], [ 0.038452, 0.054932 ], [ 0.041199, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0394100", "Lat": "0.0486000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.052185 ], [ 0.041199, 0.049438 ], [ 0.038452, 0.049438 ], [ 0.038452, 0.052185 ], [ 0.041199, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0420300", "Lat": "0.0540000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.057678 ], [ 0.043945, 0.054932 ], [ 0.041199, 0.054932 ], [ 0.041199, 0.057678 ], [ 0.043945, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0420300", "Lat": "0.0522000", "KPI": 522, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.052185 ], [ 0.041199, 0.052185 ], [ 0.041199, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0420300", "Lat": "0.0486000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.052185 ], [ 0.043945, 0.049438 ], [ 0.041199, 0.049438 ], [ 0.041199, 0.052185 ], [ 0.043945, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0394100", "Lat": "0.0450000", "KPI": 966, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.049438 ], [ 0.041199, 0.046692 ], [ 0.038452, 0.046692 ], [ 0.038452, 0.049438 ], [ 0.041199, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0394100", "Lat": "0.0432000", "KPI": 653, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.046692 ], [ 0.041199, 0.043945 ], [ 0.038452, 0.043945 ], [ 0.038452, 0.046692 ], [ 0.041199, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420300", "Lat": "0.0450000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.049438 ], [ 0.043945, 0.046692 ], [ 0.041199, 0.046692 ], [ 0.041199, 0.049438 ], [ 0.043945, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.046692 ], [ 0.043945, 0.043945 ], [ 0.041199, 0.043945 ], [ 0.041199, 0.046692 ], [ 0.043945, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0026300", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.043945 ], [ 0.002747, 0.041199 ], [ 0.000000, 0.041199 ], [ 0.000000, 0.043945 ], [ 0.002747, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0378000", "KPI": 611, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.041199 ], [ 0.002747, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.041199 ], [ 0.002747, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0026300", "Lat": "0.0342000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.038452 ], [ 0.002747, 0.035706 ], [ 0.000000, 0.035706 ], [ 0.000000, 0.038452 ], [ 0.002747, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0026300", "Lat": "0.0324000", "KPI": 769, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.035706 ], [ 0.002747, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.035706 ], [ 0.002747, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052500", "Lat": "0.0396000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.041199 ], [ 0.002747, 0.041199 ], [ 0.002747, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0378000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.041199 ], [ 0.005493, 0.038452 ], [ 0.002747, 0.038452 ], [ 0.002747, 0.041199 ], [ 0.005493, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0078800", "Lat": "0.0396000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.043945 ], [ 0.008240, 0.041199 ], [ 0.005493, 0.041199 ], [ 0.005493, 0.043945 ], [ 0.008240, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0078800", "Lat": "0.0378000", "KPI": 429, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.041199 ], [ 0.008240, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.041199 ], [ 0.008240, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0052500", "Lat": "0.0342000", "KPI": 845, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.035706 ], [ 0.002747, 0.035706 ], [ 0.002747, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052500", "Lat": "0.0324000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.035706 ], [ 0.005493, 0.032959 ], [ 0.002747, 0.032959 ], [ 0.002747, 0.035706 ], [ 0.005493, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0078800", "Lat": "0.0342000", "KPI": 68, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.038452 ], [ 0.008240, 0.035706 ], [ 0.005493, 0.035706 ], [ 0.005493, 0.038452 ], [ 0.008240, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0078800", "Lat": "0.0324000", "KPI": 963, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.035706 ], [ 0.008240, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.035706 ], [ 0.008240, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0026300", "Lat": "0.0288000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.032959 ], [ 0.002747, 0.030212 ], [ 0.000000, 0.030212 ], [ 0.000000, 0.032959 ], [ 0.002747, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0270000", "KPI": 888, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.030212 ], [ 0.002747, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.030212 ], [ 0.002747, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026300", "Lat": "0.0234000", "KPI": 221, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.027466 ], [ 0.002747, 0.024719 ], [ 0.000000, 0.024719 ], [ 0.000000, 0.027466 ], [ 0.002747, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0026300", "Lat": "0.0216000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.024719 ], [ 0.002747, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.024719 ], [ 0.002747, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0052500", "Lat": "0.0288000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.030212 ], [ 0.002747, 0.030212 ], [ 0.002747, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0052500", "Lat": "0.0270000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.030212 ], [ 0.005493, 0.027466 ], [ 0.002747, 0.027466 ], [ 0.002747, 0.030212 ], [ 0.005493, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0078800", "Lat": "0.0288000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.032959 ], [ 0.008240, 0.030212 ], [ 0.005493, 0.030212 ], [ 0.005493, 0.032959 ], [ 0.008240, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0078800", "Lat": "0.0270000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.030212 ], [ 0.008240, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.030212 ], [ 0.008240, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0052500", "Lat": "0.0234000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.024719 ], [ 0.002747, 0.024719 ], [ 0.002747, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0052500", "Lat": "0.0216000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.024719 ], [ 0.005493, 0.021973 ], [ 0.002747, 0.021973 ], [ 0.002747, 0.024719 ], [ 0.005493, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0078800", "Lat": "0.0234000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.027466 ], [ 0.008240, 0.024719 ], [ 0.005493, 0.024719 ], [ 0.005493, 0.027466 ], [ 0.008240, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0078800", "Lat": "0.0216000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.024719 ], [ 0.008240, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.024719 ], [ 0.008240, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0105100", "Lat": "0.0396000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.041199 ], [ 0.008240, 0.041199 ], [ 0.008240, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0105100", "Lat": "0.0378000", "KPI": 921, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.041199 ], [ 0.010986, 0.038452 ], [ 0.008240, 0.038452 ], [ 0.008240, 0.041199 ], [ 0.010986, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0131400", "Lat": "0.0396000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.043945 ], [ 0.013733, 0.041199 ], [ 0.010986, 0.041199 ], [ 0.010986, 0.043945 ], [ 0.013733, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0131400", "Lat": "0.0378000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.041199 ], [ 0.013733, 0.038452 ], [ 0.010986, 0.038452 ], [ 0.010986, 0.041199 ], [ 0.013733, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0105100", "Lat": "0.0342000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.035706 ], [ 0.008240, 0.035706 ], [ 0.008240, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.035706 ], [ 0.010986, 0.032959 ], [ 0.008240, 0.032959 ], [ 0.008240, 0.035706 ], [ 0.010986, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0131400", "Lat": "0.0342000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.038452 ], [ 0.013733, 0.035706 ], [ 0.010986, 0.035706 ], [ 0.010986, 0.038452 ], [ 0.013733, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0131400", "Lat": "0.0324000", "KPI": 208, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.035706 ], [ 0.013733, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.035706 ], [ 0.013733, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0157600", "Lat": "0.0396000", "KPI": 283, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.043945 ], [ 0.016479, 0.041199 ], [ 0.013733, 0.041199 ], [ 0.013733, 0.043945 ], [ 0.016479, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0378000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.041199 ], [ 0.016479, 0.038452 ], [ 0.013733, 0.038452 ], [ 0.013733, 0.041199 ], [ 0.016479, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0183900", "Lat": "0.0396000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.043945 ], [ 0.019226, 0.041199 ], [ 0.016479, 0.041199 ], [ 0.016479, 0.043945 ], [ 0.019226, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0183900", "Lat": "0.0378000", "KPI": 977, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.041199 ], [ 0.019226, 0.038452 ], [ 0.016479, 0.038452 ], [ 0.016479, 0.041199 ], [ 0.019226, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0157600", "Lat": "0.0342000", "KPI": 196, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.038452 ], [ 0.016479, 0.035706 ], [ 0.013733, 0.035706 ], [ 0.013733, 0.038452 ], [ 0.016479, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0157600", "Lat": "0.0324000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.035706 ], [ 0.016479, 0.032959 ], [ 0.013733, 0.032959 ], [ 0.013733, 0.035706 ], [ 0.016479, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0183900", "Lat": "0.0342000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.038452 ], [ 0.019226, 0.035706 ], [ 0.016479, 0.035706 ], [ 0.016479, 0.038452 ], [ 0.019226, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0183900", "Lat": "0.0324000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.035706 ], [ 0.019226, 0.032959 ], [ 0.016479, 0.032959 ], [ 0.016479, 0.035706 ], [ 0.019226, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0105100", "Lat": "0.0288000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.030212 ], [ 0.008240, 0.030212 ], [ 0.008240, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0105100", "Lat": "0.0270000", "KPI": 937, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.030212 ], [ 0.010986, 0.027466 ], [ 0.008240, 0.027466 ], [ 0.008240, 0.030212 ], [ 0.010986, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0131400", "Lat": "0.0288000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.032959 ], [ 0.013733, 0.030212 ], [ 0.010986, 0.030212 ], [ 0.010986, 0.032959 ], [ 0.013733, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0131400", "Lat": "0.0270000", "KPI": 885, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.030212 ], [ 0.013733, 0.027466 ], [ 0.010986, 0.027466 ], [ 0.010986, 0.030212 ], [ 0.013733, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0105100", "Lat": "0.0234000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.024719 ], [ 0.008240, 0.024719 ], [ 0.008240, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.024719 ], [ 0.010986, 0.021973 ], [ 0.008240, 0.021973 ], [ 0.008240, 0.024719 ], [ 0.010986, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0131400", "Lat": "0.0234000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.027466 ], [ 0.013733, 0.024719 ], [ 0.010986, 0.024719 ], [ 0.010986, 0.027466 ], [ 0.013733, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0131400", "Lat": "0.0216000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.024719 ], [ 0.013733, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.024719 ], [ 0.013733, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0157600", "Lat": "0.0288000", "KPI": 614, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.032959 ], [ 0.016479, 0.030212 ], [ 0.013733, 0.030212 ], [ 0.013733, 0.032959 ], [ 0.016479, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157600", "Lat": "0.0270000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.030212 ], [ 0.016479, 0.027466 ], [ 0.013733, 0.027466 ], [ 0.013733, 0.030212 ], [ 0.016479, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0183900", "Lat": "0.0288000", "KPI": 602, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.032959 ], [ 0.019226, 0.030212 ], [ 0.016479, 0.030212 ], [ 0.016479, 0.032959 ], [ 0.019226, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0183900", "Lat": "0.0270000", "KPI": 387, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.030212 ], [ 0.019226, 0.027466 ], [ 0.016479, 0.027466 ], [ 0.016479, 0.030212 ], [ 0.019226, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0157600", "Lat": "0.0234000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.027466 ], [ 0.016479, 0.024719 ], [ 0.013733, 0.024719 ], [ 0.013733, 0.027466 ], [ 0.016479, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0157600", "Lat": "0.0216000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.024719 ], [ 0.016479, 0.021973 ], [ 0.013733, 0.021973 ], [ 0.013733, 0.024719 ], [ 0.016479, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183900", "Lat": "0.0234000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.027466 ], [ 0.019226, 0.024719 ], [ 0.016479, 0.024719 ], [ 0.016479, 0.027466 ], [ 0.019226, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183900", "Lat": "0.0216000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.024719 ], [ 0.019226, 0.021973 ], [ 0.016479, 0.021973 ], [ 0.016479, 0.024719 ], [ 0.019226, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0026300", "Lat": "0.0180000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.021973 ], [ 0.002747, 0.019226 ], [ 0.000000, 0.019226 ], [ 0.000000, 0.021973 ], [ 0.002747, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0026300", "Lat": "0.0162000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.019226 ], [ 0.002747, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.019226 ], [ 0.002747, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0026300", "Lat": "0.0126000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.016479 ], [ 0.002747, 0.013733 ], [ 0.000000, 0.013733 ], [ 0.000000, 0.016479 ], [ 0.002747, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0026300", "Lat": "0.0108000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.013733 ], [ 0.002747, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.013733 ], [ 0.002747, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0052500", "Lat": "0.0180000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.019226 ], [ 0.002747, 0.019226 ], [ 0.002747, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0052500", "Lat": "0.0162000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.019226 ], [ 0.005493, 0.016479 ], [ 0.002747, 0.016479 ], [ 0.002747, 0.019226 ], [ 0.005493, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0078800", "Lat": "0.0180000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.021973 ], [ 0.008240, 0.019226 ], [ 0.005493, 0.019226 ], [ 0.005493, 0.021973 ], [ 0.008240, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0078800", "Lat": "0.0162000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.019226 ], [ 0.008240, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.019226 ], [ 0.008240, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0126000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.013733 ], [ 0.002747, 0.013733 ], [ 0.002747, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.013733 ], [ 0.005493, 0.010986 ], [ 0.002747, 0.010986 ], [ 0.002747, 0.013733 ], [ 0.005493, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0078800", "Lat": "0.0126000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.016479 ], [ 0.008240, 0.013733 ], [ 0.005493, 0.013733 ], [ 0.005493, 0.016479 ], [ 0.008240, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0078800", "Lat": "0.0108000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.013733 ], [ 0.008240, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.013733 ], [ 0.008240, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0072000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.010986 ], [ 0.002747, 0.008240 ], [ 0.000000, 0.008240 ], [ 0.000000, 0.010986 ], [ 0.002747, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0052500", "Lat": "0.0072000", "KPI": 759, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.008240 ], [ 0.002747, 0.008240 ], [ 0.002747, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0078800", "Lat": "0.0072000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.010986 ], [ 0.008240, 0.008240 ], [ 0.005493, 0.008240 ], [ 0.005493, 0.010986 ], [ 0.008240, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078800", "Lat": "0.0054000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.008240 ], [ 0.008240, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.008240 ], [ 0.008240, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0078800", "Lat": "0.0018000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.005493 ], [ 0.008240, 0.002747 ], [ 0.005493, 0.002747 ], [ 0.005493, 0.005493 ], [ 0.008240, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0078800", "Lat": "0.0000000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.002747 ], [ 0.008240, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.002747 ], [ 0.008240, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0105100", "Lat": "0.0180000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.019226 ], [ 0.008240, 0.019226 ], [ 0.008240, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105100", "Lat": "0.0162000", "KPI": 178, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.019226 ], [ 0.010986, 0.016479 ], [ 0.008240, 0.016479 ], [ 0.008240, 0.019226 ], [ 0.010986, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0131400", "Lat": "0.0180000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.021973 ], [ 0.013733, 0.019226 ], [ 0.010986, 0.019226 ], [ 0.010986, 0.021973 ], [ 0.013733, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0131400", "Lat": "0.0162000", "KPI": 412, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.019226 ], [ 0.013733, 0.016479 ], [ 0.010986, 0.016479 ], [ 0.010986, 0.019226 ], [ 0.013733, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0105100", "Lat": "0.0126000", "KPI": 850, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.013733 ], [ 0.008240, 0.013733 ], [ 0.008240, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.013733 ], [ 0.010986, 0.010986 ], [ 0.008240, 0.010986 ], [ 0.008240, 0.013733 ], [ 0.010986, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0131400", "Lat": "0.0126000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.016479 ], [ 0.013733, 0.013733 ], [ 0.010986, 0.013733 ], [ 0.010986, 0.016479 ], [ 0.013733, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0131400", "Lat": "0.0108000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.013733 ], [ 0.013733, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.013733 ], [ 0.013733, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0157600", "Lat": "0.0180000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.021973 ], [ 0.016479, 0.019226 ], [ 0.013733, 0.019226 ], [ 0.013733, 0.021973 ], [ 0.016479, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0157600", "Lat": "0.0162000", "KPI": 75, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.019226 ], [ 0.016479, 0.016479 ], [ 0.013733, 0.016479 ], [ 0.013733, 0.019226 ], [ 0.016479, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0183900", "Lat": "0.0180000", "KPI": 241, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.021973 ], [ 0.019226, 0.019226 ], [ 0.016479, 0.019226 ], [ 0.016479, 0.021973 ], [ 0.019226, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0183900", "Lat": "0.0162000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.019226 ], [ 0.019226, 0.016479 ], [ 0.016479, 0.016479 ], [ 0.016479, 0.019226 ], [ 0.019226, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0157600", "Lat": "0.0126000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.013733 ], [ 0.013733, 0.013733 ], [ 0.013733, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157600", "Lat": "0.0108000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.013733 ], [ 0.016479, 0.010986 ], [ 0.013733, 0.010986 ], [ 0.013733, 0.013733 ], [ 0.016479, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0183900", "Lat": "0.0126000", "KPI": 952, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.016479 ], [ 0.019226, 0.013733 ], [ 0.016479, 0.013733 ], [ 0.016479, 0.016479 ], [ 0.019226, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0183900", "Lat": "0.0108000", "KPI": 397, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.013733 ], [ 0.019226, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.013733 ], [ 0.019226, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0072000", "KPI": 628, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.008240 ], [ 0.008240, 0.008240 ], [ 0.008240, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.008240 ], [ 0.010986, 0.005493 ], [ 0.008240, 0.005493 ], [ 0.008240, 0.008240 ], [ 0.010986, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0131400", "Lat": "0.0072000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.010986 ], [ 0.013733, 0.008240 ], [ 0.010986, 0.008240 ], [ 0.010986, 0.010986 ], [ 0.013733, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0131400", "Lat": "0.0054000", "KPI": 372, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.008240 ], [ 0.013733, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.008240 ], [ 0.013733, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105100", "Lat": "0.0018000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.002747 ], [ 0.008240, 0.002747 ], [ 0.008240, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.002747 ], [ 0.010986, 0.000000 ], [ 0.008240, 0.000000 ], [ 0.008240, 0.002747 ], [ 0.010986, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0131400", "Lat": "0.0018000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.005493 ], [ 0.013733, 0.002747 ], [ 0.010986, 0.002747 ], [ 0.010986, 0.005493 ], [ 0.013733, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0131400", "Lat": "0.0000000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.002747 ], [ 0.013733, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.002747 ], [ 0.013733, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157600", "Lat": "0.0072000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.008240 ], [ 0.013733, 0.008240 ], [ 0.013733, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0157600", "Lat": "0.0054000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.008240 ], [ 0.016479, 0.005493 ], [ 0.013733, 0.005493 ], [ 0.013733, 0.008240 ], [ 0.016479, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0183900", "Lat": "0.0072000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.010986 ], [ 0.019226, 0.008240 ], [ 0.016479, 0.008240 ], [ 0.016479, 0.010986 ], [ 0.019226, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0183900", "Lat": "0.0054000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.008240 ], [ 0.019226, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.008240 ], [ 0.019226, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0157600", "Lat": "0.0018000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.002747 ], [ 0.013733, 0.002747 ], [ 0.013733, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.002747 ], [ 0.016479, 0.000000 ], [ 0.013733, 0.000000 ], [ 0.013733, 0.002747 ], [ 0.016479, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0183900", "Lat": "0.0018000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.005493 ], [ 0.019226, 0.002747 ], [ 0.016479, 0.002747 ], [ 0.016479, 0.005493 ], [ 0.019226, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183900", "Lat": "0.0000000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.002747 ], [ 0.019226, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.002747 ], [ 0.019226, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0210200", "Lat": "0.0396000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.041199 ], [ 0.019226, 0.041199 ], [ 0.019226, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0210200", "Lat": "0.0378000", "KPI": 690, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.041199 ], [ 0.021973, 0.038452 ], [ 0.019226, 0.038452 ], [ 0.019226, 0.041199 ], [ 0.021973, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0236400", "Lat": "0.0396000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.043945 ], [ 0.024719, 0.041199 ], [ 0.021973, 0.041199 ], [ 0.021973, 0.043945 ], [ 0.024719, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0236400", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.041199 ], [ 0.024719, 0.038452 ], [ 0.021973, 0.038452 ], [ 0.021973, 0.041199 ], [ 0.024719, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0210200", "Lat": "0.0342000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.038452 ], [ 0.021973, 0.035706 ], [ 0.019226, 0.035706 ], [ 0.019226, 0.038452 ], [ 0.021973, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0324000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.035706 ], [ 0.021973, 0.032959 ], [ 0.019226, 0.032959 ], [ 0.019226, 0.035706 ], [ 0.021973, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0342000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.038452 ], [ 0.024719, 0.035706 ], [ 0.021973, 0.035706 ], [ 0.021973, 0.038452 ], [ 0.024719, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0236400", "Lat": "0.0324000", "KPI": 884, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.035706 ], [ 0.024719, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.035706 ], [ 0.024719, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0262700", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.043945 ], [ 0.027466, 0.041199 ], [ 0.024719, 0.041199 ], [ 0.024719, 0.043945 ], [ 0.027466, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262700", "Lat": "0.0378000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.041199 ], [ 0.027466, 0.038452 ], [ 0.024719, 0.038452 ], [ 0.024719, 0.041199 ], [ 0.027466, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0289000", "Lat": "0.0396000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.043945 ], [ 0.030212, 0.041199 ], [ 0.027466, 0.041199 ], [ 0.027466, 0.043945 ], [ 0.030212, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0289000", "Lat": "0.0378000", "KPI": 828, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.041199 ], [ 0.030212, 0.038452 ], [ 0.027466, 0.038452 ], [ 0.027466, 0.041199 ], [ 0.030212, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0315200", "Lat": "0.0396000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.041199 ], [ 0.030212, 0.041199 ], [ 0.030212, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0315200", "Lat": "0.0378000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.041199 ], [ 0.032959, 0.038452 ], [ 0.030212, 0.038452 ], [ 0.030212, 0.041199 ], [ 0.032959, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0262700", "Lat": "0.0342000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.038452 ], [ 0.027466, 0.035706 ], [ 0.024719, 0.035706 ], [ 0.024719, 0.038452 ], [ 0.027466, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0262700", "Lat": "0.0324000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.035706 ], [ 0.027466, 0.032959 ], [ 0.024719, 0.032959 ], [ 0.024719, 0.035706 ], [ 0.027466, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0289000", "Lat": "0.0342000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.038452 ], [ 0.030212, 0.035706 ], [ 0.027466, 0.035706 ], [ 0.027466, 0.038452 ], [ 0.030212, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0289000", "Lat": "0.0324000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.035706 ], [ 0.030212, 0.032959 ], [ 0.027466, 0.032959 ], [ 0.027466, 0.035706 ], [ 0.030212, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315200", "Lat": "0.0342000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.038452 ], [ 0.032959, 0.035706 ], [ 0.030212, 0.035706 ], [ 0.030212, 0.038452 ], [ 0.032959, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0315200", "Lat": "0.0324000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.035706 ], [ 0.032959, 0.032959 ], [ 0.030212, 0.032959 ], [ 0.030212, 0.035706 ], [ 0.032959, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0210200", "Lat": "0.0288000", "KPI": 145, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.030212 ], [ 0.019226, 0.030212 ], [ 0.019226, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210200", "Lat": "0.0270000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.030212 ], [ 0.021973, 0.027466 ], [ 0.019226, 0.027466 ], [ 0.019226, 0.030212 ], [ 0.021973, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0236400", "Lat": "0.0288000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.032959 ], [ 0.024719, 0.030212 ], [ 0.021973, 0.030212 ], [ 0.021973, 0.032959 ], [ 0.024719, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0236400", "Lat": "0.0270000", "KPI": 610, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.030212 ], [ 0.024719, 0.027466 ], [ 0.021973, 0.027466 ], [ 0.021973, 0.030212 ], [ 0.024719, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0210200", "Lat": "0.0234000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.027466 ], [ 0.021973, 0.024719 ], [ 0.019226, 0.024719 ], [ 0.019226, 0.027466 ], [ 0.021973, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.024719 ], [ 0.021973, 0.021973 ], [ 0.019226, 0.021973 ], [ 0.019226, 0.024719 ], [ 0.021973, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0236400", "Lat": "0.0234000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.027466 ], [ 0.024719, 0.024719 ], [ 0.021973, 0.024719 ], [ 0.021973, 0.027466 ], [ 0.024719, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0236400", "Lat": "0.0216000", "KPI": 31, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.024719 ], [ 0.024719, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.024719 ], [ 0.024719, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0262700", "Lat": "0.0288000", "KPI": 380, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.032959 ], [ 0.027466, 0.030212 ], [ 0.024719, 0.030212 ], [ 0.024719, 0.032959 ], [ 0.027466, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262700", "Lat": "0.0270000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.030212 ], [ 0.027466, 0.027466 ], [ 0.024719, 0.027466 ], [ 0.024719, 0.030212 ], [ 0.027466, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0289000", "Lat": "0.0288000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.032959 ], [ 0.030212, 0.030212 ], [ 0.027466, 0.030212 ], [ 0.027466, 0.032959 ], [ 0.030212, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0289000", "Lat": "0.0270000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.030212 ], [ 0.030212, 0.027466 ], [ 0.027466, 0.027466 ], [ 0.027466, 0.030212 ], [ 0.030212, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0315200", "Lat": "0.0288000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.030212 ], [ 0.030212, 0.030212 ], [ 0.030212, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0315200", "Lat": "0.0270000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.030212 ], [ 0.032959, 0.027466 ], [ 0.030212, 0.027466 ], [ 0.030212, 0.030212 ], [ 0.032959, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0234000", "KPI": 480, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.027466 ], [ 0.027466, 0.024719 ], [ 0.024719, 0.024719 ], [ 0.024719, 0.027466 ], [ 0.027466, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262700", "Lat": "0.0216000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.024719 ], [ 0.027466, 0.021973 ], [ 0.024719, 0.021973 ], [ 0.024719, 0.024719 ], [ 0.027466, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0289000", "Lat": "0.0234000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.027466 ], [ 0.030212, 0.024719 ], [ 0.027466, 0.024719 ], [ 0.027466, 0.027466 ], [ 0.030212, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0289000", "Lat": "0.0216000", "KPI": 848, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.024719 ], [ 0.030212, 0.021973 ], [ 0.027466, 0.021973 ], [ 0.027466, 0.024719 ], [ 0.030212, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0315200", "Lat": "0.0234000", "KPI": 625, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.027466 ], [ 0.032959, 0.024719 ], [ 0.030212, 0.024719 ], [ 0.030212, 0.027466 ], [ 0.032959, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0315200", "Lat": "0.0216000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.024719 ], [ 0.032959, 0.021973 ], [ 0.030212, 0.021973 ], [ 0.030212, 0.024719 ], [ 0.032959, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0341500", "Lat": "0.0396000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.043945 ], [ 0.035706, 0.041199 ], [ 0.032959, 0.041199 ], [ 0.032959, 0.043945 ], [ 0.035706, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0341500", "Lat": "0.0378000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.041199 ], [ 0.035706, 0.038452 ], [ 0.032959, 0.038452 ], [ 0.032959, 0.041199 ], [ 0.035706, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0367800", "Lat": "0.0396000", "KPI": 289, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.043945 ], [ 0.038452, 0.041199 ], [ 0.035706, 0.041199 ], [ 0.035706, 0.043945 ], [ 0.038452, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0378000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.041199 ], [ 0.038452, 0.038452 ], [ 0.035706, 0.038452 ], [ 0.035706, 0.041199 ], [ 0.038452, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0341500", "Lat": "0.0342000", "KPI": 92, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.038452 ], [ 0.035706, 0.035706 ], [ 0.032959, 0.035706 ], [ 0.032959, 0.038452 ], [ 0.035706, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0341500", "Lat": "0.0324000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.035706 ], [ 0.035706, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.035706 ], [ 0.035706, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0367800", "Lat": "0.0342000", "KPI": 938, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.038452 ], [ 0.038452, 0.035706 ], [ 0.035706, 0.035706 ], [ 0.035706, 0.038452 ], [ 0.038452, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0324000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.035706 ], [ 0.038452, 0.032959 ], [ 0.035706, 0.032959 ], [ 0.035706, 0.035706 ], [ 0.038452, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0394100", "Lat": "0.0396000", "KPI": 423, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.043945 ], [ 0.041199, 0.041199 ], [ 0.038452, 0.041199 ], [ 0.038452, 0.043945 ], [ 0.041199, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0394100", "Lat": "0.0378000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.041199 ], [ 0.041199, 0.038452 ], [ 0.038452, 0.038452 ], [ 0.038452, 0.041199 ], [ 0.041199, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0420300", "Lat": "0.0396000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.041199 ], [ 0.041199, 0.041199 ], [ 0.041199, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0420300", "Lat": "0.0378000", "KPI": 177, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.041199 ], [ 0.043945, 0.038452 ], [ 0.041199, 0.038452 ], [ 0.041199, 0.041199 ], [ 0.043945, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0394100", "Lat": "0.0342000", "KPI": 264, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.038452 ], [ 0.041199, 0.035706 ], [ 0.038452, 0.035706 ], [ 0.038452, 0.038452 ], [ 0.041199, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0394100", "Lat": "0.0324000", "KPI": 193, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.035706 ], [ 0.041199, 0.032959 ], [ 0.038452, 0.032959 ], [ 0.038452, 0.035706 ], [ 0.041199, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0342000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.038452 ], [ 0.043945, 0.035706 ], [ 0.041199, 0.035706 ], [ 0.041199, 0.038452 ], [ 0.043945, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0324000", "KPI": 477, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.035706 ], [ 0.043945, 0.032959 ], [ 0.041199, 0.032959 ], [ 0.041199, 0.035706 ], [ 0.043945, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0341500", "Lat": "0.0288000", "KPI": 794, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.032959 ], [ 0.035706, 0.030212 ], [ 0.032959, 0.030212 ], [ 0.032959, 0.032959 ], [ 0.035706, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0341500", "Lat": "0.0270000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.030212 ], [ 0.035706, 0.027466 ], [ 0.032959, 0.027466 ], [ 0.032959, 0.030212 ], [ 0.035706, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0288000", "KPI": 914, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.032959 ], [ 0.038452, 0.030212 ], [ 0.035706, 0.030212 ], [ 0.035706, 0.032959 ], [ 0.038452, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0367800", "Lat": "0.0270000", "KPI": 472, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.030212 ], [ 0.038452, 0.027466 ], [ 0.035706, 0.027466 ], [ 0.035706, 0.030212 ], [ 0.038452, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0341500", "Lat": "0.0234000", "KPI": 495, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.027466 ], [ 0.035706, 0.024719 ], [ 0.032959, 0.024719 ], [ 0.032959, 0.027466 ], [ 0.035706, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0341500", "Lat": "0.0216000", "KPI": 810, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.024719 ], [ 0.035706, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.024719 ], [ 0.035706, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0234000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.027466 ], [ 0.038452, 0.024719 ], [ 0.035706, 0.024719 ], [ 0.035706, 0.027466 ], [ 0.038452, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0367800", "Lat": "0.0216000", "KPI": 971, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.024719 ], [ 0.038452, 0.021973 ], [ 0.035706, 0.021973 ], [ 0.035706, 0.024719 ], [ 0.038452, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0394100", "Lat": "0.0288000", "KPI": 455, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.032959 ], [ 0.041199, 0.030212 ], [ 0.038452, 0.030212 ], [ 0.038452, 0.032959 ], [ 0.041199, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0394100", "Lat": "0.0270000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.030212 ], [ 0.041199, 0.027466 ], [ 0.038452, 0.027466 ], [ 0.038452, 0.030212 ], [ 0.041199, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0288000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.030212 ], [ 0.041199, 0.030212 ], [ 0.041199, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0270000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.030212 ], [ 0.043945, 0.027466 ], [ 0.041199, 0.027466 ], [ 0.041199, 0.030212 ], [ 0.043945, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0394100", "Lat": "0.0234000", "KPI": 216, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.027466 ], [ 0.041199, 0.024719 ], [ 0.038452, 0.024719 ], [ 0.038452, 0.027466 ], [ 0.041199, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0394100", "Lat": "0.0216000", "KPI": 113, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.024719 ], [ 0.041199, 0.021973 ], [ 0.038452, 0.021973 ], [ 0.038452, 0.024719 ], [ 0.041199, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0420300", "Lat": "0.0234000", "KPI": 44, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.027466 ], [ 0.043945, 0.024719 ], [ 0.041199, 0.024719 ], [ 0.041199, 0.027466 ], [ 0.043945, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.024719 ], [ 0.043945, 0.021973 ], [ 0.041199, 0.021973 ], [ 0.041199, 0.024719 ], [ 0.043945, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0210200", "Lat": "0.0180000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.019226 ], [ 0.019226, 0.019226 ], [ 0.019226, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0210200", "Lat": "0.0162000", "KPI": 449, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.019226 ], [ 0.021973, 0.016479 ], [ 0.019226, 0.016479 ], [ 0.019226, 0.019226 ], [ 0.021973, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0236400", "Lat": "0.0180000", "KPI": 561, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.021973 ], [ 0.024719, 0.019226 ], [ 0.021973, 0.019226 ], [ 0.021973, 0.021973 ], [ 0.024719, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0236400", "Lat": "0.0162000", "KPI": 781, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.019226 ], [ 0.024719, 0.016479 ], [ 0.021973, 0.016479 ], [ 0.021973, 0.019226 ], [ 0.024719, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0210200", "Lat": "0.0126000", "KPI": 275, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.013733 ], [ 0.019226, 0.013733 ], [ 0.019226, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.013733 ], [ 0.021973, 0.010986 ], [ 0.019226, 0.010986 ], [ 0.019226, 0.013733 ], [ 0.021973, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0236400", "Lat": "0.0126000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.016479 ], [ 0.024719, 0.013733 ], [ 0.021973, 0.013733 ], [ 0.021973, 0.016479 ], [ 0.024719, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0236400", "Lat": "0.0108000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.013733 ], [ 0.024719, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.013733 ], [ 0.024719, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262700", "Lat": "0.0180000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.021973 ], [ 0.027466, 0.019226 ], [ 0.024719, 0.019226 ], [ 0.024719, 0.021973 ], [ 0.027466, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0162000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.019226 ], [ 0.027466, 0.016479 ], [ 0.024719, 0.016479 ], [ 0.024719, 0.019226 ], [ 0.027466, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0289000", "Lat": "0.0180000", "KPI": 668, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.021973 ], [ 0.030212, 0.019226 ], [ 0.027466, 0.019226 ], [ 0.027466, 0.021973 ], [ 0.030212, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0289000", "Lat": "0.0162000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.019226 ], [ 0.030212, 0.016479 ], [ 0.027466, 0.016479 ], [ 0.027466, 0.019226 ], [ 0.030212, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0315200", "Lat": "0.0180000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.019226 ], [ 0.030212, 0.019226 ], [ 0.030212, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0315200", "Lat": "0.0162000", "KPI": 118, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.019226 ], [ 0.032959, 0.016479 ], [ 0.030212, 0.016479 ], [ 0.030212, 0.019226 ], [ 0.032959, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0262700", "Lat": "0.0126000", "KPI": 456, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.013733 ], [ 0.024719, 0.013733 ], [ 0.024719, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262700", "Lat": "0.0108000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.013733 ], [ 0.027466, 0.010986 ], [ 0.024719, 0.010986 ], [ 0.024719, 0.013733 ], [ 0.027466, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0289000", "Lat": "0.0126000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.016479 ], [ 0.030212, 0.013733 ], [ 0.027466, 0.013733 ], [ 0.027466, 0.016479 ], [ 0.030212, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0289000", "Lat": "0.0108000", "KPI": 455, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.013733 ], [ 0.030212, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.013733 ], [ 0.030212, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0315200", "Lat": "0.0126000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.013733 ], [ 0.030212, 0.013733 ], [ 0.030212, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.013733 ], [ 0.032959, 0.010986 ], [ 0.030212, 0.010986 ], [ 0.030212, 0.013733 ], [ 0.032959, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0072000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.008240 ], [ 0.019226, 0.008240 ], [ 0.019226, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0054000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.008240 ], [ 0.021973, 0.005493 ], [ 0.019226, 0.005493 ], [ 0.019226, 0.008240 ], [ 0.021973, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0236400", "Lat": "0.0072000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.010986 ], [ 0.024719, 0.008240 ], [ 0.021973, 0.008240 ], [ 0.021973, 0.010986 ], [ 0.024719, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0236400", "Lat": "0.0054000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.008240 ], [ 0.024719, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.008240 ], [ 0.024719, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0210200", "Lat": "0.0018000", "KPI": 484, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.002747 ], [ 0.019226, 0.002747 ], [ 0.019226, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.002747 ], [ 0.021973, 0.000000 ], [ 0.019226, 0.000000 ], [ 0.019226, 0.002747 ], [ 0.021973, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0236400", "Lat": "0.0018000", "KPI": 136, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.005493 ], [ 0.024719, 0.002747 ], [ 0.021973, 0.002747 ], [ 0.021973, 0.005493 ], [ 0.024719, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0000000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.002747 ], [ 0.024719, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.002747 ], [ 0.024719, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0262700", "Lat": "0.0072000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.008240 ], [ 0.024719, 0.008240 ], [ 0.024719, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0262700", "Lat": "0.0054000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.008240 ], [ 0.027466, 0.005493 ], [ 0.024719, 0.005493 ], [ 0.024719, 0.008240 ], [ 0.027466, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0289000", "Lat": "0.0072000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.010986 ], [ 0.030212, 0.008240 ], [ 0.027466, 0.008240 ], [ 0.027466, 0.010986 ], [ 0.030212, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0289000", "Lat": "0.0054000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.008240 ], [ 0.030212, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.008240 ], [ 0.030212, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0315200", "Lat": "0.0072000", "KPI": 314, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.008240 ], [ 0.030212, 0.008240 ], [ 0.030212, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0315200", "Lat": "0.0054000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.008240 ], [ 0.032959, 0.005493 ], [ 0.030212, 0.005493 ], [ 0.030212, 0.008240 ], [ 0.032959, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0262700", "Lat": "0.0018000", "KPI": 489, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.002747 ], [ 0.024719, 0.002747 ], [ 0.024719, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.002747 ], [ 0.027466, 0.000000 ], [ 0.024719, 0.000000 ], [ 0.024719, 0.002747 ], [ 0.027466, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0289000", "Lat": "0.0018000", "KPI": 855, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.005493 ], [ 0.030212, 0.002747 ], [ 0.027466, 0.002747 ], [ 0.027466, 0.005493 ], [ 0.030212, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0289000", "Lat": "0.0000000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.002747 ], [ 0.030212, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.002747 ], [ 0.030212, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0315200", "Lat": "0.0018000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.002747 ], [ 0.030212, 0.002747 ], [ 0.030212, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.002747 ], [ 0.032959, 0.000000 ], [ 0.030212, 0.000000 ], [ 0.030212, 0.002747 ], [ 0.032959, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0341500", "Lat": "0.0180000", "KPI": 337, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.021973 ], [ 0.035706, 0.019226 ], [ 0.032959, 0.019226 ], [ 0.032959, 0.021973 ], [ 0.035706, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0341500", "Lat": "0.0162000", "KPI": 363, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.019226 ], [ 0.035706, 0.016479 ], [ 0.032959, 0.016479 ], [ 0.032959, 0.019226 ], [ 0.035706, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0367800", "Lat": "0.0180000", "KPI": 119, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.021973 ], [ 0.038452, 0.019226 ], [ 0.035706, 0.019226 ], [ 0.035706, 0.021973 ], [ 0.038452, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0367800", "Lat": "0.0162000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.019226 ], [ 0.038452, 0.016479 ], [ 0.035706, 0.016479 ], [ 0.035706, 0.019226 ], [ 0.038452, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0341500", "Lat": "0.0126000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.016479 ], [ 0.035706, 0.013733 ], [ 0.032959, 0.013733 ], [ 0.032959, 0.016479 ], [ 0.035706, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0341500", "Lat": "0.0108000", "KPI": 946, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.013733 ], [ 0.035706, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.013733 ], [ 0.035706, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0367800", "Lat": "0.0126000", "KPI": 795, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.013733 ], [ 0.035706, 0.013733 ], [ 0.035706, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0108000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.013733 ], [ 0.038452, 0.010986 ], [ 0.035706, 0.010986 ], [ 0.035706, 0.013733 ], [ 0.038452, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0394100", "Lat": "0.0180000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.021973 ], [ 0.041199, 0.019226 ], [ 0.038452, 0.019226 ], [ 0.038452, 0.021973 ], [ 0.041199, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0394100", "Lat": "0.0162000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.019226 ], [ 0.041199, 0.016479 ], [ 0.038452, 0.016479 ], [ 0.038452, 0.019226 ], [ 0.041199, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0420300", "Lat": "0.0180000", "KPI": 540, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.019226 ], [ 0.041199, 0.019226 ], [ 0.041199, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0420300", "Lat": "0.0162000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.019226 ], [ 0.043945, 0.016479 ], [ 0.041199, 0.016479 ], [ 0.041199, 0.019226 ], [ 0.043945, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0394100", "Lat": "0.0126000", "KPI": 845, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.016479 ], [ 0.041199, 0.013733 ], [ 0.038452, 0.013733 ], [ 0.038452, 0.016479 ], [ 0.041199, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0394100", "Lat": "0.0108000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.013733 ], [ 0.041199, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.013733 ], [ 0.041199, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0420300", "Lat": "0.0126000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.013733 ], [ 0.041199, 0.013733 ], [ 0.041199, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.013733 ], [ 0.043945, 0.010986 ], [ 0.041199, 0.010986 ], [ 0.041199, 0.013733 ], [ 0.043945, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0341500", "Lat": "0.0072000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.010986 ], [ 0.035706, 0.008240 ], [ 0.032959, 0.008240 ], [ 0.032959, 0.010986 ], [ 0.035706, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341500", "Lat": "0.0054000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.008240 ], [ 0.035706, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.008240 ], [ 0.035706, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0367800", "Lat": "0.0072000", "KPI": 666, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.008240 ], [ 0.035706, 0.008240 ], [ 0.035706, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0367800", "Lat": "0.0054000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.008240 ], [ 0.038452, 0.005493 ], [ 0.035706, 0.005493 ], [ 0.035706, 0.008240 ], [ 0.038452, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0018000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.005493 ], [ 0.035706, 0.002747 ], [ 0.032959, 0.002747 ], [ 0.032959, 0.005493 ], [ 0.035706, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0000000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.002747 ], [ 0.035706, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.002747 ], [ 0.035706, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0018000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.002747 ], [ 0.035706, 0.002747 ], [ 0.035706, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.002747 ], [ 0.038452, 0.000000 ], [ 0.035706, 0.000000 ], [ 0.035706, 0.002747 ], [ 0.038452, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394100", "Lat": "0.0072000", "KPI": 454, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.010986 ], [ 0.041199, 0.008240 ], [ 0.038452, 0.008240 ], [ 0.038452, 0.010986 ], [ 0.041199, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0394100", "Lat": "0.0054000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.008240 ], [ 0.041199, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.008240 ], [ 0.041199, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0420300", "Lat": "0.0072000", "KPI": 504, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.008240 ], [ 0.041199, 0.008240 ], [ 0.041199, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0054000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.008240 ], [ 0.043945, 0.005493 ], [ 0.041199, 0.005493 ], [ 0.041199, 0.008240 ], [ 0.043945, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394100", "Lat": "0.0018000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.005493 ], [ 0.041199, 0.002747 ], [ 0.038452, 0.002747 ], [ 0.038452, 0.005493 ], [ 0.041199, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394100", "Lat": "0.0000000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.002747 ], [ 0.041199, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.002747 ], [ 0.041199, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0420300", "Lat": "0.0018000", "KPI": 331, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.002747 ], [ 0.041199, 0.002747 ], [ 0.041199, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.002747 ], [ 0.043945, 0.000000 ], [ 0.041199, 0.000000 ], [ 0.041199, 0.002747 ], [ 0.043945, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446600", "Lat": "0.0540000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.057678 ], [ 0.046692, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.057678 ], [ 0.046692, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0446600", "Lat": "0.0522000", "KPI": 499, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.054932 ], [ 0.046692, 0.052185 ], [ 0.043945, 0.052185 ], [ 0.043945, 0.054932 ], [ 0.046692, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0446600", "Lat": "0.0486000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.052185 ], [ 0.046692, 0.049438 ], [ 0.043945, 0.049438 ], [ 0.043945, 0.052185 ], [ 0.046692, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0472900", "Lat": "0.0540000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.057678 ], [ 0.049438, 0.054932 ], [ 0.046692, 0.054932 ], [ 0.046692, 0.057678 ], [ 0.049438, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0472900", "Lat": "0.0522000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.054932 ], [ 0.049438, 0.052185 ], [ 0.046692, 0.052185 ], [ 0.046692, 0.054932 ], [ 0.049438, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0472900", "Lat": "0.0486000", "KPI": 696, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.052185 ], [ 0.049438, 0.049438 ], [ 0.046692, 0.049438 ], [ 0.046692, 0.052185 ], [ 0.049438, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0446600", "Lat": "0.0450000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.049438 ], [ 0.046692, 0.046692 ], [ 0.043945, 0.046692 ], [ 0.043945, 0.049438 ], [ 0.046692, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0446600", "Lat": "0.0432000", "KPI": 623, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.046692 ], [ 0.046692, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.046692 ], [ 0.046692, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0472900", "Lat": "0.0450000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.049438 ], [ 0.049438, 0.046692 ], [ 0.046692, 0.046692 ], [ 0.046692, 0.049438 ], [ 0.049438, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0472900", "Lat": "0.0432000", "KPI": 905, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.046692 ], [ 0.049438, 0.043945 ], [ 0.046692, 0.043945 ], [ 0.046692, 0.046692 ], [ 0.049438, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0499100", "Lat": "0.0540000", "KPI": 278, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.057678 ], [ 0.052185, 0.054932 ], [ 0.049438, 0.054932 ], [ 0.049438, 0.057678 ], [ 0.052185, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0499100", "Lat": "0.0522000", "KPI": 447, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.054932 ], [ 0.052185, 0.052185 ], [ 0.049438, 0.052185 ], [ 0.049438, 0.054932 ], [ 0.052185, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0499100", "Lat": "0.0486000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.052185 ], [ 0.052185, 0.049438 ], [ 0.049438, 0.049438 ], [ 0.049438, 0.052185 ], [ 0.052185, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525400", "Lat": "0.0540000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.057678 ], [ 0.054932, 0.054932 ], [ 0.052185, 0.054932 ], [ 0.052185, 0.057678 ], [ 0.054932, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525400", "Lat": "0.0522000", "KPI": 494, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.052185 ], [ 0.052185, 0.052185 ], [ 0.052185, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0525400", "Lat": "0.0486000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.052185 ], [ 0.054932, 0.049438 ], [ 0.052185, 0.049438 ], [ 0.052185, 0.052185 ], [ 0.054932, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0499100", "Lat": "0.0450000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.049438 ], [ 0.052185, 0.046692 ], [ 0.049438, 0.046692 ], [ 0.049438, 0.049438 ], [ 0.052185, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0499100", "Lat": "0.0432000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.046692 ], [ 0.052185, 0.043945 ], [ 0.049438, 0.043945 ], [ 0.049438, 0.046692 ], [ 0.052185, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0450000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.049438 ], [ 0.054932, 0.046692 ], [ 0.052185, 0.046692 ], [ 0.052185, 0.049438 ], [ 0.054932, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0525400", "Lat": "0.0432000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.046692 ], [ 0.054932, 0.043945 ], [ 0.052185, 0.043945 ], [ 0.052185, 0.046692 ], [ 0.054932, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0551700", "Lat": "0.0540000", "KPI": 91, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.057678 ], [ 0.057678, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.057678 ], [ 0.057678, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0551700", "Lat": "0.0522000", "KPI": 821, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.054932 ], [ 0.057678, 0.052185 ], [ 0.054932, 0.052185 ], [ 0.054932, 0.054932 ], [ 0.057678, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0551700", "Lat": "0.0486000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.052185 ], [ 0.057678, 0.049438 ], [ 0.054932, 0.049438 ], [ 0.054932, 0.052185 ], [ 0.057678, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0577900", "Lat": "0.0540000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.057678 ], [ 0.060425, 0.054932 ], [ 0.057678, 0.054932 ], [ 0.057678, 0.057678 ], [ 0.060425, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0577900", "Lat": "0.0522000", "KPI": 33, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.054932 ], [ 0.060425, 0.052185 ], [ 0.057678, 0.052185 ], [ 0.057678, 0.054932 ], [ 0.060425, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0577900", "Lat": "0.0486000", "KPI": 58, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.052185 ], [ 0.060425, 0.049438 ], [ 0.057678, 0.049438 ], [ 0.057678, 0.052185 ], [ 0.060425, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0551700", "Lat": "0.0450000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.049438 ], [ 0.057678, 0.046692 ], [ 0.054932, 0.046692 ], [ 0.054932, 0.049438 ], [ 0.057678, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0551700", "Lat": "0.0432000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.046692 ], [ 0.057678, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.046692 ], [ 0.057678, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0577900", "Lat": "0.0450000", "KPI": 741, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.049438 ], [ 0.060425, 0.046692 ], [ 0.057678, 0.046692 ], [ 0.057678, 0.049438 ], [ 0.060425, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577900", "Lat": "0.0432000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.046692 ], [ 0.060425, 0.043945 ], [ 0.057678, 0.043945 ], [ 0.057678, 0.046692 ], [ 0.060425, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0630500", "Lat": "0.0540000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.057678 ], [ 0.063171, 0.054932 ], [ 0.060425, 0.054932 ], [ 0.060425, 0.057678 ], [ 0.063171, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0630500", "Lat": "0.0522000", "KPI": 982, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.054932 ], [ 0.063171, 0.052185 ], [ 0.060425, 0.052185 ], [ 0.060425, 0.054932 ], [ 0.063171, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0630500", "Lat": "0.0486000", "KPI": 194, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.052185 ], [ 0.063171, 0.049438 ], [ 0.060425, 0.049438 ], [ 0.060425, 0.052185 ], [ 0.063171, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0630500", "Lat": "0.0450000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.049438 ], [ 0.063171, 0.046692 ], [ 0.060425, 0.046692 ], [ 0.060425, 0.049438 ], [ 0.063171, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0630500", "Lat": "0.0432000", "KPI": 379, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.046692 ], [ 0.063171, 0.043945 ], [ 0.060425, 0.043945 ], [ 0.060425, 0.046692 ], [ 0.063171, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0656800", "Lat": "0.0540000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.057678 ], [ 0.065918, 0.054932 ], [ 0.063171, 0.054932 ], [ 0.063171, 0.057678 ], [ 0.065918, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0656800", "Lat": "0.0522000", "KPI": 972, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.052185 ], [ 0.063171, 0.052185 ], [ 0.063171, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0656800", "Lat": "0.0486000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.052185 ], [ 0.065918, 0.049438 ], [ 0.063171, 0.049438 ], [ 0.063171, 0.052185 ], [ 0.065918, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0683000", "Lat": "0.0540000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.057678 ], [ 0.068665, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.057678 ], [ 0.068665, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0683000", "Lat": "0.0522000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.054932 ], [ 0.068665, 0.052185 ], [ 0.065918, 0.052185 ], [ 0.065918, 0.054932 ], [ 0.068665, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0683000", "Lat": "0.0486000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.052185 ], [ 0.068665, 0.049438 ], [ 0.065918, 0.049438 ], [ 0.065918, 0.052185 ], [ 0.068665, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0656800", "Lat": "0.0450000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.049438 ], [ 0.065918, 0.046692 ], [ 0.063171, 0.046692 ], [ 0.063171, 0.049438 ], [ 0.065918, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.046692 ], [ 0.065918, 0.043945 ], [ 0.063171, 0.043945 ], [ 0.063171, 0.046692 ], [ 0.065918, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0683000", "Lat": "0.0450000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.049438 ], [ 0.068665, 0.046692 ], [ 0.065918, 0.046692 ], [ 0.065918, 0.049438 ], [ 0.068665, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0683000", "Lat": "0.0432000", "KPI": 234, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.046692 ], [ 0.068665, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.046692 ], [ 0.068665, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0709300", "Lat": "0.0540000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.057678 ], [ 0.071411, 0.054932 ], [ 0.068665, 0.054932 ], [ 0.068665, 0.057678 ], [ 0.071411, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0709300", "Lat": "0.0522000", "KPI": 146, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.054932 ], [ 0.071411, 0.052185 ], [ 0.068665, 0.052185 ], [ 0.068665, 0.054932 ], [ 0.071411, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0486000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.052185 ], [ 0.071411, 0.049438 ], [ 0.068665, 0.049438 ], [ 0.068665, 0.052185 ], [ 0.071411, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0735600", "Lat": "0.0540000", "KPI": 441, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.057678 ], [ 0.074158, 0.054932 ], [ 0.071411, 0.054932 ], [ 0.071411, 0.057678 ], [ 0.074158, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0735600", "Lat": "0.0522000", "KPI": 40, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.054932 ], [ 0.074158, 0.052185 ], [ 0.071411, 0.052185 ], [ 0.071411, 0.054932 ], [ 0.074158, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0735600", "Lat": "0.0486000", "KPI": 76, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.052185 ], [ 0.074158, 0.049438 ], [ 0.071411, 0.049438 ], [ 0.071411, 0.052185 ], [ 0.074158, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0709300", "Lat": "0.0450000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.049438 ], [ 0.071411, 0.046692 ], [ 0.068665, 0.046692 ], [ 0.068665, 0.049438 ], [ 0.071411, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0709300", "Lat": "0.0432000", "KPI": 493, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.046692 ], [ 0.071411, 0.043945 ], [ 0.068665, 0.043945 ], [ 0.068665, 0.046692 ], [ 0.071411, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0735600", "Lat": "0.0450000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.049438 ], [ 0.074158, 0.046692 ], [ 0.071411, 0.046692 ], [ 0.071411, 0.049438 ], [ 0.074158, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0735600", "Lat": "0.0432000", "KPI": 959, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.046692 ], [ 0.074158, 0.043945 ], [ 0.071411, 0.043945 ], [ 0.071411, 0.046692 ], [ 0.074158, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0761800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.057678 ], [ 0.076904, 0.054932 ], [ 0.074158, 0.054932 ], [ 0.074158, 0.057678 ], [ 0.076904, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0761800", "Lat": "0.0522000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.052185 ], [ 0.074158, 0.052185 ], [ 0.074158, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0486000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.052185 ], [ 0.076904, 0.049438 ], [ 0.074158, 0.049438 ], [ 0.074158, 0.052185 ], [ 0.076904, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0788100", "Lat": "0.0540000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.057678 ], [ 0.079651, 0.054932 ], [ 0.076904, 0.054932 ], [ 0.076904, 0.057678 ], [ 0.079651, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0788100", "Lat": "0.0522000", "KPI": 197, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.054932 ], [ 0.079651, 0.052185 ], [ 0.076904, 0.052185 ], [ 0.076904, 0.054932 ], [ 0.079651, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0788100", "Lat": "0.0486000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.052185 ], [ 0.079651, 0.049438 ], [ 0.076904, 0.049438 ], [ 0.076904, 0.052185 ], [ 0.079651, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0761800", "Lat": "0.0450000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.049438 ], [ 0.076904, 0.046692 ], [ 0.074158, 0.046692 ], [ 0.074158, 0.049438 ], [ 0.076904, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0432000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.046692 ], [ 0.076904, 0.043945 ], [ 0.074158, 0.043945 ], [ 0.074158, 0.046692 ], [ 0.076904, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0788100", "Lat": "0.0450000", "KPI": 575, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.049438 ], [ 0.079651, 0.046692 ], [ 0.076904, 0.046692 ], [ 0.076904, 0.049438 ], [ 0.079651, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0788100", "Lat": "0.0432000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.046692 ], [ 0.079651, 0.043945 ], [ 0.076904, 0.043945 ], [ 0.076904, 0.046692 ], [ 0.079651, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0814400", "Lat": "0.0540000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.057678 ], [ 0.082397, 0.054932 ], [ 0.079651, 0.054932 ], [ 0.079651, 0.057678 ], [ 0.082397, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0814400", "Lat": "0.0522000", "KPI": 189, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.054932 ], [ 0.082397, 0.052185 ], [ 0.079651, 0.052185 ], [ 0.079651, 0.054932 ], [ 0.082397, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0814400", "Lat": "0.0486000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.052185 ], [ 0.082397, 0.049438 ], [ 0.079651, 0.049438 ], [ 0.079651, 0.052185 ], [ 0.082397, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814400", "Lat": "0.0450000", "KPI": 897, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.049438 ], [ 0.082397, 0.046692 ], [ 0.079651, 0.046692 ], [ 0.079651, 0.049438 ], [ 0.082397, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0814400", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.046692 ], [ 0.082397, 0.043945 ], [ 0.079651, 0.043945 ], [ 0.079651, 0.046692 ], [ 0.082397, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0446600", "Lat": "0.0396000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.043945 ], [ 0.046692, 0.041199 ], [ 0.043945, 0.041199 ], [ 0.043945, 0.043945 ], [ 0.046692, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446600", "Lat": "0.0378000", "KPI": 578, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.041199 ], [ 0.046692, 0.038452 ], [ 0.043945, 0.038452 ], [ 0.043945, 0.041199 ], [ 0.046692, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0472900", "Lat": "0.0396000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.043945 ], [ 0.049438, 0.041199 ], [ 0.046692, 0.041199 ], [ 0.046692, 0.043945 ], [ 0.049438, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0472900", "Lat": "0.0378000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.041199 ], [ 0.049438, 0.038452 ], [ 0.046692, 0.038452 ], [ 0.046692, 0.041199 ], [ 0.049438, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0446600", "Lat": "0.0342000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.038452 ], [ 0.046692, 0.035706 ], [ 0.043945, 0.035706 ], [ 0.043945, 0.038452 ], [ 0.046692, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0446600", "Lat": "0.0324000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.035706 ], [ 0.046692, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.035706 ], [ 0.046692, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0472900", "Lat": "0.0342000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.038452 ], [ 0.049438, 0.035706 ], [ 0.046692, 0.035706 ], [ 0.046692, 0.038452 ], [ 0.049438, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0472900", "Lat": "0.0324000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.035706 ], [ 0.049438, 0.032959 ], [ 0.046692, 0.032959 ], [ 0.046692, 0.035706 ], [ 0.049438, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0499100", "Lat": "0.0396000", "KPI": 149, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.043945 ], [ 0.052185, 0.041199 ], [ 0.049438, 0.041199 ], [ 0.049438, 0.043945 ], [ 0.052185, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0499100", "Lat": "0.0378000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.041199 ], [ 0.052185, 0.038452 ], [ 0.049438, 0.038452 ], [ 0.049438, 0.041199 ], [ 0.052185, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0525400", "Lat": "0.0396000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.041199 ], [ 0.052185, 0.041199 ], [ 0.052185, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0525400", "Lat": "0.0378000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.041199 ], [ 0.054932, 0.038452 ], [ 0.052185, 0.038452 ], [ 0.052185, 0.041199 ], [ 0.054932, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0499100", "Lat": "0.0342000", "KPI": 398, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.038452 ], [ 0.052185, 0.035706 ], [ 0.049438, 0.035706 ], [ 0.049438, 0.038452 ], [ 0.052185, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0499100", "Lat": "0.0324000", "KPI": 883, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.035706 ], [ 0.052185, 0.032959 ], [ 0.049438, 0.032959 ], [ 0.049438, 0.035706 ], [ 0.052185, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0525400", "Lat": "0.0342000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.038452 ], [ 0.054932, 0.035706 ], [ 0.052185, 0.035706 ], [ 0.052185, 0.038452 ], [ 0.054932, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0324000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.035706 ], [ 0.054932, 0.032959 ], [ 0.052185, 0.032959 ], [ 0.052185, 0.035706 ], [ 0.054932, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0446600", "Lat": "0.0288000", "KPI": 285, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.032959 ], [ 0.046692, 0.030212 ], [ 0.043945, 0.030212 ], [ 0.043945, 0.032959 ], [ 0.046692, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0446600", "Lat": "0.0270000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.030212 ], [ 0.046692, 0.027466 ], [ 0.043945, 0.027466 ], [ 0.043945, 0.030212 ], [ 0.046692, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0472900", "Lat": "0.0288000", "KPI": 180, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.032959 ], [ 0.049438, 0.030212 ], [ 0.046692, 0.030212 ], [ 0.046692, 0.032959 ], [ 0.049438, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0472900", "Lat": "0.0270000", "KPI": 694, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.030212 ], [ 0.049438, 0.027466 ], [ 0.046692, 0.027466 ], [ 0.046692, 0.030212 ], [ 0.049438, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446600", "Lat": "0.0234000", "KPI": 865, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.027466 ], [ 0.046692, 0.024719 ], [ 0.043945, 0.024719 ], [ 0.043945, 0.027466 ], [ 0.046692, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0446600", "Lat": "0.0216000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.024719 ], [ 0.046692, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.024719 ], [ 0.046692, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0472900", "Lat": "0.0234000", "KPI": 507, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.027466 ], [ 0.049438, 0.024719 ], [ 0.046692, 0.024719 ], [ 0.046692, 0.027466 ], [ 0.049438, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0216000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.024719 ], [ 0.049438, 0.021973 ], [ 0.046692, 0.021973 ], [ 0.046692, 0.024719 ], [ 0.049438, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0499100", "Lat": "0.0288000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.032959 ], [ 0.052185, 0.030212 ], [ 0.049438, 0.030212 ], [ 0.049438, 0.032959 ], [ 0.052185, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0499100", "Lat": "0.0270000", "KPI": 429, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.030212 ], [ 0.052185, 0.027466 ], [ 0.049438, 0.027466 ], [ 0.049438, 0.030212 ], [ 0.052185, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0525400", "Lat": "0.0288000", "KPI": 349, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.030212 ], [ 0.052185, 0.030212 ], [ 0.052185, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0525400", "Lat": "0.0270000", "KPI": 129, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.030212 ], [ 0.054932, 0.027466 ], [ 0.052185, 0.027466 ], [ 0.052185, 0.030212 ], [ 0.054932, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0234000", "KPI": 294, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.027466 ], [ 0.052185, 0.024719 ], [ 0.049438, 0.024719 ], [ 0.049438, 0.027466 ], [ 0.052185, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0499100", "Lat": "0.0216000", "KPI": 747, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.024719 ], [ 0.052185, 0.021973 ], [ 0.049438, 0.021973 ], [ 0.049438, 0.024719 ], [ 0.052185, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0525400", "Lat": "0.0234000", "KPI": 571, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.027466 ], [ 0.054932, 0.024719 ], [ 0.052185, 0.024719 ], [ 0.052185, 0.027466 ], [ 0.054932, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0525400", "Lat": "0.0216000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.024719 ], [ 0.054932, 0.021973 ], [ 0.052185, 0.021973 ], [ 0.052185, 0.024719 ], [ 0.054932, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0551700", "Lat": "0.0396000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.043945 ], [ 0.057678, 0.041199 ], [ 0.054932, 0.041199 ], [ 0.054932, 0.043945 ], [ 0.057678, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0551700", "Lat": "0.0378000", "KPI": 479, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.041199 ], [ 0.057678, 0.038452 ], [ 0.054932, 0.038452 ], [ 0.054932, 0.041199 ], [ 0.057678, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0577900", "Lat": "0.0396000", "KPI": 617, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043945 ], [ 0.060425, 0.041199 ], [ 0.057678, 0.041199 ], [ 0.057678, 0.043945 ], [ 0.060425, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577900", "Lat": "0.0378000", "KPI": 895, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.041199 ], [ 0.060425, 0.038452 ], [ 0.057678, 0.038452 ], [ 0.057678, 0.041199 ], [ 0.060425, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0551700", "Lat": "0.0342000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.038452 ], [ 0.057678, 0.035706 ], [ 0.054932, 0.035706 ], [ 0.054932, 0.038452 ], [ 0.057678, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0551700", "Lat": "0.0324000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.035706 ], [ 0.057678, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.035706 ], [ 0.057678, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0577900", "Lat": "0.0342000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.038452 ], [ 0.060425, 0.035706 ], [ 0.057678, 0.035706 ], [ 0.057678, 0.038452 ], [ 0.060425, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0577900", "Lat": "0.0324000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.035706 ], [ 0.060425, 0.032959 ], [ 0.057678, 0.032959 ], [ 0.057678, 0.035706 ], [ 0.060425, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630500", "Lat": "0.0396000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.043945 ], [ 0.063171, 0.041199 ], [ 0.060425, 0.041199 ], [ 0.060425, 0.043945 ], [ 0.063171, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0630500", "Lat": "0.0378000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.041199 ], [ 0.063171, 0.038452 ], [ 0.060425, 0.038452 ], [ 0.060425, 0.041199 ], [ 0.063171, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0630500", "Lat": "0.0342000", "KPI": 4, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.038452 ], [ 0.063171, 0.035706 ], [ 0.060425, 0.035706 ], [ 0.060425, 0.038452 ], [ 0.063171, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0630500", "Lat": "0.0324000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.035706 ], [ 0.063171, 0.032959 ], [ 0.060425, 0.032959 ], [ 0.060425, 0.035706 ], [ 0.063171, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551700", "Lat": "0.0288000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.032959 ], [ 0.057678, 0.030212 ], [ 0.054932, 0.030212 ], [ 0.054932, 0.032959 ], [ 0.057678, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0551700", "Lat": "0.0270000", "KPI": 324, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.030212 ], [ 0.057678, 0.027466 ], [ 0.054932, 0.027466 ], [ 0.054932, 0.030212 ], [ 0.057678, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0577900", "Lat": "0.0288000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032959 ], [ 0.060425, 0.030212 ], [ 0.057678, 0.030212 ], [ 0.057678, 0.032959 ], [ 0.060425, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0577900", "Lat": "0.0270000", "KPI": 761, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.030212 ], [ 0.060425, 0.027466 ], [ 0.057678, 0.027466 ], [ 0.057678, 0.030212 ], [ 0.060425, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0551700", "Lat": "0.0234000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.027466 ], [ 0.057678, 0.024719 ], [ 0.054932, 0.024719 ], [ 0.054932, 0.027466 ], [ 0.057678, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0551700", "Lat": "0.0216000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.024719 ], [ 0.057678, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.024719 ], [ 0.057678, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0577900", "Lat": "0.0234000", "KPI": 289, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.027466 ], [ 0.060425, 0.024719 ], [ 0.057678, 0.024719 ], [ 0.057678, 0.027466 ], [ 0.060425, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0577900", "Lat": "0.0216000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.024719 ], [ 0.060425, 0.021973 ], [ 0.057678, 0.021973 ], [ 0.057678, 0.024719 ], [ 0.060425, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630500", "Lat": "0.0288000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.032959 ], [ 0.063171, 0.030212 ], [ 0.060425, 0.030212 ], [ 0.060425, 0.032959 ], [ 0.063171, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0630500", "Lat": "0.0270000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.030212 ], [ 0.063171, 0.027466 ], [ 0.060425, 0.027466 ], [ 0.060425, 0.030212 ], [ 0.063171, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0630500", "Lat": "0.0234000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.027466 ], [ 0.063171, 0.024719 ], [ 0.060425, 0.024719 ], [ 0.060425, 0.027466 ], [ 0.063171, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0630500", "Lat": "0.0216000", "KPI": 961, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.024719 ], [ 0.063171, 0.021973 ], [ 0.060425, 0.021973 ], [ 0.060425, 0.024719 ], [ 0.063171, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0446600", "Lat": "0.0180000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.021973 ], [ 0.046692, 0.019226 ], [ 0.043945, 0.019226 ], [ 0.043945, 0.021973 ], [ 0.046692, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0446600", "Lat": "0.0162000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.019226 ], [ 0.046692, 0.016479 ], [ 0.043945, 0.016479 ], [ 0.043945, 0.019226 ], [ 0.046692, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0472900", "Lat": "0.0180000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.021973 ], [ 0.049438, 0.019226 ], [ 0.046692, 0.019226 ], [ 0.046692, 0.021973 ], [ 0.049438, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0472900", "Lat": "0.0162000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.019226 ], [ 0.049438, 0.016479 ], [ 0.046692, 0.016479 ], [ 0.046692, 0.019226 ], [ 0.049438, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0446600", "Lat": "0.0126000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.016479 ], [ 0.046692, 0.013733 ], [ 0.043945, 0.013733 ], [ 0.043945, 0.016479 ], [ 0.046692, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0446600", "Lat": "0.0108000", "KPI": 915, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.013733 ], [ 0.046692, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.013733 ], [ 0.046692, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0472900", "Lat": "0.0126000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.013733 ], [ 0.046692, 0.013733 ], [ 0.046692, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.013733 ], [ 0.049438, 0.010986 ], [ 0.046692, 0.010986 ], [ 0.046692, 0.013733 ], [ 0.049438, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0499100", "Lat": "0.0180000", "KPI": 141, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.021973 ], [ 0.052185, 0.019226 ], [ 0.049438, 0.019226 ], [ 0.049438, 0.021973 ], [ 0.052185, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0499100", "Lat": "0.0162000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.019226 ], [ 0.052185, 0.016479 ], [ 0.049438, 0.016479 ], [ 0.049438, 0.019226 ], [ 0.052185, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0525400", "Lat": "0.0180000", "KPI": 174, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.019226 ], [ 0.052185, 0.019226 ], [ 0.052185, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0525400", "Lat": "0.0162000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.019226 ], [ 0.054932, 0.016479 ], [ 0.052185, 0.016479 ], [ 0.052185, 0.019226 ], [ 0.054932, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0499100", "Lat": "0.0126000", "KPI": 942, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.016479 ], [ 0.052185, 0.013733 ], [ 0.049438, 0.013733 ], [ 0.049438, 0.016479 ], [ 0.052185, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0499100", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.013733 ], [ 0.052185, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.013733 ], [ 0.052185, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0525400", "Lat": "0.0126000", "KPI": 69, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.013733 ], [ 0.052185, 0.013733 ], [ 0.052185, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.013733 ], [ 0.054932, 0.010986 ], [ 0.052185, 0.010986 ], [ 0.052185, 0.013733 ], [ 0.054932, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0446600", "Lat": "0.0072000", "KPI": 723, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.010986 ], [ 0.046692, 0.008240 ], [ 0.043945, 0.008240 ], [ 0.043945, 0.010986 ], [ 0.046692, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0446600", "Lat": "0.0054000", "KPI": 846, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.008240 ], [ 0.046692, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.008240 ], [ 0.046692, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0472900", "Lat": "0.0072000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.008240 ], [ 0.046692, 0.008240 ], [ 0.046692, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0054000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.008240 ], [ 0.049438, 0.005493 ], [ 0.046692, 0.005493 ], [ 0.046692, 0.008240 ], [ 0.049438, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0446600", "Lat": "0.0018000", "KPI": 727, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.005493 ], [ 0.046692, 0.002747 ], [ 0.043945, 0.002747 ], [ 0.043945, 0.005493 ], [ 0.046692, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0446600", "Lat": "0.0000000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.002747 ], [ 0.046692, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.002747 ], [ 0.046692, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0018000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.002747 ], [ 0.046692, 0.002747 ], [ 0.046692, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.002747 ], [ 0.049438, 0.000000 ], [ 0.046692, 0.000000 ], [ 0.046692, 0.002747 ], [ 0.049438, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0499100", "Lat": "0.0072000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.010986 ], [ 0.052185, 0.008240 ], [ 0.049438, 0.008240 ], [ 0.049438, 0.010986 ], [ 0.052185, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0499100", "Lat": "0.0054000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.008240 ], [ 0.052185, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.008240 ], [ 0.052185, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0525400", "Lat": "0.0072000", "KPI": 416, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.008240 ], [ 0.052185, 0.008240 ], [ 0.052185, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0525400", "Lat": "0.0054000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.008240 ], [ 0.054932, 0.005493 ], [ 0.052185, 0.005493 ], [ 0.052185, 0.008240 ], [ 0.054932, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0018000", "KPI": 452, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.005493 ], [ 0.052185, 0.002747 ], [ 0.049438, 0.002747 ], [ 0.049438, 0.005493 ], [ 0.052185, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0499100", "Lat": "0.0000000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.002747 ], [ 0.052185, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.002747 ], [ 0.052185, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0525400", "Lat": "0.0018000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.002747 ], [ 0.052185, 0.002747 ], [ 0.052185, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.002747 ], [ 0.054932, 0.000000 ], [ 0.052185, 0.000000 ], [ 0.052185, 0.002747 ], [ 0.054932, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0551700", "Lat": "0.0180000", "KPI": 43, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.021973 ], [ 0.057678, 0.019226 ], [ 0.054932, 0.019226 ], [ 0.054932, 0.021973 ], [ 0.057678, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0551700", "Lat": "0.0162000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.019226 ], [ 0.057678, 0.016479 ], [ 0.054932, 0.016479 ], [ 0.054932, 0.019226 ], [ 0.057678, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0180000", "KPI": 883, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021973 ], [ 0.060425, 0.019226 ], [ 0.057678, 0.019226 ], [ 0.057678, 0.021973 ], [ 0.060425, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0577900", "Lat": "0.0162000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.019226 ], [ 0.060425, 0.016479 ], [ 0.057678, 0.016479 ], [ 0.057678, 0.019226 ], [ 0.060425, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0551700", "Lat": "0.0126000", "KPI": 880, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.016479 ], [ 0.057678, 0.013733 ], [ 0.054932, 0.013733 ], [ 0.054932, 0.016479 ], [ 0.057678, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0551700", "Lat": "0.0108000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.013733 ], [ 0.057678, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.013733 ], [ 0.057678, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0577900", "Lat": "0.0126000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.013733 ], [ 0.057678, 0.013733 ], [ 0.057678, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0577900", "Lat": "0.0108000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.013733 ], [ 0.060425, 0.010986 ], [ 0.057678, 0.010986 ], [ 0.057678, 0.013733 ], [ 0.060425, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0630500", "Lat": "0.0180000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.021973 ], [ 0.063171, 0.019226 ], [ 0.060425, 0.019226 ], [ 0.060425, 0.021973 ], [ 0.063171, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0630500", "Lat": "0.0162000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.019226 ], [ 0.063171, 0.016479 ], [ 0.060425, 0.016479 ], [ 0.060425, 0.019226 ], [ 0.063171, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0630500", "Lat": "0.0126000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.016479 ], [ 0.063171, 0.013733 ], [ 0.060425, 0.013733 ], [ 0.060425, 0.016479 ], [ 0.063171, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0108000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.013733 ], [ 0.063171, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.013733 ], [ 0.063171, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0551700", "Lat": "0.0072000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.010986 ], [ 0.057678, 0.008240 ], [ 0.054932, 0.008240 ], [ 0.054932, 0.010986 ], [ 0.057678, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0551700", "Lat": "0.0054000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.008240 ], [ 0.057678, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.008240 ], [ 0.057678, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577900", "Lat": "0.0072000", "KPI": 422, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.008240 ], [ 0.057678, 0.008240 ], [ 0.057678, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0577900", "Lat": "0.0054000", "KPI": 209, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.008240 ], [ 0.060425, 0.005493 ], [ 0.057678, 0.005493 ], [ 0.057678, 0.008240 ], [ 0.060425, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0551700", "Lat": "0.0018000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.005493 ], [ 0.057678, 0.002747 ], [ 0.054932, 0.002747 ], [ 0.054932, 0.005493 ], [ 0.057678, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0551700", "Lat": "0.0000000", "KPI": 65, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.002747 ], [ 0.057678, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.002747 ], [ 0.057678, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577900", "Lat": "0.0018000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.002747 ], [ 0.057678, 0.002747 ], [ 0.057678, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.002747 ], [ 0.060425, 0.000000 ], [ 0.057678, 0.000000 ], [ 0.057678, 0.002747 ], [ 0.060425, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0630500", "Lat": "0.0072000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.010986 ], [ 0.063171, 0.008240 ], [ 0.060425, 0.008240 ], [ 0.060425, 0.010986 ], [ 0.063171, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0630500", "Lat": "0.0054000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.008240 ], [ 0.063171, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.008240 ], [ 0.063171, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0018000", "KPI": 873, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.005493 ], [ 0.063171, 0.002747 ], [ 0.060425, 0.002747 ], [ 0.060425, 0.005493 ], [ 0.063171, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0630500", "Lat": "0.0000000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.002747 ], [ 0.063171, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.002747 ], [ 0.063171, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0656800", "Lat": "0.0396000", "KPI": 594, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.041199 ], [ 0.063171, 0.041199 ], [ 0.063171, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0656800", "Lat": "0.0378000", "KPI": 887, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.041199 ], [ 0.065918, 0.038452 ], [ 0.063171, 0.038452 ], [ 0.063171, 0.041199 ], [ 0.065918, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0683000", "Lat": "0.0396000", "KPI": 753, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.043945 ], [ 0.068665, 0.041199 ], [ 0.065918, 0.041199 ], [ 0.065918, 0.043945 ], [ 0.068665, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0683000", "Lat": "0.0378000", "KPI": 146, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.041199 ], [ 0.068665, 0.038452 ], [ 0.065918, 0.038452 ], [ 0.065918, 0.041199 ], [ 0.068665, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0656800", "Lat": "0.0342000", "KPI": 451, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.038452 ], [ 0.065918, 0.035706 ], [ 0.063171, 0.035706 ], [ 0.063171, 0.038452 ], [ 0.065918, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0656800", "Lat": "0.0324000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.035706 ], [ 0.065918, 0.032959 ], [ 0.063171, 0.032959 ], [ 0.063171, 0.035706 ], [ 0.065918, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0683000", "Lat": "0.0342000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.038452 ], [ 0.068665, 0.035706 ], [ 0.065918, 0.035706 ], [ 0.065918, 0.038452 ], [ 0.068665, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0683000", "Lat": "0.0324000", "KPI": 650, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.035706 ], [ 0.068665, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.035706 ], [ 0.068665, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0396000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.043945 ], [ 0.071411, 0.041199 ], [ 0.068665, 0.041199 ], [ 0.068665, 0.043945 ], [ 0.071411, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0709300", "Lat": "0.0378000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.041199 ], [ 0.071411, 0.038452 ], [ 0.068665, 0.038452 ], [ 0.068665, 0.041199 ], [ 0.071411, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0735600", "Lat": "0.0396000", "KPI": 525, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.043945 ], [ 0.074158, 0.041199 ], [ 0.071411, 0.041199 ], [ 0.071411, 0.043945 ], [ 0.074158, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0735600", "Lat": "0.0378000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.041199 ], [ 0.074158, 0.038452 ], [ 0.071411, 0.038452 ], [ 0.071411, 0.041199 ], [ 0.074158, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0709300", "Lat": "0.0342000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.038452 ], [ 0.071411, 0.035706 ], [ 0.068665, 0.035706 ], [ 0.068665, 0.038452 ], [ 0.071411, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0709300", "Lat": "0.0324000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.035706 ], [ 0.071411, 0.032959 ], [ 0.068665, 0.032959 ], [ 0.068665, 0.035706 ], [ 0.071411, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0735600", "Lat": "0.0342000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.038452 ], [ 0.074158, 0.035706 ], [ 0.071411, 0.035706 ], [ 0.071411, 0.038452 ], [ 0.074158, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0735600", "Lat": "0.0324000", "KPI": 397, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.035706 ], [ 0.074158, 0.032959 ], [ 0.071411, 0.032959 ], [ 0.071411, 0.035706 ], [ 0.074158, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0656800", "Lat": "0.0288000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.030212 ], [ 0.063171, 0.030212 ], [ 0.063171, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0656800", "Lat": "0.0270000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.030212 ], [ 0.065918, 0.027466 ], [ 0.063171, 0.027466 ], [ 0.063171, 0.030212 ], [ 0.065918, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0683000", "Lat": "0.0288000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.032959 ], [ 0.068665, 0.030212 ], [ 0.065918, 0.030212 ], [ 0.065918, 0.032959 ], [ 0.068665, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0683000", "Lat": "0.0270000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.030212 ], [ 0.068665, 0.027466 ], [ 0.065918, 0.027466 ], [ 0.065918, 0.030212 ], [ 0.068665, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0656800", "Lat": "0.0234000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.027466 ], [ 0.065918, 0.024719 ], [ 0.063171, 0.024719 ], [ 0.063171, 0.027466 ], [ 0.065918, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.024719 ], [ 0.065918, 0.021973 ], [ 0.063171, 0.021973 ], [ 0.063171, 0.024719 ], [ 0.065918, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0683000", "Lat": "0.0234000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.027466 ], [ 0.068665, 0.024719 ], [ 0.065918, 0.024719 ], [ 0.065918, 0.027466 ], [ 0.068665, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0683000", "Lat": "0.0216000", "KPI": 301, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.024719 ], [ 0.068665, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.024719 ], [ 0.068665, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709300", "Lat": "0.0288000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.032959 ], [ 0.071411, 0.030212 ], [ 0.068665, 0.030212 ], [ 0.068665, 0.032959 ], [ 0.071411, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0709300", "Lat": "0.0270000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.030212 ], [ 0.071411, 0.027466 ], [ 0.068665, 0.027466 ], [ 0.068665, 0.030212 ], [ 0.071411, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0735600", "Lat": "0.0288000", "KPI": 362, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.032959 ], [ 0.074158, 0.030212 ], [ 0.071411, 0.030212 ], [ 0.071411, 0.032959 ], [ 0.074158, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0735600", "Lat": "0.0270000", "KPI": 969, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.030212 ], [ 0.074158, 0.027466 ], [ 0.071411, 0.027466 ], [ 0.071411, 0.030212 ], [ 0.074158, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0709300", "Lat": "0.0234000", "KPI": 811, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.027466 ], [ 0.071411, 0.024719 ], [ 0.068665, 0.024719 ], [ 0.068665, 0.027466 ], [ 0.071411, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709300", "Lat": "0.0216000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.024719 ], [ 0.071411, 0.021973 ], [ 0.068665, 0.021973 ], [ 0.068665, 0.024719 ], [ 0.071411, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0735600", "Lat": "0.0234000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.027466 ], [ 0.074158, 0.024719 ], [ 0.071411, 0.024719 ], [ 0.071411, 0.027466 ], [ 0.074158, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0735600", "Lat": "0.0216000", "KPI": 878, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.024719 ], [ 0.074158, 0.021973 ], [ 0.071411, 0.021973 ], [ 0.071411, 0.024719 ], [ 0.074158, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0761800", "Lat": "0.0396000", "KPI": 462, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.041199 ], [ 0.074158, 0.041199 ], [ 0.074158, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0761800", "Lat": "0.0378000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.041199 ], [ 0.076904, 0.038452 ], [ 0.074158, 0.038452 ], [ 0.074158, 0.041199 ], [ 0.076904, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0788100", "Lat": "0.0396000", "KPI": 771, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.043945 ], [ 0.079651, 0.041199 ], [ 0.076904, 0.041199 ], [ 0.076904, 0.043945 ], [ 0.079651, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0788100", "Lat": "0.0378000", "KPI": 74, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.041199 ], [ 0.079651, 0.038452 ], [ 0.076904, 0.038452 ], [ 0.076904, 0.041199 ], [ 0.079651, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0761800", "Lat": "0.0342000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.038452 ], [ 0.076904, 0.035706 ], [ 0.074158, 0.035706 ], [ 0.074158, 0.038452 ], [ 0.076904, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0761800", "Lat": "0.0324000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.035706 ], [ 0.076904, 0.032959 ], [ 0.074158, 0.032959 ], [ 0.074158, 0.035706 ], [ 0.076904, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0788100", "Lat": "0.0342000", "KPI": 35, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.038452 ], [ 0.079651, 0.035706 ], [ 0.076904, 0.035706 ], [ 0.076904, 0.038452 ], [ 0.079651, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0788100", "Lat": "0.0324000", "KPI": 141, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.035706 ], [ 0.079651, 0.032959 ], [ 0.076904, 0.032959 ], [ 0.076904, 0.035706 ], [ 0.079651, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0814400", "Lat": "0.0396000", "KPI": 349, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.043945 ], [ 0.082397, 0.041199 ], [ 0.079651, 0.041199 ], [ 0.079651, 0.043945 ], [ 0.082397, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0814400", "Lat": "0.0378000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.041199 ], [ 0.082397, 0.038452 ], [ 0.079651, 0.038452 ], [ 0.079651, 0.041199 ], [ 0.082397, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0342000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.038452 ], [ 0.082397, 0.035706 ], [ 0.079651, 0.035706 ], [ 0.079651, 0.038452 ], [ 0.082397, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0814400", "Lat": "0.0324000", "KPI": 474, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.035706 ], [ 0.082397, 0.032959 ], [ 0.079651, 0.032959 ], [ 0.079651, 0.035706 ], [ 0.082397, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0761800", "Lat": "0.0288000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.030212 ], [ 0.074158, 0.030212 ], [ 0.074158, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0761800", "Lat": "0.0270000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.030212 ], [ 0.076904, 0.027466 ], [ 0.074158, 0.027466 ], [ 0.074158, 0.030212 ], [ 0.076904, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0788100", "Lat": "0.0288000", "KPI": 345, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.032959 ], [ 0.079651, 0.030212 ], [ 0.076904, 0.030212 ], [ 0.076904, 0.032959 ], [ 0.079651, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0788100", "Lat": "0.0270000", "KPI": 591, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.030212 ], [ 0.079651, 0.027466 ], [ 0.076904, 0.027466 ], [ 0.076904, 0.030212 ], [ 0.079651, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0761800", "Lat": "0.0234000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.027466 ], [ 0.076904, 0.024719 ], [ 0.074158, 0.024719 ], [ 0.074158, 0.027466 ], [ 0.076904, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0216000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.024719 ], [ 0.076904, 0.021973 ], [ 0.074158, 0.021973 ], [ 0.074158, 0.024719 ], [ 0.076904, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0788100", "Lat": "0.0234000", "KPI": 223, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.027466 ], [ 0.079651, 0.024719 ], [ 0.076904, 0.024719 ], [ 0.076904, 0.027466 ], [ 0.079651, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0788100", "Lat": "0.0216000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.024719 ], [ 0.079651, 0.021973 ], [ 0.076904, 0.021973 ], [ 0.076904, 0.024719 ], [ 0.079651, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814400", "Lat": "0.0288000", "KPI": 827, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.032959 ], [ 0.082397, 0.030212 ], [ 0.079651, 0.030212 ], [ 0.079651, 0.032959 ], [ 0.082397, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0270000", "KPI": 934, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.030212 ], [ 0.082397, 0.027466 ], [ 0.079651, 0.027466 ], [ 0.079651, 0.030212 ], [ 0.082397, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0814400", "Lat": "0.0234000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.027466 ], [ 0.082397, 0.024719 ], [ 0.079651, 0.024719 ], [ 0.079651, 0.027466 ], [ 0.082397, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0814400", "Lat": "0.0216000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.024719 ], [ 0.082397, 0.021973 ], [ 0.079651, 0.021973 ], [ 0.079651, 0.024719 ], [ 0.082397, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0656800", "Lat": "0.0180000", "KPI": 238, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.019226 ], [ 0.063171, 0.019226 ], [ 0.063171, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0656800", "Lat": "0.0162000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.019226 ], [ 0.065918, 0.016479 ], [ 0.063171, 0.016479 ], [ 0.063171, 0.019226 ], [ 0.065918, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0683000", "Lat": "0.0180000", "KPI": 412, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.021973 ], [ 0.068665, 0.019226 ], [ 0.065918, 0.019226 ], [ 0.065918, 0.021973 ], [ 0.068665, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0683000", "Lat": "0.0162000", "KPI": 700, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.019226 ], [ 0.068665, 0.016479 ], [ 0.065918, 0.016479 ], [ 0.065918, 0.019226 ], [ 0.068665, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0656800", "Lat": "0.0126000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.013733 ], [ 0.063171, 0.013733 ], [ 0.063171, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.013733 ], [ 0.065918, 0.010986 ], [ 0.063171, 0.010986 ], [ 0.063171, 0.013733 ], [ 0.065918, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0683000", "Lat": "0.0126000", "KPI": 437, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.016479 ], [ 0.068665, 0.013733 ], [ 0.065918, 0.013733 ], [ 0.065918, 0.016479 ], [ 0.068665, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0683000", "Lat": "0.0108000", "KPI": 638, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.013733 ], [ 0.068665, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.013733 ], [ 0.068665, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0709300", "Lat": "0.0180000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.021973 ], [ 0.071411, 0.019226 ], [ 0.068665, 0.019226 ], [ 0.068665, 0.021973 ], [ 0.071411, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709300", "Lat": "0.0162000", "KPI": 737, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.019226 ], [ 0.071411, 0.016479 ], [ 0.068665, 0.016479 ], [ 0.068665, 0.019226 ], [ 0.071411, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0735600", "Lat": "0.0180000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.021973 ], [ 0.074158, 0.019226 ], [ 0.071411, 0.019226 ], [ 0.071411, 0.021973 ], [ 0.074158, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0735600", "Lat": "0.0162000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.019226 ], [ 0.074158, 0.016479 ], [ 0.071411, 0.016479 ], [ 0.071411, 0.019226 ], [ 0.074158, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0709300", "Lat": "0.0126000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.013733 ], [ 0.068665, 0.013733 ], [ 0.068665, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0709300", "Lat": "0.0108000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.013733 ], [ 0.071411, 0.010986 ], [ 0.068665, 0.010986 ], [ 0.068665, 0.013733 ], [ 0.071411, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0735600", "Lat": "0.0126000", "KPI": 949, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.016479 ], [ 0.074158, 0.013733 ], [ 0.071411, 0.013733 ], [ 0.071411, 0.016479 ], [ 0.074158, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0735600", "Lat": "0.0108000", "KPI": 630, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.013733 ], [ 0.074158, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.013733 ], [ 0.074158, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0656800", "Lat": "0.0072000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.008240 ], [ 0.063171, 0.008240 ], [ 0.063171, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656800", "Lat": "0.0054000", "KPI": 51, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.008240 ], [ 0.065918, 0.005493 ], [ 0.063171, 0.005493 ], [ 0.063171, 0.008240 ], [ 0.065918, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0683000", "Lat": "0.0072000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.010986 ], [ 0.068665, 0.008240 ], [ 0.065918, 0.008240 ], [ 0.065918, 0.010986 ], [ 0.068665, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0683000", "Lat": "0.0054000", "KPI": 681, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.008240 ], [ 0.068665, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.008240 ], [ 0.068665, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656800", "Lat": "0.0018000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.002747 ], [ 0.063171, 0.002747 ], [ 0.063171, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.002747 ], [ 0.065918, 0.000000 ], [ 0.063171, 0.000000 ], [ 0.063171, 0.002747 ], [ 0.065918, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0683000", "Lat": "0.0018000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.005493 ], [ 0.068665, 0.002747 ], [ 0.065918, 0.002747 ], [ 0.065918, 0.005493 ], [ 0.068665, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0683000", "Lat": "0.0000000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.002747 ], [ 0.068665, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.002747 ], [ 0.068665, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0709300", "Lat": "0.0072000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.008240 ], [ 0.068665, 0.008240 ], [ 0.068665, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0709300", "Lat": "0.0054000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.008240 ], [ 0.071411, 0.005493 ], [ 0.068665, 0.005493 ], [ 0.068665, 0.008240 ], [ 0.071411, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0735600", "Lat": "0.0072000", "KPI": 217, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.010986 ], [ 0.074158, 0.008240 ], [ 0.071411, 0.008240 ], [ 0.071411, 0.010986 ], [ 0.074158, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0735600", "Lat": "0.0054000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.008240 ], [ 0.074158, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.008240 ], [ 0.074158, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0709300", "Lat": "0.0018000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.002747 ], [ 0.068665, 0.002747 ], [ 0.068665, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.002747 ], [ 0.071411, 0.000000 ], [ 0.068665, 0.000000 ], [ 0.068665, 0.002747 ], [ 0.071411, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0735600", "Lat": "0.0018000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.005493 ], [ 0.074158, 0.002747 ], [ 0.071411, 0.002747 ], [ 0.071411, 0.005493 ], [ 0.074158, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0735600", "Lat": "0.0000000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.002747 ], [ 0.074158, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.002747 ], [ 0.074158, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761800", "Lat": "0.0180000", "KPI": 819, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.019226 ], [ 0.074158, 0.019226 ], [ 0.074158, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761800", "Lat": "0.0162000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.019226 ], [ 0.076904, 0.016479 ], [ 0.074158, 0.016479 ], [ 0.074158, 0.019226 ], [ 0.076904, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0788100", "Lat": "0.0180000", "KPI": 663, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.021973 ], [ 0.079651, 0.019226 ], [ 0.076904, 0.019226 ], [ 0.076904, 0.021973 ], [ 0.079651, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0788100", "Lat": "0.0162000", "KPI": 709, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.019226 ], [ 0.079651, 0.016479 ], [ 0.076904, 0.016479 ], [ 0.076904, 0.019226 ], [ 0.079651, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0761800", "Lat": "0.0126000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.013733 ], [ 0.074158, 0.013733 ], [ 0.074158, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.013733 ], [ 0.076904, 0.010986 ], [ 0.074158, 0.010986 ], [ 0.074158, 0.013733 ], [ 0.076904, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0788100", "Lat": "0.0126000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.016479 ], [ 0.079651, 0.013733 ], [ 0.076904, 0.013733 ], [ 0.076904, 0.016479 ], [ 0.079651, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0788100", "Lat": "0.0108000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.013733 ], [ 0.079651, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.013733 ], [ 0.079651, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0814400", "Lat": "0.0180000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.021973 ], [ 0.082397, 0.019226 ], [ 0.079651, 0.019226 ], [ 0.079651, 0.021973 ], [ 0.082397, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0814400", "Lat": "0.0162000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.019226 ], [ 0.082397, 0.016479 ], [ 0.079651, 0.016479 ], [ 0.079651, 0.019226 ], [ 0.082397, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0814400", "Lat": "0.0126000", "KPI": 299, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.013733 ], [ 0.079651, 0.013733 ], [ 0.079651, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0814400", "Lat": "0.0108000", "KPI": 98, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.013733 ], [ 0.082397, 0.010986 ], [ 0.079651, 0.010986 ], [ 0.079651, 0.013733 ], [ 0.082397, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761800", "Lat": "0.0072000", "KPI": 302, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.008240 ], [ 0.074158, 0.008240 ], [ 0.074158, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.008240 ], [ 0.076904, 0.005493 ], [ 0.074158, 0.005493 ], [ 0.074158, 0.008240 ], [ 0.076904, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0788100", "Lat": "0.0072000", "KPI": 174, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.010986 ], [ 0.079651, 0.008240 ], [ 0.076904, 0.008240 ], [ 0.076904, 0.010986 ], [ 0.079651, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0788100", "Lat": "0.0054000", "KPI": 609, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.008240 ], [ 0.079651, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.008240 ], [ 0.079651, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0761800", "Lat": "0.0018000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.002747 ], [ 0.074158, 0.002747 ], [ 0.074158, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.002747 ], [ 0.076904, 0.000000 ], [ 0.074158, 0.000000 ], [ 0.074158, 0.002747 ], [ 0.076904, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0788100", "Lat": "0.0018000", "KPI": 886, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.005493 ], [ 0.079651, 0.002747 ], [ 0.076904, 0.002747 ], [ 0.076904, 0.005493 ], [ 0.079651, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0788100", "Lat": "0.0000000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.002747 ], [ 0.079651, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.002747 ], [ 0.079651, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0814400", "Lat": "0.0072000", "KPI": 502, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.008240 ], [ 0.079651, 0.008240 ], [ 0.079651, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0814400", "Lat": "0.0054000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.008240 ], [ 0.082397, 0.005493 ], [ 0.079651, 0.005493 ], [ 0.079651, 0.008240 ], [ 0.082397, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0018000", "KPI": 505, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.002747 ], [ 0.079651, 0.002747 ], [ 0.079651, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.002747 ], [ 0.082397, 0.000000 ], [ 0.079651, 0.000000 ], [ 0.079651, 0.002747 ], [ 0.082397, 0.002747 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1023, "y": 1024 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003433 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003433 ], [ 0.002618, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.003433 ], [ 0.003433, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003433 ], [ 0.003433, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.001802 ], [ 0.003433, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.003433, 0.001802 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1023, "y": 1023 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0558000", "KPI": 384, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.057592 ], [ 0.002618, 0.055790 ], [ 0.000000, 0.055790 ], [ 0.000000, 0.057592 ], [ 0.002618, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0026300", "Lat": "0.0558000", "KPI": 236, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.057592 ], [ 0.003433, 0.055790 ], [ 0.002618, 0.055790 ], [ 0.002618, 0.057592 ], [ 0.003433, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0000000", "Lat": "0.0540000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.055790 ], [ 0.002618, 0.053987 ], [ 0.000000, 0.053987 ], [ 0.000000, 0.055790 ], [ 0.002618, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0000000", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.053987 ], [ 0.002618, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.053987 ], [ 0.002618, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0000000", "Lat": "0.0504000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.052185 ], [ 0.002618, 0.050383 ], [ 0.000000, 0.050383 ], [ 0.000000, 0.052185 ], [ 0.002618, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0000000", "Lat": "0.0486000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.050383 ], [ 0.002618, 0.048580 ], [ 0.000000, 0.048580 ], [ 0.000000, 0.050383 ], [ 0.002618, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0026300", "Lat": "0.0540000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.055790 ], [ 0.003433, 0.053987 ], [ 0.002618, 0.053987 ], [ 0.002618, 0.055790 ], [ 0.003433, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026300", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.053987 ], [ 0.003433, 0.052185 ], [ 0.002618, 0.052185 ], [ 0.002618, 0.053987 ], [ 0.003433, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0026300", "Lat": "0.0504000", "KPI": 364, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.052185 ], [ 0.003433, 0.050383 ], [ 0.002618, 0.050383 ], [ 0.002618, 0.052185 ], [ 0.003433, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0026300", "Lat": "0.0486000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.050383 ], [ 0.003433, 0.048580 ], [ 0.002618, 0.048580 ], [ 0.002618, 0.050383 ], [ 0.003433, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0000000", "Lat": "0.0468000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.048580 ], [ 0.002618, 0.046821 ], [ 0.000000, 0.046821 ], [ 0.000000, 0.048580 ], [ 0.002618, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0000000", "Lat": "0.0450000", "KPI": 408, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.046821 ], [ 0.002618, 0.045018 ], [ 0.000000, 0.045018 ], [ 0.000000, 0.046821 ], [ 0.002618, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0000000", "Lat": "0.0432000", "KPI": 317, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.045018 ], [ 0.002618, 0.043216 ], [ 0.000000, 0.043216 ], [ 0.000000, 0.045018 ], [ 0.002618, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0468000", "KPI": 182, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.048580 ], [ 0.003433, 0.046821 ], [ 0.002618, 0.046821 ], [ 0.002618, 0.048580 ], [ 0.003433, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0026300", "Lat": "0.0450000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.046821 ], [ 0.003433, 0.045018 ], [ 0.002618, 0.045018 ], [ 0.002618, 0.046821 ], [ 0.003433, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0026300", "Lat": "0.0432000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.045018 ], [ 0.003433, 0.043216 ], [ 0.002618, 0.043216 ], [ 0.002618, 0.045018 ], [ 0.003433, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0414000", "KPI": 278, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.043216 ], [ 0.002618, 0.041413 ], [ 0.000000, 0.041413 ], [ 0.000000, 0.043216 ], [ 0.002618, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0000000", "Lat": "0.0396000", "KPI": 735, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.041413 ], [ 0.002618, 0.039611 ], [ 0.000000, 0.039611 ], [ 0.000000, 0.041413 ], [ 0.002618, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0000000", "Lat": "0.0378000", "KPI": 526, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.039611 ], [ 0.002618, 0.037808 ], [ 0.000000, 0.037808 ], [ 0.000000, 0.039611 ], [ 0.002618, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0414000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.043216 ], [ 0.003433, 0.041413 ], [ 0.002618, 0.041413 ], [ 0.002618, 0.043216 ], [ 0.003433, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0026300", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.041413 ], [ 0.003433, 0.039611 ], [ 0.002618, 0.039611 ], [ 0.002618, 0.041413 ], [ 0.003433, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0378000", "KPI": 611, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.039611 ], [ 0.003433, 0.037808 ], [ 0.002618, 0.037808 ], [ 0.002618, 0.039611 ], [ 0.003433, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0000000", "Lat": "0.0360000", "KPI": 525, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.037808 ], [ 0.002618, 0.036006 ], [ 0.000000, 0.036006 ], [ 0.000000, 0.037808 ], [ 0.002618, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0000000", "Lat": "0.0342000", "KPI": 13, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.036006 ], [ 0.002618, 0.034204 ], [ 0.000000, 0.034204 ], [ 0.000000, 0.036006 ], [ 0.002618, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0324000", "KPI": 229, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.034204 ], [ 0.002618, 0.032401 ], [ 0.000000, 0.032401 ], [ 0.000000, 0.034204 ], [ 0.002618, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0026300", "Lat": "0.0360000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.037808 ], [ 0.003433, 0.036006 ], [ 0.002618, 0.036006 ], [ 0.002618, 0.037808 ], [ 0.003433, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0026300", "Lat": "0.0342000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.036006 ], [ 0.003433, 0.034204 ], [ 0.002618, 0.034204 ], [ 0.002618, 0.036006 ], [ 0.003433, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0026300", "Lat": "0.0324000", "KPI": 769, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.034204 ], [ 0.003433, 0.032401 ], [ 0.002618, 0.032401 ], [ 0.002618, 0.034204 ], [ 0.003433, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0000000", "Lat": "0.0306000", "KPI": 422, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.032401 ], [ 0.002618, 0.030599 ], [ 0.000000, 0.030599 ], [ 0.000000, 0.032401 ], [ 0.002618, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0000000", "Lat": "0.0288000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.030599 ], [ 0.002618, 0.028796 ], [ 0.000000, 0.028796 ], [ 0.000000, 0.030599 ], [ 0.002618, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0000000", "Lat": "0.0270000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.028796 ], [ 0.002618, 0.026994 ], [ 0.000000, 0.026994 ], [ 0.000000, 0.028796 ], [ 0.002618, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0026300", "Lat": "0.0306000", "KPI": 537, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.032401 ], [ 0.003433, 0.030599 ], [ 0.002618, 0.030599 ], [ 0.002618, 0.032401 ], [ 0.003433, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0026300", "Lat": "0.0288000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.030599 ], [ 0.003433, 0.028796 ], [ 0.002618, 0.028796 ], [ 0.002618, 0.030599 ], [ 0.003433, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0270000", "KPI": 888, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.028796 ], [ 0.003433, 0.026994 ], [ 0.002618, 0.026994 ], [ 0.002618, 0.028796 ], [ 0.003433, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0000000", "Lat": "0.0252000", "KPI": 193, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.026994 ], [ 0.002618, 0.025191 ], [ 0.000000, 0.025191 ], [ 0.000000, 0.026994 ], [ 0.002618, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0000000", "Lat": "0.0234000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.025191 ], [ 0.002618, 0.023389 ], [ 0.000000, 0.023389 ], [ 0.000000, 0.025191 ], [ 0.002618, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0000000", "Lat": "0.0216000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.023389 ], [ 0.002618, 0.021586 ], [ 0.000000, 0.021586 ], [ 0.000000, 0.023389 ], [ 0.002618, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0026300", "Lat": "0.0252000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.026994 ], [ 0.003433, 0.025191 ], [ 0.002618, 0.025191 ], [ 0.002618, 0.026994 ], [ 0.003433, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026300", "Lat": "0.0234000", "KPI": 221, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.025191 ], [ 0.003433, 0.023389 ], [ 0.002618, 0.023389 ], [ 0.002618, 0.025191 ], [ 0.003433, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0026300", "Lat": "0.0216000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.023389 ], [ 0.003433, 0.021586 ], [ 0.002618, 0.021586 ], [ 0.002618, 0.023389 ], [ 0.003433, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0000000", "Lat": "0.0198000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.021586 ], [ 0.002618, 0.019784 ], [ 0.000000, 0.019784 ], [ 0.000000, 0.021586 ], [ 0.002618, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0000000", "Lat": "0.0180000", "KPI": 224, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.019784 ], [ 0.002618, 0.017982 ], [ 0.000000, 0.017982 ], [ 0.000000, 0.019784 ], [ 0.002618, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0000000", "Lat": "0.0162000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.017982 ], [ 0.002618, 0.016179 ], [ 0.000000, 0.016179 ], [ 0.000000, 0.017982 ], [ 0.002618, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0026300", "Lat": "0.0198000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.021586 ], [ 0.003433, 0.019784 ], [ 0.002618, 0.019784 ], [ 0.002618, 0.021586 ], [ 0.003433, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0026300", "Lat": "0.0180000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.019784 ], [ 0.003433, 0.017982 ], [ 0.002618, 0.017982 ], [ 0.002618, 0.019784 ], [ 0.003433, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0026300", "Lat": "0.0162000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.017982 ], [ 0.003433, 0.016179 ], [ 0.002618, 0.016179 ], [ 0.002618, 0.017982 ], [ 0.003433, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0000000", "Lat": "0.0144000", "KPI": 723, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.016179 ], [ 0.002618, 0.014420 ], [ 0.000000, 0.014420 ], [ 0.000000, 0.016179 ], [ 0.002618, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0000000", "Lat": "0.0126000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.014420 ], [ 0.002618, 0.012617 ], [ 0.000000, 0.012617 ], [ 0.000000, 0.014420 ], [ 0.002618, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0000000", "Lat": "0.0108000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.012617 ], [ 0.002618, 0.010815 ], [ 0.000000, 0.010815 ], [ 0.000000, 0.012617 ], [ 0.002618, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0026300", "Lat": "0.0144000", "KPI": 861, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.016179 ], [ 0.003433, 0.014420 ], [ 0.002618, 0.014420 ], [ 0.002618, 0.016179 ], [ 0.003433, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0026300", "Lat": "0.0126000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.014420 ], [ 0.003433, 0.012617 ], [ 0.002618, 0.012617 ], [ 0.002618, 0.014420 ], [ 0.003433, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0026300", "Lat": "0.0108000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.012617 ], [ 0.003433, 0.010815 ], [ 0.002618, 0.010815 ], [ 0.002618, 0.012617 ], [ 0.003433, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0000000", "Lat": "0.0090000", "KPI": 683, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.010815 ], [ 0.002618, 0.009012 ], [ 0.000000, 0.009012 ], [ 0.000000, 0.010815 ], [ 0.002618, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0000000", "Lat": "0.0072000", "KPI": 125, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.009012 ], [ 0.002618, 0.007210 ], [ 0.000000, 0.007210 ], [ 0.000000, 0.009012 ], [ 0.002618, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0000000", "Lat": "0.0054000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.007210 ], [ 0.002618, 0.005407 ], [ 0.000000, 0.005407 ], [ 0.000000, 0.007210 ], [ 0.002618, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0026300", "Lat": "0.0090000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.010815 ], [ 0.003433, 0.009012 ], [ 0.002618, 0.009012 ], [ 0.002618, 0.010815 ], [ 0.003433, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0072000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.009012 ], [ 0.003433, 0.007210 ], [ 0.002618, 0.007210 ], [ 0.002618, 0.009012 ], [ 0.003433, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.007210 ], [ 0.003433, 0.005407 ], [ 0.002618, 0.005407 ], [ 0.002618, 0.007210 ], [ 0.003433, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0000000", "Lat": "0.0036000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.005407 ], [ 0.002618, 0.003605 ], [ 0.000000, 0.003605 ], [ 0.000000, 0.005407 ], [ 0.002618, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003605 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003605 ], [ 0.002618, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0026300", "Lat": "0.0036000", "KPI": 827, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.005407 ], [ 0.003433, 0.003605 ], [ 0.002618, 0.003605 ], [ 0.002618, 0.005407 ], [ 0.003433, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.003605 ], [ 0.003433, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003605 ], [ 0.003433, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.001802 ], [ 0.003433, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.003433, 0.001802 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1024, "y": 1024 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003433 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003433 ], [ 0.002618, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.003433 ], [ 0.005279, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003433 ], [ 0.005279, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.001802 ], [ 0.005279, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.005279, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.003433 ], [ 0.007896, 0.001802 ], [ 0.005236, 0.001802 ], [ 0.005236, 0.003433 ], [ 0.007896, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.001802 ], [ 0.007896, 0.000000 ], [ 0.005236, 0.000000 ], [ 0.005236, 0.001802 ], [ 0.007896, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0078800", "Lat": "0.0018000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.003433 ], [ 0.010514, 0.001802 ], [ 0.007896, 0.001802 ], [ 0.007896, 0.003433 ], [ 0.010514, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0078800", "Lat": "0.0000000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.001802 ], [ 0.010514, 0.000000 ], [ 0.007896, 0.000000 ], [ 0.007896, 0.001802 ], [ 0.010514, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105100", "Lat": "0.0018000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.003433 ], [ 0.013132, 0.001802 ], [ 0.010514, 0.001802 ], [ 0.010514, 0.003433 ], [ 0.013132, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.001802 ], [ 0.013132, 0.000000 ], [ 0.010514, 0.000000 ], [ 0.010514, 0.001802 ], [ 0.013132, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0131400", "Lat": "0.0018000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.003433 ], [ 0.015750, 0.001802 ], [ 0.013132, 0.001802 ], [ 0.013132, 0.003433 ], [ 0.015750, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0131400", "Lat": "0.0000000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.001802 ], [ 0.015750, 0.000000 ], [ 0.013132, 0.000000 ], [ 0.013132, 0.001802 ], [ 0.015750, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0157600", "Lat": "0.0018000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.003433 ], [ 0.018411, 0.001802 ], [ 0.015750, 0.001802 ], [ 0.015750, 0.003433 ], [ 0.018411, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.001802 ], [ 0.018411, 0.000000 ], [ 0.015750, 0.000000 ], [ 0.015750, 0.001802 ], [ 0.018411, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0183900", "Lat": "0.0018000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.003433 ], [ 0.021029, 0.001802 ], [ 0.018411, 0.001802 ], [ 0.018411, 0.003433 ], [ 0.021029, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183900", "Lat": "0.0000000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.001802 ], [ 0.021029, 0.000000 ], [ 0.018411, 0.000000 ], [ 0.018411, 0.001802 ], [ 0.021029, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0210200", "Lat": "0.0018000", "KPI": 484, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.003433 ], [ 0.023646, 0.001802 ], [ 0.021029, 0.001802 ], [ 0.021029, 0.003433 ], [ 0.023646, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.001802 ], [ 0.023646, 0.000000 ], [ 0.021029, 0.000000 ], [ 0.021029, 0.001802 ], [ 0.023646, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0236400", "Lat": "0.0018000", "KPI": 136, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.003433 ], [ 0.026264, 0.001802 ], [ 0.023646, 0.001802 ], [ 0.023646, 0.003433 ], [ 0.026264, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0000000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.001802 ], [ 0.026264, 0.000000 ], [ 0.023646, 0.000000 ], [ 0.023646, 0.001802 ], [ 0.026264, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0262700", "Lat": "0.0018000", "KPI": 489, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.003433 ], [ 0.028882, 0.001802 ], [ 0.026264, 0.001802 ], [ 0.026264, 0.003433 ], [ 0.028882, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.001802 ], [ 0.028882, 0.000000 ], [ 0.026264, 0.000000 ], [ 0.026264, 0.001802 ], [ 0.028882, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0289000", "Lat": "0.0018000", "KPI": 855, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.003433 ], [ 0.031543, 0.001802 ], [ 0.028882, 0.001802 ], [ 0.028882, 0.003433 ], [ 0.031543, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0289000", "Lat": "0.0000000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.001802 ], [ 0.031543, 0.000000 ], [ 0.028882, 0.000000 ], [ 0.028882, 0.001802 ], [ 0.031543, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0315200", "Lat": "0.0018000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.003433 ], [ 0.034161, 0.001802 ], [ 0.031500, 0.001802 ], [ 0.031500, 0.003433 ], [ 0.034161, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.001802 ], [ 0.034161, 0.000000 ], [ 0.031500, 0.000000 ], [ 0.031500, 0.001802 ], [ 0.034161, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0018000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.003433 ], [ 0.036778, 0.001802 ], [ 0.034161, 0.001802 ], [ 0.034161, 0.003433 ], [ 0.036778, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0000000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.001802 ], [ 0.036778, 0.000000 ], [ 0.034161, 0.000000 ], [ 0.034161, 0.001802 ], [ 0.036778, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0018000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.003433 ], [ 0.039396, 0.001802 ], [ 0.036778, 0.001802 ], [ 0.036778, 0.003433 ], [ 0.039396, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.001802 ], [ 0.039396, 0.000000 ], [ 0.036778, 0.000000 ], [ 0.036778, 0.001802 ], [ 0.039396, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394100", "Lat": "0.0018000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.003433 ], [ 0.042057, 0.001802 ], [ 0.039396, 0.001802 ], [ 0.039396, 0.003433 ], [ 0.042057, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394100", "Lat": "0.0000000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.001802 ], [ 0.042057, 0.000000 ], [ 0.039396, 0.000000 ], [ 0.039396, 0.001802 ], [ 0.042057, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0420300", "Lat": "0.0018000", "KPI": 331, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.003433 ], [ 0.044675, 0.001802 ], [ 0.042014, 0.001802 ], [ 0.042014, 0.003433 ], [ 0.044675, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.001802 ], [ 0.044675, 0.000000 ], [ 0.042014, 0.000000 ], [ 0.042014, 0.001802 ], [ 0.044675, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0446600", "Lat": "0.0018000", "KPI": 727, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.003433 ], [ 0.047293, 0.001802 ], [ 0.044675, 0.001802 ], [ 0.044675, 0.003433 ], [ 0.047293, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0446600", "Lat": "0.0000000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.001802 ], [ 0.047293, 0.000000 ], [ 0.044675, 0.000000 ], [ 0.044675, 0.001802 ], [ 0.047293, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0018000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.003433 ], [ 0.049911, 0.001802 ], [ 0.047293, 0.001802 ], [ 0.047293, 0.003433 ], [ 0.049911, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.001802 ], [ 0.049911, 0.000000 ], [ 0.047293, 0.000000 ], [ 0.047293, 0.001802 ], [ 0.049911, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0018000", "KPI": 452, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.003433 ], [ 0.052528, 0.001802 ], [ 0.049911, 0.001802 ], [ 0.049911, 0.003433 ], [ 0.052528, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0499100", "Lat": "0.0000000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.001802 ], [ 0.052528, 0.000000 ], [ 0.049911, 0.000000 ], [ 0.049911, 0.001802 ], [ 0.052528, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0525400", "Lat": "0.0018000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.003433 ], [ 0.055189, 0.001802 ], [ 0.052528, 0.001802 ], [ 0.052528, 0.003433 ], [ 0.055189, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.001802 ], [ 0.055189, 0.000000 ], [ 0.052528, 0.000000 ], [ 0.052528, 0.001802 ], [ 0.055189, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0551700", "Lat": "0.0018000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.003433 ], [ 0.057807, 0.001802 ], [ 0.055189, 0.001802 ], [ 0.055189, 0.003433 ], [ 0.057807, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0551700", "Lat": "0.0000000", "KPI": 65, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.001802 ], [ 0.057807, 0.000000 ], [ 0.055189, 0.000000 ], [ 0.055189, 0.001802 ], [ 0.057807, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577900", "Lat": "0.0018000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.003433 ], [ 0.060425, 0.001802 ], [ 0.057807, 0.001802 ], [ 0.057807, 0.003433 ], [ 0.060425, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.001802 ], [ 0.060425, 0.000000 ], [ 0.057807, 0.000000 ], [ 0.057807, 0.001802 ], [ 0.060425, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0604200", "Lat": "0.0018000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.003433 ], [ 0.063043, 0.001802 ], [ 0.060425, 0.001802 ], [ 0.060425, 0.003433 ], [ 0.063043, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0604200", "Lat": "0.0000000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.001802 ], [ 0.063043, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.001802 ], [ 0.063043, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0018000", "KPI": 873, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.003433 ], [ 0.065660, 0.001802 ], [ 0.063043, 0.001802 ], [ 0.063043, 0.003433 ], [ 0.065660, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0630500", "Lat": "0.0000000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.001802 ], [ 0.065660, 0.000000 ], [ 0.063043, 0.000000 ], [ 0.063043, 0.001802 ], [ 0.065660, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656800", "Lat": "0.0018000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.003433 ], [ 0.068321, 0.001802 ], [ 0.065660, 0.001802 ], [ 0.065660, 0.003433 ], [ 0.068321, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.001802 ], [ 0.068321, 0.000000 ], [ 0.065660, 0.000000 ], [ 0.065660, 0.001802 ], [ 0.068321, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0683000", "Lat": "0.0018000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.003433 ], [ 0.070939, 0.001802 ], [ 0.068321, 0.001802 ], [ 0.068321, 0.003433 ], [ 0.070939, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0683000", "Lat": "0.0000000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.001802 ], [ 0.070939, 0.000000 ], [ 0.068321, 0.000000 ], [ 0.068321, 0.001802 ], [ 0.070939, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0709300", "Lat": "0.0018000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.003433 ], [ 0.073557, 0.001802 ], [ 0.070939, 0.001802 ], [ 0.070939, 0.003433 ], [ 0.073557, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.001802 ], [ 0.073557, 0.000000 ], [ 0.070939, 0.000000 ], [ 0.070939, 0.001802 ], [ 0.073557, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0735600", "Lat": "0.0018000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.003433 ], [ 0.076175, 0.001802 ], [ 0.073557, 0.001802 ], [ 0.073557, 0.003433 ], [ 0.076175, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0735600", "Lat": "0.0000000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.001802 ], [ 0.076175, 0.000000 ], [ 0.073557, 0.000000 ], [ 0.073557, 0.001802 ], [ 0.076175, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0761800", "Lat": "0.0018000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.003433 ], [ 0.078793, 0.001802 ], [ 0.076175, 0.001802 ], [ 0.076175, 0.003433 ], [ 0.078793, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.001802 ], [ 0.078793, 0.000000 ], [ 0.076175, 0.000000 ], [ 0.076175, 0.001802 ], [ 0.078793, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0788100", "Lat": "0.0018000", "KPI": 886, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.003433 ], [ 0.081453, 0.001802 ], [ 0.078793, 0.001802 ], [ 0.078793, 0.003433 ], [ 0.081453, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0788100", "Lat": "0.0000000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.001802 ], [ 0.081453, 0.000000 ], [ 0.078793, 0.000000 ], [ 0.078793, 0.001802 ], [ 0.081453, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0018000", "KPI": 505, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.003433 ], [ 0.084071, 0.001802 ], [ 0.081453, 0.001802 ], [ 0.081453, 0.003433 ], [ 0.084071, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.001802 ], [ 0.084071, 0.000000 ], [ 0.081453, 0.000000 ], [ 0.081453, 0.001802 ], [ 0.084071, 0.001802 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1024, "y": 1023 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0558000", "KPI": 384, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.057592 ], [ 0.002618, 0.055790 ], [ 0.000000, 0.055790 ], [ 0.000000, 0.057592 ], [ 0.002618, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0026300", "Lat": "0.0558000", "KPI": 236, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.057592 ], [ 0.005279, 0.055790 ], [ 0.002618, 0.055790 ], [ 0.002618, 0.057592 ], [ 0.005279, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0052500", "Lat": "0.0558000", "KPI": 68, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.057592 ], [ 0.007896, 0.055790 ], [ 0.005236, 0.055790 ], [ 0.005236, 0.057592 ], [ 0.007896, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0078800", "Lat": "0.0558000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.057592 ], [ 0.010514, 0.055790 ], [ 0.007896, 0.055790 ], [ 0.007896, 0.057592 ], [ 0.010514, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0000000", "Lat": "0.0540000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.055790 ], [ 0.002618, 0.053987 ], [ 0.000000, 0.053987 ], [ 0.000000, 0.055790 ], [ 0.002618, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0000000", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.053987 ], [ 0.002618, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.053987 ], [ 0.002618, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0000000", "Lat": "0.0504000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.052185 ], [ 0.002618, 0.050383 ], [ 0.000000, 0.050383 ], [ 0.000000, 0.052185 ], [ 0.002618, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0000000", "Lat": "0.0486000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.050383 ], [ 0.002618, 0.048580 ], [ 0.000000, 0.048580 ], [ 0.000000, 0.050383 ], [ 0.002618, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0026300", "Lat": "0.0540000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.055790 ], [ 0.005279, 0.053987 ], [ 0.002618, 0.053987 ], [ 0.002618, 0.055790 ], [ 0.005279, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026300", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.053987 ], [ 0.005279, 0.052185 ], [ 0.002618, 0.052185 ], [ 0.002618, 0.053987 ], [ 0.005279, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0026300", "Lat": "0.0504000", "KPI": 364, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.052185 ], [ 0.005279, 0.050383 ], [ 0.002618, 0.050383 ], [ 0.002618, 0.052185 ], [ 0.005279, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0026300", "Lat": "0.0486000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.050383 ], [ 0.005279, 0.048580 ], [ 0.002618, 0.048580 ], [ 0.002618, 0.050383 ], [ 0.005279, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0000000", "Lat": "0.0468000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.048580 ], [ 0.002618, 0.046821 ], [ 0.000000, 0.046821 ], [ 0.000000, 0.048580 ], [ 0.002618, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0000000", "Lat": "0.0450000", "KPI": 408, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.046821 ], [ 0.002618, 0.045018 ], [ 0.000000, 0.045018 ], [ 0.000000, 0.046821 ], [ 0.002618, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0000000", "Lat": "0.0432000", "KPI": 317, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.045018 ], [ 0.002618, 0.043216 ], [ 0.000000, 0.043216 ], [ 0.000000, 0.045018 ], [ 0.002618, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0468000", "KPI": 182, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.048580 ], [ 0.005279, 0.046821 ], [ 0.002618, 0.046821 ], [ 0.002618, 0.048580 ], [ 0.005279, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0026300", "Lat": "0.0450000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.046821 ], [ 0.005279, 0.045018 ], [ 0.002618, 0.045018 ], [ 0.002618, 0.046821 ], [ 0.005279, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0026300", "Lat": "0.0432000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.045018 ], [ 0.005279, 0.043216 ], [ 0.002618, 0.043216 ], [ 0.002618, 0.045018 ], [ 0.005279, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0052500", "Lat": "0.0540000", "KPI": 844, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.055790 ], [ 0.007896, 0.053987 ], [ 0.005236, 0.053987 ], [ 0.005236, 0.055790 ], [ 0.007896, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0522000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.053987 ], [ 0.007896, 0.052185 ], [ 0.005236, 0.052185 ], [ 0.005236, 0.053987 ], [ 0.007896, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0052500", "Lat": "0.0504000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.052185 ], [ 0.007896, 0.050383 ], [ 0.005236, 0.050383 ], [ 0.005236, 0.052185 ], [ 0.007896, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0052500", "Lat": "0.0486000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.050383 ], [ 0.007896, 0.048580 ], [ 0.005236, 0.048580 ], [ 0.005236, 0.050383 ], [ 0.007896, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078800", "Lat": "0.0540000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.055790 ], [ 0.010514, 0.053987 ], [ 0.007896, 0.053987 ], [ 0.007896, 0.055790 ], [ 0.010514, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0078800", "Lat": "0.0522000", "KPI": 48, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.053987 ], [ 0.010514, 0.052185 ], [ 0.007896, 0.052185 ], [ 0.007896, 0.053987 ], [ 0.010514, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0078800", "Lat": "0.0504000", "KPI": 283, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.052185 ], [ 0.010514, 0.050383 ], [ 0.007896, 0.050383 ], [ 0.007896, 0.052185 ], [ 0.010514, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0078800", "Lat": "0.0486000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.050383 ], [ 0.010514, 0.048580 ], [ 0.007896, 0.048580 ], [ 0.007896, 0.050383 ], [ 0.010514, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0052500", "Lat": "0.0468000", "KPI": 585, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.048580 ], [ 0.007896, 0.046821 ], [ 0.005236, 0.046821 ], [ 0.005236, 0.048580 ], [ 0.007896, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0450000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.046821 ], [ 0.007896, 0.045018 ], [ 0.005236, 0.045018 ], [ 0.005236, 0.046821 ], [ 0.007896, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052500", "Lat": "0.0432000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.045018 ], [ 0.007896, 0.043216 ], [ 0.005236, 0.043216 ], [ 0.005236, 0.045018 ], [ 0.007896, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0078800", "Lat": "0.0468000", "KPI": 522, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.048580 ], [ 0.010514, 0.046821 ], [ 0.007896, 0.046821 ], [ 0.007896, 0.048580 ], [ 0.010514, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0078800", "Lat": "0.0450000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.046821 ], [ 0.010514, 0.045018 ], [ 0.007896, 0.045018 ], [ 0.007896, 0.046821 ], [ 0.010514, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0078800", "Lat": "0.0432000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.045018 ], [ 0.010514, 0.043216 ], [ 0.007896, 0.043216 ], [ 0.007896, 0.045018 ], [ 0.010514, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0105100", "Lat": "0.0558000", "KPI": 760, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.057592 ], [ 0.013132, 0.055790 ], [ 0.010514, 0.055790 ], [ 0.010514, 0.057592 ], [ 0.013132, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0131400", "Lat": "0.0558000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.057592 ], [ 0.015750, 0.055790 ], [ 0.013132, 0.055790 ], [ 0.013132, 0.057592 ], [ 0.015750, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0157600", "Lat": "0.0558000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.057592 ], [ 0.018411, 0.055790 ], [ 0.015750, 0.055790 ], [ 0.015750, 0.057592 ], [ 0.018411, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0183900", "Lat": "0.0558000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.057592 ], [ 0.021029, 0.055790 ], [ 0.018411, 0.055790 ], [ 0.018411, 0.057592 ], [ 0.021029, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.055790 ], [ 0.013132, 0.053987 ], [ 0.010514, 0.053987 ], [ 0.010514, 0.055790 ], [ 0.013132, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0105100", "Lat": "0.0522000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.053987 ], [ 0.013132, 0.052185 ], [ 0.010514, 0.052185 ], [ 0.010514, 0.053987 ], [ 0.013132, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0105100", "Lat": "0.0504000", "KPI": 637, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.052185 ], [ 0.013132, 0.050383 ], [ 0.010514, 0.050383 ], [ 0.010514, 0.052185 ], [ 0.013132, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0105100", "Lat": "0.0486000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.050383 ], [ 0.013132, 0.048580 ], [ 0.010514, 0.048580 ], [ 0.010514, 0.050383 ], [ 0.013132, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0131400", "Lat": "0.0540000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.055790 ], [ 0.015750, 0.053987 ], [ 0.013132, 0.053987 ], [ 0.013132, 0.055790 ], [ 0.015750, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0131400", "Lat": "0.0522000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.053987 ], [ 0.015750, 0.052185 ], [ 0.013132, 0.052185 ], [ 0.013132, 0.053987 ], [ 0.015750, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0131400", "Lat": "0.0504000", "KPI": 703, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.052185 ], [ 0.015750, 0.050383 ], [ 0.013132, 0.050383 ], [ 0.013132, 0.052185 ], [ 0.015750, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0131400", "Lat": "0.0486000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.050383 ], [ 0.015750, 0.048580 ], [ 0.013132, 0.048580 ], [ 0.013132, 0.050383 ], [ 0.015750, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105100", "Lat": "0.0468000", "KPI": 624, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.048580 ], [ 0.013132, 0.046821 ], [ 0.010514, 0.046821 ], [ 0.010514, 0.048580 ], [ 0.013132, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0105100", "Lat": "0.0450000", "KPI": 189, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.046821 ], [ 0.013132, 0.045018 ], [ 0.010514, 0.045018 ], [ 0.010514, 0.046821 ], [ 0.013132, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.045018 ], [ 0.013132, 0.043216 ], [ 0.010514, 0.043216 ], [ 0.010514, 0.045018 ], [ 0.013132, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0131400", "Lat": "0.0468000", "KPI": 212, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.048580 ], [ 0.015750, 0.046821 ], [ 0.013132, 0.046821 ], [ 0.013132, 0.048580 ], [ 0.015750, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0131400", "Lat": "0.0450000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.046821 ], [ 0.015750, 0.045018 ], [ 0.013132, 0.045018 ], [ 0.013132, 0.046821 ], [ 0.015750, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0131400", "Lat": "0.0432000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.045018 ], [ 0.015750, 0.043216 ], [ 0.013132, 0.043216 ], [ 0.013132, 0.045018 ], [ 0.015750, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0157600", "Lat": "0.0540000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.055790 ], [ 0.018411, 0.053987 ], [ 0.015750, 0.053987 ], [ 0.015750, 0.055790 ], [ 0.018411, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0157600", "Lat": "0.0522000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.053987 ], [ 0.018411, 0.052185 ], [ 0.015750, 0.052185 ], [ 0.015750, 0.053987 ], [ 0.018411, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0157600", "Lat": "0.0504000", "KPI": 747, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.052185 ], [ 0.018411, 0.050383 ], [ 0.015750, 0.050383 ], [ 0.015750, 0.052185 ], [ 0.018411, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0157600", "Lat": "0.0486000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.050383 ], [ 0.018411, 0.048580 ], [ 0.015750, 0.048580 ], [ 0.015750, 0.050383 ], [ 0.018411, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183900", "Lat": "0.0540000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.055790 ], [ 0.021029, 0.053987 ], [ 0.018411, 0.053987 ], [ 0.018411, 0.055790 ], [ 0.021029, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0183900", "Lat": "0.0522000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.053987 ], [ 0.021029, 0.052185 ], [ 0.018411, 0.052185 ], [ 0.018411, 0.053987 ], [ 0.021029, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0183900", "Lat": "0.0504000", "KPI": 816, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.052185 ], [ 0.021029, 0.050383 ], [ 0.018411, 0.050383 ], [ 0.018411, 0.052185 ], [ 0.021029, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0183900", "Lat": "0.0486000", "KPI": 880, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.050383 ], [ 0.021029, 0.048580 ], [ 0.018411, 0.048580 ], [ 0.018411, 0.050383 ], [ 0.021029, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0157600", "Lat": "0.0468000", "KPI": 318, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.048580 ], [ 0.018411, 0.046821 ], [ 0.015750, 0.046821 ], [ 0.015750, 0.048580 ], [ 0.018411, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0157600", "Lat": "0.0450000", "KPI": 689, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.046821 ], [ 0.018411, 0.045018 ], [ 0.015750, 0.045018 ], [ 0.015750, 0.046821 ], [ 0.018411, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0432000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.045018 ], [ 0.018411, 0.043216 ], [ 0.015750, 0.043216 ], [ 0.015750, 0.045018 ], [ 0.018411, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0183900", "Lat": "0.0468000", "KPI": 726, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.048580 ], [ 0.021029, 0.046821 ], [ 0.018411, 0.046821 ], [ 0.018411, 0.048580 ], [ 0.021029, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0183900", "Lat": "0.0450000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.046821 ], [ 0.021029, 0.045018 ], [ 0.018411, 0.045018 ], [ 0.018411, 0.046821 ], [ 0.021029, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0183900", "Lat": "0.0432000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.045018 ], [ 0.021029, 0.043216 ], [ 0.018411, 0.043216 ], [ 0.018411, 0.045018 ], [ 0.021029, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0210200", "Lat": "0.0558000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.057592 ], [ 0.023646, 0.055790 ], [ 0.021029, 0.055790 ], [ 0.021029, 0.057592 ], [ 0.023646, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0236400", "Lat": "0.0558000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.057592 ], [ 0.026264, 0.055790 ], [ 0.023646, 0.055790 ], [ 0.023646, 0.057592 ], [ 0.026264, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0262700", "Lat": "0.0558000", "KPI": 504, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.057592 ], [ 0.028882, 0.055790 ], [ 0.026264, 0.055790 ], [ 0.026264, 0.057592 ], [ 0.028882, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0289000", "Lat": "0.0558000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.057592 ], [ 0.031543, 0.055790 ], [ 0.028882, 0.055790 ], [ 0.028882, 0.057592 ], [ 0.031543, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0315200", "Lat": "0.0558000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.057592 ], [ 0.034161, 0.055790 ], [ 0.031500, 0.055790 ], [ 0.031500, 0.057592 ], [ 0.034161, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0210200", "Lat": "0.0540000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.055790 ], [ 0.023646, 0.053987 ], [ 0.021029, 0.053987 ], [ 0.021029, 0.055790 ], [ 0.023646, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0522000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.053987 ], [ 0.023646, 0.052185 ], [ 0.021029, 0.052185 ], [ 0.021029, 0.053987 ], [ 0.023646, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0210200", "Lat": "0.0504000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.052185 ], [ 0.023646, 0.050383 ], [ 0.021029, 0.050383 ], [ 0.021029, 0.052185 ], [ 0.023646, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0210200", "Lat": "0.0486000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.050383 ], [ 0.023646, 0.048580 ], [ 0.021029, 0.048580 ], [ 0.021029, 0.050383 ], [ 0.023646, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0236400", "Lat": "0.0540000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.055790 ], [ 0.026264, 0.053987 ], [ 0.023646, 0.053987 ], [ 0.023646, 0.055790 ], [ 0.026264, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0236400", "Lat": "0.0522000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.053987 ], [ 0.026264, 0.052185 ], [ 0.023646, 0.052185 ], [ 0.023646, 0.053987 ], [ 0.026264, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0236400", "Lat": "0.0504000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.052185 ], [ 0.026264, 0.050383 ], [ 0.023646, 0.050383 ], [ 0.023646, 0.052185 ], [ 0.026264, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0236400", "Lat": "0.0486000", "KPI": 726, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.050383 ], [ 0.026264, 0.048580 ], [ 0.023646, 0.048580 ], [ 0.023646, 0.050383 ], [ 0.026264, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0210200", "Lat": "0.0468000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.048580 ], [ 0.023646, 0.046821 ], [ 0.021029, 0.046821 ], [ 0.021029, 0.048580 ], [ 0.023646, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0210200", "Lat": "0.0450000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.046821 ], [ 0.023646, 0.045018 ], [ 0.021029, 0.045018 ], [ 0.021029, 0.046821 ], [ 0.023646, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.045018 ], [ 0.023646, 0.043216 ], [ 0.021029, 0.043216 ], [ 0.021029, 0.045018 ], [ 0.023646, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0236400", "Lat": "0.0468000", "KPI": 499, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.048580 ], [ 0.026264, 0.046821 ], [ 0.023646, 0.046821 ], [ 0.023646, 0.048580 ], [ 0.026264, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0236400", "Lat": "0.0450000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.046821 ], [ 0.026264, 0.045018 ], [ 0.023646, 0.045018 ], [ 0.023646, 0.046821 ], [ 0.026264, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0236400", "Lat": "0.0432000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.045018 ], [ 0.026264, 0.043216 ], [ 0.023646, 0.043216 ], [ 0.023646, 0.045018 ], [ 0.026264, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0262700", "Lat": "0.0540000", "KPI": 797, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.055790 ], [ 0.028882, 0.053987 ], [ 0.026264, 0.053987 ], [ 0.026264, 0.055790 ], [ 0.028882, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0262700", "Lat": "0.0522000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.053987 ], [ 0.028882, 0.052185 ], [ 0.026264, 0.052185 ], [ 0.026264, 0.053987 ], [ 0.028882, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0262700", "Lat": "0.0504000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.052185 ], [ 0.028882, 0.050383 ], [ 0.026264, 0.050383 ], [ 0.026264, 0.052185 ], [ 0.028882, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0262700", "Lat": "0.0486000", "KPI": 645, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.050383 ], [ 0.028882, 0.048580 ], [ 0.026264, 0.048580 ], [ 0.026264, 0.050383 ], [ 0.028882, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0289000", "Lat": "0.0540000", "KPI": 705, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.055790 ], [ 0.031543, 0.053987 ], [ 0.028882, 0.053987 ], [ 0.028882, 0.055790 ], [ 0.031543, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0289000", "Lat": "0.0522000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.053987 ], [ 0.031543, 0.052185 ], [ 0.028882, 0.052185 ], [ 0.028882, 0.053987 ], [ 0.031543, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0315200", "Lat": "0.0540000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.055790 ], [ 0.034161, 0.053987 ], [ 0.031500, 0.053987 ], [ 0.031500, 0.055790 ], [ 0.034161, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0315200", "Lat": "0.0522000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.053987 ], [ 0.034161, 0.052185 ], [ 0.031500, 0.052185 ], [ 0.031500, 0.053987 ], [ 0.034161, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0289000", "Lat": "0.0504000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.052185 ], [ 0.031543, 0.050383 ], [ 0.028882, 0.050383 ], [ 0.028882, 0.052185 ], [ 0.031543, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0289000", "Lat": "0.0486000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.050383 ], [ 0.031543, 0.048580 ], [ 0.028882, 0.048580 ], [ 0.028882, 0.050383 ], [ 0.031543, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315200", "Lat": "0.0504000", "KPI": 760, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.052185 ], [ 0.034161, 0.050383 ], [ 0.031500, 0.050383 ], [ 0.031500, 0.052185 ], [ 0.034161, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0315200", "Lat": "0.0486000", "KPI": 901, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.050383 ], [ 0.034161, 0.048580 ], [ 0.031500, 0.048580 ], [ 0.031500, 0.050383 ], [ 0.034161, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262700", "Lat": "0.0468000", "KPI": 449, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.048580 ], [ 0.028882, 0.046821 ], [ 0.026264, 0.046821 ], [ 0.026264, 0.048580 ], [ 0.028882, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0262700", "Lat": "0.0450000", "KPI": 693, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.046821 ], [ 0.028882, 0.045018 ], [ 0.026264, 0.045018 ], [ 0.026264, 0.046821 ], [ 0.028882, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0262700", "Lat": "0.0432000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.045018 ], [ 0.028882, 0.043216 ], [ 0.026264, 0.043216 ], [ 0.026264, 0.045018 ], [ 0.028882, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0289000", "Lat": "0.0468000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.048580 ], [ 0.031543, 0.046821 ], [ 0.028882, 0.046821 ], [ 0.028882, 0.048580 ], [ 0.031543, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0315200", "Lat": "0.0468000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.048580 ], [ 0.034161, 0.046821 ], [ 0.031500, 0.046821 ], [ 0.031500, 0.048580 ], [ 0.034161, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0289000", "Lat": "0.0450000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.046821 ], [ 0.031543, 0.045018 ], [ 0.028882, 0.045018 ], [ 0.028882, 0.046821 ], [ 0.031543, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0289000", "Lat": "0.0432000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.045018 ], [ 0.031543, 0.043216 ], [ 0.028882, 0.043216 ], [ 0.028882, 0.045018 ], [ 0.031543, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0315200", "Lat": "0.0450000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.046821 ], [ 0.034161, 0.045018 ], [ 0.031500, 0.045018 ], [ 0.031500, 0.046821 ], [ 0.034161, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0315200", "Lat": "0.0432000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.045018 ], [ 0.034161, 0.043216 ], [ 0.031500, 0.043216 ], [ 0.031500, 0.045018 ], [ 0.034161, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0341500", "Lat": "0.0558000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.057592 ], [ 0.036778, 0.055790 ], [ 0.034161, 0.055790 ], [ 0.034161, 0.057592 ], [ 0.036778, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0367800", "Lat": "0.0558000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.057592 ], [ 0.039396, 0.055790 ], [ 0.036778, 0.055790 ], [ 0.036778, 0.057592 ], [ 0.039396, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0394100", "Lat": "0.0558000", "KPI": 33, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.057592 ], [ 0.042057, 0.055790 ], [ 0.039396, 0.055790 ], [ 0.039396, 0.057592 ], [ 0.042057, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0420300", "Lat": "0.0558000", "KPI": 282, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.057592 ], [ 0.044675, 0.055790 ], [ 0.042014, 0.055790 ], [ 0.042014, 0.057592 ], [ 0.044675, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0341500", "Lat": "0.0540000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.055790 ], [ 0.036778, 0.053987 ], [ 0.034161, 0.053987 ], [ 0.034161, 0.055790 ], [ 0.036778, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0341500", "Lat": "0.0522000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.053987 ], [ 0.036778, 0.052185 ], [ 0.034161, 0.052185 ], [ 0.034161, 0.053987 ], [ 0.036778, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0341500", "Lat": "0.0504000", "KPI": 622, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.052185 ], [ 0.036778, 0.050383 ], [ 0.034161, 0.050383 ], [ 0.034161, 0.052185 ], [ 0.036778, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0341500", "Lat": "0.0486000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.050383 ], [ 0.036778, 0.048580 ], [ 0.034161, 0.048580 ], [ 0.034161, 0.050383 ], [ 0.036778, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0367800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.055790 ], [ 0.039396, 0.053987 ], [ 0.036778, 0.053987 ], [ 0.036778, 0.055790 ], [ 0.039396, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0367800", "Lat": "0.0522000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.053987 ], [ 0.039396, 0.052185 ], [ 0.036778, 0.052185 ], [ 0.036778, 0.053987 ], [ 0.039396, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0367800", "Lat": "0.0504000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.052185 ], [ 0.039396, 0.050383 ], [ 0.036778, 0.050383 ], [ 0.036778, 0.052185 ], [ 0.039396, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0367800", "Lat": "0.0486000", "KPI": 642, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.050383 ], [ 0.039396, 0.048580 ], [ 0.036778, 0.048580 ], [ 0.036778, 0.050383 ], [ 0.039396, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0341500", "Lat": "0.0468000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.048580 ], [ 0.036778, 0.046821 ], [ 0.034161, 0.046821 ], [ 0.034161, 0.048580 ], [ 0.036778, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0341500", "Lat": "0.0450000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.046821 ], [ 0.036778, 0.045018 ], [ 0.034161, 0.045018 ], [ 0.034161, 0.046821 ], [ 0.036778, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0341500", "Lat": "0.0432000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.045018 ], [ 0.036778, 0.043216 ], [ 0.034161, 0.043216 ], [ 0.034161, 0.045018 ], [ 0.036778, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0367800", "Lat": "0.0468000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.048580 ], [ 0.039396, 0.046821 ], [ 0.036778, 0.046821 ], [ 0.036778, 0.048580 ], [ 0.039396, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0450000", "KPI": 79, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.046821 ], [ 0.039396, 0.045018 ], [ 0.036778, 0.045018 ], [ 0.036778, 0.046821 ], [ 0.039396, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0367800", "Lat": "0.0432000", "KPI": 490, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.045018 ], [ 0.039396, 0.043216 ], [ 0.036778, 0.043216 ], [ 0.036778, 0.045018 ], [ 0.039396, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0394100", "Lat": "0.0540000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.055790 ], [ 0.042057, 0.053987 ], [ 0.039396, 0.053987 ], [ 0.039396, 0.055790 ], [ 0.042057, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0394100", "Lat": "0.0522000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.053987 ], [ 0.042057, 0.052185 ], [ 0.039396, 0.052185 ], [ 0.039396, 0.053987 ], [ 0.042057, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0394100", "Lat": "0.0504000", "KPI": 282, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.052185 ], [ 0.042057, 0.050383 ], [ 0.039396, 0.050383 ], [ 0.039396, 0.052185 ], [ 0.042057, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0394100", "Lat": "0.0486000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.050383 ], [ 0.042057, 0.048580 ], [ 0.039396, 0.048580 ], [ 0.039396, 0.050383 ], [ 0.042057, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0420300", "Lat": "0.0540000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.055790 ], [ 0.044675, 0.053987 ], [ 0.042014, 0.053987 ], [ 0.042014, 0.055790 ], [ 0.044675, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0420300", "Lat": "0.0522000", "KPI": 522, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.053987 ], [ 0.044675, 0.052185 ], [ 0.042014, 0.052185 ], [ 0.042014, 0.053987 ], [ 0.044675, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0420300", "Lat": "0.0504000", "KPI": 979, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.052185 ], [ 0.044675, 0.050383 ], [ 0.042014, 0.050383 ], [ 0.042014, 0.052185 ], [ 0.044675, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0420300", "Lat": "0.0486000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.050383 ], [ 0.044675, 0.048580 ], [ 0.042014, 0.048580 ], [ 0.042014, 0.050383 ], [ 0.044675, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0394100", "Lat": "0.0468000", "KPI": 155, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.048580 ], [ 0.042057, 0.046821 ], [ 0.039396, 0.046821 ], [ 0.039396, 0.048580 ], [ 0.042057, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0394100", "Lat": "0.0450000", "KPI": 966, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.046821 ], [ 0.042057, 0.045018 ], [ 0.039396, 0.045018 ], [ 0.039396, 0.046821 ], [ 0.042057, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0394100", "Lat": "0.0432000", "KPI": 653, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.045018 ], [ 0.042057, 0.043216 ], [ 0.039396, 0.043216 ], [ 0.039396, 0.045018 ], [ 0.042057, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0420300", "Lat": "0.0468000", "KPI": 296, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.048580 ], [ 0.044675, 0.046821 ], [ 0.042014, 0.046821 ], [ 0.042014, 0.048580 ], [ 0.044675, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420300", "Lat": "0.0450000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.046821 ], [ 0.044675, 0.045018 ], [ 0.042014, 0.045018 ], [ 0.042014, 0.046821 ], [ 0.044675, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.045018 ], [ 0.044675, 0.043216 ], [ 0.042014, 0.043216 ], [ 0.042014, 0.045018 ], [ 0.044675, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0414000", "KPI": 278, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.043216 ], [ 0.002618, 0.041413 ], [ 0.000000, 0.041413 ], [ 0.000000, 0.043216 ], [ 0.002618, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0000000", "Lat": "0.0396000", "KPI": 735, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.041413 ], [ 0.002618, 0.039611 ], [ 0.000000, 0.039611 ], [ 0.000000, 0.041413 ], [ 0.002618, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0000000", "Lat": "0.0378000", "KPI": 526, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.039611 ], [ 0.002618, 0.037808 ], [ 0.000000, 0.037808 ], [ 0.000000, 0.039611 ], [ 0.002618, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0414000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.043216 ], [ 0.005279, 0.041413 ], [ 0.002618, 0.041413 ], [ 0.002618, 0.043216 ], [ 0.005279, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0026300", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.041413 ], [ 0.005279, 0.039611 ], [ 0.002618, 0.039611 ], [ 0.002618, 0.041413 ], [ 0.005279, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0378000", "KPI": 611, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.039611 ], [ 0.005279, 0.037808 ], [ 0.002618, 0.037808 ], [ 0.002618, 0.039611 ], [ 0.005279, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0000000", "Lat": "0.0360000", "KPI": 525, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.037808 ], [ 0.002618, 0.036006 ], [ 0.000000, 0.036006 ], [ 0.000000, 0.037808 ], [ 0.002618, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0000000", "Lat": "0.0342000", "KPI": 13, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.036006 ], [ 0.002618, 0.034204 ], [ 0.000000, 0.034204 ], [ 0.000000, 0.036006 ], [ 0.002618, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0324000", "KPI": 229, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.034204 ], [ 0.002618, 0.032401 ], [ 0.000000, 0.032401 ], [ 0.000000, 0.034204 ], [ 0.002618, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0026300", "Lat": "0.0360000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.037808 ], [ 0.005279, 0.036006 ], [ 0.002618, 0.036006 ], [ 0.002618, 0.037808 ], [ 0.005279, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0026300", "Lat": "0.0342000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.036006 ], [ 0.005279, 0.034204 ], [ 0.002618, 0.034204 ], [ 0.002618, 0.036006 ], [ 0.005279, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0026300", "Lat": "0.0324000", "KPI": 769, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.034204 ], [ 0.005279, 0.032401 ], [ 0.002618, 0.032401 ], [ 0.002618, 0.034204 ], [ 0.005279, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052500", "Lat": "0.0414000", "KPI": 635, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.043216 ], [ 0.007896, 0.041413 ], [ 0.005236, 0.041413 ], [ 0.005236, 0.043216 ], [ 0.007896, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052500", "Lat": "0.0396000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.041413 ], [ 0.007896, 0.039611 ], [ 0.005236, 0.039611 ], [ 0.005236, 0.041413 ], [ 0.007896, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0378000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.039611 ], [ 0.007896, 0.037808 ], [ 0.005236, 0.037808 ], [ 0.005236, 0.039611 ], [ 0.007896, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078800", "Lat": "0.0414000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.043216 ], [ 0.010514, 0.041413 ], [ 0.007896, 0.041413 ], [ 0.007896, 0.043216 ], [ 0.010514, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0078800", "Lat": "0.0396000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.041413 ], [ 0.010514, 0.039611 ], [ 0.007896, 0.039611 ], [ 0.007896, 0.041413 ], [ 0.010514, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0078800", "Lat": "0.0378000", "KPI": 429, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.039611 ], [ 0.010514, 0.037808 ], [ 0.007896, 0.037808 ], [ 0.007896, 0.039611 ], [ 0.010514, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0052500", "Lat": "0.0360000", "KPI": 145, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.037808 ], [ 0.007896, 0.036006 ], [ 0.005236, 0.036006 ], [ 0.005236, 0.037808 ], [ 0.007896, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0052500", "Lat": "0.0342000", "KPI": 845, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.036006 ], [ 0.007896, 0.034204 ], [ 0.005236, 0.034204 ], [ 0.005236, 0.036006 ], [ 0.007896, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052500", "Lat": "0.0324000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.034204 ], [ 0.007896, 0.032401 ], [ 0.005236, 0.032401 ], [ 0.005236, 0.034204 ], [ 0.007896, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0078800", "Lat": "0.0360000", "KPI": 114, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.037808 ], [ 0.010514, 0.036006 ], [ 0.007896, 0.036006 ], [ 0.007896, 0.037808 ], [ 0.010514, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0078800", "Lat": "0.0342000", "KPI": 68, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.036006 ], [ 0.010514, 0.034204 ], [ 0.007896, 0.034204 ], [ 0.007896, 0.036006 ], [ 0.010514, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0078800", "Lat": "0.0324000", "KPI": 963, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.034204 ], [ 0.010514, 0.032401 ], [ 0.007896, 0.032401 ], [ 0.007896, 0.034204 ], [ 0.010514, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0000000", "Lat": "0.0306000", "KPI": 422, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.032401 ], [ 0.002618, 0.030599 ], [ 0.000000, 0.030599 ], [ 0.000000, 0.032401 ], [ 0.002618, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0000000", "Lat": "0.0288000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.030599 ], [ 0.002618, 0.028796 ], [ 0.000000, 0.028796 ], [ 0.000000, 0.030599 ], [ 0.002618, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0000000", "Lat": "0.0270000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.028796 ], [ 0.002618, 0.026994 ], [ 0.000000, 0.026994 ], [ 0.000000, 0.028796 ], [ 0.002618, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0026300", "Lat": "0.0306000", "KPI": 537, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.032401 ], [ 0.005279, 0.030599 ], [ 0.002618, 0.030599 ], [ 0.002618, 0.032401 ], [ 0.005279, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0026300", "Lat": "0.0288000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.030599 ], [ 0.005279, 0.028796 ], [ 0.002618, 0.028796 ], [ 0.002618, 0.030599 ], [ 0.005279, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0270000", "KPI": 888, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.028796 ], [ 0.005279, 0.026994 ], [ 0.002618, 0.026994 ], [ 0.002618, 0.028796 ], [ 0.005279, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0000000", "Lat": "0.0252000", "KPI": 193, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.026994 ], [ 0.002618, 0.025191 ], [ 0.000000, 0.025191 ], [ 0.000000, 0.026994 ], [ 0.002618, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0000000", "Lat": "0.0234000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.025191 ], [ 0.002618, 0.023389 ], [ 0.000000, 0.023389 ], [ 0.000000, 0.025191 ], [ 0.002618, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0000000", "Lat": "0.0216000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.023389 ], [ 0.002618, 0.021586 ], [ 0.000000, 0.021586 ], [ 0.000000, 0.023389 ], [ 0.002618, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0026300", "Lat": "0.0252000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.026994 ], [ 0.005279, 0.025191 ], [ 0.002618, 0.025191 ], [ 0.002618, 0.026994 ], [ 0.005279, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026300", "Lat": "0.0234000", "KPI": 221, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.025191 ], [ 0.005279, 0.023389 ], [ 0.002618, 0.023389 ], [ 0.002618, 0.025191 ], [ 0.005279, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0026300", "Lat": "0.0216000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.023389 ], [ 0.005279, 0.021586 ], [ 0.002618, 0.021586 ], [ 0.002618, 0.023389 ], [ 0.005279, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052500", "Lat": "0.0306000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.032401 ], [ 0.007896, 0.030599 ], [ 0.005236, 0.030599 ], [ 0.005236, 0.032401 ], [ 0.007896, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0052500", "Lat": "0.0288000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.030599 ], [ 0.007896, 0.028796 ], [ 0.005236, 0.028796 ], [ 0.005236, 0.030599 ], [ 0.007896, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0052500", "Lat": "0.0270000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.028796 ], [ 0.007896, 0.026994 ], [ 0.005236, 0.026994 ], [ 0.005236, 0.028796 ], [ 0.007896, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0078800", "Lat": "0.0306000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.032401 ], [ 0.010514, 0.030599 ], [ 0.007896, 0.030599 ], [ 0.007896, 0.032401 ], [ 0.010514, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0078800", "Lat": "0.0288000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.030599 ], [ 0.010514, 0.028796 ], [ 0.007896, 0.028796 ], [ 0.007896, 0.030599 ], [ 0.010514, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0078800", "Lat": "0.0270000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.028796 ], [ 0.010514, 0.026994 ], [ 0.007896, 0.026994 ], [ 0.007896, 0.028796 ], [ 0.010514, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0052500", "Lat": "0.0252000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.026994 ], [ 0.007896, 0.025191 ], [ 0.005236, 0.025191 ], [ 0.005236, 0.026994 ], [ 0.007896, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0052500", "Lat": "0.0234000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.025191 ], [ 0.007896, 0.023389 ], [ 0.005236, 0.023389 ], [ 0.005236, 0.025191 ], [ 0.007896, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0052500", "Lat": "0.0216000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.023389 ], [ 0.007896, 0.021586 ], [ 0.005236, 0.021586 ], [ 0.005236, 0.023389 ], [ 0.007896, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0078800", "Lat": "0.0252000", "KPI": 234, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.026994 ], [ 0.010514, 0.025191 ], [ 0.007896, 0.025191 ], [ 0.007896, 0.026994 ], [ 0.010514, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0078800", "Lat": "0.0234000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.025191 ], [ 0.010514, 0.023389 ], [ 0.007896, 0.023389 ], [ 0.007896, 0.025191 ], [ 0.010514, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0078800", "Lat": "0.0216000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.023389 ], [ 0.010514, 0.021586 ], [ 0.007896, 0.021586 ], [ 0.007896, 0.023389 ], [ 0.010514, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0105100", "Lat": "0.0414000", "KPI": 971, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.043216 ], [ 0.013132, 0.041413 ], [ 0.010514, 0.041413 ], [ 0.010514, 0.043216 ], [ 0.013132, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0105100", "Lat": "0.0396000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.041413 ], [ 0.013132, 0.039611 ], [ 0.010514, 0.039611 ], [ 0.010514, 0.041413 ], [ 0.013132, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0105100", "Lat": "0.0378000", "KPI": 921, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.039611 ], [ 0.013132, 0.037808 ], [ 0.010514, 0.037808 ], [ 0.010514, 0.039611 ], [ 0.013132, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0131400", "Lat": "0.0414000", "KPI": 383, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.043216 ], [ 0.015750, 0.041413 ], [ 0.013132, 0.041413 ], [ 0.013132, 0.043216 ], [ 0.015750, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0131400", "Lat": "0.0396000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.041413 ], [ 0.015750, 0.039611 ], [ 0.013132, 0.039611 ], [ 0.013132, 0.041413 ], [ 0.015750, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0131400", "Lat": "0.0378000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.039611 ], [ 0.015750, 0.037808 ], [ 0.013132, 0.037808 ], [ 0.013132, 0.039611 ], [ 0.015750, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0105100", "Lat": "0.0360000", "KPI": 921, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.037808 ], [ 0.013132, 0.036006 ], [ 0.010514, 0.036006 ], [ 0.010514, 0.037808 ], [ 0.013132, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0105100", "Lat": "0.0342000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.036006 ], [ 0.013132, 0.034204 ], [ 0.010514, 0.034204 ], [ 0.010514, 0.036006 ], [ 0.013132, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.034204 ], [ 0.013132, 0.032401 ], [ 0.010514, 0.032401 ], [ 0.010514, 0.034204 ], [ 0.013132, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0131400", "Lat": "0.0360000", "KPI": 804, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.037808 ], [ 0.015750, 0.036006 ], [ 0.013132, 0.036006 ], [ 0.013132, 0.037808 ], [ 0.015750, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0131400", "Lat": "0.0342000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.036006 ], [ 0.015750, 0.034204 ], [ 0.013132, 0.034204 ], [ 0.013132, 0.036006 ], [ 0.015750, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0131400", "Lat": "0.0324000", "KPI": 208, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.034204 ], [ 0.015750, 0.032401 ], [ 0.013132, 0.032401 ], [ 0.013132, 0.034204 ], [ 0.015750, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0157600", "Lat": "0.0414000", "KPI": 550, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.043216 ], [ 0.018411, 0.041413 ], [ 0.015750, 0.041413 ], [ 0.015750, 0.043216 ], [ 0.018411, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0157600", "Lat": "0.0396000", "KPI": 283, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.041413 ], [ 0.018411, 0.039611 ], [ 0.015750, 0.039611 ], [ 0.015750, 0.041413 ], [ 0.018411, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0378000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.039611 ], [ 0.018411, 0.037808 ], [ 0.015750, 0.037808 ], [ 0.015750, 0.039611 ], [ 0.018411, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0183900", "Lat": "0.0414000", "KPI": 252, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.043216 ], [ 0.021029, 0.041413 ], [ 0.018411, 0.041413 ], [ 0.018411, 0.043216 ], [ 0.021029, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0183900", "Lat": "0.0396000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.041413 ], [ 0.021029, 0.039611 ], [ 0.018411, 0.039611 ], [ 0.018411, 0.041413 ], [ 0.021029, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0183900", "Lat": "0.0378000", "KPI": 977, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.039611 ], [ 0.021029, 0.037808 ], [ 0.018411, 0.037808 ], [ 0.018411, 0.039611 ], [ 0.021029, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0157600", "Lat": "0.0360000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.037808 ], [ 0.018411, 0.036006 ], [ 0.015750, 0.036006 ], [ 0.015750, 0.037808 ], [ 0.018411, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0157600", "Lat": "0.0342000", "KPI": 196, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.036006 ], [ 0.018411, 0.034204 ], [ 0.015750, 0.034204 ], [ 0.015750, 0.036006 ], [ 0.018411, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0157600", "Lat": "0.0324000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.034204 ], [ 0.018411, 0.032401 ], [ 0.015750, 0.032401 ], [ 0.015750, 0.034204 ], [ 0.018411, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0183900", "Lat": "0.0360000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.037808 ], [ 0.021029, 0.036006 ], [ 0.018411, 0.036006 ], [ 0.018411, 0.037808 ], [ 0.021029, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0183900", "Lat": "0.0342000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.036006 ], [ 0.021029, 0.034204 ], [ 0.018411, 0.034204 ], [ 0.018411, 0.036006 ], [ 0.021029, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0183900", "Lat": "0.0324000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.034204 ], [ 0.021029, 0.032401 ], [ 0.018411, 0.032401 ], [ 0.018411, 0.034204 ], [ 0.021029, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0105100", "Lat": "0.0306000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.032401 ], [ 0.013132, 0.030599 ], [ 0.010514, 0.030599 ], [ 0.010514, 0.032401 ], [ 0.013132, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0105100", "Lat": "0.0288000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.030599 ], [ 0.013132, 0.028796 ], [ 0.010514, 0.028796 ], [ 0.010514, 0.030599 ], [ 0.013132, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0105100", "Lat": "0.0270000", "KPI": 937, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.028796 ], [ 0.013132, 0.026994 ], [ 0.010514, 0.026994 ], [ 0.010514, 0.028796 ], [ 0.013132, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0131400", "Lat": "0.0306000", "KPI": 155, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.032401 ], [ 0.015750, 0.030599 ], [ 0.013132, 0.030599 ], [ 0.013132, 0.032401 ], [ 0.015750, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0131400", "Lat": "0.0288000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.030599 ], [ 0.015750, 0.028796 ], [ 0.013132, 0.028796 ], [ 0.013132, 0.030599 ], [ 0.015750, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0131400", "Lat": "0.0270000", "KPI": 885, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.028796 ], [ 0.015750, 0.026994 ], [ 0.013132, 0.026994 ], [ 0.013132, 0.028796 ], [ 0.015750, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0105100", "Lat": "0.0252000", "KPI": 766, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.026994 ], [ 0.013132, 0.025191 ], [ 0.010514, 0.025191 ], [ 0.010514, 0.026994 ], [ 0.013132, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0105100", "Lat": "0.0234000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.025191 ], [ 0.013132, 0.023389 ], [ 0.010514, 0.023389 ], [ 0.010514, 0.025191 ], [ 0.013132, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.023389 ], [ 0.013132, 0.021586 ], [ 0.010514, 0.021586 ], [ 0.010514, 0.023389 ], [ 0.013132, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0131400", "Lat": "0.0252000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.026994 ], [ 0.015750, 0.025191 ], [ 0.013132, 0.025191 ], [ 0.013132, 0.026994 ], [ 0.015750, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0131400", "Lat": "0.0234000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.025191 ], [ 0.015750, 0.023389 ], [ 0.013132, 0.023389 ], [ 0.013132, 0.025191 ], [ 0.015750, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0131400", "Lat": "0.0216000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.023389 ], [ 0.015750, 0.021586 ], [ 0.013132, 0.021586 ], [ 0.013132, 0.023389 ], [ 0.015750, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0157600", "Lat": "0.0306000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.032401 ], [ 0.018411, 0.030599 ], [ 0.015750, 0.030599 ], [ 0.015750, 0.032401 ], [ 0.018411, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0157600", "Lat": "0.0288000", "KPI": 614, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.030599 ], [ 0.018411, 0.028796 ], [ 0.015750, 0.028796 ], [ 0.015750, 0.030599 ], [ 0.018411, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157600", "Lat": "0.0270000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.028796 ], [ 0.018411, 0.026994 ], [ 0.015750, 0.026994 ], [ 0.015750, 0.028796 ], [ 0.018411, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0183900", "Lat": "0.0306000", "KPI": 140, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.032401 ], [ 0.021029, 0.030599 ], [ 0.018411, 0.030599 ], [ 0.018411, 0.032401 ], [ 0.021029, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0183900", "Lat": "0.0288000", "KPI": 602, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.030599 ], [ 0.021029, 0.028796 ], [ 0.018411, 0.028796 ], [ 0.018411, 0.030599 ], [ 0.021029, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0183900", "Lat": "0.0270000", "KPI": 387, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.028796 ], [ 0.021029, 0.026994 ], [ 0.018411, 0.026994 ], [ 0.018411, 0.028796 ], [ 0.021029, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0157600", "Lat": "0.0252000", "KPI": 643, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.026994 ], [ 0.018411, 0.025191 ], [ 0.015750, 0.025191 ], [ 0.015750, 0.026994 ], [ 0.018411, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0157600", "Lat": "0.0234000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.025191 ], [ 0.018411, 0.023389 ], [ 0.015750, 0.023389 ], [ 0.015750, 0.025191 ], [ 0.018411, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0157600", "Lat": "0.0216000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.023389 ], [ 0.018411, 0.021586 ], [ 0.015750, 0.021586 ], [ 0.015750, 0.023389 ], [ 0.018411, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0183900", "Lat": "0.0252000", "KPI": 156, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.026994 ], [ 0.021029, 0.025191 ], [ 0.018411, 0.025191 ], [ 0.018411, 0.026994 ], [ 0.021029, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183900", "Lat": "0.0234000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.025191 ], [ 0.021029, 0.023389 ], [ 0.018411, 0.023389 ], [ 0.018411, 0.025191 ], [ 0.021029, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183900", "Lat": "0.0216000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.023389 ], [ 0.021029, 0.021586 ], [ 0.018411, 0.021586 ], [ 0.018411, 0.023389 ], [ 0.021029, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0000000", "Lat": "0.0198000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.021586 ], [ 0.002618, 0.019784 ], [ 0.000000, 0.019784 ], [ 0.000000, 0.021586 ], [ 0.002618, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0000000", "Lat": "0.0180000", "KPI": 224, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.019784 ], [ 0.002618, 0.017982 ], [ 0.000000, 0.017982 ], [ 0.000000, 0.019784 ], [ 0.002618, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0000000", "Lat": "0.0162000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.017982 ], [ 0.002618, 0.016179 ], [ 0.000000, 0.016179 ], [ 0.000000, 0.017982 ], [ 0.002618, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0026300", "Lat": "0.0198000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.021586 ], [ 0.005279, 0.019784 ], [ 0.002618, 0.019784 ], [ 0.002618, 0.021586 ], [ 0.005279, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0026300", "Lat": "0.0180000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.019784 ], [ 0.005279, 0.017982 ], [ 0.002618, 0.017982 ], [ 0.002618, 0.019784 ], [ 0.005279, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0026300", "Lat": "0.0162000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.017982 ], [ 0.005279, 0.016179 ], [ 0.002618, 0.016179 ], [ 0.002618, 0.017982 ], [ 0.005279, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0000000", "Lat": "0.0144000", "KPI": 723, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.016179 ], [ 0.002618, 0.014420 ], [ 0.000000, 0.014420 ], [ 0.000000, 0.016179 ], [ 0.002618, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0000000", "Lat": "0.0126000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.014420 ], [ 0.002618, 0.012617 ], [ 0.000000, 0.012617 ], [ 0.000000, 0.014420 ], [ 0.002618, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0000000", "Lat": "0.0108000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.012617 ], [ 0.002618, 0.010815 ], [ 0.000000, 0.010815 ], [ 0.000000, 0.012617 ], [ 0.002618, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0026300", "Lat": "0.0144000", "KPI": 861, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.016179 ], [ 0.005279, 0.014420 ], [ 0.002618, 0.014420 ], [ 0.002618, 0.016179 ], [ 0.005279, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0026300", "Lat": "0.0126000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.014420 ], [ 0.005279, 0.012617 ], [ 0.002618, 0.012617 ], [ 0.002618, 0.014420 ], [ 0.005279, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0026300", "Lat": "0.0108000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.012617 ], [ 0.005279, 0.010815 ], [ 0.002618, 0.010815 ], [ 0.002618, 0.012617 ], [ 0.005279, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0052500", "Lat": "0.0198000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.021586 ], [ 0.007896, 0.019784 ], [ 0.005236, 0.019784 ], [ 0.005236, 0.021586 ], [ 0.007896, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0052500", "Lat": "0.0180000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.019784 ], [ 0.007896, 0.017982 ], [ 0.005236, 0.017982 ], [ 0.005236, 0.019784 ], [ 0.007896, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0052500", "Lat": "0.0162000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.017982 ], [ 0.007896, 0.016179 ], [ 0.005236, 0.016179 ], [ 0.005236, 0.017982 ], [ 0.007896, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0078800", "Lat": "0.0198000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.021586 ], [ 0.010514, 0.019784 ], [ 0.007896, 0.019784 ], [ 0.007896, 0.021586 ], [ 0.010514, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0078800", "Lat": "0.0180000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.019784 ], [ 0.010514, 0.017982 ], [ 0.007896, 0.017982 ], [ 0.007896, 0.019784 ], [ 0.010514, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0078800", "Lat": "0.0162000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.017982 ], [ 0.010514, 0.016179 ], [ 0.007896, 0.016179 ], [ 0.007896, 0.017982 ], [ 0.010514, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0052500", "Lat": "0.0144000", "KPI": 661, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.016179 ], [ 0.007896, 0.014420 ], [ 0.005236, 0.014420 ], [ 0.005236, 0.016179 ], [ 0.007896, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0126000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.014420 ], [ 0.007896, 0.012617 ], [ 0.005236, 0.012617 ], [ 0.005236, 0.014420 ], [ 0.007896, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.012617 ], [ 0.007896, 0.010815 ], [ 0.005236, 0.010815 ], [ 0.005236, 0.012617 ], [ 0.007896, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0078800", "Lat": "0.0144000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.016179 ], [ 0.010514, 0.014420 ], [ 0.007896, 0.014420 ], [ 0.007896, 0.016179 ], [ 0.010514, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0078800", "Lat": "0.0126000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.014420 ], [ 0.010514, 0.012617 ], [ 0.007896, 0.012617 ], [ 0.007896, 0.014420 ], [ 0.010514, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0078800", "Lat": "0.0108000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.012617 ], [ 0.010514, 0.010815 ], [ 0.007896, 0.010815 ], [ 0.007896, 0.012617 ], [ 0.010514, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0000000", "Lat": "0.0090000", "KPI": 683, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.010815 ], [ 0.002618, 0.009012 ], [ 0.000000, 0.009012 ], [ 0.000000, 0.010815 ], [ 0.002618, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0000000", "Lat": "0.0072000", "KPI": 125, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.009012 ], [ 0.002618, 0.007210 ], [ 0.000000, 0.007210 ], [ 0.000000, 0.009012 ], [ 0.002618, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0000000", "Lat": "0.0054000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.007210 ], [ 0.002618, 0.005407 ], [ 0.000000, 0.005407 ], [ 0.000000, 0.007210 ], [ 0.002618, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0026300", "Lat": "0.0090000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.010815 ], [ 0.005279, 0.009012 ], [ 0.002618, 0.009012 ], [ 0.002618, 0.010815 ], [ 0.005279, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0072000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.009012 ], [ 0.005279, 0.007210 ], [ 0.002618, 0.007210 ], [ 0.002618, 0.009012 ], [ 0.005279, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.007210 ], [ 0.005279, 0.005407 ], [ 0.002618, 0.005407 ], [ 0.002618, 0.007210 ], [ 0.005279, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0000000", "Lat": "0.0036000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.005407 ], [ 0.002618, 0.003605 ], [ 0.000000, 0.003605 ], [ 0.000000, 0.005407 ], [ 0.002618, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003605 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003605 ], [ 0.002618, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0026300", "Lat": "0.0036000", "KPI": 827, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.005407 ], [ 0.005279, 0.003605 ], [ 0.002618, 0.003605 ], [ 0.002618, 0.005407 ], [ 0.005279, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.003605 ], [ 0.005279, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003605 ], [ 0.005279, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.001802 ], [ 0.005279, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.005279, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0052500", "Lat": "0.0090000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.010815 ], [ 0.007896, 0.009012 ], [ 0.005236, 0.009012 ], [ 0.005236, 0.010815 ], [ 0.007896, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0052500", "Lat": "0.0072000", "KPI": 759, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.009012 ], [ 0.007896, 0.007210 ], [ 0.005236, 0.007210 ], [ 0.005236, 0.009012 ], [ 0.007896, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.007210 ], [ 0.007896, 0.005407 ], [ 0.005236, 0.005407 ], [ 0.005236, 0.007210 ], [ 0.007896, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0078800", "Lat": "0.0090000", "KPI": 239, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.010815 ], [ 0.010514, 0.009012 ], [ 0.007896, 0.009012 ], [ 0.007896, 0.010815 ], [ 0.010514, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0078800", "Lat": "0.0072000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.009012 ], [ 0.010514, 0.007210 ], [ 0.007896, 0.007210 ], [ 0.007896, 0.009012 ], [ 0.010514, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078800", "Lat": "0.0054000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.007210 ], [ 0.010514, 0.005407 ], [ 0.007896, 0.005407 ], [ 0.007896, 0.007210 ], [ 0.010514, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0052500", "Lat": "0.0036000", "KPI": 50, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.005407 ], [ 0.007896, 0.003605 ], [ 0.005236, 0.003605 ], [ 0.005236, 0.005407 ], [ 0.007896, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.003605 ], [ 0.007896, 0.001802 ], [ 0.005236, 0.001802 ], [ 0.005236, 0.003605 ], [ 0.007896, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.001802 ], [ 0.007896, 0.000000 ], [ 0.005236, 0.000000 ], [ 0.005236, 0.001802 ], [ 0.007896, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0078800", "Lat": "0.0036000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.005407 ], [ 0.010514, 0.003605 ], [ 0.007896, 0.003605 ], [ 0.007896, 0.005407 ], [ 0.010514, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0078800", "Lat": "0.0018000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.003605 ], [ 0.010514, 0.001802 ], [ 0.007896, 0.001802 ], [ 0.007896, 0.003605 ], [ 0.010514, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0078800", "Lat": "0.0000000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.001802 ], [ 0.010514, 0.000000 ], [ 0.007896, 0.000000 ], [ 0.007896, 0.001802 ], [ 0.010514, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0105100", "Lat": "0.0198000", "KPI": 889, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.021586 ], [ 0.013132, 0.019784 ], [ 0.010514, 0.019784 ], [ 0.010514, 0.021586 ], [ 0.013132, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0105100", "Lat": "0.0180000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.019784 ], [ 0.013132, 0.017982 ], [ 0.010514, 0.017982 ], [ 0.010514, 0.019784 ], [ 0.013132, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105100", "Lat": "0.0162000", "KPI": 178, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.017982 ], [ 0.013132, 0.016179 ], [ 0.010514, 0.016179 ], [ 0.010514, 0.017982 ], [ 0.013132, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0131400", "Lat": "0.0198000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.021586 ], [ 0.015750, 0.019784 ], [ 0.013132, 0.019784 ], [ 0.013132, 0.021586 ], [ 0.015750, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0131400", "Lat": "0.0180000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.019784 ], [ 0.015750, 0.017982 ], [ 0.013132, 0.017982 ], [ 0.013132, 0.019784 ], [ 0.015750, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0131400", "Lat": "0.0162000", "KPI": 412, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.017982 ], [ 0.015750, 0.016179 ], [ 0.013132, 0.016179 ], [ 0.013132, 0.017982 ], [ 0.015750, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0105100", "Lat": "0.0144000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.016179 ], [ 0.013132, 0.014420 ], [ 0.010514, 0.014420 ], [ 0.010514, 0.016179 ], [ 0.013132, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0105100", "Lat": "0.0126000", "KPI": 850, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.014420 ], [ 0.013132, 0.012617 ], [ 0.010514, 0.012617 ], [ 0.010514, 0.014420 ], [ 0.013132, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.012617 ], [ 0.013132, 0.010815 ], [ 0.010514, 0.010815 ], [ 0.010514, 0.012617 ], [ 0.013132, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0131400", "Lat": "0.0144000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.016179 ], [ 0.015750, 0.014420 ], [ 0.013132, 0.014420 ], [ 0.013132, 0.016179 ], [ 0.015750, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0131400", "Lat": "0.0126000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.014420 ], [ 0.015750, 0.012617 ], [ 0.013132, 0.012617 ], [ 0.013132, 0.014420 ], [ 0.015750, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0131400", "Lat": "0.0108000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.012617 ], [ 0.015750, 0.010815 ], [ 0.013132, 0.010815 ], [ 0.013132, 0.012617 ], [ 0.015750, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0157600", "Lat": "0.0198000", "KPI": 674, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.021586 ], [ 0.018411, 0.019784 ], [ 0.015750, 0.019784 ], [ 0.015750, 0.021586 ], [ 0.018411, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0157600", "Lat": "0.0180000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.019784 ], [ 0.018411, 0.017982 ], [ 0.015750, 0.017982 ], [ 0.015750, 0.019784 ], [ 0.018411, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0157600", "Lat": "0.0162000", "KPI": 75, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.017982 ], [ 0.018411, 0.016179 ], [ 0.015750, 0.016179 ], [ 0.015750, 0.017982 ], [ 0.018411, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0183900", "Lat": "0.0198000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.021586 ], [ 0.021029, 0.019784 ], [ 0.018411, 0.019784 ], [ 0.018411, 0.021586 ], [ 0.021029, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0183900", "Lat": "0.0180000", "KPI": 241, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.019784 ], [ 0.021029, 0.017982 ], [ 0.018411, 0.017982 ], [ 0.018411, 0.019784 ], [ 0.021029, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0183900", "Lat": "0.0162000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.017982 ], [ 0.021029, 0.016179 ], [ 0.018411, 0.016179 ], [ 0.018411, 0.017982 ], [ 0.021029, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0157600", "Lat": "0.0144000", "KPI": 954, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.016179 ], [ 0.018411, 0.014420 ], [ 0.015750, 0.014420 ], [ 0.015750, 0.016179 ], [ 0.018411, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0157600", "Lat": "0.0126000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.014420 ], [ 0.018411, 0.012617 ], [ 0.015750, 0.012617 ], [ 0.015750, 0.014420 ], [ 0.018411, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157600", "Lat": "0.0108000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.012617 ], [ 0.018411, 0.010815 ], [ 0.015750, 0.010815 ], [ 0.015750, 0.012617 ], [ 0.018411, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0183900", "Lat": "0.0144000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.016179 ], [ 0.021029, 0.014420 ], [ 0.018411, 0.014420 ], [ 0.018411, 0.016179 ], [ 0.021029, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0183900", "Lat": "0.0126000", "KPI": 952, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.014420 ], [ 0.021029, 0.012617 ], [ 0.018411, 0.012617 ], [ 0.018411, 0.014420 ], [ 0.021029, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0183900", "Lat": "0.0108000", "KPI": 397, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.012617 ], [ 0.021029, 0.010815 ], [ 0.018411, 0.010815 ], [ 0.018411, 0.012617 ], [ 0.021029, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0105100", "Lat": "0.0090000", "KPI": 177, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.010815 ], [ 0.013132, 0.009012 ], [ 0.010514, 0.009012 ], [ 0.010514, 0.010815 ], [ 0.013132, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0072000", "KPI": 628, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.009012 ], [ 0.013132, 0.007210 ], [ 0.010514, 0.007210 ], [ 0.010514, 0.009012 ], [ 0.013132, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.007210 ], [ 0.013132, 0.005407 ], [ 0.010514, 0.005407 ], [ 0.010514, 0.007210 ], [ 0.013132, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0131400", "Lat": "0.0090000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.010815 ], [ 0.015750, 0.009012 ], [ 0.013132, 0.009012 ], [ 0.013132, 0.010815 ], [ 0.015750, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0131400", "Lat": "0.0072000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.009012 ], [ 0.015750, 0.007210 ], [ 0.013132, 0.007210 ], [ 0.013132, 0.009012 ], [ 0.015750, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0131400", "Lat": "0.0054000", "KPI": 372, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.007210 ], [ 0.015750, 0.005407 ], [ 0.013132, 0.005407 ], [ 0.013132, 0.007210 ], [ 0.015750, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0105100", "Lat": "0.0036000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.005407 ], [ 0.013132, 0.003605 ], [ 0.010514, 0.003605 ], [ 0.010514, 0.005407 ], [ 0.013132, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105100", "Lat": "0.0018000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.003605 ], [ 0.013132, 0.001802 ], [ 0.010514, 0.001802 ], [ 0.010514, 0.003605 ], [ 0.013132, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.001802 ], [ 0.013132, 0.000000 ], [ 0.010514, 0.000000 ], [ 0.010514, 0.001802 ], [ 0.013132, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0131400", "Lat": "0.0036000", "KPI": 892, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.005407 ], [ 0.015750, 0.003605 ], [ 0.013132, 0.003605 ], [ 0.013132, 0.005407 ], [ 0.015750, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0131400", "Lat": "0.0018000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.003605 ], [ 0.015750, 0.001802 ], [ 0.013132, 0.001802 ], [ 0.013132, 0.003605 ], [ 0.015750, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0131400", "Lat": "0.0000000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.001802 ], [ 0.015750, 0.000000 ], [ 0.013132, 0.000000 ], [ 0.013132, 0.001802 ], [ 0.015750, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0157600", "Lat": "0.0090000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.010815 ], [ 0.018411, 0.009012 ], [ 0.015750, 0.009012 ], [ 0.015750, 0.010815 ], [ 0.018411, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157600", "Lat": "0.0072000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.009012 ], [ 0.018411, 0.007210 ], [ 0.015750, 0.007210 ], [ 0.015750, 0.009012 ], [ 0.018411, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0157600", "Lat": "0.0054000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.007210 ], [ 0.018411, 0.005407 ], [ 0.015750, 0.005407 ], [ 0.015750, 0.007210 ], [ 0.018411, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183900", "Lat": "0.0090000", "KPI": 13, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.010815 ], [ 0.021029, 0.009012 ], [ 0.018411, 0.009012 ], [ 0.018411, 0.010815 ], [ 0.021029, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0183900", "Lat": "0.0072000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.009012 ], [ 0.021029, 0.007210 ], [ 0.018411, 0.007210 ], [ 0.018411, 0.009012 ], [ 0.021029, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0183900", "Lat": "0.0054000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.007210 ], [ 0.021029, 0.005407 ], [ 0.018411, 0.005407 ], [ 0.018411, 0.007210 ], [ 0.021029, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0157600", "Lat": "0.0036000", "KPI": 433, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.005407 ], [ 0.018411, 0.003605 ], [ 0.015750, 0.003605 ], [ 0.015750, 0.005407 ], [ 0.018411, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0157600", "Lat": "0.0018000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.003605 ], [ 0.018411, 0.001802 ], [ 0.015750, 0.001802 ], [ 0.015750, 0.003605 ], [ 0.018411, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.001802 ], [ 0.018411, 0.000000 ], [ 0.015750, 0.000000 ], [ 0.015750, 0.001802 ], [ 0.018411, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0183900", "Lat": "0.0036000", "KPI": 203, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.005407 ], [ 0.021029, 0.003605 ], [ 0.018411, 0.003605 ], [ 0.018411, 0.005407 ], [ 0.021029, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0183900", "Lat": "0.0018000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.003605 ], [ 0.021029, 0.001802 ], [ 0.018411, 0.001802 ], [ 0.018411, 0.003605 ], [ 0.021029, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183900", "Lat": "0.0000000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.001802 ], [ 0.021029, 0.000000 ], [ 0.018411, 0.000000 ], [ 0.018411, 0.001802 ], [ 0.021029, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0210200", "Lat": "0.0414000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.043216 ], [ 0.023646, 0.041413 ], [ 0.021029, 0.041413 ], [ 0.021029, 0.043216 ], [ 0.023646, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0210200", "Lat": "0.0396000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.041413 ], [ 0.023646, 0.039611 ], [ 0.021029, 0.039611 ], [ 0.021029, 0.041413 ], [ 0.023646, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0210200", "Lat": "0.0378000", "KPI": 690, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.039611 ], [ 0.023646, 0.037808 ], [ 0.021029, 0.037808 ], [ 0.021029, 0.039611 ], [ 0.023646, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0236400", "Lat": "0.0414000", "KPI": 466, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.043216 ], [ 0.026264, 0.041413 ], [ 0.023646, 0.041413 ], [ 0.023646, 0.043216 ], [ 0.026264, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0236400", "Lat": "0.0396000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.041413 ], [ 0.026264, 0.039611 ], [ 0.023646, 0.039611 ], [ 0.023646, 0.041413 ], [ 0.026264, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0236400", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.039611 ], [ 0.026264, 0.037808 ], [ 0.023646, 0.037808 ], [ 0.023646, 0.039611 ], [ 0.026264, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0210200", "Lat": "0.0360000", "KPI": 375, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.037808 ], [ 0.023646, 0.036006 ], [ 0.021029, 0.036006 ], [ 0.021029, 0.037808 ], [ 0.023646, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0210200", "Lat": "0.0342000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.036006 ], [ 0.023646, 0.034204 ], [ 0.021029, 0.034204 ], [ 0.021029, 0.036006 ], [ 0.023646, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0324000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.034204 ], [ 0.023646, 0.032401 ], [ 0.021029, 0.032401 ], [ 0.021029, 0.034204 ], [ 0.023646, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0236400", "Lat": "0.0360000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.037808 ], [ 0.026264, 0.036006 ], [ 0.023646, 0.036006 ], [ 0.023646, 0.037808 ], [ 0.026264, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0342000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.036006 ], [ 0.026264, 0.034204 ], [ 0.023646, 0.034204 ], [ 0.023646, 0.036006 ], [ 0.026264, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0236400", "Lat": "0.0324000", "KPI": 884, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.034204 ], [ 0.026264, 0.032401 ], [ 0.023646, 0.032401 ], [ 0.023646, 0.034204 ], [ 0.026264, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0262700", "Lat": "0.0414000", "KPI": 210, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.043216 ], [ 0.028882, 0.041413 ], [ 0.026264, 0.041413 ], [ 0.026264, 0.043216 ], [ 0.028882, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0262700", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.041413 ], [ 0.028882, 0.039611 ], [ 0.026264, 0.039611 ], [ 0.026264, 0.041413 ], [ 0.028882, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262700", "Lat": "0.0378000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.039611 ], [ 0.028882, 0.037808 ], [ 0.026264, 0.037808 ], [ 0.026264, 0.039611 ], [ 0.028882, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0289000", "Lat": "0.0414000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.043216 ], [ 0.031543, 0.041413 ], [ 0.028882, 0.041413 ], [ 0.028882, 0.043216 ], [ 0.031543, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0315200", "Lat": "0.0414000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.043216 ], [ 0.034161, 0.041413 ], [ 0.031500, 0.041413 ], [ 0.031500, 0.043216 ], [ 0.034161, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0289000", "Lat": "0.0396000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.041413 ], [ 0.031543, 0.039611 ], [ 0.028882, 0.039611 ], [ 0.028882, 0.041413 ], [ 0.031543, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0289000", "Lat": "0.0378000", "KPI": 828, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.039611 ], [ 0.031543, 0.037808 ], [ 0.028882, 0.037808 ], [ 0.028882, 0.039611 ], [ 0.031543, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0315200", "Lat": "0.0396000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.041413 ], [ 0.034161, 0.039611 ], [ 0.031500, 0.039611 ], [ 0.031500, 0.041413 ], [ 0.034161, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0315200", "Lat": "0.0378000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.039611 ], [ 0.034161, 0.037808 ], [ 0.031500, 0.037808 ], [ 0.031500, 0.039611 ], [ 0.034161, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0262700", "Lat": "0.0360000", "KPI": 939, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.037808 ], [ 0.028882, 0.036006 ], [ 0.026264, 0.036006 ], [ 0.026264, 0.037808 ], [ 0.028882, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0262700", "Lat": "0.0342000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.036006 ], [ 0.028882, 0.034204 ], [ 0.026264, 0.034204 ], [ 0.026264, 0.036006 ], [ 0.028882, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0262700", "Lat": "0.0324000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.034204 ], [ 0.028882, 0.032401 ], [ 0.026264, 0.032401 ], [ 0.026264, 0.034204 ], [ 0.028882, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0289000", "Lat": "0.0360000", "KPI": 48, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.037808 ], [ 0.031543, 0.036006 ], [ 0.028882, 0.036006 ], [ 0.028882, 0.037808 ], [ 0.031543, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0315200", "Lat": "0.0360000", "KPI": 433, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.037808 ], [ 0.034161, 0.036006 ], [ 0.031500, 0.036006 ], [ 0.031500, 0.037808 ], [ 0.034161, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0289000", "Lat": "0.0342000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.036006 ], [ 0.031543, 0.034204 ], [ 0.028882, 0.034204 ], [ 0.028882, 0.036006 ], [ 0.031543, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0289000", "Lat": "0.0324000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.034204 ], [ 0.031543, 0.032401 ], [ 0.028882, 0.032401 ], [ 0.028882, 0.034204 ], [ 0.031543, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315200", "Lat": "0.0342000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.036006 ], [ 0.034161, 0.034204 ], [ 0.031500, 0.034204 ], [ 0.031500, 0.036006 ], [ 0.034161, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0315200", "Lat": "0.0324000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.034204 ], [ 0.034161, 0.032401 ], [ 0.031500, 0.032401 ], [ 0.031500, 0.034204 ], [ 0.034161, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0210200", "Lat": "0.0306000", "KPI": 111, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.032401 ], [ 0.023646, 0.030599 ], [ 0.021029, 0.030599 ], [ 0.021029, 0.032401 ], [ 0.023646, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0210200", "Lat": "0.0288000", "KPI": 145, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.030599 ], [ 0.023646, 0.028796 ], [ 0.021029, 0.028796 ], [ 0.021029, 0.030599 ], [ 0.023646, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210200", "Lat": "0.0270000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.028796 ], [ 0.023646, 0.026994 ], [ 0.021029, 0.026994 ], [ 0.021029, 0.028796 ], [ 0.023646, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0236400", "Lat": "0.0306000", "KPI": 332, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.032401 ], [ 0.026264, 0.030599 ], [ 0.023646, 0.030599 ], [ 0.023646, 0.032401 ], [ 0.026264, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0236400", "Lat": "0.0288000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.030599 ], [ 0.026264, 0.028796 ], [ 0.023646, 0.028796 ], [ 0.023646, 0.030599 ], [ 0.026264, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0236400", "Lat": "0.0270000", "KPI": 610, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.028796 ], [ 0.026264, 0.026994 ], [ 0.023646, 0.026994 ], [ 0.023646, 0.028796 ], [ 0.026264, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0210200", "Lat": "0.0252000", "KPI": 795, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.026994 ], [ 0.023646, 0.025191 ], [ 0.021029, 0.025191 ], [ 0.021029, 0.026994 ], [ 0.023646, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0210200", "Lat": "0.0234000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.025191 ], [ 0.023646, 0.023389 ], [ 0.021029, 0.023389 ], [ 0.021029, 0.025191 ], [ 0.023646, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.023389 ], [ 0.023646, 0.021586 ], [ 0.021029, 0.021586 ], [ 0.021029, 0.023389 ], [ 0.023646, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0236400", "Lat": "0.0252000", "KPI": 140, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.026994 ], [ 0.026264, 0.025191 ], [ 0.023646, 0.025191 ], [ 0.023646, 0.026994 ], [ 0.026264, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0236400", "Lat": "0.0234000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.025191 ], [ 0.026264, 0.023389 ], [ 0.023646, 0.023389 ], [ 0.023646, 0.025191 ], [ 0.026264, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0236400", "Lat": "0.0216000", "KPI": 31, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.023389 ], [ 0.026264, 0.021586 ], [ 0.023646, 0.021586 ], [ 0.023646, 0.023389 ], [ 0.026264, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0262700", "Lat": "0.0306000", "KPI": 27, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.032401 ], [ 0.028882, 0.030599 ], [ 0.026264, 0.030599 ], [ 0.026264, 0.032401 ], [ 0.028882, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0262700", "Lat": "0.0288000", "KPI": 380, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.030599 ], [ 0.028882, 0.028796 ], [ 0.026264, 0.028796 ], [ 0.026264, 0.030599 ], [ 0.028882, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262700", "Lat": "0.0270000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.028796 ], [ 0.028882, 0.026994 ], [ 0.026264, 0.026994 ], [ 0.026264, 0.028796 ], [ 0.028882, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0289000", "Lat": "0.0306000", "KPI": 481, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.032401 ], [ 0.031543, 0.030599 ], [ 0.028882, 0.030599 ], [ 0.028882, 0.032401 ], [ 0.031543, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0315200", "Lat": "0.0306000", "KPI": 568, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.032401 ], [ 0.034161, 0.030599 ], [ 0.031500, 0.030599 ], [ 0.031500, 0.032401 ], [ 0.034161, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0289000", "Lat": "0.0288000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.030599 ], [ 0.031543, 0.028796 ], [ 0.028882, 0.028796 ], [ 0.028882, 0.030599 ], [ 0.031543, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0289000", "Lat": "0.0270000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.028796 ], [ 0.031543, 0.026994 ], [ 0.028882, 0.026994 ], [ 0.028882, 0.028796 ], [ 0.031543, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0315200", "Lat": "0.0288000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.030599 ], [ 0.034161, 0.028796 ], [ 0.031500, 0.028796 ], [ 0.031500, 0.030599 ], [ 0.034161, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0315200", "Lat": "0.0270000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.028796 ], [ 0.034161, 0.026994 ], [ 0.031500, 0.026994 ], [ 0.031500, 0.028796 ], [ 0.034161, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0262700", "Lat": "0.0252000", "KPI": 225, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.026994 ], [ 0.028882, 0.025191 ], [ 0.026264, 0.025191 ], [ 0.026264, 0.026994 ], [ 0.028882, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0234000", "KPI": 480, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.025191 ], [ 0.028882, 0.023389 ], [ 0.026264, 0.023389 ], [ 0.026264, 0.025191 ], [ 0.028882, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262700", "Lat": "0.0216000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.023389 ], [ 0.028882, 0.021586 ], [ 0.026264, 0.021586 ], [ 0.026264, 0.023389 ], [ 0.028882, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0289000", "Lat": "0.0252000", "KPI": 570, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.026994 ], [ 0.031543, 0.025191 ], [ 0.028882, 0.025191 ], [ 0.028882, 0.026994 ], [ 0.031543, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0315200", "Lat": "0.0252000", "KPI": 211, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.026994 ], [ 0.034161, 0.025191 ], [ 0.031500, 0.025191 ], [ 0.031500, 0.026994 ], [ 0.034161, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0289000", "Lat": "0.0234000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.025191 ], [ 0.031543, 0.023389 ], [ 0.028882, 0.023389 ], [ 0.028882, 0.025191 ], [ 0.031543, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0289000", "Lat": "0.0216000", "KPI": 848, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.023389 ], [ 0.031543, 0.021586 ], [ 0.028882, 0.021586 ], [ 0.028882, 0.023389 ], [ 0.031543, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0315200", "Lat": "0.0234000", "KPI": 625, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.025191 ], [ 0.034161, 0.023389 ], [ 0.031500, 0.023389 ], [ 0.031500, 0.025191 ], [ 0.034161, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0315200", "Lat": "0.0216000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.023389 ], [ 0.034161, 0.021586 ], [ 0.031500, 0.021586 ], [ 0.031500, 0.023389 ], [ 0.034161, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0341500", "Lat": "0.0414000", "KPI": 934, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.043216 ], [ 0.036778, 0.041413 ], [ 0.034161, 0.041413 ], [ 0.034161, 0.043216 ], [ 0.036778, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0341500", "Lat": "0.0396000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.041413 ], [ 0.036778, 0.039611 ], [ 0.034161, 0.039611 ], [ 0.034161, 0.041413 ], [ 0.036778, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0341500", "Lat": "0.0378000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.039611 ], [ 0.036778, 0.037808 ], [ 0.034161, 0.037808 ], [ 0.034161, 0.039611 ], [ 0.036778, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0414000", "KPI": 548, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.043216 ], [ 0.039396, 0.041413 ], [ 0.036778, 0.041413 ], [ 0.036778, 0.043216 ], [ 0.039396, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0367800", "Lat": "0.0396000", "KPI": 289, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.041413 ], [ 0.039396, 0.039611 ], [ 0.036778, 0.039611 ], [ 0.036778, 0.041413 ], [ 0.039396, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0378000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.039611 ], [ 0.039396, 0.037808 ], [ 0.036778, 0.037808 ], [ 0.036778, 0.039611 ], [ 0.039396, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0341500", "Lat": "0.0360000", "KPI": 143, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.037808 ], [ 0.036778, 0.036006 ], [ 0.034161, 0.036006 ], [ 0.034161, 0.037808 ], [ 0.036778, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0341500", "Lat": "0.0342000", "KPI": 92, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.036006 ], [ 0.036778, 0.034204 ], [ 0.034161, 0.034204 ], [ 0.034161, 0.036006 ], [ 0.036778, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0341500", "Lat": "0.0324000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.034204 ], [ 0.036778, 0.032401 ], [ 0.034161, 0.032401 ], [ 0.034161, 0.034204 ], [ 0.036778, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0367800", "Lat": "0.0360000", "KPI": 469, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.037808 ], [ 0.039396, 0.036006 ], [ 0.036778, 0.036006 ], [ 0.036778, 0.037808 ], [ 0.039396, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0367800", "Lat": "0.0342000", "KPI": 938, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.036006 ], [ 0.039396, 0.034204 ], [ 0.036778, 0.034204 ], [ 0.036778, 0.036006 ], [ 0.039396, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0324000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.034204 ], [ 0.039396, 0.032401 ], [ 0.036778, 0.032401 ], [ 0.036778, 0.034204 ], [ 0.039396, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0394100", "Lat": "0.0414000", "KPI": 291, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.043216 ], [ 0.042057, 0.041413 ], [ 0.039396, 0.041413 ], [ 0.039396, 0.043216 ], [ 0.042057, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0394100", "Lat": "0.0396000", "KPI": 423, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.041413 ], [ 0.042057, 0.039611 ], [ 0.039396, 0.039611 ], [ 0.039396, 0.041413 ], [ 0.042057, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0394100", "Lat": "0.0378000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.039611 ], [ 0.042057, 0.037808 ], [ 0.039396, 0.037808 ], [ 0.039396, 0.039611 ], [ 0.042057, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0420300", "Lat": "0.0414000", "KPI": 251, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.043216 ], [ 0.044675, 0.041413 ], [ 0.042014, 0.041413 ], [ 0.042014, 0.043216 ], [ 0.044675, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0420300", "Lat": "0.0396000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.041413 ], [ 0.044675, 0.039611 ], [ 0.042014, 0.039611 ], [ 0.042014, 0.041413 ], [ 0.044675, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0420300", "Lat": "0.0378000", "KPI": 177, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.039611 ], [ 0.044675, 0.037808 ], [ 0.042014, 0.037808 ], [ 0.042014, 0.039611 ], [ 0.044675, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0394100", "Lat": "0.0360000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.037808 ], [ 0.042057, 0.036006 ], [ 0.039396, 0.036006 ], [ 0.039396, 0.037808 ], [ 0.042057, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0394100", "Lat": "0.0342000", "KPI": 264, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.036006 ], [ 0.042057, 0.034204 ], [ 0.039396, 0.034204 ], [ 0.039396, 0.036006 ], [ 0.042057, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0394100", "Lat": "0.0324000", "KPI": 193, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.034204 ], [ 0.042057, 0.032401 ], [ 0.039396, 0.032401 ], [ 0.039396, 0.034204 ], [ 0.042057, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0420300", "Lat": "0.0360000", "KPI": 530, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.037808 ], [ 0.044675, 0.036006 ], [ 0.042014, 0.036006 ], [ 0.042014, 0.037808 ], [ 0.044675, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0342000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.036006 ], [ 0.044675, 0.034204 ], [ 0.042014, 0.034204 ], [ 0.042014, 0.036006 ], [ 0.044675, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0324000", "KPI": 477, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.034204 ], [ 0.044675, 0.032401 ], [ 0.042014, 0.032401 ], [ 0.042014, 0.034204 ], [ 0.044675, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0341500", "Lat": "0.0306000", "KPI": 284, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.032401 ], [ 0.036778, 0.030599 ], [ 0.034161, 0.030599 ], [ 0.034161, 0.032401 ], [ 0.036778, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0341500", "Lat": "0.0288000", "KPI": 794, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.030599 ], [ 0.036778, 0.028796 ], [ 0.034161, 0.028796 ], [ 0.034161, 0.030599 ], [ 0.036778, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0341500", "Lat": "0.0270000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.028796 ], [ 0.036778, 0.026994 ], [ 0.034161, 0.026994 ], [ 0.034161, 0.028796 ], [ 0.036778, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0367800", "Lat": "0.0306000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.032401 ], [ 0.039396, 0.030599 ], [ 0.036778, 0.030599 ], [ 0.036778, 0.032401 ], [ 0.039396, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0288000", "KPI": 914, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.030599 ], [ 0.039396, 0.028796 ], [ 0.036778, 0.028796 ], [ 0.036778, 0.030599 ], [ 0.039396, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0367800", "Lat": "0.0270000", "KPI": 472, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.028796 ], [ 0.039396, 0.026994 ], [ 0.036778, 0.026994 ], [ 0.036778, 0.028796 ], [ 0.039396, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0341500", "Lat": "0.0252000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.026994 ], [ 0.036778, 0.025191 ], [ 0.034161, 0.025191 ], [ 0.034161, 0.026994 ], [ 0.036778, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0341500", "Lat": "0.0234000", "KPI": 495, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.025191 ], [ 0.036778, 0.023389 ], [ 0.034161, 0.023389 ], [ 0.034161, 0.025191 ], [ 0.036778, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0341500", "Lat": "0.0216000", "KPI": 810, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.023389 ], [ 0.036778, 0.021586 ], [ 0.034161, 0.021586 ], [ 0.034161, 0.023389 ], [ 0.036778, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0367800", "Lat": "0.0252000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.026994 ], [ 0.039396, 0.025191 ], [ 0.036778, 0.025191 ], [ 0.036778, 0.026994 ], [ 0.039396, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0234000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.025191 ], [ 0.039396, 0.023389 ], [ 0.036778, 0.023389 ], [ 0.036778, 0.025191 ], [ 0.039396, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0367800", "Lat": "0.0216000", "KPI": 971, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.023389 ], [ 0.039396, 0.021586 ], [ 0.036778, 0.021586 ], [ 0.036778, 0.023389 ], [ 0.039396, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0394100", "Lat": "0.0306000", "KPI": 384, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.032401 ], [ 0.042057, 0.030599 ], [ 0.039396, 0.030599 ], [ 0.039396, 0.032401 ], [ 0.042057, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0394100", "Lat": "0.0288000", "KPI": 455, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.030599 ], [ 0.042057, 0.028796 ], [ 0.039396, 0.028796 ], [ 0.039396, 0.030599 ], [ 0.042057, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0394100", "Lat": "0.0270000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.028796 ], [ 0.042057, 0.026994 ], [ 0.039396, 0.026994 ], [ 0.039396, 0.028796 ], [ 0.042057, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0420300", "Lat": "0.0306000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.032401 ], [ 0.044675, 0.030599 ], [ 0.042014, 0.030599 ], [ 0.042014, 0.032401 ], [ 0.044675, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0288000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.030599 ], [ 0.044675, 0.028796 ], [ 0.042014, 0.028796 ], [ 0.042014, 0.030599 ], [ 0.044675, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0270000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.028796 ], [ 0.044675, 0.026994 ], [ 0.042014, 0.026994 ], [ 0.042014, 0.028796 ], [ 0.044675, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0394100", "Lat": "0.0252000", "KPI": 697, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.026994 ], [ 0.042057, 0.025191 ], [ 0.039396, 0.025191 ], [ 0.039396, 0.026994 ], [ 0.042057, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0394100", "Lat": "0.0234000", "KPI": 216, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.025191 ], [ 0.042057, 0.023389 ], [ 0.039396, 0.023389 ], [ 0.039396, 0.025191 ], [ 0.042057, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0394100", "Lat": "0.0216000", "KPI": 113, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.023389 ], [ 0.042057, 0.021586 ], [ 0.039396, 0.021586 ], [ 0.039396, 0.023389 ], [ 0.042057, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0420300", "Lat": "0.0252000", "KPI": 332, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.026994 ], [ 0.044675, 0.025191 ], [ 0.042014, 0.025191 ], [ 0.042014, 0.026994 ], [ 0.044675, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0420300", "Lat": "0.0234000", "KPI": 44, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.025191 ], [ 0.044675, 0.023389 ], [ 0.042014, 0.023389 ], [ 0.042014, 0.025191 ], [ 0.044675, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.023389 ], [ 0.044675, 0.021586 ], [ 0.042014, 0.021586 ], [ 0.042014, 0.023389 ], [ 0.044675, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0210200", "Lat": "0.0198000", "KPI": 386, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.021586 ], [ 0.023646, 0.019784 ], [ 0.021029, 0.019784 ], [ 0.021029, 0.021586 ], [ 0.023646, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0210200", "Lat": "0.0180000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.019784 ], [ 0.023646, 0.017982 ], [ 0.021029, 0.017982 ], [ 0.021029, 0.019784 ], [ 0.023646, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0210200", "Lat": "0.0162000", "KPI": 449, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.017982 ], [ 0.023646, 0.016179 ], [ 0.021029, 0.016179 ], [ 0.021029, 0.017982 ], [ 0.023646, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0236400", "Lat": "0.0198000", "KPI": 549, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.021586 ], [ 0.026264, 0.019784 ], [ 0.023646, 0.019784 ], [ 0.023646, 0.021586 ], [ 0.026264, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0236400", "Lat": "0.0180000", "KPI": 561, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.019784 ], [ 0.026264, 0.017982 ], [ 0.023646, 0.017982 ], [ 0.023646, 0.019784 ], [ 0.026264, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0236400", "Lat": "0.0162000", "KPI": 781, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.017982 ], [ 0.026264, 0.016179 ], [ 0.023646, 0.016179 ], [ 0.023646, 0.017982 ], [ 0.026264, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0210200", "Lat": "0.0144000", "KPI": 419, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.016179 ], [ 0.023646, 0.014420 ], [ 0.021029, 0.014420 ], [ 0.021029, 0.016179 ], [ 0.023646, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0210200", "Lat": "0.0126000", "KPI": 275, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.014420 ], [ 0.023646, 0.012617 ], [ 0.021029, 0.012617 ], [ 0.021029, 0.014420 ], [ 0.023646, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.012617 ], [ 0.023646, 0.010815 ], [ 0.021029, 0.010815 ], [ 0.021029, 0.012617 ], [ 0.023646, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0236400", "Lat": "0.0144000", "KPI": 219, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.016179 ], [ 0.026264, 0.014420 ], [ 0.023646, 0.014420 ], [ 0.023646, 0.016179 ], [ 0.026264, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0236400", "Lat": "0.0126000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.014420 ], [ 0.026264, 0.012617 ], [ 0.023646, 0.012617 ], [ 0.023646, 0.014420 ], [ 0.026264, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0236400", "Lat": "0.0108000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.012617 ], [ 0.026264, 0.010815 ], [ 0.023646, 0.010815 ], [ 0.023646, 0.012617 ], [ 0.026264, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0262700", "Lat": "0.0198000", "KPI": 352, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.021586 ], [ 0.028882, 0.019784 ], [ 0.026264, 0.019784 ], [ 0.026264, 0.021586 ], [ 0.028882, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262700", "Lat": "0.0180000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.019784 ], [ 0.028882, 0.017982 ], [ 0.026264, 0.017982 ], [ 0.026264, 0.019784 ], [ 0.028882, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0162000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.017982 ], [ 0.028882, 0.016179 ], [ 0.026264, 0.016179 ], [ 0.026264, 0.017982 ], [ 0.028882, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0289000", "Lat": "0.0198000", "KPI": 835, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.021586 ], [ 0.031543, 0.019784 ], [ 0.028882, 0.019784 ], [ 0.028882, 0.021586 ], [ 0.031543, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0315200", "Lat": "0.0198000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.021586 ], [ 0.034161, 0.019784 ], [ 0.031500, 0.019784 ], [ 0.031500, 0.021586 ], [ 0.034161, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0289000", "Lat": "0.0180000", "KPI": 668, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.019784 ], [ 0.031543, 0.017982 ], [ 0.028882, 0.017982 ], [ 0.028882, 0.019784 ], [ 0.031543, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0289000", "Lat": "0.0162000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.017982 ], [ 0.031543, 0.016179 ], [ 0.028882, 0.016179 ], [ 0.028882, 0.017982 ], [ 0.031543, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0315200", "Lat": "0.0180000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.019784 ], [ 0.034161, 0.017982 ], [ 0.031500, 0.017982 ], [ 0.031500, 0.019784 ], [ 0.034161, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0315200", "Lat": "0.0162000", "KPI": 118, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.017982 ], [ 0.034161, 0.016179 ], [ 0.031500, 0.016179 ], [ 0.031500, 0.017982 ], [ 0.034161, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0144000", "KPI": 637, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.016179 ], [ 0.028882, 0.014420 ], [ 0.026264, 0.014420 ], [ 0.026264, 0.016179 ], [ 0.028882, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0262700", "Lat": "0.0126000", "KPI": 456, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.014420 ], [ 0.028882, 0.012617 ], [ 0.026264, 0.012617 ], [ 0.026264, 0.014420 ], [ 0.028882, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262700", "Lat": "0.0108000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.012617 ], [ 0.028882, 0.010815 ], [ 0.026264, 0.010815 ], [ 0.026264, 0.012617 ], [ 0.028882, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0289000", "Lat": "0.0144000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.016179 ], [ 0.031543, 0.014420 ], [ 0.028882, 0.014420 ], [ 0.028882, 0.016179 ], [ 0.031543, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0315200", "Lat": "0.0144000", "KPI": 364, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.016179 ], [ 0.034161, 0.014420 ], [ 0.031500, 0.014420 ], [ 0.031500, 0.016179 ], [ 0.034161, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0289000", "Lat": "0.0126000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.014420 ], [ 0.031543, 0.012617 ], [ 0.028882, 0.012617 ], [ 0.028882, 0.014420 ], [ 0.031543, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0289000", "Lat": "0.0108000", "KPI": 455, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.012617 ], [ 0.031543, 0.010815 ], [ 0.028882, 0.010815 ], [ 0.028882, 0.012617 ], [ 0.031543, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0315200", "Lat": "0.0126000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.014420 ], [ 0.034161, 0.012617 ], [ 0.031500, 0.012617 ], [ 0.031500, 0.014420 ], [ 0.034161, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.012617 ], [ 0.034161, 0.010815 ], [ 0.031500, 0.010815 ], [ 0.031500, 0.012617 ], [ 0.034161, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0210200", "Lat": "0.0090000", "KPI": 160, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.010815 ], [ 0.023646, 0.009012 ], [ 0.021029, 0.009012 ], [ 0.021029, 0.010815 ], [ 0.023646, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0072000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.009012 ], [ 0.023646, 0.007210 ], [ 0.021029, 0.007210 ], [ 0.021029, 0.009012 ], [ 0.023646, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0054000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.007210 ], [ 0.023646, 0.005407 ], [ 0.021029, 0.005407 ], [ 0.021029, 0.007210 ], [ 0.023646, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0236400", "Lat": "0.0090000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.010815 ], [ 0.026264, 0.009012 ], [ 0.023646, 0.009012 ], [ 0.023646, 0.010815 ], [ 0.026264, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0236400", "Lat": "0.0072000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.009012 ], [ 0.026264, 0.007210 ], [ 0.023646, 0.007210 ], [ 0.023646, 0.009012 ], [ 0.026264, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0236400", "Lat": "0.0054000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.007210 ], [ 0.026264, 0.005407 ], [ 0.023646, 0.005407 ], [ 0.023646, 0.007210 ], [ 0.026264, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0210200", "Lat": "0.0036000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.005407 ], [ 0.023646, 0.003605 ], [ 0.021029, 0.003605 ], [ 0.021029, 0.005407 ], [ 0.023646, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0210200", "Lat": "0.0018000", "KPI": 484, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.003605 ], [ 0.023646, 0.001802 ], [ 0.021029, 0.001802 ], [ 0.021029, 0.003605 ], [ 0.023646, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.001802 ], [ 0.023646, 0.000000 ], [ 0.021029, 0.000000 ], [ 0.021029, 0.001802 ], [ 0.023646, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0236400", "Lat": "0.0036000", "KPI": 613, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.005407 ], [ 0.026264, 0.003605 ], [ 0.023646, 0.003605 ], [ 0.023646, 0.005407 ], [ 0.026264, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0236400", "Lat": "0.0018000", "KPI": 136, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.003605 ], [ 0.026264, 0.001802 ], [ 0.023646, 0.001802 ], [ 0.023646, 0.003605 ], [ 0.026264, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0000000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.001802 ], [ 0.026264, 0.000000 ], [ 0.023646, 0.000000 ], [ 0.023646, 0.001802 ], [ 0.026264, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0262700", "Lat": "0.0090000", "KPI": 783, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.010815 ], [ 0.028882, 0.009012 ], [ 0.026264, 0.009012 ], [ 0.026264, 0.010815 ], [ 0.028882, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0262700", "Lat": "0.0072000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.009012 ], [ 0.028882, 0.007210 ], [ 0.026264, 0.007210 ], [ 0.026264, 0.009012 ], [ 0.028882, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0262700", "Lat": "0.0054000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.007210 ], [ 0.028882, 0.005407 ], [ 0.026264, 0.005407 ], [ 0.026264, 0.007210 ], [ 0.028882, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0289000", "Lat": "0.0090000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.010815 ], [ 0.031543, 0.009012 ], [ 0.028882, 0.009012 ], [ 0.028882, 0.010815 ], [ 0.031543, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0315200", "Lat": "0.0090000", "KPI": 785, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.010815 ], [ 0.034161, 0.009012 ], [ 0.031500, 0.009012 ], [ 0.031500, 0.010815 ], [ 0.034161, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0289000", "Lat": "0.0072000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.009012 ], [ 0.031543, 0.007210 ], [ 0.028882, 0.007210 ], [ 0.028882, 0.009012 ], [ 0.031543, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0289000", "Lat": "0.0054000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.007210 ], [ 0.031543, 0.005407 ], [ 0.028882, 0.005407 ], [ 0.028882, 0.007210 ], [ 0.031543, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0315200", "Lat": "0.0072000", "KPI": 314, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.009012 ], [ 0.034161, 0.007210 ], [ 0.031500, 0.007210 ], [ 0.031500, 0.009012 ], [ 0.034161, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0315200", "Lat": "0.0054000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.007210 ], [ 0.034161, 0.005407 ], [ 0.031500, 0.005407 ], [ 0.031500, 0.007210 ], [ 0.034161, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262700", "Lat": "0.0036000", "KPI": 593, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.005407 ], [ 0.028882, 0.003605 ], [ 0.026264, 0.003605 ], [ 0.026264, 0.005407 ], [ 0.028882, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0262700", "Lat": "0.0018000", "KPI": 489, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.003605 ], [ 0.028882, 0.001802 ], [ 0.026264, 0.001802 ], [ 0.026264, 0.003605 ], [ 0.028882, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.001802 ], [ 0.028882, 0.000000 ], [ 0.026264, 0.000000 ], [ 0.026264, 0.001802 ], [ 0.028882, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0289000", "Lat": "0.0036000", "KPI": 542, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.005407 ], [ 0.031543, 0.003605 ], [ 0.028882, 0.003605 ], [ 0.028882, 0.005407 ], [ 0.031543, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0315200", "Lat": "0.0036000", "KPI": 520, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.005407 ], [ 0.034161, 0.003605 ], [ 0.031500, 0.003605 ], [ 0.031500, 0.005407 ], [ 0.034161, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0289000", "Lat": "0.0018000", "KPI": 855, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.003605 ], [ 0.031543, 0.001802 ], [ 0.028882, 0.001802 ], [ 0.028882, 0.003605 ], [ 0.031543, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0289000", "Lat": "0.0000000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.001802 ], [ 0.031543, 0.000000 ], [ 0.028882, 0.000000 ], [ 0.028882, 0.001802 ], [ 0.031543, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0315200", "Lat": "0.0018000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.003605 ], [ 0.034161, 0.001802 ], [ 0.031500, 0.001802 ], [ 0.031500, 0.003605 ], [ 0.034161, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.001802 ], [ 0.034161, 0.000000 ], [ 0.031500, 0.000000 ], [ 0.031500, 0.001802 ], [ 0.034161, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0341500", "Lat": "0.0198000", "KPI": 587, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.021586 ], [ 0.036778, 0.019784 ], [ 0.034161, 0.019784 ], [ 0.034161, 0.021586 ], [ 0.036778, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0341500", "Lat": "0.0180000", "KPI": 337, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.019784 ], [ 0.036778, 0.017982 ], [ 0.034161, 0.017982 ], [ 0.034161, 0.019784 ], [ 0.036778, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0341500", "Lat": "0.0162000", "KPI": 363, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.017982 ], [ 0.036778, 0.016179 ], [ 0.034161, 0.016179 ], [ 0.034161, 0.017982 ], [ 0.036778, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0367800", "Lat": "0.0198000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.021586 ], [ 0.039396, 0.019784 ], [ 0.036778, 0.019784 ], [ 0.036778, 0.021586 ], [ 0.039396, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0367800", "Lat": "0.0180000", "KPI": 119, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.019784 ], [ 0.039396, 0.017982 ], [ 0.036778, 0.017982 ], [ 0.036778, 0.019784 ], [ 0.039396, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0367800", "Lat": "0.0162000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.017982 ], [ 0.039396, 0.016179 ], [ 0.036778, 0.016179 ], [ 0.036778, 0.017982 ], [ 0.039396, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0341500", "Lat": "0.0144000", "KPI": 17, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.016179 ], [ 0.036778, 0.014420 ], [ 0.034161, 0.014420 ], [ 0.034161, 0.016179 ], [ 0.036778, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0341500", "Lat": "0.0126000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.014420 ], [ 0.036778, 0.012617 ], [ 0.034161, 0.012617 ], [ 0.034161, 0.014420 ], [ 0.036778, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0341500", "Lat": "0.0108000", "KPI": 946, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.012617 ], [ 0.036778, 0.010815 ], [ 0.034161, 0.010815 ], [ 0.034161, 0.012617 ], [ 0.036778, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0367800", "Lat": "0.0144000", "KPI": 38, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.016179 ], [ 0.039396, 0.014420 ], [ 0.036778, 0.014420 ], [ 0.036778, 0.016179 ], [ 0.039396, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0367800", "Lat": "0.0126000", "KPI": 795, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.014420 ], [ 0.039396, 0.012617 ], [ 0.036778, 0.012617 ], [ 0.036778, 0.014420 ], [ 0.039396, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0108000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.012617 ], [ 0.039396, 0.010815 ], [ 0.036778, 0.010815 ], [ 0.036778, 0.012617 ], [ 0.039396, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0394100", "Lat": "0.0198000", "KPI": 885, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.021586 ], [ 0.042057, 0.019784 ], [ 0.039396, 0.019784 ], [ 0.039396, 0.021586 ], [ 0.042057, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0394100", "Lat": "0.0180000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.019784 ], [ 0.042057, 0.017982 ], [ 0.039396, 0.017982 ], [ 0.039396, 0.019784 ], [ 0.042057, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0394100", "Lat": "0.0162000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.017982 ], [ 0.042057, 0.016179 ], [ 0.039396, 0.016179 ], [ 0.039396, 0.017982 ], [ 0.042057, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0420300", "Lat": "0.0198000", "KPI": 315, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.021586 ], [ 0.044675, 0.019784 ], [ 0.042014, 0.019784 ], [ 0.042014, 0.021586 ], [ 0.044675, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0420300", "Lat": "0.0180000", "KPI": 540, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.019784 ], [ 0.044675, 0.017982 ], [ 0.042014, 0.017982 ], [ 0.042014, 0.019784 ], [ 0.044675, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0420300", "Lat": "0.0162000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.017982 ], [ 0.044675, 0.016179 ], [ 0.042014, 0.016179 ], [ 0.042014, 0.017982 ], [ 0.044675, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0394100", "Lat": "0.0144000", "KPI": 64, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.016179 ], [ 0.042057, 0.014420 ], [ 0.039396, 0.014420 ], [ 0.039396, 0.016179 ], [ 0.042057, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0394100", "Lat": "0.0126000", "KPI": 845, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.014420 ], [ 0.042057, 0.012617 ], [ 0.039396, 0.012617 ], [ 0.039396, 0.014420 ], [ 0.042057, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0394100", "Lat": "0.0108000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.012617 ], [ 0.042057, 0.010815 ], [ 0.039396, 0.010815 ], [ 0.039396, 0.012617 ], [ 0.042057, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0420300", "Lat": "0.0144000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.016179 ], [ 0.044675, 0.014420 ], [ 0.042014, 0.014420 ], [ 0.042014, 0.016179 ], [ 0.044675, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0420300", "Lat": "0.0126000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.014420 ], [ 0.044675, 0.012617 ], [ 0.042014, 0.012617 ], [ 0.042014, 0.014420 ], [ 0.044675, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.012617 ], [ 0.044675, 0.010815 ], [ 0.042014, 0.010815 ], [ 0.042014, 0.012617 ], [ 0.044675, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0341500", "Lat": "0.0090000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.010815 ], [ 0.036778, 0.009012 ], [ 0.034161, 0.009012 ], [ 0.034161, 0.010815 ], [ 0.036778, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0341500", "Lat": "0.0072000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.009012 ], [ 0.036778, 0.007210 ], [ 0.034161, 0.007210 ], [ 0.034161, 0.009012 ], [ 0.036778, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341500", "Lat": "0.0054000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.007210 ], [ 0.036778, 0.005407 ], [ 0.034161, 0.005407 ], [ 0.034161, 0.007210 ], [ 0.036778, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0367800", "Lat": "0.0090000", "KPI": 455, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.010815 ], [ 0.039396, 0.009012 ], [ 0.036778, 0.009012 ], [ 0.036778, 0.010815 ], [ 0.039396, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0367800", "Lat": "0.0072000", "KPI": 666, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.009012 ], [ 0.039396, 0.007210 ], [ 0.036778, 0.007210 ], [ 0.036778, 0.009012 ], [ 0.039396, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0367800", "Lat": "0.0054000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.007210 ], [ 0.039396, 0.005407 ], [ 0.036778, 0.005407 ], [ 0.036778, 0.007210 ], [ 0.039396, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0036000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.005407 ], [ 0.036778, 0.003605 ], [ 0.034161, 0.003605 ], [ 0.034161, 0.005407 ], [ 0.036778, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0018000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.003605 ], [ 0.036778, 0.001802 ], [ 0.034161, 0.001802 ], [ 0.034161, 0.003605 ], [ 0.036778, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0000000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.001802 ], [ 0.036778, 0.000000 ], [ 0.034161, 0.000000 ], [ 0.034161, 0.001802 ], [ 0.036778, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0367800", "Lat": "0.0036000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.005407 ], [ 0.039396, 0.003605 ], [ 0.036778, 0.003605 ], [ 0.036778, 0.005407 ], [ 0.039396, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0018000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.003605 ], [ 0.039396, 0.001802 ], [ 0.036778, 0.001802 ], [ 0.036778, 0.003605 ], [ 0.039396, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.001802 ], [ 0.039396, 0.000000 ], [ 0.036778, 0.000000 ], [ 0.036778, 0.001802 ], [ 0.039396, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0394100", "Lat": "0.0090000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.010815 ], [ 0.042057, 0.009012 ], [ 0.039396, 0.009012 ], [ 0.039396, 0.010815 ], [ 0.042057, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394100", "Lat": "0.0072000", "KPI": 454, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.009012 ], [ 0.042057, 0.007210 ], [ 0.039396, 0.007210 ], [ 0.039396, 0.009012 ], [ 0.042057, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0394100", "Lat": "0.0054000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.007210 ], [ 0.042057, 0.005407 ], [ 0.039396, 0.005407 ], [ 0.039396, 0.007210 ], [ 0.042057, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0420300", "Lat": "0.0090000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.010815 ], [ 0.044675, 0.009012 ], [ 0.042014, 0.009012 ], [ 0.042014, 0.010815 ], [ 0.044675, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0420300", "Lat": "0.0072000", "KPI": 504, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.009012 ], [ 0.044675, 0.007210 ], [ 0.042014, 0.007210 ], [ 0.042014, 0.009012 ], [ 0.044675, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0054000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.007210 ], [ 0.044675, 0.005407 ], [ 0.042014, 0.005407 ], [ 0.042014, 0.007210 ], [ 0.044675, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0394100", "Lat": "0.0036000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.005407 ], [ 0.042057, 0.003605 ], [ 0.039396, 0.003605 ], [ 0.039396, 0.005407 ], [ 0.042057, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394100", "Lat": "0.0018000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.003605 ], [ 0.042057, 0.001802 ], [ 0.039396, 0.001802 ], [ 0.039396, 0.003605 ], [ 0.042057, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394100", "Lat": "0.0000000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.001802 ], [ 0.042057, 0.000000 ], [ 0.039396, 0.000000 ], [ 0.039396, 0.001802 ], [ 0.042057, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0420300", "Lat": "0.0036000", "KPI": 942, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.005407 ], [ 0.044675, 0.003605 ], [ 0.042014, 0.003605 ], [ 0.042014, 0.005407 ], [ 0.044675, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0420300", "Lat": "0.0018000", "KPI": 331, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.003605 ], [ 0.044675, 0.001802 ], [ 0.042014, 0.001802 ], [ 0.042014, 0.003605 ], [ 0.044675, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.001802 ], [ 0.044675, 0.000000 ], [ 0.042014, 0.000000 ], [ 0.042014, 0.001802 ], [ 0.044675, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0446600", "Lat": "0.0558000", "KPI": 113, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.057592 ], [ 0.047293, 0.055790 ], [ 0.044675, 0.055790 ], [ 0.044675, 0.057592 ], [ 0.047293, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0472900", "Lat": "0.0558000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.057592 ], [ 0.049911, 0.055790 ], [ 0.047293, 0.055790 ], [ 0.047293, 0.057592 ], [ 0.049911, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0499100", "Lat": "0.0558000", "KPI": 694, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.057592 ], [ 0.052528, 0.055790 ], [ 0.049911, 0.055790 ], [ 0.049911, 0.057592 ], [ 0.052528, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0525400", "Lat": "0.0558000", "KPI": 777, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.057592 ], [ 0.055189, 0.055790 ], [ 0.052528, 0.055790 ], [ 0.052528, 0.057592 ], [ 0.055189, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446600", "Lat": "0.0540000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.055790 ], [ 0.047293, 0.053987 ], [ 0.044675, 0.053987 ], [ 0.044675, 0.055790 ], [ 0.047293, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0446600", "Lat": "0.0522000", "KPI": 499, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.053987 ], [ 0.047293, 0.052185 ], [ 0.044675, 0.052185 ], [ 0.044675, 0.053987 ], [ 0.047293, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0446600", "Lat": "0.0504000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.052185 ], [ 0.047293, 0.050383 ], [ 0.044675, 0.050383 ], [ 0.044675, 0.052185 ], [ 0.047293, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0446600", "Lat": "0.0486000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.050383 ], [ 0.047293, 0.048580 ], [ 0.044675, 0.048580 ], [ 0.044675, 0.050383 ], [ 0.047293, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0472900", "Lat": "0.0540000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.055790 ], [ 0.049911, 0.053987 ], [ 0.047293, 0.053987 ], [ 0.047293, 0.055790 ], [ 0.049911, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0472900", "Lat": "0.0522000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.053987 ], [ 0.049911, 0.052185 ], [ 0.047293, 0.052185 ], [ 0.047293, 0.053987 ], [ 0.049911, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0472900", "Lat": "0.0504000", "KPI": 8, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.052185 ], [ 0.049911, 0.050383 ], [ 0.047293, 0.050383 ], [ 0.047293, 0.052185 ], [ 0.049911, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0472900", "Lat": "0.0486000", "KPI": 696, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.050383 ], [ 0.049911, 0.048580 ], [ 0.047293, 0.048580 ], [ 0.047293, 0.050383 ], [ 0.049911, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0446600", "Lat": "0.0468000", "KPI": 555, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.048580 ], [ 0.047293, 0.046821 ], [ 0.044675, 0.046821 ], [ 0.044675, 0.048580 ], [ 0.047293, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0446600", "Lat": "0.0450000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.046821 ], [ 0.047293, 0.045018 ], [ 0.044675, 0.045018 ], [ 0.044675, 0.046821 ], [ 0.047293, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0446600", "Lat": "0.0432000", "KPI": 623, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.045018 ], [ 0.047293, 0.043216 ], [ 0.044675, 0.043216 ], [ 0.044675, 0.045018 ], [ 0.047293, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0472900", "Lat": "0.0468000", "KPI": 999, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.048580 ], [ 0.049911, 0.046821 ], [ 0.047293, 0.046821 ], [ 0.047293, 0.048580 ], [ 0.049911, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0472900", "Lat": "0.0450000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.046821 ], [ 0.049911, 0.045018 ], [ 0.047293, 0.045018 ], [ 0.047293, 0.046821 ], [ 0.049911, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0472900", "Lat": "0.0432000", "KPI": 905, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.045018 ], [ 0.049911, 0.043216 ], [ 0.047293, 0.043216 ], [ 0.047293, 0.045018 ], [ 0.049911, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0499100", "Lat": "0.0540000", "KPI": 278, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.055790 ], [ 0.052528, 0.053987 ], [ 0.049911, 0.053987 ], [ 0.049911, 0.055790 ], [ 0.052528, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0499100", "Lat": "0.0522000", "KPI": 447, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.053987 ], [ 0.052528, 0.052185 ], [ 0.049911, 0.052185 ], [ 0.049911, 0.053987 ], [ 0.052528, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0499100", "Lat": "0.0504000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.052185 ], [ 0.052528, 0.050383 ], [ 0.049911, 0.050383 ], [ 0.049911, 0.052185 ], [ 0.052528, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0499100", "Lat": "0.0486000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.050383 ], [ 0.052528, 0.048580 ], [ 0.049911, 0.048580 ], [ 0.049911, 0.050383 ], [ 0.052528, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525400", "Lat": "0.0540000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.055790 ], [ 0.055189, 0.053987 ], [ 0.052528, 0.053987 ], [ 0.052528, 0.055790 ], [ 0.055189, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525400", "Lat": "0.0522000", "KPI": 494, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.053987 ], [ 0.055189, 0.052185 ], [ 0.052528, 0.052185 ], [ 0.052528, 0.053987 ], [ 0.055189, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0525400", "Lat": "0.0504000", "KPI": 682, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.052185 ], [ 0.055189, 0.050383 ], [ 0.052528, 0.050383 ], [ 0.052528, 0.052185 ], [ 0.055189, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0525400", "Lat": "0.0486000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.050383 ], [ 0.055189, 0.048580 ], [ 0.052528, 0.048580 ], [ 0.052528, 0.050383 ], [ 0.055189, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0499100", "Lat": "0.0468000", "KPI": 819, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.048580 ], [ 0.052528, 0.046821 ], [ 0.049911, 0.046821 ], [ 0.049911, 0.048580 ], [ 0.052528, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0499100", "Lat": "0.0450000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.046821 ], [ 0.052528, 0.045018 ], [ 0.049911, 0.045018 ], [ 0.049911, 0.046821 ], [ 0.052528, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0499100", "Lat": "0.0432000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.045018 ], [ 0.052528, 0.043216 ], [ 0.049911, 0.043216 ], [ 0.049911, 0.045018 ], [ 0.052528, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0525400", "Lat": "0.0468000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.048580 ], [ 0.055189, 0.046821 ], [ 0.052528, 0.046821 ], [ 0.052528, 0.048580 ], [ 0.055189, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0450000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.046821 ], [ 0.055189, 0.045018 ], [ 0.052528, 0.045018 ], [ 0.052528, 0.046821 ], [ 0.055189, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0525400", "Lat": "0.0432000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.045018 ], [ 0.055189, 0.043216 ], [ 0.052528, 0.043216 ], [ 0.052528, 0.045018 ], [ 0.055189, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0551700", "Lat": "0.0558000", "KPI": 170, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.057592 ], [ 0.057807, 0.055790 ], [ 0.055189, 0.055790 ], [ 0.055189, 0.057592 ], [ 0.057807, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0577900", "Lat": "0.0558000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.057592 ], [ 0.060425, 0.055790 ], [ 0.057807, 0.055790 ], [ 0.057807, 0.057592 ], [ 0.060425, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0604200", "Lat": "0.0558000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.057592 ], [ 0.063043, 0.055790 ], [ 0.060425, 0.055790 ], [ 0.060425, 0.057592 ], [ 0.063043, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0630500", "Lat": "0.0558000", "KPI": 797, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.057592 ], [ 0.065660, 0.055790 ], [ 0.063043, 0.055790 ], [ 0.063043, 0.057592 ], [ 0.065660, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0551700", "Lat": "0.0540000", "KPI": 91, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.055790 ], [ 0.057807, 0.053987 ], [ 0.055189, 0.053987 ], [ 0.055189, 0.055790 ], [ 0.057807, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0551700", "Lat": "0.0522000", "KPI": 821, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.053987 ], [ 0.057807, 0.052185 ], [ 0.055189, 0.052185 ], [ 0.055189, 0.053987 ], [ 0.057807, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0551700", "Lat": "0.0504000", "KPI": 637, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.052185 ], [ 0.057807, 0.050383 ], [ 0.055189, 0.050383 ], [ 0.055189, 0.052185 ], [ 0.057807, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0551700", "Lat": "0.0486000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.050383 ], [ 0.057807, 0.048580 ], [ 0.055189, 0.048580 ], [ 0.055189, 0.050383 ], [ 0.057807, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0577900", "Lat": "0.0540000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.055790 ], [ 0.060425, 0.053987 ], [ 0.057807, 0.053987 ], [ 0.057807, 0.055790 ], [ 0.060425, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0577900", "Lat": "0.0522000", "KPI": 33, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.053987 ], [ 0.060425, 0.052185 ], [ 0.057807, 0.052185 ], [ 0.057807, 0.053987 ], [ 0.060425, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0577900", "Lat": "0.0504000", "KPI": 266, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.052185 ], [ 0.060425, 0.050383 ], [ 0.057807, 0.050383 ], [ 0.057807, 0.052185 ], [ 0.060425, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0577900", "Lat": "0.0486000", "KPI": 58, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.050383 ], [ 0.060425, 0.048580 ], [ 0.057807, 0.048580 ], [ 0.057807, 0.050383 ], [ 0.060425, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0551700", "Lat": "0.0468000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.048580 ], [ 0.057807, 0.046821 ], [ 0.055189, 0.046821 ], [ 0.055189, 0.048580 ], [ 0.057807, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0551700", "Lat": "0.0450000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.046821 ], [ 0.057807, 0.045018 ], [ 0.055189, 0.045018 ], [ 0.055189, 0.046821 ], [ 0.057807, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0551700", "Lat": "0.0432000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.045018 ], [ 0.057807, 0.043216 ], [ 0.055189, 0.043216 ], [ 0.055189, 0.045018 ], [ 0.057807, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0577900", "Lat": "0.0468000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.048580 ], [ 0.060425, 0.046821 ], [ 0.057807, 0.046821 ], [ 0.057807, 0.048580 ], [ 0.060425, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0577900", "Lat": "0.0450000", "KPI": 741, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.046821 ], [ 0.060425, 0.045018 ], [ 0.057807, 0.045018 ], [ 0.057807, 0.046821 ], [ 0.060425, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577900", "Lat": "0.0432000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.045018 ], [ 0.060425, 0.043216 ], [ 0.057807, 0.043216 ], [ 0.057807, 0.045018 ], [ 0.060425, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0604200", "Lat": "0.0540000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.055790 ], [ 0.063043, 0.053987 ], [ 0.060425, 0.053987 ], [ 0.060425, 0.055790 ], [ 0.063043, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0604200", "Lat": "0.0522000", "KPI": 119, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.053987 ], [ 0.063043, 0.052185 ], [ 0.060425, 0.052185 ], [ 0.060425, 0.053987 ], [ 0.063043, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0604200", "Lat": "0.0504000", "KPI": 358, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.052185 ], [ 0.063043, 0.050383 ], [ 0.060425, 0.050383 ], [ 0.060425, 0.052185 ], [ 0.063043, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0604200", "Lat": "0.0486000", "KPI": 491, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.050383 ], [ 0.063043, 0.048580 ], [ 0.060425, 0.048580 ], [ 0.060425, 0.050383 ], [ 0.063043, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0630500", "Lat": "0.0540000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.055790 ], [ 0.065660, 0.053987 ], [ 0.063043, 0.053987 ], [ 0.063043, 0.055790 ], [ 0.065660, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0630500", "Lat": "0.0522000", "KPI": 982, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.053987 ], [ 0.065660, 0.052185 ], [ 0.063043, 0.052185 ], [ 0.063043, 0.053987 ], [ 0.065660, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0630500", "Lat": "0.0504000", "KPI": 17, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.052185 ], [ 0.065660, 0.050383 ], [ 0.063043, 0.050383 ], [ 0.063043, 0.052185 ], [ 0.065660, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0630500", "Lat": "0.0486000", "KPI": 194, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.050383 ], [ 0.065660, 0.048580 ], [ 0.063043, 0.048580 ], [ 0.063043, 0.050383 ], [ 0.065660, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0604200", "Lat": "0.0468000", "KPI": 726, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.048580 ], [ 0.063043, 0.046821 ], [ 0.060425, 0.046821 ], [ 0.060425, 0.048580 ], [ 0.063043, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0604200", "Lat": "0.0450000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.046821 ], [ 0.063043, 0.045018 ], [ 0.060425, 0.045018 ], [ 0.060425, 0.046821 ], [ 0.063043, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0604200", "Lat": "0.0432000", "KPI": 604, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.045018 ], [ 0.063043, 0.043216 ], [ 0.060425, 0.043216 ], [ 0.060425, 0.045018 ], [ 0.063043, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0630500", "Lat": "0.0468000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.048580 ], [ 0.065660, 0.046821 ], [ 0.063043, 0.046821 ], [ 0.063043, 0.048580 ], [ 0.065660, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0630500", "Lat": "0.0450000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.046821 ], [ 0.065660, 0.045018 ], [ 0.063043, 0.045018 ], [ 0.063043, 0.046821 ], [ 0.065660, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0630500", "Lat": "0.0432000", "KPI": 379, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.045018 ], [ 0.065660, 0.043216 ], [ 0.063043, 0.043216 ], [ 0.063043, 0.045018 ], [ 0.065660, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0656800", "Lat": "0.0558000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.057592 ], [ 0.068321, 0.055790 ], [ 0.065660, 0.055790 ], [ 0.065660, 0.057592 ], [ 0.068321, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0683000", "Lat": "0.0558000", "KPI": 830, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.057592 ], [ 0.070939, 0.055790 ], [ 0.068321, 0.055790 ], [ 0.068321, 0.057592 ], [ 0.070939, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0709300", "Lat": "0.0558000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.057592 ], [ 0.073557, 0.055790 ], [ 0.070939, 0.055790 ], [ 0.070939, 0.057592 ], [ 0.073557, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0735600", "Lat": "0.0558000", "KPI": 118, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.057592 ], [ 0.076175, 0.055790 ], [ 0.073557, 0.055790 ], [ 0.073557, 0.057592 ], [ 0.076175, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0656800", "Lat": "0.0540000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.055790 ], [ 0.068321, 0.053987 ], [ 0.065660, 0.053987 ], [ 0.065660, 0.055790 ], [ 0.068321, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0656800", "Lat": "0.0522000", "KPI": 972, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.053987 ], [ 0.068321, 0.052185 ], [ 0.065660, 0.052185 ], [ 0.065660, 0.053987 ], [ 0.068321, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0656800", "Lat": "0.0504000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.052185 ], [ 0.068321, 0.050383 ], [ 0.065660, 0.050383 ], [ 0.065660, 0.052185 ], [ 0.068321, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0656800", "Lat": "0.0486000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.050383 ], [ 0.068321, 0.048580 ], [ 0.065660, 0.048580 ], [ 0.065660, 0.050383 ], [ 0.068321, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0683000", "Lat": "0.0540000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.055790 ], [ 0.070939, 0.053987 ], [ 0.068321, 0.053987 ], [ 0.068321, 0.055790 ], [ 0.070939, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0683000", "Lat": "0.0522000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.053987 ], [ 0.070939, 0.052185 ], [ 0.068321, 0.052185 ], [ 0.068321, 0.053987 ], [ 0.070939, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0683000", "Lat": "0.0504000", "KPI": 187, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.052185 ], [ 0.070939, 0.050383 ], [ 0.068321, 0.050383 ], [ 0.068321, 0.052185 ], [ 0.070939, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0683000", "Lat": "0.0486000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.050383 ], [ 0.070939, 0.048580 ], [ 0.068321, 0.048580 ], [ 0.068321, 0.050383 ], [ 0.070939, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0656800", "Lat": "0.0468000", "KPI": 669, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.048580 ], [ 0.068321, 0.046821 ], [ 0.065660, 0.046821 ], [ 0.065660, 0.048580 ], [ 0.068321, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0656800", "Lat": "0.0450000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.046821 ], [ 0.068321, 0.045018 ], [ 0.065660, 0.045018 ], [ 0.065660, 0.046821 ], [ 0.068321, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.045018 ], [ 0.068321, 0.043216 ], [ 0.065660, 0.043216 ], [ 0.065660, 0.045018 ], [ 0.068321, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0683000", "Lat": "0.0468000", "KPI": 336, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.048580 ], [ 0.070939, 0.046821 ], [ 0.068321, 0.046821 ], [ 0.068321, 0.048580 ], [ 0.070939, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0683000", "Lat": "0.0450000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.046821 ], [ 0.070939, 0.045018 ], [ 0.068321, 0.045018 ], [ 0.068321, 0.046821 ], [ 0.070939, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0683000", "Lat": "0.0432000", "KPI": 234, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.045018 ], [ 0.070939, 0.043216 ], [ 0.068321, 0.043216 ], [ 0.068321, 0.045018 ], [ 0.070939, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0709300", "Lat": "0.0540000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.055790 ], [ 0.073557, 0.053987 ], [ 0.070939, 0.053987 ], [ 0.070939, 0.055790 ], [ 0.073557, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0709300", "Lat": "0.0522000", "KPI": 146, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.053987 ], [ 0.073557, 0.052185 ], [ 0.070939, 0.052185 ], [ 0.070939, 0.053987 ], [ 0.073557, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0709300", "Lat": "0.0504000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.052185 ], [ 0.073557, 0.050383 ], [ 0.070939, 0.050383 ], [ 0.070939, 0.052185 ], [ 0.073557, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0486000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.050383 ], [ 0.073557, 0.048580 ], [ 0.070939, 0.048580 ], [ 0.070939, 0.050383 ], [ 0.073557, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0735600", "Lat": "0.0540000", "KPI": 441, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.055790 ], [ 0.076175, 0.053987 ], [ 0.073557, 0.053987 ], [ 0.073557, 0.055790 ], [ 0.076175, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0735600", "Lat": "0.0522000", "KPI": 40, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.053987 ], [ 0.076175, 0.052185 ], [ 0.073557, 0.052185 ], [ 0.073557, 0.053987 ], [ 0.076175, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0735600", "Lat": "0.0504000", "KPI": 21, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.052185 ], [ 0.076175, 0.050383 ], [ 0.073557, 0.050383 ], [ 0.073557, 0.052185 ], [ 0.076175, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0735600", "Lat": "0.0486000", "KPI": 76, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.050383 ], [ 0.076175, 0.048580 ], [ 0.073557, 0.048580 ], [ 0.073557, 0.050383 ], [ 0.076175, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0709300", "Lat": "0.0468000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.048580 ], [ 0.073557, 0.046821 ], [ 0.070939, 0.046821 ], [ 0.070939, 0.048580 ], [ 0.073557, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0709300", "Lat": "0.0450000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.046821 ], [ 0.073557, 0.045018 ], [ 0.070939, 0.045018 ], [ 0.070939, 0.046821 ], [ 0.073557, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0709300", "Lat": "0.0432000", "KPI": 493, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.045018 ], [ 0.073557, 0.043216 ], [ 0.070939, 0.043216 ], [ 0.070939, 0.045018 ], [ 0.073557, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0735600", "Lat": "0.0468000", "KPI": 580, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.048580 ], [ 0.076175, 0.046821 ], [ 0.073557, 0.046821 ], [ 0.073557, 0.048580 ], [ 0.076175, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0735600", "Lat": "0.0450000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.046821 ], [ 0.076175, 0.045018 ], [ 0.073557, 0.045018 ], [ 0.073557, 0.046821 ], [ 0.076175, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0735600", "Lat": "0.0432000", "KPI": 959, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.045018 ], [ 0.076175, 0.043216 ], [ 0.073557, 0.043216 ], [ 0.073557, 0.045018 ], [ 0.076175, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0761800", "Lat": "0.0558000", "KPI": 635, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.057592 ], [ 0.078793, 0.055790 ], [ 0.076175, 0.055790 ], [ 0.076175, 0.057592 ], [ 0.078793, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0788100", "Lat": "0.0558000", "KPI": 170, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.057592 ], [ 0.081453, 0.055790 ], [ 0.078793, 0.055790 ], [ 0.078793, 0.057592 ], [ 0.081453, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0814400", "Lat": "0.0558000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.057592 ], [ 0.084071, 0.055790 ], [ 0.081453, 0.055790 ], [ 0.081453, 0.057592 ], [ 0.084071, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0761800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.055790 ], [ 0.078793, 0.053987 ], [ 0.076175, 0.053987 ], [ 0.076175, 0.055790 ], [ 0.078793, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0761800", "Lat": "0.0522000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.053987 ], [ 0.078793, 0.052185 ], [ 0.076175, 0.052185 ], [ 0.076175, 0.053987 ], [ 0.078793, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0761800", "Lat": "0.0504000", "KPI": 148, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.052185 ], [ 0.078793, 0.050383 ], [ 0.076175, 0.050383 ], [ 0.076175, 0.052185 ], [ 0.078793, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0486000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.050383 ], [ 0.078793, 0.048580 ], [ 0.076175, 0.048580 ], [ 0.076175, 0.050383 ], [ 0.078793, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0788100", "Lat": "0.0540000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.055790 ], [ 0.081453, 0.053987 ], [ 0.078793, 0.053987 ], [ 0.078793, 0.055790 ], [ 0.081453, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0788100", "Lat": "0.0522000", "KPI": 197, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.053987 ], [ 0.081453, 0.052185 ], [ 0.078793, 0.052185 ], [ 0.078793, 0.053987 ], [ 0.081453, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0788100", "Lat": "0.0504000", "KPI": 757, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.052185 ], [ 0.081453, 0.050383 ], [ 0.078793, 0.050383 ], [ 0.078793, 0.052185 ], [ 0.081453, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0788100", "Lat": "0.0486000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.050383 ], [ 0.081453, 0.048580 ], [ 0.078793, 0.048580 ], [ 0.078793, 0.050383 ], [ 0.081453, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0761800", "Lat": "0.0468000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.048580 ], [ 0.078793, 0.046821 ], [ 0.076175, 0.046821 ], [ 0.076175, 0.048580 ], [ 0.078793, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0761800", "Lat": "0.0450000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.046821 ], [ 0.078793, 0.045018 ], [ 0.076175, 0.045018 ], [ 0.076175, 0.046821 ], [ 0.078793, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0432000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.045018 ], [ 0.078793, 0.043216 ], [ 0.076175, 0.043216 ], [ 0.076175, 0.045018 ], [ 0.078793, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0788100", "Lat": "0.0468000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.048580 ], [ 0.081453, 0.046821 ], [ 0.078793, 0.046821 ], [ 0.078793, 0.048580 ], [ 0.081453, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0788100", "Lat": "0.0450000", "KPI": 575, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.046821 ], [ 0.081453, 0.045018 ], [ 0.078793, 0.045018 ], [ 0.078793, 0.046821 ], [ 0.081453, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0788100", "Lat": "0.0432000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.045018 ], [ 0.081453, 0.043216 ], [ 0.078793, 0.043216 ], [ 0.078793, 0.045018 ], [ 0.081453, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0814400", "Lat": "0.0540000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.055790 ], [ 0.084071, 0.053987 ], [ 0.081453, 0.053987 ], [ 0.081453, 0.055790 ], [ 0.084071, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0814400", "Lat": "0.0522000", "KPI": 189, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.053987 ], [ 0.084071, 0.052185 ], [ 0.081453, 0.052185 ], [ 0.081453, 0.053987 ], [ 0.084071, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0814400", "Lat": "0.0504000", "KPI": 7, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.052185 ], [ 0.084071, 0.050383 ], [ 0.081453, 0.050383 ], [ 0.081453, 0.052185 ], [ 0.084071, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0814400", "Lat": "0.0486000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.050383 ], [ 0.084071, 0.048580 ], [ 0.081453, 0.048580 ], [ 0.081453, 0.050383 ], [ 0.084071, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0814400", "Lat": "0.0468000", "KPI": 447, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.048580 ], [ 0.084071, 0.046821 ], [ 0.081453, 0.046821 ], [ 0.081453, 0.048580 ], [ 0.084071, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814400", "Lat": "0.0450000", "KPI": 897, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.046821 ], [ 0.084071, 0.045018 ], [ 0.081453, 0.045018 ], [ 0.081453, 0.046821 ], [ 0.084071, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0814400", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.045018 ], [ 0.084071, 0.043216 ], [ 0.081453, 0.043216 ], [ 0.081453, 0.045018 ], [ 0.084071, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0446600", "Lat": "0.0414000", "KPI": 201, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.043216 ], [ 0.047293, 0.041413 ], [ 0.044675, 0.041413 ], [ 0.044675, 0.043216 ], [ 0.047293, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0446600", "Lat": "0.0396000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.041413 ], [ 0.047293, 0.039611 ], [ 0.044675, 0.039611 ], [ 0.044675, 0.041413 ], [ 0.047293, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446600", "Lat": "0.0378000", "KPI": 578, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.039611 ], [ 0.047293, 0.037808 ], [ 0.044675, 0.037808 ], [ 0.044675, 0.039611 ], [ 0.047293, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0472900", "Lat": "0.0414000", "KPI": 139, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.043216 ], [ 0.049911, 0.041413 ], [ 0.047293, 0.041413 ], [ 0.047293, 0.043216 ], [ 0.049911, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0472900", "Lat": "0.0396000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.041413 ], [ 0.049911, 0.039611 ], [ 0.047293, 0.039611 ], [ 0.047293, 0.041413 ], [ 0.049911, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0472900", "Lat": "0.0378000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.039611 ], [ 0.049911, 0.037808 ], [ 0.047293, 0.037808 ], [ 0.047293, 0.039611 ], [ 0.049911, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0446600", "Lat": "0.0360000", "KPI": 337, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.037808 ], [ 0.047293, 0.036006 ], [ 0.044675, 0.036006 ], [ 0.044675, 0.037808 ], [ 0.047293, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0446600", "Lat": "0.0342000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.036006 ], [ 0.047293, 0.034204 ], [ 0.044675, 0.034204 ], [ 0.044675, 0.036006 ], [ 0.047293, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0446600", "Lat": "0.0324000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.034204 ], [ 0.047293, 0.032401 ], [ 0.044675, 0.032401 ], [ 0.044675, 0.034204 ], [ 0.047293, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0472900", "Lat": "0.0360000", "KPI": 966, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.037808 ], [ 0.049911, 0.036006 ], [ 0.047293, 0.036006 ], [ 0.047293, 0.037808 ], [ 0.049911, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0472900", "Lat": "0.0342000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.036006 ], [ 0.049911, 0.034204 ], [ 0.047293, 0.034204 ], [ 0.047293, 0.036006 ], [ 0.049911, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0472900", "Lat": "0.0324000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.034204 ], [ 0.049911, 0.032401 ], [ 0.047293, 0.032401 ], [ 0.047293, 0.034204 ], [ 0.049911, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0499100", "Lat": "0.0414000", "KPI": 814, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.043216 ], [ 0.052528, 0.041413 ], [ 0.049911, 0.041413 ], [ 0.049911, 0.043216 ], [ 0.052528, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0499100", "Lat": "0.0396000", "KPI": 149, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.041413 ], [ 0.052528, 0.039611 ], [ 0.049911, 0.039611 ], [ 0.049911, 0.041413 ], [ 0.052528, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0499100", "Lat": "0.0378000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.039611 ], [ 0.052528, 0.037808 ], [ 0.049911, 0.037808 ], [ 0.049911, 0.039611 ], [ 0.052528, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0525400", "Lat": "0.0414000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.043216 ], [ 0.055189, 0.041413 ], [ 0.052528, 0.041413 ], [ 0.052528, 0.043216 ], [ 0.055189, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0525400", "Lat": "0.0396000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.041413 ], [ 0.055189, 0.039611 ], [ 0.052528, 0.039611 ], [ 0.052528, 0.041413 ], [ 0.055189, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0525400", "Lat": "0.0378000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.039611 ], [ 0.055189, 0.037808 ], [ 0.052528, 0.037808 ], [ 0.052528, 0.039611 ], [ 0.055189, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0499100", "Lat": "0.0360000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.037808 ], [ 0.052528, 0.036006 ], [ 0.049911, 0.036006 ], [ 0.049911, 0.037808 ], [ 0.052528, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0499100", "Lat": "0.0342000", "KPI": 398, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.036006 ], [ 0.052528, 0.034204 ], [ 0.049911, 0.034204 ], [ 0.049911, 0.036006 ], [ 0.052528, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0499100", "Lat": "0.0324000", "KPI": 883, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.034204 ], [ 0.052528, 0.032401 ], [ 0.049911, 0.032401 ], [ 0.049911, 0.034204 ], [ 0.052528, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0525400", "Lat": "0.0360000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.037808 ], [ 0.055189, 0.036006 ], [ 0.052528, 0.036006 ], [ 0.052528, 0.037808 ], [ 0.055189, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0525400", "Lat": "0.0342000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.036006 ], [ 0.055189, 0.034204 ], [ 0.052528, 0.034204 ], [ 0.052528, 0.036006 ], [ 0.055189, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0324000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.034204 ], [ 0.055189, 0.032401 ], [ 0.052528, 0.032401 ], [ 0.052528, 0.034204 ], [ 0.055189, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0446600", "Lat": "0.0306000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.032401 ], [ 0.047293, 0.030599 ], [ 0.044675, 0.030599 ], [ 0.044675, 0.032401 ], [ 0.047293, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0446600", "Lat": "0.0288000", "KPI": 285, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.030599 ], [ 0.047293, 0.028796 ], [ 0.044675, 0.028796 ], [ 0.044675, 0.030599 ], [ 0.047293, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0446600", "Lat": "0.0270000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.028796 ], [ 0.047293, 0.026994 ], [ 0.044675, 0.026994 ], [ 0.044675, 0.028796 ], [ 0.047293, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0472900", "Lat": "0.0306000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.032401 ], [ 0.049911, 0.030599 ], [ 0.047293, 0.030599 ], [ 0.047293, 0.032401 ], [ 0.049911, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0472900", "Lat": "0.0288000", "KPI": 180, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.030599 ], [ 0.049911, 0.028796 ], [ 0.047293, 0.028796 ], [ 0.047293, 0.030599 ], [ 0.049911, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0472900", "Lat": "0.0270000", "KPI": 694, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.028796 ], [ 0.049911, 0.026994 ], [ 0.047293, 0.026994 ], [ 0.047293, 0.028796 ], [ 0.049911, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0446600", "Lat": "0.0252000", "KPI": 299, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.026994 ], [ 0.047293, 0.025191 ], [ 0.044675, 0.025191 ], [ 0.044675, 0.026994 ], [ 0.047293, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446600", "Lat": "0.0234000", "KPI": 865, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.025191 ], [ 0.047293, 0.023389 ], [ 0.044675, 0.023389 ], [ 0.044675, 0.025191 ], [ 0.047293, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0446600", "Lat": "0.0216000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.023389 ], [ 0.047293, 0.021586 ], [ 0.044675, 0.021586 ], [ 0.044675, 0.023389 ], [ 0.047293, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0472900", "Lat": "0.0252000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.026994 ], [ 0.049911, 0.025191 ], [ 0.047293, 0.025191 ], [ 0.047293, 0.026994 ], [ 0.049911, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0472900", "Lat": "0.0234000", "KPI": 507, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.025191 ], [ 0.049911, 0.023389 ], [ 0.047293, 0.023389 ], [ 0.047293, 0.025191 ], [ 0.049911, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0216000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.023389 ], [ 0.049911, 0.021586 ], [ 0.047293, 0.021586 ], [ 0.047293, 0.023389 ], [ 0.049911, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0499100", "Lat": "0.0306000", "KPI": 777, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.032401 ], [ 0.052528, 0.030599 ], [ 0.049911, 0.030599 ], [ 0.049911, 0.032401 ], [ 0.052528, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0499100", "Lat": "0.0288000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.030599 ], [ 0.052528, 0.028796 ], [ 0.049911, 0.028796 ], [ 0.049911, 0.030599 ], [ 0.052528, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0499100", "Lat": "0.0270000", "KPI": 429, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.028796 ], [ 0.052528, 0.026994 ], [ 0.049911, 0.026994 ], [ 0.049911, 0.028796 ], [ 0.052528, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0525400", "Lat": "0.0306000", "KPI": 568, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.032401 ], [ 0.055189, 0.030599 ], [ 0.052528, 0.030599 ], [ 0.052528, 0.032401 ], [ 0.055189, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0525400", "Lat": "0.0288000", "KPI": 349, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.030599 ], [ 0.055189, 0.028796 ], [ 0.052528, 0.028796 ], [ 0.052528, 0.030599 ], [ 0.055189, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0525400", "Lat": "0.0270000", "KPI": 129, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.028796 ], [ 0.055189, 0.026994 ], [ 0.052528, 0.026994 ], [ 0.052528, 0.028796 ], [ 0.055189, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0499100", "Lat": "0.0252000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.026994 ], [ 0.052528, 0.025191 ], [ 0.049911, 0.025191 ], [ 0.049911, 0.026994 ], [ 0.052528, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0234000", "KPI": 294, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.025191 ], [ 0.052528, 0.023389 ], [ 0.049911, 0.023389 ], [ 0.049911, 0.025191 ], [ 0.052528, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0499100", "Lat": "0.0216000", "KPI": 747, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.023389 ], [ 0.052528, 0.021586 ], [ 0.049911, 0.021586 ], [ 0.049911, 0.023389 ], [ 0.052528, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0525400", "Lat": "0.0252000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.026994 ], [ 0.055189, 0.025191 ], [ 0.052528, 0.025191 ], [ 0.052528, 0.026994 ], [ 0.055189, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0525400", "Lat": "0.0234000", "KPI": 571, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.025191 ], [ 0.055189, 0.023389 ], [ 0.052528, 0.023389 ], [ 0.052528, 0.025191 ], [ 0.055189, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0525400", "Lat": "0.0216000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.023389 ], [ 0.055189, 0.021586 ], [ 0.052528, 0.021586 ], [ 0.052528, 0.023389 ], [ 0.055189, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0551700", "Lat": "0.0414000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.043216 ], [ 0.057807, 0.041413 ], [ 0.055189, 0.041413 ], [ 0.055189, 0.043216 ], [ 0.057807, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0551700", "Lat": "0.0396000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.041413 ], [ 0.057807, 0.039611 ], [ 0.055189, 0.039611 ], [ 0.055189, 0.041413 ], [ 0.057807, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0551700", "Lat": "0.0378000", "KPI": 479, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.039611 ], [ 0.057807, 0.037808 ], [ 0.055189, 0.037808 ], [ 0.055189, 0.039611 ], [ 0.057807, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0577900", "Lat": "0.0414000", "KPI": 199, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043216 ], [ 0.060425, 0.041413 ], [ 0.057807, 0.041413 ], [ 0.057807, 0.043216 ], [ 0.060425, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0577900", "Lat": "0.0396000", "KPI": 617, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.041413 ], [ 0.060425, 0.039611 ], [ 0.057807, 0.039611 ], [ 0.057807, 0.041413 ], [ 0.060425, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577900", "Lat": "0.0378000", "KPI": 895, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.039611 ], [ 0.060425, 0.037808 ], [ 0.057807, 0.037808 ], [ 0.057807, 0.039611 ], [ 0.060425, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0551700", "Lat": "0.0360000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.037808 ], [ 0.057807, 0.036006 ], [ 0.055189, 0.036006 ], [ 0.055189, 0.037808 ], [ 0.057807, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0551700", "Lat": "0.0342000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.036006 ], [ 0.057807, 0.034204 ], [ 0.055189, 0.034204 ], [ 0.055189, 0.036006 ], [ 0.057807, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0551700", "Lat": "0.0324000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.034204 ], [ 0.057807, 0.032401 ], [ 0.055189, 0.032401 ], [ 0.055189, 0.034204 ], [ 0.057807, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0577900", "Lat": "0.0360000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.037808 ], [ 0.060425, 0.036006 ], [ 0.057807, 0.036006 ], [ 0.057807, 0.037808 ], [ 0.060425, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0577900", "Lat": "0.0342000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.036006 ], [ 0.060425, 0.034204 ], [ 0.057807, 0.034204 ], [ 0.057807, 0.036006 ], [ 0.060425, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0577900", "Lat": "0.0324000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.034204 ], [ 0.060425, 0.032401 ], [ 0.057807, 0.032401 ], [ 0.057807, 0.034204 ], [ 0.060425, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0604200", "Lat": "0.0414000", "KPI": 960, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.043216 ], [ 0.063043, 0.041413 ], [ 0.060425, 0.041413 ], [ 0.060425, 0.043216 ], [ 0.063043, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0604200", "Lat": "0.0396000", "KPI": 659, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.041413 ], [ 0.063043, 0.039611 ], [ 0.060425, 0.039611 ], [ 0.060425, 0.041413 ], [ 0.063043, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0604200", "Lat": "0.0378000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.039611 ], [ 0.063043, 0.037808 ], [ 0.060425, 0.037808 ], [ 0.060425, 0.039611 ], [ 0.063043, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0630500", "Lat": "0.0414000", "KPI": 85, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.043216 ], [ 0.065660, 0.041413 ], [ 0.063043, 0.041413 ], [ 0.063043, 0.043216 ], [ 0.065660, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630500", "Lat": "0.0396000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.041413 ], [ 0.065660, 0.039611 ], [ 0.063043, 0.039611 ], [ 0.063043, 0.041413 ], [ 0.065660, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0630500", "Lat": "0.0378000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.039611 ], [ 0.065660, 0.037808 ], [ 0.063043, 0.037808 ], [ 0.063043, 0.039611 ], [ 0.065660, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0604200", "Lat": "0.0360000", "KPI": 21, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.037808 ], [ 0.063043, 0.036006 ], [ 0.060425, 0.036006 ], [ 0.060425, 0.037808 ], [ 0.063043, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0604200", "Lat": "0.0342000", "KPI": 902, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.036006 ], [ 0.063043, 0.034204 ], [ 0.060425, 0.034204 ], [ 0.060425, 0.036006 ], [ 0.063043, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0604200", "Lat": "0.0324000", "KPI": 896, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.034204 ], [ 0.063043, 0.032401 ], [ 0.060425, 0.032401 ], [ 0.060425, 0.034204 ], [ 0.063043, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0630500", "Lat": "0.0360000", "KPI": 39, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.037808 ], [ 0.065660, 0.036006 ], [ 0.063043, 0.036006 ], [ 0.063043, 0.037808 ], [ 0.065660, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0630500", "Lat": "0.0342000", "KPI": 4, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.036006 ], [ 0.065660, 0.034204 ], [ 0.063043, 0.034204 ], [ 0.063043, 0.036006 ], [ 0.065660, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0630500", "Lat": "0.0324000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.034204 ], [ 0.065660, 0.032401 ], [ 0.063043, 0.032401 ], [ 0.063043, 0.034204 ], [ 0.065660, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0551700", "Lat": "0.0306000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.032401 ], [ 0.057807, 0.030599 ], [ 0.055189, 0.030599 ], [ 0.055189, 0.032401 ], [ 0.057807, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551700", "Lat": "0.0288000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.030599 ], [ 0.057807, 0.028796 ], [ 0.055189, 0.028796 ], [ 0.055189, 0.030599 ], [ 0.057807, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0551700", "Lat": "0.0270000", "KPI": 324, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.028796 ], [ 0.057807, 0.026994 ], [ 0.055189, 0.026994 ], [ 0.055189, 0.028796 ], [ 0.057807, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0577900", "Lat": "0.0306000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032401 ], [ 0.060425, 0.030599 ], [ 0.057807, 0.030599 ], [ 0.057807, 0.032401 ], [ 0.060425, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0577900", "Lat": "0.0288000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.030599 ], [ 0.060425, 0.028796 ], [ 0.057807, 0.028796 ], [ 0.057807, 0.030599 ], [ 0.060425, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0577900", "Lat": "0.0270000", "KPI": 761, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.028796 ], [ 0.060425, 0.026994 ], [ 0.057807, 0.026994 ], [ 0.057807, 0.028796 ], [ 0.060425, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0551700", "Lat": "0.0252000", "KPI": 644, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.026994 ], [ 0.057807, 0.025191 ], [ 0.055189, 0.025191 ], [ 0.055189, 0.026994 ], [ 0.057807, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0551700", "Lat": "0.0234000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.025191 ], [ 0.057807, 0.023389 ], [ 0.055189, 0.023389 ], [ 0.055189, 0.025191 ], [ 0.057807, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0551700", "Lat": "0.0216000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.023389 ], [ 0.057807, 0.021586 ], [ 0.055189, 0.021586 ], [ 0.055189, 0.023389 ], [ 0.057807, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0577900", "Lat": "0.0252000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.026994 ], [ 0.060425, 0.025191 ], [ 0.057807, 0.025191 ], [ 0.057807, 0.026994 ], [ 0.060425, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0577900", "Lat": "0.0234000", "KPI": 289, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.025191 ], [ 0.060425, 0.023389 ], [ 0.057807, 0.023389 ], [ 0.057807, 0.025191 ], [ 0.060425, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0577900", "Lat": "0.0216000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.023389 ], [ 0.060425, 0.021586 ], [ 0.057807, 0.021586 ], [ 0.057807, 0.023389 ], [ 0.060425, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0604200", "Lat": "0.0306000", "KPI": 727, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.032401 ], [ 0.063043, 0.030599 ], [ 0.060425, 0.030599 ], [ 0.060425, 0.032401 ], [ 0.063043, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0604200", "Lat": "0.0288000", "KPI": 140, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.030599 ], [ 0.063043, 0.028796 ], [ 0.060425, 0.028796 ], [ 0.060425, 0.030599 ], [ 0.063043, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0604200", "Lat": "0.0270000", "KPI": 930, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.028796 ], [ 0.063043, 0.026994 ], [ 0.060425, 0.026994 ], [ 0.060425, 0.028796 ], [ 0.063043, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0630500", "Lat": "0.0306000", "KPI": 677, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.032401 ], [ 0.065660, 0.030599 ], [ 0.063043, 0.030599 ], [ 0.063043, 0.032401 ], [ 0.065660, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630500", "Lat": "0.0288000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.030599 ], [ 0.065660, 0.028796 ], [ 0.063043, 0.028796 ], [ 0.063043, 0.030599 ], [ 0.065660, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0630500", "Lat": "0.0270000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.028796 ], [ 0.065660, 0.026994 ], [ 0.063043, 0.026994 ], [ 0.063043, 0.028796 ], [ 0.065660, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0604200", "Lat": "0.0252000", "KPI": 937, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.026994 ], [ 0.063043, 0.025191 ], [ 0.060425, 0.025191 ], [ 0.060425, 0.026994 ], [ 0.063043, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0604200", "Lat": "0.0234000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.025191 ], [ 0.063043, 0.023389 ], [ 0.060425, 0.023389 ], [ 0.060425, 0.025191 ], [ 0.063043, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0604200", "Lat": "0.0216000", "KPI": 189, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.023389 ], [ 0.063043, 0.021586 ], [ 0.060425, 0.021586 ], [ 0.060425, 0.023389 ], [ 0.063043, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0630500", "Lat": "0.0252000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.026994 ], [ 0.065660, 0.025191 ], [ 0.063043, 0.025191 ], [ 0.063043, 0.026994 ], [ 0.065660, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0630500", "Lat": "0.0234000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.025191 ], [ 0.065660, 0.023389 ], [ 0.063043, 0.023389 ], [ 0.063043, 0.025191 ], [ 0.065660, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0630500", "Lat": "0.0216000", "KPI": 961, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.023389 ], [ 0.065660, 0.021586 ], [ 0.063043, 0.021586 ], [ 0.063043, 0.023389 ], [ 0.065660, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0446600", "Lat": "0.0198000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.021586 ], [ 0.047293, 0.019784 ], [ 0.044675, 0.019784 ], [ 0.044675, 0.021586 ], [ 0.047293, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0446600", "Lat": "0.0180000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.019784 ], [ 0.047293, 0.017982 ], [ 0.044675, 0.017982 ], [ 0.044675, 0.019784 ], [ 0.047293, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0446600", "Lat": "0.0162000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.017982 ], [ 0.047293, 0.016179 ], [ 0.044675, 0.016179 ], [ 0.044675, 0.017982 ], [ 0.047293, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0472900", "Lat": "0.0198000", "KPI": 601, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.021586 ], [ 0.049911, 0.019784 ], [ 0.047293, 0.019784 ], [ 0.047293, 0.021586 ], [ 0.049911, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0472900", "Lat": "0.0180000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.019784 ], [ 0.049911, 0.017982 ], [ 0.047293, 0.017982 ], [ 0.047293, 0.019784 ], [ 0.049911, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0472900", "Lat": "0.0162000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.017982 ], [ 0.049911, 0.016179 ], [ 0.047293, 0.016179 ], [ 0.047293, 0.017982 ], [ 0.049911, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0446600", "Lat": "0.0144000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.016179 ], [ 0.047293, 0.014420 ], [ 0.044675, 0.014420 ], [ 0.044675, 0.016179 ], [ 0.047293, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0446600", "Lat": "0.0126000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.014420 ], [ 0.047293, 0.012617 ], [ 0.044675, 0.012617 ], [ 0.044675, 0.014420 ], [ 0.047293, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0446600", "Lat": "0.0108000", "KPI": 915, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.012617 ], [ 0.047293, 0.010815 ], [ 0.044675, 0.010815 ], [ 0.044675, 0.012617 ], [ 0.047293, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0472900", "Lat": "0.0144000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.016179 ], [ 0.049911, 0.014420 ], [ 0.047293, 0.014420 ], [ 0.047293, 0.016179 ], [ 0.049911, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0472900", "Lat": "0.0126000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.014420 ], [ 0.049911, 0.012617 ], [ 0.047293, 0.012617 ], [ 0.047293, 0.014420 ], [ 0.049911, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.012617 ], [ 0.049911, 0.010815 ], [ 0.047293, 0.010815 ], [ 0.047293, 0.012617 ], [ 0.049911, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0499100", "Lat": "0.0198000", "KPI": 715, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.021586 ], [ 0.052528, 0.019784 ], [ 0.049911, 0.019784 ], [ 0.049911, 0.021586 ], [ 0.052528, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0499100", "Lat": "0.0180000", "KPI": 141, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.019784 ], [ 0.052528, 0.017982 ], [ 0.049911, 0.017982 ], [ 0.049911, 0.019784 ], [ 0.052528, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0499100", "Lat": "0.0162000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.017982 ], [ 0.052528, 0.016179 ], [ 0.049911, 0.016179 ], [ 0.049911, 0.017982 ], [ 0.052528, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0525400", "Lat": "0.0198000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.021586 ], [ 0.055189, 0.019784 ], [ 0.052528, 0.019784 ], [ 0.052528, 0.021586 ], [ 0.055189, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0525400", "Lat": "0.0180000", "KPI": 174, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.019784 ], [ 0.055189, 0.017982 ], [ 0.052528, 0.017982 ], [ 0.052528, 0.019784 ], [ 0.055189, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0525400", "Lat": "0.0162000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.017982 ], [ 0.055189, 0.016179 ], [ 0.052528, 0.016179 ], [ 0.052528, 0.017982 ], [ 0.055189, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0499100", "Lat": "0.0144000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.016179 ], [ 0.052528, 0.014420 ], [ 0.049911, 0.014420 ], [ 0.049911, 0.016179 ], [ 0.052528, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0499100", "Lat": "0.0126000", "KPI": 942, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.014420 ], [ 0.052528, 0.012617 ], [ 0.049911, 0.012617 ], [ 0.049911, 0.014420 ], [ 0.052528, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0499100", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.012617 ], [ 0.052528, 0.010815 ], [ 0.049911, 0.010815 ], [ 0.049911, 0.012617 ], [ 0.052528, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0525400", "Lat": "0.0144000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.016179 ], [ 0.055189, 0.014420 ], [ 0.052528, 0.014420 ], [ 0.052528, 0.016179 ], [ 0.055189, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0525400", "Lat": "0.0126000", "KPI": 69, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.014420 ], [ 0.055189, 0.012617 ], [ 0.052528, 0.012617 ], [ 0.052528, 0.014420 ], [ 0.055189, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.012617 ], [ 0.055189, 0.010815 ], [ 0.052528, 0.010815 ], [ 0.052528, 0.012617 ], [ 0.055189, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0446600", "Lat": "0.0090000", "KPI": 961, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.010815 ], [ 0.047293, 0.009012 ], [ 0.044675, 0.009012 ], [ 0.044675, 0.010815 ], [ 0.047293, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0446600", "Lat": "0.0072000", "KPI": 723, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.009012 ], [ 0.047293, 0.007210 ], [ 0.044675, 0.007210 ], [ 0.044675, 0.009012 ], [ 0.047293, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0446600", "Lat": "0.0054000", "KPI": 846, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.007210 ], [ 0.047293, 0.005407 ], [ 0.044675, 0.005407 ], [ 0.044675, 0.007210 ], [ 0.047293, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0472900", "Lat": "0.0090000", "KPI": 261, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.010815 ], [ 0.049911, 0.009012 ], [ 0.047293, 0.009012 ], [ 0.047293, 0.010815 ], [ 0.049911, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0472900", "Lat": "0.0072000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.009012 ], [ 0.049911, 0.007210 ], [ 0.047293, 0.007210 ], [ 0.047293, 0.009012 ], [ 0.049911, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0054000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.007210 ], [ 0.049911, 0.005407 ], [ 0.047293, 0.005407 ], [ 0.047293, 0.007210 ], [ 0.049911, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0446600", "Lat": "0.0036000", "KPI": 436, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.005407 ], [ 0.047293, 0.003605 ], [ 0.044675, 0.003605 ], [ 0.044675, 0.005407 ], [ 0.047293, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0446600", "Lat": "0.0018000", "KPI": 727, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.003605 ], [ 0.047293, 0.001802 ], [ 0.044675, 0.001802 ], [ 0.044675, 0.003605 ], [ 0.047293, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0446600", "Lat": "0.0000000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.001802 ], [ 0.047293, 0.000000 ], [ 0.044675, 0.000000 ], [ 0.044675, 0.001802 ], [ 0.047293, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0472900", "Lat": "0.0036000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.005407 ], [ 0.049911, 0.003605 ], [ 0.047293, 0.003605 ], [ 0.047293, 0.005407 ], [ 0.049911, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0018000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.003605 ], [ 0.049911, 0.001802 ], [ 0.047293, 0.001802 ], [ 0.047293, 0.003605 ], [ 0.049911, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.001802 ], [ 0.049911, 0.000000 ], [ 0.047293, 0.000000 ], [ 0.047293, 0.001802 ], [ 0.049911, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0499100", "Lat": "0.0090000", "KPI": 799, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.010815 ], [ 0.052528, 0.009012 ], [ 0.049911, 0.009012 ], [ 0.049911, 0.010815 ], [ 0.052528, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0499100", "Lat": "0.0072000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.009012 ], [ 0.052528, 0.007210 ], [ 0.049911, 0.007210 ], [ 0.049911, 0.009012 ], [ 0.052528, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0499100", "Lat": "0.0054000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.007210 ], [ 0.052528, 0.005407 ], [ 0.049911, 0.005407 ], [ 0.049911, 0.007210 ], [ 0.052528, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0525400", "Lat": "0.0090000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.010815 ], [ 0.055189, 0.009012 ], [ 0.052528, 0.009012 ], [ 0.052528, 0.010815 ], [ 0.055189, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0525400", "Lat": "0.0072000", "KPI": 416, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.009012 ], [ 0.055189, 0.007210 ], [ 0.052528, 0.007210 ], [ 0.052528, 0.009012 ], [ 0.055189, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0525400", "Lat": "0.0054000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.007210 ], [ 0.055189, 0.005407 ], [ 0.052528, 0.005407 ], [ 0.052528, 0.007210 ], [ 0.055189, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0499100", "Lat": "0.0036000", "KPI": 369, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.005407 ], [ 0.052528, 0.003605 ], [ 0.049911, 0.003605 ], [ 0.049911, 0.005407 ], [ 0.052528, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0018000", "KPI": 452, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.003605 ], [ 0.052528, 0.001802 ], [ 0.049911, 0.001802 ], [ 0.049911, 0.003605 ], [ 0.052528, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0499100", "Lat": "0.0000000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.001802 ], [ 0.052528, 0.000000 ], [ 0.049911, 0.000000 ], [ 0.049911, 0.001802 ], [ 0.052528, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0525400", "Lat": "0.0036000", "KPI": 632, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.005407 ], [ 0.055189, 0.003605 ], [ 0.052528, 0.003605 ], [ 0.052528, 0.005407 ], [ 0.055189, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0525400", "Lat": "0.0018000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.003605 ], [ 0.055189, 0.001802 ], [ 0.052528, 0.001802 ], [ 0.052528, 0.003605 ], [ 0.055189, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.001802 ], [ 0.055189, 0.000000 ], [ 0.052528, 0.000000 ], [ 0.052528, 0.001802 ], [ 0.055189, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0551700", "Lat": "0.0198000", "KPI": 672, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.021586 ], [ 0.057807, 0.019784 ], [ 0.055189, 0.019784 ], [ 0.055189, 0.021586 ], [ 0.057807, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0551700", "Lat": "0.0180000", "KPI": 43, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.019784 ], [ 0.057807, 0.017982 ], [ 0.055189, 0.017982 ], [ 0.055189, 0.019784 ], [ 0.057807, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0551700", "Lat": "0.0162000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.017982 ], [ 0.057807, 0.016179 ], [ 0.055189, 0.016179 ], [ 0.055189, 0.017982 ], [ 0.057807, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0577900", "Lat": "0.0198000", "KPI": 123, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021586 ], [ 0.060425, 0.019784 ], [ 0.057807, 0.019784 ], [ 0.057807, 0.021586 ], [ 0.060425, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0180000", "KPI": 883, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.019784 ], [ 0.060425, 0.017982 ], [ 0.057807, 0.017982 ], [ 0.057807, 0.019784 ], [ 0.060425, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0577900", "Lat": "0.0162000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.017982 ], [ 0.060425, 0.016179 ], [ 0.057807, 0.016179 ], [ 0.057807, 0.017982 ], [ 0.060425, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0551700", "Lat": "0.0144000", "KPI": 336, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.016179 ], [ 0.057807, 0.014420 ], [ 0.055189, 0.014420 ], [ 0.055189, 0.016179 ], [ 0.057807, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0551700", "Lat": "0.0126000", "KPI": 880, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.014420 ], [ 0.057807, 0.012617 ], [ 0.055189, 0.012617 ], [ 0.055189, 0.014420 ], [ 0.057807, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0551700", "Lat": "0.0108000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.012617 ], [ 0.057807, 0.010815 ], [ 0.055189, 0.010815 ], [ 0.055189, 0.012617 ], [ 0.057807, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0577900", "Lat": "0.0144000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016179 ], [ 0.060425, 0.014420 ], [ 0.057807, 0.014420 ], [ 0.057807, 0.016179 ], [ 0.060425, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0577900", "Lat": "0.0126000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.014420 ], [ 0.060425, 0.012617 ], [ 0.057807, 0.012617 ], [ 0.057807, 0.014420 ], [ 0.060425, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0577900", "Lat": "0.0108000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.012617 ], [ 0.060425, 0.010815 ], [ 0.057807, 0.010815 ], [ 0.057807, 0.012617 ], [ 0.060425, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0604200", "Lat": "0.0198000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.021586 ], [ 0.063043, 0.019784 ], [ 0.060425, 0.019784 ], [ 0.060425, 0.021586 ], [ 0.063043, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0604200", "Lat": "0.0180000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.019784 ], [ 0.063043, 0.017982 ], [ 0.060425, 0.017982 ], [ 0.060425, 0.019784 ], [ 0.063043, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0604200", "Lat": "0.0162000", "KPI": 695, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.017982 ], [ 0.063043, 0.016179 ], [ 0.060425, 0.016179 ], [ 0.060425, 0.017982 ], [ 0.063043, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0630500", "Lat": "0.0198000", "KPI": 593, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.021586 ], [ 0.065660, 0.019784 ], [ 0.063043, 0.019784 ], [ 0.063043, 0.021586 ], [ 0.065660, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0630500", "Lat": "0.0180000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.019784 ], [ 0.065660, 0.017982 ], [ 0.063043, 0.017982 ], [ 0.063043, 0.019784 ], [ 0.065660, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0630500", "Lat": "0.0162000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.017982 ], [ 0.065660, 0.016179 ], [ 0.063043, 0.016179 ], [ 0.063043, 0.017982 ], [ 0.065660, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0604200", "Lat": "0.0144000", "KPI": 452, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.016179 ], [ 0.063043, 0.014420 ], [ 0.060425, 0.014420 ], [ 0.060425, 0.016179 ], [ 0.063043, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0604200", "Lat": "0.0126000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.014420 ], [ 0.063043, 0.012617 ], [ 0.060425, 0.012617 ], [ 0.060425, 0.014420 ], [ 0.063043, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0604200", "Lat": "0.0108000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.012617 ], [ 0.063043, 0.010815 ], [ 0.060425, 0.010815 ], [ 0.060425, 0.012617 ], [ 0.063043, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0630500", "Lat": "0.0144000", "KPI": 549, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.016179 ], [ 0.065660, 0.014420 ], [ 0.063043, 0.014420 ], [ 0.063043, 0.016179 ], [ 0.065660, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0630500", "Lat": "0.0126000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.014420 ], [ 0.065660, 0.012617 ], [ 0.063043, 0.012617 ], [ 0.063043, 0.014420 ], [ 0.065660, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0108000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.012617 ], [ 0.065660, 0.010815 ], [ 0.063043, 0.010815 ], [ 0.063043, 0.012617 ], [ 0.065660, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0551700", "Lat": "0.0090000", "KPI": 50, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.010815 ], [ 0.057807, 0.009012 ], [ 0.055189, 0.009012 ], [ 0.055189, 0.010815 ], [ 0.057807, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0551700", "Lat": "0.0072000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.009012 ], [ 0.057807, 0.007210 ], [ 0.055189, 0.007210 ], [ 0.055189, 0.009012 ], [ 0.057807, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0551700", "Lat": "0.0054000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.007210 ], [ 0.057807, 0.005407 ], [ 0.055189, 0.005407 ], [ 0.055189, 0.007210 ], [ 0.057807, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0577900", "Lat": "0.0090000", "KPI": 705, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010815 ], [ 0.060425, 0.009012 ], [ 0.057807, 0.009012 ], [ 0.057807, 0.010815 ], [ 0.060425, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577900", "Lat": "0.0072000", "KPI": 422, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.009012 ], [ 0.060425, 0.007210 ], [ 0.057807, 0.007210 ], [ 0.057807, 0.009012 ], [ 0.060425, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0577900", "Lat": "0.0054000", "KPI": 209, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.007210 ], [ 0.060425, 0.005407 ], [ 0.057807, 0.005407 ], [ 0.057807, 0.007210 ], [ 0.060425, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0551700", "Lat": "0.0036000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.005407 ], [ 0.057807, 0.003605 ], [ 0.055189, 0.003605 ], [ 0.055189, 0.005407 ], [ 0.057807, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0551700", "Lat": "0.0018000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.003605 ], [ 0.057807, 0.001802 ], [ 0.055189, 0.001802 ], [ 0.055189, 0.003605 ], [ 0.057807, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0551700", "Lat": "0.0000000", "KPI": 65, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.001802 ], [ 0.057807, 0.000000 ], [ 0.055189, 0.000000 ], [ 0.055189, 0.001802 ], [ 0.057807, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577900", "Lat": "0.0036000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005407 ], [ 0.060425, 0.003605 ], [ 0.057807, 0.003605 ], [ 0.057807, 0.005407 ], [ 0.060425, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577900", "Lat": "0.0018000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.003605 ], [ 0.060425, 0.001802 ], [ 0.057807, 0.001802 ], [ 0.057807, 0.003605 ], [ 0.060425, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.001802 ], [ 0.060425, 0.000000 ], [ 0.057807, 0.000000 ], [ 0.057807, 0.001802 ], [ 0.060425, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0604200", "Lat": "0.0090000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.010815 ], [ 0.063043, 0.009012 ], [ 0.060425, 0.009012 ], [ 0.060425, 0.010815 ], [ 0.063043, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0604200", "Lat": "0.0072000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.009012 ], [ 0.063043, 0.007210 ], [ 0.060425, 0.007210 ], [ 0.060425, 0.009012 ], [ 0.063043, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0604200", "Lat": "0.0054000", "KPI": 62, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.007210 ], [ 0.063043, 0.005407 ], [ 0.060425, 0.005407 ], [ 0.060425, 0.007210 ], [ 0.063043, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0630500", "Lat": "0.0090000", "KPI": 143, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.010815 ], [ 0.065660, 0.009012 ], [ 0.063043, 0.009012 ], [ 0.063043, 0.010815 ], [ 0.065660, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0630500", "Lat": "0.0072000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.009012 ], [ 0.065660, 0.007210 ], [ 0.063043, 0.007210 ], [ 0.063043, 0.009012 ], [ 0.065660, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0630500", "Lat": "0.0054000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.007210 ], [ 0.065660, 0.005407 ], [ 0.063043, 0.005407 ], [ 0.063043, 0.007210 ], [ 0.065660, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0604200", "Lat": "0.0036000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.005407 ], [ 0.063043, 0.003605 ], [ 0.060425, 0.003605 ], [ 0.060425, 0.005407 ], [ 0.063043, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0604200", "Lat": "0.0018000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.003605 ], [ 0.063043, 0.001802 ], [ 0.060425, 0.001802 ], [ 0.060425, 0.003605 ], [ 0.063043, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0604200", "Lat": "0.0000000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.001802 ], [ 0.063043, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.001802 ], [ 0.063043, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0630500", "Lat": "0.0036000", "KPI": 419, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.005407 ], [ 0.065660, 0.003605 ], [ 0.063043, 0.003605 ], [ 0.063043, 0.005407 ], [ 0.065660, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0018000", "KPI": 873, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.003605 ], [ 0.065660, 0.001802 ], [ 0.063043, 0.001802 ], [ 0.063043, 0.003605 ], [ 0.065660, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0630500", "Lat": "0.0000000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.001802 ], [ 0.065660, 0.000000 ], [ 0.063043, 0.000000 ], [ 0.063043, 0.001802 ], [ 0.065660, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0656800", "Lat": "0.0414000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.043216 ], [ 0.068321, 0.041413 ], [ 0.065660, 0.041413 ], [ 0.065660, 0.043216 ], [ 0.068321, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0656800", "Lat": "0.0396000", "KPI": 594, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.041413 ], [ 0.068321, 0.039611 ], [ 0.065660, 0.039611 ], [ 0.065660, 0.041413 ], [ 0.068321, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0656800", "Lat": "0.0378000", "KPI": 887, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.039611 ], [ 0.068321, 0.037808 ], [ 0.065660, 0.037808 ], [ 0.065660, 0.039611 ], [ 0.068321, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0683000", "Lat": "0.0414000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.043216 ], [ 0.070939, 0.041413 ], [ 0.068321, 0.041413 ], [ 0.068321, 0.043216 ], [ 0.070939, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0683000", "Lat": "0.0396000", "KPI": 753, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.041413 ], [ 0.070939, 0.039611 ], [ 0.068321, 0.039611 ], [ 0.068321, 0.041413 ], [ 0.070939, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0683000", "Lat": "0.0378000", "KPI": 146, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.039611 ], [ 0.070939, 0.037808 ], [ 0.068321, 0.037808 ], [ 0.068321, 0.039611 ], [ 0.070939, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0656800", "Lat": "0.0360000", "KPI": 766, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.037808 ], [ 0.068321, 0.036006 ], [ 0.065660, 0.036006 ], [ 0.065660, 0.037808 ], [ 0.068321, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0656800", "Lat": "0.0342000", "KPI": 451, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.036006 ], [ 0.068321, 0.034204 ], [ 0.065660, 0.034204 ], [ 0.065660, 0.036006 ], [ 0.068321, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0656800", "Lat": "0.0324000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.034204 ], [ 0.068321, 0.032401 ], [ 0.065660, 0.032401 ], [ 0.065660, 0.034204 ], [ 0.068321, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683000", "Lat": "0.0360000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.037808 ], [ 0.070939, 0.036006 ], [ 0.068321, 0.036006 ], [ 0.068321, 0.037808 ], [ 0.070939, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0683000", "Lat": "0.0342000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.036006 ], [ 0.070939, 0.034204 ], [ 0.068321, 0.034204 ], [ 0.068321, 0.036006 ], [ 0.070939, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0683000", "Lat": "0.0324000", "KPI": 650, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.034204 ], [ 0.070939, 0.032401 ], [ 0.068321, 0.032401 ], [ 0.068321, 0.034204 ], [ 0.070939, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0709300", "Lat": "0.0414000", "KPI": 744, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.043216 ], [ 0.073557, 0.041413 ], [ 0.070939, 0.041413 ], [ 0.070939, 0.043216 ], [ 0.073557, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0396000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.041413 ], [ 0.073557, 0.039611 ], [ 0.070939, 0.039611 ], [ 0.070939, 0.041413 ], [ 0.073557, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0709300", "Lat": "0.0378000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.039611 ], [ 0.073557, 0.037808 ], [ 0.070939, 0.037808 ], [ 0.070939, 0.039611 ], [ 0.073557, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0735600", "Lat": "0.0414000", "KPI": 904, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.043216 ], [ 0.076175, 0.041413 ], [ 0.073557, 0.041413 ], [ 0.073557, 0.043216 ], [ 0.076175, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0735600", "Lat": "0.0396000", "KPI": 525, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.041413 ], [ 0.076175, 0.039611 ], [ 0.073557, 0.039611 ], [ 0.073557, 0.041413 ], [ 0.076175, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0735600", "Lat": "0.0378000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.039611 ], [ 0.076175, 0.037808 ], [ 0.073557, 0.037808 ], [ 0.073557, 0.039611 ], [ 0.076175, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0709300", "Lat": "0.0360000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.037808 ], [ 0.073557, 0.036006 ], [ 0.070939, 0.036006 ], [ 0.070939, 0.037808 ], [ 0.073557, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0709300", "Lat": "0.0342000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.036006 ], [ 0.073557, 0.034204 ], [ 0.070939, 0.034204 ], [ 0.070939, 0.036006 ], [ 0.073557, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0709300", "Lat": "0.0324000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.034204 ], [ 0.073557, 0.032401 ], [ 0.070939, 0.032401 ], [ 0.070939, 0.034204 ], [ 0.073557, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0735600", "Lat": "0.0360000", "KPI": 774, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.037808 ], [ 0.076175, 0.036006 ], [ 0.073557, 0.036006 ], [ 0.073557, 0.037808 ], [ 0.076175, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0735600", "Lat": "0.0342000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.036006 ], [ 0.076175, 0.034204 ], [ 0.073557, 0.034204 ], [ 0.073557, 0.036006 ], [ 0.076175, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0735600", "Lat": "0.0324000", "KPI": 397, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.034204 ], [ 0.076175, 0.032401 ], [ 0.073557, 0.032401 ], [ 0.073557, 0.034204 ], [ 0.076175, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0656800", "Lat": "0.0306000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.032401 ], [ 0.068321, 0.030599 ], [ 0.065660, 0.030599 ], [ 0.065660, 0.032401 ], [ 0.068321, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0656800", "Lat": "0.0288000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.030599 ], [ 0.068321, 0.028796 ], [ 0.065660, 0.028796 ], [ 0.065660, 0.030599 ], [ 0.068321, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0656800", "Lat": "0.0270000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.028796 ], [ 0.068321, 0.026994 ], [ 0.065660, 0.026994 ], [ 0.065660, 0.028796 ], [ 0.068321, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0683000", "Lat": "0.0306000", "KPI": 835, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.032401 ], [ 0.070939, 0.030599 ], [ 0.068321, 0.030599 ], [ 0.068321, 0.032401 ], [ 0.070939, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0683000", "Lat": "0.0288000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.030599 ], [ 0.070939, 0.028796 ], [ 0.068321, 0.028796 ], [ 0.068321, 0.030599 ], [ 0.070939, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0683000", "Lat": "0.0270000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.028796 ], [ 0.070939, 0.026994 ], [ 0.068321, 0.026994 ], [ 0.068321, 0.028796 ], [ 0.070939, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0656800", "Lat": "0.0252000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.026994 ], [ 0.068321, 0.025191 ], [ 0.065660, 0.025191 ], [ 0.065660, 0.026994 ], [ 0.068321, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0656800", "Lat": "0.0234000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.025191 ], [ 0.068321, 0.023389 ], [ 0.065660, 0.023389 ], [ 0.065660, 0.025191 ], [ 0.068321, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.023389 ], [ 0.068321, 0.021586 ], [ 0.065660, 0.021586 ], [ 0.065660, 0.023389 ], [ 0.068321, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0683000", "Lat": "0.0252000", "KPI": 626, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.026994 ], [ 0.070939, 0.025191 ], [ 0.068321, 0.025191 ], [ 0.068321, 0.026994 ], [ 0.070939, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0683000", "Lat": "0.0234000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.025191 ], [ 0.070939, 0.023389 ], [ 0.068321, 0.023389 ], [ 0.068321, 0.025191 ], [ 0.070939, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0683000", "Lat": "0.0216000", "KPI": 301, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.023389 ], [ 0.070939, 0.021586 ], [ 0.068321, 0.021586 ], [ 0.068321, 0.023389 ], [ 0.070939, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0709300", "Lat": "0.0306000", "KPI": 444, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.032401 ], [ 0.073557, 0.030599 ], [ 0.070939, 0.030599 ], [ 0.070939, 0.032401 ], [ 0.073557, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709300", "Lat": "0.0288000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.030599 ], [ 0.073557, 0.028796 ], [ 0.070939, 0.028796 ], [ 0.070939, 0.030599 ], [ 0.073557, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0709300", "Lat": "0.0270000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.028796 ], [ 0.073557, 0.026994 ], [ 0.070939, 0.026994 ], [ 0.070939, 0.028796 ], [ 0.073557, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0735600", "Lat": "0.0306000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.032401 ], [ 0.076175, 0.030599 ], [ 0.073557, 0.030599 ], [ 0.073557, 0.032401 ], [ 0.076175, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0735600", "Lat": "0.0288000", "KPI": 362, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.030599 ], [ 0.076175, 0.028796 ], [ 0.073557, 0.028796 ], [ 0.073557, 0.030599 ], [ 0.076175, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0735600", "Lat": "0.0270000", "KPI": 969, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.028796 ], [ 0.076175, 0.026994 ], [ 0.073557, 0.026994 ], [ 0.073557, 0.028796 ], [ 0.076175, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0252000", "KPI": 445, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.026994 ], [ 0.073557, 0.025191 ], [ 0.070939, 0.025191 ], [ 0.070939, 0.026994 ], [ 0.073557, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0709300", "Lat": "0.0234000", "KPI": 811, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.025191 ], [ 0.073557, 0.023389 ], [ 0.070939, 0.023389 ], [ 0.070939, 0.025191 ], [ 0.073557, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709300", "Lat": "0.0216000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.023389 ], [ 0.073557, 0.021586 ], [ 0.070939, 0.021586 ], [ 0.070939, 0.023389 ], [ 0.073557, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0735600", "Lat": "0.0252000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.026994 ], [ 0.076175, 0.025191 ], [ 0.073557, 0.025191 ], [ 0.073557, 0.026994 ], [ 0.076175, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0735600", "Lat": "0.0234000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.025191 ], [ 0.076175, 0.023389 ], [ 0.073557, 0.023389 ], [ 0.073557, 0.025191 ], [ 0.076175, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0735600", "Lat": "0.0216000", "KPI": 878, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.023389 ], [ 0.076175, 0.021586 ], [ 0.073557, 0.021586 ], [ 0.073557, 0.023389 ], [ 0.076175, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0761800", "Lat": "0.0414000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.043216 ], [ 0.078793, 0.041413 ], [ 0.076175, 0.041413 ], [ 0.076175, 0.043216 ], [ 0.078793, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0761800", "Lat": "0.0396000", "KPI": 462, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.041413 ], [ 0.078793, 0.039611 ], [ 0.076175, 0.039611 ], [ 0.076175, 0.041413 ], [ 0.078793, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0761800", "Lat": "0.0378000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.039611 ], [ 0.078793, 0.037808 ], [ 0.076175, 0.037808 ], [ 0.076175, 0.039611 ], [ 0.078793, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0788100", "Lat": "0.0414000", "KPI": 790, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.043216 ], [ 0.081453, 0.041413 ], [ 0.078793, 0.041413 ], [ 0.078793, 0.043216 ], [ 0.081453, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0788100", "Lat": "0.0396000", "KPI": 771, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.041413 ], [ 0.081453, 0.039611 ], [ 0.078793, 0.039611 ], [ 0.078793, 0.041413 ], [ 0.081453, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0788100", "Lat": "0.0378000", "KPI": 74, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.039611 ], [ 0.081453, 0.037808 ], [ 0.078793, 0.037808 ], [ 0.078793, 0.039611 ], [ 0.081453, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0761800", "Lat": "0.0360000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.037808 ], [ 0.078793, 0.036006 ], [ 0.076175, 0.036006 ], [ 0.076175, 0.037808 ], [ 0.078793, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0761800", "Lat": "0.0342000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.036006 ], [ 0.078793, 0.034204 ], [ 0.076175, 0.034204 ], [ 0.076175, 0.036006 ], [ 0.078793, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0761800", "Lat": "0.0324000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.034204 ], [ 0.078793, 0.032401 ], [ 0.076175, 0.032401 ], [ 0.076175, 0.034204 ], [ 0.078793, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0788100", "Lat": "0.0360000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.037808 ], [ 0.081453, 0.036006 ], [ 0.078793, 0.036006 ], [ 0.078793, 0.037808 ], [ 0.081453, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0788100", "Lat": "0.0342000", "KPI": 35, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.036006 ], [ 0.081453, 0.034204 ], [ 0.078793, 0.034204 ], [ 0.078793, 0.036006 ], [ 0.081453, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0788100", "Lat": "0.0324000", "KPI": 141, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.034204 ], [ 0.081453, 0.032401 ], [ 0.078793, 0.032401 ], [ 0.078793, 0.034204 ], [ 0.081453, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0814400", "Lat": "0.0414000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.043216 ], [ 0.084071, 0.041413 ], [ 0.081453, 0.041413 ], [ 0.081453, 0.043216 ], [ 0.084071, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0814400", "Lat": "0.0396000", "KPI": 349, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.041413 ], [ 0.084071, 0.039611 ], [ 0.081453, 0.039611 ], [ 0.081453, 0.041413 ], [ 0.084071, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0814400", "Lat": "0.0378000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.039611 ], [ 0.084071, 0.037808 ], [ 0.081453, 0.037808 ], [ 0.081453, 0.039611 ], [ 0.084071, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0814400", "Lat": "0.0360000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.037808 ], [ 0.084071, 0.036006 ], [ 0.081453, 0.036006 ], [ 0.081453, 0.037808 ], [ 0.084071, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0342000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.036006 ], [ 0.084071, 0.034204 ], [ 0.081453, 0.034204 ], [ 0.081453, 0.036006 ], [ 0.084071, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0814400", "Lat": "0.0324000", "KPI": 474, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.034204 ], [ 0.084071, 0.032401 ], [ 0.081453, 0.032401 ], [ 0.081453, 0.034204 ], [ 0.084071, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0761800", "Lat": "0.0306000", "KPI": 107, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.032401 ], [ 0.078793, 0.030599 ], [ 0.076175, 0.030599 ], [ 0.076175, 0.032401 ], [ 0.078793, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0761800", "Lat": "0.0288000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.030599 ], [ 0.078793, 0.028796 ], [ 0.076175, 0.028796 ], [ 0.076175, 0.030599 ], [ 0.078793, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0761800", "Lat": "0.0270000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.028796 ], [ 0.078793, 0.026994 ], [ 0.076175, 0.026994 ], [ 0.076175, 0.028796 ], [ 0.078793, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0788100", "Lat": "0.0306000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.032401 ], [ 0.081453, 0.030599 ], [ 0.078793, 0.030599 ], [ 0.078793, 0.032401 ], [ 0.081453, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0788100", "Lat": "0.0288000", "KPI": 345, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.030599 ], [ 0.081453, 0.028796 ], [ 0.078793, 0.028796 ], [ 0.078793, 0.030599 ], [ 0.081453, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0788100", "Lat": "0.0270000", "KPI": 591, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.028796 ], [ 0.081453, 0.026994 ], [ 0.078793, 0.026994 ], [ 0.078793, 0.028796 ], [ 0.081453, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0761800", "Lat": "0.0252000", "KPI": 857, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.026994 ], [ 0.078793, 0.025191 ], [ 0.076175, 0.025191 ], [ 0.076175, 0.026994 ], [ 0.078793, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0761800", "Lat": "0.0234000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.025191 ], [ 0.078793, 0.023389 ], [ 0.076175, 0.023389 ], [ 0.076175, 0.025191 ], [ 0.078793, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0216000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.023389 ], [ 0.078793, 0.021586 ], [ 0.076175, 0.021586 ], [ 0.076175, 0.023389 ], [ 0.078793, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0788100", "Lat": "0.0252000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.026994 ], [ 0.081453, 0.025191 ], [ 0.078793, 0.025191 ], [ 0.078793, 0.026994 ], [ 0.081453, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0788100", "Lat": "0.0234000", "KPI": 223, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.025191 ], [ 0.081453, 0.023389 ], [ 0.078793, 0.023389 ], [ 0.078793, 0.025191 ], [ 0.081453, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0788100", "Lat": "0.0216000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.023389 ], [ 0.081453, 0.021586 ], [ 0.078793, 0.021586 ], [ 0.078793, 0.023389 ], [ 0.081453, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0814400", "Lat": "0.0306000", "KPI": 276, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.032401 ], [ 0.084071, 0.030599 ], [ 0.081453, 0.030599 ], [ 0.081453, 0.032401 ], [ 0.084071, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814400", "Lat": "0.0288000", "KPI": 827, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.030599 ], [ 0.084071, 0.028796 ], [ 0.081453, 0.028796 ], [ 0.081453, 0.030599 ], [ 0.084071, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0270000", "KPI": 934, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.028796 ], [ 0.084071, 0.026994 ], [ 0.081453, 0.026994 ], [ 0.081453, 0.028796 ], [ 0.084071, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0814400", "Lat": "0.0252000", "KPI": 462, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.026994 ], [ 0.084071, 0.025191 ], [ 0.081453, 0.025191 ], [ 0.081453, 0.026994 ], [ 0.084071, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0814400", "Lat": "0.0234000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.025191 ], [ 0.084071, 0.023389 ], [ 0.081453, 0.023389 ], [ 0.081453, 0.025191 ], [ 0.084071, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0814400", "Lat": "0.0216000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.023389 ], [ 0.084071, 0.021586 ], [ 0.081453, 0.021586 ], [ 0.081453, 0.023389 ], [ 0.084071, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0656800", "Lat": "0.0198000", "KPI": 132, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.021586 ], [ 0.068321, 0.019784 ], [ 0.065660, 0.019784 ], [ 0.065660, 0.021586 ], [ 0.068321, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0656800", "Lat": "0.0180000", "KPI": 238, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.019784 ], [ 0.068321, 0.017982 ], [ 0.065660, 0.017982 ], [ 0.065660, 0.019784 ], [ 0.068321, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0656800", "Lat": "0.0162000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.017982 ], [ 0.068321, 0.016179 ], [ 0.065660, 0.016179 ], [ 0.065660, 0.017982 ], [ 0.068321, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0683000", "Lat": "0.0198000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.021586 ], [ 0.070939, 0.019784 ], [ 0.068321, 0.019784 ], [ 0.068321, 0.021586 ], [ 0.070939, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0683000", "Lat": "0.0180000", "KPI": 412, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.019784 ], [ 0.070939, 0.017982 ], [ 0.068321, 0.017982 ], [ 0.068321, 0.019784 ], [ 0.070939, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0683000", "Lat": "0.0162000", "KPI": 700, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.017982 ], [ 0.070939, 0.016179 ], [ 0.068321, 0.016179 ], [ 0.068321, 0.017982 ], [ 0.070939, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0144000", "KPI": 522, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.016179 ], [ 0.068321, 0.014420 ], [ 0.065660, 0.014420 ], [ 0.065660, 0.016179 ], [ 0.068321, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0656800", "Lat": "0.0126000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.014420 ], [ 0.068321, 0.012617 ], [ 0.065660, 0.012617 ], [ 0.065660, 0.014420 ], [ 0.068321, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.012617 ], [ 0.068321, 0.010815 ], [ 0.065660, 0.010815 ], [ 0.065660, 0.012617 ], [ 0.068321, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0683000", "Lat": "0.0144000", "KPI": 197, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.016179 ], [ 0.070939, 0.014420 ], [ 0.068321, 0.014420 ], [ 0.068321, 0.016179 ], [ 0.070939, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0683000", "Lat": "0.0126000", "KPI": 437, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.014420 ], [ 0.070939, 0.012617 ], [ 0.068321, 0.012617 ], [ 0.068321, 0.014420 ], [ 0.070939, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0683000", "Lat": "0.0108000", "KPI": 638, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.012617 ], [ 0.070939, 0.010815 ], [ 0.068321, 0.010815 ], [ 0.068321, 0.012617 ], [ 0.070939, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0709300", "Lat": "0.0198000", "KPI": 177, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.021586 ], [ 0.073557, 0.019784 ], [ 0.070939, 0.019784 ], [ 0.070939, 0.021586 ], [ 0.073557, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0709300", "Lat": "0.0180000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.019784 ], [ 0.073557, 0.017982 ], [ 0.070939, 0.017982 ], [ 0.070939, 0.019784 ], [ 0.073557, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709300", "Lat": "0.0162000", "KPI": 737, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.017982 ], [ 0.073557, 0.016179 ], [ 0.070939, 0.016179 ], [ 0.070939, 0.017982 ], [ 0.073557, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0735600", "Lat": "0.0198000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.021586 ], [ 0.076175, 0.019784 ], [ 0.073557, 0.019784 ], [ 0.073557, 0.021586 ], [ 0.076175, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0735600", "Lat": "0.0180000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.019784 ], [ 0.076175, 0.017982 ], [ 0.073557, 0.017982 ], [ 0.073557, 0.019784 ], [ 0.076175, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0735600", "Lat": "0.0162000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.017982 ], [ 0.076175, 0.016179 ], [ 0.073557, 0.016179 ], [ 0.073557, 0.017982 ], [ 0.076175, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0709300", "Lat": "0.0144000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.016179 ], [ 0.073557, 0.014420 ], [ 0.070939, 0.014420 ], [ 0.070939, 0.016179 ], [ 0.073557, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0709300", "Lat": "0.0126000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.014420 ], [ 0.073557, 0.012617 ], [ 0.070939, 0.012617 ], [ 0.070939, 0.014420 ], [ 0.073557, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0709300", "Lat": "0.0108000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.012617 ], [ 0.073557, 0.010815 ], [ 0.070939, 0.010815 ], [ 0.070939, 0.012617 ], [ 0.073557, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0735600", "Lat": "0.0144000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.016179 ], [ 0.076175, 0.014420 ], [ 0.073557, 0.014420 ], [ 0.073557, 0.016179 ], [ 0.076175, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0735600", "Lat": "0.0126000", "KPI": 949, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.014420 ], [ 0.076175, 0.012617 ], [ 0.073557, 0.012617 ], [ 0.073557, 0.014420 ], [ 0.076175, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0735600", "Lat": "0.0108000", "KPI": 630, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.012617 ], [ 0.076175, 0.010815 ], [ 0.073557, 0.010815 ], [ 0.073557, 0.012617 ], [ 0.076175, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0090000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.010815 ], [ 0.068321, 0.009012 ], [ 0.065660, 0.009012 ], [ 0.065660, 0.010815 ], [ 0.068321, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0656800", "Lat": "0.0072000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.009012 ], [ 0.068321, 0.007210 ], [ 0.065660, 0.007210 ], [ 0.065660, 0.009012 ], [ 0.068321, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656800", "Lat": "0.0054000", "KPI": 51, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.007210 ], [ 0.068321, 0.005407 ], [ 0.065660, 0.005407 ], [ 0.065660, 0.007210 ], [ 0.068321, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0683000", "Lat": "0.0090000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.010815 ], [ 0.070939, 0.009012 ], [ 0.068321, 0.009012 ], [ 0.068321, 0.010815 ], [ 0.070939, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0683000", "Lat": "0.0072000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.009012 ], [ 0.070939, 0.007210 ], [ 0.068321, 0.007210 ], [ 0.068321, 0.009012 ], [ 0.070939, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0683000", "Lat": "0.0054000", "KPI": 681, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.007210 ], [ 0.070939, 0.005407 ], [ 0.068321, 0.005407 ], [ 0.068321, 0.007210 ], [ 0.070939, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0656800", "Lat": "0.0036000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.005407 ], [ 0.068321, 0.003605 ], [ 0.065660, 0.003605 ], [ 0.065660, 0.005407 ], [ 0.068321, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656800", "Lat": "0.0018000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.003605 ], [ 0.068321, 0.001802 ], [ 0.065660, 0.001802 ], [ 0.065660, 0.003605 ], [ 0.068321, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.001802 ], [ 0.068321, 0.000000 ], [ 0.065660, 0.000000 ], [ 0.065660, 0.001802 ], [ 0.068321, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0683000", "Lat": "0.0036000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.005407 ], [ 0.070939, 0.003605 ], [ 0.068321, 0.003605 ], [ 0.068321, 0.005407 ], [ 0.070939, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0683000", "Lat": "0.0018000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.003605 ], [ 0.070939, 0.001802 ], [ 0.068321, 0.001802 ], [ 0.068321, 0.003605 ], [ 0.070939, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0683000", "Lat": "0.0000000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.001802 ], [ 0.070939, 0.000000 ], [ 0.068321, 0.000000 ], [ 0.068321, 0.001802 ], [ 0.070939, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0709300", "Lat": "0.0090000", "KPI": 382, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.010815 ], [ 0.073557, 0.009012 ], [ 0.070939, 0.009012 ], [ 0.070939, 0.010815 ], [ 0.073557, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0709300", "Lat": "0.0072000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.009012 ], [ 0.073557, 0.007210 ], [ 0.070939, 0.007210 ], [ 0.070939, 0.009012 ], [ 0.073557, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0709300", "Lat": "0.0054000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.007210 ], [ 0.073557, 0.005407 ], [ 0.070939, 0.005407 ], [ 0.070939, 0.007210 ], [ 0.073557, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0735600", "Lat": "0.0090000", "KPI": 673, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.010815 ], [ 0.076175, 0.009012 ], [ 0.073557, 0.009012 ], [ 0.073557, 0.010815 ], [ 0.076175, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0735600", "Lat": "0.0072000", "KPI": 217, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.009012 ], [ 0.076175, 0.007210 ], [ 0.073557, 0.007210 ], [ 0.073557, 0.009012 ], [ 0.076175, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0735600", "Lat": "0.0054000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.007210 ], [ 0.076175, 0.005407 ], [ 0.073557, 0.005407 ], [ 0.073557, 0.007210 ], [ 0.076175, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0709300", "Lat": "0.0036000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.005407 ], [ 0.073557, 0.003605 ], [ 0.070939, 0.003605 ], [ 0.070939, 0.005407 ], [ 0.073557, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0709300", "Lat": "0.0018000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.003605 ], [ 0.073557, 0.001802 ], [ 0.070939, 0.001802 ], [ 0.070939, 0.003605 ], [ 0.073557, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.001802 ], [ 0.073557, 0.000000 ], [ 0.070939, 0.000000 ], [ 0.070939, 0.001802 ], [ 0.073557, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0735600", "Lat": "0.0036000", "KPI": 525, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.005407 ], [ 0.076175, 0.003605 ], [ 0.073557, 0.003605 ], [ 0.073557, 0.005407 ], [ 0.076175, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0735600", "Lat": "0.0018000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.003605 ], [ 0.076175, 0.001802 ], [ 0.073557, 0.001802 ], [ 0.073557, 0.003605 ], [ 0.076175, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0735600", "Lat": "0.0000000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.001802 ], [ 0.076175, 0.000000 ], [ 0.073557, 0.000000 ], [ 0.073557, 0.001802 ], [ 0.076175, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0761800", "Lat": "0.0198000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.021586 ], [ 0.078793, 0.019784 ], [ 0.076175, 0.019784 ], [ 0.076175, 0.021586 ], [ 0.078793, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761800", "Lat": "0.0180000", "KPI": 819, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.019784 ], [ 0.078793, 0.017982 ], [ 0.076175, 0.017982 ], [ 0.076175, 0.019784 ], [ 0.078793, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761800", "Lat": "0.0162000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.017982 ], [ 0.078793, 0.016179 ], [ 0.076175, 0.016179 ], [ 0.076175, 0.017982 ], [ 0.078793, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0788100", "Lat": "0.0198000", "KPI": 645, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.021586 ], [ 0.081453, 0.019784 ], [ 0.078793, 0.019784 ], [ 0.078793, 0.021586 ], [ 0.081453, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0788100", "Lat": "0.0180000", "KPI": 663, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.019784 ], [ 0.081453, 0.017982 ], [ 0.078793, 0.017982 ], [ 0.078793, 0.019784 ], [ 0.081453, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0788100", "Lat": "0.0162000", "KPI": 709, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.017982 ], [ 0.081453, 0.016179 ], [ 0.078793, 0.016179 ], [ 0.078793, 0.017982 ], [ 0.081453, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761800", "Lat": "0.0144000", "KPI": 654, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.016179 ], [ 0.078793, 0.014420 ], [ 0.076175, 0.014420 ], [ 0.076175, 0.016179 ], [ 0.078793, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0761800", "Lat": "0.0126000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.014420 ], [ 0.078793, 0.012617 ], [ 0.076175, 0.012617 ], [ 0.076175, 0.014420 ], [ 0.078793, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.012617 ], [ 0.078793, 0.010815 ], [ 0.076175, 0.010815 ], [ 0.076175, 0.012617 ], [ 0.078793, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0788100", "Lat": "0.0144000", "KPI": 571, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.016179 ], [ 0.081453, 0.014420 ], [ 0.078793, 0.014420 ], [ 0.078793, 0.016179 ], [ 0.081453, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0788100", "Lat": "0.0126000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.014420 ], [ 0.081453, 0.012617 ], [ 0.078793, 0.012617 ], [ 0.078793, 0.014420 ], [ 0.081453, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0788100", "Lat": "0.0108000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.012617 ], [ 0.081453, 0.010815 ], [ 0.078793, 0.010815 ], [ 0.078793, 0.012617 ], [ 0.081453, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0814400", "Lat": "0.0198000", "KPI": 143, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.021586 ], [ 0.084071, 0.019784 ], [ 0.081453, 0.019784 ], [ 0.081453, 0.021586 ], [ 0.084071, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0814400", "Lat": "0.0180000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.019784 ], [ 0.084071, 0.017982 ], [ 0.081453, 0.017982 ], [ 0.081453, 0.019784 ], [ 0.084071, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0814400", "Lat": "0.0162000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.017982 ], [ 0.084071, 0.016179 ], [ 0.081453, 0.016179 ], [ 0.081453, 0.017982 ], [ 0.084071, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0814400", "Lat": "0.0144000", "KPI": 730, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.016179 ], [ 0.084071, 0.014420 ], [ 0.081453, 0.014420 ], [ 0.081453, 0.016179 ], [ 0.084071, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0814400", "Lat": "0.0126000", "KPI": 299, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.014420 ], [ 0.084071, 0.012617 ], [ 0.081453, 0.012617 ], [ 0.081453, 0.014420 ], [ 0.084071, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0814400", "Lat": "0.0108000", "KPI": 98, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.012617 ], [ 0.084071, 0.010815 ], [ 0.081453, 0.010815 ], [ 0.081453, 0.012617 ], [ 0.084071, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0761800", "Lat": "0.0090000", "KPI": 179, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.010815 ], [ 0.078793, 0.009012 ], [ 0.076175, 0.009012 ], [ 0.076175, 0.010815 ], [ 0.078793, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761800", "Lat": "0.0072000", "KPI": 302, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.009012 ], [ 0.078793, 0.007210 ], [ 0.076175, 0.007210 ], [ 0.076175, 0.009012 ], [ 0.078793, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.007210 ], [ 0.078793, 0.005407 ], [ 0.076175, 0.005407 ], [ 0.076175, 0.007210 ], [ 0.078793, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0788100", "Lat": "0.0090000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.010815 ], [ 0.081453, 0.009012 ], [ 0.078793, 0.009012 ], [ 0.078793, 0.010815 ], [ 0.081453, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0788100", "Lat": "0.0072000", "KPI": 174, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.009012 ], [ 0.081453, 0.007210 ], [ 0.078793, 0.007210 ], [ 0.078793, 0.009012 ], [ 0.081453, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0788100", "Lat": "0.0054000", "KPI": 609, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.007210 ], [ 0.081453, 0.005407 ], [ 0.078793, 0.005407 ], [ 0.078793, 0.007210 ], [ 0.081453, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0761800", "Lat": "0.0036000", "KPI": 928, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.005407 ], [ 0.078793, 0.003605 ], [ 0.076175, 0.003605 ], [ 0.076175, 0.005407 ], [ 0.078793, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0761800", "Lat": "0.0018000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.003605 ], [ 0.078793, 0.001802 ], [ 0.076175, 0.001802 ], [ 0.076175, 0.003605 ], [ 0.078793, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.001802 ], [ 0.078793, 0.000000 ], [ 0.076175, 0.000000 ], [ 0.076175, 0.001802 ], [ 0.078793, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0788100", "Lat": "0.0036000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.005407 ], [ 0.081453, 0.003605 ], [ 0.078793, 0.003605 ], [ 0.078793, 0.005407 ], [ 0.081453, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0788100", "Lat": "0.0018000", "KPI": 886, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.003605 ], [ 0.081453, 0.001802 ], [ 0.078793, 0.001802 ], [ 0.078793, 0.003605 ], [ 0.081453, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0788100", "Lat": "0.0000000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.001802 ], [ 0.081453, 0.000000 ], [ 0.078793, 0.000000 ], [ 0.078793, 0.001802 ], [ 0.081453, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0814400", "Lat": "0.0090000", "KPI": 131, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.010815 ], [ 0.084071, 0.009012 ], [ 0.081453, 0.009012 ], [ 0.081453, 0.010815 ], [ 0.084071, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0814400", "Lat": "0.0072000", "KPI": 502, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.009012 ], [ 0.084071, 0.007210 ], [ 0.081453, 0.007210 ], [ 0.081453, 0.009012 ], [ 0.084071, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0814400", "Lat": "0.0054000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.007210 ], [ 0.084071, 0.005407 ], [ 0.081453, 0.005407 ], [ 0.081453, 0.007210 ], [ 0.084071, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0814400", "Lat": "0.0036000", "KPI": 219, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.005407 ], [ 0.084071, 0.003605 ], [ 0.081453, 0.003605 ], [ 0.081453, 0.005407 ], [ 0.084071, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0018000", "KPI": 505, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.003605 ], [ 0.084071, 0.001802 ], [ 0.081453, 0.001802 ], [ 0.081453, 0.003605 ], [ 0.084071, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.001802 ], [ 0.084071, 0.000000 ], [ 0.081453, 0.000000 ], [ 0.081453, 0.001802 ], [ 0.084071, 0.001802 ] ] ] } } +] } +] } +] } diff --git a/tests/high-longitude/in.json b/tests/high-longitude/in.json new file mode 100644 index 000000000..e984e3856 --- /dev/null +++ b/tests/high-longitude/in.json @@ -0,0 +1 @@ +{ "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "hpa": 103200 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [254,35], [204,35], [204,30], [254,30], [254,35] ] ] } } ] } diff --git a/tests/high-longitude/out/-z1.json b/tests/high-longitude/out/-z1.json new file mode 100644 index 000000000..24be53bae --- /dev/null +++ b/tests/high-longitude/out/-z1.json @@ -0,0 +1,25 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-180.000000,30.000000,180.000000,35.000000", +"center": "-90.000000,35.000000,1", +"description": "tests/high-longitude/out/-z1.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/high-longitude/out/-z1.json.check.mbtiles -z1 tests/high-longitude/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 1, \"fields\": {\"hpa\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1,\"geometry\": \"LineString\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"hpa\",\"count\": 1,\"type\": \"number\",\"values\": [103200],\"min\": 103200,\"max\": 103200}]}]}}", +"maxzoom": "1", +"minzoom": "0", +"name": "tests/high-longitude/out/-z1.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "hpa": 103200 }, "geometry": { "type": "LineString", "coordinates": [ [ -106.083984, 35.029996 ], [ -156.005859, 35.029996 ], [ -156.005859, 30.069094 ], [ -106.083984, 30.069094 ], [ -106.083984, 35.029996 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "hpa": 103200 }, "geometry": { "type": "LineString", "coordinates": [ [ -106.040039, 35.029996 ], [ -156.005859, 35.029996 ], [ -156.005859, 30.031055 ], [ -106.040039, 30.031055 ], [ -106.040039, 35.029996 ] ] } } +] } +] } +] } diff --git a/tests/highzoom/out/-z30.json b/tests/highzoom/out/-z30.json index d272ecba5..89f39a5f4 100644 --- a/tests/highzoom/out/-z30.json +++ b/tests/highzoom/out/-z30.json @@ -3,6 +3,7 @@ "center": "-121.999912,37.000000,20", "description": "tests/highzoom/out/-z30.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/highzoom/out/-z30.json.check.mbtiles -z30 tests/highzoom/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 20, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 2,\"type\": \"string\",\"values\": [\"London\",\"Santa Cruz\"]}]}]}}", "maxzoom": "20", "minzoom": "0", diff --git a/tests/id/out/-Z11.json b/tests/id/out/-Z11.json index 5426673b9..128eb04d8 100644 --- a/tests/id/out/-Z11.json +++ b/tests/id/out/-Z11.json @@ -3,6 +3,7 @@ "center": "-122.156982,37.762029,14", "description": "tests/id/out/-Z11.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/id/out/-Z11.json.check.mbtiles -Z11 tests/id/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 14, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 8,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 3,\"type\": \"string\",\"values\": [\"Macarthur\",\"Macarthur Blvd\",\"Macarthur Fwy\"]},{\"attribute\": \"LINEARID\",\"count\": 8,\"type\": \"string\",\"values\": [\"1102406970092\",\"1102638069562\",\"1102954918511\",\"1103690483032\",\"1104469713187\",\"1104469713198\",\"1104486090991\",\"1105089465114\"]},{\"attribute\": \"MTFCC\",\"count\": 2,\"type\": \"string\",\"values\": [\"S1100\",\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 1,\"type\": \"string\",\"values\": [\"M\"]}]}]}}", "maxzoom": "14", "minzoom": "11", diff --git a/tests/islands/out/-d7_-z7_-pt_-pp.json b/tests/islands/out/-d7_-z7_-pt_-pp.json index 9c91c7edb..8c60f5b41 100644 --- a/tests/islands/out/-d7_-z7_-pt_-pp.json +++ b/tests/islands/out/-d7_-z7_-pt_-pp.json @@ -3,6 +3,7 @@ "center": "172.968750,1.405686,7", "description": "tests/islands/out/-d7_-z7_-pt_-pp.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/islands/out/-d7_-z7_-pt_-pp.json.check.mbtiles -d7 -z7 -pt -pp tests/islands/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 7, \"fields\": {\"OBJECTID_1\": \"Number\", \"adm0_a3\": \"String\", \"adm0_label\": \"Number\", \"adm0_sr\": \"Number\", \"adm1_cod_1\": \"String\", \"adm1_code\": \"String\", \"admin\": \"String\", \"area_sqkm\": \"Number\", \"check_me\": \"Number\", \"code_hasc\": \"String\", \"datarank\": \"Number\", \"diss_me\": \"Number\", \"featurecla\": \"String\", \"fips\": \"String\", \"gadm_level\": \"Number\", \"geonunit\": \"String\", \"gn_a1_code\": \"String\", \"gn_id\": \"Number\", \"gn_level\": \"Number\", \"gn_name\": \"String\", \"gns_adm1\": \"String\", \"gns_id\": \"Number\", \"gns_level\": \"Number\", \"gns_name\": \"String\", \"gu_a3\": \"String\", \"iso_3166_2\": \"String\", \"iso_a2\": \"String\", \"labelrank\": \"Number\", \"latitude\": \"Number\", \"longitude\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_len\": \"Number\", \"note\": \"String\", \"provnum_ne\": \"Number\", \"sameascity\": \"Number\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"wikipedia\": \"String\", \"woe_id\": \"Number\", \"woe_label\": \"String\", \"woe_name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 2,\"geometry\": \"Polygon\",\"attributeCount\": 43,\"attributes\": [{\"attribute\": \"OBJECTID_1\",\"count\": 2,\"type\": \"number\",\"values\": [3643,6464],\"min\": 3643,\"max\": 6464},{\"attribute\": \"adm0_a3\",\"count\": 2,\"type\": \"string\",\"values\": [\"FSM\",\"KIR\"]},{\"attribute\": \"adm0_label\",\"count\": 2,\"type\": \"number\",\"values\": [5,7],\"min\": 5,\"max\": 7},{\"attribute\": \"adm0_sr\",\"count\": 1,\"type\": \"number\",\"values\": [5],\"min\": 5,\"max\": 5},{\"attribute\": \"adm1_cod_1\",\"count\": 2,\"type\": \"string\",\"values\": [\"FSM-4943\",\"KIR+99?\"]},{\"attribute\": \"adm1_code\",\"count\": 2,\"type\": \"string\",\"values\": [\"FSM-4943\",\"KIR+99?\"]},{\"attribute\": \"admin\",\"count\": 2,\"type\": \"string\",\"values\": [\"Federated States of Micronesia\",\"Kiribati\"]},{\"attribute\": \"area_sqkm\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"check_me\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"code_hasc\",\"count\": 2,\"type\": \"string\",\"values\": [\"-99\",\"FM.YA\"]},{\"attribute\": \"datarank\",\"count\": 2,\"type\": \"number\",\"values\": [10,11],\"min\": 10,\"max\": 11},{\"attribute\": \"diss_me\",\"count\": 2,\"type\": \"number\",\"values\": [10097,4943],\"min\": 4943,\"max\": 10097},{\"attribute\": \"featurecla\",\"count\": 2,\"type\": \"string\",\"values\": [\"Admin-1 minor island\",\"Admin-1 scale rank\"]},{\"attribute\": \"fips\",\"count\": 1,\"type\": \"string\",\"values\": [\"FM04\"]},{\"attribute\": \"gadm_level\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geonunit\",\"count\": 2,\"type\": \"string\",\"values\": [\"Federated States of Micronesia\",\"Kiribati\"]},{\"attribute\": \"gn_a1_code\",\"count\": 2,\"type\": \"string\",\"values\": [\"FM.04\",\"KI.\"]},{\"attribute\": \"gn_id\",\"count\": 2,\"type\": \"number\",\"values\": [0,2081175],\"min\": 0,\"max\": 2081175},{\"attribute\": \"gn_level\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"gn_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"State of Yap\"]},{\"attribute\": \"gns_adm1\",\"count\": 1,\"type\": \"string\",\"values\": [\"FM04\"]},{\"attribute\": \"gns_id\",\"count\": 2,\"type\": \"number\",\"values\": [-3741502,0],\"min\": -3741502,\"max\": 0},{\"attribute\": \"gns_level\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"gns_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Yap, State of\"]},{\"attribute\": \"gu_a3\",\"count\": 2,\"type\": \"string\",\"values\": [\"FSM\",\"KIR\"]},{\"attribute\": \"iso_3166_2\",\"count\": 2,\"type\": \"string\",\"values\": [\"FM-YAP\",\"KI-\"]},{\"attribute\": \"iso_a2\",\"count\": 2,\"type\": \"string\",\"values\": [\"FM\",\"KI\"]},{\"attribute\": \"labelrank\",\"count\": 1,\"type\": \"number\",\"values\": [20],\"min\": 20,\"max\": 20},{\"attribute\": \"latitude\",\"count\": 2,\"type\": \"number\",\"values\": [-4.689669,9.581009],\"min\": -4.689669,\"max\": 9.581009},{\"attribute\": \"longitude\",\"count\": 2,\"type\": \"number\",\"values\": [-174.511,138.114],\"min\": -174.511,\"max\": 138.114},{\"attribute\": \"mapcolor13\",\"count\": 2,\"type\": \"number\",\"values\": [12,13],\"min\": 12,\"max\": 13},{\"attribute\": \"mapcolor9\",\"count\": 2,\"type\": \"number\",\"values\": [4,6],\"min\": 4,\"max\": 6},{\"attribute\": \"name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Yap\"]},{\"attribute\": \"name_len\",\"count\": 2,\"type\": \"number\",\"values\": [0,3],\"min\": 0,\"max\": 3},{\"attribute\": \"note\",\"count\": 1,\"type\": \"string\",\"values\": [\"KIR-99 (Kiribati minor island)\"]},{\"attribute\": \"provnum_ne\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"sameascity\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [10,11],\"min\": 10,\"max\": 11},{\"attribute\": \"sov_a3\",\"count\": 2,\"type\": \"string\",\"values\": [\"FSM\",\"KIR\"]},{\"attribute\": \"wikipedia\",\"count\": 1,\"type\": \"string\",\"values\": [\"http://en.wikipedia.org/wiki/Yap_State\"]},{\"attribute\": \"woe_id\",\"count\": 2,\"type\": \"number\",\"values\": [-99,2345343],\"min\": -99,\"max\": 2345343},{\"attribute\": \"woe_label\",\"count\": 1,\"type\": \"string\",\"values\": [\"Yap, FM, Federated States of Micronesia\"]},{\"attribute\": \"woe_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Yap\"]}]}]}}", "maxzoom": "7", "minzoom": "0", @@ -26,13 +27,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.199219, -0.483393 ], [ 174.243164, -0.527336 ], [ 174.199219, -0.527336 ], [ 174.199219, -0.483393 ] ] ] } } +{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.671875, 0.131836 ], [ 173.715820, 0.131836 ], [ 173.715820, 0.043945 ], [ 173.671875, 0.043945 ], [ 173.671875, 0.131836 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.199219, -0.483393 ], [ 174.243164, -0.527336 ], [ 174.199219, -0.527336 ], [ 174.199219, -0.483393 ] ] ] } } +{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.671875, 0.175781 ], [ 173.715820, 0.175781 ], [ 173.715820, 0.087891 ], [ 173.671875, 0.087891 ], [ 173.671875, 0.175781 ] ] ] } } , { "type": "Feature", "properties": { "adm1_code": "FSM-4943", "OBJECTID_1": 6464, "diss_me": 4943, "adm1_cod_1": "FSM-4943", "iso_3166_2": "FM-YAP", "wikipedia": "http://en.wikipedia.org/wiki/Yap_State", "iso_a2": "FM", "adm0_sr": 5, "name": "Yap", "code_hasc": "FM.YA", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 10, "datarank": 10, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 scale rank", "name_len": 3, "mapcolor9": 4, "mapcolor13": 13, "fips": "FM04", "woe_id": 2345343, "woe_label": "Yap, FM, Federated States of Micronesia", "woe_name": "Yap", "latitude": 9.581009, "longitude": 138.114, "sov_a3": "FSM", "adm0_a3": "FSM", "adm0_label": 5, "admin": "Federated States of Micronesia", "geonunit": "Federated States of Micronesia", "gu_a3": "FSM", "gn_id": 2081175, "gn_name": "State of Yap", "gns_id": -3741502, "gns_name": "Yap, State of", "gn_level": 1, "gn_a1_code": "FM.04", "gns_level": 1, "gns_adm1": "FM04" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.164062, 9.622414 ], [ 138.164062, 9.535749 ], [ 138.032227, 9.449062 ], [ 138.164062, 9.622414 ] ] ] } } ] } @@ -40,19 +41,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.917969, -5.594118 ], [ -155.874023, -5.615986 ], [ -155.939941, -5.615986 ], [ -155.917969, -5.594118 ] ] ], [ [ [ -174.528809, -4.653080 ], [ -174.506836, -4.674980 ], [ -174.528809, -4.674980 ], [ -174.528809, -4.653080 ] ] ] ] } } +{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.917969, -5.594118 ], [ -155.874023, -5.615986 ], [ -155.939941, -5.615986 ], [ -155.917969, -5.594118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.221191, -0.505365 ], [ 174.243164, -0.527336 ], [ 174.221191, -0.527336 ], [ 174.221191, -0.505365 ] ] ], [ [ [ 173.386230, 0.241699 ], [ 173.408203, 0.219726 ], [ 173.386230, 0.197754 ], [ 173.364258, 0.241699 ], [ 173.386230, 0.241699 ] ] ], [ [ [ 173.913574, 0.417477 ], [ 173.935547, 0.395505 ], [ 173.935547, 0.329588 ], [ 173.913574, 0.417477 ] ] ] ] } } +{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.386230, 0.241699 ], [ 173.408203, 0.219726 ], [ 173.386230, 0.197754 ], [ 173.364258, 0.241699 ], [ 173.386230, 0.241699 ] ] ], [ [ [ 173.913574, 0.417477 ], [ 173.935547, 0.395505 ], [ 173.935547, 0.329588 ], [ 173.913574, 0.417477 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.221191, -0.505365 ], [ 174.243164, -0.527336 ], [ 174.221191, -0.527336 ], [ 174.221191, -0.505365 ] ] ], [ [ [ 173.386230, 0.241699 ], [ 173.408203, 0.219726 ], [ 173.386230, 0.197754 ], [ 173.364258, 0.241699 ], [ 173.386230, 0.241699 ] ] ], [ [ [ 173.913574, 0.417477 ], [ 173.935547, 0.395505 ], [ 173.935547, 0.329588 ], [ 173.913574, 0.417477 ] ] ] ] } } +{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.386230, 0.241699 ], [ 173.408203, 0.219726 ], [ 173.386230, 0.197754 ], [ 173.364258, 0.241699 ], [ 173.386230, 0.241699 ] ] ], [ [ [ 173.913574, 0.417477 ], [ 173.935547, 0.395505 ], [ 173.935547, 0.329588 ], [ 173.913574, 0.417477 ] ] ] ] } } , { "type": "Feature", "properties": { "adm1_code": "FSM-4943", "OBJECTID_1": 6464, "diss_me": 4943, "adm1_cod_1": "FSM-4943", "iso_3166_2": "FM-YAP", "wikipedia": "http://en.wikipedia.org/wiki/Yap_State", "iso_a2": "FM", "adm0_sr": 5, "name": "Yap", "code_hasc": "FM.YA", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 10, "datarank": 10, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 scale rank", "name_len": 3, "mapcolor9": 4, "mapcolor13": 13, "fips": "FM04", "woe_id": 2345343, "woe_label": "Yap, FM, Federated States of Micronesia", "woe_name": "Yap", "latitude": 9.581009, "longitude": 138.114, "sov_a3": "FSM", "adm0_a3": "FSM", "adm0_label": 5, "admin": "Federated States of Micronesia", "geonunit": "Federated States of Micronesia", "gu_a3": "FSM", "gn_id": 2081175, "gn_name": "State of Yap", "gns_id": -3741502, "gns_name": "Yap, State of", "gn_level": 1, "gn_a1_code": "FM.04", "gns_level": 1, "gns_adm1": "FM04" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.164062, 9.557417 ], [ 138.208008, 9.557417 ], [ 138.186035, 9.514079 ], [ 138.142090, 9.535749 ], [ 138.054199, 9.427387 ], [ 138.120117, 9.579084 ], [ 138.142090, 9.557417 ], [ 138.164062, 9.557417 ] ] ] } } ] } @@ -182,7 +183,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 1, "y": 65 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -174.528809, -4.653080 ], [ -174.506836, -4.674980 ], [ -174.528809, -4.674980 ], [ -174.528809, -4.653080 ] ] ] } } +{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -174.528809, -4.653080 ], [ -174.506836, -4.653080 ], [ -174.506836, -4.674980 ], [ -174.528809, -4.674980 ], [ -174.528809, -4.653080 ] ] ] } } ] } ] } , @@ -212,7 +213,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 125, "y": 64 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.221191, -0.505365 ], [ 174.243164, -0.527336 ], [ 174.221191, -0.527336 ], [ 174.221191, -0.505365 ] ] ] } } +{ "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "iso_a2": "KI", "adm0_sr": 5, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "woe_id": -99, "latitude": -4.689669, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gns_id": 0, "gn_level": 0, "gn_a1_code": "KI.", "gns_level": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.221191, -0.505365 ], [ 174.243164, -0.505365 ], [ 174.243164, -0.527336 ], [ 174.221191, -0.527336 ], [ 174.221191, -0.505365 ] ] ] } } ] } ] } , diff --git a/tests/join-population/concat.mbtiles.json b/tests/join-population/concat.mbtiles.json index 15b48f7a9..91741cb53 100644 --- a/tests/join-population/concat.mbtiles.json +++ b/tests/join-population/concat.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.104097,37.695438,0", "description": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", "format": "pbf", +"generator_options": "./tippecanoe -q -f -z0 -n abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -o tests/join-population/macarthur.mbtiles tests/join-population/macarthur.json; ./tippecanoe -q -f -z0 -n abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -o tests/join-population/macarthur.mbtiles tests/join-population/macarthur.json; ./tippecanoe -q -f -z0 -n abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -o tests/join-population/macarthur.mbtiles tests/join-population/macarthur.json; ./tippecanoe -q -f -z0 -n abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -o tests/join-population/macarthur.mbtiles tests/join-population/macarthur.json; ./tippecanoe -q -f -z0 -n abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -o tests/join-population/macarthur.mbtiles tests/join-population/macarthur.json; ./tippecanoe -q -f -z0 -n abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -o tests/join-population/macarthur.mbtiles tests/join-population/macarthur.json; ./tile-join -f -o tests/join-population/concat.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"macarthur\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"macarthur\",\"count\": 24,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 3,\"type\": \"string\",\"values\": [\"Macarthur\",\"Macarthur Fwy\",\"W Macarthur\"]},{\"attribute\": \"LINEARID\",\"count\": 4,\"type\": \"string\",\"values\": [\"1102954918511\",\"1104474748623\",\"1104486090991\",\"1104486392881\"]},{\"attribute\": \"MTFCC\",\"count\": 2,\"type\": \"string\",\"values\": [\"S1100\",\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 1,\"type\": \"string\",\"values\": [\"M\"]}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/join-population/joined-i.mbtiles.json b/tests/join-population/joined-i.mbtiles.json index fe16ef0f1..c972df4d9 100644 --- a/tests/join-population/joined-i.mbtiles.json +++ b/tests/join-population/joined-i.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.299805,37.892187,12", "description": "tests/join-population/tabblock_06001420.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -z12 -o tests/join-population/tabblock_06001420.mbtiles '-YALAND10:Land area' '-L{\"file\": \"tests/join-population/tabblock_06001420.json\", \"description\": \"population\"}'; ./tile-join -q -f -i -o tests/join-population/joined-i.mbtiles -x GEOID10 -c tests/join-population/population.csv tests/join-population/tabblock_06001420.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"tabblock_06001420\", \"description\": \"population\", \"minzoom\": 4, \"maxzoom\": 12, \"fields\": {\"ALAND10\": \"Land area\", \"AWATER10\": \"Number\", \"BLOCKCE10\": \"String\", \"COUNTYFP10\": \"String\", \"FUNCSTAT10\": \"String\", \"INTPTLAT10\": \"String\", \"INTPTLON10\": \"String\", \"MTFCC10\": \"String\", \"NAME10\": \"String\", \"STATEFP10\": \"String\", \"TRACTCE10\": \"String\", \"UACE10\": \"String\", \"UATYP10\": \"String\", \"UR10\": \"String\", \"population\": \"Mixed\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"tabblock_06001420\",\"count\": 1000,\"geometry\": \"Polygon\",\"attributeCount\": 15,\"attributes\": [{\"attribute\": \"ALAND10\",\"count\": 162,\"type\": \"number\",\"values\": [10019,10125,10320,10339,10769,10776,10975,11206,11297,11306,11372,11825,11928,11997,1201,12044,12062,12213,12579,12945,13013,13106,13452,13985,14000,14042,14044,14053,14087,14101,14158,14169,14185,14193,14219,14237,14270,14291,14449,14452,14523,14541,14557,1457,14593,14639,14791,14799,14980,15100,15240,15260,15494,15574,15665,15730,15921,15930,15974,16117,16120,16165,16183,16238,16246,16253,16332,16353,16431,16453,16535,16537,16605,16635,16691,16994,17210,17230,17265,17308,17581,17622,17780,17893,18064,18095,18377,18586,18637,1878,18897,19453,19544,19676,19773,19818,19896,20277,20386,20486],\"min\": 280,\"max\": 412555},{\"attribute\": \"AWATER10\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"BLOCKCE10\",\"count\": 72,\"type\": \"string\",\"values\": [\"1000\",\"1001\",\"1002\",\"1003\",\"1004\",\"1005\",\"1006\",\"1007\",\"1008\",\"1009\",\"1010\",\"1011\",\"1012\",\"1013\",\"1014\",\"1015\",\"1016\",\"1017\",\"1018\",\"1019\",\"1020\",\"1021\",\"1022\",\"1023\",\"1024\",\"1026\",\"1029\",\"1030\",\"1031\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"3000\",\"3001\",\"3002\",\"3003\",\"3004\",\"3005\",\"3006\",\"3007\",\"3008\",\"3009\",\"3010\",\"3012\",\"3013\",\"3014\",\"3015\",\"3016\",\"3017\",\"3018\",\"3019\",\"3020\",\"3021\",\"3023\",\"3024\",\"3026\",\"3027\",\"3028\",\"3031\"]},{\"attribute\": \"COUNTYFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"001\"]},{\"attribute\": \"FUNCSTAT10\",\"count\": 1,\"type\": \"string\",\"values\": [\"S\"]},{\"attribute\": \"INTPTLAT10\",\"count\": 161,\"type\": \"string\",\"values\": [\"+37.882724\",\"+37.882857\",\"+37.882965\",\"+37.883224\",\"+37.883323\",\"+37.883462\",\"+37.883481\",\"+37.883493\",\"+37.883527\",\"+37.883536\",\"+37.883579\",\"+37.883693\",\"+37.883707\",\"+37.883836\",\"+37.883875\",\"+37.883973\",\"+37.884009\",\"+37.884079\",\"+37.884338\",\"+37.884369\",\"+37.884677\",\"+37.884743\",\"+37.884747\",\"+37.884896\",\"+37.884919\",\"+37.885307\",\"+37.885308\",\"+37.885448\",\"+37.885491\",\"+37.885646\",\"+37.885811\",\"+37.885997\",\"+37.886159\",\"+37.886194\",\"+37.886197\",\"+37.886322\",\"+37.886339\",\"+37.886460\",\"+37.886495\",\"+37.886596\",\"+37.886608\",\"+37.886830\",\"+37.887238\",\"+37.887570\",\"+37.887789\",\"+37.887945\",\"+37.888027\",\"+37.888238\",\"+37.888332\",\"+37.888340\",\"+37.888416\",\"+37.888418\",\"+37.888441\",\"+37.888458\",\"+37.888540\",\"+37.888616\",\"+37.888634\",\"+37.888734\",\"+37.888782\",\"+37.888848\",\"+37.888859\",\"+37.888863\",\"+37.888908\",\"+37.888930\",\"+37.888934\",\"+37.889007\",\"+37.889049\",\"+37.889126\",\"+37.889177\",\"+37.889251\",\"+37.889326\",\"+37.889411\",\"+37.889518\",\"+37.889545\",\"+37.889669\",\"+37.889828\",\"+37.889955\",\"+37.890058\",\"+37.890110\",\"+37.890166\",\"+37.890172\",\"+37.890209\",\"+37.890214\",\"+37.890278\",\"+37.890696\",\"+37.890858\",\"+37.891028\",\"+37.891101\",\"+37.891200\",\"+37.891205\",\"+37.891320\",\"+37.891425\",\"+37.891538\",\"+37.891658\",\"+37.891713\",\"+37.891785\",\"+37.891804\",\"+37.891809\",\"+37.891823\",\"+37.891824\"]},{\"attribute\": \"INTPTLON10\",\"count\": 162,\"type\": \"string\",\"values\": [\"-122.282371\",\"-122.282689\",\"-122.283067\",\"-122.283424\",\"-122.283651\",\"-122.283723\",\"-122.283797\",\"-122.284471\",\"-122.284571\",\"-122.284831\",\"-122.285020\",\"-122.285175\",\"-122.285609\",\"-122.285901\",\"-122.285971\",\"-122.286349\",\"-122.286366\",\"-122.286636\",\"-122.286865\",\"-122.286913\",\"-122.287097\",\"-122.287125\",\"-122.287205\",\"-122.287275\",\"-122.287323\",\"-122.287379\",\"-122.287583\",\"-122.287634\",\"-122.287747\",\"-122.287757\",\"-122.287836\",\"-122.287926\",\"-122.287969\",\"-122.288382\",\"-122.288602\",\"-122.288628\",\"-122.288696\",\"-122.288764\",\"-122.288787\",\"-122.288910\",\"-122.289020\",\"-122.289219\",\"-122.289472\",\"-122.289530\",\"-122.289570\",\"-122.289663\",\"-122.289764\",\"-122.289959\",\"-122.290117\",\"-122.290340\",\"-122.290441\",\"-122.290522\",\"-122.290615\",\"-122.290964\",\"-122.290980\",\"-122.291137\",\"-122.291217\",\"-122.291391\",\"-122.291474\",\"-122.291817\",\"-122.291926\",\"-122.292014\",\"-122.292153\",\"-122.292309\",\"-122.292394\",\"-122.292674\",\"-122.292756\",\"-122.292777\",\"-122.292811\",\"-122.292824\",\"-122.292906\",\"-122.293296\",\"-122.293364\",\"-122.293455\",\"-122.293477\",\"-122.293508\",\"-122.293592\",\"-122.293633\",\"-122.294157\",\"-122.294213\",\"-122.294338\",\"-122.294418\",\"-122.294456\",\"-122.294503\",\"-122.294972\",\"-122.295039\",\"-122.295184\",\"-122.295286\",\"-122.295319\",\"-122.295359\",\"-122.295566\",\"-122.295888\",\"-122.296030\",\"-122.296083\",\"-122.296144\",\"-122.296175\",\"-122.296220\",\"-122.296405\",\"-122.296474\",\"-122.296730\"]},{\"attribute\": \"MTFCC10\",\"count\": 1,\"type\": \"string\",\"values\": [\"G5040\"]},{\"attribute\": \"NAME10\",\"count\": 72,\"type\": \"string\",\"values\": [\"Block 1000\",\"Block 1001\",\"Block 1002\",\"Block 1003\",\"Block 1004\",\"Block 1005\",\"Block 1006\",\"Block 1007\",\"Block 1008\",\"Block 1009\",\"Block 1010\",\"Block 1011\",\"Block 1012\",\"Block 1013\",\"Block 1014\",\"Block 1015\",\"Block 1016\",\"Block 1017\",\"Block 1018\",\"Block 1019\",\"Block 1020\",\"Block 1021\",\"Block 1022\",\"Block 1023\",\"Block 1024\",\"Block 1026\",\"Block 1029\",\"Block 1030\",\"Block 1031\",\"Block 2000\",\"Block 2001\",\"Block 2002\",\"Block 2003\",\"Block 2004\",\"Block 2005\",\"Block 2006\",\"Block 2007\",\"Block 2008\",\"Block 2009\",\"Block 2010\",\"Block 2011\",\"Block 2012\",\"Block 2013\",\"Block 2014\",\"Block 2015\",\"Block 3000\",\"Block 3001\",\"Block 3002\",\"Block 3003\",\"Block 3004\",\"Block 3005\",\"Block 3006\",\"Block 3007\",\"Block 3008\",\"Block 3009\",\"Block 3010\",\"Block 3012\",\"Block 3013\",\"Block 3014\",\"Block 3015\",\"Block 3016\",\"Block 3017\",\"Block 3018\",\"Block 3019\",\"Block 3020\",\"Block 3021\",\"Block 3023\",\"Block 3024\",\"Block 3026\",\"Block 3027\",\"Block 3028\",\"Block 3031\"]},{\"attribute\": \"STATEFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"TRACTCE10\",\"count\": 6,\"type\": \"string\",\"values\": [\"420100\",\"420200\",\"420300\",\"420400\",\"420500\",\"420600\"]},{\"attribute\": \"UACE10\",\"count\": 1,\"type\": \"string\",\"values\": [\"78904\"]},{\"attribute\": \"UATYP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"U\"]},{\"attribute\": \"UR10\",\"count\": 1,\"type\": \"string\",\"values\": [\"U\"]},{\"attribute\": \"population\",\"count\": 74,\"type\": \"mixed\",\"values\": [\"\",1,10,11,1118,113,116,12,13,133,145,15,16,17,18,19,2,21,212,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,4,40,41,414,42,43,44,45,46,47,49,50,51,53,54,55,56,57,58,60,62,63,64,65,66,68,69,7,70,73,82,83,84,86,87,9,90,91,98],\"min\": 1,\"max\": 1118}]}]}}", "maxzoom": "12", "minzoom": "0", @@ -402,7 +403,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.286758, 37.884067 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } , diff --git a/tests/join-population/joined-no-tile-stats.mbtiles.json b/tests/join-population/joined-no-tile-stats.mbtiles.json index 91f975e29..59dd4842e 100644 --- a/tests/join-population/joined-no-tile-stats.mbtiles.json +++ b/tests/join-population/joined-no-tile-stats.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.299805,37.892187,12", "description": "tests/join-population/tabblock_06001420.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -z12 -o tests/join-population/tabblock_06001420.mbtiles '-YALAND10:Land area' '-L{\"file\": \"tests/join-population/tabblock_06001420.json\", \"description\": \"population\"}'; ./tile-join --quiet --force --no-tile-stats -o tests/join-population/joined-no-tile-stats.mbtiles -x GEOID10 -c tests/join-population/population.csv tests/join-population/tabblock_06001420.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"tabblock_06001420\", \"description\": \"population\", \"minzoom\": 3, \"maxzoom\": 12, \"fields\": {\"ALAND10\": \"Land area\", \"AWATER10\": \"Number\", \"BLOCKCE10\": \"String\", \"COUNTYFP10\": \"String\", \"FUNCSTAT10\": \"String\", \"INTPTLAT10\": \"String\", \"INTPTLON10\": \"String\", \"MTFCC10\": \"String\", \"NAME10\": \"String\", \"STATEFP10\": \"String\", \"TRACTCE10\": \"String\", \"UACE10\": \"String\", \"UATYP10\": \"String\", \"UR10\": \"String\", \"population\": \"Mixed\"} } ]}", "maxzoom": "12", "minzoom": "0", @@ -198,7 +199,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ] ] ] } } , @@ -512,7 +513,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.286758, 37.884067 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } , @@ -1950,7 +1951,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ], [ -122.283497, 37.889147 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.889207", "INTPTLON10": "-122.282320" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ] ] ] } } , diff --git a/tests/join-population/joined-null.mbtiles.json b/tests/join-population/joined-null.mbtiles.json index 3401ed08a..de99360e6 100644 --- a/tests/join-population/joined-null.mbtiles.json +++ b/tests/join-population/joined-null.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.299805,37.892187,12", "description": "tests/join-population/tabblock_06001420.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -z12 -o tests/join-population/tabblock_06001420.mbtiles '-YALAND10:Land area' '-L{\"file\": \"tests/join-population/tabblock_06001420.json\", \"description\": \"population\"}'; ./tile-join --quiet --force -o tests/join-population/joined-null.mbtiles --empty-csv-columns-are-null -x GEOID10 -c tests/join-population/population.csv tests/join-population/tabblock_06001420.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"tabblock_06001420\", \"description\": \"population\", \"minzoom\": 3, \"maxzoom\": 12, \"fields\": {\"ALAND10\": \"Land area\", \"AWATER10\": \"Number\", \"BLOCKCE10\": \"String\", \"COUNTYFP10\": \"String\", \"FUNCSTAT10\": \"String\", \"INTPTLAT10\": \"String\", \"INTPTLON10\": \"String\", \"MTFCC10\": \"String\", \"NAME10\": \"String\", \"STATEFP10\": \"String\", \"TRACTCE10\": \"String\", \"UACE10\": \"String\", \"UATYP10\": \"String\", \"UR10\": \"String\", \"population\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"tabblock_06001420\",\"count\": 1484,\"geometry\": \"Polygon\",\"attributeCount\": 15,\"attributes\": [{\"attribute\": \"ALAND10\",\"count\": 257,\"type\": \"number\",\"values\": [0,10019,10125,1018,1027,10320,10339,1037,1060,10769,10776,1094,10961,10975,11206,11282,11297,11306,11372,11825,11921,11928,11997,1201,12044,12062,1214,12213,1246,12579,1269,12945,13013,13106,1324,13452,13985,14000,14042,14044,14053,14087,14101,14158,14169,14185,14193,14219,14237,14270,14291,14449,14452,14453,14523,14539,14541,14557,14565,1457,14593,1461,14639,1466,14791,14799,14980,1509,15100,15240,15260,15494,15574,15665,15730,15921,15930,15974,16117,16120,16165,16183,16238,16246,16253,16332,16353,16431,16453,16535,16537,16605,16635,16691,16994,1704,17210,17230,17265,17308],\"min\": 0,\"max\": 542505},{\"attribute\": \"AWATER10\",\"count\": 4,\"type\": \"number\",\"values\": [0,1111196,1632801,24],\"min\": 0,\"max\": 1632801},{\"attribute\": \"BLOCKCE10\",\"count\": 82,\"type\": \"string\",\"values\": [\"1000\",\"1001\",\"1002\",\"1003\",\"1004\",\"1005\",\"1006\",\"1007\",\"1008\",\"1009\",\"1010\",\"1011\",\"1012\",\"1013\",\"1014\",\"1015\",\"1016\",\"1017\",\"1018\",\"1019\",\"1020\",\"1021\",\"1022\",\"1023\",\"1024\",\"1025\",\"1026\",\"1027\",\"1028\",\"1029\",\"1030\",\"1031\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"2016\",\"2017\",\"3000\",\"3001\",\"3002\",\"3003\",\"3004\",\"3005\",\"3006\",\"3007\",\"3008\",\"3009\",\"3010\",\"3011\",\"3012\",\"3013\",\"3014\",\"3015\",\"3016\",\"3017\",\"3018\",\"3019\",\"3020\",\"3021\",\"3022\",\"3023\",\"3024\",\"3025\",\"3026\",\"3027\",\"3028\",\"3029\",\"3030\",\"3031\"]},{\"attribute\": \"COUNTYFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"001\"]},{\"attribute\": \"FUNCSTAT10\",\"count\": 1,\"type\": \"string\",\"values\": [\"S\"]},{\"attribute\": \"INTPTLAT10\",\"count\": 257,\"type\": \"string\",\"values\": [\"+37.882724\",\"+37.882857\",\"+37.882965\",\"+37.883224\",\"+37.883323\",\"+37.883462\",\"+37.883465\",\"+37.883481\",\"+37.883493\",\"+37.883527\",\"+37.883536\",\"+37.883579\",\"+37.883655\",\"+37.883693\",\"+37.883707\",\"+37.883745\",\"+37.883836\",\"+37.883871\",\"+37.883875\",\"+37.883931\",\"+37.883973\",\"+37.883995\",\"+37.884009\",\"+37.884079\",\"+37.884198\",\"+37.884202\",\"+37.884338\",\"+37.884369\",\"+37.884436\",\"+37.884677\",\"+37.884743\",\"+37.884747\",\"+37.884757\",\"+37.884896\",\"+37.884902\",\"+37.884919\",\"+37.884942\",\"+37.885307\",\"+37.885308\",\"+37.885399\",\"+37.885448\",\"+37.885491\",\"+37.885644\",\"+37.885646\",\"+37.885673\",\"+37.885811\",\"+37.885827\",\"+37.885997\",\"+37.886159\",\"+37.886194\",\"+37.886197\",\"+37.886237\",\"+37.886278\",\"+37.886322\",\"+37.886339\",\"+37.886439\",\"+37.886460\",\"+37.886495\",\"+37.886587\",\"+37.886596\",\"+37.886608\",\"+37.886758\",\"+37.886830\",\"+37.886929\",\"+37.887099\",\"+37.887163\",\"+37.887238\",\"+37.887267\",\"+37.887324\",\"+37.887379\",\"+37.887412\",\"+37.887570\",\"+37.887764\",\"+37.887776\",\"+37.887789\",\"+37.887852\",\"+37.887885\",\"+37.887916\",\"+37.887945\",\"+37.888027\",\"+37.888122\",\"+37.888238\",\"+37.888325\",\"+37.888332\",\"+37.888340\",\"+37.888416\",\"+37.888418\",\"+37.888441\",\"+37.888458\",\"+37.888506\",\"+37.888511\",\"+37.888540\",\"+37.888616\",\"+37.888634\",\"+37.888734\",\"+37.888782\",\"+37.888823\",\"+37.888848\",\"+37.888859\",\"+37.888863\"]},{\"attribute\": \"INTPTLON10\",\"count\": 259,\"type\": \"string\",\"values\": [\"-122.282320\",\"-122.282371\",\"-122.282679\",\"-122.282689\",\"-122.282947\",\"-122.283067\",\"-122.283212\",\"-122.283424\",\"-122.283651\",\"-122.283723\",\"-122.283797\",\"-122.283828\",\"-122.283924\",\"-122.283973\",\"-122.284471\",\"-122.284571\",\"-122.284590\",\"-122.284831\",\"-122.285020\",\"-122.285076\",\"-122.285093\",\"-122.285175\",\"-122.285609\",\"-122.285651\",\"-122.285682\",\"-122.285901\",\"-122.285971\",\"-122.286179\",\"-122.286324\",\"-122.286349\",\"-122.286366\",\"-122.286615\",\"-122.286636\",\"-122.286818\",\"-122.286865\",\"-122.286913\",\"-122.287055\",\"-122.287082\",\"-122.287097\",\"-122.287125\",\"-122.287205\",\"-122.287275\",\"-122.287323\",\"-122.287379\",\"-122.287583\",\"-122.287591\",\"-122.287634\",\"-122.287747\",\"-122.287757\",\"-122.287836\",\"-122.287926\",\"-122.287969\",\"-122.288150\",\"-122.288221\",\"-122.288237\",\"-122.288313\",\"-122.288382\",\"-122.288473\",\"-122.288602\",\"-122.288628\",\"-122.288677\",\"-122.288696\",\"-122.288764\",\"-122.288787\",\"-122.288910\",\"-122.289020\",\"-122.289219\",\"-122.289471\",\"-122.289472\",\"-122.289530\",\"-122.289570\",\"-122.289573\",\"-122.289663\",\"-122.289764\",\"-122.289959\",\"-122.290117\",\"-122.290340\",\"-122.290441\",\"-122.290522\",\"-122.290573\",\"-122.290615\",\"-122.290964\",\"-122.290980\",\"-122.291137\",\"-122.291217\",\"-122.291315\",\"-122.291350\",\"-122.291391\",\"-122.291474\",\"-122.291484\",\"-122.291592\",\"-122.291817\",\"-122.291926\",\"-122.292014\",\"-122.292116\",\"-122.292153\",\"-122.292289\",\"-122.292309\",\"-122.292394\",\"-122.292415\"]},{\"attribute\": \"MTFCC10\",\"count\": 1,\"type\": \"string\",\"values\": [\"G5040\"]},{\"attribute\": \"NAME10\",\"count\": 82,\"type\": \"string\",\"values\": [\"Block 1000\",\"Block 1001\",\"Block 1002\",\"Block 1003\",\"Block 1004\",\"Block 1005\",\"Block 1006\",\"Block 1007\",\"Block 1008\",\"Block 1009\",\"Block 1010\",\"Block 1011\",\"Block 1012\",\"Block 1013\",\"Block 1014\",\"Block 1015\",\"Block 1016\",\"Block 1017\",\"Block 1018\",\"Block 1019\",\"Block 1020\",\"Block 1021\",\"Block 1022\",\"Block 1023\",\"Block 1024\",\"Block 1025\",\"Block 1026\",\"Block 1027\",\"Block 1028\",\"Block 1029\",\"Block 1030\",\"Block 1031\",\"Block 2000\",\"Block 2001\",\"Block 2002\",\"Block 2003\",\"Block 2004\",\"Block 2005\",\"Block 2006\",\"Block 2007\",\"Block 2008\",\"Block 2009\",\"Block 2010\",\"Block 2011\",\"Block 2012\",\"Block 2013\",\"Block 2014\",\"Block 2015\",\"Block 2016\",\"Block 2017\",\"Block 3000\",\"Block 3001\",\"Block 3002\",\"Block 3003\",\"Block 3004\",\"Block 3005\",\"Block 3006\",\"Block 3007\",\"Block 3008\",\"Block 3009\",\"Block 3010\",\"Block 3011\",\"Block 3012\",\"Block 3013\",\"Block 3014\",\"Block 3015\",\"Block 3016\",\"Block 3017\",\"Block 3018\",\"Block 3019\",\"Block 3020\",\"Block 3021\",\"Block 3022\",\"Block 3023\",\"Block 3024\",\"Block 3025\",\"Block 3026\",\"Block 3027\",\"Block 3028\",\"Block 3029\",\"Block 3030\",\"Block 3031\"]},{\"attribute\": \"STATEFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"TRACTCE10\",\"count\": 6,\"type\": \"string\",\"values\": [\"420100\",\"420200\",\"420300\",\"420400\",\"420500\",\"420600\"]},{\"attribute\": \"UACE10\",\"count\": 1,\"type\": \"string\",\"values\": [\"78904\"]},{\"attribute\": \"UATYP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"U\"]},{\"attribute\": \"UR10\",\"count\": 2,\"type\": \"string\",\"values\": [\"R\",\"U\"]},{\"attribute\": \"population\",\"count\": 73,\"type\": \"number\",\"values\": [1,10,11,1118,113,116,12,13,133,145,15,16,17,18,19,2,21,212,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,4,40,41,414,42,43,44,45,46,47,49,50,51,53,54,55,56,57,58,60,62,63,64,65,66,68,69,7,70,73,82,83,84,86,87,9,90,91,98],\"min\": 1,\"max\": 1118}]}]}}", "maxzoom": "12", "minzoom": "0", @@ -198,7 +199,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ] ] ] } } , @@ -512,7 +513,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.286758, 37.884067 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } , @@ -1950,7 +1951,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ], [ -122.283497, 37.889147 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.889207", "INTPTLON10": "-122.282320" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ] ] ] } } , diff --git a/tests/join-population/joined.mbtiles.json b/tests/join-population/joined.mbtiles.json index e5993b456..0dc034667 100644 --- a/tests/join-population/joined.mbtiles.json +++ b/tests/join-population/joined.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.299805,37.892187,12", "description": "tests/join-population/tabblock_06001420.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -z12 -o tests/join-population/tabblock_06001420.mbtiles '-YALAND10:Land area' '-L{\"file\": \"tests/join-population/tabblock_06001420.json\", \"description\": \"population\"}'; ./tile-join --quiet --force -o tests/join-population/joined.mbtiles -x GEOID10 -c tests/join-population/population.csv tests/join-population/tabblock_06001420.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"tabblock_06001420\", \"description\": \"population\", \"minzoom\": 3, \"maxzoom\": 12, \"fields\": {\"ALAND10\": \"Land area\", \"AWATER10\": \"Number\", \"BLOCKCE10\": \"String\", \"COUNTYFP10\": \"String\", \"FUNCSTAT10\": \"String\", \"INTPTLAT10\": \"String\", \"INTPTLON10\": \"String\", \"MTFCC10\": \"String\", \"NAME10\": \"String\", \"STATEFP10\": \"String\", \"TRACTCE10\": \"String\", \"UACE10\": \"String\", \"UATYP10\": \"String\", \"UR10\": \"String\", \"population\": \"Mixed\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"tabblock_06001420\",\"count\": 1484,\"geometry\": \"Polygon\",\"attributeCount\": 15,\"attributes\": [{\"attribute\": \"ALAND10\",\"count\": 257,\"type\": \"number\",\"values\": [0,10019,10125,1018,1027,10320,10339,1037,1060,10769,10776,1094,10961,10975,11206,11282,11297,11306,11372,11825,11921,11928,11997,1201,12044,12062,1214,12213,1246,12579,1269,12945,13013,13106,1324,13452,13985,14000,14042,14044,14053,14087,14101,14158,14169,14185,14193,14219,14237,14270,14291,14449,14452,14453,14523,14539,14541,14557,14565,1457,14593,1461,14639,1466,14791,14799,14980,1509,15100,15240,15260,15494,15574,15665,15730,15921,15930,15974,16117,16120,16165,16183,16238,16246,16253,16332,16353,16431,16453,16535,16537,16605,16635,16691,16994,1704,17210,17230,17265,17308],\"min\": 0,\"max\": 542505},{\"attribute\": \"AWATER10\",\"count\": 4,\"type\": \"number\",\"values\": [0,1111196,1632801,24],\"min\": 0,\"max\": 1632801},{\"attribute\": \"BLOCKCE10\",\"count\": 82,\"type\": \"string\",\"values\": [\"1000\",\"1001\",\"1002\",\"1003\",\"1004\",\"1005\",\"1006\",\"1007\",\"1008\",\"1009\",\"1010\",\"1011\",\"1012\",\"1013\",\"1014\",\"1015\",\"1016\",\"1017\",\"1018\",\"1019\",\"1020\",\"1021\",\"1022\",\"1023\",\"1024\",\"1025\",\"1026\",\"1027\",\"1028\",\"1029\",\"1030\",\"1031\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"2016\",\"2017\",\"3000\",\"3001\",\"3002\",\"3003\",\"3004\",\"3005\",\"3006\",\"3007\",\"3008\",\"3009\",\"3010\",\"3011\",\"3012\",\"3013\",\"3014\",\"3015\",\"3016\",\"3017\",\"3018\",\"3019\",\"3020\",\"3021\",\"3022\",\"3023\",\"3024\",\"3025\",\"3026\",\"3027\",\"3028\",\"3029\",\"3030\",\"3031\"]},{\"attribute\": \"COUNTYFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"001\"]},{\"attribute\": \"FUNCSTAT10\",\"count\": 1,\"type\": \"string\",\"values\": [\"S\"]},{\"attribute\": \"INTPTLAT10\",\"count\": 257,\"type\": \"string\",\"values\": [\"+37.882724\",\"+37.882857\",\"+37.882965\",\"+37.883224\",\"+37.883323\",\"+37.883462\",\"+37.883465\",\"+37.883481\",\"+37.883493\",\"+37.883527\",\"+37.883536\",\"+37.883579\",\"+37.883655\",\"+37.883693\",\"+37.883707\",\"+37.883745\",\"+37.883836\",\"+37.883871\",\"+37.883875\",\"+37.883931\",\"+37.883973\",\"+37.883995\",\"+37.884009\",\"+37.884079\",\"+37.884198\",\"+37.884202\",\"+37.884338\",\"+37.884369\",\"+37.884436\",\"+37.884677\",\"+37.884743\",\"+37.884747\",\"+37.884757\",\"+37.884896\",\"+37.884902\",\"+37.884919\",\"+37.884942\",\"+37.885307\",\"+37.885308\",\"+37.885399\",\"+37.885448\",\"+37.885491\",\"+37.885644\",\"+37.885646\",\"+37.885673\",\"+37.885811\",\"+37.885827\",\"+37.885997\",\"+37.886159\",\"+37.886194\",\"+37.886197\",\"+37.886237\",\"+37.886278\",\"+37.886322\",\"+37.886339\",\"+37.886439\",\"+37.886460\",\"+37.886495\",\"+37.886587\",\"+37.886596\",\"+37.886608\",\"+37.886758\",\"+37.886830\",\"+37.886929\",\"+37.887099\",\"+37.887163\",\"+37.887238\",\"+37.887267\",\"+37.887324\",\"+37.887379\",\"+37.887412\",\"+37.887570\",\"+37.887764\",\"+37.887776\",\"+37.887789\",\"+37.887852\",\"+37.887885\",\"+37.887916\",\"+37.887945\",\"+37.888027\",\"+37.888122\",\"+37.888238\",\"+37.888325\",\"+37.888332\",\"+37.888340\",\"+37.888416\",\"+37.888418\",\"+37.888441\",\"+37.888458\",\"+37.888506\",\"+37.888511\",\"+37.888540\",\"+37.888616\",\"+37.888634\",\"+37.888734\",\"+37.888782\",\"+37.888823\",\"+37.888848\",\"+37.888859\",\"+37.888863\"]},{\"attribute\": \"INTPTLON10\",\"count\": 259,\"type\": \"string\",\"values\": [\"-122.282320\",\"-122.282371\",\"-122.282679\",\"-122.282689\",\"-122.282947\",\"-122.283067\",\"-122.283212\",\"-122.283424\",\"-122.283651\",\"-122.283723\",\"-122.283797\",\"-122.283828\",\"-122.283924\",\"-122.283973\",\"-122.284471\",\"-122.284571\",\"-122.284590\",\"-122.284831\",\"-122.285020\",\"-122.285076\",\"-122.285093\",\"-122.285175\",\"-122.285609\",\"-122.285651\",\"-122.285682\",\"-122.285901\",\"-122.285971\",\"-122.286179\",\"-122.286324\",\"-122.286349\",\"-122.286366\",\"-122.286615\",\"-122.286636\",\"-122.286818\",\"-122.286865\",\"-122.286913\",\"-122.287055\",\"-122.287082\",\"-122.287097\",\"-122.287125\",\"-122.287205\",\"-122.287275\",\"-122.287323\",\"-122.287379\",\"-122.287583\",\"-122.287591\",\"-122.287634\",\"-122.287747\",\"-122.287757\",\"-122.287836\",\"-122.287926\",\"-122.287969\",\"-122.288150\",\"-122.288221\",\"-122.288237\",\"-122.288313\",\"-122.288382\",\"-122.288473\",\"-122.288602\",\"-122.288628\",\"-122.288677\",\"-122.288696\",\"-122.288764\",\"-122.288787\",\"-122.288910\",\"-122.289020\",\"-122.289219\",\"-122.289471\",\"-122.289472\",\"-122.289530\",\"-122.289570\",\"-122.289573\",\"-122.289663\",\"-122.289764\",\"-122.289959\",\"-122.290117\",\"-122.290340\",\"-122.290441\",\"-122.290522\",\"-122.290573\",\"-122.290615\",\"-122.290964\",\"-122.290980\",\"-122.291137\",\"-122.291217\",\"-122.291315\",\"-122.291350\",\"-122.291391\",\"-122.291474\",\"-122.291484\",\"-122.291592\",\"-122.291817\",\"-122.291926\",\"-122.292014\",\"-122.292116\",\"-122.292153\",\"-122.292289\",\"-122.292309\",\"-122.292394\",\"-122.292415\"]},{\"attribute\": \"MTFCC10\",\"count\": 1,\"type\": \"string\",\"values\": [\"G5040\"]},{\"attribute\": \"NAME10\",\"count\": 82,\"type\": \"string\",\"values\": [\"Block 1000\",\"Block 1001\",\"Block 1002\",\"Block 1003\",\"Block 1004\",\"Block 1005\",\"Block 1006\",\"Block 1007\",\"Block 1008\",\"Block 1009\",\"Block 1010\",\"Block 1011\",\"Block 1012\",\"Block 1013\",\"Block 1014\",\"Block 1015\",\"Block 1016\",\"Block 1017\",\"Block 1018\",\"Block 1019\",\"Block 1020\",\"Block 1021\",\"Block 1022\",\"Block 1023\",\"Block 1024\",\"Block 1025\",\"Block 1026\",\"Block 1027\",\"Block 1028\",\"Block 1029\",\"Block 1030\",\"Block 1031\",\"Block 2000\",\"Block 2001\",\"Block 2002\",\"Block 2003\",\"Block 2004\",\"Block 2005\",\"Block 2006\",\"Block 2007\",\"Block 2008\",\"Block 2009\",\"Block 2010\",\"Block 2011\",\"Block 2012\",\"Block 2013\",\"Block 2014\",\"Block 2015\",\"Block 2016\",\"Block 2017\",\"Block 3000\",\"Block 3001\",\"Block 3002\",\"Block 3003\",\"Block 3004\",\"Block 3005\",\"Block 3006\",\"Block 3007\",\"Block 3008\",\"Block 3009\",\"Block 3010\",\"Block 3011\",\"Block 3012\",\"Block 3013\",\"Block 3014\",\"Block 3015\",\"Block 3016\",\"Block 3017\",\"Block 3018\",\"Block 3019\",\"Block 3020\",\"Block 3021\",\"Block 3022\",\"Block 3023\",\"Block 3024\",\"Block 3025\",\"Block 3026\",\"Block 3027\",\"Block 3028\",\"Block 3029\",\"Block 3030\",\"Block 3031\"]},{\"attribute\": \"STATEFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"TRACTCE10\",\"count\": 6,\"type\": \"string\",\"values\": [\"420100\",\"420200\",\"420300\",\"420400\",\"420500\",\"420600\"]},{\"attribute\": \"UACE10\",\"count\": 1,\"type\": \"string\",\"values\": [\"78904\"]},{\"attribute\": \"UATYP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"U\"]},{\"attribute\": \"UR10\",\"count\": 2,\"type\": \"string\",\"values\": [\"R\",\"U\"]},{\"attribute\": \"population\",\"count\": 74,\"type\": \"mixed\",\"values\": [\"\",1,10,11,1118,113,116,12,13,133,145,15,16,17,18,19,2,21,212,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,4,40,41,414,42,43,44,45,46,47,49,50,51,53,54,55,56,57,58,60,62,63,64,65,66,68,69,7,70,73,82,83,84,86,87,9,90,91,98],\"min\": 1,\"max\": 1118}]}]}}", "maxzoom": "12", "minzoom": "0", @@ -198,7 +199,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ] ] ] } } , @@ -512,7 +513,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.286758, 37.884067 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } , @@ -1950,7 +1951,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ], [ -122.283497, 37.889147 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.889207", "INTPTLON10": "-122.282320" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ] ] ] } } , diff --git a/tests/join-population/just-macarthur.mbtiles.json b/tests/join-population/just-macarthur.mbtiles.json index 34f480313..ab2d4066f 100644 --- a/tests/join-population/just-macarthur.mbtiles.json +++ b/tests/join-population/just-macarthur.mbtiles.json @@ -1,9 +1,10 @@ { "type": "FeatureCollection", "properties": { -"attribution": "macarthur attribution", +"attribution": "macarthur's attribution", "bounds": "-122.343750,37.695438,-122.104097,37.926868", "center": "-122.299805,37.892187,12", "description": "macarthur description", "format": "pbf", +"generator_options": "./tippecanoe -q -f -Z5 -z10 -o tests/join-population/macarthur.mbtiles -l macarthur tests/join-population/macarthur.json; ./tippecanoe -q -f -d10 -D10 -Z9 -z11 -o tests/join-population/macarthur2.mbtiles -l macarthur tests/join-population/macarthur2.json; ./tippecanoe -q -f -z12 -o tests/join-population/tabblock_06001420.mbtiles '-YALAND10:Land area' '-L{\"file\": \"tests/join-population/tabblock_06001420.json\", \"description\": \"population\"}'; ./tile-join -q -f -o tests/join-population/merged.mbtiles tests/join-population/tabblock_06001420.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur2.mbtiles; ./tile-join -q -f -l macarthur -n 'macarthur name' -N 'macarthur description' -A 'macarthur'\"'\"'s attribution' -o tests/join-population/just-macarthur.mbtiles tests/join-population/merged.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"macarthur\", \"description\": \"\", \"minzoom\": 5, \"maxzoom\": 11, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"macarthur\",\"count\": 169,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 5,\"type\": \"string\",\"values\": [\"Macarthur\",\"Macarthur Blvd\",\"Macarthur Fwy\",\"W Macarthur\",\"W Macarthur Blvd\"]},{\"attribute\": \"LINEARID\",\"count\": 43,\"type\": \"string\",\"values\": [\"1102155930810\",\"1102156217102\",\"1102156241736\",\"1102156248968\",\"1102156510290\",\"1102157509691\",\"1102157651658\",\"1102406970092\",\"1102406970093\",\"1102406970094\",\"1102406970095\",\"1102407366406\",\"1102638069562\",\"1102638078801\",\"1102654601627\",\"1102654601663\",\"1102654602215\",\"1102954189105\",\"1102954918511\",\"1103690383700\",\"1103690474249\",\"1103690474250\",\"1103690483026\",\"1103690483032\",\"1103717593123\",\"1104469713187\",\"1104469713198\",\"1104474748623\",\"1104475134288\",\"1104475134436\",\"1104485605278\",\"1104485645649\",\"1104485773833\",\"1104486090991\",\"1104486392881\",\"1105089436004\",\"1105089465114\",\"1105089465116\",\"1105281275434\",\"1105281275687\",\"1105281275688\",\"1105281275689\",\"1105281275692\"]},{\"attribute\": \"MTFCC\",\"count\": 2,\"type\": \"string\",\"values\": [\"S1100\",\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 1,\"type\": \"string\",\"values\": [\"M\"]}]}]}}", "maxzoom": "12", "minzoom": "0", diff --git a/tests/join-population/macarthur-6-9-exclude.mbtiles.json b/tests/join-population/macarthur-6-9-exclude.mbtiles.json index c3fafe6bc..e12a222d6 100644 --- a/tests/join-population/macarthur-6-9-exclude.mbtiles.json +++ b/tests/join-population/macarthur-6-9-exclude.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.167969,37.833010,9", "description": "tests/join-population/macarthur.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -Z5 -z10 -o tests/join-population/macarthur.mbtiles -l macarthur tests/join-population/macarthur.json; ./tile-join -q -f -Z6 -z9 -X -o tests/join-population/macarthur-6-9-exclude.mbtiles tests/join-population/macarthur.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"macarthur\", \"description\": \"\", \"minzoom\": 6, \"maxzoom\": 9, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"macarthur\",\"count\": 61,\"geometry\": \"LineString\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "9", "minzoom": "6", diff --git a/tests/join-population/macarthur-6-9.mbtiles.json b/tests/join-population/macarthur-6-9.mbtiles.json index e4459ca63..721b0f48a 100644 --- a/tests/join-population/macarthur-6-9.mbtiles.json +++ b/tests/join-population/macarthur-6-9.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.167969,37.833010,9", "description": "tests/join-population/macarthur.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -Z5 -z10 -o tests/join-population/macarthur.mbtiles -l macarthur tests/join-population/macarthur.json; ./tile-join -q -f -Z6 -z9 -o tests/join-population/macarthur-6-9.mbtiles tests/join-population/macarthur.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"macarthur\", \"description\": \"\", \"minzoom\": 6, \"maxzoom\": 9, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"macarthur\",\"count\": 61,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 3,\"type\": \"string\",\"values\": [\"Macarthur\",\"Macarthur Fwy\",\"W Macarthur\"]},{\"attribute\": \"LINEARID\",\"count\": 16,\"type\": \"string\",\"values\": [\"1102155930810\",\"1102156241736\",\"1102156510290\",\"1102638069562\",\"1102654601627\",\"1102654601663\",\"1102654602215\",\"1102954918511\",\"1103690383700\",\"1103690474249\",\"1103690474250\",\"1103690483026\",\"1103690483032\",\"1104474748623\",\"1104486090991\",\"1104486392881\"]},{\"attribute\": \"MTFCC\",\"count\": 2,\"type\": \"string\",\"values\": [\"S1100\",\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 1,\"type\": \"string\",\"values\": [\"M\"]}]}]}}", "maxzoom": "9", "minzoom": "6", diff --git a/tests/join-population/merged-folder.mbtiles.json b/tests/join-population/merged-folder.mbtiles.json index 2526e9c48..9ae1c84cc 100644 --- a/tests/join-population/merged-folder.mbtiles.json +++ b/tests/join-population/merged-folder.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.299805,37.892187,12", "description": "tests/join-population/tabblock_06001420-folder", "format": "pbf", +"generator_options": "./tippecanoe -q -Z5 -z10 -f -e tests/join-population/macarthur-folder -l macarthur tests/join-population/macarthur.json; ./tippecanoe -q -d10 -D10 -Z9 -z11 -f -e tests/join-population/macarthur2-folder -l macarthur tests/join-population/macarthur2.json; ./tippecanoe -q -z12 -f -e tests/join-population/tabblock_06001420-folder '-YALAND10:Land area' '-L{\"file\": \"tests/join-population/tabblock_06001420.json\", \"description\": \"population\"}'; ./tile-join -q -f -o tests/join-population/merged-folder.mbtiles tests/join-population/tabblock_06001420-folder tests/join-population/macarthur-folder tests/join-population/macarthur2-folder", "json": "{\"vector_layers\": [ { \"id\": \"macarthur\", \"description\": \"\", \"minzoom\": 5, \"maxzoom\": 11, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} }, { \"id\": \"tabblock_06001420\", \"description\": \"population\", \"minzoom\": 3, \"maxzoom\": 12, \"fields\": {\"ALAND10\": \"Land area\", \"AWATER10\": \"Number\", \"BLOCKCE10\": \"String\", \"COUNTYFP10\": \"String\", \"FUNCSTAT10\": \"String\", \"GEOID10\": \"String\", \"INTPTLAT10\": \"String\", \"INTPTLON10\": \"String\", \"MTFCC10\": \"String\", \"NAME10\": \"String\", \"STATEFP10\": \"String\", \"TRACTCE10\": \"String\", \"UACE10\": \"String\", \"UATYP10\": \"String\", \"UR10\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"macarthur\",\"count\": 169,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 5,\"type\": \"string\",\"values\": [\"Macarthur\",\"Macarthur Blvd\",\"Macarthur Fwy\",\"W Macarthur\",\"W Macarthur Blvd\"]},{\"attribute\": \"LINEARID\",\"count\": 43,\"type\": \"string\",\"values\": [\"1102155930810\",\"1102156217102\",\"1102156241736\",\"1102156248968\",\"1102156510290\",\"1102157509691\",\"1102157651658\",\"1102406970092\",\"1102406970093\",\"1102406970094\",\"1102406970095\",\"1102407366406\",\"1102638069562\",\"1102638078801\",\"1102654601627\",\"1102654601663\",\"1102654602215\",\"1102954189105\",\"1102954918511\",\"1103690383700\",\"1103690474249\",\"1103690474250\",\"1103690483026\",\"1103690483032\",\"1103717593123\",\"1104469713187\",\"1104469713198\",\"1104474748623\",\"1104475134288\",\"1104475134436\",\"1104485605278\",\"1104485645649\",\"1104485773833\",\"1104486090991\",\"1104486392881\",\"1105089436004\",\"1105089465114\",\"1105089465116\",\"1105281275434\",\"1105281275687\",\"1105281275688\",\"1105281275689\",\"1105281275692\"]},{\"attribute\": \"MTFCC\",\"count\": 2,\"type\": \"string\",\"values\": [\"S1100\",\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 1,\"type\": \"string\",\"values\": [\"M\"]}]},{\"layer\": \"tabblock_06001420\",\"count\": 1484,\"geometry\": \"Polygon\",\"attributeCount\": 15,\"attributes\": [{\"attribute\": \"ALAND10\",\"count\": 257,\"type\": \"number\",\"values\": [0,10019,10125,1018,1027,10320,10339,1037,1060,10769,10776,1094,10961,10975,11206,11282,11297,11306,11372,11825,11921,11928,11997,1201,12044,12062,1214,12213,1246,12579,1269,12945,13013,13106,1324,13452,13985,14000,14042,14044,14053,14087,14101,14158,14169,14185,14193,14219,14237,14270,14291,14449,14452,14453,14523,14539,14541,14557,14565,1457,14593,1461,14639,1466,14791,14799,14980,1509,15100,15240,15260,15494,15574,15665,15730,15921,15930,15974,16117,16120,16165,16183,16238,16246,16253,16332,16353,16431,16453,16535,16537,16605,16635,16691,16994,1704,17210,17230,17265,17308],\"min\": 0,\"max\": 542505},{\"attribute\": \"AWATER10\",\"count\": 4,\"type\": \"number\",\"values\": [0,1111196,1632801,24],\"min\": 0,\"max\": 1632801},{\"attribute\": \"BLOCKCE10\",\"count\": 82,\"type\": \"string\",\"values\": [\"1000\",\"1001\",\"1002\",\"1003\",\"1004\",\"1005\",\"1006\",\"1007\",\"1008\",\"1009\",\"1010\",\"1011\",\"1012\",\"1013\",\"1014\",\"1015\",\"1016\",\"1017\",\"1018\",\"1019\",\"1020\",\"1021\",\"1022\",\"1023\",\"1024\",\"1025\",\"1026\",\"1027\",\"1028\",\"1029\",\"1030\",\"1031\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"2016\",\"2017\",\"3000\",\"3001\",\"3002\",\"3003\",\"3004\",\"3005\",\"3006\",\"3007\",\"3008\",\"3009\",\"3010\",\"3011\",\"3012\",\"3013\",\"3014\",\"3015\",\"3016\",\"3017\",\"3018\",\"3019\",\"3020\",\"3021\",\"3022\",\"3023\",\"3024\",\"3025\",\"3026\",\"3027\",\"3028\",\"3029\",\"3030\",\"3031\"]},{\"attribute\": \"COUNTYFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"001\"]},{\"attribute\": \"FUNCSTAT10\",\"count\": 1,\"type\": \"string\",\"values\": [\"S\"]},{\"attribute\": \"GEOID10\",\"count\": 260,\"type\": \"string\",\"values\": [\"060014201001000\",\"060014201001001\",\"060014201001002\",\"060014201001003\",\"060014201001004\",\"060014201001005\",\"060014201001006\",\"060014201001007\",\"060014201001008\",\"060014201001009\",\"060014201001010\",\"060014201001011\",\"060014201001012\",\"060014201001013\",\"060014201001014\",\"060014201001015\",\"060014201001016\",\"060014201001017\",\"060014201001018\",\"060014201001019\",\"060014201002000\",\"060014201002001\",\"060014201002002\",\"060014201002003\",\"060014201002004\",\"060014201002005\",\"060014201002006\",\"060014201002007\",\"060014201002008\",\"060014201002009\",\"060014201002010\",\"060014201002011\",\"060014201002012\",\"060014201002013\",\"060014201002014\",\"060014201002015\",\"060014201003000\",\"060014201003001\",\"060014201003002\",\"060014201003003\",\"060014201003004\",\"060014201003005\",\"060014201003006\",\"060014201003007\",\"060014201003008\",\"060014202001000\",\"060014202001001\",\"060014202001002\",\"060014202001003\",\"060014202001004\",\"060014202001005\",\"060014202001006\",\"060014202001007\",\"060014202001008\",\"060014202001009\",\"060014202001010\",\"060014202001011\",\"060014202001012\",\"060014202001013\",\"060014202001014\",\"060014202002000\",\"060014202002001\",\"060014202002002\",\"060014202002003\",\"060014202002004\",\"060014202002005\",\"060014202002006\",\"060014202002007\",\"060014202002008\",\"060014202002009\",\"060014202002010\",\"060014202002011\",\"060014202002012\",\"060014202003000\",\"060014202003001\",\"060014202003002\",\"060014202003003\",\"060014202003004\",\"060014202003005\",\"060014202003006\",\"060014202003007\",\"060014202003008\",\"060014202003009\",\"060014202003010\",\"060014202003011\",\"060014202003012\",\"060014203001000\",\"060014203001001\",\"060014203001002\",\"060014203001003\",\"060014203001004\",\"060014203001005\",\"060014203001006\",\"060014203001007\",\"060014203001008\",\"060014203001009\",\"060014203001010\",\"060014203001011\",\"060014203001012\",\"060014203001013\"]},{\"attribute\": \"INTPTLAT10\",\"count\": 257,\"type\": \"string\",\"values\": [\"+37.882724\",\"+37.882857\",\"+37.882965\",\"+37.883224\",\"+37.883323\",\"+37.883462\",\"+37.883465\",\"+37.883481\",\"+37.883493\",\"+37.883527\",\"+37.883536\",\"+37.883579\",\"+37.883655\",\"+37.883693\",\"+37.883707\",\"+37.883745\",\"+37.883836\",\"+37.883871\",\"+37.883875\",\"+37.883931\",\"+37.883973\",\"+37.883995\",\"+37.884009\",\"+37.884079\",\"+37.884198\",\"+37.884202\",\"+37.884338\",\"+37.884369\",\"+37.884436\",\"+37.884677\",\"+37.884743\",\"+37.884747\",\"+37.884757\",\"+37.884896\",\"+37.884902\",\"+37.884919\",\"+37.884942\",\"+37.885307\",\"+37.885308\",\"+37.885399\",\"+37.885448\",\"+37.885491\",\"+37.885644\",\"+37.885646\",\"+37.885673\",\"+37.885811\",\"+37.885827\",\"+37.885997\",\"+37.886159\",\"+37.886194\",\"+37.886197\",\"+37.886237\",\"+37.886278\",\"+37.886322\",\"+37.886339\",\"+37.886439\",\"+37.886460\",\"+37.886495\",\"+37.886587\",\"+37.886596\",\"+37.886608\",\"+37.886758\",\"+37.886830\",\"+37.886929\",\"+37.887099\",\"+37.887163\",\"+37.887238\",\"+37.887267\",\"+37.887324\",\"+37.887379\",\"+37.887412\",\"+37.887570\",\"+37.887764\",\"+37.887776\",\"+37.887789\",\"+37.887852\",\"+37.887885\",\"+37.887916\",\"+37.887945\",\"+37.888027\",\"+37.888122\",\"+37.888238\",\"+37.888325\",\"+37.888332\",\"+37.888340\",\"+37.888416\",\"+37.888418\",\"+37.888441\",\"+37.888458\",\"+37.888506\",\"+37.888511\",\"+37.888540\",\"+37.888616\",\"+37.888634\",\"+37.888734\",\"+37.888782\",\"+37.888823\",\"+37.888848\",\"+37.888859\",\"+37.888863\"]},{\"attribute\": \"INTPTLON10\",\"count\": 259,\"type\": \"string\",\"values\": [\"-122.282320\",\"-122.282371\",\"-122.282679\",\"-122.282689\",\"-122.282947\",\"-122.283067\",\"-122.283212\",\"-122.283424\",\"-122.283651\",\"-122.283723\",\"-122.283797\",\"-122.283828\",\"-122.283924\",\"-122.283973\",\"-122.284471\",\"-122.284571\",\"-122.284590\",\"-122.284831\",\"-122.285020\",\"-122.285076\",\"-122.285093\",\"-122.285175\",\"-122.285609\",\"-122.285651\",\"-122.285682\",\"-122.285901\",\"-122.285971\",\"-122.286179\",\"-122.286324\",\"-122.286349\",\"-122.286366\",\"-122.286615\",\"-122.286636\",\"-122.286818\",\"-122.286865\",\"-122.286913\",\"-122.287055\",\"-122.287082\",\"-122.287097\",\"-122.287125\",\"-122.287205\",\"-122.287275\",\"-122.287323\",\"-122.287379\",\"-122.287583\",\"-122.287591\",\"-122.287634\",\"-122.287747\",\"-122.287757\",\"-122.287836\",\"-122.287926\",\"-122.287969\",\"-122.288150\",\"-122.288221\",\"-122.288237\",\"-122.288313\",\"-122.288382\",\"-122.288473\",\"-122.288602\",\"-122.288628\",\"-122.288677\",\"-122.288696\",\"-122.288764\",\"-122.288787\",\"-122.288910\",\"-122.289020\",\"-122.289219\",\"-122.289471\",\"-122.289472\",\"-122.289530\",\"-122.289570\",\"-122.289573\",\"-122.289663\",\"-122.289764\",\"-122.289959\",\"-122.290117\",\"-122.290340\",\"-122.290441\",\"-122.290522\",\"-122.290573\",\"-122.290615\",\"-122.290964\",\"-122.290980\",\"-122.291137\",\"-122.291217\",\"-122.291315\",\"-122.291350\",\"-122.291391\",\"-122.291474\",\"-122.291484\",\"-122.291592\",\"-122.291817\",\"-122.291926\",\"-122.292014\",\"-122.292116\",\"-122.292153\",\"-122.292289\",\"-122.292309\",\"-122.292394\",\"-122.292415\"]},{\"attribute\": \"MTFCC10\",\"count\": 1,\"type\": \"string\",\"values\": [\"G5040\"]},{\"attribute\": \"NAME10\",\"count\": 82,\"type\": \"string\",\"values\": [\"Block 1000\",\"Block 1001\",\"Block 1002\",\"Block 1003\",\"Block 1004\",\"Block 1005\",\"Block 1006\",\"Block 1007\",\"Block 1008\",\"Block 1009\",\"Block 1010\",\"Block 1011\",\"Block 1012\",\"Block 1013\",\"Block 1014\",\"Block 1015\",\"Block 1016\",\"Block 1017\",\"Block 1018\",\"Block 1019\",\"Block 1020\",\"Block 1021\",\"Block 1022\",\"Block 1023\",\"Block 1024\",\"Block 1025\",\"Block 1026\",\"Block 1027\",\"Block 1028\",\"Block 1029\",\"Block 1030\",\"Block 1031\",\"Block 2000\",\"Block 2001\",\"Block 2002\",\"Block 2003\",\"Block 2004\",\"Block 2005\",\"Block 2006\",\"Block 2007\",\"Block 2008\",\"Block 2009\",\"Block 2010\",\"Block 2011\",\"Block 2012\",\"Block 2013\",\"Block 2014\",\"Block 2015\",\"Block 2016\",\"Block 2017\",\"Block 3000\",\"Block 3001\",\"Block 3002\",\"Block 3003\",\"Block 3004\",\"Block 3005\",\"Block 3006\",\"Block 3007\",\"Block 3008\",\"Block 3009\",\"Block 3010\",\"Block 3011\",\"Block 3012\",\"Block 3013\",\"Block 3014\",\"Block 3015\",\"Block 3016\",\"Block 3017\",\"Block 3018\",\"Block 3019\",\"Block 3020\",\"Block 3021\",\"Block 3022\",\"Block 3023\",\"Block 3024\",\"Block 3025\",\"Block 3026\",\"Block 3027\",\"Block 3028\",\"Block 3029\",\"Block 3030\",\"Block 3031\"]},{\"attribute\": \"STATEFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"TRACTCE10\",\"count\": 6,\"type\": \"string\",\"values\": [\"420100\",\"420200\",\"420300\",\"420400\",\"420500\",\"420600\"]},{\"attribute\": \"UACE10\",\"count\": 1,\"type\": \"string\",\"values\": [\"78904\"]},{\"attribute\": \"UATYP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"U\"]},{\"attribute\": \"UR10\",\"count\": 2,\"type\": \"string\",\"values\": [\"R\",\"U\"]}]}]}}", "maxzoom": "12", "minzoom": "0", @@ -280,7 +281,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ] ] ] } } , @@ -594,7 +595,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.286758, 37.884067 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } , @@ -2262,7 +2263,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ], [ -122.283497, 37.889147 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.889207", "INTPTLON10": "-122.282320" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ] ] ] } } , diff --git a/tests/join-population/merged.mbtiles.json b/tests/join-population/merged.mbtiles.json index 2dacd04f3..1bfe735c2 100644 --- a/tests/join-population/merged.mbtiles.json +++ b/tests/join-population/merged.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.299805,37.892187,12", "description": "tests/join-population/tabblock_06001420.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -Z5 -z10 -o tests/join-population/macarthur.mbtiles -l macarthur tests/join-population/macarthur.json; ./tippecanoe -q -f -d10 -D10 -Z9 -z11 -o tests/join-population/macarthur2.mbtiles -l macarthur tests/join-population/macarthur2.json; ./tippecanoe -q -f -z12 -o tests/join-population/tabblock_06001420.mbtiles '-YALAND10:Land area' '-L{\"file\": \"tests/join-population/tabblock_06001420.json\", \"description\": \"population\"}'; ./tile-join -q -f -o tests/join-population/merged.mbtiles tests/join-population/tabblock_06001420.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur2.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"macarthur\", \"description\": \"\", \"minzoom\": 5, \"maxzoom\": 11, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} }, { \"id\": \"tabblock_06001420\", \"description\": \"population\", \"minzoom\": 3, \"maxzoom\": 12, \"fields\": {\"ALAND10\": \"Land area\", \"AWATER10\": \"Number\", \"BLOCKCE10\": \"String\", \"COUNTYFP10\": \"String\", \"FUNCSTAT10\": \"String\", \"GEOID10\": \"String\", \"INTPTLAT10\": \"String\", \"INTPTLON10\": \"String\", \"MTFCC10\": \"String\", \"NAME10\": \"String\", \"STATEFP10\": \"String\", \"TRACTCE10\": \"String\", \"UACE10\": \"String\", \"UATYP10\": \"String\", \"UR10\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"macarthur\",\"count\": 169,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 5,\"type\": \"string\",\"values\": [\"Macarthur\",\"Macarthur Blvd\",\"Macarthur Fwy\",\"W Macarthur\",\"W Macarthur Blvd\"]},{\"attribute\": \"LINEARID\",\"count\": 43,\"type\": \"string\",\"values\": [\"1102155930810\",\"1102156217102\",\"1102156241736\",\"1102156248968\",\"1102156510290\",\"1102157509691\",\"1102157651658\",\"1102406970092\",\"1102406970093\",\"1102406970094\",\"1102406970095\",\"1102407366406\",\"1102638069562\",\"1102638078801\",\"1102654601627\",\"1102654601663\",\"1102654602215\",\"1102954189105\",\"1102954918511\",\"1103690383700\",\"1103690474249\",\"1103690474250\",\"1103690483026\",\"1103690483032\",\"1103717593123\",\"1104469713187\",\"1104469713198\",\"1104474748623\",\"1104475134288\",\"1104475134436\",\"1104485605278\",\"1104485645649\",\"1104485773833\",\"1104486090991\",\"1104486392881\",\"1105089436004\",\"1105089465114\",\"1105089465116\",\"1105281275434\",\"1105281275687\",\"1105281275688\",\"1105281275689\",\"1105281275692\"]},{\"attribute\": \"MTFCC\",\"count\": 2,\"type\": \"string\",\"values\": [\"S1100\",\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 1,\"type\": \"string\",\"values\": [\"M\"]}]},{\"layer\": \"tabblock_06001420\",\"count\": 1484,\"geometry\": \"Polygon\",\"attributeCount\": 15,\"attributes\": [{\"attribute\": \"ALAND10\",\"count\": 257,\"type\": \"number\",\"values\": [0,10019,10125,1018,1027,10320,10339,1037,1060,10769,10776,1094,10961,10975,11206,11282,11297,11306,11372,11825,11921,11928,11997,1201,12044,12062,1214,12213,1246,12579,1269,12945,13013,13106,1324,13452,13985,14000,14042,14044,14053,14087,14101,14158,14169,14185,14193,14219,14237,14270,14291,14449,14452,14453,14523,14539,14541,14557,14565,1457,14593,1461,14639,1466,14791,14799,14980,1509,15100,15240,15260,15494,15574,15665,15730,15921,15930,15974,16117,16120,16165,16183,16238,16246,16253,16332,16353,16431,16453,16535,16537,16605,16635,16691,16994,1704,17210,17230,17265,17308],\"min\": 0,\"max\": 542505},{\"attribute\": \"AWATER10\",\"count\": 4,\"type\": \"number\",\"values\": [0,1111196,1632801,24],\"min\": 0,\"max\": 1632801},{\"attribute\": \"BLOCKCE10\",\"count\": 82,\"type\": \"string\",\"values\": [\"1000\",\"1001\",\"1002\",\"1003\",\"1004\",\"1005\",\"1006\",\"1007\",\"1008\",\"1009\",\"1010\",\"1011\",\"1012\",\"1013\",\"1014\",\"1015\",\"1016\",\"1017\",\"1018\",\"1019\",\"1020\",\"1021\",\"1022\",\"1023\",\"1024\",\"1025\",\"1026\",\"1027\",\"1028\",\"1029\",\"1030\",\"1031\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"2016\",\"2017\",\"3000\",\"3001\",\"3002\",\"3003\",\"3004\",\"3005\",\"3006\",\"3007\",\"3008\",\"3009\",\"3010\",\"3011\",\"3012\",\"3013\",\"3014\",\"3015\",\"3016\",\"3017\",\"3018\",\"3019\",\"3020\",\"3021\",\"3022\",\"3023\",\"3024\",\"3025\",\"3026\",\"3027\",\"3028\",\"3029\",\"3030\",\"3031\"]},{\"attribute\": \"COUNTYFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"001\"]},{\"attribute\": \"FUNCSTAT10\",\"count\": 1,\"type\": \"string\",\"values\": [\"S\"]},{\"attribute\": \"GEOID10\",\"count\": 260,\"type\": \"string\",\"values\": [\"060014201001000\",\"060014201001001\",\"060014201001002\",\"060014201001003\",\"060014201001004\",\"060014201001005\",\"060014201001006\",\"060014201001007\",\"060014201001008\",\"060014201001009\",\"060014201001010\",\"060014201001011\",\"060014201001012\",\"060014201001013\",\"060014201001014\",\"060014201001015\",\"060014201001016\",\"060014201001017\",\"060014201001018\",\"060014201001019\",\"060014201002000\",\"060014201002001\",\"060014201002002\",\"060014201002003\",\"060014201002004\",\"060014201002005\",\"060014201002006\",\"060014201002007\",\"060014201002008\",\"060014201002009\",\"060014201002010\",\"060014201002011\",\"060014201002012\",\"060014201002013\",\"060014201002014\",\"060014201002015\",\"060014201003000\",\"060014201003001\",\"060014201003002\",\"060014201003003\",\"060014201003004\",\"060014201003005\",\"060014201003006\",\"060014201003007\",\"060014201003008\",\"060014202001000\",\"060014202001001\",\"060014202001002\",\"060014202001003\",\"060014202001004\",\"060014202001005\",\"060014202001006\",\"060014202001007\",\"060014202001008\",\"060014202001009\",\"060014202001010\",\"060014202001011\",\"060014202001012\",\"060014202001013\",\"060014202001014\",\"060014202002000\",\"060014202002001\",\"060014202002002\",\"060014202002003\",\"060014202002004\",\"060014202002005\",\"060014202002006\",\"060014202002007\",\"060014202002008\",\"060014202002009\",\"060014202002010\",\"060014202002011\",\"060014202002012\",\"060014202003000\",\"060014202003001\",\"060014202003002\",\"060014202003003\",\"060014202003004\",\"060014202003005\",\"060014202003006\",\"060014202003007\",\"060014202003008\",\"060014202003009\",\"060014202003010\",\"060014202003011\",\"060014202003012\",\"060014203001000\",\"060014203001001\",\"060014203001002\",\"060014203001003\",\"060014203001004\",\"060014203001005\",\"060014203001006\",\"060014203001007\",\"060014203001008\",\"060014203001009\",\"060014203001010\",\"060014203001011\",\"060014203001012\",\"060014203001013\"]},{\"attribute\": \"INTPTLAT10\",\"count\": 257,\"type\": \"string\",\"values\": [\"+37.882724\",\"+37.882857\",\"+37.882965\",\"+37.883224\",\"+37.883323\",\"+37.883462\",\"+37.883465\",\"+37.883481\",\"+37.883493\",\"+37.883527\",\"+37.883536\",\"+37.883579\",\"+37.883655\",\"+37.883693\",\"+37.883707\",\"+37.883745\",\"+37.883836\",\"+37.883871\",\"+37.883875\",\"+37.883931\",\"+37.883973\",\"+37.883995\",\"+37.884009\",\"+37.884079\",\"+37.884198\",\"+37.884202\",\"+37.884338\",\"+37.884369\",\"+37.884436\",\"+37.884677\",\"+37.884743\",\"+37.884747\",\"+37.884757\",\"+37.884896\",\"+37.884902\",\"+37.884919\",\"+37.884942\",\"+37.885307\",\"+37.885308\",\"+37.885399\",\"+37.885448\",\"+37.885491\",\"+37.885644\",\"+37.885646\",\"+37.885673\",\"+37.885811\",\"+37.885827\",\"+37.885997\",\"+37.886159\",\"+37.886194\",\"+37.886197\",\"+37.886237\",\"+37.886278\",\"+37.886322\",\"+37.886339\",\"+37.886439\",\"+37.886460\",\"+37.886495\",\"+37.886587\",\"+37.886596\",\"+37.886608\",\"+37.886758\",\"+37.886830\",\"+37.886929\",\"+37.887099\",\"+37.887163\",\"+37.887238\",\"+37.887267\",\"+37.887324\",\"+37.887379\",\"+37.887412\",\"+37.887570\",\"+37.887764\",\"+37.887776\",\"+37.887789\",\"+37.887852\",\"+37.887885\",\"+37.887916\",\"+37.887945\",\"+37.888027\",\"+37.888122\",\"+37.888238\",\"+37.888325\",\"+37.888332\",\"+37.888340\",\"+37.888416\",\"+37.888418\",\"+37.888441\",\"+37.888458\",\"+37.888506\",\"+37.888511\",\"+37.888540\",\"+37.888616\",\"+37.888634\",\"+37.888734\",\"+37.888782\",\"+37.888823\",\"+37.888848\",\"+37.888859\",\"+37.888863\"]},{\"attribute\": \"INTPTLON10\",\"count\": 259,\"type\": \"string\",\"values\": [\"-122.282320\",\"-122.282371\",\"-122.282679\",\"-122.282689\",\"-122.282947\",\"-122.283067\",\"-122.283212\",\"-122.283424\",\"-122.283651\",\"-122.283723\",\"-122.283797\",\"-122.283828\",\"-122.283924\",\"-122.283973\",\"-122.284471\",\"-122.284571\",\"-122.284590\",\"-122.284831\",\"-122.285020\",\"-122.285076\",\"-122.285093\",\"-122.285175\",\"-122.285609\",\"-122.285651\",\"-122.285682\",\"-122.285901\",\"-122.285971\",\"-122.286179\",\"-122.286324\",\"-122.286349\",\"-122.286366\",\"-122.286615\",\"-122.286636\",\"-122.286818\",\"-122.286865\",\"-122.286913\",\"-122.287055\",\"-122.287082\",\"-122.287097\",\"-122.287125\",\"-122.287205\",\"-122.287275\",\"-122.287323\",\"-122.287379\",\"-122.287583\",\"-122.287591\",\"-122.287634\",\"-122.287747\",\"-122.287757\",\"-122.287836\",\"-122.287926\",\"-122.287969\",\"-122.288150\",\"-122.288221\",\"-122.288237\",\"-122.288313\",\"-122.288382\",\"-122.288473\",\"-122.288602\",\"-122.288628\",\"-122.288677\",\"-122.288696\",\"-122.288764\",\"-122.288787\",\"-122.288910\",\"-122.289020\",\"-122.289219\",\"-122.289471\",\"-122.289472\",\"-122.289530\",\"-122.289570\",\"-122.289573\",\"-122.289663\",\"-122.289764\",\"-122.289959\",\"-122.290117\",\"-122.290340\",\"-122.290441\",\"-122.290522\",\"-122.290573\",\"-122.290615\",\"-122.290964\",\"-122.290980\",\"-122.291137\",\"-122.291217\",\"-122.291315\",\"-122.291350\",\"-122.291391\",\"-122.291474\",\"-122.291484\",\"-122.291592\",\"-122.291817\",\"-122.291926\",\"-122.292014\",\"-122.292116\",\"-122.292153\",\"-122.292289\",\"-122.292309\",\"-122.292394\",\"-122.292415\"]},{\"attribute\": \"MTFCC10\",\"count\": 1,\"type\": \"string\",\"values\": [\"G5040\"]},{\"attribute\": \"NAME10\",\"count\": 82,\"type\": \"string\",\"values\": [\"Block 1000\",\"Block 1001\",\"Block 1002\",\"Block 1003\",\"Block 1004\",\"Block 1005\",\"Block 1006\",\"Block 1007\",\"Block 1008\",\"Block 1009\",\"Block 1010\",\"Block 1011\",\"Block 1012\",\"Block 1013\",\"Block 1014\",\"Block 1015\",\"Block 1016\",\"Block 1017\",\"Block 1018\",\"Block 1019\",\"Block 1020\",\"Block 1021\",\"Block 1022\",\"Block 1023\",\"Block 1024\",\"Block 1025\",\"Block 1026\",\"Block 1027\",\"Block 1028\",\"Block 1029\",\"Block 1030\",\"Block 1031\",\"Block 2000\",\"Block 2001\",\"Block 2002\",\"Block 2003\",\"Block 2004\",\"Block 2005\",\"Block 2006\",\"Block 2007\",\"Block 2008\",\"Block 2009\",\"Block 2010\",\"Block 2011\",\"Block 2012\",\"Block 2013\",\"Block 2014\",\"Block 2015\",\"Block 2016\",\"Block 2017\",\"Block 3000\",\"Block 3001\",\"Block 3002\",\"Block 3003\",\"Block 3004\",\"Block 3005\",\"Block 3006\",\"Block 3007\",\"Block 3008\",\"Block 3009\",\"Block 3010\",\"Block 3011\",\"Block 3012\",\"Block 3013\",\"Block 3014\",\"Block 3015\",\"Block 3016\",\"Block 3017\",\"Block 3018\",\"Block 3019\",\"Block 3020\",\"Block 3021\",\"Block 3022\",\"Block 3023\",\"Block 3024\",\"Block 3025\",\"Block 3026\",\"Block 3027\",\"Block 3028\",\"Block 3029\",\"Block 3030\",\"Block 3031\"]},{\"attribute\": \"STATEFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"TRACTCE10\",\"count\": 6,\"type\": \"string\",\"values\": [\"420100\",\"420200\",\"420300\",\"420400\",\"420500\",\"420600\"]},{\"attribute\": \"UACE10\",\"count\": 1,\"type\": \"string\",\"values\": [\"78904\"]},{\"attribute\": \"UATYP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"U\"]},{\"attribute\": \"UR10\",\"count\": 2,\"type\": \"string\",\"values\": [\"R\",\"U\"]}]}]}}", "maxzoom": "12", "minzoom": "0", @@ -280,7 +281,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ] ] ] } } , @@ -594,7 +595,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.286758, 37.884067 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } , @@ -2262,7 +2263,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ], [ -122.283497, 37.889147 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.889207", "INTPTLON10": "-122.282320" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ] ] ] } } , diff --git a/tests/join-population/no-macarthur.mbtiles.json b/tests/join-population/no-macarthur.mbtiles.json index 5e83c1538..c6e899e63 100644 --- a/tests/join-population/no-macarthur.mbtiles.json +++ b/tests/join-population/no-macarthur.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.299805,37.892187,12", "description": "tests/join-population/tabblock_06001420.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -Z5 -z10 -o tests/join-population/macarthur.mbtiles -l macarthur tests/join-population/macarthur.json; ./tippecanoe -q -f -d10 -D10 -Z9 -z11 -o tests/join-population/macarthur2.mbtiles -l macarthur tests/join-population/macarthur2.json; ./tippecanoe -q -f -z12 -o tests/join-population/tabblock_06001420.mbtiles '-YALAND10:Land area' '-L{\"file\": \"tests/join-population/tabblock_06001420.json\", \"description\": \"population\"}'; ./tile-join -q -f -o tests/join-population/merged.mbtiles tests/join-population/tabblock_06001420.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur2.mbtiles; ./tile-join -q -f -L macarthur -o tests/join-population/no-macarthur.mbtiles tests/join-population/merged.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"tabblock_06001420\", \"description\": \"population\", \"minzoom\": 3, \"maxzoom\": 12, \"fields\": {\"ALAND10\": \"Land area\", \"AWATER10\": \"Number\", \"BLOCKCE10\": \"String\", \"COUNTYFP10\": \"String\", \"FUNCSTAT10\": \"String\", \"GEOID10\": \"String\", \"INTPTLAT10\": \"String\", \"INTPTLON10\": \"String\", \"MTFCC10\": \"String\", \"NAME10\": \"String\", \"STATEFP10\": \"String\", \"TRACTCE10\": \"String\", \"UACE10\": \"String\", \"UATYP10\": \"String\", \"UR10\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"tabblock_06001420\",\"count\": 1484,\"geometry\": \"Polygon\",\"attributeCount\": 15,\"attributes\": [{\"attribute\": \"ALAND10\",\"count\": 257,\"type\": \"number\",\"values\": [0,10019,10125,1018,1027,10320,10339,1037,1060,10769,10776,1094,10961,10975,11206,11282,11297,11306,11372,11825,11921,11928,11997,1201,12044,12062,1214,12213,1246,12579,1269,12945,13013,13106,1324,13452,13985,14000,14042,14044,14053,14087,14101,14158,14169,14185,14193,14219,14237,14270,14291,14449,14452,14453,14523,14539,14541,14557,14565,1457,14593,1461,14639,1466,14791,14799,14980,1509,15100,15240,15260,15494,15574,15665,15730,15921,15930,15974,16117,16120,16165,16183,16238,16246,16253,16332,16353,16431,16453,16535,16537,16605,16635,16691,16994,1704,17210,17230,17265,17308],\"min\": 0,\"max\": 542505},{\"attribute\": \"AWATER10\",\"count\": 4,\"type\": \"number\",\"values\": [0,1111196,1632801,24],\"min\": 0,\"max\": 1632801},{\"attribute\": \"BLOCKCE10\",\"count\": 82,\"type\": \"string\",\"values\": [\"1000\",\"1001\",\"1002\",\"1003\",\"1004\",\"1005\",\"1006\",\"1007\",\"1008\",\"1009\",\"1010\",\"1011\",\"1012\",\"1013\",\"1014\",\"1015\",\"1016\",\"1017\",\"1018\",\"1019\",\"1020\",\"1021\",\"1022\",\"1023\",\"1024\",\"1025\",\"1026\",\"1027\",\"1028\",\"1029\",\"1030\",\"1031\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"2016\",\"2017\",\"3000\",\"3001\",\"3002\",\"3003\",\"3004\",\"3005\",\"3006\",\"3007\",\"3008\",\"3009\",\"3010\",\"3011\",\"3012\",\"3013\",\"3014\",\"3015\",\"3016\",\"3017\",\"3018\",\"3019\",\"3020\",\"3021\",\"3022\",\"3023\",\"3024\",\"3025\",\"3026\",\"3027\",\"3028\",\"3029\",\"3030\",\"3031\"]},{\"attribute\": \"COUNTYFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"001\"]},{\"attribute\": \"FUNCSTAT10\",\"count\": 1,\"type\": \"string\",\"values\": [\"S\"]},{\"attribute\": \"GEOID10\",\"count\": 260,\"type\": \"string\",\"values\": [\"060014201001000\",\"060014201001001\",\"060014201001002\",\"060014201001003\",\"060014201001004\",\"060014201001005\",\"060014201001006\",\"060014201001007\",\"060014201001008\",\"060014201001009\",\"060014201001010\",\"060014201001011\",\"060014201001012\",\"060014201001013\",\"060014201001014\",\"060014201001015\",\"060014201001016\",\"060014201001017\",\"060014201001018\",\"060014201001019\",\"060014201002000\",\"060014201002001\",\"060014201002002\",\"060014201002003\",\"060014201002004\",\"060014201002005\",\"060014201002006\",\"060014201002007\",\"060014201002008\",\"060014201002009\",\"060014201002010\",\"060014201002011\",\"060014201002012\",\"060014201002013\",\"060014201002014\",\"060014201002015\",\"060014201003000\",\"060014201003001\",\"060014201003002\",\"060014201003003\",\"060014201003004\",\"060014201003005\",\"060014201003006\",\"060014201003007\",\"060014201003008\",\"060014202001000\",\"060014202001001\",\"060014202001002\",\"060014202001003\",\"060014202001004\",\"060014202001005\",\"060014202001006\",\"060014202001007\",\"060014202001008\",\"060014202001009\",\"060014202001010\",\"060014202001011\",\"060014202001012\",\"060014202001013\",\"060014202001014\",\"060014202002000\",\"060014202002001\",\"060014202002002\",\"060014202002003\",\"060014202002004\",\"060014202002005\",\"060014202002006\",\"060014202002007\",\"060014202002008\",\"060014202002009\",\"060014202002010\",\"060014202002011\",\"060014202002012\",\"060014202003000\",\"060014202003001\",\"060014202003002\",\"060014202003003\",\"060014202003004\",\"060014202003005\",\"060014202003006\",\"060014202003007\",\"060014202003008\",\"060014202003009\",\"060014202003010\",\"060014202003011\",\"060014202003012\",\"060014203001000\",\"060014203001001\",\"060014203001002\",\"060014203001003\",\"060014203001004\",\"060014203001005\",\"060014203001006\",\"060014203001007\",\"060014203001008\",\"060014203001009\",\"060014203001010\",\"060014203001011\",\"060014203001012\",\"060014203001013\"]},{\"attribute\": \"INTPTLAT10\",\"count\": 257,\"type\": \"string\",\"values\": [\"+37.882724\",\"+37.882857\",\"+37.882965\",\"+37.883224\",\"+37.883323\",\"+37.883462\",\"+37.883465\",\"+37.883481\",\"+37.883493\",\"+37.883527\",\"+37.883536\",\"+37.883579\",\"+37.883655\",\"+37.883693\",\"+37.883707\",\"+37.883745\",\"+37.883836\",\"+37.883871\",\"+37.883875\",\"+37.883931\",\"+37.883973\",\"+37.883995\",\"+37.884009\",\"+37.884079\",\"+37.884198\",\"+37.884202\",\"+37.884338\",\"+37.884369\",\"+37.884436\",\"+37.884677\",\"+37.884743\",\"+37.884747\",\"+37.884757\",\"+37.884896\",\"+37.884902\",\"+37.884919\",\"+37.884942\",\"+37.885307\",\"+37.885308\",\"+37.885399\",\"+37.885448\",\"+37.885491\",\"+37.885644\",\"+37.885646\",\"+37.885673\",\"+37.885811\",\"+37.885827\",\"+37.885997\",\"+37.886159\",\"+37.886194\",\"+37.886197\",\"+37.886237\",\"+37.886278\",\"+37.886322\",\"+37.886339\",\"+37.886439\",\"+37.886460\",\"+37.886495\",\"+37.886587\",\"+37.886596\",\"+37.886608\",\"+37.886758\",\"+37.886830\",\"+37.886929\",\"+37.887099\",\"+37.887163\",\"+37.887238\",\"+37.887267\",\"+37.887324\",\"+37.887379\",\"+37.887412\",\"+37.887570\",\"+37.887764\",\"+37.887776\",\"+37.887789\",\"+37.887852\",\"+37.887885\",\"+37.887916\",\"+37.887945\",\"+37.888027\",\"+37.888122\",\"+37.888238\",\"+37.888325\",\"+37.888332\",\"+37.888340\",\"+37.888416\",\"+37.888418\",\"+37.888441\",\"+37.888458\",\"+37.888506\",\"+37.888511\",\"+37.888540\",\"+37.888616\",\"+37.888634\",\"+37.888734\",\"+37.888782\",\"+37.888823\",\"+37.888848\",\"+37.888859\",\"+37.888863\"]},{\"attribute\": \"INTPTLON10\",\"count\": 259,\"type\": \"string\",\"values\": [\"-122.282320\",\"-122.282371\",\"-122.282679\",\"-122.282689\",\"-122.282947\",\"-122.283067\",\"-122.283212\",\"-122.283424\",\"-122.283651\",\"-122.283723\",\"-122.283797\",\"-122.283828\",\"-122.283924\",\"-122.283973\",\"-122.284471\",\"-122.284571\",\"-122.284590\",\"-122.284831\",\"-122.285020\",\"-122.285076\",\"-122.285093\",\"-122.285175\",\"-122.285609\",\"-122.285651\",\"-122.285682\",\"-122.285901\",\"-122.285971\",\"-122.286179\",\"-122.286324\",\"-122.286349\",\"-122.286366\",\"-122.286615\",\"-122.286636\",\"-122.286818\",\"-122.286865\",\"-122.286913\",\"-122.287055\",\"-122.287082\",\"-122.287097\",\"-122.287125\",\"-122.287205\",\"-122.287275\",\"-122.287323\",\"-122.287379\",\"-122.287583\",\"-122.287591\",\"-122.287634\",\"-122.287747\",\"-122.287757\",\"-122.287836\",\"-122.287926\",\"-122.287969\",\"-122.288150\",\"-122.288221\",\"-122.288237\",\"-122.288313\",\"-122.288382\",\"-122.288473\",\"-122.288602\",\"-122.288628\",\"-122.288677\",\"-122.288696\",\"-122.288764\",\"-122.288787\",\"-122.288910\",\"-122.289020\",\"-122.289219\",\"-122.289471\",\"-122.289472\",\"-122.289530\",\"-122.289570\",\"-122.289573\",\"-122.289663\",\"-122.289764\",\"-122.289959\",\"-122.290117\",\"-122.290340\",\"-122.290441\",\"-122.290522\",\"-122.290573\",\"-122.290615\",\"-122.290964\",\"-122.290980\",\"-122.291137\",\"-122.291217\",\"-122.291315\",\"-122.291350\",\"-122.291391\",\"-122.291474\",\"-122.291484\",\"-122.291592\",\"-122.291817\",\"-122.291926\",\"-122.292014\",\"-122.292116\",\"-122.292153\",\"-122.292289\",\"-122.292309\",\"-122.292394\",\"-122.292415\"]},{\"attribute\": \"MTFCC10\",\"count\": 1,\"type\": \"string\",\"values\": [\"G5040\"]},{\"attribute\": \"NAME10\",\"count\": 82,\"type\": \"string\",\"values\": [\"Block 1000\",\"Block 1001\",\"Block 1002\",\"Block 1003\",\"Block 1004\",\"Block 1005\",\"Block 1006\",\"Block 1007\",\"Block 1008\",\"Block 1009\",\"Block 1010\",\"Block 1011\",\"Block 1012\",\"Block 1013\",\"Block 1014\",\"Block 1015\",\"Block 1016\",\"Block 1017\",\"Block 1018\",\"Block 1019\",\"Block 1020\",\"Block 1021\",\"Block 1022\",\"Block 1023\",\"Block 1024\",\"Block 1025\",\"Block 1026\",\"Block 1027\",\"Block 1028\",\"Block 1029\",\"Block 1030\",\"Block 1031\",\"Block 2000\",\"Block 2001\",\"Block 2002\",\"Block 2003\",\"Block 2004\",\"Block 2005\",\"Block 2006\",\"Block 2007\",\"Block 2008\",\"Block 2009\",\"Block 2010\",\"Block 2011\",\"Block 2012\",\"Block 2013\",\"Block 2014\",\"Block 2015\",\"Block 2016\",\"Block 2017\",\"Block 3000\",\"Block 3001\",\"Block 3002\",\"Block 3003\",\"Block 3004\",\"Block 3005\",\"Block 3006\",\"Block 3007\",\"Block 3008\",\"Block 3009\",\"Block 3010\",\"Block 3011\",\"Block 3012\",\"Block 3013\",\"Block 3014\",\"Block 3015\",\"Block 3016\",\"Block 3017\",\"Block 3018\",\"Block 3019\",\"Block 3020\",\"Block 3021\",\"Block 3022\",\"Block 3023\",\"Block 3024\",\"Block 3025\",\"Block 3026\",\"Block 3027\",\"Block 3028\",\"Block 3029\",\"Block 3030\",\"Block 3031\"]},{\"attribute\": \"STATEFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"TRACTCE10\",\"count\": 6,\"type\": \"string\",\"values\": [\"420100\",\"420200\",\"420300\",\"420400\",\"420500\",\"420600\"]},{\"attribute\": \"UACE10\",\"count\": 1,\"type\": \"string\",\"values\": [\"78904\"]},{\"attribute\": \"UATYP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"U\"]},{\"attribute\": \"UR10\",\"count\": 2,\"type\": \"string\",\"values\": [\"R\",\"U\"]}]}]}}", "maxzoom": "12", "minzoom": "0", @@ -204,7 +205,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ] ] ] } } , @@ -518,7 +519,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.286758, 37.884067 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } , @@ -1956,7 +1957,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ], [ -122.283497, 37.889147 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.889207", "INTPTLON10": "-122.282320" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ] ] ] } } , diff --git a/tests/join-population/raw-merged-folder.json b/tests/join-population/raw-merged-folder.json index 1de6d6dc0..ea4b44a70 100644 --- a/tests/join-population/raw-merged-folder.json +++ b/tests/join-population/raw-merged-folder.json @@ -3,6 +3,7 @@ "center": "-122.299805,37.892187,12", "description": "tests/join-population/tabblock_06001420.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -Z5 -z10 -o tests/join-population/macarthur.mbtiles -l macarthur tests/join-population/macarthur.json; ./tippecanoe -q -f -d10 -D10 -Z9 -z11 -o tests/join-population/macarthur2.mbtiles -l macarthur tests/join-population/macarthur2.json; ./tippecanoe -q -f -z12 -o tests/join-population/tabblock_06001420.mbtiles '-YALAND10:Land area' '-L{\"file\": \"tests/join-population/tabblock_06001420.json\", \"description\": \"population\"}'; ./tile-join -q --no-tile-compression -f -e tests/join-population/raw-merged-folder tests/join-population/tabblock_06001420.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur2.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"macarthur\", \"description\": \"\", \"minzoom\": 5, \"maxzoom\": 11, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} }, { \"id\": \"tabblock_06001420\", \"description\": \"population\", \"minzoom\": 3, \"maxzoom\": 12, \"fields\": {\"ALAND10\": \"Land area\", \"AWATER10\": \"Number\", \"BLOCKCE10\": \"String\", \"COUNTYFP10\": \"String\", \"FUNCSTAT10\": \"String\", \"GEOID10\": \"String\", \"INTPTLAT10\": \"String\", \"INTPTLON10\": \"String\", \"MTFCC10\": \"String\", \"NAME10\": \"String\", \"STATEFP10\": \"String\", \"TRACTCE10\": \"String\", \"UACE10\": \"String\", \"UATYP10\": \"String\", \"UR10\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"macarthur\",\"count\": 169,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 5,\"type\": \"string\",\"values\": [\"Macarthur\",\"Macarthur Blvd\",\"Macarthur Fwy\",\"W Macarthur\",\"W Macarthur Blvd\"]},{\"attribute\": \"LINEARID\",\"count\": 43,\"type\": \"string\",\"values\": [\"1102155930810\",\"1102156217102\",\"1102156241736\",\"1102156248968\",\"1102156510290\",\"1102157509691\",\"1102157651658\",\"1102406970092\",\"1102406970093\",\"1102406970094\",\"1102406970095\",\"1102407366406\",\"1102638069562\",\"1102638078801\",\"1102654601627\",\"1102654601663\",\"1102654602215\",\"1102954189105\",\"1102954918511\",\"1103690383700\",\"1103690474249\",\"1103690474250\",\"1103690483026\",\"1103690483032\",\"1103717593123\",\"1104469713187\",\"1104469713198\",\"1104474748623\",\"1104475134288\",\"1104475134436\",\"1104485605278\",\"1104485645649\",\"1104485773833\",\"1104486090991\",\"1104486392881\",\"1105089436004\",\"1105089465114\",\"1105089465116\",\"1105281275434\",\"1105281275687\",\"1105281275688\",\"1105281275689\",\"1105281275692\"]},{\"attribute\": \"MTFCC\",\"count\": 2,\"type\": \"string\",\"values\": [\"S1100\",\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 1,\"type\": \"string\",\"values\": [\"M\"]}]},{\"layer\": \"tabblock_06001420\",\"count\": 1484,\"geometry\": \"Polygon\",\"attributeCount\": 15,\"attributes\": [{\"attribute\": \"ALAND10\",\"count\": 257,\"type\": \"number\",\"values\": [0,10019,10125,1018,1027,10320,10339,1037,1060,10769,10776,1094,10961,10975,11206,11282,11297,11306,11372,11825,11921,11928,11997,1201,12044,12062,1214,12213,1246,12579,1269,12945,13013,13106,1324,13452,13985,14000,14042,14044,14053,14087,14101,14158,14169,14185,14193,14219,14237,14270,14291,14449,14452,14453,14523,14539,14541,14557,14565,1457,14593,1461,14639,1466,14791,14799,14980,1509,15100,15240,15260,15494,15574,15665,15730,15921,15930,15974,16117,16120,16165,16183,16238,16246,16253,16332,16353,16431,16453,16535,16537,16605,16635,16691,16994,1704,17210,17230,17265,17308],\"min\": 0,\"max\": 542505},{\"attribute\": \"AWATER10\",\"count\": 4,\"type\": \"number\",\"values\": [0,1111196,1632801,24],\"min\": 0,\"max\": 1632801},{\"attribute\": \"BLOCKCE10\",\"count\": 82,\"type\": \"string\",\"values\": [\"1000\",\"1001\",\"1002\",\"1003\",\"1004\",\"1005\",\"1006\",\"1007\",\"1008\",\"1009\",\"1010\",\"1011\",\"1012\",\"1013\",\"1014\",\"1015\",\"1016\",\"1017\",\"1018\",\"1019\",\"1020\",\"1021\",\"1022\",\"1023\",\"1024\",\"1025\",\"1026\",\"1027\",\"1028\",\"1029\",\"1030\",\"1031\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"2016\",\"2017\",\"3000\",\"3001\",\"3002\",\"3003\",\"3004\",\"3005\",\"3006\",\"3007\",\"3008\",\"3009\",\"3010\",\"3011\",\"3012\",\"3013\",\"3014\",\"3015\",\"3016\",\"3017\",\"3018\",\"3019\",\"3020\",\"3021\",\"3022\",\"3023\",\"3024\",\"3025\",\"3026\",\"3027\",\"3028\",\"3029\",\"3030\",\"3031\"]},{\"attribute\": \"COUNTYFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"001\"]},{\"attribute\": \"FUNCSTAT10\",\"count\": 1,\"type\": \"string\",\"values\": [\"S\"]},{\"attribute\": \"GEOID10\",\"count\": 260,\"type\": \"string\",\"values\": [\"060014201001000\",\"060014201001001\",\"060014201001002\",\"060014201001003\",\"060014201001004\",\"060014201001005\",\"060014201001006\",\"060014201001007\",\"060014201001008\",\"060014201001009\",\"060014201001010\",\"060014201001011\",\"060014201001012\",\"060014201001013\",\"060014201001014\",\"060014201001015\",\"060014201001016\",\"060014201001017\",\"060014201001018\",\"060014201001019\",\"060014201002000\",\"060014201002001\",\"060014201002002\",\"060014201002003\",\"060014201002004\",\"060014201002005\",\"060014201002006\",\"060014201002007\",\"060014201002008\",\"060014201002009\",\"060014201002010\",\"060014201002011\",\"060014201002012\",\"060014201002013\",\"060014201002014\",\"060014201002015\",\"060014201003000\",\"060014201003001\",\"060014201003002\",\"060014201003003\",\"060014201003004\",\"060014201003005\",\"060014201003006\",\"060014201003007\",\"060014201003008\",\"060014202001000\",\"060014202001001\",\"060014202001002\",\"060014202001003\",\"060014202001004\",\"060014202001005\",\"060014202001006\",\"060014202001007\",\"060014202001008\",\"060014202001009\",\"060014202001010\",\"060014202001011\",\"060014202001012\",\"060014202001013\",\"060014202001014\",\"060014202002000\",\"060014202002001\",\"060014202002002\",\"060014202002003\",\"060014202002004\",\"060014202002005\",\"060014202002006\",\"060014202002007\",\"060014202002008\",\"060014202002009\",\"060014202002010\",\"060014202002011\",\"060014202002012\",\"060014202003000\",\"060014202003001\",\"060014202003002\",\"060014202003003\",\"060014202003004\",\"060014202003005\",\"060014202003006\",\"060014202003007\",\"060014202003008\",\"060014202003009\",\"060014202003010\",\"060014202003011\",\"060014202003012\",\"060014203001000\",\"060014203001001\",\"060014203001002\",\"060014203001003\",\"060014203001004\",\"060014203001005\",\"060014203001006\",\"060014203001007\",\"060014203001008\",\"060014203001009\",\"060014203001010\",\"060014203001011\",\"060014203001012\",\"060014203001013\"]},{\"attribute\": \"INTPTLAT10\",\"count\": 257,\"type\": \"string\",\"values\": [\"+37.882724\",\"+37.882857\",\"+37.882965\",\"+37.883224\",\"+37.883323\",\"+37.883462\",\"+37.883465\",\"+37.883481\",\"+37.883493\",\"+37.883527\",\"+37.883536\",\"+37.883579\",\"+37.883655\",\"+37.883693\",\"+37.883707\",\"+37.883745\",\"+37.883836\",\"+37.883871\",\"+37.883875\",\"+37.883931\",\"+37.883973\",\"+37.883995\",\"+37.884009\",\"+37.884079\",\"+37.884198\",\"+37.884202\",\"+37.884338\",\"+37.884369\",\"+37.884436\",\"+37.884677\",\"+37.884743\",\"+37.884747\",\"+37.884757\",\"+37.884896\",\"+37.884902\",\"+37.884919\",\"+37.884942\",\"+37.885307\",\"+37.885308\",\"+37.885399\",\"+37.885448\",\"+37.885491\",\"+37.885644\",\"+37.885646\",\"+37.885673\",\"+37.885811\",\"+37.885827\",\"+37.885997\",\"+37.886159\",\"+37.886194\",\"+37.886197\",\"+37.886237\",\"+37.886278\",\"+37.886322\",\"+37.886339\",\"+37.886439\",\"+37.886460\",\"+37.886495\",\"+37.886587\",\"+37.886596\",\"+37.886608\",\"+37.886758\",\"+37.886830\",\"+37.886929\",\"+37.887099\",\"+37.887163\",\"+37.887238\",\"+37.887267\",\"+37.887324\",\"+37.887379\",\"+37.887412\",\"+37.887570\",\"+37.887764\",\"+37.887776\",\"+37.887789\",\"+37.887852\",\"+37.887885\",\"+37.887916\",\"+37.887945\",\"+37.888027\",\"+37.888122\",\"+37.888238\",\"+37.888325\",\"+37.888332\",\"+37.888340\",\"+37.888416\",\"+37.888418\",\"+37.888441\",\"+37.888458\",\"+37.888506\",\"+37.888511\",\"+37.888540\",\"+37.888616\",\"+37.888634\",\"+37.888734\",\"+37.888782\",\"+37.888823\",\"+37.888848\",\"+37.888859\",\"+37.888863\"]},{\"attribute\": \"INTPTLON10\",\"count\": 259,\"type\": \"string\",\"values\": [\"-122.282320\",\"-122.282371\",\"-122.282679\",\"-122.282689\",\"-122.282947\",\"-122.283067\",\"-122.283212\",\"-122.283424\",\"-122.283651\",\"-122.283723\",\"-122.283797\",\"-122.283828\",\"-122.283924\",\"-122.283973\",\"-122.284471\",\"-122.284571\",\"-122.284590\",\"-122.284831\",\"-122.285020\",\"-122.285076\",\"-122.285093\",\"-122.285175\",\"-122.285609\",\"-122.285651\",\"-122.285682\",\"-122.285901\",\"-122.285971\",\"-122.286179\",\"-122.286324\",\"-122.286349\",\"-122.286366\",\"-122.286615\",\"-122.286636\",\"-122.286818\",\"-122.286865\",\"-122.286913\",\"-122.287055\",\"-122.287082\",\"-122.287097\",\"-122.287125\",\"-122.287205\",\"-122.287275\",\"-122.287323\",\"-122.287379\",\"-122.287583\",\"-122.287591\",\"-122.287634\",\"-122.287747\",\"-122.287757\",\"-122.287836\",\"-122.287926\",\"-122.287969\",\"-122.288150\",\"-122.288221\",\"-122.288237\",\"-122.288313\",\"-122.288382\",\"-122.288473\",\"-122.288602\",\"-122.288628\",\"-122.288677\",\"-122.288696\",\"-122.288764\",\"-122.288787\",\"-122.288910\",\"-122.289020\",\"-122.289219\",\"-122.289471\",\"-122.289472\",\"-122.289530\",\"-122.289570\",\"-122.289573\",\"-122.289663\",\"-122.289764\",\"-122.289959\",\"-122.290117\",\"-122.290340\",\"-122.290441\",\"-122.290522\",\"-122.290573\",\"-122.290615\",\"-122.290964\",\"-122.290980\",\"-122.291137\",\"-122.291217\",\"-122.291315\",\"-122.291350\",\"-122.291391\",\"-122.291474\",\"-122.291484\",\"-122.291592\",\"-122.291817\",\"-122.291926\",\"-122.292014\",\"-122.292116\",\"-122.292153\",\"-122.292289\",\"-122.292309\",\"-122.292394\",\"-122.292415\"]},{\"attribute\": \"MTFCC10\",\"count\": 1,\"type\": \"string\",\"values\": [\"G5040\"]},{\"attribute\": \"NAME10\",\"count\": 82,\"type\": \"string\",\"values\": [\"Block 1000\",\"Block 1001\",\"Block 1002\",\"Block 1003\",\"Block 1004\",\"Block 1005\",\"Block 1006\",\"Block 1007\",\"Block 1008\",\"Block 1009\",\"Block 1010\",\"Block 1011\",\"Block 1012\",\"Block 1013\",\"Block 1014\",\"Block 1015\",\"Block 1016\",\"Block 1017\",\"Block 1018\",\"Block 1019\",\"Block 1020\",\"Block 1021\",\"Block 1022\",\"Block 1023\",\"Block 1024\",\"Block 1025\",\"Block 1026\",\"Block 1027\",\"Block 1028\",\"Block 1029\",\"Block 1030\",\"Block 1031\",\"Block 2000\",\"Block 2001\",\"Block 2002\",\"Block 2003\",\"Block 2004\",\"Block 2005\",\"Block 2006\",\"Block 2007\",\"Block 2008\",\"Block 2009\",\"Block 2010\",\"Block 2011\",\"Block 2012\",\"Block 2013\",\"Block 2014\",\"Block 2015\",\"Block 2016\",\"Block 2017\",\"Block 3000\",\"Block 3001\",\"Block 3002\",\"Block 3003\",\"Block 3004\",\"Block 3005\",\"Block 3006\",\"Block 3007\",\"Block 3008\",\"Block 3009\",\"Block 3010\",\"Block 3011\",\"Block 3012\",\"Block 3013\",\"Block 3014\",\"Block 3015\",\"Block 3016\",\"Block 3017\",\"Block 3018\",\"Block 3019\",\"Block 3020\",\"Block 3021\",\"Block 3022\",\"Block 3023\",\"Block 3024\",\"Block 3025\",\"Block 3026\",\"Block 3027\",\"Block 3028\",\"Block 3029\",\"Block 3030\",\"Block 3031\"]},{\"attribute\": \"STATEFP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"TRACTCE10\",\"count\": 6,\"type\": \"string\",\"values\": [\"420100\",\"420200\",\"420300\",\"420400\",\"420500\",\"420600\"]},{\"attribute\": \"UACE10\",\"count\": 1,\"type\": \"string\",\"values\": [\"78904\"]},{\"attribute\": \"UATYP10\",\"count\": 1,\"type\": \"string\",\"values\": [\"U\"]},{\"attribute\": \"UR10\",\"count\": 2,\"type\": \"string\",\"values\": [\"R\",\"U\"]}]}]}}", "maxzoom": "12", "minzoom": "0", @@ -280,7 +281,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.890586", "INTPTLON10": "-122.318113" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.894669", "INTPTLON10": "-122.308429" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ] ] ] } } , @@ -594,7 +595,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.886339", "INTPTLON10": "-122.285175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.884338", "INTPTLON10": "-122.285971" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.286758, 37.884067 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.885448", "INTPTLON10": "-122.284571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } , @@ -2262,7 +2263,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.890166", "INTPTLON10": "-122.282689" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ], [ -122.283497, 37.889147 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.889207", "INTPTLON10": "-122.282320" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ] ] ] } } , diff --git a/tests/join-population/renamed.mbtiles.json b/tests/join-population/renamed.mbtiles.json index 29f489b33..5f6c45556 100644 --- a/tests/join-population/renamed.mbtiles.json +++ b/tests/join-population/renamed.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.167969,37.828608,10", "description": "tests/join-population/macarthur2.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -Z5 -z10 -o tests/join-population/macarthur.mbtiles -l macarthur1 tests/join-population/macarthur.json; ./tippecanoe -q -f -Z5 -z10 -o tests/join-population/macarthur2.mbtiles -l macarthur2 tests/join-population/macarthur2.json; ./tile-join -q -R macarthur1:one '--rename-layer=macarthur2:two' -f -o tests/join-population/renamed.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur2.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"one\", \"description\": \"\", \"minzoom\": 5, \"maxzoom\": 10, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} }, { \"id\": \"two\", \"description\": \"\", \"minzoom\": 5, \"maxzoom\": 10, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"one\",\"count\": 90,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 3,\"type\": \"string\",\"values\": [\"Macarthur\",\"Macarthur Fwy\",\"W Macarthur\"]},{\"attribute\": \"LINEARID\",\"count\": 17,\"type\": \"string\",\"values\": [\"1102155930810\",\"1102156241736\",\"1102156510290\",\"1102157651658\",\"1102638069562\",\"1102654601627\",\"1102654601663\",\"1102654602215\",\"1102954918511\",\"1103690383700\",\"1103690474249\",\"1103690474250\",\"1103690483026\",\"1103690483032\",\"1104474748623\",\"1104486090991\",\"1104486392881\"]},{\"attribute\": \"MTFCC\",\"count\": 2,\"type\": \"string\",\"values\": [\"S1100\",\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 1,\"type\": \"string\",\"values\": [\"M\"]}]},{\"layer\": \"two\",\"count\": 154,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 2,\"type\": \"string\",\"values\": [\"Macarthur Blvd\",\"W Macarthur Blvd\"]},{\"attribute\": \"LINEARID\",\"count\": 26,\"type\": \"string\",\"values\": [\"1102156217102\",\"1102156248968\",\"1102157509691\",\"1102406970092\",\"1102406970093\",\"1102406970094\",\"1102406970095\",\"1102407366406\",\"1102638078801\",\"1102954189105\",\"1103717593123\",\"1104469713187\",\"1104469713198\",\"1104475134288\",\"1104475134436\",\"1104485605278\",\"1104485645649\",\"1104485773833\",\"1105089436004\",\"1105089465114\",\"1105089465116\",\"1105281275434\",\"1105281275687\",\"1105281275688\",\"1105281275689\",\"1105281275692\"]},{\"attribute\": \"MTFCC\",\"count\": 1,\"type\": \"string\",\"values\": [\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 1,\"type\": \"string\",\"values\": [\"M\"]}]}]}}", "maxzoom": "10", "minzoom": "5", diff --git a/tests/join-population/windows.mbtiles.json b/tests/join-population/windows.mbtiles.json index f0000eda6..9faafc842 100644 --- a/tests/join-population/windows.mbtiles.json +++ b/tests/join-population/windows.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.167969,37.833010,10", "description": "tests/join-population/macarthur.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -Z5 -z10 -o tests/join-population/macarthur.mbtiles -l macarthur tests/join-population/macarthur.json; ./tile-join -q -f -c tests/join-population/windows.csv -o tests/join-population/windows.mbtiles tests/join-population/macarthur.mbtiles", "json": "{\"vector_layers\": [ { \"id\": \"macarthur\", \"description\": \"\", \"minzoom\": 5, \"maxzoom\": 10, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"macarthur\",\"count\": 90,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 3,\"type\": \"string\",\"values\": [\"Macarthur\",\"Macarthur Fwy\",\"W Macarthur\"]},{\"attribute\": \"LINEARID\",\"count\": 4,\"type\": \"string\",\"values\": [\"1102156510290\",\"1104486392881\",\"first\",\"second\"]},{\"attribute\": \"MTFCC\",\"count\": 2,\"type\": \"string\",\"values\": [\"S1100\",\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 1,\"type\": \"string\",\"values\": [\"M\"]}]}]}}", "maxzoom": "10", "minzoom": "5", diff --git a/tests/knox/out/-zg.json b/tests/knox/out/-zg.json index 4ccee0571..4546d69f0 100644 --- a/tests/knox/out/-zg.json +++ b/tests/knox/out/-zg.json @@ -3,6 +3,7 @@ "center": "-87.363281,38.685378,10", "description": "tests/knox/out/-zg.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/knox/out/-zg.json.check.mbtiles -zg tests/knox/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 10, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 53,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 9,\"type\": \"string\",\"values\": [\"E Old US Hwy 150\",\"E US Hwy 50\",\"E US Hwy 50-150\",\"N US Hwy 41\",\"Old US Hwy 41\",\"US Hwy 150\",\"US Hwy 41\",\"US Hwy 41 S\",\"US Hwy 50\"]},{\"attribute\": \"LINEARID\",\"count\": 53,\"type\": \"string\",\"values\": [\"110170070259\",\"110170070260\",\"110170070261\",\"110170070271\",\"110170070272\",\"110170070276\",\"110170070277\",\"110170070318\",\"110170070320\",\"110170071138\",\"110170072467\",\"1104257570399\",\"1104257599171\",\"1104257610285\",\"1104257610358\",\"1104257616296\",\"1104257622329\",\"1104257624305\",\"1104257624535\",\"1104257624536\",\"1104257624538\",\"1104257624700\",\"1104257627422\",\"1104257627423\",\"1104257640853\",\"1104257690581\",\"1104469553886\",\"1104469613150\",\"1104469613492\",\"1104471568916\",\"1104471680885\",\"1104471685645\",\"1104471685646\",\"1104471685675\",\"1104471685676\",\"1104471686635\",\"1104471686636\",\"1104472002543\",\"1104485818173\",\"1104485818174\",\"1104485838817\",\"1104485841551\",\"1104485841552\",\"1104485841553\",\"1104485841554\",\"1104485841555\",\"1104485841556\",\"1104485841662\",\"1104485841663\",\"1104485841664\",\"1104485841665\",\"1104485841666\",\"1104485841667\"]},{\"attribute\": \"MTFCC\",\"count\": 2,\"type\": \"string\",\"values\": [\"S1200\",\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 2,\"type\": \"string\",\"values\": [\"M\",\"U\"]}]}]}}", "maxzoom": "10", "minzoom": "0", diff --git a/tests/knox/out/-zg_-P.json b/tests/knox/out/-zg_-P.json index 2ca78129e..96e4e1484 100644 --- a/tests/knox/out/-zg_-P.json +++ b/tests/knox/out/-zg_-P.json @@ -3,6 +3,7 @@ "center": "-87.363281,38.685378,10", "description": "tests/knox/out/-zg_-P.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/knox/out/-zg_-P.json.check.mbtiles -zg -P tests/knox/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 10, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 53,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 9,\"type\": \"string\",\"values\": [\"E Old US Hwy 150\",\"E US Hwy 50\",\"E US Hwy 50-150\",\"N US Hwy 41\",\"Old US Hwy 41\",\"US Hwy 150\",\"US Hwy 41\",\"US Hwy 41 S\",\"US Hwy 50\"]},{\"attribute\": \"LINEARID\",\"count\": 53,\"type\": \"string\",\"values\": [\"110170070259\",\"110170070260\",\"110170070261\",\"110170070271\",\"110170070272\",\"110170070276\",\"110170070277\",\"110170070318\",\"110170070320\",\"110170071138\",\"110170072467\",\"1104257570399\",\"1104257599171\",\"1104257610285\",\"1104257610358\",\"1104257616296\",\"1104257622329\",\"1104257624305\",\"1104257624535\",\"1104257624536\",\"1104257624538\",\"1104257624700\",\"1104257627422\",\"1104257627423\",\"1104257640853\",\"1104257690581\",\"1104469553886\",\"1104469613150\",\"1104469613492\",\"1104471568916\",\"1104471680885\",\"1104471685645\",\"1104471685646\",\"1104471685675\",\"1104471685676\",\"1104471686635\",\"1104471686636\",\"1104472002543\",\"1104485818173\",\"1104485818174\",\"1104485838817\",\"1104485841551\",\"1104485841552\",\"1104485841553\",\"1104485841554\",\"1104485841555\",\"1104485841556\",\"1104485841662\",\"1104485841663\",\"1104485841664\",\"1104485841665\",\"1104485841666\",\"1104485841667\"]},{\"attribute\": \"MTFCC\",\"count\": 2,\"type\": \"string\",\"values\": [\"S1200\",\"S1400\"]},{\"attribute\": \"RTTYP\",\"count\": 2,\"type\": \"string\",\"values\": [\"M\",\"U\"]}]}]}}", "maxzoom": "10", "minzoom": "0", diff --git a/tests/longattr/out/-z0.json b/tests/longattr/out/-z0.json index 7b4c0fd99..476a5827a 100644 --- a/tests/longattr/out/-z0.json +++ b/tests/longattr/out/-z0.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/longattr/out/-z0.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/longattr/out/-z0.json.check.mbtiles -z0 tests/longattr/sherlock.json", "json": "{\"vector_layers\": [ { \"id\": \"sherlock\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"sherlock\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"sherlock\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"sherlock\",\"count\": 1,\"type\": \"string\",\"values\": []}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/longjson/out/-z0.json b/tests/longjson/out/-z0.json index 13f169fb8..d7c5b2ed9 100644 --- a/tests/longjson/out/-z0.json +++ b/tests/longjson/out/-z0.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/longjson/out/-z0.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/longjson/out/-z0.json.check.mbtiles -z0 tests/longjson/sherlock.json", "json": "{\"vector_layers\": [ { \"id\": \"sherlock\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"sherlock\": \"String\", \"sherlock0\": \"String\", \"sherlock1\": \"String\", \"sherlock10\": \"String\", \"sherlock100\": \"String\", \"sherlock101\": \"String\", \"sherlock102\": \"String\", \"sherlock103\": \"String\", \"sherlock104\": \"String\", \"sherlock105\": \"String\", \"sherlock106\": \"String\", \"sherlock107\": \"String\", \"sherlock108\": \"String\", \"sherlock109\": \"String\", \"sherlock11\": \"String\", \"sherlock110\": \"String\", \"sherlock111\": \"String\", \"sherlock112\": \"String\", \"sherlock113\": \"String\", \"sherlock114\": \"String\", \"sherlock115\": \"String\", \"sherlock116\": \"String\", \"sherlock117\": \"String\", \"sherlock118\": \"String\", \"sherlock119\": \"String\", \"sherlock12\": \"String\", \"sherlock120\": \"String\", \"sherlock121\": \"String\", \"sherlock122\": \"String\", \"sherlock123\": \"String\", \"sherlock124\": \"String\", \"sherlock125\": \"String\", \"sherlock126\": \"String\", \"sherlock127\": \"String\", \"sherlock128\": \"String\", \"sherlock129\": \"String\", \"sherlock13\": \"String\", \"sherlock130\": \"String\", \"sherlock131\": \"String\", \"sherlock132\": \"String\", \"sherlock133\": \"String\", \"sherlock134\": \"String\", \"sherlock135\": \"String\", \"sherlock136\": \"String\", \"sherlock137\": \"String\", \"sherlock138\": \"String\", \"sherlock139\": \"String\", \"sherlock14\": \"String\", \"sherlock140\": \"String\", \"sherlock141\": \"String\", \"sherlock142\": \"String\", \"sherlock143\": \"String\", \"sherlock144\": \"String\", \"sherlock145\": \"String\", \"sherlock146\": \"String\", \"sherlock147\": \"String\", \"sherlock148\": \"String\", \"sherlock149\": \"String\", \"sherlock15\": \"String\", \"sherlock150\": \"String\", \"sherlock151\": \"String\", \"sherlock152\": \"String\", \"sherlock153\": \"String\", \"sherlock154\": \"String\", \"sherlock155\": \"String\", \"sherlock156\": \"String\", \"sherlock157\": \"String\", \"sherlock158\": \"String\", \"sherlock159\": \"String\", \"sherlock16\": \"String\", \"sherlock160\": \"String\", \"sherlock161\": \"String\", \"sherlock162\": \"String\", \"sherlock163\": \"String\", \"sherlock164\": \"String\", \"sherlock165\": \"String\", \"sherlock166\": \"String\", \"sherlock167\": \"String\", \"sherlock168\": \"String\", \"sherlock169\": \"String\", \"sherlock17\": \"String\", \"sherlock170\": \"String\", \"sherlock171\": \"String\", \"sherlock172\": \"String\", \"sherlock173\": \"String\", \"sherlock174\": \"String\", \"sherlock175\": \"String\", \"sherlock176\": \"String\", \"sherlock177\": \"String\", \"sherlock178\": \"String\", \"sherlock179\": \"String\", \"sherlock18\": \"String\", \"sherlock180\": \"String\", \"sherlock181\": \"String\", \"sherlock182\": \"String\", \"sherlock183\": \"String\", \"sherlock184\": \"String\", \"sherlock185\": \"String\", \"sherlock186\": \"String\", \"sherlock187\": \"String\", \"sherlock188\": \"String\", \"sherlock189\": \"String\", \"sherlock19\": \"String\", \"sherlock190\": \"String\", \"sherlock191\": \"String\", \"sherlock192\": \"String\", \"sherlock193\": \"String\", \"sherlock194\": \"String\", \"sherlock195\": \"String\", \"sherlock196\": \"String\", \"sherlock197\": \"String\", \"sherlock198\": \"String\", \"sherlock199\": \"String\", \"sherlock2\": \"String\", \"sherlock20\": \"String\", \"sherlock21\": \"String\", \"sherlock22\": \"String\", \"sherlock23\": \"String\", \"sherlock24\": \"String\", \"sherlock25\": \"String\", \"sherlock26\": \"String\", \"sherlock27\": \"String\", \"sherlock28\": \"String\", \"sherlock29\": \"String\", \"sherlock3\": \"String\", \"sherlock30\": \"String\", \"sherlock31\": \"String\", \"sherlock32\": \"String\", \"sherlock33\": \"String\", \"sherlock34\": \"String\", \"sherlock35\": \"String\", \"sherlock36\": \"String\", \"sherlock37\": \"String\", \"sherlock38\": \"String\", \"sherlock39\": \"String\", \"sherlock4\": \"String\", \"sherlock40\": \"String\", \"sherlock41\": \"String\", \"sherlock42\": \"String\", \"sherlock43\": \"String\", \"sherlock44\": \"String\", \"sherlock45\": \"String\", \"sherlock46\": \"String\", \"sherlock47\": \"String\", \"sherlock48\": \"String\", \"sherlock49\": \"String\", \"sherlock5\": \"String\", \"sherlock50\": \"String\", \"sherlock51\": \"String\", \"sherlock52\": \"String\", \"sherlock53\": \"String\", \"sherlock54\": \"String\", \"sherlock55\": \"String\", \"sherlock56\": \"String\", \"sherlock57\": \"String\", \"sherlock58\": \"String\", \"sherlock59\": \"String\", \"sherlock6\": \"String\", \"sherlock60\": \"String\", \"sherlock61\": \"String\", \"sherlock62\": \"String\", \"sherlock63\": \"String\", \"sherlock64\": \"String\", \"sherlock65\": \"String\", \"sherlock66\": \"String\", \"sherlock67\": \"String\", \"sherlock68\": \"String\", \"sherlock69\": \"String\", \"sherlock7\": \"String\", \"sherlock70\": \"String\", \"sherlock71\": \"String\", \"sherlock72\": \"String\", \"sherlock73\": \"String\", \"sherlock74\": \"String\", \"sherlock75\": \"String\", \"sherlock76\": \"String\", \"sherlock77\": \"String\", \"sherlock78\": \"String\", \"sherlock79\": \"String\", \"sherlock8\": \"String\", \"sherlock80\": \"String\", \"sherlock81\": \"String\", \"sherlock82\": \"String\", \"sherlock83\": \"String\", \"sherlock84\": \"String\", \"sherlock85\": \"String\", \"sherlock86\": \"String\", \"sherlock87\": \"String\", \"sherlock88\": \"String\", \"sherlock89\": \"String\", \"sherlock9\": \"String\", \"sherlock90\": \"String\", \"sherlock91\": \"String\", \"sherlock92\": \"String\", \"sherlock93\": \"String\", \"sherlock94\": \"String\", \"sherlock95\": \"String\", \"sherlock96\": \"String\", \"sherlock97\": \"String\", \"sherlock98\": \"String\", \"sherlock99\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"sherlock\",\"count\": 610,\"geometry\": \"Point\",\"attributeCount\": 201,\"attributes\": [{\"attribute\": \"sherlock\",\"count\": 10,\"type\": \"string\",\"values\": []},{\"attribute\": \"sherlock0\",\"count\": 3,\"type\": \"string\",\"values\": [\"0 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"1 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"2 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock1\",\"count\": 3,\"type\": \"string\",\"values\": [\"3 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"4 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"5 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock10\",\"count\": 3,\"type\": \"string\",\"values\": [\"30 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"31 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"32 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock100\",\"count\": 3,\"type\": \"string\",\"values\": [\"300 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"301 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"302 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock101\",\"count\": 3,\"type\": \"string\",\"values\": [\"303 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"304 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"305 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock102\",\"count\": 3,\"type\": \"string\",\"values\": [\"306 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"307 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"308 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock103\",\"count\": 3,\"type\": \"string\",\"values\": [\"309 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"310 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"311 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock104\",\"count\": 3,\"type\": \"string\",\"values\": [\"312 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"313 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"314 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock105\",\"count\": 3,\"type\": \"string\",\"values\": [\"315 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"316 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"317 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock106\",\"count\": 3,\"type\": \"string\",\"values\": [\"318 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"319 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"320 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock107\",\"count\": 3,\"type\": \"string\",\"values\": [\"321 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"322 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"323 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock108\",\"count\": 3,\"type\": \"string\",\"values\": [\"324 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"325 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"326 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock109\",\"count\": 3,\"type\": \"string\",\"values\": [\"327 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"328 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"329 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock11\",\"count\": 3,\"type\": \"string\",\"values\": [\"33 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"34 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"35 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock110\",\"count\": 3,\"type\": \"string\",\"values\": [\"330 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"331 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"332 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock111\",\"count\": 3,\"type\": \"string\",\"values\": [\"333 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"334 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"335 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock112\",\"count\": 3,\"type\": \"string\",\"values\": [\"336 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"337 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"338 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock113\",\"count\": 3,\"type\": \"string\",\"values\": [\"339 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"340 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"341 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock114\",\"count\": 3,\"type\": \"string\",\"values\": [\"342 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"343 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"344 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock115\",\"count\": 3,\"type\": \"string\",\"values\": [\"345 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"346 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"347 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock116\",\"count\": 3,\"type\": \"string\",\"values\": [\"348 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"349 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"350 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock117\",\"count\": 3,\"type\": \"string\",\"values\": [\"351 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"352 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"353 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock118\",\"count\": 3,\"type\": \"string\",\"values\": [\"354 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"355 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"356 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock119\",\"count\": 3,\"type\": \"string\",\"values\": [\"357 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"358 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"359 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock12\",\"count\": 3,\"type\": \"string\",\"values\": [\"36 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"37 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"38 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock120\",\"count\": 3,\"type\": \"string\",\"values\": [\"360 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"361 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"362 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock121\",\"count\": 3,\"type\": \"string\",\"values\": [\"363 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"364 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"365 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock122\",\"count\": 3,\"type\": \"string\",\"values\": [\"366 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"367 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"368 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock123\",\"count\": 3,\"type\": \"string\",\"values\": [\"369 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"370 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"371 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock124\",\"count\": 3,\"type\": \"string\",\"values\": [\"372 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"373 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"374 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock125\",\"count\": 3,\"type\": \"string\",\"values\": [\"375 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"376 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"377 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock126\",\"count\": 3,\"type\": \"string\",\"values\": [\"378 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"379 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"380 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock127\",\"count\": 3,\"type\": \"string\",\"values\": [\"381 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"382 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"383 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock128\",\"count\": 3,\"type\": \"string\",\"values\": [\"384 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"385 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"386 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock129\",\"count\": 3,\"type\": \"string\",\"values\": [\"387 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"388 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"389 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock13\",\"count\": 3,\"type\": \"string\",\"values\": [\"39 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"40 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"41 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock130\",\"count\": 3,\"type\": \"string\",\"values\": [\"390 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"391 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"392 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock131\",\"count\": 3,\"type\": \"string\",\"values\": [\"393 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"394 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"395 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock132\",\"count\": 3,\"type\": \"string\",\"values\": [\"396 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"397 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"398 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock133\",\"count\": 3,\"type\": \"string\",\"values\": [\"399 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"400 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"401 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock134\",\"count\": 3,\"type\": \"string\",\"values\": [\"402 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"403 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"404 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock135\",\"count\": 3,\"type\": \"string\",\"values\": [\"405 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"406 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"407 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock136\",\"count\": 3,\"type\": \"string\",\"values\": [\"408 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"409 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"410 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock137\",\"count\": 3,\"type\": \"string\",\"values\": [\"411 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"412 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"413 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock138\",\"count\": 3,\"type\": \"string\",\"values\": [\"414 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"415 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"416 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock139\",\"count\": 3,\"type\": \"string\",\"values\": [\"417 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"418 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"419 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock14\",\"count\": 3,\"type\": \"string\",\"values\": [\"42 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"43 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"44 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock140\",\"count\": 3,\"type\": \"string\",\"values\": [\"420 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"421 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"422 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock141\",\"count\": 3,\"type\": \"string\",\"values\": [\"423 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"424 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"425 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock142\",\"count\": 3,\"type\": \"string\",\"values\": [\"426 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"427 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"428 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock143\",\"count\": 3,\"type\": \"string\",\"values\": [\"429 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"430 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"431 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock144\",\"count\": 3,\"type\": \"string\",\"values\": [\"432 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"433 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"434 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock145\",\"count\": 3,\"type\": \"string\",\"values\": [\"435 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"436 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"437 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock146\",\"count\": 3,\"type\": \"string\",\"values\": [\"438 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"439 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"440 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock147\",\"count\": 3,\"type\": \"string\",\"values\": [\"441 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"442 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"443 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock148\",\"count\": 3,\"type\": \"string\",\"values\": [\"444 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"445 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"446 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock149\",\"count\": 3,\"type\": \"string\",\"values\": [\"447 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"448 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"449 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock15\",\"count\": 3,\"type\": \"string\",\"values\": [\"45 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"46 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"47 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock150\",\"count\": 3,\"type\": \"string\",\"values\": [\"450 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"451 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"452 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock151\",\"count\": 3,\"type\": \"string\",\"values\": [\"453 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"454 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"455 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock152\",\"count\": 3,\"type\": \"string\",\"values\": [\"456 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"457 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"458 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock153\",\"count\": 3,\"type\": \"string\",\"values\": [\"459 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"460 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"461 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock154\",\"count\": 3,\"type\": \"string\",\"values\": [\"462 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"463 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"464 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock155\",\"count\": 3,\"type\": \"string\",\"values\": [\"465 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"466 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"467 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock156\",\"count\": 3,\"type\": \"string\",\"values\": [\"468 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"469 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"470 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock157\",\"count\": 3,\"type\": \"string\",\"values\": [\"471 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"472 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"473 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock158\",\"count\": 3,\"type\": \"string\",\"values\": [\"474 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"475 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"476 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock159\",\"count\": 3,\"type\": \"string\",\"values\": [\"477 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"478 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"479 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock16\",\"count\": 3,\"type\": \"string\",\"values\": [\"48 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"49 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"50 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock160\",\"count\": 3,\"type\": \"string\",\"values\": [\"480 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"481 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"482 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock161\",\"count\": 3,\"type\": \"string\",\"values\": [\"483 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"484 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"485 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock162\",\"count\": 3,\"type\": \"string\",\"values\": [\"486 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"487 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"488 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock163\",\"count\": 3,\"type\": \"string\",\"values\": [\"489 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"490 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"491 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock164\",\"count\": 3,\"type\": \"string\",\"values\": [\"492 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"493 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"494 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock165\",\"count\": 3,\"type\": \"string\",\"values\": [\"495 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"496 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"497 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock166\",\"count\": 3,\"type\": \"string\",\"values\": [\"498 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"499 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"500 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock167\",\"count\": 3,\"type\": \"string\",\"values\": [\"501 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"502 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"503 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock168\",\"count\": 3,\"type\": \"string\",\"values\": [\"504 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"505 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"506 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock169\",\"count\": 3,\"type\": \"string\",\"values\": [\"507 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"508 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"509 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock17\",\"count\": 3,\"type\": \"string\",\"values\": [\"51 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"52 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"53 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock170\",\"count\": 3,\"type\": \"string\",\"values\": [\"510 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"511 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"512 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock171\",\"count\": 3,\"type\": \"string\",\"values\": [\"513 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"514 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"515 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock172\",\"count\": 3,\"type\": \"string\",\"values\": [\"516 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"517 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"518 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock173\",\"count\": 3,\"type\": \"string\",\"values\": [\"519 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"520 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"521 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock174\",\"count\": 3,\"type\": \"string\",\"values\": [\"522 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"523 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"524 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock175\",\"count\": 3,\"type\": \"string\",\"values\": [\"525 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"526 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"527 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock176\",\"count\": 3,\"type\": \"string\",\"values\": [\"528 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"529 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"530 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock177\",\"count\": 3,\"type\": \"string\",\"values\": [\"531 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"532 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"533 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock178\",\"count\": 3,\"type\": \"string\",\"values\": [\"534 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"535 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"536 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock179\",\"count\": 3,\"type\": \"string\",\"values\": [\"537 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"538 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"539 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock18\",\"count\": 3,\"type\": \"string\",\"values\": [\"54 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"55 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"56 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock180\",\"count\": 3,\"type\": \"string\",\"values\": [\"540 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"541 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"542 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock181\",\"count\": 3,\"type\": \"string\",\"values\": [\"543 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"544 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"545 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock182\",\"count\": 3,\"type\": \"string\",\"values\": [\"546 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"547 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"548 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock183\",\"count\": 3,\"type\": \"string\",\"values\": [\"549 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"550 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"551 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock184\",\"count\": 3,\"type\": \"string\",\"values\": [\"552 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"553 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"554 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock185\",\"count\": 3,\"type\": \"string\",\"values\": [\"555 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"556 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"557 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock186\",\"count\": 3,\"type\": \"string\",\"values\": [\"558 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"559 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"560 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]},{\"attribute\": \"sherlock187\",\"count\": 3,\"type\": \"string\",\"values\": [\"561 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"562 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\",\"563 The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\\u000a\\u000aThis eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever.\"]}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/longlayer/out/-z0.json b/tests/longlayer/out/-z0.json index 995734bac..87ac2f5c2 100644 --- a/tests/longlayer/out/-z0.json +++ b/tests/longlayer/out/-z0.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/longlayer/out/-z0.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/longlayer/out/-z0.json.check.mbtiles -z0 tests/longlayer/in.json", "json": "{\"vector_layers\": [ { \"id\": \"ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_1\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} }, { \"id\": \"ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_2\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} }, { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_1\": \"Number\", \"ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_2\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongName_ThisLayerHasAVeryLongN\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 0,\"attributes\": []},{\"layer\": \"in\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHasAVeryLongName_ThisAttributeHas\",\"count\": 2,\"type\": \"number\",\"values\": [12,13],\"min\": 12,\"max\": 13}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json b/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json index e8e28c11a..881e79a6c 100644 --- a/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json +++ b/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json @@ -3,6 +3,7 @@ "center": "1.000000,1.000000,0", "description": "tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json.check.mbtiles -z0 -O200 --cluster-densest-as-needed tests/loop/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"clustered\": \"Boolean\", \"point_count\": \"Number\", \"sqrt_point_count\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1000,\"geometry\": \"Point\",\"attributeCount\": 3,\"attributes\": [{\"attribute\": \"clustered\",\"count\": 1,\"type\": \"boolean\",\"values\": [true]},{\"attribute\": \"point_count\",\"count\": 1,\"type\": \"number\",\"values\": [1000],\"min\": 1000,\"max\": 1000},{\"attribute\": \"sqrt_point_count\",\"count\": 1,\"type\": \"number\",\"values\": [31.620000],\"min\": 31.62,\"max\": 31.62}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json b/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json index e240c1c3f..22f7dd191 100644 --- a/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json +++ b/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json @@ -3,6 +3,7 @@ "center": "1.000000,1.000000,0", "description": "tests/loop/out/-z0_-O200_--drop-densest-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/loop/out/-z0_-O200_--drop-densest-as-needed.json.check.mbtiles -z0 -O200 --drop-densest-as-needed tests/loop/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1000,\"geometry\": \"Point\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json b/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json index 6d5109e95..09cbf71da 100644 --- a/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json +++ b/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json @@ -3,6 +3,7 @@ "center": "1.000000,1.000000,0", "description": "tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json.check.mbtiles -z0 -O200 --drop-fraction-as-needed tests/loop/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1000,\"geometry\": \"Point\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/minzoom/in.json b/tests/minzoom/in.json index d03f380bd..cc1daf82e 100644 --- a/tests/minzoom/in.json +++ b/tests/minzoom/in.json @@ -1,3 +1,4 @@ +{ "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [ 0, 0 ] }, "tippecanoe": { "minzoom": 0, "maxzoom": 0 } } { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [ 1, 1 ] }, "tippecanoe": { "minzoom": 1, "maxzoom": 1 } } { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [ 2, 2 ] }, "tippecanoe": { "minzoom": 2, "maxzoom": 2 } } { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [ 3, 3 ] }, "tippecanoe": { "minzoom": 3, "maxzoom": 3 } } diff --git a/tests/minzoom/out/-z6.json b/tests/minzoom/out/-z6.json index 140f02f6c..44aff2b99 100644 --- a/tests/minzoom/out/-z6.json +++ b/tests/minzoom/out/-z6.json @@ -1,15 +1,22 @@ { "type": "FeatureCollection", "properties": { -"bounds": "1.000000,1.000000,6.000000,6.000000", +"bounds": "0.000000,0.000000,6.000000,6.000000", "center": "6.000000,6.000000,6", "description": "tests/minzoom/out/-z6.json.check.mbtiles", "format": "pbf", -"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 6, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 6,\"geometry\": \"Point\",\"attributeCount\": 0,\"attributes\": []}]}}", +"generator_options": "./tippecanoe -q -a@ -f -o tests/minzoom/out/-z6.json.check.mbtiles -z6 tests/minzoom/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 6, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 7,\"geometry\": \"Point\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "6", "minzoom": "0", "name": "tests/minzoom/out/-z6.json.check.mbtiles", "type": "overlay", "version": "2" }, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 1.010690 ] } } diff --git a/tests/multilayer/out/-ltogether_-z3.json b/tests/multilayer/out/-ltogether_-z3.json index 30902c148..f841b2f28 100644 --- a/tests/multilayer/out/-ltogether_-z3.json +++ b/tests/multilayer/out/-ltogether_-z3.json @@ -3,6 +3,7 @@ "center": "-70.645734,25.789556,3", "description": "tests/multilayer/out/-ltogether_-z3.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/multilayer/out/-ltogether_-z3.json.check.mbtiles -ltogether -z3 tests/multilayer/lines.json tests/multilayer/places.json", "json": "{\"vector_layers\": [ { \"id\": \"together\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {\"ADM0CAP\": \"Number\", \"ADM0NAME\": \"String\", \"ADM0_A3\": \"String\", \"ADM1NAME\": \"String\", \"ADMIN1_COD\": \"Number\", \"CAPALT\": \"Number\", \"CAPIN\": \"String\", \"CHANGED\": \"Number\", \"CHECKME\": \"Number\", \"CITYALT\": \"String\", \"COMPARE\": \"Number\", \"DIFFASCII\": \"Number\", \"DIFFNOTE\": \"String\", \"ELEVATION\": \"Number\", \"FEATURECLA\": \"String\", \"FEATURE_CL\": \"String\", \"FEATURE_CO\": \"String\", \"GEONAMEID\": \"Number\", \"GEONAMESNO\": \"String\", \"GN_ASCII\": \"String\", \"GN_POP\": \"Number\", \"GTOPO30\": \"Number\", \"ISO_A2\": \"String\", \"LABELRANK\": \"Number\", \"LATITUDE\": \"Number\", \"LONGITUDE\": \"Number\", \"LS_MATCH\": \"Number\", \"LS_NAME\": \"String\", \"MAX_AREAKM\": \"Number\", \"MAX_AREAMI\": \"Number\", \"MAX_BBXMAX\": \"Number\", \"MAX_BBXMIN\": \"Number\", \"MAX_BBYMAX\": \"Number\", \"MAX_BBYMIN\": \"Number\", \"MAX_NATSCA\": \"Number\", \"MAX_PERKM\": \"Number\", \"MAX_PERMI\": \"Number\", \"MAX_POP10\": \"Number\", \"MAX_POP20\": \"Number\", \"MAX_POP300\": \"Number\", \"MAX_POP310\": \"Number\", \"MAX_POP50\": \"Number\", \"MEAN_BBXC\": \"Number\", \"MEAN_BBYC\": \"Number\", \"MEGACITY\": \"Number\", \"MEGANAME\": \"String\", \"MIN_AREAKM\": \"Number\", \"MIN_AREAMI\": \"Number\", \"MIN_BBXMAX\": \"Number\", \"MIN_BBXMIN\": \"Number\", \"MIN_BBYMAX\": \"Number\", \"MIN_BBYMIN\": \"Number\", \"MIN_PERKM\": \"Number\", \"MIN_PERMI\": \"Number\", \"NAME\": \"String\", \"NAMEALT\": \"String\", \"NAMEASCII\": \"String\", \"NAMEDIFF\": \"Number\", \"NATSCALE\": \"Number\", \"POP1950\": \"Number\", \"POP1955\": \"Number\", \"POP1960\": \"Number\", \"POP1965\": \"Number\", \"POP1970\": \"Number\", \"POP1975\": \"Number\", \"POP1980\": \"Number\", \"POP1985\": \"Number\", \"POP1990\": \"Number\", \"POP1995\": \"Number\", \"POP2000\": \"Number\", \"POP2005\": \"Number\", \"POP2010\": \"Number\", \"POP2015\": \"Number\", \"POP2020\": \"Number\", \"POP2025\": \"Number\", \"POP2050\": \"Number\", \"POP_MAX\": \"Number\", \"POP_MIN\": \"Number\", \"POP_OTHER\": \"Number\", \"RANK_MAX\": \"Number\", \"RANK_MIN\": \"Number\", \"SCALERANK\": \"Number\", \"SOV0NAME\": \"String\", \"SOV_A3\": \"String\", \"TIMEZONE\": \"String\", \"UN_ADM0\": \"String\", \"UN_FID\": \"Number\", \"UN_LAT\": \"Number\", \"UN_LONG\": \"Number\", \"WORLDCITY\": \"Number\", \"adm0_a3\": \"String\", \"adm0_name\": \"String\", \"featurecla\": \"String\", \"mapcolor13\": \"Number\", \"mapcolor9\": \"Number\", \"scalerank\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"together\",\"count\": 119,\"geometry\": \"LineString\",\"attributeCount\": 96,\"attributes\": [{\"attribute\": \"ADM0CAP\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"ADM0NAME\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States of America\"]},{\"attribute\": \"ADM0_A3\",\"count\": 1,\"type\": \"string\",\"values\": [\"USA\"]},{\"attribute\": \"ADM1NAME\",\"count\": 8,\"type\": \"string\",\"values\": [\"California\",\"Colorado\",\"District of Columbia\",\"Florida\",\"Georgia\",\"Illinois\",\"New York\",\"Texas\"]},{\"attribute\": \"ADMIN1_COD\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"CAPALT\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"CAPIN\",\"count\": 1,\"type\": \"string\",\"values\": [\"UN Headquarters\"]},{\"attribute\": \"CHANGED\",\"count\": 2,\"type\": \"number\",\"values\": [0,5],\"min\": 0,\"max\": 5},{\"attribute\": \"CHECKME\",\"count\": 2,\"type\": \"number\",\"values\": [0,5],\"min\": 0,\"max\": 5},{\"attribute\": \"CITYALT\",\"count\": 5,\"type\": \"string\",\"values\": [\"Denver\",\"Los Angeles\",\"New York\",\"San Francisco\",\"Washington D.C.\"]},{\"attribute\": \"COMPARE\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"DIFFASCII\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"DIFFNOTE\",\"count\": 1,\"type\": \"string\",\"values\": [\"Changed scale rank.\"]},{\"attribute\": \"ELEVATION\",\"count\": 8,\"type\": \"number\",\"values\": [0,10,16,179,2,320,7,89],\"min\": 0,\"max\": 320},{\"attribute\": \"FEATURECLA\",\"count\": 3,\"type\": \"string\",\"values\": [\"Admin-0 capital\",\"Admin-1 capital\",\"Populated place\"]},{\"attribute\": \"FEATURE_CL\",\"count\": 1,\"type\": \"string\",\"values\": [\"P\"]},{\"attribute\": \"FEATURE_CO\",\"count\": 3,\"type\": \"string\",\"values\": [\"PPL\",\"PPLA\",\"PPLC\"]},{\"attribute\": \"GEONAMEID\",\"count\": 9,\"type\": \"number\",\"values\": [4140963,4164138,4180439,4699066,4887398,5128581,5368361,5391959,5419384],\"min\": 4140963,\"max\": 5419384},{\"attribute\": \"GEONAMESNO\",\"count\": 5,\"type\": \"string\",\"values\": [\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\"]},{\"attribute\": \"GN_ASCII\",\"count\": 9,\"type\": \"string\",\"values\": [\"Atlanta\",\"Chicago\",\"Denver\",\"Houston\",\"Los Angeles\",\"Miami\",\"New York City\",\"San Francisco\",\"Washington\"]},{\"attribute\": \"GN_POP\",\"count\": 8,\"type\": \"number\",\"values\": [0,2841952,3694820,382894,422908,552433,732072,8008278],\"min\": 0,\"max\": 8008278},{\"attribute\": \"GTOPO30\",\"count\": 7,\"type\": \"number\",\"values\": [0,11,115,181,2,305,60],\"min\": 0,\"max\": 305},{\"attribute\": \"ISO_A2\",\"count\": 1,\"type\": \"string\",\"values\": [\"US\"]},{\"attribute\": \"LABELRANK\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"LATITUDE\",\"count\": 9,\"type\": \"number\",\"values\": [25.787611,29.819974,33.830014,33.989978,37.740008,38.899549,39.739188,40.749979,41.829991],\"min\": 25.787611,\"max\": 41.829991},{\"attribute\": \"LONGITUDE\",\"count\": 9,\"type\": \"number\",\"values\": [-104.984016,-118.179981,-122.459978,-73.980017,-77.009419,-80.224106,-84.399949,-87.750055,-95.339979],\"min\": -122.459978,\"max\": -73.980017},{\"attribute\": \"LS_MATCH\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"LS_NAME\",\"count\": 9,\"type\": \"string\",\"values\": [\"Atlanta\",\"Chicago\",\"Denver\",\"Houston\",\"Los Angeles1\",\"Miami\",\"New York\",\"San Francisco1\",\"Washington, D.C.\"]},{\"attribute\": \"MAX_AREAKM\",\"count\": 9,\"type\": \"number\",\"values\": [1345,1748,2907,3041,3447,4086,4804,5803,8185],\"min\": 1345,\"max\": 8185},{\"attribute\": \"MAX_AREAMI\",\"count\": 9,\"type\": \"number\",\"values\": [1122,1174,1331,1578,1855,2241,3160,519,675],\"min\": 519,\"max\": 3160},{\"attribute\": \"MAX_BBXMAX\",\"count\": 9,\"type\": \"number\",\"values\": [-104.708333,-117.008333,-121.733333,-72.716667,-76.4,-80.025,-83.858333,-87.125,-95],\"min\": -121.733333,\"max\": -72.716667},{\"attribute\": \"MAX_BBXMIN\",\"count\": 9,\"type\": \"number\",\"values\": [-105.241667,-118.966667,-122.516667,-74.091431,-77.308333,-80.441667,-84.608333,-88.03629,-95.841667],\"min\": -122.516667,\"max\": -74.091431},{\"attribute\": \"MAX_BBYMAX\",\"count\": 9,\"type\": \"number\",\"values\": [26.991667,30.266667,34.275,34.333333,38.041667,39.533333,40.025,41.941667,42.491667],\"min\": 26.991667,\"max\": 42.491667},{\"attribute\": \"MAX_BBYMIN\",\"count\": 9,\"type\": \"number\",\"values\": [25.725,29.491667,33.383333,33.862631,37.575,38.754222,39.5,40.566667,41.458333],\"min\": 25.725,\"max\": 41.458333},{\"attribute\": \"MAX_NATSCA\",\"count\": 2,\"type\": \"number\",\"values\": [100,300],\"min\": 100,\"max\": 300},{\"attribute\": \"MAX_PERKM\",\"count\": 9,\"type\": \"number\",\"values\": [1773,1898,2202,2459,2946,4993,606,755,999],\"min\": 606,\"max\": 4993},{\"attribute\": \"MAX_PERMI\",\"count\": 9,\"type\": \"number\",\"values\": [1101,1179,1369,1528,1830,3102,376,469,620],\"min\": 376,\"max\": 3102},{\"attribute\": \"MAX_POP10\",\"count\": 9,\"type\": \"number\",\"values\": [1122682,1548599,2182723,2928128,3647574,3747798,4976870,9376946,988636],\"min\": 988636,\"max\": 9376946},{\"attribute\": \"MAX_POP20\",\"count\": 9,\"type\": \"number\",\"values\": [1130999,11947707,1443206,2100407,2240256,3896411,4287078,5069998,6558538],\"min\": 1130999,\"max\": 11947707},{\"attribute\": \"MAX_POP300\",\"count\": 9,\"type\": \"number\",\"values\": [14870543,18788144,2174327,3910939,4352341,4561697,5187749,5678280,8416660],\"min\": 2174327,\"max\": 18788144},{\"attribute\": \"MAX_POP310\",\"count\": 8,\"type\": \"number\",\"values\": [0,14903021,18924578,3910939,4561697,5187749,5678280,8450289],\"min\": 0,\"max\": 18924578},{\"attribute\": \"MAX_POP50\",\"count\": 9,\"type\": \"number\",\"values\": [1371285,14868745,18788144,2174327,3764385,3910939,4352341,5187749,8416660],\"min\": 1371285,\"max\": 18788144},{\"attribute\": \"MEAN_BBXC\",\"count\": 9,\"type\": \"number\",\"values\": [-104.993967,-118.107478,-122.301354,-73.815782,-77.002668,-80.236416,-84.328739,-87.85874,-95.431928],\"min\": -122.301354,\"max\": -73.815782},{\"attribute\": \"MEAN_BBYC\",\"count\": 9,\"type\": \"number\",\"values\": [26.067179,29.810477,33.851552,33.980609,37.622288,39.007587,39.72985,40.813006,41.832719],\"min\": 26.067179,\"max\": 41.832719},{\"attribute\": \"MEGACITY\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"MEGANAME\",\"count\": 9,\"type\": \"string\",\"values\": [\"Atlanta\",\"Chicago\",\"Denver-Aurora\",\"Houston\",\"Los Angeles-Long Beach-Santa Ana\",\"Miami\",\"New York-Newark\",\"San Francisco-Oakland\",\"Washington, D.C.\"]},{\"attribute\": \"MIN_AREAKM\",\"count\": 9,\"type\": \"number\",\"values\": [1114,1137,1338,1345,218,2388,2761,380,909],\"min\": 218,\"max\": 2761},{\"attribute\": \"MIN_AREAMI\",\"count\": 9,\"type\": \"number\",\"values\": [1066,147,351,430,439,517,519,84,922],\"min\": 84,\"max\": 1066},{\"attribute\": \"MIN_BBXMAX\",\"count\": 9,\"type\": \"number\",\"values\": [-104.866667,-117.857183,-122.358333,-73.574946,-76.752653,-80.175719,-83.879976,-87.528138,-95.133333],\"min\": -122.358333,\"max\": -73.574946},{\"attribute\": \"MIN_BBXMIN\",\"count\": 9,\"type\": \"number\",\"values\": [-105.241667,-118.991667,-122.516667,-74.75,-77.533333,-80.466667,-84.875,-88.408333,-95.841667],\"min\": -122.516667,\"max\": -74.75},{\"attribute\": \"MIN_BBYMAX\",\"count\": 9,\"type\": \"number\",\"values\": [26.01406,30.258915,34.202715,34.241667,37.816667,39.241667,39.958333,41.057237,42.000972],\"min\": 26.01406,\"max\": 42.000972},{\"attribute\": \"MIN_BBYMIN\",\"count\": 9,\"type\": \"number\",\"values\": [25.55,29.475,33.383333,33.391667,37.191667,38.666667,39.5,39.808333,41.391667],\"min\": 25.55,\"max\": 41.391667},{\"attribute\": \"MIN_PERKM\",\"count\": 9,\"type\": \"number\",\"values\": [1257,126,1494,156,371,471,497,534,548],\"min\": 126,\"max\": 1494},{\"attribute\": \"MIN_PERMI\",\"count\": 9,\"type\": \"number\",\"values\": [231,293,309,332,341,78,781,929,97],\"min\": 78,\"max\": 929},{\"attribute\": \"NAME\",\"count\": 9,\"type\": \"string\",\"values\": [\"Atlanta\",\"Chicago\",\"Denver\",\"Houston\",\"Los Angeles\",\"Miami\",\"New York\",\"San Francisco\",\"Washington, D.C.\"]},{\"attribute\": \"NAMEALT\",\"count\": 5,\"type\": \"string\",\"values\": [\"Denver-Aurora\",\"Los Angeles-Long Beach-Santa Ana\",\"New York-Newark\",\"San Francisco-Oakland\",\"Washington D.C.\"]},{\"attribute\": \"NAMEASCII\",\"count\": 9,\"type\": \"string\",\"values\": [\"Atlanta\",\"Chicago\",\"Denver\",\"Houston\",\"Los Angeles\",\"Miami\",\"New York\",\"San Francisco\",\"Washington, D.C.\"]},{\"attribute\": \"NAMEDIFF\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"NATSCALE\",\"count\": 2,\"type\": \"number\",\"values\": [300,600],\"min\": 300,\"max\": 600},{\"attribute\": \"POP1950\",\"count\": 9,\"type\": \"number\",\"values\": [12338,1298,1855,4046,4999,505,513,622,709],\"min\": 505,\"max\": 12338},{\"attribute\": \"POP1955\",\"count\": 9,\"type\": \"number\",\"values\": [13219,1539,2021,5154,5565,631,641,904,924],\"min\": 631,\"max\": 13219},{\"attribute\": \"POP1960\",\"count\": 9,\"type\": \"number\",\"values\": [1151,1361,14164,1823,2200,6183,6530,776,809],\"min\": 776,\"max\": 14164},{\"attribute\": \"POP1965\",\"count\": 9,\"type\": \"number\",\"values\": [1396,15177,1709,2135,2361,6639,7408,923,959],\"min\": 923,\"max\": 15177},{\"attribute\": \"POP1970\",\"count\": 9,\"type\": \"number\",\"values\": [1054,1182,16191,1693,2141,2488,2529,7106,8378],\"min\": 1054,\"max\": 16191},{\"attribute\": \"POP1975\",\"count\": 8,\"type\": \"number\",\"values\": [1198,1386,15880,2030,2590,2626,7160,8926],\"min\": 1198,\"max\": 15880},{\"attribute\": \"POP1980\",\"count\": 9,\"type\": \"number\",\"values\": [1356,15601,1625,2424,2656,2777,3122,7216,9512],\"min\": 1356,\"max\": 15601},{\"attribute\": \"POP1985\",\"count\": 9,\"type\": \"number\",\"values\": [10181,1437,15827,1879,2658,2805,3063,3521,7285],\"min\": 1437,\"max\": 15827},{\"attribute\": \"POP1990\",\"count\": 9,\"type\": \"number\",\"values\": [10883,1528,16086,2184,2922,2961,3376,3969,7374],\"min\": 1528,\"max\": 16086},{\"attribute\": \"POP1995\",\"count\": 9,\"type\": \"number\",\"values\": [11339,16943,1747,2781,3095,3353,3651,4431,7839],\"min\": 1747,\"max\": 16943},{\"attribute\": \"POP2000\",\"count\": 9,\"type\": \"number\",\"values\": [11814,17846,1998,3236,3542,3849,3949,4946,8333],\"min\": 1998,\"max\": 17846},{\"attribute\": \"POP2005\",\"count\": 9,\"type\": \"number\",\"values\": [12307,18732,2241,3387,4241,4307,4324,5438,8820],\"min\": 2241,\"max\": 18732},{\"attribute\": \"POP2010\",\"count\": 9,\"type\": \"number\",\"values\": [12500,19040,2313,3450,4338,4459,4506,5585,8990],\"min\": 2313,\"max\": 19040},{\"attribute\": \"POP2015\",\"count\": 9,\"type\": \"number\",\"values\": [12773,19441,2396,3544,4464,4609,4695,5755,9211],\"min\": 2396,\"max\": 19441},{\"attribute\": \"POP2020\",\"count\": 9,\"type\": \"number\",\"values\": [13160,19974,2502,3684,4636,4790,4888,5969,9516],\"min\": 2502,\"max\": 19974},{\"attribute\": \"POP2025\",\"count\": 9,\"type\": \"number\",\"values\": [13461,20370,2590,3803,4778,4936,5035,6141,9756],\"min\": 2590,\"max\": 20370},{\"attribute\": \"POP2050\",\"count\": 9,\"type\": \"number\",\"values\": [13672,20628,2661,3898,4889,5049,5151,6272,9932],\"min\": 2661,\"max\": 20628},{\"attribute\": \"POP_MAX\",\"count\": 9,\"type\": \"number\",\"values\": [12500000,19040000,2313000,3450000,4338000,4459000,4506000,5585000,8990000],\"min\": 2313000,\"max\": 19040000},{\"attribute\": \"POP_MIN\",\"count\": 9,\"type\": \"number\",\"values\": [1548599,2841952,3647574,3694820,382894,422908,552433,732072,8008278],\"min\": 382894,\"max\": 8008278},{\"attribute\": \"POP_OTHER\",\"count\": 9,\"type\": \"number\",\"values\": [1037811,142265,1521278,2175991,27400,2874096,3607616,3635101,9292603],\"min\": 27400,\"max\": 9292603},{\"attribute\": \"RANK_MAX\",\"count\": 3,\"type\": \"number\",\"values\": [12,13,14],\"min\": 12,\"max\": 14},{\"attribute\": \"RANK_MIN\",\"count\": 4,\"type\": \"number\",\"values\": [10,11,12,13],\"min\": 10,\"max\": 13},{\"attribute\": \"SCALERANK\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"SOV0NAME\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States\"]},{\"attribute\": \"SOV_A3\",\"count\": 1,\"type\": \"string\",\"values\": [\"USA\"]},{\"attribute\": \"TIMEZONE\",\"count\": 3,\"type\": \"string\",\"values\": [\"America/Chicago\",\"America/Los_Angeles\",\"America/New_York\"]},{\"attribute\": \"UN_ADM0\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States of America\"]},{\"attribute\": \"UN_FID\",\"count\": 9,\"type\": \"number\",\"values\": [524,531,537,542,547,550,555,570,577],\"min\": 524,\"max\": 577},{\"attribute\": \"UN_LAT\",\"count\": 9,\"type\": \"number\",\"values\": [25.83,29.77,33.79,34,37.79,38.89,39.57,40.7,41.82],\"min\": 25.83,\"max\": 41.82},{\"attribute\": \"UN_LONG\",\"count\": 9,\"type\": \"number\",\"values\": [-105.07,-118.25,-122.38,-73.9,-76.95,-80.27,-84.34,-87.64,-95.4],\"min\": -122.38,\"max\": -73.9},{\"attribute\": \"WORLDCITY\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"adm0_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"USA\"]},{\"attribute\": \"adm0_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States of America\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-1 boundary\"]},{\"attribute\": \"mapcolor13\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"mapcolor9\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2}]}]}}", "maxzoom": "3", "minzoom": "0", diff --git a/tests/multilayer/out/-nseparate_-z3.json b/tests/multilayer/out/-nseparate_-z3.json index 667871b88..eb8d6e43c 100644 --- a/tests/multilayer/out/-nseparate_-z3.json +++ b/tests/multilayer/out/-nseparate_-z3.json @@ -3,6 +3,7 @@ "center": "-70.645734,25.789556,3", "description": "separate", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/multilayer/out/-nseparate_-z3.json.check.mbtiles -nseparate -z3 tests/multilayer/lines.json tests/multilayer/places.json", "json": "{\"vector_layers\": [ { \"id\": \"lines\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {\"adm0_a3\": \"String\", \"adm0_name\": \"String\", \"featurecla\": \"String\", \"mapcolor13\": \"Number\", \"mapcolor9\": \"Number\", \"scalerank\": \"Number\"} }, { \"id\": \"places\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {\"ADM0CAP\": \"Number\", \"ADM0NAME\": \"String\", \"ADM0_A3\": \"String\", \"ADM1NAME\": \"String\", \"ADMIN1_COD\": \"Number\", \"CAPALT\": \"Number\", \"CAPIN\": \"String\", \"CHANGED\": \"Number\", \"CHECKME\": \"Number\", \"CITYALT\": \"String\", \"COMPARE\": \"Number\", \"DIFFASCII\": \"Number\", \"DIFFNOTE\": \"String\", \"ELEVATION\": \"Number\", \"FEATURECLA\": \"String\", \"FEATURE_CL\": \"String\", \"FEATURE_CO\": \"String\", \"GEONAMEID\": \"Number\", \"GEONAMESNO\": \"String\", \"GN_ASCII\": \"String\", \"GN_POP\": \"Number\", \"GTOPO30\": \"Number\", \"ISO_A2\": \"String\", \"LABELRANK\": \"Number\", \"LATITUDE\": \"Number\", \"LONGITUDE\": \"Number\", \"LS_MATCH\": \"Number\", \"LS_NAME\": \"String\", \"MAX_AREAKM\": \"Number\", \"MAX_AREAMI\": \"Number\", \"MAX_BBXMAX\": \"Number\", \"MAX_BBXMIN\": \"Number\", \"MAX_BBYMAX\": \"Number\", \"MAX_BBYMIN\": \"Number\", \"MAX_NATSCA\": \"Number\", \"MAX_PERKM\": \"Number\", \"MAX_PERMI\": \"Number\", \"MAX_POP10\": \"Number\", \"MAX_POP20\": \"Number\", \"MAX_POP300\": \"Number\", \"MAX_POP310\": \"Number\", \"MAX_POP50\": \"Number\", \"MEAN_BBXC\": \"Number\", \"MEAN_BBYC\": \"Number\", \"MEGACITY\": \"Number\", \"MEGANAME\": \"String\", \"MIN_AREAKM\": \"Number\", \"MIN_AREAMI\": \"Number\", \"MIN_BBXMAX\": \"Number\", \"MIN_BBXMIN\": \"Number\", \"MIN_BBYMAX\": \"Number\", \"MIN_BBYMIN\": \"Number\", \"MIN_PERKM\": \"Number\", \"MIN_PERMI\": \"Number\", \"NAME\": \"String\", \"NAMEALT\": \"String\", \"NAMEASCII\": \"String\", \"NAMEDIFF\": \"Number\", \"NATSCALE\": \"Number\", \"POP1950\": \"Number\", \"POP1955\": \"Number\", \"POP1960\": \"Number\", \"POP1965\": \"Number\", \"POP1970\": \"Number\", \"POP1975\": \"Number\", \"POP1980\": \"Number\", \"POP1985\": \"Number\", \"POP1990\": \"Number\", \"POP1995\": \"Number\", \"POP2000\": \"Number\", \"POP2005\": \"Number\", \"POP2010\": \"Number\", \"POP2015\": \"Number\", \"POP2020\": \"Number\", \"POP2025\": \"Number\", \"POP2050\": \"Number\", \"POP_MAX\": \"Number\", \"POP_MIN\": \"Number\", \"POP_OTHER\": \"Number\", \"RANK_MAX\": \"Number\", \"RANK_MIN\": \"Number\", \"SCALERANK\": \"Number\", \"SOV0NAME\": \"String\", \"SOV_A3\": \"String\", \"TIMEZONE\": \"String\", \"UN_ADM0\": \"String\", \"UN_FID\": \"Number\", \"UN_LAT\": \"Number\", \"UN_LONG\": \"Number\", \"WORLDCITY\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"lines\",\"count\": 110,\"geometry\": \"LineString\",\"attributeCount\": 6,\"attributes\": [{\"attribute\": \"adm0_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"USA\"]},{\"attribute\": \"adm0_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States of America\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-1 boundary\"]},{\"attribute\": \"mapcolor13\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"mapcolor9\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2}]},{\"layer\": \"places\",\"count\": 9,\"geometry\": \"Point\",\"attributeCount\": 90,\"attributes\": [{\"attribute\": \"ADM0CAP\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"ADM0NAME\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States of America\"]},{\"attribute\": \"ADM0_A3\",\"count\": 1,\"type\": \"string\",\"values\": [\"USA\"]},{\"attribute\": \"ADM1NAME\",\"count\": 8,\"type\": \"string\",\"values\": [\"California\",\"Colorado\",\"District of Columbia\",\"Florida\",\"Georgia\",\"Illinois\",\"New York\",\"Texas\"]},{\"attribute\": \"ADMIN1_COD\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"CAPALT\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"CAPIN\",\"count\": 1,\"type\": \"string\",\"values\": [\"UN Headquarters\"]},{\"attribute\": \"CHANGED\",\"count\": 2,\"type\": \"number\",\"values\": [0,5],\"min\": 0,\"max\": 5},{\"attribute\": \"CHECKME\",\"count\": 2,\"type\": \"number\",\"values\": [0,5],\"min\": 0,\"max\": 5},{\"attribute\": \"CITYALT\",\"count\": 5,\"type\": \"string\",\"values\": [\"Denver\",\"Los Angeles\",\"New York\",\"San Francisco\",\"Washington D.C.\"]},{\"attribute\": \"COMPARE\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"DIFFASCII\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"DIFFNOTE\",\"count\": 1,\"type\": \"string\",\"values\": [\"Changed scale rank.\"]},{\"attribute\": \"ELEVATION\",\"count\": 8,\"type\": \"number\",\"values\": [0,10,16,179,2,320,7,89],\"min\": 0,\"max\": 320},{\"attribute\": \"FEATURECLA\",\"count\": 3,\"type\": \"string\",\"values\": [\"Admin-0 capital\",\"Admin-1 capital\",\"Populated place\"]},{\"attribute\": \"FEATURE_CL\",\"count\": 1,\"type\": \"string\",\"values\": [\"P\"]},{\"attribute\": \"FEATURE_CO\",\"count\": 3,\"type\": \"string\",\"values\": [\"PPL\",\"PPLA\",\"PPLC\"]},{\"attribute\": \"GEONAMEID\",\"count\": 9,\"type\": \"number\",\"values\": [4140963,4164138,4180439,4699066,4887398,5128581,5368361,5391959,5419384],\"min\": 4140963,\"max\": 5419384},{\"attribute\": \"GEONAMESNO\",\"count\": 5,\"type\": \"string\",\"values\": [\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\"]},{\"attribute\": \"GN_ASCII\",\"count\": 9,\"type\": \"string\",\"values\": [\"Atlanta\",\"Chicago\",\"Denver\",\"Houston\",\"Los Angeles\",\"Miami\",\"New York City\",\"San Francisco\",\"Washington\"]},{\"attribute\": \"GN_POP\",\"count\": 8,\"type\": \"number\",\"values\": [0,2841952,3694820,382894,422908,552433,732072,8008278],\"min\": 0,\"max\": 8008278},{\"attribute\": \"GTOPO30\",\"count\": 7,\"type\": \"number\",\"values\": [0,11,115,181,2,305,60],\"min\": 0,\"max\": 305},{\"attribute\": \"ISO_A2\",\"count\": 1,\"type\": \"string\",\"values\": [\"US\"]},{\"attribute\": \"LABELRANK\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"LATITUDE\",\"count\": 9,\"type\": \"number\",\"values\": [25.787611,29.819974,33.830014,33.989978,37.740008,38.899549,39.739188,40.749979,41.829991],\"min\": 25.787611,\"max\": 41.829991},{\"attribute\": \"LONGITUDE\",\"count\": 9,\"type\": \"number\",\"values\": [-104.984016,-118.179981,-122.459978,-73.980017,-77.009419,-80.224106,-84.399949,-87.750055,-95.339979],\"min\": -122.459978,\"max\": -73.980017},{\"attribute\": \"LS_MATCH\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"LS_NAME\",\"count\": 9,\"type\": \"string\",\"values\": [\"Atlanta\",\"Chicago\",\"Denver\",\"Houston\",\"Los Angeles1\",\"Miami\",\"New York\",\"San Francisco1\",\"Washington, D.C.\"]},{\"attribute\": \"MAX_AREAKM\",\"count\": 9,\"type\": \"number\",\"values\": [1345,1748,2907,3041,3447,4086,4804,5803,8185],\"min\": 1345,\"max\": 8185},{\"attribute\": \"MAX_AREAMI\",\"count\": 9,\"type\": \"number\",\"values\": [1122,1174,1331,1578,1855,2241,3160,519,675],\"min\": 519,\"max\": 3160},{\"attribute\": \"MAX_BBXMAX\",\"count\": 9,\"type\": \"number\",\"values\": [-104.708333,-117.008333,-121.733333,-72.716667,-76.4,-80.025,-83.858333,-87.125,-95],\"min\": -121.733333,\"max\": -72.716667},{\"attribute\": \"MAX_BBXMIN\",\"count\": 9,\"type\": \"number\",\"values\": [-105.241667,-118.966667,-122.516667,-74.091431,-77.308333,-80.441667,-84.608333,-88.03629,-95.841667],\"min\": -122.516667,\"max\": -74.091431},{\"attribute\": \"MAX_BBYMAX\",\"count\": 9,\"type\": \"number\",\"values\": [26.991667,30.266667,34.275,34.333333,38.041667,39.533333,40.025,41.941667,42.491667],\"min\": 26.991667,\"max\": 42.491667},{\"attribute\": \"MAX_BBYMIN\",\"count\": 9,\"type\": \"number\",\"values\": [25.725,29.491667,33.383333,33.862631,37.575,38.754222,39.5,40.566667,41.458333],\"min\": 25.725,\"max\": 41.458333},{\"attribute\": \"MAX_NATSCA\",\"count\": 2,\"type\": \"number\",\"values\": [100,300],\"min\": 100,\"max\": 300},{\"attribute\": \"MAX_PERKM\",\"count\": 9,\"type\": \"number\",\"values\": [1773,1898,2202,2459,2946,4993,606,755,999],\"min\": 606,\"max\": 4993},{\"attribute\": \"MAX_PERMI\",\"count\": 9,\"type\": \"number\",\"values\": [1101,1179,1369,1528,1830,3102,376,469,620],\"min\": 376,\"max\": 3102},{\"attribute\": \"MAX_POP10\",\"count\": 9,\"type\": \"number\",\"values\": [1122682,1548599,2182723,2928128,3647574,3747798,4976870,9376946,988636],\"min\": 988636,\"max\": 9376946},{\"attribute\": \"MAX_POP20\",\"count\": 9,\"type\": \"number\",\"values\": [1130999,11947707,1443206,2100407,2240256,3896411,4287078,5069998,6558538],\"min\": 1130999,\"max\": 11947707},{\"attribute\": \"MAX_POP300\",\"count\": 9,\"type\": \"number\",\"values\": [14870543,18788144,2174327,3910939,4352341,4561697,5187749,5678280,8416660],\"min\": 2174327,\"max\": 18788144},{\"attribute\": \"MAX_POP310\",\"count\": 8,\"type\": \"number\",\"values\": [0,14903021,18924578,3910939,4561697,5187749,5678280,8450289],\"min\": 0,\"max\": 18924578},{\"attribute\": \"MAX_POP50\",\"count\": 9,\"type\": \"number\",\"values\": [1371285,14868745,18788144,2174327,3764385,3910939,4352341,5187749,8416660],\"min\": 1371285,\"max\": 18788144},{\"attribute\": \"MEAN_BBXC\",\"count\": 9,\"type\": \"number\",\"values\": [-104.993967,-118.107478,-122.301354,-73.815782,-77.002668,-80.236416,-84.328739,-87.85874,-95.431928],\"min\": -122.301354,\"max\": -73.815782},{\"attribute\": \"MEAN_BBYC\",\"count\": 9,\"type\": \"number\",\"values\": [26.067179,29.810477,33.851552,33.980609,37.622288,39.007587,39.72985,40.813006,41.832719],\"min\": 26.067179,\"max\": 41.832719},{\"attribute\": \"MEGACITY\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"MEGANAME\",\"count\": 9,\"type\": \"string\",\"values\": [\"Atlanta\",\"Chicago\",\"Denver-Aurora\",\"Houston\",\"Los Angeles-Long Beach-Santa Ana\",\"Miami\",\"New York-Newark\",\"San Francisco-Oakland\",\"Washington, D.C.\"]},{\"attribute\": \"MIN_AREAKM\",\"count\": 9,\"type\": \"number\",\"values\": [1114,1137,1338,1345,218,2388,2761,380,909],\"min\": 218,\"max\": 2761},{\"attribute\": \"MIN_AREAMI\",\"count\": 9,\"type\": \"number\",\"values\": [1066,147,351,430,439,517,519,84,922],\"min\": 84,\"max\": 1066},{\"attribute\": \"MIN_BBXMAX\",\"count\": 9,\"type\": \"number\",\"values\": [-104.866667,-117.857183,-122.358333,-73.574946,-76.752653,-80.175719,-83.879976,-87.528138,-95.133333],\"min\": -122.358333,\"max\": -73.574946},{\"attribute\": \"MIN_BBXMIN\",\"count\": 9,\"type\": \"number\",\"values\": [-105.241667,-118.991667,-122.516667,-74.75,-77.533333,-80.466667,-84.875,-88.408333,-95.841667],\"min\": -122.516667,\"max\": -74.75},{\"attribute\": \"MIN_BBYMAX\",\"count\": 9,\"type\": \"number\",\"values\": [26.01406,30.258915,34.202715,34.241667,37.816667,39.241667,39.958333,41.057237,42.000972],\"min\": 26.01406,\"max\": 42.000972},{\"attribute\": \"MIN_BBYMIN\",\"count\": 9,\"type\": \"number\",\"values\": [25.55,29.475,33.383333,33.391667,37.191667,38.666667,39.5,39.808333,41.391667],\"min\": 25.55,\"max\": 41.391667},{\"attribute\": \"MIN_PERKM\",\"count\": 9,\"type\": \"number\",\"values\": [1257,126,1494,156,371,471,497,534,548],\"min\": 126,\"max\": 1494},{\"attribute\": \"MIN_PERMI\",\"count\": 9,\"type\": \"number\",\"values\": [231,293,309,332,341,78,781,929,97],\"min\": 78,\"max\": 929},{\"attribute\": \"NAME\",\"count\": 9,\"type\": \"string\",\"values\": [\"Atlanta\",\"Chicago\",\"Denver\",\"Houston\",\"Los Angeles\",\"Miami\",\"New York\",\"San Francisco\",\"Washington, D.C.\"]},{\"attribute\": \"NAMEALT\",\"count\": 5,\"type\": \"string\",\"values\": [\"Denver-Aurora\",\"Los Angeles-Long Beach-Santa Ana\",\"New York-Newark\",\"San Francisco-Oakland\",\"Washington D.C.\"]},{\"attribute\": \"NAMEASCII\",\"count\": 9,\"type\": \"string\",\"values\": [\"Atlanta\",\"Chicago\",\"Denver\",\"Houston\",\"Los Angeles\",\"Miami\",\"New York\",\"San Francisco\",\"Washington, D.C.\"]},{\"attribute\": \"NAMEDIFF\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"NATSCALE\",\"count\": 2,\"type\": \"number\",\"values\": [300,600],\"min\": 300,\"max\": 600},{\"attribute\": \"POP1950\",\"count\": 9,\"type\": \"number\",\"values\": [12338,1298,1855,4046,4999,505,513,622,709],\"min\": 505,\"max\": 12338},{\"attribute\": \"POP1955\",\"count\": 9,\"type\": \"number\",\"values\": [13219,1539,2021,5154,5565,631,641,904,924],\"min\": 631,\"max\": 13219},{\"attribute\": \"POP1960\",\"count\": 9,\"type\": \"number\",\"values\": [1151,1361,14164,1823,2200,6183,6530,776,809],\"min\": 776,\"max\": 14164},{\"attribute\": \"POP1965\",\"count\": 9,\"type\": \"number\",\"values\": [1396,15177,1709,2135,2361,6639,7408,923,959],\"min\": 923,\"max\": 15177},{\"attribute\": \"POP1970\",\"count\": 9,\"type\": \"number\",\"values\": [1054,1182,16191,1693,2141,2488,2529,7106,8378],\"min\": 1054,\"max\": 16191},{\"attribute\": \"POP1975\",\"count\": 8,\"type\": \"number\",\"values\": [1198,1386,15880,2030,2590,2626,7160,8926],\"min\": 1198,\"max\": 15880},{\"attribute\": \"POP1980\",\"count\": 9,\"type\": \"number\",\"values\": [1356,15601,1625,2424,2656,2777,3122,7216,9512],\"min\": 1356,\"max\": 15601},{\"attribute\": \"POP1985\",\"count\": 9,\"type\": \"number\",\"values\": [10181,1437,15827,1879,2658,2805,3063,3521,7285],\"min\": 1437,\"max\": 15827},{\"attribute\": \"POP1990\",\"count\": 9,\"type\": \"number\",\"values\": [10883,1528,16086,2184,2922,2961,3376,3969,7374],\"min\": 1528,\"max\": 16086},{\"attribute\": \"POP1995\",\"count\": 9,\"type\": \"number\",\"values\": [11339,16943,1747,2781,3095,3353,3651,4431,7839],\"min\": 1747,\"max\": 16943},{\"attribute\": \"POP2000\",\"count\": 9,\"type\": \"number\",\"values\": [11814,17846,1998,3236,3542,3849,3949,4946,8333],\"min\": 1998,\"max\": 17846},{\"attribute\": \"POP2005\",\"count\": 9,\"type\": \"number\",\"values\": [12307,18732,2241,3387,4241,4307,4324,5438,8820],\"min\": 2241,\"max\": 18732},{\"attribute\": \"POP2010\",\"count\": 9,\"type\": \"number\",\"values\": [12500,19040,2313,3450,4338,4459,4506,5585,8990],\"min\": 2313,\"max\": 19040},{\"attribute\": \"POP2015\",\"count\": 9,\"type\": \"number\",\"values\": [12773,19441,2396,3544,4464,4609,4695,5755,9211],\"min\": 2396,\"max\": 19441},{\"attribute\": \"POP2020\",\"count\": 9,\"type\": \"number\",\"values\": [13160,19974,2502,3684,4636,4790,4888,5969,9516],\"min\": 2502,\"max\": 19974},{\"attribute\": \"POP2025\",\"count\": 9,\"type\": \"number\",\"values\": [13461,20370,2590,3803,4778,4936,5035,6141,9756],\"min\": 2590,\"max\": 20370},{\"attribute\": \"POP2050\",\"count\": 9,\"type\": \"number\",\"values\": [13672,20628,2661,3898,4889,5049,5151,6272,9932],\"min\": 2661,\"max\": 20628},{\"attribute\": \"POP_MAX\",\"count\": 9,\"type\": \"number\",\"values\": [12500000,19040000,2313000,3450000,4338000,4459000,4506000,5585000,8990000],\"min\": 2313000,\"max\": 19040000},{\"attribute\": \"POP_MIN\",\"count\": 9,\"type\": \"number\",\"values\": [1548599,2841952,3647574,3694820,382894,422908,552433,732072,8008278],\"min\": 382894,\"max\": 8008278},{\"attribute\": \"POP_OTHER\",\"count\": 9,\"type\": \"number\",\"values\": [1037811,142265,1521278,2175991,27400,2874096,3607616,3635101,9292603],\"min\": 27400,\"max\": 9292603},{\"attribute\": \"RANK_MAX\",\"count\": 3,\"type\": \"number\",\"values\": [12,13,14],\"min\": 12,\"max\": 14},{\"attribute\": \"RANK_MIN\",\"count\": 4,\"type\": \"number\",\"values\": [10,11,12,13],\"min\": 10,\"max\": 13},{\"attribute\": \"SCALERANK\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"SOV0NAME\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States\"]},{\"attribute\": \"SOV_A3\",\"count\": 1,\"type\": \"string\",\"values\": [\"USA\"]},{\"attribute\": \"TIMEZONE\",\"count\": 3,\"type\": \"string\",\"values\": [\"America/Chicago\",\"America/Los_Angeles\",\"America/New_York\"]},{\"attribute\": \"UN_ADM0\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States of America\"]},{\"attribute\": \"UN_FID\",\"count\": 9,\"type\": \"number\",\"values\": [524,531,537,542,547,550,555,570,577],\"min\": 524,\"max\": 577},{\"attribute\": \"UN_LAT\",\"count\": 9,\"type\": \"number\",\"values\": [25.83,29.77,33.79,34,37.79,38.89,39.57,40.7,41.82],\"min\": 25.83,\"max\": 41.82},{\"attribute\": \"UN_LONG\",\"count\": 9,\"type\": \"number\",\"values\": [-105.07,-118.25,-122.38,-73.9,-76.95,-80.27,-84.34,-87.64,-95.4],\"min\": -122.38,\"max\": -73.9},{\"attribute\": \"WORLDCITY\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1}]}]}}", "maxzoom": "3", "minzoom": "0", diff --git a/tests/multilinestring/in.json b/tests/multilinestring/in.json new file mode 100644 index 000000000..6c2bcff6e --- /dev/null +++ b/tests/multilinestring/in.json @@ -0,0 +1,35 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [ [ + [ + 33.046, + 70.728 + ], + [ + -1.0546, + 18.9790 + ], + [ + 1.7578, + -16.2990 + ] + ], [ + [ + -17.2265, + 60.5869 + ], + [ + -34.1015, + 17.644 + ] + ] ] + } + } + ] +} diff --git a/tests/multilinestring/out/-z1.json b/tests/multilinestring/out/-z1.json new file mode 100644 index 000000000..185f0f7a2 --- /dev/null +++ b/tests/multilinestring/out/-z1.json @@ -0,0 +1,43 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-34.101500,-16.299000,33.046000,70.728000", +"center": "-34.101500,42.525564,1", +"description": "tests/multilinestring/out/-z1.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/multilinestring/out/-z1.json.check.mbtiles -z1 tests/multilinestring/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 1, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1,\"geometry\": \"LineString\",\"attributeCount\": 0,\"attributes\": []}]}}", +"maxzoom": "1", +"minzoom": "0", +"name": "tests/multilinestring/out/-z1.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 32.958984, 70.728979 ], [ -1.054688, 18.979026 ], [ 1.669922, -16.214675 ] ], [ [ -17.226562, 60.586967 ], [ -34.101562, 17.644022 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.131836, 3.513421 ], [ 1.713867, -16.256867 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 3.515625, 29.075375 ], [ 0.000000, 21.371244 ], [ -1.054688, 18.979026 ], [ 0.000000, 5.703448 ], [ 0.703125, -3.513421 ] ], [ [ -17.226562, 60.586967 ], [ -34.101562, 17.644022 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.131836, 3.513421 ], [ 0.439453, 0.000000 ], [ 1.713867, -16.256867 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 33.002930, 70.728979 ], [ 0.000000, 21.371244 ], [ -1.054688, 18.979026 ], [ 0.000000, 5.703448 ], [ 0.439453, 0.000000 ], [ 0.703125, -3.513421 ] ] } } +] } +] } +] } diff --git a/tests/muni/decode/multi.mbtiles.json b/tests/muni/decode/multi.mbtiles.json index edab0dc8a..760bba010 100644 --- a/tests/muni/decode/multi.mbtiles.json +++ b/tests/muni/decode/multi.mbtiles.json @@ -3,6 +3,7 @@ "center": "-122.431641,37.788049,11", "description": "tests/muni/decode/multi.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -z11 -Z11 -f -o tests/muni/decode/multi.mbtiles tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "11", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z11.json b/tests/muni/out/-Z11_-z11.json index de7ee74eb..73f56afd7 100644 --- a/tests/muni/out/-Z11_-z11.json +++ b/tests/muni/out/-Z11_-z11.json @@ -3,6 +3,7 @@ "center": "-122.431641,37.788049,11", "description": "tests/muni/out/-Z11_-z11.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z11.json.check.mbtiles -Z11 -z11 tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "11", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z11_--calculate-feature-density.json b/tests/muni/out/-Z11_-z11_--calculate-feature-density.json index 79b509caf..64d1468b8 100644 --- a/tests/muni/out/-Z11_-z11_--calculate-feature-density.json +++ b/tests/muni/out/-Z11_-z11_--calculate-feature-density.json @@ -3,6 +3,7 @@ "center": "-122.431641,37.788049,11", "description": "tests/muni/out/-Z11_-z11_--calculate-feature-density.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z11_--calculate-feature-density.json.check.mbtiles -Z11 -z11 --calculate-feature-density tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\", \"tippecanoe_feature_density\": \"Number\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\", \"tippecanoe_feature_density\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"attribute\": \"tippecanoe_feature_density\",\"count\": 39,\"type\": \"number\",\"values\": [0,1,10,11,12,13,14,15,16,17,18,19,2,20,202,21,23,25,255,3,31,33,34,39,4,43,45,5,50,54,55,6,61,7,77,8,89,9,93],\"min\": 0,\"max\": 255}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\": \"tippecanoe_feature_density\",\"count\": 9,\"type\": \"number\",\"values\": [0,1,17,2,28,3,77,8,89],\"min\": 0,\"max\": 89}]}]}}", "maxzoom": "11", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z11_--hilbert.json b/tests/muni/out/-Z11_-z11_--hilbert.json new file mode 100644 index 000000000..31f9049ec --- /dev/null +++ b/tests/muni/out/-Z11_-z11_--hilbert.json @@ -0,0 +1,9747 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-122.538670,37.705764,-12.240000,37.836443", +"center": "-122.431641,37.788049,11", +"description": "tests/muni/out/-Z11_-z11_--hilbert.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z11_--hilbert.json.check.mbtiles -Z11 -z11 --hilbert tests/muni/muni.json", +"json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", +"maxzoom": "11", +"minzoom": "11", +"name": "tests/muni/out/-Z11_-z11_--hilbert.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831684 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832497 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830497 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831446 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530303, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821853 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398467, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719167 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462153, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497687, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714890 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714618 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709152 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707387 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459922, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706131 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705791 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468677, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469363, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713125 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715229 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718081 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717402 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710137 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.710409 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450910, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432542, 37.709662 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.710001 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.715739 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714279 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711767 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426791, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710069 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.713736 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713260 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708236 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.709017 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709118 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712310 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712378 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712378 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.713872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709933 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711359 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713872 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713872 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715365 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.717843 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.711020 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397265, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.361002, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379413, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730607 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381730, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382760, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383618, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730165 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383103, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384820, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387395, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386022, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385077, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382159, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378983, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377267, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374520, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375293, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370229, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381043, 37.738650 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381816, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382846, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382588, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384477, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386451, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383962, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758196 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395205, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760062 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754735 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.753582 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.754532 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759757 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399325, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403188, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767492 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.767221 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389369, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766610 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766610 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.766881 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771190 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772920 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772920 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776380 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392459, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390141, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780654 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780857 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392201, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.786623 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.787776 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786623 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781468 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.781196 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.771563 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774616 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778211 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778415 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781196 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783706 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.782349 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.787912 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786827 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782214 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.780179 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.780111 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782417 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784927 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.786962 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431598, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771359 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772173 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430568, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430224, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.769527 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.769527 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770274 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429967, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767696 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767696 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767560 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.765660 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768645 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410569, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763862 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758196 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759825 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.759350 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758841 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416492, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.757246 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429795, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749408 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751817 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427392, 37.751614 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751817 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.744963 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426791, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.737768 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736682 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739058 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738854 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739601 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418122, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418122, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753276 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.749713 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408767, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397094, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.746184 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740144 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391686, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738718 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.733084 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731930 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399497, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392201, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392116, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735189 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390313, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731727 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390313, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391601, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392030, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724191 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722358 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398467, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.723309 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.726703 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726567 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723512 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726432 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.726500 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722969 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735935 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424731, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430224, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430310, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429366, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723173 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.725617 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424388, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.721679 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430053, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.724599 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724327 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.722969 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723173 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726839 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719167 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720593 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722155 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.721951 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722969 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.722969 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.727654 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729826 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731727 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729622 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729826 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733424 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432370, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737361 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.744691 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.746320 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432027, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436576, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441683, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747949 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747168 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749985 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448034, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736818 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.737496 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.739261 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450738, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450910, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737836 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737768 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460866, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.744012 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455802, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455802, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.745709 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454429, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455888, 37.753106 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468591, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.752971 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750562 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745132 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470222, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468505, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736410 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737361 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734646 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474771, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457690, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457347, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724938 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454257, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458119, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721951 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462153, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471766, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482581, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726092 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479663, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486444, 37.729656 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486315, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493482, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733559 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733627 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729826 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726771 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503438, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501721, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729758 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501721, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501378, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500777, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499318, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504725, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504296, 37.738006 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506399, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504897, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501979, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.747542 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501035, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498889, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753310 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751817 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495198, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490993, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491250, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488847, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486701, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486959, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494941, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497344, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494512, 37.744012 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742383 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738650 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.740144 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489791, 37.742383 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485628, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476315, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479749, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759757 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476573, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476745, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477345, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477775, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495885, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761046 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489533, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486787, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486787, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753717 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490306, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753649 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495627, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495284, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496743, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499404, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760300 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508073, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508159, 37.760300 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505927, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756805 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509103, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.760198 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.767899 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506185, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771902 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500434, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503867, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503095, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771495 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771359 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510819, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509446, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509618, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508502, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507472, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503095, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491465, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490649, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490220, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493482, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492366, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494426, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493052, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490735, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492023, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778076 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484641, 37.776380 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774344 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772716 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477946, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.776583 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476745, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780111 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484641, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484641, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483697, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481809, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.783842 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485070, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473998, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782417 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780857 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464728, 37.784927 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469192, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785199 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459321, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455716, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781400 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458205, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458549, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774819 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453914, 37.772920 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772784 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.770884 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468419, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468419, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472024, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464643, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469363, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755278 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465587, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756703 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758332 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466187, 37.760435 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756941 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454944, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458205, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457004, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462497, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460866, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460179, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766474 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450223, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450824, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450824, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.769968 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770274 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766949 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447820, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.763760 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763760 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.763048 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449880, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451339, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452712, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452970, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449021, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450566, 37.753649 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.759825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.759417 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.760978 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435117, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766881 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768849 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435803, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767628 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771631 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.771359 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433228, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441554, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452798, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773395 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449622, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775701 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.782349 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784045 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785266 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443099, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440352, 37.787030 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785266 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438121, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437692, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432370, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433228, 37.786013 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432542, 37.790015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435117, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438722, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791575 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788115 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788115 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447476, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798560 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798086 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.803104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797136 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.801341 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804461 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807580 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466617, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801748 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801884 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798289 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.798560 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482495, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.792253 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480521, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803986 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829548 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832870 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833717 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508845, 37.833039 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836463 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.808055 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807817 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.807851 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.808123 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806902 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417865, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.806190 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807275 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805613 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806359 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423530, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798493 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427392, 37.798086 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798221 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.795305 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795169 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796526 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417865, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415633, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.791575 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411084, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.797238 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798221 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799917 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801884 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804223 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803308 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.801951 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801205 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803308 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.801273 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798560 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797882 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796255 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793067 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406964, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790964 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400312, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.793338 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.792795 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395205, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793677 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.793542 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790625 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790625 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390227, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390141, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391171, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797238 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799578 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.806970 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807377 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.807275 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808258 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367997, 37.822396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367826, 37.821955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366366, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 37.819921 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366452, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818531 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370915, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371173, 37.813073 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369885, 37.812056 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810530 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811886 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811717 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364306, 37.811344 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364221, 37.820768 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364907, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823650 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.825209 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825345 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828328 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375293, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823548 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823277 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377439, 37.826972 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497687, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718081 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717402 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.717843 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716384 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.767221 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788726 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793168 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.820023 ] } } +] } +] } +] } diff --git a/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json b/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json index bd43d328f..2406a910b 100644 --- a/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json +++ b/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json @@ -3,6 +3,7 @@ "center": "-122.431641,37.788049,11", "description": "tests/muni/out/-Z11_-z11_--prefer-radix-sort.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z11_--prefer-radix-sort.json.check.mbtiles -Z11 -z11 --prefer-radix-sort tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "11", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z11_-g2.json b/tests/muni/out/-Z11_-z11_-g2.json index d3f2c7349..f7c82588f 100644 --- a/tests/muni/out/-Z11_-z11_-g2.json +++ b/tests/muni/out/-Z11_-z11_-g2.json @@ -3,6 +3,7 @@ "center": "-122.431641,37.788049,11", "description": "tests/muni/out/-Z11_-z11_-g2.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z11_-g2.json.check.mbtiles -Z11 -z11 -g2 tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "11", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z13_-B15.json b/tests/muni/out/-Z11_-z13_-B15.json index 4bad9c816..812a4f834 100644 --- a/tests/muni/out/-Z11_-z13_-B15.json +++ b/tests/muni/out/-Z11_-z13_-B15.json @@ -3,6 +3,7 @@ "center": "-122.409668,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-B15.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-B15.json.check.mbtiles -Z11 -z13 -B15 tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "13", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z13_-Bf2000.json b/tests/muni/out/-Z11_-z13_-Bf2000.json index 27280852b..c07000c65 100644 --- a/tests/muni/out/-Z11_-z13_-Bf2000.json +++ b/tests/muni/out/-Z11_-z13_-Bf2000.json @@ -3,6 +3,7 @@ "center": "-122.409668,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-Bf2000.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-Bf2000.json.check.mbtiles -Z11 -z13 -Bf2000 tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "13", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z13_-M10000.json b/tests/muni/out/-Z11_-z13_-M10000.json index f65a90c2d..7ed640aee 100644 --- a/tests/muni/out/-Z11_-z13_-M10000.json +++ b/tests/muni/out/-Z11_-z13_-M10000.json @@ -3,6 +3,7 @@ "center": "-122.409668,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-M10000.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-M10000.json.check.mbtiles -Z11 -z13 -M10000 tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "13", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z13_-M10000_-aG.json b/tests/muni/out/-Z11_-z13_-M10000_-aG.json index 830d17234..211863c2e 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-aG.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-aG.json @@ -3,6 +3,7 @@ "center": "-122.409668,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-M10000_-aG.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-M10000_-aG.json.check.mbtiles -Z11 -z13 -M10000 -aG tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "13", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z13_-M10000_-ad.json b/tests/muni/out/-Z11_-z13_-M10000_-ad.json index 3bc2c2822..2fcea1871 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-ad.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-ad.json @@ -3,6 +3,7 @@ "center": "-122.409668,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-M10000_-ad.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-M10000_-ad.json.check.mbtiles -Z11 -z13 -M10000 -ad tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "13", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z13_-M10000_-pd.json b/tests/muni/out/-Z11_-z13_-M10000_-pd.json index fc8fdfd43..ac162ba1c 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-pd.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-pd.json @@ -3,6 +3,7 @@ "center": "-122.409668,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-M10000_-pd.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-M10000_-pd.json.check.mbtiles -Z11 -z13 -M10000 -pd tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "13", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z13_-M5000_-as.json b/tests/muni/out/-Z11_-z13_-M5000_-as.json index 6d2a23f19..be2bd9a26 100644 --- a/tests/muni/out/-Z11_-z13_-M5000_-as.json +++ b/tests/muni/out/-Z11_-z13_-M5000_-as.json @@ -3,6 +3,7 @@ "center": "-122.497559,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-M5000_-as.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-M5000_-as.json.check.mbtiles -Z11 -z13 -M5000 -as tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "13", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json b/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json index ad35b4d55..f0ae0b207 100644 --- a/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json +++ b/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json @@ -3,6 +3,7 @@ "center": "-122.453613,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json.check.mbtiles -Z11 -z13 -O100 --cluster-densest-as-needed tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"clustered\": \"Boolean\", \"name\": \"String\", \"point_count\": \"Number\", \"sqrt_point_count\": \"Number\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"clustered\": \"Boolean\", \"name\": \"String\", \"point_count\": \"Number\", \"sqrt_point_count\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"clustered\",\"count\": 1,\"type\": \"boolean\",\"values\": [true]},{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"attribute\": \"point_count\",\"count\": 33,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,29,3,30,32,37,38,4,40,46,5,6,7,8,9],\"min\": 2,\"max\": 46},{\"attribute\": \"sqrt_point_count\",\"count\": 33,\"type\": \"number\",\"values\": [1.410000,1.730000,2.000000,2.240000,2.450000,2.650000,2.830000,3.000000,3.160000,3.320000,3.460000,3.610000,3.740000,3.870000,4.000000,4.120000,4.240000,4.360000,4.470000,4.580000,4.690000,4.800000,4.900000,5.000000,5.100000,5.200000,5.390000,5.480000,5.660000,6.080000,6.160000,6.320000,6.780000],\"min\": 1.41,\"max\": 6.78}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"clustered\",\"count\": 1,\"type\": \"boolean\",\"values\": [true]},{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\": \"point_count\",\"count\": 5,\"type\": \"number\",\"values\": [12,2,3,5,7],\"min\": 2,\"max\": 12},{\"attribute\": \"sqrt_point_count\",\"count\": 5,\"type\": \"number\",\"values\": [1.410000,1.730000,2.240000,2.650000,3.460000],\"min\": 1.41,\"max\": 3.46}]}]}}", "maxzoom": "13", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z13_-rf2000.json b/tests/muni/out/-Z11_-z13_-rf2000.json index 9ce7e7f94..466754e66 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000.json +++ b/tests/muni/out/-Z11_-z13_-rf2000.json @@ -3,6 +3,7 @@ "center": "-122.409668,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-rf2000.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-rf2000.json.check.mbtiles -Z11 -z13 -rf2000 tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "13", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json index 5f97bcf95..3ff1372a2 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json @@ -3,6 +3,7 @@ "center": "-122.409668,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-rf2000_-Bg.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-rf2000_-Bg.json.check.mbtiles -Z11 -z13 -rf2000 -Bg tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "13", "minzoom": "11", diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json index b7c49c489..61d95bae6 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json @@ -3,6 +3,7 @@ "center": "-122.409668,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-rf2000_-g2.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-rf2000_-g2.json.check.mbtiles -Z11 -z13 -rf2000 -g2 tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 13, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "13", "minzoom": "11", diff --git a/tests/muni/out/-r1_-K20.json b/tests/muni/out/-r1_-K20.json index accfa2ea8..93ccdbe7e 100644 --- a/tests/muni/out/-r1_-K20.json +++ b/tests/muni/out/-r1_-K20.json @@ -3,6 +3,7 @@ "center": "-122.420654,37.779398,14", "description": "tests/muni/out/-r1_-K20.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-r1_-K20.json.check.mbtiles -r1 -K20 tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 14, \"fields\": {\"clustered\": \"Boolean\", \"name\": \"String\", \"point_count\": \"Number\", \"sqrt_point_count\": \"Number\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 14, \"fields\": {\"clustered\": \"Boolean\", \"name\": \"String\", \"point_count\": \"Number\", \"sqrt_point_count\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"clustered\",\"count\": 1,\"type\": \"boolean\",\"values\": [true]},{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"attribute\": \"point_count\",\"count\": 125,\"type\": \"number\",\"values\": [10,101,103,1050,11,115,118,12,121,123,127,13,14,1423,15,157,158,16,165,168,17,171,174,177,18,185,19,197,199,2,20,207,209,21,22,220,23,24,25,2540,26,267,27,270,279,28,29,3,30,303,308,31,32,33,345,35,36,37,374,38,39,4,40,41,4108,42,4206,43,44,45,4580,46,47,48,49,495,496,5,50,51,519,52,521,53,54,56,57,58,59,6,60,602,61,610,619,62,63,64,66,67],\"min\": 2,\"max\": 4580},{\"attribute\": \"sqrt_point_count\",\"count\": 125,\"type\": \"number\",\"values\": [1.410000,1.730000,10.050000,10.150000,10.720000,10.860000,11.000000,11.090000,11.270000,12.530000,12.570000,12.850000,12.960000,13.080000,13.190000,13.300000,13.600000,14.040000,14.110000,14.390000,14.460000,14.830000,16.340000,16.430000,16.700000,17.410000,17.550000,18.570000,19.340000,2.000000,2.240000,2.450000,2.650000,2.830000,22.250000,22.270000,22.780000,22.830000,24.540000,24.700000,24.880000,28.740000,3.000000,3.160000,3.320000,3.460000,3.610000,3.740000,3.870000,32.400000,37.720000,4.000000,4.120000,4.240000,4.360000,4.470000,4.580000,4.690000,4.800000,4.900000,5.000000,5.100000,5.200000,5.290000,5.390000,5.480000,5.570000,5.660000,5.740000,5.920000,50.400000,6.000000,6.080000,6.160000,6.240000,6.320000,6.400000,6.480000,6.560000,6.630000,6.710000,6.780000,6.860000,6.930000,64.090000,64.850000,67.680000,7.000000,7.070000,7.140000,7.210000,7.280000,7.350000,7.480000,7.550000,7.620000,7.680000,7.750000,7.810000,7.870000],\"min\": 1.41,\"max\": 67.68}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"clustered\",\"count\": 1,\"type\": \"boolean\",\"values\": [true]},{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\": \"point_count\",\"count\": 6,\"type\": \"number\",\"values\": [10,13,19,2,3,5],\"min\": 2,\"max\": 19},{\"attribute\": \"sqrt_point_count\",\"count\": 6,\"type\": \"number\",\"values\": [1.410000,1.730000,2.240000,3.160000,3.610000,4.360000],\"min\": 1.41,\"max\": 4.36}]}]}}", "maxzoom": "14", "minzoom": "0", diff --git a/tests/muni/out/-z0_--coalesce_--reorder.json b/tests/muni/out/-z0_--coalesce_--reorder.json new file mode 100644 index 000000000..f534393f4 --- /dev/null +++ b/tests/muni/out/-z0_--coalesce_--reorder.json @@ -0,0 +1,6117 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-122.538670,37.705764,-12.240000,37.836443", +"center": "-12.240000,37.705764,0", +"description": "tests/muni/out/-z0_--coalesce_--reorder.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-z0_--coalesce_--reorder.json.check.mbtiles -z0 --coalesce --reorder tests/muni/muni.json", +"json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/muni/out/-z0_--coalesce_--reorder.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.607422, 37.857507 ], [ -122.607422, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.607422, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.607422, 37.857507 ], [ -122.607422, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -12.304688, 37.857507 ], [ -12.304688, 37.857507 ], [ -12.304688, 37.857507 ], [ -12.304688, 37.857507 ], [ -12.304688, 37.857507 ], [ -12.304688, 37.857507 ], [ -12.304688, 37.857507 ], [ -12.304688, 37.857507 ], [ -12.304688, 37.857507 ], [ -12.304688, 37.857507 ], [ -12.304688, 37.857507 ], [ -12.304688, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.718590 ], [ -122.519531, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.857507 ], [ -122.519531, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.718590 ], [ -122.431641, 37.718590 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.788081 ], [ -122.431641, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.519531, 37.788081 ], [ -122.519531, 37.788081 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -122.431641, 37.857507 ], [ -122.431641, 37.857507 ] ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +] } +] } +] } diff --git a/tests/muni/out/-z1_-Z1_-ao_-P.json b/tests/muni/out/-z1_-Z1_-ao_-P.json index 78b0800ec..4b94847c3 100644 --- a/tests/muni/out/-z1_-Z1_-ao_-P.json +++ b/tests/muni/out/-z1_-Z1_-ao_-P.json @@ -3,6 +3,7 @@ "center": "-90.000000,37.836443,1", "description": "tests/muni/out/-z1_-Z1_-ao_-P.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-z1_-Z1_-ao_-P.json.check.mbtiles -z1 -Z1 -ao -P tests/muni/muni.json", "json": "{\"vector_layers\": [ { \"id\": \"muni\", \"description\": \"\", \"minzoom\": 1, \"maxzoom\": 1, \"fields\": {\"name\": \"String\"} }, { \"id\": \"subway\", \"description\": \"\", \"minzoom\": 1, \"maxzoom\": 1, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"muni\",\"count\": 4592,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 1000,\"type\": \"string\",\"values\": [\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]}]},{\"layer\": \"subway\",\"count\": 19,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 18,\"type\": \"string\",\"values\": [\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]}]}]}}", "maxzoom": "1", "minzoom": "1", diff --git a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json index a9222111c..dda54ce87 100644 --- a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json +++ b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json @@ -3,6 +3,7 @@ "center": "0.000000,18.975561,0", "description": "tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json.check.mbtiles -z0 -Lalgeria:tests/named/alg -Lalbania:tests/named/alb tests/named/sweden.json", "json": "{\"vector_layers\": [ { \"id\": \"albania\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} }, { \"id\": \"algeria\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} }, { \"id\": \"sweden\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 3,\"layers\": [{\"layer\": \"albania\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 57,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 1,\"type\": \"string\",\"values\": [\"Alb.\"]},{\"attribute\": \"abbrev_len\",\"count\": 1,\"type\": \"number\",\"values\": [4],\"min\": 4,\"max\": 4},{\"attribute\": \"adm0_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"ALB\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 1,\"type\": \"string\",\"values\": [\"ALB\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 1,\"type\": \"string\",\"values\": [\"ALB\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"admin\",\"count\": 1,\"type\": \"string\",\"values\": [\"Albania\"]},{\"attribute\": \"brk_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"ALB\"]},{\"attribute\": \"brk_diff\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"brk_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Albania\"]},{\"attribute\": \"continent\",\"count\": 1,\"type\": \"string\",\"values\": [\"Europe\"]},{\"attribute\": \"economy\",\"count\": 1,\"type\": \"string\",\"values\": [\"6. Developing region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 1,\"type\": \"string\",\"values\": [\"Republic of Albania\"]},{\"attribute\": \"gdp_md_est\",\"count\": 1,\"type\": \"number\",\"values\": [21810],\"min\": 21810,\"max\": 21810},{\"attribute\": \"gdp_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 1,\"type\": \"string\",\"values\": [\"Albania\"]},{\"attribute\": \"gu_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"ALB\"]},{\"attribute\": \"homepart\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 1,\"type\": \"string\",\"values\": [\"4. Lower middle income\"]},{\"attribute\": \"iso_a2\",\"count\": 1,\"type\": \"string\",\"values\": [\"AL\"]},{\"attribute\": \"iso_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"ALB\"]},{\"attribute\": \"iso_n3\",\"count\": 1,\"type\": \"string\",\"values\": [\"008\"]},{\"attribute\": \"labelrank\",\"count\": 1,\"type\": \"number\",\"values\": [6],\"min\": 6,\"max\": 6},{\"attribute\": \"lastcensus\",\"count\": 1,\"type\": \"number\",\"values\": [2001],\"min\": 2001,\"max\": 2001},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 1,\"type\": \"number\",\"values\": [7],\"min\": 7,\"max\": 7},{\"attribute\": \"mapcolor13\",\"count\": 1,\"type\": \"number\",\"values\": [6],\"min\": 6,\"max\": 6},{\"attribute\": \"mapcolor7\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"mapcolor8\",\"count\": 1,\"type\": \"number\",\"values\": [4],\"min\": 4,\"max\": 4},{\"attribute\": \"mapcolor9\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Albania\"]},{\"attribute\": \"name_len\",\"count\": 1,\"type\": \"number\",\"values\": [7],\"min\": 7,\"max\": 7},{\"attribute\": \"name_long\",\"count\": 1,\"type\": \"string\",\"values\": [\"Albania\"]},{\"attribute\": \"name_sort\",\"count\": 1,\"type\": \"string\",\"values\": [\"Albania\"]},{\"attribute\": \"pop_est\",\"count\": 1,\"type\": \"number\",\"values\": [3639453],\"min\": 3639453,\"max\": 3639453},{\"attribute\": \"pop_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"postal\",\"count\": 1,\"type\": \"string\",\"values\": [\"AL\"]},{\"attribute\": \"region_un\",\"count\": 1,\"type\": \"string\",\"values\": [\"Europe\"]},{\"attribute\": \"region_wb\",\"count\": 1,\"type\": \"string\",\"values\": [\"Europe & Central Asia\"]},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"sov_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"ALB\"]},{\"attribute\": \"sovereignt\",\"count\": 1,\"type\": \"string\",\"values\": [\"Albania\"]},{\"attribute\": \"su_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"ALB\"]},{\"attribute\": \"su_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"subregion\",\"count\": 1,\"type\": \"string\",\"values\": [\"Southern Europe\"]},{\"attribute\": \"subunit\",\"count\": 1,\"type\": \"string\",\"values\": [\"Albania\"]},{\"attribute\": \"tiny\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"type\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"008\"]},{\"attribute\": \"wb_a2\",\"count\": 1,\"type\": \"string\",\"values\": [\"AL\"]},{\"attribute\": \"wb_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"ALB\"]},{\"attribute\": \"wikipedia\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]},{\"layer\": \"algeria\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 57,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 1,\"type\": \"string\",\"values\": [\"Alg.\"]},{\"attribute\": \"abbrev_len\",\"count\": 1,\"type\": \"number\",\"values\": [4],\"min\": 4,\"max\": 4},{\"attribute\": \"adm0_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZA\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZA\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"admin\",\"count\": 1,\"type\": \"string\",\"values\": [\"Algeria\"]},{\"attribute\": \"brk_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZA\"]},{\"attribute\": \"brk_diff\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"brk_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Algeria\"]},{\"attribute\": \"continent\",\"count\": 1,\"type\": \"string\",\"values\": [\"Africa\"]},{\"attribute\": \"economy\",\"count\": 1,\"type\": \"string\",\"values\": [\"6. Developing region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 1,\"type\": \"string\",\"values\": [\"People's Democratic Republic of Algeria\"]},{\"attribute\": \"gdp_md_est\",\"count\": 1,\"type\": \"number\",\"values\": [232900],\"min\": 232900,\"max\": 232900},{\"attribute\": \"gdp_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 1,\"type\": \"string\",\"values\": [\"Algeria\"]},{\"attribute\": \"gu_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZA\"]},{\"attribute\": \"homepart\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 1,\"type\": \"string\",\"values\": [\"3. Upper middle income\"]},{\"attribute\": \"iso_a2\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZ\"]},{\"attribute\": \"iso_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZA\"]},{\"attribute\": \"iso_n3\",\"count\": 1,\"type\": \"string\",\"values\": [\"012\"]},{\"attribute\": \"labelrank\",\"count\": 1,\"type\": \"number\",\"values\": [3],\"min\": 3,\"max\": 3},{\"attribute\": \"lastcensus\",\"count\": 1,\"type\": \"number\",\"values\": [2008],\"min\": 2008,\"max\": 2008},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 1,\"type\": \"number\",\"values\": [7],\"min\": 7,\"max\": 7},{\"attribute\": \"mapcolor13\",\"count\": 1,\"type\": \"number\",\"values\": [3],\"min\": 3,\"max\": 3},{\"attribute\": \"mapcolor7\",\"count\": 1,\"type\": \"number\",\"values\": [5],\"min\": 5,\"max\": 5},{\"attribute\": \"mapcolor8\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"mapcolor9\",\"count\": 1,\"type\": \"number\",\"values\": [6],\"min\": 6,\"max\": 6},{\"attribute\": \"name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Algeria\"]},{\"attribute\": \"name_len\",\"count\": 1,\"type\": \"number\",\"values\": [7],\"min\": 7,\"max\": 7},{\"attribute\": \"name_long\",\"count\": 1,\"type\": \"string\",\"values\": [\"Algeria\"]},{\"attribute\": \"name_sort\",\"count\": 1,\"type\": \"string\",\"values\": [\"Algeria\"]},{\"attribute\": \"pop_est\",\"count\": 1,\"type\": \"number\",\"values\": [34178188],\"min\": 34178188,\"max\": 34178188},{\"attribute\": \"pop_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"postal\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZ\"]},{\"attribute\": \"region_un\",\"count\": 1,\"type\": \"string\",\"values\": [\"Africa\"]},{\"attribute\": \"region_wb\",\"count\": 1,\"type\": \"string\",\"values\": [\"Middle East & North Africa\"]},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"sov_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZA\"]},{\"attribute\": \"sovereignt\",\"count\": 1,\"type\": \"string\",\"values\": [\"Algeria\"]},{\"attribute\": \"su_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZA\"]},{\"attribute\": \"su_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"subregion\",\"count\": 1,\"type\": \"string\",\"values\": [\"Northern Africa\"]},{\"attribute\": \"subunit\",\"count\": 1,\"type\": \"string\",\"values\": [\"Algeria\"]},{\"attribute\": \"tiny\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"type\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"012\"]},{\"attribute\": \"wb_a2\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZ\"]},{\"attribute\": \"wb_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"DZA\"]},{\"attribute\": \"wikipedia\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]},{\"layer\": \"sweden\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 57,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 1,\"type\": \"string\",\"values\": [\"Swe.\"]},{\"attribute\": \"abbrev_len\",\"count\": 1,\"type\": \"number\",\"values\": [4],\"min\": 4,\"max\": 4},{\"attribute\": \"adm0_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"SWE\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 1,\"type\": \"string\",\"values\": [\"SWE\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 1,\"type\": \"string\",\"values\": [\"SWE\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"admin\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sweden\"]},{\"attribute\": \"brk_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"SWE\"]},{\"attribute\": \"brk_diff\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"brk_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sweden\"]},{\"attribute\": \"continent\",\"count\": 1,\"type\": \"string\",\"values\": [\"Europe\"]},{\"attribute\": \"economy\",\"count\": 1,\"type\": \"string\",\"values\": [\"2. Developed region: nonG7\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 1,\"type\": \"string\",\"values\": [\"Kingdom of Sweden\"]},{\"attribute\": \"gdp_md_est\",\"count\": 1,\"type\": \"number\",\"values\": [344300],\"min\": 344300,\"max\": 344300},{\"attribute\": \"gdp_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sweden\"]},{\"attribute\": \"gu_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"SWE\"]},{\"attribute\": \"homepart\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 1,\"type\": \"string\",\"values\": [\"1. High income: OECD\"]},{\"attribute\": \"iso_a2\",\"count\": 1,\"type\": \"string\",\"values\": [\"SE\"]},{\"attribute\": \"iso_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"SWE\"]},{\"attribute\": \"iso_n3\",\"count\": 1,\"type\": \"string\",\"values\": [\"752\"]},{\"attribute\": \"labelrank\",\"count\": 1,\"type\": \"number\",\"values\": [3],\"min\": 3,\"max\": 3},{\"attribute\": \"lastcensus\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 1,\"type\": \"number\",\"values\": [6],\"min\": 6,\"max\": 6},{\"attribute\": \"mapcolor13\",\"count\": 1,\"type\": \"number\",\"values\": [4],\"min\": 4,\"max\": 4},{\"attribute\": \"mapcolor7\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"mapcolor8\",\"count\": 1,\"type\": \"number\",\"values\": [4],\"min\": 4,\"max\": 4},{\"attribute\": \"mapcolor9\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sweden\"]},{\"attribute\": \"name_len\",\"count\": 1,\"type\": \"number\",\"values\": [6],\"min\": 6,\"max\": 6},{\"attribute\": \"name_long\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sweden\"]},{\"attribute\": \"name_sort\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sweden\"]},{\"attribute\": \"pop_est\",\"count\": 1,\"type\": \"number\",\"values\": [9059651],\"min\": 9059651,\"max\": 9059651},{\"attribute\": \"pop_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"postal\",\"count\": 1,\"type\": \"string\",\"values\": [\"S\"]},{\"attribute\": \"region_un\",\"count\": 1,\"type\": \"string\",\"values\": [\"Europe\"]},{\"attribute\": \"region_wb\",\"count\": 1,\"type\": \"string\",\"values\": [\"Europe & Central Asia\"]},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"sov_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"SWE\"]},{\"attribute\": \"sovereignt\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sweden\"]},{\"attribute\": \"su_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"SWE\"]},{\"attribute\": \"su_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"subregion\",\"count\": 1,\"type\": \"string\",\"values\": [\"Northern Europe\"]},{\"attribute\": \"subunit\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sweden\"]},{\"attribute\": \"tiny\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"type\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"752\"]},{\"attribute\": \"wb_a2\",\"count\": 1,\"type\": \"string\",\"values\": [\"SE\"]},{\"attribute\": \"wb_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"SWE\"]},{\"attribute\": \"wikipedia\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "0", "minzoom": "0", @@ -20,7 +21,7 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "sweden", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.478516, 63.782486 ], [ 20.390625, 63.704722 ], [ 20.302734, 63.782486 ], [ 20.302734, 63.665760 ], [ 20.214844, 63.743631 ], [ 20.214844, 63.665760 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.423828, 63.587675 ], [ 19.335938, 63.548552 ], [ 19.511719, 63.509375 ], [ 19.511719, 63.430860 ], [ 19.335938, 63.509375 ], [ 18.984375, 63.194018 ], [ 18.896484, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.114638 ], [ 18.544922, 63.154355 ], [ 18.457031, 63.035039 ], [ 18.193359, 63.035039 ], [ 18.369141, 62.995158 ], [ 18.457031, 62.875188 ], [ 18.193359, 62.915233 ], [ 18.193359, 62.794935 ], [ 17.929688, 62.794935 ], [ 18.105469, 62.835089 ], [ 17.841797, 62.835089 ], [ 17.841797, 62.674143 ], [ 18.017578, 62.593341 ], [ 17.841797, 62.633770 ], [ 17.841797, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.666016, 62.471724 ], [ 17.490234, 62.471724 ], [ 17.402344, 62.552857 ], [ 17.314453, 62.512318 ], [ 17.314453, 62.349609 ], [ 17.578125, 62.267923 ], [ 17.314453, 62.021528 ], [ 17.314453, 61.731526 ], [ 17.226562, 61.731526 ], [ 17.050781, 61.648162 ], [ 17.050781, 61.396719 ], [ 17.226562, 61.312452 ], [ 17.050781, 61.312452 ], [ 17.226562, 61.058285 ], [ 17.138672, 60.930432 ], [ 17.314453, 60.802064 ], [ 17.138672, 60.716198 ], [ 17.314453, 60.630102 ], [ 17.578125, 60.673179 ], [ 17.666016, 60.500525 ], [ 17.929688, 60.630102 ], [ 18.105469, 60.413852 ], [ 18.544922, 60.283408 ], [ 18.281250, 60.326948 ], [ 18.369141, 60.196156 ], [ 18.544922, 60.196156 ], [ 18.544922, 60.108670 ], [ 18.720703, 60.152442 ], [ 18.720703, 60.020952 ], [ 18.808594, 60.152442 ], [ 18.984375, 59.888937 ], [ 19.072266, 59.888937 ], [ 19.072266, 59.800634 ], [ 18.896484, 59.800634 ], [ 19.072266, 59.756395 ], [ 18.632812, 59.712097 ], [ 18.720703, 59.667741 ], [ 18.720703, 59.623325 ], [ 18.720703, 59.534318 ], [ 18.544922, 59.534318 ], [ 18.369141, 59.489726 ], [ 18.193359, 59.489726 ], [ 18.281250, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.281250, 59.355596 ], [ 18.193359, 59.355596 ], [ 18.369141, 59.175928 ], [ 18.281250, 59.130863 ], [ 18.017578, 59.040555 ], [ 17.841797, 58.904646 ], [ 17.753906, 58.995311 ], [ 17.753906, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.859224 ], [ 17.402344, 58.904646 ], [ 17.314453, 58.768200 ], [ 16.962891, 58.768200 ], [ 17.138672, 58.722599 ], [ 16.962891, 58.722599 ], [ 16.875000, 58.631217 ], [ 16.787109, 58.631217 ], [ 16.699219, 58.585436 ], [ 16.875000, 58.493694 ], [ 16.347656, 58.493694 ], [ 16.699219, 58.447733 ], [ 16.611328, 58.309489 ], [ 16.787109, 58.355630 ], [ 16.787109, 58.170702 ], [ 16.611328, 58.217025 ], [ 16.699219, 57.891497 ], [ 16.435547, 58.031372 ], [ 16.699219, 57.751076 ], [ 16.699219, 57.704147 ], [ 16.523438, 57.751076 ], [ 16.611328, 57.657158 ], [ 16.435547, 57.657158 ], [ 16.611328, 57.562995 ], [ 16.611328, 57.421294 ], [ 16.435547, 57.326521 ], [ 16.523438, 57.088515 ], [ 16.347656, 57.040730 ], [ 16.435547, 56.800878 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 15.820312, 56.121060 ], [ 15.644531, 56.218923 ], [ 14.941406, 56.218923 ], [ 14.677734, 56.170023 ], [ 14.677734, 56.022948 ], [ 14.414062, 56.072035 ], [ 14.150391, 55.875311 ], [ 14.326172, 55.578345 ], [ 14.150391, 55.429013 ], [ 12.919922, 55.429013 ], [ 12.832031, 55.578345 ], [ 13.007812, 55.627996 ], [ 13.007812, 55.776573 ], [ 12.832031, 55.776573 ], [ 12.919922, 55.875311 ], [ 12.744141, 55.924586 ], [ 12.392578, 56.316537 ], [ 12.832031, 56.267761 ], [ 12.568359, 56.462490 ], [ 12.832031, 56.462490 ], [ 12.919922, 56.559482 ], [ 12.304688, 56.944974 ], [ 12.041016, 57.231503 ], [ 12.041016, 57.468589 ], [ 11.865234, 57.373938 ], [ 11.865234, 57.704147 ], [ 11.689453, 57.704147 ], [ 11.777344, 57.797944 ], [ 11.601562, 57.844751 ], [ 11.689453, 58.077876 ], [ 11.777344, 58.124320 ], [ 11.337891, 58.124320 ], [ 11.601562, 58.309489 ], [ 11.425781, 58.263287 ], [ 11.425781, 58.309489 ], [ 11.337891, 58.447733 ], [ 11.162109, 58.355630 ], [ 11.250000, 58.676938 ], [ 11.074219, 58.950008 ], [ 11.162109, 59.130863 ], [ 11.337891, 59.130863 ], [ 11.425781, 58.904646 ], [ 11.601562, 58.904646 ], [ 11.689453, 58.995311 ], [ 11.777344, 59.400365 ], [ 11.601562, 59.623325 ], [ 11.865234, 59.712097 ], [ 11.777344, 59.888937 ], [ 12.128906, 59.933000 ], [ 12.480469, 60.108670 ], [ 12.568359, 60.413852 ], [ 12.216797, 61.015725 ], [ 12.656250, 61.058285 ], [ 12.832031, 61.227957 ], [ 12.832031, 61.396719 ], [ 12.128906, 61.731526 ], [ 12.304688, 62.267923 ], [ 12.041016, 62.593341 ], [ 12.041016, 62.955223 ], [ 12.216797, 63.035039 ], [ 11.953125, 63.312683 ], [ 12.216797, 63.509375 ], [ 12.128906, 63.626745 ], [ 12.919922, 64.091408 ], [ 13.886719, 64.014496 ], [ 14.150391, 64.206377 ], [ 14.062500, 64.472794 ], [ 13.623047, 64.586185 ], [ 14.501953, 65.330178 ], [ 14.501953, 66.160511 ], [ 15.029297, 66.160511 ], [ 15.468750, 66.302205 ], [ 15.380859, 66.513260 ], [ 16.083984, 66.964476 ], [ 16.347656, 67.033163 ], [ 16.435547, 67.204032 ], [ 16.083984, 67.441229 ], [ 16.435547, 67.575717 ], [ 16.699219, 67.908619 ], [ 17.226562, 68.106102 ], [ 17.841797, 67.974634 ], [ 17.929688, 68.007571 ], [ 18.105469, 68.171555 ], [ 18.105469, 68.560384 ], [ 18.457031, 68.592487 ], [ 18.632812, 68.496040 ], [ 18.984375, 68.528235 ], [ 19.951172, 68.366801 ], [ 20.214844, 68.496040 ], [ 19.951172, 68.560384 ], [ 20.302734, 68.784144 ], [ 20.302734, 68.911005 ], [ 20.039062, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.917969, 68.974164 ], [ 20.830078, 68.911005 ], [ 21.181641, 68.847665 ], [ 21.445312, 68.688521 ], [ 21.708984, 68.592487 ], [ 21.884766, 68.592487 ], [ 21.972656, 68.496040 ], [ 22.500000, 68.463800 ], [ 23.027344, 68.301905 ], [ 23.115234, 68.138852 ], [ 23.291016, 68.171555 ], [ 23.291016, 68.073305 ], [ 23.642578, 67.974634 ], [ 23.466797, 67.908619 ], [ 23.378906, 67.474922 ], [ 23.730469, 67.441229 ], [ 23.554688, 67.135829 ], [ 23.994141, 66.826520 ], [ 23.818359, 66.757250 ], [ 23.818359, 66.583217 ], [ 23.554688, 66.443107 ], [ 23.642578, 66.231457 ], [ 23.994141, 66.089364 ], [ 24.082031, 65.802776 ], [ 23.994141, 65.838776 ], [ 23.906250, 65.766727 ], [ 23.730469, 65.838776 ], [ 23.378906, 65.838776 ], [ 23.378906, 65.766727 ], [ 23.291016, 65.838776 ], [ 23.115234, 65.838776 ], [ 23.203125, 65.766727 ], [ 23.027344, 65.730626 ], [ 23.027344, 65.694476 ], [ 22.851562, 65.694476 ], [ 22.851562, 65.766727 ], [ 22.939453, 65.766727 ], [ 22.763672, 65.874725 ], [ 22.587891, 65.910623 ], [ 22.675781, 65.766727 ], [ 22.324219, 65.874725 ], [ 22.324219, 65.766727 ], [ 22.148438, 65.766727 ], [ 22.236328, 65.730626 ], [ 22.148438, 65.658275 ], [ 22.236328, 65.622023 ], [ 22.324219, 65.694476 ], [ 22.412109, 65.549367 ], [ 22.324219, 65.585720 ], [ 22.324219, 65.512963 ], [ 22.148438, 65.512963 ], [ 22.148438, 65.549367 ], [ 21.796875, 65.549367 ], [ 21.972656, 65.512963 ], [ 21.884766, 65.403445 ], [ 21.445312, 65.403445 ], [ 21.621094, 65.256706 ], [ 21.269531, 65.403445 ], [ 21.181641, 65.366837 ], [ 21.533203, 65.256706 ], [ 21.533203, 65.072130 ], [ 21.357422, 65.035060 ], [ 21.357422, 64.960766 ], [ 21.181641, 64.960766 ], [ 21.093750, 64.848937 ], [ 21.005859, 64.886265 ], [ 21.005859, 64.811557 ], [ 21.269531, 64.811557 ], [ 21.269531, 64.699105 ], [ 21.093750, 64.699105 ], [ 21.269531, 64.586185 ], [ 21.445312, 64.623877 ], [ 21.533203, 64.548440 ], [ 21.445312, 64.548440 ], [ 21.533203, 64.434892 ], [ 21.357422, 64.358931 ], [ 21.269531, 64.396938 ], [ 21.269531, 64.320872 ], [ 21.005859, 64.244595 ], [ 20.654297, 63.821288 ], [ 20.566406, 63.860036 ], [ 20.478516, 63.782486 ] ], [ [ 22.148438, 65.585720 ], [ 22.236328, 65.585720 ], [ 22.236328, 65.622023 ], [ 21.708984, 65.730626 ], [ 22.148438, 65.585720 ] ], [ [ 11.777344, 58.263287 ], [ 11.865234, 58.355630 ], [ 11.601562, 58.309489 ], [ 11.777344, 58.263287 ] ], [ [ 18.017578, 59.400365 ], [ 18.017578, 59.355596 ], [ 18.105469, 59.355596 ], [ 18.105469, 59.445075 ], [ 18.193359, 59.489726 ], [ 18.017578, 59.489726 ], [ 18.017578, 59.400365 ] ], [ [ 17.578125, 58.995311 ], [ 17.666016, 58.995311 ], [ 17.753906, 59.130863 ], [ 17.578125, 59.085739 ], [ 17.578125, 58.995311 ] ], [ [ 11.425781, 58.309489 ], [ 11.601562, 58.401712 ], [ 11.513672, 58.493694 ], [ 11.425781, 58.309489 ] ], [ [ 18.896484, 59.800634 ], [ 18.896484, 59.888937 ], [ 18.720703, 59.800634 ], [ 18.896484, 59.800634 ] ], [ [ 18.896484, 63.233627 ], [ 18.896484, 63.273182 ], [ 18.720703, 63.273182 ], [ 18.896484, 63.233627 ] ] ], [ [ [ 19.160156, 58.031372 ], [ 19.335938, 57.984808 ], [ 18.984375, 57.891497 ], [ 19.072266, 57.844751 ], [ 18.720703, 57.751076 ], [ 18.720703, 57.468589 ], [ 18.896484, 57.421294 ], [ 18.632812, 57.373938 ], [ 18.632812, 57.231503 ], [ 18.369141, 57.183902 ], [ 18.281250, 56.944974 ], [ 18.105469, 56.944974 ], [ 18.281250, 57.088515 ], [ 18.017578, 57.279043 ], [ 18.105469, 57.610107 ], [ 18.632812, 57.938183 ], [ 18.720703, 57.844751 ], [ 18.808594, 57.938183 ], [ 18.984375, 57.938183 ], [ 18.984375, 57.984808 ], [ 19.160156, 58.031372 ] ] ], [ [ [ 17.050781, 57.373938 ], [ 16.523438, 56.316537 ], [ 16.347656, 56.218923 ], [ 16.347656, 56.607885 ], [ 16.347656, 56.656226 ], [ 16.699219, 56.897004 ], [ 16.875000, 57.326521 ], [ 17.050781, 57.373938 ] ] ], [ [ [ 11.689453, 58.077876 ], [ 11.513672, 57.938183 ], [ 11.425781, 58.077876 ], [ 11.689453, 58.077876 ] ] ], [ [ [ 18.457031, 59.130863 ], [ 18.457031, 59.040555 ], [ 18.281250, 59.040555 ], [ 18.281250, 59.130863 ], [ 18.457031, 59.130863 ] ] ], [ [ [ 18.457031, 60.500525 ], [ 18.457031, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.500525 ], [ 18.457031, 60.500525 ] ] ], [ [ [ 20.917969, 63.743631 ], [ 20.917969, 63.665760 ], [ 20.742188, 63.665760 ], [ 20.742188, 63.743631 ], [ 20.917969, 63.743631 ] ] ], [ [ [ 18.632812, 59.355596 ], [ 18.457031, 59.355596 ], [ 18.369141, 59.445075 ], [ 18.632812, 59.355596 ] ] ], [ [ [ 17.314453, 61.731526 ], [ 17.402344, 61.773123 ], [ 17.490234, 61.648162 ], [ 17.314453, 61.731526 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.533203, 65.256706 ], [ 21.533203, 65.072130 ], [ 21.357422, 65.035060 ], [ 21.357422, 64.960766 ], [ 21.181641, 64.960766 ], [ 21.093750, 64.848937 ], [ 21.005859, 64.886265 ], [ 21.005859, 64.811557 ], [ 21.269531, 64.811557 ], [ 21.269531, 64.699105 ], [ 21.093750, 64.699105 ], [ 21.269531, 64.586185 ], [ 21.445312, 64.623877 ], [ 21.533203, 64.548440 ], [ 21.445312, 64.548440 ], [ 21.533203, 64.434892 ], [ 21.357422, 64.358931 ], [ 21.269531, 64.396938 ], [ 21.269531, 64.320872 ], [ 21.005859, 64.244595 ], [ 20.654297, 63.821288 ], [ 20.566406, 63.860036 ], [ 20.478516, 63.782486 ], [ 20.390625, 63.704722 ], [ 20.302734, 63.782486 ], [ 20.302734, 63.665760 ], [ 20.214844, 63.743631 ], [ 20.214844, 63.665760 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.511719, 63.509375 ], [ 19.511719, 63.430860 ], [ 19.335938, 63.509375 ], [ 18.984375, 63.194018 ], [ 18.896484, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.114638 ], [ 18.544922, 63.154355 ], [ 18.457031, 63.035039 ], [ 18.193359, 63.035039 ], [ 18.369141, 62.995158 ], [ 18.457031, 62.875188 ], [ 18.193359, 62.915233 ], [ 18.193359, 62.794935 ], [ 17.929688, 62.794935 ], [ 18.105469, 62.835089 ], [ 17.841797, 62.835089 ], [ 17.841797, 62.674143 ], [ 17.841797, 62.633770 ], [ 17.841797, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.666016, 62.471724 ], [ 17.490234, 62.471724 ], [ 17.402344, 62.552857 ], [ 17.314453, 62.512318 ], [ 17.314453, 62.349609 ], [ 17.578125, 62.267923 ], [ 17.314453, 62.021528 ], [ 17.314453, 61.731526 ], [ 17.226562, 61.731526 ], [ 17.050781, 61.648162 ], [ 17.050781, 61.396719 ], [ 17.226562, 61.312452 ], [ 17.050781, 61.312452 ], [ 17.226562, 61.058285 ], [ 17.138672, 60.930432 ], [ 17.314453, 60.802064 ], [ 17.138672, 60.716198 ], [ 17.314453, 60.630102 ], [ 17.578125, 60.673179 ], [ 17.666016, 60.500525 ], [ 17.929688, 60.630102 ], [ 18.105469, 60.413852 ], [ 18.281250, 60.326948 ], [ 18.369141, 60.196156 ], [ 18.544922, 60.196156 ], [ 18.544922, 60.108670 ], [ 18.720703, 60.152442 ], [ 18.720703, 60.020952 ], [ 18.808594, 60.152442 ], [ 18.984375, 59.888937 ], [ 19.072266, 59.888937 ], [ 19.072266, 59.800634 ], [ 18.896484, 59.800634 ], [ 19.072266, 59.756395 ], [ 18.632812, 59.712097 ], [ 18.720703, 59.667741 ], [ 18.720703, 59.623325 ], [ 18.720703, 59.534318 ], [ 18.544922, 59.534318 ], [ 18.369141, 59.489726 ], [ 18.193359, 59.489726 ], [ 18.281250, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.281250, 59.355596 ], [ 18.193359, 59.355596 ], [ 18.369141, 59.175928 ], [ 18.281250, 59.130863 ], [ 18.017578, 59.040555 ], [ 17.841797, 58.904646 ], [ 17.753906, 58.995311 ], [ 17.753906, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.859224 ], [ 17.402344, 58.904646 ], [ 17.314453, 58.768200 ], [ 16.962891, 58.768200 ], [ 17.138672, 58.722599 ], [ 16.962891, 58.722599 ], [ 16.875000, 58.631217 ], [ 16.787109, 58.631217 ], [ 16.699219, 58.585436 ], [ 16.875000, 58.493694 ], [ 16.347656, 58.493694 ], [ 16.699219, 58.447733 ], [ 16.611328, 58.309489 ], [ 16.787109, 58.355630 ], [ 16.787109, 58.170702 ], [ 16.611328, 58.217025 ], [ 16.699219, 57.891497 ], [ 16.435547, 58.031372 ], [ 16.699219, 57.751076 ], [ 16.699219, 57.704147 ], [ 16.523438, 57.751076 ], [ 16.611328, 57.657158 ], [ 16.435547, 57.657158 ], [ 16.611328, 57.562995 ], [ 16.611328, 57.421294 ], [ 16.435547, 57.326521 ], [ 16.523438, 57.088515 ], [ 16.347656, 57.040730 ], [ 16.435547, 56.800878 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 15.820312, 56.121060 ], [ 15.644531, 56.218923 ], [ 14.941406, 56.218923 ], [ 14.677734, 56.170023 ], [ 14.677734, 56.022948 ], [ 14.414062, 56.072035 ], [ 14.150391, 55.875311 ], [ 14.326172, 55.578345 ], [ 14.150391, 55.429013 ], [ 12.919922, 55.429013 ], [ 12.832031, 55.578345 ], [ 13.007812, 55.627996 ], [ 13.007812, 55.776573 ], [ 12.832031, 55.776573 ], [ 12.919922, 55.875311 ], [ 12.744141, 55.924586 ], [ 12.392578, 56.316537 ], [ 12.832031, 56.267761 ], [ 12.568359, 56.462490 ], [ 12.832031, 56.462490 ], [ 12.919922, 56.559482 ], [ 12.304688, 56.944974 ], [ 12.041016, 57.231503 ], [ 12.041016, 57.468589 ], [ 11.865234, 57.373938 ], [ 11.865234, 57.704147 ], [ 11.689453, 57.704147 ], [ 11.777344, 57.797944 ], [ 11.601562, 57.844751 ], [ 11.689453, 58.077876 ], [ 11.777344, 58.124320 ], [ 11.337891, 58.124320 ], [ 11.601562, 58.309489 ], [ 11.425781, 58.263287 ], [ 11.425781, 58.309489 ], [ 11.337891, 58.447733 ], [ 11.162109, 58.355630 ], [ 11.250000, 58.676938 ], [ 11.074219, 58.950008 ], [ 11.162109, 59.130863 ], [ 11.337891, 59.130863 ], [ 11.425781, 58.904646 ], [ 11.601562, 58.904646 ], [ 11.689453, 58.995311 ], [ 11.777344, 59.400365 ], [ 11.601562, 59.623325 ], [ 11.865234, 59.712097 ], [ 11.777344, 59.888937 ], [ 12.128906, 59.933000 ], [ 12.480469, 60.108670 ], [ 12.568359, 60.413852 ], [ 12.216797, 61.015725 ], [ 12.656250, 61.058285 ], [ 12.832031, 61.227957 ], [ 12.832031, 61.396719 ], [ 12.128906, 61.731526 ], [ 12.304688, 62.267923 ], [ 12.041016, 62.593341 ], [ 12.041016, 62.955223 ], [ 12.216797, 63.035039 ], [ 11.953125, 63.312683 ], [ 12.216797, 63.509375 ], [ 12.128906, 63.626745 ], [ 12.919922, 64.091408 ], [ 13.886719, 64.014496 ], [ 14.150391, 64.206377 ], [ 14.062500, 64.472794 ], [ 13.623047, 64.586185 ], [ 14.501953, 65.330178 ], [ 14.501953, 66.160511 ], [ 15.029297, 66.160511 ], [ 15.468750, 66.302205 ], [ 15.380859, 66.513260 ], [ 16.083984, 66.964476 ], [ 16.347656, 67.033163 ], [ 16.435547, 67.204032 ], [ 16.083984, 67.441229 ], [ 16.435547, 67.575717 ], [ 16.699219, 67.908619 ], [ 17.226562, 68.106102 ], [ 17.841797, 67.974634 ], [ 17.929688, 68.007571 ], [ 18.105469, 68.171555 ], [ 18.105469, 68.560384 ], [ 18.457031, 68.592487 ], [ 18.632812, 68.496040 ], [ 18.984375, 68.528235 ], [ 19.951172, 68.366801 ], [ 20.214844, 68.496040 ], [ 19.951172, 68.560384 ], [ 20.302734, 68.784144 ], [ 20.302734, 68.911005 ], [ 20.039062, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.917969, 68.974164 ], [ 20.830078, 68.911005 ], [ 21.181641, 68.847665 ], [ 21.445312, 68.688521 ], [ 21.708984, 68.592487 ], [ 21.884766, 68.592487 ], [ 21.972656, 68.496040 ], [ 22.500000, 68.463800 ], [ 23.027344, 68.301905 ], [ 23.115234, 68.138852 ], [ 23.291016, 68.171555 ], [ 23.291016, 68.073305 ], [ 23.642578, 67.974634 ], [ 23.466797, 67.908619 ], [ 23.378906, 67.474922 ], [ 23.730469, 67.441229 ], [ 23.554688, 67.135829 ], [ 23.994141, 66.826520 ], [ 23.818359, 66.757250 ], [ 23.818359, 66.583217 ], [ 23.554688, 66.443107 ], [ 23.642578, 66.231457 ], [ 23.994141, 66.089364 ], [ 24.082031, 65.802776 ], [ 23.994141, 65.838776 ], [ 23.906250, 65.766727 ], [ 23.730469, 65.838776 ], [ 23.378906, 65.838776 ], [ 23.378906, 65.766727 ], [ 23.291016, 65.838776 ], [ 23.115234, 65.838776 ], [ 23.203125, 65.766727 ], [ 23.027344, 65.730626 ], [ 23.027344, 65.694476 ], [ 22.851562, 65.694476 ], [ 22.851562, 65.766727 ], [ 22.939453, 65.766727 ], [ 22.763672, 65.874725 ], [ 22.587891, 65.910623 ], [ 22.675781, 65.766727 ], [ 22.324219, 65.874725 ], [ 22.324219, 65.766727 ], [ 22.148438, 65.766727 ], [ 22.236328, 65.730626 ], [ 22.148438, 65.658275 ], [ 22.236328, 65.622023 ], [ 22.324219, 65.694476 ], [ 22.412109, 65.549367 ], [ 22.324219, 65.585720 ], [ 22.324219, 65.512963 ], [ 22.148438, 65.512963 ], [ 22.148438, 65.549367 ], [ 21.796875, 65.549367 ], [ 21.972656, 65.512963 ], [ 21.884766, 65.403445 ], [ 21.445312, 65.403445 ], [ 21.621094, 65.256706 ], [ 21.533203, 65.256706 ] ], [ [ 22.148438, 65.585720 ], [ 22.236328, 65.585720 ], [ 22.236328, 65.622023 ], [ 21.708984, 65.730626 ], [ 22.148438, 65.585720 ] ], [ [ 11.777344, 58.263287 ], [ 11.865234, 58.355630 ], [ 11.601562, 58.309489 ], [ 11.777344, 58.263287 ] ], [ [ 18.017578, 59.400365 ], [ 18.017578, 59.355596 ], [ 18.105469, 59.355596 ], [ 18.105469, 59.445075 ], [ 18.193359, 59.489726 ], [ 18.017578, 59.489726 ], [ 18.017578, 59.400365 ] ], [ [ 17.578125, 58.995311 ], [ 17.666016, 58.995311 ], [ 17.753906, 59.130863 ], [ 17.578125, 59.085739 ], [ 17.578125, 58.995311 ] ], [ [ 21.533203, 65.256706 ], [ 21.269531, 65.403445 ], [ 21.181641, 65.366837 ], [ 21.533203, 65.256706 ] ], [ [ 11.425781, 58.309489 ], [ 11.601562, 58.401712 ], [ 11.513672, 58.493694 ], [ 11.425781, 58.309489 ] ], [ [ 18.896484, 59.800634 ], [ 18.896484, 59.888937 ], [ 18.720703, 59.800634 ], [ 18.896484, 59.800634 ] ], [ [ 19.511719, 63.509375 ], [ 19.423828, 63.587675 ], [ 19.335938, 63.548552 ], [ 19.511719, 63.509375 ] ], [ [ 18.896484, 63.233627 ], [ 18.896484, 63.273182 ], [ 18.720703, 63.273182 ], [ 18.896484, 63.233627 ] ] ], [ [ [ 18.281250, 57.088515 ], [ 18.017578, 57.279043 ], [ 18.105469, 57.610107 ], [ 18.632812, 57.938183 ], [ 18.720703, 57.844751 ], [ 18.808594, 57.938183 ], [ 18.984375, 57.938183 ], [ 18.984375, 57.984808 ], [ 19.160156, 58.031372 ], [ 19.335938, 57.984808 ], [ 18.984375, 57.891497 ], [ 19.072266, 57.844751 ], [ 18.720703, 57.751076 ], [ 18.720703, 57.468589 ], [ 18.896484, 57.421294 ], [ 18.632812, 57.373938 ], [ 18.632812, 57.231503 ], [ 18.369141, 57.183902 ], [ 18.281250, 57.088515 ] ] ], [ [ [ 17.050781, 57.373938 ], [ 16.523438, 56.316537 ], [ 16.347656, 56.218923 ], [ 16.347656, 56.607885 ], [ 16.347656, 56.656226 ], [ 16.699219, 56.897004 ], [ 16.875000, 57.326521 ], [ 17.050781, 57.373938 ] ] ], [ [ [ 11.689453, 58.077876 ], [ 11.513672, 57.938183 ], [ 11.425781, 58.077876 ], [ 11.689453, 58.077876 ] ] ], [ [ [ 18.457031, 59.130863 ], [ 18.457031, 59.040555 ], [ 18.281250, 59.040555 ], [ 18.281250, 59.130863 ], [ 18.457031, 59.130863 ] ] ], [ [ [ 18.457031, 60.500525 ], [ 18.457031, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.500525 ], [ 18.457031, 60.500525 ] ] ], [ [ [ 20.917969, 63.743631 ], [ 20.917969, 63.665760 ], [ 20.742188, 63.665760 ], [ 20.742188, 63.743631 ], [ 20.917969, 63.743631 ] ] ], [ [ [ 18.281250, 57.088515 ], [ 18.281250, 56.944974 ], [ 18.105469, 56.944974 ], [ 18.281250, 57.088515 ] ] ], [ [ [ 18.632812, 59.355596 ], [ 18.457031, 59.355596 ], [ 18.369141, 59.445075 ], [ 18.632812, 59.355596 ] ] ], [ [ [ 17.314453, 61.731526 ], [ 17.402344, 61.773123 ], [ 17.490234, 61.648162 ], [ 17.314453, 61.731526 ] ] ] ] } } ] } ] } ] } diff --git a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json index 309fb3413..13f2ab44e 100644 --- a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json +++ b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json @@ -3,6 +3,7 @@ "center": "0.000000,18.975561,0", "description": "tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json.check.mbtiles -z0 -Lalgeria:tests/named/alg -Lalbania:tests/named/alb -lunified tests/named/sweden.json", "json": "{\"vector_layers\": [ { \"id\": \"unified\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"unified\",\"count\": 3,\"geometry\": \"Polygon\",\"attributeCount\": 57,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 3,\"type\": \"string\",\"values\": [\"Alb.\",\"Alg.\",\"Swe.\"]},{\"attribute\": \"abbrev_len\",\"count\": 1,\"type\": \"number\",\"values\": [4],\"min\": 4,\"max\": 4},{\"attribute\": \"adm0_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"ALB\",\"DZA\",\"SWE\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 3,\"type\": \"string\",\"values\": [\"ALB\",\"DZA\",\"SWE\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 3,\"type\": \"string\",\"values\": [\"ALB\",\"DZA\",\"SWE\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"admin\",\"count\": 3,\"type\": \"string\",\"values\": [\"Albania\",\"Algeria\",\"Sweden\"]},{\"attribute\": \"brk_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"ALB\",\"DZA\",\"SWE\"]},{\"attribute\": \"brk_diff\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"brk_name\",\"count\": 3,\"type\": \"string\",\"values\": [\"Albania\",\"Algeria\",\"Sweden\"]},{\"attribute\": \"continent\",\"count\": 2,\"type\": \"string\",\"values\": [\"Africa\",\"Europe\"]},{\"attribute\": \"economy\",\"count\": 2,\"type\": \"string\",\"values\": [\"2. Developed region: nonG7\",\"6. Developing region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 3,\"type\": \"string\",\"values\": [\"Kingdom of Sweden\",\"People's Democratic Republic of Algeria\",\"Republic of Albania\"]},{\"attribute\": \"gdp_md_est\",\"count\": 3,\"type\": \"number\",\"values\": [21810,232900,344300],\"min\": 21810,\"max\": 344300},{\"attribute\": \"gdp_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 3,\"type\": \"string\",\"values\": [\"Albania\",\"Algeria\",\"Sweden\"]},{\"attribute\": \"gu_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"ALB\",\"DZA\",\"SWE\"]},{\"attribute\": \"homepart\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 3,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"3. Upper middle income\",\"4. Lower middle income\"]},{\"attribute\": \"iso_a2\",\"count\": 3,\"type\": \"string\",\"values\": [\"AL\",\"DZ\",\"SE\"]},{\"attribute\": \"iso_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"ALB\",\"DZA\",\"SWE\"]},{\"attribute\": \"iso_n3\",\"count\": 3,\"type\": \"string\",\"values\": [\"008\",\"012\",\"752\"]},{\"attribute\": \"labelrank\",\"count\": 2,\"type\": \"number\",\"values\": [3,6],\"min\": 3,\"max\": 6},{\"attribute\": \"lastcensus\",\"count\": 3,\"type\": \"number\",\"values\": [-99,2001,2008],\"min\": -99,\"max\": 2008},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 2,\"type\": \"number\",\"values\": [6,7],\"min\": 6,\"max\": 7},{\"attribute\": \"mapcolor13\",\"count\": 3,\"type\": \"number\",\"values\": [3,4,6],\"min\": 3,\"max\": 6},{\"attribute\": \"mapcolor7\",\"count\": 2,\"type\": \"number\",\"values\": [1,5],\"min\": 1,\"max\": 5},{\"attribute\": \"mapcolor8\",\"count\": 2,\"type\": \"number\",\"values\": [1,4],\"min\": 1,\"max\": 4},{\"attribute\": \"mapcolor9\",\"count\": 3,\"type\": \"number\",\"values\": [1,2,6],\"min\": 1,\"max\": 6},{\"attribute\": \"name\",\"count\": 3,\"type\": \"string\",\"values\": [\"Albania\",\"Algeria\",\"Sweden\"]},{\"attribute\": \"name_len\",\"count\": 2,\"type\": \"number\",\"values\": [6,7],\"min\": 6,\"max\": 7},{\"attribute\": \"name_long\",\"count\": 3,\"type\": \"string\",\"values\": [\"Albania\",\"Algeria\",\"Sweden\"]},{\"attribute\": \"name_sort\",\"count\": 3,\"type\": \"string\",\"values\": [\"Albania\",\"Algeria\",\"Sweden\"]},{\"attribute\": \"pop_est\",\"count\": 3,\"type\": \"number\",\"values\": [34178188,3639453,9059651],\"min\": 3639453,\"max\": 34178188},{\"attribute\": \"pop_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"postal\",\"count\": 3,\"type\": \"string\",\"values\": [\"AL\",\"DZ\",\"S\"]},{\"attribute\": \"region_un\",\"count\": 2,\"type\": \"string\",\"values\": [\"Africa\",\"Europe\"]},{\"attribute\": \"region_wb\",\"count\": 2,\"type\": \"string\",\"values\": [\"Europe & Central Asia\",\"Middle East & North Africa\"]},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"sov_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"ALB\",\"DZA\",\"SWE\"]},{\"attribute\": \"sovereignt\",\"count\": 3,\"type\": \"string\",\"values\": [\"Albania\",\"Algeria\",\"Sweden\"]},{\"attribute\": \"su_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"ALB\",\"DZA\",\"SWE\"]},{\"attribute\": \"su_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"subregion\",\"count\": 3,\"type\": \"string\",\"values\": [\"Northern Africa\",\"Northern Europe\",\"Southern Europe\"]},{\"attribute\": \"subunit\",\"count\": 3,\"type\": \"string\",\"values\": [\"Albania\",\"Algeria\",\"Sweden\"]},{\"attribute\": \"tiny\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"type\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"008\",\"012\",\"752\"]},{\"attribute\": \"wb_a2\",\"count\": 3,\"type\": \"string\",\"values\": [\"AL\",\"DZ\",\"SE\"]},{\"attribute\": \"wb_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"ALB\",\"DZA\",\"SWE\"]},{\"attribute\": \"wikipedia\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "0", "minzoom": "0", @@ -12,7 +13,7 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "unified", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.478516, 63.782486 ], [ 20.390625, 63.704722 ], [ 20.302734, 63.782486 ], [ 20.302734, 63.665760 ], [ 20.214844, 63.743631 ], [ 20.214844, 63.665760 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.423828, 63.587675 ], [ 19.335938, 63.548552 ], [ 19.511719, 63.509375 ], [ 19.511719, 63.430860 ], [ 19.335938, 63.509375 ], [ 18.984375, 63.194018 ], [ 18.896484, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.114638 ], [ 18.544922, 63.154355 ], [ 18.457031, 63.035039 ], [ 18.193359, 63.035039 ], [ 18.369141, 62.995158 ], [ 18.457031, 62.875188 ], [ 18.193359, 62.915233 ], [ 18.193359, 62.794935 ], [ 17.929688, 62.794935 ], [ 18.105469, 62.835089 ], [ 17.841797, 62.835089 ], [ 17.841797, 62.674143 ], [ 18.017578, 62.593341 ], [ 17.841797, 62.633770 ], [ 17.841797, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.666016, 62.471724 ], [ 17.490234, 62.471724 ], [ 17.402344, 62.552857 ], [ 17.314453, 62.512318 ], [ 17.314453, 62.349609 ], [ 17.578125, 62.267923 ], [ 17.314453, 62.021528 ], [ 17.314453, 61.731526 ], [ 17.226562, 61.731526 ], [ 17.050781, 61.648162 ], [ 17.050781, 61.396719 ], [ 17.226562, 61.312452 ], [ 17.050781, 61.312452 ], [ 17.226562, 61.058285 ], [ 17.138672, 60.930432 ], [ 17.314453, 60.802064 ], [ 17.138672, 60.716198 ], [ 17.314453, 60.630102 ], [ 17.578125, 60.673179 ], [ 17.666016, 60.500525 ], [ 17.929688, 60.630102 ], [ 18.105469, 60.413852 ], [ 18.544922, 60.283408 ], [ 18.281250, 60.326948 ], [ 18.369141, 60.196156 ], [ 18.544922, 60.196156 ], [ 18.544922, 60.108670 ], [ 18.720703, 60.152442 ], [ 18.720703, 60.020952 ], [ 18.808594, 60.152442 ], [ 18.984375, 59.888937 ], [ 19.072266, 59.888937 ], [ 19.072266, 59.800634 ], [ 18.896484, 59.800634 ], [ 19.072266, 59.756395 ], [ 18.632812, 59.712097 ], [ 18.720703, 59.667741 ], [ 18.720703, 59.623325 ], [ 18.720703, 59.534318 ], [ 18.544922, 59.534318 ], [ 18.369141, 59.489726 ], [ 18.193359, 59.489726 ], [ 18.281250, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.281250, 59.355596 ], [ 18.193359, 59.355596 ], [ 18.369141, 59.175928 ], [ 18.281250, 59.130863 ], [ 18.017578, 59.040555 ], [ 17.841797, 58.904646 ], [ 17.753906, 58.995311 ], [ 17.753906, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.859224 ], [ 17.402344, 58.904646 ], [ 17.314453, 58.768200 ], [ 16.962891, 58.768200 ], [ 17.138672, 58.722599 ], [ 16.962891, 58.722599 ], [ 16.875000, 58.631217 ], [ 16.787109, 58.631217 ], [ 16.699219, 58.585436 ], [ 16.875000, 58.493694 ], [ 16.347656, 58.493694 ], [ 16.699219, 58.447733 ], [ 16.611328, 58.309489 ], [ 16.787109, 58.355630 ], [ 16.787109, 58.170702 ], [ 16.611328, 58.217025 ], [ 16.699219, 57.891497 ], [ 16.435547, 58.031372 ], [ 16.699219, 57.751076 ], [ 16.699219, 57.704147 ], [ 16.523438, 57.751076 ], [ 16.611328, 57.657158 ], [ 16.435547, 57.657158 ], [ 16.611328, 57.562995 ], [ 16.611328, 57.421294 ], [ 16.435547, 57.326521 ], [ 16.523438, 57.088515 ], [ 16.347656, 57.040730 ], [ 16.435547, 56.800878 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 15.820312, 56.121060 ], [ 15.644531, 56.218923 ], [ 14.941406, 56.218923 ], [ 14.677734, 56.170023 ], [ 14.677734, 56.022948 ], [ 14.414062, 56.072035 ], [ 14.150391, 55.875311 ], [ 14.326172, 55.578345 ], [ 14.150391, 55.429013 ], [ 12.919922, 55.429013 ], [ 12.832031, 55.578345 ], [ 13.007812, 55.627996 ], [ 13.007812, 55.776573 ], [ 12.832031, 55.776573 ], [ 12.919922, 55.875311 ], [ 12.744141, 55.924586 ], [ 12.392578, 56.316537 ], [ 12.832031, 56.267761 ], [ 12.568359, 56.462490 ], [ 12.832031, 56.462490 ], [ 12.919922, 56.559482 ], [ 12.304688, 56.944974 ], [ 12.041016, 57.231503 ], [ 12.041016, 57.468589 ], [ 11.865234, 57.373938 ], [ 11.865234, 57.704147 ], [ 11.689453, 57.704147 ], [ 11.777344, 57.797944 ], [ 11.601562, 57.844751 ], [ 11.689453, 58.077876 ], [ 11.777344, 58.124320 ], [ 11.337891, 58.124320 ], [ 11.601562, 58.309489 ], [ 11.425781, 58.263287 ], [ 11.425781, 58.309489 ], [ 11.337891, 58.447733 ], [ 11.162109, 58.355630 ], [ 11.250000, 58.676938 ], [ 11.074219, 58.950008 ], [ 11.162109, 59.130863 ], [ 11.337891, 59.130863 ], [ 11.425781, 58.904646 ], [ 11.601562, 58.904646 ], [ 11.689453, 58.995311 ], [ 11.777344, 59.400365 ], [ 11.601562, 59.623325 ], [ 11.865234, 59.712097 ], [ 11.777344, 59.888937 ], [ 12.128906, 59.933000 ], [ 12.480469, 60.108670 ], [ 12.568359, 60.413852 ], [ 12.216797, 61.015725 ], [ 12.656250, 61.058285 ], [ 12.832031, 61.227957 ], [ 12.832031, 61.396719 ], [ 12.128906, 61.731526 ], [ 12.304688, 62.267923 ], [ 12.041016, 62.593341 ], [ 12.041016, 62.955223 ], [ 12.216797, 63.035039 ], [ 11.953125, 63.312683 ], [ 12.216797, 63.509375 ], [ 12.128906, 63.626745 ], [ 12.919922, 64.091408 ], [ 13.886719, 64.014496 ], [ 14.150391, 64.206377 ], [ 14.062500, 64.472794 ], [ 13.623047, 64.586185 ], [ 14.501953, 65.330178 ], [ 14.501953, 66.160511 ], [ 15.029297, 66.160511 ], [ 15.468750, 66.302205 ], [ 15.380859, 66.513260 ], [ 16.083984, 66.964476 ], [ 16.347656, 67.033163 ], [ 16.435547, 67.204032 ], [ 16.083984, 67.441229 ], [ 16.435547, 67.575717 ], [ 16.699219, 67.908619 ], [ 17.226562, 68.106102 ], [ 17.841797, 67.974634 ], [ 17.929688, 68.007571 ], [ 18.105469, 68.171555 ], [ 18.105469, 68.560384 ], [ 18.457031, 68.592487 ], [ 18.632812, 68.496040 ], [ 18.984375, 68.528235 ], [ 19.951172, 68.366801 ], [ 20.214844, 68.496040 ], [ 19.951172, 68.560384 ], [ 20.302734, 68.784144 ], [ 20.302734, 68.911005 ], [ 20.039062, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.917969, 68.974164 ], [ 20.830078, 68.911005 ], [ 21.181641, 68.847665 ], [ 21.445312, 68.688521 ], [ 21.708984, 68.592487 ], [ 21.884766, 68.592487 ], [ 21.972656, 68.496040 ], [ 22.500000, 68.463800 ], [ 23.027344, 68.301905 ], [ 23.115234, 68.138852 ], [ 23.291016, 68.171555 ], [ 23.291016, 68.073305 ], [ 23.642578, 67.974634 ], [ 23.466797, 67.908619 ], [ 23.378906, 67.474922 ], [ 23.730469, 67.441229 ], [ 23.554688, 67.135829 ], [ 23.994141, 66.826520 ], [ 23.818359, 66.757250 ], [ 23.818359, 66.583217 ], [ 23.554688, 66.443107 ], [ 23.642578, 66.231457 ], [ 23.994141, 66.089364 ], [ 24.082031, 65.802776 ], [ 23.994141, 65.838776 ], [ 23.906250, 65.766727 ], [ 23.730469, 65.838776 ], [ 23.378906, 65.838776 ], [ 23.378906, 65.766727 ], [ 23.291016, 65.838776 ], [ 23.115234, 65.838776 ], [ 23.203125, 65.766727 ], [ 23.027344, 65.730626 ], [ 23.027344, 65.694476 ], [ 22.851562, 65.694476 ], [ 22.851562, 65.766727 ], [ 22.939453, 65.766727 ], [ 22.763672, 65.874725 ], [ 22.587891, 65.910623 ], [ 22.675781, 65.766727 ], [ 22.324219, 65.874725 ], [ 22.324219, 65.766727 ], [ 22.148438, 65.766727 ], [ 22.236328, 65.730626 ], [ 22.148438, 65.658275 ], [ 22.236328, 65.622023 ], [ 22.324219, 65.694476 ], [ 22.412109, 65.549367 ], [ 22.324219, 65.585720 ], [ 22.324219, 65.512963 ], [ 22.148438, 65.512963 ], [ 22.148438, 65.549367 ], [ 21.796875, 65.549367 ], [ 21.972656, 65.512963 ], [ 21.884766, 65.403445 ], [ 21.445312, 65.403445 ], [ 21.621094, 65.256706 ], [ 21.269531, 65.403445 ], [ 21.181641, 65.366837 ], [ 21.533203, 65.256706 ], [ 21.533203, 65.072130 ], [ 21.357422, 65.035060 ], [ 21.357422, 64.960766 ], [ 21.181641, 64.960766 ], [ 21.093750, 64.848937 ], [ 21.005859, 64.886265 ], [ 21.005859, 64.811557 ], [ 21.269531, 64.811557 ], [ 21.269531, 64.699105 ], [ 21.093750, 64.699105 ], [ 21.269531, 64.586185 ], [ 21.445312, 64.623877 ], [ 21.533203, 64.548440 ], [ 21.445312, 64.548440 ], [ 21.533203, 64.434892 ], [ 21.357422, 64.358931 ], [ 21.269531, 64.396938 ], [ 21.269531, 64.320872 ], [ 21.005859, 64.244595 ], [ 20.654297, 63.821288 ], [ 20.566406, 63.860036 ], [ 20.478516, 63.782486 ] ], [ [ 22.148438, 65.585720 ], [ 22.236328, 65.585720 ], [ 22.236328, 65.622023 ], [ 21.708984, 65.730626 ], [ 22.148438, 65.585720 ] ], [ [ 11.777344, 58.263287 ], [ 11.865234, 58.355630 ], [ 11.601562, 58.309489 ], [ 11.777344, 58.263287 ] ], [ [ 18.017578, 59.400365 ], [ 18.017578, 59.355596 ], [ 18.105469, 59.355596 ], [ 18.105469, 59.445075 ], [ 18.193359, 59.489726 ], [ 18.017578, 59.489726 ], [ 18.017578, 59.400365 ] ], [ [ 17.578125, 58.995311 ], [ 17.666016, 58.995311 ], [ 17.753906, 59.130863 ], [ 17.578125, 59.085739 ], [ 17.578125, 58.995311 ] ], [ [ 11.425781, 58.309489 ], [ 11.601562, 58.401712 ], [ 11.513672, 58.493694 ], [ 11.425781, 58.309489 ] ], [ [ 18.896484, 59.800634 ], [ 18.896484, 59.888937 ], [ 18.720703, 59.800634 ], [ 18.896484, 59.800634 ] ], [ [ 18.896484, 63.233627 ], [ 18.896484, 63.273182 ], [ 18.720703, 63.273182 ], [ 18.896484, 63.233627 ] ] ], [ [ [ 19.160156, 58.031372 ], [ 19.335938, 57.984808 ], [ 18.984375, 57.891497 ], [ 19.072266, 57.844751 ], [ 18.720703, 57.751076 ], [ 18.720703, 57.468589 ], [ 18.896484, 57.421294 ], [ 18.632812, 57.373938 ], [ 18.632812, 57.231503 ], [ 18.369141, 57.183902 ], [ 18.281250, 56.944974 ], [ 18.105469, 56.944974 ], [ 18.281250, 57.088515 ], [ 18.017578, 57.279043 ], [ 18.105469, 57.610107 ], [ 18.632812, 57.938183 ], [ 18.720703, 57.844751 ], [ 18.808594, 57.938183 ], [ 18.984375, 57.938183 ], [ 18.984375, 57.984808 ], [ 19.160156, 58.031372 ] ] ], [ [ [ 17.050781, 57.373938 ], [ 16.523438, 56.316537 ], [ 16.347656, 56.218923 ], [ 16.347656, 56.607885 ], [ 16.347656, 56.656226 ], [ 16.699219, 56.897004 ], [ 16.875000, 57.326521 ], [ 17.050781, 57.373938 ] ] ], [ [ [ 11.689453, 58.077876 ], [ 11.513672, 57.938183 ], [ 11.425781, 58.077876 ], [ 11.689453, 58.077876 ] ] ], [ [ [ 18.457031, 59.130863 ], [ 18.457031, 59.040555 ], [ 18.281250, 59.040555 ], [ 18.281250, 59.130863 ], [ 18.457031, 59.130863 ] ] ], [ [ [ 18.457031, 60.500525 ], [ 18.457031, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.500525 ], [ 18.457031, 60.500525 ] ] ], [ [ [ 20.917969, 63.743631 ], [ 20.917969, 63.665760 ], [ 20.742188, 63.665760 ], [ 20.742188, 63.743631 ], [ 20.917969, 63.743631 ] ] ], [ [ [ 18.632812, 59.355596 ], [ 18.457031, 59.355596 ], [ 18.369141, 59.445075 ], [ 18.632812, 59.355596 ] ] ], [ [ [ 17.314453, 61.731526 ], [ 17.402344, 61.773123 ], [ 17.490234, 61.648162 ], [ 17.314453, 61.731526 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.533203, 65.256706 ], [ 21.533203, 65.072130 ], [ 21.357422, 65.035060 ], [ 21.357422, 64.960766 ], [ 21.181641, 64.960766 ], [ 21.093750, 64.848937 ], [ 21.005859, 64.886265 ], [ 21.005859, 64.811557 ], [ 21.269531, 64.811557 ], [ 21.269531, 64.699105 ], [ 21.093750, 64.699105 ], [ 21.269531, 64.586185 ], [ 21.445312, 64.623877 ], [ 21.533203, 64.548440 ], [ 21.445312, 64.548440 ], [ 21.533203, 64.434892 ], [ 21.357422, 64.358931 ], [ 21.269531, 64.396938 ], [ 21.269531, 64.320872 ], [ 21.005859, 64.244595 ], [ 20.654297, 63.821288 ], [ 20.566406, 63.860036 ], [ 20.478516, 63.782486 ], [ 20.390625, 63.704722 ], [ 20.302734, 63.782486 ], [ 20.302734, 63.665760 ], [ 20.214844, 63.743631 ], [ 20.214844, 63.665760 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.511719, 63.509375 ], [ 19.511719, 63.430860 ], [ 19.335938, 63.509375 ], [ 18.984375, 63.194018 ], [ 18.896484, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.114638 ], [ 18.544922, 63.154355 ], [ 18.457031, 63.035039 ], [ 18.193359, 63.035039 ], [ 18.369141, 62.995158 ], [ 18.457031, 62.875188 ], [ 18.193359, 62.915233 ], [ 18.193359, 62.794935 ], [ 17.929688, 62.794935 ], [ 18.105469, 62.835089 ], [ 17.841797, 62.835089 ], [ 17.841797, 62.674143 ], [ 17.841797, 62.633770 ], [ 17.841797, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.666016, 62.471724 ], [ 17.490234, 62.471724 ], [ 17.402344, 62.552857 ], [ 17.314453, 62.512318 ], [ 17.314453, 62.349609 ], [ 17.578125, 62.267923 ], [ 17.314453, 62.021528 ], [ 17.314453, 61.731526 ], [ 17.226562, 61.731526 ], [ 17.050781, 61.648162 ], [ 17.050781, 61.396719 ], [ 17.226562, 61.312452 ], [ 17.050781, 61.312452 ], [ 17.226562, 61.058285 ], [ 17.138672, 60.930432 ], [ 17.314453, 60.802064 ], [ 17.138672, 60.716198 ], [ 17.314453, 60.630102 ], [ 17.578125, 60.673179 ], [ 17.666016, 60.500525 ], [ 17.929688, 60.630102 ], [ 18.105469, 60.413852 ], [ 18.281250, 60.326948 ], [ 18.369141, 60.196156 ], [ 18.544922, 60.196156 ], [ 18.544922, 60.108670 ], [ 18.720703, 60.152442 ], [ 18.720703, 60.020952 ], [ 18.808594, 60.152442 ], [ 18.984375, 59.888937 ], [ 19.072266, 59.888937 ], [ 19.072266, 59.800634 ], [ 18.896484, 59.800634 ], [ 19.072266, 59.756395 ], [ 18.632812, 59.712097 ], [ 18.720703, 59.667741 ], [ 18.720703, 59.623325 ], [ 18.720703, 59.534318 ], [ 18.544922, 59.534318 ], [ 18.369141, 59.489726 ], [ 18.193359, 59.489726 ], [ 18.281250, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.281250, 59.355596 ], [ 18.193359, 59.355596 ], [ 18.369141, 59.175928 ], [ 18.281250, 59.130863 ], [ 18.017578, 59.040555 ], [ 17.841797, 58.904646 ], [ 17.753906, 58.995311 ], [ 17.753906, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.859224 ], [ 17.402344, 58.904646 ], [ 17.314453, 58.768200 ], [ 16.962891, 58.768200 ], [ 17.138672, 58.722599 ], [ 16.962891, 58.722599 ], [ 16.875000, 58.631217 ], [ 16.787109, 58.631217 ], [ 16.699219, 58.585436 ], [ 16.875000, 58.493694 ], [ 16.347656, 58.493694 ], [ 16.699219, 58.447733 ], [ 16.611328, 58.309489 ], [ 16.787109, 58.355630 ], [ 16.787109, 58.170702 ], [ 16.611328, 58.217025 ], [ 16.699219, 57.891497 ], [ 16.435547, 58.031372 ], [ 16.699219, 57.751076 ], [ 16.699219, 57.704147 ], [ 16.523438, 57.751076 ], [ 16.611328, 57.657158 ], [ 16.435547, 57.657158 ], [ 16.611328, 57.562995 ], [ 16.611328, 57.421294 ], [ 16.435547, 57.326521 ], [ 16.523438, 57.088515 ], [ 16.347656, 57.040730 ], [ 16.435547, 56.800878 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 15.820312, 56.121060 ], [ 15.644531, 56.218923 ], [ 14.941406, 56.218923 ], [ 14.677734, 56.170023 ], [ 14.677734, 56.022948 ], [ 14.414062, 56.072035 ], [ 14.150391, 55.875311 ], [ 14.326172, 55.578345 ], [ 14.150391, 55.429013 ], [ 12.919922, 55.429013 ], [ 12.832031, 55.578345 ], [ 13.007812, 55.627996 ], [ 13.007812, 55.776573 ], [ 12.832031, 55.776573 ], [ 12.919922, 55.875311 ], [ 12.744141, 55.924586 ], [ 12.392578, 56.316537 ], [ 12.832031, 56.267761 ], [ 12.568359, 56.462490 ], [ 12.832031, 56.462490 ], [ 12.919922, 56.559482 ], [ 12.304688, 56.944974 ], [ 12.041016, 57.231503 ], [ 12.041016, 57.468589 ], [ 11.865234, 57.373938 ], [ 11.865234, 57.704147 ], [ 11.689453, 57.704147 ], [ 11.777344, 57.797944 ], [ 11.601562, 57.844751 ], [ 11.689453, 58.077876 ], [ 11.777344, 58.124320 ], [ 11.337891, 58.124320 ], [ 11.601562, 58.309489 ], [ 11.425781, 58.263287 ], [ 11.425781, 58.309489 ], [ 11.337891, 58.447733 ], [ 11.162109, 58.355630 ], [ 11.250000, 58.676938 ], [ 11.074219, 58.950008 ], [ 11.162109, 59.130863 ], [ 11.337891, 59.130863 ], [ 11.425781, 58.904646 ], [ 11.601562, 58.904646 ], [ 11.689453, 58.995311 ], [ 11.777344, 59.400365 ], [ 11.601562, 59.623325 ], [ 11.865234, 59.712097 ], [ 11.777344, 59.888937 ], [ 12.128906, 59.933000 ], [ 12.480469, 60.108670 ], [ 12.568359, 60.413852 ], [ 12.216797, 61.015725 ], [ 12.656250, 61.058285 ], [ 12.832031, 61.227957 ], [ 12.832031, 61.396719 ], [ 12.128906, 61.731526 ], [ 12.304688, 62.267923 ], [ 12.041016, 62.593341 ], [ 12.041016, 62.955223 ], [ 12.216797, 63.035039 ], [ 11.953125, 63.312683 ], [ 12.216797, 63.509375 ], [ 12.128906, 63.626745 ], [ 12.919922, 64.091408 ], [ 13.886719, 64.014496 ], [ 14.150391, 64.206377 ], [ 14.062500, 64.472794 ], [ 13.623047, 64.586185 ], [ 14.501953, 65.330178 ], [ 14.501953, 66.160511 ], [ 15.029297, 66.160511 ], [ 15.468750, 66.302205 ], [ 15.380859, 66.513260 ], [ 16.083984, 66.964476 ], [ 16.347656, 67.033163 ], [ 16.435547, 67.204032 ], [ 16.083984, 67.441229 ], [ 16.435547, 67.575717 ], [ 16.699219, 67.908619 ], [ 17.226562, 68.106102 ], [ 17.841797, 67.974634 ], [ 17.929688, 68.007571 ], [ 18.105469, 68.171555 ], [ 18.105469, 68.560384 ], [ 18.457031, 68.592487 ], [ 18.632812, 68.496040 ], [ 18.984375, 68.528235 ], [ 19.951172, 68.366801 ], [ 20.214844, 68.496040 ], [ 19.951172, 68.560384 ], [ 20.302734, 68.784144 ], [ 20.302734, 68.911005 ], [ 20.039062, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.917969, 68.974164 ], [ 20.830078, 68.911005 ], [ 21.181641, 68.847665 ], [ 21.445312, 68.688521 ], [ 21.708984, 68.592487 ], [ 21.884766, 68.592487 ], [ 21.972656, 68.496040 ], [ 22.500000, 68.463800 ], [ 23.027344, 68.301905 ], [ 23.115234, 68.138852 ], [ 23.291016, 68.171555 ], [ 23.291016, 68.073305 ], [ 23.642578, 67.974634 ], [ 23.466797, 67.908619 ], [ 23.378906, 67.474922 ], [ 23.730469, 67.441229 ], [ 23.554688, 67.135829 ], [ 23.994141, 66.826520 ], [ 23.818359, 66.757250 ], [ 23.818359, 66.583217 ], [ 23.554688, 66.443107 ], [ 23.642578, 66.231457 ], [ 23.994141, 66.089364 ], [ 24.082031, 65.802776 ], [ 23.994141, 65.838776 ], [ 23.906250, 65.766727 ], [ 23.730469, 65.838776 ], [ 23.378906, 65.838776 ], [ 23.378906, 65.766727 ], [ 23.291016, 65.838776 ], [ 23.115234, 65.838776 ], [ 23.203125, 65.766727 ], [ 23.027344, 65.730626 ], [ 23.027344, 65.694476 ], [ 22.851562, 65.694476 ], [ 22.851562, 65.766727 ], [ 22.939453, 65.766727 ], [ 22.763672, 65.874725 ], [ 22.587891, 65.910623 ], [ 22.675781, 65.766727 ], [ 22.324219, 65.874725 ], [ 22.324219, 65.766727 ], [ 22.148438, 65.766727 ], [ 22.236328, 65.730626 ], [ 22.148438, 65.658275 ], [ 22.236328, 65.622023 ], [ 22.324219, 65.694476 ], [ 22.412109, 65.549367 ], [ 22.324219, 65.585720 ], [ 22.324219, 65.512963 ], [ 22.148438, 65.512963 ], [ 22.148438, 65.549367 ], [ 21.796875, 65.549367 ], [ 21.972656, 65.512963 ], [ 21.884766, 65.403445 ], [ 21.445312, 65.403445 ], [ 21.621094, 65.256706 ], [ 21.533203, 65.256706 ] ], [ [ 22.148438, 65.585720 ], [ 22.236328, 65.585720 ], [ 22.236328, 65.622023 ], [ 21.708984, 65.730626 ], [ 22.148438, 65.585720 ] ], [ [ 11.777344, 58.263287 ], [ 11.865234, 58.355630 ], [ 11.601562, 58.309489 ], [ 11.777344, 58.263287 ] ], [ [ 18.017578, 59.400365 ], [ 18.017578, 59.355596 ], [ 18.105469, 59.355596 ], [ 18.105469, 59.445075 ], [ 18.193359, 59.489726 ], [ 18.017578, 59.489726 ], [ 18.017578, 59.400365 ] ], [ [ 17.578125, 58.995311 ], [ 17.666016, 58.995311 ], [ 17.753906, 59.130863 ], [ 17.578125, 59.085739 ], [ 17.578125, 58.995311 ] ], [ [ 21.533203, 65.256706 ], [ 21.269531, 65.403445 ], [ 21.181641, 65.366837 ], [ 21.533203, 65.256706 ] ], [ [ 11.425781, 58.309489 ], [ 11.601562, 58.401712 ], [ 11.513672, 58.493694 ], [ 11.425781, 58.309489 ] ], [ [ 18.896484, 59.800634 ], [ 18.896484, 59.888937 ], [ 18.720703, 59.800634 ], [ 18.896484, 59.800634 ] ], [ [ 19.511719, 63.509375 ], [ 19.423828, 63.587675 ], [ 19.335938, 63.548552 ], [ 19.511719, 63.509375 ] ], [ [ 18.896484, 63.233627 ], [ 18.896484, 63.273182 ], [ 18.720703, 63.273182 ], [ 18.896484, 63.233627 ] ] ], [ [ [ 18.281250, 57.088515 ], [ 18.017578, 57.279043 ], [ 18.105469, 57.610107 ], [ 18.632812, 57.938183 ], [ 18.720703, 57.844751 ], [ 18.808594, 57.938183 ], [ 18.984375, 57.938183 ], [ 18.984375, 57.984808 ], [ 19.160156, 58.031372 ], [ 19.335938, 57.984808 ], [ 18.984375, 57.891497 ], [ 19.072266, 57.844751 ], [ 18.720703, 57.751076 ], [ 18.720703, 57.468589 ], [ 18.896484, 57.421294 ], [ 18.632812, 57.373938 ], [ 18.632812, 57.231503 ], [ 18.369141, 57.183902 ], [ 18.281250, 57.088515 ] ] ], [ [ [ 17.050781, 57.373938 ], [ 16.523438, 56.316537 ], [ 16.347656, 56.218923 ], [ 16.347656, 56.607885 ], [ 16.347656, 56.656226 ], [ 16.699219, 56.897004 ], [ 16.875000, 57.326521 ], [ 17.050781, 57.373938 ] ] ], [ [ [ 11.689453, 58.077876 ], [ 11.513672, 57.938183 ], [ 11.425781, 58.077876 ], [ 11.689453, 58.077876 ] ] ], [ [ [ 18.457031, 59.130863 ], [ 18.457031, 59.040555 ], [ 18.281250, 59.040555 ], [ 18.281250, 59.130863 ], [ 18.457031, 59.130863 ] ] ], [ [ [ 18.457031, 60.500525 ], [ 18.457031, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.500525 ], [ 18.457031, 60.500525 ] ] ], [ [ [ 20.917969, 63.743631 ], [ 20.917969, 63.665760 ], [ 20.742188, 63.665760 ], [ 20.742188, 63.743631 ], [ 20.917969, 63.743631 ] ] ], [ [ [ 18.281250, 57.088515 ], [ 18.281250, 56.944974 ], [ 18.105469, 56.944974 ], [ 18.281250, 57.088515 ] ] ], [ [ [ 18.632812, 59.355596 ], [ 18.457031, 59.355596 ], [ 18.369141, 59.445075 ], [ 18.632812, 59.355596 ] ] ], [ [ [ 17.314453, 61.731526 ], [ 17.402344, 61.773123 ], [ 17.490234, 61.648162 ], [ 17.314453, 61.731526 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.617791 ], [ 19.775391, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.126953, 42.423457 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.376809 ], [ 20.478516, 41.178654 ], [ 20.654297, 41.112469 ], [ 20.654297, 40.913513 ], [ 20.830078, 40.979898 ], [ 21.005859, 40.713956 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.513799 ], [ 20.654297, 40.178873 ], [ 20.214844, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.842286 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.511719, 40.178873 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.423828, 40.580585 ], [ 19.248047, 40.713956 ], [ 19.335938, 40.979898 ], [ 19.511719, 40.979898 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.423828, 41.640078 ], [ 19.599609, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.617791 ] ] ] } } , diff --git a/tests/ne_110m_admin_0_countries/out/--coalesce_-z2_-Ccat.json b/tests/ne_110m_admin_0_countries/out/--coalesce_-z2_-Ccat.json index 850f2269f..41dc6a897 100644 --- a/tests/ne_110m_admin_0_countries/out/--coalesce_-z2_-Ccat.json +++ b/tests/ne_110m_admin_0_countries/out/--coalesce_-z2_-Ccat.json @@ -3,6 +3,7 @@ "center": "45.000000,33.256630,2", "description": "tests/ne_110m_admin_0_countries/out/--coalesce_-z2_-Ccat.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/--coalesce_-z2_-Ccat.json.check.mbtiles --coalesce -z2 -Ccat tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 2, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"formal_fr\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_alt\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_adm0\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 636,\"geometry\": \"Polygon\",\"attributeCount\": 61,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afg.\",\"Alb.\",\"Alg.\",\"Ang.\",\"Ant.\",\"Arg.\",\"Arm.\",\"Aust.\",\"Auz.\",\"Aze.\",\"B.F.\",\"B.H.\",\"Bang.\",\"Bela.\",\"Belg.\",\"Belize\",\"Benin\",\"Bhs.\",\"Bhutan\",\"Bolivia\",\"Brazil\",\"Brunei\",\"Bulg.\",\"Bur.\",\"Bwa.\",\"C.A.R.\",\"C.R.\",\"Cam.\",\"Camb.\",\"Can.\",\"Chad\",\"Chile\",\"China\",\"Col.\",\"Cro.\",\"Cuba\",\"Cyp.\",\"Cz. Rep.\",\"D.R.C.\",\"Den.\",\"Dji.\",\"Dom. Rep.\",\"Ecu.\",\"Egypt\",\"El. S.\",\"Eq. G.\",\"Erit.\",\"Est.\",\"Eth.\",\"Fiji\",\"Fin.\",\"Flk. Is.\",\"Fr.\",\"Fr. S.A.L.\",\"Gabon\",\"Gambia\",\"Geo.\",\"Ger.\",\"Ghana\",\"Gin.\",\"GnB.\",\"Greece\",\"Grlnd.\",\"Guat.\",\"Guy.\",\"Haiti\",\"Hond.\",\"Hun.\",\"I.C.\",\"Iceland\",\"India\",\"Indo.\",\"Iran\",\"Iraq\",\"Ire.\",\"Isr.\",\"Italy\",\"Jam.\",\"Japan\",\"Jord.\",\"Kaz.\",\"Ken.\",\"Kgz.\",\"Kos.\",\"Kwt.\",\"Laos\",\"Lat.\",\"Leb.\",\"Les.\",\"Liberia\",\"Libya\",\"Lith.\",\"Lux.\",\"Mad.\",\"Mal.\",\"Malay.\",\"Mali\",\"Mda.\",\"Mex.\",\"Mkd.\"]},{\"attribute\": \"abbrev_len\",\"count\": 8,\"type\": \"number\",\"values\": [10,3,4,5,6,7,8,9],\"min\": 3,\"max\": 10},{\"attribute\": \"adm0_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 173,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 175,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"brk_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"B12\",\"B20\",\"B28\",\"B30\",\"B57\",\"B77\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. and Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\"]},{\"attribute\": \"continent\",\"count\": 8,\"type\": \"string\",\"values\": [\"Africa\",\"Antarctica\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"Seven seas (open ocean)\",\"South America\"]},{\"attribute\": \"economy\",\"count\": 7,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"2. Developed region: nonG7\",\"3. Emerging region: BRIC\",\"4. Emerging region: MIKT\",\"5. Emerging region: G20\",\"6. Developing region\",\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 174,\"type\": \"string\",\"values\": [\"Arab Republic of Egypt\",\"Argentine Republic\",\"Belize\",\"Bolivarian Republic of Venezuela\",\"Bosnia and Herzegovina\",\"Burkina Faso\",\"Canada\",\"Central African Republic\",\"Co-operative Republic of Guyana\",\"Commonwealth of Australia\",\"Commonwealth of Puerto Rico\",\"Commonwealth of the Bahamas\",\"Czech Republic\",\"Democratic People's Republic of Korea\",\"Democratic Republic of Timor-Leste\",\"Democratic Republic of the Congo\",\"Democratic Socialist Republic of Sri Lanka\",\"Dominican Republic\",\"Falkland Islands\",\"Federal Democratic Republic of Ethiopia\",\"Federal Republic of Germany\",\"Federal Republic of Nigeria\",\"Federal Republic of Somalia\",\"Federative Republic of Brazil\",\"Former Yugoslav Republic of Macedonia\",\"French Republic\",\"Gabonese Republic\",\"Georgia\",\"Grand Duchy of Luxembourg\",\"Greenland\",\"Hashemite Kingdom of Jordan\",\"Hellenic Republic\",\"Independent State of Papua New Guinea\",\"Ireland\",\"Islamic Republic of Iran\",\"Islamic Republic of Mauritania\",\"Islamic Republic of Pakistan\",\"Islamic State of Afghanistan\",\"Italian Republic\",\"Jamaica\",\"Japan\",\"Kingdom of Belgium\",\"Kingdom of Bhutan\",\"Kingdom of Cambodia\",\"Kingdom of Denmark\",\"Kingdom of Lesotho\",\"Kingdom of Morocco\",\"Kingdom of Norway\",\"Kingdom of Saudi Arabia\",\"Kingdom of Spain\",\"Kingdom of Swaziland\",\"Kingdom of Sweden\",\"Kingdom of Thailand\",\"Kingdom of the Netherlands\",\"Kyrgyz Republic\",\"Lao People's Democratic Republic\",\"Lebanese Republic\",\"Libya\",\"Malaysia\",\"Mongolia\",\"Montenegro\",\"Negara Brunei Darussalam\",\"Nepal\",\"New Caledonia\",\"New Zealand\",\"Oriental Republic of Uruguay\",\"People's Democratic Republic of Algeria\",\"People's Republic of Angola\",\"People's Republic of Bangladesh\",\"People's Republic of China\",\"Plurinational State of Bolivia\",\"Portuguese Republic\",\"Republic of Albania\",\"Republic of Armenia\",\"Republic of Austria\",\"Republic of Azerbaijan\",\"Republic of Belarus\",\"Republic of Benin\",\"Republic of Botswana\",\"Republic of Bulgaria\",\"Republic of Burundi\",\"Republic of Cameroon\",\"Republic of Chad\",\"Republic of Chile\",\"Republic of Colombia\",\"Republic of Congo\",\"Republic of Costa Rica\",\"Republic of Croatia\",\"Republic of Cuba\",\"Republic of Cyprus\",\"Republic of Djibouti\",\"Republic of Ecuador\",\"Republic of El Salvador\",\"Republic of Equatorial Guinea\",\"Republic of Estonia\",\"Republic of Fiji\",\"Republic of Finland\",\"Republic of Ghana\",\"Republic of Guatemala\",\"Republic of Guinea\"]},{\"attribute\": \"formal_fr\",\"count\": 4,\"type\": \"string\",\"values\": [\"Nouvelle-Calédonie\",\"Republic of Cote D'Ivoire\",\"República Bolivariana de Venezuela\",\"République Togolaise\"]},{\"attribute\": \"gdp_md_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10040,103900,105.1,10600,10670,107700,1078,108200,1100,110300,114100,11500,11610,116700,11810,11950.77,119500,12250,12710,12830,1300000,13160,13210,13227,13250,1335000,136600,13980,1403000,14060,14590,149100,15094000,1526,15350,1563000,15860,16,16790,17500,175800,17820,1823000,184300,18770,18780,188400,1885,18940,193500,196600,1977704,1993000,20130,201400,20250,203600,20640,208627,20910,21110,2128000,21510,21810,21980,22270,224000,2266000,22700,2272,232900,241700,244500,247300,2520,2536,265200,27060,271400,27410,276400,27940,28890,29010,2918000,2966,29700,29780,3102,31080,3158,31610,316700,317500,3198,3293,329500,3297000,335400],\"min\": -99,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 3,\"type\": \"number\",\"values\": [-99,0,2009],\"min\": -99,\"max\": 2009},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"gu_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"homepart\",\"count\": 2,\"type\": \"number\",\"values\": [-99,1],\"min\": -99,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 5,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\",\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AQ\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FK\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\"]},{\"attribute\": \"iso_a3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESH\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"iso_n3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"004\",\"008\",\"010\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"158\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"260\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\"]},{\"attribute\": \"labelrank\",\"count\": 6,\"type\": \"number\",\"values\": [2,3,4,5,6,7],\"min\": 2,\"max\": 7},{\"attribute\": \"lastcensus\",\"count\": 27,\"type\": \"number\",\"values\": [-99,1970,1979,1981,1983,1984,1987,1989,1991,1993,1995,1996,1997,1998,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012],\"min\": -99,\"max\": 2012},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 21,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,20,22,24,32,35,4,5,6,7,8,9],\"min\": 4,\"max\": 35},{\"attribute\": \"mapcolor13\",\"count\": 14,\"type\": \"number\",\"values\": [-99,1,10,11,12,13,2,3,4,5,6,7,8,9],\"min\": -99,\"max\": 13},{\"attribute\": \"mapcolor7\",\"count\": 7,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7],\"min\": 1,\"max\": 7},{\"attribute\": \"mapcolor8\",\"count\": 8,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8],\"min\": 1,\"max\": 8},{\"attribute\": \"mapcolor9\",\"count\": 9,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 9},{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]},{\"attribute\": \"name_alt\",\"count\": 2,\"type\": \"string\",\"values\": [\"East Timor\",\"Islas Malvinas\"]},{\"attribute\": \"name_len\",\"count\": 16,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,19,20,22,4,5,6,7,8,9],\"min\": 4,\"max\": 22},{\"attribute\": \"name_long\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"name_sort\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo, Dem. Rep.\",\"Congo, Rep.\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Cyprus, Northern\",\"Czech Republic\",\"Côte d'Ivoire\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt, Arab Rep.\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran, Islamic Rep.\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea, Dem. Rep.\",\"Korea, Rep.\",\"Kosovo\",\"Kuwait\",\"Kyrgyz Republic\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia, FYR\",\"Madagascar\",\"Malawi\"]},{\"attribute\": \"note_adm0\",\"count\": 6,\"type\": \"string\",\"values\": [\"Commonwealth of U.S.A.\",\"Den.\",\"Fr.\",\"Partial self-admin.\",\"Self admin.\",\"U.K.\"]},{\"attribute\": \"note_brk\",\"count\": 8,\"type\": \"string\",\"values\": [\"Admin. by U.K.; Claimed by Argentina\",\"Multiple claims held in abeyance\",\"Partial self-admin.\",\"Self admin.; Claimed by China\",\"Self admin.; Claimed by Cyprus\",\"Self admin.; Claimed by Morocco\",\"Self admin.; Claimed by Serbia\",\"Self admin.; Claimed by Somalia\"]},{\"attribute\": \"pop_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10057975,10211904,10329208,10414336,10473282,10486339,10625176,10707924,10737428,111211789,1123913,1131612,11451652,1166079220,11862740,12619600,12666987,127078679,12799293,1299371,1310000,13276517,1338612970,13711597,140,140041247,14268711,14494293,14573101,149229090,1514993,15306252,1533964,15399437,156050883,15746232,16601707,16715999,176242949,1782893,1804838,18879301,198739269,1990876,2005692,20178485,20617068,20653556,2066718,2108665,21262641,2130819,21324791,21669278,218519,22215421,2231503,22665345,227436,22974347,23822783,23832495,240271522,25715819,25946220,265100,26814843,2691158,27606007,2825928,28400000,28563377,28686633,29546963,2967004,3041142,306694,307899,309156,31129225,3129486,313973000,3140,32369558,33487208,3360474,34178188,3418085,3441790,34859364,3494382,3500000,3555179,3639453,3802,38482919,388190,39002772,3971020],\"min\": -99,\"max\": 1338612970},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 172,\"type\": \"string\",\"values\": [\"A\",\"AE\",\"AF\",\"AL\",\"AO\",\"AQ\",\"AR\",\"ARM\",\"AU\",\"AZ\",\"B\",\"BD\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"BiH\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"D\",\"DJ\",\"DK\",\"DO\",\"DRC\",\"DZ\",\"E\",\"EC\",\"EG\",\"ER\",\"EST\",\"ET\",\"F\",\"FIN\",\"FJ\",\"FK\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"I\",\"IND\",\"INDO\",\"IRL\",\"IRN\",\"IRQ\",\"IS\",\"J\",\"KE\",\"KG\",\"KH\",\"KO\",\"KP\",\"KR\",\"KW\",\"KZ\",\"L\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\",\"MG\",\"MK\"]},{\"attribute\": \"region_un\",\"count\": 7,\"type\": \"string\",\"values\": [\"Africa\",\"Americas\",\"Antarctica\",\"Asia\",\"Europe\",\"Oceania\",\"Seven seas (open ocean)\"]},{\"attribute\": \"region_wb\",\"count\": 8,\"type\": \"string\",\"values\": [\"Antarctica\",\"East Asia & Pacific\",\"Europe & Central Asia\",\"Latin America & Caribbean\",\"Middle East & North Africa\",\"North America\",\"South Asia\",\"Sub-Saharan Africa\"]},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [1,3],\"min\": 1,\"max\": 3},{\"attribute\": \"sov_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"AU1\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CH1\",\"CHE\",\"CHL\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DN1\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FI1\",\"FJI\",\"FR1\",\"GAB\",\"GB1\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\"]},{\"attribute\": \"sovereignt\",\"count\": 171,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\",\"Moldova\",\"Mongolia\",\"Montenegro\"]},{\"attribute\": \"su_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"su_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"subregion\",\"count\": 22,\"type\": \"string\",\"values\": [\"Antarctica\",\"Australia and New Zealand\",\"Caribbean\",\"Central America\",\"Central Asia\",\"Eastern Africa\",\"Eastern Asia\",\"Eastern Europe\",\"Melanesia\",\"Middle Africa\",\"Northern Africa\",\"Northern America\",\"Northern Europe\",\"Seven seas (open ocean)\",\"South America\",\"South-Eastern Asia\",\"Southern Africa\",\"Southern Asia\",\"Southern Europe\",\"Western Africa\",\"Western Asia\",\"Western Europe\"]},{\"attribute\": \"subunit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"tiny\",\"count\": 5,\"type\": \"number\",\"values\": [-99,2,3,4,5],\"min\": -99,\"max\": 5},{\"attribute\": \"type\",\"count\": 5,\"type\": \"string\",\"values\": [\"Country\",\"Dependency\",\"Disputed\",\"Indeterminate\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 172,\"type\": \"string\",\"values\": [\"-099\",\"004\",\"008\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\",\"458\",\"466\",\"478\"]},{\"attribute\": \"wb_a2\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"GZ\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KV\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\"]},{\"attribute\": \"wb_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KSV\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\",\"MKD\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "2", "minzoom": "0", @@ -152,7 +153,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.302734, 42.940339 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.214844, 42.358544 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , diff --git a/tests/ne_110m_admin_0_countries/out/-R5%17%11.json b/tests/ne_110m_admin_0_countries/out/-R5%17%11.json index aba7fe988..121c3ac96 100644 --- a/tests/ne_110m_admin_0_countries/out/-R5%17%11.json +++ b/tests/ne_110m_admin_0_countries/out/-R5%17%11.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-R5%17%11.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-R5%17%11.json.check.mbtiles -R5/17/11 tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 5, \"maxzoom\": 5, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"formal_fr\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_alt\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_adm0\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 61,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afg.\",\"Alb.\",\"Alg.\",\"Ang.\",\"Ant.\",\"Arg.\",\"Arm.\",\"Aust.\",\"Auz.\",\"Aze.\",\"B.F.\",\"B.H.\",\"Bang.\",\"Bela.\",\"Belg.\",\"Belize\",\"Benin\",\"Bhs.\",\"Bhutan\",\"Bolivia\",\"Brazil\",\"Brunei\",\"Bulg.\",\"Bur.\",\"Bwa.\",\"C.A.R.\",\"C.R.\",\"Cam.\",\"Camb.\",\"Can.\",\"Chad\",\"Chile\",\"China\",\"Col.\",\"Cro.\",\"Cuba\",\"Cyp.\",\"Cz. Rep.\",\"D.R.C.\",\"Den.\",\"Dji.\",\"Dom. Rep.\",\"Ecu.\",\"Egypt\",\"El. S.\",\"Eq. G.\",\"Erit.\",\"Est.\",\"Eth.\",\"Fiji\",\"Fin.\",\"Flk. Is.\",\"Fr.\",\"Fr. S.A.L.\",\"Gabon\",\"Gambia\",\"Geo.\",\"Ger.\",\"Ghana\",\"Gin.\",\"GnB.\",\"Greece\",\"Grlnd.\",\"Guat.\",\"Guy.\",\"Haiti\",\"Hond.\",\"Hun.\",\"I.C.\",\"Iceland\",\"India\",\"Indo.\",\"Iran\",\"Iraq\",\"Ire.\",\"Isr.\",\"Italy\",\"Jam.\",\"Japan\",\"Jord.\",\"Kaz.\",\"Ken.\",\"Kgz.\",\"Kos.\",\"Kwt.\",\"Laos\",\"Lat.\",\"Leb.\",\"Les.\",\"Liberia\",\"Libya\",\"Lith.\",\"Lux.\",\"Mad.\",\"Mal.\",\"Malay.\",\"Mali\",\"Mda.\",\"Mex.\",\"Mkd.\"]},{\"attribute\": \"abbrev_len\",\"count\": 8,\"type\": \"number\",\"values\": [10,3,4,5,6,7,8,9],\"min\": 3,\"max\": 10},{\"attribute\": \"adm0_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 173,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 175,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"brk_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"B12\",\"B20\",\"B28\",\"B30\",\"B57\",\"B77\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. and Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\"]},{\"attribute\": \"continent\",\"count\": 8,\"type\": \"string\",\"values\": [\"Africa\",\"Antarctica\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"Seven seas (open ocean)\",\"South America\"]},{\"attribute\": \"economy\",\"count\": 7,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"2. Developed region: nonG7\",\"3. Emerging region: BRIC\",\"4. Emerging region: MIKT\",\"5. Emerging region: G20\",\"6. Developing region\",\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 174,\"type\": \"string\",\"values\": [\"Arab Republic of Egypt\",\"Argentine Republic\",\"Belize\",\"Bolivarian Republic of Venezuela\",\"Bosnia and Herzegovina\",\"Burkina Faso\",\"Canada\",\"Central African Republic\",\"Co-operative Republic of Guyana\",\"Commonwealth of Australia\",\"Commonwealth of Puerto Rico\",\"Commonwealth of the Bahamas\",\"Czech Republic\",\"Democratic People's Republic of Korea\",\"Democratic Republic of Timor-Leste\",\"Democratic Republic of the Congo\",\"Democratic Socialist Republic of Sri Lanka\",\"Dominican Republic\",\"Falkland Islands\",\"Federal Democratic Republic of Ethiopia\",\"Federal Republic of Germany\",\"Federal Republic of Nigeria\",\"Federal Republic of Somalia\",\"Federative Republic of Brazil\",\"Former Yugoslav Republic of Macedonia\",\"French Republic\",\"Gabonese Republic\",\"Georgia\",\"Grand Duchy of Luxembourg\",\"Greenland\",\"Hashemite Kingdom of Jordan\",\"Hellenic Republic\",\"Independent State of Papua New Guinea\",\"Ireland\",\"Islamic Republic of Iran\",\"Islamic Republic of Mauritania\",\"Islamic Republic of Pakistan\",\"Islamic State of Afghanistan\",\"Italian Republic\",\"Jamaica\",\"Japan\",\"Kingdom of Belgium\",\"Kingdom of Bhutan\",\"Kingdom of Cambodia\",\"Kingdom of Denmark\",\"Kingdom of Lesotho\",\"Kingdom of Morocco\",\"Kingdom of Norway\",\"Kingdom of Saudi Arabia\",\"Kingdom of Spain\",\"Kingdom of Swaziland\",\"Kingdom of Sweden\",\"Kingdom of Thailand\",\"Kingdom of the Netherlands\",\"Kyrgyz Republic\",\"Lao People's Democratic Republic\",\"Lebanese Republic\",\"Libya\",\"Malaysia\",\"Mongolia\",\"Montenegro\",\"Negara Brunei Darussalam\",\"Nepal\",\"New Caledonia\",\"New Zealand\",\"Oriental Republic of Uruguay\",\"People's Democratic Republic of Algeria\",\"People's Republic of Angola\",\"People's Republic of Bangladesh\",\"People's Republic of China\",\"Plurinational State of Bolivia\",\"Portuguese Republic\",\"Republic of Albania\",\"Republic of Armenia\",\"Republic of Austria\",\"Republic of Azerbaijan\",\"Republic of Belarus\",\"Republic of Benin\",\"Republic of Botswana\",\"Republic of Bulgaria\",\"Republic of Burundi\",\"Republic of Cameroon\",\"Republic of Chad\",\"Republic of Chile\",\"Republic of Colombia\",\"Republic of Congo\",\"Republic of Costa Rica\",\"Republic of Croatia\",\"Republic of Cuba\",\"Republic of Cyprus\",\"Republic of Djibouti\",\"Republic of Ecuador\",\"Republic of El Salvador\",\"Republic of Equatorial Guinea\",\"Republic of Estonia\",\"Republic of Fiji\",\"Republic of Finland\",\"Republic of Ghana\",\"Republic of Guatemala\",\"Republic of Guinea\"]},{\"attribute\": \"formal_fr\",\"count\": 4,\"type\": \"string\",\"values\": [\"Nouvelle-Calédonie\",\"Republic of Cote D'Ivoire\",\"República Bolivariana de Venezuela\",\"République Togolaise\"]},{\"attribute\": \"gdp_md_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10040,103900,105.1,10600,10670,107700,1078,108200,1100,110300,114100,11500,11610,116700,11810,11950.77,119500,12250,12710,12830,1300000,13160,13210,13227,13250,1335000,136600,13980,1403000,14060,14590,149100,15094000,1526,15350,1563000,15860,16,16790,17500,175800,17820,1823000,184300,18770,18780,188400,1885,18940,193500,196600,1977704,1993000,20130,201400,20250,203600,20640,208627,20910,21110,2128000,21510,21810,21980,22270,224000,2266000,22700,2272,232900,241700,244500,247300,2520,2536,265200,27060,271400,27410,276400,27940,28890,29010,2918000,2966,29700,29780,3102,31080,3158,31610,316700,317500,3198,3293,329500,3297000,335400],\"min\": -99,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 3,\"type\": \"number\",\"values\": [-99,0,2009],\"min\": -99,\"max\": 2009},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"gu_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"homepart\",\"count\": 2,\"type\": \"number\",\"values\": [-99,1],\"min\": -99,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 5,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\",\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AQ\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FK\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\"]},{\"attribute\": \"iso_a3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESH\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"iso_n3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"004\",\"008\",\"010\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"158\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"260\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\"]},{\"attribute\": \"labelrank\",\"count\": 6,\"type\": \"number\",\"values\": [2,3,4,5,6,7],\"min\": 2,\"max\": 7},{\"attribute\": \"lastcensus\",\"count\": 27,\"type\": \"number\",\"values\": [-99,1970,1979,1981,1983,1984,1987,1989,1991,1993,1995,1996,1997,1998,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012],\"min\": -99,\"max\": 2012},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 21,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,20,22,24,32,35,4,5,6,7,8,9],\"min\": 4,\"max\": 35},{\"attribute\": \"mapcolor13\",\"count\": 14,\"type\": \"number\",\"values\": [-99,1,10,11,12,13,2,3,4,5,6,7,8,9],\"min\": -99,\"max\": 13},{\"attribute\": \"mapcolor7\",\"count\": 7,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7],\"min\": 1,\"max\": 7},{\"attribute\": \"mapcolor8\",\"count\": 8,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8],\"min\": 1,\"max\": 8},{\"attribute\": \"mapcolor9\",\"count\": 9,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 9},{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]},{\"attribute\": \"name_alt\",\"count\": 2,\"type\": \"string\",\"values\": [\"East Timor\",\"Islas Malvinas\"]},{\"attribute\": \"name_len\",\"count\": 16,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,19,20,22,4,5,6,7,8,9],\"min\": 4,\"max\": 22},{\"attribute\": \"name_long\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"name_sort\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo, Dem. Rep.\",\"Congo, Rep.\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Cyprus, Northern\",\"Czech Republic\",\"Côte d'Ivoire\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt, Arab Rep.\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran, Islamic Rep.\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea, Dem. Rep.\",\"Korea, Rep.\",\"Kosovo\",\"Kuwait\",\"Kyrgyz Republic\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia, FYR\",\"Madagascar\",\"Malawi\"]},{\"attribute\": \"note_adm0\",\"count\": 6,\"type\": \"string\",\"values\": [\"Commonwealth of U.S.A.\",\"Den.\",\"Fr.\",\"Partial self-admin.\",\"Self admin.\",\"U.K.\"]},{\"attribute\": \"note_brk\",\"count\": 8,\"type\": \"string\",\"values\": [\"Admin. by U.K.; Claimed by Argentina\",\"Multiple claims held in abeyance\",\"Partial self-admin.\",\"Self admin.; Claimed by China\",\"Self admin.; Claimed by Cyprus\",\"Self admin.; Claimed by Morocco\",\"Self admin.; Claimed by Serbia\",\"Self admin.; Claimed by Somalia\"]},{\"attribute\": \"pop_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10057975,10211904,10329208,10414336,10473282,10486339,10625176,10707924,10737428,111211789,1123913,1131612,11451652,1166079220,11862740,12619600,12666987,127078679,12799293,1299371,1310000,13276517,1338612970,13711597,140,140041247,14268711,14494293,14573101,149229090,1514993,15306252,1533964,15399437,156050883,15746232,16601707,16715999,176242949,1782893,1804838,18879301,198739269,1990876,2005692,20178485,20617068,20653556,2066718,2108665,21262641,2130819,21324791,21669278,218519,22215421,2231503,22665345,227436,22974347,23822783,23832495,240271522,25715819,25946220,265100,26814843,2691158,27606007,2825928,28400000,28563377,28686633,29546963,2967004,3041142,306694,307899,309156,31129225,3129486,313973000,3140,32369558,33487208,3360474,34178188,3418085,3441790,34859364,3494382,3500000,3555179,3639453,3802,38482919,388190,39002772,3971020],\"min\": -99,\"max\": 1338612970},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 172,\"type\": \"string\",\"values\": [\"A\",\"AE\",\"AF\",\"AL\",\"AO\",\"AQ\",\"AR\",\"ARM\",\"AU\",\"AZ\",\"B\",\"BD\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"BiH\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"D\",\"DJ\",\"DK\",\"DO\",\"DRC\",\"DZ\",\"E\",\"EC\",\"EG\",\"ER\",\"EST\",\"ET\",\"F\",\"FIN\",\"FJ\",\"FK\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"I\",\"IND\",\"INDO\",\"IRL\",\"IRN\",\"IRQ\",\"IS\",\"J\",\"KE\",\"KG\",\"KH\",\"KO\",\"KP\",\"KR\",\"KW\",\"KZ\",\"L\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\",\"MG\",\"MK\"]},{\"attribute\": \"region_un\",\"count\": 7,\"type\": \"string\",\"values\": [\"Africa\",\"Americas\",\"Antarctica\",\"Asia\",\"Europe\",\"Oceania\",\"Seven seas (open ocean)\"]},{\"attribute\": \"region_wb\",\"count\": 8,\"type\": \"string\",\"values\": [\"Antarctica\",\"East Asia & Pacific\",\"Europe & Central Asia\",\"Latin America & Caribbean\",\"Middle East & North Africa\",\"North America\",\"South Asia\",\"Sub-Saharan Africa\"]},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [1,3],\"min\": 1,\"max\": 3},{\"attribute\": \"sov_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"AU1\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CH1\",\"CHE\",\"CHL\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DN1\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FI1\",\"FJI\",\"FR1\",\"GAB\",\"GB1\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\"]},{\"attribute\": \"sovereignt\",\"count\": 171,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\",\"Moldova\",\"Mongolia\",\"Montenegro\"]},{\"attribute\": \"su_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"su_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"subregion\",\"count\": 22,\"type\": \"string\",\"values\": [\"Antarctica\",\"Australia and New Zealand\",\"Caribbean\",\"Central America\",\"Central Asia\",\"Eastern Africa\",\"Eastern Asia\",\"Eastern Europe\",\"Melanesia\",\"Middle Africa\",\"Northern Africa\",\"Northern America\",\"Northern Europe\",\"Seven seas (open ocean)\",\"South America\",\"South-Eastern Asia\",\"Southern Africa\",\"Southern Asia\",\"Southern Europe\",\"Western Africa\",\"Western Asia\",\"Western Europe\"]},{\"attribute\": \"subunit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"tiny\",\"count\": 5,\"type\": \"number\",\"values\": [-99,2,3,4,5],\"min\": -99,\"max\": 5},{\"attribute\": \"type\",\"count\": 5,\"type\": \"string\",\"values\": [\"Country\",\"Dependency\",\"Disputed\",\"Indeterminate\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 172,\"type\": \"string\",\"values\": [\"-099\",\"004\",\"008\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\",\"458\",\"466\",\"478\"]},{\"attribute\": \"wb_a2\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"GZ\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KV\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\"]},{\"attribute\": \"wb_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KSV\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\",\"MKD\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "5", "minzoom": "5", diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json index 2ba8b35a0..fe28a610d 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json.check.mbtiles -ae -zg -M5000 --drop-densest-as-needed tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"formal_fr\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_alt\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_adm0\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 61,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afg.\",\"Alb.\",\"Alg.\",\"Ang.\",\"Ant.\",\"Arg.\",\"Arm.\",\"Aust.\",\"Auz.\",\"Aze.\",\"B.F.\",\"B.H.\",\"Bang.\",\"Bela.\",\"Belg.\",\"Belize\",\"Benin\",\"Bhs.\",\"Bhutan\",\"Bolivia\",\"Brazil\",\"Brunei\",\"Bulg.\",\"Bur.\",\"Bwa.\",\"C.A.R.\",\"C.R.\",\"Cam.\",\"Camb.\",\"Can.\",\"Chad\",\"Chile\",\"China\",\"Col.\",\"Cro.\",\"Cuba\",\"Cyp.\",\"Cz. Rep.\",\"D.R.C.\",\"Den.\",\"Dji.\",\"Dom. Rep.\",\"Ecu.\",\"Egypt\",\"El. S.\",\"Eq. G.\",\"Erit.\",\"Est.\",\"Eth.\",\"Fiji\",\"Fin.\",\"Flk. Is.\",\"Fr.\",\"Fr. S.A.L.\",\"Gabon\",\"Gambia\",\"Geo.\",\"Ger.\",\"Ghana\",\"Gin.\",\"GnB.\",\"Greece\",\"Grlnd.\",\"Guat.\",\"Guy.\",\"Haiti\",\"Hond.\",\"Hun.\",\"I.C.\",\"Iceland\",\"India\",\"Indo.\",\"Iran\",\"Iraq\",\"Ire.\",\"Isr.\",\"Italy\",\"Jam.\",\"Japan\",\"Jord.\",\"Kaz.\",\"Ken.\",\"Kgz.\",\"Kos.\",\"Kwt.\",\"Laos\",\"Lat.\",\"Leb.\",\"Les.\",\"Liberia\",\"Libya\",\"Lith.\",\"Lux.\",\"Mad.\",\"Mal.\",\"Malay.\",\"Mali\",\"Mda.\",\"Mex.\",\"Mkd.\"]},{\"attribute\": \"abbrev_len\",\"count\": 8,\"type\": \"number\",\"values\": [10,3,4,5,6,7,8,9],\"min\": 3,\"max\": 10},{\"attribute\": \"adm0_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 173,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 175,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"brk_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"B12\",\"B20\",\"B28\",\"B30\",\"B57\",\"B77\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. and Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\"]},{\"attribute\": \"continent\",\"count\": 8,\"type\": \"string\",\"values\": [\"Africa\",\"Antarctica\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"Seven seas (open ocean)\",\"South America\"]},{\"attribute\": \"economy\",\"count\": 7,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"2. Developed region: nonG7\",\"3. Emerging region: BRIC\",\"4. Emerging region: MIKT\",\"5. Emerging region: G20\",\"6. Developing region\",\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 174,\"type\": \"string\",\"values\": [\"Arab Republic of Egypt\",\"Argentine Republic\",\"Belize\",\"Bolivarian Republic of Venezuela\",\"Bosnia and Herzegovina\",\"Burkina Faso\",\"Canada\",\"Central African Republic\",\"Co-operative Republic of Guyana\",\"Commonwealth of Australia\",\"Commonwealth of Puerto Rico\",\"Commonwealth of the Bahamas\",\"Czech Republic\",\"Democratic People's Republic of Korea\",\"Democratic Republic of Timor-Leste\",\"Democratic Republic of the Congo\",\"Democratic Socialist Republic of Sri Lanka\",\"Dominican Republic\",\"Falkland Islands\",\"Federal Democratic Republic of Ethiopia\",\"Federal Republic of Germany\",\"Federal Republic of Nigeria\",\"Federal Republic of Somalia\",\"Federative Republic of Brazil\",\"Former Yugoslav Republic of Macedonia\",\"French Republic\",\"Gabonese Republic\",\"Georgia\",\"Grand Duchy of Luxembourg\",\"Greenland\",\"Hashemite Kingdom of Jordan\",\"Hellenic Republic\",\"Independent State of Papua New Guinea\",\"Ireland\",\"Islamic Republic of Iran\",\"Islamic Republic of Mauritania\",\"Islamic Republic of Pakistan\",\"Islamic State of Afghanistan\",\"Italian Republic\",\"Jamaica\",\"Japan\",\"Kingdom of Belgium\",\"Kingdom of Bhutan\",\"Kingdom of Cambodia\",\"Kingdom of Denmark\",\"Kingdom of Lesotho\",\"Kingdom of Morocco\",\"Kingdom of Norway\",\"Kingdom of Saudi Arabia\",\"Kingdom of Spain\",\"Kingdom of Swaziland\",\"Kingdom of Sweden\",\"Kingdom of Thailand\",\"Kingdom of the Netherlands\",\"Kyrgyz Republic\",\"Lao People's Democratic Republic\",\"Lebanese Republic\",\"Libya\",\"Malaysia\",\"Mongolia\",\"Montenegro\",\"Negara Brunei Darussalam\",\"Nepal\",\"New Caledonia\",\"New Zealand\",\"Oriental Republic of Uruguay\",\"People's Democratic Republic of Algeria\",\"People's Republic of Angola\",\"People's Republic of Bangladesh\",\"People's Republic of China\",\"Plurinational State of Bolivia\",\"Portuguese Republic\",\"Republic of Albania\",\"Republic of Armenia\",\"Republic of Austria\",\"Republic of Azerbaijan\",\"Republic of Belarus\",\"Republic of Benin\",\"Republic of Botswana\",\"Republic of Bulgaria\",\"Republic of Burundi\",\"Republic of Cameroon\",\"Republic of Chad\",\"Republic of Chile\",\"Republic of Colombia\",\"Republic of Congo\",\"Republic of Costa Rica\",\"Republic of Croatia\",\"Republic of Cuba\",\"Republic of Cyprus\",\"Republic of Djibouti\",\"Republic of Ecuador\",\"Republic of El Salvador\",\"Republic of Equatorial Guinea\",\"Republic of Estonia\",\"Republic of Fiji\",\"Republic of Finland\",\"Republic of Ghana\",\"Republic of Guatemala\",\"Republic of Guinea\"]},{\"attribute\": \"formal_fr\",\"count\": 4,\"type\": \"string\",\"values\": [\"Nouvelle-Calédonie\",\"Republic of Cote D'Ivoire\",\"República Bolivariana de Venezuela\",\"République Togolaise\"]},{\"attribute\": \"gdp_md_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10040,103900,105.1,10600,10670,107700,1078,108200,1100,110300,114100,11500,11610,116700,11810,11950.77,119500,12250,12710,12830,1300000,13160,13210,13227,13250,1335000,136600,13980,1403000,14060,14590,149100,15094000,1526,15350,1563000,15860,16,16790,17500,175800,17820,1823000,184300,18770,18780,188400,1885,18940,193500,196600,1977704,1993000,20130,201400,20250,203600,20640,208627,20910,21110,2128000,21510,21810,21980,22270,224000,2266000,22700,2272,232900,241700,244500,247300,2520,2536,265200,27060,271400,27410,276400,27940,28890,29010,2918000,2966,29700,29780,3102,31080,3158,31610,316700,317500,3198,3293,329500,3297000,335400],\"min\": -99,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 3,\"type\": \"number\",\"values\": [-99,0,2009],\"min\": -99,\"max\": 2009},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"gu_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"homepart\",\"count\": 2,\"type\": \"number\",\"values\": [-99,1],\"min\": -99,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 5,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\",\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AQ\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FK\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\"]},{\"attribute\": \"iso_a3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESH\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"iso_n3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"004\",\"008\",\"010\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"158\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"260\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\"]},{\"attribute\": \"labelrank\",\"count\": 6,\"type\": \"number\",\"values\": [2,3,4,5,6,7],\"min\": 2,\"max\": 7},{\"attribute\": \"lastcensus\",\"count\": 27,\"type\": \"number\",\"values\": [-99,1970,1979,1981,1983,1984,1987,1989,1991,1993,1995,1996,1997,1998,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012],\"min\": -99,\"max\": 2012},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 21,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,20,22,24,32,35,4,5,6,7,8,9],\"min\": 4,\"max\": 35},{\"attribute\": \"mapcolor13\",\"count\": 14,\"type\": \"number\",\"values\": [-99,1,10,11,12,13,2,3,4,5,6,7,8,9],\"min\": -99,\"max\": 13},{\"attribute\": \"mapcolor7\",\"count\": 7,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7],\"min\": 1,\"max\": 7},{\"attribute\": \"mapcolor8\",\"count\": 8,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8],\"min\": 1,\"max\": 8},{\"attribute\": \"mapcolor9\",\"count\": 9,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 9},{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]},{\"attribute\": \"name_alt\",\"count\": 2,\"type\": \"string\",\"values\": [\"East Timor\",\"Islas Malvinas\"]},{\"attribute\": \"name_len\",\"count\": 16,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,19,20,22,4,5,6,7,8,9],\"min\": 4,\"max\": 22},{\"attribute\": \"name_long\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"name_sort\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo, Dem. Rep.\",\"Congo, Rep.\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Cyprus, Northern\",\"Czech Republic\",\"Côte d'Ivoire\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt, Arab Rep.\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran, Islamic Rep.\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea, Dem. Rep.\",\"Korea, Rep.\",\"Kosovo\",\"Kuwait\",\"Kyrgyz Republic\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia, FYR\",\"Madagascar\",\"Malawi\"]},{\"attribute\": \"note_adm0\",\"count\": 6,\"type\": \"string\",\"values\": [\"Commonwealth of U.S.A.\",\"Den.\",\"Fr.\",\"Partial self-admin.\",\"Self admin.\",\"U.K.\"]},{\"attribute\": \"note_brk\",\"count\": 8,\"type\": \"string\",\"values\": [\"Admin. by U.K.; Claimed by Argentina\",\"Multiple claims held in abeyance\",\"Partial self-admin.\",\"Self admin.; Claimed by China\",\"Self admin.; Claimed by Cyprus\",\"Self admin.; Claimed by Morocco\",\"Self admin.; Claimed by Serbia\",\"Self admin.; Claimed by Somalia\"]},{\"attribute\": \"pop_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10057975,10211904,10329208,10414336,10473282,10486339,10625176,10707924,10737428,111211789,1123913,1131612,11451652,1166079220,11862740,12619600,12666987,127078679,12799293,1299371,1310000,13276517,1338612970,13711597,140,140041247,14268711,14494293,14573101,149229090,1514993,15306252,1533964,15399437,156050883,15746232,16601707,16715999,176242949,1782893,1804838,18879301,198739269,1990876,2005692,20178485,20617068,20653556,2066718,2108665,21262641,2130819,21324791,21669278,218519,22215421,2231503,22665345,227436,22974347,23822783,23832495,240271522,25715819,25946220,265100,26814843,2691158,27606007,2825928,28400000,28563377,28686633,29546963,2967004,3041142,306694,307899,309156,31129225,3129486,313973000,3140,32369558,33487208,3360474,34178188,3418085,3441790,34859364,3494382,3500000,3555179,3639453,3802,38482919,388190,39002772,3971020],\"min\": -99,\"max\": 1338612970},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 172,\"type\": \"string\",\"values\": [\"A\",\"AE\",\"AF\",\"AL\",\"AO\",\"AQ\",\"AR\",\"ARM\",\"AU\",\"AZ\",\"B\",\"BD\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"BiH\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"D\",\"DJ\",\"DK\",\"DO\",\"DRC\",\"DZ\",\"E\",\"EC\",\"EG\",\"ER\",\"EST\",\"ET\",\"F\",\"FIN\",\"FJ\",\"FK\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"I\",\"IND\",\"INDO\",\"IRL\",\"IRN\",\"IRQ\",\"IS\",\"J\",\"KE\",\"KG\",\"KH\",\"KO\",\"KP\",\"KR\",\"KW\",\"KZ\",\"L\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\",\"MG\",\"MK\"]},{\"attribute\": \"region_un\",\"count\": 7,\"type\": \"string\",\"values\": [\"Africa\",\"Americas\",\"Antarctica\",\"Asia\",\"Europe\",\"Oceania\",\"Seven seas (open ocean)\"]},{\"attribute\": \"region_wb\",\"count\": 8,\"type\": \"string\",\"values\": [\"Antarctica\",\"East Asia & Pacific\",\"Europe & Central Asia\",\"Latin America & Caribbean\",\"Middle East & North Africa\",\"North America\",\"South Asia\",\"Sub-Saharan Africa\"]},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [1,3],\"min\": 1,\"max\": 3},{\"attribute\": \"sov_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"AU1\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CH1\",\"CHE\",\"CHL\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DN1\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FI1\",\"FJI\",\"FR1\",\"GAB\",\"GB1\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\"]},{\"attribute\": \"sovereignt\",\"count\": 171,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\",\"Moldova\",\"Mongolia\",\"Montenegro\"]},{\"attribute\": \"su_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"su_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"subregion\",\"count\": 22,\"type\": \"string\",\"values\": [\"Antarctica\",\"Australia and New Zealand\",\"Caribbean\",\"Central America\",\"Central Asia\",\"Eastern Africa\",\"Eastern Asia\",\"Eastern Europe\",\"Melanesia\",\"Middle Africa\",\"Northern Africa\",\"Northern America\",\"Northern Europe\",\"Seven seas (open ocean)\",\"South America\",\"South-Eastern Asia\",\"Southern Africa\",\"Southern Asia\",\"Southern Europe\",\"Western Africa\",\"Western Asia\",\"Western Europe\"]},{\"attribute\": \"subunit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"tiny\",\"count\": 5,\"type\": \"number\",\"values\": [-99,2,3,4,5],\"min\": -99,\"max\": 5},{\"attribute\": \"type\",\"count\": 5,\"type\": \"string\",\"values\": [\"Country\",\"Dependency\",\"Disputed\",\"Indeterminate\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 172,\"type\": \"string\",\"values\": [\"-099\",\"004\",\"008\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\",\"458\",\"466\",\"478\"]},{\"attribute\": \"wb_a2\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"GZ\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KV\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\"]},{\"attribute\": \"wb_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KSV\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\",\"MKD\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json index c56bdfe43..affad638d 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json.check.mbtiles -ae -zg -M5000 --drop-fraction-as-needed tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"formal_fr\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_alt\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_adm0\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 61,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afg.\",\"Alb.\",\"Alg.\",\"Ang.\",\"Ant.\",\"Arg.\",\"Arm.\",\"Aust.\",\"Auz.\",\"Aze.\",\"B.F.\",\"B.H.\",\"Bang.\",\"Bela.\",\"Belg.\",\"Belize\",\"Benin\",\"Bhs.\",\"Bhutan\",\"Bolivia\",\"Brazil\",\"Brunei\",\"Bulg.\",\"Bur.\",\"Bwa.\",\"C.A.R.\",\"C.R.\",\"Cam.\",\"Camb.\",\"Can.\",\"Chad\",\"Chile\",\"China\",\"Col.\",\"Cro.\",\"Cuba\",\"Cyp.\",\"Cz. Rep.\",\"D.R.C.\",\"Den.\",\"Dji.\",\"Dom. Rep.\",\"Ecu.\",\"Egypt\",\"El. S.\",\"Eq. G.\",\"Erit.\",\"Est.\",\"Eth.\",\"Fiji\",\"Fin.\",\"Flk. Is.\",\"Fr.\",\"Fr. S.A.L.\",\"Gabon\",\"Gambia\",\"Geo.\",\"Ger.\",\"Ghana\",\"Gin.\",\"GnB.\",\"Greece\",\"Grlnd.\",\"Guat.\",\"Guy.\",\"Haiti\",\"Hond.\",\"Hun.\",\"I.C.\",\"Iceland\",\"India\",\"Indo.\",\"Iran\",\"Iraq\",\"Ire.\",\"Isr.\",\"Italy\",\"Jam.\",\"Japan\",\"Jord.\",\"Kaz.\",\"Ken.\",\"Kgz.\",\"Kos.\",\"Kwt.\",\"Laos\",\"Lat.\",\"Leb.\",\"Les.\",\"Liberia\",\"Libya\",\"Lith.\",\"Lux.\",\"Mad.\",\"Mal.\",\"Malay.\",\"Mali\",\"Mda.\",\"Mex.\",\"Mkd.\"]},{\"attribute\": \"abbrev_len\",\"count\": 8,\"type\": \"number\",\"values\": [10,3,4,5,6,7,8,9],\"min\": 3,\"max\": 10},{\"attribute\": \"adm0_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 173,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 175,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"brk_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"B12\",\"B20\",\"B28\",\"B30\",\"B57\",\"B77\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. and Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\"]},{\"attribute\": \"continent\",\"count\": 8,\"type\": \"string\",\"values\": [\"Africa\",\"Antarctica\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"Seven seas (open ocean)\",\"South America\"]},{\"attribute\": \"economy\",\"count\": 7,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"2. Developed region: nonG7\",\"3. Emerging region: BRIC\",\"4. Emerging region: MIKT\",\"5. Emerging region: G20\",\"6. Developing region\",\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 174,\"type\": \"string\",\"values\": [\"Arab Republic of Egypt\",\"Argentine Republic\",\"Belize\",\"Bolivarian Republic of Venezuela\",\"Bosnia and Herzegovina\",\"Burkina Faso\",\"Canada\",\"Central African Republic\",\"Co-operative Republic of Guyana\",\"Commonwealth of Australia\",\"Commonwealth of Puerto Rico\",\"Commonwealth of the Bahamas\",\"Czech Republic\",\"Democratic People's Republic of Korea\",\"Democratic Republic of Timor-Leste\",\"Democratic Republic of the Congo\",\"Democratic Socialist Republic of Sri Lanka\",\"Dominican Republic\",\"Falkland Islands\",\"Federal Democratic Republic of Ethiopia\",\"Federal Republic of Germany\",\"Federal Republic of Nigeria\",\"Federal Republic of Somalia\",\"Federative Republic of Brazil\",\"Former Yugoslav Republic of Macedonia\",\"French Republic\",\"Gabonese Republic\",\"Georgia\",\"Grand Duchy of Luxembourg\",\"Greenland\",\"Hashemite Kingdom of Jordan\",\"Hellenic Republic\",\"Independent State of Papua New Guinea\",\"Ireland\",\"Islamic Republic of Iran\",\"Islamic Republic of Mauritania\",\"Islamic Republic of Pakistan\",\"Islamic State of Afghanistan\",\"Italian Republic\",\"Jamaica\",\"Japan\",\"Kingdom of Belgium\",\"Kingdom of Bhutan\",\"Kingdom of Cambodia\",\"Kingdom of Denmark\",\"Kingdom of Lesotho\",\"Kingdom of Morocco\",\"Kingdom of Norway\",\"Kingdom of Saudi Arabia\",\"Kingdom of Spain\",\"Kingdom of Swaziland\",\"Kingdom of Sweden\",\"Kingdom of Thailand\",\"Kingdom of the Netherlands\",\"Kyrgyz Republic\",\"Lao People's Democratic Republic\",\"Lebanese Republic\",\"Libya\",\"Malaysia\",\"Mongolia\",\"Montenegro\",\"Negara Brunei Darussalam\",\"Nepal\",\"New Caledonia\",\"New Zealand\",\"Oriental Republic of Uruguay\",\"People's Democratic Republic of Algeria\",\"People's Republic of Angola\",\"People's Republic of Bangladesh\",\"People's Republic of China\",\"Plurinational State of Bolivia\",\"Portuguese Republic\",\"Republic of Albania\",\"Republic of Armenia\",\"Republic of Austria\",\"Republic of Azerbaijan\",\"Republic of Belarus\",\"Republic of Benin\",\"Republic of Botswana\",\"Republic of Bulgaria\",\"Republic of Burundi\",\"Republic of Cameroon\",\"Republic of Chad\",\"Republic of Chile\",\"Republic of Colombia\",\"Republic of Congo\",\"Republic of Costa Rica\",\"Republic of Croatia\",\"Republic of Cuba\",\"Republic of Cyprus\",\"Republic of Djibouti\",\"Republic of Ecuador\",\"Republic of El Salvador\",\"Republic of Equatorial Guinea\",\"Republic of Estonia\",\"Republic of Fiji\",\"Republic of Finland\",\"Republic of Ghana\",\"Republic of Guatemala\",\"Republic of Guinea\"]},{\"attribute\": \"formal_fr\",\"count\": 4,\"type\": \"string\",\"values\": [\"Nouvelle-Calédonie\",\"Republic of Cote D'Ivoire\",\"República Bolivariana de Venezuela\",\"République Togolaise\"]},{\"attribute\": \"gdp_md_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10040,103900,105.1,10600,10670,107700,1078,108200,1100,110300,114100,11500,11610,116700,11810,11950.77,119500,12250,12710,12830,1300000,13160,13210,13227,13250,1335000,136600,13980,1403000,14060,14590,149100,15094000,1526,15350,1563000,15860,16,16790,17500,175800,17820,1823000,184300,18770,18780,188400,1885,18940,193500,196600,1977704,1993000,20130,201400,20250,203600,20640,208627,20910,21110,2128000,21510,21810,21980,22270,224000,2266000,22700,2272,232900,241700,244500,247300,2520,2536,265200,27060,271400,27410,276400,27940,28890,29010,2918000,2966,29700,29780,3102,31080,3158,31610,316700,317500,3198,3293,329500,3297000,335400],\"min\": -99,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 3,\"type\": \"number\",\"values\": [-99,0,2009],\"min\": -99,\"max\": 2009},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"gu_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"homepart\",\"count\": 2,\"type\": \"number\",\"values\": [-99,1],\"min\": -99,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 5,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\",\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AQ\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FK\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\"]},{\"attribute\": \"iso_a3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESH\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"iso_n3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"004\",\"008\",\"010\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"158\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"260\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\"]},{\"attribute\": \"labelrank\",\"count\": 6,\"type\": \"number\",\"values\": [2,3,4,5,6,7],\"min\": 2,\"max\": 7},{\"attribute\": \"lastcensus\",\"count\": 27,\"type\": \"number\",\"values\": [-99,1970,1979,1981,1983,1984,1987,1989,1991,1993,1995,1996,1997,1998,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012],\"min\": -99,\"max\": 2012},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 21,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,20,22,24,32,35,4,5,6,7,8,9],\"min\": 4,\"max\": 35},{\"attribute\": \"mapcolor13\",\"count\": 14,\"type\": \"number\",\"values\": [-99,1,10,11,12,13,2,3,4,5,6,7,8,9],\"min\": -99,\"max\": 13},{\"attribute\": \"mapcolor7\",\"count\": 7,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7],\"min\": 1,\"max\": 7},{\"attribute\": \"mapcolor8\",\"count\": 8,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8],\"min\": 1,\"max\": 8},{\"attribute\": \"mapcolor9\",\"count\": 9,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 9},{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]},{\"attribute\": \"name_alt\",\"count\": 2,\"type\": \"string\",\"values\": [\"East Timor\",\"Islas Malvinas\"]},{\"attribute\": \"name_len\",\"count\": 16,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,19,20,22,4,5,6,7,8,9],\"min\": 4,\"max\": 22},{\"attribute\": \"name_long\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"name_sort\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo, Dem. Rep.\",\"Congo, Rep.\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Cyprus, Northern\",\"Czech Republic\",\"Côte d'Ivoire\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt, Arab Rep.\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran, Islamic Rep.\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea, Dem. Rep.\",\"Korea, Rep.\",\"Kosovo\",\"Kuwait\",\"Kyrgyz Republic\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia, FYR\",\"Madagascar\",\"Malawi\"]},{\"attribute\": \"note_adm0\",\"count\": 6,\"type\": \"string\",\"values\": [\"Commonwealth of U.S.A.\",\"Den.\",\"Fr.\",\"Partial self-admin.\",\"Self admin.\",\"U.K.\"]},{\"attribute\": \"note_brk\",\"count\": 8,\"type\": \"string\",\"values\": [\"Admin. by U.K.; Claimed by Argentina\",\"Multiple claims held in abeyance\",\"Partial self-admin.\",\"Self admin.; Claimed by China\",\"Self admin.; Claimed by Cyprus\",\"Self admin.; Claimed by Morocco\",\"Self admin.; Claimed by Serbia\",\"Self admin.; Claimed by Somalia\"]},{\"attribute\": \"pop_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10057975,10211904,10329208,10414336,10473282,10486339,10625176,10707924,10737428,111211789,1123913,1131612,11451652,1166079220,11862740,12619600,12666987,127078679,12799293,1299371,1310000,13276517,1338612970,13711597,140,140041247,14268711,14494293,14573101,149229090,1514993,15306252,1533964,15399437,156050883,15746232,16601707,16715999,176242949,1782893,1804838,18879301,198739269,1990876,2005692,20178485,20617068,20653556,2066718,2108665,21262641,2130819,21324791,21669278,218519,22215421,2231503,22665345,227436,22974347,23822783,23832495,240271522,25715819,25946220,265100,26814843,2691158,27606007,2825928,28400000,28563377,28686633,29546963,2967004,3041142,306694,307899,309156,31129225,3129486,313973000,3140,32369558,33487208,3360474,34178188,3418085,3441790,34859364,3494382,3500000,3555179,3639453,3802,38482919,388190,39002772,3971020],\"min\": -99,\"max\": 1338612970},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 172,\"type\": \"string\",\"values\": [\"A\",\"AE\",\"AF\",\"AL\",\"AO\",\"AQ\",\"AR\",\"ARM\",\"AU\",\"AZ\",\"B\",\"BD\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"BiH\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"D\",\"DJ\",\"DK\",\"DO\",\"DRC\",\"DZ\",\"E\",\"EC\",\"EG\",\"ER\",\"EST\",\"ET\",\"F\",\"FIN\",\"FJ\",\"FK\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"I\",\"IND\",\"INDO\",\"IRL\",\"IRN\",\"IRQ\",\"IS\",\"J\",\"KE\",\"KG\",\"KH\",\"KO\",\"KP\",\"KR\",\"KW\",\"KZ\",\"L\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\",\"MG\",\"MK\"]},{\"attribute\": \"region_un\",\"count\": 7,\"type\": \"string\",\"values\": [\"Africa\",\"Americas\",\"Antarctica\",\"Asia\",\"Europe\",\"Oceania\",\"Seven seas (open ocean)\"]},{\"attribute\": \"region_wb\",\"count\": 8,\"type\": \"string\",\"values\": [\"Antarctica\",\"East Asia & Pacific\",\"Europe & Central Asia\",\"Latin America & Caribbean\",\"Middle East & North Africa\",\"North America\",\"South Asia\",\"Sub-Saharan Africa\"]},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [1,3],\"min\": 1,\"max\": 3},{\"attribute\": \"sov_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"AU1\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CH1\",\"CHE\",\"CHL\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DN1\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FI1\",\"FJI\",\"FR1\",\"GAB\",\"GB1\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\"]},{\"attribute\": \"sovereignt\",\"count\": 171,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\",\"Moldova\",\"Mongolia\",\"Montenegro\"]},{\"attribute\": \"su_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"su_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"subregion\",\"count\": 22,\"type\": \"string\",\"values\": [\"Antarctica\",\"Australia and New Zealand\",\"Caribbean\",\"Central America\",\"Central Asia\",\"Eastern Africa\",\"Eastern Asia\",\"Eastern Europe\",\"Melanesia\",\"Middle Africa\",\"Northern Africa\",\"Northern America\",\"Northern Europe\",\"Seven seas (open ocean)\",\"South America\",\"South-Eastern Asia\",\"Southern Africa\",\"Southern Asia\",\"Southern Europe\",\"Western Africa\",\"Western Asia\",\"Western Europe\"]},{\"attribute\": \"subunit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"tiny\",\"count\": 5,\"type\": \"number\",\"values\": [-99,2,3,4,5],\"min\": -99,\"max\": 5},{\"attribute\": \"type\",\"count\": 5,\"type\": \"string\",\"values\": [\"Country\",\"Dependency\",\"Disputed\",\"Indeterminate\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 172,\"type\": \"string\",\"values\": [\"-099\",\"004\",\"008\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\",\"458\",\"466\",\"478\"]},{\"attribute\": \"wb_a2\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"GZ\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KV\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\"]},{\"attribute\": \"wb_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KSV\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\",\"MKD\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json index 4c0b844e8..ff89bc098 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json.check.mbtiles -ae -zg -M5000 --drop-smallest-as-needed tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"formal_fr\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_alt\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_adm0\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 61,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afg.\",\"Alb.\",\"Alg.\",\"Ang.\",\"Ant.\",\"Arg.\",\"Arm.\",\"Aust.\",\"Auz.\",\"Aze.\",\"B.F.\",\"B.H.\",\"Bang.\",\"Bela.\",\"Belg.\",\"Belize\",\"Benin\",\"Bhs.\",\"Bhutan\",\"Bolivia\",\"Brazil\",\"Brunei\",\"Bulg.\",\"Bur.\",\"Bwa.\",\"C.A.R.\",\"C.R.\",\"Cam.\",\"Camb.\",\"Can.\",\"Chad\",\"Chile\",\"China\",\"Col.\",\"Cro.\",\"Cuba\",\"Cyp.\",\"Cz. Rep.\",\"D.R.C.\",\"Den.\",\"Dji.\",\"Dom. Rep.\",\"Ecu.\",\"Egypt\",\"El. S.\",\"Eq. G.\",\"Erit.\",\"Est.\",\"Eth.\",\"Fiji\",\"Fin.\",\"Flk. Is.\",\"Fr.\",\"Fr. S.A.L.\",\"Gabon\",\"Gambia\",\"Geo.\",\"Ger.\",\"Ghana\",\"Gin.\",\"GnB.\",\"Greece\",\"Grlnd.\",\"Guat.\",\"Guy.\",\"Haiti\",\"Hond.\",\"Hun.\",\"I.C.\",\"Iceland\",\"India\",\"Indo.\",\"Iran\",\"Iraq\",\"Ire.\",\"Isr.\",\"Italy\",\"Jam.\",\"Japan\",\"Jord.\",\"Kaz.\",\"Ken.\",\"Kgz.\",\"Kos.\",\"Kwt.\",\"Laos\",\"Lat.\",\"Leb.\",\"Les.\",\"Liberia\",\"Libya\",\"Lith.\",\"Lux.\",\"Mad.\",\"Mal.\",\"Malay.\",\"Mali\",\"Mda.\",\"Mex.\",\"Mkd.\"]},{\"attribute\": \"abbrev_len\",\"count\": 8,\"type\": \"number\",\"values\": [10,3,4,5,6,7,8,9],\"min\": 3,\"max\": 10},{\"attribute\": \"adm0_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 173,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 175,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"brk_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"B12\",\"B20\",\"B28\",\"B30\",\"B57\",\"B77\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. and Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\"]},{\"attribute\": \"continent\",\"count\": 8,\"type\": \"string\",\"values\": [\"Africa\",\"Antarctica\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"Seven seas (open ocean)\",\"South America\"]},{\"attribute\": \"economy\",\"count\": 7,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"2. Developed region: nonG7\",\"3. Emerging region: BRIC\",\"4. Emerging region: MIKT\",\"5. Emerging region: G20\",\"6. Developing region\",\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 174,\"type\": \"string\",\"values\": [\"Arab Republic of Egypt\",\"Argentine Republic\",\"Belize\",\"Bolivarian Republic of Venezuela\",\"Bosnia and Herzegovina\",\"Burkina Faso\",\"Canada\",\"Central African Republic\",\"Co-operative Republic of Guyana\",\"Commonwealth of Australia\",\"Commonwealth of Puerto Rico\",\"Commonwealth of the Bahamas\",\"Czech Republic\",\"Democratic People's Republic of Korea\",\"Democratic Republic of Timor-Leste\",\"Democratic Republic of the Congo\",\"Democratic Socialist Republic of Sri Lanka\",\"Dominican Republic\",\"Falkland Islands\",\"Federal Democratic Republic of Ethiopia\",\"Federal Republic of Germany\",\"Federal Republic of Nigeria\",\"Federal Republic of Somalia\",\"Federative Republic of Brazil\",\"Former Yugoslav Republic of Macedonia\",\"French Republic\",\"Gabonese Republic\",\"Georgia\",\"Grand Duchy of Luxembourg\",\"Greenland\",\"Hashemite Kingdom of Jordan\",\"Hellenic Republic\",\"Independent State of Papua New Guinea\",\"Ireland\",\"Islamic Republic of Iran\",\"Islamic Republic of Mauritania\",\"Islamic Republic of Pakistan\",\"Islamic State of Afghanistan\",\"Italian Republic\",\"Jamaica\",\"Japan\",\"Kingdom of Belgium\",\"Kingdom of Bhutan\",\"Kingdom of Cambodia\",\"Kingdom of Denmark\",\"Kingdom of Lesotho\",\"Kingdom of Morocco\",\"Kingdom of Norway\",\"Kingdom of Saudi Arabia\",\"Kingdom of Spain\",\"Kingdom of Swaziland\",\"Kingdom of Sweden\",\"Kingdom of Thailand\",\"Kingdom of the Netherlands\",\"Kyrgyz Republic\",\"Lao People's Democratic Republic\",\"Lebanese Republic\",\"Libya\",\"Malaysia\",\"Mongolia\",\"Montenegro\",\"Negara Brunei Darussalam\",\"Nepal\",\"New Caledonia\",\"New Zealand\",\"Oriental Republic of Uruguay\",\"People's Democratic Republic of Algeria\",\"People's Republic of Angola\",\"People's Republic of Bangladesh\",\"People's Republic of China\",\"Plurinational State of Bolivia\",\"Portuguese Republic\",\"Republic of Albania\",\"Republic of Armenia\",\"Republic of Austria\",\"Republic of Azerbaijan\",\"Republic of Belarus\",\"Republic of Benin\",\"Republic of Botswana\",\"Republic of Bulgaria\",\"Republic of Burundi\",\"Republic of Cameroon\",\"Republic of Chad\",\"Republic of Chile\",\"Republic of Colombia\",\"Republic of Congo\",\"Republic of Costa Rica\",\"Republic of Croatia\",\"Republic of Cuba\",\"Republic of Cyprus\",\"Republic of Djibouti\",\"Republic of Ecuador\",\"Republic of El Salvador\",\"Republic of Equatorial Guinea\",\"Republic of Estonia\",\"Republic of Fiji\",\"Republic of Finland\",\"Republic of Ghana\",\"Republic of Guatemala\",\"Republic of Guinea\"]},{\"attribute\": \"formal_fr\",\"count\": 4,\"type\": \"string\",\"values\": [\"Nouvelle-Calédonie\",\"Republic of Cote D'Ivoire\",\"República Bolivariana de Venezuela\",\"République Togolaise\"]},{\"attribute\": \"gdp_md_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10040,103900,105.1,10600,10670,107700,1078,108200,1100,110300,114100,11500,11610,116700,11810,11950.77,119500,12250,12710,12830,1300000,13160,13210,13227,13250,1335000,136600,13980,1403000,14060,14590,149100,15094000,1526,15350,1563000,15860,16,16790,17500,175800,17820,1823000,184300,18770,18780,188400,1885,18940,193500,196600,1977704,1993000,20130,201400,20250,203600,20640,208627,20910,21110,2128000,21510,21810,21980,22270,224000,2266000,22700,2272,232900,241700,244500,247300,2520,2536,265200,27060,271400,27410,276400,27940,28890,29010,2918000,2966,29700,29780,3102,31080,3158,31610,316700,317500,3198,3293,329500,3297000,335400],\"min\": -99,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 3,\"type\": \"number\",\"values\": [-99,0,2009],\"min\": -99,\"max\": 2009},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"gu_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"homepart\",\"count\": 2,\"type\": \"number\",\"values\": [-99,1],\"min\": -99,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 5,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\",\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AQ\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FK\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\"]},{\"attribute\": \"iso_a3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESH\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"iso_n3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"004\",\"008\",\"010\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"158\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"260\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\"]},{\"attribute\": \"labelrank\",\"count\": 6,\"type\": \"number\",\"values\": [2,3,4,5,6,7],\"min\": 2,\"max\": 7},{\"attribute\": \"lastcensus\",\"count\": 27,\"type\": \"number\",\"values\": [-99,1970,1979,1981,1983,1984,1987,1989,1991,1993,1995,1996,1997,1998,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012],\"min\": -99,\"max\": 2012},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 21,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,20,22,24,32,35,4,5,6,7,8,9],\"min\": 4,\"max\": 35},{\"attribute\": \"mapcolor13\",\"count\": 14,\"type\": \"number\",\"values\": [-99,1,10,11,12,13,2,3,4,5,6,7,8,9],\"min\": -99,\"max\": 13},{\"attribute\": \"mapcolor7\",\"count\": 7,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7],\"min\": 1,\"max\": 7},{\"attribute\": \"mapcolor8\",\"count\": 8,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8],\"min\": 1,\"max\": 8},{\"attribute\": \"mapcolor9\",\"count\": 9,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 9},{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]},{\"attribute\": \"name_alt\",\"count\": 2,\"type\": \"string\",\"values\": [\"East Timor\",\"Islas Malvinas\"]},{\"attribute\": \"name_len\",\"count\": 16,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,19,20,22,4,5,6,7,8,9],\"min\": 4,\"max\": 22},{\"attribute\": \"name_long\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"name_sort\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo, Dem. Rep.\",\"Congo, Rep.\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Cyprus, Northern\",\"Czech Republic\",\"Côte d'Ivoire\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt, Arab Rep.\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran, Islamic Rep.\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea, Dem. Rep.\",\"Korea, Rep.\",\"Kosovo\",\"Kuwait\",\"Kyrgyz Republic\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia, FYR\",\"Madagascar\",\"Malawi\"]},{\"attribute\": \"note_adm0\",\"count\": 6,\"type\": \"string\",\"values\": [\"Commonwealth of U.S.A.\",\"Den.\",\"Fr.\",\"Partial self-admin.\",\"Self admin.\",\"U.K.\"]},{\"attribute\": \"note_brk\",\"count\": 8,\"type\": \"string\",\"values\": [\"Admin. by U.K.; Claimed by Argentina\",\"Multiple claims held in abeyance\",\"Partial self-admin.\",\"Self admin.; Claimed by China\",\"Self admin.; Claimed by Cyprus\",\"Self admin.; Claimed by Morocco\",\"Self admin.; Claimed by Serbia\",\"Self admin.; Claimed by Somalia\"]},{\"attribute\": \"pop_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10057975,10211904,10329208,10414336,10473282,10486339,10625176,10707924,10737428,111211789,1123913,1131612,11451652,1166079220,11862740,12619600,12666987,127078679,12799293,1299371,1310000,13276517,1338612970,13711597,140,140041247,14268711,14494293,14573101,149229090,1514993,15306252,1533964,15399437,156050883,15746232,16601707,16715999,176242949,1782893,1804838,18879301,198739269,1990876,2005692,20178485,20617068,20653556,2066718,2108665,21262641,2130819,21324791,21669278,218519,22215421,2231503,22665345,227436,22974347,23822783,23832495,240271522,25715819,25946220,265100,26814843,2691158,27606007,2825928,28400000,28563377,28686633,29546963,2967004,3041142,306694,307899,309156,31129225,3129486,313973000,3140,32369558,33487208,3360474,34178188,3418085,3441790,34859364,3494382,3500000,3555179,3639453,3802,38482919,388190,39002772,3971020],\"min\": -99,\"max\": 1338612970},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 172,\"type\": \"string\",\"values\": [\"A\",\"AE\",\"AF\",\"AL\",\"AO\",\"AQ\",\"AR\",\"ARM\",\"AU\",\"AZ\",\"B\",\"BD\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"BiH\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"D\",\"DJ\",\"DK\",\"DO\",\"DRC\",\"DZ\",\"E\",\"EC\",\"EG\",\"ER\",\"EST\",\"ET\",\"F\",\"FIN\",\"FJ\",\"FK\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"I\",\"IND\",\"INDO\",\"IRL\",\"IRN\",\"IRQ\",\"IS\",\"J\",\"KE\",\"KG\",\"KH\",\"KO\",\"KP\",\"KR\",\"KW\",\"KZ\",\"L\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\",\"MG\",\"MK\"]},{\"attribute\": \"region_un\",\"count\": 7,\"type\": \"string\",\"values\": [\"Africa\",\"Americas\",\"Antarctica\",\"Asia\",\"Europe\",\"Oceania\",\"Seven seas (open ocean)\"]},{\"attribute\": \"region_wb\",\"count\": 8,\"type\": \"string\",\"values\": [\"Antarctica\",\"East Asia & Pacific\",\"Europe & Central Asia\",\"Latin America & Caribbean\",\"Middle East & North Africa\",\"North America\",\"South Asia\",\"Sub-Saharan Africa\"]},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [1,3],\"min\": 1,\"max\": 3},{\"attribute\": \"sov_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"AU1\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CH1\",\"CHE\",\"CHL\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DN1\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FI1\",\"FJI\",\"FR1\",\"GAB\",\"GB1\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\"]},{\"attribute\": \"sovereignt\",\"count\": 171,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\",\"Moldova\",\"Mongolia\",\"Montenegro\"]},{\"attribute\": \"su_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"su_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"subregion\",\"count\": 22,\"type\": \"string\",\"values\": [\"Antarctica\",\"Australia and New Zealand\",\"Caribbean\",\"Central America\",\"Central Asia\",\"Eastern Africa\",\"Eastern Asia\",\"Eastern Europe\",\"Melanesia\",\"Middle Africa\",\"Northern Africa\",\"Northern America\",\"Northern Europe\",\"Seven seas (open ocean)\",\"South America\",\"South-Eastern Asia\",\"Southern Africa\",\"Southern Asia\",\"Southern Europe\",\"Western Africa\",\"Western Asia\",\"Western Europe\"]},{\"attribute\": \"subunit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"tiny\",\"count\": 5,\"type\": \"number\",\"values\": [-99,2,3,4,5],\"min\": -99,\"max\": 5},{\"attribute\": \"type\",\"count\": 5,\"type\": \"string\",\"values\": [\"Country\",\"Dependency\",\"Disputed\",\"Indeterminate\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 172,\"type\": \"string\",\"values\": [\"-099\",\"004\",\"008\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\",\"458\",\"466\",\"478\"]},{\"attribute\": \"wb_a2\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"GZ\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KV\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\"]},{\"attribute\": \"wb_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KSV\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\",\"MKD\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json index 4ac5c1363..6e6a636a4 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json.check.mbtiles -ae -zg -M5000 --force-feature-limit tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"formal_fr\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_alt\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_adm0\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 61,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afg.\",\"Alb.\",\"Alg.\",\"Ang.\",\"Ant.\",\"Arg.\",\"Arm.\",\"Aust.\",\"Auz.\",\"Aze.\",\"B.F.\",\"B.H.\",\"Bang.\",\"Bela.\",\"Belg.\",\"Belize\",\"Benin\",\"Bhs.\",\"Bhutan\",\"Bolivia\",\"Brazil\",\"Brunei\",\"Bulg.\",\"Bur.\",\"Bwa.\",\"C.A.R.\",\"C.R.\",\"Cam.\",\"Camb.\",\"Can.\",\"Chad\",\"Chile\",\"China\",\"Col.\",\"Cro.\",\"Cuba\",\"Cyp.\",\"Cz. Rep.\",\"D.R.C.\",\"Den.\",\"Dji.\",\"Dom. Rep.\",\"Ecu.\",\"Egypt\",\"El. S.\",\"Eq. G.\",\"Erit.\",\"Est.\",\"Eth.\",\"Fiji\",\"Fin.\",\"Flk. Is.\",\"Fr.\",\"Fr. S.A.L.\",\"Gabon\",\"Gambia\",\"Geo.\",\"Ger.\",\"Ghana\",\"Gin.\",\"GnB.\",\"Greece\",\"Grlnd.\",\"Guat.\",\"Guy.\",\"Haiti\",\"Hond.\",\"Hun.\",\"I.C.\",\"Iceland\",\"India\",\"Indo.\",\"Iran\",\"Iraq\",\"Ire.\",\"Isr.\",\"Italy\",\"Jam.\",\"Japan\",\"Jord.\",\"Kaz.\",\"Ken.\",\"Kgz.\",\"Kos.\",\"Kwt.\",\"Laos\",\"Lat.\",\"Leb.\",\"Les.\",\"Liberia\",\"Libya\",\"Lith.\",\"Lux.\",\"Mad.\",\"Mal.\",\"Malay.\",\"Mali\",\"Mda.\",\"Mex.\",\"Mkd.\"]},{\"attribute\": \"abbrev_len\",\"count\": 8,\"type\": \"number\",\"values\": [10,3,4,5,6,7,8,9],\"min\": 3,\"max\": 10},{\"attribute\": \"adm0_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 173,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 175,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"brk_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"B12\",\"B20\",\"B28\",\"B30\",\"B57\",\"B77\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. and Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\"]},{\"attribute\": \"continent\",\"count\": 8,\"type\": \"string\",\"values\": [\"Africa\",\"Antarctica\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"Seven seas (open ocean)\",\"South America\"]},{\"attribute\": \"economy\",\"count\": 7,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"2. Developed region: nonG7\",\"3. Emerging region: BRIC\",\"4. Emerging region: MIKT\",\"5. Emerging region: G20\",\"6. Developing region\",\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 174,\"type\": \"string\",\"values\": [\"Arab Republic of Egypt\",\"Argentine Republic\",\"Belize\",\"Bolivarian Republic of Venezuela\",\"Bosnia and Herzegovina\",\"Burkina Faso\",\"Canada\",\"Central African Republic\",\"Co-operative Republic of Guyana\",\"Commonwealth of Australia\",\"Commonwealth of Puerto Rico\",\"Commonwealth of the Bahamas\",\"Czech Republic\",\"Democratic People's Republic of Korea\",\"Democratic Republic of Timor-Leste\",\"Democratic Republic of the Congo\",\"Democratic Socialist Republic of Sri Lanka\",\"Dominican Republic\",\"Falkland Islands\",\"Federal Democratic Republic of Ethiopia\",\"Federal Republic of Germany\",\"Federal Republic of Nigeria\",\"Federal Republic of Somalia\",\"Federative Republic of Brazil\",\"Former Yugoslav Republic of Macedonia\",\"French Republic\",\"Gabonese Republic\",\"Georgia\",\"Grand Duchy of Luxembourg\",\"Greenland\",\"Hashemite Kingdom of Jordan\",\"Hellenic Republic\",\"Independent State of Papua New Guinea\",\"Ireland\",\"Islamic Republic of Iran\",\"Islamic Republic of Mauritania\",\"Islamic Republic of Pakistan\",\"Islamic State of Afghanistan\",\"Italian Republic\",\"Jamaica\",\"Japan\",\"Kingdom of Belgium\",\"Kingdom of Bhutan\",\"Kingdom of Cambodia\",\"Kingdom of Denmark\",\"Kingdom of Lesotho\",\"Kingdom of Morocco\",\"Kingdom of Norway\",\"Kingdom of Saudi Arabia\",\"Kingdom of Spain\",\"Kingdom of Swaziland\",\"Kingdom of Sweden\",\"Kingdom of Thailand\",\"Kingdom of the Netherlands\",\"Kyrgyz Republic\",\"Lao People's Democratic Republic\",\"Lebanese Republic\",\"Libya\",\"Malaysia\",\"Mongolia\",\"Montenegro\",\"Negara Brunei Darussalam\",\"Nepal\",\"New Caledonia\",\"New Zealand\",\"Oriental Republic of Uruguay\",\"People's Democratic Republic of Algeria\",\"People's Republic of Angola\",\"People's Republic of Bangladesh\",\"People's Republic of China\",\"Plurinational State of Bolivia\",\"Portuguese Republic\",\"Republic of Albania\",\"Republic of Armenia\",\"Republic of Austria\",\"Republic of Azerbaijan\",\"Republic of Belarus\",\"Republic of Benin\",\"Republic of Botswana\",\"Republic of Bulgaria\",\"Republic of Burundi\",\"Republic of Cameroon\",\"Republic of Chad\",\"Republic of Chile\",\"Republic of Colombia\",\"Republic of Congo\",\"Republic of Costa Rica\",\"Republic of Croatia\",\"Republic of Cuba\",\"Republic of Cyprus\",\"Republic of Djibouti\",\"Republic of Ecuador\",\"Republic of El Salvador\",\"Republic of Equatorial Guinea\",\"Republic of Estonia\",\"Republic of Fiji\",\"Republic of Finland\",\"Republic of Ghana\",\"Republic of Guatemala\",\"Republic of Guinea\"]},{\"attribute\": \"formal_fr\",\"count\": 4,\"type\": \"string\",\"values\": [\"Nouvelle-Calédonie\",\"Republic of Cote D'Ivoire\",\"República Bolivariana de Venezuela\",\"République Togolaise\"]},{\"attribute\": \"gdp_md_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10040,103900,105.1,10600,10670,107700,1078,108200,1100,110300,114100,11500,11610,116700,11810,11950.77,119500,12250,12710,12830,1300000,13160,13210,13227,13250,1335000,136600,13980,1403000,14060,14590,149100,15094000,1526,15350,1563000,15860,16,16790,17500,175800,17820,1823000,184300,18770,18780,188400,1885,18940,193500,196600,1977704,1993000,20130,201400,20250,203600,20640,208627,20910,21110,2128000,21510,21810,21980,22270,224000,2266000,22700,2272,232900,241700,244500,247300,2520,2536,265200,27060,271400,27410,276400,27940,28890,29010,2918000,2966,29700,29780,3102,31080,3158,31610,316700,317500,3198,3293,329500,3297000,335400],\"min\": -99,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 3,\"type\": \"number\",\"values\": [-99,0,2009],\"min\": -99,\"max\": 2009},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"gu_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"homepart\",\"count\": 2,\"type\": \"number\",\"values\": [-99,1],\"min\": -99,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 5,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\",\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AQ\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FK\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\"]},{\"attribute\": \"iso_a3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESH\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"iso_n3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"004\",\"008\",\"010\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"158\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"260\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\"]},{\"attribute\": \"labelrank\",\"count\": 6,\"type\": \"number\",\"values\": [2,3,4,5,6,7],\"min\": 2,\"max\": 7},{\"attribute\": \"lastcensus\",\"count\": 27,\"type\": \"number\",\"values\": [-99,1970,1979,1981,1983,1984,1987,1989,1991,1993,1995,1996,1997,1998,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012],\"min\": -99,\"max\": 2012},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 21,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,20,22,24,32,35,4,5,6,7,8,9],\"min\": 4,\"max\": 35},{\"attribute\": \"mapcolor13\",\"count\": 14,\"type\": \"number\",\"values\": [-99,1,10,11,12,13,2,3,4,5,6,7,8,9],\"min\": -99,\"max\": 13},{\"attribute\": \"mapcolor7\",\"count\": 7,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7],\"min\": 1,\"max\": 7},{\"attribute\": \"mapcolor8\",\"count\": 8,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8],\"min\": 1,\"max\": 8},{\"attribute\": \"mapcolor9\",\"count\": 9,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 9},{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]},{\"attribute\": \"name_alt\",\"count\": 2,\"type\": \"string\",\"values\": [\"East Timor\",\"Islas Malvinas\"]},{\"attribute\": \"name_len\",\"count\": 16,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,19,20,22,4,5,6,7,8,9],\"min\": 4,\"max\": 22},{\"attribute\": \"name_long\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"name_sort\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo, Dem. Rep.\",\"Congo, Rep.\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Cyprus, Northern\",\"Czech Republic\",\"Côte d'Ivoire\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt, Arab Rep.\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran, Islamic Rep.\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea, Dem. Rep.\",\"Korea, Rep.\",\"Kosovo\",\"Kuwait\",\"Kyrgyz Republic\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia, FYR\",\"Madagascar\",\"Malawi\"]},{\"attribute\": \"note_adm0\",\"count\": 6,\"type\": \"string\",\"values\": [\"Commonwealth of U.S.A.\",\"Den.\",\"Fr.\",\"Partial self-admin.\",\"Self admin.\",\"U.K.\"]},{\"attribute\": \"note_brk\",\"count\": 8,\"type\": \"string\",\"values\": [\"Admin. by U.K.; Claimed by Argentina\",\"Multiple claims held in abeyance\",\"Partial self-admin.\",\"Self admin.; Claimed by China\",\"Self admin.; Claimed by Cyprus\",\"Self admin.; Claimed by Morocco\",\"Self admin.; Claimed by Serbia\",\"Self admin.; Claimed by Somalia\"]},{\"attribute\": \"pop_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10057975,10211904,10329208,10414336,10473282,10486339,10625176,10707924,10737428,111211789,1123913,1131612,11451652,1166079220,11862740,12619600,12666987,127078679,12799293,1299371,1310000,13276517,1338612970,13711597,140,140041247,14268711,14494293,14573101,149229090,1514993,15306252,1533964,15399437,156050883,15746232,16601707,16715999,176242949,1782893,1804838,18879301,198739269,1990876,2005692,20178485,20617068,20653556,2066718,2108665,21262641,2130819,21324791,21669278,218519,22215421,2231503,22665345,227436,22974347,23822783,23832495,240271522,25715819,25946220,265100,26814843,2691158,27606007,2825928,28400000,28563377,28686633,29546963,2967004,3041142,306694,307899,309156,31129225,3129486,313973000,3140,32369558,33487208,3360474,34178188,3418085,3441790,34859364,3494382,3500000,3555179,3639453,3802,38482919,388190,39002772,3971020],\"min\": -99,\"max\": 1338612970},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 172,\"type\": \"string\",\"values\": [\"A\",\"AE\",\"AF\",\"AL\",\"AO\",\"AQ\",\"AR\",\"ARM\",\"AU\",\"AZ\",\"B\",\"BD\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"BiH\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"D\",\"DJ\",\"DK\",\"DO\",\"DRC\",\"DZ\",\"E\",\"EC\",\"EG\",\"ER\",\"EST\",\"ET\",\"F\",\"FIN\",\"FJ\",\"FK\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"I\",\"IND\",\"INDO\",\"IRL\",\"IRN\",\"IRQ\",\"IS\",\"J\",\"KE\",\"KG\",\"KH\",\"KO\",\"KP\",\"KR\",\"KW\",\"KZ\",\"L\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\",\"MG\",\"MK\"]},{\"attribute\": \"region_un\",\"count\": 7,\"type\": \"string\",\"values\": [\"Africa\",\"Americas\",\"Antarctica\",\"Asia\",\"Europe\",\"Oceania\",\"Seven seas (open ocean)\"]},{\"attribute\": \"region_wb\",\"count\": 8,\"type\": \"string\",\"values\": [\"Antarctica\",\"East Asia & Pacific\",\"Europe & Central Asia\",\"Latin America & Caribbean\",\"Middle East & North Africa\",\"North America\",\"South Asia\",\"Sub-Saharan Africa\"]},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [1,3],\"min\": 1,\"max\": 3},{\"attribute\": \"sov_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"AU1\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CH1\",\"CHE\",\"CHL\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DN1\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FI1\",\"FJI\",\"FR1\",\"GAB\",\"GB1\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\"]},{\"attribute\": \"sovereignt\",\"count\": 171,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\",\"Moldova\",\"Mongolia\",\"Montenegro\"]},{\"attribute\": \"su_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"su_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"subregion\",\"count\": 22,\"type\": \"string\",\"values\": [\"Antarctica\",\"Australia and New Zealand\",\"Caribbean\",\"Central America\",\"Central Asia\",\"Eastern Africa\",\"Eastern Asia\",\"Eastern Europe\",\"Melanesia\",\"Middle Africa\",\"Northern Africa\",\"Northern America\",\"Northern Europe\",\"Seven seas (open ocean)\",\"South America\",\"South-Eastern Asia\",\"Southern Africa\",\"Southern Asia\",\"Southern Europe\",\"Western Africa\",\"Western Asia\",\"Western Europe\"]},{\"attribute\": \"subunit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"tiny\",\"count\": 5,\"type\": \"number\",\"values\": [-99,2,3,4,5],\"min\": -99,\"max\": 5},{\"attribute\": \"type\",\"count\": 5,\"type\": \"string\",\"values\": [\"Country\",\"Dependency\",\"Disputed\",\"Indeterminate\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 172,\"type\": \"string\",\"values\": [\"-099\",\"004\",\"008\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\",\"458\",\"466\",\"478\"]},{\"attribute\": \"wb_a2\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"GZ\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KV\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\"]},{\"attribute\": \"wb_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KSV\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\",\"MKD\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_admin_0_countries/out/-z0_--clip-bounding-box_-110,27,-92,52.json b/tests/ne_110m_admin_0_countries/out/-z0_--clip-bounding-box_-110,27,-92,52.json index 66748549d..82fe72535 100644 --- a/tests/ne_110m_admin_0_countries/out/-z0_--clip-bounding-box_-110,27,-92,52.json +++ b/tests/ne_110m_admin_0_countries/out/-z0_--clip-bounding-box_-110,27,-92,52.json @@ -3,6 +3,7 @@ "center": "-92.021484,27.059126,0", "description": "tests/ne_110m_admin_0_countries/out/-z0_--clip-bounding-box_-110,27,-92,52.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z0_--clip-bounding-box_-110,27,-92,52.json.check.mbtiles -z0 --clip-bounding-box -110,27,-92,52 tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 3,\"geometry\": \"Polygon\",\"attributeCount\": 57,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 3,\"type\": \"string\",\"values\": [\"Can.\",\"Mex.\",\"U.S.A.\"]},{\"attribute\": \"abbrev_len\",\"count\": 2,\"type\": \"number\",\"values\": [4,6],\"min\": 4,\"max\": 6},{\"attribute\": \"adm0_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"CAN\",\"MEX\",\"USA\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 3,\"type\": \"string\",\"values\": [\"CAN\",\"MEX\",\"USA\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 3,\"type\": \"string\",\"values\": [\"CAN\",\"MEX\",\"USA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 3,\"type\": \"string\",\"values\": [\"Canada\",\"Mexico\",\"United States of America\"]},{\"attribute\": \"brk_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"CAN\",\"MEX\",\"USA\"]},{\"attribute\": \"brk_diff\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"brk_name\",\"count\": 3,\"type\": \"string\",\"values\": [\"Canada\",\"Mexico\",\"United States\"]},{\"attribute\": \"continent\",\"count\": 1,\"type\": \"string\",\"values\": [\"North America\"]},{\"attribute\": \"economy\",\"count\": 2,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"4. Emerging region: MIKT\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 3,\"type\": \"string\",\"values\": [\"Canada\",\"United Mexican States\",\"United States of America\"]},{\"attribute\": \"gdp_md_est\",\"count\": 3,\"type\": \"number\",\"values\": [1300000,15094000,1563000],\"min\": 1300000,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 3,\"type\": \"string\",\"values\": [\"Canada\",\"Mexico\",\"United States of America\"]},{\"attribute\": \"gu_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"CAN\",\"MEX\",\"USA\"]},{\"attribute\": \"homepart\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 2,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"3. Upper middle income\"]},{\"attribute\": \"iso_a2\",\"count\": 3,\"type\": \"string\",\"values\": [\"CA\",\"MX\",\"US\"]},{\"attribute\": \"iso_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"CAN\",\"MEX\",\"USA\"]},{\"attribute\": \"iso_n3\",\"count\": 3,\"type\": \"string\",\"values\": [\"124\",\"484\",\"840\"]},{\"attribute\": \"labelrank\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"lastcensus\",\"count\": 2,\"type\": \"number\",\"values\": [2010,2011],\"min\": 2010,\"max\": 2011},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 2,\"type\": \"number\",\"values\": [13,6],\"min\": 6,\"max\": 13},{\"attribute\": \"mapcolor13\",\"count\": 3,\"type\": \"number\",\"values\": [1,2,3],\"min\": 1,\"max\": 3},{\"attribute\": \"mapcolor7\",\"count\": 2,\"type\": \"number\",\"values\": [4,6],\"min\": 4,\"max\": 6},{\"attribute\": \"mapcolor8\",\"count\": 3,\"type\": \"number\",\"values\": [1,5,6],\"min\": 1,\"max\": 6},{\"attribute\": \"mapcolor9\",\"count\": 3,\"type\": \"number\",\"values\": [1,2,7],\"min\": 1,\"max\": 7},{\"attribute\": \"name\",\"count\": 3,\"type\": \"string\",\"values\": [\"Canada\",\"Mexico\",\"United States\"]},{\"attribute\": \"name_len\",\"count\": 2,\"type\": \"number\",\"values\": [13,6],\"min\": 6,\"max\": 13},{\"attribute\": \"name_long\",\"count\": 3,\"type\": \"string\",\"values\": [\"Canada\",\"Mexico\",\"United States\"]},{\"attribute\": \"name_sort\",\"count\": 3,\"type\": \"string\",\"values\": [\"Canada\",\"Mexico\",\"United States of America\"]},{\"attribute\": \"pop_est\",\"count\": 3,\"type\": \"number\",\"values\": [111211789,313973000,33487208],\"min\": 33487208,\"max\": 313973000},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 3,\"type\": \"string\",\"values\": [\"CA\",\"MX\",\"US\"]},{\"attribute\": \"region_un\",\"count\": 1,\"type\": \"string\",\"values\": [\"Americas\"]},{\"attribute\": \"region_wb\",\"count\": 2,\"type\": \"string\",\"values\": [\"Latin America & Caribbean\",\"North America\"]},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"sov_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"CAN\",\"MEX\",\"US1\"]},{\"attribute\": \"sovereignt\",\"count\": 3,\"type\": \"string\",\"values\": [\"Canada\",\"Mexico\",\"United States of America\"]},{\"attribute\": \"su_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"CAN\",\"MEX\",\"USA\"]},{\"attribute\": \"su_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"subregion\",\"count\": 2,\"type\": \"string\",\"values\": [\"Central America\",\"Northern America\"]},{\"attribute\": \"subunit\",\"count\": 3,\"type\": \"string\",\"values\": [\"Canada\",\"Mexico\",\"United States of America\"]},{\"attribute\": \"tiny\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"type\",\"count\": 2,\"type\": \"string\",\"values\": [\"Country\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"124\",\"484\",\"840\"]},{\"attribute\": \"wb_a2\",\"count\": 3,\"type\": \"string\",\"values\": [\"CA\",\"MX\",\"US\"]},{\"attribute\": \"wb_a3\",\"count\": 3,\"type\": \"string\",\"values\": [\"CAN\",\"MEX\",\"USA\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/ne_110m_admin_0_countries/out/-z3_-ai.json b/tests/ne_110m_admin_0_countries/out/-z3_-ai.json index 17a4edbfd..ebbecc54e 100644 --- a/tests/ne_110m_admin_0_countries/out/-z3_-ai.json +++ b/tests/ne_110m_admin_0_countries/out/-z3_-ai.json @@ -3,6 +3,7 @@ "center": "22.500000,20.489949,3", "description": "tests/ne_110m_admin_0_countries/out/-z3_-ai.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z3_-ai.json.check.mbtiles -z3 -ai tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"formal_fr\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_alt\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_adm0\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 61,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afg.\",\"Alb.\",\"Alg.\",\"Ang.\",\"Ant.\",\"Arg.\",\"Arm.\",\"Aust.\",\"Auz.\",\"Aze.\",\"B.F.\",\"B.H.\",\"Bang.\",\"Bela.\",\"Belg.\",\"Belize\",\"Benin\",\"Bhs.\",\"Bhutan\",\"Bolivia\",\"Brazil\",\"Brunei\",\"Bulg.\",\"Bur.\",\"Bwa.\",\"C.A.R.\",\"C.R.\",\"Cam.\",\"Camb.\",\"Can.\",\"Chad\",\"Chile\",\"China\",\"Col.\",\"Cro.\",\"Cuba\",\"Cyp.\",\"Cz. Rep.\",\"D.R.C.\",\"Den.\",\"Dji.\",\"Dom. Rep.\",\"Ecu.\",\"Egypt\",\"El. S.\",\"Eq. G.\",\"Erit.\",\"Est.\",\"Eth.\",\"Fiji\",\"Fin.\",\"Flk. Is.\",\"Fr.\",\"Fr. S.A.L.\",\"Gabon\",\"Gambia\",\"Geo.\",\"Ger.\",\"Ghana\",\"Gin.\",\"GnB.\",\"Greece\",\"Grlnd.\",\"Guat.\",\"Guy.\",\"Haiti\",\"Hond.\",\"Hun.\",\"I.C.\",\"Iceland\",\"India\",\"Indo.\",\"Iran\",\"Iraq\",\"Ire.\",\"Isr.\",\"Italy\",\"Jam.\",\"Japan\",\"Jord.\",\"Kaz.\",\"Ken.\",\"Kgz.\",\"Kos.\",\"Kwt.\",\"Laos\",\"Lat.\",\"Leb.\",\"Les.\",\"Liberia\",\"Libya\",\"Lith.\",\"Lux.\",\"Mad.\",\"Mal.\",\"Malay.\",\"Mali\",\"Mda.\",\"Mex.\",\"Mkd.\"]},{\"attribute\": \"abbrev_len\",\"count\": 8,\"type\": \"number\",\"values\": [10,3,4,5,6,7,8,9],\"min\": 3,\"max\": 10},{\"attribute\": \"adm0_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 173,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 175,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"brk_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"B12\",\"B20\",\"B28\",\"B30\",\"B57\",\"B77\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. and Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\"]},{\"attribute\": \"continent\",\"count\": 8,\"type\": \"string\",\"values\": [\"Africa\",\"Antarctica\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"Seven seas (open ocean)\",\"South America\"]},{\"attribute\": \"economy\",\"count\": 7,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"2. Developed region: nonG7\",\"3. Emerging region: BRIC\",\"4. Emerging region: MIKT\",\"5. Emerging region: G20\",\"6. Developing region\",\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 174,\"type\": \"string\",\"values\": [\"Arab Republic of Egypt\",\"Argentine Republic\",\"Belize\",\"Bolivarian Republic of Venezuela\",\"Bosnia and Herzegovina\",\"Burkina Faso\",\"Canada\",\"Central African Republic\",\"Co-operative Republic of Guyana\",\"Commonwealth of Australia\",\"Commonwealth of Puerto Rico\",\"Commonwealth of the Bahamas\",\"Czech Republic\",\"Democratic People's Republic of Korea\",\"Democratic Republic of Timor-Leste\",\"Democratic Republic of the Congo\",\"Democratic Socialist Republic of Sri Lanka\",\"Dominican Republic\",\"Falkland Islands\",\"Federal Democratic Republic of Ethiopia\",\"Federal Republic of Germany\",\"Federal Republic of Nigeria\",\"Federal Republic of Somalia\",\"Federative Republic of Brazil\",\"Former Yugoslav Republic of Macedonia\",\"French Republic\",\"Gabonese Republic\",\"Georgia\",\"Grand Duchy of Luxembourg\",\"Greenland\",\"Hashemite Kingdom of Jordan\",\"Hellenic Republic\",\"Independent State of Papua New Guinea\",\"Ireland\",\"Islamic Republic of Iran\",\"Islamic Republic of Mauritania\",\"Islamic Republic of Pakistan\",\"Islamic State of Afghanistan\",\"Italian Republic\",\"Jamaica\",\"Japan\",\"Kingdom of Belgium\",\"Kingdom of Bhutan\",\"Kingdom of Cambodia\",\"Kingdom of Denmark\",\"Kingdom of Lesotho\",\"Kingdom of Morocco\",\"Kingdom of Norway\",\"Kingdom of Saudi Arabia\",\"Kingdom of Spain\",\"Kingdom of Swaziland\",\"Kingdom of Sweden\",\"Kingdom of Thailand\",\"Kingdom of the Netherlands\",\"Kyrgyz Republic\",\"Lao People's Democratic Republic\",\"Lebanese Republic\",\"Libya\",\"Malaysia\",\"Mongolia\",\"Montenegro\",\"Negara Brunei Darussalam\",\"Nepal\",\"New Caledonia\",\"New Zealand\",\"Oriental Republic of Uruguay\",\"People's Democratic Republic of Algeria\",\"People's Republic of Angola\",\"People's Republic of Bangladesh\",\"People's Republic of China\",\"Plurinational State of Bolivia\",\"Portuguese Republic\",\"Republic of Albania\",\"Republic of Armenia\",\"Republic of Austria\",\"Republic of Azerbaijan\",\"Republic of Belarus\",\"Republic of Benin\",\"Republic of Botswana\",\"Republic of Bulgaria\",\"Republic of Burundi\",\"Republic of Cameroon\",\"Republic of Chad\",\"Republic of Chile\",\"Republic of Colombia\",\"Republic of Congo\",\"Republic of Costa Rica\",\"Republic of Croatia\",\"Republic of Cuba\",\"Republic of Cyprus\",\"Republic of Djibouti\",\"Republic of Ecuador\",\"Republic of El Salvador\",\"Republic of Equatorial Guinea\",\"Republic of Estonia\",\"Republic of Fiji\",\"Republic of Finland\",\"Republic of Ghana\",\"Republic of Guatemala\",\"Republic of Guinea\"]},{\"attribute\": \"formal_fr\",\"count\": 4,\"type\": \"string\",\"values\": [\"Nouvelle-Calédonie\",\"Republic of Cote D'Ivoire\",\"República Bolivariana de Venezuela\",\"République Togolaise\"]},{\"attribute\": \"gdp_md_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10040,103900,105.1,10600,10670,107700,1078,108200,1100,110300,114100,11500,11610,116700,11810,11950.77,119500,12250,12710,12830,1300000,13160,13210,13227,13250,1335000,136600,13980,1403000,14060,14590,149100,15094000,1526,15350,1563000,15860,16,16790,17500,175800,17820,1823000,184300,18770,18780,188400,1885,18940,193500,196600,1977704,1993000,20130,201400,20250,203600,20640,208627,20910,21110,2128000,21510,21810,21980,22270,224000,2266000,22700,2272,232900,241700,244500,247300,2520,2536,265200,27060,271400,27410,276400,27940,28890,29010,2918000,2966,29700,29780,3102,31080,3158,31610,316700,317500,3198,3293,329500,3297000,335400],\"min\": -99,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 3,\"type\": \"number\",\"values\": [-99,0,2009],\"min\": -99,\"max\": 2009},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"gu_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"homepart\",\"count\": 2,\"type\": \"number\",\"values\": [-99,1],\"min\": -99,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 5,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\",\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AQ\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FK\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\"]},{\"attribute\": \"iso_a3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESH\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"iso_n3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"004\",\"008\",\"010\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"158\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"260\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\"]},{\"attribute\": \"labelrank\",\"count\": 6,\"type\": \"number\",\"values\": [2,3,4,5,6,7],\"min\": 2,\"max\": 7},{\"attribute\": \"lastcensus\",\"count\": 27,\"type\": \"number\",\"values\": [-99,1970,1979,1981,1983,1984,1987,1989,1991,1993,1995,1996,1997,1998,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012],\"min\": -99,\"max\": 2012},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 21,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,20,22,24,32,35,4,5,6,7,8,9],\"min\": 4,\"max\": 35},{\"attribute\": \"mapcolor13\",\"count\": 14,\"type\": \"number\",\"values\": [-99,1,10,11,12,13,2,3,4,5,6,7,8,9],\"min\": -99,\"max\": 13},{\"attribute\": \"mapcolor7\",\"count\": 7,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7],\"min\": 1,\"max\": 7},{\"attribute\": \"mapcolor8\",\"count\": 8,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8],\"min\": 1,\"max\": 8},{\"attribute\": \"mapcolor9\",\"count\": 9,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 9},{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]},{\"attribute\": \"name_alt\",\"count\": 2,\"type\": \"string\",\"values\": [\"East Timor\",\"Islas Malvinas\"]},{\"attribute\": \"name_len\",\"count\": 16,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,19,20,22,4,5,6,7,8,9],\"min\": 4,\"max\": 22},{\"attribute\": \"name_long\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"name_sort\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo, Dem. Rep.\",\"Congo, Rep.\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Cyprus, Northern\",\"Czech Republic\",\"Côte d'Ivoire\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt, Arab Rep.\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran, Islamic Rep.\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea, Dem. Rep.\",\"Korea, Rep.\",\"Kosovo\",\"Kuwait\",\"Kyrgyz Republic\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia, FYR\",\"Madagascar\",\"Malawi\"]},{\"attribute\": \"note_adm0\",\"count\": 6,\"type\": \"string\",\"values\": [\"Commonwealth of U.S.A.\",\"Den.\",\"Fr.\",\"Partial self-admin.\",\"Self admin.\",\"U.K.\"]},{\"attribute\": \"note_brk\",\"count\": 8,\"type\": \"string\",\"values\": [\"Admin. by U.K.; Claimed by Argentina\",\"Multiple claims held in abeyance\",\"Partial self-admin.\",\"Self admin.; Claimed by China\",\"Self admin.; Claimed by Cyprus\",\"Self admin.; Claimed by Morocco\",\"Self admin.; Claimed by Serbia\",\"Self admin.; Claimed by Somalia\"]},{\"attribute\": \"pop_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10057975,10211904,10329208,10414336,10473282,10486339,10625176,10707924,10737428,111211789,1123913,1131612,11451652,1166079220,11862740,12619600,12666987,127078679,12799293,1299371,1310000,13276517,1338612970,13711597,140,140041247,14268711,14494293,14573101,149229090,1514993,15306252,1533964,15399437,156050883,15746232,16601707,16715999,176242949,1782893,1804838,18879301,198739269,1990876,2005692,20178485,20617068,20653556,2066718,2108665,21262641,2130819,21324791,21669278,218519,22215421,2231503,22665345,227436,22974347,23822783,23832495,240271522,25715819,25946220,265100,26814843,2691158,27606007,2825928,28400000,28563377,28686633,29546963,2967004,3041142,306694,307899,309156,31129225,3129486,313973000,3140,32369558,33487208,3360474,34178188,3418085,3441790,34859364,3494382,3500000,3555179,3639453,3802,38482919,388190,39002772,3971020],\"min\": -99,\"max\": 1338612970},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 172,\"type\": \"string\",\"values\": [\"A\",\"AE\",\"AF\",\"AL\",\"AO\",\"AQ\",\"AR\",\"ARM\",\"AU\",\"AZ\",\"B\",\"BD\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"BiH\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"D\",\"DJ\",\"DK\",\"DO\",\"DRC\",\"DZ\",\"E\",\"EC\",\"EG\",\"ER\",\"EST\",\"ET\",\"F\",\"FIN\",\"FJ\",\"FK\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"I\",\"IND\",\"INDO\",\"IRL\",\"IRN\",\"IRQ\",\"IS\",\"J\",\"KE\",\"KG\",\"KH\",\"KO\",\"KP\",\"KR\",\"KW\",\"KZ\",\"L\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\",\"MG\",\"MK\"]},{\"attribute\": \"region_un\",\"count\": 7,\"type\": \"string\",\"values\": [\"Africa\",\"Americas\",\"Antarctica\",\"Asia\",\"Europe\",\"Oceania\",\"Seven seas (open ocean)\"]},{\"attribute\": \"region_wb\",\"count\": 8,\"type\": \"string\",\"values\": [\"Antarctica\",\"East Asia & Pacific\",\"Europe & Central Asia\",\"Latin America & Caribbean\",\"Middle East & North Africa\",\"North America\",\"South Asia\",\"Sub-Saharan Africa\"]},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [1,3],\"min\": 1,\"max\": 3},{\"attribute\": \"sov_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"AU1\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CH1\",\"CHE\",\"CHL\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DN1\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FI1\",\"FJI\",\"FR1\",\"GAB\",\"GB1\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\"]},{\"attribute\": \"sovereignt\",\"count\": 171,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\",\"Moldova\",\"Mongolia\",\"Montenegro\"]},{\"attribute\": \"su_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"su_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"subregion\",\"count\": 22,\"type\": \"string\",\"values\": [\"Antarctica\",\"Australia and New Zealand\",\"Caribbean\",\"Central America\",\"Central Asia\",\"Eastern Africa\",\"Eastern Asia\",\"Eastern Europe\",\"Melanesia\",\"Middle Africa\",\"Northern Africa\",\"Northern America\",\"Northern Europe\",\"Seven seas (open ocean)\",\"South America\",\"South-Eastern Asia\",\"Southern Africa\",\"Southern Asia\",\"Southern Europe\",\"Western Africa\",\"Western Asia\",\"Western Europe\"]},{\"attribute\": \"subunit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"tiny\",\"count\": 5,\"type\": \"number\",\"values\": [-99,2,3,4,5],\"min\": -99,\"max\": 5},{\"attribute\": \"type\",\"count\": 5,\"type\": \"string\",\"values\": [\"Country\",\"Dependency\",\"Disputed\",\"Indeterminate\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 172,\"type\": \"string\",\"values\": [\"-099\",\"004\",\"008\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\",\"458\",\"466\",\"478\"]},{\"attribute\": \"wb_a2\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"GZ\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KV\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\"]},{\"attribute\": \"wb_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KSV\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\",\"MKD\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "3", "minzoom": "0", @@ -152,7 +153,7 @@ , { "type": "Feature", "id": 107, "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "id": 148, "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ] ] ] } } +{ "type": "Feature", "id": 148, "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.302734, 42.940339 ] ] ] } } , { "type": "Feature", "id": 89, "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json index f2845f2f7..a0194f85d 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json @@ -3,6 +3,7 @@ "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z4_-yname.json.check.mbtiles -z4 -yname tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]}]}]}}", "maxzoom": "4", "minzoom": "0", @@ -152,7 +153,7 @@ , { "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.302734, 42.940339 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json index 6ee7023c1..990e3048b 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json @@ -3,6 +3,7 @@ "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json.check.mbtiles -z4 -yname --drop-polygons tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]}]}]}}", "maxzoom": "4", "minzoom": "0", diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json index 38653c2a3..751adba24 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json @@ -3,6 +3,7 @@ "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json.check.mbtiles -z4 -yname --grid-low-zooms -D8 tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]}]}]}}", "maxzoom": "4", "minzoom": "0", @@ -12,1371 +13,1363 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -111.093750, 75.845169 ], [ -111.093750, 76.516819 ], [ -108.281250, 76.516819 ], [ -108.281250, 75.845169 ], [ -105.468750, 75.845169 ], [ -105.468750, 75.140778 ], [ -106.875000, 75.140778 ], [ -106.875000, 74.775843 ], [ -109.687500, 74.775843 ], [ -109.687500, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -111.093750, 74.775843 ], [ -111.093750, 75.140778 ], [ -118.125000, 75.140778 ], [ -118.125000, 75.497157 ], [ -116.718750, 75.497157 ], [ -116.718750, 76.184995 ], [ -112.500000, 76.184995 ], [ -112.500000, 75.845169 ], [ -111.093750, 75.845169 ] ], [ [ -111.093750, 75.845169 ], [ -111.093750, 75.497157 ], [ -109.687500, 75.497157 ], [ -109.687500, 75.845169 ], [ -111.093750, 75.845169 ] ] ], [ [ [ -64.687500, 44.087585 ], [ -64.687500, 43.068888 ], [ -66.093750, 43.068888 ], [ -66.093750, 44.087585 ], [ -64.687500, 44.087585 ] ] ], [ [ [ -81.562500, 62.915233 ], [ -81.562500, 62.267923 ], [ -82.968750, 62.267923 ], [ -82.968750, 62.915233 ], [ -81.562500, 62.915233 ] ] ], [ [ [ -105.468750, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 73.226700 ] ] ], [ [ [ -57.656250, 50.736455 ], [ -59.062500, 50.736455 ], [ -59.062500, 49.837982 ], [ -63.281250, 49.837982 ], [ -63.281250, 50.736455 ], [ -64.687500, 50.736455 ], [ -64.687500, 49.837982 ], [ -67.500000, 49.837982 ], [ -67.500000, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 47.989922 ], [ -70.312500, 47.989922 ], [ -70.312500, 47.040182 ], [ -70.312500, 45.089036 ], [ -75.937500, 45.089036 ], [ -75.937500, 44.087585 ], [ -78.750000, 44.087585 ], [ -78.750000, 42.032974 ], [ -82.968750, 42.032974 ], [ -82.968750, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.989922 ], [ -94.218750, 47.989922 ], [ -94.218750, 49.837982 ], [ -95.625000, 49.837982 ], [ -95.625000, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 47.989922 ], [ -125.156250, 47.989922 ], [ -125.156250, 48.922499 ], [ -126.562500, 48.922499 ], [ -126.562500, 49.837982 ], [ -127.968750, 49.837982 ], [ -127.968750, 50.736455 ], [ -127.968750, 52.482780 ], [ -129.375000, 52.482780 ], [ -129.375000, 53.330873 ], [ -130.781250, 53.330873 ], [ -130.781250, 54.977614 ], [ -129.375000, 54.977614 ], [ -129.375000, 55.776573 ], [ -132.187500, 55.776573 ], [ -132.187500, 57.326521 ], [ -133.593750, 57.326521 ], [ -133.593750, 58.813742 ], [ -135.000000, 58.813742 ], [ -135.000000, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 58.813742 ], [ -137.812500, 58.813742 ], [ -137.812500, 59.534318 ], [ -139.218750, 59.534318 ], [ -139.218750, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 69.657086 ], [ -139.218750, 69.657086 ], [ -139.218750, 69.162558 ], [ -137.812500, 69.162558 ], [ -137.812500, 68.656555 ], [ -135.000000, 68.656555 ], [ -135.000000, 69.657086 ], [ -130.781250, 69.657086 ], [ -130.781250, 70.140364 ], [ -129.375000, 70.140364 ], [ -129.375000, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.162558 ], [ -118.125000, 69.162558 ], [ -118.125000, 68.656555 ], [ -115.312500, 68.656555 ], [ -115.312500, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -116.718750, 69.162558 ], [ -116.718750, 70.140364 ], [ -113.906250, 70.140364 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 71.074056 ], [ -119.531250, 71.074056 ], [ -119.531250, 71.965388 ], [ -120.937500, 71.965388 ], [ -120.937500, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.524909 ], [ -126.562500, 71.524909 ], [ -126.562500, 71.965388 ], [ -125.156250, 71.965388 ], [ -125.156250, 73.226700 ], [ -123.750000, 73.226700 ], [ -123.750000, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.402163 ], [ -119.531250, 74.402163 ], [ -119.531250, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.627789 ], [ -115.312500, 73.627789 ], [ -115.312500, 73.226700 ], [ -113.906250, 73.226700 ], [ -113.906250, 72.816074 ], [ -112.500000, 72.816074 ], [ -112.500000, 72.395706 ], [ -109.687500, 72.395706 ], [ -109.687500, 71.965388 ], [ -108.281250, 71.965388 ], [ -108.281250, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 71.074056 ], [ -104.062500, 71.074056 ], [ -104.062500, 70.612614 ], [ -102.656250, 70.612614 ], [ -102.656250, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -102.656250, 69.657086 ], [ -102.656250, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.138852 ], [ -102.656250, 68.138852 ], [ -102.656250, 67.609221 ], [ -98.437500, 67.609221 ], [ -98.437500, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 69.162558 ], [ -98.437500, 69.162558 ], [ -98.437500, 69.657086 ], [ -97.031250, 69.657086 ], [ -97.031250, 71.074056 ], [ -99.843750, 71.074056 ], [ -99.843750, 71.524909 ], [ -101.250000, 71.524909 ], [ -101.250000, 71.965388 ], [ -102.656250, 71.965388 ], [ -102.656250, 72.816074 ], [ -101.250000, 72.816074 ], [ -101.250000, 73.627789 ], [ -97.031250, 73.627789 ], [ -97.031250, 73.226700 ], [ -98.437500, 73.226700 ], [ -98.437500, 72.395706 ], [ -97.031250, 72.395706 ], [ -97.031250, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 71.965388 ], [ -95.625000, 74.019543 ], [ -90.000000, 74.019543 ], [ -90.000000, 73.226700 ], [ -88.593750, 73.226700 ], [ -88.593750, 73.627789 ], [ -85.781250, 73.627789 ], [ -85.781250, 73.226700 ], [ -87.187500, 73.226700 ], [ -87.187500, 72.816074 ], [ -84.375000, 72.816074 ], [ -84.375000, 73.226700 ], [ -81.562500, 73.226700 ], [ -80.156250, 73.226700 ], [ -80.156250, 73.627789 ], [ -78.750000, 73.627789 ], [ -78.750000, 73.226700 ], [ -75.937500, 73.226700 ], [ -75.937500, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 71.965388 ], [ -78.750000, 71.965388 ], [ -78.750000, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 71.965388 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -71.718750, 71.524909 ], [ -71.718750, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.140364 ], [ -67.500000, 70.140364 ], [ -67.500000, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.138852 ], [ -66.093750, 68.138852 ], [ -66.093750, 67.609221 ], [ -64.687500, 67.609221 ], [ -64.687500, 67.067433 ], [ -61.875000, 67.067433 ], [ -61.875000, 65.366837 ], [ -63.281250, 65.366837 ], [ -63.281250, 64.774125 ], [ -64.687500, 64.774125 ], [ -64.687500, 65.946472 ], [ -66.093750, 65.946472 ], [ -66.093750, 66.513260 ], [ -67.500000, 66.513260 ], [ -67.500000, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.168107 ], [ -64.687500, 64.168107 ], [ -64.687500, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.267923 ], [ -66.093750, 62.267923 ], [ -66.093750, 61.606396 ], [ -68.906250, 61.606396 ], [ -68.906250, 62.267923 ], [ -71.718750, 62.267923 ], [ -71.718750, 63.548552 ], [ -73.125000, 63.548552 ], [ -73.125000, 64.168107 ], [ -78.750000, 64.168107 ], [ -78.750000, 64.774125 ], [ -77.343750, 64.774125 ], [ -77.343750, 65.366837 ], [ -74.531250, 65.366837 ], [ -74.531250, 66.513260 ], [ -73.125000, 66.513260 ], [ -73.125000, 68.138852 ], [ -74.531250, 68.138852 ], [ -74.531250, 68.656555 ], [ -75.937500, 68.656555 ], [ -75.937500, 69.162558 ], [ -77.343750, 69.162558 ], [ -77.343750, 69.657086 ], [ -82.968750, 69.657086 ], [ -82.968750, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 63.548552 ], [ -91.406250, 63.548552 ], [ -91.406250, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 61.606396 ], [ -94.218750, 61.606396 ], [ -94.218750, 58.813742 ], [ -92.812500, 58.813742 ], [ -92.812500, 57.326521 ], [ -91.406250, 57.326521 ], [ -91.406250, 56.559482 ], [ -88.593750, 56.559482 ], [ -88.593750, 55.776573 ], [ -85.781250, 55.776573 ], [ -85.781250, 54.977614 ], [ -82.968750, 54.977614 ], [ -82.968750, 53.330873 ], [ -81.562500, 53.330873 ], [ -81.562500, 51.618017 ], [ -78.750000, 51.618017 ], [ -78.750000, 54.162434 ], [ -80.156250, 54.162434 ], [ -80.156250, 54.977614 ], [ -77.343750, 54.977614 ], [ -77.343750, 55.776573 ], [ -75.937500, 55.776573 ], [ -75.937500, 57.326521 ], [ -77.343750, 57.326521 ], [ -77.343750, 58.077876 ], [ -78.750000, 58.077876 ], [ -78.750000, 58.813742 ], [ -77.343750, 58.813742 ], [ -77.343750, 61.606396 ], [ -78.750000, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 62.267923 ], [ -78.750000, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 60.930432 ], [ -68.906250, 60.930432 ], [ -68.906250, 60.239811 ], [ -70.312500, 60.239811 ], [ -70.312500, 59.534318 ], [ -68.906250, 59.534318 ], [ -68.906250, 58.077876 ], [ -66.093750, 58.077876 ], [ -66.093750, 58.813742 ], [ -64.687500, 58.813742 ], [ -64.687500, 59.534318 ], [ -63.281250, 59.534318 ], [ -63.281250, 58.813742 ], [ -61.875000, 58.813742 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.250000, 54.162434 ], [ -56.250000, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 50.736455 ] ], [ [ -84.375000, 69.657086 ], [ -84.375000, 70.140364 ], [ -88.593750, 70.140364 ], [ -88.593750, 71.074056 ], [ -90.000000, 71.074056 ], [ -90.000000, 73.226700 ], [ -91.406250, 73.226700 ], [ -91.406250, 72.816074 ], [ -92.812500, 72.816074 ], [ -92.812500, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 71.965388 ], [ -94.218750, 71.524909 ], [ -92.812500, 71.524909 ], [ -92.812500, 70.612614 ], [ -91.406250, 70.612614 ], [ -91.406250, 69.657086 ], [ -90.000000, 69.657086 ], [ -90.000000, 68.656555 ], [ -88.593750, 68.656555 ], [ -88.593750, 67.067433 ], [ -87.187500, 67.067433 ], [ -87.187500, 67.609221 ], [ -85.781250, 67.609221 ], [ -85.781250, 69.657086 ], [ -84.375000, 69.657086 ] ], [ [ -97.031250, 68.656555 ], [ -97.031250, 68.138852 ], [ -94.218750, 68.138852 ], [ -94.218750, 69.162558 ], [ -95.625000, 69.162558 ], [ -95.625000, 68.656555 ], [ -97.031250, 68.656555 ] ], [ [ -118.125000, 71.965388 ], [ -118.125000, 72.395706 ], [ -119.531250, 72.395706 ], [ -119.531250, 71.965388 ], [ -118.125000, 71.965388 ] ], [ [ -116.718750, 72.816074 ], [ -115.312500, 72.816074 ], [ -115.312500, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 72.816074 ] ], [ [ -105.468750, 68.656555 ], [ -105.468750, 69.162558 ], [ -106.875000, 69.162558 ], [ -106.875000, 68.656555 ], [ -105.468750, 68.656555 ] ] ], [ [ [ -88.593750, 80.415707 ], [ -88.593750, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 81.308321 ], [ -91.406250, 81.308321 ], [ -91.406250, 81.923186 ], [ -90.000000, 81.923186 ], [ -90.000000, 82.118384 ], [ -87.187500, 82.118384 ], [ -87.187500, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.676285 ], [ -84.375000, 82.676285 ], [ -84.375000, 82.494824 ], [ -82.968750, 82.494824 ], [ -82.968750, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 83.026219 ], [ -78.750000, 83.026219 ], [ -78.750000, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -73.125000, 83.026219 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.026219 ], [ -66.093750, 83.026219 ], [ -66.093750, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.676285 ], [ -61.875000, 82.676285 ], [ -61.875000, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -64.687500, 81.923186 ], [ -64.687500, 81.723188 ], [ -66.093750, 81.723188 ], [ -66.093750, 81.093214 ], [ -67.500000, 81.093214 ], [ -67.500000, 80.647035 ], [ -68.906250, 80.647035 ], [ -68.906250, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.718750, 79.935918 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.432371 ], [ -77.343750, 79.432371 ], [ -77.343750, 79.171335 ], [ -75.937500, 79.171335 ], [ -75.937500, 77.767582 ], [ -77.343750, 77.767582 ], [ -77.343750, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.157163 ], [ -80.156250, 77.157163 ], [ -80.156250, 76.840816 ], [ -77.343750, 76.840816 ], [ -77.343750, 76.516819 ], [ -78.750000, 76.516819 ], [ -78.750000, 76.184995 ], [ -87.187500, 76.184995 ], [ -87.187500, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.840816 ], [ -87.187500, 76.840816 ], [ -87.187500, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 78.061989 ], [ -88.593750, 78.061989 ], [ -88.593750, 78.349411 ], [ -94.218750, 78.349411 ], [ -94.218750, 79.171335 ], [ -92.812500, 79.171335 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -95.625000, 80.415707 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.308321 ], [ -92.812500, 81.308321 ], [ -92.812500, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.415707 ], [ -88.593750, 80.415707 ] ], [ [ -87.187500, 80.415707 ], [ -87.187500, 80.178713 ], [ -81.562500, 80.178713 ], [ -81.562500, 80.415707 ], [ -87.187500, 80.415707 ] ], [ [ -87.187500, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -87.187500, 78.349411 ], [ -87.187500, 78.630006 ] ], [ [ -85.781250, 78.630006 ], [ -85.781250, 79.171335 ], [ -87.187500, 79.171335 ], [ -87.187500, 78.630006 ], [ -85.781250, 78.630006 ] ], [ [ -85.781250, 77.767582 ], [ -85.781250, 77.466028 ], [ -84.375000, 77.466028 ], [ -84.375000, 77.767582 ], [ -85.781250, 77.767582 ] ] ], [ [ [ -94.218750, 77.157163 ], [ -94.218750, 76.840816 ], [ -91.406250, 76.840816 ], [ -91.406250, 75.845169 ], [ -90.000000, 75.845169 ], [ -90.000000, 75.497157 ], [ -84.375000, 75.497157 ], [ -84.375000, 75.845169 ], [ -81.562500, 75.845169 ], [ -81.562500, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.402163 ], [ -92.812500, 74.402163 ], [ -92.812500, 75.845169 ], [ -94.218750, 75.845169 ], [ -94.218750, 76.184995 ], [ -95.625000, 76.184995 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 77.157163 ], [ -94.218750, 77.157163 ] ] ], [ [ [ -116.718750, 77.466028 ], [ -116.718750, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 75.845169 ], [ -122.343750, 75.845169 ], [ -122.343750, 76.516819 ], [ -120.937500, 76.516819 ], [ -120.937500, 77.157163 ], [ -119.531250, 77.157163 ], [ -119.531250, 77.466028 ], [ -116.718750, 77.466028 ] ] ], [ [ [ -132.187500, 54.162434 ], [ -132.187500, 53.330873 ], [ -133.593750, 53.330873 ], [ -133.593750, 54.162434 ], [ -132.187500, 54.162434 ] ] ], [ [ [ -98.437500, 76.516819 ], [ -98.437500, 75.845169 ], [ -97.031250, 75.845169 ], [ -97.031250, 75.497157 ], [ -98.437500, 75.497157 ], [ -98.437500, 74.775843 ], [ -101.250000, 74.775843 ], [ -101.250000, 75.497157 ], [ -102.656250, 75.497157 ], [ -102.656250, 76.184995 ], [ -99.843750, 76.184995 ], [ -99.843750, 76.516819 ], [ -98.437500, 76.516819 ] ] ], [ [ [ -68.906250, 47.989922 ], [ -66.093750, 47.989922 ], [ -66.093750, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 46.073231 ], [ -60.468750, 46.073231 ], [ -60.468750, 45.089036 ], [ -63.281250, 45.089036 ], [ -63.281250, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 47.040182 ], [ -68.906250, 47.040182 ], [ -68.906250, 47.989922 ] ] ], [ [ [ -104.062500, 79.171335 ], [ -104.062500, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.630006 ], [ -99.843750, 78.630006 ], [ -99.843750, 77.767582 ], [ -101.250000, 77.767582 ], [ -101.250000, 78.061989 ], [ -102.656250, 78.061989 ], [ -102.656250, 78.349411 ], [ -104.062500, 78.349411 ], [ -104.062500, 78.630006 ], [ -105.468750, 78.630006 ], [ -105.468750, 79.171335 ], [ -104.062500, 79.171335 ] ] ], [ [ [ -97.031250, 78.903929 ], [ -97.031250, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.466028 ], [ -97.031250, 77.466028 ], [ -97.031250, 77.767582 ], [ -98.437500, 77.767582 ], [ -98.437500, 78.903929 ], [ -97.031250, 78.903929 ] ] ], [ [ [ -74.531250, 68.138852 ], [ -74.531250, 67.067433 ], [ -77.343750, 67.067433 ], [ -77.343750, 68.138852 ], [ -74.531250, 68.138852 ] ] ], [ [ [ -85.781250, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.168107 ], [ -80.156250, 64.168107 ], [ -80.156250, 63.548552 ], [ -84.375000, 63.548552 ], [ -84.375000, 62.915233 ], [ -85.781250, 62.915233 ], [ -85.781250, 65.366837 ] ] ], [ [ [ -109.687500, 78.061989 ], [ -109.687500, 77.466028 ], [ -113.906250, 77.466028 ], [ -113.906250, 77.767582 ], [ -112.500000, 77.767582 ], [ -112.500000, 78.061989 ], [ -109.687500, 78.061989 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -95.625000, 75.140778 ], [ -95.625000, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -109.687500, 78.630006 ], [ -109.687500, 78.349411 ], [ -112.500000, 78.349411 ], [ -112.500000, 78.630006 ], [ -109.687500, 78.630006 ] ] ], [ [ [ -53.437500, 47.989922 ], [ -52.031250, 47.989922 ], [ -52.031250, 47.040182 ], [ -53.437500, 47.040182 ], [ -53.437500, 47.989922 ] ] ], [ [ [ -105.468750, 73.226700 ], [ -104.062500, 73.226700 ], [ -104.062500, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 73.226700 ] ] ], [ [ [ -57.656250, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 48.922499 ], [ -53.437500, 48.922499 ], [ -53.437500, 47.989922 ], [ -54.843750, 47.989922 ], [ -54.843750, 47.040182 ], [ -56.250000, 47.040182 ], [ -56.250000, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.736455 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -116.718750, 73.226700 ], [ -118.125000, 73.226700 ], [ -118.125000, 72.816074 ], [ -119.531250, 72.816074 ], [ -119.531250, 72.395706 ], [ -120.937500, 72.395706 ], [ -120.937500, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.524909 ], [ -126.562500, 71.524909 ], [ -126.562500, 72.816074 ], [ -125.156250, 72.816074 ], [ -125.156250, 74.402163 ], [ -118.125000, 74.402163 ], [ -118.125000, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.226700 ] ] ], [ [ [ -64.687500, 45.089036 ], [ -64.687500, 44.087585 ], [ -67.500000, 44.087585 ], [ -67.500000, 45.089036 ], [ -64.687500, 45.089036 ] ] ], [ [ [ -82.968750, 62.915233 ], [ -82.968750, 62.267923 ], [ -84.375000, 62.267923 ], [ -84.375000, 62.915233 ], [ -82.968750, 62.915233 ] ] ], [ [ [ -60.468750, 46.073231 ], [ -61.875000, 46.073231 ], [ -61.875000, 47.040182 ], [ -60.468750, 47.040182 ], [ -60.468750, 46.073231 ] ] ], [ [ [ -97.031250, 70.140364 ], [ -97.031250, 69.162558 ], [ -99.843750, 69.162558 ], [ -99.843750, 70.140364 ], [ -97.031250, 70.140364 ] ] ], [ [ [ -91.406250, 81.093214 ], [ -91.406250, 81.723188 ], [ -92.812500, 81.723188 ], [ -92.812500, 81.923186 ], [ -91.406250, 81.923186 ], [ -91.406250, 82.118384 ], [ -87.187500, 82.118384 ], [ -87.187500, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.676285 ], [ -82.968750, 82.676285 ], [ -82.968750, 83.026219 ], [ -80.156250, 83.026219 ], [ -80.156250, 83.194896 ], [ -66.093750, 83.194896 ], [ -66.093750, 83.026219 ], [ -64.687500, 83.026219 ], [ -64.687500, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.676285 ], [ -61.875000, 82.676285 ], [ -61.875000, 82.494824 ], [ -63.281250, 82.494824 ], [ -63.281250, 82.308893 ], [ -64.687500, 82.308893 ], [ -64.687500, 81.923186 ], [ -67.500000, 81.923186 ], [ -67.500000, 81.723188 ], [ -68.906250, 81.723188 ], [ -68.906250, 81.518272 ], [ -66.093750, 81.518272 ], [ -66.093750, 81.308321 ], [ -67.500000, 81.308321 ], [ -67.500000, 81.093214 ], [ -68.906250, 81.093214 ], [ -68.906250, 80.872827 ], [ -70.312500, 80.872827 ], [ -70.312500, 80.178713 ], [ -71.718750, 80.178713 ], [ -71.718750, 79.687184 ], [ -74.531250, 79.687184 ], [ -74.531250, 79.432371 ], [ -75.937500, 79.432371 ], [ -75.937500, 79.171335 ], [ -77.343750, 79.171335 ], [ -77.343750, 78.903929 ], [ -75.937500, 78.903929 ], [ -75.937500, 78.349411 ], [ -77.343750, 78.349411 ], [ -77.343750, 78.061989 ], [ -78.750000, 78.061989 ], [ -78.750000, 77.466028 ], [ -80.156250, 77.466028 ], [ -80.156250, 77.157163 ], [ -78.750000, 77.157163 ], [ -78.750000, 76.516819 ], [ -80.156250, 76.516819 ], [ -80.156250, 76.184995 ], [ -84.375000, 76.184995 ], [ -84.375000, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 77.157163 ], [ -88.593750, 77.157163 ], [ -88.593750, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 78.061989 ], [ -87.187500, 78.061989 ], [ -87.187500, 78.349411 ], [ -88.593750, 78.349411 ], [ -94.218750, 78.349411 ], [ -94.218750, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.687184 ], [ -97.031250, 79.687184 ], [ -97.031250, 80.872827 ], [ -95.625000, 80.872827 ], [ -95.625000, 81.308321 ], [ -92.812500, 81.308321 ], [ -92.812500, 81.093214 ], [ -91.406250, 81.093214 ] ], [ [ -87.187500, 78.903929 ], [ -88.593750, 78.903929 ], [ -88.593750, 78.630006 ], [ -87.187500, 78.630006 ], [ -87.187500, 78.903929 ] ], [ [ -87.187500, 79.687184 ], [ -87.187500, 78.903929 ], [ -85.781250, 78.903929 ], [ -85.781250, 79.687184 ], [ -87.187500, 79.687184 ] ], [ [ -90.000000, 80.647035 ], [ -90.000000, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 80.415707 ], [ -82.968750, 80.415707 ], [ -82.968750, 80.647035 ], [ -90.000000, 80.647035 ] ], [ [ -91.406250, 81.093214 ], [ -91.406250, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 81.093214 ], [ -91.406250, 81.093214 ] ] ], [ [ [ -95.625000, 77.157163 ], [ -95.625000, 76.840816 ], [ -92.812500, 76.840816 ], [ -92.812500, 76.516819 ], [ -91.406250, 76.516819 ], [ -91.406250, 76.184995 ], [ -90.000000, 76.184995 ], [ -90.000000, 75.845169 ], [ -88.593750, 75.845169 ], [ -88.593750, 75.497157 ], [ -85.781250, 75.497157 ], [ -85.781250, 75.845169 ], [ -81.562500, 75.845169 ], [ -81.562500, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.775843 ], [ -87.187500, 74.775843 ], [ -87.187500, 74.402163 ], [ -90.000000, 74.402163 ], [ -90.000000, 74.775843 ], [ -92.812500, 74.775843 ], [ -92.812500, 75.845169 ], [ -94.218750, 75.845169 ], [ -94.218750, 76.516819 ], [ -98.437500, 76.516819 ], [ -98.437500, 77.157163 ], [ -95.625000, 77.157163 ] ] ], [ [ [ -132.187500, 54.162434 ], [ -132.187500, 53.330873 ], [ -133.593750, 53.330873 ], [ -133.593750, 54.162434 ], [ -132.187500, 54.162434 ] ] ], [ [ [ -111.093750, 75.845169 ], [ -111.093750, 76.516819 ], [ -108.281250, 76.516819 ], [ -108.281250, 76.184995 ], [ -106.875000, 76.184995 ], [ -106.875000, 75.140778 ], [ -111.093750, 75.140778 ], [ -111.093750, 74.775843 ], [ -112.500000, 74.775843 ], [ -112.500000, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 75.140778 ], [ -118.125000, 75.140778 ], [ -118.125000, 75.845169 ], [ -116.718750, 75.845169 ], [ -116.718750, 76.184995 ], [ -113.906250, 76.184995 ], [ -113.906250, 75.845169 ], [ -111.093750, 75.845169 ] ], [ [ -113.906250, 75.497157 ], [ -113.906250, 75.140778 ], [ -112.500000, 75.140778 ], [ -112.500000, 75.497157 ], [ -113.906250, 75.497157 ] ], [ [ -111.093750, 75.845169 ], [ -111.093750, 75.497157 ], [ -109.687500, 75.497157 ], [ -109.687500, 75.845169 ], [ -111.093750, 75.845169 ] ] ], [ [ [ -97.031250, 71.524909 ], [ -101.250000, 71.524909 ], [ -101.250000, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 72.816074 ], [ -101.250000, 72.816074 ], [ -101.250000, 73.226700 ], [ -102.656250, 73.226700 ], [ -102.656250, 73.627789 ], [ -101.250000, 73.627789 ], [ -101.250000, 74.019543 ], [ -98.437500, 74.019543 ], [ -98.437500, 72.816074 ], [ -97.031250, 72.816074 ], [ -97.031250, 71.524909 ] ] ], [ [ [ -116.718750, 77.767582 ], [ -116.718750, 76.840816 ], [ -118.125000, 76.840816 ], [ -118.125000, 76.184995 ], [ -123.750000, 76.184995 ], [ -123.750000, 76.516819 ], [ -122.343750, 76.516819 ], [ -122.343750, 77.157163 ], [ -120.937500, 77.157163 ], [ -120.937500, 77.466028 ], [ -119.531250, 77.466028 ], [ -119.531250, 77.767582 ], [ -116.718750, 77.767582 ] ] ], [ [ [ -92.812500, 74.402163 ], [ -92.812500, 74.019543 ], [ -91.406250, 74.019543 ], [ -91.406250, 73.627789 ], [ -92.812500, 73.627789 ], [ -92.812500, 72.816074 ], [ -94.218750, 72.816074 ], [ -94.218750, 72.395706 ], [ -95.625000, 72.395706 ], [ -95.625000, 72.816074 ], [ -97.031250, 72.816074 ], [ -97.031250, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 74.402163 ], [ -92.812500, 74.402163 ] ] ], [ [ [ -99.843750, 76.840816 ], [ -99.843750, 76.516819 ], [ -98.437500, 76.516819 ], [ -98.437500, 75.140778 ], [ -101.250000, 75.140778 ], [ -101.250000, 75.845169 ], [ -102.656250, 75.845169 ], [ -102.656250, 76.516819 ], [ -101.250000, 76.516819 ], [ -101.250000, 76.840816 ], [ -99.843750, 76.840816 ] ] ], [ [ [ -57.656250, 51.618017 ], [ -56.250000, 51.618017 ], [ -56.250000, 49.837982 ], [ -54.843750, 49.837982 ], [ -54.843750, 48.922499 ], [ -53.437500, 48.922499 ], [ -53.437500, 47.040182 ], [ -56.250000, 47.040182 ], [ -56.250000, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 51.618017 ] ] ], [ [ [ -104.062500, 79.171335 ], [ -104.062500, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.061989 ], [ -104.062500, 78.061989 ], [ -104.062500, 78.349411 ], [ -105.468750, 78.349411 ], [ -105.468750, 79.171335 ], [ -104.062500, 79.171335 ] ] ], [ [ [ -78.750000, 74.019543 ], [ -78.750000, 73.627789 ], [ -77.343750, 73.627789 ], [ -77.343750, 73.226700 ], [ -78.750000, 73.226700 ], [ -78.750000, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.226700 ], [ -81.562500, 73.226700 ], [ -81.562500, 74.019543 ], [ -78.750000, 74.019543 ] ] ], [ [ [ -97.031250, 78.061989 ], [ -98.437500, 78.061989 ], [ -98.437500, 78.349411 ], [ -99.843750, 78.349411 ], [ -99.843750, 78.903929 ], [ -97.031250, 78.903929 ], [ -97.031250, 78.630006 ], [ -95.625000, 78.630006 ], [ -95.625000, 78.349411 ], [ -97.031250, 78.349411 ], [ -97.031250, 78.061989 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -111.093750, 78.061989 ], [ -111.093750, 77.466028 ], [ -113.906250, 77.466028 ], [ -113.906250, 78.061989 ], [ -111.093750, 78.061989 ] ] ], [ [ [ -82.968750, 64.168107 ], [ -80.156250, 64.168107 ], [ -80.156250, 63.548552 ], [ -82.968750, 63.548552 ], [ -82.968750, 64.168107 ] ] ], [ [ [ -111.093750, 78.903929 ], [ -111.093750, 78.630006 ], [ -112.500000, 78.630006 ], [ -112.500000, 78.903929 ], [ -111.093750, 78.903929 ] ] ], [ [ [ -126.562500, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 48.922499 ], [ -126.562500, 48.922499 ], [ -126.562500, 49.837982 ] ] ], [ [ [ -97.031250, 78.061989 ], [ -95.625000, 78.061989 ], [ -95.625000, 77.767582 ], [ -97.031250, 77.767582 ], [ -97.031250, 78.061989 ] ] ], [ [ [ -67.500000, 49.837982 ], [ -66.093750, 49.837982 ], [ -66.093750, 47.040182 ], [ -64.687500, 47.040182 ], [ -63.281250, 47.040182 ], [ -63.281250, 46.073231 ], [ -61.875000, 46.073231 ], [ -61.875000, 45.089036 ], [ -64.687500, 45.089036 ], [ -64.687500, 46.073231 ], [ -68.906250, 46.073231 ], [ -68.906250, 47.989922 ], [ -68.906250, 48.922499 ], [ -67.500000, 48.922499 ], [ -67.500000, 49.837982 ] ] ], [ [ [ -116.718750, 73.226700 ], [ -115.312500, 73.226700 ], [ -115.312500, 72.816074 ], [ -109.687500, 72.816074 ], [ -109.687500, 73.226700 ], [ -108.281250, 73.226700 ], [ -108.281250, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 72.816074 ], [ -105.468750, 70.612614 ], [ -104.062500, 70.612614 ], [ -104.062500, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -104.062500, 69.657086 ], [ -104.062500, 69.162558 ], [ -106.875000, 69.162558 ], [ -106.875000, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.138852 ], [ -99.843750, 68.138852 ], [ -99.843750, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 67.609221 ], [ -95.625000, 67.609221 ], [ -95.625000, 70.140364 ], [ -97.031250, 70.140364 ], [ -97.031250, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 71.965388 ], [ -94.218750, 71.965388 ], [ -94.218750, 71.074056 ], [ -92.812500, 71.074056 ], [ -92.812500, 69.657086 ], [ -91.406250, 69.657086 ], [ -91.406250, 69.162558 ], [ -88.593750, 69.162558 ], [ -88.593750, 67.609221 ], [ -87.187500, 67.609221 ], [ -87.187500, 68.656555 ], [ -85.781250, 68.656555 ], [ -85.781250, 70.140364 ], [ -87.187500, 70.140364 ], [ -87.187500, 70.612614 ], [ -90.000000, 70.612614 ], [ -90.000000, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.524909 ], [ -90.000000, 71.524909 ], [ -90.000000, 71.965388 ], [ -91.406250, 71.965388 ], [ -91.406250, 72.816074 ], [ -90.000000, 72.816074 ], [ -90.000000, 73.226700 ], [ -88.593750, 73.226700 ], [ -88.593750, 73.627789 ], [ -87.187500, 73.627789 ], [ -87.187500, 72.816074 ], [ -85.781250, 72.816074 ], [ -85.781250, 73.627789 ], [ -82.968750, 73.627789 ], [ -82.968750, 73.226700 ], [ -81.562500, 73.226700 ], [ -81.562500, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 71.965388 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -71.718750, 71.524909 ], [ -71.718750, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 69.657086 ], [ -67.500000, 69.657086 ], [ -67.500000, 69.162558 ], [ -68.906250, 69.162558 ], [ -68.906250, 68.656555 ], [ -67.500000, 68.656555 ], [ -67.500000, 68.138852 ], [ -66.093750, 68.138852 ], [ -66.093750, 67.609221 ], [ -64.687500, 67.609221 ], [ -64.687500, 67.067433 ], [ -61.875000, 67.067433 ], [ -61.875000, 66.513260 ], [ -63.281250, 66.513260 ], [ -63.281250, 65.946472 ], [ -64.687500, 65.946472 ], [ -64.687500, 65.366837 ], [ -66.093750, 65.366837 ], [ -66.093750, 65.946472 ], [ -67.500000, 65.946472 ], [ -67.500000, 66.513260 ], [ -68.906250, 66.513260 ], [ -68.906250, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.168107 ], [ -64.687500, 64.168107 ], [ -64.687500, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.267923 ], [ -68.906250, 62.267923 ], [ -68.906250, 62.915233 ], [ -73.125000, 62.915233 ], [ -73.125000, 64.168107 ], [ -74.531250, 64.168107 ], [ -74.531250, 64.774125 ], [ -78.750000, 64.774125 ], [ -78.750000, 65.366837 ], [ -74.531250, 65.366837 ], [ -74.531250, 67.067433 ], [ -73.125000, 67.067433 ], [ -73.125000, 68.138852 ], [ -75.937500, 68.138852 ], [ -75.937500, 67.609221 ], [ -77.343750, 67.609221 ], [ -77.343750, 68.656555 ], [ -77.343750, 70.140364 ], [ -82.968750, 70.140364 ], [ -82.968750, 69.657086 ], [ -81.562500, 69.657086 ], [ -81.562500, 68.656555 ], [ -82.968750, 68.656555 ], [ -82.968750, 67.609221 ], [ -81.562500, 67.609221 ], [ -81.562500, 67.067433 ], [ -82.968750, 67.067433 ], [ -82.968750, 66.513260 ], [ -87.187500, 66.513260 ], [ -87.187500, 65.946472 ], [ -85.781250, 65.946472 ], [ -85.781250, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.168107 ], [ -84.375000, 64.168107 ], [ -84.375000, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 65.366837 ], [ -88.593750, 65.366837 ], [ -88.593750, 64.168107 ], [ -91.406250, 64.168107 ], [ -91.406250, 62.915233 ], [ -92.812500, 62.915233 ], [ -92.812500, 62.267923 ], [ -94.218750, 62.267923 ], [ -94.218750, 61.606396 ], [ -95.625000, 61.606396 ], [ -95.625000, 58.813742 ], [ -94.218750, 58.813742 ], [ -94.218750, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.326521 ], [ -90.000000, 57.326521 ], [ -90.000000, 56.559482 ], [ -88.593750, 56.559482 ], [ -88.593750, 55.776573 ], [ -82.968750, 55.776573 ], [ -82.968750, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 51.618017 ], [ -80.156250, 51.618017 ], [ -80.156250, 52.482780 ], [ -78.750000, 52.482780 ], [ -78.750000, 53.330873 ], [ -80.156250, 53.330873 ], [ -80.156250, 54.977614 ], [ -78.750000, 54.977614 ], [ -78.750000, 55.776573 ], [ -77.343750, 55.776573 ], [ -77.343750, 58.077876 ], [ -78.750000, 58.077876 ], [ -78.750000, 59.534318 ], [ -77.343750, 59.534318 ], [ -77.343750, 60.239811 ], [ -78.750000, 60.239811 ], [ -78.750000, 62.915233 ], [ -75.937500, 62.915233 ], [ -75.937500, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.606396 ], [ -70.312500, 61.606396 ], [ -70.312500, 58.813742 ], [ -67.500000, 58.813742 ], [ -67.500000, 59.534318 ], [ -66.093750, 59.534318 ], [ -66.093750, 60.239811 ], [ -64.687500, 60.239811 ], [ -64.687500, 58.813742 ], [ -63.281250, 58.813742 ], [ -63.281250, 58.077876 ], [ -61.875000, 58.077876 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.250000, 54.162434 ], [ -56.250000, 52.482780 ], [ -57.656250, 52.482780 ], [ -57.656250, 51.618017 ], [ -59.062500, 51.618017 ], [ -59.062500, 50.736455 ], [ -67.500000, 50.736455 ], [ -67.500000, 49.837982 ], [ -68.906250, 49.837982 ], [ -68.906250, 48.922499 ], [ -70.312500, 48.922499 ], [ -70.312500, 47.989922 ], [ -70.312500, 46.073231 ], [ -71.718750, 46.073231 ], [ -71.718750, 45.089036 ], [ -77.343750, 45.089036 ], [ -77.343750, 44.087585 ], [ -80.156250, 44.087585 ], [ -80.156250, 43.068888 ], [ -81.562500, 43.068888 ], [ -81.562500, 42.032974 ], [ -84.375000, 42.032974 ], [ -84.375000, 43.068888 ], [ -82.968750, 43.068888 ], [ -82.968750, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.922499 ], [ -95.625000, 48.922499 ], [ -95.625000, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 50.736455 ], [ -126.562500, 50.736455 ], [ -126.562500, 49.837982 ], [ -129.375000, 49.837982 ], [ -129.375000, 50.736455 ], [ -127.968750, 50.736455 ], [ -127.968750, 51.618017 ], [ -129.375000, 51.618017 ], [ -129.375000, 54.162434 ], [ -130.781250, 54.162434 ], [ -130.781250, 56.559482 ], [ -132.187500, 56.559482 ], [ -132.187500, 57.326521 ], [ -133.593750, 57.326521 ], [ -133.593750, 58.813742 ], [ -135.000000, 58.813742 ], [ -135.000000, 59.534318 ], [ -139.218750, 59.534318 ], [ -139.218750, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 60.930432 ], [ -142.031250, 60.930432 ], [ -142.031250, 69.657086 ], [ -139.218750, 69.657086 ], [ -139.218750, 69.162558 ], [ -136.406250, 69.162558 ], [ -136.406250, 69.657086 ], [ -132.187500, 69.657086 ], [ -132.187500, 70.140364 ], [ -129.375000, 70.140364 ], [ -129.375000, 70.612614 ], [ -127.968750, 70.612614 ], [ -127.968750, 70.140364 ], [ -125.156250, 70.140364 ], [ -125.156250, 69.657086 ], [ -123.750000, 69.657086 ], [ -123.750000, 70.140364 ], [ -122.343750, 70.140364 ], [ -122.343750, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.162558 ], [ -115.312500, 69.162558 ], [ -115.312500, 69.657086 ], [ -118.125000, 69.657086 ], [ -118.125000, 70.140364 ], [ -115.312500, 70.140364 ], [ -115.312500, 70.612614 ], [ -119.531250, 70.612614 ], [ -119.531250, 71.074056 ], [ -116.718750, 71.074056 ], [ -116.718750, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 72.395706 ], [ -118.125000, 72.395706 ], [ -118.125000, 72.816074 ], [ -116.718750, 72.816074 ], [ -116.718750, 73.226700 ] ], [ [ -113.906250, 68.656555 ], [ -113.906250, 68.138852 ], [ -111.093750, 68.138852 ], [ -111.093750, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 68.138852 ], [ -109.687500, 68.138852 ], [ -109.687500, 68.656555 ], [ -113.906250, 68.656555 ] ], [ [ -108.281250, 69.162558 ], [ -109.687500, 69.162558 ], [ -109.687500, 68.656555 ], [ -108.281250, 68.656555 ], [ -108.281250, 69.162558 ] ], [ [ -115.312500, 69.162558 ], [ -115.312500, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -115.312500, 69.162558 ] ], [ [ -109.687500, 72.816074 ], [ -109.687500, 72.395706 ], [ -108.281250, 72.395706 ], [ -108.281250, 72.816074 ], [ -109.687500, 72.816074 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -154.687500, 20.632784 ], [ -154.687500, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ], [ -154.687500, 20.632784 ] ] ], [ [ [ -94.218750, 49.837982 ], [ -94.218750, 47.989922 ], [ -85.781250, 47.989922 ], [ -85.781250, 47.040182 ], [ -84.375000, 47.040182 ], [ -84.375000, 46.073231 ], [ -82.968750, 46.073231 ], [ -82.968750, 42.032974 ], [ -78.750000, 42.032974 ], [ -78.750000, 44.087585 ], [ -75.937500, 44.087585 ], [ -75.937500, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 44.087585 ], [ -70.312500, 44.087585 ], [ -70.312500, 40.979898 ], [ -74.531250, 40.979898 ], [ -74.531250, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 34.307144 ], [ -78.750000, 34.307144 ], [ -78.750000, 31.952162 ], [ -81.562500, 31.952162 ], [ -81.562500, 28.304381 ], [ -80.156250, 28.304381 ], [ -80.156250, 24.527135 ], [ -81.562500, 24.527135 ], [ -81.562500, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -85.781250, 29.535230 ], [ -85.781250, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.218750, 29.535230 ], [ -94.218750, 28.304381 ], [ -97.031250, 28.304381 ], [ -97.031250, 25.799891 ], [ -99.843750, 25.799891 ], [ -99.843750, 28.304381 ], [ -101.250000, 28.304381 ], [ -101.250000, 29.535230 ], [ -105.468750, 29.535230 ], [ -105.468750, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 30.751278 ], [ -113.906250, 30.751278 ], [ -113.906250, 31.952162 ], [ -116.718750, 31.952162 ], [ -116.718750, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 34.307144 ], [ -120.937500, 34.307144 ], [ -120.937500, 35.460670 ], [ -122.343750, 35.460670 ], [ -122.343750, 37.718590 ], [ -123.750000, 37.718590 ], [ -123.750000, 42.032974 ], [ -125.156250, 42.032974 ], [ -125.156250, 43.068888 ], [ -123.750000, 43.068888 ], [ -123.750000, 47.040182 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.922499 ], [ -95.625000, 48.922499 ], [ -95.625000, 49.837982 ], [ -94.218750, 49.837982 ] ] ], [ [ [ -139.218750, 59.534318 ], [ -142.031250, 59.534318 ], [ -142.031250, 60.239811 ], [ -149.062500, 60.239811 ], [ -149.062500, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 58.813742 ], [ -151.875000, 58.813742 ], [ -151.875000, 60.239811 ], [ -153.281250, 60.239811 ], [ -153.281250, 59.534318 ], [ -154.687500, 59.534318 ], [ -154.687500, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.077876 ], [ -154.687500, 58.077876 ], [ -154.687500, 57.326521 ], [ -156.093750, 57.326521 ], [ -156.093750, 56.559482 ], [ -157.500000, 56.559482 ], [ -157.500000, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 57.326521 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.813742 ], [ -158.906250, 58.813742 ], [ -158.906250, 58.077876 ], [ -160.312500, 58.077876 ], [ -160.312500, 58.813742 ], [ -161.718750, 58.813742 ], [ -161.718750, 59.534318 ], [ -164.531250, 59.534318 ], [ -164.531250, 60.239811 ], [ -165.937500, 60.239811 ], [ -165.937500, 62.267923 ], [ -164.531250, 62.267923 ], [ -164.531250, 62.915233 ], [ -161.718750, 62.915233 ], [ -161.718750, 63.548552 ], [ -160.312500, 63.548552 ], [ -160.312500, 64.774125 ], [ -163.125000, 64.774125 ], [ -163.125000, 64.168107 ], [ -165.937500, 64.168107 ], [ -165.937500, 64.774125 ], [ -167.343750, 64.774125 ], [ -167.343750, 65.366837 ], [ -168.750000, 65.366837 ], [ -168.750000, 65.946472 ], [ -164.531250, 65.946472 ], [ -164.531250, 66.513260 ], [ -163.125000, 66.513260 ], [ -163.125000, 67.067433 ], [ -164.531250, 67.067433 ], [ -164.531250, 67.609221 ], [ -165.937500, 67.609221 ], [ -165.937500, 68.656555 ], [ -164.531250, 68.656555 ], [ -164.531250, 69.162558 ], [ -163.125000, 69.162558 ], [ -163.125000, 69.657086 ], [ -161.718750, 69.657086 ], [ -161.718750, 70.140364 ], [ -160.312500, 70.140364 ], [ -160.312500, 70.612614 ], [ -157.500000, 70.612614 ], [ -157.500000, 71.074056 ], [ -154.687500, 71.074056 ], [ -154.687500, 70.612614 ], [ -149.062500, 70.612614 ], [ -149.062500, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 60.239811 ], [ -139.218750, 60.239811 ], [ -139.218750, 59.534318 ] ] ], [ [ [ -137.812500, 58.813742 ], [ -136.406250, 58.813742 ], [ -136.406250, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -133.593750, 58.813742 ], [ -133.593750, 58.077876 ], [ -137.812500, 58.077876 ], [ -137.812500, 58.813742 ] ] ], [ [ [ -163.125000, 54.977614 ], [ -163.125000, 54.162434 ], [ -164.531250, 54.162434 ], [ -164.531250, 54.977614 ], [ -163.125000, 54.977614 ] ] ], [ [ [ -132.187500, 55.776573 ], [ -129.375000, 55.776573 ], [ -129.375000, 54.977614 ], [ -132.187500, 54.977614 ], [ -132.187500, 55.776573 ] ] ], [ [ [ -160.312500, 55.776573 ], [ -160.312500, 54.977614 ], [ -161.718750, 54.977614 ], [ -161.718750, 55.776573 ], [ -160.312500, 55.776573 ] ] ], [ [ [ -133.593750, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -133.593750, 56.559482 ], [ -133.593750, 57.326521 ] ] ], [ [ [ -165.937500, 60.239811 ], [ -165.937500, 59.534318 ], [ -167.343750, 59.534318 ], [ -167.343750, 60.239811 ], [ -165.937500, 60.239811 ] ] ], [ [ [ -168.750000, 63.548552 ], [ -168.750000, 62.915233 ], [ -170.156250, 62.915233 ], [ -170.156250, 63.548552 ], [ -168.750000, 63.548552 ] ] ], [ [ [ -154.687500, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 56.559482 ], [ -154.687500, 56.559482 ], [ -154.687500, 57.326521 ] ] ], [ [ [ -153.281250, 58.077876 ], [ -151.875000, 58.077876 ], [ -151.875000, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 58.077876 ] ] ], [ [ [ -139.218750, 59.534318 ], [ -137.812500, 59.534318 ], [ -137.812500, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.534318 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -156.093750, 21.943046 ], [ -156.093750, 20.632784 ], [ -157.500000, 20.632784 ], [ -157.500000, 21.943046 ], [ -156.093750, 21.943046 ] ] ], [ [ [ -95.625000, 49.837982 ], [ -95.625000, 48.922499 ], [ -88.593750, 48.922499 ], [ -88.593750, 47.989922 ], [ -85.781250, 47.989922 ], [ -85.781250, 47.040182 ], [ -84.375000, 47.040182 ], [ -84.375000, 46.073231 ], [ -82.968750, 46.073231 ], [ -82.968750, 43.068888 ], [ -84.375000, 43.068888 ], [ -84.375000, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 43.068888 ], [ -80.156250, 43.068888 ], [ -80.156250, 44.087585 ], [ -77.343750, 44.087585 ], [ -77.343750, 45.089036 ], [ -71.718750, 45.089036 ], [ -71.718750, 46.073231 ], [ -70.312500, 46.073231 ], [ -70.312500, 47.989922 ], [ -68.906250, 47.989922 ], [ -68.906250, 46.073231 ], [ -67.500000, 46.073231 ], [ -67.500000, 45.089036 ], [ -68.906250, 45.089036 ], [ -68.906250, 44.087585 ], [ -71.718750, 44.087585 ], [ -71.718750, 42.032974 ], [ -73.125000, 42.032974 ], [ -73.125000, 40.979898 ], [ -74.531250, 40.979898 ], [ -74.531250, 39.909736 ], [ -75.937500, 39.909736 ], [ -75.937500, 38.822591 ], [ -77.343750, 38.822591 ], [ -77.343750, 36.597889 ], [ -75.937500, 36.597889 ], [ -75.937500, 35.460670 ], [ -78.750000, 35.460670 ], [ -78.750000, 34.307144 ], [ -80.156250, 34.307144 ], [ -80.156250, 33.137551 ], [ -81.562500, 33.137551 ], [ -81.562500, 27.059126 ], [ -80.156250, 27.059126 ], [ -80.156250, 25.799891 ], [ -82.968750, 25.799891 ], [ -82.968750, 29.535230 ], [ -84.375000, 29.535230 ], [ -84.375000, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -92.812500, 29.535230 ], [ -92.812500, 30.751278 ], [ -94.218750, 30.751278 ], [ -94.218750, 29.535230 ], [ -97.031250, 29.535230 ], [ -97.031250, 28.304381 ], [ -98.437500, 28.304381 ], [ -98.437500, 27.059126 ], [ -99.843750, 27.059126 ], [ -99.843750, 28.304381 ], [ -101.250000, 28.304381 ], [ -101.250000, 29.535230 ], [ -105.468750, 29.535230 ], [ -105.468750, 30.751278 ], [ -106.875000, 30.751278 ], [ -106.875000, 31.952162 ], [ -113.906250, 31.952162 ], [ -113.906250, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 34.307144 ], [ -119.531250, 34.307144 ], [ -119.531250, 35.460670 ], [ -122.343750, 35.460670 ], [ -122.343750, 36.597889 ], [ -123.750000, 36.597889 ], [ -123.750000, 39.909736 ], [ -125.156250, 39.909736 ], [ -125.156250, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 49.837982 ], [ -95.625000, 49.837982 ] ] ], [ [ [ -140.625000, 60.239811 ], [ -146.250000, 60.239811 ], [ -146.250000, 60.930432 ], [ -149.062500, 60.930432 ], [ -149.062500, 60.239811 ], [ -150.468750, 60.239811 ], [ -150.468750, 59.534318 ], [ -151.875000, 59.534318 ], [ -151.875000, 60.930432 ], [ -153.281250, 60.930432 ], [ -153.281250, 59.534318 ], [ -154.687500, 59.534318 ], [ -154.687500, 58.077876 ], [ -157.500000, 58.077876 ], [ -157.500000, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 58.813742 ], [ -163.125000, 58.813742 ], [ -163.125000, 60.239811 ], [ -165.937500, 60.239811 ], [ -167.343750, 60.239811 ], [ -167.343750, 60.930432 ], [ -165.937500, 60.930432 ], [ -165.937500, 63.548552 ], [ -161.718750, 63.548552 ], [ -161.718750, 64.774125 ], [ -167.343750, 64.774125 ], [ -167.343750, 65.366837 ], [ -168.750000, 65.366837 ], [ -168.750000, 65.946472 ], [ -167.343750, 65.946472 ], [ -167.343750, 66.513260 ], [ -163.125000, 66.513260 ], [ -163.125000, 67.067433 ], [ -164.531250, 67.067433 ], [ -164.531250, 68.138852 ], [ -167.343750, 68.138852 ], [ -167.343750, 69.162558 ], [ -164.531250, 69.162558 ], [ -164.531250, 69.657086 ], [ -163.125000, 69.657086 ], [ -163.125000, 70.612614 ], [ -160.312500, 70.612614 ], [ -160.312500, 71.074056 ], [ -157.500000, 71.074056 ], [ -157.500000, 71.524909 ], [ -156.093750, 71.524909 ], [ -156.093750, 71.074056 ], [ -153.281250, 71.074056 ], [ -153.281250, 70.612614 ], [ -147.656250, 70.612614 ], [ -147.656250, 70.140364 ], [ -142.031250, 70.140364 ], [ -142.031250, 60.930432 ], [ -140.625000, 60.930432 ], [ -140.625000, 60.239811 ] ], [ [ -151.875000, 61.606396 ], [ -151.875000, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.606396 ], [ -151.875000, 61.606396 ] ] ], [ [ [ -133.593750, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -130.781250, 56.559482 ], [ -130.781250, 54.977614 ], [ -132.187500, 54.977614 ], [ -132.187500, 55.776573 ], [ -133.593750, 55.776573 ], [ -133.593750, 57.326521 ] ] ], [ [ [ -163.125000, 55.776573 ], [ -163.125000, 54.977614 ], [ -164.531250, 54.977614 ], [ -164.531250, 55.776573 ], [ -163.125000, 55.776573 ] ] ], [ [ [ -158.906250, 56.559482 ], [ -158.906250, 55.776573 ], [ -163.125000, 55.776573 ], [ -163.125000, 56.559482 ], [ -158.906250, 56.559482 ] ] ], [ [ [ -139.218750, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.534318 ] ] ], [ [ [ -171.562500, 64.168107 ], [ -171.562500, 63.548552 ], [ -172.968750, 63.548552 ], [ -172.968750, 64.168107 ], [ -171.562500, 64.168107 ] ] ], [ [ [ -154.687500, 58.077876 ], [ -153.281250, 58.077876 ], [ -153.281250, 57.326521 ], [ -154.687500, 57.326521 ], [ -154.687500, 58.077876 ] ] ], [ [ [ -135.000000, 58.813742 ], [ -133.593750, 58.813742 ], [ -133.593750, 58.077876 ], [ -135.000000, 58.077876 ], [ -135.000000, 58.813742 ] ] ], [ [ [ -140.625000, 60.239811 ], [ -139.218750, 60.239811 ], [ -139.218750, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 60.239811 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.468750, 31.952162 ], [ -105.468750, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 23.241346 ], [ -98.437500, 23.241346 ], [ -98.437500, 21.943046 ], [ -97.031250, 21.943046 ], [ -97.031250, 19.311143 ], [ -95.625000, 19.311143 ], [ -95.625000, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 16.636192 ], [ -95.625000, 16.636192 ], [ -95.625000, 15.284185 ], [ -98.437500, 15.284185 ], [ -98.437500, 16.636192 ], [ -101.250000, 16.636192 ], [ -101.250000, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 23.241346 ], [ -108.281250, 23.241346 ], [ -108.281250, 25.799891 ], [ -109.687500, 25.799891 ], [ -109.687500, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 30.751278 ], [ -108.281250, 30.751278 ], [ -108.281250, 31.952162 ], [ -105.468750, 31.952162 ] ] ], [ [ [ -87.187500, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 19.311143 ], [ -90.000000, 19.311143 ], [ -90.000000, 20.632784 ], [ -88.593750, 20.632784 ], [ -88.593750, 21.943046 ], [ -87.187500, 21.943046 ], [ -87.187500, 17.978733 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 25.799891 ], [ -113.906250, 25.799891 ], [ -113.906250, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 24.527135 ] ] ], [ [ [ -115.312500, 30.751278 ], [ -116.718750, 30.751278 ], [ -116.718750, 31.952162 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.751278 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -109.687500, 24.527135 ], [ -109.687500, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 24.527135 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 29.535230 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 25.799891 ], [ -111.093750, 25.799891 ], [ -111.093750, 24.527135 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -109.687500, 24.527135 ], [ -109.687500, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 24.527135 ] ] ], [ [ [ -113.906250, 31.952162 ], [ -106.875000, 31.952162 ], [ -106.875000, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 27.059126 ], [ -98.437500, 27.059126 ], [ -98.437500, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 19.311143 ], [ -91.406250, 19.311143 ], [ -91.406250, 21.943046 ], [ -87.187500, 21.943046 ], [ -87.187500, 20.632784 ], [ -88.593750, 20.632784 ], [ -88.593750, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 16.636192 ], [ -92.812500, 16.636192 ], [ -92.812500, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 16.636192 ], [ -99.843750, 16.636192 ], [ -99.843750, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 20.632784 ], [ -106.875000, 20.632784 ], [ -106.875000, 23.241346 ], [ -108.281250, 23.241346 ], [ -108.281250, 25.799891 ], [ -109.687500, 25.799891 ], [ -109.687500, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 31.952162 ] ] ], [ [ [ -113.906250, 31.952162 ], [ -115.312500, 31.952162 ], [ -115.312500, 29.535230 ], [ -116.718750, 29.535230 ], [ -116.718750, 31.952162 ], [ -118.125000, 31.952162 ], [ -118.125000, 33.137551 ], [ -113.906250, 33.137551 ], [ -113.906250, 31.952162 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 17.978733 ], [ -88.593750, 13.923404 ], [ -92.812500, 13.923404 ], [ -92.812500, 15.284185 ], [ -91.406250, 15.284185 ], [ -91.406250, 17.978733 ], [ -88.593750, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.978733 ], [ -90.000000, 13.923404 ], [ -91.406250, 13.923404 ], [ -91.406250, 15.284185 ], [ -92.812500, 15.284185 ], [ -92.812500, 16.636192 ], [ -91.406250, 16.636192 ], [ -91.406250, 17.978733 ], [ -90.000000, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.406250, 81.923186 ], [ -46.406250, 82.676285 ], [ -45.000000, 82.676285 ], [ -45.000000, 83.026219 ], [ -43.593750, 83.026219 ], [ -43.593750, 83.194896 ], [ -39.375000, 83.194896 ], [ -39.375000, 83.359511 ], [ -37.968750, 83.359511 ], [ -37.968750, 83.520162 ], [ -35.156250, 83.520162 ], [ -35.156250, 83.676943 ], [ -32.343750, 83.676943 ], [ -32.343750, 83.520162 ], [ -26.718750, 83.520162 ], [ -26.718750, 83.359511 ], [ -25.312500, 83.359511 ], [ -25.312500, 83.194896 ], [ -23.906250, 83.194896 ], [ -23.906250, 82.853382 ], [ -22.500000, 82.853382 ], [ -22.500000, 82.676285 ], [ -21.093750, 82.676285 ], [ -21.093750, 82.494824 ], [ -22.500000, 82.494824 ], [ -22.500000, 82.308893 ], [ -28.125000, 82.308893 ], [ -28.125000, 81.923186 ], [ -26.718750, 81.923186 ], [ -26.718750, 81.723188 ], [ -23.906250, 81.723188 ], [ -23.906250, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.308321 ], [ -21.093750, 81.308321 ], [ -21.093750, 81.518272 ], [ -18.281250, 81.518272 ], [ -18.281250, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.093214 ], [ -14.062500, 81.093214 ], [ -14.062500, 80.872827 ], [ -15.468750, 80.872827 ], [ -15.468750, 80.647035 ], [ -16.875000, 80.647035 ], [ -16.875000, 80.178713 ], [ -18.281250, 80.178713 ], [ -18.281250, 78.903929 ], [ -19.687500, 78.903929 ], [ -19.687500, 77.157163 ], [ -18.281250, 77.157163 ], [ -18.281250, 76.840816 ], [ -19.687500, 76.840816 ], [ -19.687500, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 76.184995 ], [ -19.687500, 76.184995 ], [ -19.687500, 75.140778 ], [ -21.093750, 75.140778 ], [ -21.093750, 74.775843 ], [ -19.687500, 74.775843 ], [ -19.687500, 74.402163 ], [ -21.093750, 74.402163 ], [ -21.093750, 73.226700 ], [ -23.906250, 73.226700 ], [ -23.906250, 72.816074 ], [ -22.500000, 72.816074 ], [ -22.500000, 72.395706 ], [ -25.312500, 72.395706 ], [ -25.312500, 71.965388 ], [ -23.906250, 71.965388 ], [ -23.906250, 71.524909 ], [ -22.500000, 71.524909 ], [ -22.500000, 71.074056 ], [ -21.093750, 71.074056 ], [ -21.093750, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 68.656555 ], [ -28.125000, 68.656555 ], [ -28.125000, 68.138852 ], [ -32.343750, 68.138852 ], [ -32.343750, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 65.946472 ], [ -37.968750, 65.946472 ], [ -37.968750, 65.366837 ], [ -39.375000, 65.366837 ], [ -39.375000, 64.774125 ], [ -40.781250, 64.774125 ], [ -40.781250, 62.915233 ], [ -42.187500, 62.915233 ], [ -42.187500, 60.239811 ], [ -46.406250, 60.239811 ], [ -46.406250, 60.930432 ], [ -49.218750, 60.930432 ], [ -49.218750, 62.267923 ], [ -50.625000, 62.267923 ], [ -50.625000, 62.915233 ], [ -52.031250, 62.915233 ], [ -52.031250, 65.366837 ], [ -53.437500, 65.366837 ], [ -53.437500, 68.138852 ], [ -52.031250, 68.138852 ], [ -52.031250, 68.656555 ], [ -50.625000, 68.656555 ], [ -50.625000, 69.657086 ], [ -52.031250, 69.657086 ], [ -52.031250, 69.162558 ], [ -54.843750, 69.162558 ], [ -54.843750, 70.612614 ], [ -53.437500, 70.612614 ], [ -53.437500, 71.524909 ], [ -56.250000, 71.524909 ], [ -56.250000, 71.965388 ], [ -54.843750, 71.965388 ], [ -54.843750, 73.226700 ], [ -56.250000, 73.226700 ], [ -56.250000, 74.019543 ], [ -57.656250, 74.019543 ], [ -57.656250, 74.775843 ], [ -59.062500, 74.775843 ], [ -59.062500, 75.497157 ], [ -60.468750, 75.497157 ], [ -60.468750, 75.845169 ], [ -61.875000, 75.845169 ], [ -61.875000, 76.184995 ], [ -70.312500, 76.184995 ], [ -70.312500, 76.840816 ], [ -71.718750, 76.840816 ], [ -71.718750, 77.157163 ], [ -68.906250, 77.157163 ], [ -68.906250, 77.466028 ], [ -70.312500, 77.466028 ], [ -70.312500, 77.767582 ], [ -73.125000, 77.767582 ], [ -73.125000, 78.349411 ], [ -71.718750, 78.349411 ], [ -71.718750, 78.630006 ], [ -68.906250, 78.630006 ], [ -68.906250, 78.903929 ], [ -67.500000, 78.903929 ], [ -67.500000, 79.171335 ], [ -66.093750, 79.171335 ], [ -66.093750, 79.432371 ], [ -64.687500, 79.432371 ], [ -64.687500, 79.687184 ], [ -66.093750, 79.687184 ], [ -66.093750, 79.935918 ], [ -67.500000, 79.935918 ], [ -67.500000, 80.415707 ], [ -66.093750, 80.415707 ], [ -66.093750, 80.872827 ], [ -64.687500, 80.872827 ], [ -64.687500, 81.093214 ], [ -63.281250, 81.093214 ], [ -63.281250, 81.308321 ], [ -61.875000, 81.308321 ], [ -61.875000, 81.518272 ], [ -63.281250, 81.518272 ], [ -63.281250, 81.723188 ], [ -61.875000, 81.723188 ], [ -61.875000, 81.923186 ], [ -60.468750, 81.923186 ], [ -60.468750, 82.118384 ], [ -53.437500, 82.118384 ], [ -53.437500, 81.923186 ], [ -52.031250, 81.923186 ], [ -52.031250, 82.308893 ], [ -49.218750, 82.308893 ], [ -49.218750, 82.118384 ], [ -47.812500, 82.118384 ], [ -47.812500, 81.923186 ], [ -46.406250, 81.923186 ] ], [ [ -46.406250, 81.923186 ], [ -46.406250, 81.723188 ], [ -45.000000, 81.723188 ], [ -45.000000, 81.923186 ], [ -46.406250, 81.923186 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.812500, 82.118384 ], [ -47.812500, 82.676285 ], [ -46.406250, 82.676285 ], [ -46.406250, 83.026219 ], [ -45.000000, 83.026219 ], [ -45.000000, 83.194896 ], [ -40.781250, 83.194896 ], [ -40.781250, 83.359511 ], [ -39.375000, 83.359511 ], [ -39.375000, 83.676943 ], [ -32.343750, 83.676943 ], [ -32.343750, 83.520162 ], [ -28.125000, 83.520162 ], [ -28.125000, 83.359511 ], [ -26.718750, 83.359511 ], [ -26.718750, 83.194896 ], [ -23.906250, 83.194896 ], [ -23.906250, 83.026219 ], [ -22.500000, 83.026219 ], [ -22.500000, 82.853382 ], [ -21.093750, 82.853382 ], [ -21.093750, 82.676285 ], [ -22.500000, 82.676285 ], [ -22.500000, 82.494824 ], [ -23.906250, 82.494824 ], [ -23.906250, 82.308893 ], [ -28.125000, 82.308893 ], [ -28.125000, 82.118384 ], [ -26.718750, 82.118384 ], [ -26.718750, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.518272 ], [ -21.093750, 81.518272 ], [ -21.093750, 81.723188 ], [ -18.281250, 81.723188 ], [ -18.281250, 81.923186 ], [ -16.875000, 81.923186 ], [ -16.875000, 81.723188 ], [ -14.062500, 81.723188 ], [ -14.062500, 81.518272 ], [ -12.656250, 81.518272 ], [ -12.656250, 81.093214 ], [ -14.062500, 81.093214 ], [ -14.062500, 80.872827 ], [ -15.468750, 80.872827 ], [ -15.468750, 80.647035 ], [ -16.875000, 80.647035 ], [ -16.875000, 80.415707 ], [ -18.281250, 80.415707 ], [ -18.281250, 79.687184 ], [ -19.687500, 79.687184 ], [ -19.687500, 79.171335 ], [ -21.093750, 79.171335 ], [ -21.093750, 78.349411 ], [ -19.687500, 78.349411 ], [ -19.687500, 77.157163 ], [ -21.093750, 77.157163 ], [ -21.093750, 76.840816 ], [ -22.500000, 76.840816 ], [ -22.500000, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 75.845169 ], [ -19.687500, 75.845169 ], [ -19.687500, 75.497157 ], [ -21.093750, 75.497157 ], [ -21.093750, 74.775843 ], [ -19.687500, 74.775843 ], [ -19.687500, 74.402163 ], [ -22.500000, 74.402163 ], [ -22.500000, 74.019543 ], [ -21.093750, 74.019543 ], [ -21.093750, 73.627789 ], [ -23.906250, 73.627789 ], [ -23.906250, 73.226700 ], [ -22.500000, 73.226700 ], [ -22.500000, 72.395706 ], [ -23.906250, 72.395706 ], [ -23.906250, 71.965388 ], [ -22.500000, 71.965388 ], [ -22.500000, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.657086 ], [ -25.312500, 69.657086 ], [ -25.312500, 69.162558 ], [ -26.718750, 69.162558 ], [ -26.718750, 68.656555 ], [ -28.125000, 68.656555 ], [ -28.125000, 68.138852 ], [ -33.750000, 68.138852 ], [ -33.750000, 67.609221 ], [ -35.156250, 67.609221 ], [ -35.156250, 66.513260 ], [ -36.562500, 66.513260 ], [ -36.562500, 65.946472 ], [ -40.781250, 65.946472 ], [ -40.781250, 63.548552 ], [ -42.187500, 63.548552 ], [ -42.187500, 62.915233 ], [ -43.593750, 62.915233 ], [ -43.593750, 60.239811 ], [ -46.406250, 60.239811 ], [ -46.406250, 60.930432 ], [ -50.625000, 60.930432 ], [ -50.625000, 63.548552 ], [ -52.031250, 63.548552 ], [ -52.031250, 64.168107 ], [ -53.437500, 64.168107 ], [ -53.437500, 65.946472 ], [ -54.843750, 65.946472 ], [ -54.843750, 66.513260 ], [ -53.437500, 66.513260 ], [ -53.437500, 67.067433 ], [ -54.843750, 67.067433 ], [ -54.843750, 68.138852 ], [ -53.437500, 68.138852 ], [ -53.437500, 68.656555 ], [ -52.031250, 68.656555 ], [ -52.031250, 69.657086 ], [ -54.843750, 69.657086 ], [ -54.843750, 71.074056 ], [ -53.437500, 71.074056 ], [ -53.437500, 71.524909 ], [ -56.250000, 71.524909 ], [ -56.250000, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.816074 ], [ -56.250000, 72.816074 ], [ -56.250000, 74.402163 ], [ -57.656250, 74.402163 ], [ -57.656250, 74.775843 ], [ -59.062500, 74.775843 ], [ -59.062500, 75.845169 ], [ -61.875000, 75.845169 ], [ -61.875000, 76.184995 ], [ -70.312500, 76.184995 ], [ -70.312500, 76.840816 ], [ -71.718750, 76.840816 ], [ -71.718750, 77.157163 ], [ -68.906250, 77.157163 ], [ -68.906250, 77.466028 ], [ -70.312500, 77.466028 ], [ -70.312500, 77.767582 ], [ -74.531250, 77.767582 ], [ -74.531250, 78.630006 ], [ -73.125000, 78.630006 ], [ -73.125000, 78.903929 ], [ -70.312500, 78.903929 ], [ -70.312500, 79.171335 ], [ -67.500000, 79.171335 ], [ -67.500000, 79.432371 ], [ -66.093750, 79.432371 ], [ -66.093750, 79.935918 ], [ -68.906250, 79.935918 ], [ -68.906250, 80.415707 ], [ -67.500000, 80.415707 ], [ -67.500000, 80.647035 ], [ -66.093750, 80.647035 ], [ -66.093750, 81.093214 ], [ -64.687500, 81.093214 ], [ -64.687500, 81.308321 ], [ -63.281250, 81.308321 ], [ -63.281250, 81.923186 ], [ -60.468750, 81.923186 ], [ -60.468750, 82.118384 ], [ -57.656250, 82.118384 ], [ -57.656250, 82.308893 ], [ -54.843750, 82.308893 ], [ -54.843750, 82.118384 ], [ -53.437500, 82.118384 ], [ -53.437500, 81.923186 ], [ -52.031250, 81.923186 ], [ -52.031250, 82.308893 ], [ -49.218750, 82.308893 ], [ -49.218750, 82.118384 ], [ -47.812500, 82.118384 ] ], [ [ -29.531250, 82.308893 ], [ -32.343750, 82.308893 ], [ -32.343750, 82.118384 ], [ -29.531250, 82.118384 ], [ -29.531250, 82.308893 ] ], [ [ -22.500000, 81.518272 ], [ -23.906250, 81.518272 ], [ -23.906250, 81.308321 ], [ -22.500000, 81.308321 ], [ -22.500000, 81.518272 ] ], [ [ -53.437500, 71.074056 ], [ -53.437500, 70.612614 ], [ -52.031250, 70.612614 ], [ -52.031250, 71.074056 ], [ -53.437500, 71.074056 ] ], [ [ -47.812500, 82.118384 ], [ -47.812500, 81.923186 ], [ -46.406250, 81.923186 ], [ -46.406250, 82.118384 ], [ -47.812500, 82.118384 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 27.059126 ], [ -77.343750, 25.799891 ], [ -77.343750, 24.527135 ], [ -78.750000, 24.527135 ], [ -78.750000, 25.799891 ], [ -78.750000, 27.059126 ], [ -77.343750, 27.059126 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 17.978733 ], [ -88.593750, 16.636192 ], [ -90.000000, 16.636192 ], [ -90.000000, 17.978733 ], [ -88.593750, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.187500, 13.923404 ], [ -87.187500, 12.554564 ], [ -88.593750, 12.554564 ], [ -88.593750, 13.923404 ], [ -87.187500, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 15.284185 ], [ -88.593750, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 15.284185 ], [ -88.593750, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.284185 ], [ -84.375000, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 15.284185 ], [ -84.375000, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 16.636192 ], [ -84.375000, 15.284185 ], [ -85.781250, 15.284185 ], [ -85.781250, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 15.284185 ], [ -90.000000, 15.284185 ], [ -90.000000, 16.636192 ], [ -84.375000, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 15.284185 ], [ -82.968750, 12.554564 ], [ -84.375000, 12.554564 ], [ -84.375000, 11.178402 ], [ -87.187500, 11.178402 ], [ -87.187500, 13.923404 ], [ -84.375000, 13.923404 ], [ -84.375000, 15.284185 ], [ -82.968750, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.284185 ], [ -84.375000, 11.178402 ], [ -87.187500, 11.178402 ], [ -87.187500, 12.554564 ], [ -88.593750, 12.554564 ], [ -88.593750, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 15.284185 ], [ -84.375000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.750000, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 20.632784 ], [ -78.750000, 20.632784 ], [ -78.750000, 21.943046 ] ] ], [ [ [ -82.968750, 23.241346 ], [ -82.968750, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 23.241346 ], [ -82.968750, 23.241346 ] ] ], [ [ [ -77.343750, 20.632784 ], [ -74.531250, 20.632784 ], [ -74.531250, 19.311143 ], [ -77.343750, 19.311143 ], [ -77.343750, 20.632784 ] ] ], [ [ [ -80.156250, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 23.241346 ], [ -80.156250, 23.241346 ], [ -80.156250, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.750000, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 23.241346 ], [ -78.750000, 23.241346 ], [ -78.750000, 21.943046 ] ] ], [ [ [ -84.375000, 23.241346 ], [ -84.375000, 21.943046 ], [ -85.781250, 21.943046 ], [ -85.781250, 23.241346 ], [ -84.375000, 23.241346 ] ] ], [ [ [ -78.750000, 21.943046 ], [ -75.937500, 21.943046 ], [ -75.937500, 20.632784 ], [ -78.750000, 20.632784 ], [ -78.750000, 21.943046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 11.178402 ], [ -82.968750, 8.407168 ], [ -84.375000, 8.407168 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -82.968750, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -84.375000, 11.178402 ], [ -84.375000, 9.795678 ] ] ], [ [ [ -84.375000, 9.795678 ], [ -82.968750, 9.795678 ], [ -82.968750, 8.407168 ], [ -84.375000, 8.407168 ], [ -84.375000, 9.795678 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.562500, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -81.562500, 9.795678 ], [ -81.562500, 8.407168 ] ] ], [ [ [ -78.750000, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 8.407168 ] ] ], [ [ [ -81.562500, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 7.013668 ], [ -81.562500, 7.013668 ], [ -81.562500, 8.407168 ] ] ], [ [ [ -78.750000, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.013668 ], [ -78.750000, 7.013668 ], [ -78.750000, 8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.156250, 9.795678 ], [ -80.156250, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -80.156250, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 19.311143 ], [ -68.906250, 17.978733 ], [ -71.718750, 17.978733 ], [ -71.718750, 19.311143 ], [ -68.906250, 19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 19.311143 ], [ -77.343750, 17.978733 ], [ -78.750000, 17.978733 ], [ -78.750000, 19.311143 ], [ -77.343750, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125000, 11.178402 ], [ -73.125000, 8.407168 ], [ -71.718750, 8.407168 ], [ -71.718750, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 5.615986 ], [ -67.500000, 5.615986 ], [ -67.500000, 1.406109 ], [ -68.906250, 1.406109 ], [ -68.906250, -2.811371 ], [ -73.125000, -2.811371 ], [ -73.125000, -1.406109 ], [ -74.531250, -1.406109 ], [ -74.531250, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 1.406109 ], [ -78.750000, 1.406109 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 8.407168 ], [ -75.937500, 8.407168 ], [ -75.937500, 11.178402 ], [ -73.125000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 20.632784 ], [ -71.718750, 19.311143 ], [ -73.125000, 19.311143 ], [ -73.125000, 20.632784 ], [ -71.718750, 20.632784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875000, 11.178402 ], [ -61.875000, 9.795678 ], [ -60.468750, 9.795678 ], [ -60.468750, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.281250, 2.811371 ], [ -63.281250, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 5.615986 ], [ -70.312500, 5.615986 ], [ -70.312500, 7.013668 ], [ -71.718750, 7.013668 ], [ -71.718750, 8.407168 ], [ -73.125000, 8.407168 ], [ -73.125000, 11.178402 ], [ -66.093750, 11.178402 ], [ -66.093750, 9.795678 ], [ -64.687500, 9.795678 ], [ -64.687500, 11.178402 ], [ -61.875000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.312500, 20.632784 ], [ -70.312500, 19.311143 ], [ -71.718750, 19.311143 ], [ -71.718750, 20.632784 ], [ -70.312500, 20.632784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 11.178402 ], [ -60.468750, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 11.178402 ], [ -60.468750, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.718750, -4.214943 ], [ -71.718750, -2.811371 ], [ -70.312500, -2.811371 ] ] ], [ [ [ -73.125000, 7.013668 ], [ -67.500000, 7.013668 ], [ -67.500000, 5.615986 ], [ -68.906250, 5.615986 ], [ -68.906250, 2.811371 ], [ -70.312500, 2.811371 ], [ -70.312500, -1.406109 ], [ -74.531250, -1.406109 ], [ -74.531250, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 1.406109 ], [ -80.156250, 1.406109 ], [ -80.156250, 2.811371 ], [ -78.750000, 2.811371 ], [ -78.750000, 4.214943 ], [ -77.343750, 4.214943 ], [ -77.343750, 7.013668 ], [ -78.750000, 7.013668 ], [ -78.750000, 9.795678 ], [ -75.937500, 9.795678 ], [ -75.937500, 11.178402 ], [ -74.531250, 11.178402 ], [ -74.531250, 12.554564 ], [ -73.125000, 12.554564 ], [ -73.125000, 7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 8.407168 ], [ -59.062500, 7.013668 ], [ -57.656250, 7.013668 ], [ -57.656250, 1.406109 ], [ -59.062500, 1.406109 ], [ -59.062500, 2.811371 ], [ -60.468750, 2.811371 ], [ -60.468750, 8.407168 ], [ -59.062500, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, 19.311143 ], [ -66.093750, 17.978733 ], [ -67.500000, 17.978733 ], [ -67.500000, 19.311143 ], [ -66.093750, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.437500, 5.615986 ], [ -53.437500, 2.811371 ], [ -56.250000, 2.811371 ], [ -56.250000, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 5.615986 ], [ -53.437500, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 12.554564 ], [ -68.906250, 11.178402 ], [ -61.875000, 11.178402 ], [ -61.875000, 9.795678 ], [ -60.468750, 9.795678 ], [ -60.468750, 7.013668 ], [ -61.875000, 7.013668 ], [ -61.875000, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 2.811371 ], [ -68.906250, 2.811371 ], [ -68.906250, 5.615986 ], [ -67.500000, 5.615986 ], [ -67.500000, 7.013668 ], [ -73.125000, 7.013668 ], [ -73.125000, 9.795678 ], [ -71.718750, 9.795678 ], [ -71.718750, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 12.554564 ], [ -68.906250, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 66.513260 ], [ -14.062500, 64.774125 ], [ -15.468750, 64.774125 ], [ -15.468750, 63.548552 ], [ -22.500000, 63.548552 ], [ -22.500000, 64.168107 ], [ -23.906250, 64.168107 ], [ -23.906250, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -22.500000, 65.946472 ], [ -15.468750, 65.946472 ], [ -15.468750, 66.513260 ], [ -14.062500, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 8.407168 ], [ -59.062500, 7.013668 ], [ -57.656250, 7.013668 ], [ -57.656250, 5.615986 ], [ -59.062500, 5.615986 ], [ -59.062500, 4.214943 ], [ -57.656250, 4.214943 ], [ -57.656250, 2.811371 ], [ -59.062500, 2.811371 ], [ -59.062500, 1.406109 ], [ -60.468750, 1.406109 ], [ -60.468750, 5.615986 ], [ -61.875000, 5.615986 ], [ -61.875000, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 8.407168 ], [ -59.062500, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 54.977614 ], [ -7.031250, 54.162434 ], [ -5.625000, 54.162434 ], [ -5.625000, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 51.618017 ], [ -9.843750, 51.618017 ], [ -9.843750, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 54.977614 ], [ -7.031250, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, 7.013668 ], [ -54.843750, 2.811371 ], [ -57.656250, 2.811371 ], [ -57.656250, 4.214943 ], [ -59.062500, 4.214943 ], [ -59.062500, 5.615986 ], [ -57.656250, 5.615986 ], [ -57.656250, 7.013668 ], [ -54.843750, 7.013668 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 58.813742 ], [ -2.812500, 58.077876 ], [ -4.218750, 58.077876 ], [ -4.218750, 57.326521 ], [ -1.406250, 57.326521 ], [ -1.406250, 56.559482 ], [ -2.812500, 56.559482 ], [ -2.812500, 55.776573 ], [ -1.406250, 55.776573 ], [ -1.406250, 54.162434 ], [ 0.000000, 54.162434 ], [ 0.000000, 52.482780 ], [ 1.406250, 52.482780 ], [ 1.406250, 50.736455 ], [ -2.812500, 50.736455 ], [ -2.812500, 49.837982 ], [ -5.625000, 49.837982 ], [ -5.625000, 50.736455 ], [ -4.218750, 50.736455 ], [ -4.218750, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -4.218750, 54.162434 ], [ -4.218750, 55.776573 ], [ -5.625000, 55.776573 ], [ -5.625000, 58.813742 ], [ -2.812500, 58.813742 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.500000, 65.946472 ], [ -19.687500, 65.946472 ], [ -19.687500, 66.513260 ], [ -15.468750, 66.513260 ], [ -15.468750, 65.366837 ], [ -14.062500, 65.366837 ], [ -14.062500, 64.774125 ], [ -15.468750, 64.774125 ], [ -15.468750, 64.168107 ], [ -18.281250, 64.168107 ], [ -18.281250, 63.548552 ], [ -21.093750, 63.548552 ], [ -21.093750, 64.168107 ], [ -22.500000, 64.168107 ], [ -22.500000, 64.774125 ], [ -25.312500, 64.774125 ], [ -25.312500, 65.366837 ], [ -22.500000, 65.366837 ], [ -22.500000, 65.946472 ] ] ], [ [ [ -22.500000, 65.946472 ], [ -23.906250, 65.946472 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -22.500000, 65.946472 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.437500, 2.811371 ], [ -53.437500, 1.406109 ], [ -54.843750, 1.406109 ], [ -54.843750, 2.811371 ], [ -53.437500, 2.811371 ] ] ], [ [ [ -52.031250, 2.811371 ], [ -53.437500, 2.811371 ], [ -53.437500, 4.214943 ], [ -52.031250, 4.214943 ], [ -52.031250, 2.811371 ] ] ], [ [ [ 9.843750, 43.068888 ], [ 9.843750, 40.979898 ], [ 8.437500, 40.979898 ], [ 8.437500, 43.068888 ], [ 9.843750, 43.068888 ] ] ], [ [ [ 4.218750, 50.736455 ], [ 4.218750, 49.837982 ], [ 5.625000, 49.837982 ], [ 5.625000, 48.922499 ], [ 8.437500, 48.922499 ], [ 8.437500, 47.989922 ], [ 7.031250, 47.989922 ], [ 7.031250, 47.040182 ], [ 5.625000, 47.040182 ], [ 5.625000, 46.073231 ], [ 7.031250, 46.073231 ], [ 7.031250, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.032974 ], [ 0.000000, 42.032974 ], [ 0.000000, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 46.073231 ], [ -2.812500, 46.073231 ], [ -2.812500, 47.989922 ], [ -4.218750, 47.989922 ], [ -4.218750, 48.922499 ], [ 1.406250, 48.922499 ], [ 1.406250, 50.736455 ], [ 4.218750, 50.736455 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 54.162434 ], [ -7.031250, 52.482780 ], [ -9.843750, 52.482780 ], [ -9.843750, 54.162434 ], [ -7.031250, 54.162434 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.656250, 23.241346 ], [ -12.656250, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.241346 ], [ -12.656250, 23.241346 ] ] ], [ [ [ -12.656250, 24.527135 ], [ -11.250000, 24.527135 ], [ -11.250000, 23.241346 ], [ -12.656250, 23.241346 ], [ -12.656250, 24.527135 ] ] ], [ [ [ -11.250000, 25.799891 ], [ -11.250000, 27.059126 ], [ -8.437500, 27.059126 ], [ -8.437500, 25.799891 ], [ -11.250000, 25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.218750, 58.813742 ], [ -4.218750, 58.077876 ], [ -2.812500, 58.077876 ], [ -2.812500, 55.776573 ], [ -1.406250, 55.776573 ], [ -1.406250, 54.162434 ], [ 0.000000, 54.162434 ], [ 0.000000, 53.330873 ], [ 1.406250, 53.330873 ], [ 1.406250, 52.482780 ], [ 0.000000, 52.482780 ], [ 0.000000, 51.618017 ], [ -1.406250, 51.618017 ], [ -1.406250, 50.736455 ], [ -5.625000, 50.736455 ], [ -5.625000, 54.162434 ], [ -4.218750, 54.162434 ], [ -4.218750, 54.977614 ], [ -5.625000, 54.977614 ], [ -5.625000, 55.776573 ], [ -7.031250, 55.776573 ], [ -7.031250, 58.077876 ], [ -5.625000, 58.077876 ], [ -5.625000, 58.813742 ], [ -4.218750, 58.813742 ] ] ], [ [ [ -7.031250, 55.776573 ], [ -7.031250, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 55.776573 ], [ -7.031250, 55.776573 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 42.032974 ], [ -7.031250, 36.597889 ], [ -8.437500, 36.597889 ], [ -8.437500, 37.718590 ], [ -9.843750, 37.718590 ], [ -9.843750, 39.909736 ], [ -8.437500, 39.909736 ], [ -8.437500, 42.032974 ], [ -7.031250, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.031250, 5.615986 ], [ -52.031250, 4.214943 ], [ -53.437500, 4.214943 ], [ -53.437500, 2.811371 ], [ -54.843750, 2.811371 ], [ -54.843750, 5.615986 ], [ -52.031250, 5.615986 ] ] ], [ [ [ 2.812500, 51.618017 ], [ 2.812500, 50.736455 ], [ 4.218750, 50.736455 ], [ 4.218750, 49.837982 ], [ 7.031250, 49.837982 ], [ 7.031250, 47.989922 ], [ 5.625000, 47.989922 ], [ 5.625000, 46.073231 ], [ 7.031250, 46.073231 ], [ 7.031250, 44.087585 ], [ 2.812500, 44.087585 ], [ 2.812500, 43.068888 ], [ -2.812500, 43.068888 ], [ -2.812500, 44.087585 ], [ -1.406250, 44.087585 ], [ -1.406250, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.989922 ], [ -5.625000, 47.989922 ], [ -5.625000, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 49.837982 ], [ 0.000000, 49.837982 ], [ 0.000000, 50.736455 ], [ 1.406250, 50.736455 ], [ 1.406250, 51.618017 ], [ 2.812500, 51.618017 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 43.068888 ], [ 0.000000, 42.032974 ], [ 2.812500, 42.032974 ], [ 2.812500, 40.979898 ], [ 1.406250, 40.979898 ], [ 1.406250, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 36.597889 ], [ -7.031250, 36.597889 ], [ -7.031250, 42.032974 ], [ -8.437500, 42.032974 ], [ -8.437500, 43.068888 ], [ 0.000000, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 23.241346 ], [ -14.062500, 21.943046 ], [ -15.468750, 21.943046 ], [ -15.468750, 23.241346 ], [ -14.062500, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 35.460670 ], [ -2.812500, 34.307144 ], [ -1.406250, 34.307144 ], [ -1.406250, 31.952162 ], [ -4.218750, 31.952162 ], [ -4.218750, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 28.304381 ], [ -8.437500, 28.304381 ], [ -8.437500, 27.059126 ], [ -11.250000, 27.059126 ], [ -11.250000, 25.799891 ], [ -12.656250, 25.799891 ], [ -12.656250, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 23.241346 ], [ -15.468750, 23.241346 ], [ -15.468750, 25.799891 ], [ -14.062500, 25.799891 ], [ -14.062500, 27.059126 ], [ -12.656250, 27.059126 ], [ -12.656250, 28.304381 ], [ -9.843750, 28.304381 ], [ -9.843750, 33.137551 ], [ -7.031250, 33.137551 ], [ -7.031250, 34.307144 ], [ -5.625000, 34.307144 ], [ -5.625000, 35.460670 ], [ -2.812500, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 43.068888 ], [ -8.437500, 42.032974 ], [ -7.031250, 42.032974 ], [ -7.031250, 39.909736 ], [ -8.437500, 39.909736 ], [ -8.437500, 37.718590 ], [ -9.843750, 37.718590 ], [ -9.843750, 43.068888 ], [ -8.437500, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 16.636192 ], [ -14.062500, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 13.923404 ], [ -11.250000, 13.923404 ], [ -11.250000, 12.554564 ], [ -15.468750, 12.554564 ], [ -15.468750, 13.923404 ], [ -18.281250, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 16.636192 ], [ -14.062500, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 44.087585 ], [ -2.812500, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.032974 ], [ 0.000000, 42.032974 ], [ 0.000000, 39.909736 ], [ -1.406250, 39.909736 ], [ -1.406250, 37.718590 ], [ -5.625000, 37.718590 ], [ -5.625000, 36.597889 ], [ -7.031250, 36.597889 ], [ -7.031250, 37.718590 ], [ -8.437500, 37.718590 ], [ -8.437500, 39.909736 ], [ -7.031250, 39.909736 ], [ -7.031250, 42.032974 ], [ -8.437500, 42.032974 ], [ -8.437500, 44.087585 ], [ -2.812500, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.468750, 13.923404 ], [ -15.468750, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.923404 ], [ -15.468750, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9.843750, 29.535230 ], [ -9.843750, 27.059126 ], [ -12.656250, 27.059126 ], [ -12.656250, 24.527135 ], [ -14.062500, 24.527135 ], [ -14.062500, 23.241346 ], [ -15.468750, 23.241346 ], [ -15.468750, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 24.527135 ], [ -15.468750, 24.527135 ], [ -15.468750, 27.059126 ], [ -14.062500, 27.059126 ], [ -14.062500, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 29.535230 ], [ -9.843750, 29.535230 ] ] ], [ [ [ -5.625000, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 31.952162 ], [ -4.218750, 31.952162 ], [ -4.218750, 30.751278 ], [ -8.437500, 30.751278 ], [ -8.437500, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 34.307144 ], [ -7.031250, 34.307144 ], [ -7.031250, 36.597889 ], [ -5.625000, 36.597889 ], [ -5.625000, 35.460670 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 12.554564 ], [ -14.062500, 11.178402 ], [ -16.875000, 11.178402 ], [ -16.875000, 12.554564 ], [ -14.062500, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 16.636192 ], [ -14.062500, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 12.554564 ], [ -14.062500, 12.554564 ], [ -14.062500, 13.923404 ], [ -18.281250, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 16.636192 ], [ -14.062500, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 12.554564 ], [ -8.437500, 7.013668 ], [ -9.843750, 7.013668 ], [ -9.843750, 8.407168 ], [ -11.250000, 8.407168 ], [ -11.250000, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 8.407168 ], [ -14.062500, 8.407168 ], [ -14.062500, 12.554564 ], [ -11.250000, 12.554564 ], [ -11.250000, 11.178402 ], [ -9.843750, 11.178402 ], [ -9.843750, 12.554564 ], [ -8.437500, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 13.923404 ], [ -14.062500, 12.554564 ], [ -15.468750, 12.554564 ], [ -15.468750, 11.178402 ], [ -16.875000, 11.178402 ], [ -16.875000, 13.923404 ], [ -14.062500, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 9.795678 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 9.795678 ], [ -11.250000, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 12.554564 ], [ -8.437500, 8.407168 ], [ -9.843750, 8.407168 ], [ -9.843750, 9.795678 ], [ -11.250000, 9.795678 ], [ -11.250000, 11.178402 ], [ -12.656250, 11.178402 ], [ -12.656250, 9.795678 ], [ -15.468750, 9.795678 ], [ -15.468750, 12.554564 ], [ -8.437500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 25.799891 ], [ -7.031250, 21.943046 ], [ -5.625000, 21.943046 ], [ -5.625000, 15.284185 ], [ -14.062500, 15.284185 ], [ -14.062500, 16.636192 ], [ -15.468750, 16.636192 ], [ -15.468750, 17.978733 ], [ -16.875000, 17.978733 ], [ -16.875000, 21.943046 ], [ -12.656250, 21.943046 ], [ -12.656250, 23.241346 ], [ -11.250000, 23.241346 ], [ -11.250000, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.799891 ], [ -7.031250, 25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 11.178402 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 8.407168 ], [ -14.062500, 8.407168 ], [ -14.062500, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 11.178402 ], [ -11.250000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.218750, 24.527135 ], [ -4.218750, 23.241346 ], [ -1.406250, 23.241346 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 13.923404 ], [ -4.218750, 13.923404 ], [ -4.218750, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 12.554564 ], [ -9.843750, 12.554564 ], [ -9.843750, 11.178402 ], [ -11.250000, 11.178402 ], [ -11.250000, 13.923404 ], [ -12.656250, 13.923404 ], [ -12.656250, 15.284185 ], [ -5.625000, 15.284185 ], [ -5.625000, 21.943046 ], [ -7.031250, 21.943046 ], [ -7.031250, 24.527135 ], [ -4.218750, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 27.059126 ], [ -7.031250, 19.311143 ], [ -5.625000, 19.311143 ], [ -5.625000, 16.636192 ], [ -9.843750, 16.636192 ], [ -9.843750, 15.284185 ], [ -14.062500, 15.284185 ], [ -14.062500, 16.636192 ], [ -16.875000, 16.636192 ], [ -16.875000, 20.632784 ], [ -18.281250, 20.632784 ], [ -18.281250, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 27.059126 ], [ -7.031250, 27.059126 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 1.406250, 13.923404 ], [ 1.406250, 12.554564 ], [ 2.812500, 12.554564 ], [ 2.812500, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 11.178402 ], [ -4.218750, 11.178402 ], [ -4.218750, 13.923404 ], [ -1.406250, 13.923404 ], [ -1.406250, 15.284185 ], [ 0.000000, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625000, 25.799891 ], [ -5.625000, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 23.241346 ], [ -2.812500, 23.241346 ], [ -2.812500, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 20.632784 ], [ 2.812500, 20.632784 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.636192 ], [ 0.000000, 16.636192 ], [ 0.000000, 15.284185 ], [ -2.812500, 15.284185 ], [ -2.812500, 13.923404 ], [ -5.625000, 13.923404 ], [ -5.625000, 11.178402 ], [ -8.437500, 11.178402 ], [ -8.437500, 12.554564 ], [ -12.656250, 12.554564 ], [ -12.656250, 15.284185 ], [ -9.843750, 15.284185 ], [ -9.843750, 16.636192 ], [ -5.625000, 16.636192 ], [ -5.625000, 19.311143 ], [ -7.031250, 19.311143 ], [ -7.031250, 25.799891 ], [ -5.625000, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 5.615986 ], [ -7.031250, 5.615986 ], [ -7.031250, 4.214943 ], [ -9.843750, 4.214943 ], [ -9.843750, 5.615986 ], [ -11.250000, 5.615986 ], [ -11.250000, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 1.406250, 13.923404 ], [ 1.406250, 11.178402 ], [ -4.218750, 11.178402 ], [ -4.218750, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 15.284185 ], [ 0.000000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 9.795678 ], [ -2.812500, 5.615986 ], [ -5.625000, 5.615986 ], [ -5.625000, 4.214943 ], [ -7.031250, 4.214943 ], [ -7.031250, 5.615986 ], [ -8.437500, 5.615986 ], [ -8.437500, 9.795678 ], [ -2.812500, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 9.795678 ], [ -9.843750, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 5.615986 ], [ -11.250000, 5.615986 ], [ -11.250000, 9.795678 ], [ -9.843750, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 8.407168 ], [ 1.406250, 8.407168 ], [ 1.406250, 7.013668 ], [ 0.000000, 7.013668 ], [ 0.000000, 5.615986 ], [ -1.406250, 5.615986 ], [ -1.406250, 4.214943 ], [ -2.812500, 4.214943 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -4.218750, 9.795678 ], [ -4.218750, 5.615986 ], [ -8.437500, 5.615986 ], [ -8.437500, 7.013668 ], [ -9.843750, 7.013668 ], [ -9.843750, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 11.178402 ], [ -5.625000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 1.406109 ], [ -77.343750, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -4.214943 ], [ -78.750000, -4.214943 ], [ -78.750000, -5.615986 ], [ -80.156250, -5.615986 ], [ -80.156250, 1.406109 ], [ -77.343750, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 5.615986 ], [ -4.218750, 5.615986 ], [ -4.218750, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.531250, 0.000000 ], [ -74.531250, -1.406109 ], [ -73.125000, -1.406109 ], [ -73.125000, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.718750, -4.214943 ], [ -71.718750, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -74.531250, -7.013668 ], [ -74.531250, -8.407168 ], [ -73.125000, -8.407168 ], [ -73.125000, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -11.178402 ], [ -68.906250, -11.178402 ], [ -68.906250, -17.978733 ], [ -73.125000, -17.978733 ], [ -73.125000, -16.636192 ], [ -75.937500, -16.636192 ], [ -75.937500, -13.923404 ], [ -77.343750, -13.923404 ], [ -77.343750, -11.178402 ], [ -78.750000, -11.178402 ], [ -78.750000, -8.407168 ], [ -80.156250, -8.407168 ], [ -80.156250, -7.013668 ], [ -81.562500, -7.013668 ], [ -81.562500, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -5.615986 ], [ -78.750000, -5.615986 ], [ -78.750000, -4.214943 ], [ -77.343750, -4.214943 ], [ -77.343750, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, 0.000000 ], [ -74.531250, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.937500, 1.406109 ], [ -75.937500, -1.406109 ], [ -77.343750, -1.406109 ], [ -77.343750, -2.811371 ], [ -78.750000, -2.811371 ], [ -78.750000, -4.214943 ], [ -81.562500, -4.214943 ], [ -81.562500, -2.811371 ], [ -80.156250, -2.811371 ], [ -80.156250, -1.406109 ], [ -81.562500, -1.406109 ], [ -81.562500, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 1.406109 ], [ -75.937500, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, -53.330873 ], [ -68.906250, -53.330873 ], [ -68.906250, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -55.776573 ], [ -70.312500, -55.776573 ], [ -70.312500, -54.977614 ], [ -71.718750, -54.977614 ], [ -71.718750, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -52.482780 ], [ -75.937500, -52.482780 ], [ -75.937500, -51.618017 ], [ -74.531250, -51.618017 ], [ -74.531250, -50.736455 ], [ -75.937500, -50.736455 ], [ -75.937500, -48.922499 ], [ -74.531250, -48.922499 ], [ -74.531250, -44.087585 ], [ -73.125000, -44.087585 ], [ -73.125000, -43.068888 ], [ -74.531250, -43.068888 ], [ -74.531250, -40.979898 ], [ -73.125000, -40.979898 ], [ -73.125000, -35.460670 ], [ -71.718750, -35.460670 ], [ -71.718750, -28.304381 ], [ -70.312500, -28.304381 ], [ -70.312500, -36.597889 ], [ -71.718750, -36.597889 ], [ -71.718750, -48.922499 ], [ -73.125000, -48.922499 ], [ -73.125000, -50.736455 ], [ -71.718750, -50.736455 ], [ -71.718750, -52.482780 ], [ -70.312500, -52.482780 ], [ -70.312500, -53.330873 ] ] ], [ [ [ -68.906250, -23.241346 ], [ -67.500000, -23.241346 ], [ -67.500000, -24.527135 ], [ -68.906250, -24.527135 ], [ -68.906250, -28.304381 ], [ -70.312500, -28.304381 ], [ -70.312500, -17.978733 ], [ -68.906250, -17.978733 ], [ -68.906250, -23.241346 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.531250, 0.000000 ], [ -74.531250, -1.406109 ], [ -70.312500, -1.406109 ], [ -70.312500, -2.811371 ], [ -71.718750, -2.811371 ], [ -71.718750, -4.214943 ], [ -73.125000, -4.214943 ], [ -73.125000, -5.615986 ], [ -74.531250, -5.615986 ], [ -74.531250, -8.407168 ], [ -73.125000, -8.407168 ], [ -73.125000, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -11.178402 ], [ -68.906250, -11.178402 ], [ -68.906250, -12.554564 ], [ -70.312500, -12.554564 ], [ -70.312500, -17.978733 ], [ -71.718750, -17.978733 ], [ -71.718750, -16.636192 ], [ -74.531250, -16.636192 ], [ -74.531250, -15.284185 ], [ -75.937500, -15.284185 ], [ -75.937500, -13.923404 ], [ -77.343750, -13.923404 ], [ -77.343750, -11.178402 ], [ -78.750000, -11.178402 ], [ -78.750000, -8.407168 ], [ -80.156250, -8.407168 ], [ -80.156250, -7.013668 ], [ -81.562500, -7.013668 ], [ -81.562500, -4.214943 ], [ -78.750000, -4.214943 ], [ -78.750000, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -1.406109 ], [ -75.937500, -1.406109 ], [ -75.937500, 0.000000 ], [ -74.531250, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, -9.795678 ], [ -64.687500, -11.178402 ], [ -66.093750, -11.178402 ], [ -66.093750, -12.554564 ], [ -61.875000, -12.554564 ], [ -61.875000, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -16.636192 ], [ -57.656250, -16.636192 ], [ -57.656250, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -23.241346 ], [ -68.906250, -23.241346 ], [ -68.906250, -11.178402 ], [ -67.500000, -11.178402 ], [ -67.500000, -9.795678 ], [ -64.687500, -9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.531250, -53.330873 ], [ -75.937500, -53.330873 ], [ -75.937500, -52.482780 ], [ -75.937500, -47.040182 ], [ -74.531250, -47.040182 ], [ -74.531250, -46.073231 ], [ -75.937500, -46.073231 ], [ -75.937500, -45.089036 ], [ -74.531250, -45.089036 ], [ -74.531250, -43.068888 ], [ -73.125000, -43.068888 ], [ -71.718750, -43.068888 ], [ -71.718750, -46.073231 ], [ -73.125000, -46.073231 ], [ -73.125000, -48.922499 ], [ -74.531250, -48.922499 ], [ -74.531250, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -51.618017 ], [ -70.312500, -51.618017 ], [ -70.312500, -52.482780 ], [ -68.906250, -52.482780 ], [ -68.906250, -54.162434 ], [ -67.500000, -54.162434 ], [ -67.500000, -54.977614 ], [ -73.125000, -54.977614 ], [ -73.125000, -54.162434 ], [ -74.531250, -54.162434 ], [ -74.531250, -53.330873 ] ], [ [ -70.312500, -52.482780 ], [ -71.718750, -52.482780 ], [ -71.718750, -53.330873 ], [ -70.312500, -53.330873 ], [ -70.312500, -52.482780 ] ] ], [ [ [ -71.718750, -31.952162 ], [ -70.312500, -31.952162 ], [ -70.312500, -34.307144 ], [ -71.718750, -34.307144 ], [ -71.718750, -39.909736 ], [ -73.125000, -39.909736 ], [ -73.125000, -42.032974 ], [ -74.531250, -42.032974 ], [ -74.531250, -36.597889 ], [ -73.125000, -36.597889 ], [ -73.125000, -33.137551 ], [ -71.718750, -33.137551 ], [ -71.718750, -31.952162 ] ] ], [ [ [ -70.312500, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -21.943046 ], [ -67.500000, -21.943046 ], [ -67.500000, -23.241346 ], [ -68.906250, -23.241346 ], [ -68.906250, -27.059126 ], [ -70.312500, -27.059126 ], [ -70.312500, -30.751278 ], [ -71.718750, -30.751278 ], [ -71.718750, -21.943046 ], [ -70.312500, -21.943046 ], [ -70.312500, -19.311143 ] ] ], [ [ [ -70.312500, -19.311143 ], [ -71.718750, -19.311143 ], [ -71.718750, -17.978733 ], [ -70.312500, -17.978733 ], [ -70.312500, -19.311143 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625000, 4.214943 ], [ -50.625000, 0.000000 ], [ -49.218750, 0.000000 ], [ -49.218750, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.811371 ], [ -39.375000, -2.811371 ], [ -39.375000, -4.214943 ], [ -36.562500, -4.214943 ], [ -36.562500, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -11.178402 ], [ -36.562500, -11.178402 ], [ -36.562500, -12.554564 ], [ -39.375000, -12.554564 ], [ -39.375000, -20.632784 ], [ -40.781250, -20.632784 ], [ -40.781250, -21.943046 ], [ -42.187500, -21.943046 ], [ -42.187500, -23.241346 ], [ -45.000000, -23.241346 ], [ -45.000000, -24.527135 ], [ -47.812500, -24.527135 ], [ -47.812500, -28.304381 ], [ -49.218750, -28.304381 ], [ -49.218750, -30.751278 ], [ -50.625000, -30.751278 ], [ -50.625000, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -34.307144 ], [ -53.437500, -34.307144 ], [ -53.437500, -31.952162 ], [ -56.250000, -31.952162 ], [ -56.250000, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -29.535230 ], [ -56.250000, -29.535230 ], [ -56.250000, -28.304381 ], [ -54.843750, -28.304381 ], [ -54.843750, -27.059126 ], [ -53.437500, -27.059126 ], [ -53.437500, -25.799891 ], [ -54.843750, -25.799891 ], [ -54.843750, -23.241346 ], [ -56.250000, -23.241346 ], [ -56.250000, -21.943046 ], [ -57.656250, -21.943046 ], [ -57.656250, -16.636192 ], [ -60.468750, -16.636192 ], [ -60.468750, -13.923404 ], [ -61.875000, -13.923404 ], [ -61.875000, -12.554564 ], [ -66.093750, -12.554564 ], [ -66.093750, -11.178402 ], [ -64.687500, -11.178402 ], [ -64.687500, -9.795678 ], [ -67.500000, -9.795678 ], [ -67.500000, -11.178402 ], [ -70.312500, -11.178402 ], [ -70.312500, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -8.407168 ], [ -74.531250, -8.407168 ], [ -74.531250, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -71.718750, -5.615986 ], [ -71.718750, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -68.906250, -2.811371 ], [ -68.906250, 1.406109 ], [ -63.281250, 1.406109 ], [ -63.281250, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 4.214943 ], [ -60.468750, 4.214943 ], [ -60.468750, 2.811371 ], [ -59.062500, 2.811371 ], [ -59.062500, 1.406109 ], [ -56.250000, 1.406109 ], [ -56.250000, 2.811371 ], [ -54.843750, 2.811371 ], [ -54.843750, 1.406109 ], [ -53.437500, 1.406109 ], [ -53.437500, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 4.214943 ], [ -50.625000, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, -9.795678 ], [ -66.093750, -11.178402 ], [ -64.687500, -11.178402 ], [ -64.687500, -12.554564 ], [ -61.875000, -12.554564 ], [ -61.875000, -15.284185 ], [ -59.062500, -15.284185 ], [ -59.062500, -19.311143 ], [ -63.281250, -19.311143 ], [ -63.281250, -21.943046 ], [ -68.906250, -21.943046 ], [ -68.906250, -19.311143 ], [ -70.312500, -19.311143 ], [ -70.312500, -12.554564 ], [ -68.906250, -12.554564 ], [ -68.906250, -11.178402 ], [ -70.312500, -11.178402 ], [ -70.312500, -9.795678 ], [ -66.093750, -9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -19.311143 ], [ -57.656250, -21.943046 ], [ -56.250000, -21.943046 ], [ -56.250000, -23.241346 ], [ -54.843750, -23.241346 ], [ -54.843750, -27.059126 ], [ -57.656250, -27.059126 ], [ -57.656250, -24.527135 ], [ -60.468750, -24.527135 ], [ -60.468750, -23.241346 ], [ -63.281250, -23.241346 ], [ -63.281250, -21.943046 ], [ -61.875000, -21.943046 ], [ -61.875000, -19.311143 ], [ -57.656250, -19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 5.615986 ], [ -60.468750, 1.406109 ], [ -59.062500, 1.406109 ], [ -59.062500, 2.811371 ], [ -53.437500, 2.811371 ], [ -53.437500, 4.214943 ], [ -52.031250, 4.214943 ], [ -52.031250, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 1.406109 ], [ -52.031250, 1.406109 ], [ -52.031250, 0.000000 ], [ -47.812500, 0.000000 ], [ -47.812500, -1.406109 ], [ -43.593750, -1.406109 ], [ -43.593750, -2.811371 ], [ -39.375000, -2.811371 ], [ -39.375000, -4.214943 ], [ -36.562500, -4.214943 ], [ -36.562500, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -8.407168 ], [ -36.562500, -8.407168 ], [ -36.562500, -9.795678 ], [ -37.968750, -9.795678 ], [ -37.968750, -12.554564 ], [ -39.375000, -12.554564 ], [ -39.375000, -17.978733 ], [ -40.781250, -17.978733 ], [ -40.781250, -20.632784 ], [ -42.187500, -20.632784 ], [ -42.187500, -21.943046 ], [ -43.593750, -21.943046 ], [ -43.593750, -23.241346 ], [ -47.812500, -23.241346 ], [ -47.812500, -25.799891 ], [ -49.218750, -25.799891 ], [ -49.218750, -28.304381 ], [ -50.625000, -28.304381 ], [ -50.625000, -29.535230 ], [ -52.031250, -29.535230 ], [ -52.031250, -31.952162 ], [ -54.843750, -31.952162 ], [ -54.843750, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -28.304381 ], [ -56.250000, -28.304381 ], [ -56.250000, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -23.241346 ], [ -56.250000, -23.241346 ], [ -56.250000, -21.943046 ], [ -59.062500, -21.943046 ], [ -59.062500, -15.284185 ], [ -61.875000, -15.284185 ], [ -61.875000, -12.554564 ], [ -64.687500, -12.554564 ], [ -64.687500, -11.178402 ], [ -66.093750, -11.178402 ], [ -66.093750, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -8.407168 ], [ -74.531250, -8.407168 ], [ -74.531250, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, 2.811371 ], [ -67.500000, 2.811371 ], [ -67.500000, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 4.214943 ], [ -61.875000, 4.214943 ], [ -61.875000, 5.615986 ], [ -60.468750, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.093750, -54.162434 ], [ -66.093750, -54.977614 ], [ -68.906250, -54.977614 ], [ -68.906250, -54.162434 ], [ -66.093750, -54.162434 ] ] ], [ [ [ -63.281250, -21.943046 ], [ -63.281250, -23.241346 ], [ -60.468750, -23.241346 ], [ -60.468750, -24.527135 ], [ -57.656250, -24.527135 ], [ -57.656250, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -28.304381 ], [ -56.250000, -28.304381 ], [ -56.250000, -29.535230 ], [ -57.656250, -29.535230 ], [ -57.656250, -34.307144 ], [ -59.062500, -34.307144 ], [ -59.062500, -35.460670 ], [ -57.656250, -35.460670 ], [ -57.656250, -36.597889 ], [ -56.250000, -36.597889 ], [ -56.250000, -37.718590 ], [ -57.656250, -37.718590 ], [ -57.656250, -38.822591 ], [ -61.875000, -38.822591 ], [ -61.875000, -40.979898 ], [ -64.687500, -40.979898 ], [ -64.687500, -42.032974 ], [ -63.281250, -42.032974 ], [ -63.281250, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -45.089036 ], [ -67.500000, -45.089036 ], [ -67.500000, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -49.837982 ], [ -68.906250, -49.837982 ], [ -68.906250, -52.482780 ], [ -71.718750, -52.482780 ], [ -71.718750, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -48.922499 ], [ -71.718750, -48.922499 ], [ -71.718750, -36.597889 ], [ -70.312500, -36.597889 ], [ -70.312500, -28.304381 ], [ -68.906250, -28.304381 ], [ -68.906250, -24.527135 ], [ -67.500000, -24.527135 ], [ -67.500000, -23.241346 ], [ -66.093750, -23.241346 ], [ -66.093750, -21.943046 ], [ -63.281250, -21.943046 ] ] ], [ [ [ -53.437500, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.799891 ], [ -53.437500, -25.799891 ], [ -53.437500, -27.059126 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -21.943046 ], [ -56.250000, -21.943046 ], [ -56.250000, -23.241346 ], [ -54.843750, -23.241346 ], [ -54.843750, -27.059126 ], [ -59.062500, -27.059126 ], [ -59.062500, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -24.527135 ], [ -60.468750, -24.527135 ], [ -60.468750, -23.241346 ], [ -63.281250, -23.241346 ], [ -63.281250, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.250000, -30.751278 ], [ -56.250000, -31.952162 ], [ -53.437500, -31.952162 ], [ -53.437500, -35.460670 ], [ -56.250000, -35.460670 ], [ -56.250000, -34.307144 ], [ -57.656250, -34.307144 ], [ -57.656250, -30.751278 ], [ -56.250000, -30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.093750, -54.162434 ], [ -66.093750, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -54.162434 ], [ -66.093750, -54.162434 ] ] ], [ [ [ -63.281250, -21.943046 ], [ -63.281250, -23.241346 ], [ -60.468750, -23.241346 ], [ -60.468750, -24.527135 ], [ -57.656250, -24.527135 ], [ -57.656250, -25.799891 ], [ -59.062500, -25.799891 ], [ -59.062500, -27.059126 ], [ -56.250000, -27.059126 ], [ -56.250000, -28.304381 ], [ -57.656250, -28.304381 ], [ -57.656250, -30.751278 ], [ -59.062500, -30.751278 ], [ -59.062500, -34.307144 ], [ -57.656250, -34.307144 ], [ -57.656250, -37.718590 ], [ -60.468750, -37.718590 ], [ -60.468750, -38.822591 ], [ -63.281250, -38.822591 ], [ -63.281250, -40.979898 ], [ -66.093750, -40.979898 ], [ -66.093750, -42.032974 ], [ -64.687500, -42.032974 ], [ -64.687500, -43.068888 ], [ -66.093750, -43.068888 ], [ -66.093750, -44.087585 ], [ -67.500000, -44.087585 ], [ -67.500000, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -47.989922 ], [ -67.500000, -47.989922 ], [ -67.500000, -48.922499 ], [ -68.906250, -48.922499 ], [ -68.906250, -49.837982 ], [ -70.312500, -49.837982 ], [ -70.312500, -50.736455 ], [ -68.906250, -50.736455 ], [ -68.906250, -51.618017 ], [ -73.125000, -51.618017 ], [ -73.125000, -50.736455 ], [ -74.531250, -50.736455 ], [ -74.531250, -48.922499 ], [ -73.125000, -48.922499 ], [ -73.125000, -46.073231 ], [ -71.718750, -46.073231 ], [ -71.718750, -43.068888 ], [ -73.125000, -43.068888 ], [ -73.125000, -39.909736 ], [ -71.718750, -39.909736 ], [ -71.718750, -34.307144 ], [ -70.312500, -34.307144 ], [ -70.312500, -31.952162 ], [ -71.718750, -31.952162 ], [ -71.718750, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -27.059126 ], [ -68.906250, -27.059126 ], [ -68.906250, -23.241346 ], [ -67.500000, -23.241346 ], [ -67.500000, -21.943046 ], [ -63.281250, -21.943046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -51.618017 ], [ -57.656250, -52.482780 ], [ -61.875000, -52.482780 ], [ -61.875000, -51.618017 ], [ -57.656250, -51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, -30.751278 ], [ -54.843750, -31.952162 ], [ -53.437500, -31.952162 ], [ -53.437500, -34.307144 ], [ -59.062500, -34.307144 ], [ -59.062500, -30.751278 ], [ -54.843750, -30.751278 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -59.062500, -79.935918 ], [ -59.062500, -80.415707 ], [ -60.468750, -80.415707 ], [ -60.468750, -81.093214 ], [ -61.875000, -81.093214 ], [ -61.875000, -80.872827 ], [ -66.093750, -80.872827 ], [ -66.093750, -80.178713 ], [ -64.687500, -80.178713 ], [ -64.687500, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.178713 ], [ -60.468750, -80.178713 ], [ -60.468750, -79.935918 ], [ -59.062500, -79.935918 ] ] ], [ [ [ -45.000000, -78.061989 ], [ -45.000000, -78.349411 ], [ -43.593750, -78.349411 ], [ -43.593750, -80.178713 ], [ -45.000000, -80.178713 ], [ -45.000000, -80.647035 ], [ -46.406250, -80.647035 ], [ -46.406250, -80.872827 ], [ -47.812500, -80.872827 ], [ -47.812500, -81.093214 ], [ -53.437500, -81.093214 ], [ -53.437500, -80.872827 ], [ -54.843750, -80.872827 ], [ -54.843750, -80.415707 ], [ -53.437500, -80.415707 ], [ -53.437500, -80.178713 ], [ -52.031250, -80.178713 ], [ -52.031250, -79.935918 ], [ -50.625000, -79.935918 ], [ -50.625000, -79.171335 ], [ -49.218750, -79.171335 ], [ -49.218750, -78.061989 ], [ -45.000000, -78.061989 ] ] ], [ [ [ -168.750000, -83.979259 ], [ -168.750000, -84.405941 ], [ -167.343750, -84.405941 ], [ -167.343750, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.170970 ], [ -161.718750, -85.170970 ], [ -161.718750, -85.287916 ], [ -158.906250, -85.287916 ], [ -158.906250, -85.402036 ], [ -156.093750, -85.402036 ], [ -156.093750, -85.170970 ], [ -151.875000, -85.170970 ], [ -151.875000, -85.287916 ], [ -150.468750, -85.287916 ], [ -150.468750, -85.513398 ], [ -149.062500, -85.513398 ], [ -149.062500, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.405941 ], [ -185.625000, -84.405941 ], [ -185.625000, -84.267172 ], [ -182.812500, -84.267172 ], [ -182.812500, -84.405941 ], [ -181.406250, -84.405941 ], [ -181.406250, -84.541361 ], [ -180.000000, -84.541361 ], [ -180.000000, -84.405941 ], [ -178.593750, -84.405941 ], [ -178.593750, -84.267172 ], [ -175.781250, -84.267172 ], [ -175.781250, -84.405941 ], [ -172.968750, -84.405941 ], [ -172.968750, -84.124973 ], [ -171.562500, -84.124973 ], [ -171.562500, -83.979259 ], [ -168.750000, -83.979259 ] ] ], [ [ [ -147.656250, -85.622069 ], [ -147.656250, -85.402036 ], [ -146.250000, -85.402036 ], [ -146.250000, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.170970 ], [ -143.437500, -85.170970 ], [ -143.437500, -84.541361 ], [ -147.656250, -84.541361 ], [ -147.656250, -84.405941 ], [ -150.468750, -84.405941 ], [ -150.468750, -83.829945 ], [ -153.281250, -83.829945 ], [ -153.281250, -81.923186 ], [ -154.687500, -81.923186 ], [ -154.687500, -81.518272 ], [ -156.093750, -81.518272 ], [ -156.093750, -81.308321 ], [ -157.500000, -81.308321 ], [ -157.500000, -81.093214 ], [ -151.875000, -81.093214 ], [ -151.875000, -81.308321 ], [ -149.062500, -81.308321 ], [ -149.062500, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -80.647035 ], [ -146.250000, -80.647035 ], [ -146.250000, -79.935918 ], [ -147.656250, -79.935918 ], [ -147.656250, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -151.875000, -79.432371 ], [ -151.875000, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -157.500000, -78.630006 ], [ -157.500000, -77.466028 ], [ -158.906250, -77.466028 ], [ -158.906250, -76.840816 ], [ -157.500000, -76.840816 ], [ -157.500000, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -150.468750, -77.466028 ], [ -150.468750, -77.157163 ], [ -149.062500, -77.157163 ], [ -149.062500, -76.840816 ], [ -147.656250, -76.840816 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.497157 ], [ -142.031250, -75.497157 ], [ -142.031250, -75.140778 ], [ -137.812500, -75.140778 ], [ -137.812500, -74.775843 ], [ -136.406250, -74.775843 ], [ -136.406250, -74.402163 ], [ -115.312500, -74.402163 ], [ -115.312500, -74.019543 ], [ -113.906250, -74.019543 ], [ -113.906250, -74.402163 ], [ -112.500000, -74.402163 ], [ -112.500000, -74.775843 ], [ -108.281250, -74.775843 ], [ -108.281250, -75.140778 ], [ -99.843750, -75.140778 ], [ -99.843750, -74.775843 ], [ -101.250000, -74.775843 ], [ -101.250000, -74.019543 ], [ -102.656250, -74.019543 ], [ -102.656250, -73.226700 ], [ -104.062500, -73.226700 ], [ -104.062500, -72.816074 ], [ -98.437500, -72.816074 ], [ -98.437500, -73.627789 ], [ -94.218750, -73.627789 ], [ -94.218750, -73.226700 ], [ -90.000000, -73.226700 ], [ -90.000000, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -74.019543 ], [ -80.156250, -74.019543 ], [ -80.156250, -73.627789 ], [ -77.343750, -73.627789 ], [ -77.343750, -74.019543 ], [ -74.531250, -74.019543 ], [ -74.531250, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.226700 ], [ -68.906250, -73.226700 ], [ -68.906250, -72.816074 ], [ -67.500000, -72.816074 ], [ -67.500000, -71.074056 ], [ -68.906250, -71.074056 ], [ -68.906250, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -71.074056 ], [ -71.718750, -71.074056 ], [ -71.718750, -69.162558 ], [ -70.312500, -69.162558 ], [ -70.312500, -69.657086 ], [ -68.906250, -69.657086 ], [ -68.906250, -69.162558 ], [ -67.500000, -69.162558 ], [ -67.500000, -67.067433 ], [ -66.093750, -67.067433 ], [ -66.093750, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -65.366837 ], [ -63.281250, -65.366837 ], [ -63.281250, -65.946472 ], [ -61.875000, -65.946472 ], [ -61.875000, -66.513260 ], [ -63.281250, -66.513260 ], [ -63.281250, -67.067433 ], [ -64.687500, -67.067433 ], [ -64.687500, -67.609221 ], [ -66.093750, -67.609221 ], [ -66.093750, -68.138852 ], [ -64.687500, -68.138852 ], [ -64.687500, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -70.140364 ], [ -61.875000, -70.140364 ], [ -61.875000, -72.395706 ], [ -60.468750, -72.395706 ], [ -60.468750, -74.019543 ], [ -61.875000, -74.019543 ], [ -61.875000, -74.402163 ], [ -63.281250, -74.402163 ], [ -63.281250, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.497157 ], [ -66.093750, -75.497157 ], [ -66.093750, -75.845169 ], [ -68.906250, -75.845169 ], [ -68.906250, -76.184995 ], [ -70.312500, -76.184995 ], [ -70.312500, -76.516819 ], [ -74.531250, -76.516819 ], [ -74.531250, -76.840816 ], [ -77.343750, -76.840816 ], [ -77.343750, -77.157163 ], [ -75.937500, -77.157163 ], [ -75.937500, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.767582 ], [ -73.125000, -77.767582 ], [ -73.125000, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.349411 ], [ -77.343750, -78.349411 ], [ -77.343750, -79.687184 ], [ -75.937500, -79.687184 ], [ -75.937500, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.872827 ], [ -70.312500, -80.872827 ], [ -70.312500, -81.308321 ], [ -67.500000, -81.308321 ], [ -67.500000, -81.518272 ], [ -66.093750, -81.518272 ], [ -66.093750, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.923186 ], [ -61.875000, -81.923186 ], [ -61.875000, -82.308893 ], [ -59.062500, -82.308893 ], [ -59.062500, -83.026219 ], [ -57.656250, -83.026219 ], [ -57.656250, -82.853382 ], [ -56.250000, -82.853382 ], [ -56.250000, -82.676285 ], [ -54.843750, -82.676285 ], [ -54.843750, -82.494824 ], [ -53.437500, -82.494824 ], [ -53.437500, -82.118384 ], [ -52.031250, -82.118384 ], [ -52.031250, -81.923186 ], [ -49.218750, -81.923186 ], [ -49.218750, -81.723188 ], [ -47.812500, -81.723188 ], [ -47.812500, -81.923186 ], [ -45.000000, -81.923186 ], [ -45.000000, -82.118384 ], [ -42.187500, -82.118384 ], [ -42.187500, -81.518272 ], [ -40.781250, -81.518272 ], [ -40.781250, -81.308321 ], [ -36.562500, -81.308321 ], [ -36.562500, -81.093214 ], [ -33.750000, -81.093214 ], [ -33.750000, -80.872827 ], [ -29.531250, -80.872827 ], [ -29.531250, -80.647035 ], [ -28.125000, -80.647035 ], [ -28.125000, -80.178713 ], [ -29.531250, -80.178713 ], [ -29.531250, -79.171335 ], [ -30.937500, -79.171335 ], [ -30.937500, -79.432371 ], [ -36.562500, -79.432371 ], [ -36.562500, -78.903929 ], [ -35.156250, -78.903929 ], [ -35.156250, -78.061989 ], [ -33.750000, -78.061989 ], [ -33.750000, -77.767582 ], [ -30.937500, -77.767582 ], [ -30.937500, -77.466028 ], [ -29.531250, -77.466028 ], [ -29.531250, -76.516819 ], [ -25.312500, -76.516819 ], [ -25.312500, -76.184995 ], [ -21.093750, -76.184995 ], [ -21.093750, -75.845169 ], [ -18.281250, -75.845169 ], [ -18.281250, -75.497157 ], [ -16.875000, -75.497157 ], [ -16.875000, -74.775843 ], [ -15.468750, -74.775843 ], [ -15.468750, -73.226700 ], [ -14.062500, -73.226700 ], [ -14.062500, -72.816074 ], [ -12.656250, -72.816074 ], [ -12.656250, -72.395706 ], [ -11.250000, -72.395706 ], [ -11.250000, -71.524909 ], [ -7.031250, -71.524909 ], [ -7.031250, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.524909 ], [ -2.812500, -71.524909 ], [ -2.812500, -71.074056 ], [ 0.000000, -71.074056 ], [ 0.000000, -71.524909 ], [ 1.406250, -71.524909 ], [ 1.406250, -71.074056 ], [ 5.625000, -71.074056 ], [ 5.625000, -70.612614 ], [ 7.031250, -70.612614 ], [ 7.031250, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.612614 ], [ 12.656250, -70.612614 ], [ 12.656250, -70.140364 ], [ 14.062500, -70.140364 ], [ 14.062500, -70.612614 ], [ 15.468750, -70.612614 ], [ 15.468750, -70.140364 ], [ 18.281250, -70.140364 ], [ 18.281250, -69.657086 ], [ 19.687500, -69.657086 ], [ 19.687500, -70.140364 ], [ 21.093750, -70.140364 ], [ 21.093750, -70.612614 ], [ 28.125000, -70.612614 ], [ 28.125000, -70.140364 ], [ 30.937500, -70.140364 ], [ 30.937500, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -69.162558 ], [ 33.750000, -69.162558 ], [ 33.750000, -68.656555 ], [ 35.156250, -68.656555 ], [ 35.156250, -69.162558 ], [ 36.562500, -69.162558 ], [ 36.562500, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.162558 ], [ 42.187500, -69.162558 ], [ 42.187500, -68.656555 ], [ 43.593750, -68.656555 ], [ 43.593750, -68.138852 ], [ 46.406250, -68.138852 ], [ 46.406250, -67.609221 ], [ 49.218750, -67.609221 ], [ 49.218750, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.513260 ], [ 52.031250, -66.513260 ], [ 52.031250, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.513260 ], [ 57.656250, -66.513260 ], [ 57.656250, -67.067433 ], [ 59.062500, -67.067433 ], [ 59.062500, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -68.138852 ], [ 63.281250, -68.138852 ], [ 63.281250, -67.609221 ], [ 67.500000, -67.609221 ], [ 67.500000, -68.138852 ], [ 68.906250, -68.138852 ], [ 68.906250, -68.656555 ], [ 70.312500, -68.656555 ], [ 70.312500, -69.657086 ], [ 68.906250, -69.657086 ], [ 68.906250, -70.140364 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -72.395706 ], [ 71.718750, -72.395706 ], [ 71.718750, -71.524909 ], [ 73.125000, -71.524909 ], [ 73.125000, -70.140364 ], [ 74.531250, -70.140364 ], [ 74.531250, -69.657086 ], [ 78.750000, -69.657086 ], [ 78.750000, -68.138852 ], [ 81.562500, -68.138852 ], [ 81.562500, -67.609221 ], [ 82.968750, -67.609221 ], [ 82.968750, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 95.625000, -67.067433 ], [ 95.625000, -67.609221 ], [ 97.031250, -67.609221 ], [ 97.031250, -67.067433 ], [ 101.250000, -67.067433 ], [ 101.250000, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -67.067433 ], [ 109.687500, -67.067433 ], [ 109.687500, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.513260 ], [ 116.718750, -66.513260 ], [ 116.718750, -67.067433 ], [ 122.343750, -67.067433 ], [ 122.343750, -66.513260 ], [ 135.000000, -66.513260 ], [ 135.000000, -65.946472 ], [ 136.406250, -65.946472 ], [ 136.406250, -67.067433 ], [ 146.250000, -67.067433 ], [ 146.250000, -68.138852 ], [ 149.062500, -68.138852 ], [ 149.062500, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -69.162558 ], [ 157.500000, -69.162558 ], [ 157.500000, -69.657086 ], [ 158.906250, -69.657086 ], [ 158.906250, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.612614 ], [ 167.343750, -70.612614 ], [ 167.343750, -71.074056 ], [ 170.156250, -71.074056 ], [ 170.156250, -71.524909 ], [ 171.562500, -71.524909 ], [ 171.562500, -72.395706 ], [ 170.156250, -72.395706 ], [ 170.156250, -73.627789 ], [ 167.343750, -73.627789 ], [ 167.343750, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -75.140778 ], [ 164.531250, -75.140778 ], [ 164.531250, -75.845169 ], [ 163.125000, -75.845169 ], [ 163.125000, -77.466028 ], [ 164.531250, -77.466028 ], [ 164.531250, -78.349411 ], [ 165.937500, -78.349411 ], [ 165.937500, -78.630006 ], [ 167.343750, -78.630006 ], [ 167.343750, -78.903929 ], [ 164.531250, -78.903929 ], [ 164.531250, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.432371 ], [ 160.312500, -79.432371 ], [ 160.312500, -81.093214 ], [ 161.718750, -81.093214 ], [ 161.718750, -81.923186 ], [ 163.125000, -81.923186 ], [ 163.125000, -82.494824 ], [ 164.531250, -82.494824 ], [ 164.531250, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -83.194896 ], [ 167.343750, -83.194896 ], [ 167.343750, -83.359511 ], [ 168.750000, -83.359511 ], [ 168.750000, -83.829945 ], [ 170.156250, -83.829945 ], [ 170.156250, -83.979259 ], [ 172.968750, -83.979259 ], [ 172.968750, -84.405941 ], [ 174.375000, -84.405941 ], [ 174.375000, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.405941 ], [ 178.593750, -84.405941 ], [ 178.593750, -84.541361 ], [ 180.000000, -84.541361 ], [ 180.000000, -84.405941 ], [ 181.406250, -84.405941 ], [ 181.406250, -84.267172 ], [ 184.218750, -84.267172 ], [ 184.218750, -84.405941 ], [ 187.031250, -84.405941 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -147.656250, -85.622069 ] ] ], [ [ [ -161.718750, -78.349411 ], [ -161.718750, -78.630006 ], [ -160.312500, -78.630006 ], [ -160.312500, -78.903929 ], [ -158.906250, -78.903929 ], [ -158.906250, -79.687184 ], [ -161.718750, -79.687184 ], [ -161.718750, -79.432371 ], [ -163.125000, -79.432371 ], [ -163.125000, -78.349411 ], [ -161.718750, -78.349411 ] ] ], [ [ [ -118.125000, -73.627789 ], [ -118.125000, -74.019543 ], [ -122.343750, -74.019543 ], [ -122.343750, -73.627789 ], [ -118.125000, -73.627789 ] ] ], [ [ [ -125.156250, -73.627789 ], [ -125.156250, -74.019543 ], [ -126.562500, -74.019543 ], [ -126.562500, -73.627789 ], [ -125.156250, -73.627789 ] ] ], [ [ [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ], [ -102.656250, -72.395706 ], [ -102.656250, -71.965388 ], [ -97.031250, -71.965388 ] ] ], [ [ [ -61.875000, -64.774125 ], [ -61.875000, -65.366837 ], [ -63.281250, -65.366837 ], [ -63.281250, -64.774125 ], [ -61.875000, -64.774125 ] ] ], [ [ [ -60.468750, -64.168107 ], [ -60.468750, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.168107 ], [ -60.468750, -64.168107 ] ] ], [ [ [ -57.656250, -64.168107 ], [ -59.062500, -64.168107 ], [ -59.062500, -63.548552 ], [ -57.656250, -63.548552 ], [ -57.656250, -64.168107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -50.736455 ], [ -59.062500, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -50.736455 ], [ -59.062500, -50.736455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.609221 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ] ] ], [ [ [ 73.125000, 71.074056 ], [ 73.125000, 71.524909 ], [ 74.531250, 71.524909 ], [ 74.531250, 72.395706 ], [ 75.937500, 72.395706 ], [ 75.937500, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.395706 ], [ 80.156250, 72.395706 ], [ 80.156250, 73.627789 ], [ 87.187500, 73.627789 ], [ 87.187500, 74.019543 ], [ 85.781250, 74.019543 ], [ 85.781250, 74.775843 ], [ 87.187500, 74.775843 ], [ 87.187500, 75.140778 ], [ 90.000000, 75.140778 ], [ 90.000000, 75.497157 ], [ 92.812500, 75.497157 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 75.845169 ], [ 97.031250, 75.845169 ], [ 97.031250, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.516819 ], [ 101.250000, 76.516819 ], [ 101.250000, 76.840816 ], [ 102.656250, 76.840816 ], [ 102.656250, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.157163 ], [ 104.062500, 77.157163 ], [ 104.062500, 76.840816 ], [ 106.875000, 76.840816 ], [ 106.875000, 76.516819 ], [ 108.281250, 76.516819 ], [ 108.281250, 76.840816 ], [ 111.093750, 76.840816 ], [ 111.093750, 76.516819 ], [ 112.500000, 76.516819 ], [ 112.500000, 76.184995 ], [ 113.906250, 76.184995 ], [ 113.906250, 75.140778 ], [ 112.500000, 75.140778 ], [ 112.500000, 74.775843 ], [ 111.093750, 74.775843 ], [ 111.093750, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.019543 ], [ 111.093750, 74.019543 ], [ 111.093750, 73.627789 ], [ 118.125000, 73.627789 ], [ 118.125000, 73.226700 ], [ 120.937500, 73.226700 ], [ 120.937500, 72.816074 ], [ 123.750000, 72.816074 ], [ 123.750000, 73.627789 ], [ 126.562500, 73.627789 ], [ 126.562500, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.816074 ], [ 129.375000, 72.816074 ], [ 129.375000, 71.965388 ], [ 127.968750, 71.965388 ], [ 127.968750, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 70.612614 ], [ 130.781250, 70.612614 ], [ 130.781250, 71.074056 ], [ 132.187500, 71.074056 ], [ 132.187500, 71.524909 ], [ 139.218750, 71.524909 ], [ 139.218750, 72.395706 ], [ 140.625000, 72.395706 ], [ 140.625000, 72.816074 ], [ 143.437500, 72.816074 ], [ 143.437500, 72.395706 ], [ 149.062500, 72.395706 ], [ 149.062500, 71.965388 ], [ 150.468750, 71.965388 ], [ 150.468750, 71.074056 ], [ 151.875000, 71.074056 ], [ 151.875000, 70.612614 ], [ 156.093750, 70.612614 ], [ 156.093750, 71.074056 ], [ 158.906250, 71.074056 ], [ 158.906250, 70.612614 ], [ 160.312500, 70.612614 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 167.343750, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 68.656555 ], [ 170.156250, 68.656555 ], [ 170.156250, 69.657086 ], [ 175.781250, 69.657086 ], [ 175.781250, 69.162558 ], [ 180.000000, 69.162558 ], [ 180.000000, 68.656555 ], [ 181.406250, 68.656555 ], [ 181.406250, 68.138852 ], [ 182.812500, 68.138852 ], [ 182.812500, 67.609221 ], [ 184.218750, 67.609221 ], [ 184.218750, 67.067433 ], [ 187.031250, 67.067433 ], [ 187.031250, 64.168107 ], [ 185.625000, 64.168107 ], [ 185.625000, 64.774125 ], [ 184.218750, 64.774125 ], [ 184.218750, 65.366837 ], [ 181.406250, 65.366837 ], [ 181.406250, 65.946472 ], [ 180.000000, 65.946472 ], [ 180.000000, 64.774125 ], [ 177.187500, 64.774125 ], [ 177.187500, 64.168107 ], [ 178.593750, 64.168107 ], [ 178.593750, 62.915233 ], [ 180.000000, 62.915233 ], [ 180.000000, 62.267923 ], [ 177.187500, 62.267923 ], [ 177.187500, 61.606396 ], [ 174.375000, 61.606396 ], [ 174.375000, 60.930432 ], [ 171.562500, 60.930432 ], [ 171.562500, 60.239811 ], [ 170.156250, 60.239811 ], [ 170.156250, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.813742 ], [ 161.718750, 58.813742 ], [ 161.718750, 57.326521 ], [ 163.125000, 57.326521 ], [ 163.125000, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.162434 ], [ 160.312500, 54.162434 ], [ 160.312500, 53.330873 ], [ 158.906250, 53.330873 ], [ 158.906250, 50.736455 ], [ 156.093750, 50.736455 ], [ 156.093750, 57.326521 ], [ 157.500000, 57.326521 ], [ 157.500000, 58.077876 ], [ 158.906250, 58.077876 ], [ 158.906250, 58.813742 ], [ 160.312500, 58.813742 ], [ 160.312500, 59.534318 ], [ 161.718750, 59.534318 ], [ 161.718750, 60.239811 ], [ 160.312500, 60.239811 ], [ 160.312500, 60.930432 ], [ 158.906250, 60.930432 ], [ 158.906250, 61.606396 ], [ 156.093750, 61.606396 ], [ 156.093750, 60.239811 ], [ 154.687500, 60.239811 ], [ 154.687500, 58.813742 ], [ 151.875000, 58.813742 ], [ 151.875000, 59.534318 ], [ 150.468750, 59.534318 ], [ 150.468750, 58.813742 ], [ 146.250000, 58.813742 ], [ 146.250000, 59.534318 ], [ 144.843750, 59.534318 ], [ 144.843750, 58.813742 ], [ 142.031250, 58.813742 ], [ 142.031250, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 55.776573 ], [ 136.406250, 55.776573 ], [ 136.406250, 54.162434 ], [ 139.218750, 54.162434 ], [ 139.218750, 53.330873 ], [ 142.031250, 53.330873 ], [ 143.437500, 53.330873 ], [ 143.437500, 49.837982 ], [ 144.843750, 49.837982 ], [ 144.843750, 48.922499 ], [ 143.437500, 48.922499 ], [ 143.437500, 47.989922 ], [ 142.031250, 47.989922 ], [ 142.031250, 51.618017 ], [ 140.625000, 51.618017 ], [ 140.625000, 47.040182 ], [ 139.218750, 47.040182 ], [ 139.218750, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.089036 ], [ 136.406250, 45.089036 ], [ 136.406250, 44.087585 ], [ 135.000000, 44.087585 ], [ 135.000000, 43.068888 ], [ 132.187500, 43.068888 ], [ 132.187500, 42.032974 ], [ 130.781250, 42.032974 ], [ 130.781250, 45.089036 ], [ 133.593750, 45.089036 ], [ 133.593750, 47.040182 ], [ 135.000000, 47.040182 ], [ 135.000000, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.922499 ], [ 129.375000, 48.922499 ], [ 129.375000, 49.837982 ], [ 127.968750, 49.837982 ], [ 127.968750, 50.736455 ], [ 126.562500, 50.736455 ], [ 126.562500, 52.482780 ], [ 125.156250, 52.482780 ], [ 125.156250, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 51.618017 ], [ 119.531250, 51.618017 ], [ 119.531250, 49.837982 ], [ 112.500000, 49.837982 ], [ 112.500000, 48.922499 ], [ 108.281250, 48.922499 ], [ 108.281250, 49.837982 ], [ 102.656250, 49.837982 ], [ 102.656250, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 49.837982 ], [ 94.218750, 49.837982 ], [ 94.218750, 50.736455 ], [ 91.406250, 50.736455 ], [ 91.406250, 49.837982 ], [ 88.593750, 49.837982 ], [ 88.593750, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.837982 ], [ 84.375000, 49.837982 ], [ 84.375000, 50.736455 ], [ 78.750000, 50.736455 ], [ 78.750000, 52.482780 ], [ 77.343750, 52.482780 ], [ 77.343750, 53.330873 ], [ 75.937500, 53.330873 ], [ 73.125000, 53.330873 ], [ 73.125000, 54.162434 ], [ 70.312500, 54.162434 ], [ 70.312500, 54.977614 ], [ 66.093750, 54.977614 ], [ 66.093750, 54.162434 ], [ 61.875000, 54.162434 ], [ 61.875000, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 51.618017 ], [ 61.875000, 51.618017 ], [ 61.875000, 50.736455 ], [ 52.031250, 50.736455 ], [ 52.031250, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 49.837982 ], [ 46.406250, 49.837982 ], [ 46.406250, 47.989922 ], [ 47.812500, 47.989922 ], [ 47.812500, 47.040182 ], [ 49.218750, 47.040182 ], [ 49.218750, 46.073231 ], [ 47.812500, 46.073231 ], [ 47.812500, 45.089036 ], [ 46.406250, 45.089036 ], [ 46.406250, 44.087585 ], [ 47.812500, 44.087585 ], [ 47.812500, 42.032974 ], [ 49.218750, 42.032974 ], [ 49.218750, 40.979898 ], [ 46.406250, 40.979898 ], [ 46.406250, 42.032974 ], [ 45.000000, 42.032974 ], [ 45.000000, 43.068888 ], [ 39.375000, 43.068888 ], [ 39.375000, 44.087585 ], [ 37.968750, 44.087585 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 49.837982 ], [ 35.156250, 49.837982 ], [ 35.156250, 51.618017 ], [ 33.750000, 51.618017 ], [ 33.750000, 52.482780 ], [ 30.937500, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 58.077876 ], [ 26.718750, 58.077876 ], [ 26.718750, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 59.534318 ], [ 29.531250, 59.534318 ], [ 29.531250, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.930432 ], [ 29.531250, 60.930432 ], [ 29.531250, 61.606396 ], [ 30.937500, 61.606396 ], [ 30.937500, 62.915233 ], [ 29.531250, 62.915233 ], [ 29.531250, 63.548552 ], [ 30.937500, 63.548552 ], [ 30.937500, 64.168107 ], [ 29.531250, 64.168107 ], [ 29.531250, 67.609221 ], [ 28.125000, 67.609221 ], [ 28.125000, 69.162558 ], [ 30.937500, 69.162558 ], [ 30.937500, 69.657086 ], [ 33.750000, 69.657086 ], [ 33.750000, 69.162558 ], [ 36.562500, 69.162558 ], [ 36.562500, 68.656555 ], [ 39.375000, 68.656555 ], [ 39.375000, 68.138852 ], [ 40.781250, 68.138852 ], [ 40.781250, 66.513260 ], [ 39.375000, 66.513260 ], [ 39.375000, 65.946472 ], [ 35.156250, 65.946472 ], [ 35.156250, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 64.774125 ], [ 39.375000, 64.774125 ], [ 39.375000, 65.366837 ], [ 40.781250, 65.366837 ], [ 40.781250, 65.946472 ], [ 42.187500, 65.946472 ], [ 42.187500, 66.513260 ], [ 43.593750, 66.513260 ], [ 43.593750, 65.946472 ], [ 45.000000, 65.946472 ], [ 45.000000, 66.513260 ], [ 47.812500, 66.513260 ], [ 47.812500, 67.609221 ], [ 50.625000, 67.609221 ], [ 50.625000, 68.138852 ], [ 53.437500, 68.138852 ], [ 53.437500, 68.656555 ], [ 59.062500, 68.656555 ], [ 59.062500, 68.138852 ], [ 60.468750, 68.138852 ], [ 60.468750, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.162558 ], [ 64.687500, 69.162558 ], [ 64.687500, 68.656555 ], [ 67.500000, 68.656555 ], [ 67.500000, 70.140364 ], [ 66.093750, 70.140364 ], [ 66.093750, 71.074056 ], [ 67.500000, 71.074056 ], [ 67.500000, 71.524909 ], [ 68.906250, 71.524909 ], [ 68.906250, 72.816074 ], [ 73.125000, 72.816074 ], [ 73.125000, 71.965388 ], [ 71.718750, 71.965388 ], [ 71.718750, 71.074056 ], [ 73.125000, 71.074056 ] ], [ [ 73.125000, 69.162558 ], [ 73.125000, 67.067433 ], [ 71.718750, 67.067433 ], [ 71.718750, 65.946472 ], [ 73.125000, 65.946472 ], [ 73.125000, 66.513260 ], [ 74.531250, 66.513260 ], [ 74.531250, 69.162558 ], [ 73.125000, 69.162558 ] ], [ [ 73.125000, 71.074056 ], [ 73.125000, 70.140364 ], [ 74.531250, 70.140364 ], [ 74.531250, 71.074056 ], [ 73.125000, 71.074056 ] ], [ [ 163.125000, 60.239811 ], [ 163.125000, 60.930432 ], [ 161.718750, 60.930432 ], [ 161.718750, 60.239811 ], [ 163.125000, 60.239811 ] ], [ [ 163.125000, 62.267923 ], [ 163.125000, 61.606396 ], [ 164.531250, 61.606396 ], [ 164.531250, 62.267923 ], [ 163.125000, 62.267923 ] ], [ [ 35.156250, 65.946472 ], [ 35.156250, 66.513260 ], [ 33.750000, 66.513260 ], [ 33.750000, 65.946472 ], [ 35.156250, 65.946472 ] ], [ [ 67.500000, 68.656555 ], [ 67.500000, 68.138852 ], [ 68.906250, 68.138852 ], [ 68.906250, 68.656555 ], [ 67.500000, 68.656555 ] ] ], [ [ [ 142.031250, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 47.040182 ] ] ], [ [ [ -184.218750, 69.657086 ], [ -184.218750, 69.162558 ], [ -180.000000, 69.162558 ], [ -180.000000, 68.656555 ], [ -178.593750, 68.656555 ], [ -178.593750, 68.138852 ], [ -177.187500, 68.138852 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.067433 ], [ -171.562500, 67.067433 ], [ -171.562500, 66.513260 ], [ -170.156250, 66.513260 ], [ -170.156250, 65.366837 ], [ -172.968750, 65.366837 ], [ -172.968750, 64.168107 ], [ -174.375000, 64.168107 ], [ -174.375000, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 64.774125 ], [ -182.812500, 64.774125 ], [ -182.812500, 64.168107 ], [ -181.406250, 64.168107 ], [ -181.406250, 62.915233 ], [ -180.000000, 62.915233 ], [ -180.000000, 62.267923 ], [ -182.812500, 62.267923 ], [ -182.812500, 61.606396 ], [ -187.031250, 61.606396 ], [ -187.031250, 69.657086 ], [ -184.218750, 69.657086 ] ] ], [ [ [ 67.500000, 76.840816 ], [ 67.500000, 76.516819 ], [ 68.906250, 76.516819 ], [ 68.906250, 76.184995 ], [ 67.500000, 76.184995 ], [ 67.500000, 75.845169 ], [ 64.687500, 75.845169 ], [ 64.687500, 75.497157 ], [ 63.281250, 75.497157 ], [ 63.281250, 75.140778 ], [ 61.875000, 75.140778 ], [ 61.875000, 74.775843 ], [ 60.468750, 74.775843 ], [ 60.468750, 74.402163 ], [ 59.062500, 74.402163 ], [ 59.062500, 73.627789 ], [ 57.656250, 73.627789 ], [ 57.656250, 72.816074 ], [ 56.250000, 72.816074 ], [ 56.250000, 72.395706 ], [ 54.843750, 72.395706 ], [ 54.843750, 71.965388 ], [ 56.250000, 71.965388 ], [ 56.250000, 71.074056 ], [ 57.656250, 71.074056 ], [ 57.656250, 70.612614 ], [ 53.437500, 70.612614 ], [ 53.437500, 71.074056 ], [ 52.031250, 71.074056 ], [ 52.031250, 72.816074 ], [ 53.437500, 72.816074 ], [ 53.437500, 73.226700 ], [ 54.843750, 73.226700 ], [ 54.843750, 74.402163 ], [ 56.250000, 74.402163 ], [ 56.250000, 75.140778 ], [ 57.656250, 75.140778 ], [ 57.656250, 75.497157 ], [ 59.062500, 75.497157 ], [ 59.062500, 75.845169 ], [ 60.468750, 75.845169 ], [ 60.468750, 76.184995 ], [ 63.281250, 76.184995 ], [ 63.281250, 76.516819 ], [ 66.093750, 76.516819 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ] ] ], [ [ [ 99.843750, 78.630006 ], [ 97.031250, 78.630006 ], [ 97.031250, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 79.171335 ], [ 92.812500, 79.171335 ], [ 92.812500, 80.178713 ], [ 91.406250, 80.178713 ], [ 91.406250, 80.415707 ], [ 92.812500, 80.415707 ], [ 92.812500, 80.872827 ], [ 94.218750, 80.872827 ], [ 94.218750, 81.093214 ], [ 97.031250, 81.093214 ], [ 97.031250, 80.647035 ], [ 98.437500, 80.647035 ], [ 98.437500, 80.178713 ], [ 99.843750, 80.178713 ], [ 99.843750, 78.630006 ] ] ], [ [ [ 142.031250, 76.184995 ], [ 142.031250, 75.845169 ], [ 143.437500, 75.845169 ], [ 143.437500, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 74.775843 ], [ 136.406250, 74.775843 ], [ 136.406250, 75.497157 ], [ 137.812500, 75.497157 ], [ 137.812500, 75.845169 ], [ 139.218750, 75.845169 ], [ 139.218750, 76.184995 ], [ 142.031250, 76.184995 ] ] ], [ [ [ 99.843750, 78.630006 ], [ 101.250000, 78.630006 ], [ 101.250000, 79.171335 ], [ 102.656250, 79.171335 ], [ 102.656250, 78.903929 ], [ 104.062500, 78.903929 ], [ 104.062500, 78.630006 ], [ 105.468750, 78.630006 ], [ 105.468750, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 78.630006 ] ] ], [ [ [ 47.812500, 80.872827 ], [ 47.812500, 80.647035 ], [ 50.625000, 80.647035 ], [ 50.625000, 80.415707 ], [ 49.218750, 80.415707 ], [ 49.218750, 79.935918 ], [ 46.406250, 79.935918 ], [ 46.406250, 80.872827 ], [ 47.812500, 80.872827 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 147.656250, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.775843 ], [ 146.250000, 74.775843 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ 22.500000, 54.977614 ], [ 22.500000, 54.162434 ], [ 19.687500, 54.162434 ], [ 19.687500, 54.977614 ], [ 22.500000, 54.977614 ] ] ], [ [ [ 181.406250, 71.524909 ], [ 181.406250, 70.612614 ], [ 180.000000, 70.612614 ], [ 178.593750, 70.612614 ], [ 178.593750, 71.074056 ], [ 180.000000, 71.074056 ], [ 180.000000, 71.524909 ], [ 181.406250, 71.524909 ] ] ], [ [ [ -178.593750, 71.524909 ], [ -178.593750, 70.612614 ], [ -180.000000, 70.612614 ], [ -181.406250, 70.612614 ], [ -181.406250, 71.074056 ], [ -180.000000, 71.074056 ], [ -180.000000, 71.524909 ], [ -178.593750, 71.524909 ] ] ], [ [ [ 143.437500, 73.627789 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.627789 ], [ 143.437500, 73.627789 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.468750, -79.687184 ], [ -60.468750, -80.872827 ], [ -64.687500, -80.872827 ], [ -64.687500, -80.647035 ], [ -66.093750, -80.647035 ], [ -66.093750, -80.415707 ], [ -67.500000, -80.415707 ], [ -67.500000, -80.178713 ], [ -61.875000, -80.178713 ], [ -61.875000, -79.687184 ], [ -60.468750, -79.687184 ] ] ], [ [ [ -46.406250, -77.767582 ], [ -46.406250, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.630006 ], [ -43.593750, -78.630006 ], [ -43.593750, -80.178713 ], [ -45.000000, -80.178713 ], [ -45.000000, -80.415707 ], [ -47.812500, -80.415707 ], [ -47.812500, -80.647035 ], [ -49.218750, -80.647035 ], [ -49.218750, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.647035 ], [ -54.843750, -80.647035 ], [ -54.843750, -80.178713 ], [ -52.031250, -80.178713 ], [ -52.031250, -79.432371 ], [ -50.625000, -79.432371 ], [ -50.625000, -78.061989 ], [ -49.218750, -78.061989 ], [ -49.218750, -77.767582 ], [ -46.406250, -77.767582 ] ] ], [ [ [ -102.656250, -72.395706 ], [ -102.656250, -71.524909 ], [ -99.843750, -71.524909 ], [ -99.843750, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ], [ -101.250000, -72.395706 ], [ -101.250000, -72.816074 ], [ -98.437500, -72.816074 ], [ -98.437500, -73.226700 ], [ -91.406250, -73.226700 ], [ -91.406250, -72.816074 ], [ -87.187500, -72.816074 ], [ -87.187500, -73.226700 ], [ -84.375000, -73.226700 ], [ -84.375000, -73.627789 ], [ -81.562500, -73.627789 ], [ -81.562500, -73.226700 ], [ -78.750000, -73.226700 ], [ -78.750000, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.226700 ], [ -70.312500, -73.226700 ], [ -70.312500, -72.816074 ], [ -68.906250, -72.816074 ], [ -68.906250, -72.395706 ], [ -67.500000, -72.395706 ], [ -67.500000, -71.524909 ], [ -68.906250, -71.524909 ], [ -68.906250, -71.965388 ], [ -70.312500, -71.965388 ], [ -70.312500, -72.395706 ], [ -73.125000, -72.395706 ], [ -73.125000, -71.965388 ], [ -75.937500, -71.965388 ], [ -75.937500, -71.524909 ], [ -74.531250, -71.524909 ], [ -74.531250, -71.074056 ], [ -73.125000, -71.074056 ], [ -73.125000, -69.162558 ], [ -71.718750, -69.162558 ], [ -71.718750, -68.656555 ], [ -70.312500, -68.656555 ], [ -70.312500, -70.140364 ], [ -68.906250, -70.140364 ], [ -68.906250, -67.067433 ], [ -67.500000, -67.067433 ], [ -67.500000, -66.513260 ], [ -66.093750, -66.513260 ], [ -66.093750, -65.366837 ], [ -64.687500, -65.366837 ], [ -64.687500, -64.774125 ], [ -63.281250, -64.774125 ], [ -63.281250, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -67.067433 ], [ -66.093750, -67.067433 ], [ -66.093750, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -74.402163 ], [ -64.687500, -74.402163 ], [ -64.687500, -75.497157 ], [ -67.500000, -75.497157 ], [ -67.500000, -75.845169 ], [ -68.906250, -75.845169 ], [ -68.906250, -76.184995 ], [ -70.312500, -76.184995 ], [ -70.312500, -76.516819 ], [ -77.343750, -76.516819 ], [ -77.343750, -77.157163 ], [ -75.937500, -77.157163 ], [ -75.937500, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -78.061989 ], [ -77.343750, -78.061989 ], [ -77.343750, -78.349411 ], [ -78.750000, -78.349411 ], [ -78.750000, -79.432371 ], [ -77.343750, -79.432371 ], [ -77.343750, -79.935918 ], [ -75.937500, -79.935918 ], [ -75.937500, -80.415707 ], [ -74.531250, -80.415707 ], [ -74.531250, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.872827 ], [ -70.312500, -80.872827 ], [ -70.312500, -81.093214 ], [ -68.906250, -81.093214 ], [ -68.906250, -81.308321 ], [ -66.093750, -81.308321 ], [ -66.093750, -81.518272 ], [ -64.687500, -81.518272 ], [ -64.687500, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.923186 ], [ -61.875000, -81.923186 ], [ -61.875000, -82.118384 ], [ -60.468750, -82.118384 ], [ -60.468750, -82.494824 ], [ -59.062500, -82.494824 ], [ -59.062500, -83.026219 ], [ -57.656250, -83.026219 ], [ -57.656250, -82.676285 ], [ -56.250000, -82.676285 ], [ -56.250000, -82.308893 ], [ -54.843750, -82.308893 ], [ -54.843750, -82.118384 ], [ -52.031250, -82.118384 ], [ -52.031250, -81.923186 ], [ -50.625000, -81.923186 ], [ -50.625000, -81.723188 ], [ -45.000000, -81.723188 ], [ -45.000000, -81.923186 ], [ -43.593750, -81.923186 ], [ -43.593750, -81.723188 ], [ -42.187500, -81.723188 ], [ -42.187500, -81.518272 ], [ -40.781250, -81.518272 ], [ -40.781250, -81.308321 ], [ -36.562500, -81.308321 ], [ -36.562500, -81.093214 ], [ -35.156250, -81.093214 ], [ -35.156250, -80.872827 ], [ -32.343750, -80.872827 ], [ -32.343750, -80.647035 ], [ -30.937500, -80.647035 ], [ -30.937500, -80.415707 ], [ -29.531250, -80.415707 ], [ -29.531250, -79.687184 ], [ -30.937500, -79.687184 ], [ -30.937500, -79.171335 ], [ -32.343750, -79.171335 ], [ -32.343750, -79.432371 ], [ -36.562500, -79.432371 ], [ -36.562500, -78.061989 ], [ -35.156250, -78.061989 ], [ -35.156250, -77.767582 ], [ -32.343750, -77.767582 ], [ -32.343750, -77.157163 ], [ -30.937500, -77.157163 ], [ -30.937500, -76.840816 ], [ -29.531250, -76.840816 ], [ -29.531250, -76.516819 ], [ -28.125000, -76.516819 ], [ -28.125000, -76.184995 ], [ -22.500000, -76.184995 ], [ -22.500000, -75.845169 ], [ -21.093750, -75.845169 ], [ -21.093750, -75.497157 ], [ -19.687500, -75.497157 ], [ -19.687500, -75.140778 ], [ -18.281250, -75.140778 ], [ -18.281250, -74.775843 ], [ -16.875000, -74.775843 ], [ -16.875000, -74.402163 ], [ -15.468750, -74.402163 ], [ -15.468750, -74.019543 ], [ -16.875000, -74.019543 ], [ -16.875000, -73.226700 ], [ -15.468750, -73.226700 ], [ -15.468750, -72.816074 ], [ -14.062500, -72.816074 ], [ -14.062500, -72.395706 ], [ -12.656250, -72.395706 ], [ -12.656250, -71.965388 ], [ -11.250000, -71.965388 ], [ -11.250000, -71.074056 ], [ -9.843750, -71.074056 ], [ -9.843750, -71.524909 ], [ -8.437500, -71.524909 ], [ -8.437500, -71.074056 ], [ -1.406250, -71.074056 ], [ -1.406250, -71.524909 ], [ 0.000000, -71.524909 ], [ 0.000000, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -70.612614 ], [ 5.625000, -70.612614 ], [ 5.625000, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.612614 ], [ 11.250000, -70.612614 ], [ 11.250000, -70.140364 ], [ 12.656250, -70.140364 ], [ 12.656250, -69.657086 ], [ 14.062500, -69.657086 ], [ 14.062500, -70.140364 ], [ 15.468750, -70.140364 ], [ 15.468750, -69.657086 ], [ 21.093750, -69.657086 ], [ 21.093750, -70.612614 ], [ 22.500000, -70.612614 ], [ 22.500000, -70.140364 ], [ 29.531250, -70.140364 ], [ 29.531250, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -68.656555 ], [ 35.156250, -68.656555 ], [ 35.156250, -69.162558 ], [ 36.562500, -69.162558 ], [ 36.562500, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -68.656555 ], [ 40.781250, -68.656555 ], [ 40.781250, -68.138852 ], [ 43.593750, -68.138852 ], [ 43.593750, -67.609221 ], [ 47.812500, -67.609221 ], [ 47.812500, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -65.946472 ], [ 53.437500, -65.946472 ], [ 53.437500, -65.366837 ], [ 54.843750, -65.366837 ], [ 54.843750, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.513260 ], [ 57.656250, -66.513260 ], [ 57.656250, -67.067433 ], [ 59.062500, -67.067433 ], [ 59.062500, -67.609221 ], [ 67.500000, -67.609221 ], [ 67.500000, -68.138852 ], [ 68.906250, -68.138852 ], [ 68.906250, -69.657086 ], [ 67.500000, -69.657086 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -71.074056 ], [ 67.500000, -71.074056 ], [ 67.500000, -71.965388 ], [ 70.312500, -71.965388 ], [ 70.312500, -71.524909 ], [ 71.718750, -71.524909 ], [ 71.718750, -70.612614 ], [ 73.125000, -70.612614 ], [ 73.125000, -69.657086 ], [ 75.937500, -69.657086 ], [ 75.937500, -69.162558 ], [ 77.343750, -69.162558 ], [ 77.343750, -68.656555 ], [ 78.750000, -68.656555 ], [ 78.750000, -67.609221 ], [ 80.156250, -67.609221 ], [ 80.156250, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 99.843750, -67.067433 ], [ 99.843750, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.513260 ], [ 109.687500, -66.513260 ], [ 109.687500, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.513260 ], [ 116.718750, -66.513260 ], [ 116.718750, -67.067433 ], [ 120.937500, -67.067433 ], [ 120.937500, -66.513260 ], [ 130.781250, -66.513260 ], [ 130.781250, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -66.513260 ], [ 144.843750, -66.513260 ], [ 144.843750, -67.609221 ], [ 147.656250, -67.609221 ], [ 147.656250, -68.138852 ], [ 149.062500, -68.138852 ], [ 149.062500, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -69.162558 ], [ 158.906250, -69.162558 ], [ 158.906250, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.612614 ], [ 167.343750, -70.612614 ], [ 167.343750, -71.074056 ], [ 170.156250, -71.074056 ], [ 170.156250, -72.816074 ], [ 168.750000, -72.816074 ], [ 168.750000, -73.627789 ], [ 167.343750, -73.627789 ], [ 167.343750, -74.019543 ], [ 165.937500, -74.019543 ], [ 165.937500, -74.402163 ], [ 164.531250, -74.402163 ], [ 164.531250, -75.140778 ], [ 163.125000, -75.140778 ], [ 163.125000, -78.061989 ], [ 165.937500, -78.061989 ], [ 165.937500, -78.903929 ], [ 161.718750, -78.903929 ], [ 161.718750, -79.432371 ], [ 160.312500, -79.432371 ], [ 160.312500, -80.647035 ], [ 158.906250, -80.647035 ], [ 158.906250, -81.093214 ], [ 160.312500, -81.093214 ], [ 160.312500, -81.723188 ], [ 161.718750, -81.723188 ], [ 161.718750, -82.118384 ], [ 163.125000, -82.118384 ], [ 163.125000, -82.494824 ], [ 164.531250, -82.494824 ], [ 164.531250, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -83.026219 ], [ 167.343750, -83.026219 ], [ 167.343750, -83.194896 ], [ 168.750000, -83.194896 ], [ 168.750000, -83.829945 ], [ 170.156250, -83.829945 ], [ 170.156250, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -84.267172 ], [ 172.968750, -84.267172 ], [ 172.968750, -84.405941 ], [ 174.375000, -84.405941 ], [ 174.375000, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.541361 ], [ 178.593750, -84.541361 ], [ 178.593750, -84.673513 ], [ 180.000000, -84.673513 ], [ 180.000000, -84.267172 ], [ 181.406250, -84.267172 ], [ 181.406250, -84.405941 ], [ 182.812500, -84.405941 ], [ 182.812500, -84.267172 ], [ 185.625000, -84.267172 ], [ 185.625000, -83.979259 ], [ 187.031250, -83.979259 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.405941 ], [ -185.625000, -84.405941 ], [ -185.625000, -84.267172 ], [ -182.812500, -84.267172 ], [ -182.812500, -84.541361 ], [ -181.406250, -84.541361 ], [ -181.406250, -84.673513 ], [ -180.000000, -84.673513 ], [ -180.000000, -84.267172 ], [ -178.593750, -84.267172 ], [ -178.593750, -84.405941 ], [ -177.187500, -84.405941 ], [ -177.187500, -84.267172 ], [ -174.375000, -84.267172 ], [ -174.375000, -83.979259 ], [ -170.156250, -83.979259 ], [ -170.156250, -84.124973 ], [ -168.750000, -84.124973 ], [ -168.750000, -84.405941 ], [ -167.343750, -84.405941 ], [ -167.343750, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.170970 ], [ -160.312500, -85.170970 ], [ -160.312500, -85.287916 ], [ -157.500000, -85.287916 ], [ -157.500000, -85.170970 ], [ -153.281250, -85.170970 ], [ -153.281250, -85.287916 ], [ -151.875000, -85.287916 ], [ -151.875000, -85.402036 ], [ -150.468750, -85.402036 ], [ -150.468750, -85.513398 ], [ -147.656250, -85.513398 ], [ -147.656250, -85.402036 ], [ -146.250000, -85.402036 ], [ -146.250000, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.051129 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.541361 ], [ -146.250000, -84.541361 ], [ -146.250000, -84.405941 ], [ -150.468750, -84.405941 ], [ -150.468750, -84.124973 ], [ -151.875000, -84.124973 ], [ -151.875000, -83.829945 ], [ -154.687500, -83.829945 ], [ -154.687500, -83.026219 ], [ -153.281250, -83.026219 ], [ -153.281250, -81.923186 ], [ -154.687500, -81.923186 ], [ -154.687500, -81.518272 ], [ -156.093750, -81.518272 ], [ -156.093750, -81.308321 ], [ -157.500000, -81.308321 ], [ -157.500000, -81.093214 ], [ -151.875000, -81.093214 ], [ -151.875000, -81.308321 ], [ -150.468750, -81.308321 ], [ -150.468750, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -150.468750, -79.432371 ], [ -150.468750, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -157.500000, -78.630006 ], [ -157.500000, -78.061989 ], [ -158.906250, -78.061989 ], [ -158.906250, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -151.875000, -77.466028 ], [ -151.875000, -77.157163 ], [ -149.062500, -77.157163 ], [ -149.062500, -76.840816 ], [ -147.656250, -76.840816 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.845169 ], [ -147.656250, -75.845169 ], [ -147.656250, -75.497157 ], [ -143.437500, -75.497157 ], [ -143.437500, -75.140778 ], [ -142.031250, -75.140778 ], [ -142.031250, -74.775843 ], [ -137.812500, -74.775843 ], [ -137.812500, -74.402163 ], [ -136.406250, -74.402163 ], [ -136.406250, -74.019543 ], [ -135.000000, -74.019543 ], [ -135.000000, -74.402163 ], [ -119.531250, -74.402163 ], [ -119.531250, -74.019543 ], [ -113.906250, -74.019543 ], [ -113.906250, -74.402163 ], [ -112.500000, -74.402163 ], [ -112.500000, -74.775843 ], [ -109.687500, -74.775843 ], [ -109.687500, -75.140778 ], [ -106.875000, -75.140778 ], [ -106.875000, -74.775843 ], [ -102.656250, -74.775843 ], [ -102.656250, -75.140778 ], [ -101.250000, -75.140778 ], [ -101.250000, -74.019543 ], [ -104.062500, -74.019543 ], [ -104.062500, -72.395706 ], [ -102.656250, -72.395706 ] ] ], [ [ [ -161.718750, -78.349411 ], [ -161.718750, -78.630006 ], [ -160.312500, -78.630006 ], [ -160.312500, -79.432371 ], [ -163.125000, -79.432371 ], [ -163.125000, -78.630006 ], [ -164.531250, -78.630006 ], [ -164.531250, -78.349411 ], [ -161.718750, -78.349411 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -126.562500, -73.627789 ], [ -127.968750, -73.627789 ], [ -127.968750, -73.226700 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -61.875000, -64.168107 ], [ -61.875000, -64.774125 ], [ -63.281250, -64.774125 ], [ -63.281250, -64.168107 ], [ -61.875000, -64.168107 ] ] ], [ [ [ -59.062500, -63.548552 ], [ -59.062500, -64.168107 ], [ -61.875000, -64.168107 ], [ -61.875000, -63.548552 ], [ -59.062500, -63.548552 ] ] ], [ [ [ -57.656250, -63.548552 ], [ -59.062500, -63.548552 ], [ -59.062500, -62.915233 ], [ -57.656250, -62.915233 ], [ -57.656250, -63.548552 ] ] ], [ [ [ -122.343750, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -74.019543 ], [ -122.343750, -74.019543 ], [ -122.343750, -73.627789 ] ] ], [ [ [ -122.343750, -73.627789 ], [ -123.750000, -73.627789 ], [ -123.750000, -73.226700 ], [ -122.343750, -73.226700 ], [ -122.343750, -73.627789 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 67.609221 ], [ 15.468750, 65.366837 ], [ 14.062500, 65.366837 ], [ 14.062500, 64.168107 ], [ 12.656250, 64.168107 ], [ 12.656250, 63.548552 ], [ 11.250000, 63.548552 ], [ 11.250000, 62.267923 ], [ 12.656250, 62.267923 ], [ 12.656250, 59.534318 ], [ 11.250000, 59.534318 ], [ 11.250000, 58.813742 ], [ 8.437500, 58.813742 ], [ 8.437500, 58.077876 ], [ 5.625000, 58.077876 ], [ 5.625000, 62.915233 ], [ 8.437500, 62.915233 ], [ 8.437500, 64.168107 ], [ 9.843750, 64.168107 ], [ 9.843750, 64.774125 ], [ 11.250000, 64.774125 ], [ 11.250000, 65.366837 ], [ 12.656250, 65.366837 ], [ 12.656250, 66.513260 ], [ 14.062500, 66.513260 ], [ 14.062500, 67.609221 ], [ 15.468750, 67.609221 ] ] ], [ [ [ 16.875000, 68.138852 ], [ 16.875000, 67.609221 ], [ 15.468750, 67.609221 ], [ 15.468750, 68.138852 ], [ 16.875000, 68.138852 ] ] ], [ [ [ 18.281250, 68.656555 ], [ 18.281250, 68.138852 ], [ 16.875000, 68.138852 ], [ 16.875000, 68.656555 ], [ 18.281250, 68.656555 ] ] ], [ [ [ 29.531250, 69.657086 ], [ 26.718750, 69.657086 ], [ 26.718750, 69.162558 ], [ 25.312500, 69.162558 ], [ 25.312500, 68.656555 ], [ 21.093750, 68.656555 ], [ 21.093750, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 69.657086 ], [ 21.093750, 69.657086 ], [ 21.093750, 70.140364 ], [ 22.500000, 70.140364 ], [ 22.500000, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 71.074056 ], [ 28.125000, 71.074056 ], [ 28.125000, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.140364 ], [ 29.531250, 70.140364 ], [ 29.531250, 69.657086 ] ] ], [ [ [ 19.687500, 68.656555 ], [ 18.281250, 68.656555 ], [ 18.281250, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.656555 ] ] ], [ [ [ 16.875000, 79.935918 ], [ 16.875000, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.630006 ], [ 19.687500, 78.630006 ], [ 19.687500, 78.061989 ], [ 18.281250, 78.061989 ], [ 18.281250, 77.157163 ], [ 16.875000, 77.157163 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 77.157163 ], [ 14.062500, 77.157163 ], [ 14.062500, 77.767582 ], [ 12.656250, 77.767582 ], [ 12.656250, 78.349411 ], [ 11.250000, 78.349411 ], [ 11.250000, 79.171335 ], [ 9.843750, 79.171335 ], [ 9.843750, 79.687184 ], [ 15.468750, 79.687184 ], [ 15.468750, 79.935918 ], [ 16.875000, 79.935918 ] ] ], [ [ [ 21.093750, 80.647035 ], [ 21.093750, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 79.687184 ], [ 25.312500, 79.687184 ], [ 25.312500, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.935918 ], [ 18.281250, 79.935918 ], [ 18.281250, 80.178713 ], [ 16.875000, 80.178713 ], [ 16.875000, 80.415707 ], [ 19.687500, 80.415707 ], [ 19.687500, 80.647035 ], [ 21.093750, 80.647035 ] ] ], [ [ [ 22.500000, 78.349411 ], [ 22.500000, 78.061989 ], [ 23.906250, 78.061989 ], [ 23.906250, 77.767582 ], [ 25.312500, 77.767582 ], [ 25.312500, 77.466028 ], [ 21.093750, 77.466028 ], [ 21.093750, 78.349411 ], [ 22.500000, 78.349411 ] ] ], [ [ [ 29.531250, 69.657086 ], [ 30.937500, 69.657086 ], [ 30.937500, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.657086 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.031250, 51.618017 ], [ 140.625000, 51.618017 ], [ 139.218750, 51.618017 ], [ 139.218750, 47.989922 ], [ 137.812500, 47.989922 ], [ 137.812500, 46.073231 ], [ 136.406250, 46.073231 ], [ 136.406250, 45.089036 ], [ 135.000000, 45.089036 ], [ 135.000000, 44.087585 ], [ 133.593750, 44.087585 ], [ 133.593750, 43.068888 ], [ 130.781250, 43.068888 ], [ 130.781250, 46.073231 ], [ 133.593750, 46.073231 ], [ 133.593750, 47.989922 ], [ 135.000000, 47.989922 ], [ 135.000000, 48.922499 ], [ 132.187500, 48.922499 ], [ 132.187500, 47.989922 ], [ 129.375000, 47.989922 ], [ 129.375000, 49.837982 ], [ 126.562500, 49.837982 ], [ 126.562500, 52.482780 ], [ 125.156250, 52.482780 ], [ 125.156250, 53.330873 ], [ 122.343750, 53.330873 ], [ 122.343750, 54.162434 ], [ 120.937500, 54.162434 ], [ 120.937500, 53.330873 ], [ 119.531250, 53.330873 ], [ 119.531250, 51.618017 ], [ 118.125000, 51.618017 ], [ 118.125000, 49.837982 ], [ 106.875000, 49.837982 ], [ 106.875000, 50.736455 ], [ 101.250000, 50.736455 ], [ 101.250000, 51.618017 ], [ 99.843750, 51.618017 ], [ 99.843750, 52.482780 ], [ 98.437500, 52.482780 ], [ 98.437500, 51.618017 ], [ 97.031250, 51.618017 ], [ 97.031250, 49.837982 ], [ 95.625000, 49.837982 ], [ 95.625000, 50.736455 ], [ 90.000000, 50.736455 ], [ 90.000000, 49.837982 ], [ 84.375000, 49.837982 ], [ 84.375000, 50.736455 ], [ 82.968750, 50.736455 ], [ 82.968750, 51.618017 ], [ 78.750000, 51.618017 ], [ 78.750000, 52.482780 ], [ 77.343750, 52.482780 ], [ 77.343750, 54.162434 ], [ 70.312500, 54.162434 ], [ 70.312500, 55.776573 ], [ 68.906250, 55.776573 ], [ 68.906250, 54.977614 ], [ 63.281250, 54.977614 ], [ 63.281250, 54.162434 ], [ 60.468750, 54.162434 ], [ 60.468750, 52.482780 ], [ 59.062500, 52.482780 ], [ 59.062500, 50.736455 ], [ 57.656250, 50.736455 ], [ 57.656250, 51.618017 ], [ 56.250000, 51.618017 ], [ 56.250000, 50.736455 ], [ 53.437500, 50.736455 ], [ 53.437500, 51.618017 ], [ 52.031250, 51.618017 ], [ 52.031250, 52.482780 ], [ 50.625000, 52.482780 ], [ 50.625000, 51.618017 ], [ 49.218750, 51.618017 ], [ 49.218750, 50.736455 ], [ 46.406250, 50.736455 ], [ 46.406250, 47.989922 ], [ 47.812500, 47.989922 ], [ 47.812500, 46.073231 ], [ 46.406250, 46.073231 ], [ 46.406250, 42.032974 ], [ 45.000000, 42.032974 ], [ 45.000000, 43.068888 ], [ 42.187500, 43.068888 ], [ 42.187500, 44.087585 ], [ 37.968750, 44.087585 ], [ 37.968750, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 46.073231 ], [ 37.968750, 46.073231 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 49.837982 ], [ 37.968750, 49.837982 ], [ 37.968750, 50.736455 ], [ 35.156250, 50.736455 ], [ 35.156250, 51.618017 ], [ 33.750000, 51.618017 ], [ 33.750000, 52.482780 ], [ 30.937500, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 54.162434 ], [ 29.531250, 54.162434 ], [ 29.531250, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 56.559482 ], [ 26.718750, 56.559482 ], [ 26.718750, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 60.239811 ], [ 26.718750, 60.239811 ], [ 26.718750, 60.930432 ], [ 28.125000, 60.930432 ], [ 28.125000, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 63.548552 ], [ 29.531250, 63.548552 ], [ 29.531250, 66.513260 ], [ 28.125000, 66.513260 ], [ 28.125000, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 68.138852 ], [ 28.125000, 68.138852 ], [ 28.125000, 69.162558 ], [ 30.937500, 69.162558 ], [ 30.937500, 69.657086 ], [ 33.750000, 69.657086 ], [ 33.750000, 69.162558 ], [ 35.156250, 69.162558 ], [ 35.156250, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.138852 ], [ 39.375000, 68.138852 ], [ 39.375000, 67.609221 ], [ 40.781250, 67.609221 ], [ 40.781250, 66.513260 ], [ 43.593750, 66.513260 ], [ 43.593750, 68.138852 ], [ 42.187500, 68.138852 ], [ 42.187500, 68.656555 ], [ 45.000000, 68.656555 ], [ 45.000000, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.609221 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ], [ 47.812500, 67.067433 ], [ 47.812500, 67.609221 ], [ 49.218750, 67.609221 ], [ 49.218750, 68.138852 ], [ 50.625000, 68.138852 ], [ 50.625000, 68.656555 ], [ 53.437500, 68.656555 ], [ 53.437500, 68.138852 ], [ 54.843750, 68.138852 ], [ 54.843750, 68.656555 ], [ 60.468750, 68.656555 ], [ 60.468750, 69.162558 ], [ 59.062500, 69.162558 ], [ 59.062500, 69.657086 ], [ 64.687500, 69.657086 ], [ 64.687500, 69.162558 ], [ 66.093750, 69.162558 ], [ 66.093750, 68.138852 ], [ 68.906250, 68.138852 ], [ 68.906250, 68.656555 ], [ 67.500000, 68.656555 ], [ 67.500000, 69.657086 ], [ 66.093750, 69.657086 ], [ 66.093750, 71.524909 ], [ 67.500000, 71.524909 ], [ 67.500000, 72.395706 ], [ 68.906250, 72.395706 ], [ 68.906250, 72.816074 ], [ 71.718750, 72.816074 ], [ 71.718750, 71.524909 ], [ 73.125000, 71.524909 ], [ 73.125000, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.395706 ], [ 78.750000, 72.395706 ], [ 78.750000, 71.965388 ], [ 80.156250, 71.965388 ], [ 80.156250, 74.019543 ], [ 85.781250, 74.019543 ], [ 85.781250, 75.140778 ], [ 87.187500, 75.140778 ], [ 87.187500, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.845169 ], [ 92.812500, 75.845169 ], [ 92.812500, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.516819 ], [ 99.843750, 76.516819 ], [ 99.843750, 77.157163 ], [ 101.250000, 77.157163 ], [ 101.250000, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.157163 ], [ 106.875000, 77.157163 ], [ 106.875000, 76.840816 ], [ 109.687500, 76.840816 ], [ 109.687500, 76.516819 ], [ 112.500000, 76.516819 ], [ 112.500000, 76.184995 ], [ 113.906250, 76.184995 ], [ 113.906250, 75.845169 ], [ 112.500000, 75.845169 ], [ 112.500000, 74.775843 ], [ 109.687500, 74.775843 ], [ 109.687500, 74.019543 ], [ 112.500000, 74.019543 ], [ 112.500000, 73.627789 ], [ 118.125000, 73.627789 ], [ 118.125000, 73.226700 ], [ 122.343750, 73.226700 ], [ 122.343750, 73.627789 ], [ 126.562500, 73.627789 ], [ 126.562500, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 71.965388 ], [ 129.375000, 71.965388 ], [ 129.375000, 71.074056 ], [ 130.781250, 71.074056 ], [ 130.781250, 71.524909 ], [ 139.218750, 71.524909 ], [ 139.218750, 71.965388 ], [ 137.812500, 71.965388 ], [ 137.812500, 72.816074 ], [ 139.218750, 72.816074 ], [ 139.218750, 73.226700 ], [ 139.218750, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 74.019543 ], [ 142.031250, 74.019543 ], [ 142.031250, 73.627789 ], [ 143.437500, 73.627789 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 72.816074 ], [ 146.250000, 72.816074 ], [ 146.250000, 72.395706 ], [ 149.062500, 72.395706 ], [ 149.062500, 71.524909 ], [ 150.468750, 71.524909 ], [ 150.468750, 71.074056 ], [ 158.906250, 71.074056 ], [ 158.906250, 69.657086 ], [ 167.343750, 69.657086 ], [ 167.343750, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 69.657086 ], [ 170.156250, 69.657086 ], [ 170.156250, 70.140364 ], [ 175.781250, 70.140364 ], [ 175.781250, 69.657086 ], [ 178.593750, 69.657086 ], [ 178.593750, 69.162558 ], [ 180.000000, 69.162558 ], [ 180.000000, 68.656555 ], [ 181.406250, 68.656555 ], [ 181.406250, 68.138852 ], [ 182.812500, 68.138852 ], [ 182.812500, 67.609221 ], [ 184.218750, 67.609221 ], [ 184.218750, 67.067433 ], [ 187.031250, 67.067433 ], [ 187.031250, 64.774125 ], [ 182.812500, 64.774125 ], [ 182.812500, 65.366837 ], [ 181.406250, 65.366837 ], [ 181.406250, 65.946472 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.366837 ], [ 178.593750, 65.366837 ], [ 178.593750, 64.774125 ], [ 177.187500, 64.774125 ], [ 177.187500, 63.548552 ], [ 178.593750, 63.548552 ], [ 178.593750, 62.915233 ], [ 177.187500, 62.915233 ], [ 177.187500, 62.267923 ], [ 172.968750, 62.267923 ], [ 172.968750, 61.606396 ], [ 171.562500, 61.606396 ], [ 171.562500, 60.930432 ], [ 170.156250, 60.930432 ], [ 170.156250, 60.239811 ], [ 163.125000, 60.239811 ], [ 163.125000, 58.813742 ], [ 161.718750, 58.813742 ], [ 161.718750, 58.077876 ], [ 163.125000, 58.077876 ], [ 163.125000, 57.326521 ], [ 161.718750, 57.326521 ], [ 161.718750, 55.776573 ], [ 160.312500, 55.776573 ], [ 160.312500, 54.162434 ], [ 158.906250, 54.162434 ], [ 158.906250, 53.330873 ], [ 157.500000, 53.330873 ], [ 157.500000, 51.618017 ], [ 156.093750, 51.618017 ], [ 156.093750, 52.482780 ], [ 154.687500, 52.482780 ], [ 154.687500, 57.326521 ], [ 156.093750, 57.326521 ], [ 156.093750, 58.077876 ], [ 157.500000, 58.077876 ], [ 157.500000, 58.813742 ], [ 158.906250, 58.813742 ], [ 158.906250, 59.534318 ], [ 160.312500, 59.534318 ], [ 160.312500, 60.239811 ], [ 161.718750, 60.239811 ], [ 161.718750, 60.930432 ], [ 163.125000, 60.930432 ], [ 163.125000, 62.267923 ], [ 161.718750, 62.267923 ], [ 161.718750, 61.606396 ], [ 160.312500, 61.606396 ], [ 160.312500, 60.930432 ], [ 158.906250, 60.930432 ], [ 158.906250, 61.606396 ], [ 156.093750, 61.606396 ], [ 156.093750, 60.930432 ], [ 154.687500, 60.930432 ], [ 154.687500, 60.239811 ], [ 153.281250, 60.239811 ], [ 153.281250, 59.534318 ], [ 151.875000, 59.534318 ], [ 151.875000, 58.813742 ], [ 150.468750, 58.813742 ], [ 150.468750, 59.534318 ], [ 142.031250, 59.534318 ], [ 142.031250, 58.813742 ], [ 140.625000, 58.813742 ], [ 140.625000, 58.077876 ], [ 139.218750, 58.077876 ], [ 139.218750, 57.326521 ], [ 137.812500, 57.326521 ], [ 137.812500, 56.559482 ], [ 136.406250, 56.559482 ], [ 136.406250, 54.162434 ], [ 137.812500, 54.162434 ], [ 137.812500, 54.977614 ], [ 139.218750, 54.977614 ], [ 139.218750, 54.162434 ], [ 140.625000, 54.162434 ], [ 140.625000, 53.330873 ], [ 142.031250, 53.330873 ], [ 142.031250, 51.618017 ] ], [ [ 32.343750, 66.513260 ], [ 33.750000, 66.513260 ], [ 33.750000, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 64.774125 ], [ 39.375000, 64.774125 ], [ 39.375000, 65.946472 ], [ 40.781250, 65.946472 ], [ 40.781250, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 67.067433 ], [ 32.343750, 67.067433 ], [ 32.343750, 66.513260 ] ], [ [ 71.718750, 71.074056 ], [ 71.718750, 68.656555 ], [ 73.125000, 68.656555 ], [ 74.531250, 68.656555 ], [ 74.531250, 69.162558 ], [ 73.125000, 69.162558 ], [ 73.125000, 71.074056 ], [ 71.718750, 71.074056 ] ], [ [ 73.125000, 67.609221 ], [ 71.718750, 67.609221 ], [ 71.718750, 67.067433 ], [ 73.125000, 67.067433 ], [ 73.125000, 67.609221 ] ], [ [ 73.125000, 68.138852 ], [ 73.125000, 67.609221 ], [ 74.531250, 67.609221 ], [ 74.531250, 68.138852 ], [ 73.125000, 68.138852 ] ] ], [ [ [ -184.218750, 70.140364 ], [ -184.218750, 69.657086 ], [ -181.406250, 69.657086 ], [ -181.406250, 69.162558 ], [ -180.000000, 69.162558 ], [ -180.000000, 68.656555 ], [ -178.593750, 68.656555 ], [ -178.593750, 68.138852 ], [ -177.187500, 68.138852 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.067433 ], [ -172.968750, 67.067433 ], [ -172.968750, 66.513260 ], [ -170.156250, 66.513260 ], [ -170.156250, 65.946472 ], [ -172.968750, 65.946472 ], [ -172.968750, 64.774125 ], [ -177.187500, 64.774125 ], [ -177.187500, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.366837 ], [ -181.406250, 65.366837 ], [ -181.406250, 64.774125 ], [ -182.812500, 64.774125 ], [ -182.812500, 63.548552 ], [ -181.406250, 63.548552 ], [ -181.406250, 62.915233 ], [ -182.812500, 62.915233 ], [ -182.812500, 62.267923 ], [ -187.031250, 62.267923 ], [ -187.031250, 70.140364 ], [ -184.218750, 70.140364 ] ] ], [ [ [ 142.031250, 48.922499 ], [ 142.031250, 46.073231 ], [ 140.625000, 46.073231 ], [ 140.625000, 48.922499 ], [ 142.031250, 48.922499 ] ] ], [ [ [ 67.500000, 76.840816 ], [ 67.500000, 76.184995 ], [ 64.687500, 76.184995 ], [ 64.687500, 75.845169 ], [ 63.281250, 75.845169 ], [ 63.281250, 75.497157 ], [ 60.468750, 75.497157 ], [ 60.468750, 75.140778 ], [ 59.062500, 75.140778 ], [ 59.062500, 74.402163 ], [ 57.656250, 74.402163 ], [ 57.656250, 74.019543 ], [ 56.250000, 74.019543 ], [ 56.250000, 72.816074 ], [ 54.843750, 72.816074 ], [ 54.843750, 71.524909 ], [ 56.250000, 71.524909 ], [ 56.250000, 71.074056 ], [ 52.031250, 71.074056 ], [ 52.031250, 71.524909 ], [ 50.625000, 71.524909 ], [ 50.625000, 72.395706 ], [ 52.031250, 72.395706 ], [ 52.031250, 73.226700 ], [ 53.437500, 73.226700 ], [ 53.437500, 74.402163 ], [ 54.843750, 74.402163 ], [ 54.843750, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.497157 ], [ 57.656250, 75.497157 ], [ 57.656250, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 76.184995 ], [ 60.468750, 76.184995 ], [ 60.468750, 76.516819 ], [ 66.093750, 76.516819 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ] ] ], [ [ [ 99.843750, 78.903929 ], [ 94.218750, 78.903929 ], [ 94.218750, 79.171335 ], [ 92.812500, 79.171335 ], [ 92.812500, 79.687184 ], [ 91.406250, 79.687184 ], [ 91.406250, 80.178713 ], [ 90.000000, 80.178713 ], [ 90.000000, 80.415707 ], [ 91.406250, 80.415707 ], [ 91.406250, 80.872827 ], [ 92.812500, 80.872827 ], [ 92.812500, 81.093214 ], [ 97.031250, 81.093214 ], [ 97.031250, 80.647035 ], [ 98.437500, 80.647035 ], [ 98.437500, 80.178713 ], [ 99.843750, 80.178713 ], [ 99.843750, 78.903929 ] ] ], [ [ [ 144.843750, 75.497157 ], [ 143.437500, 75.497157 ], [ 143.437500, 75.140778 ], [ 139.218750, 75.140778 ], [ 139.218750, 74.775843 ], [ 137.812500, 74.775843 ], [ 137.812500, 75.140778 ], [ 136.406250, 75.140778 ], [ 136.406250, 76.184995 ], [ 142.031250, 76.184995 ], [ 142.031250, 75.845169 ], [ 144.843750, 75.845169 ], [ 144.843750, 75.497157 ] ] ], [ [ [ 99.843750, 78.903929 ], [ 101.250000, 78.903929 ], [ 101.250000, 79.432371 ], [ 102.656250, 79.432371 ], [ 102.656250, 79.171335 ], [ 104.062500, 79.171335 ], [ 104.062500, 78.349411 ], [ 102.656250, 78.349411 ], [ 102.656250, 78.061989 ], [ 98.437500, 78.061989 ], [ 98.437500, 78.349411 ], [ 99.843750, 78.349411 ], [ 99.843750, 78.903929 ] ] ], [ [ [ 50.625000, 80.872827 ], [ 50.625000, 80.415707 ], [ 47.812500, 80.415707 ], [ 47.812500, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.872827 ], [ 50.625000, 80.872827 ] ] ], [ [ [ 181.406250, 71.524909 ], [ 181.406250, 71.074056 ], [ 180.000000, 71.074056 ], [ 178.593750, 71.074056 ], [ 178.593750, 71.524909 ], [ 180.000000, 71.524909 ], [ 181.406250, 71.524909 ] ] ], [ [ [ -178.593750, 71.524909 ], [ -178.593750, 71.074056 ], [ -180.000000, 71.074056 ], [ -181.406250, 71.074056 ], [ -181.406250, 71.524909 ], [ -180.000000, 71.524909 ], [ -178.593750, 71.524909 ] ] ], [ [ [ 142.031250, 51.618017 ], [ 143.437500, 51.618017 ], [ 143.437500, 49.837982 ], [ 142.031250, 49.837982 ], [ 142.031250, 51.618017 ] ] ], [ [ [ 147.656250, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.775843 ], [ 147.656250, 74.775843 ], [ 147.656250, 75.140778 ] ] ], [ [ [ 144.843750, 75.497157 ], [ 147.656250, 75.497157 ], [ 147.656250, 75.140778 ], [ 144.843750, 75.140778 ], [ 144.843750, 75.497157 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.250000, 55.776573 ], [ 9.843750, 55.776573 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 55.776573 ] ] ], [ [ [ 11.250000, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.776573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 68.138852 ], [ 15.468750, 67.067433 ], [ 14.062500, 67.067433 ], [ 14.062500, 65.946472 ], [ 12.656250, 65.946472 ], [ 12.656250, 64.168107 ], [ 11.250000, 64.168107 ], [ 11.250000, 59.534318 ], [ 9.843750, 59.534318 ], [ 9.843750, 58.813742 ], [ 7.031250, 58.813742 ], [ 7.031250, 58.077876 ], [ 5.625000, 58.077876 ], [ 5.625000, 59.534318 ], [ 4.218750, 59.534318 ], [ 4.218750, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.915233 ], [ 8.437500, 62.915233 ], [ 8.437500, 64.168107 ], [ 9.843750, 64.168107 ], [ 9.843750, 65.366837 ], [ 11.250000, 65.366837 ], [ 11.250000, 66.513260 ], [ 12.656250, 66.513260 ], [ 12.656250, 67.609221 ], [ 14.062500, 67.609221 ], [ 14.062500, 68.138852 ], [ 15.468750, 68.138852 ] ] ], [ [ [ 16.875000, 68.656555 ], [ 16.875000, 68.138852 ], [ 15.468750, 68.138852 ], [ 15.468750, 68.656555 ], [ 16.875000, 68.656555 ] ] ], [ [ [ 16.875000, 80.178713 ], [ 16.875000, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.171335 ], [ 21.093750, 79.171335 ], [ 21.093750, 78.903929 ], [ 19.687500, 78.903929 ], [ 19.687500, 78.630006 ], [ 18.281250, 78.630006 ], [ 18.281250, 77.767582 ], [ 16.875000, 77.767582 ], [ 16.875000, 76.840816 ], [ 14.062500, 76.840816 ], [ 14.062500, 77.157163 ], [ 12.656250, 77.157163 ], [ 12.656250, 77.466028 ], [ 14.062500, 77.466028 ], [ 14.062500, 77.767582 ], [ 12.656250, 77.767582 ], [ 12.656250, 78.061989 ], [ 11.250000, 78.061989 ], [ 11.250000, 78.630006 ], [ 9.843750, 78.630006 ], [ 9.843750, 79.687184 ], [ 11.250000, 79.687184 ], [ 11.250000, 79.935918 ], [ 12.656250, 79.935918 ], [ 12.656250, 79.687184 ], [ 14.062500, 79.687184 ], [ 14.062500, 79.935918 ], [ 15.468750, 79.935918 ], [ 15.468750, 80.178713 ], [ 16.875000, 80.178713 ] ] ], [ [ [ 29.531250, 70.140364 ], [ 30.937500, 70.140364 ], [ 30.937500, 69.162558 ], [ 28.125000, 69.162558 ], [ 28.125000, 70.140364 ], [ 25.312500, 70.140364 ], [ 25.312500, 68.656555 ], [ 22.500000, 68.656555 ], [ 22.500000, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.656555 ], [ 16.875000, 68.656555 ], [ 16.875000, 69.657086 ], [ 18.281250, 69.657086 ], [ 18.281250, 70.140364 ], [ 21.093750, 70.140364 ], [ 21.093750, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 71.074056 ], [ 29.531250, 71.074056 ], [ 29.531250, 70.140364 ] ] ], [ [ [ 23.906250, 80.647035 ], [ 23.906250, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 79.935918 ], [ 25.312500, 79.935918 ], [ 25.312500, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.935918 ], [ 18.281250, 79.935918 ], [ 18.281250, 80.178713 ], [ 16.875000, 80.178713 ], [ 16.875000, 80.415707 ], [ 21.093750, 80.415707 ], [ 21.093750, 80.647035 ], [ 23.906250, 80.647035 ] ] ], [ [ [ 22.500000, 78.349411 ], [ 22.500000, 78.061989 ], [ 23.906250, 78.061989 ], [ 23.906250, 77.767582 ], [ 22.500000, 77.767582 ], [ 22.500000, 77.466028 ], [ 19.687500, 77.466028 ], [ 19.687500, 77.767582 ], [ 21.093750, 77.767582 ], [ 21.093750, 78.061989 ], [ 19.687500, 78.061989 ], [ 19.687500, 78.349411 ], [ 22.500000, 78.349411 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 69.162558 ], [ 21.093750, 68.656555 ], [ 22.500000, 68.656555 ], [ 22.500000, 68.138852 ], [ 23.906250, 68.138852 ], [ 23.906250, 65.946472 ], [ 22.500000, 65.946472 ], [ 22.500000, 65.366837 ], [ 21.093750, 65.366837 ], [ 21.093750, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.267923 ], [ 16.875000, 62.267923 ], [ 16.875000, 60.930432 ], [ 18.281250, 60.930432 ], [ 18.281250, 58.813742 ], [ 16.875000, 58.813742 ], [ 16.875000, 56.559482 ], [ 15.468750, 56.559482 ], [ 15.468750, 55.776573 ], [ 14.062500, 55.776573 ], [ 14.062500, 54.977614 ], [ 12.656250, 54.977614 ], [ 12.656250, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 59.534318 ], [ 12.656250, 59.534318 ], [ 12.656250, 62.267923 ], [ 11.250000, 62.267923 ], [ 11.250000, 63.548552 ], [ 12.656250, 63.548552 ], [ 12.656250, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 65.366837 ], [ 15.468750, 65.366837 ], [ 15.468750, 67.609221 ], [ 16.875000, 67.609221 ], [ 16.875000, 68.138852 ], [ 18.281250, 68.138852 ], [ 18.281250, 68.656555 ], [ 19.687500, 68.656555 ], [ 19.687500, 69.162558 ], [ 21.093750, 69.162558 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 58.077876 ], [ 9.843750, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 54.977614 ], [ 9.843750, 54.977614 ], [ 7.031250, 54.977614 ], [ 7.031250, 57.326521 ], [ 8.437500, 57.326521 ], [ 8.437500, 58.077876 ], [ 9.843750, 58.077876 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.330873 ], [ 7.031250, 51.618017 ], [ 4.218750, 51.618017 ], [ 4.218750, 53.330873 ], [ 7.031250, 53.330873 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 68.656555 ], [ 21.093750, 68.138852 ], [ 22.500000, 68.138852 ], [ 22.500000, 65.946472 ], [ 21.093750, 65.946472 ], [ 21.093750, 64.168107 ], [ 19.687500, 64.168107 ], [ 19.687500, 63.548552 ], [ 18.281250, 63.548552 ], [ 18.281250, 62.915233 ], [ 16.875000, 62.915233 ], [ 16.875000, 60.239811 ], [ 18.281250, 60.239811 ], [ 18.281250, 59.534318 ], [ 16.875000, 59.534318 ], [ 16.875000, 58.813742 ], [ 15.468750, 58.813742 ], [ 15.468750, 56.559482 ], [ 14.062500, 56.559482 ], [ 14.062500, 55.776573 ], [ 11.250000, 55.776573 ], [ 11.250000, 58.813742 ], [ 9.843750, 58.813742 ], [ 9.843750, 59.534318 ], [ 11.250000, 59.534318 ], [ 11.250000, 64.168107 ], [ 12.656250, 64.168107 ], [ 12.656250, 65.946472 ], [ 14.062500, 65.946472 ], [ 14.062500, 67.067433 ], [ 15.468750, 67.067433 ], [ 15.468750, 68.138852 ], [ 16.875000, 68.138852 ], [ 16.875000, 68.656555 ], [ 21.093750, 68.656555 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.618017 ], [ 5.625000, 49.837982 ], [ 4.218750, 49.837982 ], [ 4.218750, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 51.618017 ], [ 5.625000, 51.618017 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ], [ 14.062500, 54.162434 ], [ 14.062500, 50.736455 ], [ 12.656250, 50.736455 ], [ 12.656250, 48.922499 ], [ 14.062500, 48.922499 ], [ 14.062500, 47.989922 ], [ 8.437500, 47.989922 ], [ 8.437500, 48.922499 ], [ 5.625000, 48.922499 ], [ 5.625000, 51.618017 ], [ 7.031250, 51.618017 ], [ 7.031250, 53.330873 ], [ 8.437500, 53.330873 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.330873 ], [ 7.031250, 52.482780 ], [ 5.625000, 52.482780 ], [ 5.625000, 51.618017 ], [ 2.812500, 51.618017 ], [ 2.812500, 52.482780 ], [ 4.218750, 52.482780 ], [ 4.218750, 53.330873 ], [ 7.031250, 53.330873 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 47.989922 ], [ 9.843750, 46.073231 ], [ 5.625000, 46.073231 ], [ 5.625000, 47.040182 ], [ 7.031250, 47.040182 ], [ 7.031250, 47.989922 ], [ 9.843750, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.618017 ], [ 5.625000, 49.837982 ], [ 4.218750, 49.837982 ], [ 4.218750, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 51.618017 ], [ 5.625000, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 50.736455 ], [ 16.875000, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 48.922499 ], [ 12.656250, 48.922499 ], [ 12.656250, 50.736455 ], [ 16.875000, 50.736455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ], [ 14.062500, 54.162434 ], [ 14.062500, 51.618017 ], [ 12.656250, 51.618017 ], [ 12.656250, 50.736455 ], [ 11.250000, 50.736455 ], [ 11.250000, 49.837982 ], [ 12.656250, 49.837982 ], [ 12.656250, 47.989922 ], [ 7.031250, 47.989922 ], [ 7.031250, 49.837982 ], [ 5.625000, 49.837982 ], [ 5.625000, 52.482780 ], [ 7.031250, 52.482780 ], [ 7.031250, 53.330873 ], [ 5.625000, 53.330873 ], [ 5.625000, 54.162434 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 54.162434 ], [ 23.906250, 52.482780 ], [ 22.500000, 52.482780 ], [ 22.500000, 51.618017 ], [ 23.906250, 51.618017 ], [ 23.906250, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 19.687500, 48.922499 ], [ 19.687500, 49.837982 ], [ 16.875000, 49.837982 ], [ 16.875000, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 54.162434 ], [ 23.906250, 54.162434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 47.989922 ], [ 8.437500, 46.073231 ], [ 5.625000, 46.073231 ], [ 5.625000, 47.989922 ], [ 8.437500, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 48.922499 ], [ 16.875000, 47.040182 ], [ 15.468750, 47.040182 ], [ 15.468750, 46.073231 ], [ 12.656250, 46.073231 ], [ 12.656250, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 47.989922 ], [ 14.062500, 47.989922 ], [ 14.062500, 48.922499 ], [ 16.875000, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 51.618017 ], [ 15.468750, 50.736455 ], [ 18.281250, 50.736455 ], [ 18.281250, 49.837982 ], [ 16.875000, 49.837982 ], [ 16.875000, 48.922499 ], [ 12.656250, 48.922499 ], [ 12.656250, 49.837982 ], [ 11.250000, 49.837982 ], [ 11.250000, 50.736455 ], [ 12.656250, 50.736455 ], [ 12.656250, 51.618017 ], [ 15.468750, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 46.073231 ], [ 15.468750, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 46.073231 ], [ 15.468750, 46.073231 ] ] ], [ [ [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 46.073231 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 54.977614 ], [ 22.500000, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 50.736455 ], [ 15.468750, 50.736455 ], [ 15.468750, 51.618017 ], [ 14.062500, 51.618017 ], [ 14.062500, 54.162434 ], [ 15.468750, 54.162434 ], [ 15.468750, 54.977614 ], [ 22.500000, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 37.718590 ], [ 15.468750, 36.597889 ], [ 12.656250, 36.597889 ], [ 12.656250, 37.718590 ], [ 15.468750, 37.718590 ] ] ], [ [ [ 12.656250, 47.040182 ], [ 12.656250, 44.087585 ], [ 14.062500, 44.087585 ], [ 14.062500, 42.032974 ], [ 15.468750, 42.032974 ], [ 15.468750, 40.979898 ], [ 16.875000, 40.979898 ], [ 16.875000, 37.718590 ], [ 15.468750, 37.718590 ], [ 15.468750, 39.909736 ], [ 14.062500, 39.909736 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 42.032974 ], [ 9.843750, 42.032974 ], [ 9.843750, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 46.073231 ], [ 9.843750, 46.073231 ], [ 9.843750, 47.040182 ], [ 12.656250, 47.040182 ] ] ], [ [ [ 9.843750, 40.979898 ], [ 9.843750, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.979898 ], [ 9.843750, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 48.922499 ], [ 16.875000, 47.989922 ], [ 15.468750, 47.989922 ], [ 15.468750, 47.040182 ], [ 8.437500, 47.040182 ], [ 8.437500, 47.989922 ], [ 12.656250, 47.989922 ], [ 12.656250, 48.922499 ], [ 16.875000, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, 43.068888 ], [ 15.468750, 43.068888 ], [ 15.468750, 44.087585 ], [ 16.875000, 44.087585 ], [ 16.875000, 43.068888 ] ] ], [ [ [ 18.281250, 45.089036 ], [ 15.468750, 45.089036 ], [ 15.468750, 46.073231 ], [ 18.281250, 46.073231 ], [ 18.281250, 45.089036 ] ] ], [ [ [ 16.875000, 43.068888 ], [ 18.281250, 43.068888 ], [ 18.281250, 42.032974 ], [ 16.875000, 42.032974 ], [ 16.875000, 43.068888 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 47.040182 ], [ 15.468750, 46.073231 ], [ 12.656250, 46.073231 ], [ 12.656250, 47.040182 ], [ 15.468750, 47.040182 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 47.989922 ], [ 22.500000, 47.040182 ], [ 21.093750, 47.040182 ], [ 21.093750, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 47.989922 ], [ 22.500000, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.822591 ], [ 15.468750, 37.718590 ], [ 11.250000, 37.718590 ], [ 11.250000, 38.822591 ], [ 15.468750, 38.822591 ] ] ], [ [ [ 8.437500, 40.979898 ], [ 8.437500, 39.909736 ], [ 7.031250, 39.909736 ], [ 7.031250, 40.979898 ], [ 8.437500, 40.979898 ] ] ], [ [ [ 12.656250, 42.032974 ], [ 9.843750, 42.032974 ], [ 9.843750, 44.087585 ], [ 8.437500, 44.087585 ], [ 8.437500, 45.089036 ], [ 7.031250, 45.089036 ], [ 7.031250, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 47.040182 ], [ 12.656250, 47.040182 ], [ 12.656250, 46.073231 ], [ 11.250000, 46.073231 ], [ 11.250000, 44.087585 ], [ 12.656250, 44.087585 ], [ 12.656250, 42.032974 ] ] ], [ [ [ 16.875000, 40.979898 ], [ 18.281250, 40.979898 ], [ 18.281250, 39.909736 ], [ 16.875000, 39.909736 ], [ 16.875000, 40.979898 ] ] ], [ [ [ 12.656250, 42.032974 ], [ 15.468750, 42.032974 ], [ 15.468750, 40.979898 ], [ 15.468750, 39.909736 ], [ 14.062500, 39.909736 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 49.837982 ], [ 19.687500, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 18.281250, 48.922499 ], [ 18.281250, 49.837982 ], [ 19.687500, 49.837982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 46.073231 ], [ 15.468750, 44.087585 ], [ 14.062500, 44.087585 ], [ 14.062500, 45.089036 ], [ 12.656250, 45.089036 ], [ 12.656250, 46.073231 ], [ 15.468750, 46.073231 ] ] ], [ [ [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 46.073231 ] ] ], [ [ [ 16.875000, 46.073231 ], [ 18.281250, 46.073231 ], [ 18.281250, 45.089036 ], [ 16.875000, 45.089036 ], [ 16.875000, 46.073231 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 45.089036 ], [ 19.687500, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 44.087585 ], [ 15.468750, 44.087585 ], [ 15.468750, 45.089036 ], [ 19.687500, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.922499 ], [ 22.500000, 47.989922 ], [ 21.093750, 47.989922 ], [ 21.093750, 47.040182 ], [ 18.281250, 47.040182 ], [ 18.281250, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 47.040182 ], [ 15.468750, 47.040182 ], [ 15.468750, 47.989922 ], [ 18.281250, 47.989922 ], [ 18.281250, 48.922499 ], [ 22.500000, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.068888 ], [ 19.687500, 42.032974 ], [ 18.281250, 42.032974 ], [ 18.281250, 43.068888 ], [ 19.687500, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 18.281250, 48.922499 ], [ 18.281250, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 49.837982 ], [ 22.500000, 49.837982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 46.073231 ], [ 21.093750, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 42.032974 ], [ 21.093750, 42.032974 ], [ 21.093750, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 45.089036 ], [ 18.281250, 45.089036 ], [ 18.281250, 46.073231 ], [ 21.093750, 46.073231 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.073231 ], [ 16.875000, 45.089036 ], [ 18.281250, 45.089036 ], [ 18.281250, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 44.087585 ], [ 15.468750, 44.087585 ], [ 15.468750, 46.073231 ], [ 16.875000, 46.073231 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.032974 ], [ 19.687500, 42.032974 ], [ 19.687500, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 44.087585 ], [ 19.687500, 43.068888 ], [ 18.281250, 43.068888 ], [ 18.281250, 44.087585 ], [ 19.687500, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 42.032974 ], [ 21.093750, 39.909736 ], [ 19.687500, 39.909736 ], [ 19.687500, 42.032974 ], [ 21.093750, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 47.040182 ], [ 19.687500, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 45.089036 ], [ 22.500000, 45.089036 ], [ 22.500000, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 44.087585 ], [ 18.281250, 44.087585 ], [ 18.281250, 47.040182 ], [ 19.687500, 47.040182 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.032974 ], [ 22.500000, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 42.032974 ], [ 22.500000, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.068888 ], [ 19.687500, 40.979898 ], [ 18.281250, 40.979898 ], [ 18.281250, 43.068888 ], [ 19.687500, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 69.657086 ], [ 29.531250, 69.162558 ], [ 28.125000, 69.162558 ], [ 28.125000, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 64.168107 ], [ 30.937500, 64.168107 ], [ 30.937500, 63.548552 ], [ 29.531250, 63.548552 ], [ 29.531250, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 60.930432 ], [ 28.125000, 60.930432 ], [ 28.125000, 60.239811 ], [ 23.906250, 60.239811 ], [ 23.906250, 59.534318 ], [ 22.500000, 59.534318 ], [ 22.500000, 60.239811 ], [ 21.093750, 60.239811 ], [ 21.093750, 62.915233 ], [ 22.500000, 62.915233 ], [ 22.500000, 63.548552 ], [ 23.906250, 63.548552 ], [ 23.906250, 64.168107 ], [ 25.312500, 64.168107 ], [ 25.312500, 65.366837 ], [ 23.906250, 65.366837 ], [ 23.906250, 68.138852 ], [ 22.500000, 68.138852 ], [ 22.500000, 68.656555 ], [ 25.312500, 68.656555 ], [ 25.312500, 69.162558 ], [ 26.718750, 69.162558 ], [ 26.718750, 69.657086 ], [ 29.531250, 69.657086 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 40.979898 ], [ 19.687500, 40.979898 ], [ 19.687500, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 58.077876 ], [ 25.312500, 57.326521 ], [ 28.125000, 57.326521 ], [ 28.125000, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.559482 ], [ 22.500000, 56.559482 ], [ 22.500000, 55.776573 ], [ 21.093750, 55.776573 ], [ 21.093750, 57.326521 ], [ 23.906250, 57.326521 ], [ 23.906250, 58.077876 ], [ 25.312500, 58.077876 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 70.140364 ], [ 28.125000, 68.138852 ], [ 29.531250, 68.138852 ], [ 29.531250, 67.609221 ], [ 28.125000, 67.609221 ], [ 28.125000, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 63.548552 ], [ 30.937500, 63.548552 ], [ 30.937500, 62.267923 ], [ 29.531250, 62.267923 ], [ 29.531250, 61.606396 ], [ 28.125000, 61.606396 ], [ 28.125000, 60.930432 ], [ 25.312500, 60.930432 ], [ 25.312500, 60.239811 ], [ 21.093750, 60.239811 ], [ 21.093750, 62.267923 ], [ 19.687500, 62.267923 ], [ 19.687500, 62.915233 ], [ 21.093750, 62.915233 ], [ 21.093750, 64.168107 ], [ 22.500000, 64.168107 ], [ 22.500000, 64.774125 ], [ 23.906250, 64.774125 ], [ 23.906250, 65.946472 ], [ 22.500000, 65.946472 ], [ 22.500000, 68.138852 ], [ 21.093750, 68.138852 ], [ 21.093750, 68.656555 ], [ 19.687500, 68.656555 ], [ 19.687500, 69.162558 ], [ 22.500000, 69.162558 ], [ 22.500000, 68.656555 ], [ 25.312500, 68.656555 ], [ 25.312500, 70.140364 ], [ 28.125000, 70.140364 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ], [ 26.718750, 58.813742 ], [ 26.718750, 58.077876 ], [ 28.125000, 58.077876 ], [ 28.125000, 57.326521 ], [ 25.312500, 57.326521 ], [ 25.312500, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.906250, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 58.077876 ], [ 26.718750, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.559482 ], [ 19.687500, 56.559482 ], [ 19.687500, 57.326521 ], [ 21.093750, 57.326521 ], [ 21.093750, 58.077876 ], [ 22.500000, 58.077876 ], [ 22.500000, 57.326521 ], [ 23.906250, 57.326521 ], [ 23.906250, 58.077876 ], [ 26.718750, 58.077876 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.559482 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 54.977614 ], [ 25.312500, 54.977614 ], [ 25.312500, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.776573 ], [ 22.500000, 55.776573 ], [ 22.500000, 56.559482 ], [ 25.312500, 56.559482 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ], [ 26.718750, 58.813742 ], [ 26.718750, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.906250, 58.813742 ], [ 22.500000, 58.813742 ], [ 22.500000, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, 55.776573 ], [ 30.937500, 54.162434 ], [ 32.343750, 54.162434 ], [ 32.343750, 53.330873 ], [ 30.937500, 53.330873 ], [ 30.937500, 52.482780 ], [ 32.343750, 52.482780 ], [ 32.343750, 51.618017 ], [ 22.500000, 51.618017 ], [ 22.500000, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 54.162434 ], [ 25.312500, 54.162434 ], [ 25.312500, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.776573 ], [ 30.937500, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.559482 ], [ 25.312500, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.776573 ], [ 19.687500, 55.776573 ], [ 19.687500, 56.559482 ], [ 25.312500, 56.559482 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 47.989922 ], [ 26.718750, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.087585 ], [ 21.093750, 44.087585 ], [ 21.093750, 47.040182 ], [ 22.500000, 47.040182 ], [ 22.500000, 47.989922 ], [ 26.718750, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 56.559482 ], [ 28.125000, 55.776573 ], [ 30.937500, 55.776573 ], [ 30.937500, 54.977614 ], [ 29.531250, 54.977614 ], [ 29.531250, 54.162434 ], [ 32.343750, 54.162434 ], [ 32.343750, 53.330873 ], [ 30.937500, 53.330873 ], [ 30.937500, 52.482780 ], [ 29.531250, 52.482780 ], [ 29.531250, 51.618017 ], [ 25.312500, 51.618017 ], [ 25.312500, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 51.618017 ], [ 22.500000, 51.618017 ], [ 22.500000, 54.162434 ], [ 25.312500, 54.162434 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 56.559482 ], [ 28.125000, 56.559482 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 44.087585 ], [ 28.125000, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 40.979898 ], [ 22.500000, 40.979898 ], [ 22.500000, 44.087585 ], [ 28.125000, 44.087585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 48.922499 ], [ 26.718750, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 46.073231 ], [ 29.531250, 46.073231 ], [ 29.531250, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 45.089036 ], [ 21.093750, 45.089036 ], [ 21.093750, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 47.040182 ], [ 21.093750, 47.040182 ], [ 21.093750, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 48.922499 ], [ 26.718750, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 47.989922 ], [ 29.531250, 46.073231 ], [ 28.125000, 46.073231 ], [ 28.125000, 47.040182 ], [ 26.718750, 47.040182 ], [ 26.718750, 47.989922 ], [ 29.531250, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 44.087585 ], [ 26.718750, 42.032974 ], [ 21.093750, 42.032974 ], [ 21.093750, 43.068888 ], [ 22.500000, 43.068888 ], [ 22.500000, 44.087585 ], [ 26.718750, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.482780 ], [ 33.750000, 51.618017 ], [ 35.156250, 51.618017 ], [ 35.156250, 49.837982 ], [ 39.375000, 49.837982 ], [ 39.375000, 47.989922 ], [ 37.968750, 47.989922 ], [ 37.968750, 47.040182 ], [ 35.156250, 47.040182 ], [ 35.156250, 44.087585 ], [ 33.750000, 44.087585 ], [ 33.750000, 46.073231 ], [ 32.343750, 46.073231 ], [ 32.343750, 47.040182 ], [ 30.937500, 47.040182 ], [ 30.937500, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 46.073231 ], [ 29.531250, 46.073231 ], [ 29.531250, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 49.837982 ], [ 23.906250, 49.837982 ], [ 23.906250, 51.618017 ], [ 32.343750, 51.618017 ], [ 32.343750, 52.482780 ], [ 33.750000, 52.482780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 48.922499 ], [ 28.125000, 47.040182 ], [ 26.718750, 47.040182 ], [ 26.718750, 48.922499 ], [ 28.125000, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 43.068888 ], [ 45.000000, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 40.979898 ], [ 42.187500, 40.979898 ], [ 42.187500, 42.032974 ], [ 40.781250, 42.032974 ], [ 40.781250, 43.068888 ], [ 45.000000, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.482780 ], [ 33.750000, 51.618017 ], [ 35.156250, 51.618017 ], [ 35.156250, 50.736455 ], [ 37.968750, 50.736455 ], [ 37.968750, 49.837982 ], [ 39.375000, 49.837982 ], [ 39.375000, 47.989922 ], [ 37.968750, 47.989922 ], [ 37.968750, 47.040182 ], [ 33.750000, 47.040182 ], [ 33.750000, 46.073231 ], [ 35.156250, 46.073231 ], [ 35.156250, 45.089036 ], [ 32.343750, 45.089036 ], [ 32.343750, 47.040182 ], [ 29.531250, 47.040182 ], [ 29.531250, 46.073231 ], [ 28.125000, 46.073231 ], [ 28.125000, 48.922499 ], [ 25.312500, 48.922499 ], [ 25.312500, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 51.618017 ], [ 23.906250, 51.618017 ], [ 23.906250, 52.482780 ], [ 25.312500, 52.482780 ], [ 25.312500, 51.618017 ], [ 29.531250, 51.618017 ], [ 29.531250, 52.482780 ], [ 33.750000, 52.482780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 36.597889 ], [ 11.250000, 31.952162 ], [ 9.843750, 31.952162 ], [ 9.843750, 30.751278 ], [ 8.437500, 30.751278 ], [ 8.437500, 33.137551 ], [ 7.031250, 33.137551 ], [ 7.031250, 34.307144 ], [ 8.437500, 34.307144 ], [ 8.437500, 36.597889 ], [ 11.250000, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 44.087585 ], [ 42.187500, 43.068888 ], [ 45.000000, 43.068888 ], [ 45.000000, 42.032974 ], [ 40.781250, 42.032974 ], [ 40.781250, 43.068888 ], [ 39.375000, 43.068888 ], [ 39.375000, 44.087585 ], [ 42.187500, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 36.597889 ], [ 8.437500, 34.307144 ], [ 7.031250, 34.307144 ], [ 7.031250, 33.137551 ], [ 8.437500, 33.137551 ], [ 8.437500, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 24.527135 ], [ 11.250000, 24.527135 ], [ 11.250000, 21.943046 ], [ 8.437500, 21.943046 ], [ 8.437500, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 19.311143 ], [ 1.406250, 19.311143 ], [ 1.406250, 20.632784 ], [ 0.000000, 20.632784 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 23.241346 ], [ -4.218750, 23.241346 ], [ -4.218750, 24.527135 ], [ -7.031250, 24.527135 ], [ -7.031250, 25.799891 ], [ -8.437500, 25.799891 ], [ -8.437500, 28.304381 ], [ -7.031250, 28.304381 ], [ -7.031250, 29.535230 ], [ -4.218750, 29.535230 ], [ -4.218750, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 34.307144 ], [ -2.812500, 34.307144 ], [ -2.812500, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.597889 ], [ 8.437500, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 37.718590 ], [ 9.843750, 30.751278 ], [ 8.437500, 30.751278 ], [ 8.437500, 33.137551 ], [ 7.031250, 33.137551 ], [ 7.031250, 37.718590 ], [ 9.843750, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 33.137551 ], [ 22.500000, 31.952162 ], [ 25.312500, 31.952162 ], [ 25.312500, 20.632784 ], [ 23.906250, 20.632784 ], [ 23.906250, 19.311143 ], [ 22.500000, 19.311143 ], [ 22.500000, 20.632784 ], [ 19.687500, 20.632784 ], [ 19.687500, 21.943046 ], [ 16.875000, 21.943046 ], [ 16.875000, 23.241346 ], [ 15.468750, 23.241346 ], [ 15.468750, 21.943046 ], [ 14.062500, 21.943046 ], [ 14.062500, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 31.952162 ], [ 11.250000, 31.952162 ], [ 11.250000, 33.137551 ], [ 14.062500, 33.137551 ], [ 14.062500, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 30.751278 ], [ 19.687500, 30.751278 ], [ 19.687500, 31.952162 ], [ 21.093750, 31.952162 ], [ 21.093750, 33.137551 ], [ 22.500000, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 37.718590 ], [ 7.031250, 33.137551 ], [ 8.437500, 33.137551 ], [ 8.437500, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 28.304381 ], [ 8.437500, 28.304381 ], [ 8.437500, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 24.527135 ], [ 11.250000, 24.527135 ], [ 11.250000, 23.241346 ], [ 9.843750, 23.241346 ], [ 9.843750, 21.943046 ], [ 8.437500, 21.943046 ], [ 8.437500, 20.632784 ], [ 5.625000, 20.632784 ], [ 5.625000, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 20.632784 ], [ 0.000000, 20.632784 ], [ 0.000000, 21.943046 ], [ -2.812500, 21.943046 ], [ -2.812500, 23.241346 ], [ -4.218750, 23.241346 ], [ -4.218750, 24.527135 ], [ -5.625000, 24.527135 ], [ -5.625000, 25.799891 ], [ -7.031250, 25.799891 ], [ -7.031250, 27.059126 ], [ -9.843750, 27.059126 ], [ -9.843750, 29.535230 ], [ -8.437500, 29.535230 ], [ -8.437500, 30.751278 ], [ -4.218750, 30.751278 ], [ -4.218750, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 37.718590 ], [ 7.031250, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 23.241346 ], [ 14.062500, 21.943046 ], [ 15.468750, 21.943046 ], [ 15.468750, 15.284185 ], [ 14.062500, 15.284185 ], [ 14.062500, 12.554564 ], [ 11.250000, 12.554564 ], [ 11.250000, 13.923404 ], [ 9.843750, 13.923404 ], [ 9.843750, 12.554564 ], [ 7.031250, 12.554564 ], [ 7.031250, 13.923404 ], [ 4.218750, 13.923404 ], [ 4.218750, 11.178402 ], [ 2.812500, 11.178402 ], [ 2.812500, 12.554564 ], [ 1.406250, 12.554564 ], [ 1.406250, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 15.284185 ], [ 4.218750, 15.284185 ], [ 4.218750, 19.311143 ], [ 7.031250, 19.311143 ], [ 7.031250, 20.632784 ], [ 8.437500, 20.632784 ], [ 8.437500, 21.943046 ], [ 11.250000, 21.943046 ], [ 11.250000, 23.241346 ], [ 14.062500, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 33.137551 ], [ 23.906250, 20.632784 ], [ 19.687500, 20.632784 ], [ 19.687500, 21.943046 ], [ 18.281250, 21.943046 ], [ 18.281250, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.799891 ], [ 8.437500, 25.799891 ], [ 8.437500, 28.304381 ], [ 9.843750, 28.304381 ], [ 9.843750, 29.535230 ], [ 8.437500, 29.535230 ], [ 8.437500, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 33.137551 ], [ 14.062500, 33.137551 ], [ 14.062500, 31.952162 ], [ 16.875000, 31.952162 ], [ 16.875000, 30.751278 ], [ 19.687500, 30.751278 ], [ 19.687500, 33.137551 ], [ 23.906250, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.406250, 7.013668 ], [ 1.406250, 5.615986 ], [ 0.000000, 5.615986 ], [ 0.000000, 7.013668 ], [ 1.406250, 7.013668 ] ] ], [ [ [ 1.406250, 8.407168 ], [ 0.000000, 8.407168 ], [ 0.000000, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 13.923404 ], [ 2.812500, 13.923404 ], [ 2.812500, 12.554564 ], [ 1.406250, 12.554564 ], [ 1.406250, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.311143 ], [ 5.625000, 19.311143 ], [ 5.625000, 20.632784 ], [ 8.437500, 20.632784 ], [ 8.437500, 21.943046 ], [ 9.843750, 21.943046 ], [ 9.843750, 23.241346 ], [ 14.062500, 23.241346 ], [ 14.062500, 21.943046 ], [ 15.468750, 21.943046 ], [ 15.468750, 19.311143 ], [ 14.062500, 19.311143 ], [ 14.062500, 16.636192 ], [ 12.656250, 16.636192 ], [ 12.656250, 13.923404 ] ] ], [ [ [ 12.656250, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 12.554564 ], [ 12.656250, 12.554564 ], [ 12.656250, 13.923404 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.218750, 11.178402 ], [ 4.218750, 9.795678 ], [ 2.812500, 9.795678 ], [ 2.812500, 5.615986 ], [ 1.406250, 5.615986 ], [ 1.406250, 11.178402 ], [ 4.218750, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.406250, 11.178402 ], [ 1.406250, 7.013668 ], [ 0.000000, 7.013668 ], [ 0.000000, 11.178402 ], [ 1.406250, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 13.923404 ], [ 11.250000, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 9.795678 ], [ 12.656250, 9.795678 ], [ 12.656250, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 5.615986 ], [ 8.437500, 5.615986 ], [ 8.437500, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 5.615986 ], [ 2.812500, 5.615986 ], [ 2.812500, 9.795678 ], [ 4.218750, 9.795678 ], [ 4.218750, 13.923404 ], [ 7.031250, 13.923404 ], [ 7.031250, 12.554564 ], [ 9.843750, 12.554564 ], [ 9.843750, 13.923404 ], [ 11.250000, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.554564 ], [ 2.812500, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 12.554564 ], [ 2.812500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.811371 ], [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.811371 ], [ 11.250000, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 13.923404 ], [ 12.656250, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 11.178402 ], [ 12.656250, 11.178402 ], [ 12.656250, 8.407168 ], [ 11.250000, 8.407168 ], [ 11.250000, 7.013668 ], [ 8.437500, 7.013668 ], [ 8.437500, 5.615986 ], [ 4.218750, 5.615986 ], [ 4.218750, 7.013668 ], [ 1.406250, 7.013668 ], [ 1.406250, 9.795678 ], [ 2.812500, 9.795678 ], [ 2.812500, 13.923404 ], [ 12.656250, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 23.241346 ], [ 16.875000, 21.943046 ], [ 19.687500, 21.943046 ], [ 19.687500, 20.632784 ], [ 22.500000, 20.632784 ], [ 22.500000, 19.311143 ], [ 23.906250, 19.311143 ], [ 23.906250, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 11.178402 ], [ 21.093750, 11.178402 ], [ 21.093750, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 7.013668 ], [ 15.468750, 7.013668 ], [ 15.468750, 8.407168 ], [ 14.062500, 8.407168 ], [ 14.062500, 9.795678 ], [ 15.468750, 9.795678 ], [ 15.468750, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 15.284185 ], [ 15.468750, 15.284185 ], [ 15.468750, 23.241346 ], [ 16.875000, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.811371 ], [ 11.250000, 1.406109 ], [ 8.437500, 1.406109 ], [ 8.437500, 2.811371 ], [ 11.250000, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.062500, 9.795678 ], [ 14.062500, 8.407168 ], [ 15.468750, 8.407168 ], [ 15.468750, 5.615986 ], [ 14.062500, 5.615986 ], [ 14.062500, 4.214943 ], [ 15.468750, 4.214943 ], [ 15.468750, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 2.811371 ], [ 9.843750, 2.811371 ], [ 9.843750, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 9.843750, 5.615986 ], [ 9.843750, 7.013668 ], [ 12.656250, 7.013668 ], [ 12.656250, 9.795678 ], [ 14.062500, 9.795678 ] ] ], [ [ [ 15.468750, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 12.554564 ], [ 15.468750, 12.554564 ], [ 15.468750, 9.795678 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 23.241346 ], [ 18.281250, 21.943046 ], [ 19.687500, 21.943046 ], [ 19.687500, 20.632784 ], [ 22.500000, 20.632784 ], [ 22.500000, 13.923404 ], [ 21.093750, 13.923404 ], [ 21.093750, 12.554564 ], [ 22.500000, 12.554564 ], [ 22.500000, 11.178402 ], [ 21.093750, 11.178402 ], [ 21.093750, 9.795678 ], [ 18.281250, 9.795678 ], [ 18.281250, 8.407168 ], [ 14.062500, 8.407168 ], [ 14.062500, 13.923404 ], [ 12.656250, 13.923404 ], [ 12.656250, 16.636192 ], [ 14.062500, 16.636192 ], [ 14.062500, 19.311143 ], [ 15.468750, 19.311143 ], [ 15.468750, 21.943046 ], [ 14.062500, 21.943046 ], [ 14.062500, 23.241346 ], [ 18.281250, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 11.178402 ], [ 22.500000, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 8.407168 ], [ 25.312500, 8.407168 ], [ 25.312500, 7.013668 ], [ 26.718750, 7.013668 ], [ 26.718750, 5.615986 ], [ 25.312500, 5.615986 ], [ 25.312500, 4.214943 ], [ 16.875000, 4.214943 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 4.214943 ], [ 14.062500, 4.214943 ], [ 14.062500, 5.615986 ], [ 15.468750, 5.615986 ], [ 15.468750, 7.013668 ], [ 18.281250, 7.013668 ], [ 18.281250, 8.407168 ], [ 21.093750, 8.407168 ], [ 21.093750, 11.178402 ], [ 22.500000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 11.178402 ], [ 14.062500, 4.214943 ], [ 15.468750, 4.214943 ], [ 15.468750, 2.811371 ], [ 8.437500, 2.811371 ], [ 8.437500, 7.013668 ], [ 11.250000, 7.013668 ], [ 11.250000, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 11.178402 ], [ 14.062500, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 40.979898 ], [ 23.906250, 39.909736 ], [ 22.500000, 39.909736 ], [ 22.500000, 38.822591 ], [ 23.906250, 38.822591 ], [ 23.906250, 37.718590 ], [ 22.500000, 37.718590 ], [ 22.500000, 36.597889 ], [ 21.093750, 36.597889 ], [ 21.093750, 38.822591 ], [ 19.687500, 38.822591 ], [ 19.687500, 39.909736 ], [ 21.093750, 39.909736 ], [ 21.093750, 40.979898 ], [ 23.906250, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 11.178402 ], [ 22.500000, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 5.615986 ], [ 22.500000, 5.615986 ], [ 22.500000, 4.214943 ], [ 21.093750, 4.214943 ], [ 21.093750, 5.615986 ], [ 18.281250, 5.615986 ], [ 18.281250, 4.214943 ], [ 14.062500, 4.214943 ], [ 14.062500, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 9.795678 ], [ 21.093750, 9.795678 ], [ 21.093750, 11.178402 ], [ 22.500000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 35.460670 ], [ 33.750000, 34.307144 ], [ 32.343750, 34.307144 ], [ 32.343750, 35.460670 ], [ 33.750000, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 42.032974 ], [ 25.312500, 40.979898 ], [ 22.500000, 40.979898 ], [ 22.500000, 38.822591 ], [ 23.906250, 38.822591 ], [ 23.906250, 37.718590 ], [ 22.500000, 37.718590 ], [ 22.500000, 36.597889 ], [ 21.093750, 36.597889 ], [ 21.093750, 38.822591 ], [ 19.687500, 38.822591 ], [ 19.687500, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 42.032974 ], [ 25.312500, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 31.952162 ], [ 32.343750, 30.751278 ], [ 33.750000, 30.751278 ], [ 33.750000, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 28.304381 ], [ 33.750000, 28.304381 ], [ 33.750000, 25.799891 ], [ 35.156250, 25.799891 ], [ 35.156250, 21.943046 ], [ 25.312500, 21.943046 ], [ 25.312500, 31.952162 ], [ 26.718750, 31.952162 ], [ 26.718750, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.952162 ], [ 32.343750, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 28.304381 ], [ 32.343750, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 23.241346 ], [ 23.906250, 23.241346 ], [ 23.906250, 31.952162 ], [ 33.750000, 31.952162 ], [ 33.750000, 28.304381 ], [ 32.343750, 28.304381 ] ], [ [ 32.343750, 29.535230 ], [ 32.343750, 30.751278 ], [ 30.937500, 30.751278 ], [ 30.937500, 29.535230 ], [ 32.343750, 29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 40.979898 ], [ 32.343750, 40.979898 ], [ 32.343750, 42.032974 ], [ 35.156250, 42.032974 ], [ 35.156250, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 36.597889 ], [ 43.593750, 36.597889 ], [ 43.593750, 37.718590 ], [ 42.187500, 37.718590 ], [ 42.187500, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 35.460670 ], [ 35.156250, 35.460670 ], [ 35.156250, 36.597889 ], [ 26.718750, 36.597889 ], [ 26.718750, 39.909736 ], [ 28.125000, 39.909736 ], [ 28.125000, 40.979898 ] ] ], [ [ [ 28.125000, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 42.032974 ], [ 28.125000, 42.032974 ], [ 28.125000, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.718750, 40.979898 ], [ 28.125000, 40.979898 ], [ 28.125000, 42.032974 ], [ 36.562500, 42.032974 ], [ 36.562500, 40.979898 ], [ 39.375000, 40.979898 ], [ 39.375000, 42.032974 ], [ 42.187500, 42.032974 ], [ 42.187500, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 37.718590 ], [ 36.562500, 37.718590 ], [ 36.562500, 36.597889 ], [ 30.937500, 36.597889 ], [ 30.937500, 37.718590 ], [ 29.531250, 37.718590 ], [ 29.531250, 36.597889 ], [ 28.125000, 36.597889 ], [ 28.125000, 37.718590 ], [ 25.312500, 37.718590 ], [ 25.312500, 38.822591 ], [ 26.718750, 38.822591 ], [ 26.718750, 40.979898 ] ] ], [ [ [ 26.718750, 40.979898 ], [ 25.312500, 40.979898 ], [ 25.312500, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 34.307144 ], [ 36.562500, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 34.307144 ], [ 36.562500, 34.307144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 37.718590 ], [ 40.781250, 34.307144 ], [ 37.968750, 34.307144 ], [ 37.968750, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 37.718590 ], [ 40.781250, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 36.597889 ], [ 40.781250, 33.137551 ], [ 39.375000, 33.137551 ], [ 39.375000, 31.952162 ], [ 35.156250, 31.952162 ], [ 35.156250, 33.137551 ], [ 36.562500, 33.137551 ], [ 36.562500, 36.597889 ], [ 40.781250, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 37.718590 ], [ 43.593750, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 33.137551 ], [ 46.406250, 33.137551 ], [ 46.406250, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 30.751278 ], [ 46.406250, 30.751278 ], [ 46.406250, 29.535230 ], [ 42.187500, 29.535230 ], [ 42.187500, 30.751278 ], [ 40.781250, 30.751278 ], [ 40.781250, 31.952162 ], [ 37.968750, 31.952162 ], [ 37.968750, 34.307144 ], [ 40.781250, 34.307144 ], [ 40.781250, 37.718590 ], [ 43.593750, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 37.718590 ], [ 43.593750, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 35.460670 ], [ 46.406250, 35.460670 ], [ 46.406250, 34.307144 ], [ 45.000000, 34.307144 ], [ 45.000000, 33.137551 ], [ 46.406250, 33.137551 ], [ 46.406250, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 29.535230 ], [ 42.187500, 29.535230 ], [ 42.187500, 30.751278 ], [ 40.781250, 30.751278 ], [ 40.781250, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 33.137551 ], [ 40.781250, 33.137551 ], [ 40.781250, 36.597889 ], [ 42.187500, 36.597889 ], [ 42.187500, 37.718590 ], [ 43.593750, 37.718590 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 33.137551 ], [ 35.156250, 30.751278 ], [ 33.750000, 30.751278 ], [ 33.750000, 33.137551 ], [ 35.156250, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 30.751278 ], [ 35.156250, 29.535230 ], [ 33.750000, 29.535230 ], [ 33.750000, 30.751278 ], [ 35.156250, 30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.968750, 33.137551 ], [ 37.968750, 31.952162 ], [ 36.562500, 31.952162 ], [ 36.562500, 29.535230 ], [ 33.750000, 29.535230 ], [ 33.750000, 30.751278 ], [ 35.156250, 30.751278 ], [ 35.156250, 33.137551 ], [ 37.968750, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 31.952162 ], [ 36.562500, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 31.952162 ], [ 36.562500, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 23.241346 ], [ 36.562500, 19.311143 ], [ 37.968750, 19.311143 ], [ 37.968750, 17.978733 ], [ 36.562500, 17.978733 ], [ 36.562500, 15.284185 ], [ 35.156250, 15.284185 ], [ 35.156250, 12.554564 ], [ 33.750000, 12.554564 ], [ 33.750000, 11.178402 ], [ 32.343750, 11.178402 ], [ 32.343750, 12.554564 ], [ 30.937500, 12.554564 ], [ 30.937500, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 11.178402 ], [ 23.906250, 11.178402 ], [ 23.906250, 9.795678 ], [ 22.500000, 9.795678 ], [ 22.500000, 12.554564 ], [ 21.093750, 12.554564 ], [ 21.093750, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 20.632784 ], [ 23.906250, 20.632784 ], [ 23.906250, 23.241346 ], [ 36.562500, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 21.943046 ], [ 36.562500, 17.978733 ], [ 37.968750, 17.978733 ], [ 37.968750, 16.636192 ], [ 36.562500, 16.636192 ], [ 36.562500, 12.554564 ], [ 35.156250, 12.554564 ], [ 35.156250, 11.178402 ], [ 33.750000, 11.178402 ], [ 33.750000, 12.554564 ], [ 32.343750, 12.554564 ], [ 32.343750, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 9.795678 ], [ 22.500000, 9.795678 ], [ 22.500000, 15.284185 ], [ 23.906250, 15.284185 ], [ 23.906250, 20.632784 ], [ 25.312500, 20.632784 ], [ 25.312500, 21.943046 ], [ 36.562500, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 12.554564 ], [ 32.343750, 11.178402 ], [ 33.750000, 11.178402 ], [ 33.750000, 4.214943 ], [ 29.531250, 4.214943 ], [ 29.531250, 5.615986 ], [ 25.312500, 5.615986 ], [ 25.312500, 7.013668 ], [ 23.906250, 7.013668 ], [ 23.906250, 8.407168 ], [ 22.500000, 8.407168 ], [ 22.500000, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 11.178402 ], [ 25.312500, 11.178402 ], [ 25.312500, 9.795678 ], [ 30.937500, 9.795678 ], [ 30.937500, 12.554564 ], [ 32.343750, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 12.554564 ], [ 33.750000, 7.013668 ], [ 35.156250, 7.013668 ], [ 35.156250, 4.214943 ], [ 30.937500, 4.214943 ], [ 30.937500, 2.811371 ], [ 29.531250, 2.811371 ], [ 29.531250, 4.214943 ], [ 26.718750, 4.214943 ], [ 26.718750, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 9.795678 ], [ 32.343750, 9.795678 ], [ 32.343750, 12.554564 ], [ 33.750000, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 4.214943 ], [ 33.750000, 0.000000 ], [ 29.531250, 0.000000 ], [ 29.531250, 4.214943 ], [ 33.750000, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 4.214943 ], [ 35.156250, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 4.214943 ], [ 35.156250, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.781250, 13.923404 ], [ 42.187500, 13.923404 ], [ 42.187500, 12.554564 ], [ 40.781250, 12.554564 ], [ 40.781250, 13.923404 ] ] ], [ [ [ 37.968750, 16.636192 ], [ 39.375000, 16.636192 ], [ 39.375000, 15.284185 ], [ 36.562500, 15.284185 ], [ 36.562500, 17.978733 ], [ 37.968750, 17.978733 ], [ 37.968750, 16.636192 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 16.636192 ], [ 39.375000, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 16.636192 ], [ 39.375000, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 12.554564 ], [ 42.187500, 11.178402 ], [ 40.781250, 11.178402 ], [ 40.781250, 12.554564 ], [ 42.187500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 12.554564 ], [ 43.593750, 11.178402 ], [ 42.187500, 11.178402 ], [ 42.187500, 12.554564 ], [ 43.593750, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 5.615986 ], [ 36.562500, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, -1.406109 ], [ 39.375000, -1.406109 ], [ 39.375000, -4.214943 ], [ 36.562500, -4.214943 ], [ 36.562500, -2.811371 ], [ 35.156250, -2.811371 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 5.615986 ], [ 36.562500, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 4.214943 ], [ 42.187500, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -2.811371 ], [ 35.156250, -2.811371 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 35.156250, 0.000000 ], [ 35.156250, 4.214943 ], [ 37.968750, 4.214943 ], [ 37.968750, 2.811371 ], [ 39.375000, 2.811371 ], [ 39.375000, 4.214943 ], [ 42.187500, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 15.284185 ], [ 40.781250, 11.178402 ], [ 42.187500, 11.178402 ], [ 42.187500, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 8.407168 ], [ 46.406250, 8.407168 ], [ 46.406250, 7.013668 ], [ 45.000000, 7.013668 ], [ 45.000000, 5.615986 ], [ 40.781250, 5.615986 ], [ 40.781250, 4.214943 ], [ 36.562500, 4.214943 ], [ 36.562500, 5.615986 ], [ 33.750000, 5.615986 ], [ 33.750000, 12.554564 ], [ 35.156250, 12.554564 ], [ 35.156250, 15.284185 ], [ 40.781250, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 13.923404 ], [ 42.187500, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 5.615986 ], [ 43.593750, 5.615986 ], [ 43.593750, 4.214943 ], [ 39.375000, 4.214943 ], [ 39.375000, 2.811371 ], [ 37.968750, 2.811371 ], [ 37.968750, 4.214943 ], [ 35.156250, 4.214943 ], [ 35.156250, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 11.178402 ], [ 35.156250, 11.178402 ], [ 35.156250, 12.554564 ], [ 36.562500, 12.554564 ], [ 36.562500, 13.923404 ], [ 42.187500, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 55.776573 ], [ 70.312500, 54.162434 ], [ 77.343750, 54.162434 ], [ 77.343750, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 51.618017 ], [ 82.968750, 51.618017 ], [ 82.968750, 50.736455 ], [ 84.375000, 50.736455 ], [ 84.375000, 49.837982 ], [ 87.187500, 49.837982 ], [ 87.187500, 48.922499 ], [ 84.375000, 48.922499 ], [ 84.375000, 47.040182 ], [ 81.562500, 47.040182 ], [ 81.562500, 45.089036 ], [ 78.750000, 45.089036 ], [ 78.750000, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 43.068888 ], [ 70.312500, 43.068888 ], [ 70.312500, 42.032974 ], [ 68.906250, 42.032974 ], [ 68.906250, 40.979898 ], [ 67.500000, 40.979898 ], [ 67.500000, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 44.087585 ], [ 60.468750, 44.087585 ], [ 60.468750, 45.089036 ], [ 54.843750, 45.089036 ], [ 54.843750, 42.032974 ], [ 53.437500, 42.032974 ], [ 53.437500, 43.068888 ], [ 50.625000, 43.068888 ], [ 50.625000, 44.087585 ], [ 49.218750, 44.087585 ], [ 49.218750, 45.089036 ], [ 50.625000, 45.089036 ], [ 50.625000, 46.073231 ], [ 52.031250, 46.073231 ], [ 52.031250, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 52.482780 ], [ 52.031250, 52.482780 ], [ 52.031250, 51.618017 ], [ 53.437500, 51.618017 ], [ 53.437500, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 51.618017 ], [ 57.656250, 51.618017 ], [ 57.656250, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 54.162434 ], [ 63.281250, 54.162434 ], [ 63.281250, 54.977614 ], [ 68.906250, 54.977614 ], [ 68.906250, 55.776573 ], [ 70.312500, 55.776573 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 54.977614 ], [ 70.312500, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 53.330873 ], [ 75.937500, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 50.736455 ], [ 84.375000, 50.736455 ], [ 84.375000, 49.837982 ], [ 87.187500, 49.837982 ], [ 87.187500, 47.989922 ], [ 85.781250, 47.989922 ], [ 85.781250, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 45.089036 ], [ 80.156250, 45.089036 ], [ 80.156250, 44.087585 ], [ 81.562500, 44.087585 ], [ 81.562500, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.032974 ], [ 78.750000, 42.032974 ], [ 78.750000, 43.068888 ], [ 73.125000, 43.068888 ], [ 73.125000, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 40.979898 ], [ 66.093750, 40.979898 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 44.087585 ], [ 63.281250, 44.087585 ], [ 63.281250, 43.068888 ], [ 60.468750, 43.068888 ], [ 60.468750, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 40.979898 ], [ 54.843750, 40.979898 ], [ 54.843750, 42.032974 ], [ 52.031250, 42.032974 ], [ 52.031250, 43.068888 ], [ 50.625000, 43.068888 ], [ 50.625000, 45.089036 ], [ 53.437500, 45.089036 ], [ 53.437500, 47.040182 ], [ 50.625000, 47.040182 ], [ 50.625000, 46.073231 ], [ 49.218750, 46.073231 ], [ 49.218750, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 49.837982 ], [ 49.218750, 49.837982 ], [ 49.218750, 50.736455 ], [ 50.625000, 50.736455 ], [ 50.625000, 51.618017 ], [ 52.031250, 51.618017 ], [ 52.031250, 50.736455 ], [ 61.875000, 50.736455 ], [ 61.875000, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 52.482780 ], [ 61.875000, 52.482780 ], [ 61.875000, 54.162434 ], [ 66.093750, 54.162434 ], [ 66.093750, 54.977614 ], [ 70.312500, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.468750, 45.089036 ], [ 60.468750, 44.087585 ], [ 64.687500, 44.087585 ], [ 64.687500, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.032974 ], [ 67.500000, 42.032974 ], [ 67.500000, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 39.909736 ], [ 67.500000, 39.909736 ], [ 67.500000, 37.718590 ], [ 66.093750, 37.718590 ], [ 66.093750, 38.822591 ], [ 63.281250, 38.822591 ], [ 63.281250, 39.909736 ], [ 61.875000, 39.909736 ], [ 61.875000, 42.032974 ], [ 59.062500, 42.032974 ], [ 59.062500, 43.068888 ], [ 57.656250, 43.068888 ], [ 57.656250, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 45.089036 ], [ 60.468750, 45.089036 ] ] ], [ [ [ 71.718750, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 42.032974 ], [ 71.718750, 42.032974 ], [ 71.718750, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.312500, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 39.909736 ], [ 70.312500, 39.909736 ], [ 70.312500, 40.979898 ] ] ], [ [ [ 68.906250, 40.979898 ], [ 68.906250, 39.909736 ], [ 67.500000, 39.909736 ], [ 67.500000, 37.718590 ], [ 64.687500, 37.718590 ], [ 64.687500, 38.822591 ], [ 61.875000, 38.822591 ], [ 61.875000, 40.979898 ], [ 60.468750, 40.979898 ], [ 60.468750, 42.032974 ], [ 56.250000, 42.032974 ], [ 56.250000, 45.089036 ], [ 60.468750, 45.089036 ], [ 60.468750, 43.068888 ], [ 63.281250, 43.068888 ], [ 63.281250, 44.087585 ], [ 64.687500, 44.087585 ], [ 64.687500, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 40.979898 ], [ 68.906250, 40.979898 ] ] ], [ [ [ 67.500000, 37.718590 ], [ 68.906250, 37.718590 ], [ 68.906250, 36.597889 ], [ 67.500000, 36.597889 ], [ 67.500000, 37.718590 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 43.068888 ], [ 78.750000, 42.032974 ], [ 75.937500, 42.032974 ], [ 75.937500, 40.979898 ], [ 74.531250, 40.979898 ], [ 74.531250, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.979898 ], [ 71.718750, 40.979898 ], [ 71.718750, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 43.068888 ], [ 78.750000, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.125000, 39.909736 ], [ 73.125000, 38.822591 ], [ 70.312500, 38.822591 ], [ 70.312500, 39.909736 ], [ 73.125000, 39.909736 ] ] ], [ [ [ 78.750000, 40.979898 ], [ 77.343750, 40.979898 ], [ 77.343750, 39.909736 ], [ 73.125000, 39.909736 ], [ 73.125000, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 42.032974 ], [ 73.125000, 42.032974 ], [ 73.125000, 43.068888 ], [ 78.750000, 43.068888 ], [ 78.750000, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 42.187500, 40.979898 ], [ 42.187500, 42.032974 ], [ 45.000000, 42.032974 ], [ 45.000000, 39.909736 ] ] ], [ [ [ 45.000000, 39.909736 ], [ 46.406250, 39.909736 ], [ 46.406250, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 39.909736 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 40.979898 ], [ 45.000000, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 45.000000, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 42.032974 ], [ 47.812500, 40.979898 ], [ 49.218750, 40.979898 ], [ 49.218750, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 42.032974 ], [ 47.812500, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 39.909736 ], [ 45.000000, 40.979898 ], [ 50.625000, 40.979898 ], [ 50.625000, 39.909736 ], [ 49.218750, 39.909736 ], [ 49.218750, 37.718590 ], [ 47.812500, 37.718590 ], [ 47.812500, 38.822591 ], [ 46.406250, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 39.909736 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 39.909736 ], [ 47.812500, 37.718590 ], [ 54.843750, 37.718590 ], [ 54.843750, 38.822591 ], [ 56.250000, 38.822591 ], [ 56.250000, 37.718590 ], [ 59.062500, 37.718590 ], [ 59.062500, 36.597889 ], [ 60.468750, 36.597889 ], [ 60.468750, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 27.059126 ], [ 52.031250, 27.059126 ], [ 52.031250, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 49.218750, 29.535230 ], [ 49.218750, 30.751278 ], [ 47.812500, 30.751278 ], [ 47.812500, 31.952162 ], [ 46.406250, 31.952162 ], [ 46.406250, 33.137551 ], [ 45.000000, 33.137551 ], [ 45.000000, 36.597889 ], [ 43.593750, 36.597889 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.909736 ], [ 47.812500, 39.909736 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 37.718590 ], [ 50.625000, 37.718590 ], [ 50.625000, 36.597889 ], [ 53.437500, 36.597889 ], [ 53.437500, 37.718590 ], [ 59.062500, 37.718590 ], [ 59.062500, 36.597889 ], [ 60.468750, 36.597889 ], [ 60.468750, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 34.307144 ], [ 60.468750, 34.307144 ], [ 60.468750, 31.952162 ], [ 61.875000, 31.952162 ], [ 61.875000, 28.304381 ], [ 63.281250, 28.304381 ], [ 63.281250, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 24.527135 ], [ 59.062500, 24.527135 ], [ 59.062500, 25.799891 ], [ 57.656250, 25.799891 ], [ 57.656250, 27.059126 ], [ 52.031250, 27.059126 ], [ 52.031250, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 31.952162 ], [ 46.406250, 31.952162 ], [ 46.406250, 33.137551 ], [ 45.000000, 33.137551 ], [ 45.000000, 34.307144 ], [ 46.406250, 34.307144 ], [ 46.406250, 35.460670 ], [ 45.000000, 35.460670 ], [ 45.000000, 38.822591 ] ] ], [ [ [ 45.000000, 38.822591 ], [ 43.593750, 38.822591 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 30.751278 ], [ 47.812500, 29.535230 ], [ 46.406250, 29.535230 ], [ 46.406250, 30.751278 ], [ 47.812500, 30.751278 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 31.952162 ], [ 40.781250, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 28.304381 ], [ 49.218750, 28.304381 ], [ 49.218750, 27.059126 ], [ 50.625000, 27.059126 ], [ 50.625000, 24.527135 ], [ 52.031250, 24.527135 ], [ 52.031250, 21.943046 ], [ 56.250000, 21.943046 ], [ 56.250000, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 19.311143 ], [ 52.031250, 19.311143 ], [ 52.031250, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 16.636192 ], [ 45.000000, 16.636192 ], [ 45.000000, 17.978733 ], [ 43.593750, 17.978733 ], [ 43.593750, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.978733 ], [ 40.781250, 17.978733 ], [ 40.781250, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 21.943046 ], [ 37.968750, 21.943046 ], [ 37.968750, 24.527135 ], [ 36.562500, 24.527135 ], [ 36.562500, 27.059126 ], [ 35.156250, 27.059126 ], [ 35.156250, 29.535230 ], [ 37.968750, 29.535230 ], [ 37.968750, 30.751278 ], [ 36.562500, 30.751278 ], [ 36.562500, 31.952162 ], [ 40.781250, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 31.952162 ], [ 40.781250, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 28.304381 ], [ 49.218750, 28.304381 ], [ 49.218750, 25.799891 ], [ 50.625000, 25.799891 ], [ 50.625000, 23.241346 ], [ 54.843750, 23.241346 ], [ 54.843750, 20.632784 ], [ 53.437500, 20.632784 ], [ 53.437500, 19.311143 ], [ 47.812500, 19.311143 ], [ 47.812500, 17.978733 ], [ 40.781250, 17.978733 ], [ 40.781250, 20.632784 ], [ 37.968750, 20.632784 ], [ 37.968750, 24.527135 ], [ 36.562500, 24.527135 ], [ 36.562500, 27.059126 ], [ 35.156250, 27.059126 ], [ 35.156250, 28.304381 ], [ 33.750000, 28.304381 ], [ 33.750000, 29.535230 ], [ 36.562500, 29.535230 ], [ 36.562500, 31.952162 ], [ 40.781250, 31.952162 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 25.799891 ], [ 52.031250, 24.527135 ], [ 50.625000, 24.527135 ], [ 50.625000, 25.799891 ], [ 52.031250, 25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.843750, 25.799891 ], [ 54.843750, 23.241346 ], [ 50.625000, 23.241346 ], [ 50.625000, 24.527135 ], [ 53.437500, 24.527135 ], [ 53.437500, 25.799891 ], [ 54.843750, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, 24.527135 ], [ 54.843750, 21.943046 ], [ 52.031250, 21.943046 ], [ 52.031250, 24.527135 ], [ 54.843750, 24.527135 ] ] ], [ [ [ 56.250000, 24.527135 ], [ 54.843750, 24.527135 ], [ 54.843750, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 24.527135 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 53.437500, 42.032974 ], [ 57.656250, 42.032974 ], [ 57.656250, 43.068888 ], [ 59.062500, 43.068888 ], [ 59.062500, 42.032974 ], [ 61.875000, 42.032974 ], [ 61.875000, 39.909736 ], [ 63.281250, 39.909736 ], [ 63.281250, 38.822591 ], [ 66.093750, 38.822591 ], [ 66.093750, 37.718590 ], [ 64.687500, 37.718590 ], [ 64.687500, 36.597889 ], [ 61.875000, 36.597889 ], [ 61.875000, 35.460670 ], [ 60.468750, 35.460670 ], [ 60.468750, 36.597889 ], [ 59.062500, 36.597889 ], [ 59.062500, 37.718590 ], [ 56.250000, 37.718590 ], [ 56.250000, 38.822591 ], [ 54.843750, 38.822591 ], [ 54.843750, 37.718590 ], [ 53.437500, 37.718590 ], [ 53.437500, 39.909736 ], [ 52.031250, 39.909736 ], [ 52.031250, 40.979898 ], [ 53.437500, 40.979898 ], [ 53.437500, 42.032974 ] ] ], [ [ [ 53.437500, 42.032974 ], [ 52.031250, 42.032974 ], [ 52.031250, 43.068888 ], [ 53.437500, 43.068888 ], [ 53.437500, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.468750, 42.032974 ], [ 60.468750, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 38.822591 ], [ 64.687500, 38.822591 ], [ 64.687500, 37.718590 ], [ 66.093750, 37.718590 ], [ 66.093750, 36.597889 ], [ 64.687500, 36.597889 ], [ 64.687500, 35.460670 ], [ 60.468750, 35.460670 ], [ 60.468750, 36.597889 ], [ 59.062500, 36.597889 ], [ 59.062500, 37.718590 ], [ 53.437500, 37.718590 ], [ 53.437500, 40.979898 ], [ 52.031250, 40.979898 ], [ 52.031250, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 40.979898 ], [ 56.250000, 40.979898 ], [ 56.250000, 42.032974 ], [ 60.468750, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 19.311143 ], [ 50.625000, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 15.284185 ], [ 47.812500, 15.284185 ], [ 47.812500, 13.923404 ], [ 42.187500, 13.923404 ], [ 42.187500, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 19.311143 ], [ 50.625000, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.437500, 17.978733 ], [ 53.437500, 16.636192 ], [ 52.031250, 16.636192 ], [ 52.031250, 15.284185 ], [ 49.218750, 15.284185 ], [ 49.218750, 13.923404 ], [ 45.000000, 13.923404 ], [ 45.000000, 12.554564 ], [ 43.593750, 12.554564 ], [ 43.593750, 15.284185 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 43.593750, 16.636192 ], [ 43.593750, 17.978733 ], [ 45.000000, 17.978733 ], [ 45.000000, 16.636192 ], [ 47.812500, 16.636192 ], [ 47.812500, 17.978733 ], [ 53.437500, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 27.059126 ], [ 56.250000, 25.799891 ], [ 56.250000, 24.527135 ], [ 57.656250, 24.527135 ], [ 57.656250, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 21.943046 ], [ 57.656250, 21.943046 ], [ 57.656250, 19.311143 ], [ 56.250000, 19.311143 ], [ 56.250000, 17.978733 ], [ 50.625000, 17.978733 ], [ 50.625000, 19.311143 ], [ 53.437500, 19.311143 ], [ 53.437500, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 25.799891 ], [ 54.843750, 27.059126 ], [ 56.250000, 27.059126 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 24.527135 ], [ 56.250000, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 20.632784 ], [ 57.656250, 20.632784 ], [ 57.656250, 17.978733 ], [ 54.843750, 17.978733 ], [ 54.843750, 16.636192 ], [ 53.437500, 16.636192 ], [ 53.437500, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 19.311143 ], [ 54.843750, 19.311143 ], [ 54.843750, 20.632784 ], [ 56.250000, 20.632784 ], [ 56.250000, 21.943046 ], [ 54.843750, 21.943046 ], [ 54.843750, 24.527135 ], [ 56.250000, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 11.178402 ], [ 47.812500, 8.407168 ], [ 43.593750, 8.407168 ], [ 43.593750, 9.795678 ], [ 42.187500, 9.795678 ], [ 42.187500, 11.178402 ], [ 47.812500, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.593750, 9.795678 ], [ 45.000000, 9.795678 ], [ 45.000000, 11.178402 ], [ 49.218750, 11.178402 ], [ 49.218750, 8.407168 ], [ 43.593750, 8.407168 ], [ 43.593750, 9.795678 ] ] ], [ [ [ 43.593750, 9.795678 ], [ 42.187500, 9.795678 ], [ 42.187500, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 9.795678 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 12.554564 ], [ 50.625000, 9.795678 ], [ 49.218750, 9.795678 ], [ 49.218750, 5.615986 ], [ 46.406250, 5.615986 ], [ 46.406250, 2.811371 ], [ 45.000000, 2.811371 ], [ 45.000000, 1.406109 ], [ 42.187500, 1.406109 ], [ 42.187500, 0.000000 ], [ 40.781250, 0.000000 ], [ 40.781250, 5.615986 ], [ 45.000000, 5.615986 ], [ 45.000000, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 12.554564 ], [ 50.625000, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 11.178402 ], [ 50.625000, 7.013668 ], [ 49.218750, 7.013668 ], [ 49.218750, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 1.406109 ], [ 43.593750, 1.406109 ], [ 43.593750, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 42.187500, 2.811371 ], [ 42.187500, 4.214943 ], [ 43.593750, 4.214943 ], [ 43.593750, 5.615986 ], [ 46.406250, 5.615986 ], [ 46.406250, 7.013668 ], [ 47.812500, 7.013668 ], [ 47.812500, 8.407168 ], [ 49.218750, 8.407168 ], [ 49.218750, 11.178402 ], [ 50.625000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125000, 39.909736 ], [ 73.125000, 38.822591 ], [ 74.531250, 38.822591 ], [ 74.531250, 37.718590 ], [ 70.312500, 37.718590 ], [ 70.312500, 38.822591 ], [ 68.906250, 38.822591 ], [ 68.906250, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 39.909736 ], [ 73.125000, 39.909736 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 40.979898 ], [ 70.312500, 38.822591 ], [ 74.531250, 38.822591 ], [ 74.531250, 37.718590 ], [ 73.125000, 37.718590 ], [ 73.125000, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.979898 ], [ 70.312500, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 38.822591 ], [ 70.312500, 37.718590 ], [ 71.718750, 37.718590 ], [ 71.718750, 36.597889 ], [ 70.312500, 36.597889 ], [ 70.312500, 33.137551 ], [ 68.906250, 33.137551 ], [ 68.906250, 31.952162 ], [ 66.093750, 31.952162 ], [ 66.093750, 29.535230 ], [ 60.468750, 29.535230 ], [ 60.468750, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 36.597889 ], [ 64.687500, 36.597889 ], [ 64.687500, 37.718590 ], [ 68.906250, 37.718590 ], [ 68.906250, 38.822591 ], [ 70.312500, 38.822591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.718750, 37.718590 ], [ 71.718750, 36.597889 ], [ 71.718750, 34.307144 ], [ 70.312500, 34.307144 ], [ 70.312500, 31.952162 ], [ 67.500000, 31.952162 ], [ 67.500000, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.535230 ], [ 61.875000, 29.535230 ], [ 61.875000, 31.952162 ], [ 60.468750, 31.952162 ], [ 60.468750, 34.307144 ], [ 61.875000, 34.307144 ], [ 61.875000, 35.460670 ], [ 64.687500, 35.460670 ], [ 64.687500, 36.597889 ], [ 66.093750, 36.597889 ], [ 66.093750, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 36.597889 ], [ 68.906250, 36.597889 ], [ 68.906250, 37.718590 ], [ 71.718750, 37.718590 ] ] ], [ [ [ 74.531250, 36.597889 ], [ 73.125000, 36.597889 ], [ 73.125000, 37.718590 ], [ 74.531250, 37.718590 ], [ 74.531250, 36.597889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.531250, 37.718590 ], [ 74.531250, 36.597889 ], [ 77.343750, 36.597889 ], [ 77.343750, 35.460670 ], [ 73.125000, 35.460670 ], [ 73.125000, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 31.952162 ], [ 73.125000, 31.952162 ], [ 73.125000, 29.535230 ], [ 71.718750, 29.535230 ], [ 71.718750, 28.304381 ], [ 70.312500, 28.304381 ], [ 70.312500, 27.059126 ], [ 68.906250, 27.059126 ], [ 68.906250, 25.799891 ], [ 70.312500, 25.799891 ], [ 70.312500, 24.527135 ], [ 66.093750, 24.527135 ], [ 66.093750, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 28.304381 ], [ 60.468750, 28.304381 ], [ 60.468750, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 31.952162 ], [ 68.906250, 31.952162 ], [ 68.906250, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 74.531250, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 75.937500, 36.597889 ], [ 75.937500, 35.460670 ], [ 77.343750, 35.460670 ], [ 77.343750, 34.307144 ], [ 73.125000, 34.307144 ], [ 73.125000, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 28.304381 ], [ 70.312500, 28.304381 ], [ 70.312500, 24.527135 ], [ 68.906250, 24.527135 ], [ 68.906250, 23.241346 ], [ 67.500000, 23.241346 ], [ 67.500000, 24.527135 ], [ 66.093750, 24.527135 ], [ 66.093750, 25.799891 ], [ 63.281250, 25.799891 ], [ 63.281250, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 30.751278 ], [ 67.500000, 30.751278 ], [ 67.500000, 31.952162 ], [ 70.312500, 31.952162 ], [ 70.312500, 34.307144 ], [ 71.718750, 34.307144 ], [ 71.718750, 36.597889 ], [ 75.937500, 36.597889 ] ] ], [ [ [ 63.281250, 25.799891 ], [ 63.281250, 24.527135 ], [ 61.875000, 24.527135 ], [ 61.875000, 25.799891 ], [ 63.281250, 25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 84.375000, 28.304381 ], [ 80.156250, 28.304381 ], [ 80.156250, 30.751278 ], [ 81.562500, 30.751278 ], [ 81.562500, 29.535230 ], [ 84.375000, 29.535230 ], [ 84.375000, 28.304381 ] ] ], [ [ [ 84.375000, 28.304381 ], [ 87.187500, 28.304381 ], [ 87.187500, 27.059126 ], [ 84.375000, 27.059126 ], [ 84.375000, 28.304381 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375000, 29.535230 ], [ 84.375000, 28.304381 ], [ 88.593750, 28.304381 ], [ 88.593750, 25.799891 ], [ 85.781250, 25.799891 ], [ 85.781250, 27.059126 ], [ 81.562500, 27.059126 ], [ 81.562500, 28.304381 ], [ 80.156250, 28.304381 ], [ 80.156250, 29.535230 ], [ 84.375000, 29.535230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.750000, 35.460670 ], [ 78.750000, 33.137551 ], [ 77.343750, 33.137551 ], [ 77.343750, 31.952162 ], [ 78.750000, 31.952162 ], [ 78.750000, 30.751278 ], [ 80.156250, 30.751278 ], [ 80.156250, 28.304381 ], [ 84.375000, 28.304381 ], [ 84.375000, 27.059126 ], [ 87.187500, 27.059126 ], [ 87.187500, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 21.943046 ], [ 85.781250, 21.943046 ], [ 85.781250, 20.632784 ], [ 84.375000, 20.632784 ], [ 84.375000, 19.311143 ], [ 82.968750, 19.311143 ], [ 82.968750, 17.978733 ], [ 81.562500, 17.978733 ], [ 81.562500, 16.636192 ], [ 80.156250, 16.636192 ], [ 80.156250, 15.284185 ], [ 78.750000, 15.284185 ], [ 78.750000, 13.923404 ], [ 80.156250, 13.923404 ], [ 80.156250, 12.554564 ], [ 78.750000, 12.554564 ], [ 78.750000, 9.795678 ], [ 77.343750, 9.795678 ], [ 77.343750, 8.407168 ], [ 75.937500, 8.407168 ], [ 75.937500, 11.178402 ], [ 74.531250, 11.178402 ], [ 74.531250, 15.284185 ], [ 73.125000, 15.284185 ], [ 73.125000, 16.636192 ], [ 71.718750, 16.636192 ], [ 71.718750, 21.943046 ], [ 68.906250, 21.943046 ], [ 68.906250, 23.241346 ], [ 67.500000, 23.241346 ], [ 67.500000, 24.527135 ], [ 70.312500, 24.527135 ], [ 70.312500, 25.799891 ], [ 68.906250, 25.799891 ], [ 68.906250, 27.059126 ], [ 70.312500, 27.059126 ], [ 70.312500, 28.304381 ], [ 71.718750, 28.304381 ], [ 71.718750, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 31.952162 ], [ 74.531250, 31.952162 ], [ 74.531250, 33.137551 ], [ 73.125000, 33.137551 ], [ 73.125000, 35.460670 ], [ 78.750000, 35.460670 ] ] ], [ [ [ 88.593750, 27.059126 ], [ 91.406250, 27.059126 ], [ 91.406250, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 29.535230 ], [ 95.625000, 29.535230 ], [ 95.625000, 27.059126 ], [ 94.218750, 27.059126 ], [ 94.218750, 24.527135 ], [ 92.812500, 24.527135 ], [ 92.812500, 23.241346 ], [ 90.000000, 23.241346 ], [ 90.000000, 24.527135 ], [ 91.406250, 24.527135 ], [ 91.406250, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 27.059126 ] ] ], [ [ [ 88.593750, 27.059126 ], [ 87.187500, 27.059126 ], [ 87.187500, 28.304381 ], [ 88.593750, 28.304381 ], [ 88.593750, 27.059126 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.750000, 34.307144 ], [ 78.750000, 30.751278 ], [ 81.562500, 30.751278 ], [ 81.562500, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 28.304381 ], [ 81.562500, 28.304381 ], [ 81.562500, 27.059126 ], [ 85.781250, 27.059126 ], [ 85.781250, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 21.943046 ], [ 87.187500, 21.943046 ], [ 87.187500, 19.311143 ], [ 84.375000, 19.311143 ], [ 84.375000, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 16.636192 ], [ 81.562500, 16.636192 ], [ 81.562500, 15.284185 ], [ 80.156250, 15.284185 ], [ 80.156250, 9.795678 ], [ 78.750000, 9.795678 ], [ 78.750000, 8.407168 ], [ 75.937500, 8.407168 ], [ 75.937500, 11.178402 ], [ 74.531250, 11.178402 ], [ 74.531250, 15.284185 ], [ 73.125000, 15.284185 ], [ 73.125000, 20.632784 ], [ 68.906250, 20.632784 ], [ 68.906250, 24.527135 ], [ 70.312500, 24.527135 ], [ 70.312500, 28.304381 ], [ 73.125000, 28.304381 ], [ 73.125000, 29.535230 ], [ 74.531250, 29.535230 ], [ 74.531250, 33.137551 ], [ 73.125000, 33.137551 ], [ 73.125000, 34.307144 ], [ 78.750000, 34.307144 ] ] ], [ [ [ 95.625000, 29.535230 ], [ 95.625000, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.059126 ], [ 95.625000, 27.059126 ], [ 95.625000, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 24.527135 ], [ 90.000000, 24.527135 ], [ 90.000000, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 27.059126 ], [ 91.406250, 27.059126 ], [ 91.406250, 28.304381 ], [ 94.218750, 28.304381 ], [ 94.218750, 29.535230 ], [ 95.625000, 29.535230 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.795678 ], [ 80.156250, 8.407168 ], [ 81.562500, 8.407168 ], [ 81.562500, 7.013668 ], [ 78.750000, 7.013668 ], [ 78.750000, 9.795678 ], [ 80.156250, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.562500, 8.407168 ], [ 81.562500, 5.615986 ], [ 80.156250, 5.615986 ], [ 80.156250, 8.407168 ], [ 81.562500, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.843750, 52.482780 ], [ 99.843750, 51.618017 ], [ 101.250000, 51.618017 ], [ 101.250000, 50.736455 ], [ 106.875000, 50.736455 ], [ 106.875000, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 47.989922 ], [ 119.531250, 47.989922 ], [ 119.531250, 47.040182 ], [ 116.718750, 47.040182 ], [ 116.718750, 46.073231 ], [ 113.906250, 46.073231 ], [ 113.906250, 45.089036 ], [ 111.093750, 45.089036 ], [ 111.093750, 43.068888 ], [ 105.468750, 43.068888 ], [ 105.468750, 42.032974 ], [ 101.250000, 42.032974 ], [ 101.250000, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 44.087585 ], [ 94.218750, 44.087585 ], [ 94.218750, 45.089036 ], [ 91.406250, 45.089036 ], [ 91.406250, 46.073231 ], [ 90.000000, 46.073231 ], [ 90.000000, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.837982 ], [ 90.000000, 49.837982 ], [ 90.000000, 50.736455 ], [ 95.625000, 50.736455 ], [ 95.625000, 49.837982 ], [ 97.031250, 49.837982 ], [ 97.031250, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 52.482780 ], [ 99.843750, 52.482780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.656250, 51.618017 ], [ 102.656250, 49.837982 ], [ 108.281250, 49.837982 ], [ 108.281250, 48.922499 ], [ 112.500000, 48.922499 ], [ 112.500000, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 47.989922 ], [ 119.531250, 47.989922 ], [ 119.531250, 47.040182 ], [ 116.718750, 47.040182 ], [ 116.718750, 46.073231 ], [ 115.312500, 46.073231 ], [ 115.312500, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 42.032974 ], [ 97.031250, 42.032974 ], [ 97.031250, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 44.087585 ], [ 92.812500, 44.087585 ], [ 92.812500, 45.089036 ], [ 90.000000, 45.089036 ], [ 90.000000, 46.073231 ], [ 91.406250, 46.073231 ], [ 91.406250, 47.040182 ], [ 90.000000, 47.040182 ], [ 90.000000, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 49.837982 ], [ 91.406250, 49.837982 ], [ 91.406250, 50.736455 ], [ 94.218750, 50.736455 ], [ 94.218750, 49.837982 ], [ 98.437500, 49.837982 ], [ 98.437500, 51.618017 ], [ 102.656250, 51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 28.304381 ], [ 91.406250, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 28.304381 ], [ 91.406250, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 28.304381 ], [ 91.406250, 27.059126 ], [ 90.000000, 27.059126 ], [ 90.000000, 28.304381 ], [ 91.406250, 28.304381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.593750, 27.059126 ], [ 88.593750, 25.799891 ], [ 91.406250, 25.799891 ], [ 91.406250, 24.527135 ], [ 90.000000, 24.527135 ], [ 90.000000, 21.943046 ], [ 88.593750, 21.943046 ], [ 88.593750, 23.241346 ], [ 87.187500, 23.241346 ], [ 87.187500, 27.059126 ], [ 88.593750, 27.059126 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, 23.241346 ], [ 90.000000, 23.241346 ], [ 90.000000, 21.943046 ], [ 88.593750, 21.943046 ], [ 88.593750, 25.799891 ], [ 90.000000, 25.799891 ], [ 90.000000, 24.527135 ], [ 91.406250, 24.527135 ], [ 91.406250, 23.241346 ] ] ], [ [ [ 91.406250, 23.241346 ], [ 92.812500, 23.241346 ], [ 92.812500, 20.632784 ], [ 91.406250, 20.632784 ], [ 91.406250, 23.241346 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.343750, 54.162434 ], [ 122.343750, 53.330873 ], [ 125.156250, 53.330873 ], [ 125.156250, 52.482780 ], [ 126.562500, 52.482780 ], [ 126.562500, 49.837982 ], [ 129.375000, 49.837982 ], [ 129.375000, 47.989922 ], [ 132.187500, 47.989922 ], [ 132.187500, 48.922499 ], [ 135.000000, 48.922499 ], [ 135.000000, 47.989922 ], [ 133.593750, 47.989922 ], [ 133.593750, 46.073231 ], [ 130.781250, 46.073231 ], [ 130.781250, 43.068888 ], [ 129.375000, 43.068888 ], [ 129.375000, 42.032974 ], [ 125.156250, 42.032974 ], [ 125.156250, 40.979898 ], [ 123.750000, 40.979898 ], [ 123.750000, 39.909736 ], [ 120.937500, 39.909736 ], [ 120.937500, 40.979898 ], [ 119.531250, 40.979898 ], [ 119.531250, 39.909736 ], [ 116.718750, 39.909736 ], [ 116.718750, 38.822591 ], [ 118.125000, 38.822591 ], [ 118.125000, 37.718590 ], [ 120.937500, 37.718590 ], [ 120.937500, 36.597889 ], [ 119.531250, 36.597889 ], [ 119.531250, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 27.059126 ], [ 119.531250, 27.059126 ], [ 119.531250, 25.799891 ], [ 118.125000, 25.799891 ], [ 118.125000, 24.527135 ], [ 116.718750, 24.527135 ], [ 116.718750, 23.241346 ], [ 112.500000, 23.241346 ], [ 112.500000, 21.943046 ], [ 109.687500, 21.943046 ], [ 109.687500, 20.632784 ], [ 109.687500, 19.311143 ], [ 108.281250, 19.311143 ], [ 108.281250, 20.632784 ], [ 108.281250, 21.943046 ], [ 105.468750, 21.943046 ], [ 105.468750, 23.241346 ], [ 101.250000, 23.241346 ], [ 101.250000, 21.943046 ], [ 98.437500, 21.943046 ], [ 98.437500, 24.527135 ], [ 97.031250, 24.527135 ], [ 97.031250, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 28.304381 ], [ 95.625000, 28.304381 ], [ 95.625000, 29.535230 ], [ 92.812500, 29.535230 ], [ 92.812500, 28.304381 ], [ 84.375000, 28.304381 ], [ 84.375000, 29.535230 ], [ 81.562500, 29.535230 ], [ 81.562500, 30.751278 ], [ 78.750000, 30.751278 ], [ 78.750000, 31.952162 ], [ 77.343750, 31.952162 ], [ 77.343750, 33.137551 ], [ 78.750000, 33.137551 ], [ 78.750000, 35.460670 ], [ 77.343750, 35.460670 ], [ 77.343750, 36.597889 ], [ 74.531250, 36.597889 ], [ 74.531250, 38.822591 ], [ 73.125000, 38.822591 ], [ 73.125000, 39.909736 ], [ 74.531250, 39.909736 ], [ 74.531250, 40.979898 ], [ 75.937500, 40.979898 ], [ 75.937500, 42.032974 ], [ 78.750000, 42.032974 ], [ 78.750000, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 44.087585 ], [ 78.750000, 44.087585 ], [ 78.750000, 45.089036 ], [ 81.562500, 45.089036 ], [ 81.562500, 47.040182 ], [ 84.375000, 47.040182 ], [ 84.375000, 48.922499 ], [ 88.593750, 48.922499 ], [ 88.593750, 47.989922 ], [ 90.000000, 47.989922 ], [ 90.000000, 46.073231 ], [ 91.406250, 46.073231 ], [ 91.406250, 45.089036 ], [ 94.218750, 45.089036 ], [ 94.218750, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 43.068888 ], [ 101.250000, 43.068888 ], [ 101.250000, 42.032974 ], [ 105.468750, 42.032974 ], [ 105.468750, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.989922 ], [ 115.312500, 47.989922 ], [ 115.312500, 49.837982 ], [ 118.125000, 49.837982 ], [ 118.125000, 51.618017 ], [ 119.531250, 51.618017 ], [ 119.531250, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 54.162434 ], [ 122.343750, 54.162434 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.687500, 19.311143 ], [ 109.687500, 17.978733 ], [ 108.281250, 17.978733 ], [ 108.281250, 19.311143 ], [ 109.687500, 19.311143 ] ] ], [ [ [ 125.156250, 52.482780 ], [ 126.562500, 52.482780 ], [ 126.562500, 50.736455 ], [ 127.968750, 50.736455 ], [ 127.968750, 49.837982 ], [ 129.375000, 49.837982 ], [ 129.375000, 48.922499 ], [ 130.781250, 48.922499 ], [ 130.781250, 47.989922 ], [ 135.000000, 47.989922 ], [ 135.000000, 47.040182 ], [ 133.593750, 47.040182 ], [ 133.593750, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 40.979898 ], [ 125.156250, 40.979898 ], [ 125.156250, 39.909736 ], [ 122.343750, 39.909736 ], [ 122.343750, 38.822591 ], [ 120.937500, 38.822591 ], [ 120.937500, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 38.822591 ], [ 118.125000, 38.822591 ], [ 118.125000, 37.718590 ], [ 119.531250, 37.718590 ], [ 119.531250, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 31.952162 ], [ 122.343750, 31.952162 ], [ 122.343750, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 29.535230 ], [ 122.343750, 29.535230 ], [ 122.343750, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 25.799891 ], [ 119.531250, 25.799891 ], [ 119.531250, 24.527135 ], [ 118.125000, 24.527135 ], [ 118.125000, 23.241346 ], [ 115.312500, 23.241346 ], [ 115.312500, 21.943046 ], [ 111.093750, 21.943046 ], [ 111.093750, 20.632784 ], [ 111.093750, 19.311143 ], [ 109.687500, 19.311143 ], [ 109.687500, 20.632784 ], [ 109.687500, 21.943046 ], [ 106.875000, 21.943046 ], [ 106.875000, 23.241346 ], [ 102.656250, 23.241346 ], [ 102.656250, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 23.241346 ], [ 98.437500, 23.241346 ], [ 98.437500, 28.304381 ], [ 95.625000, 28.304381 ], [ 95.625000, 29.535230 ], [ 94.218750, 29.535230 ], [ 94.218750, 28.304381 ], [ 90.000000, 28.304381 ], [ 90.000000, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 28.304381 ], [ 84.375000, 28.304381 ], [ 84.375000, 29.535230 ], [ 81.562500, 29.535230 ], [ 81.562500, 30.751278 ], [ 78.750000, 30.751278 ], [ 78.750000, 34.307144 ], [ 77.343750, 34.307144 ], [ 77.343750, 35.460670 ], [ 75.937500, 35.460670 ], [ 75.937500, 36.597889 ], [ 74.531250, 36.597889 ], [ 74.531250, 38.822591 ], [ 73.125000, 38.822591 ], [ 73.125000, 39.909736 ], [ 77.343750, 39.909736 ], [ 77.343750, 40.979898 ], [ 78.750000, 40.979898 ], [ 78.750000, 42.032974 ], [ 80.156250, 42.032974 ], [ 80.156250, 43.068888 ], [ 81.562500, 43.068888 ], [ 81.562500, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 45.089036 ], [ 82.968750, 45.089036 ], [ 82.968750, 47.040182 ], [ 85.781250, 47.040182 ], [ 85.781250, 47.989922 ], [ 87.187500, 47.989922 ], [ 87.187500, 48.922499 ], [ 88.593750, 48.922499 ], [ 88.593750, 47.989922 ], [ 90.000000, 47.989922 ], [ 90.000000, 47.040182 ], [ 91.406250, 47.040182 ], [ 91.406250, 46.073231 ], [ 90.000000, 46.073231 ], [ 90.000000, 45.089036 ], [ 92.812500, 45.089036 ], [ 92.812500, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 43.068888 ], [ 97.031250, 43.068888 ], [ 97.031250, 42.032974 ], [ 111.093750, 42.032974 ], [ 111.093750, 43.068888 ], [ 112.500000, 43.068888 ], [ 112.500000, 45.089036 ], [ 115.312500, 45.089036 ], [ 115.312500, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.989922 ], [ 116.718750, 47.989922 ], [ 116.718750, 49.837982 ], [ 119.531250, 49.837982 ], [ 119.531250, 51.618017 ], [ 120.937500, 51.618017 ], [ 120.937500, 53.330873 ], [ 125.156250, 53.330873 ], [ 125.156250, 52.482780 ] ] ], [ [ [ 122.343750, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 36.597889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.437500, 28.304381 ], [ 98.437500, 25.799891 ], [ 97.031250, 25.799891 ], [ 97.031250, 24.527135 ], [ 98.437500, 24.527135 ], [ 98.437500, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 20.632784 ], [ 97.031250, 20.632784 ], [ 97.031250, 17.978733 ], [ 98.437500, 17.978733 ], [ 98.437500, 15.284185 ], [ 97.031250, 15.284185 ], [ 97.031250, 16.636192 ], [ 94.218750, 16.636192 ], [ 94.218750, 19.311143 ], [ 92.812500, 19.311143 ], [ 92.812500, 20.632784 ], [ 91.406250, 20.632784 ], [ 91.406250, 23.241346 ], [ 92.812500, 23.241346 ], [ 92.812500, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 27.059126 ], [ 95.625000, 27.059126 ], [ 95.625000, 28.304381 ], [ 98.437500, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 13.923404 ], [ 99.843750, 13.923404 ], [ 99.843750, 11.178402 ], [ 98.437500, 11.178402 ], [ 98.437500, 13.923404 ] ] ], [ [ [ 98.437500, 23.241346 ], [ 99.843750, 23.241346 ], [ 99.843750, 21.943046 ], [ 101.250000, 21.943046 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 19.311143 ], [ 98.437500, 19.311143 ], [ 98.437500, 15.284185 ], [ 94.218750, 15.284185 ], [ 94.218750, 19.311143 ], [ 92.812500, 19.311143 ], [ 92.812500, 23.241346 ], [ 94.218750, 23.241346 ], [ 94.218750, 24.527135 ], [ 95.625000, 24.527135 ], [ 95.625000, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 28.304381 ], [ 98.437500, 28.304381 ], [ 98.437500, 23.241346 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 15.284185 ], [ 105.468750, 13.923404 ], [ 104.062500, 13.923404 ], [ 104.062500, 15.284185 ], [ 105.468750, 15.284185 ] ] ], [ [ [ 104.062500, 17.978733 ], [ 99.843750, 17.978733 ], [ 99.843750, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 21.943046 ], [ 104.062500, 21.943046 ], [ 104.062500, 17.978733 ] ] ], [ [ [ 105.468750, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 15.284185 ], [ 105.468750, 15.284185 ], [ 105.468750, 16.636192 ] ] ], [ [ [ 104.062500, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 16.636192 ], [ 104.062500, 16.636192 ], [ 104.062500, 17.978733 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 16.636192 ], [ 104.062500, 16.636192 ], [ 104.062500, 17.978733 ], [ 101.250000, 17.978733 ], [ 101.250000, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 20.632784 ], [ 104.062500, 20.632784 ], [ 104.062500, 19.311143 ], [ 105.468750, 19.311143 ], [ 105.468750, 16.636192 ] ] ], [ [ [ 105.468750, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 9.795678 ], [ 99.843750, 9.795678 ], [ 99.843750, 7.013668 ], [ 98.437500, 7.013668 ], [ 98.437500, 8.407168 ], [ 97.031250, 8.407168 ], [ 97.031250, 9.795678 ], [ 98.437500, 9.795678 ] ] ], [ [ [ 101.250000, 19.311143 ], [ 99.843750, 19.311143 ], [ 99.843750, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 15.284185 ], [ 102.656250, 15.284185 ], [ 102.656250, 13.923404 ], [ 99.843750, 13.923404 ], [ 99.843750, 11.178402 ], [ 98.437500, 11.178402 ], [ 98.437500, 13.923404 ], [ 97.031250, 13.923404 ], [ 97.031250, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 17.978733 ], [ 97.031250, 17.978733 ], [ 97.031250, 20.632784 ], [ 101.250000, 20.632784 ], [ 101.250000, 19.311143 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.843750, 7.013668 ], [ 98.437500, 7.013668 ], [ 98.437500, 11.178402 ], [ 99.843750, 11.178402 ], [ 99.843750, 7.013668 ] ] ], [ [ [ 101.250000, 20.632784 ], [ 101.250000, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.923404 ], [ 99.843750, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 19.311143 ], [ 99.843750, 19.311143 ], [ 99.843750, 20.632784 ], [ 101.250000, 20.632784 ] ] ], [ [ [ 99.843750, 7.013668 ], [ 101.250000, 7.013668 ], [ 101.250000, 5.615986 ], [ 99.843750, 5.615986 ], [ 99.843750, 7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.875000, 15.284185 ], [ 108.281250, 15.284185 ], [ 108.281250, 11.178402 ], [ 106.875000, 11.178402 ], [ 106.875000, 9.795678 ], [ 104.062500, 9.795678 ], [ 104.062500, 11.178402 ], [ 105.468750, 11.178402 ], [ 105.468750, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 15.284185 ] ] ], [ [ [ 105.468750, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 21.943046 ], [ 101.250000, 21.943046 ], [ 101.250000, 23.241346 ], [ 105.468750, 23.241346 ], [ 105.468750, 17.978733 ] ] ], [ [ [ 105.468750, 17.978733 ], [ 106.875000, 17.978733 ], [ 106.875000, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 17.978733 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 108.281250, 13.923404 ], [ 109.687500, 13.923404 ], [ 109.687500, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 9.795678 ], [ 106.875000, 9.795678 ], [ 106.875000, 8.407168 ], [ 105.468750, 8.407168 ], [ 105.468750, 11.178402 ], [ 106.875000, 11.178402 ], [ 106.875000, 12.554564 ], [ 108.281250, 12.554564 ], [ 108.281250, 13.923404 ] ] ], [ [ [ 106.875000, 21.943046 ], [ 108.281250, 21.943046 ], [ 108.281250, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 19.311143 ], [ 105.468750, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 20.632784 ], [ 102.656250, 20.632784 ], [ 102.656250, 23.241346 ], [ 106.875000, 23.241346 ], [ 106.875000, 21.943046 ] ] ], [ [ [ 106.875000, 16.636192 ], [ 108.281250, 16.636192 ], [ 108.281250, 13.923404 ], [ 106.875000, 13.923404 ], [ 106.875000, 16.636192 ] ] ], [ [ [ 106.875000, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 17.978733 ], [ 106.875000, 17.978733 ], [ 106.875000, 16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875000, 15.284185 ], [ 106.875000, 12.554564 ], [ 105.468750, 12.554564 ], [ 105.468750, 11.178402 ], [ 101.250000, 11.178402 ], [ 101.250000, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 15.284185 ], [ 104.062500, 15.284185 ], [ 104.062500, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.284185 ], [ 106.875000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.281250, 13.923404 ], [ 108.281250, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 11.178402 ], [ 105.468750, 11.178402 ], [ 105.468750, 9.795678 ], [ 104.062500, 9.795678 ], [ 104.062500, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 13.923404 ], [ 108.281250, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.250000, 7.013668 ], [ 101.250000, 5.615986 ], [ 102.656250, 5.615986 ], [ 102.656250, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 101.250000, 1.406109 ], [ 101.250000, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 7.013668 ], [ 101.250000, 7.013668 ] ] ], [ [ [ 113.906250, 4.214943 ], [ 113.906250, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 2.811371 ], [ 111.093750, 2.811371 ], [ 111.093750, 4.214943 ], [ 113.906250, 4.214943 ] ] ], [ [ [ 111.093750, 2.811371 ], [ 111.093750, 1.406109 ], [ 108.281250, 1.406109 ], [ 108.281250, 2.811371 ], [ 111.093750, 2.811371 ] ] ], [ [ [ 118.125000, 7.013668 ], [ 118.125000, 4.214943 ], [ 116.718750, 4.214943 ], [ 116.718750, 5.615986 ], [ 115.312500, 5.615986 ], [ 115.312500, 7.013668 ], [ 118.125000, 7.013668 ] ] ], [ [ [ 115.312500, 4.214943 ], [ 113.906250, 4.214943 ], [ 113.906250, 5.615986 ], [ 115.312500, 5.615986 ], [ 115.312500, 4.214943 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.656250, 5.615986 ], [ 102.656250, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 101.250000, 1.406109 ], [ 101.250000, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 5.615986 ], [ 102.656250, 5.615986 ] ] ], [ [ [ 115.312500, 4.214943 ], [ 115.312500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.906250, 2.811371 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.718750, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.125000, 7.013668 ], [ 118.125000, 4.214943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.937500, 25.799891 ], [ 120.937500, 23.241346 ], [ 119.531250, 23.241346 ], [ 119.531250, 25.799891 ], [ 120.937500, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.937500, 23.241346 ], [ 120.937500, 21.943046 ], [ 119.531250, 21.943046 ], [ 119.531250, 23.241346 ], [ 120.937500, 23.241346 ] ] ], [ [ [ 122.343750, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 24.527135 ], [ 122.343750, 24.527135 ], [ 122.343750, 23.241346 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 42.032974 ], [ 129.375000, 40.979898 ], [ 127.968750, 40.979898 ], [ 127.968750, 39.909736 ], [ 126.562500, 39.909736 ], [ 126.562500, 38.822591 ], [ 123.750000, 38.822591 ], [ 123.750000, 40.979898 ], [ 125.156250, 40.979898 ], [ 125.156250, 42.032974 ], [ 129.375000, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 42.032974 ], [ 129.375000, 39.909736 ], [ 127.968750, 39.909736 ], [ 127.968750, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 40.979898 ], [ 127.968750, 40.979898 ], [ 127.968750, 42.032974 ], [ 129.375000, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.968750, 38.822591 ], [ 127.968750, 37.718590 ], [ 129.375000, 37.718590 ], [ 129.375000, 35.460670 ], [ 125.156250, 35.460670 ], [ 125.156250, 38.822591 ], [ 127.968750, 38.822591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 37.718590 ], [ 129.375000, 35.460670 ], [ 127.968750, 35.460670 ], [ 127.968750, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 37.718590 ], [ 129.375000, 37.718590 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.156250, 9.795678 ], [ 125.156250, 5.615986 ], [ 123.750000, 5.615986 ], [ 123.750000, 8.407168 ], [ 123.750000, 9.795678 ], [ 125.156250, 9.795678 ] ] ], [ [ [ 122.343750, 8.407168 ], [ 122.343750, 7.013668 ], [ 120.937500, 7.013668 ], [ 120.937500, 8.407168 ], [ 122.343750, 8.407168 ] ] ], [ [ [ 118.125000, 9.795678 ], [ 118.125000, 8.407168 ], [ 116.718750, 8.407168 ], [ 116.718750, 9.795678 ], [ 118.125000, 9.795678 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 120.937500, 13.923404 ], [ 120.937500, 12.554564 ], [ 119.531250, 12.554564 ], [ 119.531250, 13.923404 ], [ 119.531250, 19.311143 ], [ 120.937500, 19.311143 ], [ 120.937500, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 16.636192 ], [ 120.937500, 16.636192 ], [ 120.937500, 15.284185 ], [ 122.343750, 15.284185 ], [ 122.343750, 13.923404 ] ] ], [ [ [ 120.937500, 12.554564 ], [ 122.343750, 12.554564 ], [ 122.343750, 11.178402 ], [ 120.937500, 11.178402 ], [ 120.937500, 12.554564 ] ] ], [ [ [ 123.750000, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 12.554564 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 12.554564 ], [ 122.343750, 12.554564 ], [ 122.343750, 13.923404 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.750000, 11.178402 ], [ 123.750000, 8.407168 ], [ 125.156250, 8.407168 ], [ 125.156250, 9.795678 ], [ 126.562500, 9.795678 ], [ 126.562500, 5.615986 ], [ 123.750000, 5.615986 ], [ 123.750000, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 8.407168 ], [ 122.343750, 11.178402 ], [ 123.750000, 11.178402 ] ] ], [ [ [ 120.937500, 13.923404 ], [ 119.531250, 13.923404 ], [ 119.531250, 16.636192 ], [ 120.937500, 16.636192 ], [ 120.937500, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.284185 ], [ 120.937500, 15.284185 ], [ 120.937500, 13.923404 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 12.554564 ], [ 122.343750, 12.554564 ], [ 122.343750, 13.923404 ] ] ], [ [ [ 123.750000, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, 34.307144 ], [ 130.781250, 31.952162 ], [ 129.375000, 31.952162 ], [ 129.375000, 34.307144 ], [ 130.781250, 34.307144 ] ] ], [ [ [ 143.437500, 45.089036 ], [ 143.437500, 44.087585 ], [ 144.843750, 44.087585 ], [ 144.843750, 43.068888 ], [ 143.437500, 43.068888 ], [ 143.437500, 42.032974 ], [ 140.625000, 42.032974 ], [ 140.625000, 35.460670 ], [ 136.406250, 35.460670 ], [ 136.406250, 34.307144 ], [ 135.000000, 34.307144 ], [ 135.000000, 35.460670 ], [ 133.593750, 35.460670 ], [ 133.593750, 36.597889 ], [ 136.406250, 36.597889 ], [ 136.406250, 37.718590 ], [ 137.812500, 37.718590 ], [ 137.812500, 38.822591 ], [ 139.218750, 38.822591 ], [ 139.218750, 42.032974 ], [ 139.218750, 44.087585 ], [ 140.625000, 44.087585 ], [ 140.625000, 45.089036 ], [ 143.437500, 45.089036 ] ] ], [ [ [ 132.187500, 34.307144 ], [ 130.781250, 34.307144 ], [ 130.781250, 35.460670 ], [ 132.187500, 35.460670 ], [ 132.187500, 34.307144 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 31.952162 ], [ 129.375000, 31.952162 ], [ 129.375000, 33.137551 ], [ 130.781250, 33.137551 ] ] ], [ [ [ 133.593750, 34.307144 ], [ 132.187500, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 35.460670 ], [ 135.000000, 36.597889 ], [ 139.218750, 36.597889 ], [ 139.218750, 38.822591 ], [ 140.625000, 38.822591 ], [ 140.625000, 39.909736 ], [ 139.218750, 39.909736 ], [ 139.218750, 40.979898 ], [ 142.031250, 40.979898 ], [ 142.031250, 37.718590 ], [ 140.625000, 37.718590 ], [ 140.625000, 34.307144 ], [ 137.812500, 34.307144 ], [ 137.812500, 33.137551 ], [ 135.000000, 33.137551 ], [ 133.593750, 33.137551 ], [ 133.593750, 34.307144 ] ] ], [ [ [ 144.843750, 44.087585 ], [ 144.843750, 43.068888 ], [ 143.437500, 43.068888 ], [ 143.437500, 42.032974 ], [ 139.218750, 42.032974 ], [ 139.218750, 43.068888 ], [ 142.031250, 43.068888 ], [ 142.031250, 44.087585 ], [ 144.843750, 44.087585 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -16.636192 ], [ 178.593750, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -16.636192 ], [ 178.593750, -16.636192 ] ] ], [ [ [ -181.406250, -16.636192 ], [ -181.406250, -17.978733 ], [ -182.812500, -17.978733 ], [ -182.812500, -16.636192 ], [ -181.406250, -16.636192 ] ] ], [ [ [ 180.000000, -15.284185 ], [ 180.000000, -16.636192 ], [ 178.593750, -16.636192 ], [ 178.593750, -15.284185 ], [ 180.000000, -15.284185 ] ] ], [ [ [ -180.000000, -15.284185 ], [ -180.000000, -16.636192 ], [ -181.406250, -16.636192 ], [ -181.406250, -15.284185 ], [ -180.000000, -15.284185 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.811371 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -4.214943 ], [ 9.843750, -4.214943 ], [ 9.843750, -2.811371 ], [ 8.437500, -2.811371 ], [ 8.437500, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.811371 ], [ 12.656250, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.811371 ], [ 12.656250, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, -1.406109 ], [ 11.250000, -1.406109 ], [ 11.250000, -2.811371 ], [ 8.437500, -2.811371 ], [ 8.437500, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.811371 ], [ 12.656250, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.062500, 1.406109 ], [ 15.468750, 1.406109 ], [ 15.468750, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 4.214943 ], [ 18.281250, 4.214943 ], [ 18.281250, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -2.811371 ], [ 15.468750, -2.811371 ], [ 15.468750, -5.615986 ], [ 14.062500, -5.615986 ], [ 14.062500, -4.214943 ], [ 12.656250, -4.214943 ], [ 12.656250, -5.615986 ], [ 11.250000, -5.615986 ], [ 11.250000, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, 1.406109 ] ] ], [ [ [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.811371 ], [ 14.062500, 2.811371 ], [ 14.062500, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 4.214943 ], [ 18.281250, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 0.000000 ], [ 15.468750, 0.000000 ], [ 15.468750, -4.214943 ], [ 9.843750, -4.214943 ], [ 9.843750, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 0.000000 ], [ 12.656250, 0.000000 ], [ 12.656250, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 4.214943 ], [ 18.281250, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, -12.554564 ], [ 25.312500, -12.554564 ], [ 25.312500, -11.178402 ], [ 22.500000, -11.178402 ], [ 22.500000, -8.407168 ], [ 21.093750, -8.407168 ], [ 21.093750, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -8.407168 ], [ 16.875000, -8.407168 ], [ 16.875000, -5.615986 ], [ 15.468750, -5.615986 ], [ 15.468750, -2.811371 ], [ 16.875000, -2.811371 ], [ 16.875000, -1.406109 ], [ 18.281250, -1.406109 ], [ 18.281250, 4.214943 ], [ 25.312500, 4.214943 ], [ 25.312500, 5.615986 ], [ 26.718750, 5.615986 ], [ 26.718750, 4.214943 ], [ 29.531250, 4.214943 ], [ 29.531250, 2.811371 ], [ 30.937500, 2.811371 ], [ 30.937500, 1.406109 ], [ 29.531250, 1.406109 ], [ 29.531250, -8.407168 ], [ 28.125000, -8.407168 ], [ 28.125000, -12.554564 ] ] ], [ [ [ 14.062500, -5.615986 ], [ 12.656250, -5.615986 ], [ 12.656250, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -5.615986 ] ] ], [ [ [ 28.125000, -12.554564 ], [ 29.531250, -12.554564 ], [ 29.531250, -13.923404 ], [ 28.125000, -13.923404 ], [ 28.125000, -12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -9.795678 ], [ 21.093750, -9.795678 ], [ 21.093750, -7.013668 ], [ 15.468750, -7.013668 ], [ 15.468750, -5.615986 ], [ 11.250000, -5.615986 ], [ 11.250000, -4.214943 ], [ 15.468750, -4.214943 ], [ 15.468750, 0.000000 ], [ 16.875000, 0.000000 ], [ 16.875000, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 5.615986 ], [ 21.093750, 5.615986 ], [ 21.093750, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 5.615986 ], [ 29.531250, 5.615986 ], [ 29.531250, -1.406109 ], [ 28.125000, -1.406109 ], [ 28.125000, -5.615986 ], [ 29.531250, -5.615986 ], [ 29.531250, -8.407168 ], [ 28.125000, -8.407168 ], [ 28.125000, -11.178402 ] ] ], [ [ [ 28.125000, -11.178402 ], [ 29.531250, -11.178402 ], [ 29.531250, -12.554564 ], [ 28.125000, -12.554564 ], [ 28.125000, -11.178402 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, -5.615986 ], [ 16.875000, -8.407168 ], [ 19.687500, -8.407168 ], [ 19.687500, -7.013668 ], [ 21.093750, -7.013668 ], [ 21.093750, -8.407168 ], [ 22.500000, -8.407168 ], [ 22.500000, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -12.554564 ], [ 22.500000, -12.554564 ], [ 22.500000, -17.978733 ], [ 14.062500, -17.978733 ], [ 14.062500, -16.636192 ], [ 11.250000, -16.636192 ], [ 11.250000, -15.284185 ], [ 12.656250, -15.284185 ], [ 12.656250, -12.554564 ], [ 14.062500, -12.554564 ], [ 14.062500, -9.795678 ], [ 12.656250, -9.795678 ], [ 12.656250, -5.615986 ], [ 16.875000, -5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, -5.615986 ], [ 15.468750, -7.013668 ], [ 21.093750, -7.013668 ], [ 21.093750, -9.795678 ], [ 23.906250, -9.795678 ], [ 23.906250, -12.554564 ], [ 21.093750, -12.554564 ], [ 21.093750, -16.636192 ], [ 11.250000, -16.636192 ], [ 11.250000, -12.554564 ], [ 12.656250, -12.554564 ], [ 12.656250, -5.615986 ], [ 15.468750, -5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, -16.636192 ], [ 14.062500, -17.978733 ], [ 21.093750, -17.978733 ], [ 21.093750, -21.943046 ], [ 19.687500, -21.943046 ], [ 19.687500, -29.535230 ], [ 18.281250, -29.535230 ], [ 18.281250, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -25.799891 ], [ 14.062500, -25.799891 ], [ 14.062500, -21.943046 ], [ 12.656250, -21.943046 ], [ 12.656250, -19.311143 ], [ 11.250000, -19.311143 ], [ 11.250000, -16.636192 ], [ 14.062500, -16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, -16.636192 ], [ 23.906250, -17.978733 ], [ 19.687500, -17.978733 ], [ 19.687500, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -27.059126 ], [ 14.062500, -27.059126 ], [ 14.062500, -21.943046 ], [ 12.656250, -21.943046 ], [ 12.656250, -19.311143 ], [ 11.250000, -19.311143 ], [ 11.250000, -16.636192 ], [ 23.906250, -16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.811371 ], [ 29.531250, -2.811371 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -1.406109 ], [ 29.531250, -2.811371 ], [ 28.125000, -2.811371 ], [ 28.125000, -1.406109 ], [ 29.531250, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.811371 ], [ 30.937500, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, -2.811371 ], [ 30.937500, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -2.811371 ], [ 29.531250, -4.214943 ], [ 28.125000, -4.214943 ], [ 28.125000, -2.811371 ], [ 29.531250, -2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -12.554564 ], [ 28.125000, -8.407168 ], [ 32.343750, -8.407168 ], [ 32.343750, -9.795678 ], [ 33.750000, -9.795678 ], [ 33.750000, -12.554564 ], [ 32.343750, -12.554564 ], [ 32.343750, -15.284185 ], [ 29.531250, -15.284185 ], [ 29.531250, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -12.554564 ], [ 23.906250, -12.554564 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -12.554564 ], [ 28.125000, -12.554564 ] ], [ [ 28.125000, -12.554564 ], [ 28.125000, -13.923404 ], [ 29.531250, -13.923404 ], [ 29.531250, -12.554564 ], [ 28.125000, -12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -11.178402 ], [ 28.125000, -8.407168 ], [ 32.343750, -8.407168 ], [ 32.343750, -13.923404 ], [ 29.531250, -13.923404 ], [ 29.531250, -15.284185 ], [ 28.125000, -15.284185 ], [ 28.125000, -16.636192 ], [ 21.093750, -16.636192 ], [ 21.093750, -12.554564 ], [ 23.906250, -12.554564 ], [ 23.906250, -11.178402 ], [ 28.125000, -11.178402 ] ], [ [ 28.125000, -11.178402 ], [ 28.125000, -12.554564 ], [ 29.531250, -12.554564 ], [ 29.531250, -11.178402 ], [ 28.125000, -11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -15.284185 ], [ 30.937500, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -20.632784 ], [ 26.718750, -20.632784 ], [ 26.718750, -19.311143 ], [ 25.312500, -19.311143 ], [ 25.312500, -17.978733 ], [ 28.125000, -17.978733 ], [ 28.125000, -16.636192 ], [ 29.531250, -16.636192 ], [ 29.531250, -15.284185 ], [ 30.937500, -15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -15.284185 ], [ 30.937500, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -20.632784 ], [ 30.937500, -20.632784 ], [ 30.937500, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -20.632784 ], [ 26.718750, -20.632784 ], [ 26.718750, -19.311143 ], [ 25.312500, -19.311143 ], [ 25.312500, -17.978733 ], [ 23.906250, -17.978733 ], [ 23.906250, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -15.284185 ], [ 30.937500, -15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, -1.406109 ], [ 35.156250, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -4.214943 ], [ 39.375000, -4.214943 ], [ 39.375000, -9.795678 ], [ 40.781250, -9.795678 ], [ 40.781250, -11.178402 ], [ 33.750000, -11.178402 ], [ 33.750000, -9.795678 ], [ 32.343750, -9.795678 ], [ 32.343750, -8.407168 ], [ 29.531250, -8.407168 ], [ 29.531250, -4.214943 ], [ 30.937500, -4.214943 ], [ 30.937500, -1.406109 ], [ 35.156250, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 0.000000 ], [ 33.750000, -1.406109 ], [ 35.156250, -1.406109 ], [ 35.156250, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -5.615986 ], [ 39.375000, -5.615986 ], [ 39.375000, -7.013668 ], [ 37.968750, -7.013668 ], [ 37.968750, -8.407168 ], [ 39.375000, -8.407168 ], [ 39.375000, -11.178402 ], [ 33.750000, -11.178402 ], [ 33.750000, -8.407168 ], [ 29.531250, -8.407168 ], [ 29.531250, -5.615986 ], [ 28.125000, -5.615986 ], [ 28.125000, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, 0.000000 ], [ 33.750000, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -16.636192 ], [ 33.750000, -16.636192 ], [ 33.750000, -13.923404 ] ] ], [ [ [ 35.156250, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -11.178402 ], [ 35.156250, -11.178402 ], [ 35.156250, -12.554564 ] ] ], [ [ [ 33.750000, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -13.923404 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -8.407168 ], [ 33.750000, -12.554564 ], [ 35.156250, -12.554564 ], [ 35.156250, -16.636192 ], [ 33.750000, -16.636192 ], [ 33.750000, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -8.407168 ], [ 33.750000, -8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -13.923404 ], [ 33.750000, -12.554564 ], [ 35.156250, -12.554564 ], [ 35.156250, -11.178402 ], [ 40.781250, -11.178402 ], [ 40.781250, -16.636192 ], [ 37.968750, -16.636192 ], [ 37.968750, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -24.527135 ], [ 33.750000, -24.527135 ], [ 33.750000, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -23.241346 ], [ 30.937500, -23.241346 ], [ 30.937500, -21.943046 ], [ 32.343750, -21.943046 ], [ 32.343750, -16.636192 ], [ 30.937500, -16.636192 ], [ 30.937500, -15.284185 ], [ 32.343750, -15.284185 ], [ 32.343750, -13.923404 ], [ 33.750000, -13.923404 ] ], [ [ 33.750000, -13.923404 ], [ 33.750000, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -13.923404 ], [ 33.750000, -13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, -11.178402 ], [ 39.375000, -16.636192 ], [ 36.562500, -16.636192 ], [ 36.562500, -17.978733 ], [ 35.156250, -17.978733 ], [ 35.156250, -19.311143 ], [ 33.750000, -19.311143 ], [ 33.750000, -20.632784 ], [ 35.156250, -20.632784 ], [ 35.156250, -23.241346 ], [ 33.750000, -23.241346 ], [ 33.750000, -24.527135 ], [ 32.343750, -24.527135 ], [ 32.343750, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -16.636192 ], [ 30.937500, -16.636192 ], [ 30.937500, -15.284185 ], [ 29.531250, -15.284185 ], [ 29.531250, -13.923404 ], [ 33.750000, -13.923404 ], [ 33.750000, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -11.178402 ], [ 39.375000, -11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.978733 ], [ 25.312500, -19.311143 ], [ 26.718750, -19.311143 ], [ 26.718750, -20.632784 ], [ 28.125000, -20.632784 ], [ 28.125000, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -23.241346 ], [ 26.718750, -23.241346 ], [ 26.718750, -24.527135 ], [ 25.312500, -24.527135 ], [ 25.312500, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -27.059126 ], [ 21.093750, -27.059126 ], [ 21.093750, -25.799891 ], [ 19.687500, -25.799891 ], [ 19.687500, -21.943046 ], [ 21.093750, -21.943046 ], [ 21.093750, -17.978733 ], [ 25.312500, -17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.978733 ], [ 25.312500, -19.311143 ], [ 26.718750, -19.311143 ], [ 26.718750, -20.632784 ], [ 28.125000, -20.632784 ], [ 28.125000, -21.943046 ], [ 26.718750, -21.943046 ], [ 26.718750, -24.527135 ], [ 22.500000, -24.527135 ], [ 22.500000, -25.799891 ], [ 19.687500, -25.799891 ], [ 19.687500, -17.978733 ], [ 25.312500, -17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -30.751278 ], [ 29.531250, -33.137551 ], [ 25.312500, -33.137551 ], [ 25.312500, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -31.952162 ], [ 16.875000, -31.952162 ], [ 16.875000, -28.304381 ], [ 18.281250, -28.304381 ], [ 18.281250, -29.535230 ], [ 19.687500, -29.535230 ], [ 19.687500, -25.799891 ], [ 21.093750, -25.799891 ], [ 21.093750, -27.059126 ], [ 22.500000, -27.059126 ], [ 22.500000, -25.799891 ], [ 25.312500, -25.799891 ], [ 25.312500, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.241346 ], [ 29.531250, -23.241346 ], [ 29.531250, -21.943046 ], [ 30.937500, -21.943046 ], [ 30.937500, -23.241346 ], [ 32.343750, -23.241346 ], [ 32.343750, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -29.535230 ], [ 30.937500, -29.535230 ], [ 30.937500, -30.751278 ], [ 29.531250, -30.751278 ] ], [ [ 29.531250, -30.751278 ], [ 29.531250, -29.535230 ], [ 26.718750, -29.535230 ], [ 26.718750, -30.751278 ], [ 29.531250, -30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -21.943046 ], [ 30.937500, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -28.304381 ], [ 30.937500, -28.304381 ], [ 30.937500, -29.535230 ], [ 29.531250, -29.535230 ], [ 29.531250, -31.952162 ], [ 28.125000, -31.952162 ], [ 28.125000, -33.137551 ], [ 21.093750, -33.137551 ], [ 21.093750, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -33.137551 ], [ 16.875000, -33.137551 ], [ 16.875000, -29.535230 ], [ 15.468750, -29.535230 ], [ 15.468750, -28.304381 ], [ 19.687500, -28.304381 ], [ 19.687500, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -21.943046 ], [ 30.937500, -21.943046 ] ], [ [ 26.718750, -29.535230 ], [ 28.125000, -29.535230 ], [ 28.125000, -28.304381 ], [ 26.718750, -28.304381 ], [ 26.718750, -29.535230 ] ], [ [ 30.937500, -25.799891 ], [ 29.531250, -25.799891 ], [ 29.531250, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, -25.799891 ], [ 32.343750, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -25.799891 ], [ 32.343750, -25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -25.799891 ], [ 30.937500, -27.059126 ], [ 29.531250, -27.059126 ], [ 29.531250, -25.799891 ], [ 30.937500, -25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -29.535230 ], [ 29.531250, -30.751278 ], [ 26.718750, -30.751278 ], [ 26.718750, -29.535230 ], [ 29.531250, -29.535230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -28.304381 ], [ 28.125000, -29.535230 ], [ 26.718750, -29.535230 ], [ 26.718750, -28.304381 ], [ 28.125000, -28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, -13.923404 ], [ 50.625000, -16.636192 ], [ 49.218750, -16.636192 ], [ 49.218750, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -24.527135 ], [ 46.406250, -24.527135 ], [ 46.406250, -25.799891 ], [ 43.593750, -25.799891 ], [ 43.593750, -20.632784 ], [ 45.000000, -20.632784 ], [ 45.000000, -19.311143 ], [ 43.593750, -19.311143 ], [ 43.593750, -17.978733 ], [ 45.000000, -17.978733 ], [ 45.000000, -16.636192 ], [ 46.406250, -16.636192 ], [ 46.406250, -15.284185 ], [ 47.812500, -15.284185 ], [ 47.812500, -13.923404 ], [ 50.625000, -13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, -11.178402 ], [ 49.218750, -17.978733 ], [ 47.812500, -17.978733 ], [ 47.812500, -23.241346 ], [ 46.406250, -23.241346 ], [ 46.406250, -24.527135 ], [ 43.593750, -24.527135 ], [ 43.593750, -23.241346 ], [ 42.187500, -23.241346 ], [ 42.187500, -20.632784 ], [ 43.593750, -20.632784 ], [ 43.593750, -15.284185 ], [ 46.406250, -15.284185 ], [ 46.406250, -13.923404 ], [ 47.812500, -13.923404 ], [ 47.812500, -11.178402 ], [ 49.218750, -11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, -48.922499 ], [ 70.312500, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -47.989922 ], [ 68.906250, -48.922499 ], [ 67.500000, -48.922499 ], [ 67.500000, -47.989922 ], [ 68.906250, -47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.031250, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -2.811371 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 102.656250, -5.615986 ], [ 102.656250, -4.214943 ], [ 101.250000, -4.214943 ], [ 101.250000, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, 0.000000 ], [ 98.437500, 0.000000 ], [ 98.437500, 1.406109 ], [ 97.031250, 1.406109 ], [ 97.031250, 4.214943 ] ] ], [ [ [ 139.218750, -1.406109 ], [ 139.218750, -2.811371 ], [ 140.625000, -2.811371 ], [ 140.625000, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -5.615986 ], [ 136.406250, -5.615986 ], [ 136.406250, -4.214943 ], [ 132.187500, -4.214943 ], [ 132.187500, -1.406109 ], [ 133.593750, -1.406109 ], [ 133.593750, -2.811371 ], [ 137.812500, -2.811371 ], [ 137.812500, -1.406109 ], [ 139.218750, -1.406109 ] ] ], [ [ [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ], [ 133.593750, -7.013668 ], [ 133.593750, -5.615986 ], [ 135.000000, -5.615986 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 118.125000, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -4.214943 ], [ 113.906250, -4.214943 ], [ 113.906250, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, 1.406109 ], [ 115.312500, 1.406109 ], [ 115.312500, 4.214943 ], [ 118.125000, 4.214943 ] ] ], [ [ [ 106.875000, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -8.407168 ], [ 106.875000, -8.407168 ], [ 106.875000, -7.013668 ] ] ], [ [ [ 130.781250, -2.811371 ], [ 130.781250, -4.214943 ], [ 129.375000, -4.214943 ], [ 129.375000, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 120.937500, 0.000000 ], [ 120.937500, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 0.000000 ], [ 120.937500, 0.000000 ] ] ], [ [ [ 129.375000, 1.406109 ], [ 129.375000, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, 1.406109 ], [ 129.375000, 1.406109 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 106.875000, -5.615986 ], [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 123.750000, -4.214943 ], [ 123.750000, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 97.031250, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 5.615986 ], [ 97.031250, 5.615986 ], [ 97.031250, 4.214943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.125000, -8.407168 ], [ 116.718750, -8.407168 ], [ 116.718750, -7.013668 ], [ 118.125000, -7.013668 ], [ 118.125000, -8.407168 ] ] ], [ [ [ 116.718750, 5.615986 ], [ 116.718750, -1.406109 ], [ 115.312500, -1.406109 ], [ 115.312500, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, -1.406109 ], [ 108.281250, -1.406109 ], [ 108.281250, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 112.500000, 2.811371 ], [ 112.500000, 1.406109 ], [ 113.906250, 1.406109 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.718750, 5.615986 ] ] ], [ [ [ 98.437500, 2.811371 ], [ 101.250000, 2.811371 ], [ 101.250000, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -1.406109 ], [ 105.468750, -1.406109 ], [ 105.468750, -5.615986 ], [ 102.656250, -5.615986 ], [ 102.656250, -4.214943 ], [ 101.250000, -4.214943 ], [ 101.250000, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, 0.000000 ], [ 98.437500, 0.000000 ], [ 98.437500, 2.811371 ] ] ], [ [ [ 133.593750, -2.811371 ], [ 135.000000, -2.811371 ], [ 135.000000, -1.406109 ], [ 140.625000, -1.406109 ], [ 140.625000, -8.407168 ], [ 139.218750, -8.407168 ], [ 139.218750, -7.013668 ], [ 137.812500, -7.013668 ], [ 137.812500, -4.214943 ], [ 133.593750, -4.214943 ], [ 133.593750, -2.811371 ] ] ], [ [ [ 120.937500, -4.214943 ], [ 122.343750, -4.214943 ], [ 122.343750, -5.615986 ], [ 120.937500, -5.615986 ], [ 120.937500, -4.214943 ] ] ], [ [ [ 119.531250, 0.000000 ], [ 119.531250, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, -5.615986 ], [ 118.125000, -5.615986 ], [ 118.125000, 0.000000 ], [ 119.531250, 0.000000 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 112.500000, -5.615986 ], [ 112.500000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 133.593750, -2.811371 ], [ 132.187500, -2.811371 ], [ 132.187500, -1.406109 ], [ 129.375000, -1.406109 ], [ 129.375000, 0.000000 ], [ 133.593750, 0.000000 ], [ 133.593750, -2.811371 ] ] ], [ [ [ 127.968750, 2.811371 ], [ 127.968750, 0.000000 ], [ 126.562500, 0.000000 ], [ 126.562500, 2.811371 ], [ 127.968750, 2.811371 ] ] ], [ [ [ 122.343750, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, 0.000000 ], [ 122.343750, 0.000000 ], [ 122.343750, -1.406109 ] ] ], [ [ [ 112.500000, -7.013668 ], [ 115.312500, -7.013668 ], [ 115.312500, -8.407168 ], [ 112.500000, -8.407168 ], [ 112.500000, -7.013668 ] ] ], [ [ [ 123.750000, 1.406109 ], [ 123.750000, 2.811371 ], [ 125.156250, 2.811371 ], [ 125.156250, 1.406109 ], [ 123.750000, 1.406109 ] ] ], [ [ [ 97.031250, 4.214943 ], [ 94.218750, 4.214943 ], [ 94.218750, 5.615986 ], [ 97.031250, 5.615986 ], [ 97.031250, 4.214943 ] ] ], [ [ [ 118.125000, -8.407168 ], [ 119.531250, -8.407168 ], [ 119.531250, -9.795678 ], [ 118.125000, -9.795678 ], [ 118.125000, -8.407168 ] ] ], [ [ [ 97.031250, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 4.214943 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.562500, -8.407168 ], [ 126.562500, -9.795678 ], [ 125.156250, -9.795678 ], [ 125.156250, -8.407168 ], [ 126.562500, -8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -39.909736 ], [ 144.843750, -40.979898 ], [ 147.656250, -40.979898 ], [ 147.656250, -43.068888 ], [ 144.843750, -43.068888 ], [ 144.843750, -42.032974 ], [ 143.437500, -42.032974 ], [ 143.437500, -39.909736 ], [ 144.843750, -39.909736 ] ] ], [ [ [ 142.031250, -11.178402 ], [ 142.031250, -12.554564 ], [ 143.437500, -12.554564 ], [ 143.437500, -13.923404 ], [ 144.843750, -13.923404 ], [ 144.843750, -17.978733 ], [ 146.250000, -17.978733 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 150.468750, -21.943046 ], [ 150.468750, -23.241346 ], [ 151.875000, -23.241346 ], [ 151.875000, -27.059126 ], [ 153.281250, -27.059126 ], [ 153.281250, -29.535230 ], [ 151.875000, -29.535230 ], [ 151.875000, -31.952162 ], [ 150.468750, -31.952162 ], [ 150.468750, -35.460670 ], [ 149.062500, -35.460670 ], [ 149.062500, -37.718590 ], [ 146.250000, -37.718590 ], [ 146.250000, -38.822591 ], [ 144.843750, -38.822591 ], [ 144.843750, -37.718590 ], [ 139.218750, -37.718590 ], [ 139.218750, -35.460670 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -33.137551 ], [ 133.593750, -33.137551 ], [ 133.593750, -31.952162 ], [ 130.781250, -31.952162 ], [ 130.781250, -30.751278 ], [ 127.968750, -30.751278 ], [ 127.968750, -31.952162 ], [ 123.750000, -31.952162 ], [ 123.750000, -33.137551 ], [ 119.531250, -33.137551 ], [ 119.531250, -34.307144 ], [ 113.906250, -34.307144 ], [ 113.906250, -33.137551 ], [ 115.312500, -33.137551 ], [ 115.312500, -30.751278 ], [ 113.906250, -30.751278 ], [ 113.906250, -27.059126 ], [ 112.500000, -27.059126 ], [ 112.500000, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -24.527135 ], [ 112.500000, -24.527135 ], [ 112.500000, -21.943046 ], [ 113.906250, -21.943046 ], [ 113.906250, -20.632784 ], [ 118.125000, -20.632784 ], [ 118.125000, -19.311143 ], [ 120.937500, -19.311143 ], [ 120.937500, -16.636192 ], [ 122.343750, -16.636192 ], [ 122.343750, -15.284185 ], [ 123.750000, -15.284185 ], [ 123.750000, -13.923404 ], [ 129.375000, -13.923404 ], [ 129.375000, -11.178402 ], [ 136.406250, -11.178402 ], [ 136.406250, -12.554564 ], [ 135.000000, -12.554564 ], [ 135.000000, -15.284185 ], [ 136.406250, -15.284185 ], [ 136.406250, -16.636192 ], [ 140.625000, -16.636192 ], [ 140.625000, -11.178402 ], [ 142.031250, -11.178402 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.656250, -40.979898 ], [ 147.656250, -44.087585 ], [ 146.250000, -44.087585 ], [ 146.250000, -43.068888 ], [ 144.843750, -43.068888 ], [ 144.843750, -40.979898 ], [ 147.656250, -40.979898 ] ] ], [ [ [ 143.437500, -11.178402 ], [ 143.437500, -13.923404 ], [ 144.843750, -13.923404 ], [ 144.843750, -16.636192 ], [ 146.250000, -16.636192 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 150.468750, -21.943046 ], [ 150.468750, -24.527135 ], [ 151.875000, -24.527135 ], [ 151.875000, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -34.307144 ], [ 150.468750, -34.307144 ], [ 150.468750, -37.718590 ], [ 147.656250, -37.718590 ], [ 147.656250, -38.822591 ], [ 140.625000, -38.822591 ], [ 140.625000, -37.718590 ], [ 139.218750, -37.718590 ], [ 139.218750, -35.460670 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -35.460670 ], [ 135.000000, -35.460670 ], [ 135.000000, -33.137551 ], [ 133.593750, -33.137551 ], [ 133.593750, -31.952162 ], [ 126.562500, -31.952162 ], [ 126.562500, -33.137551 ], [ 123.750000, -33.137551 ], [ 123.750000, -34.307144 ], [ 118.125000, -34.307144 ], [ 118.125000, -35.460670 ], [ 115.312500, -35.460670 ], [ 115.312500, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -20.632784 ], [ 120.937500, -20.632784 ], [ 120.937500, -19.311143 ], [ 122.343750, -19.311143 ], [ 122.343750, -16.636192 ], [ 123.750000, -16.636192 ], [ 123.750000, -15.284185 ], [ 125.156250, -15.284185 ], [ 125.156250, -13.923404 ], [ 127.968750, -13.923404 ], [ 127.968750, -15.284185 ], [ 129.375000, -15.284185 ], [ 129.375000, -13.923404 ], [ 130.781250, -13.923404 ], [ 130.781250, -12.554564 ], [ 132.187500, -12.554564 ], [ 132.187500, -11.178402 ], [ 133.593750, -11.178402 ], [ 133.593750, -12.554564 ], [ 136.406250, -12.554564 ], [ 136.406250, -16.636192 ], [ 139.218750, -16.636192 ], [ 139.218750, -17.978733 ], [ 140.625000, -17.978733 ], [ 140.625000, -16.636192 ], [ 142.031250, -16.636192 ], [ 142.031250, -11.178402 ], [ 143.437500, -11.178402 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, -2.811371 ], [ 143.437500, -4.214943 ], [ 144.843750, -4.214943 ], [ 144.843750, -5.615986 ], [ 146.250000, -5.615986 ], [ 146.250000, -7.013668 ], [ 147.656250, -7.013668 ], [ 147.656250, -8.407168 ], [ 149.062500, -8.407168 ], [ 149.062500, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 144.843750, -8.407168 ], [ 144.843750, -7.013668 ], [ 142.031250, -7.013668 ], [ 142.031250, -8.407168 ], [ 140.625000, -8.407168 ], [ 140.625000, -2.811371 ], [ 143.437500, -2.811371 ] ] ], [ [ [ 150.468750, -4.214943 ], [ 150.468750, -5.615986 ], [ 147.656250, -5.615986 ], [ 147.656250, -4.214943 ], [ 150.468750, -4.214943 ] ] ], [ [ [ 154.687500, -4.214943 ], [ 154.687500, -5.615986 ], [ 153.281250, -5.615986 ], [ 153.281250, -4.214943 ], [ 154.687500, -4.214943 ] ] ], [ [ [ 151.875000, -4.214943 ], [ 150.468750, -4.214943 ], [ 150.468750, -2.811371 ], [ 151.875000, -2.811371 ], [ 151.875000, -4.214943 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, -2.811371 ], [ 143.437500, -4.214943 ], [ 146.250000, -4.214943 ], [ 146.250000, -5.615986 ], [ 147.656250, -5.615986 ], [ 147.656250, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.795678 ], [ 140.625000, -9.795678 ], [ 140.625000, -2.811371 ], [ 143.437500, -2.811371 ] ] ], [ [ [ 156.093750, -5.615986 ], [ 156.093750, -7.013668 ], [ 154.687500, -7.013668 ], [ 154.687500, -5.615986 ], [ 156.093750, -5.615986 ] ] ], [ [ [ 150.468750, -5.615986 ], [ 150.468750, -7.013668 ], [ 149.062500, -7.013668 ], [ 149.062500, -5.615986 ], [ 150.468750, -5.615986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.312500, -8.407168 ], [ 160.312500, -9.795678 ], [ 158.906250, -9.795678 ], [ 158.906250, -8.407168 ], [ 160.312500, -8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.937500, -20.632784 ], [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ], [ 164.531250, -20.632784 ], [ 165.937500, -20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.531250, -20.632784 ], [ 163.125000, -20.632784 ], [ 163.125000, -19.311143 ], [ 164.531250, -19.311143 ], [ 164.531250, -20.632784 ] ] ], [ [ [ 164.531250, -20.632784 ], [ 165.937500, -20.632784 ], [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ], [ 164.531250, -20.632784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.375000, -42.032974 ], [ 174.375000, -43.068888 ], [ 172.968750, -43.068888 ], [ 172.968750, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -47.040182 ], [ 167.343750, -47.040182 ], [ 167.343750, -45.089036 ], [ 168.750000, -45.089036 ], [ 168.750000, -44.087585 ], [ 170.156250, -44.087585 ], [ 170.156250, -43.068888 ], [ 171.562500, -43.068888 ], [ 171.562500, -40.979898 ], [ 174.375000, -40.979898 ], [ 174.375000, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -38.822591 ], [ 177.187500, -38.822591 ], [ 177.187500, -40.979898 ], [ 175.781250, -40.979898 ], [ 175.781250, -42.032974 ], [ 174.375000, -42.032974 ] ] ], [ [ [ -185.625000, -42.032974 ], [ -185.625000, -43.068888 ], [ -187.031250, -43.068888 ], [ -187.031250, -40.979898 ], [ -185.625000, -40.979898 ], [ -185.625000, -37.718590 ], [ -181.406250, -37.718590 ], [ -181.406250, -38.822591 ], [ -182.812500, -38.822591 ], [ -182.812500, -40.979898 ], [ -184.218750, -40.979898 ], [ -184.218750, -42.032974 ], [ -185.625000, -42.032974 ] ] ], [ [ [ -185.625000, -36.597889 ], [ -187.031250, -36.597889 ], [ -187.031250, -35.460670 ], [ -185.625000, -35.460670 ], [ -185.625000, -36.597889 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 172.968750, -36.597889 ], [ 172.968750, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -39.909736 ], [ 172.968750, -43.068888 ], [ 171.562500, -43.068888 ], [ 171.562500, -44.087585 ], [ 170.156250, -44.087585 ], [ 170.156250, -46.073231 ], [ 165.937500, -46.073231 ], [ 165.937500, -45.089036 ], [ 167.343750, -45.089036 ], [ 167.343750, -44.087585 ], [ 168.750000, -44.087585 ], [ 168.750000, -43.068888 ], [ 170.156250, -43.068888 ], [ 170.156250, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -39.909736 ], [ 172.968750, -39.909736 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 175.781250, -36.597889 ], [ 175.781250, -37.718590 ], [ 177.187500, -37.718590 ], [ 177.187500, -38.822591 ], [ 175.781250, -38.822591 ], [ 175.781250, -40.979898 ], [ 174.375000, -40.979898 ], [ 174.375000, -39.909736 ], [ 172.968750, -39.909736 ], [ 172.968750, -38.822591 ], [ 174.375000, -38.822591 ], [ 174.375000, -36.597889 ] ] ], [ [ [ -185.625000, -36.597889 ], [ -184.218750, -36.597889 ], [ -184.218750, -37.718590 ], [ -182.812500, -37.718590 ], [ -182.812500, -38.822591 ], [ -184.218750, -38.822591 ], [ -184.218750, -40.979898 ], [ -185.625000, -40.979898 ], [ -185.625000, -39.909736 ], [ -187.031250, -39.909736 ], [ -187.031250, -38.822591 ], [ -185.625000, -38.822591 ], [ -185.625000, -36.597889 ] ] ], [ [ [ -185.625000, -36.597889 ], [ -187.031250, -36.597889 ], [ -187.031250, -35.460670 ], [ -185.625000, -35.460670 ], [ -185.625000, -36.597889 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 172.968750, -36.597889 ], [ 172.968750, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 3.513421 ], [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -75.234375, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 3.513421 ], [ -67.500000, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.015625, -4.214943 ], [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ] ] ], [ [ [ -68.203125, 2.811371 ], [ -67.500000, 2.811371 ], [ -67.500000, 2.108899 ], [ -70.312500, 2.108899 ], [ -70.312500, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, 0.000000 ], [ -69.609375, 0.000000 ], [ -69.609375, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -2.108899 ], [ -73.125000, -2.108899 ], [ -73.125000, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.406109 ], [ -79.453125, 1.406109 ], [ -79.453125, 2.108899 ], [ -78.750000, 2.108899 ], [ -78.750000, 2.811371 ], [ -78.046875, 2.811371 ], [ -78.046875, 3.513421 ], [ -68.203125, 3.513421 ], [ -68.203125, 2.811371 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, 3.513421 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 0.703107 ], [ -66.796875, 0.703107 ], [ -66.796875, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 3.513421 ], [ -64.687500, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, 3.513421 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 2.108899 ], [ -64.687500, 2.108899 ], [ -64.687500, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 2.811371 ], [ -68.203125, 2.811371 ], [ -68.203125, 3.513421 ], [ -64.687500, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, 3.513421 ], [ -56.953125, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 3.513421 ], [ -56.953125, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, 3.513421 ], [ -57.656250, 2.108899 ], [ -59.062500, 2.108899 ], [ -59.062500, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 2.811371 ], [ -60.468750, 2.811371 ], [ -60.468750, 3.513421 ], [ -57.656250, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 3.513421 ], [ -54.140625, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 3.513421 ], [ -54.140625, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, 3.513421 ], [ -54.843750, 2.811371 ], [ -56.250000, 2.811371 ], [ -56.250000, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 3.513421 ], [ -54.843750, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.031250, 3.513421 ], [ -52.031250, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 2.108899 ], [ -54.140625, 2.108899 ], [ -54.140625, 3.513421 ], [ -52.031250, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.734375, 3.513421 ], [ -52.734375, 2.811371 ], [ -53.437500, 2.811371 ], [ -53.437500, 2.108899 ], [ -54.843750, 2.108899 ], [ -54.843750, 3.513421 ], [ -52.734375, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 0.703107 ], [ -77.343750, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -78.750000, -3.513421 ], [ -78.750000, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -3.513421 ], [ -79.453125, -3.513421 ], [ -79.453125, -2.811371 ], [ -80.859375, -2.811371 ], [ -80.859375, -0.703107 ], [ -80.156250, -0.703107 ], [ -80.156250, 0.703107 ], [ -77.343750, 0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.046875, 1.406109 ], [ -78.046875, 0.703107 ], [ -75.937500, 0.703107 ], [ -75.937500, -0.703107 ], [ -75.234375, -0.703107 ], [ -75.234375, -1.406109 ], [ -75.937500, -1.406109 ], [ -75.937500, -2.108899 ], [ -76.640625, -2.108899 ], [ -76.640625, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -78.750000, -3.513421 ], [ -78.750000, -4.915833 ], [ -80.156250, -4.915833 ], [ -80.156250, -4.214943 ], [ -80.859375, -4.214943 ], [ -80.859375, -2.811371 ], [ -80.156250, -2.811371 ], [ -80.156250, -2.108899 ], [ -80.859375, -2.108899 ], [ -80.859375, -1.406109 ], [ -81.562500, -1.406109 ], [ -81.562500, -0.703107 ], [ -80.859375, -0.703107 ], [ -80.859375, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 1.406109 ], [ -78.046875, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -0.703107 ], [ -73.828125, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.015625, -4.214943 ], [ -71.015625, -4.915833 ], [ -71.718750, -4.915833 ], [ -71.718750, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -73.828125, -7.013668 ], [ -73.828125, -9.102097 ], [ -73.125000, -9.102097 ], [ -73.125000, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -11.178402 ], [ -69.609375, -11.178402 ], [ -69.609375, -11.867351 ], [ -68.906250, -11.867351 ], [ -68.906250, -15.961329 ], [ -69.609375, -15.961329 ], [ -69.609375, -16.636192 ], [ -68.906250, -16.636192 ], [ -68.906250, -17.308688 ], [ -69.609375, -17.308688 ], [ -69.609375, -18.646245 ], [ -71.718750, -18.646245 ], [ -71.718750, -17.308688 ], [ -73.125000, -17.308688 ], [ -73.125000, -16.636192 ], [ -73.828125, -16.636192 ], [ -73.828125, -15.961329 ], [ -75.234375, -15.961329 ], [ -75.234375, -15.284185 ], [ -75.937500, -15.284185 ], [ -75.937500, -14.604847 ], [ -76.640625, -14.604847 ], [ -76.640625, -13.923404 ], [ -75.937500, -13.923404 ], [ -75.937500, -13.239945 ], [ -77.343750, -13.239945 ], [ -77.343750, -11.867351 ], [ -78.046875, -11.867351 ], [ -78.046875, -9.795678 ], [ -78.750000, -9.795678 ], [ -78.750000, -8.407168 ], [ -79.453125, -8.407168 ], [ -79.453125, -7.013668 ], [ -80.859375, -7.013668 ], [ -80.859375, -5.615986 ], [ -81.562500, -5.615986 ], [ -81.562500, -4.915833 ], [ -80.859375, -4.915833 ], [ -80.859375, -4.214943 ], [ -79.453125, -4.214943 ], [ -79.453125, -4.915833 ], [ -78.750000, -4.915833 ], [ -78.750000, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, -2.108899 ], [ -75.234375, -2.108899 ], [ -75.234375, -0.703107 ], [ -73.828125, -0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.531250, 0.000000 ], [ -74.531250, -0.703107 ], [ -73.828125, -0.703107 ], [ -73.828125, -1.406109 ], [ -73.125000, -1.406109 ], [ -73.125000, -2.108899 ], [ -70.312500, -2.108899 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -4.214943 ], [ -72.421875, -4.214943 ], [ -72.421875, -4.915833 ], [ -73.125000, -4.915833 ], [ -73.125000, -5.615986 ], [ -73.828125, -5.615986 ], [ -73.828125, -7.013668 ], [ -74.531250, -7.013668 ], [ -74.531250, -7.710992 ], [ -73.828125, -7.710992 ], [ -73.828125, -8.407168 ], [ -73.125000, -8.407168 ], [ -73.125000, -9.795678 ], [ -71.015625, -9.795678 ], [ -71.015625, -10.487812 ], [ -69.609375, -10.487812 ], [ -69.609375, -11.867351 ], [ -68.906250, -11.867351 ], [ -68.906250, -13.239945 ], [ -69.609375, -13.239945 ], [ -69.609375, -17.978733 ], [ -71.718750, -17.978733 ], [ -71.718750, -17.308688 ], [ -72.421875, -17.308688 ], [ -72.421875, -16.636192 ], [ -73.828125, -16.636192 ], [ -73.828125, -15.961329 ], [ -74.531250, -15.961329 ], [ -74.531250, -15.284185 ], [ -75.937500, -15.284185 ], [ -75.937500, -14.604847 ], [ -76.640625, -14.604847 ], [ -76.640625, -12.554564 ], [ -77.343750, -12.554564 ], [ -77.343750, -11.867351 ], [ -78.046875, -11.867351 ], [ -78.046875, -10.487812 ], [ -78.750000, -10.487812 ], [ -78.750000, -9.102097 ], [ -79.453125, -9.102097 ], [ -79.453125, -7.710992 ], [ -80.156250, -7.710992 ], [ -80.156250, -7.013668 ], [ -80.859375, -7.013668 ], [ -80.859375, -6.315299 ], [ -81.562500, -6.315299 ], [ -81.562500, -3.513421 ], [ -80.859375, -3.513421 ], [ -80.859375, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -4.915833 ], [ -78.750000, -4.915833 ], [ -78.750000, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -76.640625, -2.811371 ], [ -76.640625, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.703107 ], [ -75.937500, -0.703107 ], [ -75.937500, 0.000000 ], [ -74.531250, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.609375, -52.482780 ], [ -68.906250, -52.482780 ], [ -68.906250, -54.977614 ], [ -66.796875, -54.977614 ], [ -66.796875, -55.379110 ], [ -67.500000, -55.379110 ], [ -67.500000, -55.776573 ], [ -68.906250, -55.776573 ], [ -68.906250, -55.379110 ], [ -71.015625, -55.379110 ], [ -71.015625, -54.977614 ], [ -72.421875, -54.977614 ], [ -72.421875, -54.572062 ], [ -73.125000, -54.572062 ], [ -73.125000, -54.162434 ], [ -73.828125, -54.162434 ], [ -73.828125, -53.330873 ], [ -74.531250, -53.330873 ], [ -74.531250, -52.908902 ], [ -74.531250, -52.482780 ], [ -75.234375, -52.482780 ], [ -75.234375, -49.382373 ], [ -75.937500, -49.382373 ], [ -75.937500, -47.989922 ], [ -75.234375, -47.989922 ], [ -75.234375, -47.517201 ], [ -73.828125, -47.517201 ], [ -73.828125, -47.040182 ], [ -75.234375, -47.040182 ], [ -75.234375, -46.073231 ], [ -74.531250, -46.073231 ], [ -74.531250, -44.590467 ], [ -73.125000, -44.590467 ], [ -73.125000, -43.580391 ], [ -72.421875, -43.580391 ], [ -72.421875, -43.068888 ], [ -71.718750, -43.068888 ], [ -71.718750, -44.590467 ], [ -71.015625, -44.590467 ], [ -71.015625, -45.089036 ], [ -71.718750, -45.089036 ], [ -71.718750, -47.517201 ], [ -72.421875, -47.517201 ], [ -72.421875, -49.382373 ], [ -73.125000, -49.382373 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -52.052490 ], [ -69.609375, -52.052490 ], [ -69.609375, -52.482780 ] ], [ [ -72.421875, -53.748711 ], [ -72.421875, -54.162434 ], [ -70.312500, -54.162434 ], [ -70.312500, -52.908902 ], [ -71.015625, -52.908902 ], [ -71.015625, -53.748711 ], [ -72.421875, -53.748711 ] ], [ [ -73.125000, -53.330873 ], [ -73.125000, -53.748711 ], [ -72.421875, -53.748711 ], [ -72.421875, -53.330873 ], [ -73.125000, -53.330873 ] ] ], [ [ [ -68.906250, -17.978733 ], [ -68.906250, -19.311143 ], [ -68.203125, -19.311143 ], [ -68.203125, -19.973349 ], [ -68.906250, -19.973349 ], [ -68.906250, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -21.943046 ], [ -67.500000, -21.943046 ], [ -67.500000, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -23.885838 ], [ -67.500000, -23.885838 ], [ -67.500000, -24.527135 ], [ -68.203125, -24.527135 ], [ -68.203125, -26.431228 ], [ -68.906250, -26.431228 ], [ -68.906250, -27.059126 ], [ -68.203125, -27.059126 ], [ -68.203125, -27.683528 ], [ -68.906250, -27.683528 ], [ -68.906250, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.921631 ], [ -70.312500, -28.921631 ], [ -70.312500, -30.145127 ], [ -69.609375, -30.145127 ], [ -69.609375, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -33.137551 ], [ -69.609375, -33.137551 ], [ -69.609375, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -38.822591 ], [ -71.718750, -38.822591 ], [ -71.718750, -42.032974 ], [ -72.421875, -42.032974 ], [ -72.421875, -42.553080 ], [ -73.125000, -42.553080 ], [ -73.125000, -43.068888 ], [ -73.828125, -43.068888 ], [ -73.828125, -43.580391 ], [ -74.531250, -43.580391 ], [ -74.531250, -42.553080 ], [ -73.828125, -42.553080 ], [ -73.828125, -39.909736 ], [ -73.125000, -39.909736 ], [ -73.125000, -38.822591 ], [ -73.828125, -38.822591 ], [ -73.828125, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.597889 ], [ -72.421875, -36.597889 ], [ -72.421875, -34.885931 ], [ -71.718750, -34.885931 ], [ -71.718750, -28.304381 ], [ -71.015625, -28.304381 ], [ -71.015625, -25.165173 ], [ -70.312500, -25.165173 ], [ -70.312500, -18.646245 ], [ -69.609375, -18.646245 ], [ -69.609375, -17.978733 ], [ -68.906250, -17.978733 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125000, -53.330873 ], [ -73.125000, -52.908902 ], [ -73.828125, -52.908902 ], [ -73.828125, -52.482780 ], [ -75.234375, -52.482780 ], [ -75.234375, -52.052490 ], [ -75.937500, -52.052490 ], [ -75.937500, -51.179343 ], [ -75.234375, -51.179343 ], [ -75.234375, -50.736455 ], [ -75.937500, -50.736455 ], [ -75.937500, -47.989922 ], [ -75.234375, -47.989922 ], [ -75.234375, -47.040182 ], [ -74.531250, -47.040182 ], [ -74.531250, -46.558860 ], [ -75.937500, -46.558860 ], [ -75.937500, -46.073231 ], [ -75.234375, -46.073231 ], [ -75.234375, -45.089036 ], [ -74.531250, -45.089036 ], [ -74.531250, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.828125, -43.068888 ], [ -74.531250, -43.068888 ], [ -74.531250, -40.979898 ], [ -73.828125, -40.979898 ], [ -73.828125, -36.031332 ], [ -73.125000, -36.031332 ], [ -73.125000, -34.885931 ], [ -72.421875, -34.885931 ], [ -72.421875, -33.137551 ], [ -71.718750, -33.137551 ], [ -71.718750, -27.683528 ], [ -71.015625, -27.683528 ], [ -71.015625, -22.593726 ], [ -70.312500, -22.593726 ], [ -70.312500, -18.646245 ], [ -71.015625, -18.646245 ], [ -71.015625, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -21.943046 ], [ -68.203125, -21.943046 ], [ -68.203125, -22.593726 ], [ -67.500000, -22.593726 ], [ -67.500000, -23.885838 ], [ -68.906250, -23.885838 ], [ -68.906250, -27.059126 ], [ -69.609375, -27.059126 ], [ -69.609375, -27.683528 ], [ -70.312500, -27.683528 ], [ -70.312500, -30.751278 ], [ -71.015625, -30.751278 ], [ -71.015625, -31.952162 ], [ -70.312500, -31.952162 ], [ -70.312500, -34.307144 ], [ -71.015625, -34.307144 ], [ -71.015625, -36.031332 ], [ -71.718750, -36.031332 ], [ -71.718750, -37.718590 ], [ -71.015625, -37.718590 ], [ -71.015625, -38.822591 ], [ -71.718750, -38.822591 ], [ -71.718750, -39.909736 ], [ -72.421875, -39.909736 ], [ -72.421875, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -46.073231 ], [ -72.421875, -46.073231 ], [ -72.421875, -47.040182 ], [ -73.125000, -47.040182 ], [ -73.125000, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -48.458352 ], [ -73.125000, -48.458352 ], [ -73.125000, -48.922499 ], [ -73.828125, -48.922499 ], [ -73.828125, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -51.618017 ], [ -71.718750, -51.618017 ], [ -71.718750, -52.052490 ], [ -69.609375, -52.052490 ], [ -69.609375, -52.482780 ], [ -68.906250, -52.482780 ], [ -68.906250, -54.572062 ], [ -67.500000, -54.572062 ], [ -67.500000, -55.379110 ], [ -70.312500, -55.379110 ], [ -70.312500, -54.977614 ], [ -71.718750, -54.977614 ], [ -71.718750, -54.572062 ], [ -72.421875, -54.572062 ], [ -72.421875, -54.162434 ], [ -73.828125, -54.162434 ], [ -73.828125, -53.748711 ], [ -74.531250, -53.748711 ], [ -74.531250, -53.330873 ], [ -73.125000, -53.330873 ] ], [ [ -71.015625, -53.330873 ], [ -70.312500, -53.330873 ], [ -70.312500, -52.908902 ], [ -69.609375, -52.908902 ], [ -69.609375, -52.482780 ], [ -71.015625, -52.482780 ], [ -71.015625, -53.330873 ] ], [ [ -73.828125, -42.032974 ], [ -73.828125, -43.068888 ], [ -73.125000, -43.068888 ], [ -73.125000, -42.032974 ], [ -73.828125, -42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.795678 ], [ -65.390625, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -13.239945 ], [ -61.171875, -13.239945 ], [ -61.171875, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -15.961329 ], [ -59.765625, -15.961329 ], [ -59.765625, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -17.308688 ], [ -57.656250, -17.308688 ], [ -57.656250, -19.973349 ], [ -59.062500, -19.973349 ], [ -59.062500, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -19.973349 ], [ -62.578125, -19.973349 ], [ -62.578125, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.593726 ], [ -64.687500, -22.593726 ], [ -64.687500, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -22.593726 ], [ -67.500000, -22.593726 ], [ -67.500000, -21.943046 ], [ -68.203125, -21.943046 ], [ -68.203125, -21.289374 ], [ -68.906250, -21.289374 ], [ -68.906250, -19.973349 ], [ -68.203125, -19.973349 ], [ -68.203125, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.308688 ], [ -68.906250, -17.308688 ], [ -68.906250, -16.636192 ], [ -69.609375, -16.636192 ], [ -69.609375, -15.961329 ], [ -68.906250, -15.961329 ], [ -68.906250, -11.867351 ], [ -69.609375, -11.867351 ], [ -69.609375, -11.178402 ], [ -68.203125, -11.178402 ], [ -68.203125, -10.487812 ], [ -66.796875, -10.487812 ], [ -66.796875, -9.795678 ], [ -65.390625, -9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, -9.795678 ], [ -66.093750, -10.487812 ], [ -65.390625, -10.487812 ], [ -65.390625, -11.178402 ], [ -66.093750, -11.178402 ], [ -66.093750, -11.867351 ], [ -64.687500, -11.867351 ], [ -64.687500, -12.554564 ], [ -62.578125, -12.554564 ], [ -62.578125, -13.239945 ], [ -61.171875, -13.239945 ], [ -61.171875, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -14.604847 ], [ -61.171875, -14.604847 ], [ -61.171875, -15.284185 ], [ -60.468750, -15.284185 ], [ -60.468750, -15.961329 ], [ -58.359375, -15.961329 ], [ -58.359375, -17.978733 ], [ -57.656250, -17.978733 ], [ -57.656250, -18.646245 ], [ -58.359375, -18.646245 ], [ -58.359375, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -19.973349 ], [ -62.578125, -19.973349 ], [ -62.578125, -21.289374 ], [ -63.281250, -21.289374 ], [ -63.281250, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.593726 ], [ -65.390625, -22.593726 ], [ -65.390625, -21.943046 ], [ -67.500000, -21.943046 ], [ -67.500000, -22.593726 ], [ -68.203125, -22.593726 ], [ -68.203125, -21.943046 ], [ -68.906250, -21.943046 ], [ -68.906250, -19.311143 ], [ -69.609375, -19.311143 ], [ -69.609375, -13.239945 ], [ -68.906250, -13.239945 ], [ -68.906250, -11.867351 ], [ -69.609375, -11.867351 ], [ -69.609375, -10.487812 ], [ -67.500000, -10.487812 ], [ -67.500000, -9.795678 ], [ -66.093750, -9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.328125, 3.513421 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 1.406109 ], [ -49.921875, 1.406109 ], [ -49.921875, 0.000000 ], [ -48.515625, 0.000000 ], [ -48.515625, -1.406109 ], [ -47.812500, -1.406109 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.811371 ], [ -43.593750, -2.811371 ], [ -43.593750, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -4.214943 ], [ -37.968750, -4.214943 ], [ -37.968750, -4.915833 ], [ -35.859375, -4.915833 ], [ -35.859375, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -7.013668 ], [ -34.453125, -7.013668 ], [ -34.453125, -8.407168 ], [ -35.156250, -8.407168 ], [ -35.156250, -9.795678 ], [ -35.859375, -9.795678 ], [ -35.859375, -10.487812 ], [ -36.562500, -10.487812 ], [ -36.562500, -11.178402 ], [ -37.265625, -11.178402 ], [ -37.265625, -11.867351 ], [ -37.968750, -11.867351 ], [ -37.968750, -12.554564 ], [ -38.671875, -12.554564 ], [ -38.671875, -16.636192 ], [ -39.375000, -16.636192 ], [ -39.375000, -18.646245 ], [ -40.078125, -18.646245 ], [ -40.078125, -19.973349 ], [ -40.781250, -19.973349 ], [ -40.781250, -22.593726 ], [ -41.484375, -22.593726 ], [ -41.484375, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.885838 ], [ -46.406250, -23.885838 ], [ -46.406250, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -25.165173 ], [ -47.812500, -25.165173 ], [ -47.812500, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -28.921631 ], [ -49.921875, -28.921631 ], [ -49.921875, -30.145127 ], [ -50.625000, -30.145127 ], [ -50.625000, -31.353637 ], [ -51.328125, -31.353637 ], [ -51.328125, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -32.546813 ], [ -52.734375, -32.546813 ], [ -52.734375, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -31.952162 ], [ -54.843750, -31.952162 ], [ -54.843750, -31.353637 ], [ -55.546875, -31.353637 ], [ -55.546875, -30.751278 ], [ -56.953125, -30.751278 ], [ -56.953125, -29.535230 ], [ -56.250000, -29.535230 ], [ -56.250000, -28.921631 ], [ -55.546875, -28.921631 ], [ -55.546875, -28.304381 ], [ -54.843750, -28.304381 ], [ -54.843750, -27.683528 ], [ -53.437500, -27.683528 ], [ -53.437500, -26.431228 ], [ -54.140625, -26.431228 ], [ -54.140625, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -22.593726 ], [ -57.656250, -22.593726 ], [ -57.656250, -20.632784 ], [ -58.359375, -20.632784 ], [ -58.359375, -19.973349 ], [ -57.656250, -19.973349 ], [ -57.656250, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.636192 ], [ -59.765625, -16.636192 ], [ -59.765625, -15.961329 ], [ -60.468750, -15.961329 ], [ -60.468750, -13.923404 ], [ -61.171875, -13.923404 ], [ -61.171875, -13.239945 ], [ -63.281250, -13.239945 ], [ -63.281250, -12.554564 ], [ -65.390625, -12.554564 ], [ -65.390625, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -10.487812 ], [ -68.203125, -10.487812 ], [ -68.203125, -11.178402 ], [ -70.312500, -11.178402 ], [ -70.312500, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -9.102097 ], [ -73.828125, -9.102097 ], [ -73.828125, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -71.718750, -5.615986 ], [ -71.718750, -4.915833 ], [ -71.015625, -4.915833 ], [ -71.015625, -4.214943 ], [ -69.609375, -4.214943 ], [ -69.609375, -0.703107 ], [ -70.312500, -0.703107 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 3.513421 ], [ -59.765625, 3.513421 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 3.513421 ], [ -51.328125, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.328125, 3.513421 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 0.703107 ], [ -51.328125, 0.703107 ], [ -51.328125, 0.000000 ], [ -49.218750, 0.000000 ], [ -49.218750, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -4.214943 ], [ -37.265625, -4.214943 ], [ -37.265625, -4.915833 ], [ -35.859375, -4.915833 ], [ -35.859375, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -9.102097 ], [ -35.859375, -9.102097 ], [ -35.859375, -9.795678 ], [ -36.562500, -9.795678 ], [ -36.562500, -10.487812 ], [ -37.265625, -10.487812 ], [ -37.265625, -11.178402 ], [ -37.968750, -11.178402 ], [ -37.968750, -12.554564 ], [ -38.671875, -12.554564 ], [ -38.671875, -13.239945 ], [ -39.375000, -13.239945 ], [ -39.375000, -17.978733 ], [ -40.078125, -17.978733 ], [ -40.078125, -19.973349 ], [ -40.781250, -19.973349 ], [ -40.781250, -21.289374 ], [ -41.484375, -21.289374 ], [ -41.484375, -21.943046 ], [ -42.187500, -21.943046 ], [ -42.187500, -22.593726 ], [ -43.593750, -22.593726 ], [ -43.593750, -23.241346 ], [ -45.703125, -23.241346 ], [ -45.703125, -23.885838 ], [ -47.109375, -23.885838 ], [ -47.109375, -24.527135 ], [ -47.812500, -24.527135 ], [ -47.812500, -25.165173 ], [ -48.515625, -25.165173 ], [ -48.515625, -26.431228 ], [ -49.218750, -26.431228 ], [ -49.218750, -27.059126 ], [ -48.515625, -27.059126 ], [ -48.515625, -27.683528 ], [ -49.218750, -27.683528 ], [ -49.218750, -28.921631 ], [ -49.921875, -28.921631 ], [ -49.921875, -29.535230 ], [ -50.625000, -29.535230 ], [ -50.625000, -30.751278 ], [ -51.328125, -30.751278 ], [ -51.328125, -31.353637 ], [ -52.031250, -31.353637 ], [ -52.031250, -31.952162 ], [ -52.734375, -31.952162 ], [ -52.734375, -33.724340 ], [ -54.140625, -33.724340 ], [ -54.140625, -33.137551 ], [ -53.437500, -33.137551 ], [ -53.437500, -32.546813 ], [ -54.140625, -32.546813 ], [ -54.140625, -31.952162 ], [ -54.843750, -31.952162 ], [ -54.843750, -31.353637 ], [ -56.250000, -31.353637 ], [ -56.250000, -30.751278 ], [ -56.953125, -30.751278 ], [ -56.953125, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -27.059126 ], [ -54.140625, -27.059126 ], [ -54.140625, -25.165173 ], [ -54.843750, -25.165173 ], [ -54.843750, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -23.241346 ], [ -56.250000, -23.241346 ], [ -56.250000, -21.943046 ], [ -58.359375, -21.943046 ], [ -58.359375, -18.646245 ], [ -57.656250, -18.646245 ], [ -57.656250, -17.978733 ], [ -58.359375, -17.978733 ], [ -58.359375, -15.961329 ], [ -60.468750, -15.961329 ], [ -60.468750, -15.284185 ], [ -61.171875, -15.284185 ], [ -61.171875, -14.604847 ], [ -60.468750, -14.604847 ], [ -60.468750, -13.923404 ], [ -61.171875, -13.923404 ], [ -61.171875, -13.239945 ], [ -62.578125, -13.239945 ], [ -62.578125, -12.554564 ], [ -64.687500, -12.554564 ], [ -64.687500, -11.867351 ], [ -66.093750, -11.867351 ], [ -66.093750, -11.178402 ], [ -65.390625, -11.178402 ], [ -65.390625, -10.487812 ], [ -66.093750, -10.487812 ], [ -66.093750, -9.795678 ], [ -67.500000, -9.795678 ], [ -67.500000, -10.487812 ], [ -71.015625, -10.487812 ], [ -71.015625, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -8.407168 ], [ -73.828125, -8.407168 ], [ -73.828125, -7.710992 ], [ -74.531250, -7.710992 ], [ -74.531250, -7.013668 ], [ -73.828125, -7.013668 ], [ -73.828125, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -69.609375, -2.811371 ], [ -69.609375, 0.000000 ], [ -70.312500, 0.000000 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -70.312500, 1.406109 ], [ -70.312500, 2.108899 ], [ -67.500000, 2.108899 ], [ -67.500000, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 2.108899 ], [ -63.984375, 2.108899 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 3.513421 ], [ -60.468750, 3.513421 ], [ -60.468750, 2.811371 ], [ -59.765625, 2.811371 ], [ -59.765625, 1.406109 ], [ -59.062500, 1.406109 ], [ -59.062500, 2.108899 ], [ -56.250000, 2.108899 ], [ -56.250000, 2.811371 ], [ -54.843750, 2.811371 ], [ -54.843750, 2.108899 ], [ -53.437500, 2.108899 ], [ -53.437500, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 3.513421 ], [ -51.328125, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -19.973349 ], [ -58.359375, -19.973349 ], [ -58.359375, -20.632784 ], [ -57.656250, -20.632784 ], [ -57.656250, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.885838 ], [ -54.140625, -23.885838 ], [ -54.140625, -25.799891 ], [ -54.843750, -25.799891 ], [ -54.843750, -27.059126 ], [ -55.546875, -27.059126 ], [ -55.546875, -27.683528 ], [ -58.359375, -27.683528 ], [ -58.359375, -26.431228 ], [ -57.656250, -26.431228 ], [ -57.656250, -25.165173 ], [ -59.062500, -25.165173 ], [ -59.062500, -24.527135 ], [ -59.765625, -24.527135 ], [ -59.765625, -23.885838 ], [ -61.875000, -23.885838 ], [ -61.875000, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -19.973349 ], [ -61.875000, -19.973349 ], [ -61.875000, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -19.311143 ], [ -58.359375, -21.943046 ], [ -56.250000, -21.943046 ], [ -56.250000, -23.241346 ], [ -55.546875, -23.241346 ], [ -55.546875, -23.885838 ], [ -54.843750, -23.885838 ], [ -54.843750, -27.059126 ], [ -58.359375, -27.059126 ], [ -58.359375, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.165173 ], [ -58.359375, -25.165173 ], [ -58.359375, -24.527135 ], [ -60.468750, -24.527135 ], [ -60.468750, -23.885838 ], [ -61.171875, -23.885838 ], [ -61.171875, -23.241346 ], [ -61.875000, -23.241346 ], [ -61.875000, -22.593726 ], [ -63.281250, -22.593726 ], [ -63.281250, -21.289374 ], [ -62.578125, -21.289374 ], [ -62.578125, -19.973349 ], [ -61.875000, -19.973349 ], [ -61.875000, -19.311143 ], [ -58.359375, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.203125, -52.908902 ], [ -68.203125, -53.330873 ], [ -67.500000, -53.330873 ], [ -67.500000, -54.162434 ], [ -66.796875, -54.162434 ], [ -66.796875, -54.572062 ], [ -65.390625, -54.572062 ], [ -65.390625, -55.379110 ], [ -66.796875, -55.379110 ], [ -66.796875, -54.977614 ], [ -68.906250, -54.977614 ], [ -68.906250, -52.908902 ], [ -68.203125, -52.908902 ] ] ], [ [ [ -62.578125, -21.943046 ], [ -62.578125, -22.593726 ], [ -61.875000, -22.593726 ], [ -61.875000, -23.885838 ], [ -59.765625, -23.885838 ], [ -59.765625, -24.527135 ], [ -59.062500, -24.527135 ], [ -59.062500, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -27.683528 ], [ -55.546875, -27.683528 ], [ -55.546875, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.799891 ], [ -54.140625, -25.799891 ], [ -54.140625, -26.431228 ], [ -53.437500, -26.431228 ], [ -53.437500, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -31.353637 ], [ -58.359375, -31.353637 ], [ -58.359375, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.460670 ], [ -56.953125, -35.460670 ], [ -56.953125, -36.031332 ], [ -57.656250, -36.031332 ], [ -57.656250, -36.597889 ], [ -56.953125, -36.597889 ], [ -56.953125, -37.718590 ], [ -57.656250, -37.718590 ], [ -57.656250, -38.822591 ], [ -62.578125, -38.822591 ], [ -62.578125, -39.368279 ], [ -61.875000, -39.368279 ], [ -61.875000, -39.909736 ], [ -62.578125, -39.909736 ], [ -62.578125, -40.446947 ], [ -61.875000, -40.446947 ], [ -61.875000, -40.979898 ], [ -65.390625, -40.979898 ], [ -65.390625, -41.508577 ], [ -64.687500, -41.508577 ], [ -64.687500, -42.553080 ], [ -63.281250, -42.553080 ], [ -63.281250, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.580391 ], [ -65.390625, -43.580391 ], [ -65.390625, -45.089036 ], [ -66.796875, -45.089036 ], [ -66.796875, -45.583290 ], [ -67.500000, -45.583290 ], [ -67.500000, -46.558860 ], [ -66.796875, -46.558860 ], [ -66.796875, -47.040182 ], [ -65.390625, -47.040182 ], [ -65.390625, -47.517201 ], [ -66.093750, -47.517201 ], [ -66.093750, -48.458352 ], [ -66.796875, -48.458352 ], [ -66.796875, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -50.289339 ], [ -68.906250, -50.289339 ], [ -68.906250, -52.052490 ], [ -68.203125, -52.052490 ], [ -68.203125, -52.482780 ], [ -69.609375, -52.482780 ], [ -69.609375, -52.052490 ], [ -72.421875, -52.052490 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -49.382373 ], [ -72.421875, -49.382373 ], [ -72.421875, -47.517201 ], [ -71.718750, -47.517201 ], [ -71.718750, -45.089036 ], [ -71.015625, -45.089036 ], [ -71.015625, -44.590467 ], [ -71.718750, -44.590467 ], [ -71.718750, -43.068888 ], [ -72.421875, -43.068888 ], [ -72.421875, -42.032974 ], [ -71.718750, -42.032974 ], [ -71.718750, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -36.597889 ], [ -70.312500, -36.597889 ], [ -70.312500, -34.885931 ], [ -69.609375, -34.885931 ], [ -69.609375, -33.137551 ], [ -70.312500, -33.137551 ], [ -70.312500, -30.751278 ], [ -69.609375, -30.751278 ], [ -69.609375, -30.145127 ], [ -70.312500, -30.145127 ], [ -70.312500, -28.921631 ], [ -69.609375, -28.921631 ], [ -69.609375, -28.304381 ], [ -68.906250, -28.304381 ], [ -68.906250, -27.683528 ], [ -68.203125, -27.683528 ], [ -68.203125, -27.059126 ], [ -68.906250, -27.059126 ], [ -68.906250, -26.431228 ], [ -68.203125, -26.431228 ], [ -68.203125, -24.527135 ], [ -67.500000, -24.527135 ], [ -67.500000, -23.885838 ], [ -66.796875, -23.885838 ], [ -66.796875, -22.593726 ], [ -66.093750, -22.593726 ], [ -66.093750, -21.943046 ], [ -64.687500, -21.943046 ], [ -64.687500, -22.593726 ], [ -63.984375, -22.593726 ], [ -63.984375, -21.943046 ], [ -62.578125, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.203125, -53.330873 ], [ -68.203125, -54.162434 ], [ -66.796875, -54.162434 ], [ -66.796875, -54.572062 ], [ -65.390625, -54.572062 ], [ -65.390625, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -54.572062 ], [ -68.906250, -54.572062 ], [ -68.906250, -53.330873 ], [ -68.203125, -53.330873 ] ] ], [ [ [ -63.281250, -21.943046 ], [ -63.281250, -22.593726 ], [ -61.875000, -22.593726 ], [ -61.875000, -23.241346 ], [ -61.171875, -23.241346 ], [ -61.171875, -23.885838 ], [ -60.468750, -23.885838 ], [ -60.468750, -24.527135 ], [ -58.359375, -24.527135 ], [ -58.359375, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -25.799891 ], [ -58.359375, -25.799891 ], [ -58.359375, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -27.683528 ], [ -55.546875, -27.683528 ], [ -55.546875, -28.304381 ], [ -56.953125, -28.304381 ], [ -56.953125, -29.535230 ], [ -57.656250, -29.535230 ], [ -57.656250, -30.751278 ], [ -58.359375, -30.751278 ], [ -58.359375, -33.724340 ], [ -59.062500, -33.724340 ], [ -59.062500, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -36.031332 ], [ -56.953125, -36.031332 ], [ -56.953125, -37.160317 ], [ -57.656250, -37.160317 ], [ -57.656250, -37.718590 ], [ -58.359375, -37.718590 ], [ -58.359375, -38.272689 ], [ -60.468750, -38.272689 ], [ -60.468750, -38.822591 ], [ -62.578125, -38.822591 ], [ -62.578125, -40.979898 ], [ -65.390625, -40.979898 ], [ -65.390625, -42.032974 ], [ -63.984375, -42.032974 ], [ -63.984375, -42.553080 ], [ -64.687500, -42.553080 ], [ -64.687500, -43.068888 ], [ -65.390625, -43.068888 ], [ -65.390625, -44.590467 ], [ -66.796875, -44.590467 ], [ -66.796875, -45.089036 ], [ -67.500000, -45.089036 ], [ -67.500000, -45.583290 ], [ -68.203125, -45.583290 ], [ -68.203125, -46.558860 ], [ -66.796875, -46.558860 ], [ -66.796875, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -48.458352 ], [ -67.500000, -48.458352 ], [ -67.500000, -49.382373 ], [ -68.203125, -49.382373 ], [ -68.203125, -49.837982 ], [ -68.906250, -49.837982 ], [ -68.906250, -50.289339 ], [ -69.609375, -50.289339 ], [ -69.609375, -51.179343 ], [ -68.906250, -51.179343 ], [ -68.906250, -52.052490 ], [ -71.718750, -52.052490 ], [ -71.718750, -51.618017 ], [ -72.421875, -51.618017 ], [ -72.421875, -50.736455 ], [ -73.828125, -50.736455 ], [ -73.828125, -48.922499 ], [ -73.125000, -48.922499 ], [ -73.125000, -48.458352 ], [ -72.421875, -48.458352 ], [ -72.421875, -47.989922 ], [ -73.125000, -47.989922 ], [ -73.125000, -47.040182 ], [ -72.421875, -47.040182 ], [ -72.421875, -46.073231 ], [ -71.718750, -46.073231 ], [ -71.718750, -43.580391 ], [ -72.421875, -43.580391 ], [ -72.421875, -39.909736 ], [ -71.718750, -39.909736 ], [ -71.718750, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -37.718590 ], [ -71.718750, -37.718590 ], [ -71.718750, -36.031332 ], [ -71.015625, -36.031332 ], [ -71.015625, -34.307144 ], [ -70.312500, -34.307144 ], [ -70.312500, -31.952162 ], [ -71.015625, -31.952162 ], [ -71.015625, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -27.683528 ], [ -69.609375, -27.683528 ], [ -69.609375, -27.059126 ], [ -68.906250, -27.059126 ], [ -68.906250, -23.885838 ], [ -67.500000, -23.885838 ], [ -67.500000, -21.943046 ], [ -65.390625, -21.943046 ], [ -65.390625, -22.593726 ], [ -63.984375, -22.593726 ], [ -63.984375, -21.943046 ], [ -63.281250, -21.943046 ] ] ], [ [ [ -54.140625, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.165173 ], [ -54.140625, -25.165173 ], [ -54.140625, -27.059126 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.751278 ], [ -55.546875, -30.751278 ], [ -55.546875, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.952162 ], [ -53.437500, -31.952162 ], [ -53.437500, -34.307144 ], [ -54.140625, -34.307144 ], [ -54.140625, -34.885931 ], [ -56.953125, -34.885931 ], [ -56.953125, -34.307144 ], [ -58.359375, -34.307144 ], [ -58.359375, -31.353637 ], [ -57.656250, -31.353637 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -32.546813 ], [ -53.437500, -32.546813 ], [ -53.437500, -33.137551 ], [ -54.140625, -33.137551 ], [ -54.140625, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -34.307144 ], [ -54.140625, -34.307144 ], [ -54.140625, -34.885931 ], [ -56.250000, -34.885931 ], [ -56.250000, -34.307144 ], [ -59.062500, -34.307144 ], [ -59.062500, -33.724340 ], [ -58.359375, -33.724340 ], [ -58.359375, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -51.618017 ], [ -57.656250, -52.052490 ], [ -59.765625, -52.052490 ], [ -59.765625, -52.482780 ], [ -61.171875, -52.482780 ], [ -61.171875, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -51.618017 ], [ -57.656250, -51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -51.179343 ], [ -58.359375, -52.052490 ], [ -61.875000, -52.052490 ], [ -61.875000, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.179343 ], [ -58.359375, -51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.468750, -79.812302 ], [ -60.468750, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -80.760615 ], [ -60.468750, -80.760615 ], [ -60.468750, -80.983688 ], [ -61.875000, -80.983688 ], [ -61.875000, -80.872827 ], [ -64.687500, -80.872827 ], [ -64.687500, -80.760615 ], [ -65.390625, -80.760615 ], [ -65.390625, -80.415707 ], [ -66.093750, -80.415707 ], [ -66.093750, -80.297927 ], [ -63.281250, -80.297927 ], [ -63.281250, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.178713 ], [ -61.171875, -80.178713 ], [ -61.171875, -79.812302 ], [ -60.468750, -79.812302 ] ] ], [ [ [ -169.453125, -83.979259 ], [ -169.453125, -84.124973 ], [ -168.750000, -84.124973 ], [ -168.750000, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.051129 ], [ -162.421875, -85.051129 ], [ -162.421875, -85.111416 ], [ -161.718750, -85.111416 ], [ -161.718750, -85.170970 ], [ -161.015625, -85.170970 ], [ -161.015625, -85.229801 ], [ -159.609375, -85.229801 ], [ -159.609375, -85.287916 ], [ -158.906250, -85.287916 ], [ -158.906250, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.267172 ], [ -182.812500, -84.267172 ], [ -182.812500, -84.336980 ], [ -182.109375, -84.336980 ], [ -182.109375, -84.474065 ], [ -181.406250, -84.474065 ], [ -181.406250, -84.541361 ], [ -180.703125, -84.541361 ], [ -180.703125, -84.673513 ], [ -180.000000, -84.673513 ], [ -180.000000, -84.474065 ], [ -179.296875, -84.474065 ], [ -179.296875, -84.196507 ], [ -178.593750, -84.196507 ], [ -178.593750, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.474065 ], [ -177.187500, -84.474065 ], [ -177.187500, -84.336980 ], [ -176.484375, -84.336980 ], [ -176.484375, -84.196507 ], [ -175.781250, -84.196507 ], [ -175.781250, -84.267172 ], [ -175.078125, -84.267172 ], [ -175.078125, -84.474065 ], [ -173.671875, -84.474065 ], [ -173.671875, -84.267172 ], [ -172.968750, -84.267172 ], [ -172.968750, -84.052561 ], [ -171.562500, -84.052561 ], [ -171.562500, -83.979259 ], [ -169.453125, -83.979259 ] ] ], [ [ [ -156.796875, -85.345325 ], [ -156.796875, -85.229801 ], [ -156.093750, -85.229801 ], [ -156.093750, -85.170970 ], [ -153.984375, -85.170970 ], [ -153.984375, -85.229801 ], [ -152.578125, -85.229801 ], [ -152.578125, -85.287916 ], [ -151.171875, -85.287916 ], [ -151.171875, -85.345325 ], [ -156.796875, -85.345325 ] ] ], [ [ [ -156.093750, -81.201420 ], [ -153.281250, -81.201420 ], [ -153.281250, -81.093214 ], [ -151.171875, -81.093214 ], [ -151.171875, -81.308321 ], [ -149.765625, -81.308321 ], [ -149.765625, -81.201420 ], [ -149.062500, -81.201420 ], [ -149.062500, -81.093214 ], [ -148.359375, -81.093214 ], [ -148.359375, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -80.760615 ], [ -146.953125, -80.760615 ], [ -146.953125, -80.532071 ], [ -146.250000, -80.532071 ], [ -146.250000, -80.178713 ], [ -146.953125, -80.178713 ], [ -146.953125, -79.935918 ], [ -147.656250, -79.935918 ], [ -147.656250, -79.812302 ], [ -148.359375, -79.812302 ], [ -148.359375, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -149.765625, -79.432371 ], [ -149.765625, -79.302640 ], [ -153.281250, -79.302640 ], [ -153.281250, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -156.796875, -78.630006 ], [ -156.796875, -78.490552 ], [ -157.500000, -78.490552 ], [ -157.500000, -78.206563 ], [ -158.203125, -78.206563 ], [ -158.203125, -77.157163 ], [ -157.500000, -77.157163 ], [ -157.500000, -77.312520 ], [ -155.390625, -77.312520 ], [ -155.390625, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -150.468750, -77.466028 ], [ -150.468750, -77.312520 ], [ -149.765625, -77.312520 ], [ -149.765625, -76.999935 ], [ -149.062500, -76.999935 ], [ -149.062500, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.320025 ], [ -144.140625, -75.320025 ], [ -144.140625, -75.497157 ], [ -142.734375, -75.497157 ], [ -142.734375, -75.320025 ], [ -141.328125, -75.320025 ], [ -141.328125, -75.140778 ], [ -138.515625, -75.140778 ], [ -138.515625, -74.959392 ], [ -137.812500, -74.959392 ], [ -137.812500, -74.775843 ], [ -136.406250, -74.775843 ], [ -136.406250, -74.590108 ], [ -135.703125, -74.590108 ], [ -135.703125, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.590108 ], [ -119.531250, -74.590108 ], [ -119.531250, -74.402163 ], [ -118.828125, -74.402163 ], [ -118.828125, -74.211983 ], [ -115.312500, -74.211983 ], [ -115.312500, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.824820 ], [ -113.203125, -73.824820 ], [ -113.203125, -74.590108 ], [ -112.500000, -74.590108 ], [ -112.500000, -74.775843 ], [ -111.796875, -74.775843 ], [ -111.796875, -74.590108 ], [ -110.390625, -74.590108 ], [ -110.390625, -74.959392 ], [ -108.984375, -74.959392 ], [ -108.984375, -75.140778 ], [ -104.765625, -75.140778 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.320025 ], [ -100.546875, -75.320025 ], [ -100.546875, -75.140778 ], [ -99.843750, -75.140778 ], [ -99.843750, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.402163 ], [ -101.250000, -74.402163 ], [ -101.250000, -74.211983 ], [ -102.656250, -74.211983 ], [ -102.656250, -74.019543 ], [ -103.359375, -74.019543 ], [ -103.359375, -72.816074 ], [ -99.140625, -72.816074 ], [ -99.140625, -73.022592 ], [ -98.437500, -73.022592 ], [ -98.437500, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.627789 ], [ -94.921875, -73.627789 ], [ -94.921875, -73.428424 ], [ -93.515625, -73.428424 ], [ -93.515625, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.428424 ], [ -90.000000, -73.428424 ], [ -90.000000, -73.022592 ], [ -89.296875, -73.022592 ], [ -89.296875, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.226700 ], [ -85.078125, -73.226700 ], [ -85.078125, -73.428424 ], [ -83.671875, -73.428424 ], [ -83.671875, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.428424 ], [ -78.046875, -73.428424 ], [ -78.046875, -73.627789 ], [ -76.640625, -73.627789 ], [ -76.640625, -73.824820 ], [ -75.937500, -73.824820 ], [ -75.937500, -74.019543 ], [ -75.234375, -74.019543 ], [ -75.234375, -73.824820 ], [ -73.828125, -73.824820 ], [ -73.828125, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.428424 ], [ -71.718750, -73.428424 ], [ -71.718750, -73.226700 ], [ -68.906250, -73.226700 ], [ -68.906250, -73.022592 ], [ -68.203125, -73.022592 ], [ -68.203125, -72.607120 ], [ -67.500000, -72.607120 ], [ -67.500000, -72.181804 ], [ -66.796875, -72.181804 ], [ -66.796875, -71.965388 ], [ -67.500000, -71.965388 ], [ -67.500000, -71.074056 ], [ -68.203125, -71.074056 ], [ -68.203125, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.395706 ], [ -69.609375, -72.395706 ], [ -69.609375, -72.607120 ], [ -72.421875, -72.607120 ], [ -72.421875, -72.395706 ], [ -71.718750, -72.395706 ], [ -71.718750, -72.181804 ], [ -73.125000, -72.181804 ], [ -73.125000, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -72.181804 ], [ -75.234375, -72.181804 ], [ -75.234375, -71.746432 ], [ -74.531250, -71.746432 ], [ -74.531250, -71.524909 ], [ -73.828125, -71.524909 ], [ -73.828125, -71.300793 ], [ -72.421875, -71.300793 ], [ -72.421875, -71.074056 ], [ -71.718750, -71.074056 ], [ -71.718750, -69.162558 ], [ -71.015625, -69.162558 ], [ -71.015625, -68.911005 ], [ -70.312500, -68.911005 ], [ -70.312500, -69.162558 ], [ -69.609375, -69.162558 ], [ -69.609375, -69.900118 ], [ -68.906250, -69.900118 ], [ -68.906250, -70.844673 ], [ -68.203125, -70.844673 ], [ -68.203125, -68.911005 ], [ -67.500000, -68.911005 ], [ -67.500000, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.093750, -66.513260 ], [ -66.093750, -66.231457 ], [ -65.390625, -66.231457 ], [ -65.390625, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -65.366837 ], [ -63.984375, -65.366837 ], [ -63.984375, -65.072130 ], [ -63.281250, -65.072130 ], [ -63.281250, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -66.231457 ], [ -61.875000, -66.231457 ], [ -61.875000, -66.513260 ], [ -63.984375, -66.513260 ], [ -63.984375, -67.067433 ], [ -64.687500, -67.067433 ], [ -64.687500, -67.339861 ], [ -65.390625, -67.339861 ], [ -65.390625, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -69.411242 ], [ -62.578125, -69.411242 ], [ -62.578125, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.844673 ], [ -61.171875, -70.844673 ], [ -61.171875, -73.022592 ], [ -60.468750, -73.022592 ], [ -60.468750, -73.428424 ], [ -61.171875, -73.428424 ], [ -61.171875, -74.211983 ], [ -61.875000, -74.211983 ], [ -61.875000, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.775843 ], [ -63.984375, -74.775843 ], [ -63.984375, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.672197 ], [ -66.093750, -75.672197 ], [ -66.093750, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -76.016094 ], [ -68.203125, -76.016094 ], [ -68.203125, -76.184995 ], [ -69.609375, -76.184995 ], [ -69.609375, -76.516819 ], [ -70.312500, -76.516819 ], [ -70.312500, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.999935 ], [ -76.640625, -76.999935 ], [ -76.640625, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.767582 ], [ -73.828125, -77.767582 ], [ -73.828125, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.206563 ], [ -75.937500, -78.206563 ], [ -75.937500, -78.061989 ], [ -76.640625, -78.061989 ], [ -76.640625, -78.206563 ], [ -77.343750, -78.206563 ], [ -77.343750, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.302640 ], [ -77.343750, -79.302640 ], [ -77.343750, -79.560546 ], [ -76.640625, -79.560546 ], [ -76.640625, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.297927 ], [ -74.531250, -80.297927 ], [ -74.531250, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.760615 ], [ -71.015625, -80.760615 ], [ -71.015625, -80.983688 ], [ -70.312500, -80.983688 ], [ -70.312500, -81.093214 ], [ -69.609375, -81.093214 ], [ -69.609375, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.308321 ], [ -68.203125, -81.308321 ], [ -68.203125, -81.413933 ], [ -66.796875, -81.413933 ], [ -66.796875, -81.518272 ], [ -65.390625, -81.518272 ], [ -65.390625, -81.621352 ], [ -63.984375, -81.621352 ], [ -63.984375, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.823794 ], [ -62.578125, -81.823794 ], [ -62.578125, -82.021378 ], [ -61.875000, -82.021378 ], [ -61.875000, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.214217 ], [ -60.468750, -82.214217 ], [ -60.468750, -82.402423 ], [ -59.765625, -82.402423 ], [ -59.765625, -82.676285 ], [ -59.062500, -82.676285 ], [ -59.062500, -83.026219 ], [ -58.359375, -83.026219 ], [ -58.359375, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -82.940327 ], [ -56.953125, -82.940327 ], [ -56.953125, -82.853382 ], [ -56.250000, -82.853382 ], [ -56.250000, -82.676285 ], [ -55.546875, -82.676285 ], [ -55.546875, -82.586106 ], [ -54.843750, -82.586106 ], [ -54.843750, -82.402423 ], [ -54.140625, -82.402423 ], [ -54.140625, -82.308893 ], [ -53.437500, -82.308893 ], [ -53.437500, -82.214217 ], [ -52.734375, -82.214217 ], [ -52.734375, -82.118384 ], [ -51.328125, -82.118384 ], [ -51.328125, -82.021378 ], [ -50.625000, -82.021378 ], [ -50.625000, -81.823794 ], [ -49.921875, -81.823794 ], [ -49.921875, -81.723188 ], [ -46.406250, -81.723188 ], [ -46.406250, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.923186 ], [ -44.296875, -81.923186 ], [ -44.296875, -82.021378 ], [ -43.593750, -82.021378 ], [ -43.593750, -82.118384 ], [ -42.890625, -82.118384 ], [ -42.890625, -81.923186 ], [ -42.187500, -81.923186 ], [ -42.187500, -81.621352 ], [ -41.484375, -81.621352 ], [ -41.484375, -81.413933 ], [ -40.781250, -81.413933 ], [ -40.781250, -81.308321 ], [ -37.265625, -81.308321 ], [ -37.265625, -81.201420 ], [ -36.562500, -81.201420 ], [ -36.562500, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -80.983688 ], [ -34.453125, -80.983688 ], [ -34.453125, -80.872827 ], [ -33.046875, -80.872827 ], [ -33.046875, -80.760615 ], [ -30.937500, -80.760615 ], [ -30.937500, -80.647035 ], [ -29.531250, -80.647035 ], [ -29.531250, -80.415707 ], [ -28.828125, -80.415707 ], [ -28.828125, -80.178713 ], [ -29.531250, -80.178713 ], [ -29.531250, -79.302640 ], [ -32.343750, -79.302640 ], [ -32.343750, -79.432371 ], [ -35.859375, -79.432371 ], [ -35.859375, -78.206563 ], [ -35.156250, -78.206563 ], [ -35.156250, -78.061989 ], [ -33.750000, -78.061989 ], [ -33.750000, -77.915669 ], [ -33.046875, -77.915669 ], [ -33.046875, -77.767582 ], [ -32.343750, -77.767582 ], [ -32.343750, -77.617709 ], [ -31.640625, -77.617709 ], [ -31.640625, -77.466028 ], [ -30.937500, -77.466028 ], [ -30.937500, -77.312520 ], [ -30.234375, -77.312520 ], [ -30.234375, -77.157163 ], [ -29.531250, -77.157163 ], [ -29.531250, -76.840816 ], [ -28.828125, -76.840816 ], [ -28.828125, -76.679785 ], [ -27.421875, -76.679785 ], [ -27.421875, -76.516819 ], [ -26.015625, -76.516819 ], [ -26.015625, -76.351896 ], [ -23.906250, -76.351896 ], [ -23.906250, -76.184995 ], [ -21.796875, -76.184995 ], [ -21.796875, -76.016094 ], [ -21.093750, -76.016094 ], [ -21.093750, -75.845169 ], [ -19.687500, -75.845169 ], [ -19.687500, -75.672197 ], [ -18.984375, -75.672197 ], [ -18.984375, -75.497157 ], [ -18.281250, -75.497157 ], [ -18.281250, -75.320025 ], [ -17.578125, -75.320025 ], [ -17.578125, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.775843 ], [ -15.468750, -74.775843 ], [ -15.468750, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.428424 ], [ -15.468750, -73.428424 ], [ -15.468750, -73.226700 ], [ -14.062500, -73.226700 ], [ -14.062500, -73.022592 ], [ -13.359375, -73.022592 ], [ -13.359375, -72.816074 ], [ -12.656250, -72.816074 ], [ -12.656250, -72.607120 ], [ -11.953125, -72.607120 ], [ -11.953125, -72.181804 ], [ -11.250000, -72.181804 ], [ -11.250000, -71.524909 ], [ -10.546875, -71.524909 ], [ -10.546875, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.524909 ], [ -8.437500, -71.524909 ], [ -8.437500, -71.746432 ], [ -7.734375, -71.746432 ], [ -7.734375, -71.524909 ], [ -7.031250, -71.524909 ], [ -7.031250, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.524909 ], [ -2.812500, -71.524909 ], [ -2.812500, -71.300793 ], [ -0.703125, -71.300793 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 2.109375, -71.300793 ], [ 2.109375, -71.074056 ], [ 3.515625, -71.074056 ], [ 3.515625, -85.345325 ], [ -145.546875, -85.345325 ], [ -145.546875, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.170970 ], [ -144.140625, -85.170970 ], [ -144.140625, -85.111416 ], [ -143.437500, -85.111416 ], [ -143.437500, -84.802474 ], [ -142.734375, -84.802474 ], [ -142.734375, -84.541361 ], [ -147.656250, -84.541361 ], [ -147.656250, -84.474065 ], [ -148.359375, -84.474065 ], [ -148.359375, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.196507 ], [ -150.468750, -84.196507 ], [ -150.468750, -84.052561 ], [ -151.171875, -84.052561 ], [ -151.171875, -83.905058 ], [ -151.875000, -83.905058 ], [ -151.875000, -83.829945 ], [ -152.578125, -83.829945 ], [ -152.578125, -83.753911 ], [ -153.281250, -83.753911 ], [ -153.281250, -82.676285 ], [ -152.578125, -82.676285 ], [ -152.578125, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.923186 ], [ -153.984375, -81.923186 ], [ -153.984375, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.621352 ], [ -155.390625, -81.621352 ], [ -155.390625, -81.413933 ], [ -156.093750, -81.413933 ], [ -156.093750, -81.201420 ] ] ], [ [ [ -162.421875, -78.206563 ], [ -162.421875, -78.349411 ], [ -161.015625, -78.349411 ], [ -161.015625, -78.490552 ], [ -160.312500, -78.490552 ], [ -160.312500, -78.903929 ], [ -159.609375, -78.903929 ], [ -159.609375, -79.302640 ], [ -158.906250, -79.302640 ], [ -158.906250, -79.560546 ], [ -159.609375, -79.560546 ], [ -159.609375, -79.687184 ], [ -161.718750, -79.687184 ], [ -161.718750, -79.432371 ], [ -162.421875, -79.432371 ], [ -162.421875, -79.171335 ], [ -163.125000, -79.171335 ], [ -163.125000, -78.767792 ], [ -163.828125, -78.767792 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.490552 ], [ -163.125000, -78.206563 ], [ -162.421875, -78.206563 ] ] ], [ [ [ -120.937500, -73.428424 ], [ -120.937500, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -74.019543 ], [ -121.640625, -74.019543 ], [ -121.640625, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.428424 ], [ -120.937500, -73.428424 ] ] ], [ [ [ -125.859375, -73.428424 ], [ -125.859375, -73.627789 ], [ -124.453125, -73.627789 ], [ -124.453125, -73.824820 ], [ -126.562500, -73.824820 ], [ -126.562500, -73.627789 ], [ -127.265625, -73.627789 ], [ -127.265625, -73.428424 ], [ -125.859375, -73.428424 ] ] ], [ [ [ -97.031250, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -72.181804 ], [ -102.656250, -72.181804 ], [ -102.656250, -71.965388 ], [ -101.953125, -71.965388 ], [ -101.953125, -71.746432 ], [ -100.546875, -71.746432 ], [ -100.546875, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ] ] ], [ [ [ -45.703125, -77.915669 ], [ -45.703125, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.206563 ], [ -44.296875, -78.206563 ], [ -44.296875, -78.490552 ], [ -43.593750, -78.490552 ], [ -43.593750, -80.178713 ], [ -44.296875, -80.178713 ], [ -44.296875, -80.297927 ], [ -45.000000, -80.297927 ], [ -45.000000, -80.415707 ], [ -45.703125, -80.415707 ], [ -45.703125, -80.647035 ], [ -46.406250, -80.647035 ], [ -46.406250, -80.760615 ], [ -47.812500, -80.760615 ], [ -47.812500, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.983688 ], [ -53.437500, -80.983688 ], [ -53.437500, -80.760615 ], [ -54.140625, -80.760615 ], [ -54.140625, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.058050 ], [ -52.031250, -80.058050 ], [ -52.031250, -79.812302 ], [ -51.328125, -79.812302 ], [ -51.328125, -79.432371 ], [ -50.625000, -79.432371 ], [ -50.625000, -79.038437 ], [ -49.921875, -79.038437 ], [ -49.921875, -78.630006 ], [ -49.218750, -78.630006 ], [ -49.218750, -78.349411 ], [ -48.515625, -78.349411 ], [ -48.515625, -78.061989 ], [ -47.109375, -78.061989 ], [ -47.109375, -77.915669 ], [ -45.703125, -77.915669 ] ] ], [ [ [ -57.656250, -63.233627 ], [ -57.656250, -63.548552 ], [ -56.953125, -63.548552 ], [ -56.953125, -63.860036 ], [ -57.656250, -63.860036 ], [ -57.656250, -64.168107 ], [ -58.359375, -64.168107 ], [ -58.359375, -64.472794 ], [ -59.765625, -64.472794 ], [ -59.765625, -64.168107 ], [ -59.765625, -63.860036 ], [ -59.062500, -63.860036 ], [ -59.062500, -63.548552 ], [ -58.359375, -63.548552 ], [ -58.359375, -63.233627 ], [ -57.656250, -63.233627 ] ] ], [ [ [ -61.171875, -64.472794 ], [ -61.171875, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.472794 ], [ -61.171875, -64.472794 ] ] ], [ [ [ -60.468750, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.168107 ], [ -60.468750, -64.168107 ], [ -60.468750, -64.472794 ] ] ], [ [ [ -156.093750, -81.201420 ], [ -156.796875, -81.201420 ], [ -156.796875, -81.093214 ], [ -156.093750, -81.093214 ], [ -156.093750, -81.201420 ] ] ], [ [ [ -97.031250, -72.395706 ], [ -96.328125, -72.395706 ], [ -96.328125, -72.607120 ], [ -97.031250, -72.607120 ], [ -97.031250, -72.395706 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.468750, -79.687184 ], [ -60.468750, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -80.297927 ], [ -60.468750, -80.297927 ], [ -60.468750, -80.983688 ], [ -61.171875, -80.983688 ], [ -61.171875, -80.872827 ], [ -62.578125, -80.872827 ], [ -62.578125, -80.760615 ], [ -63.281250, -80.760615 ], [ -63.281250, -80.872827 ], [ -65.390625, -80.872827 ], [ -65.390625, -80.647035 ], [ -66.093750, -80.647035 ], [ -66.093750, -80.415707 ], [ -66.796875, -80.415707 ], [ -66.796875, -80.178713 ], [ -63.984375, -80.178713 ], [ -63.984375, -80.297927 ], [ -61.875000, -80.297927 ], [ -61.875000, -80.058050 ], [ -61.171875, -80.058050 ], [ -61.171875, -79.687184 ], [ -60.468750, -79.687184 ] ] ], [ [ [ -170.156250, -83.905058 ], [ -170.156250, -83.979259 ], [ -169.453125, -83.979259 ], [ -169.453125, -84.124973 ], [ -168.750000, -84.124973 ], [ -168.750000, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.990100 ], [ -163.125000, -84.990100 ], [ -163.125000, -85.111416 ], [ -162.421875, -85.111416 ], [ -162.421875, -85.170970 ], [ -161.718750, -85.170970 ], [ -161.718750, -85.229801 ], [ -160.312500, -85.229801 ], [ -160.312500, -85.287916 ], [ -159.609375, -85.287916 ], [ -159.609375, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.267172 ], [ -182.812500, -84.267172 ], [ -182.812500, -84.405941 ], [ -182.109375, -84.405941 ], [ -182.109375, -84.474065 ], [ -181.406250, -84.474065 ], [ -181.406250, -84.541361 ], [ -180.703125, -84.541361 ], [ -180.703125, -84.673513 ], [ -180.000000, -84.673513 ], [ -180.000000, -84.405941 ], [ -179.296875, -84.405941 ], [ -179.296875, -84.196507 ], [ -178.593750, -84.196507 ], [ -178.593750, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.405941 ], [ -177.187500, -84.405941 ], [ -177.187500, -84.267172 ], [ -176.484375, -84.267172 ], [ -176.484375, -84.196507 ], [ -175.781250, -84.196507 ], [ -175.781250, -84.405941 ], [ -174.375000, -84.405941 ], [ -174.375000, -84.196507 ], [ -173.671875, -84.196507 ], [ -173.671875, -84.052561 ], [ -172.265625, -84.052561 ], [ -172.265625, -83.979259 ], [ -170.859375, -83.979259 ], [ -170.859375, -83.905058 ], [ -170.156250, -83.905058 ] ] ], [ [ [ -157.500000, -85.345325 ], [ -157.500000, -85.287916 ], [ -156.796875, -85.287916 ], [ -156.796875, -85.170970 ], [ -156.093750, -85.170970 ], [ -156.093750, -85.111416 ], [ -153.984375, -85.111416 ], [ -153.984375, -85.170970 ], [ -153.281250, -85.170970 ], [ -153.281250, -85.229801 ], [ -151.875000, -85.229801 ], [ -151.875000, -85.287916 ], [ -151.171875, -85.287916 ], [ -151.171875, -85.345325 ], [ -157.500000, -85.345325 ] ] ], [ [ [ -146.250000, -85.345325 ], [ -146.250000, -85.287916 ], [ -145.546875, -85.287916 ], [ -145.546875, -85.229801 ], [ -144.843750, -85.229801 ], [ -144.843750, -85.111416 ], [ -144.140625, -85.111416 ], [ -144.140625, -85.051129 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.541361 ], [ -145.546875, -84.541361 ], [ -145.546875, -84.474065 ], [ -147.656250, -84.474065 ], [ -147.656250, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.336980 ], [ -150.468750, -84.336980 ], [ -150.468750, -84.052561 ], [ -151.171875, -84.052561 ], [ -151.171875, -83.829945 ], [ -152.578125, -83.829945 ], [ -152.578125, -83.753911 ], [ -153.984375, -83.753911 ], [ -153.984375, -83.026219 ], [ -153.281250, -83.026219 ], [ -153.281250, -82.021378 ], [ -153.984375, -82.021378 ], [ -153.984375, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.621352 ], [ -155.390625, -81.621352 ], [ -155.390625, -81.413933 ], [ -156.093750, -81.413933 ], [ -156.093750, -81.308321 ], [ -156.796875, -81.308321 ], [ -156.796875, -81.201420 ], [ -157.500000, -81.201420 ], [ -157.500000, -81.093214 ], [ -153.281250, -81.093214 ], [ -153.281250, -80.983688 ], [ -152.578125, -80.983688 ], [ -152.578125, -81.093214 ], [ -151.875000, -81.093214 ], [ -151.875000, -81.308321 ], [ -150.468750, -81.308321 ], [ -150.468750, -81.201420 ], [ -149.765625, -81.201420 ], [ -149.765625, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -80.983688 ], [ -148.359375, -80.983688 ], [ -148.359375, -80.760615 ], [ -147.656250, -80.760615 ], [ -147.656250, -80.532071 ], [ -146.953125, -80.532071 ], [ -146.953125, -79.812302 ], [ -147.656250, -79.812302 ], [ -147.656250, -79.687184 ], [ -148.359375, -79.687184 ], [ -148.359375, -79.560546 ], [ -149.062500, -79.560546 ], [ -149.062500, -79.432371 ], [ -149.765625, -79.432371 ], [ -149.765625, -79.302640 ], [ -151.171875, -79.302640 ], [ -151.171875, -79.171335 ], [ -153.281250, -79.171335 ], [ -153.281250, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -156.796875, -78.630006 ], [ -156.796875, -78.490552 ], [ -157.500000, -78.490552 ], [ -157.500000, -78.206563 ], [ -158.203125, -78.206563 ], [ -158.203125, -77.466028 ], [ -158.906250, -77.466028 ], [ -158.906250, -76.840816 ], [ -158.203125, -76.840816 ], [ -158.203125, -76.999935 ], [ -157.500000, -76.999935 ], [ -157.500000, -77.157163 ], [ -153.984375, -77.157163 ], [ -153.984375, -77.312520 ], [ -153.281250, -77.312520 ], [ -153.281250, -77.466028 ], [ -151.875000, -77.466028 ], [ -151.875000, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.157163 ], [ -149.765625, -77.157163 ], [ -149.765625, -76.999935 ], [ -149.062500, -76.999935 ], [ -149.062500, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.845169 ], [ -146.953125, -75.845169 ], [ -146.953125, -75.497157 ], [ -146.250000, -75.497157 ], [ -146.250000, -75.320025 ], [ -144.843750, -75.320025 ], [ -144.843750, -75.497157 ], [ -143.437500, -75.497157 ], [ -143.437500, -75.320025 ], [ -142.734375, -75.320025 ], [ -142.734375, -75.140778 ], [ -142.031250, -75.140778 ], [ -142.031250, -74.959392 ], [ -138.515625, -74.959392 ], [ -138.515625, -74.775843 ], [ -137.812500, -74.775843 ], [ -137.812500, -74.590108 ], [ -137.109375, -74.590108 ], [ -137.109375, -74.402163 ], [ -135.703125, -74.402163 ], [ -135.703125, -74.211983 ], [ -135.000000, -74.211983 ], [ -135.000000, -74.402163 ], [ -119.531250, -74.402163 ], [ -119.531250, -74.211983 ], [ -118.828125, -74.211983 ], [ -118.828125, -74.019543 ], [ -118.125000, -74.019543 ], [ -118.125000, -74.211983 ], [ -115.312500, -74.211983 ], [ -115.312500, -73.824820 ], [ -113.906250, -73.824820 ], [ -113.906250, -74.211983 ], [ -113.203125, -74.211983 ], [ -113.203125, -74.402163 ], [ -112.500000, -74.402163 ], [ -112.500000, -74.590108 ], [ -111.093750, -74.590108 ], [ -111.093750, -74.775843 ], [ -108.984375, -74.775843 ], [ -108.984375, -74.959392 ], [ -108.281250, -74.959392 ], [ -108.281250, -75.140778 ], [ -106.171875, -75.140778 ], [ -106.171875, -74.959392 ], [ -102.656250, -74.959392 ], [ -102.656250, -75.140778 ], [ -101.250000, -75.140778 ], [ -101.250000, -74.959392 ], [ -100.546875, -74.959392 ], [ -100.546875, -74.590108 ], [ -101.250000, -74.590108 ], [ -101.250000, -74.019543 ], [ -102.656250, -74.019543 ], [ -102.656250, -73.824820 ], [ -103.359375, -73.824820 ], [ -103.359375, -73.022592 ], [ -104.062500, -73.022592 ], [ -104.062500, -72.607120 ], [ -100.546875, -72.607120 ], [ -100.546875, -72.816074 ], [ -99.140625, -72.816074 ], [ -99.140625, -73.022592 ], [ -98.437500, -73.022592 ], [ -98.437500, -73.226700 ], [ -97.734375, -73.226700 ], [ -97.734375, -73.428424 ], [ -94.218750, -73.428424 ], [ -94.218750, -73.226700 ], [ -90.703125, -73.226700 ], [ -90.703125, -73.022592 ], [ -90.000000, -73.022592 ], [ -90.000000, -72.607120 ], [ -88.593750, -72.607120 ], [ -88.593750, -73.022592 ], [ -86.484375, -73.022592 ], [ -86.484375, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.428424 ], [ -84.375000, -73.428424 ], [ -84.375000, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.226700 ], [ -80.156250, -73.226700 ], [ -80.156250, -73.428424 ], [ -77.343750, -73.428424 ], [ -77.343750, -73.824820 ], [ -74.531250, -73.824820 ], [ -74.531250, -73.627789 ], [ -73.828125, -73.627789 ], [ -73.828125, -73.428424 ], [ -73.125000, -73.428424 ], [ -73.125000, -73.226700 ], [ -70.312500, -73.226700 ], [ -70.312500, -73.022592 ], [ -69.609375, -73.022592 ], [ -69.609375, -72.816074 ], [ -68.203125, -72.816074 ], [ -68.203125, -72.607120 ], [ -67.500000, -72.607120 ], [ -67.500000, -71.300793 ], [ -68.203125, -71.300793 ], [ -68.203125, -70.612614 ], [ -68.906250, -70.612614 ], [ -68.906250, -72.181804 ], [ -70.312500, -72.181804 ], [ -70.312500, -72.395706 ], [ -72.421875, -72.395706 ], [ -72.421875, -72.181804 ], [ -75.234375, -72.181804 ], [ -75.234375, -71.300793 ], [ -74.531250, -71.300793 ], [ -74.531250, -71.074056 ], [ -72.421875, -71.074056 ], [ -72.421875, -69.162558 ], [ -71.718750, -69.162558 ], [ -71.718750, -68.911005 ], [ -70.312500, -68.911005 ], [ -70.312500, -69.411242 ], [ -69.609375, -69.411242 ], [ -69.609375, -70.140364 ], [ -68.906250, -70.140364 ], [ -68.906250, -69.162558 ], [ -68.203125, -69.162558 ], [ -68.203125, -68.399180 ], [ -67.500000, -68.399180 ], [ -67.500000, -67.875541 ], [ -68.203125, -67.875541 ], [ -68.203125, -67.067433 ], [ -67.500000, -67.067433 ], [ -67.500000, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.231457 ], [ -66.093750, -66.231457 ], [ -66.093750, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.658275 ], [ -64.687500, -65.658275 ], [ -64.687500, -65.072130 ], [ -63.984375, -65.072130 ], [ -63.984375, -64.774125 ], [ -63.281250, -64.774125 ], [ -63.281250, -64.472794 ], [ -61.875000, -64.472794 ], [ -61.875000, -64.774125 ], [ -62.578125, -64.774125 ], [ -62.578125, -65.366837 ], [ -63.281250, -65.366837 ], [ -63.281250, -65.946472 ], [ -62.578125, -65.946472 ], [ -62.578125, -66.231457 ], [ -63.984375, -66.231457 ], [ -63.984375, -66.513260 ], [ -64.687500, -66.513260 ], [ -64.687500, -67.067433 ], [ -65.390625, -67.067433 ], [ -65.390625, -67.339861 ], [ -66.093750, -67.339861 ], [ -66.093750, -68.138852 ], [ -65.390625, -68.138852 ], [ -65.390625, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -69.657086 ], [ -62.578125, -69.657086 ], [ -62.578125, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -72.181804 ], [ -61.171875, -72.181804 ], [ -61.171875, -73.824820 ], [ -61.875000, -73.824820 ], [ -61.875000, -74.211983 ], [ -62.578125, -74.211983 ], [ -62.578125, -74.402163 ], [ -63.984375, -74.402163 ], [ -63.984375, -74.959392 ], [ -64.687500, -74.959392 ], [ -64.687500, -75.320025 ], [ -65.390625, -75.320025 ], [ -65.390625, -75.497157 ], [ -66.093750, -75.497157 ], [ -66.093750, -75.672197 ], [ -67.500000, -75.672197 ], [ -67.500000, -75.845169 ], [ -68.906250, -75.845169 ], [ -68.906250, -76.016094 ], [ -69.609375, -76.016094 ], [ -69.609375, -76.184995 ], [ -70.312500, -76.184995 ], [ -70.312500, -76.351896 ], [ -71.015625, -76.351896 ], [ -71.015625, -76.516819 ], [ -74.531250, -76.516819 ], [ -74.531250, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -77.157163 ], [ -75.937500, -77.157163 ], [ -75.937500, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.617709 ], [ -73.828125, -77.617709 ], [ -73.828125, -77.915669 ], [ -74.531250, -77.915669 ], [ -74.531250, -78.206563 ], [ -77.343750, -78.206563 ], [ -77.343750, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.302640 ], [ -77.343750, -79.302640 ], [ -77.343750, -79.687184 ], [ -76.640625, -79.687184 ], [ -76.640625, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.297927 ], [ -74.531250, -80.297927 ], [ -74.531250, -80.415707 ], [ -73.828125, -80.415707 ], [ -73.828125, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.760615 ], [ -71.015625, -80.760615 ], [ -71.015625, -80.983688 ], [ -70.312500, -80.983688 ], [ -70.312500, -81.093214 ], [ -69.609375, -81.093214 ], [ -69.609375, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.308321 ], [ -67.500000, -81.308321 ], [ -67.500000, -81.413933 ], [ -66.093750, -81.413933 ], [ -66.093750, -81.518272 ], [ -65.390625, -81.518272 ], [ -65.390625, -81.621352 ], [ -63.984375, -81.621352 ], [ -63.984375, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.823794 ], [ -62.578125, -81.823794 ], [ -62.578125, -82.021378 ], [ -61.875000, -82.021378 ], [ -61.875000, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.214217 ], [ -60.468750, -82.214217 ], [ -60.468750, -82.308893 ], [ -59.765625, -82.308893 ], [ -59.765625, -82.586106 ], [ -59.062500, -82.586106 ], [ -59.062500, -83.026219 ], [ -57.656250, -83.026219 ], [ -57.656250, -82.853382 ], [ -56.953125, -82.853382 ], [ -56.953125, -82.676285 ], [ -56.250000, -82.676285 ], [ -56.250000, -82.586106 ], [ -55.546875, -82.586106 ], [ -55.546875, -82.494824 ], [ -54.843750, -82.494824 ], [ -54.843750, -82.308893 ], [ -54.140625, -82.308893 ], [ -54.140625, -82.214217 ], [ -53.437500, -82.214217 ], [ -53.437500, -82.118384 ], [ -52.734375, -82.118384 ], [ -52.734375, -82.021378 ], [ -52.031250, -82.021378 ], [ -52.031250, -81.923186 ], [ -51.328125, -81.923186 ], [ -51.328125, -81.823794 ], [ -49.921875, -81.823794 ], [ -49.921875, -81.723188 ], [ -48.515625, -81.723188 ], [ -48.515625, -81.621352 ], [ -47.812500, -81.621352 ], [ -47.812500, -81.723188 ], [ -46.406250, -81.723188 ], [ -46.406250, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.923186 ], [ -43.593750, -81.923186 ], [ -43.593750, -82.021378 ], [ -42.890625, -82.021378 ], [ -42.890625, -81.823794 ], [ -42.187500, -81.823794 ], [ -42.187500, -81.621352 ], [ -41.484375, -81.621352 ], [ -41.484375, -81.413933 ], [ -40.781250, -81.413933 ], [ -40.781250, -81.308321 ], [ -37.968750, -81.308321 ], [ -37.968750, -81.201420 ], [ -36.562500, -81.201420 ], [ -36.562500, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -80.983688 ], [ -34.453125, -80.983688 ], [ -34.453125, -80.872827 ], [ -33.046875, -80.872827 ], [ -33.046875, -80.760615 ], [ -31.640625, -80.760615 ], [ -31.640625, -80.647035 ], [ -30.234375, -80.647035 ], [ -30.234375, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.415707 ], [ -28.828125, -80.415707 ], [ -28.828125, -80.178713 ], [ -29.531250, -80.178713 ], [ -29.531250, -79.812302 ], [ -30.234375, -79.812302 ], [ -30.234375, -79.171335 ], [ -31.640625, -79.171335 ], [ -31.640625, -79.302640 ], [ -33.046875, -79.302640 ], [ -33.046875, -79.432371 ], [ -35.859375, -79.432371 ], [ -35.859375, -79.302640 ], [ -36.562500, -79.302640 ], [ -36.562500, -78.630006 ], [ -35.859375, -78.630006 ], [ -35.859375, -78.061989 ], [ -35.156250, -78.061989 ], [ -35.156250, -77.915669 ], [ -34.453125, -77.915669 ], [ -34.453125, -77.767582 ], [ -33.046875, -77.767582 ], [ -33.046875, -77.617709 ], [ -32.343750, -77.617709 ], [ -32.343750, -77.466028 ], [ -31.640625, -77.466028 ], [ -31.640625, -77.312520 ], [ -30.937500, -77.312520 ], [ -30.937500, -77.157163 ], [ -30.234375, -77.157163 ], [ -30.234375, -76.840816 ], [ -29.531250, -76.840816 ], [ -29.531250, -76.516819 ], [ -28.125000, -76.516819 ], [ -28.125000, -76.351896 ], [ -26.015625, -76.351896 ], [ -26.015625, -76.184995 ], [ -23.203125, -76.184995 ], [ -23.203125, -76.016094 ], [ -21.796875, -76.016094 ], [ -21.796875, -75.845169 ], [ -20.390625, -75.845169 ], [ -20.390625, -75.672197 ], [ -19.687500, -75.672197 ], [ -19.687500, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.320025 ], [ -18.281250, -75.320025 ], [ -18.281250, -75.140778 ], [ -17.578125, -75.140778 ], [ -17.578125, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.590108 ], [ -16.171875, -74.590108 ], [ -16.171875, -74.211983 ], [ -15.468750, -74.211983 ], [ -15.468750, -74.019543 ], [ -16.875000, -74.019543 ], [ -16.875000, -73.627789 ], [ -16.171875, -73.627789 ], [ -16.171875, -73.226700 ], [ -15.468750, -73.226700 ], [ -15.468750, -73.022592 ], [ -14.765625, -73.022592 ], [ -14.765625, -72.816074 ], [ -13.359375, -72.816074 ], [ -13.359375, -72.607120 ], [ -12.656250, -72.607120 ], [ -12.656250, -72.181804 ], [ -11.953125, -72.181804 ], [ -11.953125, -71.746432 ], [ -11.250000, -71.746432 ], [ -11.250000, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.524909 ], [ -7.734375, -71.524909 ], [ -7.734375, -71.074056 ], [ -7.031250, -71.074056 ], [ -7.031250, -70.844673 ], [ -6.328125, -70.844673 ], [ -6.328125, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.300793 ], [ -3.515625, -71.300793 ], [ -3.515625, -71.074056 ], [ -0.703125, -71.074056 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 1.406250, -71.300793 ], [ 1.406250, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -70.844673 ], [ 3.515625, -70.844673 ], [ 3.515625, -85.345325 ], [ -146.250000, -85.345325 ] ] ], [ [ [ -161.718750, -78.349411 ], [ -161.718750, -78.490552 ], [ -161.015625, -78.490552 ], [ -161.015625, -78.630006 ], [ -160.312500, -78.630006 ], [ -160.312500, -78.903929 ], [ -159.609375, -78.903929 ], [ -159.609375, -79.432371 ], [ -160.312500, -79.432371 ], [ -160.312500, -79.560546 ], [ -162.421875, -79.560546 ], [ -162.421875, -79.302640 ], [ -163.125000, -79.302640 ], [ -163.125000, -78.630006 ], [ -163.828125, -78.630006 ], [ -163.828125, -78.349411 ], [ -161.718750, -78.349411 ] ] ], [ [ [ -121.640625, -73.428424 ], [ -121.640625, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -74.019543 ], [ -121.640625, -74.019543 ], [ -121.640625, -73.824820 ], [ -123.046875, -73.824820 ], [ -123.046875, -73.428424 ], [ -121.640625, -73.428424 ] ] ], [ [ [ -125.859375, -73.428424 ], [ -125.859375, -73.627789 ], [ -125.156250, -73.627789 ], [ -125.156250, -73.824820 ], [ -126.562500, -73.824820 ], [ -126.562500, -73.627789 ], [ -127.968750, -73.627789 ], [ -127.968750, -73.428424 ], [ -125.859375, -73.428424 ] ] ], [ [ [ -99.140625, -71.746432 ], [ -99.140625, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -72.181804 ], [ -96.328125, -72.181804 ], [ -96.328125, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -71.965388 ], [ -102.656250, -71.965388 ], [ -102.656250, -71.746432 ], [ -99.140625, -71.746432 ] ] ], [ [ [ -45.703125, -77.915669 ], [ -45.703125, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.349411 ], [ -44.296875, -78.349411 ], [ -44.296875, -78.767792 ], [ -43.593750, -78.767792 ], [ -43.593750, -80.058050 ], [ -44.296875, -80.058050 ], [ -44.296875, -80.297927 ], [ -45.000000, -80.297927 ], [ -45.000000, -80.415707 ], [ -46.406250, -80.415707 ], [ -46.406250, -80.532071 ], [ -47.109375, -80.532071 ], [ -47.109375, -80.647035 ], [ -47.812500, -80.647035 ], [ -47.812500, -80.760615 ], [ -48.515625, -80.760615 ], [ -48.515625, -80.872827 ], [ -49.921875, -80.872827 ], [ -49.921875, -80.983688 ], [ -52.734375, -80.983688 ], [ -52.734375, -80.872827 ], [ -54.140625, -80.872827 ], [ -54.140625, -80.647035 ], [ -54.843750, -80.647035 ], [ -54.843750, -80.415707 ], [ -54.140625, -80.415707 ], [ -54.140625, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.058050 ], [ -52.031250, -80.058050 ], [ -52.031250, -79.812302 ], [ -51.328125, -79.812302 ], [ -51.328125, -79.432371 ], [ -50.625000, -79.432371 ], [ -50.625000, -79.038437 ], [ -49.921875, -79.038437 ], [ -49.921875, -78.206563 ], [ -49.218750, -78.206563 ], [ -49.218750, -77.915669 ], [ -45.703125, -77.915669 ] ] ], [ [ [ -57.656250, -63.860036 ], [ -59.062500, -63.860036 ], [ -59.062500, -64.168107 ], [ -61.171875, -64.168107 ], [ -61.171875, -63.860036 ], [ -59.765625, -63.860036 ], [ -59.765625, -63.548552 ], [ -59.062500, -63.548552 ], [ -59.062500, -63.233627 ], [ -57.656250, -63.233627 ], [ -57.656250, -63.860036 ] ] ], [ [ [ -61.171875, -64.168107 ], [ -61.171875, -64.472794 ], [ -61.875000, -64.472794 ], [ -61.875000, -64.168107 ], [ -61.171875, -64.168107 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.406250, -17.308688 ], [ -181.406250, -17.978733 ], [ -182.109375, -17.978733 ], [ -182.109375, -17.308688 ], [ -181.406250, -17.308688 ] ] ], [ [ [ -180.703125, -16.636192 ], [ -180.703125, -17.308688 ], [ -181.406250, -17.308688 ], [ -181.406250, -16.636192 ], [ -180.703125, -16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.406250, -17.308688 ], [ -181.406250, -17.978733 ], [ -182.812500, -17.978733 ], [ -182.812500, -17.308688 ], [ -181.406250, -17.308688 ] ] ], [ [ [ -180.000000, -15.961329 ], [ -180.000000, -16.636192 ], [ -181.406250, -16.636192 ], [ -181.406250, -15.961329 ], [ -180.000000, -15.961329 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -181.406250, -37.718590 ], [ -181.406250, -39.368279 ], [ -182.812500, -39.368279 ], [ -182.812500, -40.446947 ], [ -183.515625, -40.446947 ], [ -183.515625, -37.718590 ], [ -181.406250, -37.718590 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -182.109375, -37.718590 ], [ -182.109375, -38.822591 ], [ -182.812500, -38.822591 ], [ -182.812500, -39.368279 ], [ -183.515625, -39.368279 ], [ -183.515625, -37.718590 ], [ -182.109375, -37.718590 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.781250, 65.658275 ], [ -86.484375, 65.658275 ], [ -86.484375, 65.072130 ], [ -87.187500, 65.072130 ], [ -87.187500, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 63.860036 ], [ -90.703125, 63.860036 ], [ -90.703125, 62.915233 ], [ -92.109375, 62.915233 ], [ -92.109375, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 61.606396 ], [ -93.515625, 61.606396 ], [ -93.515625, 60.930432 ], [ -94.218750, 60.930432 ], [ -94.218750, 60.586967 ], [ -94.921875, 60.586967 ], [ -94.921875, 58.813742 ], [ -93.515625, 58.813742 ], [ -93.515625, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.326521 ], [ -92.109375, 57.326521 ], [ -92.109375, 56.944974 ], [ -89.296875, 56.944974 ], [ -89.296875, 56.559482 ], [ -87.890625, 56.559482 ], [ -87.890625, 56.170023 ], [ -87.187500, 56.170023 ], [ -87.187500, 55.776573 ], [ -85.781250, 55.776573 ], [ -85.781250, 55.379110 ], [ -83.671875, 55.379110 ], [ -83.671875, 54.977614 ], [ -82.265625, 54.977614 ], [ -82.265625, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 51.618017 ], [ -80.859375, 51.618017 ], [ -80.859375, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.453125, 53.330873 ], [ -79.453125, 54.162434 ], [ -80.156250, 54.162434 ], [ -80.156250, 54.572062 ], [ -78.750000, 54.572062 ], [ -78.750000, 54.977614 ], [ -78.046875, 54.977614 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -78.046875, 58.077876 ], [ -78.046875, 58.447733 ], [ -78.750000, 58.447733 ], [ -78.750000, 58.813742 ], [ -78.046875, 58.813742 ], [ -78.046875, 59.534318 ], [ -77.343750, 59.534318 ], [ -77.343750, 60.239811 ], [ -78.046875, 60.239811 ], [ -78.046875, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.015625, 61.270233 ], [ -71.015625, 60.930432 ], [ -69.609375, 60.930432 ], [ -69.609375, 58.813742 ], [ -68.203125, 58.813742 ], [ -68.203125, 58.447733 ], [ -67.500000, 58.447733 ], [ -67.500000, 58.077876 ], [ -66.796875, 58.077876 ], [ -66.796875, 58.447733 ], [ -66.093750, 58.447733 ], [ -66.093750, 59.175928 ], [ -65.390625, 59.175928 ], [ -65.390625, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.175928 ], [ -63.281250, 59.175928 ], [ -63.281250, 58.447733 ], [ -62.578125, 58.447733 ], [ -62.578125, 57.704147 ], [ -61.875000, 57.704147 ], [ -61.875000, 56.944974 ], [ -61.171875, 56.944974 ], [ -61.171875, 56.559482 ], [ -61.875000, 56.559482 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.379110 ], [ -59.062500, 55.379110 ], [ -59.062500, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.330873 ], [ -55.546875, 53.330873 ], [ -55.546875, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 51.179343 ], [ -59.062500, 51.179343 ], [ -59.062500, 50.736455 ], [ -59.765625, 50.736455 ], [ -59.765625, 50.289339 ], [ -66.093750, 50.289339 ], [ -66.093750, 49.837982 ], [ -66.796875, 49.837982 ], [ -66.796875, 49.382373 ], [ -67.500000, 49.382373 ], [ -67.500000, 48.922499 ], [ -63.984375, 48.922499 ], [ -63.984375, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.390625, 47.989922 ], [ -65.390625, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 45.583290 ], [ -61.875000, 45.583290 ], [ -61.875000, 46.073231 ], [ -61.171875, 46.073231 ], [ -61.171875, 46.558860 ], [ -60.468750, 46.558860 ], [ -60.468750, 46.073231 ], [ -59.765625, 46.073231 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.590467 ], [ -63.281250, 44.590467 ], [ -63.281250, 44.087585 ], [ -63.984375, 44.087585 ], [ -63.984375, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.590467 ], [ -64.687500, 44.590467 ], [ -64.687500, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 46.558860 ], [ -70.312500, 46.558860 ], [ -70.312500, 45.089036 ], [ -74.531250, 45.089036 ], [ -74.531250, 44.590467 ], [ -75.234375, 44.590467 ], [ -75.234375, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.580391 ], [ -79.453125, 43.580391 ], [ -79.453125, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.553080 ], [ -80.156250, 42.553080 ], [ -80.156250, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 41.508577 ], [ -82.968750, 41.508577 ], [ -82.968750, 42.553080 ], [ -82.265625, 42.553080 ], [ -82.265625, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 46.558860 ], [ -85.078125, 46.558860 ], [ -85.078125, 47.040182 ], [ -86.484375, 47.040182 ], [ -86.484375, 47.517201 ], [ -87.187500, 47.517201 ], [ -87.187500, 47.989922 ], [ -92.812500, 47.989922 ], [ -92.812500, 48.458352 ], [ -94.921875, 48.458352 ], [ -94.921875, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 49.382373 ], [ -125.156250, 49.382373 ], [ -125.156250, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.382373 ], [ -127.265625, 49.382373 ], [ -127.265625, 49.837982 ], [ -127.968750, 49.837982 ], [ -127.968750, 50.289339 ], [ -128.671875, 50.289339 ], [ -128.671875, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 52.482780 ], [ -129.375000, 52.482780 ], [ -129.375000, 53.748711 ], [ -130.781250, 53.748711 ], [ -130.781250, 54.977614 ], [ -130.078125, 54.977614 ], [ -130.078125, 55.776573 ], [ -130.781250, 55.776573 ], [ -130.781250, 56.170023 ], [ -131.484375, 56.170023 ], [ -131.484375, 56.559482 ], [ -132.187500, 56.559482 ], [ -132.187500, 57.326521 ], [ -132.890625, 57.326521 ], [ -132.890625, 58.077876 ], [ -133.593750, 58.077876 ], [ -133.593750, 58.447733 ], [ -134.296875, 58.447733 ], [ -134.296875, 58.813742 ], [ -135.000000, 58.813742 ], [ -135.000000, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 58.813742 ], [ -137.812500, 58.813742 ], [ -137.812500, 59.175928 ], [ -138.515625, 59.175928 ], [ -138.515625, 59.534318 ], [ -139.218750, 59.534318 ], [ -139.218750, 59.888937 ], [ -139.921875, 59.888937 ], [ -139.921875, 60.239811 ], [ -141.328125, 60.239811 ], [ -141.328125, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 69.411242 ], [ -139.218750, 69.411242 ], [ -139.218750, 69.162558 ], [ -138.515625, 69.162558 ], [ -138.515625, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 69.162558 ], [ -135.703125, 69.162558 ], [ -135.703125, 69.411242 ], [ -132.187500, 69.411242 ], [ -132.187500, 69.657086 ], [ -131.484375, 69.657086 ], [ -131.484375, 69.900118 ], [ -128.671875, 69.900118 ], [ -128.671875, 70.140364 ], [ -127.968750, 70.140364 ], [ -127.968750, 70.377854 ], [ -127.265625, 70.377854 ], [ -127.265625, 70.140364 ], [ -126.562500, 70.140364 ], [ -126.562500, 69.657086 ], [ -125.859375, 69.657086 ], [ -125.859375, 69.411242 ], [ -125.156250, 69.411242 ], [ -125.156250, 69.900118 ], [ -124.453125, 69.900118 ], [ -124.453125, 69.411242 ], [ -123.046875, 69.411242 ], [ -123.046875, 69.657086 ], [ -122.343750, 69.657086 ], [ -122.343750, 69.900118 ], [ -121.640625, 69.900118 ], [ -121.640625, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.411242 ], [ -120.234375, 69.411242 ], [ -120.234375, 69.162558 ], [ -118.828125, 69.162558 ], [ -118.828125, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 67.609221 ], [ -111.796875, 67.609221 ], [ -111.796875, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.609221 ], [ -108.984375, 67.609221 ], [ -108.984375, 67.339861 ], [ -108.281250, 67.339861 ], [ -108.281250, 67.609221 ], [ -107.578125, 67.609221 ], [ -107.578125, 67.875541 ], [ -108.281250, 67.875541 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.399180 ], [ -108.281250, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.399180 ], [ -104.765625, 68.399180 ], [ -104.765625, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 67.875541 ], [ -101.953125, 67.875541 ], [ -101.953125, 67.609221 ], [ -99.843750, 67.609221 ], [ -99.843750, 67.875541 ], [ -98.437500, 67.875541 ], [ -98.437500, 68.399180 ], [ -97.031250, 68.399180 ], [ -97.031250, 68.138852 ], [ -96.328125, 68.138852 ], [ -96.328125, 67.609221 ], [ -95.625000, 67.609221 ], [ -95.625000, 68.138852 ], [ -94.921875, 68.138852 ], [ -94.921875, 68.656555 ], [ -94.218750, 68.656555 ], [ -94.218750, 69.162558 ], [ -94.921875, 69.162558 ], [ -94.921875, 69.411242 ], [ -95.625000, 69.411242 ], [ -95.625000, 69.900118 ], [ -96.328125, 69.900118 ], [ -96.328125, 71.300793 ], [ -95.625000, 71.300793 ], [ -95.625000, 71.746432 ], [ -94.218750, 71.746432 ], [ -94.218750, 71.524909 ], [ -93.515625, 71.524909 ], [ -93.515625, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 70.844673 ], [ -92.109375, 70.844673 ], [ -92.109375, 70.377854 ], [ -91.406250, 70.377854 ], [ -91.406250, 69.900118 ], [ -92.109375, 69.900118 ], [ -92.109375, 69.411242 ], [ -90.703125, 69.411242 ], [ -90.703125, 68.399180 ], [ -90.000000, 68.399180 ], [ -90.000000, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 68.656555 ], [ -87.890625, 68.656555 ], [ -87.890625, 68.138852 ], [ -88.593750, 68.138852 ], [ -88.593750, 67.609221 ], [ -87.890625, 67.609221 ], [ -87.890625, 67.067433 ], [ -87.187500, 67.067433 ], [ -87.187500, 67.339861 ], [ -86.484375, 67.339861 ], [ -86.484375, 68.399180 ], [ -85.781250, 68.399180 ], [ -85.781250, 69.900118 ], [ -85.781250, 70.140364 ], [ -87.187500, 70.140364 ], [ -87.187500, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.000000, 72.607120 ], [ -89.296875, 72.607120 ], [ -89.296875, 73.428424 ], [ -88.593750, 73.428424 ], [ -88.593750, 73.627789 ], [ -86.484375, 73.627789 ], [ -86.484375, 73.824820 ], [ -85.781250, 73.824820 ], [ -85.781250, 73.428424 ], [ -86.484375, 73.428424 ], [ -86.484375, 72.816074 ], [ -85.781250, 72.816074 ], [ -85.781250, 73.022592 ], [ -85.078125, 73.022592 ], [ -85.078125, 73.428424 ], [ -83.671875, 73.428424 ], [ -83.671875, 73.627789 ], [ -82.265625, 73.627789 ], [ -82.265625, 73.428424 ], [ -81.562500, 73.428424 ], [ -81.562500, 73.022592 ], [ -80.859375, 73.022592 ], [ -80.859375, 71.965388 ], [ -80.156250, 71.965388 ], [ -80.156250, 72.181804 ], [ -78.750000, 72.181804 ], [ -78.750000, 72.607120 ], [ -77.343750, 72.607120 ], [ -77.343750, 72.395706 ], [ -76.640625, 72.395706 ], [ -76.640625, 72.181804 ], [ -75.937500, 72.181804 ], [ -75.937500, 71.965388 ], [ -75.234375, 71.965388 ], [ -75.234375, 71.746432 ], [ -74.531250, 71.746432 ], [ -74.531250, 71.524909 ], [ -73.828125, 71.524909 ], [ -73.828125, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 70.844673 ], [ -70.312500, 70.844673 ], [ -70.312500, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.377854 ], [ -68.203125, 70.377854 ], [ -68.203125, 69.900118 ], [ -67.500000, 69.900118 ], [ -67.500000, 69.411242 ], [ -66.796875, 69.411242 ], [ -66.796875, 68.911005 ], [ -68.203125, 68.911005 ], [ -68.203125, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.138852 ], [ -66.093750, 68.138852 ], [ -66.093750, 67.875541 ], [ -64.687500, 67.875541 ], [ -64.687500, 67.609221 ], [ -63.984375, 67.609221 ], [ -63.984375, 67.067433 ], [ -63.281250, 67.067433 ], [ -63.281250, 66.791909 ], [ -61.875000, 66.791909 ], [ -61.875000, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.658275 ], [ -63.281250, 65.658275 ], [ -63.281250, 65.072130 ], [ -65.390625, 65.072130 ], [ -65.390625, 65.658275 ], [ -66.093750, 65.658275 ], [ -66.093750, 66.231457 ], [ -68.203125, 66.231457 ], [ -68.203125, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.072130 ], [ -66.796875, 65.072130 ], [ -66.796875, 64.774125 ], [ -65.390625, 64.774125 ], [ -65.390625, 63.860036 ], [ -64.687500, 63.860036 ], [ -64.687500, 62.593341 ], [ -66.093750, 62.593341 ], [ -66.093750, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.233627 ], [ -68.203125, 63.233627 ], [ -68.203125, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.267923 ], [ -66.093750, 62.267923 ], [ -66.093750, 61.938950 ], [ -68.203125, 61.938950 ], [ -68.203125, 62.267923 ], [ -69.609375, 62.267923 ], [ -69.609375, 62.593341 ], [ -71.015625, 62.593341 ], [ -71.015625, 62.915233 ], [ -71.718750, 62.915233 ], [ -71.718750, 63.233627 ], [ -72.421875, 63.233627 ], [ -72.421875, 63.860036 ], [ -73.125000, 63.860036 ], [ -73.125000, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.472794 ], [ -75.937500, 64.472794 ], [ -75.937500, 64.168107 ], [ -78.750000, 64.168107 ], [ -78.750000, 64.774125 ], [ -78.046875, 64.774125 ], [ -78.046875, 65.366837 ], [ -73.828125, 65.366837 ], [ -73.828125, 65.658275 ], [ -74.531250, 65.658275 ], [ -74.531250, 65.946472 ], [ -73.828125, 65.946472 ], [ -73.828125, 66.513260 ], [ -73.125000, 66.513260 ], [ -73.125000, 67.067433 ], [ -72.421875, 67.067433 ], [ -72.421875, 67.339861 ], [ -73.125000, 67.339861 ], [ -73.125000, 68.138852 ], [ -73.828125, 68.138852 ], [ -73.828125, 68.399180 ], [ -74.531250, 68.399180 ], [ -74.531250, 68.656555 ], [ -75.937500, 68.656555 ], [ -75.937500, 69.162558 ], [ -76.640625, 69.162558 ], [ -76.640625, 69.411242 ], [ -77.343750, 69.411242 ], [ -77.343750, 69.657086 ], [ -78.046875, 69.657086 ], [ -78.046875, 69.900118 ], [ -80.156250, 69.900118 ], [ -80.156250, 69.657086 ], [ -82.968750, 69.657086 ], [ -82.968750, 69.411242 ], [ -82.265625, 69.411242 ], [ -82.265625, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 68.399180 ], [ -82.265625, 68.399180 ], [ -82.265625, 67.875541 ], [ -81.562500, 67.875541 ], [ -81.562500, 66.791909 ], [ -82.968750, 66.791909 ], [ -82.968750, 66.513260 ], [ -83.671875, 66.513260 ], [ -83.671875, 66.231457 ], [ -85.781250, 66.231457 ], [ -85.781250, 65.658275 ] ], [ [ -67.500000, 48.922499 ], [ -68.203125, 48.922499 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.922499 ] ], [ [ -84.375000, 69.900118 ], [ -84.375000, 69.657086 ], [ -83.671875, 69.657086 ], [ -83.671875, 69.900118 ], [ -84.375000, 69.900118 ] ] ], [ [ [ -79.453125, 62.267923 ], [ -79.453125, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 62.267923 ], [ -79.453125, 62.267923 ] ] ], [ [ [ -55.546875, 51.179343 ], [ -55.546875, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.289339 ], [ -56.953125, 50.289339 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ], [ -53.437500, 49.382373 ], [ -53.437500, 47.989922 ], [ -52.734375, 47.989922 ], [ -52.734375, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -55.546875, 47.040182 ], [ -55.546875, 47.517201 ], [ -59.765625, 47.517201 ], [ -59.765625, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 48.458352 ], [ -58.359375, 48.458352 ], [ -58.359375, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 51.179343 ], [ -55.546875, 51.179343 ] ] ], [ [ [ -81.562500, 62.915233 ], [ -81.562500, 62.267923 ], [ -83.671875, 62.267923 ], [ -83.671875, 62.593341 ], [ -82.968750, 62.593341 ], [ -82.968750, 62.915233 ], [ -81.562500, 62.915233 ] ] ], [ [ [ -62.578125, 49.837982 ], [ -62.578125, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 48.922499 ], [ -63.281250, 48.922499 ], [ -63.281250, 49.382373 ], [ -64.687500, 49.382373 ], [ -64.687500, 49.837982 ], [ -62.578125, 49.837982 ] ] ], [ [ [ -132.187500, 52.482780 ], [ -132.890625, 52.482780 ], [ -132.890625, 54.162434 ], [ -131.484375, 54.162434 ], [ -131.484375, 53.330873 ], [ -132.187500, 53.330873 ], [ -132.187500, 52.482780 ] ] ], [ [ [ -97.031250, 69.900118 ], [ -97.031250, 69.657086 ], [ -96.328125, 69.657086 ], [ -96.328125, 69.162558 ], [ -95.625000, 69.162558 ], [ -95.625000, 68.911005 ], [ -96.328125, 68.911005 ], [ -96.328125, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 68.911005 ], [ -99.140625, 68.911005 ], [ -99.140625, 69.162558 ], [ -99.843750, 69.162558 ], [ -99.843750, 69.411242 ], [ -99.140625, 69.411242 ], [ -99.140625, 69.900118 ], [ -97.031250, 69.900118 ] ] ], [ [ [ -93.515625, 74.211983 ], [ -93.515625, 74.019543 ], [ -92.109375, 74.019543 ], [ -92.109375, 73.824820 ], [ -90.703125, 73.824820 ], [ -90.703125, 73.627789 ], [ -91.406250, 73.627789 ], [ -91.406250, 73.226700 ], [ -92.109375, 73.226700 ], [ -92.109375, 72.816074 ], [ -93.515625, 72.816074 ], [ -93.515625, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 71.965388 ], [ -95.625000, 71.965388 ], [ -95.625000, 72.395706 ], [ -96.328125, 72.395706 ], [ -96.328125, 72.181804 ], [ -97.031250, 72.181804 ], [ -97.031250, 71.524909 ], [ -97.734375, 71.524909 ], [ -97.734375, 71.300793 ], [ -99.140625, 71.300793 ], [ -99.140625, 71.524909 ], [ -99.843750, 71.524909 ], [ -99.843750, 71.746432 ], [ -100.546875, 71.746432 ], [ -100.546875, 71.965388 ], [ -101.250000, 71.965388 ], [ -101.250000, 72.181804 ], [ -101.953125, 72.181804 ], [ -101.953125, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 72.816074 ], [ -101.953125, 72.816074 ], [ -101.953125, 72.607120 ], [ -100.546875, 72.607120 ], [ -100.546875, 73.022592 ], [ -101.250000, 73.022592 ], [ -101.250000, 73.627789 ], [ -97.734375, 73.627789 ], [ -97.734375, 73.824820 ], [ -97.031250, 73.824820 ], [ -97.031250, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 72.816074 ], [ -97.031250, 72.816074 ], [ -97.031250, 72.607120 ], [ -96.328125, 72.607120 ], [ -96.328125, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.824820 ], [ -94.921875, 73.824820 ], [ -94.921875, 74.019543 ], [ -94.218750, 74.019543 ], [ -94.218750, 74.211983 ], [ -93.515625, 74.211983 ] ] ], [ [ [ -85.781250, 77.617709 ], [ -85.781250, 77.915669 ], [ -86.484375, 77.915669 ], [ -86.484375, 78.206563 ], [ -87.890625, 78.206563 ], [ -87.890625, 78.490552 ], [ -87.187500, 78.490552 ], [ -87.187500, 78.767792 ], [ -86.484375, 78.767792 ], [ -86.484375, 78.903929 ], [ -85.078125, 78.903929 ], [ -85.078125, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 80.297927 ], [ -86.484375, 80.297927 ], [ -86.484375, 80.178713 ], [ -84.375000, 80.178713 ], [ -84.375000, 80.058050 ], [ -82.968750, 80.058050 ], [ -82.968750, 80.178713 ], [ -82.265625, 80.178713 ], [ -82.265625, 80.297927 ], [ -81.562500, 80.297927 ], [ -81.562500, 80.415707 ], [ -83.671875, 80.415707 ], [ -83.671875, 80.532071 ], [ -88.593750, 80.532071 ], [ -88.593750, 80.760615 ], [ -89.296875, 80.760615 ], [ -89.296875, 81.093214 ], [ -90.000000, 81.093214 ], [ -90.000000, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.406250, 81.413933 ], [ -91.406250, 81.923186 ], [ -90.703125, 81.923186 ], [ -90.703125, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.118384 ], [ -87.890625, 82.118384 ], [ -87.890625, 82.214217 ], [ -87.187500, 82.214217 ], [ -87.187500, 82.402423 ], [ -86.484375, 82.402423 ], [ -86.484375, 82.586106 ], [ -84.375000, 82.586106 ], [ -84.375000, 82.494824 ], [ -83.671875, 82.494824 ], [ -83.671875, 82.308893 ], [ -82.968750, 82.308893 ], [ -82.968750, 82.586106 ], [ -82.265625, 82.586106 ], [ -82.265625, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 82.940327 ], [ -80.859375, 82.940327 ], [ -80.859375, 83.026219 ], [ -79.453125, 83.026219 ], [ -79.453125, 83.111071 ], [ -77.343750, 83.111071 ], [ -77.343750, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -74.531250, 83.026219 ], [ -74.531250, 83.111071 ], [ -73.125000, 83.111071 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.111071 ], [ -67.500000, 83.111071 ], [ -67.500000, 83.026219 ], [ -65.390625, 83.026219 ], [ -65.390625, 82.940327 ], [ -63.984375, 82.940327 ], [ -63.984375, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.586106 ], [ -61.875000, 82.586106 ], [ -61.875000, 82.308893 ], [ -62.578125, 82.308893 ], [ -62.578125, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -63.984375, 81.923186 ], [ -63.984375, 81.823794 ], [ -65.390625, 81.823794 ], [ -65.390625, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.621352 ], [ -67.500000, 81.621352 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -65.390625, 81.413933 ], [ -66.093750, 81.413933 ], [ -66.093750, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 80.983688 ], [ -67.500000, 80.983688 ], [ -67.500000, 80.760615 ], [ -68.906250, 80.760615 ], [ -68.906250, 80.647035 ], [ -69.609375, 80.647035 ], [ -69.609375, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.812302 ], [ -71.718750, 79.812302 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.560546 ], [ -73.828125, 79.560546 ], [ -73.828125, 79.432371 ], [ -74.531250, 79.432371 ], [ -74.531250, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.171335 ], [ -75.234375, 79.171335 ], [ -75.234375, 79.038437 ], [ -75.937500, 79.038437 ], [ -75.937500, 78.767792 ], [ -75.234375, 78.767792 ], [ -75.234375, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.206563 ], [ -76.640625, 78.206563 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.312520 ], [ -78.750000, 77.312520 ], [ -78.750000, 77.157163 ], [ -79.453125, 77.157163 ], [ -79.453125, 76.999935 ], [ -78.046875, 76.999935 ], [ -78.046875, 76.679785 ], [ -78.750000, 76.679785 ], [ -78.750000, 76.516819 ], [ -79.453125, 76.516819 ], [ -79.453125, 76.351896 ], [ -80.156250, 76.351896 ], [ -80.156250, 76.184995 ], [ -81.562500, 76.184995 ], [ -81.562500, 76.351896 ], [ -82.968750, 76.351896 ], [ -82.968750, 76.516819 ], [ -83.671875, 76.516819 ], [ -83.671875, 76.351896 ], [ -89.296875, 76.351896 ], [ -89.296875, 76.999935 ], [ -87.890625, 76.999935 ], [ -87.890625, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.915669 ], [ -87.890625, 77.915669 ], [ -87.890625, 77.767582 ], [ -87.187500, 77.767582 ], [ -87.187500, 77.617709 ], [ -85.781250, 77.617709 ] ], [ [ -85.781250, 77.617709 ], [ -85.781250, 77.466028 ], [ -85.078125, 77.466028 ], [ -85.078125, 77.617709 ], [ -85.781250, 77.617709 ] ] ], [ [ [ -106.171875, 73.022592 ], [ -106.171875, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 73.428424 ], [ -104.765625, 73.428424 ], [ -104.765625, 73.022592 ], [ -105.468750, 73.022592 ], [ -105.468750, 72.816074 ], [ -105.468750, 72.181804 ], [ -104.765625, 72.181804 ], [ -104.765625, 70.844673 ], [ -103.359375, 70.844673 ], [ -103.359375, 70.612614 ], [ -102.656250, 70.612614 ], [ -102.656250, 70.377854 ], [ -101.953125, 70.377854 ], [ -101.953125, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.411242 ], [ -102.656250, 69.411242 ], [ -102.656250, 69.162558 ], [ -101.953125, 69.162558 ], [ -101.953125, 68.911005 ], [ -102.656250, 68.911005 ], [ -102.656250, 68.656555 ], [ -104.062500, 68.656555 ], [ -104.062500, 68.911005 ], [ -105.468750, 68.911005 ], [ -105.468750, 69.162558 ], [ -106.875000, 69.162558 ], [ -106.875000, 68.911005 ], [ -108.281250, 68.911005 ], [ -108.281250, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 69.162558 ], [ -116.718750, 69.162558 ], [ -116.718750, 69.657086 ], [ -117.421875, 69.657086 ], [ -117.421875, 69.900118 ], [ -116.718750, 69.900118 ], [ -116.718750, 70.140364 ], [ -112.500000, 70.140364 ], [ -112.500000, 70.377854 ], [ -113.906250, 70.377854 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.844673 ], [ -117.421875, 70.844673 ], [ -117.421875, 71.074056 ], [ -116.015625, 71.074056 ], [ -116.015625, 71.300793 ], [ -118.828125, 71.300793 ], [ -118.828125, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.965388 ], [ -118.828125, 71.965388 ], [ -118.828125, 72.395706 ], [ -118.125000, 72.395706 ], [ -118.125000, 72.607120 ], [ -117.421875, 72.607120 ], [ -117.421875, 72.816074 ], [ -116.015625, 72.816074 ], [ -116.015625, 73.022592 ], [ -113.906250, 73.022592 ], [ -113.906250, 72.816074 ], [ -111.796875, 72.816074 ], [ -111.796875, 72.395706 ], [ -110.390625, 72.395706 ], [ -110.390625, 72.816074 ], [ -108.984375, 72.816074 ], [ -108.984375, 72.181804 ], [ -108.281250, 72.181804 ], [ -108.281250, 71.746432 ], [ -107.578125, 71.746432 ], [ -107.578125, 72.395706 ], [ -108.281250, 72.395706 ], [ -108.281250, 73.022592 ], [ -106.171875, 73.022592 ] ], [ [ -113.906250, 72.816074 ], [ -114.609375, 72.816074 ], [ -114.609375, 72.607120 ], [ -113.906250, 72.607120 ], [ -113.906250, 72.816074 ] ] ], [ [ [ -92.109375, 81.308321 ], [ -92.109375, 80.983688 ], [ -91.406250, 80.983688 ], [ -91.406250, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.297927 ], [ -87.890625, 80.297927 ], [ -87.890625, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.171335 ], [ -86.484375, 79.171335 ], [ -86.484375, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 78.903929 ], [ -87.890625, 78.903929 ], [ -87.890625, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -89.296875, 78.349411 ], [ -89.296875, 78.206563 ], [ -92.109375, 78.206563 ], [ -92.109375, 78.349411 ], [ -93.515625, 78.349411 ], [ -93.515625, 78.630006 ], [ -94.218750, 78.630006 ], [ -94.218750, 79.171335 ], [ -93.515625, 79.171335 ], [ -93.515625, 79.302640 ], [ -92.812500, 79.302640 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.560546 ], [ -96.328125, 79.560546 ], [ -96.328125, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -96.328125, 80.415707 ], [ -96.328125, 80.760615 ], [ -95.625000, 80.760615 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.093214 ], [ -94.921875, 81.093214 ], [ -94.921875, 81.201420 ], [ -92.812500, 81.201420 ], [ -92.812500, 81.308321 ], [ -92.109375, 81.308321 ] ] ], [ [ [ -94.921875, 77.157163 ], [ -94.921875, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.840816 ], [ -91.406250, 76.840816 ], [ -91.406250, 76.679785 ], [ -90.703125, 76.679785 ], [ -90.703125, 75.845169 ], [ -90.000000, 75.845169 ], [ -90.000000, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.497157 ], [ -85.078125, 75.497157 ], [ -85.078125, 75.672197 ], [ -83.671875, 75.672197 ], [ -83.671875, 75.845169 ], [ -82.265625, 75.845169 ], [ -82.265625, 75.672197 ], [ -80.859375, 75.672197 ], [ -80.859375, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.402163 ], [ -82.968750, 74.402163 ], [ -82.968750, 74.590108 ], [ -83.671875, 74.590108 ], [ -83.671875, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.590108 ], [ -91.406250, 74.590108 ], [ -91.406250, 74.775843 ], [ -92.109375, 74.775843 ], [ -92.109375, 74.959392 ], [ -92.812500, 74.959392 ], [ -92.812500, 75.845169 ], [ -93.515625, 75.845169 ], [ -93.515625, 76.184995 ], [ -94.218750, 76.184995 ], [ -94.218750, 76.351896 ], [ -95.625000, 76.351896 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 77.157163 ], [ -94.921875, 77.157163 ] ] ], [ [ [ -117.421875, 72.816074 ], [ -118.828125, 72.816074 ], [ -118.828125, 72.607120 ], [ -119.531250, 72.607120 ], [ -119.531250, 72.181804 ], [ -120.234375, 72.181804 ], [ -120.234375, 71.074056 ], [ -121.640625, 71.074056 ], [ -121.640625, 70.844673 ], [ -123.046875, 70.844673 ], [ -123.046875, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.300793 ], [ -124.453125, 71.300793 ], [ -124.453125, 71.524909 ], [ -125.156250, 71.524909 ], [ -125.156250, 71.746432 ], [ -125.859375, 71.746432 ], [ -125.859375, 72.181804 ], [ -125.156250, 72.181804 ], [ -125.156250, 73.022592 ], [ -124.453125, 73.022592 ], [ -124.453125, 73.428424 ], [ -123.750000, 73.428424 ], [ -123.750000, 73.627789 ], [ -124.453125, 73.627789 ], [ -124.453125, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.211983 ], [ -123.046875, 74.211983 ], [ -123.046875, 74.402163 ], [ -121.640625, 74.402163 ], [ -121.640625, 74.211983 ], [ -117.421875, 74.211983 ], [ -117.421875, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.627789 ], [ -116.015625, 73.627789 ], [ -116.015625, 73.428424 ], [ -115.312500, 73.428424 ], [ -115.312500, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.816074 ] ] ], [ [ [ -75.234375, 68.138852 ], [ -75.234375, 67.067433 ], [ -76.640625, 67.067433 ], [ -76.640625, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.875541 ], [ -76.640625, 67.875541 ], [ -76.640625, 68.138852 ], [ -75.234375, 68.138852 ] ] ], [ [ [ -108.281250, 76.679785 ], [ -108.281250, 76.016094 ], [ -107.578125, 76.016094 ], [ -107.578125, 75.845169 ], [ -106.875000, 75.845169 ], [ -106.875000, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.171875, 75.672197 ], [ -105.468750, 75.672197 ], [ -105.468750, 75.140778 ], [ -106.171875, 75.140778 ], [ -106.171875, 74.959392 ], [ -107.578125, 74.959392 ], [ -107.578125, 74.775843 ], [ -109.687500, 74.775843 ], [ -109.687500, 74.590108 ], [ -111.093750, 74.590108 ], [ -111.093750, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -113.203125, 74.775843 ], [ -113.203125, 74.959392 ], [ -117.421875, 74.959392 ], [ -117.421875, 75.320025 ], [ -116.718750, 75.320025 ], [ -116.718750, 75.845169 ], [ -116.015625, 75.845169 ], [ -116.015625, 76.351896 ], [ -113.906250, 76.351896 ], [ -113.906250, 76.184995 ], [ -112.500000, 76.184995 ], [ -112.500000, 76.016094 ], [ -111.796875, 76.016094 ], [ -111.796875, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.497157 ], [ -108.984375, 75.497157 ], [ -108.984375, 75.672197 ], [ -109.687500, 75.672197 ], [ -109.687500, 76.016094 ], [ -110.390625, 76.016094 ], [ -110.390625, 76.516819 ], [ -109.687500, 76.516819 ], [ -109.687500, 76.679785 ], [ -108.281250, 76.679785 ] ], [ [ -113.203125, 75.140778 ], [ -113.203125, 74.959392 ], [ -111.796875, 74.959392 ], [ -111.796875, 75.140778 ], [ -113.203125, 75.140778 ] ] ], [ [ [ -79.453125, 73.824820 ], [ -79.453125, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.022592 ], [ -76.640625, 73.022592 ], [ -76.640625, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.226700 ], [ -80.859375, 73.226700 ], [ -80.859375, 73.627789 ], [ -80.156250, 73.627789 ], [ -80.156250, 73.824820 ], [ -79.453125, 73.824820 ] ] ], [ [ [ -116.015625, 77.466028 ], [ -116.015625, 76.679785 ], [ -116.718750, 76.679785 ], [ -116.718750, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 76.016094 ], [ -120.234375, 76.016094 ], [ -120.234375, 75.845169 ], [ -122.343750, 75.845169 ], [ -122.343750, 76.016094 ], [ -123.046875, 76.016094 ], [ -123.046875, 76.184995 ], [ -122.343750, 76.184995 ], [ -122.343750, 76.516819 ], [ -121.640625, 76.516819 ], [ -121.640625, 76.679785 ], [ -120.937500, 76.679785 ], [ -120.937500, 76.840816 ], [ -120.234375, 76.840816 ], [ -120.234375, 77.157163 ], [ -119.531250, 77.157163 ], [ -119.531250, 77.312520 ], [ -118.828125, 77.312520 ], [ -118.828125, 77.466028 ], [ -116.015625, 77.466028 ] ] ], [ [ [ -98.437500, 76.516819 ], [ -98.437500, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.320025 ], [ -98.437500, 75.320025 ], [ -98.437500, 74.959392 ], [ -100.546875, 74.959392 ], [ -100.546875, 75.672197 ], [ -101.250000, 75.672197 ], [ -101.250000, 75.497157 ], [ -102.656250, 75.497157 ], [ -102.656250, 76.351896 ], [ -100.546875, 76.351896 ], [ -100.546875, 76.516819 ], [ -98.437500, 76.516819 ] ] ], [ [ [ -104.765625, 79.302640 ], [ -104.765625, 79.171335 ], [ -103.359375, 79.171335 ], [ -103.359375, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.767792 ], [ -100.546875, 78.767792 ], [ -100.546875, 78.490552 ], [ -99.843750, 78.490552 ], [ -99.843750, 77.915669 ], [ -101.250000, 77.915669 ], [ -101.250000, 78.061989 ], [ -101.953125, 78.061989 ], [ -101.953125, 78.206563 ], [ -102.656250, 78.206563 ], [ -102.656250, 78.349411 ], [ -104.765625, 78.349411 ], [ -104.765625, 78.490552 ], [ -104.062500, 78.490552 ], [ -104.062500, 78.630006 ], [ -104.765625, 78.630006 ], [ -104.765625, 78.767792 ], [ -105.468750, 78.767792 ], [ -105.468750, 79.302640 ], [ -104.765625, 79.302640 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 75.140778 ], [ -93.515625, 75.140778 ], [ -93.515625, 74.775843 ], [ -94.218750, 74.775843 ], [ -94.218750, 74.590108 ], [ -96.328125, 74.590108 ], [ -96.328125, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -96.328125, 75.140778 ], [ -96.328125, 75.320025 ], [ -95.625000, 75.320025 ], [ -95.625000, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -97.031250, 78.767792 ], [ -97.031250, 78.630006 ], [ -96.328125, 78.630006 ], [ -96.328125, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.915669 ], [ -98.437500, 77.915669 ], [ -98.437500, 78.767792 ], [ -97.031250, 78.767792 ] ] ], [ [ [ -109.687500, 78.061989 ], [ -109.687500, 77.915669 ], [ -110.390625, 77.915669 ], [ -110.390625, 77.617709 ], [ -111.093750, 77.617709 ], [ -111.093750, 77.466028 ], [ -112.500000, 77.466028 ], [ -112.500000, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.915669 ], [ -112.500000, 77.915669 ], [ -112.500000, 78.061989 ], [ -109.687500, 78.061989 ] ] ], [ [ [ -111.093750, 78.767792 ], [ -111.093750, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.349411 ], [ -112.500000, 78.349411 ], [ -112.500000, 78.630006 ], [ -111.796875, 78.630006 ], [ -111.796875, 78.767792 ], [ -111.093750, 78.767792 ] ] ], [ [ [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ], [ -93.515625, 77.617709 ], [ -93.515625, 77.466028 ], [ -95.625000, 77.466028 ], [ -95.625000, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -94.218750, 77.767582 ] ] ], [ [ [ -61.875000, 46.073231 ], [ -63.984375, 46.073231 ], [ -63.984375, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.073231 ] ] ], [ [ [ -125.156250, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 48.458352 ], [ -125.156250, 48.458352 ], [ -125.156250, 48.922499 ] ] ], [ [ [ -132.187500, 52.482780 ], [ -131.484375, 52.482780 ], [ -131.484375, 52.052490 ], [ -132.187500, 52.052490 ], [ -132.187500, 52.482780 ] ] ], [ [ [ -85.781250, 65.658275 ], [ -85.078125, 65.658275 ], [ -85.078125, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 63.860036 ], [ -80.156250, 63.860036 ], [ -80.156250, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.860036 ], [ -83.671875, 63.860036 ], [ -83.671875, 63.548552 ], [ -84.375000, 63.548552 ], [ -84.375000, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 62.915233 ], [ -85.781250, 62.915233 ], [ -85.781250, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 65.072130 ], [ -85.781250, 65.072130 ], [ -85.781250, 65.658275 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.953125, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 51.179343 ], [ -59.062500, 51.179343 ], [ -59.062500, 50.736455 ], [ -59.765625, 50.736455 ], [ -59.765625, 50.289339 ], [ -66.796875, 50.289339 ], [ -66.796875, 49.837982 ], [ -67.500000, 49.837982 ], [ -67.500000, 49.382373 ], [ -68.906250, 49.382373 ], [ -68.906250, 48.922499 ], [ -69.609375, 48.922499 ], [ -69.609375, 47.989922 ], [ -70.312500, 47.989922 ], [ -70.312500, 47.517201 ], [ -71.015625, 47.517201 ], [ -71.015625, 47.040182 ], [ -70.312500, 47.040182 ], [ -70.312500, 45.583290 ], [ -71.718750, 45.583290 ], [ -71.718750, 45.089036 ], [ -75.937500, 45.089036 ], [ -75.937500, 44.590467 ], [ -76.640625, 44.590467 ], [ -76.640625, 44.087585 ], [ -78.750000, 44.087585 ], [ -78.750000, 43.580391 ], [ -79.453125, 43.580391 ], [ -79.453125, 42.553080 ], [ -81.562500, 42.553080 ], [ -81.562500, 42.032974 ], [ -83.671875, 42.032974 ], [ -83.671875, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 43.068888 ], [ -82.265625, 43.068888 ], [ -82.265625, 44.087585 ], [ -82.968750, 44.087585 ], [ -82.968750, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 46.558860 ], [ -85.078125, 46.558860 ], [ -85.078125, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.458352 ], [ -94.218750, 48.458352 ], [ -94.218750, 48.922499 ], [ -94.921875, 48.922499 ], [ -94.921875, 49.837982 ], [ -95.625000, 49.837982 ], [ -95.625000, 49.382373 ], [ -123.750000, 49.382373 ], [ -123.750000, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 49.382373 ], [ -124.453125, 49.382373 ], [ -124.453125, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 48.458352 ], [ -125.859375, 48.458352 ], [ -125.859375, 48.922499 ], [ -126.562500, 48.922499 ], [ -126.562500, 49.382373 ], [ -127.265625, 49.382373 ], [ -127.265625, 49.837982 ], [ -128.671875, 49.837982 ], [ -128.671875, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 51.618017 ], [ -128.671875, 51.618017 ], [ -128.671875, 52.052490 ], [ -127.968750, 52.052490 ], [ -127.968750, 52.482780 ], [ -129.375000, 52.482780 ], [ -129.375000, 53.748711 ], [ -130.078125, 53.748711 ], [ -130.078125, 54.162434 ], [ -130.781250, 54.162434 ], [ -130.781250, 54.977614 ], [ -130.078125, 54.977614 ], [ -130.078125, 56.170023 ], [ -131.484375, 56.170023 ], [ -131.484375, 56.559482 ], [ -132.187500, 56.559482 ], [ -132.187500, 56.944974 ], [ -132.890625, 56.944974 ], [ -132.890625, 58.077876 ], [ -133.593750, 58.077876 ], [ -133.593750, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.534318 ], [ -137.109375, 59.534318 ], [ -137.109375, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.888937 ], [ -139.218750, 59.888937 ], [ -139.218750, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 60.586967 ], [ -141.328125, 60.586967 ], [ -141.328125, 69.900118 ], [ -140.625000, 69.900118 ], [ -140.625000, 69.657086 ], [ -139.218750, 69.657086 ], [ -139.218750, 69.411242 ], [ -138.515625, 69.411242 ], [ -138.515625, 69.162558 ], [ -137.812500, 69.162558 ], [ -137.812500, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 69.162558 ], [ -135.703125, 69.162558 ], [ -135.703125, 69.411242 ], [ -135.000000, 69.411242 ], [ -135.000000, 69.657086 ], [ -132.890625, 69.657086 ], [ -132.890625, 69.900118 ], [ -131.484375, 69.900118 ], [ -131.484375, 70.140364 ], [ -129.375000, 70.140364 ], [ -129.375000, 69.900118 ], [ -128.671875, 69.900118 ], [ -128.671875, 70.377854 ], [ -127.968750, 70.377854 ], [ -127.968750, 70.140364 ], [ -127.265625, 70.140364 ], [ -127.265625, 69.900118 ], [ -126.562500, 69.900118 ], [ -126.562500, 69.657086 ], [ -125.156250, 69.657086 ], [ -125.156250, 70.140364 ], [ -124.453125, 70.140364 ], [ -124.453125, 69.411242 ], [ -123.750000, 69.411242 ], [ -123.750000, 69.657086 ], [ -123.046875, 69.657086 ], [ -123.046875, 69.900118 ], [ -121.640625, 69.900118 ], [ -121.640625, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.411242 ], [ -119.531250, 69.411242 ], [ -119.531250, 69.162558 ], [ -118.125000, 69.162558 ], [ -118.125000, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.138852 ], [ -115.312500, 68.138852 ], [ -115.312500, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.609221 ], [ -108.984375, 67.609221 ], [ -108.984375, 67.875541 ], [ -108.281250, 67.875541 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.399180 ], [ -108.281250, 68.656555 ], [ -107.578125, 68.656555 ], [ -107.578125, 68.911005 ], [ -106.171875, 68.911005 ], [ -106.171875, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.399180 ], [ -104.765625, 68.399180 ], [ -104.765625, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 67.875541 ], [ -99.140625, 67.875541 ], [ -99.140625, 68.656555 ], [ -97.734375, 68.656555 ], [ -97.734375, 68.399180 ], [ -96.328125, 68.399180 ], [ -96.328125, 67.609221 ], [ -95.625000, 67.609221 ], [ -95.625000, 68.138852 ], [ -94.921875, 68.138852 ], [ -94.921875, 69.411242 ], [ -95.625000, 69.411242 ], [ -95.625000, 69.900118 ], [ -97.031250, 69.900118 ], [ -97.031250, 71.300793 ], [ -96.328125, 71.300793 ], [ -96.328125, 71.746432 ], [ -95.625000, 71.746432 ], [ -95.625000, 71.965388 ], [ -94.218750, 71.965388 ], [ -94.218750, 71.746432 ], [ -93.515625, 71.746432 ], [ -93.515625, 71.074056 ], [ -92.812500, 71.074056 ], [ -92.812500, 70.612614 ], [ -92.109375, 70.612614 ], [ -92.109375, 70.140364 ], [ -92.812500, 70.140364 ], [ -92.812500, 69.900118 ], [ -92.109375, 69.900118 ], [ -92.109375, 69.657086 ], [ -90.703125, 69.657086 ], [ -90.703125, 68.656555 ], [ -90.000000, 68.656555 ], [ -90.000000, 69.162558 ], [ -89.296875, 69.162558 ], [ -89.296875, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 67.609221 ], [ -87.890625, 67.609221 ], [ -87.890625, 67.339861 ], [ -87.187500, 67.339861 ], [ -87.187500, 67.875541 ], [ -86.484375, 67.875541 ], [ -86.484375, 68.399180 ], [ -85.781250, 68.399180 ], [ -85.781250, 69.900118 ], [ -83.671875, 69.900118 ], [ -83.671875, 70.140364 ], [ -86.484375, 70.140364 ], [ -86.484375, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.612614 ], [ -90.000000, 70.612614 ], [ -90.000000, 70.844673 ], [ -89.296875, 70.844673 ], [ -89.296875, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.000000, 71.746432 ], [ -90.703125, 71.746432 ], [ -90.703125, 72.816074 ], [ -90.000000, 72.816074 ], [ -90.000000, 73.226700 ], [ -89.296875, 73.226700 ], [ -89.296875, 73.428424 ], [ -88.593750, 73.428424 ], [ -88.593750, 73.627789 ], [ -87.187500, 73.627789 ], [ -87.187500, 73.824820 ], [ -86.484375, 73.824820 ], [ -86.484375, 73.428424 ], [ -87.187500, 73.428424 ], [ -87.187500, 73.022592 ], [ -86.484375, 73.022592 ], [ -86.484375, 72.607120 ], [ -85.781250, 72.607120 ], [ -85.781250, 73.022592 ], [ -85.078125, 73.022592 ], [ -85.078125, 73.428424 ], [ -84.375000, 73.428424 ], [ -84.375000, 73.627789 ], [ -82.265625, 73.627789 ], [ -82.265625, 73.226700 ], [ -81.562500, 73.226700 ], [ -81.562500, 72.816074 ], [ -80.859375, 72.816074 ], [ -80.859375, 72.181804 ], [ -79.453125, 72.181804 ], [ -79.453125, 72.395706 ], [ -78.750000, 72.395706 ], [ -78.750000, 72.607120 ], [ -76.640625, 72.607120 ], [ -76.640625, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 72.181804 ], [ -75.234375, 72.181804 ], [ -75.234375, 71.965388 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -73.125000, 71.524909 ], [ -73.125000, 71.746432 ], [ -72.421875, 71.746432 ], [ -72.421875, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 70.844673 ], [ -70.312500, 70.844673 ], [ -70.312500, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.377854 ], [ -68.203125, 70.377854 ], [ -68.203125, 69.657086 ], [ -67.500000, 69.657086 ], [ -67.500000, 69.162558 ], [ -68.203125, 69.162558 ], [ -68.203125, 68.911005 ], [ -68.906250, 68.911005 ], [ -68.906250, 68.656555 ], [ -68.203125, 68.656555 ], [ -68.203125, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.138852 ], [ -66.796875, 68.138852 ], [ -66.796875, 67.875541 ], [ -65.390625, 67.875541 ], [ -65.390625, 67.609221 ], [ -64.687500, 67.609221 ], [ -64.687500, 67.067433 ], [ -61.875000, 67.067433 ], [ -61.875000, 66.513260 ], [ -62.578125, 66.513260 ], [ -62.578125, 65.946472 ], [ -63.281250, 65.946472 ], [ -63.281250, 65.366837 ], [ -63.984375, 65.366837 ], [ -63.984375, 65.072130 ], [ -64.687500, 65.072130 ], [ -64.687500, 65.366837 ], [ -65.390625, 65.366837 ], [ -65.390625, 65.658275 ], [ -66.093750, 65.658275 ], [ -66.093750, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.513260 ], [ -68.203125, 66.513260 ], [ -68.203125, 65.658275 ], [ -67.500000, 65.658275 ], [ -67.500000, 65.072130 ], [ -66.796875, 65.072130 ], [ -66.796875, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.472794 ], [ -65.390625, 64.472794 ], [ -65.390625, 63.860036 ], [ -64.687500, 63.860036 ], [ -64.687500, 63.233627 ], [ -65.390625, 63.233627 ], [ -65.390625, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.233627 ], [ -67.500000, 63.233627 ], [ -67.500000, 63.548552 ], [ -68.203125, 63.548552 ], [ -68.203125, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 61.938950 ], [ -67.500000, 61.938950 ], [ -67.500000, 62.267923 ], [ -68.906250, 62.267923 ], [ -68.906250, 62.593341 ], [ -71.015625, 62.593341 ], [ -71.015625, 62.915233 ], [ -71.718750, 62.915233 ], [ -71.718750, 63.233627 ], [ -72.421875, 63.233627 ], [ -72.421875, 63.860036 ], [ -73.125000, 63.860036 ], [ -73.125000, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.472794 ], [ -78.750000, 64.472794 ], [ -78.750000, 65.072130 ], [ -78.046875, 65.072130 ], [ -78.046875, 65.366837 ], [ -75.234375, 65.366837 ], [ -75.234375, 65.658275 ], [ -74.531250, 65.658275 ], [ -74.531250, 66.513260 ], [ -73.828125, 66.513260 ], [ -73.828125, 67.067433 ], [ -73.125000, 67.067433 ], [ -73.125000, 67.875541 ], [ -73.828125, 67.875541 ], [ -73.828125, 68.138852 ], [ -74.531250, 68.138852 ], [ -74.531250, 68.399180 ], [ -75.234375, 68.399180 ], [ -75.234375, 68.656555 ], [ -76.640625, 68.656555 ], [ -76.640625, 69.411242 ], [ -77.343750, 69.411242 ], [ -77.343750, 69.900118 ], [ -78.750000, 69.900118 ], [ -78.750000, 70.140364 ], [ -80.156250, 70.140364 ], [ -80.156250, 69.900118 ], [ -82.968750, 69.900118 ], [ -82.968750, 69.657086 ], [ -82.265625, 69.657086 ], [ -82.265625, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 68.399180 ], [ -82.265625, 68.399180 ], [ -82.265625, 67.875541 ], [ -81.562500, 67.875541 ], [ -81.562500, 67.067433 ], [ -82.265625, 67.067433 ], [ -82.265625, 66.791909 ], [ -82.968750, 66.791909 ], [ -82.968750, 66.513260 ], [ -86.484375, 66.513260 ], [ -86.484375, 65.658275 ], [ -87.187500, 65.658275 ], [ -87.187500, 65.072130 ], [ -87.890625, 65.072130 ], [ -87.890625, 64.472794 ], [ -88.593750, 64.472794 ], [ -88.593750, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 63.860036 ], [ -90.703125, 63.860036 ], [ -90.703125, 63.548552 ], [ -91.406250, 63.548552 ], [ -91.406250, 62.915233 ], [ -92.109375, 62.915233 ], [ -92.109375, 62.593341 ], [ -92.812500, 62.593341 ], [ -92.812500, 62.267923 ], [ -93.515625, 62.267923 ], [ -93.515625, 61.938950 ], [ -94.218750, 61.938950 ], [ -94.218750, 61.270233 ], [ -94.921875, 61.270233 ], [ -94.921875, 58.813742 ], [ -93.515625, 58.813742 ], [ -93.515625, 58.447733 ], [ -92.812500, 58.447733 ], [ -92.812500, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 56.944974 ], [ -89.296875, 56.944974 ], [ -89.296875, 56.559482 ], [ -88.593750, 56.559482 ], [ -88.593750, 56.170023 ], [ -87.890625, 56.170023 ], [ -87.890625, 55.776573 ], [ -86.484375, 55.776573 ], [ -86.484375, 55.379110 ], [ -82.968750, 55.379110 ], [ -82.968750, 53.748711 ], [ -82.265625, 53.748711 ], [ -82.265625, 52.908902 ], [ -81.562500, 52.908902 ], [ -81.562500, 52.052490 ], [ -80.859375, 52.052490 ], [ -80.859375, 51.618017 ], [ -79.453125, 51.618017 ], [ -79.453125, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.453125, 53.330873 ], [ -79.453125, 54.572062 ], [ -80.156250, 54.572062 ], [ -80.156250, 54.977614 ], [ -78.750000, 54.977614 ], [ -78.750000, 55.379110 ], [ -78.046875, 55.379110 ], [ -78.046875, 55.776573 ], [ -77.343750, 55.776573 ], [ -77.343750, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -78.046875, 58.077876 ], [ -78.046875, 58.447733 ], [ -78.750000, 58.447733 ], [ -78.750000, 58.813742 ], [ -78.046875, 58.813742 ], [ -78.046875, 59.534318 ], [ -77.343750, 59.534318 ], [ -77.343750, 60.239811 ], [ -78.046875, 60.239811 ], [ -78.046875, 61.606396 ], [ -78.750000, 61.606396 ], [ -78.750000, 62.593341 ], [ -75.937500, 62.593341 ], [ -75.937500, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -69.609375, 61.270233 ], [ -69.609375, 60.586967 ], [ -70.312500, 60.586967 ], [ -70.312500, 59.534318 ], [ -69.609375, 59.534318 ], [ -69.609375, 58.813742 ], [ -68.906250, 58.813742 ], [ -68.906250, 58.447733 ], [ -66.796875, 58.447733 ], [ -66.796875, 58.813742 ], [ -66.093750, 58.813742 ], [ -66.093750, 59.534318 ], [ -65.390625, 59.534318 ], [ -65.390625, 60.239811 ], [ -64.687500, 60.239811 ], [ -64.687500, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.175928 ], [ -63.281250, 59.175928 ], [ -63.281250, 58.447733 ], [ -62.578125, 58.447733 ], [ -62.578125, 57.704147 ], [ -61.875000, 57.704147 ], [ -61.875000, 56.170023 ], [ -61.171875, 56.170023 ], [ -61.171875, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.379110 ], [ -59.765625, 55.379110 ], [ -59.765625, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.572062 ], [ -56.953125, 54.572062 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 52.052490 ], [ -56.953125, 52.052490 ], [ -56.953125, 51.618017 ] ], [ [ -125.156250, 49.837982 ], [ -125.156250, 50.289339 ], [ -125.859375, 50.289339 ], [ -125.859375, 49.837982 ], [ -125.156250, 49.837982 ] ] ], [ [ [ -79.453125, 62.267923 ], [ -79.453125, 61.938950 ], [ -80.859375, 61.938950 ], [ -80.859375, 62.267923 ], [ -79.453125, 62.267923 ] ] ], [ [ [ -82.265625, 62.915233 ], [ -82.265625, 62.593341 ], [ -82.968750, 62.593341 ], [ -82.968750, 62.267923 ], [ -84.375000, 62.267923 ], [ -84.375000, 62.593341 ], [ -83.671875, 62.593341 ], [ -83.671875, 62.915233 ], [ -82.265625, 62.915233 ] ] ], [ [ [ -117.421875, 73.022592 ], [ -118.125000, 73.022592 ], [ -118.125000, 72.816074 ], [ -118.828125, 72.816074 ], [ -118.828125, 72.607120 ], [ -119.531250, 72.607120 ], [ -119.531250, 72.395706 ], [ -120.234375, 72.395706 ], [ -120.234375, 71.965388 ], [ -120.937500, 71.965388 ], [ -120.937500, 71.300793 ], [ -122.343750, 71.300793 ], [ -122.343750, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.524909 ], [ -125.156250, 71.524909 ], [ -125.156250, 71.746432 ], [ -126.562500, 71.746432 ], [ -126.562500, 72.181804 ], [ -125.859375, 72.181804 ], [ -125.859375, 72.607120 ], [ -125.156250, 72.607120 ], [ -125.156250, 73.428424 ], [ -124.453125, 73.428424 ], [ -124.453125, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.402163 ], [ -123.046875, 74.402163 ], [ -123.046875, 74.590108 ], [ -121.640625, 74.590108 ], [ -121.640625, 74.402163 ], [ -119.531250, 74.402163 ], [ -119.531250, 74.211983 ], [ -118.125000, 74.211983 ], [ -118.125000, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.824820 ], [ -116.015625, 73.824820 ], [ -116.015625, 73.428424 ], [ -116.718750, 73.428424 ], [ -116.718750, 73.226700 ], [ -117.421875, 73.226700 ], [ -117.421875, 73.022592 ] ] ], [ [ [ -97.734375, 70.140364 ], [ -97.734375, 69.900118 ], [ -97.031250, 69.900118 ], [ -97.031250, 69.657086 ], [ -96.328125, 69.657086 ], [ -96.328125, 68.911005 ], [ -97.734375, 68.911005 ], [ -97.734375, 69.162558 ], [ -99.843750, 69.162558 ], [ -99.843750, 69.657086 ], [ -99.140625, 69.657086 ], [ -99.140625, 70.140364 ], [ -97.734375, 70.140364 ] ] ], [ [ [ -85.781250, 77.767582 ], [ -85.781250, 78.061989 ], [ -86.484375, 78.061989 ], [ -86.484375, 78.206563 ], [ -87.187500, 78.206563 ], [ -87.187500, 78.349411 ], [ -88.593750, 78.349411 ], [ -88.593750, 78.490552 ], [ -89.296875, 78.490552 ], [ -89.296875, 78.349411 ], [ -93.515625, 78.349411 ], [ -93.515625, 78.490552 ], [ -94.218750, 78.490552 ], [ -94.218750, 79.302640 ], [ -93.515625, 79.302640 ], [ -93.515625, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.560546 ], [ -96.328125, 79.560546 ], [ -96.328125, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -96.328125, 80.415707 ], [ -96.328125, 80.760615 ], [ -95.625000, 80.760615 ], [ -95.625000, 80.983688 ], [ -94.921875, 80.983688 ], [ -94.921875, 81.308321 ], [ -92.812500, 81.308321 ], [ -92.812500, 81.093214 ], [ -92.109375, 81.093214 ], [ -92.109375, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.647035 ], [ -90.703125, 80.647035 ], [ -90.703125, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.415707 ], [ -87.890625, 80.415707 ], [ -87.890625, 80.058050 ], [ -87.187500, 80.058050 ], [ -87.187500, 80.297927 ], [ -84.375000, 80.297927 ], [ -84.375000, 80.178713 ], [ -82.968750, 80.178713 ], [ -82.968750, 80.415707 ], [ -82.265625, 80.415707 ], [ -82.265625, 80.532071 ], [ -83.671875, 80.532071 ], [ -83.671875, 80.647035 ], [ -85.781250, 80.647035 ], [ -85.781250, 80.532071 ], [ -88.593750, 80.532071 ], [ -88.593750, 80.647035 ], [ -89.296875, 80.647035 ], [ -89.296875, 80.760615 ], [ -90.000000, 80.760615 ], [ -90.000000, 81.093214 ], [ -90.703125, 81.093214 ], [ -90.703125, 81.413933 ], [ -91.406250, 81.413933 ], [ -91.406250, 81.723188 ], [ -92.109375, 81.723188 ], [ -92.109375, 81.923186 ], [ -91.406250, 81.923186 ], [ -91.406250, 82.021378 ], [ -90.703125, 82.021378 ], [ -90.703125, 82.118384 ], [ -88.593750, 82.118384 ], [ -88.593750, 82.214217 ], [ -87.187500, 82.214217 ], [ -87.187500, 82.402423 ], [ -86.484375, 82.402423 ], [ -86.484375, 82.586106 ], [ -85.781250, 82.586106 ], [ -85.781250, 82.676285 ], [ -84.375000, 82.676285 ], [ -84.375000, 82.494824 ], [ -83.671875, 82.494824 ], [ -83.671875, 82.676285 ], [ -82.968750, 82.676285 ], [ -82.968750, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 83.026219 ], [ -80.859375, 83.026219 ], [ -80.859375, 83.111071 ], [ -79.453125, 83.111071 ], [ -79.453125, 83.194896 ], [ -76.640625, 83.194896 ], [ -76.640625, 83.111071 ], [ -74.531250, 83.111071 ], [ -74.531250, 83.194896 ], [ -73.125000, 83.194896 ], [ -73.125000, 83.277705 ], [ -72.421875, 83.277705 ], [ -72.421875, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.111071 ], [ -66.093750, 83.111071 ], [ -66.093750, 83.026219 ], [ -64.687500, 83.026219 ], [ -64.687500, 82.940327 ], [ -63.984375, 82.940327 ], [ -63.984375, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.676285 ], [ -61.875000, 82.676285 ], [ -61.875000, 82.494824 ], [ -62.578125, 82.494824 ], [ -62.578125, 82.308893 ], [ -63.281250, 82.308893 ], [ -63.281250, 82.214217 ], [ -63.984375, 82.214217 ], [ -63.984375, 82.021378 ], [ -64.687500, 82.021378 ], [ -64.687500, 81.923186 ], [ -66.093750, 81.923186 ], [ -66.093750, 81.823794 ], [ -66.796875, 81.823794 ], [ -66.796875, 81.723188 ], [ -67.500000, 81.723188 ], [ -67.500000, 81.518272 ], [ -66.093750, 81.518272 ], [ -66.093750, 81.413933 ], [ -66.796875, 81.413933 ], [ -66.796875, 81.201420 ], [ -67.500000, 81.201420 ], [ -67.500000, 80.983688 ], [ -68.203125, 80.983688 ], [ -68.203125, 80.872827 ], [ -68.906250, 80.872827 ], [ -68.906250, 80.647035 ], [ -69.609375, 80.647035 ], [ -69.609375, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 80.178713 ], [ -71.015625, 80.178713 ], [ -71.015625, 79.935918 ], [ -71.718750, 79.935918 ], [ -71.718750, 79.812302 ], [ -72.421875, 79.812302 ], [ -72.421875, 79.687184 ], [ -73.828125, 79.687184 ], [ -73.828125, 79.560546 ], [ -74.531250, 79.560546 ], [ -74.531250, 79.432371 ], [ -77.343750, 79.432371 ], [ -77.343750, 79.302640 ], [ -75.937500, 79.302640 ], [ -75.937500, 79.171335 ], [ -76.640625, 79.171335 ], [ -76.640625, 78.767792 ], [ -75.937500, 78.767792 ], [ -75.937500, 78.349411 ], [ -76.640625, 78.349411 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.767582 ], [ -78.750000, 77.767582 ], [ -78.750000, 77.466028 ], [ -79.453125, 77.466028 ], [ -79.453125, 77.312520 ], [ -80.156250, 77.312520 ], [ -80.156250, 76.999935 ], [ -78.750000, 76.999935 ], [ -78.750000, 77.157163 ], [ -78.046875, 77.157163 ], [ -78.046875, 76.679785 ], [ -78.750000, 76.679785 ], [ -78.750000, 76.516819 ], [ -79.453125, 76.516819 ], [ -79.453125, 76.351896 ], [ -80.156250, 76.351896 ], [ -80.156250, 76.184995 ], [ -82.265625, 76.184995 ], [ -82.265625, 76.351896 ], [ -83.671875, 76.351896 ], [ -83.671875, 76.516819 ], [ -84.375000, 76.516819 ], [ -84.375000, 76.351896 ], [ -87.890625, 76.351896 ], [ -87.890625, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.999935 ], [ -89.296875, 76.999935 ], [ -89.296875, 77.157163 ], [ -87.890625, 77.157163 ], [ -87.890625, 77.617709 ], [ -88.593750, 77.617709 ], [ -88.593750, 77.915669 ], [ -87.187500, 77.915669 ], [ -87.187500, 77.767582 ], [ -85.781250, 77.767582 ] ], [ [ -86.484375, 79.432371 ], [ -86.484375, 79.302640 ], [ -87.187500, 79.302640 ], [ -87.187500, 79.038437 ], [ -87.890625, 79.038437 ], [ -87.890625, 78.767792 ], [ -88.593750, 78.767792 ], [ -88.593750, 78.490552 ], [ -87.890625, 78.490552 ], [ -87.890625, 78.630006 ], [ -87.187500, 78.630006 ], [ -87.187500, 78.767792 ], [ -86.484375, 78.767792 ], [ -86.484375, 78.903929 ], [ -85.781250, 78.903929 ], [ -85.781250, 79.432371 ], [ -86.484375, 79.432371 ] ], [ [ -87.187500, 79.687184 ], [ -87.187500, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.687184 ], [ -87.187500, 79.687184 ] ], [ [ -85.781250, 77.767582 ], [ -85.781250, 77.617709 ], [ -85.078125, 77.617709 ], [ -85.078125, 77.767582 ], [ -85.781250, 77.767582 ] ] ], [ [ [ -63.281250, 49.837982 ], [ -63.281250, 49.382373 ], [ -63.984375, 49.382373 ], [ -63.984375, 49.837982 ], [ -63.281250, 49.837982 ] ] ], [ [ [ -96.328125, 77.312520 ], [ -96.328125, 77.157163 ], [ -94.921875, 77.157163 ], [ -94.921875, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.840816 ], [ -92.109375, 76.840816 ], [ -92.109375, 76.679785 ], [ -91.406250, 76.679785 ], [ -91.406250, 76.016094 ], [ -90.000000, 76.016094 ], [ -90.000000, 75.845169 ], [ -89.296875, 75.845169 ], [ -89.296875, 75.672197 ], [ -87.890625, 75.672197 ], [ -87.890625, 75.497157 ], [ -85.781250, 75.497157 ], [ -85.781250, 75.672197 ], [ -85.078125, 75.672197 ], [ -85.078125, 75.845169 ], [ -81.562500, 75.845169 ], [ -81.562500, 75.672197 ], [ -80.859375, 75.672197 ], [ -80.859375, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.775843 ], [ -80.859375, 74.775843 ], [ -80.859375, 74.590108 ], [ -87.187500, 74.590108 ], [ -87.187500, 74.402163 ], [ -90.000000, 74.402163 ], [ -90.000000, 74.590108 ], [ -91.406250, 74.590108 ], [ -91.406250, 74.775843 ], [ -92.812500, 74.775843 ], [ -92.812500, 75.672197 ], [ -93.515625, 75.672197 ], [ -93.515625, 76.184995 ], [ -94.218750, 76.184995 ], [ -94.218750, 76.351896 ], [ -95.625000, 76.351896 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 76.679785 ], [ -97.734375, 76.679785 ], [ -97.734375, 76.999935 ], [ -97.031250, 76.999935 ], [ -97.031250, 77.312520 ], [ -96.328125, 77.312520 ] ] ], [ [ [ -108.984375, 76.679785 ], [ -108.984375, 76.516819 ], [ -108.281250, 76.516819 ], [ -108.281250, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.171875, 75.320025 ], [ -106.875000, 75.320025 ], [ -106.875000, 75.140778 ], [ -108.281250, 75.140778 ], [ -108.281250, 74.959392 ], [ -110.390625, 74.959392 ], [ -110.390625, 74.775843 ], [ -111.796875, 74.775843 ], [ -111.796875, 74.590108 ], [ -112.500000, 74.590108 ], [ -112.500000, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -113.203125, 74.775843 ], [ -113.203125, 74.959392 ], [ -112.500000, 74.959392 ], [ -112.500000, 75.140778 ], [ -111.796875, 75.140778 ], [ -111.796875, 75.320025 ], [ -113.906250, 75.320025 ], [ -113.906250, 75.140778 ], [ -118.125000, 75.140778 ], [ -118.125000, 75.497157 ], [ -117.421875, 75.497157 ], [ -117.421875, 76.016094 ], [ -116.718750, 76.016094 ], [ -116.718750, 76.351896 ], [ -114.609375, 76.351896 ], [ -114.609375, 76.184995 ], [ -113.203125, 76.184995 ], [ -113.203125, 76.016094 ], [ -112.500000, 76.016094 ], [ -112.500000, 75.845169 ], [ -111.796875, 75.845169 ], [ -111.796875, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.497157 ], [ -109.687500, 75.497157 ], [ -109.687500, 75.672197 ], [ -110.390625, 75.672197 ], [ -110.390625, 76.184995 ], [ -111.093750, 76.184995 ], [ -111.093750, 76.516819 ], [ -110.390625, 76.516819 ], [ -110.390625, 76.679785 ], [ -108.984375, 76.679785 ] ] ], [ [ [ -132.187500, 52.908902 ], [ -132.890625, 52.908902 ], [ -132.890625, 53.330873 ], [ -133.593750, 53.330873 ], [ -133.593750, 54.162434 ], [ -132.187500, 54.162434 ], [ -132.187500, 52.908902 ] ] ], [ [ [ -97.734375, 73.824820 ], [ -97.734375, 73.226700 ], [ -98.437500, 73.226700 ], [ -98.437500, 72.816074 ], [ -97.734375, 72.816074 ], [ -97.734375, 72.607120 ], [ -97.031250, 72.607120 ], [ -97.031250, 71.524909 ], [ -97.734375, 71.524909 ], [ -97.734375, 71.300793 ], [ -99.843750, 71.300793 ], [ -99.843750, 71.524909 ], [ -100.546875, 71.524909 ], [ -100.546875, 71.746432 ], [ -101.250000, 71.746432 ], [ -101.250000, 72.181804 ], [ -101.953125, 72.181804 ], [ -101.953125, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 73.022592 ], [ -101.953125, 73.022592 ], [ -101.953125, 72.816074 ], [ -101.250000, 72.816074 ], [ -101.250000, 73.226700 ], [ -101.953125, 73.226700 ], [ -101.953125, 73.428424 ], [ -101.250000, 73.428424 ], [ -101.250000, 73.824820 ], [ -97.734375, 73.824820 ] ] ], [ [ [ -69.609375, 47.989922 ], [ -68.906250, 47.989922 ], [ -68.906250, 48.458352 ], [ -68.203125, 48.458352 ], [ -68.203125, 48.922499 ], [ -66.796875, 48.922499 ], [ -66.796875, 49.382373 ], [ -65.390625, 49.382373 ], [ -65.390625, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 48.458352 ], [ -65.390625, 48.458352 ], [ -65.390625, 46.558860 ], [ -64.687500, 46.558860 ], [ -62.578125, 46.558860 ], [ -62.578125, 46.073231 ], [ -61.875000, 46.073231 ], [ -61.875000, 46.558860 ], [ -60.468750, 46.558860 ], [ -60.468750, 45.583290 ], [ -61.875000, 45.583290 ], [ -61.875000, 45.089036 ], [ -63.281250, 45.089036 ], [ -63.281250, 44.590467 ], [ -64.687500, 44.590467 ], [ -64.687500, 44.087585 ], [ -65.390625, 44.087585 ], [ -65.390625, 43.580391 ], [ -66.796875, 43.580391 ], [ -66.796875, 44.590467 ], [ -66.093750, 44.590467 ], [ -66.093750, 45.089036 ], [ -64.687500, 45.089036 ], [ -64.687500, 45.583290 ], [ -68.203125, 45.583290 ], [ -68.203125, 47.517201 ], [ -69.609375, 47.517201 ], [ -69.609375, 47.989922 ] ] ], [ [ [ -116.718750, 77.617709 ], [ -116.718750, 76.840816 ], [ -117.421875, 76.840816 ], [ -117.421875, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.351896 ], [ -119.531250, 76.351896 ], [ -119.531250, 76.184995 ], [ -120.234375, 76.184995 ], [ -120.234375, 76.016094 ], [ -123.046875, 76.016094 ], [ -123.046875, 76.351896 ], [ -122.343750, 76.351896 ], [ -122.343750, 76.679785 ], [ -121.640625, 76.679785 ], [ -121.640625, 76.999935 ], [ -120.937500, 76.999935 ], [ -120.937500, 77.312520 ], [ -120.234375, 77.312520 ], [ -120.234375, 77.466028 ], [ -119.531250, 77.466028 ], [ -119.531250, 77.617709 ], [ -116.718750, 77.617709 ] ] ], [ [ [ -92.109375, 74.211983 ], [ -92.109375, 74.019543 ], [ -90.703125, 74.019543 ], [ -90.703125, 73.627789 ], [ -91.406250, 73.627789 ], [ -91.406250, 73.226700 ], [ -92.109375, 73.226700 ], [ -92.109375, 72.816074 ], [ -93.515625, 72.816074 ], [ -93.515625, 72.607120 ], [ -94.218750, 72.607120 ], [ -94.218750, 72.181804 ], [ -95.625000, 72.181804 ], [ -95.625000, 72.607120 ], [ -96.328125, 72.607120 ], [ -96.328125, 73.824820 ], [ -95.625000, 73.824820 ], [ -95.625000, 74.019543 ], [ -94.921875, 74.019543 ], [ -94.921875, 74.211983 ], [ -92.109375, 74.211983 ] ] ], [ [ [ -98.437500, 76.679785 ], [ -98.437500, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.497157 ], [ -98.437500, 75.497157 ], [ -98.437500, 74.959392 ], [ -101.250000, 74.959392 ], [ -101.250000, 75.672197 ], [ -102.656250, 75.672197 ], [ -102.656250, 76.351896 ], [ -101.250000, 76.351896 ], [ -101.250000, 76.516819 ], [ -100.546875, 76.516819 ], [ -100.546875, 76.679785 ], [ -98.437500, 76.679785 ] ] ], [ [ [ -105.468750, 79.171335 ], [ -104.062500, 79.171335 ], [ -104.062500, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.061989 ], [ -99.843750, 78.061989 ], [ -99.843750, 77.915669 ], [ -101.250000, 77.915669 ], [ -101.250000, 78.061989 ], [ -102.656250, 78.061989 ], [ -102.656250, 78.206563 ], [ -103.359375, 78.206563 ], [ -103.359375, 78.349411 ], [ -104.765625, 78.349411 ], [ -104.765625, 78.490552 ], [ -105.468750, 78.490552 ], [ -105.468750, 78.630006 ], [ -104.765625, 78.630006 ], [ -104.765625, 78.903929 ], [ -105.468750, 78.903929 ], [ -105.468750, 79.171335 ] ] ], [ [ [ -75.937500, 68.399180 ], [ -75.937500, 68.138852 ], [ -75.234375, 68.138852 ], [ -75.234375, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 68.399180 ], [ -75.937500, 68.399180 ] ] ], [ [ [ -86.484375, 65.658275 ], [ -85.781250, 65.658275 ], [ -85.781250, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.472794 ], [ -82.265625, 64.472794 ], [ -82.265625, 64.168107 ], [ -80.859375, 64.168107 ], [ -80.859375, 63.860036 ], [ -80.156250, 63.860036 ], [ -80.156250, 63.548552 ], [ -82.968750, 63.548552 ], [ -82.968750, 63.860036 ], [ -84.375000, 63.860036 ], [ -84.375000, 63.548552 ], [ -85.078125, 63.548552 ], [ -85.078125, 63.233627 ], [ -85.781250, 63.233627 ], [ -85.781250, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 65.658275 ] ] ], [ [ [ -97.734375, 78.903929 ], [ -97.734375, 78.767792 ], [ -97.031250, 78.767792 ], [ -97.031250, 78.630006 ], [ -96.328125, 78.630006 ], [ -96.328125, 78.490552 ], [ -95.625000, 78.490552 ], [ -95.625000, 78.206563 ], [ -96.328125, 78.206563 ], [ -96.328125, 77.915669 ], [ -94.921875, 77.915669 ], [ -94.921875, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -97.031250, 77.767582 ], [ -97.031250, 77.915669 ], [ -97.734375, 77.915669 ], [ -97.734375, 78.061989 ], [ -98.437500, 78.061989 ], [ -98.437500, 78.349411 ], [ -99.140625, 78.349411 ], [ -99.140625, 78.903929 ], [ -97.734375, 78.903929 ] ] ], [ [ [ -78.750000, 73.824820 ], [ -78.750000, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.226700 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.022592 ], [ -78.750000, 73.022592 ], [ -78.750000, 72.816074 ], [ -80.859375, 72.816074 ], [ -80.859375, 73.226700 ], [ -81.562500, 73.226700 ], [ -81.562500, 73.627789 ], [ -80.859375, 73.627789 ], [ -80.859375, 73.824820 ], [ -78.750000, 73.824820 ] ] ], [ [ [ -110.390625, 78.061989 ], [ -110.390625, 77.617709 ], [ -111.796875, 77.617709 ], [ -111.796875, 77.466028 ], [ -113.203125, 77.466028 ], [ -113.203125, 77.617709 ], [ -113.906250, 77.617709 ], [ -113.906250, 77.915669 ], [ -113.203125, 77.915669 ], [ -113.203125, 78.061989 ], [ -110.390625, 78.061989 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -96.328125, 75.140778 ], [ -96.328125, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -111.093750, 78.903929 ], [ -111.093750, 78.767792 ], [ -110.390625, 78.767792 ], [ -110.390625, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.490552 ], [ -113.203125, 78.490552 ], [ -113.203125, 78.630006 ], [ -112.500000, 78.630006 ], [ -112.500000, 78.767792 ], [ -111.796875, 78.767792 ], [ -111.796875, 78.903929 ], [ -111.093750, 78.903929 ] ] ], [ [ [ -132.187500, 52.908902 ], [ -131.484375, 52.908902 ], [ -131.484375, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.908902 ] ] ], [ [ [ -105.468750, 79.171335 ], [ -106.171875, 79.171335 ], [ -106.171875, 79.302640 ], [ -105.468750, 79.302640 ], [ -105.468750, 79.171335 ] ] ], [ [ [ -56.250000, 50.289339 ], [ -55.546875, 50.289339 ], [ -55.546875, 49.837982 ], [ -56.250000, 49.837982 ], [ -56.250000, 50.289339 ] ] ], [ [ [ -56.953125, 51.618017 ], [ -56.250000, 51.618017 ], [ -56.250000, 50.289339 ], [ -56.953125, 50.289339 ], [ -56.953125, 49.837982 ], [ -56.250000, 49.837982 ], [ -56.250000, 49.382373 ], [ -54.140625, 49.382373 ], [ -54.140625, 48.922499 ], [ -53.437500, 48.922499 ], [ -53.437500, 47.989922 ], [ -52.734375, 47.989922 ], [ -52.734375, 47.517201 ], [ -53.437500, 47.517201 ], [ -53.437500, 47.040182 ], [ -54.843750, 47.040182 ], [ -54.843750, 47.517201 ], [ -56.250000, 47.517201 ], [ -56.250000, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 48.458352 ], [ -59.765625, 48.458352 ], [ -59.765625, 48.922499 ], [ -59.062500, 48.922499 ], [ -59.062500, 49.382373 ], [ -58.359375, 49.382373 ], [ -58.359375, 50.289339 ], [ -57.656250, 50.289339 ], [ -57.656250, 51.179343 ], [ -56.953125, 51.179343 ], [ -56.953125, 51.618017 ] ], [ [ -54.843750, 47.989922 ], [ -54.843750, 47.517201 ], [ -54.140625, 47.517201 ], [ -54.140625, 47.989922 ], [ -54.843750, 47.989922 ] ] ], [ [ [ -117.421875, 73.022592 ], [ -116.015625, 73.022592 ], [ -116.015625, 73.226700 ], [ -114.609375, 73.226700 ], [ -114.609375, 73.022592 ], [ -115.312500, 73.022592 ], [ -115.312500, 72.816074 ], [ -113.203125, 72.816074 ], [ -113.203125, 73.022592 ], [ -112.500000, 73.022592 ], [ -112.500000, 72.816074 ], [ -111.796875, 72.816074 ], [ -111.796875, 72.607120 ], [ -111.093750, 72.607120 ], [ -111.093750, 72.816074 ], [ -109.687500, 72.816074 ], [ -109.687500, 72.395706 ], [ -108.984375, 72.395706 ], [ -108.984375, 71.965388 ], [ -108.281250, 71.965388 ], [ -108.281250, 72.607120 ], [ -108.984375, 72.607120 ], [ -108.984375, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 73.428424 ], [ -107.578125, 73.428424 ], [ -107.578125, 73.627789 ], [ -104.765625, 73.627789 ], [ -104.765625, 73.022592 ], [ -105.468750, 73.022592 ], [ -105.468750, 72.816074 ], [ -105.468750, 71.300793 ], [ -104.765625, 71.300793 ], [ -104.765625, 70.844673 ], [ -104.062500, 70.844673 ], [ -104.062500, 70.612614 ], [ -103.359375, 70.612614 ], [ -103.359375, 70.377854 ], [ -101.953125, 70.377854 ], [ -101.953125, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -103.359375, 69.657086 ], [ -103.359375, 69.411242 ], [ -102.656250, 69.411242 ], [ -102.656250, 68.911005 ], [ -105.468750, 68.911005 ], [ -105.468750, 69.162558 ], [ -108.281250, 69.162558 ], [ -108.281250, 68.911005 ], [ -110.390625, 68.911005 ], [ -110.390625, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -115.312500, 69.162558 ], [ -115.312500, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.657086 ], [ -117.421875, 69.657086 ], [ -117.421875, 70.140364 ], [ -115.312500, 70.140364 ], [ -115.312500, 70.377854 ], [ -113.906250, 70.377854 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.844673 ], [ -118.828125, 70.844673 ], [ -118.828125, 71.074056 ], [ -118.125000, 71.074056 ], [ -118.125000, 71.300793 ], [ -118.828125, 71.300793 ], [ -118.828125, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.965388 ], [ -118.828125, 71.965388 ], [ -118.828125, 72.607120 ], [ -118.125000, 72.607120 ], [ -118.125000, 72.816074 ], [ -117.421875, 72.816074 ], [ -117.421875, 73.022592 ] ], [ [ -106.875000, 73.226700 ], [ -106.875000, 73.022592 ], [ -106.171875, 73.022592 ], [ -106.171875, 73.226700 ], [ -106.875000, 73.226700 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.390625, 19.973349 ], [ -155.390625, 18.646245 ], [ -156.093750, 18.646245 ], [ -156.093750, 19.973349 ], [ -155.390625, 19.973349 ] ] ], [ [ [ -94.921875, 48.922499 ], [ -94.921875, 48.458352 ], [ -92.812500, 48.458352 ], [ -92.812500, 47.989922 ], [ -87.187500, 47.989922 ], [ -87.187500, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.558860 ], [ -84.375000, 46.558860 ], [ -84.375000, 46.073231 ], [ -83.671875, 46.073231 ], [ -83.671875, 45.583290 ], [ -82.265625, 45.583290 ], [ -82.265625, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 41.508577 ], [ -81.562500, 41.508577 ], [ -81.562500, 42.032974 ], [ -80.156250, 42.032974 ], [ -80.156250, 42.553080 ], [ -78.750000, 42.553080 ], [ -78.750000, 43.068888 ], [ -79.453125, 43.068888 ], [ -79.453125, 43.580391 ], [ -76.640625, 43.580391 ], [ -76.640625, 44.087585 ], [ -75.234375, 44.087585 ], [ -75.234375, 44.590467 ], [ -74.531250, 44.590467 ], [ -74.531250, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 46.558860 ], [ -69.609375, 46.558860 ], [ -69.609375, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 45.089036 ], [ -66.796875, 45.089036 ], [ -66.796875, 44.087585 ], [ -68.906250, 44.087585 ], [ -68.906250, 43.580391 ], [ -70.312500, 43.580391 ], [ -70.312500, 43.068888 ], [ -71.015625, 43.068888 ], [ -71.015625, 42.032974 ], [ -69.609375, 42.032974 ], [ -69.609375, 41.508577 ], [ -72.421875, 41.508577 ], [ -72.421875, 40.979898 ], [ -71.718750, 40.979898 ], [ -71.718750, 40.446947 ], [ -73.828125, 40.446947 ], [ -73.828125, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 38.822591 ], [ -75.234375, 38.822591 ], [ -75.234375, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 38.822591 ], [ -76.640625, 38.822591 ], [ -76.640625, 37.160317 ], [ -75.937500, 37.160317 ], [ -75.937500, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.307144 ], [ -77.343750, 34.307144 ], [ -77.343750, 33.724340 ], [ -78.750000, 33.724340 ], [ -78.750000, 33.137551 ], [ -79.453125, 33.137551 ], [ -79.453125, 32.546813 ], [ -80.156250, 32.546813 ], [ -80.156250, 31.952162 ], [ -80.859375, 31.952162 ], [ -80.859375, 31.353637 ], [ -81.562500, 31.353637 ], [ -81.562500, 29.535230 ], [ -80.859375, 29.535230 ], [ -80.859375, 27.683528 ], [ -80.156250, 27.683528 ], [ -80.156250, 25.165173 ], [ -81.562500, 25.165173 ], [ -81.562500, 25.799891 ], [ -82.265625, 25.799891 ], [ -82.265625, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 30.145127 ], [ -84.375000, 30.145127 ], [ -84.375000, 29.535230 ], [ -85.781250, 29.535230 ], [ -85.781250, 30.145127 ], [ -89.296875, 30.145127 ], [ -89.296875, 28.921631 ], [ -91.406250, 28.921631 ], [ -91.406250, 29.535230 ], [ -94.921875, 29.535230 ], [ -94.921875, 28.921631 ], [ -95.625000, 28.921631 ], [ -95.625000, 28.304381 ], [ -96.328125, 28.304381 ], [ -96.328125, 27.683528 ], [ -97.031250, 27.683528 ], [ -97.031250, 25.799891 ], [ -99.140625, 25.799891 ], [ -99.140625, 27.059126 ], [ -99.843750, 27.059126 ], [ -99.843750, 28.304381 ], [ -100.546875, 28.304381 ], [ -100.546875, 28.921631 ], [ -101.250000, 28.921631 ], [ -101.250000, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 28.921631 ], [ -104.062500, 28.921631 ], [ -104.062500, 29.535230 ], [ -104.765625, 29.535230 ], [ -104.765625, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 31.353637 ], [ -112.500000, 31.353637 ], [ -112.500000, 31.952162 ], [ -114.609375, 31.952162 ], [ -114.609375, 32.546813 ], [ -117.421875, 32.546813 ], [ -117.421875, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 33.724340 ], [ -118.828125, 33.724340 ], [ -118.828125, 34.307144 ], [ -120.937500, 34.307144 ], [ -120.937500, 35.460670 ], [ -121.640625, 35.460670 ], [ -121.640625, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.718590 ], [ -123.046875, 37.718590 ], [ -123.046875, 38.272689 ], [ -123.750000, 38.272689 ], [ -123.750000, 39.909736 ], [ -124.453125, 39.909736 ], [ -124.453125, 44.087585 ], [ -123.750000, 44.087585 ], [ -123.750000, 47.040182 ], [ -124.453125, 47.040182 ], [ -124.453125, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.343750, 47.517201 ], [ -122.343750, 48.458352 ], [ -123.046875, 48.458352 ], [ -123.046875, 48.922499 ], [ -94.921875, 48.922499 ] ] ], [ [ [ -153.984375, 57.704147 ], [ -155.390625, 57.704147 ], [ -155.390625, 57.326521 ], [ -156.093750, 57.326521 ], [ -156.093750, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 55.776573 ], [ -158.906250, 55.776573 ], [ -158.906250, 55.379110 ], [ -161.015625, 55.379110 ], [ -161.015625, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.572062 ], [ -163.828125, 54.572062 ], [ -163.828125, 54.977614 ], [ -163.125000, 54.977614 ], [ -163.125000, 55.379110 ], [ -161.718750, 55.379110 ], [ -161.718750, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.944974 ], [ -158.203125, 56.944974 ], [ -158.203125, 57.326521 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.447733 ], [ -160.312500, 58.447733 ], [ -160.312500, 58.813742 ], [ -161.718750, 58.813742 ], [ -161.718750, 59.534318 ], [ -162.421875, 59.534318 ], [ -162.421875, 59.888937 ], [ -164.531250, 59.888937 ], [ -164.531250, 60.239811 ], [ -165.234375, 60.239811 ], [ -165.234375, 61.270233 ], [ -165.937500, 61.270233 ], [ -165.937500, 62.267923 ], [ -165.234375, 62.267923 ], [ -165.234375, 62.915233 ], [ -164.531250, 62.915233 ], [ -164.531250, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 62.915233 ], [ -163.125000, 62.915233 ], [ -163.125000, 63.233627 ], [ -162.421875, 63.233627 ], [ -162.421875, 63.548552 ], [ -161.015625, 63.548552 ], [ -161.015625, 64.168107 ], [ -161.718750, 64.168107 ], [ -161.718750, 64.472794 ], [ -166.640625, 64.472794 ], [ -166.640625, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -168.046875, 65.366837 ], [ -168.046875, 65.658275 ], [ -166.640625, 65.658275 ], [ -166.640625, 65.946472 ], [ -165.937500, 65.946472 ], [ -165.937500, 66.231457 ], [ -164.531250, 66.231457 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 65.946472 ], [ -162.421875, 65.946472 ], [ -162.421875, 66.231457 ], [ -161.718750, 66.231457 ], [ -161.718750, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.828125, 66.791909 ], [ -163.828125, 67.339861 ], [ -164.531250, 67.339861 ], [ -164.531250, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.138852 ], [ -166.640625, 68.138852 ], [ -166.640625, 68.656555 ], [ -165.937500, 68.656555 ], [ -165.937500, 68.911005 ], [ -163.828125, 68.911005 ], [ -163.828125, 69.162558 ], [ -163.125000, 69.162558 ], [ -163.125000, 69.900118 ], [ -162.421875, 69.900118 ], [ -162.421875, 70.140364 ], [ -161.718750, 70.140364 ], [ -161.718750, 70.377854 ], [ -160.312500, 70.377854 ], [ -160.312500, 70.612614 ], [ -158.906250, 70.612614 ], [ -158.906250, 70.844673 ], [ -157.500000, 70.844673 ], [ -157.500000, 71.074056 ], [ -155.390625, 71.074056 ], [ -155.390625, 70.844673 ], [ -154.687500, 70.844673 ], [ -154.687500, 70.612614 ], [ -153.984375, 70.612614 ], [ -153.984375, 70.844673 ], [ -151.875000, 70.844673 ], [ -151.875000, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.140364 ], [ -145.546875, 70.140364 ], [ -145.546875, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.657086 ], [ -141.328125, 69.657086 ], [ -141.328125, 60.239811 ], [ -139.921875, 60.239811 ], [ -139.921875, 59.888937 ], [ -139.218750, 59.888937 ], [ -139.218750, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 58.813742 ], [ -137.109375, 58.813742 ], [ -137.109375, 59.175928 ], [ -136.406250, 59.175928 ], [ -136.406250, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.704147 ], [ -134.296875, 57.704147 ], [ -134.296875, 58.077876 ], [ -137.812500, 58.077876 ], [ -137.812500, 58.447733 ], [ -138.515625, 58.447733 ], [ -138.515625, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.175928 ], [ -139.921875, 59.175928 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.888937 ], [ -142.031250, 59.888937 ], [ -142.031250, 60.239811 ], [ -142.734375, 60.239811 ], [ -142.734375, 59.888937 ], [ -144.843750, 59.888937 ], [ -144.843750, 60.239811 ], [ -146.250000, 60.239811 ], [ -146.250000, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.534318 ], [ -153.281250, 59.534318 ], [ -153.281250, 59.175928 ], [ -153.984375, 59.175928 ], [ -153.984375, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 57.704147 ] ], [ [ -151.171875, 60.586967 ], [ -151.875000, 60.586967 ], [ -151.875000, 60.239811 ], [ -151.171875, 60.239811 ], [ -151.171875, 60.586967 ] ], [ [ -151.171875, 60.930432 ], [ -151.171875, 60.586967 ], [ -150.468750, 60.586967 ], [ -150.468750, 60.930432 ], [ -151.171875, 60.930432 ] ], [ [ -161.718750, 64.774125 ], [ -161.718750, 64.472794 ], [ -161.015625, 64.472794 ], [ -161.015625, 64.774125 ], [ -161.718750, 64.774125 ] ] ], [ [ [ -153.984375, 57.704147 ], [ -153.281250, 57.704147 ], [ -153.281250, 58.077876 ], [ -152.578125, 58.077876 ], [ -152.578125, 57.704147 ], [ -151.875000, 57.704147 ], [ -151.875000, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 56.944974 ], [ -153.281250, 56.944974 ], [ -153.281250, 56.559482 ], [ -154.687500, 56.559482 ], [ -154.687500, 57.326521 ], [ -153.984375, 57.326521 ], [ -153.984375, 57.704147 ] ] ], [ [ [ -132.187500, 56.559482 ], [ -131.484375, 56.559482 ], [ -131.484375, 56.170023 ], [ -130.781250, 56.170023 ], [ -130.781250, 55.776573 ], [ -130.078125, 55.776573 ], [ -130.078125, 54.977614 ], [ -130.781250, 54.977614 ], [ -130.781250, 55.379110 ], [ -132.187500, 55.379110 ], [ -132.187500, 56.559482 ] ] ], [ [ [ -169.453125, 63.548552 ], [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 62.915233 ], [ -170.156250, 62.915233 ], [ -170.156250, 63.233627 ], [ -171.562500, 63.233627 ], [ -171.562500, 63.548552 ], [ -169.453125, 63.548552 ] ] ], [ [ [ -165.937500, 60.239811 ], [ -165.937500, 59.888937 ], [ -167.343750, 59.888937 ], [ -167.343750, 60.239811 ], [ -165.937500, 60.239811 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -156.093750, 20.632784 ], [ -155.390625, 20.632784 ], [ -155.390625, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ] ] ], [ [ [ -123.046875, 47.989922 ], [ -123.046875, 49.382373 ], [ -95.625000, 49.382373 ], [ -95.625000, 49.837982 ], [ -94.921875, 49.837982 ], [ -94.921875, 48.922499 ], [ -94.218750, 48.922499 ], [ -94.218750, 48.458352 ], [ -88.593750, 48.458352 ], [ -88.593750, 47.989922 ], [ -86.484375, 47.989922 ], [ -86.484375, 47.517201 ], [ -85.781250, 47.517201 ], [ -85.781250, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.558860 ], [ -83.671875, 46.558860 ], [ -83.671875, 45.583290 ], [ -82.968750, 45.583290 ], [ -82.968750, 44.087585 ], [ -82.265625, 44.087585 ], [ -82.265625, 43.068888 ], [ -82.968750, 43.068888 ], [ -82.968750, 42.553080 ], [ -83.671875, 42.553080 ], [ -83.671875, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 42.553080 ], [ -79.453125, 42.553080 ], [ -79.453125, 43.580391 ], [ -78.750000, 43.580391 ], [ -78.750000, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 44.590467 ], [ -75.937500, 44.590467 ], [ -75.937500, 45.089036 ], [ -71.718750, 45.089036 ], [ -71.718750, 45.583290 ], [ -70.312500, 45.583290 ], [ -70.312500, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 47.517201 ], [ -68.203125, 47.517201 ], [ -68.203125, 45.583290 ], [ -67.500000, 45.583290 ], [ -67.500000, 44.590467 ], [ -68.203125, 44.590467 ], [ -68.203125, 44.087585 ], [ -70.312500, 44.087585 ], [ -70.312500, 43.580391 ], [ -71.015625, 43.580391 ], [ -71.015625, 42.032974 ], [ -70.312500, 42.032974 ], [ -70.312500, 41.508577 ], [ -73.125000, 41.508577 ], [ -73.125000, 40.979898 ], [ -74.531250, 40.979898 ], [ -74.531250, 39.368279 ], [ -75.937500, 39.368279 ], [ -75.937500, 38.822591 ], [ -75.234375, 38.822591 ], [ -75.234375, 38.272689 ], [ -76.640625, 38.272689 ], [ -76.640625, 36.597889 ], [ -75.937500, 36.597889 ], [ -75.937500, 35.460670 ], [ -76.640625, 35.460670 ], [ -76.640625, 34.885931 ], [ -78.046875, 34.885931 ], [ -78.046875, 34.307144 ], [ -78.750000, 34.307144 ], [ -78.750000, 33.724340 ], [ -79.453125, 33.724340 ], [ -79.453125, 33.137551 ], [ -80.156250, 33.137551 ], [ -80.156250, 32.546813 ], [ -81.562500, 32.546813 ], [ -81.562500, 28.921631 ], [ -80.859375, 28.921631 ], [ -80.859375, 27.683528 ], [ -80.156250, 27.683528 ], [ -80.156250, 25.799891 ], [ -80.859375, 25.799891 ], [ -80.859375, 25.165173 ], [ -81.562500, 25.165173 ], [ -81.562500, 25.799891 ], [ -82.265625, 25.799891 ], [ -82.265625, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -84.375000, 29.535230 ], [ -84.375000, 30.145127 ], [ -85.781250, 30.145127 ], [ -85.781250, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -92.109375, 29.535230 ], [ -92.109375, 30.145127 ], [ -94.218750, 30.145127 ], [ -94.218750, 29.535230 ], [ -94.921875, 29.535230 ], [ -94.921875, 28.921631 ], [ -97.031250, 28.921631 ], [ -97.031250, 28.304381 ], [ -97.734375, 28.304381 ], [ -97.734375, 26.431228 ], [ -99.843750, 26.431228 ], [ -99.843750, 27.683528 ], [ -100.546875, 27.683528 ], [ -100.546875, 28.921631 ], [ -101.250000, 28.921631 ], [ -101.250000, 29.535230 ], [ -101.953125, 29.535230 ], [ -101.953125, 30.145127 ], [ -102.656250, 30.145127 ], [ -102.656250, 29.535230 ], [ -104.765625, 29.535230 ], [ -104.765625, 30.145127 ], [ -105.468750, 30.145127 ], [ -105.468750, 30.751278 ], [ -106.171875, 30.751278 ], [ -106.171875, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 31.353637 ], [ -112.500000, 31.353637 ], [ -112.500000, 31.952162 ], [ -113.906250, 31.952162 ], [ -113.906250, 32.546813 ], [ -115.312500, 32.546813 ], [ -115.312500, 33.137551 ], [ -116.015625, 33.137551 ], [ -116.015625, 32.546813 ], [ -117.421875, 32.546813 ], [ -117.421875, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 33.724340 ], [ -118.828125, 33.724340 ], [ -118.828125, 34.307144 ], [ -119.531250, 34.307144 ], [ -119.531250, 34.885931 ], [ -120.937500, 34.885931 ], [ -120.937500, 35.460670 ], [ -121.640625, 35.460670 ], [ -121.640625, 36.031332 ], [ -122.343750, 36.031332 ], [ -122.343750, 37.160317 ], [ -123.046875, 37.160317 ], [ -123.046875, 38.822591 ], [ -123.750000, 38.822591 ], [ -123.750000, 39.368279 ], [ -124.453125, 39.368279 ], [ -124.453125, 42.553080 ], [ -125.156250, 42.553080 ], [ -125.156250, 43.580391 ], [ -124.453125, 43.580391 ], [ -124.453125, 47.989922 ], [ -125.156250, 47.989922 ], [ -125.156250, 48.458352 ], [ -123.750000, 48.458352 ], [ -123.750000, 47.989922 ], [ -123.046875, 47.989922 ] ], [ [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.343750, 47.517201 ], [ -122.343750, 47.989922 ], [ -123.046875, 47.989922 ] ] ], [ [ [ -159.609375, 22.593726 ], [ -159.609375, 21.943046 ], [ -160.312500, 21.943046 ], [ -160.312500, 22.593726 ], [ -159.609375, 22.593726 ] ] ], [ [ [ -132.890625, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.704147 ], [ -134.296875, 57.704147 ], [ -134.296875, 58.447733 ], [ -137.812500, 58.447733 ], [ -137.812500, 58.813742 ], [ -138.515625, 58.813742 ], [ -138.515625, 59.175928 ], [ -139.218750, 59.175928 ], [ -139.218750, 59.534318 ], [ -139.921875, 59.534318 ], [ -139.921875, 59.888937 ], [ -142.734375, 59.888937 ], [ -142.734375, 60.239811 ], [ -145.546875, 60.239811 ], [ -145.546875, 60.586967 ], [ -147.656250, 60.586967 ], [ -147.656250, 60.930432 ], [ -148.359375, 60.930432 ], [ -148.359375, 60.239811 ], [ -149.062500, 60.239811 ], [ -149.062500, 59.888937 ], [ -149.765625, 59.888937 ], [ -149.765625, 59.534318 ], [ -151.171875, 59.534318 ], [ -151.171875, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.930432 ], [ -152.578125, 60.930432 ], [ -152.578125, 59.888937 ], [ -153.984375, 59.888937 ], [ -153.984375, 59.534318 ], [ -154.687500, 59.534318 ], [ -154.687500, 59.175928 ], [ -153.984375, 59.175928 ], [ -153.984375, 58.813742 ], [ -154.687500, 58.813742 ], [ -154.687500, 58.077876 ], [ -155.390625, 58.077876 ], [ -155.390625, 57.704147 ], [ -156.796875, 57.704147 ], [ -156.796875, 56.944974 ], [ -157.500000, 56.944974 ], [ -157.500000, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 56.170023 ], [ -158.906250, 56.170023 ], [ -158.906250, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 55.379110 ], [ -162.421875, 55.379110 ], [ -162.421875, 54.977614 ], [ -163.828125, 54.977614 ], [ -163.828125, 54.572062 ], [ -165.234375, 54.572062 ], [ -165.234375, 54.977614 ], [ -164.531250, 54.977614 ], [ -164.531250, 55.379110 ], [ -163.125000, 55.379110 ], [ -163.125000, 55.776573 ], [ -162.421875, 55.776573 ], [ -162.421875, 56.170023 ], [ -160.312500, 56.170023 ], [ -160.312500, 56.559482 ], [ -159.609375, 56.559482 ], [ -159.609375, 56.944974 ], [ -158.906250, 56.944974 ], [ -158.906250, 57.326521 ], [ -158.203125, 57.326521 ], [ -158.203125, 58.813742 ], [ -158.906250, 58.813742 ], [ -158.906250, 58.447733 ], [ -159.609375, 58.447733 ], [ -159.609375, 58.813742 ], [ -162.421875, 58.813742 ], [ -162.421875, 59.888937 ], [ -164.531250, 59.888937 ], [ -164.531250, 60.239811 ], [ -165.234375, 60.239811 ], [ -165.234375, 60.586967 ], [ -165.937500, 60.586967 ], [ -165.937500, 61.270233 ], [ -166.640625, 61.270233 ], [ -166.640625, 61.938950 ], [ -165.937500, 61.938950 ], [ -165.937500, 62.593341 ], [ -165.234375, 62.593341 ], [ -165.234375, 63.233627 ], [ -162.421875, 63.233627 ], [ -162.421875, 63.548552 ], [ -161.015625, 63.548552 ], [ -161.015625, 64.472794 ], [ -161.718750, 64.472794 ], [ -161.718750, 64.774125 ], [ -163.125000, 64.774125 ], [ -163.125000, 64.472794 ], [ -166.640625, 64.472794 ], [ -166.640625, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -168.046875, 65.366837 ], [ -168.046875, 65.658275 ], [ -168.750000, 65.658275 ], [ -168.750000, 65.946472 ], [ -167.343750, 65.946472 ], [ -167.343750, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.791909 ], [ -163.828125, 66.791909 ], [ -163.828125, 66.231457 ], [ -162.421875, 66.231457 ], [ -162.421875, 66.513260 ], [ -163.125000, 66.513260 ], [ -163.125000, 67.067433 ], [ -163.828125, 67.067433 ], [ -163.828125, 67.609221 ], [ -164.531250, 67.609221 ], [ -164.531250, 67.875541 ], [ -165.937500, 67.875541 ], [ -165.937500, 68.138852 ], [ -167.343750, 68.138852 ], [ -167.343750, 68.656555 ], [ -166.640625, 68.656555 ], [ -166.640625, 68.911005 ], [ -165.234375, 68.911005 ], [ -165.234375, 69.162558 ], [ -163.828125, 69.162558 ], [ -163.828125, 69.657086 ], [ -163.125000, 69.657086 ], [ -163.125000, 70.140364 ], [ -162.421875, 70.140364 ], [ -162.421875, 70.377854 ], [ -161.015625, 70.377854 ], [ -161.015625, 70.612614 ], [ -160.312500, 70.612614 ], [ -160.312500, 70.844673 ], [ -157.500000, 70.844673 ], [ -157.500000, 71.300793 ], [ -155.390625, 71.300793 ], [ -155.390625, 71.074056 ], [ -154.687500, 71.074056 ], [ -154.687500, 70.844673 ], [ -152.578125, 70.844673 ], [ -152.578125, 70.612614 ], [ -149.062500, 70.612614 ], [ -149.062500, 70.377854 ], [ -147.656250, 70.377854 ], [ -147.656250, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 69.900118 ], [ -141.328125, 69.900118 ], [ -141.328125, 60.586967 ], [ -140.625000, 60.586967 ], [ -140.625000, 60.239811 ], [ -139.218750, 60.239811 ], [ -139.218750, 59.888937 ], [ -138.515625, 59.888937 ], [ -138.515625, 59.534318 ], [ -137.812500, 59.534318 ], [ -137.812500, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 59.175928 ], [ -134.296875, 59.175928 ], [ -134.296875, 58.813742 ], [ -133.593750, 58.813742 ], [ -133.593750, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 56.944974 ] ], [ [ -151.875000, 61.270233 ], [ -151.875000, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.270233 ], [ -151.875000, 61.270233 ] ], [ [ -161.718750, 65.072130 ], [ -161.718750, 64.774125 ], [ -161.015625, 64.774125 ], [ -161.015625, 65.072130 ], [ -161.718750, 65.072130 ] ] ], [ [ [ -132.890625, 56.944974 ], [ -132.187500, 56.944974 ], [ -132.187500, 56.559482 ], [ -131.484375, 56.559482 ], [ -131.484375, 56.170023 ], [ -130.078125, 56.170023 ], [ -130.078125, 54.977614 ], [ -131.484375, 54.977614 ], [ -131.484375, 55.379110 ], [ -132.187500, 55.379110 ], [ -132.187500, 56.170023 ], [ -132.890625, 56.170023 ], [ -132.890625, 56.944974 ] ] ], [ [ [ -152.578125, 58.077876 ], [ -152.578125, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 56.944974 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.704147 ], [ -153.984375, 57.704147 ], [ -153.984375, 58.077876 ], [ -152.578125, 58.077876 ] ] ], [ [ [ -165.937500, 60.586967 ], [ -165.937500, 59.888937 ], [ -167.343750, 59.888937 ], [ -167.343750, 60.239811 ], [ -166.640625, 60.239811 ], [ -166.640625, 60.586967 ], [ -165.937500, 60.586967 ] ] ], [ [ [ -170.859375, 63.548552 ], [ -168.750000, 63.548552 ], [ -168.750000, 63.233627 ], [ -170.859375, 63.233627 ], [ -170.859375, 63.548552 ] ] ], [ [ [ -170.859375, 63.548552 ], [ -172.265625, 63.548552 ], [ -172.265625, 63.860036 ], [ -170.859375, 63.860036 ], [ -170.859375, 63.548552 ] ] ], [ [ [ -156.093750, 20.632784 ], [ -156.796875, 20.632784 ], [ -156.796875, 21.289374 ], [ -156.093750, 21.289374 ], [ -156.093750, 20.632784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.609375, 32.546813 ], [ -114.609375, 31.952162 ], [ -112.500000, 31.952162 ], [ -112.500000, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.952162 ], [ -106.171875, 31.952162 ], [ -106.171875, 31.353637 ], [ -105.468750, 31.353637 ], [ -105.468750, 30.751278 ], [ -104.765625, 30.751278 ], [ -104.765625, 29.535230 ], [ -104.062500, 29.535230 ], [ -104.062500, 28.921631 ], [ -102.656250, 28.921631 ], [ -102.656250, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 27.059126 ], [ -99.140625, 27.059126 ], [ -99.140625, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 25.165173 ], [ -97.734375, 25.165173 ], [ -97.734375, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 19.973349 ], [ -96.328125, 19.973349 ], [ -96.328125, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 17.978733 ], [ -93.515625, 17.978733 ], [ -93.515625, 18.646245 ], [ -90.703125, 18.646245 ], [ -90.703125, 20.632784 ], [ -90.000000, 20.632784 ], [ -90.000000, 21.289374 ], [ -86.484375, 21.289374 ], [ -86.484375, 20.632784 ], [ -87.187500, 20.632784 ], [ -87.187500, 19.973349 ], [ -87.890625, 19.973349 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 17.978733 ], [ -90.703125, 17.978733 ], [ -90.703125, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 15.961329 ], [ -91.406250, 15.961329 ], [ -91.406250, 15.284185 ], [ -92.109375, 15.284185 ], [ -92.109375, 14.604847 ], [ -93.515625, 14.604847 ], [ -93.515625, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 15.961329 ], [ -99.140625, 15.961329 ], [ -99.140625, 16.636192 ], [ -100.546875, 16.636192 ], [ -100.546875, 17.308688 ], [ -101.953125, 17.308688 ], [ -101.953125, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 18.646245 ], [ -104.765625, 18.646245 ], [ -104.765625, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 22.593726 ], [ -106.171875, 22.593726 ], [ -106.171875, 23.241346 ], [ -106.875000, 23.241346 ], [ -106.875000, 23.885838 ], [ -107.578125, 23.885838 ], [ -107.578125, 24.527135 ], [ -108.281250, 24.527135 ], [ -108.281250, 25.165173 ], [ -108.984375, 25.165173 ], [ -108.984375, 26.431228 ], [ -110.390625, 26.431228 ], [ -110.390625, 27.683528 ], [ -111.796875, 27.683528 ], [ -111.796875, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 30.145127 ], [ -113.203125, 30.145127 ], [ -113.203125, 31.353637 ], [ -114.609375, 31.353637 ], [ -114.609375, 29.535230 ], [ -116.015625, 29.535230 ], [ -116.015625, 30.751278 ], [ -116.718750, 30.751278 ], [ -116.718750, 31.952162 ], [ -117.421875, 31.952162 ], [ -117.421875, 32.546813 ], [ -114.609375, 32.546813 ] ] ], [ [ [ -112.500000, 26.431228 ], [ -111.796875, 26.431228 ], [ -111.796875, 25.799891 ], [ -111.093750, 25.799891 ], [ -111.093750, 24.527135 ], [ -110.390625, 24.527135 ], [ -110.390625, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 22.593726 ], [ -110.390625, 22.593726 ], [ -110.390625, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 23.885838 ], [ -111.796875, 23.885838 ], [ -111.796875, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 26.431228 ] ] ], [ [ [ -113.906250, 28.921631 ], [ -113.203125, 28.921631 ], [ -113.203125, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 26.431228 ], [ -113.906250, 26.431228 ], [ -113.906250, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 27.683528 ], [ -113.906250, 27.683528 ], [ -113.906250, 28.921631 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 31.952162 ], [ -112.500000, 31.952162 ], [ -112.500000, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.952162 ], [ -106.171875, 31.952162 ], [ -106.171875, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 30.145127 ], [ -104.765625, 30.145127 ], [ -104.765625, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 30.145127 ], [ -101.953125, 30.145127 ], [ -101.953125, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 27.683528 ], [ -99.843750, 27.683528 ], [ -99.843750, 26.431228 ], [ -97.734375, 26.431228 ], [ -97.734375, 23.885838 ], [ -98.437500, 23.885838 ], [ -98.437500, 21.943046 ], [ -97.734375, 21.943046 ], [ -97.734375, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 19.973349 ], [ -96.328125, 19.973349 ], [ -96.328125, 18.646245 ], [ -92.109375, 18.646245 ], [ -92.109375, 19.311143 ], [ -90.703125, 19.311143 ], [ -90.703125, 21.289374 ], [ -88.593750, 21.289374 ], [ -88.593750, 21.943046 ], [ -87.187500, 21.943046 ], [ -87.187500, 20.632784 ], [ -87.890625, 20.632784 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 16.636192 ], [ -92.109375, 16.636192 ], [ -92.109375, 15.961329 ], [ -92.812500, 15.961329 ], [ -92.812500, 15.284185 ], [ -93.515625, 15.284185 ], [ -93.515625, 15.961329 ], [ -94.921875, 15.961329 ], [ -94.921875, 16.636192 ], [ -95.625000, 16.636192 ], [ -95.625000, 15.961329 ], [ -98.437500, 15.961329 ], [ -98.437500, 16.636192 ], [ -99.843750, 16.636192 ], [ -99.843750, 17.308688 ], [ -101.953125, 17.308688 ], [ -101.953125, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 19.973349 ], [ -106.171875, 19.973349 ], [ -106.171875, 21.289374 ], [ -105.468750, 21.289374 ], [ -105.468750, 21.943046 ], [ -106.171875, 21.943046 ], [ -106.171875, 23.241346 ], [ -107.578125, 23.241346 ], [ -107.578125, 24.527135 ], [ -108.281250, 24.527135 ], [ -108.281250, 25.165173 ], [ -108.984375, 25.165173 ], [ -108.984375, 25.799891 ], [ -109.687500, 25.799891 ], [ -109.687500, 27.059126 ], [ -110.390625, 27.059126 ], [ -110.390625, 27.683528 ], [ -111.093750, 27.683528 ], [ -111.093750, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.921631 ], [ -112.500000, 28.921631 ], [ -112.500000, 29.535230 ], [ -113.203125, 29.535230 ], [ -113.203125, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.952162 ] ] ], [ [ [ -113.906250, 31.952162 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.145127 ], [ -114.609375, 30.145127 ], [ -114.609375, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.921631 ], [ -113.203125, 28.921631 ], [ -113.203125, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 27.059126 ], [ -111.796875, 27.059126 ], [ -111.796875, 25.799891 ], [ -111.093750, 25.799891 ], [ -111.093750, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 26.431228 ], [ -113.906250, 26.431228 ], [ -113.906250, 27.059126 ], [ -114.609375, 27.059126 ], [ -114.609375, 27.683528 ], [ -115.312500, 27.683528 ], [ -115.312500, 28.304381 ], [ -114.609375, 28.304381 ], [ -114.609375, 28.921631 ], [ -115.312500, 28.921631 ], [ -115.312500, 29.535230 ], [ -116.015625, 29.535230 ], [ -116.015625, 30.751278 ], [ -116.718750, 30.751278 ], [ -116.718750, 31.353637 ], [ -117.421875, 31.353637 ], [ -117.421875, 32.546813 ], [ -116.015625, 32.546813 ], [ -116.015625, 33.137551 ], [ -115.312500, 33.137551 ], [ -115.312500, 32.546813 ], [ -113.906250, 32.546813 ], [ -113.906250, 31.952162 ] ] ], [ [ [ -110.390625, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 23.241346 ], [ -110.390625, 23.241346 ], [ -110.390625, 23.885838 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -110.390625, 24.527135 ], [ -110.390625, 23.885838 ], [ -111.093750, 23.885838 ], [ -111.093750, 24.527135 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 17.978733 ], [ -89.296875, 15.961329 ], [ -87.890625, 15.961329 ], [ -87.890625, 15.284185 ], [ -89.296875, 15.284185 ], [ -89.296875, 13.923404 ], [ -92.109375, 13.923404 ], [ -92.109375, 15.284185 ], [ -91.406250, 15.284185 ], [ -91.406250, 15.961329 ], [ -90.703125, 15.961329 ], [ -90.703125, 16.636192 ], [ -91.406250, 16.636192 ], [ -91.406250, 17.308688 ], [ -90.703125, 17.308688 ], [ -90.703125, 17.978733 ], [ -89.296875, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 17.978733 ], [ -89.296875, 14.604847 ], [ -90.000000, 14.604847 ], [ -90.000000, 13.923404 ], [ -91.406250, 13.923404 ], [ -91.406250, 14.604847 ], [ -92.812500, 14.604847 ], [ -92.812500, 15.961329 ], [ -92.109375, 15.961329 ], [ -92.109375, 16.636192 ], [ -91.406250, 16.636192 ], [ -91.406250, 17.978733 ], [ -89.296875, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -23.203125, 72.181804 ], [ -23.203125, 71.965388 ], [ -22.500000, 71.965388 ], [ -22.500000, 71.524909 ], [ -21.796875, 71.524909 ], [ -21.796875, 70.377854 ], [ -23.906250, 70.377854 ], [ -23.906250, 70.612614 ], [ -24.609375, 70.612614 ], [ -24.609375, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.377854 ], [ -26.015625, 70.377854 ], [ -26.015625, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 68.911005 ], [ -26.015625, 68.911005 ], [ -26.015625, 68.656555 ], [ -26.718750, 68.656555 ], [ -26.718750, 68.399180 ], [ -28.828125, 68.399180 ], [ -28.828125, 68.138852 ], [ -31.640625, 68.138852 ], [ -31.640625, 67.875541 ], [ -32.343750, 67.875541 ], [ -32.343750, 67.609221 ], [ -33.046875, 67.609221 ], [ -33.046875, 67.339861 ], [ -33.750000, 67.339861 ], [ -33.750000, 66.791909 ], [ -34.453125, 66.791909 ], [ -34.453125, 66.513260 ], [ -35.156250, 66.513260 ], [ -35.156250, 66.231457 ], [ -35.859375, 66.231457 ], [ -35.859375, 65.946472 ], [ -37.265625, 65.946472 ], [ -37.265625, 65.658275 ], [ -38.671875, 65.658275 ], [ -38.671875, 65.366837 ], [ -40.078125, 65.366837 ], [ -40.078125, 65.072130 ], [ -40.781250, 65.072130 ], [ -40.781250, 63.860036 ], [ -41.484375, 63.860036 ], [ -41.484375, 63.233627 ], [ -42.187500, 63.233627 ], [ -42.187500, 62.593341 ], [ -42.890625, 62.593341 ], [ -42.890625, 62.267923 ], [ -42.187500, 62.267923 ], [ -42.187500, 61.270233 ], [ -42.890625, 61.270233 ], [ -42.890625, 60.586967 ], [ -43.593750, 60.586967 ], [ -43.593750, 59.888937 ], [ -45.703125, 59.888937 ], [ -45.703125, 60.586967 ], [ -46.406250, 60.586967 ], [ -46.406250, 60.930432 ], [ -49.218750, 60.930432 ], [ -49.218750, 61.606396 ], [ -49.921875, 61.606396 ], [ -49.921875, 62.593341 ], [ -50.625000, 62.593341 ], [ -50.625000, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.860036 ], [ -52.031250, 63.860036 ], [ -52.031250, 65.366837 ], [ -52.734375, 65.366837 ], [ -52.734375, 65.946472 ], [ -53.437500, 65.946472 ], [ -53.437500, 66.791909 ], [ -54.140625, 66.791909 ], [ -54.140625, 67.339861 ], [ -53.437500, 67.339861 ], [ -53.437500, 67.875541 ], [ -52.734375, 67.875541 ], [ -52.734375, 68.399180 ], [ -51.328125, 68.399180 ], [ -51.328125, 69.411242 ], [ -50.625000, 69.411242 ], [ -50.625000, 69.657086 ], [ -52.031250, 69.657086 ], [ -52.031250, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.162558 ], [ -54.140625, 69.162558 ], [ -54.140625, 69.411242 ], [ -54.843750, 69.411242 ], [ -54.843750, 70.612614 ], [ -54.140625, 70.612614 ], [ -54.140625, 70.844673 ], [ -52.734375, 70.844673 ], [ -52.734375, 71.074056 ], [ -53.437500, 71.074056 ], [ -53.437500, 71.300793 ], [ -54.843750, 71.300793 ], [ -54.843750, 71.524909 ], [ -55.546875, 71.524909 ], [ -55.546875, 72.181804 ], [ -54.843750, 72.181804 ], [ -54.843750, 72.816074 ], [ -55.546875, 72.816074 ], [ -55.546875, 73.226700 ], [ -56.250000, 73.226700 ], [ -56.250000, 73.824820 ], [ -56.953125, 73.824820 ], [ -56.953125, 74.402163 ], [ -57.656250, 74.402163 ], [ -57.656250, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.497157 ], [ -59.062500, 75.497157 ], [ -59.062500, 75.672197 ], [ -59.765625, 75.672197 ], [ -59.765625, 75.845169 ], [ -60.468750, 75.845169 ], [ -60.468750, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.184995 ], [ -66.796875, 76.184995 ], [ -66.796875, 76.016094 ], [ -68.906250, 76.016094 ], [ -68.906250, 76.184995 ], [ -69.609375, 76.184995 ], [ -69.609375, 76.351896 ], [ -70.312500, 76.351896 ], [ -70.312500, 76.679785 ], [ -71.015625, 76.679785 ], [ -71.015625, 76.840816 ], [ -71.718750, 76.840816 ], [ -71.718750, 76.999935 ], [ -70.312500, 76.999935 ], [ -70.312500, 77.157163 ], [ -68.906250, 77.157163 ], [ -68.906250, 77.312520 ], [ -68.203125, 77.312520 ], [ -68.203125, 77.466028 ], [ -70.312500, 77.466028 ], [ -70.312500, 77.617709 ], [ -71.718750, 77.617709 ], [ -71.718750, 77.767582 ], [ -72.421875, 77.767582 ], [ -72.421875, 77.915669 ], [ -73.125000, 77.915669 ], [ -73.125000, 78.490552 ], [ -72.421875, 78.490552 ], [ -72.421875, 78.630006 ], [ -71.015625, 78.630006 ], [ -71.015625, 78.767792 ], [ -69.609375, 78.767792 ], [ -69.609375, 78.903929 ], [ -68.906250, 78.903929 ], [ -68.906250, 79.038437 ], [ -67.500000, 79.038437 ], [ -67.500000, 79.171335 ], [ -66.796875, 79.171335 ], [ -66.796875, 79.302640 ], [ -65.390625, 79.302640 ], [ -65.390625, 79.812302 ], [ -66.796875, 79.812302 ], [ -66.796875, 79.935918 ], [ -68.203125, 79.935918 ], [ -68.203125, 80.297927 ], [ -67.500000, 80.297927 ], [ -67.500000, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.647035 ], [ -66.093750, 80.647035 ], [ -66.093750, 80.872827 ], [ -65.390625, 80.872827 ], [ -65.390625, 80.983688 ], [ -64.687500, 80.983688 ], [ -64.687500, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.201420 ], [ -62.578125, 81.201420 ], [ -62.578125, 81.723188 ], [ -61.875000, 81.723188 ], [ -61.875000, 81.823794 ], [ -61.171875, 81.823794 ], [ -61.171875, 81.923186 ], [ -60.468750, 81.923186 ], [ -60.468750, 82.021378 ], [ -59.062500, 82.021378 ], [ -59.062500, 82.118384 ], [ -57.656250, 82.118384 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.118384 ], [ -53.437500, 82.118384 ], [ -53.437500, 81.923186 ], [ -52.031250, 81.923186 ], [ -52.031250, 82.118384 ], [ -51.328125, 82.118384 ], [ -51.328125, 82.308893 ], [ -49.921875, 82.308893 ], [ -49.921875, 82.214217 ], [ -49.218750, 82.214217 ], [ -49.218750, 82.118384 ], [ -48.515625, 82.118384 ], [ -48.515625, 82.021378 ], [ -46.406250, 82.021378 ], [ -46.406250, 82.118384 ], [ -47.109375, 82.118384 ], [ -47.109375, 82.586106 ], [ -46.406250, 82.586106 ], [ -46.406250, 82.765373 ], [ -45.703125, 82.765373 ], [ -45.703125, 82.853382 ], [ -45.000000, 82.853382 ], [ -45.000000, 82.940327 ], [ -44.296875, 82.940327 ], [ -44.296875, 83.111071 ], [ -43.593750, 83.111071 ], [ -43.593750, 83.194896 ], [ -40.078125, 83.194896 ], [ -40.078125, 83.277705 ], [ -39.375000, 83.277705 ], [ -39.375000, 83.440326 ], [ -38.671875, 83.440326 ], [ -38.671875, 83.520162 ], [ -37.265625, 83.520162 ], [ -37.265625, 83.599031 ], [ -35.859375, 83.599031 ], [ -35.859375, 83.676943 ], [ -33.750000, 83.676943 ], [ -33.750000, 83.599031 ], [ -29.531250, 83.599031 ], [ -29.531250, 83.520162 ], [ -27.421875, 83.520162 ], [ -27.421875, 83.440326 ], [ -26.718750, 83.440326 ], [ -26.718750, 83.359511 ], [ -26.015625, 83.359511 ], [ -26.015625, 83.277705 ], [ -25.312500, 83.277705 ], [ -25.312500, 83.194896 ], [ -24.609375, 83.194896 ], [ -24.609375, 83.111071 ], [ -23.906250, 83.111071 ], [ -23.906250, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.586106 ], [ -21.796875, 82.586106 ], [ -21.796875, 82.402423 ], [ -22.500000, 82.402423 ], [ -22.500000, 82.308893 ], [ -28.828125, 82.308893 ], [ -28.828125, 82.214217 ], [ -31.640625, 82.214217 ], [ -31.640625, 82.021378 ], [ -29.531250, 82.021378 ], [ -29.531250, 82.118384 ], [ -28.125000, 82.118384 ], [ -28.125000, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.923186 ], [ -25.312500, 81.923186 ], [ -25.312500, 81.823794 ], [ -23.906250, 81.823794 ], [ -23.906250, 82.021378 ], [ -22.500000, 82.021378 ], [ -22.500000, 81.823794 ], [ -21.796875, 81.823794 ], [ -21.796875, 81.518272 ], [ -22.500000, 81.518272 ], [ -22.500000, 81.308321 ], [ -21.093750, 81.308321 ], [ -21.093750, 81.413933 ], [ -20.390625, 81.413933 ], [ -20.390625, 81.518272 ], [ -19.687500, 81.518272 ], [ -19.687500, 81.621352 ], [ -18.281250, 81.621352 ], [ -18.281250, 81.723188 ], [ -16.875000, 81.723188 ], [ -16.875000, 81.823794 ], [ -14.062500, 81.823794 ], [ -14.062500, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.518272 ], [ -11.953125, 81.518272 ], [ -11.953125, 81.201420 ], [ -12.656250, 81.201420 ], [ -12.656250, 81.093214 ], [ -13.359375, 81.093214 ], [ -13.359375, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.760615 ], [ -14.765625, 80.760615 ], [ -14.765625, 80.647035 ], [ -15.468750, 80.647035 ], [ -15.468750, 80.532071 ], [ -16.171875, 80.532071 ], [ -16.171875, 80.415707 ], [ -16.875000, 80.415707 ], [ -16.875000, 80.297927 ], [ -18.281250, 80.297927 ], [ -18.281250, 80.178713 ], [ -17.578125, 80.178713 ], [ -17.578125, 79.935918 ], [ -18.281250, 79.935918 ], [ -18.281250, 79.560546 ], [ -18.984375, 79.560546 ], [ -18.984375, 79.038437 ], [ -19.687500, 79.038437 ], [ -19.687500, 77.466028 ], [ -18.984375, 77.466028 ], [ -18.984375, 77.157163 ], [ -18.281250, 77.157163 ], [ -18.281250, 76.999935 ], [ -19.687500, 76.999935 ], [ -19.687500, 76.840816 ], [ -21.093750, 76.840816 ], [ -21.093750, 76.679785 ], [ -21.796875, 76.679785 ], [ -21.796875, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 76.351896 ], [ -20.390625, 76.351896 ], [ -20.390625, 76.016094 ], [ -19.687500, 76.016094 ], [ -19.687500, 75.140778 ], [ -20.390625, 75.140778 ], [ -20.390625, 74.590108 ], [ -19.687500, 74.590108 ], [ -19.687500, 74.211983 ], [ -21.796875, 74.211983 ], [ -21.796875, 74.019543 ], [ -21.093750, 74.019543 ], [ -21.093750, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.627789 ], [ -21.093750, 73.627789 ], [ -21.093750, 73.226700 ], [ -23.906250, 73.226700 ], [ -23.906250, 73.022592 ], [ -23.203125, 73.022592 ], [ -23.203125, 72.607120 ], [ -22.500000, 72.607120 ], [ -22.500000, 72.181804 ], [ -23.203125, 72.181804 ] ], [ [ -23.203125, 72.181804 ], [ -23.203125, 72.395706 ], [ -24.609375, 72.395706 ], [ -24.609375, 72.181804 ], [ -23.203125, 72.181804 ] ], [ [ -22.500000, 81.308321 ], [ -23.203125, 81.308321 ], [ -23.203125, 81.201420 ], [ -22.500000, 81.201420 ], [ -22.500000, 81.308321 ] ], [ [ -52.734375, 70.844673 ], [ -52.734375, 70.612614 ], [ -52.031250, 70.612614 ], [ -52.031250, 70.844673 ], [ -52.734375, 70.844673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.406250, 81.923186 ], [ -46.406250, 82.118384 ], [ -47.109375, 82.118384 ], [ -47.109375, 82.676285 ], [ -46.406250, 82.676285 ], [ -46.406250, 82.853382 ], [ -45.703125, 82.853382 ], [ -45.703125, 82.940327 ], [ -45.000000, 82.940327 ], [ -45.000000, 83.026219 ], [ -44.296875, 83.026219 ], [ -44.296875, 83.194896 ], [ -43.593750, 83.194896 ], [ -43.593750, 83.277705 ], [ -42.187500, 83.277705 ], [ -42.187500, 83.194896 ], [ -40.078125, 83.194896 ], [ -40.078125, 83.277705 ], [ -39.375000, 83.277705 ], [ -39.375000, 83.440326 ], [ -38.671875, 83.440326 ], [ -38.671875, 83.599031 ], [ -36.562500, 83.599031 ], [ -36.562500, 83.676943 ], [ -33.750000, 83.676943 ], [ -33.750000, 83.599031 ], [ -29.531250, 83.599031 ], [ -29.531250, 83.520162 ], [ -27.421875, 83.520162 ], [ -27.421875, 83.440326 ], [ -26.718750, 83.440326 ], [ -26.718750, 83.359511 ], [ -26.015625, 83.359511 ], [ -26.015625, 83.277705 ], [ -25.312500, 83.277705 ], [ -25.312500, 83.194896 ], [ -24.609375, 83.194896 ], [ -24.609375, 83.111071 ], [ -23.906250, 83.111071 ], [ -23.906250, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.676285 ], [ -21.796875, 82.676285 ], [ -21.796875, 82.586106 ], [ -22.500000, 82.586106 ], [ -22.500000, 82.402423 ], [ -24.609375, 82.402423 ], [ -24.609375, 82.308893 ], [ -28.828125, 82.308893 ], [ -28.828125, 82.214217 ], [ -28.125000, 82.214217 ], [ -28.125000, 82.118384 ], [ -27.421875, 82.118384 ], [ -27.421875, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.923186 ], [ -26.015625, 81.923186 ], [ -26.015625, 81.823794 ], [ -24.609375, 81.823794 ], [ -24.609375, 81.923186 ], [ -23.906250, 81.923186 ], [ -23.906250, 82.021378 ], [ -23.203125, 82.021378 ], [ -23.203125, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.518272 ], [ -23.203125, 81.518272 ], [ -23.203125, 81.201420 ], [ -22.500000, 81.201420 ], [ -22.500000, 81.413933 ], [ -21.796875, 81.413933 ], [ -21.796875, 81.518272 ], [ -21.093750, 81.518272 ], [ -21.093750, 81.621352 ], [ -19.687500, 81.621352 ], [ -19.687500, 81.723188 ], [ -18.281250, 81.723188 ], [ -18.281250, 81.823794 ], [ -16.875000, 81.823794 ], [ -16.875000, 81.923186 ], [ -16.171875, 81.923186 ], [ -16.171875, 81.823794 ], [ -14.765625, 81.823794 ], [ -14.765625, 81.723188 ], [ -13.359375, 81.723188 ], [ -13.359375, 81.518272 ], [ -12.656250, 81.518272 ], [ -12.656250, 81.201420 ], [ -13.359375, 81.201420 ], [ -13.359375, 81.093214 ], [ -14.062500, 81.093214 ], [ -14.062500, 80.983688 ], [ -14.765625, 80.983688 ], [ -14.765625, 80.872827 ], [ -15.468750, 80.872827 ], [ -15.468750, 80.760615 ], [ -16.171875, 80.760615 ], [ -16.171875, 80.647035 ], [ -16.875000, 80.647035 ], [ -16.875000, 80.415707 ], [ -17.578125, 80.415707 ], [ -17.578125, 80.297927 ], [ -18.984375, 80.297927 ], [ -18.984375, 80.178713 ], [ -18.281250, 80.178713 ], [ -18.281250, 79.812302 ], [ -18.984375, 79.812302 ], [ -18.984375, 79.171335 ], [ -19.687500, 79.171335 ], [ -19.687500, 78.903929 ], [ -20.390625, 78.903929 ], [ -20.390625, 78.206563 ], [ -19.687500, 78.206563 ], [ -19.687500, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 76.999935 ], [ -20.390625, 76.999935 ], [ -20.390625, 76.840816 ], [ -21.093750, 76.840816 ], [ -21.093750, 76.679785 ], [ -21.796875, 76.679785 ], [ -21.796875, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 76.184995 ], [ -20.390625, 76.184995 ], [ -20.390625, 75.672197 ], [ -19.687500, 75.672197 ], [ -19.687500, 75.320025 ], [ -21.093750, 75.320025 ], [ -21.093750, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.590108 ], [ -19.687500, 74.590108 ], [ -19.687500, 74.402163 ], [ -21.796875, 74.402163 ], [ -21.796875, 74.019543 ], [ -21.093750, 74.019543 ], [ -21.093750, 73.428424 ], [ -23.906250, 73.428424 ], [ -23.906250, 73.226700 ], [ -23.203125, 73.226700 ], [ -23.203125, 72.816074 ], [ -22.500000, 72.816074 ], [ -22.500000, 72.395706 ], [ -23.906250, 72.395706 ], [ -23.906250, 72.607120 ], [ -24.609375, 72.607120 ], [ -24.609375, 72.395706 ], [ -25.312500, 72.395706 ], [ -25.312500, 72.181804 ], [ -23.906250, 72.181804 ], [ -23.906250, 71.965388 ], [ -23.203125, 71.965388 ], [ -23.203125, 71.524909 ], [ -22.500000, 71.524909 ], [ -22.500000, 71.074056 ], [ -21.796875, 71.074056 ], [ -21.796875, 70.844673 ], [ -22.500000, 70.844673 ], [ -22.500000, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 70.844673 ], [ -24.609375, 70.844673 ], [ -24.609375, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.612614 ], [ -26.015625, 70.612614 ], [ -26.015625, 70.377854 ], [ -23.906250, 70.377854 ], [ -23.906250, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.657086 ], [ -24.609375, 69.657086 ], [ -24.609375, 69.411242 ], [ -25.312500, 69.411242 ], [ -25.312500, 69.162558 ], [ -26.015625, 69.162558 ], [ -26.015625, 68.911005 ], [ -27.421875, 68.911005 ], [ -27.421875, 68.656555 ], [ -28.125000, 68.656555 ], [ -28.125000, 68.399180 ], [ -29.531250, 68.399180 ], [ -29.531250, 68.138852 ], [ -32.343750, 68.138852 ], [ -32.343750, 67.875541 ], [ -33.046875, 67.875541 ], [ -33.046875, 67.609221 ], [ -33.750000, 67.609221 ], [ -33.750000, 67.067433 ], [ -34.453125, 67.067433 ], [ -34.453125, 66.513260 ], [ -35.859375, 66.513260 ], [ -35.859375, 66.231457 ], [ -36.562500, 66.231457 ], [ -36.562500, 65.946472 ], [ -38.671875, 65.946472 ], [ -38.671875, 65.658275 ], [ -40.078125, 65.658275 ], [ -40.078125, 65.366837 ], [ -40.781250, 65.366837 ], [ -40.781250, 63.860036 ], [ -41.484375, 63.860036 ], [ -41.484375, 63.233627 ], [ -42.187500, 63.233627 ], [ -42.187500, 62.915233 ], [ -42.890625, 62.915233 ], [ -42.890625, 60.586967 ], [ -43.593750, 60.586967 ], [ -43.593750, 60.239811 ], [ -45.703125, 60.239811 ], [ -45.703125, 60.586967 ], [ -46.406250, 60.586967 ], [ -46.406250, 60.930432 ], [ -49.218750, 60.930432 ], [ -49.218750, 61.270233 ], [ -49.921875, 61.270233 ], [ -49.921875, 62.593341 ], [ -50.625000, 62.593341 ], [ -50.625000, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.548552 ], [ -52.031250, 63.548552 ], [ -52.031250, 64.168107 ], [ -52.734375, 64.168107 ], [ -52.734375, 65.366837 ], [ -53.437500, 65.366837 ], [ -53.437500, 65.946472 ], [ -54.140625, 65.946472 ], [ -54.140625, 66.513260 ], [ -53.437500, 66.513260 ], [ -53.437500, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.875541 ], [ -53.437500, 67.875541 ], [ -53.437500, 68.399180 ], [ -52.734375, 68.399180 ], [ -52.734375, 68.656555 ], [ -52.031250, 68.656555 ], [ -52.031250, 68.911005 ], [ -51.328125, 68.911005 ], [ -51.328125, 69.900118 ], [ -52.031250, 69.900118 ], [ -52.031250, 69.657086 ], [ -52.734375, 69.657086 ], [ -52.734375, 69.411242 ], [ -54.843750, 69.411242 ], [ -54.843750, 70.844673 ], [ -53.437500, 70.844673 ], [ -53.437500, 70.612614 ], [ -52.734375, 70.612614 ], [ -52.734375, 71.074056 ], [ -53.437500, 71.074056 ], [ -53.437500, 71.524909 ], [ -56.250000, 71.524909 ], [ -56.250000, 71.965388 ], [ -55.546875, 71.965388 ], [ -55.546875, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.816074 ], [ -55.546875, 72.816074 ], [ -55.546875, 73.428424 ], [ -56.250000, 73.428424 ], [ -56.250000, 74.019543 ], [ -56.953125, 74.019543 ], [ -56.953125, 74.402163 ], [ -57.656250, 74.402163 ], [ -57.656250, 74.775843 ], [ -58.359375, 74.775843 ], [ -58.359375, 74.959392 ], [ -59.062500, 74.959392 ], [ -59.062500, 75.672197 ], [ -59.765625, 75.672197 ], [ -59.765625, 75.845169 ], [ -61.171875, 75.845169 ], [ -61.171875, 76.016094 ], [ -61.875000, 76.016094 ], [ -61.875000, 76.184995 ], [ -69.609375, 76.184995 ], [ -69.609375, 76.351896 ], [ -70.312500, 76.351896 ], [ -70.312500, 76.679785 ], [ -71.015625, 76.679785 ], [ -71.015625, 76.999935 ], [ -71.718750, 76.999935 ], [ -71.718750, 77.157163 ], [ -70.312500, 77.157163 ], [ -70.312500, 77.312520 ], [ -68.906250, 77.312520 ], [ -68.906250, 77.466028 ], [ -68.203125, 77.466028 ], [ -68.203125, 77.617709 ], [ -71.015625, 77.617709 ], [ -71.015625, 77.767582 ], [ -72.421875, 77.767582 ], [ -72.421875, 77.915669 ], [ -73.828125, 77.915669 ], [ -73.828125, 78.490552 ], [ -73.125000, 78.490552 ], [ -73.125000, 78.630006 ], [ -71.718750, 78.630006 ], [ -71.718750, 78.767792 ], [ -71.015625, 78.767792 ], [ -71.015625, 78.903929 ], [ -69.609375, 78.903929 ], [ -69.609375, 79.038437 ], [ -68.906250, 79.038437 ], [ -68.906250, 79.171335 ], [ -67.500000, 79.171335 ], [ -67.500000, 79.302640 ], [ -66.093750, 79.302640 ], [ -66.093750, 79.560546 ], [ -65.390625, 79.560546 ], [ -65.390625, 79.812302 ], [ -66.093750, 79.812302 ], [ -66.093750, 79.935918 ], [ -67.500000, 79.935918 ], [ -67.500000, 80.058050 ], [ -68.203125, 80.058050 ], [ -68.203125, 80.297927 ], [ -67.500000, 80.297927 ], [ -67.500000, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.760615 ], [ -66.093750, 80.760615 ], [ -66.093750, 80.872827 ], [ -65.390625, 80.872827 ], [ -65.390625, 80.983688 ], [ -64.687500, 80.983688 ], [ -64.687500, 81.201420 ], [ -63.984375, 81.201420 ], [ -63.984375, 81.308321 ], [ -62.578125, 81.308321 ], [ -62.578125, 81.621352 ], [ -63.281250, 81.621352 ], [ -63.281250, 81.823794 ], [ -62.578125, 81.823794 ], [ -62.578125, 81.923186 ], [ -61.171875, 81.923186 ], [ -61.171875, 82.021378 ], [ -60.468750, 82.021378 ], [ -60.468750, 82.118384 ], [ -58.359375, 82.118384 ], [ -58.359375, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.923186 ], [ -52.734375, 81.923186 ], [ -52.734375, 82.118384 ], [ -52.031250, 82.118384 ], [ -52.031250, 82.214217 ], [ -51.328125, 82.214217 ], [ -51.328125, 82.402423 ], [ -49.921875, 82.402423 ], [ -49.921875, 82.308893 ], [ -49.218750, 82.308893 ], [ -49.218750, 82.118384 ], [ -48.515625, 82.118384 ], [ -48.515625, 82.021378 ], [ -47.109375, 82.021378 ], [ -47.109375, 81.923186 ], [ -46.406250, 81.923186 ] ], [ [ -28.828125, 82.214217 ], [ -32.343750, 82.214217 ], [ -32.343750, 82.118384 ], [ -31.640625, 82.118384 ], [ -31.640625, 82.021378 ], [ -30.234375, 82.021378 ], [ -30.234375, 82.118384 ], [ -28.828125, 82.118384 ], [ -28.828125, 82.214217 ] ], [ [ -25.312500, 71.074056 ], [ -25.312500, 71.300793 ], [ -26.015625, 71.300793 ], [ -26.015625, 71.074056 ], [ -25.312500, 71.074056 ] ], [ [ -46.406250, 81.923186 ], [ -46.406250, 81.823794 ], [ -45.703125, 81.823794 ], [ -45.703125, 81.923186 ], [ -46.406250, 81.923186 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.343750, 24.527135 ], [ -77.343750, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.527135 ], [ -77.343750, 24.527135 ] ] ], [ [ [ -78.046875, 27.059126 ], [ -78.046875, 26.431228 ], [ -78.750000, 26.431228 ], [ -78.750000, 27.059126 ], [ -78.046875, 27.059126 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 25.799891 ], [ -78.046875, 24.527135 ], [ -78.750000, 24.527135 ], [ -78.750000, 25.799891 ], [ -78.046875, 25.799891 ] ] ], [ [ [ -78.046875, 27.059126 ], [ -78.046875, 26.431228 ], [ -79.453125, 26.431228 ], [ -79.453125, 27.059126 ], [ -78.046875, 27.059126 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.593750, 17.978733 ], [ -88.593750, 17.308688 ], [ -87.890625, 17.308688 ], [ -87.890625, 16.636192 ], [ -88.593750, 16.636192 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.593750, 17.978733 ] ] ], [ [ [ -87.890625, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 18.646245 ], [ -87.890625, 18.646245 ], [ -87.890625, 17.978733 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 17.978733 ], [ -88.593750, 16.636192 ], [ -89.296875, 16.636192 ], [ -89.296875, 17.978733 ], [ -88.593750, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -90.000000, 13.239945 ], [ -90.000000, 13.923404 ], [ -87.890625, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 14.604847 ], [ -88.593750, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 14.604847 ], [ -88.593750, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.284185 ], [ -83.671875, 15.284185 ], [ -83.671875, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 13.923404 ], [ -86.484375, 13.923404 ], [ -86.484375, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -89.296875, 13.923404 ], [ -89.296875, 15.284185 ], [ -87.890625, 15.284185 ], [ -87.890625, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.284185 ], [ -85.078125, 15.284185 ], [ -85.078125, 14.604847 ], [ -85.781250, 14.604847 ], [ -85.781250, 13.923404 ], [ -87.187500, 13.923404 ], [ -87.187500, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 14.604847 ], [ -89.296875, 14.604847 ], [ -89.296875, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 15.284185 ], [ -82.968750, 13.923404 ], [ -83.671875, 13.923404 ], [ -83.671875, 10.487812 ], [ -84.375000, 10.487812 ], [ -84.375000, 11.178402 ], [ -86.484375, 11.178402 ], [ -86.484375, 11.867351 ], [ -87.187500, 11.867351 ], [ -87.187500, 12.554564 ], [ -87.890625, 12.554564 ], [ -87.890625, 13.239945 ], [ -86.484375, 13.239945 ], [ -86.484375, 13.923404 ], [ -85.078125, 13.923404 ], [ -85.078125, 14.604847 ], [ -83.671875, 14.604847 ], [ -83.671875, 15.284185 ], [ -82.968750, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.671875, 15.284185 ], [ -83.671875, 12.554564 ], [ -84.375000, 12.554564 ], [ -84.375000, 11.178402 ], [ -86.484375, 11.178402 ], [ -86.484375, 11.867351 ], [ -87.187500, 11.867351 ], [ -87.187500, 12.554564 ], [ -87.890625, 12.554564 ], [ -87.890625, 13.239945 ], [ -87.187500, 13.239945 ], [ -87.187500, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 15.284185 ], [ -83.671875, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.859375, 23.241346 ], [ -80.859375, 22.593726 ], [ -78.046875, 22.593726 ], [ -78.046875, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.289374 ], [ -75.937500, 21.289374 ], [ -75.937500, 20.632784 ], [ -75.234375, 20.632784 ], [ -75.234375, 19.973349 ], [ -77.343750, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.750000, 20.632784 ], [ -78.750000, 21.289374 ], [ -80.156250, 21.289374 ], [ -80.156250, 21.943046 ], [ -82.265625, 21.943046 ], [ -82.265625, 22.593726 ], [ -82.968750, 22.593726 ], [ -82.968750, 23.241346 ], [ -80.859375, 23.241346 ] ] ], [ [ [ -82.968750, 22.593726 ], [ -82.968750, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 22.593726 ], [ -82.968750, 22.593726 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.156250, 23.241346 ], [ -80.156250, 22.593726 ], [ -78.046875, 22.593726 ], [ -78.046875, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.289374 ], [ -75.234375, 21.289374 ], [ -75.234375, 20.632784 ], [ -74.531250, 20.632784 ], [ -74.531250, 19.973349 ], [ -77.343750, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.046875, 20.632784 ], [ -78.046875, 21.289374 ], [ -78.750000, 21.289374 ], [ -78.750000, 21.943046 ], [ -80.859375, 21.943046 ], [ -80.859375, 22.593726 ], [ -82.265625, 22.593726 ], [ -82.265625, 23.241346 ], [ -80.156250, 23.241346 ] ] ], [ [ [ -84.375000, 22.593726 ], [ -84.375000, 21.943046 ], [ -85.078125, 21.943046 ], [ -85.078125, 22.593726 ], [ -84.375000, 22.593726 ] ] ], [ [ [ -82.968750, 22.593726 ], [ -84.375000, 22.593726 ], [ -84.375000, 23.241346 ], [ -82.968750, 23.241346 ], [ -82.968750, 22.593726 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 11.178402 ], [ -84.375000, 10.487812 ], [ -83.671875, 10.487812 ], [ -83.671875, 9.795678 ], [ -82.968750, 9.795678 ], [ -82.968750, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -84.375000, 9.102097 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -84.375000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.671875, 11.178402 ], [ -83.671875, 9.795678 ], [ -82.968750, 9.795678 ], [ -82.968750, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -84.375000, 9.102097 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -83.671875, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 7.013668 ], [ -80.859375, 7.013668 ], [ -80.859375, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -82.265625, 9.795678 ], [ -82.265625, 9.102097 ], [ -79.453125, 9.102097 ], [ -79.453125, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 9.102097 ], [ -78.046875, 9.102097 ], [ -78.046875, 8.407168 ] ] ], [ [ [ -78.046875, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.710992 ], [ -78.046875, 7.710992 ], [ -78.046875, 8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.750000, 9.102097 ], [ -80.156250, 9.102097 ], [ -80.156250, 8.407168 ], [ -80.859375, 8.407168 ], [ -80.859375, 7.710992 ], [ -82.265625, 7.710992 ], [ -82.265625, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -82.265625, 9.795678 ], [ -82.265625, 9.102097 ], [ -80.859375, 9.102097 ], [ -80.859375, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 9.102097 ] ] ], [ [ [ -78.750000, 9.102097 ], [ -78.046875, 9.102097 ], [ -78.046875, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.710992 ], [ -78.750000, 7.710992 ], [ -78.750000, 9.102097 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.640625, 18.646245 ], [ -76.640625, 17.978733 ], [ -78.046875, 17.978733 ], [ -78.046875, 18.646245 ], [ -76.640625, 18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.640625, 18.646245 ], [ -76.640625, 17.978733 ], [ -78.750000, 17.978733 ], [ -78.750000, 18.646245 ], [ -76.640625, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.973349 ], [ -71.718750, 17.978733 ], [ -74.531250, 17.978733 ], [ -74.531250, 18.646245 ], [ -73.125000, 18.646245 ], [ -73.125000, 19.973349 ], [ -71.718750, 19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.973349 ], [ -71.718750, 18.646245 ], [ -72.421875, 18.646245 ], [ -72.421875, 19.311143 ], [ -73.125000, 19.311143 ], [ -73.125000, 19.973349 ], [ -71.718750, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.906250, 18.646245 ], [ -69.609375, 18.646245 ], [ -69.609375, 17.978733 ], [ -71.015625, 17.978733 ], [ -71.015625, 17.308688 ], [ -71.718750, 17.308688 ], [ -71.718750, 19.973349 ], [ -71.015625, 19.973349 ], [ -71.015625, 19.311143 ], [ -68.906250, 19.311143 ], [ -68.906250, 18.646245 ] ] ], [ [ [ -68.906250, 18.646245 ], [ -68.203125, 18.646245 ], [ -68.203125, 17.978733 ], [ -68.906250, 17.978733 ], [ -68.906250, 18.646245 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.312500, 19.973349 ], [ -70.312500, 19.311143 ], [ -68.906250, 19.311143 ], [ -68.906250, 18.646245 ], [ -71.015625, 18.646245 ], [ -71.015625, 17.978733 ], [ -71.718750, 17.978733 ], [ -71.718750, 19.973349 ], [ -70.312500, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -72.421875, 11.178402 ], [ -72.421875, 10.487812 ], [ -73.125000, 10.487812 ], [ -73.125000, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 6.315299 ], [ -67.500000, 6.315299 ], [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -75.234375, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.407168 ], [ -75.937500, 8.407168 ], [ -75.937500, 9.795678 ], [ -75.234375, 9.795678 ], [ -75.234375, 11.178402 ], [ -72.421875, 11.178402 ] ] ], [ [ [ -71.718750, 11.178402 ], [ -72.421875, 11.178402 ], [ -72.421875, 11.867351 ], [ -71.718750, 11.867351 ], [ -71.718750, 11.178402 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, -2.811371 ], [ -70.312500, -3.513421 ], [ -71.015625, -3.513421 ], [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ] ] ], [ [ [ -72.421875, 11.867351 ], [ -72.421875, 11.178402 ], [ -73.125000, 11.178402 ], [ -73.125000, 9.795678 ], [ -73.828125, 9.795678 ], [ -73.828125, 9.102097 ], [ -73.125000, 9.102097 ], [ -73.125000, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 6.315299 ], [ -67.500000, 6.315299 ], [ -67.500000, 5.615986 ], [ -68.203125, 5.615986 ], [ -68.203125, 4.214943 ], [ -67.500000, 4.214943 ], [ -67.500000, 3.513421 ], [ -68.203125, 3.513421 ], [ -68.203125, 2.811371 ], [ -67.500000, 2.811371 ], [ -67.500000, 2.108899 ], [ -70.312500, 2.108899 ], [ -70.312500, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, 0.000000 ], [ -69.609375, 0.000000 ], [ -69.609375, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -2.108899 ], [ -73.125000, -2.108899 ], [ -73.125000, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.406109 ], [ -79.453125, 1.406109 ], [ -79.453125, 2.108899 ], [ -78.750000, 2.108899 ], [ -78.750000, 2.811371 ], [ -78.046875, 2.811371 ], [ -78.046875, 3.513421 ], [ -77.343750, 3.513421 ], [ -77.343750, 4.915833 ], [ -78.046875, 4.915833 ], [ -78.046875, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.315299 ], [ -78.046875, 6.315299 ], [ -78.046875, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.407168 ], [ -78.046875, 8.407168 ], [ -78.046875, 9.102097 ], [ -76.640625, 9.102097 ], [ -76.640625, 9.795678 ], [ -75.937500, 9.795678 ], [ -75.937500, 11.178402 ], [ -74.531250, 11.178402 ], [ -74.531250, 11.867351 ], [ -72.421875, 11.867351 ] ] ], [ [ [ -71.718750, 11.867351 ], [ -72.421875, 11.867351 ], [ -72.421875, 12.554564 ], [ -71.718750, 12.554564 ], [ -71.718750, 11.867351 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, 18.646245 ], [ -66.093750, 17.978733 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 11.178402 ], [ -71.718750, 11.867351 ], [ -71.015625, 11.867351 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.867351 ], [ -69.609375, 11.867351 ], [ -69.609375, 11.178402 ], [ -68.203125, 11.178402 ], [ -68.203125, 10.487812 ], [ -65.390625, 10.487812 ], [ -65.390625, 9.795678 ], [ -63.984375, 9.795678 ], [ -63.984375, 10.487812 ], [ -62.578125, 10.487812 ], [ -62.578125, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 9.102097 ], [ -61.171875, 9.102097 ], [ -61.171875, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 7.013668 ], [ -61.171875, 7.013668 ], [ -61.171875, 4.915833 ], [ -60.468750, 4.915833 ], [ -60.468750, 4.214943 ], [ -62.578125, 4.214943 ], [ -62.578125, 3.513421 ], [ -63.984375, 3.513421 ], [ -63.984375, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 0.703107 ], [ -66.796875, 0.703107 ], [ -66.796875, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 6.315299 ], [ -70.312500, 6.315299 ], [ -70.312500, 7.013668 ], [ -72.421875, 7.013668 ], [ -72.421875, 8.407168 ], [ -73.125000, 8.407168 ], [ -73.125000, 10.487812 ], [ -72.421875, 10.487812 ], [ -72.421875, 11.178402 ], [ -71.718750, 11.178402 ] ], [ [ -71.718750, 10.487812 ], [ -71.718750, 9.795678 ], [ -72.421875, 9.795678 ], [ -72.421875, 9.102097 ], [ -71.015625, 9.102097 ], [ -71.015625, 10.487812 ], [ -71.718750, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 11.867351 ], [ -68.906250, 11.178402 ], [ -66.796875, 11.178402 ], [ -66.796875, 10.487812 ], [ -64.687500, 10.487812 ], [ -64.687500, 11.178402 ], [ -62.578125, 11.178402 ], [ -62.578125, 10.487812 ], [ -61.875000, 10.487812 ], [ -61.875000, 9.795678 ], [ -61.171875, 9.795678 ], [ -61.171875, 9.102097 ], [ -60.468750, 9.102097 ], [ -60.468750, 8.407168 ], [ -61.171875, 8.407168 ], [ -61.171875, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 7.013668 ], [ -61.171875, 7.013668 ], [ -61.171875, 6.315299 ], [ -61.875000, 6.315299 ], [ -61.875000, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 2.108899 ], [ -64.687500, 2.108899 ], [ -64.687500, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 2.811371 ], [ -68.203125, 2.811371 ], [ -68.203125, 3.513421 ], [ -67.500000, 3.513421 ], [ -67.500000, 4.214943 ], [ -68.203125, 4.214943 ], [ -68.203125, 5.615986 ], [ -67.500000, 5.615986 ], [ -67.500000, 6.315299 ], [ -70.312500, 6.315299 ], [ -70.312500, 7.013668 ], [ -72.421875, 7.013668 ], [ -72.421875, 8.407168 ], [ -73.125000, 8.407168 ], [ -73.125000, 9.102097 ], [ -73.828125, 9.102097 ], [ -73.828125, 9.795678 ], [ -73.125000, 9.795678 ], [ -73.125000, 11.178402 ], [ -71.718750, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.867351 ], [ -68.906250, 11.867351 ] ], [ [ -71.718750, 10.487812 ], [ -72.421875, 10.487812 ], [ -72.421875, 9.795678 ], [ -71.718750, 9.795678 ], [ -71.718750, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, 10.487812 ], [ -61.171875, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 10.487812 ], [ -61.171875, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, 11.178402 ], [ -61.171875, 10.487812 ], [ -61.875000, 10.487812 ], [ -61.875000, 11.178402 ], [ -61.171875, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 7.710992 ], [ -59.062500, 7.013668 ], [ -58.359375, 7.013668 ], [ -58.359375, 6.315299 ], [ -56.953125, 6.315299 ], [ -56.953125, 5.615986 ], [ -57.656250, 5.615986 ], [ -57.656250, 4.214943 ], [ -58.359375, 4.214943 ], [ -58.359375, 3.513421 ], [ -56.953125, 3.513421 ], [ -56.953125, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 4.915833 ], [ -61.171875, 4.915833 ], [ -61.171875, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.710992 ], [ -59.062500, 7.710992 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.765625, 7.710992 ], [ -59.062500, 7.710992 ], [ -59.062500, 7.013668 ], [ -57.656250, 7.013668 ], [ -57.656250, 4.915833 ], [ -58.359375, 4.915833 ], [ -58.359375, 3.513421 ], [ -57.656250, 3.513421 ], [ -57.656250, 2.108899 ], [ -59.062500, 2.108899 ], [ -59.062500, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 2.811371 ], [ -60.468750, 2.811371 ], [ -60.468750, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.915833 ], [ -60.468750, 4.915833 ], [ -60.468750, 5.615986 ], [ -61.875000, 5.615986 ], [ -61.875000, 6.315299 ], [ -61.171875, 6.315299 ], [ -61.171875, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.710992 ], [ -61.171875, 7.710992 ], [ -61.171875, 8.407168 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 5.615986 ], [ -54.140625, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 3.513421 ], [ -58.359375, 3.513421 ], [ -58.359375, 4.214943 ], [ -57.656250, 4.214943 ], [ -57.656250, 5.615986 ], [ -54.140625, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 6.315299 ], [ -54.140625, 5.615986 ], [ -54.843750, 5.615986 ], [ -54.843750, 4.214943 ], [ -54.140625, 4.214943 ], [ -54.140625, 3.513421 ], [ -54.843750, 3.513421 ], [ -54.843750, 2.811371 ], [ -56.250000, 2.811371 ], [ -56.250000, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 3.513421 ], [ -58.359375, 3.513421 ], [ -58.359375, 4.915833 ], [ -57.656250, 4.915833 ], [ -57.656250, 6.315299 ], [ -54.140625, 6.315299 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.765625, 66.513260 ], [ -14.765625, 65.658275 ], [ -14.062500, 65.658275 ], [ -14.062500, 65.072130 ], [ -13.359375, 65.072130 ], [ -13.359375, 64.774125 ], [ -14.062500, 64.774125 ], [ -14.062500, 64.472794 ], [ -14.765625, 64.472794 ], [ -14.765625, 64.168107 ], [ -15.468750, 64.168107 ], [ -15.468750, 63.860036 ], [ -16.875000, 63.860036 ], [ -16.875000, 63.548552 ], [ -21.796875, 63.548552 ], [ -21.796875, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -21.796875, 64.168107 ], [ -21.796875, 64.472794 ], [ -23.203125, 64.472794 ], [ -23.203125, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 65.658275 ], [ -24.609375, 65.658275 ], [ -24.609375, 65.946472 ], [ -23.906250, 65.946472 ], [ -23.906250, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.513260 ], [ -21.796875, 66.513260 ], [ -21.796875, 66.231457 ], [ -21.093750, 66.231457 ], [ -21.093750, 65.658275 ], [ -19.687500, 65.658275 ], [ -19.687500, 65.946472 ], [ -16.875000, 65.946472 ], [ -16.875000, 66.231457 ], [ -16.171875, 66.231457 ], [ -16.171875, 66.513260 ], [ -14.765625, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.765625, 66.513260 ], [ -14.765625, 65.658275 ], [ -14.062500, 65.658275 ], [ -14.062500, 65.072130 ], [ -14.765625, 65.072130 ], [ -14.765625, 64.472794 ], [ -15.468750, 64.472794 ], [ -15.468750, 64.168107 ], [ -16.875000, 64.168107 ], [ -16.875000, 63.860036 ], [ -18.281250, 63.860036 ], [ -18.281250, 63.548552 ], [ -20.390625, 63.548552 ], [ -20.390625, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -21.796875, 64.168107 ], [ -21.796875, 64.472794 ], [ -23.203125, 64.472794 ], [ -23.203125, 64.774125 ], [ -24.609375, 64.774125 ], [ -24.609375, 65.072130 ], [ -23.203125, 65.072130 ], [ -23.203125, 65.366837 ], [ -22.500000, 65.366837 ], [ -22.500000, 65.658275 ], [ -24.609375, 65.658275 ], [ -24.609375, 65.946472 ], [ -23.906250, 65.946472 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -22.500000, 66.231457 ], [ -21.796875, 66.231457 ], [ -21.796875, 65.946472 ], [ -20.390625, 65.946472 ], [ -20.390625, 66.231457 ], [ -17.578125, 66.231457 ], [ -17.578125, 66.513260 ], [ -14.765625, 66.513260 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 54.572062 ], [ -7.031250, 53.748711 ], [ -6.328125, 53.748711 ], [ -6.328125, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 51.618017 ], [ -9.843750, 51.618017 ], [ -9.843750, 52.052490 ], [ -9.140625, 52.052490 ], [ -9.140625, 53.330873 ], [ -9.843750, 53.330873 ], [ -9.843750, 53.748711 ], [ -9.140625, 53.748711 ], [ -9.140625, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 54.572062 ], [ -7.031250, 54.572062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 54.977614 ], [ -7.734375, 54.162434 ], [ -6.328125, 54.162434 ], [ -6.328125, 52.908902 ], [ -7.031250, 52.908902 ], [ -7.031250, 52.482780 ], [ -7.734375, 52.482780 ], [ -7.734375, 52.052490 ], [ -10.546875, 52.052490 ], [ -10.546875, 52.482780 ], [ -9.843750, 52.482780 ], [ -9.843750, 54.162434 ], [ -9.140625, 54.162434 ], [ -9.140625, 54.572062 ], [ -8.437500, 54.572062 ], [ -8.437500, 54.977614 ], [ -7.734375, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 58.447733 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 56.170023 ], [ -2.812500, 56.170023 ], [ -2.812500, 55.776573 ], [ -2.109375, 55.776573 ], [ -2.109375, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ 0.703125, 51.618017 ], [ 0.703125, 51.179343 ], [ 1.406250, 51.179343 ], [ 1.406250, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.289339 ], [ -4.218750, 50.289339 ], [ -4.218750, 49.837982 ], [ -5.625000, 49.837982 ], [ -5.625000, 50.289339 ], [ -4.921875, 50.289339 ], [ -4.921875, 50.736455 ], [ -4.218750, 50.736455 ], [ -4.218750, 51.179343 ], [ -3.515625, 51.179343 ], [ -3.515625, 51.618017 ], [ -4.921875, 51.618017 ], [ -4.921875, 52.052490 ], [ -4.218750, 52.052490 ], [ -4.218750, 52.482780 ], [ -4.921875, 52.482780 ], [ -4.921875, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -3.515625, 54.162434 ], [ -3.515625, 54.572062 ], [ -4.921875, 54.572062 ], [ -4.921875, 55.379110 ], [ -5.625000, 55.379110 ], [ -5.625000, 56.559482 ], [ -6.328125, 56.559482 ], [ -6.328125, 57.326521 ], [ -5.625000, 57.326521 ], [ -5.625000, 58.077876 ], [ -4.921875, 58.077876 ], [ -4.921875, 58.447733 ], [ -3.515625, 58.447733 ] ] ], [ [ [ -7.031250, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.162434 ], [ -6.328125, 54.162434 ], [ -6.328125, 53.748711 ], [ -7.031250, 53.748711 ], [ -7.031250, 54.572062 ] ] ], [ [ [ -7.031250, 54.572062 ], [ -7.734375, 54.572062 ], [ -7.734375, 54.977614 ], [ -7.031250, 54.977614 ], [ -7.031250, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 58.813742 ], [ -3.515625, 58.077876 ], [ -4.218750, 58.077876 ], [ -4.218750, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 57.326521 ], [ -2.812500, 57.326521 ], [ -2.812500, 56.559482 ], [ -3.515625, 56.559482 ], [ -3.515625, 56.170023 ], [ -2.109375, 56.170023 ], [ -2.109375, 55.379110 ], [ -1.406250, 55.379110 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 52.052490 ], [ 0.703125, 52.052490 ], [ 0.703125, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ -1.406250, 51.179343 ], [ -1.406250, 50.736455 ], [ -3.515625, 50.736455 ], [ -3.515625, 50.289339 ], [ -5.625000, 50.289339 ], [ -5.625000, 51.179343 ], [ -4.921875, 51.179343 ], [ -4.921875, 51.618017 ], [ -5.625000, 51.618017 ], [ -5.625000, 52.052490 ], [ -4.921875, 52.052490 ], [ -4.921875, 53.748711 ], [ -3.515625, 53.748711 ], [ -3.515625, 54.572062 ], [ -4.218750, 54.572062 ], [ -4.218750, 54.977614 ], [ -5.625000, 54.977614 ], [ -5.625000, 55.379110 ], [ -4.921875, 55.379110 ], [ -4.921875, 55.776573 ], [ -6.328125, 55.776573 ], [ -6.328125, 58.447733 ], [ -5.625000, 58.447733 ], [ -5.625000, 58.813742 ], [ -3.515625, 58.813742 ] ] ], [ [ [ -7.031250, 55.379110 ], [ -7.031250, 54.977614 ], [ -6.328125, 54.977614 ], [ -6.328125, 54.162434 ], [ -7.734375, 54.162434 ], [ -7.734375, 55.379110 ], [ -7.031250, 55.379110 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.734375, 5.615986 ], [ -52.734375, 4.915833 ], [ -52.031250, 4.915833 ], [ -52.031250, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.513421 ], [ -52.031250, 3.513421 ], [ -52.031250, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 2.108899 ], [ -54.140625, 2.108899 ], [ -54.140625, 5.615986 ], [ -52.734375, 5.615986 ] ] ], [ [ [ 2.812500, 50.736455 ], [ 2.812500, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.553080 ], [ -1.406250, 42.553080 ], [ -1.406250, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.558860 ], [ -2.109375, 46.558860 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -4.218750, 47.517201 ], [ -4.218750, 47.989922 ], [ -4.921875, 47.989922 ], [ -4.921875, 48.458352 ], [ -3.515625, 48.458352 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.458352 ], [ -1.406250, 48.458352 ], [ -1.406250, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ 0.000000, 49.382373 ], [ 0.000000, 49.837982 ], [ 1.406250, 49.837982 ], [ 1.406250, 50.736455 ], [ 2.812500, 50.736455 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.437500, 5.615986 ], [ -53.437500, 4.915833 ], [ -52.031250, 4.915833 ], [ -52.031250, 3.513421 ], [ -52.734375, 3.513421 ], [ -52.734375, 2.811371 ], [ -53.437500, 2.811371 ], [ -53.437500, 2.108899 ], [ -54.843750, 2.108899 ], [ -54.843750, 3.513421 ], [ -54.140625, 3.513421 ], [ -54.140625, 4.214943 ], [ -54.843750, 4.214943 ], [ -54.843750, 5.615986 ], [ -53.437500, 5.615986 ] ] ], [ [ [ 2.812500, 51.179343 ], [ 2.812500, 50.736455 ], [ 3.515625, 50.736455 ], [ 3.515625, 43.580391 ], [ 2.812500, 43.580391 ], [ 2.812500, 42.553080 ], [ 0.703125, 42.553080 ], [ 0.703125, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.073231 ], [ -2.109375, 46.073231 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 47.989922 ], [ -4.921875, 47.989922 ], [ -4.921875, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 50.736455 ], [ 1.406250, 50.736455 ], [ 1.406250, 51.179343 ], [ 2.812500, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.165173 ], [ -11.953125, 23.241346 ], [ -12.656250, 23.241346 ], [ -12.656250, 22.593726 ], [ -13.359375, 22.593726 ], [ -13.359375, 21.943046 ], [ -12.656250, 21.943046 ], [ -12.656250, 21.289374 ], [ -14.765625, 21.289374 ], [ -14.765625, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.885838 ], [ -12.656250, 23.885838 ], [ -12.656250, 25.165173 ], [ -11.953125, 25.165173 ] ] ], [ [ [ -8.437500, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 26.431228 ], [ -11.250000, 26.431228 ], [ -11.250000, 27.059126 ], [ -9.140625, 27.059126 ], [ -9.140625, 27.683528 ], [ -8.437500, 27.683528 ], [ -8.437500, 25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -16.875000, 21.943046 ], [ -16.875000, 21.289374 ], [ -17.578125, 21.289374 ], [ -17.578125, 21.943046 ], [ -16.875000, 21.943046 ] ] ], [ [ [ -13.359375, 23.885838 ], [ -13.359375, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 23.885838 ], [ -13.359375, 23.885838 ] ] ], [ [ [ -12.656250, 25.165173 ], [ -11.953125, 25.165173 ], [ -11.953125, 23.885838 ], [ -13.359375, 23.885838 ], [ -13.359375, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.165173 ] ] ], [ [ [ -11.953125, 26.431228 ], [ -11.953125, 27.059126 ], [ -9.843750, 27.059126 ], [ -9.843750, 27.683528 ], [ -9.140625, 27.683528 ], [ -9.140625, 26.431228 ], [ -11.953125, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 42.032974 ], [ -6.328125, 40.979898 ], [ -7.031250, 40.979898 ], [ -7.031250, 39.368279 ], [ -7.734375, 39.368279 ], [ -7.734375, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 37.160317 ], [ -7.734375, 37.160317 ], [ -7.734375, 36.597889 ], [ -9.140625, 36.597889 ], [ -9.140625, 37.160317 ], [ -8.437500, 37.160317 ], [ -8.437500, 37.718590 ], [ -9.140625, 37.718590 ], [ -9.140625, 38.272689 ], [ -9.843750, 38.272689 ], [ -9.843750, 38.822591 ], [ -9.140625, 38.822591 ], [ -9.140625, 40.446947 ], [ -8.437500, 40.446947 ], [ -8.437500, 40.979898 ], [ -9.140625, 40.979898 ], [ -9.140625, 42.032974 ], [ -6.328125, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 42.553080 ], [ -8.437500, 42.032974 ], [ -7.031250, 42.032974 ], [ -7.031250, 39.909736 ], [ -7.734375, 39.909736 ], [ -7.734375, 37.160317 ], [ -9.140625, 37.160317 ], [ -9.140625, 38.272689 ], [ -9.843750, 38.272689 ], [ -9.843750, 39.909736 ], [ -9.140625, 39.909736 ], [ -9.140625, 42.553080 ], [ -8.437500, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 2.109375, 41.508577 ], [ 2.109375, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 38.272689 ], [ -0.703125, 38.272689 ], [ -0.703125, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 37.160317 ], [ -2.109375, 37.160317 ], [ -2.109375, 36.597889 ], [ -4.921875, 36.597889 ], [ -4.921875, 36.031332 ], [ -6.328125, 36.031332 ], [ -6.328125, 37.160317 ], [ -7.031250, 37.160317 ], [ -7.031250, 38.822591 ], [ -7.734375, 38.822591 ], [ -7.734375, 39.368279 ], [ -7.031250, 39.368279 ], [ -7.031250, 40.979898 ], [ -6.328125, 40.979898 ], [ -6.328125, 42.032974 ], [ -9.140625, 42.032974 ], [ -9.140625, 43.068888 ], [ -7.734375, 43.068888 ], [ -7.734375, 43.580391 ], [ -2.109375, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ 0.703125, 43.068888 ], [ 0.703125, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 0.703125, 41.508577 ], [ 0.703125, 40.446947 ], [ 0.000000, 40.446947 ], [ 0.000000, 39.909736 ], [ -0.703125, 39.909736 ], [ -0.703125, 37.718590 ], [ -2.109375, 37.718590 ], [ -2.109375, 37.160317 ], [ -4.921875, 37.160317 ], [ -4.921875, 36.597889 ], [ -5.625000, 36.597889 ], [ -5.625000, 36.031332 ], [ -6.328125, 36.031332 ], [ -6.328125, 36.597889 ], [ -7.031250, 36.597889 ], [ -7.031250, 37.160317 ], [ -7.734375, 37.160317 ], [ -7.734375, 39.909736 ], [ -7.031250, 39.909736 ], [ -7.031250, 42.032974 ], [ -8.437500, 42.032974 ], [ -8.437500, 42.553080 ], [ -9.140625, 42.553080 ], [ -9.140625, 43.580391 ], [ -2.109375, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 36.031332 ], [ -4.921875, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 31.353637 ], [ -3.515625, 31.353637 ], [ -3.515625, 30.751278 ], [ -4.921875, 30.751278 ], [ -4.921875, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 27.683528 ], [ -9.140625, 27.683528 ], [ -9.140625, 27.059126 ], [ -11.250000, 27.059126 ], [ -11.250000, 26.431228 ], [ -11.953125, 26.431228 ], [ -11.953125, 25.165173 ], [ -12.656250, 25.165173 ], [ -12.656250, 23.885838 ], [ -14.062500, 23.885838 ], [ -14.062500, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.943046 ], [ -16.171875, 21.943046 ], [ -16.171875, 23.885838 ], [ -15.468750, 23.885838 ], [ -15.468750, 24.527135 ], [ -14.765625, 24.527135 ], [ -14.765625, 26.431228 ], [ -14.062500, 26.431228 ], [ -14.062500, 27.059126 ], [ -13.359375, 27.059126 ], [ -13.359375, 27.683528 ], [ -12.656250, 27.683528 ], [ -12.656250, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 31.353637 ], [ -9.140625, 31.353637 ], [ -9.140625, 32.546813 ], [ -8.437500, 32.546813 ], [ -8.437500, 33.137551 ], [ -7.734375, 33.137551 ], [ -7.734375, 33.724340 ], [ -7.031250, 33.724340 ], [ -7.031250, 34.307144 ], [ -6.328125, 34.307144 ], [ -6.328125, 35.460670 ], [ -5.625000, 35.460670 ], [ -5.625000, 36.031332 ], [ -4.921875, 36.031332 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625000, 36.031332 ], [ -5.625000, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 32.546813 ], [ -2.812500, 32.546813 ], [ -2.812500, 31.952162 ], [ -4.218750, 31.952162 ], [ -4.218750, 30.751278 ], [ -4.921875, 30.751278 ], [ -4.921875, 30.145127 ], [ -7.734375, 30.145127 ], [ -7.734375, 29.535230 ], [ -8.437500, 29.535230 ], [ -8.437500, 28.921631 ], [ -9.140625, 28.921631 ], [ -9.140625, 27.683528 ], [ -9.843750, 27.683528 ], [ -9.843750, 27.059126 ], [ -11.953125, 27.059126 ], [ -11.953125, 26.431228 ], [ -12.656250, 26.431228 ], [ -12.656250, 24.527135 ], [ -13.359375, 24.527135 ], [ -13.359375, 23.885838 ], [ -14.062500, 23.885838 ], [ -14.062500, 23.241346 ], [ -14.765625, 23.241346 ], [ -14.765625, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 23.241346 ], [ -16.171875, 23.241346 ], [ -16.171875, 23.885838 ], [ -15.468750, 23.885838 ], [ -15.468750, 25.799891 ], [ -14.765625, 25.799891 ], [ -14.765625, 26.431228 ], [ -14.062500, 26.431228 ], [ -14.062500, 27.059126 ], [ -13.359375, 27.059126 ], [ -13.359375, 27.683528 ], [ -12.656250, 27.683528 ], [ -12.656250, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 33.137551 ], [ -9.140625, 33.137551 ], [ -9.140625, 33.724340 ], [ -7.031250, 33.724340 ], [ -7.031250, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 36.031332 ], [ -5.625000, 36.031332 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 16.636192 ], [ -14.062500, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 14.604847 ], [ -11.953125, 14.604847 ], [ -11.953125, 13.239945 ], [ -11.250000, 13.239945 ], [ -11.250000, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -14.062500, 13.239945 ], [ -14.062500, 13.923404 ], [ -16.875000, 13.923404 ], [ -16.875000, 15.284185 ], [ -16.171875, 15.284185 ], [ -16.171875, 16.636192 ], [ -14.062500, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -14.062500, 16.636192 ], [ -14.062500, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 13.923404 ], [ -11.953125, 13.923404 ], [ -11.953125, 12.554564 ], [ -13.359375, 12.554564 ], [ -13.359375, 13.239945 ], [ -16.171875, 13.239945 ], [ -16.171875, 13.923404 ], [ -17.578125, 13.923404 ], [ -17.578125, 14.604847 ], [ -18.281250, 14.604847 ], [ -18.281250, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 16.636192 ], [ -14.062500, 16.636192 ] ] ], [ [ [ -16.171875, 13.239945 ], [ -16.171875, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -16.171875, 13.239945 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 13.923404 ], [ -14.062500, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.923404 ], [ -14.062500, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 13.923404 ], [ -16.171875, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.923404 ], [ -16.171875, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 12.554564 ], [ -14.062500, 11.178402 ], [ -16.171875, 11.178402 ], [ -16.171875, 11.867351 ], [ -16.875000, 11.867351 ], [ -16.875000, 12.554564 ], [ -14.062500, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 13.239945 ], [ -14.062500, 11.867351 ], [ -14.765625, 11.867351 ], [ -14.765625, 11.178402 ], [ -16.171875, 11.178402 ], [ -16.171875, 11.867351 ], [ -16.875000, 11.867351 ], [ -16.875000, 12.554564 ], [ -16.171875, 12.554564 ], [ -16.171875, 13.239945 ], [ -14.062500, 13.239945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 12.554564 ], [ -11.250000, 11.867351 ], [ -8.437500, 11.867351 ], [ -8.437500, 10.487812 ], [ -7.734375, 10.487812 ], [ -7.734375, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 9.102097 ], [ -7.734375, 9.102097 ], [ -7.734375, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 7.013668 ], [ -9.140625, 7.013668 ], [ -9.140625, 7.710992 ], [ -9.843750, 7.710992 ], [ -9.843750, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 9.102097 ], [ -13.359375, 9.102097 ], [ -13.359375, 9.795678 ], [ -14.765625, 9.795678 ], [ -14.765625, 11.178402 ], [ -14.062500, 11.178402 ], [ -14.062500, 12.554564 ], [ -11.250000, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.359375, 13.239945 ], [ -13.359375, 12.554564 ], [ -11.250000, 12.554564 ], [ -11.250000, 11.867351 ], [ -10.546875, 11.867351 ], [ -10.546875, 12.554564 ], [ -9.140625, 12.554564 ], [ -9.140625, 11.867351 ], [ -8.437500, 11.867351 ], [ -8.437500, 7.710992 ], [ -9.843750, 7.710992 ], [ -9.843750, 9.102097 ], [ -11.250000, 9.102097 ], [ -11.250000, 10.487812 ], [ -12.656250, 10.487812 ], [ -12.656250, 9.795678 ], [ -13.359375, 9.795678 ], [ -13.359375, 9.102097 ], [ -14.062500, 9.102097 ], [ -14.062500, 9.795678 ], [ -14.765625, 9.795678 ], [ -14.765625, 11.867351 ], [ -14.062500, 11.867351 ], [ -14.062500, 13.239945 ], [ -13.359375, 13.239945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.546875, 9.795678 ], [ -10.546875, 7.710992 ], [ -11.250000, 7.710992 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 7.710992 ], [ -13.359375, 7.710992 ], [ -13.359375, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.795678 ], [ -10.546875, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.487812 ], [ -11.250000, 9.102097 ], [ -10.546875, 9.102097 ], [ -10.546875, 8.407168 ], [ -11.250000, 8.407168 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 7.710992 ], [ -13.359375, 7.710992 ], [ -13.359375, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 10.487812 ], [ -11.250000, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.734375, 27.059126 ], [ -7.734375, 26.431228 ], [ -6.328125, 26.431228 ], [ -6.328125, 25.799891 ], [ -5.625000, 25.799891 ], [ -5.625000, 25.165173 ], [ -6.328125, 25.165173 ], [ -6.328125, 22.593726 ], [ -5.625000, 22.593726 ], [ -5.625000, 15.284185 ], [ -11.953125, 15.284185 ], [ -11.953125, 14.604847 ], [ -12.656250, 14.604847 ], [ -12.656250, 15.284185 ], [ -13.359375, 15.284185 ], [ -13.359375, 15.961329 ], [ -14.062500, 15.961329 ], [ -14.062500, 16.636192 ], [ -16.171875, 16.636192 ], [ -16.171875, 19.973349 ], [ -16.875000, 19.973349 ], [ -16.875000, 21.289374 ], [ -12.656250, 21.289374 ], [ -12.656250, 21.943046 ], [ -13.359375, 21.943046 ], [ -13.359375, 22.593726 ], [ -12.656250, 22.593726 ], [ -12.656250, 23.241346 ], [ -11.953125, 23.241346 ], [ -11.953125, 25.799891 ], [ -8.437500, 25.799891 ], [ -8.437500, 27.059126 ], [ -7.734375, 27.059126 ] ] ], [ [ [ -16.171875, 16.636192 ], [ -16.171875, 15.961329 ], [ -16.875000, 15.961329 ], [ -16.875000, 16.636192 ], [ -16.171875, 16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 27.059126 ], [ -7.734375, 26.431228 ], [ -7.031250, 26.431228 ], [ -7.031250, 25.799891 ], [ -5.625000, 25.799891 ], [ -5.625000, 25.165173 ], [ -7.031250, 25.165173 ], [ -7.031250, 23.241346 ], [ -6.328125, 23.241346 ], [ -6.328125, 18.646245 ], [ -5.625000, 18.646245 ], [ -5.625000, 15.961329 ], [ -9.843750, 15.961329 ], [ -9.843750, 15.284185 ], [ -13.359375, 15.284185 ], [ -13.359375, 15.961329 ], [ -14.062500, 15.961329 ], [ -14.062500, 16.636192 ], [ -16.875000, 16.636192 ], [ -16.875000, 17.978733 ], [ -16.171875, 17.978733 ], [ -16.171875, 18.646245 ], [ -16.875000, 18.646245 ], [ -16.875000, 20.632784 ], [ -17.578125, 20.632784 ], [ -17.578125, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.943046 ], [ -13.359375, 21.943046 ], [ -13.359375, 23.885838 ], [ -11.953125, 23.885838 ], [ -11.953125, 25.165173 ], [ -12.656250, 25.165173 ], [ -12.656250, 26.431228 ], [ -9.140625, 26.431228 ], [ -9.140625, 27.059126 ], [ -7.734375, 27.059126 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.165173 ], [ -4.921875, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 23.885838 ], [ -2.812500, 23.885838 ], [ -2.812500, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 1.406250, 21.289374 ], [ 1.406250, 20.632784 ], [ 2.109375, 20.632784 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 3.515625, 19.311143 ], [ 3.515625, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.604847 ], [ -0.703125, 14.604847 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -7.734375, 9.795678 ], [ -7.734375, 10.487812 ], [ -8.437500, 10.487812 ], [ -8.437500, 11.867351 ], [ -11.250000, 11.867351 ], [ -11.250000, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 15.284185 ], [ -5.625000, 15.284185 ], [ -5.625000, 22.593726 ], [ -6.328125, 22.593726 ], [ -6.328125, 25.165173 ], [ -4.921875, 25.165173 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.165173 ], [ -4.921875, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 23.885838 ], [ -2.812500, 23.885838 ], [ -2.812500, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 3.515625, 19.311143 ], [ 3.515625, 15.961329 ], [ 0.703125, 15.961329 ], [ 0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.812500, 14.604847 ], [ -2.812500, 13.923404 ], [ -4.218750, 13.923404 ], [ -4.218750, 13.239945 ], [ -4.921875, 13.239945 ], [ -4.921875, 11.867351 ], [ -5.625000, 11.867351 ], [ -5.625000, 10.487812 ], [ -8.437500, 10.487812 ], [ -8.437500, 11.867351 ], [ -9.140625, 11.867351 ], [ -9.140625, 12.554564 ], [ -10.546875, 12.554564 ], [ -10.546875, 11.867351 ], [ -11.250000, 11.867351 ], [ -11.250000, 12.554564 ], [ -11.953125, 12.554564 ], [ -11.953125, 13.923404 ], [ -12.656250, 13.923404 ], [ -12.656250, 15.284185 ], [ -9.843750, 15.284185 ], [ -9.843750, 15.961329 ], [ -5.625000, 15.961329 ], [ -5.625000, 18.646245 ], [ -6.328125, 18.646245 ], [ -6.328125, 23.241346 ], [ -7.031250, 23.241346 ], [ -7.031250, 25.165173 ], [ -4.921875, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -4.921875, 11.178402 ], [ -4.921875, 11.867351 ], [ -4.218750, 11.867351 ], [ -4.218750, 13.239945 ], [ -2.812500, 13.239945 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 13.239945 ], [ 2.109375, 13.239945 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -3.515625, 11.178402 ], [ -3.515625, 10.487812 ], [ -4.218750, 10.487812 ], [ -4.218750, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ 0.000000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 7.710992 ], [ -9.140625, 7.710992 ], [ -9.140625, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 6.315299 ], [ -7.734375, 6.315299 ], [ -7.734375, 4.214943 ], [ -9.140625, 4.214943 ], [ -9.140625, 4.915833 ], [ -9.843750, 4.915833 ], [ -9.843750, 5.615986 ], [ -10.546875, 5.615986 ], [ -10.546875, 6.315299 ], [ -11.250000, 6.315299 ], [ -11.250000, 7.710992 ], [ -10.546875, 7.710992 ], [ -10.546875, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 9.102097 ], [ -9.843750, 7.710992 ], [ -9.140625, 7.710992 ], [ -9.140625, 6.315299 ], [ -7.734375, 6.315299 ], [ -7.734375, 4.915833 ], [ -10.546875, 4.915833 ], [ -10.546875, 5.615986 ], [ -11.250000, 5.615986 ], [ -11.250000, 6.315299 ], [ -11.953125, 6.315299 ], [ -11.953125, 7.013668 ], [ -11.250000, 7.013668 ], [ -11.250000, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 9.102097 ], [ -9.843750, 9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 10.487812 ], [ -4.921875, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 7.013668 ], [ -3.515625, 7.013668 ], [ -3.515625, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -6.328125, 4.915833 ], [ -6.328125, 4.214943 ], [ -7.734375, 4.214943 ], [ -7.734375, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 8.407168 ], [ -7.734375, 8.407168 ], [ -7.734375, 9.102097 ], [ -8.437500, 9.102097 ], [ -8.437500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 10.487812 ], [ -4.921875, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 10.487812 ], [ -3.515625, 9.102097 ], [ -2.812500, 9.102097 ], [ -2.812500, 7.710992 ], [ -3.515625, 7.710992 ], [ -3.515625, 5.615986 ], [ -6.328125, 5.615986 ], [ -6.328125, 4.915833 ], [ -7.734375, 4.915833 ], [ -7.734375, 6.315299 ], [ -9.140625, 6.315299 ], [ -9.140625, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 10.487812 ], [ -4.921875, 10.487812 ], [ -4.921875, 9.795678 ], [ -4.218750, 9.795678 ], [ -4.218750, 10.487812 ], [ -3.515625, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -3.515625, 5.615986 ], [ -3.515625, 7.013668 ], [ -2.812500, 7.013668 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 11.178402 ], [ -0.703125, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.000000, 7.710992 ], [ 0.000000, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 5.615986 ], [ -1.406250, 5.615986 ], [ -1.406250, 4.915833 ], [ -3.515625, 4.915833 ], [ -3.515625, 7.710992 ], [ -2.812500, 7.710992 ], [ -2.812500, 9.102097 ], [ -3.515625, 9.102097 ], [ -3.515625, 11.178402 ], [ -0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 0.703107 ], [ -77.343750, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -79.453125, -3.513421 ], [ -79.453125, -2.811371 ], [ -80.859375, -2.811371 ], [ -80.859375, -0.703107 ], [ -80.156250, -0.703107 ], [ -80.156250, 0.703107 ], [ -77.343750, 0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.046875, 1.406109 ], [ -78.046875, 0.703107 ], [ -75.937500, 0.703107 ], [ -75.937500, -0.703107 ], [ -75.234375, -0.703107 ], [ -75.234375, -1.406109 ], [ -75.937500, -1.406109 ], [ -75.937500, -2.108899 ], [ -76.640625, -2.108899 ], [ -76.640625, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -80.859375, -3.513421 ], [ -80.859375, -2.811371 ], [ -80.156250, -2.811371 ], [ -80.156250, -2.108899 ], [ -80.859375, -2.108899 ], [ -80.859375, -1.406109 ], [ -81.562500, -1.406109 ], [ -81.562500, -0.703107 ], [ -80.859375, -0.703107 ], [ -80.859375, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 1.406109 ], [ -78.046875, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -0.703107 ], [ -73.828125, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, -2.108899 ], [ -75.234375, -2.108899 ], [ -75.234375, -0.703107 ], [ -73.828125, -0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.531250, 0.000000 ], [ -74.531250, -0.703107 ], [ -73.828125, -0.703107 ], [ -73.828125, -1.406109 ], [ -73.125000, -1.406109 ], [ -73.125000, -2.108899 ], [ -70.312500, -2.108899 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -76.640625, -2.811371 ], [ -76.640625, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.703107 ], [ -75.937500, -0.703107 ], [ -75.937500, 0.000000 ], [ -74.531250, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 4.915833 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 3.513421 ], [ -51.328125, 3.513421 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 1.406109 ], [ -49.921875, 1.406109 ], [ -49.921875, 0.000000 ], [ -48.515625, 0.000000 ], [ -48.515625, -1.406109 ], [ -47.812500, -1.406109 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.811371 ], [ -43.593750, -2.811371 ], [ -43.593750, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -69.609375, -3.513421 ], [ -69.609375, -0.703107 ], [ -70.312500, -0.703107 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 4.214943 ], [ -63.984375, 4.214943 ], [ -63.984375, 3.513421 ], [ -62.578125, 3.513421 ], [ -62.578125, 4.214943 ], [ -60.468750, 4.214943 ], [ -60.468750, 4.915833 ], [ -59.765625, 4.915833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 5.615986 ], [ -60.468750, 4.915833 ], [ -59.765625, 4.915833 ], [ -59.765625, 4.214943 ], [ -60.468750, 4.214943 ], [ -60.468750, 2.811371 ], [ -59.765625, 2.811371 ], [ -59.765625, 1.406109 ], [ -59.062500, 1.406109 ], [ -59.062500, 2.108899 ], [ -56.250000, 2.108899 ], [ -56.250000, 2.811371 ], [ -54.843750, 2.811371 ], [ -54.843750, 2.108899 ], [ -53.437500, 2.108899 ], [ -53.437500, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 3.513421 ], [ -52.031250, 3.513421 ], [ -52.031250, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 0.703107 ], [ -51.328125, 0.703107 ], [ -51.328125, 0.000000 ], [ -49.218750, 0.000000 ], [ -49.218750, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -2.811371 ], [ -69.609375, -2.811371 ], [ -69.609375, 0.000000 ], [ -70.312500, 0.000000 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -70.312500, 1.406109 ], [ -70.312500, 2.108899 ], [ -67.500000, 2.108899 ], [ -67.500000, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 2.108899 ], [ -63.984375, 2.108899 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 4.214943 ], [ -61.171875, 4.214943 ], [ -61.171875, 5.615986 ], [ -60.468750, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 65.946472 ], [ -180.000000, 65.658275 ], [ -179.296875, 65.658275 ], [ -179.296875, 65.072130 ], [ -180.000000, 65.072130 ], [ -180.000000, 64.774125 ], [ -180.703125, 64.774125 ], [ -180.703125, 64.472794 ], [ -182.812500, 64.472794 ], [ -182.812500, 64.168107 ], [ -181.406250, 64.168107 ], [ -181.406250, 62.915233 ], [ -180.703125, 62.915233 ], [ -180.703125, 62.267923 ], [ -182.109375, 62.267923 ], [ -182.109375, 62.593341 ], [ -182.812500, 62.593341 ], [ -182.812500, 62.267923 ], [ -183.515625, 62.267923 ], [ -183.515625, 69.657086 ], [ -182.812500, 69.657086 ], [ -182.812500, 69.411242 ], [ -181.406250, 69.411242 ], [ -181.406250, 69.162558 ], [ -180.703125, 69.162558 ], [ -180.703125, 68.911005 ], [ -180.000000, 68.911005 ], [ -180.000000, 68.656555 ], [ -179.296875, 68.656555 ], [ -179.296875, 68.399180 ], [ -178.593750, 68.399180 ], [ -178.593750, 68.138852 ], [ -177.890625, 68.138852 ], [ -177.890625, 67.875541 ], [ -177.187500, 67.875541 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.339861 ], [ -175.078125, 67.339861 ], [ -175.078125, 66.231457 ], [ -174.375000, 66.231457 ], [ -174.375000, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 65.946472 ], [ -170.156250, 65.946472 ], [ -170.156250, 65.658275 ], [ -170.859375, 65.658275 ], [ -170.859375, 65.366837 ], [ -172.265625, 65.366837 ], [ -172.265625, 64.168107 ], [ -173.671875, 64.168107 ], [ -173.671875, 64.472794 ], [ -174.375000, 64.472794 ], [ -174.375000, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 65.072130 ], [ -176.484375, 65.072130 ], [ -176.484375, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ] ] ], [ [ [ -179.296875, 71.524909 ], [ -179.296875, 71.300793 ], [ -177.890625, 71.300793 ], [ -177.890625, 70.844673 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.074056 ], [ -180.703125, 71.074056 ], [ -180.703125, 71.300793 ], [ -180.000000, 71.300793 ], [ -180.000000, 71.524909 ], [ -179.296875, 71.524909 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -182.109375, 69.657086 ], [ -182.109375, 69.411242 ], [ -181.406250, 69.411242 ], [ -181.406250, 69.162558 ], [ -180.000000, 69.162558 ], [ -180.000000, 68.911005 ], [ -179.296875, 68.911005 ], [ -179.296875, 68.656555 ], [ -178.593750, 68.656555 ], [ -178.593750, 68.399180 ], [ -177.890625, 68.399180 ], [ -177.890625, 68.138852 ], [ -177.187500, 68.138852 ], [ -177.187500, 67.875541 ], [ -176.484375, 67.875541 ], [ -176.484375, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.339861 ], [ -175.078125, 67.339861 ], [ -175.078125, 67.067433 ], [ -172.265625, 67.067433 ], [ -172.265625, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.156250, 66.231457 ], [ -170.156250, 65.946472 ], [ -170.859375, 65.946472 ], [ -170.859375, 65.658275 ], [ -172.968750, 65.658275 ], [ -172.968750, 64.472794 ], [ -175.078125, 64.472794 ], [ -175.078125, 64.774125 ], [ -176.484375, 64.774125 ], [ -176.484375, 65.366837 ], [ -177.890625, 65.366837 ], [ -177.890625, 65.658275 ], [ -179.296875, 65.658275 ], [ -179.296875, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.072130 ], [ -180.703125, 65.072130 ], [ -180.703125, 64.774125 ], [ -182.812500, 64.774125 ], [ -182.812500, 64.472794 ], [ -182.109375, 64.472794 ], [ -182.109375, 63.860036 ], [ -181.406250, 63.860036 ], [ -181.406250, 63.233627 ], [ -180.703125, 63.233627 ], [ -180.703125, 62.593341 ], [ -183.515625, 62.593341 ], [ -183.515625, 69.657086 ], [ -182.109375, 69.657086 ] ], [ [ -175.078125, 66.791909 ], [ -175.078125, 66.513260 ], [ -174.375000, 66.513260 ], [ -174.375000, 66.791909 ], [ -175.078125, 66.791909 ] ] ], [ [ [ -179.296875, 71.746432 ], [ -179.296875, 71.524909 ], [ -178.593750, 71.524909 ], [ -178.593750, 71.300793 ], [ -177.890625, 71.300793 ], [ -177.890625, 71.074056 ], [ -179.296875, 71.074056 ], [ -179.296875, 70.844673 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.300793 ], [ -180.000000, 71.300793 ], [ -180.000000, 71.746432 ], [ -179.296875, 71.746432 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.179343 ], [ 3.515625, 50.289339 ], [ 2.812500, 50.289339 ], [ 2.812500, 51.179343 ], [ 3.515625, 51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.618017 ], [ 3.515625, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 51.618017 ], [ 3.515625, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.597889 ], [ 3.515625, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -2.812500, 23.241346 ], [ -2.812500, 23.885838 ], [ -4.218750, 23.885838 ], [ -4.218750, 24.527135 ], [ -4.921875, 24.527135 ], [ -4.921875, 25.165173 ], [ -5.625000, 25.165173 ], [ -5.625000, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 26.431228 ], [ -7.734375, 26.431228 ], [ -7.734375, 27.059126 ], [ -8.437500, 27.059126 ], [ -8.437500, 28.921631 ], [ -7.031250, 28.921631 ], [ -7.031250, 29.535230 ], [ -4.921875, 29.535230 ], [ -4.921875, 30.751278 ], [ -3.515625, 30.751278 ], [ -3.515625, 31.353637 ], [ -2.812500, 31.353637 ], [ -2.812500, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -1.406250, 34.885931 ], [ -1.406250, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.031332 ], [ 1.406250, 36.031332 ], [ 1.406250, 36.597889 ], [ 3.515625, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 37.160317 ], [ 3.515625, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 1.406250, 19.973349 ], [ 1.406250, 20.632784 ], [ 0.703125, 20.632784 ], [ 0.703125, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -2.812500, 23.241346 ], [ -2.812500, 23.885838 ], [ -4.218750, 23.885838 ], [ -4.218750, 24.527135 ], [ -4.921875, 24.527135 ], [ -4.921875, 25.165173 ], [ -5.625000, 25.165173 ], [ -5.625000, 25.799891 ], [ -7.031250, 25.799891 ], [ -7.031250, 26.431228 ], [ -7.734375, 26.431228 ], [ -7.734375, 27.059126 ], [ -9.140625, 27.059126 ], [ -9.140625, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 29.535230 ], [ -7.734375, 29.535230 ], [ -7.734375, 30.145127 ], [ -4.921875, 30.145127 ], [ -4.921875, 30.751278 ], [ -4.218750, 30.751278 ], [ -4.218750, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -2.812500, 34.885931 ], [ -2.812500, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 36.031332 ], [ 0.000000, 36.031332 ], [ 0.000000, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 37.160317 ], [ 3.515625, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.284185 ], [ 3.515625, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 0.703125, 12.554564 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 14.604847 ], [ 0.703125, 14.604847 ], [ 0.703125, 15.284185 ], [ 3.515625, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.961329 ], [ 3.515625, 11.867351 ], [ 2.812500, 11.867351 ], [ 2.812500, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 15.961329 ], [ 3.515625, 15.961329 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 5.615986 ], [ 0.703125, 5.615986 ], [ 0.703125, 10.487812 ] ] ], [ [ [ 0.703125, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 0.000000, 6.315299 ], [ 0.000000, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.000000, 8.407168 ], [ 0.000000, 10.487812 ], [ -0.703125, 10.487812 ], [ -0.703125, 11.178402 ], [ 0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.867351 ], [ 3.515625, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 3.515625, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.554564 ], [ 2.812500, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 9.795678 ], [ 2.812500, 9.795678 ], [ 2.812500, 9.102097 ], [ 2.109375, 9.102097 ], [ 2.109375, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 2.812500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.102097 ], [ 3.515625, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.515625, 9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.795678 ], [ 3.515625, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 9.795678 ], [ 3.515625, 9.795678 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.658275 ], [ 135.703125, -66.231457 ], [ 136.406250, -66.231457 ], [ 136.406250, -67.067433 ], [ 138.515625, -67.067433 ], [ 138.515625, -66.791909 ], [ 145.546875, -66.791909 ], [ 145.546875, -67.067433 ], [ 146.250000, -67.067433 ], [ 146.250000, -67.875541 ], [ 146.953125, -67.875541 ], [ 146.953125, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.656555 ], [ 151.171875, -68.656555 ], [ 151.171875, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.411242 ], [ 158.203125, -69.411242 ], [ 158.203125, -69.657086 ], [ 158.906250, -69.657086 ], [ 158.906250, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.140364 ], [ 161.015625, -70.140364 ], [ 161.015625, -70.377854 ], [ 161.718750, -70.377854 ], [ 161.718750, -70.844673 ], [ 167.343750, -70.844673 ], [ 167.343750, -71.074056 ], [ 168.750000, -71.074056 ], [ 168.750000, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -72.607120 ], [ 170.156250, -72.607120 ], [ 170.156250, -73.022592 ], [ 169.453125, -73.022592 ], [ 169.453125, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -74.019543 ], [ 167.343750, -74.019543 ], [ 167.343750, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -74.959392 ], [ 165.234375, -74.959392 ], [ 165.234375, -75.320025 ], [ 164.531250, -75.320025 ], [ 164.531250, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -76.516819 ], [ 163.125000, -76.516819 ], [ 163.125000, -76.840816 ], [ 163.828125, -76.840816 ], [ 163.828125, -77.617709 ], [ 164.531250, -77.617709 ], [ 164.531250, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.349411 ], [ 166.640625, -78.349411 ], [ 166.640625, -78.630006 ], [ 167.343750, -78.630006 ], [ 167.343750, -78.767792 ], [ 166.640625, -78.767792 ], [ 166.640625, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -79.038437 ], [ 164.531250, -79.038437 ], [ 164.531250, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.432371 ], [ 161.015625, -79.432371 ], [ 161.015625, -80.415707 ], [ 160.312500, -80.415707 ], [ 160.312500, -80.760615 ], [ 159.609375, -80.760615 ], [ 159.609375, -81.093214 ], [ 160.312500, -81.093214 ], [ 160.312500, -81.308321 ], [ 161.015625, -81.308321 ], [ 161.015625, -81.518272 ], [ 161.718750, -81.518272 ], [ 161.718750, -81.923186 ], [ 162.421875, -81.923186 ], [ 162.421875, -82.118384 ], [ 163.125000, -82.118384 ], [ 163.125000, -82.308893 ], [ 163.828125, -82.308893 ], [ 163.828125, -82.494824 ], [ 164.531250, -82.494824 ], [ 164.531250, -82.676285 ], [ 165.234375, -82.676285 ], [ 165.234375, -82.765373 ], [ 165.937500, -82.765373 ], [ 165.937500, -82.940327 ], [ 166.640625, -82.940327 ], [ 166.640625, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.194896 ], [ 168.046875, -83.194896 ], [ 168.046875, -83.359511 ], [ 168.750000, -83.359511 ], [ 168.750000, -83.599031 ], [ 169.453125, -83.599031 ], [ 169.453125, -83.905058 ], [ 170.156250, -83.905058 ], [ 170.156250, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -84.052561 ], [ 172.265625, -84.052561 ], [ 172.265625, -84.267172 ], [ 172.968750, -84.267172 ], [ 172.968750, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.267172 ], [ 175.078125, -84.267172 ], [ 175.078125, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.593750, -84.474065 ], [ 178.593750, -84.541361 ], [ 179.296875, -84.541361 ], [ 179.296875, -84.673513 ], [ 180.000000, -84.673513 ], [ 180.000000, -84.474065 ], [ 180.703125, -84.474065 ], [ 180.703125, -84.196507 ], [ 181.406250, -84.196507 ], [ 181.406250, -84.336980 ], [ 182.109375, -84.336980 ], [ 182.109375, -84.474065 ], [ 182.812500, -84.474065 ], [ 182.812500, -84.336980 ], [ 183.515625, -84.336980 ], [ 183.515625, -85.345325 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.300793 ], [ -0.703125, -71.300793 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 2.109375, -71.300793 ], [ 2.109375, -71.074056 ], [ 4.218750, -71.074056 ], [ 4.218750, -70.844673 ], [ 4.921875, -70.844673 ], [ 4.921875, -70.612614 ], [ 6.328125, -70.612614 ], [ 6.328125, -70.377854 ], [ 7.031250, -70.377854 ], [ 7.031250, -70.140364 ], [ 10.546875, -70.140364 ], [ 10.546875, -70.844673 ], [ 11.953125, -70.844673 ], [ 11.953125, -70.377854 ], [ 12.656250, -70.377854 ], [ 12.656250, -70.140364 ], [ 14.765625, -70.140364 ], [ 14.765625, -70.377854 ], [ 16.171875, -70.377854 ], [ 16.171875, -70.140364 ], [ 16.875000, -70.140364 ], [ 16.875000, -69.900118 ], [ 20.390625, -69.900118 ], [ 20.390625, -70.140364 ], [ 21.796875, -70.140364 ], [ 21.796875, -70.612614 ], [ 24.609375, -70.612614 ], [ 24.609375, -70.377854 ], [ 28.828125, -70.377854 ], [ 28.828125, -70.140364 ], [ 30.234375, -70.140364 ], [ 30.234375, -69.900118 ], [ 30.937500, -69.900118 ], [ 30.937500, -69.657086 ], [ 33.046875, -69.657086 ], [ 33.046875, -68.656555 ], [ 35.156250, -68.656555 ], [ 35.156250, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.411242 ], [ 37.968750, -69.411242 ], [ 37.968750, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.411242 ], [ 40.078125, -69.411242 ], [ 40.078125, -69.162558 ], [ 40.781250, -69.162558 ], [ 40.781250, -68.911005 ], [ 42.187500, -68.911005 ], [ 42.187500, -68.656555 ], [ 42.890625, -68.656555 ], [ 42.890625, -68.399180 ], [ 44.296875, -68.399180 ], [ 44.296875, -68.138852 ], [ 45.703125, -68.138852 ], [ 45.703125, -67.875541 ], [ 46.406250, -67.875541 ], [ 46.406250, -67.609221 ], [ 48.515625, -67.609221 ], [ 48.515625, -67.339861 ], [ 49.218750, -67.339861 ], [ 49.218750, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.513260 ], [ 52.031250, -66.513260 ], [ 52.031250, -66.231457 ], [ 52.734375, -66.231457 ], [ 52.734375, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.231457 ], [ 56.953125, -66.231457 ], [ 56.953125, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -68.138852 ], [ 63.281250, -68.138852 ], [ 63.281250, -67.609221 ], [ 66.093750, -67.609221 ], [ 66.093750, -67.875541 ], [ 68.906250, -67.875541 ], [ 68.906250, -68.399180 ], [ 69.609375, -68.399180 ], [ 69.609375, -69.900118 ], [ 68.906250, -69.900118 ], [ 68.906250, -70.140364 ], [ 68.203125, -70.140364 ], [ 68.203125, -70.377854 ], [ 67.500000, -70.377854 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -71.300793 ], [ 68.203125, -71.300793 ], [ 68.203125, -71.965388 ], [ 68.906250, -71.965388 ], [ 68.906250, -72.181804 ], [ 71.015625, -72.181804 ], [ 71.015625, -71.965388 ], [ 71.718750, -71.965388 ], [ 71.718750, -71.300793 ], [ 72.421875, -71.300793 ], [ 72.421875, -70.844673 ], [ 73.125000, -70.844673 ], [ 73.125000, -70.140364 ], [ 73.828125, -70.140364 ], [ 73.828125, -69.900118 ], [ 74.531250, -69.900118 ], [ 74.531250, -69.657086 ], [ 77.343750, -69.657086 ], [ 77.343750, -69.411242 ], [ 78.046875, -69.411242 ], [ 78.046875, -68.911005 ], [ 78.750000, -68.911005 ], [ 78.750000, -68.656555 ], [ 79.453125, -68.656555 ], [ 79.453125, -68.399180 ], [ 80.156250, -68.399180 ], [ 80.156250, -68.138852 ], [ 80.859375, -68.138852 ], [ 80.859375, -67.875541 ], [ 81.562500, -67.875541 ], [ 81.562500, -67.609221 ], [ 82.265625, -67.609221 ], [ 82.265625, -67.339861 ], [ 85.781250, -67.339861 ], [ 85.781250, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 90.000000, -67.067433 ], [ 90.000000, -67.339861 ], [ 91.406250, -67.339861 ], [ 91.406250, -67.067433 ], [ 92.812500, -67.067433 ], [ 92.812500, -67.339861 ], [ 94.218750, -67.339861 ], [ 94.218750, -67.067433 ], [ 94.921875, -67.067433 ], [ 94.921875, -67.339861 ], [ 99.843750, -67.339861 ], [ 99.843750, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.946472 ], [ 102.656250, -65.946472 ], [ 102.656250, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -67.067433 ], [ 108.984375, -67.067433 ], [ 108.984375, -66.791909 ], [ 111.093750, -66.791909 ], [ 111.093750, -66.513260 ], [ 111.796875, -66.513260 ], [ 111.796875, -66.231457 ], [ 113.906250, -66.231457 ], [ 113.906250, -65.946472 ], [ 114.609375, -65.946472 ], [ 114.609375, -66.791909 ], [ 117.421875, -66.791909 ], [ 117.421875, -67.067433 ], [ 118.828125, -67.067433 ], [ 118.828125, -67.339861 ], [ 120.937500, -67.339861 ], [ 120.937500, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.791909 ], [ 122.343750, -66.791909 ], [ 122.343750, -66.513260 ], [ 124.453125, -66.513260 ], [ 124.453125, -66.791909 ], [ 125.859375, -66.791909 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.791909 ], [ 129.375000, -66.791909 ], [ 129.375000, -66.513260 ], [ 133.593750, -66.513260 ], [ 133.593750, -66.231457 ], [ 135.000000, -66.231457 ], [ 135.000000, -65.658275 ], [ 135.703125, -65.658275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.658275 ], [ 135.703125, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -67.067433 ], [ 145.546875, -67.067433 ], [ 145.546875, -67.609221 ], [ 146.250000, -67.609221 ], [ 146.250000, -67.875541 ], [ 147.656250, -67.875541 ], [ 147.656250, -68.138852 ], [ 148.359375, -68.138852 ], [ 148.359375, -68.399180 ], [ 149.765625, -68.399180 ], [ 149.765625, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.162558 ], [ 156.796875, -69.162558 ], [ 156.796875, -69.411242 ], [ 158.906250, -69.411242 ], [ 158.906250, -69.657086 ], [ 159.609375, -69.657086 ], [ 159.609375, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.377854 ], [ 161.015625, -70.377854 ], [ 161.015625, -70.612614 ], [ 166.640625, -70.612614 ], [ 166.640625, -70.844673 ], [ 168.046875, -70.844673 ], [ 168.046875, -71.074056 ], [ 169.453125, -71.074056 ], [ 169.453125, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -72.181804 ], [ 170.156250, -72.181804 ], [ 170.156250, -72.607120 ], [ 169.453125, -72.607120 ], [ 169.453125, -73.428424 ], [ 168.750000, -73.428424 ], [ 168.750000, -73.627789 ], [ 167.343750, -73.627789 ], [ 167.343750, -74.211983 ], [ 165.937500, -74.211983 ], [ 165.937500, -74.402163 ], [ 165.234375, -74.402163 ], [ 165.234375, -74.959392 ], [ 164.531250, -74.959392 ], [ 164.531250, -75.320025 ], [ 163.828125, -75.320025 ], [ 163.828125, -75.672197 ], [ 163.125000, -75.672197 ], [ 163.125000, -77.157163 ], [ 163.828125, -77.157163 ], [ 163.828125, -77.915669 ], [ 164.531250, -77.915669 ], [ 164.531250, -78.206563 ], [ 165.937500, -78.206563 ], [ 165.937500, -78.490552 ], [ 166.640625, -78.490552 ], [ 166.640625, -78.767792 ], [ 165.234375, -78.767792 ], [ 165.234375, -78.903929 ], [ 164.531250, -78.903929 ], [ 164.531250, -79.038437 ], [ 161.718750, -79.038437 ], [ 161.718750, -79.302640 ], [ 161.015625, -79.302640 ], [ 161.015625, -79.560546 ], [ 160.312500, -79.560546 ], [ 160.312500, -80.760615 ], [ 159.609375, -80.760615 ], [ 159.609375, -80.983688 ], [ 160.312500, -80.983688 ], [ 160.312500, -81.201420 ], [ 161.015625, -81.201420 ], [ 161.015625, -81.723188 ], [ 161.718750, -81.723188 ], [ 161.718750, -81.923186 ], [ 162.421875, -81.923186 ], [ 162.421875, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.586106 ], [ 164.531250, -82.586106 ], [ 164.531250, -82.765373 ], [ 165.234375, -82.765373 ], [ 165.234375, -82.940327 ], [ 165.937500, -82.940327 ], [ 165.937500, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.194896 ], [ 168.046875, -83.194896 ], [ 168.046875, -83.277705 ], [ 168.750000, -83.277705 ], [ 168.750000, -83.829945 ], [ 170.156250, -83.829945 ], [ 170.156250, -83.905058 ], [ 171.562500, -83.905058 ], [ 171.562500, -83.979259 ], [ 172.265625, -83.979259 ], [ 172.265625, -84.267172 ], [ 172.968750, -84.267172 ], [ 172.968750, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.267172 ], [ 175.078125, -84.267172 ], [ 175.078125, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.593750, -84.474065 ], [ 178.593750, -84.541361 ], [ 179.296875, -84.541361 ], [ 179.296875, -84.673513 ], [ 180.000000, -84.673513 ], [ 180.000000, -84.405941 ], [ 180.703125, -84.405941 ], [ 180.703125, -84.196507 ], [ 181.406250, -84.196507 ], [ 181.406250, -84.336980 ], [ 182.109375, -84.336980 ], [ 182.109375, -84.405941 ], [ 182.812500, -84.405941 ], [ 182.812500, -84.336980 ], [ 183.515625, -84.336980 ], [ 183.515625, -85.345325 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.074056 ], [ -0.703125, -71.074056 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 1.406250, -71.300793 ], [ 1.406250, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -70.844673 ], [ 4.921875, -70.844673 ], [ 4.921875, -70.612614 ], [ 5.625000, -70.612614 ], [ 5.625000, -70.377854 ], [ 7.031250, -70.377854 ], [ 7.031250, -69.900118 ], [ 8.437500, -69.900118 ], [ 8.437500, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.612614 ], [ 11.953125, -70.612614 ], [ 11.953125, -70.140364 ], [ 13.359375, -70.140364 ], [ 13.359375, -69.900118 ], [ 14.062500, -69.900118 ], [ 14.062500, -70.140364 ], [ 15.468750, -70.140364 ], [ 15.468750, -69.900118 ], [ 17.578125, -69.900118 ], [ 17.578125, -69.657086 ], [ 18.984375, -69.657086 ], [ 18.984375, -69.900118 ], [ 21.093750, -69.900118 ], [ 21.093750, -70.140364 ], [ 21.796875, -70.140364 ], [ 21.796875, -70.612614 ], [ 23.203125, -70.612614 ], [ 23.203125, -70.377854 ], [ 27.421875, -70.377854 ], [ 27.421875, -70.140364 ], [ 29.531250, -70.140364 ], [ 29.531250, -69.900118 ], [ 30.937500, -69.900118 ], [ 30.937500, -69.657086 ], [ 31.640625, -69.657086 ], [ 31.640625, -69.411242 ], [ 32.343750, -69.411242 ], [ 32.343750, -68.911005 ], [ 33.046875, -68.911005 ], [ 33.046875, -68.656555 ], [ 34.453125, -68.656555 ], [ 34.453125, -68.911005 ], [ 35.156250, -68.911005 ], [ 35.156250, -69.162558 ], [ 36.562500, -69.162558 ], [ 36.562500, -69.411242 ], [ 37.265625, -69.411242 ], [ 37.265625, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -68.911005 ], [ 40.781250, -68.911005 ], [ 40.781250, -68.656555 ], [ 41.484375, -68.656555 ], [ 41.484375, -68.399180 ], [ 43.593750, -68.399180 ], [ 43.593750, -68.138852 ], [ 44.296875, -68.138852 ], [ 44.296875, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.609221 ], [ 47.812500, -67.609221 ], [ 47.812500, -67.339861 ], [ 48.515625, -67.339861 ], [ 48.515625, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.513260 ], [ 51.328125, -66.513260 ], [ 51.328125, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -65.946472 ], [ 53.437500, -65.946472 ], [ 53.437500, -65.658275 ], [ 54.843750, -65.658275 ], [ 54.843750, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.231457 ], [ 56.953125, -66.231457 ], [ 56.953125, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.875541 ], [ 62.578125, -67.875541 ], [ 62.578125, -67.609221 ], [ 66.796875, -67.609221 ], [ 66.796875, -67.875541 ], [ 68.203125, -67.875541 ], [ 68.203125, -68.138852 ], [ 68.906250, -68.138852 ], [ 68.906250, -68.656555 ], [ 69.609375, -68.656555 ], [ 69.609375, -69.411242 ], [ 68.906250, -69.411242 ], [ 68.906250, -69.900118 ], [ 68.203125, -69.900118 ], [ 68.203125, -70.140364 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -71.074056 ], [ 68.203125, -71.074056 ], [ 68.203125, -71.524909 ], [ 67.500000, -71.524909 ], [ 67.500000, -71.965388 ], [ 68.203125, -71.965388 ], [ 68.203125, -72.181804 ], [ 71.015625, -72.181804 ], [ 71.015625, -71.524909 ], [ 71.718750, -71.524909 ], [ 71.718750, -71.074056 ], [ 72.421875, -71.074056 ], [ 72.421875, -70.377854 ], [ 73.125000, -70.377854 ], [ 73.125000, -69.900118 ], [ 73.828125, -69.900118 ], [ 73.828125, -69.657086 ], [ 75.937500, -69.657086 ], [ 75.937500, -69.411242 ], [ 77.343750, -69.411242 ], [ 77.343750, -69.162558 ], [ 78.046875, -69.162558 ], [ 78.046875, -68.399180 ], [ 78.750000, -68.399180 ], [ 78.750000, -68.138852 ], [ 79.453125, -68.138852 ], [ 79.453125, -67.875541 ], [ 80.859375, -67.875541 ], [ 80.859375, -67.339861 ], [ 82.265625, -67.339861 ], [ 82.265625, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 94.921875, -67.067433 ], [ 94.921875, -67.339861 ], [ 96.328125, -67.339861 ], [ 96.328125, -67.067433 ], [ 99.843750, -67.067433 ], [ 99.843750, -66.791909 ], [ 100.546875, -66.791909 ], [ 100.546875, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -66.791909 ], [ 109.687500, -66.791909 ], [ 109.687500, -66.513260 ], [ 110.390625, -66.513260 ], [ 110.390625, -66.231457 ], [ 111.093750, -66.231457 ], [ 111.093750, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.513260 ], [ 116.015625, -66.513260 ], [ 116.015625, -66.791909 ], [ 116.718750, -66.791909 ], [ 116.718750, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.513260 ], [ 130.781250, -66.513260 ], [ 130.781250, -66.231457 ], [ 134.296875, -66.231457 ], [ 134.296875, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -65.658275 ], [ 135.703125, -65.658275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 1.406109 ], [ 9.843750, 0.703107 ], [ 9.140625, 0.703107 ], [ 9.140625, 1.406109 ], [ 9.843750, 1.406109 ] ] ], [ [ [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.108899 ], [ 11.250000, 2.108899 ], [ 11.250000, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.811371 ], [ 11.250000, 1.406109 ], [ 9.140625, 1.406109 ], [ 9.140625, 2.811371 ], [ 11.250000, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 1.406109 ], [ 15.468750, 1.406109 ], [ 15.468750, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 3.513421 ], [ 15.468750, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 3.513421 ], [ 15.468750, 2.108899 ], [ 14.062500, 2.108899 ], [ 14.062500, 2.811371 ], [ 9.140625, 2.811371 ], [ 9.140625, 3.513421 ], [ 15.468750, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 3.513421 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 16.875000, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 3.513421 ], [ 16.171875, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 16.171875, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 34.453125, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.453125, 1.406109 ], [ 34.453125, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -0.703107 ], [ 30.937500, -0.703107 ], [ 30.937500, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 34.453125, 0.703107 ], [ 33.750000, 0.703107 ], [ 33.750000, -0.703107 ], [ 30.234375, -0.703107 ], [ 30.234375, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 2.811371 ], [ 30.234375, 2.811371 ], [ 30.234375, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -4.214943 ], [ 39.375000, -4.214943 ], [ 39.375000, -4.915833 ], [ 38.671875, -4.915833 ], [ 38.671875, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 34.453125, -2.108899 ], [ 34.453125, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 34.453125, 0.000000 ], [ 34.453125, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.453125, 2.108899 ], [ 34.453125, 3.513421 ], [ 41.484375, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -2.108899 ], [ 40.078125, -2.108899 ], [ 40.078125, -3.513421 ], [ 39.375000, -3.513421 ], [ 39.375000, -4.214943 ], [ 37.265625, -4.214943 ], [ 37.265625, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 35.156250, -2.108899 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 3.513421 ], [ 41.484375, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 3.513421 ], [ 47.109375, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 47.109375, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 3.513421 ], [ 46.406250, 2.811371 ], [ 45.703125, 2.811371 ], [ 45.703125, 2.108899 ], [ 45.000000, 2.108899 ], [ 45.000000, 1.406109 ], [ 43.593750, 1.406109 ], [ 43.593750, 0.703107 ], [ 42.890625, 0.703107 ], [ 42.890625, 0.000000 ], [ 42.187500, 0.000000 ], [ 42.187500, -0.703107 ], [ 41.484375, -0.703107 ], [ 41.484375, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 46.406250, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 113.203125, 3.513421 ], [ 115.312500, 3.513421 ] ] ], [ [ [ 103.359375, 3.513421 ], [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 103.359375, 3.513421 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.359375, 3.513421 ], [ 103.359375, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.406109 ], [ 101.953125, 1.406109 ], [ 101.953125, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 103.359375, 3.513421 ] ] ], [ [ [ 114.609375, 3.513421 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 2.108899 ], [ 111.796875, 2.108899 ], [ 111.796875, 1.406109 ], [ 108.984375, 1.406109 ], [ 108.984375, 2.108899 ], [ 111.093750, 2.108899 ], [ 111.093750, 2.811371 ], [ 111.796875, 2.811371 ], [ 111.796875, 3.513421 ], [ 114.609375, 3.513421 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.308688 ], [ 178.593750, -17.978733 ], [ 177.890625, -17.978733 ], [ 177.890625, -17.308688 ], [ 178.593750, -17.308688 ] ] ], [ [ [ 179.296875, -16.636192 ], [ 179.296875, -17.308688 ], [ 178.593750, -17.308688 ], [ 178.593750, -16.636192 ], [ 179.296875, -16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.308688 ], [ 178.593750, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.308688 ], [ 178.593750, -17.308688 ] ] ], [ [ [ 180.000000, -15.961329 ], [ 180.000000, -16.636192 ], [ 178.593750, -16.636192 ], [ 178.593750, -15.961329 ], [ 180.000000, -15.961329 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.108899 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -1.406109 ], [ 14.765625, -1.406109 ], [ 14.765625, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.811371 ], [ 13.359375, -2.811371 ], [ 13.359375, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -3.513421 ], [ 11.953125, -3.513421 ], [ 11.953125, -4.214943 ], [ 10.546875, -4.214943 ], [ 10.546875, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.811371 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 0.703107 ], [ 13.359375, 0.703107 ], [ 13.359375, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, -2.108899 ], [ 11.250000, -2.108899 ], [ 11.250000, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, -1.406109 ], [ 8.437500, -1.406109 ], [ 8.437500, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.811371 ], [ 12.656250, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 1.406109 ], [ 17.578125, 1.406109 ], [ 17.578125, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -3.513421 ], [ 15.468750, -3.513421 ], [ 15.468750, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.214943 ], [ 13.359375, -4.214943 ], [ 13.359375, -4.915833 ], [ 11.250000, -4.915833 ], [ 11.250000, -4.214943 ], [ 11.953125, -4.214943 ], [ 11.953125, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.811371 ], [ 12.656250, -2.811371 ], [ 12.656250, -2.108899 ], [ 13.359375, -2.108899 ], [ 13.359375, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, -2.108899 ], [ 14.765625, -2.108899 ], [ 14.765625, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 1.406109 ], [ 16.171875, 1.406109 ], [ 16.171875, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 2.811371 ], [ 17.578125, 2.811371 ], [ 17.578125, -0.703107 ], [ 16.171875, -0.703107 ], [ 16.171875, -2.108899 ], [ 15.468750, -2.108899 ], [ 15.468750, -4.214943 ], [ 14.765625, -4.214943 ], [ 14.765625, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.214943 ], [ 11.953125, -4.214943 ], [ 11.953125, -4.915833 ], [ 11.250000, -4.915833 ], [ 11.250000, -4.214943 ], [ 10.546875, -4.214943 ], [ 10.546875, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, 0.000000 ], [ 13.359375, 0.000000 ], [ 13.359375, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.811371 ], [ 14.062500, 2.811371 ], [ 14.062500, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.828125, -12.554564 ], [ 27.421875, -12.554564 ], [ 27.421875, -11.867351 ], [ 25.312500, -11.867351 ], [ 25.312500, -11.178402 ], [ 22.500000, -11.178402 ], [ 22.500000, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -7.710992 ], [ 18.281250, -7.710992 ], [ 18.281250, -8.407168 ], [ 16.875000, -8.407168 ], [ 16.875000, -6.315299 ], [ 16.171875, -6.315299 ], [ 16.171875, -5.615986 ], [ 13.359375, -5.615986 ], [ 13.359375, -6.315299 ], [ 11.953125, -6.315299 ], [ 11.953125, -5.615986 ], [ 12.656250, -5.615986 ], [ 12.656250, -4.915833 ], [ 13.359375, -4.915833 ], [ 13.359375, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -4.915833 ], [ 15.468750, -4.915833 ], [ 15.468750, -3.513421 ], [ 16.171875, -3.513421 ], [ 16.171875, -1.406109 ], [ 17.578125, -1.406109 ], [ 17.578125, 1.406109 ], [ 18.281250, 1.406109 ], [ 18.281250, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.531250, 0.703107 ], [ 29.531250, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.513421 ], [ 29.531250, -3.513421 ], [ 29.531250, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.710992 ], [ 30.937500, -7.710992 ], [ 30.937500, -8.407168 ], [ 28.828125, -8.407168 ], [ 28.828125, -9.102097 ], [ 28.125000, -9.102097 ], [ 28.125000, -9.795678 ], [ 28.828125, -9.795678 ], [ 28.828125, -11.178402 ], [ 28.125000, -11.178402 ], [ 28.125000, -11.867351 ], [ 28.828125, -11.867351 ], [ 28.828125, -12.554564 ] ] ], [ [ [ 28.828125, -12.554564 ], [ 29.531250, -12.554564 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, -11.867351 ], [ 25.312500, -11.867351 ], [ 25.312500, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -10.487812 ], [ 21.796875, -10.487812 ], [ 21.796875, -7.710992 ], [ 21.093750, -7.710992 ], [ 21.093750, -7.013668 ], [ 20.390625, -7.013668 ], [ 20.390625, -6.315299 ], [ 19.687500, -6.315299 ], [ 19.687500, -7.013668 ], [ 18.984375, -7.013668 ], [ 18.984375, -7.710992 ], [ 16.875000, -7.710992 ], [ 16.875000, -7.013668 ], [ 16.171875, -7.013668 ], [ 16.171875, -5.615986 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.214943 ], [ 15.468750, -4.214943 ], [ 15.468750, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -0.703107 ], [ 17.578125, -0.703107 ], [ 17.578125, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 3.513421 ], [ 30.234375, 3.513421 ], [ 30.234375, 2.811371 ], [ 30.937500, 2.811371 ], [ 30.937500, 2.108899 ], [ 30.234375, 2.108899 ], [ 30.234375, 1.406109 ], [ 29.531250, 1.406109 ], [ 29.531250, -1.406109 ], [ 28.828125, -1.406109 ], [ 28.828125, -6.315299 ], [ 29.531250, -6.315299 ], [ 29.531250, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -8.407168 ], [ 28.125000, -8.407168 ], [ 28.125000, -11.867351 ] ] ], [ [ [ 28.125000, -11.867351 ], [ 29.531250, -11.867351 ], [ 29.531250, -13.239945 ], [ 28.125000, -13.239945 ], [ 28.125000, -11.867351 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, -5.615986 ], [ 16.171875, -6.315299 ], [ 16.875000, -6.315299 ], [ 16.875000, -8.407168 ], [ 18.281250, -8.407168 ], [ 18.281250, -7.710992 ], [ 19.687500, -7.710992 ], [ 19.687500, -7.013668 ], [ 21.796875, -7.013668 ], [ 21.796875, -9.795678 ], [ 22.500000, -9.795678 ], [ 22.500000, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -13.239945 ], [ 21.796875, -13.239945 ], [ 21.796875, -16.636192 ], [ 22.500000, -16.636192 ], [ 22.500000, -17.978733 ], [ 18.281250, -17.978733 ], [ 18.281250, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.636192 ], [ 12.656250, -16.636192 ], [ 12.656250, -17.308688 ], [ 11.953125, -17.308688 ], [ 11.953125, -13.923404 ], [ 12.656250, -13.923404 ], [ 12.656250, -13.239945 ], [ 13.359375, -13.239945 ], [ 13.359375, -11.867351 ], [ 14.062500, -11.867351 ], [ 14.062500, -11.178402 ], [ 13.359375, -11.178402 ], [ 13.359375, -9.795678 ], [ 12.656250, -9.795678 ], [ 12.656250, -9.102097 ], [ 13.359375, -9.102097 ], [ 13.359375, -8.407168 ], [ 12.656250, -8.407168 ], [ 12.656250, -7.013668 ], [ 11.953125, -7.013668 ], [ 11.953125, -6.315299 ], [ 13.359375, -6.315299 ], [ 13.359375, -5.615986 ], [ 16.171875, -5.615986 ] ] ], [ [ [ 12.656250, -4.915833 ], [ 12.656250, -5.615986 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 12.656250, -4.915833 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.953125, -5.615986 ], [ 16.171875, -5.615986 ], [ 16.171875, -7.013668 ], [ 16.875000, -7.013668 ], [ 16.875000, -7.710992 ], [ 18.984375, -7.710992 ], [ 18.984375, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -6.315299 ], [ 20.390625, -6.315299 ], [ 20.390625, -7.013668 ], [ 21.093750, -7.013668 ], [ 21.093750, -7.710992 ], [ 21.796875, -7.710992 ], [ 21.796875, -10.487812 ], [ 23.906250, -10.487812 ], [ 23.906250, -12.554564 ], [ 21.796875, -12.554564 ], [ 21.796875, -16.636192 ], [ 22.500000, -16.636192 ], [ 22.500000, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.636192 ], [ 11.250000, -16.636192 ], [ 11.250000, -15.284185 ], [ 11.953125, -15.284185 ], [ 11.953125, -13.239945 ], [ 12.656250, -13.239945 ], [ 12.656250, -11.867351 ], [ 13.359375, -11.867351 ], [ 13.359375, -9.795678 ], [ 12.656250, -9.795678 ], [ 12.656250, -6.315299 ], [ 11.953125, -6.315299 ], [ 11.953125, -5.615986 ] ] ], [ [ [ 12.656250, -4.915833 ], [ 11.953125, -4.915833 ], [ 11.953125, -4.214943 ], [ 12.656250, -4.214943 ], [ 12.656250, -4.915833 ] ] ], [ [ [ 11.953125, -5.615986 ], [ 11.250000, -5.615986 ], [ 11.250000, -4.915833 ], [ 11.953125, -4.915833 ], [ 11.953125, -5.615986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.359375, -16.636192 ], [ 13.359375, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.978733 ], [ 21.093750, -17.978733 ], [ 21.093750, -21.943046 ], [ 19.687500, -21.943046 ], [ 19.687500, -28.921631 ], [ 16.875000, -28.921631 ], [ 16.875000, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -27.059126 ], [ 14.765625, -27.059126 ], [ 14.765625, -24.527135 ], [ 14.062500, -24.527135 ], [ 14.062500, -21.289374 ], [ 13.359375, -21.289374 ], [ 13.359375, -20.632784 ], [ 12.656250, -20.632784 ], [ 12.656250, -18.646245 ], [ 11.953125, -18.646245 ], [ 11.953125, -17.308688 ], [ 12.656250, -17.308688 ], [ 12.656250, -16.636192 ], [ 13.359375, -16.636192 ] ] ], [ [ [ 25.312500, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -17.308688 ], [ 25.312500, -17.308688 ], [ 25.312500, -17.978733 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, -16.636192 ], [ 13.359375, -17.308688 ], [ 23.906250, -17.308688 ], [ 23.906250, -17.978733 ], [ 20.390625, -17.978733 ], [ 20.390625, -21.289374 ], [ 19.687500, -21.289374 ], [ 19.687500, -28.921631 ], [ 17.578125, -28.921631 ], [ 17.578125, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -27.683528 ], [ 14.765625, -27.683528 ], [ 14.765625, -25.799891 ], [ 14.062500, -25.799891 ], [ 14.062500, -21.943046 ], [ 13.359375, -21.943046 ], [ 13.359375, -21.289374 ], [ 12.656250, -21.289374 ], [ 12.656250, -19.311143 ], [ 11.953125, -19.311143 ], [ 11.953125, -18.646245 ], [ 11.250000, -18.646245 ], [ 11.250000, -16.636192 ], [ 13.359375, -16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ], [ 30.234375, -2.108899 ], [ 30.234375, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -1.406109 ], [ 30.234375, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -1.406109 ], [ 30.234375, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.811371 ], [ 30.937500, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, -3.513421 ], [ 28.828125, -3.513421 ], [ 28.828125, -2.811371 ], [ 30.937500, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -2.108899 ], [ 30.234375, -3.513421 ], [ 29.531250, -3.513421 ], [ 29.531250, -4.214943 ], [ 28.828125, -4.214943 ], [ 28.828125, -2.811371 ], [ 29.531250, -2.811371 ], [ 29.531250, -2.108899 ], [ 30.234375, -2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -12.554564 ], [ 28.828125, -11.867351 ], [ 28.125000, -11.867351 ], [ 28.125000, -11.178402 ], [ 28.828125, -11.178402 ], [ 28.828125, -9.795678 ], [ 28.125000, -9.795678 ], [ 28.125000, -9.102097 ], [ 28.828125, -9.102097 ], [ 28.828125, -8.407168 ], [ 30.937500, -8.407168 ], [ 30.937500, -9.102097 ], [ 33.046875, -9.102097 ], [ 33.046875, -13.239945 ], [ 32.343750, -13.239945 ], [ 32.343750, -14.604847 ], [ 30.234375, -14.604847 ], [ 30.234375, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.636192 ], [ 21.796875, -16.636192 ], [ 21.796875, -13.239945 ], [ 23.906250, -13.239945 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.554564 ], [ 28.828125, -12.554564 ] ], [ [ 28.828125, -12.554564 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.554564 ], [ 28.828125, -12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -11.867351 ], [ 28.125000, -8.407168 ], [ 31.640625, -8.407168 ], [ 31.640625, -9.102097 ], [ 33.046875, -9.102097 ], [ 33.046875, -12.554564 ], [ 32.343750, -12.554564 ], [ 32.343750, -13.923404 ], [ 31.640625, -13.923404 ], [ 31.640625, -14.604847 ], [ 29.531250, -14.604847 ], [ 29.531250, -15.284185 ], [ 28.828125, -15.284185 ], [ 28.828125, -15.961329 ], [ 28.125000, -15.961329 ], [ 28.125000, -16.636192 ], [ 27.421875, -16.636192 ], [ 27.421875, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.636192 ], [ 21.796875, -16.636192 ], [ 21.796875, -12.554564 ], [ 23.906250, -12.554564 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.867351 ], [ 28.125000, -11.867351 ] ], [ [ 28.125000, -11.867351 ], [ 28.125000, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -11.867351 ], [ 28.125000, -11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -15.961329 ], [ 31.640625, -16.636192 ], [ 33.046875, -16.636192 ], [ 33.046875, -18.646245 ], [ 32.343750, -18.646245 ], [ 32.343750, -19.973349 ], [ 33.046875, -19.973349 ], [ 33.046875, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -21.943046 ], [ 30.937500, -21.943046 ], [ 30.937500, -22.593726 ], [ 29.531250, -22.593726 ], [ 29.531250, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -21.289374 ], [ 27.421875, -21.289374 ], [ 27.421875, -20.632784 ], [ 26.718750, -20.632784 ], [ 26.718750, -19.973349 ], [ 26.015625, -19.973349 ], [ 26.015625, -18.646245 ], [ 25.312500, -18.646245 ], [ 25.312500, -17.978733 ], [ 27.421875, -17.978733 ], [ 27.421875, -17.308688 ], [ 28.125000, -17.308688 ], [ 28.125000, -16.636192 ], [ 28.828125, -16.636192 ], [ 28.828125, -15.961329 ], [ 31.640625, -15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -15.284185 ], [ 30.937500, -15.961329 ], [ 31.640625, -15.961329 ], [ 31.640625, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -20.632784 ], [ 31.640625, -20.632784 ], [ 31.640625, -21.289374 ], [ 30.937500, -21.289374 ], [ 30.937500, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -21.289374 ], [ 27.421875, -21.289374 ], [ 27.421875, -19.973349 ], [ 26.718750, -19.973349 ], [ 26.718750, -19.311143 ], [ 26.015625, -19.311143 ], [ 26.015625, -18.646245 ], [ 25.312500, -18.646245 ], [ 25.312500, -17.978733 ], [ 24.609375, -17.978733 ], [ 24.609375, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -15.284185 ], [ 30.937500, -15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -4.214943 ], [ 38.671875, -4.214943 ], [ 38.671875, -4.915833 ], [ 39.375000, -4.915833 ], [ 39.375000, -5.615986 ], [ 38.671875, -5.615986 ], [ 38.671875, -7.013668 ], [ 39.375000, -7.013668 ], [ 39.375000, -9.795678 ], [ 40.078125, -9.795678 ], [ 40.078125, -11.178402 ], [ 37.968750, -11.178402 ], [ 37.968750, -11.867351 ], [ 35.156250, -11.867351 ], [ 35.156250, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.487812 ], [ 33.750000, -10.487812 ], [ 33.750000, -9.102097 ], [ 30.937500, -9.102097 ], [ 30.937500, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -7.013668 ], [ 29.531250, -7.013668 ], [ 29.531250, -4.214943 ], [ 30.234375, -4.214943 ], [ 30.234375, -3.513421 ], [ 30.937500, -3.513421 ], [ 30.937500, -2.811371 ], [ 30.234375, -2.811371 ], [ 30.234375, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 35.156250, -1.406109 ], [ 35.156250, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ], [ 37.265625, -2.811371 ], [ 37.265625, -4.214943 ], [ 38.671875, -4.214943 ], [ 38.671875, -6.315299 ], [ 39.375000, -6.315299 ], [ 39.375000, -7.013668 ], [ 38.671875, -7.013668 ], [ 38.671875, -9.102097 ], [ 39.375000, -9.102097 ], [ 39.375000, -9.795678 ], [ 40.078125, -9.795678 ], [ 40.078125, -10.487812 ], [ 39.375000, -10.487812 ], [ 39.375000, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.487812 ], [ 33.750000, -10.487812 ], [ 33.750000, -9.102097 ], [ 31.640625, -9.102097 ], [ 31.640625, -8.407168 ], [ 30.234375, -8.407168 ], [ 30.234375, -7.710992 ], [ 29.531250, -7.710992 ], [ 29.531250, -6.315299 ], [ 28.828125, -6.315299 ], [ 28.828125, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -9.102097 ], [ 33.750000, -10.487812 ], [ 34.453125, -10.487812 ], [ 34.453125, -13.239945 ], [ 35.156250, -13.239945 ], [ 35.156250, -14.604847 ], [ 35.859375, -14.604847 ], [ 35.859375, -15.961329 ], [ 35.156250, -15.961329 ], [ 35.156250, -16.636192 ], [ 34.453125, -16.636192 ], [ 34.453125, -14.604847 ], [ 33.046875, -14.604847 ], [ 33.046875, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -13.239945 ], [ 33.046875, -13.239945 ], [ 33.046875, -9.102097 ], [ 33.750000, -9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -9.102097 ], [ 33.750000, -10.487812 ], [ 34.453125, -10.487812 ], [ 34.453125, -11.867351 ], [ 33.750000, -11.867351 ], [ 33.750000, -12.554564 ], [ 34.453125, -12.554564 ], [ 34.453125, -13.239945 ], [ 35.156250, -13.239945 ], [ 35.156250, -16.636192 ], [ 33.750000, -16.636192 ], [ 33.750000, -15.284185 ], [ 34.453125, -15.284185 ], [ 34.453125, -14.604847 ], [ 33.750000, -14.604847 ], [ 33.750000, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -12.554564 ], [ 33.046875, -12.554564 ], [ 33.046875, -9.102097 ], [ 33.750000, -9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, -10.487812 ], [ 40.781250, -15.961329 ], [ 40.078125, -15.961329 ], [ 40.078125, -16.636192 ], [ 39.375000, -16.636192 ], [ 39.375000, -17.308688 ], [ 37.265625, -17.308688 ], [ 37.265625, -17.978733 ], [ 36.562500, -17.978733 ], [ 36.562500, -18.646245 ], [ 35.859375, -18.646245 ], [ 35.859375, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -19.973349 ], [ 34.453125, -19.973349 ], [ 34.453125, -21.289374 ], [ 35.156250, -21.289374 ], [ 35.156250, -21.943046 ], [ 35.859375, -21.943046 ], [ 35.859375, -23.241346 ], [ 35.156250, -23.241346 ], [ 35.156250, -24.527135 ], [ 34.453125, -24.527135 ], [ 34.453125, -25.165173 ], [ 33.046875, -25.165173 ], [ 33.046875, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -26.431228 ], [ 31.640625, -26.431228 ], [ 31.640625, -23.241346 ], [ 30.937500, -23.241346 ], [ 30.937500, -21.943046 ], [ 32.343750, -21.943046 ], [ 32.343750, -20.632784 ], [ 33.046875, -20.632784 ], [ 33.046875, -19.973349 ], [ 32.343750, -19.973349 ], [ 32.343750, -18.646245 ], [ 33.046875, -18.646245 ], [ 33.046875, -16.636192 ], [ 31.640625, -16.636192 ], [ 31.640625, -15.961329 ], [ 30.234375, -15.961329 ], [ 30.234375, -14.604847 ], [ 32.343750, -14.604847 ], [ 32.343750, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -14.604847 ], [ 35.156250, -14.604847 ], [ 35.156250, -13.239945 ], [ 34.453125, -13.239945 ], [ 34.453125, -11.178402 ], [ 35.156250, -11.178402 ], [ 35.156250, -11.867351 ], [ 37.968750, -11.867351 ], [ 37.968750, -11.178402 ], [ 40.078125, -11.178402 ], [ 40.078125, -10.487812 ], [ 40.781250, -10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, -10.487812 ], [ 40.078125, -16.636192 ], [ 37.968750, -16.636192 ], [ 37.968750, -17.308688 ], [ 37.265625, -17.308688 ], [ 37.265625, -17.978733 ], [ 36.562500, -17.978733 ], [ 36.562500, -18.646245 ], [ 35.859375, -18.646245 ], [ 35.859375, -19.311143 ], [ 34.453125, -19.311143 ], [ 34.453125, -20.632784 ], [ 35.156250, -20.632784 ], [ 35.156250, -23.885838 ], [ 34.453125, -23.885838 ], [ 34.453125, -24.527135 ], [ 33.750000, -24.527135 ], [ 33.750000, -25.165173 ], [ 32.343750, -25.165173 ], [ 32.343750, -26.431228 ], [ 31.640625, -26.431228 ], [ 31.640625, -22.593726 ], [ 30.937500, -22.593726 ], [ 30.937500, -21.289374 ], [ 31.640625, -21.289374 ], [ 31.640625, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -16.636192 ], [ 31.640625, -16.636192 ], [ 31.640625, -15.961329 ], [ 30.937500, -15.961329 ], [ 30.937500, -15.284185 ], [ 29.531250, -15.284185 ], [ 29.531250, -14.604847 ], [ 31.640625, -14.604847 ], [ 31.640625, -13.923404 ], [ 33.750000, -13.923404 ], [ 33.750000, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -15.284185 ], [ 33.750000, -15.284185 ], [ 33.750000, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -13.239945 ], [ 34.453125, -13.239945 ], [ 34.453125, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -11.867351 ], [ 34.453125, -11.867351 ], [ 34.453125, -11.178402 ], [ 39.375000, -11.178402 ], [ 39.375000, -10.487812 ], [ 40.078125, -10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.978733 ], [ 25.312500, -18.646245 ], [ 26.015625, -18.646245 ], [ 26.015625, -19.973349 ], [ 26.718750, -19.973349 ], [ 26.718750, -20.632784 ], [ 27.421875, -20.632784 ], [ 27.421875, -21.289374 ], [ 28.125000, -21.289374 ], [ 28.125000, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -22.593726 ], [ 28.125000, -22.593726 ], [ 28.125000, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -24.527135 ], [ 26.015625, -24.527135 ], [ 26.015625, -25.799891 ], [ 23.906250, -25.799891 ], [ 23.906250, -25.165173 ], [ 23.203125, -25.165173 ], [ 23.203125, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -26.431228 ], [ 21.796875, -26.431228 ], [ 21.796875, -27.059126 ], [ 20.390625, -27.059126 ], [ 20.390625, -26.431228 ], [ 21.093750, -26.431228 ], [ 21.093750, -25.799891 ], [ 20.390625, -25.799891 ], [ 20.390625, -25.165173 ], [ 19.687500, -25.165173 ], [ 19.687500, -21.943046 ], [ 21.093750, -21.943046 ], [ 21.093750, -17.978733 ], [ 25.312500, -17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -17.308688 ], [ 24.609375, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -18.646245 ], [ 26.015625, -18.646245 ], [ 26.015625, -19.311143 ], [ 26.718750, -19.311143 ], [ 26.718750, -19.973349 ], [ 27.421875, -19.973349 ], [ 27.421875, -21.289374 ], [ 28.125000, -21.289374 ], [ 28.125000, -21.943046 ], [ 28.828125, -21.943046 ], [ 28.828125, -22.593726 ], [ 27.421875, -22.593726 ], [ 27.421875, -23.241346 ], [ 26.718750, -23.241346 ], [ 26.718750, -24.527135 ], [ 25.312500, -24.527135 ], [ 25.312500, -25.165173 ], [ 22.500000, -25.165173 ], [ 22.500000, -25.799891 ], [ 21.796875, -25.799891 ], [ 21.796875, -26.431228 ], [ 20.390625, -26.431228 ], [ 20.390625, -25.165173 ], [ 19.687500, -25.165173 ], [ 19.687500, -21.289374 ], [ 20.390625, -21.289374 ], [ 20.390625, -17.978733 ], [ 23.906250, -17.978733 ], [ 23.906250, -17.308688 ], [ 24.609375, -17.308688 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 30.937500, -22.593726 ], [ 30.937500, -23.241346 ], [ 31.640625, -23.241346 ], [ 31.640625, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -29.535230 ], [ 31.640625, -29.535230 ], [ 31.640625, -30.145127 ], [ 30.937500, -30.145127 ], [ 30.937500, -30.751278 ], [ 30.234375, -30.751278 ], [ 30.234375, -31.952162 ], [ 28.828125, -31.952162 ], [ 28.828125, -32.546813 ], [ 28.125000, -32.546813 ], [ 28.125000, -33.137551 ], [ 27.421875, -33.137551 ], [ 27.421875, -33.724340 ], [ 22.500000, -33.724340 ], [ 22.500000, -34.307144 ], [ 20.390625, -34.307144 ], [ 20.390625, -34.885931 ], [ 18.984375, -34.885931 ], [ 18.984375, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -33.137551 ], [ 17.578125, -33.137551 ], [ 17.578125, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.353637 ], [ 17.578125, -31.353637 ], [ 17.578125, -30.751278 ], [ 16.875000, -30.751278 ], [ 16.875000, -29.535230 ], [ 16.171875, -29.535230 ], [ 16.171875, -28.304381 ], [ 16.875000, -28.304381 ], [ 16.875000, -28.921631 ], [ 19.687500, -28.921631 ], [ 19.687500, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -25.799891 ], [ 21.093750, -25.799891 ], [ 21.093750, -26.431228 ], [ 20.390625, -26.431228 ], [ 20.390625, -27.059126 ], [ 21.796875, -27.059126 ], [ 21.796875, -26.431228 ], [ 22.500000, -26.431228 ], [ 22.500000, -25.799891 ], [ 23.203125, -25.799891 ], [ 23.203125, -25.165173 ], [ 23.906250, -25.165173 ], [ 23.906250, -25.799891 ], [ 26.015625, -25.799891 ], [ 26.015625, -24.527135 ], [ 27.421875, -24.527135 ], [ 27.421875, -23.241346 ], [ 28.125000, -23.241346 ], [ 28.125000, -22.593726 ], [ 30.937500, -22.593726 ] ], [ [ 28.125000, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -30.145127 ], [ 26.718750, -30.145127 ], [ 26.718750, -30.751278 ], [ 28.125000, -30.751278 ], [ 28.125000, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -29.535230 ] ] ], [ [ [ 33.046875, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -26.431228 ], [ 33.046875, -26.431228 ], [ 33.046875, -27.059126 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -21.943046 ], [ 30.937500, -22.593726 ], [ 31.640625, -22.593726 ], [ 31.640625, -25.799891 ], [ 30.234375, -25.799891 ], [ 30.234375, -27.059126 ], [ 31.640625, -27.059126 ], [ 31.640625, -26.431228 ], [ 32.343750, -26.431228 ], [ 32.343750, -28.304381 ], [ 31.640625, -28.304381 ], [ 31.640625, -28.921631 ], [ 30.937500, -28.921631 ], [ 30.937500, -29.535230 ], [ 30.234375, -29.535230 ], [ 30.234375, -30.751278 ], [ 29.531250, -30.751278 ], [ 29.531250, -31.353637 ], [ 28.828125, -31.353637 ], [ 28.828125, -32.546813 ], [ 28.125000, -32.546813 ], [ 28.125000, -33.137551 ], [ 25.312500, -33.137551 ], [ 25.312500, -33.724340 ], [ 21.093750, -33.724340 ], [ 21.093750, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -33.724340 ], [ 17.578125, -33.724340 ], [ 17.578125, -30.751278 ], [ 16.875000, -30.751278 ], [ 16.875000, -28.921631 ], [ 16.171875, -28.921631 ], [ 16.171875, -28.304381 ], [ 17.578125, -28.304381 ], [ 17.578125, -28.921631 ], [ 19.687500, -28.921631 ], [ 19.687500, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -26.431228 ], [ 21.796875, -26.431228 ], [ 21.796875, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -25.165173 ], [ 25.312500, -25.165173 ], [ 25.312500, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -22.593726 ], [ 28.828125, -22.593726 ], [ 28.828125, -21.943046 ], [ 30.937500, -21.943046 ] ], [ [ 27.421875, -29.535230 ], [ 26.718750, -29.535230 ], [ 26.718750, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -28.304381 ], [ 27.421875, -28.304381 ], [ 27.421875, -29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -25.799891 ], [ 31.640625, -26.431228 ], [ 32.343750, -26.431228 ], [ 32.343750, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -25.799891 ], [ 31.640625, -25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -25.799891 ], [ 31.640625, -27.059126 ], [ 30.234375, -27.059126 ], [ 30.234375, -25.799891 ], [ 31.640625, -25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -28.921631 ], [ 28.828125, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.751278 ], [ 26.718750, -30.751278 ], [ 26.718750, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -29.535230 ], [ 28.125000, -29.535230 ], [ 28.125000, -28.921631 ], [ 28.828125, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -28.304381 ], [ 28.125000, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -30.145127 ], [ 26.718750, -30.145127 ], [ 26.718750, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -28.304381 ], [ 28.125000, -28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.921875, -12.554564 ], [ 49.921875, -15.284185 ], [ 50.625000, -15.284185 ], [ 50.625000, -15.961329 ], [ 49.921875, -15.961329 ], [ 49.921875, -17.308688 ], [ 49.218750, -17.308688 ], [ 49.218750, -19.973349 ], [ 48.515625, -19.973349 ], [ 48.515625, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -24.527135 ], [ 47.109375, -24.527135 ], [ 47.109375, -25.165173 ], [ 46.406250, -25.165173 ], [ 46.406250, -25.799891 ], [ 45.000000, -25.799891 ], [ 45.000000, -25.165173 ], [ 43.593750, -25.165173 ], [ 43.593750, -20.632784 ], [ 44.296875, -20.632784 ], [ 44.296875, -15.961329 ], [ 47.109375, -15.961329 ], [ 47.109375, -15.284185 ], [ 47.812500, -15.284185 ], [ 47.812500, -13.923404 ], [ 48.515625, -13.923404 ], [ 48.515625, -12.554564 ], [ 49.921875, -12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, -11.867351 ], [ 49.218750, -13.239945 ], [ 49.921875, -13.239945 ], [ 49.921875, -15.961329 ], [ 49.218750, -15.961329 ], [ 49.218750, -17.978733 ], [ 48.515625, -17.978733 ], [ 48.515625, -21.289374 ], [ 47.812500, -21.289374 ], [ 47.812500, -22.593726 ], [ 47.109375, -22.593726 ], [ 47.109375, -23.885838 ], [ 46.406250, -23.885838 ], [ 46.406250, -25.165173 ], [ 43.593750, -25.165173 ], [ 43.593750, -23.241346 ], [ 42.890625, -23.241346 ], [ 42.890625, -21.289374 ], [ 43.593750, -21.289374 ], [ 43.593750, -20.632784 ], [ 44.296875, -20.632784 ], [ 44.296875, -19.311143 ], [ 43.593750, -19.311143 ], [ 43.593750, -17.308688 ], [ 44.296875, -17.308688 ], [ 44.296875, -15.961329 ], [ 45.703125, -15.961329 ], [ 45.703125, -15.284185 ], [ 46.406250, -15.284185 ], [ 46.406250, -14.604847 ], [ 47.109375, -14.604847 ], [ 47.109375, -13.923404 ], [ 47.812500, -13.923404 ], [ 47.812500, -13.239945 ], [ 48.515625, -13.239945 ], [ 48.515625, -11.867351 ], [ 49.218750, -11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, -48.922499 ], [ 70.312500, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.458352 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ], [ 70.312500, -49.382373 ], [ 68.203125, -49.382373 ], [ 68.203125, -48.458352 ], [ 68.906250, -48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.937500, -9.795678 ], [ 120.937500, -10.487812 ], [ 118.828125, -10.487812 ], [ 118.828125, -9.795678 ], [ 120.937500, -9.795678 ] ] ], [ [ [ 125.156250, -9.102097 ], [ 125.156250, -9.795678 ], [ 124.453125, -9.795678 ], [ 124.453125, -10.487812 ], [ 123.750000, -10.487812 ], [ 123.750000, -9.102097 ], [ 125.156250, -9.102097 ] ] ], [ [ [ 118.828125, -8.407168 ], [ 118.828125, -9.102097 ], [ 117.421875, -9.102097 ], [ 117.421875, -8.407168 ], [ 118.828125, -8.407168 ] ] ], [ [ [ 122.343750, -8.407168 ], [ 122.343750, -9.102097 ], [ 120.234375, -9.102097 ], [ 120.234375, -8.407168 ], [ 122.343750, -8.407168 ] ] ], [ [ [ 134.296875, -0.703107 ], [ 134.296875, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 139.921875, -2.108899 ], [ 139.921875, -2.811371 ], [ 141.328125, -2.811371 ], [ 141.328125, -9.102097 ], [ 139.921875, -9.102097 ], [ 139.921875, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -6.315299 ], [ 137.812500, -6.315299 ], [ 137.812500, -5.615986 ], [ 137.109375, -5.615986 ], [ 137.109375, -4.915833 ], [ 135.703125, -4.915833 ], [ 135.703125, -4.214943 ], [ 132.890625, -4.214943 ], [ 132.890625, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 133.593750, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -0.703107 ], [ 134.296875, -0.703107 ] ] ], [ [ [ 107.578125, -5.615986 ], [ 107.578125, -6.315299 ], [ 108.281250, -6.315299 ], [ 108.281250, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.407168 ], [ 109.687500, -8.407168 ], [ 109.687500, -7.710992 ], [ 106.875000, -7.710992 ], [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -6.315299 ], [ 106.171875, -6.315299 ], [ 106.171875, -5.615986 ], [ 107.578125, -5.615986 ] ] ], [ [ [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ], [ 134.296875, -7.013668 ], [ 134.296875, -5.615986 ], [ 135.000000, -5.615986 ] ] ], [ [ [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 118.125000, 2.811371 ], [ 118.125000, 1.406109 ], [ 118.828125, 1.406109 ], [ 118.828125, 0.703107 ], [ 118.125000, 0.703107 ], [ 118.125000, 0.000000 ], [ 117.421875, 0.000000 ], [ 117.421875, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -3.513421 ], [ 116.015625, -3.513421 ], [ 116.015625, -4.214943 ], [ 114.609375, -4.214943 ], [ 114.609375, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -2.811371 ], [ 110.390625, -2.811371 ], [ 110.390625, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 1.406109 ], [ 109.687500, 1.406109 ], [ 109.687500, 0.703107 ], [ 112.500000, 0.703107 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 2.108899 ], [ 115.312500, 3.513421 ], [ 117.421875, 3.513421 ] ] ], [ [ [ 120.234375, 0.000000 ], [ 120.234375, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ], [ 123.046875, -4.214943 ], [ 123.046875, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, 0.000000 ], [ 120.234375, 0.000000 ] ] ], [ [ [ 99.843750, 3.513421 ], [ 99.843750, 2.811371 ], [ 100.546875, 2.811371 ], [ 100.546875, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -1.406109 ], [ 104.062500, -1.406109 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.811371 ], [ 106.171875, -2.811371 ], [ 106.171875, -4.915833 ], [ 105.468750, -4.915833 ], [ 105.468750, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -4.915833 ], [ 102.656250, -4.915833 ], [ 102.656250, -4.214943 ], [ 101.953125, -4.214943 ], [ 101.953125, -3.513421 ], [ 101.250000, -3.513421 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, -0.703107 ], [ 99.140625, -0.703107 ], [ 99.140625, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 99.843750, 3.513421 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.000000 ], [ 127.265625, 0.000000 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 130.781250, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 124.453125, 0.703107 ], [ 124.453125, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, 0.703107 ], [ 124.453125, 0.703107 ] ] ], [ [ [ 120.937500, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, 0.703107 ], [ 120.937500, 0.703107 ], [ 120.937500, 0.000000 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.234375, -9.102097 ], [ 120.234375, -9.795678 ], [ 118.828125, -9.795678 ], [ 118.828125, -9.102097 ], [ 120.234375, -9.102097 ] ] ], [ [ [ 124.453125, -9.102097 ], [ 124.453125, -9.795678 ], [ 123.750000, -9.795678 ], [ 123.750000, -9.102097 ], [ 124.453125, -9.102097 ] ] ], [ [ [ 118.828125, -7.710992 ], [ 118.828125, -8.407168 ], [ 117.421875, -8.407168 ], [ 117.421875, -7.710992 ], [ 118.828125, -7.710992 ] ] ], [ [ [ 113.203125, -7.710992 ], [ 115.312500, -7.710992 ], [ 115.312500, -8.407168 ], [ 113.203125, -8.407168 ], [ 113.203125, -7.710992 ] ] ], [ [ [ 116.718750, 3.513421 ], [ 116.718750, 2.811371 ], [ 117.421875, 2.811371 ], [ 117.421875, -1.406109 ], [ 116.015625, -1.406109 ], [ 116.015625, -3.513421 ], [ 113.906250, -3.513421 ], [ 113.906250, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 0.000000 ], [ 108.281250, 0.000000 ], [ 108.281250, 0.703107 ], [ 108.984375, 0.703107 ], [ 108.984375, 1.406109 ], [ 111.796875, 1.406109 ], [ 111.796875, 2.108899 ], [ 112.500000, 2.108899 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 3.513421 ], [ 116.718750, 3.513421 ] ] ], [ [ [ 132.187500, 0.000000 ], [ 132.187500, -0.703107 ], [ 133.593750, -0.703107 ], [ 133.593750, -1.406109 ], [ 134.296875, -1.406109 ], [ 134.296875, -2.811371 ], [ 135.703125, -2.811371 ], [ 135.703125, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 140.625000, -2.108899 ], [ 140.625000, -8.407168 ], [ 139.921875, -8.407168 ], [ 139.921875, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -8.407168 ], [ 137.109375, -8.407168 ], [ 137.109375, -7.710992 ], [ 137.812500, -7.710992 ], [ 137.812500, -7.013668 ], [ 138.515625, -7.013668 ], [ 138.515625, -6.315299 ], [ 137.812500, -6.315299 ], [ 137.812500, -4.915833 ], [ 136.406250, -4.915833 ], [ 136.406250, -4.214943 ], [ 133.593750, -4.214943 ], [ 133.593750, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 132.890625, -2.811371 ], [ 132.890625, -2.108899 ], [ 131.484375, -2.108899 ], [ 131.484375, -1.406109 ], [ 130.078125, -1.406109 ], [ 130.078125, -0.703107 ], [ 131.484375, -0.703107 ], [ 131.484375, 0.000000 ], [ 132.187500, 0.000000 ] ] ], [ [ [ 134.296875, -5.615986 ], [ 134.296875, -6.315299 ], [ 133.593750, -6.315299 ], [ 133.593750, -5.615986 ], [ 134.296875, -5.615986 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 103.359375, -5.615986 ], [ 103.359375, -4.915833 ], [ 101.953125, -4.915833 ], [ 101.953125, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 0.703107 ], [ 98.437500, 0.703107 ], [ 98.437500, 2.108899 ], [ 97.031250, 2.108899 ], [ 97.031250, 3.513421 ], [ 99.140625, 3.513421 ], [ 99.140625, 2.811371 ], [ 99.843750, 2.811371 ], [ 99.843750, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 1.406109 ], [ 101.953125, 1.406109 ], [ 101.953125, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, -0.703107 ], [ 104.062500, -0.703107 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 123.046875, -4.214943 ], [ 123.046875, -5.615986 ], [ 121.640625, -5.615986 ], [ 121.640625, -4.915833 ], [ 122.343750, -4.915833 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 121.640625, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -3.513421 ], [ 120.234375, -3.513421 ], [ 120.234375, -5.615986 ], [ 118.828125, -5.615986 ], [ 118.828125, -4.915833 ], [ 119.531250, -4.915833 ], [ 119.531250, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 118.125000, -2.811371 ], [ 118.125000, -2.108899 ], [ 118.828125, -2.108899 ], [ 118.828125, 0.000000 ], [ 119.531250, 0.000000 ], [ 119.531250, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.513421 ], [ 121.640625, -3.513421 ], [ 121.640625, -4.214943 ] ] ], [ [ [ 126.562500, -2.811371 ], [ 126.562500, -3.513421 ], [ 125.859375, -3.513421 ], [ 125.859375, -2.811371 ], [ 126.562500, -2.811371 ] ] ], [ [ [ 130.078125, -2.811371 ], [ 130.078125, -3.513421 ], [ 129.375000, -3.513421 ], [ 129.375000, -2.811371 ], [ 130.078125, -2.811371 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 106.875000, -5.615986 ], [ 106.875000, -6.315299 ], [ 112.500000, -6.315299 ], [ 112.500000, -7.710992 ], [ 106.171875, -7.710992 ], [ 106.171875, -6.315299 ], [ 105.468750, -6.315299 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 122.343750, -0.703107 ], [ 122.343750, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -0.703107 ], [ 122.343750, -0.703107 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.703107 ], [ 127.968750, 0.703107 ], [ 127.968750, -0.703107 ], [ 127.265625, -0.703107 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 123.046875, -0.703107 ], [ 122.343750, -0.703107 ], [ 122.343750, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, -0.703107 ] ] ], [ [ [ 120.234375, 0.703107 ], [ 120.234375, 1.406109 ], [ 124.453125, 1.406109 ], [ 124.453125, 0.703107 ], [ 120.234375, 0.703107 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 124.453125, 1.406109 ], [ 124.453125, 2.108899 ], [ 125.156250, 2.108899 ], [ 125.156250, 1.406109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.407168 ], [ 127.265625, -9.102097 ], [ 125.156250, -9.102097 ], [ 125.156250, -8.407168 ], [ 127.265625, -8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.562500, -8.407168 ], [ 126.562500, -9.102097 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.407168 ], [ 126.562500, -8.407168 ] ] ], [ [ [ 127.265625, -8.407168 ], [ 126.562500, -8.407168 ], [ 126.562500, -7.710992 ], [ 127.265625, -7.710992 ], [ 127.265625, -8.407168 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.359375, -40.979898 ], [ 148.359375, -43.068888 ], [ 147.656250, -43.068888 ], [ 147.656250, -43.580391 ], [ 146.250000, -43.580391 ], [ 146.250000, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -40.979898 ], [ 148.359375, -40.979898 ] ] ], [ [ [ 132.890625, -11.867351 ], [ 135.000000, -11.867351 ], [ 135.000000, -12.554564 ], [ 135.703125, -12.554564 ], [ 135.703125, -11.867351 ], [ 136.406250, -11.867351 ], [ 136.406250, -13.239945 ], [ 135.703125, -13.239945 ], [ 135.703125, -15.284185 ], [ 136.406250, -15.284185 ], [ 136.406250, -15.961329 ], [ 137.812500, -15.961329 ], [ 137.812500, -16.636192 ], [ 138.515625, -16.636192 ], [ 138.515625, -17.308688 ], [ 139.218750, -17.308688 ], [ 139.218750, -17.978733 ], [ 140.625000, -17.978733 ], [ 140.625000, -17.308688 ], [ 141.328125, -17.308688 ], [ 141.328125, -15.961329 ], [ 142.031250, -15.961329 ], [ 142.031250, -15.284185 ], [ 141.328125, -15.284185 ], [ 141.328125, -13.239945 ], [ 142.031250, -13.239945 ], [ 142.031250, -11.178402 ], [ 142.734375, -11.178402 ], [ 142.734375, -11.867351 ], [ 143.437500, -11.867351 ], [ 143.437500, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -15.284185 ], [ 145.546875, -15.284185 ], [ 145.546875, -17.308688 ], [ 146.250000, -17.308688 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -19.973349 ], [ 148.359375, -19.973349 ], [ 148.359375, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 149.765625, -21.943046 ], [ 149.765625, -22.593726 ], [ 150.468750, -22.593726 ], [ 150.468750, -23.241346 ], [ 151.171875, -23.241346 ], [ 151.171875, -23.885838 ], [ 151.875000, -23.885838 ], [ 151.875000, -25.165173 ], [ 152.578125, -25.165173 ], [ 152.578125, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -31.353637 ], [ 152.578125, -31.353637 ], [ 152.578125, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.885931 ], [ 150.468750, -34.885931 ], [ 150.468750, -36.031332 ], [ 149.765625, -36.031332 ], [ 149.765625, -37.718590 ], [ 148.359375, -37.718590 ], [ 148.359375, -38.272689 ], [ 147.656250, -38.272689 ], [ 147.656250, -38.822591 ], [ 144.843750, -38.822591 ], [ 144.843750, -38.272689 ], [ 144.140625, -38.272689 ], [ 144.140625, -38.822591 ], [ 142.734375, -38.822591 ], [ 142.734375, -38.272689 ], [ 140.625000, -38.272689 ], [ 140.625000, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.460670 ], [ 138.515625, -35.460670 ], [ 138.515625, -34.885931 ], [ 137.812500, -34.885931 ], [ 137.812500, -33.724340 ], [ 137.109375, -33.724340 ], [ 137.109375, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -34.885931 ], [ 135.000000, -34.885931 ], [ 135.000000, -33.724340 ], [ 134.296875, -33.724340 ], [ 134.296875, -32.546813 ], [ 132.890625, -32.546813 ], [ 132.890625, -31.952162 ], [ 131.484375, -31.952162 ], [ 131.484375, -31.353637 ], [ 129.375000, -31.353637 ], [ 129.375000, -31.952162 ], [ 127.968750, -31.952162 ], [ 127.968750, -32.546813 ], [ 125.156250, -32.546813 ], [ 125.156250, -33.137551 ], [ 124.453125, -33.137551 ], [ 124.453125, -33.724340 ], [ 120.234375, -33.724340 ], [ 120.234375, -34.307144 ], [ 118.828125, -34.307144 ], [ 118.828125, -34.885931 ], [ 115.312500, -34.885931 ], [ 115.312500, -33.724340 ], [ 116.015625, -33.724340 ], [ 116.015625, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -29.535230 ], [ 114.609375, -29.535230 ], [ 114.609375, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -27.059126 ], [ 113.203125, -27.059126 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -24.527135 ], [ 113.203125, -24.527135 ], [ 113.203125, -23.885838 ], [ 113.906250, -23.885838 ], [ 113.906250, -22.593726 ], [ 114.609375, -22.593726 ], [ 114.609375, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -21.289374 ], [ 116.718750, -21.289374 ], [ 116.718750, -20.632784 ], [ 118.828125, -20.632784 ], [ 118.828125, -19.973349 ], [ 121.640625, -19.973349 ], [ 121.640625, -18.646245 ], [ 122.343750, -18.646245 ], [ 122.343750, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.636192 ], [ 124.453125, -16.636192 ], [ 124.453125, -15.284185 ], [ 125.156250, -15.284185 ], [ 125.156250, -14.604847 ], [ 125.859375, -14.604847 ], [ 125.859375, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.604847 ], [ 128.671875, -14.604847 ], [ 128.671875, -15.284185 ], [ 129.375000, -15.284185 ], [ 129.375000, -14.604847 ], [ 130.078125, -14.604847 ], [ 130.078125, -13.239945 ], [ 130.781250, -13.239945 ], [ 130.781250, -12.554564 ], [ 132.890625, -12.554564 ], [ 132.890625, -11.867351 ] ] ], [ [ [ 132.890625, -11.867351 ], [ 131.484375, -11.867351 ], [ 131.484375, -11.178402 ], [ 132.890625, -11.178402 ], [ 132.890625, -11.867351 ] ] ], [ [ [ 137.812500, -34.885931 ], [ 137.812500, -35.460670 ], [ 137.109375, -35.460670 ], [ 137.109375, -34.885931 ], [ 137.812500, -34.885931 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -40.446947 ], [ 144.843750, -40.979898 ], [ 147.656250, -40.979898 ], [ 147.656250, -41.508577 ], [ 148.359375, -41.508577 ], [ 148.359375, -42.032974 ], [ 147.656250, -42.032974 ], [ 147.656250, -43.068888 ], [ 146.250000, -43.068888 ], [ 146.250000, -43.580391 ], [ 145.546875, -43.580391 ], [ 145.546875, -43.068888 ], [ 144.843750, -43.068888 ], [ 144.843750, -41.508577 ], [ 144.140625, -41.508577 ], [ 144.140625, -40.446947 ], [ 144.843750, -40.446947 ] ] ], [ [ [ 142.734375, -10.487812 ], [ 142.734375, -12.554564 ], [ 143.437500, -12.554564 ], [ 143.437500, -13.923404 ], [ 144.843750, -13.923404 ], [ 144.843750, -16.636192 ], [ 145.546875, -16.636192 ], [ 145.546875, -18.646245 ], [ 146.250000, -18.646245 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -19.973349 ], [ 148.359375, -19.973349 ], [ 148.359375, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 150.468750, -21.943046 ], [ 150.468750, -23.885838 ], [ 151.875000, -23.885838 ], [ 151.875000, -24.527135 ], [ 152.578125, -24.527135 ], [ 152.578125, -27.683528 ], [ 153.281250, -27.683528 ], [ 153.281250, -29.535230 ], [ 152.578125, -29.535230 ], [ 152.578125, -31.952162 ], [ 151.875000, -31.952162 ], [ 151.875000, -32.546813 ], [ 151.171875, -32.546813 ], [ 151.171875, -34.307144 ], [ 150.468750, -34.307144 ], [ 150.468750, -35.460670 ], [ 149.765625, -35.460670 ], [ 149.765625, -37.718590 ], [ 146.953125, -37.718590 ], [ 146.953125, -38.272689 ], [ 146.250000, -38.272689 ], [ 146.250000, -38.822591 ], [ 144.843750, -38.822591 ], [ 144.843750, -37.718590 ], [ 144.140625, -37.718590 ], [ 144.140625, -38.272689 ], [ 140.625000, -38.272689 ], [ 140.625000, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -37.160317 ], [ 139.218750, -37.160317 ], [ 139.218750, -36.031332 ], [ 138.515625, -36.031332 ], [ 138.515625, -35.460670 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.885931 ], [ 137.109375, -34.885931 ], [ 137.109375, -33.724340 ], [ 135.703125, -33.724340 ], [ 135.703125, -34.885931 ], [ 135.000000, -34.885931 ], [ 135.000000, -33.724340 ], [ 134.296875, -33.724340 ], [ 134.296875, -33.137551 ], [ 133.593750, -33.137551 ], [ 133.593750, -32.546813 ], [ 132.890625, -32.546813 ], [ 132.890625, -31.952162 ], [ 130.781250, -31.952162 ], [ 130.781250, -31.353637 ], [ 127.968750, -31.353637 ], [ 127.968750, -31.952162 ], [ 125.859375, -31.952162 ], [ 125.859375, -32.546813 ], [ 123.750000, -32.546813 ], [ 123.750000, -33.724340 ], [ 119.531250, -33.724340 ], [ 119.531250, -34.307144 ], [ 118.125000, -34.307144 ], [ 118.125000, -34.885931 ], [ 115.312500, -34.885931 ], [ 115.312500, -34.307144 ], [ 114.609375, -34.307144 ], [ 114.609375, -33.137551 ], [ 115.312500, -33.137551 ], [ 115.312500, -30.751278 ], [ 114.609375, -30.751278 ], [ 114.609375, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -27.059126 ], [ 113.203125, -27.059126 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -25.165173 ], [ 113.203125, -25.165173 ], [ 113.203125, -21.943046 ], [ 114.609375, -21.943046 ], [ 114.609375, -21.289374 ], [ 115.312500, -21.289374 ], [ 115.312500, -20.632784 ], [ 118.125000, -20.632784 ], [ 118.125000, -19.973349 ], [ 120.234375, -19.973349 ], [ 120.234375, -19.311143 ], [ 120.937500, -19.311143 ], [ 120.937500, -18.646245 ], [ 121.640625, -18.646245 ], [ 121.640625, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -15.961329 ], [ 123.750000, -15.961329 ], [ 123.750000, -15.284185 ], [ 124.453125, -15.284185 ], [ 124.453125, -14.604847 ], [ 125.156250, -14.604847 ], [ 125.156250, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.604847 ], [ 129.375000, -14.604847 ], [ 129.375000, -13.239945 ], [ 130.078125, -13.239945 ], [ 130.078125, -11.867351 ], [ 132.187500, -11.867351 ], [ 132.187500, -11.178402 ], [ 132.890625, -11.178402 ], [ 132.890625, -11.867351 ], [ 136.406250, -11.867351 ], [ 136.406250, -13.239945 ], [ 135.703125, -13.239945 ], [ 135.703125, -14.604847 ], [ 135.000000, -14.604847 ], [ 135.000000, -15.284185 ], [ 136.406250, -15.284185 ], [ 136.406250, -15.961329 ], [ 137.109375, -15.961329 ], [ 137.109375, -16.636192 ], [ 138.515625, -16.636192 ], [ 138.515625, -17.308688 ], [ 140.625000, -17.308688 ], [ 140.625000, -15.961329 ], [ 141.328125, -15.961329 ], [ 141.328125, -11.867351 ], [ 142.031250, -11.867351 ], [ 142.031250, -10.487812 ], [ 142.734375, -10.487812 ] ], [ [ 137.109375, -33.137551 ], [ 137.109375, -33.724340 ], [ 137.812500, -33.724340 ], [ 137.812500, -33.137551 ], [ 137.109375, -33.137551 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -3.513421 ], [ 144.843750, -4.214943 ], [ 145.546875, -4.214943 ], [ 145.546875, -5.615986 ], [ 146.250000, -5.615986 ], [ 146.250000, -6.315299 ], [ 147.656250, -6.315299 ], [ 147.656250, -7.013668 ], [ 146.953125, -7.013668 ], [ 146.953125, -7.710992 ], [ 148.359375, -7.710992 ], [ 148.359375, -8.407168 ], [ 149.062500, -8.407168 ], [ 149.062500, -9.795678 ], [ 149.765625, -9.795678 ], [ 149.765625, -10.487812 ], [ 147.656250, -10.487812 ], [ 147.656250, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 144.843750, -8.407168 ], [ 144.843750, -7.710992 ], [ 144.140625, -7.710992 ], [ 144.140625, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.102097 ], [ 141.328125, -9.102097 ], [ 141.328125, -3.513421 ], [ 144.843750, -3.513421 ] ] ], [ [ [ 150.468750, -4.915833 ], [ 150.468750, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -6.315299 ], [ 148.359375, -6.315299 ], [ 148.359375, -5.615986 ], [ 149.765625, -5.615986 ], [ 149.765625, -4.915833 ], [ 150.468750, -4.915833 ] ] ], [ [ [ 155.390625, -6.315299 ], [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ], [ 155.390625, -5.615986 ], [ 155.390625, -6.315299 ] ] ], [ [ [ 152.578125, -4.915833 ], [ 152.578125, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -4.915833 ], [ 151.875000, -4.915833 ], [ 151.875000, -4.214943 ], [ 152.578125, -4.214943 ], [ 153.281250, -4.214943 ], [ 153.281250, -4.915833 ], [ 152.578125, -4.915833 ] ] ], [ [ [ 151.875000, -3.513421 ], [ 151.171875, -3.513421 ], [ 151.171875, -2.811371 ], [ 151.875000, -2.811371 ], [ 151.875000, -3.513421 ] ] ], [ [ [ 155.390625, -6.315299 ], [ 156.093750, -6.315299 ], [ 156.093750, -7.013668 ], [ 155.390625, -7.013668 ], [ 155.390625, -6.315299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.765625, -9.795678 ], [ 146.953125, -9.795678 ], [ 146.953125, -9.102097 ], [ 146.250000, -9.102097 ], [ 146.250000, -8.407168 ], [ 145.546875, -8.407168 ], [ 145.546875, -7.710992 ], [ 142.734375, -7.710992 ], [ 142.734375, -9.102097 ], [ 140.625000, -9.102097 ], [ 140.625000, -2.108899 ], [ 141.328125, -2.108899 ], [ 141.328125, -2.811371 ], [ 142.734375, -2.811371 ], [ 142.734375, -3.513421 ], [ 144.140625, -3.513421 ], [ 144.140625, -4.214943 ], [ 145.546875, -4.214943 ], [ 145.546875, -5.615986 ], [ 146.953125, -5.615986 ], [ 146.953125, -7.710992 ], [ 147.656250, -7.710992 ], [ 147.656250, -8.407168 ], [ 148.359375, -8.407168 ], [ 148.359375, -9.102097 ], [ 149.765625, -9.102097 ], [ 149.765625, -9.795678 ] ] ], [ [ [ 151.171875, -4.915833 ], [ 151.171875, -5.615986 ], [ 150.468750, -5.615986 ], [ 150.468750, -6.315299 ], [ 148.359375, -6.315299 ], [ 148.359375, -4.915833 ], [ 151.171875, -4.915833 ] ] ], [ [ [ 154.687500, -5.615986 ], [ 153.984375, -5.615986 ], [ 153.984375, -4.915833 ], [ 154.687500, -4.915833 ], [ 154.687500, -5.615986 ] ] ], [ [ [ 151.875000, -4.915833 ], [ 151.171875, -4.915833 ], [ 151.171875, -3.513421 ], [ 151.875000, -3.513421 ], [ 151.875000, -4.915833 ] ] ], [ [ [ 151.171875, -2.108899 ], [ 151.171875, -2.811371 ], [ 150.468750, -2.811371 ], [ 150.468750, -2.108899 ], [ 151.171875, -2.108899 ] ] ], [ [ [ 149.765625, -9.795678 ], [ 150.468750, -9.795678 ], [ 150.468750, -10.487812 ], [ 149.765625, -10.487812 ], [ 149.765625, -9.795678 ] ] ], [ [ [ 154.687500, -5.615986 ], [ 155.390625, -5.615986 ], [ 155.390625, -6.315299 ], [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 160.312500, -9.102097 ], [ 160.312500, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.102097 ], [ 160.312500, -9.102097 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.015625, -9.102097 ], [ 160.312500, -9.102097 ], [ 160.312500, -8.407168 ], [ 161.015625, -8.407168 ] ] ], [ [ [ 159.609375, -7.710992 ], [ 159.609375, -8.407168 ], [ 158.906250, -8.407168 ], [ 158.906250, -7.710992 ], [ 159.609375, -7.710992 ] ] ], [ [ [ 157.500000, -7.013668 ], [ 157.500000, -7.710992 ], [ 156.796875, -7.710992 ], [ 156.796875, -7.013668 ], [ 157.500000, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.718750, -9.795678 ], [ 161.718750, -10.487812 ], [ 161.015625, -10.487812 ], [ 161.015625, -9.795678 ], [ 161.718750, -9.795678 ] ] ], [ [ [ 160.312500, -9.102097 ], [ 160.312500, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.102097 ], [ 160.312500, -9.102097 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.015625, -9.102097 ], [ 160.312500, -9.102097 ], [ 160.312500, -8.407168 ], [ 161.015625, -8.407168 ] ] ], [ [ [ 159.609375, -7.710992 ], [ 159.609375, -8.407168 ], [ 158.906250, -8.407168 ], [ 158.906250, -7.710992 ], [ 159.609375, -7.710992 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.343750, -14.604847 ], [ 167.343750, -15.961329 ], [ 166.640625, -15.961329 ], [ 166.640625, -14.604847 ], [ 167.343750, -14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.640625, -14.604847 ], [ 166.640625, -15.284185 ], [ 165.937500, -15.284185 ], [ 165.937500, -14.604847 ], [ 166.640625, -14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ], [ 164.531250, -21.289374 ], [ 163.828125, -21.289374 ], [ 163.828125, -19.973349 ], [ 164.531250, -19.973349 ], [ 164.531250, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.943046 ] ] ], [ [ [ 165.937500, -21.943046 ], [ 167.343750, -21.943046 ], [ 167.343750, -22.593726 ], [ 165.937500, -22.593726 ], [ 165.937500, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.531250, -20.632784 ], [ 163.828125, -20.632784 ], [ 163.828125, -19.973349 ], [ 164.531250, -19.973349 ], [ 164.531250, -20.632784 ] ] ], [ [ [ 165.234375, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.943046 ], [ 165.234375, -21.943046 ], [ 165.234375, -21.289374 ] ] ], [ [ [ 164.531250, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -21.289374 ], [ 164.531250, -21.289374 ], [ 164.531250, -20.632784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.979898 ], [ 172.968750, -41.508577 ], [ 174.375000, -41.508577 ], [ 174.375000, -42.032974 ], [ 173.671875, -42.032974 ], [ 173.671875, -42.553080 ], [ 172.968750, -42.553080 ], [ 172.968750, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -44.590467 ], [ 170.859375, -44.590467 ], [ 170.859375, -46.558860 ], [ 168.046875, -46.558860 ], [ 168.046875, -46.073231 ], [ 166.640625, -46.073231 ], [ 166.640625, -45.583290 ], [ 167.343750, -45.583290 ], [ 167.343750, -44.590467 ], [ 168.046875, -44.590467 ], [ 168.046875, -44.087585 ], [ 169.453125, -44.087585 ], [ 169.453125, -43.580391 ], [ 170.859375, -43.580391 ], [ 170.859375, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -41.508577 ], [ 172.265625, -41.508577 ], [ 172.265625, -40.979898 ], [ 172.968750, -40.979898 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 175.781250, -36.597889 ], [ 175.781250, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -39.368279 ], [ 177.187500, -39.368279 ], [ 177.187500, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.979898 ], [ 175.781250, -40.979898 ], [ 175.781250, -41.508577 ], [ 174.375000, -41.508577 ], [ 174.375000, -40.979898 ], [ 175.078125, -40.979898 ], [ 175.078125, -39.909736 ], [ 173.671875, -39.909736 ], [ 173.671875, -39.368279 ], [ 174.375000, -39.368279 ], [ 174.375000, -38.822591 ], [ 175.078125, -38.822591 ], [ 175.078125, -37.718590 ], [ 174.375000, -37.718590 ], [ 174.375000, -36.597889 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 173.671875, -36.597889 ], [ 173.671875, -36.031332 ], [ 172.968750, -36.031332 ], [ 172.968750, -34.885931 ], [ 173.671875, -34.885931 ], [ 173.671875, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.446947 ], [ 172.968750, -40.979898 ], [ 173.671875, -40.979898 ], [ 173.671875, -42.553080 ], [ 172.968750, -42.553080 ], [ 172.968750, -43.068888 ], [ 172.265625, -43.068888 ], [ 172.265625, -44.087585 ], [ 170.859375, -44.087585 ], [ 170.859375, -45.089036 ], [ 170.156250, -45.089036 ], [ 170.156250, -46.073231 ], [ 169.453125, -46.073231 ], [ 169.453125, -46.558860 ], [ 167.343750, -46.558860 ], [ 167.343750, -46.073231 ], [ 165.937500, -46.073231 ], [ 165.937500, -45.583290 ], [ 166.640625, -45.583290 ], [ 166.640625, -45.089036 ], [ 167.343750, -45.089036 ], [ 167.343750, -44.590467 ], [ 168.046875, -44.590467 ], [ 168.046875, -44.087585 ], [ 168.750000, -44.087585 ], [ 168.750000, -43.580391 ], [ 169.453125, -43.580391 ], [ 169.453125, -43.068888 ], [ 170.156250, -43.068888 ], [ 170.156250, -42.553080 ], [ 170.859375, -42.553080 ], [ 170.859375, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -40.446947 ], [ 172.968750, -40.446947 ] ] ], [ [ [ 173.671875, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ], [ 175.781250, -36.597889 ], [ 175.781250, -37.718590 ], [ 177.890625, -37.718590 ], [ 177.890625, -38.822591 ], [ 177.187500, -38.822591 ], [ 177.187500, -39.368279 ], [ 176.484375, -39.368279 ], [ 176.484375, -40.979898 ], [ 175.781250, -40.979898 ], [ 175.781250, -41.508577 ], [ 174.375000, -41.508577 ], [ 174.375000, -40.979898 ], [ 175.078125, -40.979898 ], [ 175.078125, -40.446947 ], [ 174.375000, -40.446947 ], [ 174.375000, -39.909736 ], [ 173.671875, -39.909736 ], [ 173.671875, -38.822591 ], [ 174.375000, -38.822591 ], [ 174.375000, -37.160317 ], [ 173.671875, -37.160317 ], [ 173.671875, -35.460670 ] ] ], [ [ [ 172.968750, -34.885931 ], [ 172.265625, -34.885931 ], [ 172.265625, -34.307144 ], [ 172.968750, -34.307144 ], [ 172.968750, -34.885931 ] ] ], [ [ [ 172.968750, -34.885931 ], [ 173.671875, -34.885931 ], [ 173.671875, -35.460670 ], [ 172.968750, -35.460670 ], [ 172.968750, -34.885931 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 57.704147 ], [ -2.109375, 56.170023 ], [ -2.812500, 56.170023 ], [ -2.812500, 55.776573 ], [ -2.109375, 55.776573 ], [ -2.109375, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ 0.703125, 51.618017 ], [ 0.703125, 51.179343 ], [ 1.406250, 51.179343 ], [ 1.406250, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.289339 ], [ -3.515625, 50.289339 ], [ -3.515625, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -3.515625, 54.162434 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 42.553080 ], [ 9.843750, 41.508577 ], [ 8.437500, 41.508577 ], [ 8.437500, 42.553080 ], [ 9.843750, 42.553080 ] ] ], [ [ [ 2.812500, 50.736455 ], [ 2.812500, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 49.837982 ], [ 4.921875, 49.837982 ], [ 4.921875, 49.382373 ], [ 7.031250, 49.382373 ], [ 7.031250, 48.922499 ], [ 8.437500, 48.922499 ], [ 8.437500, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 47.517201 ], [ 7.031250, 47.517201 ], [ 7.031250, 47.040182 ], [ 6.328125, 47.040182 ], [ 6.328125, 46.073231 ], [ 7.031250, 46.073231 ], [ 7.031250, 44.087585 ], [ 7.734375, 44.087585 ], [ 7.734375, 43.068888 ], [ 4.921875, 43.068888 ], [ 4.921875, 43.580391 ], [ 4.218750, 43.580391 ], [ 4.218750, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.553080 ], [ -1.406250, 42.553080 ], [ -1.406250, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.558860 ], [ -2.109375, 46.558860 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.458352 ], [ -1.406250, 48.458352 ], [ -1.406250, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ 0.000000, 49.382373 ], [ 0.000000, 49.837982 ], [ 1.406250, 49.837982 ], [ 1.406250, 50.736455 ], [ 2.812500, 50.736455 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 56.170023 ], [ -2.109375, 56.170023 ], [ -2.109375, 55.379110 ], [ -1.406250, 55.379110 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 52.052490 ], [ 0.703125, 52.052490 ], [ 0.703125, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ -1.406250, 51.179343 ], [ -1.406250, 50.736455 ], [ -3.515625, 50.736455 ], [ -3.515625, 56.170023 ] ] ], [ [ [ -2.109375, 57.326521 ], [ -2.812500, 57.326521 ], [ -2.812500, 56.559482 ], [ -3.515625, 56.559482 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 57.326521 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 2.109375, 41.508577 ], [ 2.109375, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 38.272689 ], [ -0.703125, 38.272689 ], [ -0.703125, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 37.160317 ], [ -2.109375, 37.160317 ], [ -2.109375, 36.597889 ], [ -3.515625, 36.597889 ], [ -3.515625, 43.580391 ], [ -2.109375, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.140625, 43.068888 ], [ 9.140625, 41.508577 ], [ 8.437500, 41.508577 ], [ 8.437500, 43.068888 ], [ 9.140625, 43.068888 ] ] ], [ [ [ 2.812500, 51.179343 ], [ 2.812500, 50.736455 ], [ 3.515625, 50.736455 ], [ 3.515625, 50.289339 ], [ 4.218750, 50.289339 ], [ 4.218750, 49.837982 ], [ 5.625000, 49.837982 ], [ 5.625000, 49.382373 ], [ 7.734375, 49.382373 ], [ 7.734375, 48.922499 ], [ 7.031250, 48.922499 ], [ 7.031250, 47.517201 ], [ 6.328125, 47.517201 ], [ 6.328125, 47.040182 ], [ 5.625000, 47.040182 ], [ 5.625000, 46.558860 ], [ 6.328125, 46.558860 ], [ 6.328125, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 45.089036 ], [ 6.328125, 45.089036 ], [ 6.328125, 44.590467 ], [ 7.031250, 44.590467 ], [ 7.031250, 43.580391 ], [ 2.812500, 43.580391 ], [ 2.812500, 42.553080 ], [ 0.703125, 42.553080 ], [ 0.703125, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.073231 ], [ -2.109375, 46.073231 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 50.736455 ], [ 1.406250, 50.736455 ], [ 1.406250, 51.179343 ], [ 2.812500, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 31.952162 ], [ -3.515625, 31.952162 ], [ -3.515625, 35.460670 ], [ -2.812500, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ 0.703125, 43.068888 ], [ 0.703125, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 0.703125, 41.508577 ], [ 0.703125, 40.446947 ], [ 0.000000, 40.446947 ], [ 0.000000, 39.909736 ], [ -0.703125, 39.909736 ], [ -0.703125, 37.718590 ], [ -2.109375, 37.718590 ], [ -2.109375, 37.160317 ], [ -3.515625, 37.160317 ], [ -3.515625, 43.580391 ], [ -2.109375, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 1.406250, 21.289374 ], [ 1.406250, 20.632784 ], [ 2.109375, 20.632784 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.604847 ], [ -0.703125, 14.604847 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.239945 ], [ -3.515625, 13.239945 ], [ -3.515625, 23.241346 ], [ -2.109375, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 32.546813 ], [ -2.812500, 32.546813 ], [ -2.812500, 31.952162 ], [ -3.515625, 31.952162 ], [ -3.515625, 35.460670 ], [ -2.812500, 35.460670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -3.515625, 9.795678 ], [ -3.515625, 13.239945 ], [ -2.812500, 13.239945 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 23.885838 ], [ -2.812500, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.636192 ], [ 3.515625, 16.636192 ], [ 3.515625, 15.961329 ], [ 0.703125, 15.961329 ], [ 0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.812500, 14.604847 ], [ -2.812500, 13.923404 ], [ -3.515625, 13.923404 ], [ -3.515625, 23.885838 ], [ -2.812500, 23.885838 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.515625, 4.915833 ], [ -3.515625, 5.615986 ] ] ], [ [ [ -2.812500, 7.013668 ], [ -3.515625, 7.013668 ], [ -3.515625, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 13.239945 ], [ 2.109375, 13.239945 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -3.515625, 11.178402 ], [ -3.515625, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ 0.000000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -3.515625, 5.615986 ], [ -3.515625, 7.013668 ], [ -2.812500, 7.013668 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 9.102097 ], [ -2.812500, 7.710992 ], [ -3.515625, 7.710992 ], [ -3.515625, 9.102097 ], [ -2.812500, 9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 65.946472 ], [ 180.000000, 65.658275 ], [ 180.703125, 65.658275 ], [ 180.703125, 65.072130 ], [ 180.000000, 65.072130 ], [ 180.000000, 64.774125 ], [ 179.296875, 64.774125 ], [ 179.296875, 64.472794 ], [ 177.187500, 64.472794 ], [ 177.187500, 64.168107 ], [ 178.593750, 64.168107 ], [ 178.593750, 62.915233 ], [ 179.296875, 62.915233 ], [ 179.296875, 62.267923 ], [ 177.890625, 62.267923 ], [ 177.890625, 62.593341 ], [ 177.187500, 62.593341 ], [ 177.187500, 62.267923 ], [ 176.484375, 62.267923 ], [ 176.484375, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.606396 ], [ 173.671875, 61.606396 ], [ 173.671875, 61.270233 ], [ 172.968750, 61.270233 ], [ 172.968750, 60.930432 ], [ 172.265625, 60.930432 ], [ 172.265625, 60.586967 ], [ 171.562500, 60.586967 ], [ 171.562500, 60.239811 ], [ 170.859375, 60.239811 ], [ 170.859375, 59.888937 ], [ 169.453125, 59.888937 ], [ 169.453125, 60.239811 ], [ 167.343750, 60.239811 ], [ 167.343750, 59.888937 ], [ 163.828125, 59.888937 ], [ 163.828125, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.813742 ], [ 162.421875, 58.813742 ], [ 162.421875, 58.077876 ], [ 161.718750, 58.077876 ], [ 161.718750, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.170023 ], [ 162.421875, 56.170023 ], [ 162.421875, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.977614 ], [ 162.421875, 54.977614 ], [ 162.421875, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.162434 ], [ 160.312500, 54.162434 ], [ 160.312500, 53.330873 ], [ 159.609375, 53.330873 ], [ 159.609375, 52.908902 ], [ 158.203125, 52.908902 ], [ 158.203125, 51.618017 ], [ 157.500000, 51.618017 ], [ 157.500000, 51.179343 ], [ 156.093750, 51.179343 ], [ 156.093750, 54.162434 ], [ 155.390625, 54.162434 ], [ 155.390625, 56.170023 ], [ 156.093750, 56.170023 ], [ 156.093750, 56.944974 ], [ 156.796875, 56.944974 ], [ 156.796875, 57.704147 ], [ 158.203125, 57.704147 ], [ 158.203125, 58.077876 ], [ 158.906250, 58.077876 ], [ 158.906250, 58.447733 ], [ 159.609375, 58.447733 ], [ 159.609375, 58.813742 ], [ 160.312500, 58.813742 ], [ 160.312500, 59.175928 ], [ 161.015625, 59.175928 ], [ 161.015625, 59.888937 ], [ 161.718750, 59.888937 ], [ 161.718750, 60.239811 ], [ 162.421875, 60.239811 ], [ 162.421875, 60.586967 ], [ 163.125000, 60.586967 ], [ 163.125000, 60.930432 ], [ 163.828125, 60.930432 ], [ 163.828125, 61.938950 ], [ 164.531250, 61.938950 ], [ 164.531250, 62.593341 ], [ 163.125000, 62.593341 ], [ 163.125000, 61.938950 ], [ 162.421875, 61.938950 ], [ 162.421875, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.586967 ], [ 160.312500, 60.586967 ], [ 160.312500, 61.270233 ], [ 159.609375, 61.270233 ], [ 159.609375, 61.606396 ], [ 158.203125, 61.606396 ], [ 158.203125, 61.270233 ], [ 156.796875, 61.270233 ], [ 156.796875, 60.930432 ], [ 156.093750, 60.930432 ], [ 156.093750, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.239811 ], [ 154.687500, 60.239811 ], [ 154.687500, 59.888937 ], [ 153.984375, 59.888937 ], [ 153.984375, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.534318 ], [ 149.765625, 59.175928 ], [ 142.031250, 59.175928 ], [ 142.031250, 58.813742 ], [ 141.328125, 58.813742 ], [ 141.328125, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.704147 ], [ 139.921875, 57.704147 ], [ 139.921875, 56.944974 ], [ 139.218750, 56.944974 ], [ 139.218750, 56.559482 ], [ 138.515625, 56.559482 ], [ 138.515625, 56.170023 ], [ 137.812500, 56.170023 ], [ 137.812500, 55.776573 ], [ 137.109375, 55.776573 ], [ 137.109375, 55.379110 ], [ 136.406250, 55.379110 ], [ 136.406250, 54.977614 ], [ 135.703125, 54.977614 ], [ 135.703125, 54.572062 ], [ 136.406250, 54.572062 ], [ 136.406250, 54.162434 ], [ 137.109375, 54.162434 ], [ 137.109375, 53.748711 ], [ 138.515625, 53.748711 ], [ 138.515625, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 52.908902 ], [ 141.328125, 52.908902 ], [ 141.328125, 52.482780 ], [ 142.031250, 52.482780 ], [ 142.031250, 53.330873 ], [ 142.734375, 53.330873 ], [ 143.437500, 53.330873 ], [ 143.437500, 50.289339 ], [ 144.140625, 50.289339 ], [ 144.140625, 49.382373 ], [ 144.843750, 49.382373 ], [ 144.843750, 48.922499 ], [ 143.437500, 48.922499 ], [ 143.437500, 48.458352 ], [ 142.734375, 48.458352 ], [ 142.734375, 47.517201 ], [ 143.437500, 47.517201 ], [ 143.437500, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 51.179343 ], [ 141.328125, 51.179343 ], [ 141.328125, 51.618017 ], [ 140.625000, 51.618017 ], [ 140.625000, 48.922499 ], [ 139.921875, 48.922499 ], [ 139.921875, 47.989922 ], [ 139.218750, 47.989922 ], [ 139.218750, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 45.583290 ], [ 137.812500, 45.583290 ], [ 137.812500, 45.089036 ], [ 137.109375, 45.089036 ], [ 137.109375, 44.590467 ], [ 136.406250, 44.590467 ], [ 136.406250, 44.087585 ], [ 135.703125, 44.087585 ], [ 135.703125, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.068888 ], [ 134.296875, 43.068888 ], [ 134.296875, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 43.068888 ], [ 131.484375, 43.068888 ], [ 131.484375, 44.590467 ], [ 130.781250, 44.590467 ], [ 130.781250, 45.089036 ], [ 132.890625, 45.089036 ], [ 132.890625, 45.583290 ], [ 133.593750, 45.583290 ], [ 133.593750, 46.558860 ], [ 134.296875, 46.558860 ], [ 134.296875, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.922499 ], [ 129.375000, 48.922499 ], [ 129.375000, 49.382373 ], [ 127.968750, 49.382373 ], [ 127.968750, 50.289339 ], [ 127.265625, 50.289339 ], [ 127.265625, 51.179343 ], [ 126.562500, 51.179343 ], [ 126.562500, 52.052490 ], [ 125.859375, 52.052490 ], [ 125.859375, 52.908902 ], [ 125.156250, 52.908902 ], [ 125.156250, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 52.908902 ], [ 120.234375, 52.908902 ], [ 120.234375, 52.482780 ], [ 120.937500, 52.482780 ], [ 120.937500, 51.618017 ], [ 120.234375, 51.618017 ], [ 120.234375, 51.179343 ], [ 119.531250, 51.179343 ], [ 119.531250, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 49.382373 ], [ 116.718750, 49.382373 ], [ 116.718750, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 50.289339 ], [ 114.609375, 50.289339 ], [ 114.609375, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 49.382373 ], [ 111.796875, 49.382373 ], [ 111.796875, 48.922499 ], [ 109.687500, 48.922499 ], [ 109.687500, 49.382373 ], [ 107.578125, 49.382373 ], [ 107.578125, 49.837982 ], [ 106.875000, 49.837982 ], [ 106.875000, 50.289339 ], [ 101.953125, 50.289339 ], [ 101.953125, 51.179343 ], [ 100.546875, 51.179343 ], [ 100.546875, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 51.179343 ], [ 97.734375, 51.179343 ], [ 97.734375, 50.736455 ], [ 98.437500, 50.736455 ], [ 98.437500, 49.837982 ], [ 94.218750, 49.837982 ], [ 94.218750, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 49.837982 ], [ 89.296875, 49.837982 ], [ 89.296875, 49.382373 ], [ 86.484375, 49.382373 ], [ 86.484375, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.289339 ], [ 83.671875, 50.289339 ], [ 83.671875, 50.736455 ], [ 80.156250, 50.736455 ], [ 80.156250, 51.179343 ], [ 79.453125, 51.179343 ], [ 79.453125, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.908902 ], [ 78.046875, 52.908902 ], [ 78.046875, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.640625, 53.748711 ], [ 76.640625, 54.162434 ], [ 75.234375, 54.162434 ], [ 75.234375, 53.748711 ], [ 74.531250, 53.748711 ], [ 74.531250, 53.330873 ], [ 73.125000, 53.330873 ], [ 73.125000, 53.748711 ], [ 73.828125, 53.748711 ], [ 73.828125, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 54.977614 ], [ 69.609375, 54.977614 ], [ 69.609375, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 54.977614 ], [ 67.500000, 54.977614 ], [ 67.500000, 54.572062 ], [ 65.390625, 54.572062 ], [ 65.390625, 54.162434 ], [ 61.171875, 54.162434 ], [ 61.171875, 53.330873 ], [ 61.875000, 53.330873 ], [ 61.875000, 52.908902 ], [ 60.468750, 52.908902 ], [ 60.468750, 52.482780 ], [ 61.171875, 52.482780 ], [ 61.171875, 52.052490 ], [ 59.765625, 52.052490 ], [ 59.765625, 51.618017 ], [ 61.171875, 51.618017 ], [ 61.171875, 51.179343 ], [ 61.875000, 51.179343 ], [ 61.875000, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 51.179343 ], [ 56.953125, 51.179343 ], [ 56.953125, 50.736455 ], [ 54.843750, 50.736455 ], [ 54.843750, 51.179343 ], [ 52.734375, 51.179343 ], [ 52.734375, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.179343 ], [ 49.218750, 51.179343 ], [ 49.218750, 50.736455 ], [ 48.515625, 50.736455 ], [ 48.515625, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 49.382373 ], [ 46.406250, 49.382373 ], [ 46.406250, 48.922499 ], [ 47.109375, 48.922499 ], [ 47.109375, 48.458352 ], [ 46.406250, 48.458352 ], [ 46.406250, 47.989922 ], [ 47.109375, 47.989922 ], [ 47.109375, 47.517201 ], [ 47.812500, 47.517201 ], [ 47.812500, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 46.558860 ], [ 49.218750, 46.558860 ], [ 49.218750, 46.073231 ], [ 48.515625, 46.073231 ], [ 48.515625, 45.583290 ], [ 47.812500, 45.583290 ], [ 47.812500, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.590467 ], [ 46.406250, 44.590467 ], [ 46.406250, 44.087585 ], [ 47.109375, 44.087585 ], [ 47.109375, 43.580391 ], [ 47.812500, 43.580391 ], [ 47.812500, 42.553080 ], [ 48.515625, 42.553080 ], [ 48.515625, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 40.979898 ], [ 47.109375, 40.979898 ], [ 47.109375, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.553080 ], [ 42.187500, 42.553080 ], [ 42.187500, 43.068888 ], [ 40.781250, 43.068888 ], [ 40.781250, 43.580391 ], [ 38.671875, 43.580391 ], [ 38.671875, 44.087585 ], [ 37.265625, 44.087585 ], [ 37.265625, 44.590467 ], [ 36.562500, 44.590467 ], [ 36.562500, 45.089036 ], [ 37.265625, 45.089036 ], [ 37.265625, 45.583290 ], [ 37.968750, 45.583290 ], [ 37.968750, 46.558860 ], [ 39.375000, 46.558860 ], [ 39.375000, 47.040182 ], [ 37.968750, 47.040182 ], [ 37.968750, 47.517201 ], [ 38.671875, 47.517201 ], [ 38.671875, 47.989922 ], [ 40.078125, 47.989922 ], [ 40.078125, 48.458352 ], [ 39.375000, 48.458352 ], [ 39.375000, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.382373 ], [ 38.671875, 49.382373 ], [ 38.671875, 49.837982 ], [ 37.265625, 49.837982 ], [ 37.265625, 50.289339 ], [ 35.156250, 50.289339 ], [ 35.156250, 51.179343 ], [ 34.453125, 51.179343 ], [ 34.453125, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.748711 ], [ 31.640625, 53.748711 ], [ 31.640625, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 55.379110 ], [ 30.234375, 55.379110 ], [ 30.234375, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 56.944974 ], [ 27.421875, 56.944974 ], [ 27.421875, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 59.534318 ], [ 28.828125, 59.534318 ], [ 28.828125, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.586967 ], [ 28.828125, 60.586967 ], [ 28.828125, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.606396 ], [ 30.234375, 61.606396 ], [ 30.234375, 61.938950 ], [ 30.937500, 61.938950 ], [ 30.937500, 62.593341 ], [ 31.640625, 62.593341 ], [ 31.640625, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 63.233627 ], [ 30.234375, 63.233627 ], [ 30.234375, 64.472794 ], [ 29.531250, 64.472794 ], [ 29.531250, 65.366837 ], [ 30.234375, 65.366837 ], [ 30.234375, 66.231457 ], [ 29.531250, 66.231457 ], [ 29.531250, 66.791909 ], [ 28.828125, 66.791909 ], [ 28.828125, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.339861 ], [ 30.234375, 67.339861 ], [ 30.234375, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 67.875541 ], [ 28.828125, 67.875541 ], [ 28.828125, 68.138852 ], [ 28.125000, 68.138852 ], [ 28.125000, 68.656555 ], [ 28.828125, 68.656555 ], [ 28.828125, 69.162558 ], [ 30.234375, 69.162558 ], [ 30.234375, 69.411242 ], [ 30.937500, 69.411242 ], [ 30.937500, 69.657086 ], [ 33.046875, 69.657086 ], [ 33.046875, 69.411242 ], [ 34.453125, 69.411242 ], [ 34.453125, 69.162558 ], [ 36.562500, 69.162558 ], [ 36.562500, 68.911005 ], [ 37.265625, 68.911005 ], [ 37.265625, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.138852 ], [ 39.375000, 68.138852 ], [ 39.375000, 67.875541 ], [ 40.078125, 67.875541 ], [ 40.078125, 67.609221 ], [ 40.781250, 67.609221 ], [ 40.781250, 66.513260 ], [ 40.078125, 66.513260 ], [ 40.078125, 65.946472 ], [ 37.265625, 65.946472 ], [ 37.265625, 66.231457 ], [ 35.859375, 66.231457 ], [ 35.859375, 66.513260 ], [ 34.453125, 66.513260 ], [ 34.453125, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.513260 ], [ 33.046875, 66.513260 ], [ 33.046875, 66.231457 ], [ 34.453125, 66.231457 ], [ 34.453125, 65.946472 ], [ 35.156250, 65.946472 ], [ 35.156250, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 63.860036 ], [ 37.265625, 63.860036 ], [ 37.265625, 64.472794 ], [ 36.562500, 64.472794 ], [ 36.562500, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.472794 ], [ 40.781250, 64.472794 ], [ 40.781250, 65.072130 ], [ 40.078125, 65.072130 ], [ 40.078125, 65.366837 ], [ 40.781250, 65.366837 ], [ 40.781250, 65.946472 ], [ 41.484375, 65.946472 ], [ 41.484375, 66.231457 ], [ 42.187500, 66.231457 ], [ 42.187500, 66.513260 ], [ 42.890625, 66.513260 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 65.946472 ], [ 44.296875, 65.946472 ], [ 44.296875, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 67.609221 ], [ 44.296875, 67.609221 ], [ 44.296875, 68.138852 ], [ 43.593750, 68.138852 ], [ 43.593750, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.875541 ], [ 47.109375, 67.875541 ], [ 47.109375, 67.609221 ], [ 45.703125, 67.609221 ], [ 45.703125, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.609221 ], [ 49.218750, 67.609221 ], [ 49.218750, 67.875541 ], [ 50.625000, 67.875541 ], [ 50.625000, 68.138852 ], [ 51.328125, 68.138852 ], [ 51.328125, 68.399180 ], [ 52.734375, 68.399180 ], [ 52.734375, 68.656555 ], [ 53.437500, 68.656555 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 54.140625, 68.399180 ], [ 53.437500, 68.399180 ], [ 53.437500, 68.138852 ], [ 55.546875, 68.138852 ], [ 55.546875, 68.399180 ], [ 58.359375, 68.399180 ], [ 58.359375, 68.656555 ], [ 59.765625, 68.656555 ], [ 59.765625, 68.399180 ], [ 60.468750, 68.399180 ], [ 60.468750, 68.656555 ], [ 61.171875, 68.656555 ], [ 61.171875, 68.911005 ], [ 60.468750, 68.911005 ], [ 60.468750, 69.162558 ], [ 59.765625, 69.162558 ], [ 59.765625, 69.657086 ], [ 60.468750, 69.657086 ], [ 60.468750, 69.900118 ], [ 61.171875, 69.900118 ], [ 61.171875, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.411242 ], [ 63.984375, 69.411242 ], [ 63.984375, 69.162558 ], [ 64.687500, 69.162558 ], [ 64.687500, 68.911005 ], [ 65.390625, 68.911005 ], [ 65.390625, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.138852 ], [ 68.203125, 68.138852 ], [ 68.203125, 68.399180 ], [ 68.906250, 68.399180 ], [ 68.906250, 68.911005 ], [ 68.203125, 68.911005 ], [ 68.203125, 69.411242 ], [ 66.796875, 69.411242 ], [ 66.796875, 69.657086 ], [ 67.500000, 69.657086 ], [ 67.500000, 70.140364 ], [ 66.796875, 70.140364 ], [ 66.796875, 71.300793 ], [ 67.500000, 71.300793 ], [ 67.500000, 71.746432 ], [ 68.203125, 71.746432 ], [ 68.203125, 72.395706 ], [ 68.906250, 72.395706 ], [ 68.906250, 72.816074 ], [ 69.609375, 72.816074 ], [ 69.609375, 73.022592 ], [ 70.312500, 73.022592 ], [ 70.312500, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.395706 ], [ 73.125000, 72.395706 ], [ 73.125000, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.524909 ], [ 71.718750, 71.524909 ], [ 71.718750, 71.074056 ], [ 72.421875, 71.074056 ], [ 72.421875, 70.612614 ], [ 73.125000, 70.612614 ], [ 73.125000, 69.657086 ], [ 72.421875, 69.657086 ], [ 72.421875, 68.656555 ], [ 73.125000, 68.656555 ], [ 73.125000, 68.399180 ], [ 73.828125, 68.399180 ], [ 73.828125, 67.875541 ], [ 73.125000, 67.875541 ], [ 73.125000, 67.339861 ], [ 72.421875, 67.339861 ], [ 72.421875, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.231457 ], [ 73.125000, 66.231457 ], [ 73.125000, 66.513260 ], [ 73.828125, 66.513260 ], [ 73.828125, 67.067433 ], [ 74.531250, 67.067433 ], [ 74.531250, 67.609221 ], [ 75.234375, 67.609221 ], [ 75.234375, 68.138852 ], [ 74.531250, 68.138852 ], [ 74.531250, 68.656555 ], [ 75.234375, 68.656555 ], [ 75.234375, 68.911005 ], [ 73.828125, 68.911005 ], [ 73.828125, 70.140364 ], [ 74.531250, 70.140364 ], [ 74.531250, 70.844673 ], [ 73.828125, 70.844673 ], [ 73.828125, 71.300793 ], [ 73.125000, 71.300793 ], [ 73.125000, 71.524909 ], [ 73.828125, 71.524909 ], [ 73.828125, 71.746432 ], [ 74.531250, 71.746432 ], [ 74.531250, 71.965388 ], [ 75.234375, 71.965388 ], [ 75.234375, 72.395706 ], [ 74.531250, 72.395706 ], [ 74.531250, 72.816074 ], [ 75.234375, 72.816074 ], [ 75.234375, 72.607120 ], [ 75.937500, 72.607120 ], [ 75.937500, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.181804 ], [ 78.750000, 72.181804 ], [ 78.750000, 72.395706 ], [ 79.453125, 72.395706 ], [ 79.453125, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 72.181804 ], [ 80.859375, 72.181804 ], [ 80.859375, 73.627789 ], [ 82.265625, 73.627789 ], [ 82.265625, 73.824820 ], [ 85.781250, 73.824820 ], [ 85.781250, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.211983 ], [ 85.781250, 74.211983 ], [ 85.781250, 74.590108 ], [ 86.484375, 74.590108 ], [ 86.484375, 74.959392 ], [ 87.187500, 74.959392 ], [ 87.187500, 75.140778 ], [ 89.296875, 75.140778 ], [ 89.296875, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.672197 ], [ 92.109375, 75.672197 ], [ 92.109375, 75.845169 ], [ 93.515625, 75.845169 ], [ 93.515625, 76.016094 ], [ 94.921875, 76.016094 ], [ 94.921875, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.845169 ], [ 97.031250, 75.845169 ], [ 97.031250, 76.016094 ], [ 97.734375, 76.016094 ], [ 97.734375, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.351896 ], [ 100.546875, 76.351896 ], [ 100.546875, 76.516819 ], [ 101.250000, 76.516819 ], [ 101.250000, 76.999935 ], [ 101.953125, 76.999935 ], [ 101.953125, 77.312520 ], [ 102.656250, 77.312520 ], [ 102.656250, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.312520 ], [ 106.171875, 77.312520 ], [ 106.171875, 77.157163 ], [ 105.468750, 77.157163 ], [ 105.468750, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.679785 ], [ 107.578125, 76.679785 ], [ 107.578125, 76.516819 ], [ 108.281250, 76.516819 ], [ 108.281250, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.351896 ], [ 112.500000, 76.351896 ], [ 112.500000, 76.184995 ], [ 113.203125, 76.184995 ], [ 113.203125, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 74.959392 ], [ 112.500000, 74.959392 ], [ 112.500000, 74.775843 ], [ 111.796875, 74.775843 ], [ 111.796875, 74.590108 ], [ 111.093750, 74.590108 ], [ 111.093750, 74.402163 ], [ 110.390625, 74.402163 ], [ 110.390625, 74.211983 ], [ 109.687500, 74.211983 ], [ 109.687500, 74.019543 ], [ 110.390625, 74.019543 ], [ 110.390625, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 115.312500, 73.627789 ], [ 115.312500, 73.824820 ], [ 116.718750, 73.824820 ], [ 116.718750, 73.627789 ], [ 118.828125, 73.627789 ], [ 118.828125, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 123.750000, 73.824820 ], [ 123.750000, 73.627789 ], [ 127.265625, 73.627789 ], [ 127.265625, 73.428424 ], [ 127.968750, 73.428424 ], [ 127.968750, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.607120 ], [ 129.375000, 72.607120 ], [ 129.375000, 72.181804 ], [ 128.671875, 72.181804 ], [ 128.671875, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 71.074056 ], [ 130.781250, 71.074056 ], [ 130.781250, 70.844673 ], [ 131.484375, 70.844673 ], [ 131.484375, 71.300793 ], [ 132.187500, 71.300793 ], [ 132.187500, 71.524909 ], [ 132.890625, 71.524909 ], [ 132.890625, 71.300793 ], [ 134.296875, 71.300793 ], [ 134.296875, 71.524909 ], [ 137.109375, 71.524909 ], [ 137.109375, 71.300793 ], [ 138.515625, 71.300793 ], [ 138.515625, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.965388 ], [ 139.218750, 71.965388 ], [ 139.218750, 72.395706 ], [ 139.921875, 72.395706 ], [ 139.921875, 72.607120 ], [ 140.625000, 72.607120 ], [ 140.625000, 72.816074 ], [ 142.031250, 72.816074 ], [ 142.031250, 72.607120 ], [ 144.843750, 72.607120 ], [ 144.843750, 72.395706 ], [ 147.656250, 72.395706 ], [ 147.656250, 72.181804 ], [ 149.765625, 72.181804 ], [ 149.765625, 71.746432 ], [ 150.468750, 71.746432 ], [ 150.468750, 71.300793 ], [ 151.171875, 71.300793 ], [ 151.171875, 71.074056 ], [ 152.578125, 71.074056 ], [ 152.578125, 70.844673 ], [ 155.390625, 70.844673 ], [ 155.390625, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 69.411242 ], [ 162.421875, 69.411242 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.411242 ], [ 167.343750, 69.411242 ], [ 167.343750, 69.657086 ], [ 168.046875, 69.657086 ], [ 168.046875, 69.411242 ], [ 168.750000, 69.411242 ], [ 168.750000, 68.911005 ], [ 169.453125, 68.911005 ], [ 169.453125, 68.656555 ], [ 170.859375, 68.656555 ], [ 170.859375, 69.162558 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 171.562500, 70.140364 ], [ 171.562500, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 68.656555 ], [ 180.703125, 68.656555 ], [ 180.703125, 68.399180 ], [ 181.406250, 68.399180 ], [ 181.406250, 68.138852 ], [ 182.109375, 68.138852 ], [ 182.109375, 67.875541 ], [ 183.515625, 67.875541 ], [ 183.515625, 65.366837 ], [ 181.406250, 65.366837 ], [ 181.406250, 65.946472 ], [ 180.000000, 65.946472 ] ], [ [ 75.937500, 71.746432 ], [ 75.234375, 71.746432 ], [ 75.234375, 71.074056 ], [ 76.640625, 71.074056 ], [ 76.640625, 71.524909 ], [ 75.937500, 71.524909 ], [ 75.937500, 71.746432 ] ] ], [ [ [ 68.203125, 76.999935 ], [ 68.203125, 76.679785 ], [ 68.906250, 76.679785 ], [ 68.906250, 76.351896 ], [ 68.203125, 76.351896 ], [ 68.203125, 76.016094 ], [ 66.796875, 76.016094 ], [ 66.796875, 75.845169 ], [ 65.390625, 75.845169 ], [ 65.390625, 75.672197 ], [ 64.687500, 75.672197 ], [ 64.687500, 75.497157 ], [ 63.281250, 75.497157 ], [ 63.281250, 75.320025 ], [ 61.875000, 75.320025 ], [ 61.875000, 75.140778 ], [ 61.171875, 75.140778 ], [ 61.171875, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.775843 ], [ 59.765625, 74.775843 ], [ 59.765625, 74.590108 ], [ 59.062500, 74.590108 ], [ 59.062500, 74.402163 ], [ 58.359375, 74.402163 ], [ 58.359375, 74.019543 ], [ 57.656250, 74.019543 ], [ 57.656250, 73.627789 ], [ 56.953125, 73.627789 ], [ 56.953125, 73.022592 ], [ 56.250000, 73.022592 ], [ 56.250000, 72.607120 ], [ 55.546875, 72.607120 ], [ 55.546875, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.074056 ], [ 56.953125, 71.074056 ], [ 56.953125, 70.612614 ], [ 54.843750, 70.612614 ], [ 54.843750, 70.844673 ], [ 53.437500, 70.844673 ], [ 53.437500, 71.300793 ], [ 52.031250, 71.300793 ], [ 52.031250, 71.524909 ], [ 51.328125, 71.524909 ], [ 51.328125, 71.965388 ], [ 52.734375, 71.965388 ], [ 52.734375, 73.022592 ], [ 53.437500, 73.022592 ], [ 53.437500, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.627789 ], [ 53.437500, 73.824820 ], [ 54.140625, 73.824820 ], [ 54.140625, 74.019543 ], [ 54.843750, 74.019543 ], [ 54.843750, 74.211983 ], [ 55.546875, 74.211983 ], [ 55.546875, 74.402163 ], [ 56.250000, 74.402163 ], [ 56.250000, 74.775843 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.320025 ], [ 56.953125, 75.320025 ], [ 56.953125, 75.497157 ], [ 57.656250, 75.497157 ], [ 57.656250, 75.672197 ], [ 58.359375, 75.672197 ], [ 58.359375, 75.845169 ], [ 59.765625, 75.845169 ], [ 59.765625, 76.016094 ], [ 61.171875, 76.016094 ], [ 61.171875, 76.184995 ], [ 62.578125, 76.184995 ], [ 62.578125, 76.351896 ], [ 63.984375, 76.351896 ], [ 63.984375, 76.516819 ], [ 65.390625, 76.516819 ], [ 65.390625, 76.679785 ], [ 66.093750, 76.679785 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ], [ 67.500000, 76.999935 ], [ 68.203125, 76.999935 ] ] ], [ [ [ 96.328125, 81.093214 ], [ 96.328125, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.297927 ], [ 99.140625, 80.297927 ], [ 99.140625, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 78.903929 ], [ 99.140625, 78.903929 ], [ 99.140625, 78.767792 ], [ 96.328125, 78.767792 ], [ 96.328125, 78.903929 ], [ 94.921875, 78.903929 ], [ 94.921875, 79.038437 ], [ 94.218750, 79.038437 ], [ 94.218750, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 79.812302 ], [ 92.812500, 79.812302 ], [ 92.812500, 80.178713 ], [ 91.406250, 80.178713 ], [ 91.406250, 80.415707 ], [ 92.109375, 80.415707 ], [ 92.109375, 80.647035 ], [ 92.812500, 80.647035 ], [ 92.812500, 80.872827 ], [ 93.515625, 80.872827 ], [ 93.515625, 80.983688 ], [ 94.218750, 80.983688 ], [ 94.218750, 81.093214 ], [ 96.328125, 81.093214 ] ] ], [ [ [ 139.218750, 76.184995 ], [ 139.218750, 76.016094 ], [ 141.328125, 76.016094 ], [ 141.328125, 75.845169 ], [ 142.734375, 75.845169 ], [ 142.734375, 75.672197 ], [ 144.140625, 75.672197 ], [ 144.140625, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 75.140778 ], [ 144.140625, 75.140778 ], [ 144.140625, 74.775843 ], [ 140.625000, 74.775843 ], [ 140.625000, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.672197 ], [ 137.812500, 75.672197 ], [ 137.812500, 76.016094 ], [ 138.515625, 76.016094 ], [ 138.515625, 76.184995 ], [ 139.218750, 76.184995 ] ] ], [ [ [ 102.656250, 79.302640 ], [ 102.656250, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.903929 ], [ 104.765625, 78.903929 ], [ 104.765625, 78.767792 ], [ 105.468750, 78.767792 ], [ 105.468750, 78.490552 ], [ 104.765625, 78.490552 ], [ 104.765625, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.206563 ], [ 102.656250, 78.206563 ], [ 102.656250, 78.061989 ], [ 100.546875, 78.061989 ], [ 100.546875, 77.915669 ], [ 99.140625, 77.915669 ], [ 99.140625, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 78.490552 ], [ 100.546875, 78.490552 ], [ 100.546875, 78.903929 ], [ 101.250000, 78.903929 ], [ 101.250000, 79.171335 ], [ 101.953125, 79.171335 ], [ 101.953125, 79.302640 ], [ 102.656250, 79.302640 ] ] ], [ [ [ 50.625000, 80.760615 ], [ 50.625000, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.415707 ], [ 49.921875, 80.415707 ], [ 49.921875, 80.297927 ], [ 49.218750, 80.297927 ], [ 49.218750, 80.178713 ], [ 48.515625, 80.178713 ], [ 48.515625, 80.058050 ], [ 47.109375, 80.058050 ], [ 47.109375, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.415707 ], [ 47.109375, 80.415707 ], [ 47.109375, 80.532071 ], [ 45.703125, 80.532071 ], [ 45.703125, 80.647035 ], [ 46.406250, 80.647035 ], [ 46.406250, 80.760615 ], [ 48.515625, 80.760615 ], [ 48.515625, 80.647035 ], [ 49.218750, 80.647035 ], [ 49.218750, 80.760615 ], [ 50.625000, 80.760615 ] ] ], [ [ [ 146.953125, 75.497157 ], [ 146.953125, 75.320025 ], [ 149.062500, 75.320025 ], [ 149.062500, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.959392 ], [ 149.765625, 74.959392 ], [ 149.765625, 74.775843 ], [ 146.953125, 74.775843 ], [ 146.953125, 74.959392 ], [ 146.250000, 74.959392 ], [ 146.250000, 75.497157 ], [ 146.953125, 75.497157 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 142.031250, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.428424 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 139.921875, 73.226700 ], [ 139.921875, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.824820 ], [ 142.031250, 73.824820 ] ] ], [ [ [ 180.703125, 71.524909 ], [ 180.703125, 71.300793 ], [ 182.109375, 71.300793 ], [ 182.109375, 70.844673 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 179.296875, 71.074056 ], [ 179.296875, 71.300793 ], [ 180.000000, 71.300793 ], [ 180.000000, 71.524909 ], [ 180.703125, 71.524909 ] ] ], [ [ [ 22.500000, 54.977614 ], [ 22.500000, 54.162434 ], [ 19.687500, 54.162434 ], [ 19.687500, 54.977614 ], [ 22.500000, 54.977614 ] ] ], [ [ [ 142.734375, 53.748711 ], [ 142.031250, 53.748711 ], [ 142.031250, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 53.748711 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 11.178402 ], [ -0.703125, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.000000, 7.710992 ], [ 0.000000, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 5.615986 ], [ -1.406250, 5.615986 ], [ -1.406250, 4.915833 ], [ -3.515625, 4.915833 ], [ -3.515625, 7.710992 ], [ -2.812500, 7.710992 ], [ -2.812500, 9.102097 ], [ -3.515625, 9.102097 ], [ -3.515625, 11.178402 ], [ -0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.074056 ], [ 28.125000, 70.844673 ], [ 29.531250, 70.844673 ], [ 29.531250, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.377854 ], [ 31.640625, 70.377854 ], [ 31.640625, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 69.900118 ], [ 30.937500, 69.900118 ], [ 30.937500, 69.411242 ], [ 30.234375, 69.411242 ], [ 30.234375, 69.162558 ], [ 28.828125, 69.162558 ], [ 28.828125, 69.657086 ], [ 28.125000, 69.657086 ], [ 28.125000, 69.900118 ], [ 26.015625, 69.900118 ], [ 26.015625, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.656555 ], [ 23.906250, 68.656555 ], [ 23.906250, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.399180 ], [ 17.578125, 68.399180 ], [ 17.578125, 68.138852 ], [ 16.875000, 68.138852 ], [ 16.875000, 67.609221 ], [ 16.171875, 67.609221 ], [ 16.171875, 67.067433 ], [ 15.468750, 67.067433 ], [ 15.468750, 66.513260 ], [ 14.765625, 66.513260 ], [ 14.765625, 65.658275 ], [ 14.062500, 65.658275 ], [ 14.062500, 65.072130 ], [ 13.359375, 65.072130 ], [ 13.359375, 64.472794 ], [ 14.062500, 64.472794 ], [ 14.062500, 64.168107 ], [ 12.656250, 64.168107 ], [ 12.656250, 63.548552 ], [ 11.953125, 63.548552 ], [ 11.953125, 61.606396 ], [ 12.656250, 61.606396 ], [ 12.656250, 60.586967 ], [ 11.953125, 60.586967 ], [ 11.953125, 59.888937 ], [ 11.250000, 59.888937 ], [ 11.250000, 59.175928 ], [ 9.843750, 59.175928 ], [ 9.843750, 58.813742 ], [ 9.140625, 58.813742 ], [ 9.140625, 58.447733 ], [ 8.437500, 58.447733 ], [ 8.437500, 58.077876 ], [ 5.625000, 58.077876 ], [ 5.625000, 60.586967 ], [ 4.921875, 60.586967 ], [ 4.921875, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.593341 ], [ 6.328125, 62.593341 ], [ 6.328125, 62.915233 ], [ 7.734375, 62.915233 ], [ 7.734375, 63.233627 ], [ 8.437500, 63.233627 ], [ 8.437500, 63.548552 ], [ 9.140625, 63.548552 ], [ 9.140625, 63.860036 ], [ 9.843750, 63.860036 ], [ 9.843750, 64.168107 ], [ 10.546875, 64.168107 ], [ 10.546875, 64.472794 ], [ 11.250000, 64.472794 ], [ 11.250000, 65.072130 ], [ 11.953125, 65.072130 ], [ 11.953125, 65.658275 ], [ 12.656250, 65.658275 ], [ 12.656250, 66.231457 ], [ 13.359375, 66.231457 ], [ 13.359375, 66.791909 ], [ 14.062500, 66.791909 ], [ 14.062500, 67.339861 ], [ 14.765625, 67.339861 ], [ 14.765625, 67.875541 ], [ 15.468750, 67.875541 ], [ 15.468750, 68.399180 ], [ 16.171875, 68.399180 ], [ 16.171875, 68.656555 ], [ 16.875000, 68.656555 ], [ 16.875000, 68.911005 ], [ 17.578125, 68.911005 ], [ 17.578125, 69.411242 ], [ 18.281250, 69.411242 ], [ 18.281250, 69.657086 ], [ 18.984375, 69.657086 ], [ 18.984375, 69.900118 ], [ 20.390625, 69.900118 ], [ 20.390625, 70.140364 ], [ 23.203125, 70.140364 ], [ 23.203125, 70.377854 ], [ 23.906250, 70.377854 ], [ 23.906250, 70.844673 ], [ 24.609375, 70.844673 ], [ 24.609375, 71.074056 ], [ 28.125000, 71.074056 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 16.875000, 79.935918 ], [ 17.578125, 79.935918 ], [ 17.578125, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.302640 ], [ 20.390625, 79.302640 ], [ 20.390625, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.903929 ], [ 21.796875, 78.903929 ], [ 21.796875, 78.767792 ], [ 20.390625, 78.767792 ], [ 20.390625, 78.630006 ], [ 18.984375, 78.630006 ], [ 18.984375, 78.206563 ], [ 18.281250, 78.206563 ], [ 18.281250, 77.617709 ], [ 17.578125, 77.617709 ], [ 17.578125, 77.157163 ], [ 16.875000, 77.157163 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 76.999935 ], [ 14.765625, 76.999935 ], [ 14.765625, 77.157163 ], [ 14.062500, 77.157163 ], [ 14.062500, 77.466028 ], [ 14.765625, 77.466028 ], [ 14.765625, 77.767582 ], [ 14.062500, 77.767582 ], [ 14.062500, 77.915669 ], [ 13.359375, 77.915669 ], [ 13.359375, 78.206563 ], [ 12.656250, 78.206563 ], [ 12.656250, 78.490552 ], [ 11.953125, 78.490552 ], [ 11.953125, 78.767792 ], [ 11.250000, 78.767792 ], [ 11.250000, 79.302640 ], [ 10.546875, 79.302640 ], [ 10.546875, 79.687184 ], [ 11.250000, 79.687184 ], [ 11.250000, 79.812302 ], [ 12.656250, 79.812302 ], [ 12.656250, 79.935918 ], [ 13.359375, 79.935918 ], [ 13.359375, 79.812302 ], [ 14.062500, 79.812302 ], [ 14.062500, 79.687184 ], [ 15.468750, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 24.609375, 80.532071 ], [ 24.609375, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 79.935918 ], [ 26.718750, 79.935918 ], [ 26.718750, 79.687184 ], [ 26.015625, 79.687184 ], [ 26.015625, 79.560546 ], [ 25.312500, 79.560546 ], [ 25.312500, 79.432371 ], [ 21.093750, 79.432371 ], [ 21.093750, 79.560546 ], [ 20.390625, 79.560546 ], [ 20.390625, 79.687184 ], [ 19.687500, 79.687184 ], [ 19.687500, 79.812302 ], [ 18.281250, 79.812302 ], [ 18.281250, 80.058050 ], [ 17.578125, 80.058050 ], [ 17.578125, 80.297927 ], [ 18.281250, 80.297927 ], [ 18.281250, 80.415707 ], [ 19.687500, 80.415707 ], [ 19.687500, 80.532071 ], [ 21.093750, 80.532071 ], [ 21.093750, 80.415707 ], [ 22.500000, 80.415707 ], [ 22.500000, 80.532071 ], [ 24.609375, 80.532071 ] ] ], [ [ [ 23.203125, 78.349411 ], [ 23.203125, 77.915669 ], [ 24.609375, 77.915669 ], [ 24.609375, 77.767582 ], [ 23.906250, 77.767582 ], [ 23.906250, 77.617709 ], [ 23.203125, 77.617709 ], [ 23.203125, 77.466028 ], [ 21.093750, 77.466028 ], [ 21.093750, 77.617709 ], [ 20.390625, 77.617709 ], [ 20.390625, 77.767582 ], [ 21.093750, 77.767582 ], [ 21.093750, 78.206563 ], [ 21.796875, 78.206563 ], [ 21.796875, 78.349411 ], [ 23.203125, 78.349411 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 80.156250, 72.181804 ], [ 80.156250, 73.824820 ], [ 81.562500, 73.824820 ], [ 81.562500, 74.019543 ], [ 82.265625, 74.019543 ], [ 82.265625, 73.824820 ], [ 85.781250, 73.824820 ], [ 85.781250, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.211983 ], [ 85.781250, 74.211983 ], [ 85.781250, 74.775843 ], [ 86.484375, 74.775843 ], [ 86.484375, 75.140778 ], [ 87.890625, 75.140778 ], [ 87.890625, 75.320025 ], [ 88.593750, 75.320025 ], [ 88.593750, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.672197 ], [ 92.109375, 75.672197 ], [ 92.109375, 75.845169 ], [ 92.812500, 75.845169 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 76.016094 ], [ 97.031250, 76.016094 ], [ 97.031250, 76.184995 ], [ 97.734375, 76.184995 ], [ 97.734375, 76.351896 ], [ 98.437500, 76.351896 ], [ 98.437500, 76.516819 ], [ 100.546875, 76.516819 ], [ 100.546875, 76.999935 ], [ 101.250000, 76.999935 ], [ 101.250000, 77.157163 ], [ 101.953125, 77.157163 ], [ 101.953125, 77.312520 ], [ 102.656250, 77.312520 ], [ 102.656250, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.312520 ], [ 104.765625, 77.312520 ], [ 104.765625, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.679785 ], [ 107.578125, 76.679785 ], [ 107.578125, 76.840816 ], [ 110.390625, 76.840816 ], [ 110.390625, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.516819 ], [ 112.500000, 76.516819 ], [ 112.500000, 76.351896 ], [ 113.203125, 76.351896 ], [ 113.203125, 76.184995 ], [ 113.906250, 76.184995 ], [ 113.906250, 75.672197 ], [ 113.203125, 75.672197 ], [ 113.203125, 75.320025 ], [ 112.500000, 75.320025 ], [ 112.500000, 74.959392 ], [ 111.796875, 74.959392 ], [ 111.796875, 74.775843 ], [ 110.390625, 74.775843 ], [ 110.390625, 74.590108 ], [ 109.687500, 74.590108 ], [ 109.687500, 74.402163 ], [ 108.984375, 74.402163 ], [ 108.984375, 74.211983 ], [ 110.390625, 74.211983 ], [ 110.390625, 74.019543 ], [ 111.093750, 74.019543 ], [ 111.093750, 73.824820 ], [ 112.500000, 73.824820 ], [ 112.500000, 73.627789 ], [ 113.203125, 73.627789 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 115.312500, 73.627789 ], [ 115.312500, 73.824820 ], [ 116.015625, 73.824820 ], [ 116.015625, 73.627789 ], [ 118.125000, 73.627789 ], [ 118.125000, 73.428424 ], [ 118.828125, 73.428424 ], [ 118.828125, 73.226700 ], [ 120.234375, 73.226700 ], [ 120.234375, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 123.750000, 73.824820 ], [ 123.750000, 73.627789 ], [ 126.562500, 73.627789 ], [ 126.562500, 73.428424 ], [ 127.265625, 73.428424 ], [ 127.265625, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.816074 ], [ 128.671875, 72.816074 ], [ 128.671875, 72.395706 ], [ 127.968750, 72.395706 ], [ 127.968750, 71.965388 ], [ 128.671875, 71.965388 ], [ 128.671875, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 71.074056 ], [ 130.078125, 71.074056 ], [ 130.078125, 70.844673 ], [ 130.781250, 70.844673 ], [ 130.781250, 71.074056 ], [ 131.484375, 71.074056 ], [ 131.484375, 71.524909 ], [ 132.187500, 71.524909 ], [ 132.187500, 71.746432 ], [ 132.890625, 71.746432 ], [ 132.890625, 71.524909 ], [ 135.000000, 71.524909 ], [ 135.000000, 71.746432 ], [ 135.703125, 71.746432 ], [ 135.703125, 71.524909 ], [ 139.218750, 71.524909 ], [ 139.218750, 71.965388 ], [ 138.515625, 71.965388 ], [ 138.515625, 72.607120 ], [ 139.218750, 72.607120 ], [ 139.218750, 72.816074 ], [ 139.921875, 72.816074 ], [ 139.921875, 73.022592 ], [ 141.328125, 73.022592 ], [ 141.328125, 72.816074 ], [ 144.140625, 72.816074 ], [ 144.140625, 72.607120 ], [ 146.953125, 72.607120 ], [ 146.953125, 72.395706 ], [ 149.062500, 72.395706 ], [ 149.062500, 71.965388 ], [ 149.765625, 71.965388 ], [ 149.765625, 71.524909 ], [ 150.468750, 71.524909 ], [ 150.468750, 71.300793 ], [ 151.171875, 71.300793 ], [ 151.171875, 71.074056 ], [ 151.875000, 71.074056 ], [ 151.875000, 70.844673 ], [ 155.390625, 70.844673 ], [ 155.390625, 71.074056 ], [ 158.906250, 71.074056 ], [ 158.906250, 70.844673 ], [ 159.609375, 70.844673 ], [ 159.609375, 69.657086 ], [ 163.125000, 69.657086 ], [ 163.125000, 69.900118 ], [ 164.531250, 69.900118 ], [ 164.531250, 69.657086 ], [ 167.343750, 69.657086 ], [ 167.343750, 69.411242 ], [ 168.046875, 69.411242 ], [ 168.046875, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 68.911005 ], [ 170.156250, 68.911005 ], [ 170.156250, 69.411242 ], [ 169.453125, 69.411242 ], [ 169.453125, 69.900118 ], [ 170.156250, 69.900118 ], [ 170.156250, 70.140364 ], [ 170.859375, 70.140364 ], [ 170.859375, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.162558 ], [ 180.000000, 69.162558 ], [ 180.000000, 68.911005 ], [ 180.703125, 68.911005 ], [ 180.703125, 68.656555 ], [ 181.406250, 68.656555 ], [ 181.406250, 68.399180 ], [ 182.109375, 68.399180 ], [ 182.109375, 68.138852 ], [ 182.812500, 68.138852 ], [ 182.812500, 67.875541 ], [ 183.515625, 67.875541 ], [ 183.515625, 65.658275 ], [ 180.703125, 65.658275 ], [ 180.703125, 65.946472 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.072130 ], [ 179.296875, 65.072130 ], [ 179.296875, 64.774125 ], [ 177.187500, 64.774125 ], [ 177.187500, 64.472794 ], [ 177.890625, 64.472794 ], [ 177.890625, 63.860036 ], [ 178.593750, 63.860036 ], [ 178.593750, 63.233627 ], [ 179.296875, 63.233627 ], [ 179.296875, 62.593341 ], [ 177.187500, 62.593341 ], [ 177.187500, 62.267923 ], [ 175.781250, 62.267923 ], [ 175.781250, 61.938950 ], [ 173.671875, 61.938950 ], [ 173.671875, 61.606396 ], [ 172.265625, 61.606396 ], [ 172.265625, 61.270233 ], [ 171.562500, 61.270233 ], [ 171.562500, 60.930432 ], [ 170.859375, 60.930432 ], [ 170.859375, 60.586967 ], [ 170.156250, 60.586967 ], [ 170.156250, 59.888937 ], [ 169.453125, 59.888937 ], [ 169.453125, 60.239811 ], [ 167.343750, 60.239811 ], [ 167.343750, 59.888937 ], [ 163.125000, 59.888937 ], [ 163.125000, 59.175928 ], [ 162.421875, 59.175928 ], [ 162.421875, 58.447733 ], [ 161.718750, 58.447733 ], [ 161.718750, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.944974 ], [ 162.421875, 56.944974 ], [ 162.421875, 56.170023 ], [ 161.718750, 56.170023 ], [ 161.718750, 55.776573 ], [ 161.015625, 55.776573 ], [ 161.015625, 54.977614 ], [ 161.718750, 54.977614 ], [ 161.718750, 54.572062 ], [ 160.312500, 54.572062 ], [ 160.312500, 53.748711 ], [ 159.609375, 53.748711 ], [ 159.609375, 53.330873 ], [ 158.203125, 53.330873 ], [ 158.203125, 51.618017 ], [ 156.796875, 51.618017 ], [ 156.796875, 51.179343 ], [ 156.093750, 51.179343 ], [ 156.093750, 52.482780 ], [ 155.390625, 52.482780 ], [ 155.390625, 57.326521 ], [ 156.093750, 57.326521 ], [ 156.093750, 57.704147 ], [ 156.796875, 57.704147 ], [ 156.796875, 58.077876 ], [ 158.203125, 58.077876 ], [ 158.203125, 58.447733 ], [ 158.906250, 58.447733 ], [ 158.906250, 59.175928 ], [ 159.609375, 59.175928 ], [ 159.609375, 59.534318 ], [ 160.312500, 59.534318 ], [ 160.312500, 59.888937 ], [ 161.015625, 59.888937 ], [ 161.015625, 60.239811 ], [ 161.718750, 60.239811 ], [ 161.718750, 60.586967 ], [ 162.421875, 60.586967 ], [ 162.421875, 60.930432 ], [ 163.125000, 60.930432 ], [ 163.125000, 61.938950 ], [ 163.828125, 61.938950 ], [ 163.828125, 62.593341 ], [ 163.125000, 62.593341 ], [ 163.125000, 62.267923 ], [ 162.421875, 62.267923 ], [ 162.421875, 61.606396 ], [ 161.718750, 61.606396 ], [ 161.718750, 61.270233 ], [ 161.015625, 61.270233 ], [ 161.015625, 60.930432 ], [ 160.312500, 60.930432 ], [ 160.312500, 60.586967 ], [ 159.609375, 60.586967 ], [ 159.609375, 61.270233 ], [ 158.906250, 61.270233 ], [ 158.906250, 61.938950 ], [ 158.203125, 61.938950 ], [ 158.203125, 61.606396 ], [ 156.093750, 61.606396 ], [ 156.093750, 61.270233 ], [ 155.390625, 61.270233 ], [ 155.390625, 60.586967 ], [ 154.687500, 60.586967 ], [ 154.687500, 59.888937 ], [ 153.984375, 59.888937 ], [ 153.984375, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 59.175928 ], [ 152.578125, 59.175928 ], [ 152.578125, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.062500, 59.534318 ], [ 149.062500, 59.175928 ], [ 146.250000, 59.175928 ], [ 146.250000, 59.534318 ], [ 144.140625, 59.534318 ], [ 144.140625, 59.175928 ], [ 142.031250, 59.175928 ], [ 142.031250, 58.813742 ], [ 141.328125, 58.813742 ], [ 141.328125, 58.447733 ], [ 140.625000, 58.447733 ], [ 140.625000, 58.077876 ], [ 139.921875, 58.077876 ], [ 139.921875, 57.704147 ], [ 139.218750, 57.704147 ], [ 139.218750, 57.326521 ], [ 138.515625, 57.326521 ], [ 138.515625, 56.944974 ], [ 137.812500, 56.944974 ], [ 137.812500, 56.559482 ], [ 137.109375, 56.559482 ], [ 137.109375, 56.170023 ], [ 136.406250, 56.170023 ], [ 136.406250, 55.379110 ], [ 135.703125, 55.379110 ], [ 135.703125, 54.977614 ], [ 136.406250, 54.977614 ], [ 136.406250, 54.572062 ], [ 137.109375, 54.572062 ], [ 137.109375, 54.162434 ], [ 138.515625, 54.162434 ], [ 138.515625, 54.572062 ], [ 139.218750, 54.572062 ], [ 139.218750, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 53.330873 ], [ 141.328125, 53.330873 ], [ 141.328125, 53.748711 ], [ 142.031250, 53.748711 ], [ 142.031250, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 51.618017 ], [ 143.437500, 51.618017 ], [ 143.437500, 50.289339 ], [ 144.140625, 50.289339 ], [ 144.140625, 49.382373 ], [ 142.734375, 49.382373 ], [ 142.734375, 48.458352 ], [ 142.031250, 48.458352 ], [ 142.031250, 47.517201 ], [ 142.734375, 47.517201 ], [ 142.734375, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.558860 ], [ 141.328125, 46.558860 ], [ 141.328125, 49.382373 ], [ 142.031250, 49.382373 ], [ 142.031250, 51.618017 ], [ 141.328125, 51.618017 ], [ 141.328125, 52.052490 ], [ 140.625000, 52.052490 ], [ 140.625000, 51.618017 ], [ 139.921875, 51.618017 ], [ 139.921875, 47.989922 ], [ 139.218750, 47.989922 ], [ 139.218750, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.558860 ], [ 137.812500, 46.558860 ], [ 137.812500, 46.073231 ], [ 137.109375, 46.073231 ], [ 137.109375, 45.583290 ], [ 136.406250, 45.583290 ], [ 136.406250, 45.089036 ], [ 135.703125, 45.089036 ], [ 135.703125, 44.087585 ], [ 135.000000, 44.087585 ], [ 135.000000, 43.580391 ], [ 134.296875, 43.580391 ], [ 134.296875, 43.068888 ], [ 131.484375, 43.068888 ], [ 131.484375, 42.553080 ], [ 130.078125, 42.553080 ], [ 130.078125, 43.068888 ], [ 130.781250, 43.068888 ], [ 130.781250, 45.089036 ], [ 131.484375, 45.089036 ], [ 131.484375, 45.583290 ], [ 132.890625, 45.583290 ], [ 132.890625, 46.073231 ], [ 133.593750, 46.073231 ], [ 133.593750, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 48.458352 ], [ 132.890625, 48.458352 ], [ 132.890625, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.078125, 48.458352 ], [ 130.078125, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.837982 ], [ 127.265625, 49.837982 ], [ 127.265625, 51.179343 ], [ 126.562500, 51.179343 ], [ 126.562500, 52.482780 ], [ 125.859375, 52.482780 ], [ 125.859375, 52.908902 ], [ 124.453125, 52.908902 ], [ 124.453125, 53.330873 ], [ 123.046875, 53.330873 ], [ 123.046875, 53.748711 ], [ 121.640625, 53.748711 ], [ 121.640625, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 52.908902 ], [ 120.234375, 52.908902 ], [ 120.234375, 52.052490 ], [ 119.531250, 52.052490 ], [ 119.531250, 51.179343 ], [ 118.828125, 51.179343 ], [ 118.828125, 49.837982 ], [ 114.609375, 49.837982 ], [ 114.609375, 50.289339 ], [ 113.906250, 50.289339 ], [ 113.906250, 49.837982 ], [ 112.500000, 49.837982 ], [ 112.500000, 49.382373 ], [ 107.578125, 49.382373 ], [ 107.578125, 49.837982 ], [ 106.875000, 49.837982 ], [ 106.875000, 50.289339 ], [ 101.953125, 50.289339 ], [ 101.953125, 51.618017 ], [ 99.843750, 51.618017 ], [ 99.843750, 52.052490 ], [ 98.437500, 52.052490 ], [ 98.437500, 51.618017 ], [ 97.734375, 51.618017 ], [ 97.734375, 50.289339 ], [ 97.031250, 50.289339 ], [ 97.031250, 49.837982 ], [ 95.625000, 49.837982 ], [ 95.625000, 50.289339 ], [ 93.515625, 50.289339 ], [ 93.515625, 50.736455 ], [ 90.703125, 50.736455 ], [ 90.703125, 50.289339 ], [ 89.296875, 50.289339 ], [ 89.296875, 49.837982 ], [ 88.593750, 49.837982 ], [ 88.593750, 49.382373 ], [ 86.484375, 49.382373 ], [ 86.484375, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.289339 ], [ 84.375000, 50.289339 ], [ 84.375000, 50.736455 ], [ 83.671875, 50.736455 ], [ 83.671875, 51.179343 ], [ 79.453125, 51.179343 ], [ 79.453125, 51.618017 ], [ 78.750000, 51.618017 ], [ 78.750000, 52.482780 ], [ 78.046875, 52.482780 ], [ 78.046875, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.640625, 53.748711 ], [ 76.640625, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.234375, 54.162434 ], [ 75.234375, 53.748711 ], [ 73.125000, 53.748711 ], [ 73.125000, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 54.572062 ], [ 70.312500, 54.572062 ], [ 70.312500, 55.379110 ], [ 68.203125, 55.379110 ], [ 68.203125, 54.977614 ], [ 65.390625, 54.977614 ], [ 65.390625, 54.572062 ], [ 63.281250, 54.572062 ], [ 63.281250, 54.162434 ], [ 61.171875, 54.162434 ], [ 61.171875, 53.748711 ], [ 60.468750, 53.748711 ], [ 60.468750, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 52.908902 ], [ 60.468750, 52.908902 ], [ 60.468750, 52.052490 ], [ 59.765625, 52.052490 ], [ 59.765625, 51.618017 ], [ 61.171875, 51.618017 ], [ 61.171875, 51.179343 ], [ 59.765625, 51.179343 ], [ 59.765625, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 51.179343 ], [ 56.250000, 51.179343 ], [ 56.250000, 50.736455 ], [ 54.140625, 50.736455 ], [ 54.140625, 51.179343 ], [ 53.437500, 51.179343 ], [ 53.437500, 51.618017 ], [ 52.031250, 51.618017 ], [ 52.031250, 52.052490 ], [ 50.625000, 52.052490 ], [ 50.625000, 51.618017 ], [ 49.921875, 51.618017 ], [ 49.921875, 51.179343 ], [ 49.218750, 51.179343 ], [ 49.218750, 50.736455 ], [ 48.515625, 50.736455 ], [ 48.515625, 50.289339 ], [ 47.109375, 50.289339 ], [ 47.109375, 49.837982 ], [ 46.406250, 49.837982 ], [ 46.406250, 47.989922 ], [ 47.812500, 47.989922 ], [ 47.812500, 47.517201 ], [ 48.515625, 47.517201 ], [ 48.515625, 46.073231 ], [ 47.109375, 46.073231 ], [ 47.109375, 45.583290 ], [ 46.406250, 45.583290 ], [ 46.406250, 44.590467 ], [ 47.109375, 44.590467 ], [ 47.109375, 42.553080 ], [ 47.812500, 42.553080 ], [ 47.812500, 42.032974 ], [ 48.515625, 42.032974 ], [ 48.515625, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.553080 ], [ 43.593750, 42.553080 ], [ 43.593750, 43.068888 ], [ 42.187500, 43.068888 ], [ 42.187500, 43.580391 ], [ 39.375000, 43.580391 ], [ 39.375000, 44.087585 ], [ 38.671875, 44.087585 ], [ 38.671875, 44.590467 ], [ 37.265625, 44.590467 ], [ 37.265625, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 45.583290 ], [ 37.265625, 45.583290 ], [ 37.265625, 46.073231 ], [ 37.968750, 46.073231 ], [ 37.968750, 46.558860 ], [ 37.265625, 46.558860 ], [ 37.265625, 47.040182 ], [ 38.671875, 47.040182 ], [ 38.671875, 47.517201 ], [ 37.968750, 47.517201 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.382373 ], [ 39.375000, 49.382373 ], [ 39.375000, 49.837982 ], [ 37.968750, 49.837982 ], [ 37.968750, 50.289339 ], [ 35.156250, 50.289339 ], [ 35.156250, 51.179343 ], [ 34.453125, 51.179343 ], [ 34.453125, 51.618017 ], [ 33.750000, 51.618017 ], [ 33.750000, 52.482780 ], [ 30.937500, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.748711 ], [ 31.640625, 53.748711 ], [ 31.640625, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 54.572062 ], [ 30.234375, 54.572062 ], [ 30.234375, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.379110 ], [ 30.234375, 55.379110 ], [ 30.234375, 55.776573 ], [ 28.828125, 55.776573 ], [ 28.828125, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.559482 ], [ 27.421875, 56.559482 ], [ 27.421875, 57.326521 ], [ 26.718750, 57.326521 ], [ 26.718750, 57.704147 ], [ 27.421875, 57.704147 ], [ 27.421875, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.888937 ], [ 28.828125, 59.888937 ], [ 28.828125, 60.239811 ], [ 27.421875, 60.239811 ], [ 27.421875, 60.586967 ], [ 28.125000, 60.586967 ], [ 28.125000, 61.270233 ], [ 28.828125, 61.270233 ], [ 28.828125, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 61.938950 ], [ 30.234375, 61.938950 ], [ 30.234375, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.915233 ], [ 30.234375, 62.915233 ], [ 30.234375, 63.548552 ], [ 29.531250, 63.548552 ], [ 29.531250, 64.168107 ], [ 30.234375, 64.168107 ], [ 30.234375, 64.774125 ], [ 29.531250, 64.774125 ], [ 29.531250, 66.513260 ], [ 28.828125, 66.513260 ], [ 28.828125, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.875541 ], [ 28.828125, 67.875541 ], [ 28.828125, 68.138852 ], [ 28.125000, 68.138852 ], [ 28.125000, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.411242 ], [ 30.937500, 69.411242 ], [ 30.937500, 69.900118 ], [ 32.343750, 69.900118 ], [ 32.343750, 69.657086 ], [ 33.046875, 69.657086 ], [ 33.046875, 69.411242 ], [ 34.453125, 69.411242 ], [ 34.453125, 69.162558 ], [ 35.859375, 69.162558 ], [ 35.859375, 68.911005 ], [ 37.265625, 68.911005 ], [ 37.265625, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.399180 ], [ 39.375000, 68.399180 ], [ 39.375000, 68.138852 ], [ 40.078125, 68.138852 ], [ 40.078125, 67.875541 ], [ 40.781250, 67.875541 ], [ 40.781250, 66.513260 ], [ 39.375000, 66.513260 ], [ 39.375000, 66.231457 ], [ 36.562500, 66.231457 ], [ 36.562500, 66.513260 ], [ 34.453125, 66.513260 ], [ 34.453125, 66.791909 ], [ 33.046875, 66.791909 ], [ 33.046875, 66.513260 ], [ 33.750000, 66.513260 ], [ 33.750000, 65.946472 ], [ 34.453125, 65.946472 ], [ 34.453125, 64.168107 ], [ 35.859375, 64.168107 ], [ 35.859375, 63.860036 ], [ 36.562500, 63.860036 ], [ 36.562500, 64.472794 ], [ 35.859375, 64.472794 ], [ 35.859375, 65.072130 ], [ 37.968750, 65.072130 ], [ 37.968750, 64.774125 ], [ 40.078125, 64.774125 ], [ 40.078125, 65.072130 ], [ 39.375000, 65.072130 ], [ 39.375000, 65.658275 ], [ 40.078125, 65.658275 ], [ 40.078125, 65.946472 ], [ 40.781250, 65.946472 ], [ 40.781250, 66.231457 ], [ 41.484375, 66.231457 ], [ 41.484375, 66.513260 ], [ 42.890625, 66.513260 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.513260 ], [ 44.296875, 66.513260 ], [ 44.296875, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 68.399180 ], [ 45.703125, 68.399180 ], [ 45.703125, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.609221 ], [ 45.000000, 67.609221 ], [ 45.000000, 66.791909 ], [ 47.109375, 66.791909 ], [ 47.109375, 67.067433 ], [ 47.812500, 67.067433 ], [ 47.812500, 67.609221 ], [ 48.515625, 67.609221 ], [ 48.515625, 67.875541 ], [ 49.921875, 67.875541 ], [ 49.921875, 68.138852 ], [ 50.625000, 68.138852 ], [ 50.625000, 68.399180 ], [ 52.031250, 68.399180 ], [ 52.031250, 68.656555 ], [ 53.437500, 68.656555 ], [ 53.437500, 68.138852 ], [ 54.140625, 68.138852 ], [ 54.140625, 68.399180 ], [ 54.843750, 68.399180 ], [ 54.843750, 68.656555 ], [ 59.062500, 68.656555 ], [ 59.062500, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.656555 ], [ 60.468750, 68.656555 ], [ 60.468750, 69.411242 ], [ 59.765625, 69.411242 ], [ 59.765625, 69.657086 ], [ 60.468750, 69.657086 ], [ 60.468750, 69.900118 ], [ 61.171875, 69.900118 ], [ 61.171875, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.411242 ], [ 64.687500, 69.411242 ], [ 64.687500, 69.162558 ], [ 65.390625, 69.162558 ], [ 65.390625, 68.911005 ], [ 66.093750, 68.911005 ], [ 66.093750, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.138852 ], [ 68.203125, 68.138852 ], [ 68.203125, 68.399180 ], [ 68.906250, 68.399180 ], [ 68.906250, 68.656555 ], [ 68.203125, 68.656555 ], [ 68.203125, 68.911005 ], [ 67.500000, 68.911005 ], [ 67.500000, 69.411242 ], [ 66.796875, 69.411242 ], [ 66.796875, 70.377854 ], [ 66.093750, 70.377854 ], [ 66.093750, 71.074056 ], [ 66.796875, 71.074056 ], [ 66.796875, 71.524909 ], [ 67.500000, 71.524909 ], [ 67.500000, 71.746432 ], [ 68.203125, 71.746432 ], [ 68.203125, 72.395706 ], [ 68.906250, 72.395706 ], [ 68.906250, 73.022592 ], [ 71.015625, 73.022592 ], [ 71.015625, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 71.965388 ], [ 71.718750, 71.965388 ], [ 71.718750, 71.300793 ], [ 72.421875, 71.300793 ], [ 72.421875, 71.524909 ], [ 73.125000, 71.524909 ], [ 73.125000, 71.746432 ], [ 73.828125, 71.746432 ], [ 73.828125, 71.965388 ], [ 74.531250, 71.965388 ], [ 74.531250, 72.607120 ], [ 75.234375, 72.607120 ], [ 75.234375, 71.965388 ], [ 75.937500, 71.965388 ], [ 75.937500, 72.181804 ], [ 77.343750, 72.181804 ], [ 77.343750, 72.395706 ], [ 79.453125, 72.395706 ], [ 79.453125, 72.181804 ], [ 80.156250, 72.181804 ] ], [ [ 134.296875, 48.922499 ], [ 134.296875, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 48.922499 ], [ 134.296875, 48.922499 ] ], [ [ 72.421875, 71.300793 ], [ 72.421875, 68.911005 ], [ 73.125000, 68.911005 ], [ 73.125000, 67.609221 ], [ 72.421875, 67.609221 ], [ 72.421875, 67.067433 ], [ 71.718750, 67.067433 ], [ 71.718750, 66.513260 ], [ 71.015625, 66.513260 ], [ 71.015625, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.791909 ], [ 73.828125, 66.791909 ], [ 73.828125, 67.609221 ], [ 74.531250, 67.609221 ], [ 74.531250, 68.138852 ], [ 73.828125, 68.138852 ], [ 73.828125, 68.656555 ], [ 74.531250, 68.656555 ], [ 74.531250, 69.162558 ], [ 73.828125, 69.162558 ], [ 73.828125, 69.411242 ], [ 73.125000, 69.411242 ], [ 73.125000, 70.140364 ], [ 73.828125, 70.140364 ], [ 73.828125, 70.844673 ], [ 73.125000, 70.844673 ], [ 73.125000, 71.300793 ], [ 72.421875, 71.300793 ] ], [ [ 75.234375, 71.524909 ], [ 75.234375, 71.300793 ], [ 75.937500, 71.300793 ], [ 75.937500, 71.524909 ], [ 75.234375, 71.524909 ] ], [ [ 80.156250, 72.181804 ], [ 80.156250, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 72.181804 ], [ 80.156250, 72.181804 ] ] ], [ [ [ 54.140625, 68.656555 ], [ 53.437500, 68.656555 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 54.140625, 68.656555 ] ] ], [ [ [ 68.203125, 76.840816 ], [ 68.203125, 76.516819 ], [ 67.500000, 76.516819 ], [ 67.500000, 76.184995 ], [ 66.093750, 76.184995 ], [ 66.093750, 76.016094 ], [ 64.687500, 76.016094 ], [ 64.687500, 75.845169 ], [ 63.984375, 75.845169 ], [ 63.984375, 75.672197 ], [ 63.281250, 75.672197 ], [ 63.281250, 75.497157 ], [ 61.875000, 75.497157 ], [ 61.875000, 75.320025 ], [ 61.171875, 75.320025 ], [ 61.171875, 75.140778 ], [ 60.468750, 75.140778 ], [ 60.468750, 74.959392 ], [ 59.765625, 74.959392 ], [ 59.765625, 74.590108 ], [ 59.062500, 74.590108 ], [ 59.062500, 74.402163 ], [ 58.359375, 74.402163 ], [ 58.359375, 74.019543 ], [ 57.656250, 74.019543 ], [ 57.656250, 73.627789 ], [ 56.953125, 73.627789 ], [ 56.953125, 73.226700 ], [ 56.250000, 73.226700 ], [ 56.250000, 72.816074 ], [ 55.546875, 72.816074 ], [ 55.546875, 72.395706 ], [ 54.843750, 72.395706 ], [ 54.843750, 71.965388 ], [ 55.546875, 71.965388 ], [ 55.546875, 71.524909 ], [ 56.250000, 71.524909 ], [ 56.250000, 71.074056 ], [ 56.953125, 71.074056 ], [ 56.953125, 70.844673 ], [ 53.437500, 70.844673 ], [ 53.437500, 71.074056 ], [ 52.734375, 71.074056 ], [ 52.734375, 71.300793 ], [ 51.328125, 71.300793 ], [ 51.328125, 72.181804 ], [ 52.031250, 72.181804 ], [ 52.031250, 72.816074 ], [ 52.734375, 72.816074 ], [ 52.734375, 73.226700 ], [ 53.437500, 73.226700 ], [ 53.437500, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.627789 ], [ 53.437500, 73.824820 ], [ 54.140625, 73.824820 ], [ 54.140625, 74.211983 ], [ 54.843750, 74.211983 ], [ 54.843750, 74.590108 ], [ 55.546875, 74.590108 ], [ 55.546875, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.320025 ], [ 56.953125, 75.320025 ], [ 56.953125, 75.497157 ], [ 57.656250, 75.497157 ], [ 57.656250, 75.672197 ], [ 58.359375, 75.672197 ], [ 58.359375, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 76.016094 ], [ 60.468750, 76.016094 ], [ 60.468750, 76.184995 ], [ 61.171875, 76.184995 ], [ 61.171875, 76.351896 ], [ 63.281250, 76.351896 ], [ 63.281250, 76.516819 ], [ 64.687500, 76.516819 ], [ 64.687500, 76.679785 ], [ 66.093750, 76.679785 ], [ 66.093750, 76.840816 ], [ 68.203125, 76.840816 ] ] ], [ [ [ 96.328125, 81.201420 ], [ 96.328125, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.297927 ], [ 99.140625, 80.297927 ], [ 99.140625, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 78.903929 ], [ 99.140625, 78.903929 ], [ 99.140625, 78.767792 ], [ 97.031250, 78.767792 ], [ 97.031250, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 79.038437 ], [ 94.921875, 79.038437 ], [ 94.921875, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.302640 ], [ 92.812500, 79.302640 ], [ 92.812500, 79.812302 ], [ 92.109375, 79.812302 ], [ 92.109375, 80.178713 ], [ 91.406250, 80.178713 ], [ 91.406250, 80.297927 ], [ 90.703125, 80.297927 ], [ 90.703125, 80.415707 ], [ 91.406250, 80.415707 ], [ 91.406250, 80.647035 ], [ 92.109375, 80.647035 ], [ 92.109375, 80.760615 ], [ 92.812500, 80.760615 ], [ 92.812500, 80.983688 ], [ 93.515625, 80.983688 ], [ 93.515625, 81.093214 ], [ 94.218750, 81.093214 ], [ 94.218750, 81.201420 ], [ 96.328125, 81.201420 ] ] ], [ [ [ 141.328125, 76.184995 ], [ 141.328125, 76.016094 ], [ 142.734375, 76.016094 ], [ 142.734375, 75.845169 ], [ 144.140625, 75.845169 ], [ 144.140625, 75.672197 ], [ 144.843750, 75.672197 ], [ 144.843750, 75.320025 ], [ 144.140625, 75.320025 ], [ 144.140625, 74.959392 ], [ 139.921875, 74.959392 ], [ 139.921875, 74.775843 ], [ 137.812500, 74.775843 ], [ 137.812500, 74.959392 ], [ 137.109375, 74.959392 ], [ 137.109375, 75.140778 ], [ 136.406250, 75.140778 ], [ 136.406250, 75.672197 ], [ 137.109375, 75.672197 ], [ 137.109375, 76.016094 ], [ 138.515625, 76.016094 ], [ 138.515625, 76.184995 ], [ 141.328125, 76.184995 ] ] ], [ [ [ 102.656250, 79.302640 ], [ 102.656250, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.767792 ], [ 104.765625, 78.767792 ], [ 104.765625, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.206563 ], [ 101.250000, 78.206563 ], [ 101.250000, 78.061989 ], [ 99.140625, 78.061989 ], [ 99.140625, 78.206563 ], [ 99.843750, 78.206563 ], [ 99.843750, 78.630006 ], [ 100.546875, 78.630006 ], [ 100.546875, 79.038437 ], [ 101.250000, 79.038437 ], [ 101.250000, 79.302640 ], [ 102.656250, 79.302640 ] ] ], [ [ [ 50.625000, 80.872827 ], [ 50.625000, 80.760615 ], [ 51.328125, 80.760615 ], [ 51.328125, 80.647035 ], [ 50.625000, 80.647035 ], [ 50.625000, 80.532071 ], [ 49.921875, 80.532071 ], [ 49.921875, 80.415707 ], [ 48.515625, 80.415707 ], [ 48.515625, 80.058050 ], [ 47.109375, 80.058050 ], [ 47.109375, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.647035 ], [ 45.000000, 80.647035 ], [ 45.000000, 80.760615 ], [ 46.406250, 80.760615 ], [ 46.406250, 80.872827 ], [ 47.812500, 80.872827 ], [ 47.812500, 80.647035 ], [ 48.515625, 80.647035 ], [ 48.515625, 80.760615 ], [ 49.218750, 80.760615 ], [ 49.218750, 80.872827 ], [ 50.625000, 80.872827 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 147.656250, 75.320025 ], [ 149.062500, 75.320025 ], [ 149.062500, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.959392 ], [ 149.765625, 74.959392 ], [ 149.765625, 74.775843 ], [ 147.656250, 74.775843 ], [ 147.656250, 74.959392 ], [ 146.953125, 74.959392 ], [ 146.953125, 75.140778 ], [ 145.546875, 75.140778 ], [ 145.546875, 75.320025 ], [ 146.250000, 75.320025 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ 142.734375, 73.824820 ], [ 142.734375, 73.627789 ], [ 143.437500, 73.627789 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.428424 ], [ 139.921875, 73.428424 ], [ 139.921875, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.824820 ], [ 142.734375, 73.824820 ] ] ], [ [ [ 180.703125, 71.746432 ], [ 180.703125, 71.524909 ], [ 181.406250, 71.524909 ], [ 181.406250, 71.300793 ], [ 182.109375, 71.300793 ], [ 182.109375, 71.074056 ], [ 180.703125, 71.074056 ], [ 180.703125, 70.844673 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.300793 ], [ 180.000000, 71.300793 ], [ 180.000000, 71.746432 ], [ 180.703125, 71.746432 ] ] ], [ [ [ 21.796875, 55.379110 ], [ 21.796875, 54.977614 ], [ 22.500000, 54.977614 ], [ 22.500000, 54.572062 ], [ 19.687500, 54.572062 ], [ 19.687500, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.379110 ], [ 21.796875, 55.379110 ] ] ], [ [ [ 43.593750, 68.399180 ], [ 42.890625, 68.399180 ], [ 42.890625, 68.656555 ], [ 43.593750, 68.656555 ], [ 43.593750, 68.399180 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.776573 ], [ 12.656250, 55.379110 ], [ 11.953125, 55.379110 ], [ 11.953125, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.776573 ], [ 12.656250, 55.776573 ] ] ], [ [ [ 10.546875, 57.326521 ], [ 10.546875, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 56.170023 ], [ 10.546875, 56.170023 ], [ 10.546875, 55.776573 ], [ 9.843750, 55.776573 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 56.944974 ], [ 9.140625, 56.944974 ], [ 9.140625, 57.326521 ], [ 10.546875, 57.326521 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.300793 ], [ 28.125000, 71.074056 ], [ 28.828125, 71.074056 ], [ 28.828125, 70.844673 ], [ 30.234375, 70.844673 ], [ 30.234375, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.377854 ], [ 29.531250, 70.377854 ], [ 29.531250, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 69.657086 ], [ 30.937500, 69.657086 ], [ 30.937500, 69.411242 ], [ 29.531250, 69.411242 ], [ 29.531250, 69.162558 ], [ 28.125000, 69.162558 ], [ 28.125000, 69.411242 ], [ 28.828125, 69.411242 ], [ 28.828125, 69.900118 ], [ 28.125000, 69.900118 ], [ 28.125000, 70.140364 ], [ 26.718750, 70.140364 ], [ 26.718750, 69.900118 ], [ 26.015625, 69.900118 ], [ 26.015625, 69.411242 ], [ 25.312500, 69.411242 ], [ 25.312500, 68.911005 ], [ 24.609375, 68.911005 ], [ 24.609375, 68.656555 ], [ 23.203125, 68.656555 ], [ 23.203125, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.656555 ], [ 17.578125, 68.656555 ], [ 17.578125, 68.138852 ], [ 16.171875, 68.138852 ], [ 16.171875, 67.609221 ], [ 15.468750, 67.609221 ], [ 15.468750, 66.791909 ], [ 14.765625, 66.791909 ], [ 14.765625, 65.946472 ], [ 14.062500, 65.946472 ], [ 14.062500, 65.366837 ], [ 13.359375, 65.366837 ], [ 13.359375, 64.168107 ], [ 11.953125, 64.168107 ], [ 11.953125, 63.548552 ], [ 11.250000, 63.548552 ], [ 11.250000, 62.593341 ], [ 11.953125, 62.593341 ], [ 11.953125, 59.888937 ], [ 11.250000, 59.888937 ], [ 11.250000, 59.175928 ], [ 9.140625, 59.175928 ], [ 9.140625, 58.813742 ], [ 8.437500, 58.813742 ], [ 8.437500, 58.447733 ], [ 7.734375, 58.447733 ], [ 7.734375, 58.077876 ], [ 6.328125, 58.077876 ], [ 6.328125, 58.447733 ], [ 5.625000, 58.447733 ], [ 5.625000, 59.175928 ], [ 4.921875, 59.175928 ], [ 4.921875, 62.593341 ], [ 5.625000, 62.593341 ], [ 5.625000, 62.915233 ], [ 7.031250, 62.915233 ], [ 7.031250, 63.233627 ], [ 8.437500, 63.233627 ], [ 8.437500, 63.860036 ], [ 9.140625, 63.860036 ], [ 9.140625, 64.472794 ], [ 9.843750, 64.472794 ], [ 9.843750, 64.774125 ], [ 10.546875, 64.774125 ], [ 10.546875, 65.366837 ], [ 11.250000, 65.366837 ], [ 11.250000, 65.658275 ], [ 11.953125, 65.658275 ], [ 11.953125, 66.231457 ], [ 12.656250, 66.231457 ], [ 12.656250, 66.791909 ], [ 13.359375, 66.791909 ], [ 13.359375, 67.339861 ], [ 14.062500, 67.339861 ], [ 14.062500, 67.875541 ], [ 14.765625, 67.875541 ], [ 14.765625, 68.138852 ], [ 15.468750, 68.138852 ], [ 15.468750, 68.399180 ], [ 16.171875, 68.399180 ], [ 16.171875, 68.656555 ], [ 16.875000, 68.656555 ], [ 16.875000, 68.911005 ], [ 17.578125, 68.911005 ], [ 17.578125, 69.411242 ], [ 18.281250, 69.411242 ], [ 18.281250, 69.657086 ], [ 18.984375, 69.657086 ], [ 18.984375, 69.900118 ], [ 19.687500, 69.900118 ], [ 19.687500, 70.140364 ], [ 21.093750, 70.140364 ], [ 21.093750, 70.377854 ], [ 23.203125, 70.377854 ], [ 23.203125, 70.844673 ], [ 23.906250, 70.844673 ], [ 23.906250, 71.074056 ], [ 27.421875, 71.074056 ], [ 27.421875, 71.300793 ], [ 28.125000, 71.300793 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 16.875000, 79.935918 ], [ 17.578125, 79.935918 ], [ 17.578125, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.171335 ], [ 20.390625, 79.171335 ], [ 20.390625, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.903929 ], [ 20.390625, 78.903929 ], [ 20.390625, 78.767792 ], [ 19.687500, 78.767792 ], [ 19.687500, 78.630006 ], [ 18.984375, 78.630006 ], [ 18.984375, 78.206563 ], [ 18.281250, 78.206563 ], [ 18.281250, 77.767582 ], [ 17.578125, 77.767582 ], [ 17.578125, 77.312520 ], [ 16.875000, 77.312520 ], [ 16.875000, 76.840816 ], [ 14.765625, 76.840816 ], [ 14.765625, 77.157163 ], [ 14.062500, 77.157163 ], [ 14.062500, 77.312520 ], [ 13.359375, 77.312520 ], [ 13.359375, 77.617709 ], [ 14.062500, 77.617709 ], [ 14.062500, 77.767582 ], [ 13.359375, 77.767582 ], [ 13.359375, 77.915669 ], [ 12.656250, 77.915669 ], [ 12.656250, 78.206563 ], [ 11.953125, 78.206563 ], [ 11.953125, 78.490552 ], [ 11.250000, 78.490552 ], [ 11.250000, 78.767792 ], [ 10.546875, 78.767792 ], [ 10.546875, 79.302640 ], [ 9.843750, 79.302640 ], [ 9.843750, 79.687184 ], [ 10.546875, 79.687184 ], [ 10.546875, 79.812302 ], [ 11.953125, 79.812302 ], [ 11.953125, 79.935918 ], [ 12.656250, 79.935918 ], [ 12.656250, 79.812302 ], [ 13.359375, 79.812302 ], [ 13.359375, 79.687184 ], [ 14.765625, 79.687184 ], [ 14.765625, 79.812302 ], [ 15.468750, 79.812302 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 23.203125, 80.647035 ], [ 23.203125, 80.532071 ], [ 24.609375, 80.532071 ], [ 24.609375, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.058050 ], [ 26.718750, 80.058050 ], [ 26.718750, 79.935918 ], [ 26.015625, 79.935918 ], [ 26.015625, 79.687184 ], [ 25.312500, 79.687184 ], [ 25.312500, 79.560546 ], [ 24.609375, 79.560546 ], [ 24.609375, 79.432371 ], [ 21.093750, 79.432371 ], [ 21.093750, 79.560546 ], [ 19.687500, 79.560546 ], [ 19.687500, 79.935918 ], [ 18.281250, 79.935918 ], [ 18.281250, 80.058050 ], [ 17.578125, 80.058050 ], [ 17.578125, 80.297927 ], [ 16.875000, 80.297927 ], [ 16.875000, 80.415707 ], [ 18.281250, 80.415707 ], [ 18.281250, 80.532071 ], [ 19.687500, 80.532071 ], [ 19.687500, 80.647035 ], [ 20.390625, 80.647035 ], [ 20.390625, 80.532071 ], [ 21.093750, 80.532071 ], [ 21.093750, 80.415707 ], [ 21.796875, 80.415707 ], [ 21.796875, 80.532071 ], [ 22.500000, 80.532071 ], [ 22.500000, 80.647035 ], [ 23.203125, 80.647035 ] ] ], [ [ [ 22.500000, 78.490552 ], [ 22.500000, 78.349411 ], [ 23.203125, 78.349411 ], [ 23.203125, 78.061989 ], [ 23.906250, 78.061989 ], [ 23.906250, 77.915669 ], [ 24.609375, 77.915669 ], [ 24.609375, 77.767582 ], [ 23.906250, 77.767582 ], [ 23.906250, 77.617709 ], [ 22.500000, 77.617709 ], [ 22.500000, 77.466028 ], [ 21.093750, 77.466028 ], [ 21.093750, 77.617709 ], [ 20.390625, 77.617709 ], [ 20.390625, 77.915669 ], [ 21.093750, 77.915669 ], [ 21.093750, 78.206563 ], [ 20.390625, 78.206563 ], [ 20.390625, 78.349411 ], [ 21.796875, 78.349411 ], [ 21.796875, 78.490552 ], [ 22.500000, 78.490552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 69.162558 ], [ 20.390625, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 67.875541 ], [ 23.203125, 67.875541 ], [ 23.203125, 67.067433 ], [ 23.906250, 67.067433 ], [ 23.906250, 65.658275 ], [ 22.500000, 65.658275 ], [ 22.500000, 65.366837 ], [ 21.796875, 65.366837 ], [ 21.796875, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.168107 ], [ 20.390625, 64.168107 ], [ 20.390625, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.593341 ], [ 17.578125, 62.593341 ], [ 17.578125, 61.938950 ], [ 16.875000, 61.938950 ], [ 16.875000, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.239811 ], [ 18.984375, 60.239811 ], [ 18.984375, 59.888937 ], [ 18.281250, 59.888937 ], [ 18.281250, 59.175928 ], [ 17.578125, 59.175928 ], [ 17.578125, 58.813742 ], [ 16.875000, 58.813742 ], [ 16.875000, 57.704147 ], [ 16.171875, 57.704147 ], [ 16.171875, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.765625, 55.776573 ], [ 14.062500, 55.776573 ], [ 14.062500, 55.379110 ], [ 12.656250, 55.379110 ], [ 12.656250, 56.559482 ], [ 11.953125, 56.559482 ], [ 11.953125, 58.077876 ], [ 11.250000, 58.077876 ], [ 11.250000, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 60.586967 ], [ 12.656250, 60.586967 ], [ 12.656250, 61.606396 ], [ 11.953125, 61.606396 ], [ 11.953125, 63.548552 ], [ 12.656250, 63.548552 ], [ 12.656250, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 64.472794 ], [ 13.359375, 64.472794 ], [ 13.359375, 65.072130 ], [ 14.062500, 65.072130 ], [ 14.062500, 65.658275 ], [ 14.765625, 65.658275 ], [ 14.765625, 66.513260 ], [ 15.468750, 66.513260 ], [ 15.468750, 67.067433 ], [ 16.171875, 67.067433 ], [ 16.171875, 67.609221 ], [ 16.875000, 67.609221 ], [ 16.875000, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.399180 ], [ 19.687500, 68.399180 ], [ 19.687500, 69.162558 ], [ 20.390625, 69.162558 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.546875, 56.170023 ], [ 9.140625, 56.170023 ], [ 9.140625, 55.379110 ], [ 9.843750, 55.379110 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 55.379110 ], [ 7.734375, 55.379110 ], [ 7.734375, 56.944974 ], [ 8.437500, 56.944974 ], [ 8.437500, 57.326521 ], [ 9.140625, 57.326521 ], [ 9.140625, 57.704147 ], [ 10.546875, 57.704147 ], [ 10.546875, 56.944974 ], [ 9.843750, 56.944974 ], [ 9.843750, 56.559482 ], [ 10.546875, 56.559482 ], [ 10.546875, 56.170023 ] ] ], [ [ [ 10.546875, 56.170023 ], [ 11.953125, 56.170023 ], [ 11.953125, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 55.379110 ], [ 11.953125, 55.379110 ], [ 11.953125, 54.977614 ], [ 10.546875, 54.977614 ], [ 10.546875, 56.170023 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.330873 ], [ 7.031250, 52.052490 ], [ 6.328125, 52.052490 ], [ 6.328125, 50.736455 ], [ 5.625000, 50.736455 ], [ 5.625000, 51.179343 ], [ 3.515625, 51.179343 ], [ 3.515625, 51.618017 ], [ 4.218750, 51.618017 ], [ 4.218750, 52.482780 ], [ 4.921875, 52.482780 ], [ 4.921875, 52.908902 ], [ 6.328125, 52.908902 ], [ 6.328125, 53.330873 ], [ 7.031250, 53.330873 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 69.162558 ], [ 20.390625, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 68.138852 ], [ 23.203125, 68.138852 ], [ 23.203125, 65.946472 ], [ 21.796875, 65.946472 ], [ 21.796875, 65.366837 ], [ 21.093750, 65.366837 ], [ 21.093750, 64.168107 ], [ 20.390625, 64.168107 ], [ 20.390625, 63.860036 ], [ 19.687500, 63.860036 ], [ 19.687500, 63.548552 ], [ 18.984375, 63.548552 ], [ 18.984375, 63.233627 ], [ 18.281250, 63.233627 ], [ 18.281250, 62.915233 ], [ 17.578125, 62.915233 ], [ 17.578125, 62.267923 ], [ 16.875000, 62.267923 ], [ 16.875000, 61.270233 ], [ 17.578125, 61.270233 ], [ 17.578125, 60.586967 ], [ 18.281250, 60.586967 ], [ 18.281250, 59.534318 ], [ 17.578125, 59.534318 ], [ 17.578125, 58.813742 ], [ 16.171875, 58.813742 ], [ 16.171875, 56.559482 ], [ 15.468750, 56.559482 ], [ 15.468750, 56.170023 ], [ 14.062500, 56.170023 ], [ 14.062500, 55.379110 ], [ 12.656250, 55.379110 ], [ 12.656250, 55.776573 ], [ 11.953125, 55.776573 ], [ 11.953125, 56.944974 ], [ 11.250000, 56.944974 ], [ 11.250000, 58.447733 ], [ 10.546875, 58.447733 ], [ 10.546875, 59.175928 ], [ 11.250000, 59.175928 ], [ 11.250000, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 62.593341 ], [ 11.250000, 62.593341 ], [ 11.250000, 63.548552 ], [ 11.953125, 63.548552 ], [ 11.953125, 64.168107 ], [ 13.359375, 64.168107 ], [ 13.359375, 65.366837 ], [ 14.062500, 65.366837 ], [ 14.062500, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 66.791909 ], [ 15.468750, 66.791909 ], [ 15.468750, 67.609221 ], [ 16.171875, 67.609221 ], [ 16.171875, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.656555 ], [ 19.687500, 68.656555 ], [ 19.687500, 69.162558 ], [ 20.390625, 69.162558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.179343 ], [ 5.625000, 50.736455 ], [ 6.328125, 50.736455 ], [ 6.328125, 50.289339 ], [ 5.625000, 50.289339 ], [ 5.625000, 49.382373 ], [ 4.921875, 49.382373 ], [ 4.921875, 49.837982 ], [ 3.515625, 49.837982 ], [ 3.515625, 50.289339 ], [ 2.812500, 50.289339 ], [ 2.812500, 51.179343 ], [ 5.625000, 51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 53.748711 ], [ 6.328125, 53.330873 ], [ 7.031250, 53.330873 ], [ 7.031250, 52.908902 ], [ 6.328125, 52.908902 ], [ 6.328125, 52.052490 ], [ 5.625000, 52.052490 ], [ 5.625000, 51.179343 ], [ 4.921875, 51.179343 ], [ 4.921875, 51.618017 ], [ 3.515625, 51.618017 ], [ 3.515625, 52.482780 ], [ 4.218750, 52.482780 ], [ 4.218750, 53.330873 ], [ 5.625000, 53.330873 ], [ 5.625000, 53.748711 ], [ 6.328125, 53.748711 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 50.289339 ], [ 6.328125, 49.382373 ], [ 5.625000, 49.382373 ], [ 5.625000, 50.289339 ], [ 6.328125, 50.289339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.618017 ], [ 4.921875, 51.179343 ], [ 5.625000, 51.179343 ], [ 5.625000, 49.837982 ], [ 4.218750, 49.837982 ], [ 4.218750, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 51.618017 ], [ 4.921875, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ], [ 13.359375, 54.162434 ], [ 13.359375, 53.748711 ], [ 14.062500, 53.748711 ], [ 14.062500, 52.482780 ], [ 14.765625, 52.482780 ], [ 14.765625, 51.179343 ], [ 14.062500, 51.179343 ], [ 14.062500, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.289339 ], [ 11.953125, 50.289339 ], [ 11.953125, 49.837982 ], [ 12.656250, 49.837982 ], [ 12.656250, 49.382373 ], [ 13.359375, 49.382373 ], [ 13.359375, 48.458352 ], [ 12.656250, 48.458352 ], [ 12.656250, 47.989922 ], [ 13.359375, 47.989922 ], [ 13.359375, 47.517201 ], [ 7.734375, 47.517201 ], [ 7.734375, 48.458352 ], [ 8.437500, 48.458352 ], [ 8.437500, 48.922499 ], [ 7.031250, 48.922499 ], [ 7.031250, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 52.052490 ], [ 7.031250, 52.052490 ], [ 7.031250, 53.748711 ], [ 7.734375, 53.748711 ], [ 7.734375, 53.330873 ], [ 8.437500, 53.330873 ], [ 8.437500, 53.748711 ], [ 9.140625, 53.748711 ], [ 9.140625, 54.162434 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.572062 ], [ 10.546875, 54.572062 ], [ 10.546875, 54.162434 ], [ 14.062500, 54.162434 ], [ 14.062500, 51.618017 ], [ 14.765625, 51.618017 ], [ 14.765625, 51.179343 ], [ 13.359375, 51.179343 ], [ 13.359375, 50.736455 ], [ 12.656250, 50.736455 ], [ 12.656250, 50.289339 ], [ 11.953125, 50.289339 ], [ 11.953125, 49.382373 ], [ 12.656250, 49.382373 ], [ 12.656250, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 48.458352 ], [ 12.656250, 48.458352 ], [ 12.656250, 47.517201 ], [ 11.953125, 47.517201 ], [ 11.953125, 47.989922 ], [ 10.546875, 47.989922 ], [ 10.546875, 47.517201 ], [ 9.843750, 47.517201 ], [ 9.843750, 47.989922 ], [ 7.031250, 47.989922 ], [ 7.031250, 48.922499 ], [ 7.734375, 48.922499 ], [ 7.734375, 49.382373 ], [ 5.625000, 49.382373 ], [ 5.625000, 52.052490 ], [ 6.328125, 52.052490 ], [ 6.328125, 52.908902 ], [ 7.031250, 52.908902 ], [ 7.031250, 53.330873 ], [ 6.328125, 53.330873 ], [ 6.328125, 53.748711 ], [ 8.437500, 53.748711 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 47.517201 ], [ 9.843750, 47.040182 ], [ 10.546875, 47.040182 ], [ 10.546875, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 46.073231 ], [ 6.328125, 46.073231 ], [ 6.328125, 47.040182 ], [ 7.031250, 47.040182 ], [ 7.031250, 47.517201 ], [ 9.843750, 47.517201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.140625, 47.989922 ], [ 9.140625, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 46.558860 ], [ 9.140625, 46.558860 ], [ 9.140625, 46.073231 ], [ 6.328125, 46.073231 ], [ 6.328125, 46.558860 ], [ 5.625000, 46.558860 ], [ 5.625000, 47.040182 ], [ 6.328125, 47.040182 ], [ 6.328125, 47.517201 ], [ 7.031250, 47.517201 ], [ 7.031250, 47.989922 ], [ 9.140625, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 51.179343 ], [ 14.765625, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 17.578125, 50.289339 ], [ 17.578125, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 48.922499 ], [ 16.875000, 48.922499 ], [ 16.875000, 48.458352 ], [ 16.171875, 48.458352 ], [ 16.171875, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 48.458352 ], [ 13.359375, 48.458352 ], [ 13.359375, 49.382373 ], [ 12.656250, 49.382373 ], [ 12.656250, 49.837982 ], [ 11.953125, 49.837982 ], [ 11.953125, 50.289339 ], [ 13.359375, 50.289339 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 51.179343 ], [ 14.765625, 51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 51.179343 ], [ 15.468750, 50.736455 ], [ 16.875000, 50.736455 ], [ 16.875000, 50.289339 ], [ 18.281250, 50.289339 ], [ 18.281250, 49.382373 ], [ 17.578125, 49.382373 ], [ 17.578125, 48.922499 ], [ 12.656250, 48.922499 ], [ 12.656250, 49.382373 ], [ 11.953125, 49.382373 ], [ 11.953125, 50.289339 ], [ 12.656250, 50.289339 ], [ 12.656250, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 51.179343 ], [ 15.468750, 51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 54.572062 ], [ 19.687500, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 52.908902 ], [ 23.906250, 52.908902 ], [ 23.906250, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 21.796875, 48.922499 ], [ 21.796875, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.837982 ], [ 17.578125, 49.837982 ], [ 17.578125, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 14.765625, 50.736455 ], [ 14.765625, 52.482780 ], [ 14.062500, 52.482780 ], [ 14.062500, 53.748711 ], [ 14.765625, 53.748711 ], [ 14.765625, 54.162434 ], [ 16.171875, 54.162434 ], [ 16.171875, 54.572062 ], [ 19.687500, 54.572062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 54.977614 ], [ 18.281250, 54.572062 ], [ 23.203125, 54.572062 ], [ 23.203125, 52.908902 ], [ 22.500000, 52.908902 ], [ 22.500000, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.736455 ], [ 23.203125, 50.736455 ], [ 23.203125, 50.289339 ], [ 22.500000, 50.289339 ], [ 22.500000, 49.382373 ], [ 18.984375, 49.382373 ], [ 18.984375, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 50.289339 ], [ 16.875000, 50.289339 ], [ 16.875000, 50.736455 ], [ 15.468750, 50.736455 ], [ 15.468750, 51.179343 ], [ 14.765625, 51.179343 ], [ 14.765625, 51.618017 ], [ 14.062500, 51.618017 ], [ 14.062500, 54.162434 ], [ 16.171875, 54.162434 ], [ 16.171875, 54.572062 ], [ 17.578125, 54.572062 ], [ 17.578125, 54.977614 ], [ 18.281250, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 48.922499 ], [ 16.171875, 48.458352 ], [ 16.875000, 48.458352 ], [ 16.875000, 47.040182 ], [ 16.171875, 47.040182 ], [ 16.171875, 46.558860 ], [ 11.953125, 46.558860 ], [ 11.953125, 47.040182 ], [ 11.250000, 47.040182 ], [ 11.250000, 46.558860 ], [ 10.546875, 46.558860 ], [ 10.546875, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 47.517201 ], [ 13.359375, 47.517201 ], [ 13.359375, 47.989922 ], [ 12.656250, 47.989922 ], [ 12.656250, 48.458352 ], [ 14.765625, 48.458352 ], [ 14.765625, 48.922499 ], [ 16.171875, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 48.922499 ], [ 16.875000, 47.989922 ], [ 16.171875, 47.989922 ], [ 16.171875, 47.040182 ], [ 14.765625, 47.040182 ], [ 14.765625, 46.558860 ], [ 11.953125, 46.558860 ], [ 11.953125, 47.040182 ], [ 9.140625, 47.040182 ], [ 9.140625, 47.989922 ], [ 9.843750, 47.989922 ], [ 9.843750, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.989922 ], [ 11.953125, 47.989922 ], [ 11.953125, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 48.458352 ], [ 13.359375, 48.458352 ], [ 13.359375, 48.922499 ], [ 16.875000, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.558860 ], [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 46.073231 ], [ 14.062500, 46.073231 ], [ 14.062500, 46.558860 ], [ 16.875000, 46.558860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 47.040182 ], [ 16.171875, 46.558860 ], [ 15.468750, 46.558860 ], [ 15.468750, 46.073231 ], [ 14.765625, 46.073231 ], [ 14.765625, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 46.558860 ], [ 14.765625, 46.558860 ], [ 14.765625, 47.040182 ], [ 16.171875, 47.040182 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 37.718590 ], [ 15.468750, 36.597889 ], [ 14.062500, 36.597889 ], [ 14.062500, 37.160317 ], [ 12.656250, 37.160317 ], [ 12.656250, 38.272689 ], [ 15.468750, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 37.718590 ], [ 15.468750, 37.718590 ] ] ], [ [ [ 17.578125, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 39.909736 ], [ 16.171875, 39.909736 ], [ 16.171875, 39.368279 ], [ 16.875000, 39.368279 ], [ 16.875000, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 38.822591 ], [ 15.468750, 38.822591 ], [ 15.468750, 39.909736 ], [ 14.765625, 39.909736 ], [ 14.765625, 40.446947 ], [ 14.062500, 40.446947 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 42.032974 ], [ 11.250000, 42.032974 ], [ 11.250000, 42.553080 ], [ 10.546875, 42.553080 ], [ 10.546875, 44.087585 ], [ 8.437500, 44.087585 ], [ 8.437500, 43.580391 ], [ 7.734375, 43.580391 ], [ 7.734375, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 45.583290 ], [ 8.437500, 45.583290 ], [ 8.437500, 46.073231 ], [ 10.546875, 46.073231 ], [ 10.546875, 46.558860 ], [ 11.250000, 46.558860 ], [ 11.250000, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.073231 ], [ 13.359375, 46.073231 ], [ 13.359375, 45.583290 ], [ 12.656250, 45.583290 ], [ 12.656250, 44.590467 ], [ 11.953125, 44.590467 ], [ 11.953125, 44.087585 ], [ 12.656250, 44.087585 ], [ 12.656250, 43.580391 ], [ 13.359375, 43.580391 ], [ 13.359375, 43.068888 ], [ 14.062500, 43.068888 ], [ 14.062500, 42.032974 ], [ 16.171875, 42.032974 ], [ 16.171875, 40.979898 ], [ 17.578125, 40.979898 ], [ 17.578125, 40.446947 ] ] ], [ [ [ 9.140625, 40.979898 ], [ 9.140625, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.368279 ], [ 9.140625, 39.368279 ], [ 9.140625, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.979898 ], [ 9.140625, 40.979898 ] ] ], [ [ [ 17.578125, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 39.909736 ], [ 17.578125, 39.909736 ], [ 17.578125, 40.446947 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.718590 ], [ 14.765625, 37.718590 ], [ 14.765625, 37.160317 ], [ 11.953125, 37.160317 ], [ 11.953125, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 17.578125, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 39.909736 ], [ 17.578125, 39.909736 ], [ 17.578125, 40.446947 ] ] ], [ [ [ 9.140625, 40.979898 ], [ 9.140625, 39.368279 ], [ 7.734375, 39.368279 ], [ 7.734375, 40.979898 ], [ 9.140625, 40.979898 ] ] ], [ [ [ 16.875000, 40.446947 ], [ 16.171875, 40.446947 ], [ 16.171875, 39.909736 ], [ 16.875000, 39.909736 ], [ 16.875000, 39.368279 ], [ 16.171875, 39.368279 ], [ 16.171875, 38.822591 ], [ 15.468750, 38.822591 ], [ 15.468750, 39.909736 ], [ 14.765625, 39.909736 ], [ 14.765625, 40.446947 ], [ 14.062500, 40.446947 ], [ 14.062500, 40.979898 ], [ 13.359375, 40.979898 ], [ 13.359375, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 42.032974 ], [ 10.546875, 42.032974 ], [ 10.546875, 42.553080 ], [ 9.843750, 42.553080 ], [ 9.843750, 44.087585 ], [ 8.437500, 44.087585 ], [ 8.437500, 44.590467 ], [ 7.734375, 44.590467 ], [ 7.734375, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 44.590467 ], [ 6.328125, 44.590467 ], [ 6.328125, 45.089036 ], [ 7.031250, 45.089036 ], [ 7.031250, 45.583290 ], [ 6.328125, 45.583290 ], [ 6.328125, 46.073231 ], [ 9.140625, 46.073231 ], [ 9.140625, 46.558860 ], [ 9.843750, 46.558860 ], [ 9.843750, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 46.558860 ], [ 13.359375, 46.558860 ], [ 13.359375, 46.073231 ], [ 12.656250, 46.073231 ], [ 12.656250, 45.583290 ], [ 11.953125, 45.583290 ], [ 11.953125, 44.087585 ], [ 13.359375, 44.087585 ], [ 13.359375, 42.553080 ], [ 14.062500, 42.553080 ], [ 14.062500, 42.032974 ], [ 15.468750, 42.032974 ], [ 15.468750, 41.508577 ], [ 16.171875, 41.508577 ], [ 16.171875, 40.979898 ], [ 16.875000, 40.979898 ], [ 16.875000, 40.446947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, 43.580391 ], [ 15.468750, 43.580391 ], [ 15.468750, 44.087585 ], [ 14.765625, 44.087585 ], [ 14.765625, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.590467 ], [ 13.359375, 44.590467 ], [ 13.359375, 45.583290 ], [ 15.468750, 45.583290 ], [ 15.468750, 46.073231 ], [ 17.578125, 46.073231 ], [ 17.578125, 45.583290 ], [ 18.984375, 45.583290 ], [ 18.984375, 45.089036 ], [ 16.171875, 45.089036 ], [ 16.171875, 43.580391 ] ] ], [ [ [ 16.171875, 43.580391 ], [ 17.578125, 43.580391 ], [ 17.578125, 43.068888 ], [ 16.171875, 43.068888 ], [ 16.171875, 43.580391 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, 43.068888 ], [ 18.281250, 43.068888 ], [ 18.281250, 42.553080 ], [ 16.875000, 42.553080 ], [ 16.875000, 43.068888 ] ] ], [ [ [ 16.875000, 46.073231 ], [ 18.281250, 46.073231 ], [ 18.281250, 45.583290 ], [ 18.984375, 45.583290 ], [ 18.984375, 45.089036 ], [ 16.875000, 45.089036 ], [ 16.875000, 45.583290 ], [ 16.171875, 45.583290 ], [ 16.171875, 45.089036 ], [ 15.468750, 45.089036 ], [ 15.468750, 44.590467 ], [ 16.171875, 44.590467 ], [ 16.171875, 44.087585 ], [ 16.875000, 44.087585 ], [ 16.875000, 43.580391 ], [ 15.468750, 43.580391 ], [ 15.468750, 44.087585 ], [ 14.765625, 44.087585 ], [ 14.765625, 45.089036 ], [ 13.359375, 45.089036 ], [ 13.359375, 45.583290 ], [ 14.765625, 45.583290 ], [ 14.765625, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 46.558860 ], [ 16.875000, 46.558860 ], [ 16.875000, 46.073231 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 48.458352 ], [ 21.796875, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 47.517201 ], [ 21.796875, 47.517201 ], [ 21.796875, 46.558860 ], [ 21.093750, 46.558860 ], [ 21.093750, 46.073231 ], [ 18.984375, 46.073231 ], [ 18.984375, 45.583290 ], [ 17.578125, 45.583290 ], [ 17.578125, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 46.558860 ], [ 16.171875, 46.558860 ], [ 16.171875, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 47.989922 ], [ 20.390625, 47.989922 ], [ 20.390625, 48.458352 ], [ 21.796875, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.458352 ], [ 22.500000, 47.989922 ], [ 21.796875, 47.989922 ], [ 21.796875, 47.517201 ], [ 21.093750, 47.517201 ], [ 21.093750, 46.558860 ], [ 18.984375, 46.558860 ], [ 18.984375, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 46.558860 ], [ 16.171875, 46.558860 ], [ 16.171875, 47.989922 ], [ 18.281250, 47.989922 ], [ 18.281250, 48.458352 ], [ 22.500000, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 49.382373 ], [ 21.796875, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 18.281250, 48.922499 ], [ 18.281250, 49.382373 ], [ 21.796875, 49.382373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 49.837982 ], [ 18.984375, 49.382373 ], [ 22.500000, 49.382373 ], [ 22.500000, 48.922499 ], [ 21.796875, 48.922499 ], [ 21.796875, 48.458352 ], [ 18.281250, 48.458352 ], [ 18.281250, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 17.578125, 48.922499 ], [ 17.578125, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.837982 ], [ 18.984375, 49.837982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 45.089036 ], [ 19.687500, 44.590467 ], [ 18.984375, 44.590467 ], [ 18.984375, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.580391 ], [ 18.984375, 43.580391 ], [ 18.984375, 42.553080 ], [ 17.578125, 42.553080 ], [ 17.578125, 43.580391 ], [ 16.171875, 43.580391 ], [ 16.171875, 45.089036 ], [ 19.687500, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 45.583290 ], [ 16.875000, 45.089036 ], [ 18.984375, 45.089036 ], [ 18.984375, 43.580391 ], [ 18.281250, 43.580391 ], [ 18.281250, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 44.087585 ], [ 16.171875, 44.087585 ], [ 16.171875, 44.590467 ], [ 15.468750, 44.590467 ], [ 15.468750, 45.089036 ], [ 16.171875, 45.089036 ], [ 16.171875, 45.583290 ], [ 16.875000, 45.583290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.580391 ], [ 19.687500, 43.068888 ], [ 20.390625, 43.068888 ], [ 20.390625, 42.553080 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.032974 ], [ 18.281250, 42.032974 ], [ 18.281250, 42.553080 ], [ 18.984375, 42.553080 ], [ 18.984375, 43.580391 ], [ 19.687500, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.580391 ], [ 19.687500, 42.553080 ], [ 18.984375, 42.553080 ], [ 18.984375, 42.032974 ], [ 18.281250, 42.032974 ], [ 18.281250, 43.580391 ], [ 19.687500, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 46.073231 ], [ 20.390625, 45.583290 ], [ 21.093750, 45.583290 ], [ 21.093750, 45.089036 ], [ 21.796875, 45.089036 ], [ 21.796875, 44.590467 ], [ 22.500000, 44.590467 ], [ 22.500000, 42.553080 ], [ 21.093750, 42.553080 ], [ 21.093750, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 44.087585 ], [ 18.984375, 44.087585 ], [ 18.984375, 44.590467 ], [ 19.687500, 44.590467 ], [ 19.687500, 45.089036 ], [ 18.984375, 45.089036 ], [ 18.984375, 46.073231 ], [ 20.390625, 46.073231 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 46.558860 ], [ 19.687500, 46.073231 ], [ 20.390625, 46.073231 ], [ 20.390625, 45.583290 ], [ 21.093750, 45.583290 ], [ 21.093750, 44.590467 ], [ 22.500000, 44.590467 ], [ 22.500000, 43.068888 ], [ 21.796875, 43.068888 ], [ 21.796875, 42.553080 ], [ 21.093750, 42.553080 ], [ 21.093750, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.580391 ], [ 18.984375, 43.580391 ], [ 18.984375, 45.583290 ], [ 18.281250, 45.583290 ], [ 18.281250, 46.073231 ], [ 18.984375, 46.073231 ], [ 18.984375, 46.558860 ], [ 19.687500, 46.558860 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.553080 ], [ 19.687500, 42.553080 ], [ 19.687500, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 42.553080 ], [ 20.390625, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 40.446947 ], [ 20.390625, 40.446947 ], [ 20.390625, 39.368279 ], [ 19.687500, 39.368279 ], [ 19.687500, 40.446947 ], [ 18.984375, 40.446947 ], [ 18.984375, 40.979898 ], [ 19.687500, 40.979898 ], [ 19.687500, 42.553080 ], [ 20.390625, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 42.553080 ], [ 20.390625, 39.909736 ], [ 19.687500, 39.909736 ], [ 19.687500, 40.446947 ], [ 18.984375, 40.446947 ], [ 18.984375, 42.553080 ], [ 20.390625, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.553080 ], [ 22.500000, 42.032974 ], [ 23.203125, 42.032974 ], [ 23.203125, 41.508577 ], [ 22.500000, 41.508577 ], [ 22.500000, 40.979898 ], [ 20.390625, 40.979898 ], [ 20.390625, 42.032974 ], [ 21.796875, 42.032974 ], [ 21.796875, 42.553080 ], [ 22.500000, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 42.553080 ], [ 21.796875, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 41.508577 ], [ 21.796875, 41.508577 ], [ 21.796875, 40.979898 ], [ 20.390625, 40.979898 ], [ 20.390625, 42.553080 ], [ 21.796875, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 69.900118 ], [ 28.125000, 69.657086 ], [ 28.828125, 69.657086 ], [ 28.828125, 68.656555 ], [ 28.125000, 68.656555 ], [ 28.125000, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.609221 ], [ 30.234375, 67.609221 ], [ 30.234375, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.067433 ], [ 28.828125, 67.067433 ], [ 28.828125, 66.791909 ], [ 29.531250, 66.791909 ], [ 29.531250, 66.231457 ], [ 30.234375, 66.231457 ], [ 30.234375, 65.366837 ], [ 29.531250, 65.366837 ], [ 29.531250, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 63.233627 ], [ 30.937500, 63.233627 ], [ 30.937500, 62.915233 ], [ 31.640625, 62.915233 ], [ 31.640625, 62.593341 ], [ 30.937500, 62.593341 ], [ 30.937500, 61.938950 ], [ 30.234375, 61.938950 ], [ 30.234375, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 61.270233 ], [ 28.828125, 61.270233 ], [ 28.828125, 60.586967 ], [ 26.015625, 60.586967 ], [ 26.015625, 60.239811 ], [ 25.312500, 60.239811 ], [ 25.312500, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 21.093750, 60.239811 ], [ 21.093750, 60.930432 ], [ 21.796875, 60.930432 ], [ 21.796875, 61.938950 ], [ 21.093750, 61.938950 ], [ 21.093750, 62.915233 ], [ 21.796875, 62.915233 ], [ 21.796875, 63.548552 ], [ 22.500000, 63.548552 ], [ 22.500000, 63.860036 ], [ 23.203125, 63.860036 ], [ 23.203125, 64.168107 ], [ 23.906250, 64.168107 ], [ 23.906250, 64.472794 ], [ 24.609375, 64.472794 ], [ 24.609375, 64.774125 ], [ 25.312500, 64.774125 ], [ 25.312500, 65.658275 ], [ 23.906250, 65.658275 ], [ 23.906250, 67.067433 ], [ 23.203125, 67.067433 ], [ 23.203125, 67.875541 ], [ 22.500000, 67.875541 ], [ 22.500000, 68.399180 ], [ 21.796875, 68.399180 ], [ 21.796875, 68.656555 ], [ 21.093750, 68.656555 ], [ 21.093750, 68.911005 ], [ 20.390625, 68.911005 ], [ 20.390625, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 23.906250, 68.911005 ], [ 23.906250, 68.656555 ], [ 25.312500, 68.656555 ], [ 25.312500, 68.911005 ], [ 26.015625, 68.911005 ], [ 26.015625, 69.900118 ], [ 28.125000, 69.900118 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 70.140364 ], [ 28.125000, 69.900118 ], [ 28.828125, 69.900118 ], [ 28.828125, 69.411242 ], [ 28.125000, 69.411242 ], [ 28.125000, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.339861 ], [ 28.828125, 67.339861 ], [ 28.828125, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 64.774125 ], [ 30.234375, 64.774125 ], [ 30.234375, 64.168107 ], [ 29.531250, 64.168107 ], [ 29.531250, 63.548552 ], [ 30.234375, 63.548552 ], [ 30.234375, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 62.267923 ], [ 30.234375, 62.267923 ], [ 30.234375, 61.938950 ], [ 29.531250, 61.938950 ], [ 29.531250, 61.606396 ], [ 28.828125, 61.606396 ], [ 28.828125, 61.270233 ], [ 28.125000, 61.270233 ], [ 28.125000, 60.586967 ], [ 25.312500, 60.586967 ], [ 25.312500, 60.239811 ], [ 23.906250, 60.239811 ], [ 23.906250, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 21.796875, 60.239811 ], [ 21.796875, 60.586967 ], [ 21.093750, 60.586967 ], [ 21.093750, 62.267923 ], [ 20.390625, 62.267923 ], [ 20.390625, 62.915233 ], [ 21.093750, 62.915233 ], [ 21.093750, 63.548552 ], [ 21.796875, 63.548552 ], [ 21.796875, 63.860036 ], [ 22.500000, 63.860036 ], [ 22.500000, 64.168107 ], [ 23.203125, 64.168107 ], [ 23.203125, 64.472794 ], [ 23.906250, 64.472794 ], [ 23.906250, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 65.072130 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.366837 ], [ 24.609375, 65.366837 ], [ 24.609375, 65.658275 ], [ 23.906250, 65.658275 ], [ 23.906250, 65.946472 ], [ 23.203125, 65.946472 ], [ 23.203125, 68.138852 ], [ 22.500000, 68.138852 ], [ 22.500000, 68.399180 ], [ 21.796875, 68.399180 ], [ 21.796875, 68.656555 ], [ 21.093750, 68.656555 ], [ 21.093750, 68.911005 ], [ 20.390625, 68.911005 ], [ 20.390625, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 23.203125, 68.911005 ], [ 23.203125, 68.656555 ], [ 24.609375, 68.656555 ], [ 24.609375, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 69.411242 ], [ 26.015625, 69.411242 ], [ 26.015625, 69.900118 ], [ 26.718750, 69.900118 ], [ 26.718750, 70.140364 ], [ 28.125000, 70.140364 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 57.704147 ], [ 25.312500, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 56.944974 ], [ 28.125000, 56.944974 ], [ 28.125000, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.170023 ], [ 21.093750, 56.170023 ], [ 21.093750, 56.944974 ], [ 21.796875, 56.944974 ], [ 21.796875, 57.326521 ], [ 23.203125, 57.326521 ], [ 23.203125, 56.944974 ], [ 23.906250, 56.944974 ], [ 23.906250, 57.326521 ], [ 24.609375, 57.326521 ], [ 24.609375, 57.704147 ], [ 25.312500, 57.704147 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 58.077876 ], [ 25.312500, 57.704147 ], [ 26.718750, 57.704147 ], [ 26.718750, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 56.559482 ], [ 28.125000, 56.559482 ], [ 28.125000, 56.170023 ], [ 26.718750, 56.170023 ], [ 26.718750, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.170023 ], [ 24.609375, 56.170023 ], [ 24.609375, 56.559482 ], [ 21.796875, 56.559482 ], [ 21.796875, 56.170023 ], [ 20.390625, 56.170023 ], [ 20.390625, 57.326521 ], [ 21.093750, 57.326521 ], [ 21.093750, 57.704147 ], [ 23.203125, 57.704147 ], [ 23.203125, 57.326521 ], [ 23.906250, 57.326521 ], [ 23.906250, 58.077876 ], [ 25.312500, 58.077876 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 57.326521 ], [ 25.312500, 57.326521 ], [ 25.312500, 57.704147 ], [ 24.609375, 57.704147 ], [ 24.609375, 58.077876 ], [ 23.203125, 58.077876 ], [ 23.203125, 59.175928 ], [ 24.609375, 59.175928 ], [ 24.609375, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 59.175928 ], [ 27.421875, 59.175928 ], [ 27.421875, 57.704147 ], [ 25.312500, 57.704147 ], [ 25.312500, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.906250, 58.447733 ], [ 23.203125, 58.447733 ], [ 23.203125, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.170023 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.572062 ], [ 25.312500, 54.572062 ], [ 25.312500, 53.748711 ], [ 23.203125, 53.748711 ], [ 23.203125, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 56.170023 ], [ 25.312500, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 56.559482 ], [ 24.609375, 56.170023 ], [ 25.312500, 56.170023 ], [ 25.312500, 55.776573 ], [ 26.015625, 55.776573 ], [ 26.015625, 54.977614 ], [ 25.312500, 54.977614 ], [ 25.312500, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 54.572062 ], [ 22.500000, 54.572062 ], [ 22.500000, 54.977614 ], [ 21.796875, 54.977614 ], [ 21.796875, 55.379110 ], [ 21.093750, 55.379110 ], [ 21.093750, 55.776573 ], [ 20.390625, 55.776573 ], [ 20.390625, 56.170023 ], [ 21.796875, 56.170023 ], [ 21.796875, 56.559482 ], [ 24.609375, 56.559482 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, 55.776573 ], [ 30.234375, 55.379110 ], [ 30.937500, 55.379110 ], [ 30.937500, 54.572062 ], [ 31.640625, 54.572062 ], [ 31.640625, 53.748711 ], [ 32.343750, 53.748711 ], [ 32.343750, 53.330873 ], [ 31.640625, 53.330873 ], [ 31.640625, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.179343 ], [ 28.828125, 51.179343 ], [ 28.828125, 51.618017 ], [ 25.312500, 51.618017 ], [ 25.312500, 52.052490 ], [ 24.609375, 52.052490 ], [ 24.609375, 51.618017 ], [ 23.203125, 51.618017 ], [ 23.203125, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 52.908902 ], [ 23.203125, 52.908902 ], [ 23.203125, 53.748711 ], [ 25.312500, 53.748711 ], [ 25.312500, 54.572062 ], [ 26.015625, 54.572062 ], [ 26.015625, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.776573 ], [ 30.234375, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 56.170023 ], [ 28.828125, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.379110 ], [ 30.937500, 55.379110 ], [ 30.937500, 54.977614 ], [ 30.234375, 54.977614 ], [ 30.234375, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 54.162434 ], [ 31.640625, 54.162434 ], [ 31.640625, 53.748711 ], [ 32.343750, 53.748711 ], [ 32.343750, 53.330873 ], [ 30.937500, 53.330873 ], [ 30.937500, 52.482780 ], [ 31.640625, 52.482780 ], [ 31.640625, 52.052490 ], [ 30.234375, 52.052490 ], [ 30.234375, 51.618017 ], [ 26.015625, 51.618017 ], [ 26.015625, 52.052490 ], [ 23.906250, 52.052490 ], [ 23.906250, 51.618017 ], [ 23.203125, 51.618017 ], [ 23.203125, 52.482780 ], [ 22.500000, 52.482780 ], [ 22.500000, 52.908902 ], [ 23.203125, 52.908902 ], [ 23.203125, 54.162434 ], [ 25.312500, 54.162434 ], [ 25.312500, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 56.170023 ], [ 28.828125, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 47.989922 ], [ 27.421875, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.590467 ], [ 28.828125, 44.590467 ], [ 28.828125, 43.580391 ], [ 27.421875, 43.580391 ], [ 27.421875, 44.087585 ], [ 26.015625, 44.087585 ], [ 26.015625, 43.580391 ], [ 22.500000, 43.580391 ], [ 22.500000, 44.590467 ], [ 21.796875, 44.590467 ], [ 21.796875, 45.089036 ], [ 21.093750, 45.089036 ], [ 21.093750, 45.583290 ], [ 20.390625, 45.583290 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.558860 ], [ 21.796875, 46.558860 ], [ 21.796875, 47.517201 ], [ 22.500000, 47.517201 ], [ 22.500000, 47.989922 ], [ 24.609375, 47.989922 ], [ 24.609375, 47.517201 ], [ 25.312500, 47.517201 ], [ 25.312500, 47.989922 ], [ 27.421875, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 48.458352 ], [ 26.718750, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 46.073231 ], [ 27.421875, 46.073231 ], [ 27.421875, 45.583290 ], [ 29.531250, 45.583290 ], [ 29.531250, 45.089036 ], [ 28.828125, 45.089036 ], [ 28.828125, 44.590467 ], [ 28.125000, 44.590467 ], [ 28.125000, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.590467 ], [ 21.093750, 44.590467 ], [ 21.093750, 45.583290 ], [ 20.390625, 45.583290 ], [ 20.390625, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 46.558860 ], [ 21.093750, 46.558860 ], [ 21.093750, 47.517201 ], [ 21.796875, 47.517201 ], [ 21.796875, 47.989922 ], [ 26.015625, 47.989922 ], [ 26.015625, 48.458352 ], [ 26.718750, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 44.087585 ], [ 27.421875, 43.580391 ], [ 28.828125, 43.580391 ], [ 28.828125, 43.068888 ], [ 28.125000, 43.068888 ], [ 28.125000, 42.553080 ], [ 27.421875, 42.553080 ], [ 27.421875, 42.032974 ], [ 26.015625, 42.032974 ], [ 26.015625, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 41.508577 ], [ 23.203125, 41.508577 ], [ 23.203125, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 43.580391 ], [ 26.015625, 43.580391 ], [ 26.015625, 44.087585 ], [ 27.421875, 44.087585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 44.087585 ], [ 28.125000, 43.580391 ], [ 27.421875, 43.580391 ], [ 27.421875, 42.032974 ], [ 26.015625, 42.032974 ], [ 26.015625, 41.508577 ], [ 22.500000, 41.508577 ], [ 22.500000, 42.032974 ], [ 21.796875, 42.032974 ], [ 21.796875, 43.068888 ], [ 22.500000, 43.068888 ], [ 22.500000, 44.087585 ], [ 28.125000, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.421875, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 47.517201 ], [ 29.531250, 47.517201 ], [ 29.531250, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 47.040182 ], [ 27.421875, 47.040182 ], [ 27.421875, 47.989922 ] ] ], [ [ [ 27.421875, 47.989922 ], [ 26.718750, 47.989922 ], [ 26.718750, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 47.989922 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 46.073231 ], [ 28.125000, 45.583290 ], [ 27.421875, 45.583290 ], [ 27.421875, 46.073231 ], [ 28.125000, 46.073231 ] ] ], [ [ [ 28.125000, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 47.040182 ], [ 29.531250, 47.040182 ], [ 29.531250, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 46.073231 ], [ 28.125000, 46.073231 ], [ 28.125000, 47.040182 ], [ 27.421875, 47.040182 ], [ 27.421875, 47.517201 ], [ 26.718750, 47.517201 ], [ 26.718750, 48.458352 ], [ 28.125000, 48.458352 ], [ 28.125000, 47.989922 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 52.052490 ], [ 34.453125, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 49.837982 ], [ 38.671875, 49.837982 ], [ 38.671875, 49.382373 ], [ 40.078125, 49.382373 ], [ 40.078125, 48.922499 ], [ 39.375000, 48.922499 ], [ 39.375000, 48.458352 ], [ 40.078125, 48.458352 ], [ 40.078125, 47.989922 ], [ 38.671875, 47.989922 ], [ 38.671875, 47.517201 ], [ 37.968750, 47.517201 ], [ 37.968750, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.558860 ], [ 35.859375, 46.558860 ], [ 35.859375, 46.073231 ], [ 35.156250, 46.073231 ], [ 35.156250, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.089036 ], [ 35.156250, 45.089036 ], [ 35.156250, 44.590467 ], [ 33.750000, 44.590467 ], [ 33.750000, 45.089036 ], [ 32.343750, 45.089036 ], [ 32.343750, 45.583290 ], [ 33.750000, 45.583290 ], [ 33.750000, 46.073231 ], [ 31.640625, 46.073231 ], [ 31.640625, 46.558860 ], [ 30.937500, 46.558860 ], [ 30.937500, 46.073231 ], [ 30.234375, 46.073231 ], [ 30.234375, 45.583290 ], [ 29.531250, 45.583290 ], [ 29.531250, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 45.583290 ], [ 28.828125, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.531250, 46.558860 ], [ 29.531250, 47.517201 ], [ 28.828125, 47.517201 ], [ 28.828125, 47.989922 ], [ 27.421875, 47.989922 ], [ 27.421875, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 47.517201 ], [ 24.609375, 47.517201 ], [ 24.609375, 47.989922 ], [ 21.796875, 47.989922 ], [ 21.796875, 48.458352 ], [ 22.500000, 48.458352 ], [ 22.500000, 49.837982 ], [ 23.203125, 49.837982 ], [ 23.203125, 50.289339 ], [ 23.906250, 50.289339 ], [ 23.906250, 51.179343 ], [ 23.203125, 51.179343 ], [ 23.203125, 51.618017 ], [ 24.609375, 51.618017 ], [ 24.609375, 52.052490 ], [ 25.312500, 52.052490 ], [ 25.312500, 51.618017 ], [ 28.828125, 51.618017 ], [ 28.828125, 51.179343 ], [ 30.937500, 51.179343 ], [ 30.937500, 52.052490 ], [ 34.453125, 52.052490 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.482780 ], [ 33.750000, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.289339 ], [ 37.968750, 50.289339 ], [ 37.968750, 49.837982 ], [ 39.375000, 49.837982 ], [ 39.375000, 49.382373 ], [ 40.078125, 49.382373 ], [ 40.078125, 48.922499 ], [ 39.375000, 48.922499 ], [ 39.375000, 47.989922 ], [ 37.968750, 47.989922 ], [ 37.968750, 47.040182 ], [ 35.156250, 47.040182 ], [ 35.156250, 46.558860 ], [ 34.453125, 46.558860 ], [ 34.453125, 45.583290 ], [ 35.859375, 45.583290 ], [ 35.859375, 45.089036 ], [ 35.156250, 45.089036 ], [ 35.156250, 44.590467 ], [ 33.046875, 44.590467 ], [ 33.046875, 45.089036 ], [ 32.343750, 45.089036 ], [ 32.343750, 45.583290 ], [ 33.046875, 45.583290 ], [ 33.046875, 46.558860 ], [ 31.640625, 46.558860 ], [ 31.640625, 47.040182 ], [ 30.234375, 47.040182 ], [ 30.234375, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 46.073231 ], [ 28.828125, 46.073231 ], [ 28.828125, 46.558860 ], [ 29.531250, 46.558860 ], [ 29.531250, 47.040182 ], [ 28.828125, 47.040182 ], [ 28.828125, 47.989922 ], [ 28.125000, 47.989922 ], [ 28.125000, 48.458352 ], [ 26.015625, 48.458352 ], [ 26.015625, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 48.458352 ], [ 21.796875, 48.458352 ], [ 21.796875, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 50.736455 ], [ 23.906250, 50.736455 ], [ 23.906250, 51.179343 ], [ 23.203125, 51.179343 ], [ 23.203125, 51.618017 ], [ 23.906250, 51.618017 ], [ 23.906250, 52.052490 ], [ 26.015625, 52.052490 ], [ 26.015625, 51.618017 ], [ 30.234375, 51.618017 ], [ 30.234375, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 52.482780 ], [ 33.750000, 52.482780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.781250, 43.068888 ], [ 42.187500, 43.068888 ], [ 42.187500, 42.553080 ], [ 45.703125, 42.553080 ], [ 45.703125, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 40.979898 ], [ 42.890625, 40.979898 ], [ 42.890625, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 42.553080 ], [ 40.781250, 42.553080 ], [ 40.781250, 43.068888 ] ] ], [ [ [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.580391 ], [ 40.781250, 43.580391 ], [ 40.781250, 43.068888 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 43.580391 ], [ 42.187500, 43.068888 ], [ 43.593750, 43.068888 ], [ 43.593750, 42.553080 ], [ 45.703125, 42.553080 ], [ 45.703125, 41.508577 ], [ 42.187500, 41.508577 ], [ 42.187500, 42.032974 ], [ 41.484375, 42.032974 ], [ 41.484375, 42.553080 ], [ 40.781250, 42.553080 ], [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.580391 ], [ 42.187500, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.546875, 37.160317 ], [ 10.546875, 35.460670 ], [ 11.250000, 35.460670 ], [ 11.250000, 34.885931 ], [ 10.546875, 34.885931 ], [ 10.546875, 34.307144 ], [ 9.843750, 34.307144 ], [ 9.843750, 33.724340 ], [ 10.546875, 33.724340 ], [ 10.546875, 33.137551 ], [ 11.250000, 33.137551 ], [ 11.250000, 31.952162 ], [ 10.546875, 31.952162 ], [ 10.546875, 31.353637 ], [ 9.843750, 31.353637 ], [ 9.843750, 30.145127 ], [ 9.140625, 30.145127 ], [ 9.140625, 31.952162 ], [ 8.437500, 31.952162 ], [ 8.437500, 32.546813 ], [ 7.734375, 32.546813 ], [ 7.734375, 34.307144 ], [ 8.437500, 34.307144 ], [ 8.437500, 37.160317 ], [ 10.546875, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 37.718590 ], [ 9.843750, 37.160317 ], [ 10.546875, 37.160317 ], [ 10.546875, 34.885931 ], [ 9.843750, 34.885931 ], [ 9.843750, 34.307144 ], [ 10.546875, 34.307144 ], [ 10.546875, 33.137551 ], [ 11.250000, 33.137551 ], [ 11.250000, 32.546813 ], [ 10.546875, 32.546813 ], [ 10.546875, 31.952162 ], [ 9.843750, 31.952162 ], [ 9.843750, 30.751278 ], [ 9.140625, 30.751278 ], [ 9.140625, 31.353637 ], [ 8.437500, 31.353637 ], [ 8.437500, 32.546813 ], [ 7.734375, 32.546813 ], [ 7.734375, 33.137551 ], [ 7.031250, 33.137551 ], [ 7.031250, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 37.160317 ], [ 9.140625, 37.160317 ], [ 9.140625, 37.718590 ], [ 9.843750, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 37.160317 ], [ 8.437500, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 32.546813 ], [ 8.437500, 32.546813 ], [ 8.437500, 31.952162 ], [ 9.140625, 31.952162 ], [ 9.140625, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 25.799891 ], [ 9.140625, 25.799891 ], [ 9.140625, 25.165173 ], [ 9.843750, 25.165173 ], [ 9.843750, 24.527135 ], [ 10.546875, 24.527135 ], [ 10.546875, 23.885838 ], [ 11.250000, 23.885838 ], [ 11.250000, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 21.943046 ], [ 9.140625, 21.943046 ], [ 9.140625, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 20.632784 ], [ 7.734375, 20.632784 ], [ 7.734375, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -3.515625, 23.241346 ], [ -3.515625, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -1.406250, 34.885931 ], [ -1.406250, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.031332 ], [ 1.406250, 36.031332 ], [ 1.406250, 36.597889 ], [ 6.328125, 36.597889 ], [ 6.328125, 37.160317 ], [ 8.437500, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 37.160317 ], [ 7.734375, 34.307144 ], [ 7.031250, 34.307144 ], [ 7.031250, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 32.546813 ], [ 8.437500, 32.546813 ], [ 8.437500, 31.353637 ], [ 9.140625, 31.353637 ], [ 9.140625, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 28.921631 ], [ 9.140625, 28.921631 ], [ 9.140625, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 24.527135 ], [ 11.250000, 24.527135 ], [ 11.250000, 23.885838 ], [ 11.953125, 23.885838 ], [ 11.953125, 23.241346 ], [ 10.546875, 23.241346 ], [ 10.546875, 22.593726 ], [ 9.140625, 22.593726 ], [ 9.140625, 21.943046 ], [ 8.437500, 21.943046 ], [ 8.437500, 21.289374 ], [ 7.734375, 21.289374 ], [ 7.734375, 20.632784 ], [ 6.328125, 20.632784 ], [ 6.328125, 19.973349 ], [ 5.625000, 19.973349 ], [ 5.625000, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 1.406250, 19.973349 ], [ 1.406250, 20.632784 ], [ 0.703125, 20.632784 ], [ 0.703125, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -2.812500, 23.241346 ], [ -2.812500, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -2.812500, 34.885931 ], [ -2.812500, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 36.031332 ], [ 0.000000, 36.031332 ], [ 0.000000, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 37.160317 ], [ 7.734375, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 32.546813 ], [ 23.203125, 31.952162 ], [ 24.609375, 31.952162 ], [ 24.609375, 29.535230 ], [ 25.312500, 29.535230 ], [ 25.312500, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.311143 ], [ 22.500000, 19.311143 ], [ 22.500000, 19.973349 ], [ 21.093750, 19.973349 ], [ 21.093750, 20.632784 ], [ 19.687500, 20.632784 ], [ 19.687500, 21.289374 ], [ 18.984375, 21.289374 ], [ 18.984375, 21.943046 ], [ 17.578125, 21.943046 ], [ 17.578125, 22.593726 ], [ 13.359375, 22.593726 ], [ 13.359375, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 23.885838 ], [ 10.546875, 23.885838 ], [ 10.546875, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.165173 ], [ 9.140625, 25.165173 ], [ 9.140625, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 29.535230 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.145127 ], [ 9.843750, 30.145127 ], [ 9.843750, 31.353637 ], [ 10.546875, 31.353637 ], [ 10.546875, 31.952162 ], [ 11.250000, 31.952162 ], [ 11.250000, 32.546813 ], [ 15.468750, 32.546813 ], [ 15.468750, 31.353637 ], [ 16.875000, 31.353637 ], [ 16.875000, 30.751278 ], [ 18.281250, 30.751278 ], [ 18.281250, 30.145127 ], [ 19.687500, 30.145127 ], [ 19.687500, 30.751278 ], [ 20.390625, 30.751278 ], [ 20.390625, 31.353637 ], [ 19.687500, 31.353637 ], [ 19.687500, 31.952162 ], [ 21.093750, 31.952162 ], [ 21.093750, 32.546813 ], [ 23.203125, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 33.137551 ], [ 22.500000, 32.546813 ], [ 23.906250, 32.546813 ], [ 23.906250, 31.952162 ], [ 24.609375, 31.952162 ], [ 24.609375, 20.632784 ], [ 23.203125, 20.632784 ], [ 23.203125, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 21.943046 ], [ 18.281250, 21.943046 ], [ 18.281250, 22.593726 ], [ 16.875000, 22.593726 ], [ 16.875000, 23.241346 ], [ 14.765625, 23.241346 ], [ 14.765625, 22.593726 ], [ 13.359375, 22.593726 ], [ 13.359375, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.885838 ], [ 11.250000, 23.885838 ], [ 11.250000, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.799891 ], [ 9.140625, 25.799891 ], [ 9.140625, 28.921631 ], [ 9.843750, 28.921631 ], [ 9.843750, 29.535230 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 31.952162 ], [ 10.546875, 31.952162 ], [ 10.546875, 32.546813 ], [ 11.250000, 32.546813 ], [ 11.250000, 33.137551 ], [ 13.359375, 33.137551 ], [ 13.359375, 32.546813 ], [ 14.765625, 32.546813 ], [ 14.765625, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.353637 ], [ 17.578125, 31.353637 ], [ 17.578125, 30.751278 ], [ 19.687500, 30.751278 ], [ 19.687500, 32.546813 ], [ 20.390625, 32.546813 ], [ 20.390625, 33.137551 ], [ 22.500000, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 23.241346 ], [ 13.359375, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.289374 ], [ 15.468750, 21.289374 ], [ 15.468750, 20.632784 ], [ 16.171875, 20.632784 ], [ 16.171875, 19.973349 ], [ 15.468750, 19.973349 ], [ 15.468750, 15.961329 ], [ 14.062500, 15.961329 ], [ 14.062500, 15.284185 ], [ 13.359375, 15.284185 ], [ 13.359375, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 13.239945 ], [ 14.765625, 13.239945 ], [ 14.765625, 12.554564 ], [ 13.359375, 12.554564 ], [ 13.359375, 13.239945 ], [ 9.843750, 13.239945 ], [ 9.843750, 12.554564 ], [ 7.734375, 12.554564 ], [ 7.734375, 13.239945 ], [ 5.625000, 13.239945 ], [ 5.625000, 13.923404 ], [ 4.218750, 13.923404 ], [ 4.218750, 12.554564 ], [ 3.515625, 12.554564 ], [ 3.515625, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 0.703125, 12.554564 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 14.604847 ], [ 0.703125, 14.604847 ], [ 0.703125, 15.284185 ], [ 3.515625, 15.284185 ], [ 3.515625, 15.961329 ], [ 4.218750, 15.961329 ], [ 4.218750, 19.311143 ], [ 6.328125, 19.311143 ], [ 6.328125, 19.973349 ], [ 7.734375, 19.973349 ], [ 7.734375, 20.632784 ], [ 8.437500, 20.632784 ], [ 8.437500, 21.289374 ], [ 9.140625, 21.289374 ], [ 9.140625, 21.943046 ], [ 10.546875, 21.943046 ], [ 10.546875, 22.593726 ], [ 11.953125, 22.593726 ], [ 11.953125, 23.241346 ], [ 13.359375, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 23.241346 ], [ 13.359375, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.289374 ], [ 15.468750, 21.289374 ], [ 15.468750, 18.646245 ], [ 14.765625, 18.646245 ], [ 14.765625, 15.961329 ], [ 13.359375, 15.961329 ], [ 13.359375, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 12.554564 ], [ 13.359375, 12.554564 ], [ 13.359375, 13.239945 ], [ 11.250000, 13.239945 ], [ 11.250000, 13.923404 ], [ 9.843750, 13.923404 ], [ 9.843750, 13.239945 ], [ 6.328125, 13.239945 ], [ 6.328125, 13.923404 ], [ 3.515625, 13.923404 ], [ 3.515625, 11.867351 ], [ 2.812500, 11.867351 ], [ 2.812500, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.311143 ], [ 5.625000, 19.311143 ], [ 5.625000, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 20.632784 ], [ 7.734375, 20.632784 ], [ 7.734375, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 21.943046 ], [ 9.140625, 21.943046 ], [ 9.140625, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 23.241346 ], [ 13.359375, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 5.615986 ], [ 0.703125, 5.615986 ], [ 0.703125, 10.487812 ] ] ], [ [ [ 0.703125, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 0.000000, 6.315299 ], [ 0.000000, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.000000, 8.407168 ], [ 0.000000, 10.487812 ], [ -0.703125, 10.487812 ], [ -0.703125, 11.178402 ], [ 0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.867351 ], [ 3.515625, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 3.515625, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.554564 ], [ 2.812500, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 9.795678 ], [ 2.812500, 9.795678 ], [ 2.812500, 9.102097 ], [ 2.109375, 9.102097 ], [ 2.109375, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 2.812500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 13.923404 ], [ 5.625000, 13.239945 ], [ 7.734375, 13.239945 ], [ 7.734375, 12.554564 ], [ 9.843750, 12.554564 ], [ 9.843750, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 11.867351 ], [ 14.765625, 11.867351 ], [ 14.765625, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.102097 ], [ 12.656250, 9.102097 ], [ 12.656250, 8.407168 ], [ 11.953125, 8.407168 ], [ 11.953125, 6.315299 ], [ 10.546875, 6.315299 ], [ 10.546875, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.615986 ], [ 8.437500, 5.615986 ], [ 8.437500, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 4.915833 ], [ 4.921875, 4.915833 ], [ 4.921875, 5.615986 ], [ 4.218750, 5.615986 ], [ 4.218750, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.515625, 9.102097 ], [ 3.515625, 12.554564 ], [ 4.218750, 12.554564 ], [ 4.218750, 13.923404 ], [ 5.625000, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 13.923404 ], [ 11.250000, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 11.178402 ], [ 13.359375, 11.178402 ], [ 13.359375, 10.487812 ], [ 12.656250, 10.487812 ], [ 12.656250, 8.407168 ], [ 11.953125, 8.407168 ], [ 11.953125, 7.710992 ], [ 11.250000, 7.710992 ], [ 11.250000, 7.013668 ], [ 9.140625, 7.013668 ], [ 9.140625, 6.315299 ], [ 8.437500, 6.315299 ], [ 8.437500, 4.915833 ], [ 4.921875, 4.915833 ], [ 4.921875, 5.615986 ], [ 4.218750, 5.615986 ], [ 4.218750, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 13.923404 ], [ 6.328125, 13.923404 ], [ 6.328125, 13.239945 ], [ 9.843750, 13.239945 ], [ 9.843750, 13.923404 ], [ 11.250000, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 1.406109 ], [ 9.843750, 0.703107 ], [ 9.140625, 0.703107 ], [ 9.140625, 1.406109 ], [ 9.843750, 1.406109 ] ] ], [ [ [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.108899 ], [ 11.250000, 2.108899 ], [ 11.250000, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.811371 ], [ 11.250000, 1.406109 ], [ 9.140625, 1.406109 ], [ 9.140625, 2.811371 ], [ 11.250000, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 22.593726 ], [ 17.578125, 21.943046 ], [ 18.984375, 21.943046 ], [ 18.984375, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 19.311143 ], [ 23.906250, 19.311143 ], [ 23.906250, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 13.239945 ], [ 21.796875, 13.239945 ], [ 21.796875, 12.554564 ], [ 22.500000, 12.554564 ], [ 22.500000, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 9.795678 ], [ 21.093750, 9.795678 ], [ 21.093750, 9.102097 ], [ 18.984375, 9.102097 ], [ 18.984375, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 7.710992 ], [ 15.468750, 7.710992 ], [ 15.468750, 8.407168 ], [ 14.765625, 8.407168 ], [ 14.765625, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.795678 ], [ 15.468750, 9.795678 ], [ 15.468750, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 13.239945 ], [ 14.062500, 13.239945 ], [ 14.062500, 13.923404 ], [ 13.359375, 13.923404 ], [ 13.359375, 15.284185 ], [ 14.062500, 15.284185 ], [ 14.062500, 15.961329 ], [ 15.468750, 15.961329 ], [ 15.468750, 19.973349 ], [ 16.171875, 19.973349 ], [ 16.171875, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.289374 ], [ 14.765625, 21.289374 ], [ 14.765625, 22.593726 ], [ 17.578125, 22.593726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 23.241346 ], [ 16.875000, 22.593726 ], [ 18.281250, 22.593726 ], [ 18.281250, 21.943046 ], [ 19.687500, 21.943046 ], [ 19.687500, 21.289374 ], [ 21.093750, 21.289374 ], [ 21.093750, 20.632784 ], [ 22.500000, 20.632784 ], [ 22.500000, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 15.961329 ], [ 22.500000, 15.961329 ], [ 22.500000, 13.923404 ], [ 21.796875, 13.923404 ], [ 21.796875, 12.554564 ], [ 22.500000, 12.554564 ], [ 22.500000, 11.178402 ], [ 21.093750, 11.178402 ], [ 21.093750, 10.487812 ], [ 20.390625, 10.487812 ], [ 20.390625, 9.102097 ], [ 18.281250, 9.102097 ], [ 18.281250, 8.407168 ], [ 17.578125, 8.407168 ], [ 17.578125, 7.710992 ], [ 14.765625, 7.710992 ], [ 14.765625, 9.102097 ], [ 13.359375, 9.102097 ], [ 13.359375, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 13.923404 ], [ 13.359375, 13.923404 ], [ 13.359375, 15.961329 ], [ 14.765625, 15.961329 ], [ 14.765625, 18.646245 ], [ 15.468750, 18.646245 ], [ 15.468750, 21.289374 ], [ 14.765625, 21.289374 ], [ 14.765625, 23.241346 ], [ 16.875000, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.468750, 10.487812 ], [ 15.468750, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.765625, 9.102097 ], [ 14.765625, 8.407168 ], [ 15.468750, 8.407168 ], [ 15.468750, 7.013668 ], [ 14.765625, 7.013668 ], [ 14.765625, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 1.406109 ], [ 15.468750, 1.406109 ], [ 15.468750, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 2.811371 ], [ 9.140625, 2.811371 ], [ 9.140625, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 9.140625, 5.615986 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.315299 ], [ 11.953125, 6.315299 ], [ 11.953125, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.359375, 9.102097 ], [ 13.359375, 10.487812 ], [ 14.062500, 10.487812 ], [ 14.062500, 11.178402 ], [ 14.765625, 11.178402 ] ] ], [ [ [ 14.765625, 11.867351 ], [ 14.062500, 11.867351 ], [ 14.062500, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 12.554564 ], [ 14.765625, 10.487812 ], [ 14.062500, 10.487812 ], [ 14.062500, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 9.102097 ], [ 14.765625, 9.102097 ], [ 14.765625, 6.315299 ], [ 14.062500, 6.315299 ], [ 14.062500, 4.214943 ], [ 14.765625, 4.214943 ], [ 14.765625, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 2.108899 ], [ 14.062500, 2.108899 ], [ 14.062500, 2.811371 ], [ 9.140625, 2.811371 ], [ 9.140625, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 7.013668 ], [ 11.250000, 7.013668 ], [ 11.250000, 7.710992 ], [ 11.953125, 7.710992 ], [ 11.953125, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 12.554564 ], [ 14.765625, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 11.178402 ], [ 23.203125, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 9.102097 ], [ 23.203125, 9.102097 ], [ 23.203125, 8.407168 ], [ 24.609375, 8.407168 ], [ 24.609375, 7.710992 ], [ 25.312500, 7.710992 ], [ 25.312500, 7.013668 ], [ 26.015625, 7.013668 ], [ 26.015625, 5.615986 ], [ 27.421875, 5.615986 ], [ 27.421875, 4.915833 ], [ 22.500000, 4.915833 ], [ 22.500000, 4.214943 ], [ 20.390625, 4.214943 ], [ 20.390625, 4.915833 ], [ 18.984375, 4.915833 ], [ 18.984375, 4.214943 ], [ 18.281250, 4.214943 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 14.765625, 3.513421 ], [ 14.765625, 7.013668 ], [ 15.468750, 7.013668 ], [ 15.468750, 7.710992 ], [ 18.281250, 7.710992 ], [ 18.281250, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 9.102097 ], [ 21.093750, 9.102097 ], [ 21.093750, 9.795678 ], [ 21.796875, 9.795678 ], [ 21.796875, 10.487812 ], [ 22.500000, 10.487812 ], [ 22.500000, 11.178402 ], [ 23.203125, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 11.178402 ], [ 22.500000, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 8.407168 ], [ 24.609375, 8.407168 ], [ 24.609375, 7.013668 ], [ 26.015625, 7.013668 ], [ 26.015625, 5.615986 ], [ 24.609375, 5.615986 ], [ 24.609375, 4.915833 ], [ 22.500000, 4.915833 ], [ 22.500000, 4.214943 ], [ 21.093750, 4.214943 ], [ 21.093750, 4.915833 ], [ 18.281250, 4.915833 ], [ 18.281250, 3.513421 ], [ 17.578125, 3.513421 ], [ 17.578125, 4.214943 ], [ 16.875000, 4.214943 ], [ 16.875000, 3.513421 ], [ 16.171875, 3.513421 ], [ 16.171875, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 14.765625, 3.513421 ], [ 14.765625, 4.214943 ], [ 14.062500, 4.214943 ], [ 14.062500, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 7.710992 ], [ 17.578125, 7.710992 ], [ 17.578125, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 9.102097 ], [ 20.390625, 9.102097 ], [ 20.390625, 10.487812 ], [ 21.093750, 10.487812 ], [ 21.093750, 11.178402 ], [ 22.500000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.015625, 35.460670 ], [ 26.015625, 34.885931 ], [ 23.203125, 34.885931 ], [ 23.203125, 35.460670 ], [ 26.015625, 35.460670 ] ] ], [ [ [ 24.609375, 41.508577 ], [ 24.609375, 40.979898 ], [ 24.609375, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 39.909736 ], [ 22.500000, 39.909736 ], [ 22.500000, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.203125, 37.718590 ], [ 23.203125, 37.160317 ], [ 22.500000, 37.160317 ], [ 22.500000, 36.597889 ], [ 21.796875, 36.597889 ], [ 21.796875, 37.160317 ], [ 21.093750, 37.160317 ], [ 21.093750, 38.272689 ], [ 20.390625, 38.272689 ], [ 20.390625, 40.446947 ], [ 21.093750, 40.446947 ], [ 21.093750, 40.979898 ], [ 22.500000, 40.979898 ], [ 22.500000, 41.508577 ], [ 24.609375, 41.508577 ] ] ], [ [ [ 26.718750, 40.979898 ], [ 26.015625, 40.979898 ], [ 26.015625, 41.508577 ], [ 26.718750, 41.508577 ], [ 26.718750, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 41.508577 ], [ 26.015625, 40.979898 ], [ 23.203125, 40.979898 ], [ 23.203125, 40.446947 ], [ 22.500000, 40.446947 ], [ 22.500000, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 22.500000, 37.718590 ], [ 22.500000, 36.597889 ], [ 21.093750, 36.597889 ], [ 21.093750, 38.822591 ], [ 19.687500, 38.822591 ], [ 19.687500, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 41.508577 ], [ 26.015625, 41.508577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 35.460670 ], [ 33.750000, 34.885931 ], [ 33.046875, 34.885931 ], [ 33.046875, 35.460670 ], [ 33.750000, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 35.460670 ], [ 33.750000, 34.885931 ], [ 31.640625, 34.885931 ], [ 31.640625, 35.460670 ], [ 33.750000, 35.460670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 34.885931 ], [ 33.750000, 34.307144 ], [ 32.343750, 34.307144 ], [ 32.343750, 34.885931 ], [ 33.750000, 34.885931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 27.683528 ], [ 33.046875, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 25.799891 ], [ 34.453125, 25.799891 ], [ 34.453125, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 22.593726 ], [ 24.609375, 22.593726 ], [ 24.609375, 31.952162 ], [ 26.015625, 31.952162 ], [ 26.015625, 31.353637 ], [ 29.531250, 31.353637 ], [ 29.531250, 31.952162 ], [ 31.640625, 31.952162 ], [ 31.640625, 31.353637 ], [ 33.750000, 31.353637 ], [ 33.750000, 30.145127 ], [ 34.453125, 30.145127 ], [ 34.453125, 28.921631 ], [ 33.750000, 28.921631 ], [ 33.750000, 27.683528 ], [ 33.046875, 27.683528 ] ], [ [ 32.343750, 29.535230 ], [ 32.343750, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 29.535230 ], [ 32.343750, 29.535230 ] ], [ [ 32.343750, 29.535230 ], [ 32.343750, 30.145127 ], [ 31.640625, 30.145127 ], [ 31.640625, 29.535230 ], [ 32.343750, 29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, 31.353637 ], [ 31.640625, 30.751278 ], [ 34.453125, 30.751278 ], [ 34.453125, 30.145127 ], [ 35.156250, 30.145127 ], [ 35.156250, 28.921631 ], [ 34.453125, 28.921631 ], [ 34.453125, 27.683528 ], [ 33.046875, 27.683528 ], [ 33.046875, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.431228 ], [ 34.453125, 26.431228 ], [ 34.453125, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 23.241346 ], [ 35.859375, 23.241346 ], [ 35.859375, 22.593726 ], [ 36.562500, 22.593726 ], [ 36.562500, 21.943046 ], [ 25.312500, 21.943046 ], [ 25.312500, 29.535230 ], [ 24.609375, 29.535230 ], [ 24.609375, 31.353637 ], [ 27.421875, 31.353637 ], [ 27.421875, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.353637 ], [ 31.640625, 31.353637 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.718750, 40.446947 ], [ 28.125000, 40.446947 ], [ 28.125000, 40.979898 ], [ 28.828125, 40.979898 ], [ 28.828125, 41.508577 ], [ 32.343750, 41.508577 ], [ 32.343750, 42.032974 ], [ 34.453125, 42.032974 ], [ 34.453125, 42.553080 ], [ 35.156250, 42.553080 ], [ 35.156250, 42.032974 ], [ 35.859375, 42.032974 ], [ 35.859375, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 40.979898 ], [ 39.375000, 40.979898 ], [ 39.375000, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 42.032974 ], [ 42.187500, 42.032974 ], [ 42.187500, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 40.446947 ], [ 44.296875, 40.446947 ], [ 44.296875, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 38.272689 ], [ 43.593750, 38.272689 ], [ 43.593750, 37.718590 ], [ 42.187500, 37.718590 ], [ 42.187500, 37.160317 ], [ 36.562500, 37.160317 ], [ 36.562500, 36.597889 ], [ 35.859375, 36.597889 ], [ 35.859375, 36.031332 ], [ 35.156250, 36.031332 ], [ 35.156250, 36.597889 ], [ 31.640625, 36.597889 ], [ 31.640625, 37.160317 ], [ 30.234375, 37.160317 ], [ 30.234375, 36.597889 ], [ 28.125000, 36.597889 ], [ 28.125000, 37.160317 ], [ 26.718750, 37.160317 ], [ 26.718750, 37.718590 ], [ 26.015625, 37.718590 ], [ 26.015625, 38.822591 ], [ 26.718750, 38.822591 ], [ 26.718750, 39.368279 ], [ 26.015625, 39.368279 ], [ 26.015625, 39.909736 ], [ 26.718750, 39.909736 ], [ 26.718750, 40.446947 ] ] ], [ [ [ 26.718750, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 42.032974 ], [ 27.421875, 42.032974 ], [ 27.421875, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 40.446947 ] ] ], [ [ [ 43.593750, 37.718590 ], [ 44.296875, 37.718590 ], [ 44.296875, 37.160317 ], [ 43.593750, 37.160317 ], [ 43.593750, 37.718590 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 40.446947 ], [ 29.531250, 40.446947 ], [ 29.531250, 40.979898 ], [ 32.343750, 40.979898 ], [ 32.343750, 41.508577 ], [ 33.750000, 41.508577 ], [ 33.750000, 42.032974 ], [ 35.156250, 42.032974 ], [ 35.156250, 41.508577 ], [ 37.265625, 41.508577 ], [ 37.265625, 40.979898 ], [ 41.484375, 40.979898 ], [ 41.484375, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 36.031332 ], [ 35.859375, 36.031332 ], [ 35.859375, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.031332 ], [ 31.640625, 36.031332 ], [ 31.640625, 36.597889 ], [ 30.937500, 36.597889 ], [ 30.937500, 36.031332 ], [ 28.828125, 36.031332 ], [ 28.828125, 36.597889 ], [ 27.421875, 36.597889 ], [ 27.421875, 37.160317 ], [ 26.718750, 37.160317 ], [ 26.718750, 37.718590 ], [ 26.015625, 37.718590 ], [ 26.015625, 38.272689 ], [ 26.718750, 38.272689 ], [ 26.718750, 38.822591 ], [ 26.015625, 38.822591 ], [ 26.015625, 39.368279 ], [ 26.718750, 39.368279 ], [ 26.718750, 39.909736 ], [ 26.015625, 39.909736 ], [ 26.015625, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 41.508577 ], [ 26.015625, 41.508577 ], [ 26.015625, 42.032974 ], [ 28.125000, 42.032974 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 28.828125, 40.979898 ], [ 27.421875, 40.979898 ], [ 27.421875, 40.446947 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 33.724340 ], [ 35.156250, 33.137551 ], [ 34.453125, 33.137551 ], [ 34.453125, 33.724340 ], [ 35.156250, 33.724340 ] ] ], [ [ [ 35.859375, 33.724340 ], [ 35.156250, 33.724340 ], [ 35.156250, 34.307144 ], [ 35.859375, 34.307144 ], [ 35.859375, 33.724340 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 34.307144 ], [ 36.562500, 33.724340 ], [ 35.859375, 33.724340 ], [ 35.859375, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 34.307144 ], [ 36.562500, 34.307144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.484375, 37.160317 ], [ 41.484375, 36.597889 ], [ 40.781250, 36.597889 ], [ 40.781250, 34.307144 ], [ 39.375000, 34.307144 ], [ 39.375000, 33.724340 ], [ 38.671875, 33.724340 ], [ 38.671875, 33.137551 ], [ 37.265625, 33.137551 ], [ 37.265625, 32.546813 ], [ 35.156250, 32.546813 ], [ 35.156250, 33.724340 ], [ 35.859375, 33.724340 ], [ 35.859375, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 37.160317 ], [ 41.484375, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 37.160317 ], [ 42.187500, 36.597889 ], [ 41.484375, 36.597889 ], [ 41.484375, 34.885931 ], [ 40.781250, 34.885931 ], [ 40.781250, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.137551 ], [ 37.968750, 33.137551 ], [ 37.968750, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.724340 ], [ 36.562500, 33.724340 ], [ 36.562500, 34.307144 ], [ 35.859375, 34.307144 ], [ 35.859375, 36.031332 ], [ 36.562500, 36.031332 ], [ 36.562500, 36.597889 ], [ 40.781250, 36.597889 ], [ 40.781250, 37.160317 ], [ 42.187500, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 37.718590 ], [ 43.593750, 37.160317 ], [ 44.296875, 37.160317 ], [ 44.296875, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 36.031332 ], [ 45.703125, 36.031332 ], [ 45.703125, 34.885931 ], [ 45.000000, 34.885931 ], [ 45.000000, 33.724340 ], [ 45.703125, 33.724340 ], [ 45.703125, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 30.145127 ], [ 47.109375, 30.145127 ], [ 47.109375, 29.535230 ], [ 43.593750, 29.535230 ], [ 43.593750, 30.145127 ], [ 42.187500, 30.145127 ], [ 42.187500, 30.751278 ], [ 41.484375, 30.751278 ], [ 41.484375, 31.353637 ], [ 40.078125, 31.353637 ], [ 40.078125, 31.952162 ], [ 38.671875, 31.952162 ], [ 38.671875, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 34.307144 ], [ 40.781250, 34.307144 ], [ 40.781250, 36.597889 ], [ 41.484375, 36.597889 ], [ 41.484375, 37.160317 ], [ 42.187500, 37.160317 ], [ 42.187500, 37.718590 ], [ 43.593750, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 37.160317 ], [ 45.000000, 36.597889 ], [ 45.703125, 36.597889 ], [ 45.703125, 35.460670 ], [ 46.406250, 35.460670 ], [ 46.406250, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 33.137551 ], [ 46.406250, 33.137551 ], [ 46.406250, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 30.145127 ], [ 47.109375, 30.145127 ], [ 47.109375, 29.535230 ], [ 46.406250, 29.535230 ], [ 46.406250, 28.921631 ], [ 44.296875, 28.921631 ], [ 44.296875, 29.535230 ], [ 43.593750, 29.535230 ], [ 43.593750, 30.145127 ], [ 42.890625, 30.145127 ], [ 42.890625, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 31.353637 ], [ 40.781250, 31.353637 ], [ 40.781250, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 32.546813 ], [ 38.671875, 32.546813 ], [ 38.671875, 33.137551 ], [ 39.375000, 33.137551 ], [ 39.375000, 33.724340 ], [ 40.781250, 33.724340 ], [ 40.781250, 34.885931 ], [ 41.484375, 34.885931 ], [ 41.484375, 36.597889 ], [ 42.187500, 36.597889 ], [ 42.187500, 37.160317 ], [ 45.000000, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.453125, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 30.145127 ], [ 33.750000, 30.145127 ], [ 33.750000, 31.353637 ], [ 34.453125, 31.353637 ] ] ], [ [ [ 35.156250, 31.952162 ], [ 34.453125, 31.952162 ], [ 34.453125, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 31.952162 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 31.952162 ], [ 35.156250, 30.145127 ], [ 34.453125, 30.145127 ], [ 34.453125, 31.952162 ], [ 35.156250, 31.952162 ] ] ], [ [ [ 35.859375, 32.546813 ], [ 35.156250, 32.546813 ], [ 35.156250, 33.137551 ], [ 35.859375, 33.137551 ], [ 35.859375, 32.546813 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 31.952162 ], [ 35.156250, 31.353637 ], [ 34.453125, 31.353637 ], [ 34.453125, 31.952162 ], [ 35.156250, 31.952162 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 32.546813 ], [ 35.859375, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 32.546813 ], [ 35.859375, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.137551 ], [ 38.671875, 32.546813 ], [ 37.968750, 32.546813 ], [ 37.968750, 31.952162 ], [ 36.562500, 31.952162 ], [ 36.562500, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 30.145127 ], [ 36.562500, 30.145127 ], [ 36.562500, 29.535230 ], [ 34.453125, 29.535230 ], [ 34.453125, 30.145127 ], [ 35.156250, 30.145127 ], [ 35.156250, 32.546813 ], [ 37.265625, 32.546813 ], [ 37.265625, 33.137551 ], [ 38.671875, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.137551 ], [ 38.671875, 32.546813 ], [ 39.375000, 32.546813 ], [ 39.375000, 31.952162 ], [ 38.671875, 31.952162 ], [ 38.671875, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 30.145127 ], [ 36.562500, 30.145127 ], [ 36.562500, 28.921631 ], [ 35.156250, 28.921631 ], [ 35.156250, 31.353637 ], [ 35.859375, 31.353637 ], [ 35.859375, 32.546813 ], [ 37.968750, 32.546813 ], [ 37.968750, 33.137551 ], [ 38.671875, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 22.593726 ], [ 36.562500, 19.311143 ], [ 37.265625, 19.311143 ], [ 37.265625, 18.646245 ], [ 37.968750, 18.646245 ], [ 37.968750, 17.978733 ], [ 37.265625, 17.978733 ], [ 37.265625, 17.308688 ], [ 36.562500, 17.308688 ], [ 36.562500, 15.961329 ], [ 35.859375, 15.961329 ], [ 35.859375, 12.554564 ], [ 35.156250, 12.554564 ], [ 35.156250, 11.867351 ], [ 34.453125, 11.867351 ], [ 34.453125, 11.178402 ], [ 33.750000, 11.178402 ], [ 33.750000, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 12.554564 ], [ 31.640625, 12.554564 ], [ 31.640625, 10.487812 ], [ 30.937500, 10.487812 ], [ 30.937500, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 10.487812 ], [ 24.609375, 10.487812 ], [ 24.609375, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 9.102097 ], [ 23.203125, 9.102097 ], [ 23.203125, 10.487812 ], [ 22.500000, 10.487812 ], [ 22.500000, 12.554564 ], [ 21.796875, 12.554564 ], [ 21.796875, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 15.961329 ], [ 23.203125, 15.961329 ], [ 23.203125, 20.632784 ], [ 24.609375, 20.632784 ], [ 24.609375, 22.593726 ], [ 36.562500, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 21.943046 ], [ 36.562500, 21.289374 ], [ 37.265625, 21.289374 ], [ 37.265625, 18.646245 ], [ 37.968750, 18.646245 ], [ 37.968750, 17.978733 ], [ 38.671875, 17.978733 ], [ 38.671875, 17.308688 ], [ 37.265625, 17.308688 ], [ 37.265625, 16.636192 ], [ 36.562500, 16.636192 ], [ 36.562500, 12.554564 ], [ 35.859375, 12.554564 ], [ 35.859375, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 11.178402 ], [ 34.453125, 11.178402 ], [ 34.453125, 9.795678 ], [ 33.750000, 9.795678 ], [ 33.750000, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 11.867351 ], [ 32.343750, 11.867351 ], [ 32.343750, 10.487812 ], [ 31.640625, 10.487812 ], [ 31.640625, 9.795678 ], [ 28.828125, 9.795678 ], [ 28.828125, 9.102097 ], [ 28.125000, 9.102097 ], [ 28.125000, 9.795678 ], [ 26.015625, 9.795678 ], [ 26.015625, 10.487812 ], [ 25.312500, 10.487812 ], [ 25.312500, 9.795678 ], [ 24.609375, 9.795678 ], [ 24.609375, 8.407168 ], [ 23.203125, 8.407168 ], [ 23.203125, 9.102097 ], [ 23.906250, 9.102097 ], [ 23.906250, 9.795678 ], [ 23.203125, 9.795678 ], [ 23.203125, 11.178402 ], [ 22.500000, 11.178402 ], [ 22.500000, 12.554564 ], [ 21.796875, 12.554564 ], [ 21.796875, 13.239945 ], [ 22.500000, 13.239945 ], [ 22.500000, 15.284185 ], [ 23.906250, 15.284185 ], [ 23.906250, 19.973349 ], [ 25.312500, 19.973349 ], [ 25.312500, 21.943046 ], [ 36.562500, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 12.554564 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 8.407168 ], [ 32.343750, 8.407168 ], [ 32.343750, 7.710992 ], [ 33.750000, 7.710992 ], [ 33.750000, 7.013668 ], [ 34.453125, 7.013668 ], [ 34.453125, 6.315299 ], [ 35.156250, 6.315299 ], [ 35.156250, 4.915833 ], [ 33.750000, 4.915833 ], [ 33.750000, 4.214943 ], [ 30.937500, 4.214943 ], [ 30.937500, 3.513421 ], [ 29.531250, 3.513421 ], [ 29.531250, 4.915833 ], [ 26.718750, 4.915833 ], [ 26.718750, 5.615986 ], [ 26.015625, 5.615986 ], [ 26.015625, 7.013668 ], [ 24.609375, 7.013668 ], [ 24.609375, 8.407168 ], [ 23.203125, 8.407168 ], [ 23.203125, 9.102097 ], [ 23.906250, 9.102097 ], [ 23.906250, 9.795678 ], [ 24.609375, 9.795678 ], [ 24.609375, 10.487812 ], [ 25.312500, 10.487812 ], [ 25.312500, 9.795678 ], [ 30.937500, 9.795678 ], [ 30.937500, 10.487812 ], [ 31.640625, 10.487812 ], [ 31.640625, 12.554564 ], [ 33.046875, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 11.867351 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 8.407168 ], [ 33.046875, 8.407168 ], [ 33.046875, 7.710992 ], [ 33.750000, 7.710992 ], [ 33.750000, 7.013668 ], [ 34.453125, 7.013668 ], [ 34.453125, 5.615986 ], [ 35.156250, 5.615986 ], [ 35.156250, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.214943 ], [ 33.750000, 4.214943 ], [ 33.750000, 3.513421 ], [ 30.234375, 3.513421 ], [ 30.234375, 4.214943 ], [ 27.421875, 4.214943 ], [ 27.421875, 5.615986 ], [ 26.015625, 5.615986 ], [ 26.015625, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 7.710992 ], [ 24.609375, 7.710992 ], [ 24.609375, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 10.487812 ], [ 26.015625, 10.487812 ], [ 26.015625, 9.795678 ], [ 28.125000, 9.795678 ], [ 28.125000, 9.102097 ], [ 28.828125, 9.102097 ], [ 28.828125, 9.795678 ], [ 31.640625, 9.795678 ], [ 31.640625, 10.487812 ], [ 32.343750, 10.487812 ], [ 32.343750, 11.867351 ], [ 33.046875, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 4.214943 ], [ 34.453125, 0.703107 ], [ 33.750000, 0.703107 ], [ 33.750000, -0.703107 ], [ 30.234375, -0.703107 ], [ 30.234375, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 2.811371 ], [ 30.234375, 2.811371 ], [ 30.234375, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 4.214943 ], [ 34.453125, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 34.453125, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.453125, 1.406109 ], [ 34.453125, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -0.703107 ], [ 30.937500, -0.703107 ], [ 30.937500, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.484375, 13.923404 ], [ 42.187500, 13.923404 ], [ 42.187500, 13.239945 ], [ 42.890625, 13.239945 ], [ 42.890625, 12.554564 ], [ 41.484375, 12.554564 ], [ 41.484375, 13.923404 ] ] ], [ [ [ 38.671875, 15.961329 ], [ 39.375000, 15.961329 ], [ 39.375000, 15.284185 ], [ 40.078125, 15.284185 ], [ 40.078125, 14.604847 ], [ 35.859375, 14.604847 ], [ 35.859375, 15.961329 ], [ 36.562500, 15.961329 ], [ 36.562500, 17.308688 ], [ 37.265625, 17.308688 ], [ 37.265625, 17.978733 ], [ 38.671875, 17.978733 ], [ 38.671875, 15.961329 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.484375, 13.239945 ], [ 42.890625, 13.239945 ], [ 42.890625, 12.554564 ], [ 41.484375, 12.554564 ], [ 41.484375, 13.239945 ] ] ], [ [ [ 40.078125, 14.604847 ], [ 37.265625, 14.604847 ], [ 37.265625, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 16.636192 ], [ 37.265625, 16.636192 ], [ 37.265625, 17.308688 ], [ 38.671875, 17.308688 ], [ 38.671875, 15.961329 ], [ 39.375000, 15.961329 ], [ 39.375000, 15.284185 ], [ 40.078125, 15.284185 ], [ 40.078125, 14.604847 ] ] ], [ [ [ 40.078125, 14.604847 ], [ 41.484375, 14.604847 ], [ 41.484375, 13.923404 ], [ 40.078125, 13.923404 ], [ 40.078125, 14.604847 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.890625, 12.554564 ], [ 42.890625, 11.178402 ], [ 41.484375, 11.178402 ], [ 41.484375, 12.554564 ], [ 42.890625, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 12.554564 ], [ 43.593750, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.178402 ], [ 41.484375, 11.178402 ], [ 41.484375, 11.867351 ], [ 42.187500, 11.867351 ], [ 42.187500, 12.554564 ], [ 43.593750, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 4.915833 ], [ 36.562500, 4.214943 ], [ 38.671875, 4.214943 ], [ 38.671875, 3.513421 ], [ 39.375000, 3.513421 ], [ 39.375000, 4.214943 ], [ 41.484375, 4.214943 ], [ 41.484375, 3.513421 ], [ 40.781250, 3.513421 ], [ 40.781250, -2.108899 ], [ 40.078125, -2.108899 ], [ 40.078125, -3.513421 ], [ 37.265625, -3.513421 ], [ 37.265625, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 35.156250, -2.108899 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 4.214943 ], [ 33.750000, 4.214943 ], [ 33.750000, 4.915833 ], [ 36.562500, 4.915833 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 5.615986 ], [ 35.859375, 4.214943 ], [ 36.562500, 4.214943 ], [ 36.562500, 3.513421 ], [ 40.781250, 3.513421 ], [ 40.781250, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.513421 ], [ 37.968750, -3.513421 ], [ 37.968750, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 34.453125, -2.108899 ], [ 34.453125, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 34.453125, 0.000000 ], [ 34.453125, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.453125, 2.108899 ], [ 34.453125, 3.513421 ], [ 33.750000, 3.513421 ], [ 33.750000, 4.214943 ], [ 34.453125, 4.214943 ], [ 34.453125, 4.915833 ], [ 35.156250, 4.915833 ], [ 35.156250, 5.615986 ], [ 35.859375, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 14.604847 ], [ 40.781250, 13.923404 ], [ 41.484375, 13.923404 ], [ 41.484375, 11.178402 ], [ 42.187500, 11.178402 ], [ 42.187500, 10.487812 ], [ 42.890625, 10.487812 ], [ 42.890625, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 9.102097 ], [ 45.000000, 9.102097 ], [ 45.000000, 8.407168 ], [ 47.109375, 8.407168 ], [ 47.109375, 7.710992 ], [ 46.406250, 7.710992 ], [ 46.406250, 7.013668 ], [ 45.703125, 7.013668 ], [ 45.703125, 6.315299 ], [ 45.000000, 6.315299 ], [ 45.000000, 5.615986 ], [ 43.593750, 5.615986 ], [ 43.593750, 4.915833 ], [ 41.484375, 4.915833 ], [ 41.484375, 4.214943 ], [ 39.375000, 4.214943 ], [ 39.375000, 3.513421 ], [ 38.671875, 3.513421 ], [ 38.671875, 4.214943 ], [ 36.562500, 4.214943 ], [ 36.562500, 4.915833 ], [ 35.156250, 4.915833 ], [ 35.156250, 6.315299 ], [ 34.453125, 6.315299 ], [ 34.453125, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 7.710992 ], [ 32.343750, 7.710992 ], [ 32.343750, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 11.178402 ], [ 34.453125, 11.178402 ], [ 34.453125, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 12.554564 ], [ 35.859375, 12.554564 ], [ 35.859375, 14.604847 ], [ 40.781250, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 14.604847 ], [ 40.078125, 13.923404 ], [ 41.484375, 13.923404 ], [ 41.484375, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 11.867351 ], [ 41.484375, 11.867351 ], [ 41.484375, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 9.102097 ], [ 44.296875, 9.102097 ], [ 44.296875, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 7.710992 ], [ 47.812500, 7.710992 ], [ 47.812500, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 6.315299 ], [ 46.406250, 6.315299 ], [ 46.406250, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 3.513421 ], [ 36.562500, 3.513421 ], [ 36.562500, 4.214943 ], [ 35.859375, 4.214943 ], [ 35.859375, 5.615986 ], [ 34.453125, 5.615986 ], [ 34.453125, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 9.795678 ], [ 34.453125, 9.795678 ], [ 34.453125, 11.178402 ], [ 35.156250, 11.178402 ], [ 35.156250, 11.867351 ], [ 35.859375, 11.867351 ], [ 35.859375, 12.554564 ], [ 36.562500, 12.554564 ], [ 36.562500, 13.923404 ], [ 37.265625, 13.923404 ], [ 37.265625, 14.604847 ], [ 40.078125, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 55.379110 ], [ 70.312500, 54.572062 ], [ 71.015625, 54.572062 ], [ 71.015625, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 53.748711 ], [ 75.234375, 53.748711 ], [ 75.234375, 54.162434 ], [ 75.937500, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.179343 ], [ 83.671875, 51.179343 ], [ 83.671875, 50.736455 ], [ 84.375000, 50.736455 ], [ 84.375000, 50.289339 ], [ 85.078125, 50.289339 ], [ 85.078125, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.484375, 48.922499 ], [ 86.484375, 48.458352 ], [ 85.078125, 48.458352 ], [ 85.078125, 47.040182 ], [ 83.671875, 47.040182 ], [ 83.671875, 47.517201 ], [ 82.968750, 47.517201 ], [ 82.968750, 46.558860 ], [ 82.265625, 46.558860 ], [ 82.265625, 45.583290 ], [ 80.859375, 45.583290 ], [ 80.859375, 45.089036 ], [ 79.453125, 45.089036 ], [ 79.453125, 44.590467 ], [ 80.156250, 44.590467 ], [ 80.156250, 43.580391 ], [ 80.859375, 43.580391 ], [ 80.859375, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.553080 ], [ 78.750000, 42.553080 ], [ 78.750000, 43.068888 ], [ 73.828125, 43.068888 ], [ 73.828125, 43.580391 ], [ 73.125000, 43.580391 ], [ 73.125000, 42.553080 ], [ 71.718750, 42.553080 ], [ 71.718750, 43.068888 ], [ 71.015625, 43.068888 ], [ 71.015625, 42.553080 ], [ 70.312500, 42.553080 ], [ 70.312500, 42.032974 ], [ 69.609375, 42.032974 ], [ 69.609375, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.979898 ], [ 67.500000, 40.979898 ], [ 67.500000, 41.508577 ], [ 66.093750, 41.508577 ], [ 66.093750, 42.032974 ], [ 65.390625, 42.032974 ], [ 65.390625, 42.553080 ], [ 66.093750, 42.553080 ], [ 66.093750, 43.068888 ], [ 65.390625, 43.068888 ], [ 65.390625, 43.580391 ], [ 64.687500, 43.580391 ], [ 64.687500, 44.087585 ], [ 62.578125, 44.087585 ], [ 62.578125, 43.580391 ], [ 61.171875, 43.580391 ], [ 61.171875, 44.087585 ], [ 60.468750, 44.087585 ], [ 60.468750, 44.590467 ], [ 59.765625, 44.590467 ], [ 59.765625, 45.089036 ], [ 58.359375, 45.089036 ], [ 58.359375, 45.583290 ], [ 56.953125, 45.583290 ], [ 56.953125, 45.089036 ], [ 55.546875, 45.089036 ], [ 55.546875, 41.508577 ], [ 54.843750, 41.508577 ], [ 54.843750, 42.032974 ], [ 54.140625, 42.032974 ], [ 54.140625, 42.553080 ], [ 52.734375, 42.553080 ], [ 52.734375, 42.032974 ], [ 52.031250, 42.032974 ], [ 52.031250, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.580391 ], [ 50.625000, 43.580391 ], [ 50.625000, 44.087585 ], [ 49.921875, 44.087585 ], [ 49.921875, 44.590467 ], [ 50.625000, 44.590467 ], [ 50.625000, 45.583290 ], [ 52.734375, 45.583290 ], [ 52.734375, 47.040182 ], [ 49.921875, 47.040182 ], [ 49.921875, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 47.517201 ], [ 47.812500, 47.517201 ], [ 47.812500, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 50.289339 ], [ 48.515625, 50.289339 ], [ 48.515625, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 52.052490 ], [ 52.031250, 52.052490 ], [ 52.031250, 51.618017 ], [ 53.437500, 51.618017 ], [ 53.437500, 51.179343 ], [ 54.140625, 51.179343 ], [ 54.140625, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 51.179343 ], [ 58.359375, 51.179343 ], [ 58.359375, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.618017 ], [ 59.765625, 51.618017 ], [ 59.765625, 52.052490 ], [ 60.468750, 52.052490 ], [ 60.468750, 52.908902 ], [ 61.171875, 52.908902 ], [ 61.171875, 53.330873 ], [ 60.468750, 53.330873 ], [ 60.468750, 53.748711 ], [ 61.171875, 53.748711 ], [ 61.171875, 54.162434 ], [ 63.281250, 54.162434 ], [ 63.281250, 54.572062 ], [ 65.390625, 54.572062 ], [ 65.390625, 54.977614 ], [ 68.203125, 54.977614 ], [ 68.203125, 55.379110 ], [ 70.312500, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.609375, 55.379110 ], [ 69.609375, 54.977614 ], [ 71.015625, 54.977614 ], [ 71.015625, 54.162434 ], [ 73.828125, 54.162434 ], [ 73.828125, 53.748711 ], [ 73.125000, 53.748711 ], [ 73.125000, 53.330873 ], [ 74.531250, 53.330873 ], [ 74.531250, 53.748711 ], [ 75.234375, 53.748711 ], [ 75.234375, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 52.908902 ], [ 78.750000, 52.908902 ], [ 78.750000, 52.052490 ], [ 79.453125, 52.052490 ], [ 79.453125, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.736455 ], [ 83.671875, 50.736455 ], [ 83.671875, 50.289339 ], [ 85.078125, 50.289339 ], [ 85.078125, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.484375, 48.922499 ], [ 86.484375, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.040182 ], [ 83.671875, 47.040182 ], [ 83.671875, 47.517201 ], [ 82.968750, 47.517201 ], [ 82.968750, 46.558860 ], [ 82.265625, 46.558860 ], [ 82.265625, 45.089036 ], [ 80.156250, 45.089036 ], [ 80.156250, 44.087585 ], [ 80.859375, 44.087585 ], [ 80.859375, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 43.068888 ], [ 73.828125, 43.068888 ], [ 73.828125, 42.553080 ], [ 72.421875, 42.553080 ], [ 72.421875, 43.068888 ], [ 71.718750, 43.068888 ], [ 71.718750, 42.553080 ], [ 71.015625, 42.553080 ], [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.446947 ], [ 68.203125, 40.446947 ], [ 68.203125, 40.979898 ], [ 66.796875, 40.979898 ], [ 66.796875, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 43.580391 ], [ 61.875000, 43.580391 ], [ 61.875000, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.590467 ], [ 59.765625, 44.590467 ], [ 59.765625, 45.089036 ], [ 58.359375, 45.089036 ], [ 58.359375, 45.583290 ], [ 57.656250, 45.583290 ], [ 57.656250, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 41.508577 ], [ 54.843750, 41.508577 ], [ 54.843750, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 42.553080 ], [ 51.328125, 42.553080 ], [ 51.328125, 43.580391 ], [ 50.625000, 43.580391 ], [ 50.625000, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.089036 ], [ 52.734375, 45.089036 ], [ 52.734375, 45.583290 ], [ 53.437500, 45.583290 ], [ 53.437500, 46.558860 ], [ 52.734375, 46.558860 ], [ 52.734375, 47.040182 ], [ 51.328125, 47.040182 ], [ 51.328125, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.517201 ], [ 47.109375, 47.517201 ], [ 47.109375, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 48.458352 ], [ 47.109375, 48.458352 ], [ 47.109375, 48.922499 ], [ 46.406250, 48.922499 ], [ 46.406250, 49.382373 ], [ 47.109375, 49.382373 ], [ 47.109375, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 51.179343 ], [ 50.625000, 51.179343 ], [ 50.625000, 51.618017 ], [ 52.734375, 51.618017 ], [ 52.734375, 51.179343 ], [ 54.843750, 51.179343 ], [ 54.843750, 50.736455 ], [ 56.953125, 50.736455 ], [ 56.953125, 51.179343 ], [ 58.359375, 51.179343 ], [ 58.359375, 50.736455 ], [ 61.875000, 50.736455 ], [ 61.875000, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.618017 ], [ 59.765625, 51.618017 ], [ 59.765625, 52.052490 ], [ 61.171875, 52.052490 ], [ 61.171875, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 52.908902 ], [ 61.875000, 52.908902 ], [ 61.875000, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 54.162434 ], [ 65.390625, 54.162434 ], [ 65.390625, 54.572062 ], [ 67.500000, 54.572062 ], [ 67.500000, 54.977614 ], [ 68.906250, 54.977614 ], [ 68.906250, 55.379110 ], [ 69.609375, 55.379110 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.359375, 45.583290 ], [ 58.359375, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.590467 ], [ 60.468750, 44.590467 ], [ 60.468750, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 43.580391 ], [ 62.578125, 43.580391 ], [ 62.578125, 44.087585 ], [ 64.687500, 44.087585 ], [ 64.687500, 43.580391 ], [ 65.390625, 43.580391 ], [ 65.390625, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.553080 ], [ 65.390625, 42.553080 ], [ 65.390625, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 41.508577 ], [ 67.500000, 41.508577 ], [ 67.500000, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 39.909736 ], [ 67.500000, 39.909736 ], [ 67.500000, 38.822591 ], [ 68.203125, 38.822591 ], [ 68.203125, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 37.160317 ], [ 66.796875, 37.160317 ], [ 66.796875, 37.718590 ], [ 66.093750, 37.718590 ], [ 66.093750, 38.272689 ], [ 64.687500, 38.272689 ], [ 64.687500, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 39.368279 ], [ 62.578125, 39.368279 ], [ 62.578125, 39.909736 ], [ 61.875000, 39.909736 ], [ 61.875000, 41.508577 ], [ 59.765625, 41.508577 ], [ 59.765625, 42.553080 ], [ 57.656250, 42.553080 ], [ 57.656250, 42.032974 ], [ 56.250000, 42.032974 ], [ 56.250000, 41.508577 ], [ 55.546875, 41.508577 ], [ 55.546875, 45.089036 ], [ 56.953125, 45.089036 ], [ 56.953125, 45.583290 ], [ 58.359375, 45.583290 ] ] ], [ [ [ 70.312500, 42.032974 ], [ 70.312500, 41.508577 ], [ 71.718750, 41.508577 ], [ 71.718750, 40.979898 ], [ 72.421875, 40.979898 ], [ 72.421875, 40.446947 ], [ 70.312500, 40.446947 ], [ 70.312500, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 42.032974 ], [ 70.312500, 42.032974 ] ] ], [ [ [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 42.553080 ], [ 71.015625, 42.553080 ], [ 71.015625, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.359375, 45.583290 ], [ 58.359375, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.590467 ], [ 61.171875, 44.590467 ], [ 61.171875, 44.087585 ], [ 61.875000, 44.087585 ], [ 61.875000, 43.580391 ], [ 64.687500, 43.580391 ], [ 64.687500, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.032974 ], [ 66.796875, 42.032974 ], [ 66.796875, 40.979898 ], [ 68.203125, 40.979898 ], [ 68.203125, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 38.822591 ], [ 68.203125, 38.822591 ], [ 68.203125, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 37.160317 ], [ 66.796875, 37.160317 ], [ 66.796875, 37.718590 ], [ 65.390625, 37.718590 ], [ 65.390625, 38.272689 ], [ 63.984375, 38.272689 ], [ 63.984375, 38.822591 ], [ 63.281250, 38.822591 ], [ 63.281250, 39.368279 ], [ 62.578125, 39.368279 ], [ 62.578125, 40.446947 ], [ 61.875000, 40.446947 ], [ 61.875000, 40.979898 ], [ 59.765625, 40.979898 ], [ 59.765625, 42.032974 ], [ 56.953125, 42.032974 ], [ 56.953125, 41.508577 ], [ 56.250000, 41.508577 ], [ 56.250000, 45.089036 ], [ 57.656250, 45.089036 ], [ 57.656250, 45.583290 ], [ 58.359375, 45.583290 ] ] ], [ [ [ 71.015625, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 40.446947 ], [ 72.421875, 40.446947 ], [ 72.421875, 39.909736 ], [ 71.015625, 39.909736 ], [ 71.015625, 40.979898 ] ] ], [ [ [ 70.312500, 40.979898 ], [ 69.609375, 40.979898 ], [ 69.609375, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 40.979898 ] ] ], [ [ [ 71.015625, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.508577 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.828125, 43.580391 ], [ 73.828125, 43.068888 ], [ 78.750000, 43.068888 ], [ 78.750000, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 42.032974 ], [ 78.046875, 42.032974 ], [ 78.046875, 41.508577 ], [ 76.640625, 41.508577 ], [ 76.640625, 40.979898 ], [ 75.937500, 40.979898 ], [ 75.937500, 40.446947 ], [ 74.531250, 40.446947 ], [ 74.531250, 39.909736 ], [ 73.125000, 39.909736 ], [ 73.125000, 39.368279 ], [ 70.312500, 39.368279 ], [ 70.312500, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.446947 ], [ 72.421875, 40.446947 ], [ 72.421875, 40.979898 ], [ 71.718750, 40.979898 ], [ 71.718750, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 43.068888 ], [ 71.718750, 43.068888 ], [ 71.718750, 42.553080 ], [ 73.125000, 42.553080 ], [ 73.125000, 43.580391 ], [ 73.828125, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.453125, 43.068888 ], [ 79.453125, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 41.508577 ], [ 78.750000, 41.508577 ], [ 78.750000, 40.979898 ], [ 76.640625, 40.979898 ], [ 76.640625, 40.446947 ], [ 74.531250, 40.446947 ], [ 74.531250, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.368279 ], [ 69.609375, 39.368279 ], [ 69.609375, 39.909736 ], [ 72.421875, 39.909736 ], [ 72.421875, 40.446947 ], [ 73.125000, 40.446947 ], [ 73.125000, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 41.508577 ], [ 71.015625, 41.508577 ], [ 71.015625, 42.553080 ], [ 71.718750, 42.553080 ], [ 71.718750, 43.068888 ], [ 72.421875, 43.068888 ], [ 72.421875, 42.553080 ], [ 73.828125, 42.553080 ], [ 73.828125, 43.068888 ], [ 79.453125, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.703125, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 40.446947 ], [ 43.593750, 40.446947 ], [ 43.593750, 40.979898 ], [ 42.890625, 40.979898 ], [ 42.890625, 41.508577 ], [ 45.000000, 41.508577 ], [ 45.000000, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 39.909736 ] ] ], [ [ [ 45.703125, 39.909736 ], [ 46.406250, 39.909736 ], [ 46.406250, 38.822591 ], [ 45.703125, 38.822591 ], [ 45.703125, 39.909736 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.703125, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 45.703125, 40.979898 ], [ 45.703125, 39.368279 ] ] ], [ [ [ 45.703125, 39.368279 ], [ 46.406250, 39.368279 ], [ 46.406250, 38.822591 ], [ 45.703125, 38.822591 ], [ 45.703125, 39.368279 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.406250, 42.032974 ], [ 46.406250, 41.508577 ], [ 48.515625, 41.508577 ], [ 48.515625, 40.979898 ], [ 49.921875, 40.979898 ], [ 49.921875, 40.446947 ], [ 49.218750, 40.446947 ], [ 49.218750, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 38.272689 ], [ 47.812500, 38.272689 ], [ 47.812500, 39.909736 ], [ 47.109375, 39.909736 ], [ 47.109375, 39.368279 ], [ 46.406250, 39.368279 ], [ 46.406250, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.446947 ], [ 45.000000, 40.446947 ], [ 45.000000, 41.508577 ], [ 45.703125, 41.508577 ], [ 45.703125, 42.032974 ], [ 46.406250, 42.032974 ] ] ], [ [ [ 45.703125, 39.909736 ], [ 45.703125, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 39.909736 ], [ 45.703125, 39.909736 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.812500, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.368279 ], [ 45.703125, 39.368279 ], [ 45.703125, 40.979898 ], [ 46.406250, 40.979898 ], [ 46.406250, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 40.979898 ], [ 47.812500, 40.979898 ], [ 47.812500, 41.508577 ], [ 49.218750, 41.508577 ], [ 49.218750, 40.979898 ], [ 49.921875, 40.979898 ], [ 49.921875, 40.446947 ], [ 50.625000, 40.446947 ], [ 50.625000, 39.909736 ], [ 49.218750, 39.909736 ], [ 49.218750, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 39.368279 ], [ 47.812500, 39.368279 ], [ 47.812500, 38.822591 ] ] ], [ [ [ 45.703125, 39.368279 ], [ 45.703125, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 39.368279 ], [ 45.703125, 39.368279 ] ] ], [ [ [ 47.812500, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 38.272689 ], [ 47.812500, 38.272689 ], [ 47.812500, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.368279 ], [ 47.109375, 39.368279 ], [ 47.109375, 39.909736 ], [ 47.812500, 39.909736 ], [ 47.812500, 38.272689 ], [ 48.515625, 38.272689 ], [ 48.515625, 37.718590 ], [ 49.921875, 37.718590 ], [ 49.921875, 37.160317 ], [ 53.437500, 37.160317 ], [ 53.437500, 37.718590 ], [ 54.843750, 37.718590 ], [ 54.843750, 38.272689 ], [ 56.953125, 38.272689 ], [ 56.953125, 37.718590 ], [ 59.062500, 37.718590 ], [ 59.062500, 37.160317 ], [ 59.765625, 37.160317 ], [ 59.765625, 36.597889 ], [ 60.468750, 36.597889 ], [ 60.468750, 36.031332 ], [ 61.171875, 36.031332 ], [ 61.171875, 35.460670 ], [ 60.468750, 35.460670 ], [ 60.468750, 31.952162 ], [ 61.171875, 31.952162 ], [ 61.171875, 30.145127 ], [ 60.468750, 30.145127 ], [ 60.468750, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.059126 ], [ 63.281250, 27.059126 ], [ 63.281250, 26.431228 ], [ 61.875000, 26.431228 ], [ 61.875000, 25.799891 ], [ 61.171875, 25.799891 ], [ 61.171875, 25.165173 ], [ 59.765625, 25.165173 ], [ 59.765625, 25.799891 ], [ 56.953125, 25.799891 ], [ 56.953125, 27.059126 ], [ 52.031250, 27.059126 ], [ 52.031250, 27.683528 ], [ 51.328125, 27.683528 ], [ 51.328125, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 49.921875, 29.535230 ], [ 49.921875, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 31.952162 ], [ 47.109375, 31.952162 ], [ 47.109375, 32.546813 ], [ 45.703125, 32.546813 ], [ 45.703125, 33.724340 ], [ 45.000000, 33.724340 ], [ 45.000000, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 36.031332 ], [ 45.000000, 36.031332 ], [ 45.000000, 36.597889 ], [ 44.296875, 36.597889 ], [ 44.296875, 37.718590 ], [ 43.593750, 37.718590 ], [ 43.593750, 38.272689 ], [ 44.296875, 38.272689 ], [ 44.296875, 39.368279 ] ] ], [ [ [ 44.296875, 39.368279 ], [ 43.593750, 39.368279 ], [ 43.593750, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.368279 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.368279 ], [ 45.000000, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 38.272689 ], [ 49.218750, 38.272689 ], [ 49.218750, 37.160317 ], [ 49.921875, 37.160317 ], [ 49.921875, 36.597889 ], [ 53.437500, 36.597889 ], [ 53.437500, 37.160317 ], [ 55.546875, 37.160317 ], [ 55.546875, 37.718590 ], [ 56.953125, 37.718590 ], [ 56.953125, 38.272689 ], [ 57.656250, 38.272689 ], [ 57.656250, 37.718590 ], [ 58.359375, 37.718590 ], [ 58.359375, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 36.597889 ], [ 61.171875, 36.597889 ], [ 61.171875, 34.885931 ], [ 60.468750, 34.885931 ], [ 60.468750, 33.724340 ], [ 61.171875, 33.724340 ], [ 61.171875, 33.137551 ], [ 60.468750, 33.137551 ], [ 60.468750, 32.546813 ], [ 61.171875, 32.546813 ], [ 61.171875, 31.353637 ], [ 61.875000, 31.353637 ], [ 61.875000, 30.145127 ], [ 61.171875, 30.145127 ], [ 61.171875, 28.921631 ], [ 61.875000, 28.921631 ], [ 61.875000, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.059126 ], [ 63.281250, 27.059126 ], [ 63.281250, 26.431228 ], [ 61.875000, 26.431228 ], [ 61.875000, 25.799891 ], [ 61.171875, 25.799891 ], [ 61.171875, 25.165173 ], [ 58.359375, 25.165173 ], [ 58.359375, 25.799891 ], [ 57.656250, 25.799891 ], [ 57.656250, 26.431228 ], [ 56.953125, 26.431228 ], [ 56.953125, 27.059126 ], [ 55.546875, 27.059126 ], [ 55.546875, 26.431228 ], [ 53.437500, 26.431228 ], [ 53.437500, 27.059126 ], [ 52.734375, 27.059126 ], [ 52.734375, 27.683528 ], [ 51.328125, 27.683528 ], [ 51.328125, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 49.921875, 29.535230 ], [ 49.921875, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 31.952162 ], [ 47.109375, 31.952162 ], [ 47.109375, 32.546813 ], [ 46.406250, 32.546813 ], [ 46.406250, 33.137551 ], [ 45.703125, 33.137551 ], [ 45.703125, 34.885931 ], [ 46.406250, 34.885931 ], [ 46.406250, 35.460670 ], [ 45.703125, 35.460670 ], [ 45.703125, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 37.160317 ], [ 44.296875, 37.160317 ], [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ] ] ], [ [ [ 48.515625, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 39.368279 ], [ 48.515625, 39.368279 ], [ 48.515625, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 47.109375, 28.921631 ], [ 47.109375, 30.145127 ], [ 47.812500, 30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 48.515625, 28.921631 ], [ 48.515625, 28.304381 ], [ 47.109375, 28.304381 ], [ 47.109375, 28.921631 ], [ 46.406250, 28.921631 ], [ 46.406250, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 30.145127 ], [ 47.812500, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 32.546813 ], [ 38.671875, 31.952162 ], [ 40.078125, 31.952162 ], [ 40.078125, 31.353637 ], [ 41.484375, 31.353637 ], [ 41.484375, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 30.145127 ], [ 43.593750, 30.145127 ], [ 43.593750, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 28.921631 ], [ 47.812500, 28.921631 ], [ 47.812500, 28.304381 ], [ 48.515625, 28.304381 ], [ 48.515625, 27.683528 ], [ 49.218750, 27.683528 ], [ 49.218750, 27.059126 ], [ 49.921875, 27.059126 ], [ 49.921875, 25.165173 ], [ 51.328125, 25.165173 ], [ 51.328125, 23.241346 ], [ 52.734375, 23.241346 ], [ 52.734375, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 21.289374 ], [ 54.843750, 21.289374 ], [ 54.843750, 20.632784 ], [ 54.140625, 20.632784 ], [ 54.140625, 19.973349 ], [ 52.734375, 19.973349 ], [ 52.734375, 19.311143 ], [ 50.625000, 19.311143 ], [ 50.625000, 18.646245 ], [ 47.812500, 18.646245 ], [ 47.812500, 17.978733 ], [ 47.109375, 17.978733 ], [ 47.109375, 17.308688 ], [ 45.000000, 17.308688 ], [ 45.000000, 17.978733 ], [ 42.890625, 17.978733 ], [ 42.890625, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.978733 ], [ 41.484375, 17.978733 ], [ 41.484375, 18.646245 ], [ 40.781250, 18.646245 ], [ 40.781250, 19.973349 ], [ 40.078125, 19.973349 ], [ 40.078125, 20.632784 ], [ 38.671875, 20.632784 ], [ 38.671875, 23.241346 ], [ 37.968750, 23.241346 ], [ 37.968750, 24.527135 ], [ 36.562500, 24.527135 ], [ 36.562500, 26.431228 ], [ 35.859375, 26.431228 ], [ 35.859375, 27.059126 ], [ 35.156250, 27.059126 ], [ 35.156250, 27.683528 ], [ 34.453125, 27.683528 ], [ 34.453125, 29.535230 ], [ 36.562500, 29.535230 ], [ 36.562500, 30.145127 ], [ 37.265625, 30.145127 ], [ 37.265625, 31.353637 ], [ 36.562500, 31.353637 ], [ 36.562500, 31.952162 ], [ 37.968750, 31.952162 ], [ 37.968750, 32.546813 ], [ 38.671875, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 31.952162 ], [ 40.781250, 31.353637 ], [ 42.187500, 31.353637 ], [ 42.187500, 30.751278 ], [ 42.890625, 30.751278 ], [ 42.890625, 30.145127 ], [ 43.593750, 30.145127 ], [ 43.593750, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 28.921631 ], [ 47.109375, 28.921631 ], [ 47.109375, 28.304381 ], [ 48.515625, 28.304381 ], [ 48.515625, 27.683528 ], [ 49.218750, 27.683528 ], [ 49.218750, 26.431228 ], [ 49.921875, 26.431228 ], [ 49.921875, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 23.241346 ], [ 52.734375, 23.241346 ], [ 52.734375, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 19.973349 ], [ 54.140625, 19.973349 ], [ 54.140625, 19.311143 ], [ 51.328125, 19.311143 ], [ 51.328125, 18.646245 ], [ 49.218750, 18.646245 ], [ 49.218750, 17.978733 ], [ 48.515625, 17.978733 ], [ 48.515625, 17.308688 ], [ 47.812500, 17.308688 ], [ 47.812500, 16.636192 ], [ 46.406250, 16.636192 ], [ 46.406250, 17.308688 ], [ 42.890625, 17.308688 ], [ 42.890625, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.308688 ], [ 41.484375, 17.308688 ], [ 41.484375, 18.646245 ], [ 40.781250, 18.646245 ], [ 40.781250, 19.311143 ], [ 40.078125, 19.311143 ], [ 40.078125, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 23.241346 ], [ 38.671875, 23.241346 ], [ 38.671875, 23.885838 ], [ 37.265625, 23.885838 ], [ 37.265625, 25.799891 ], [ 36.562500, 25.799891 ], [ 36.562500, 27.059126 ], [ 35.859375, 27.059126 ], [ 35.859375, 27.683528 ], [ 35.156250, 27.683528 ], [ 35.156250, 28.921631 ], [ 36.562500, 28.921631 ], [ 36.562500, 30.145127 ], [ 37.968750, 30.145127 ], [ 37.968750, 30.751278 ], [ 37.265625, 30.751278 ], [ 37.265625, 31.353637 ], [ 38.671875, 31.353637 ], [ 38.671875, 31.952162 ], [ 40.781250, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 25.799891 ], [ 51.328125, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 25.799891 ], [ 51.328125, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 25.165173 ], [ 51.328125, 24.527135 ], [ 50.625000, 24.527135 ], [ 50.625000, 25.165173 ], [ 51.328125, 25.165173 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.799891 ], [ 56.250000, 25.165173 ], [ 55.546875, 25.165173 ], [ 55.546875, 24.527135 ], [ 54.843750, 24.527135 ], [ 54.843750, 22.593726 ], [ 52.734375, 22.593726 ], [ 52.734375, 23.241346 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 54.140625, 24.527135 ], [ 54.140625, 25.165173 ], [ 54.843750, 25.165173 ], [ 54.843750, 25.799891 ], [ 56.250000, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.546875, 24.527135 ], [ 55.546875, 22.593726 ], [ 52.734375, 22.593726 ], [ 52.734375, 23.241346 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 52.031250, 24.527135 ], [ 52.031250, 23.885838 ], [ 54.843750, 23.885838 ], [ 54.843750, 24.527135 ], [ 55.546875, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.765625, 42.553080 ], [ 59.765625, 41.508577 ], [ 61.875000, 41.508577 ], [ 61.875000, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.368279 ], [ 63.984375, 39.368279 ], [ 63.984375, 38.822591 ], [ 64.687500, 38.822591 ], [ 64.687500, 38.272689 ], [ 66.093750, 38.272689 ], [ 66.093750, 37.718590 ], [ 65.390625, 37.718590 ], [ 65.390625, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.597889 ], [ 63.984375, 36.597889 ], [ 63.984375, 36.031332 ], [ 62.578125, 36.031332 ], [ 62.578125, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 36.031332 ], [ 60.468750, 36.031332 ], [ 60.468750, 36.597889 ], [ 59.765625, 36.597889 ], [ 59.765625, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 37.718590 ], [ 56.953125, 37.718590 ], [ 56.953125, 38.272689 ], [ 54.843750, 38.272689 ], [ 54.843750, 37.718590 ], [ 53.437500, 37.718590 ], [ 53.437500, 39.368279 ], [ 52.734375, 39.368279 ], [ 52.734375, 40.979898 ], [ 54.140625, 40.979898 ], [ 54.140625, 41.508577 ], [ 53.437500, 41.508577 ], [ 53.437500, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 42.553080 ], [ 54.140625, 42.553080 ], [ 54.140625, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.508577 ], [ 56.250000, 41.508577 ], [ 56.250000, 42.032974 ], [ 57.656250, 42.032974 ], [ 57.656250, 42.553080 ], [ 59.765625, 42.553080 ] ] ], [ [ [ 52.734375, 42.032974 ], [ 52.734375, 41.508577 ], [ 52.031250, 41.508577 ], [ 52.031250, 42.032974 ], [ 52.734375, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.765625, 42.032974 ], [ 59.765625, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 40.446947 ], [ 62.578125, 40.446947 ], [ 62.578125, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 38.272689 ], [ 65.390625, 38.272689 ], [ 65.390625, 37.718590 ], [ 66.796875, 37.718590 ], [ 66.796875, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.031332 ], [ 63.281250, 36.031332 ], [ 63.281250, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 36.597889 ], [ 59.062500, 36.597889 ], [ 59.062500, 37.160317 ], [ 58.359375, 37.160317 ], [ 58.359375, 37.718590 ], [ 57.656250, 37.718590 ], [ 57.656250, 38.272689 ], [ 56.953125, 38.272689 ], [ 56.953125, 37.718590 ], [ 55.546875, 37.718590 ], [ 55.546875, 37.160317 ], [ 53.437500, 37.160317 ], [ 53.437500, 38.272689 ], [ 54.140625, 38.272689 ], [ 54.140625, 38.822591 ], [ 53.437500, 38.822591 ], [ 53.437500, 39.909736 ], [ 52.734375, 39.909736 ], [ 52.734375, 40.446947 ], [ 54.843750, 40.446947 ], [ 54.843750, 40.979898 ], [ 54.140625, 40.979898 ], [ 54.140625, 41.508577 ], [ 53.437500, 41.508577 ], [ 53.437500, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 42.032974 ], [ 59.765625, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 19.311143 ], [ 51.328125, 18.646245 ], [ 52.031250, 18.646245 ], [ 52.031250, 17.978733 ], [ 52.734375, 17.978733 ], [ 52.734375, 16.636192 ], [ 52.031250, 16.636192 ], [ 52.031250, 15.284185 ], [ 49.218750, 15.284185 ], [ 49.218750, 14.604847 ], [ 47.812500, 14.604847 ], [ 47.812500, 13.923404 ], [ 45.000000, 13.923404 ], [ 45.000000, 13.239945 ], [ 42.890625, 13.239945 ], [ 42.890625, 15.284185 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 42.890625, 16.636192 ], [ 42.890625, 17.978733 ], [ 45.000000, 17.978733 ], [ 45.000000, 17.308688 ], [ 47.109375, 17.308688 ], [ 47.109375, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 18.646245 ], [ 50.625000, 18.646245 ], [ 50.625000, 19.311143 ], [ 51.328125, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 19.311143 ], [ 52.031250, 17.978733 ], [ 52.734375, 17.978733 ], [ 52.734375, 15.961329 ], [ 52.031250, 15.961329 ], [ 52.031250, 15.284185 ], [ 51.328125, 15.284185 ], [ 51.328125, 14.604847 ], [ 49.921875, 14.604847 ], [ 49.921875, 13.923404 ], [ 47.109375, 13.923404 ], [ 47.109375, 13.239945 ], [ 45.000000, 13.239945 ], [ 45.000000, 12.554564 ], [ 42.890625, 12.554564 ], [ 42.890625, 13.239945 ], [ 43.593750, 13.239945 ], [ 43.593750, 13.923404 ], [ 42.890625, 13.923404 ], [ 42.890625, 17.308688 ], [ 46.406250, 17.308688 ], [ 46.406250, 16.636192 ], [ 47.812500, 16.636192 ], [ 47.812500, 17.308688 ], [ 48.515625, 17.308688 ], [ 48.515625, 17.978733 ], [ 49.218750, 17.978733 ], [ 49.218750, 18.646245 ], [ 51.328125, 18.646245 ], [ 51.328125, 19.311143 ], [ 52.031250, 19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.250000, 25.165173 ], [ 56.250000, 23.885838 ], [ 58.359375, 23.885838 ], [ 58.359375, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 21.943046 ], [ 59.062500, 21.943046 ], [ 59.062500, 21.289374 ], [ 58.359375, 21.289374 ], [ 58.359375, 20.632784 ], [ 57.656250, 20.632784 ], [ 57.656250, 19.311143 ], [ 56.953125, 19.311143 ], [ 56.953125, 18.646245 ], [ 56.250000, 18.646245 ], [ 56.250000, 17.978733 ], [ 54.843750, 17.978733 ], [ 54.843750, 17.308688 ], [ 52.734375, 17.308688 ], [ 52.734375, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 18.646245 ], [ 51.328125, 18.646245 ], [ 51.328125, 19.311143 ], [ 52.734375, 19.311143 ], [ 52.734375, 19.973349 ], [ 54.140625, 19.973349 ], [ 54.140625, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 21.289374 ], [ 55.546875, 21.289374 ], [ 55.546875, 22.593726 ], [ 54.843750, 22.593726 ], [ 54.843750, 24.527135 ], [ 55.546875, 24.527135 ], [ 55.546875, 25.165173 ], [ 56.250000, 25.165173 ] ] ], [ [ [ 56.250000, 26.431228 ], [ 56.250000, 25.799891 ], [ 55.546875, 25.799891 ], [ 55.546875, 26.431228 ], [ 56.250000, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.165173 ], [ 56.250000, 24.527135 ], [ 56.953125, 24.527135 ], [ 56.953125, 23.885838 ], [ 59.062500, 23.885838 ], [ 59.062500, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 21.289374 ], [ 59.062500, 21.289374 ], [ 59.062500, 20.632784 ], [ 58.359375, 20.632784 ], [ 58.359375, 19.973349 ], [ 57.656250, 19.973349 ], [ 57.656250, 18.646245 ], [ 56.953125, 18.646245 ], [ 56.953125, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 16.636192 ], [ 52.734375, 16.636192 ], [ 52.734375, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 19.311143 ], [ 54.140625, 19.311143 ], [ 54.140625, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 20.632784 ], [ 55.546875, 20.632784 ], [ 55.546875, 25.165173 ], [ 56.250000, 25.165173 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.515625, 11.867351 ], [ 48.515625, 9.102097 ], [ 47.812500, 9.102097 ], [ 47.812500, 8.407168 ], [ 45.000000, 8.407168 ], [ 45.000000, 9.102097 ], [ 43.593750, 9.102097 ], [ 43.593750, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 10.487812 ], [ 42.187500, 10.487812 ], [ 42.187500, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.487812 ], [ 45.000000, 10.487812 ], [ 45.000000, 11.178402 ], [ 47.812500, 11.178402 ], [ 47.812500, 11.867351 ], [ 48.515625, 11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, 11.178402 ], [ 49.218750, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 7.710992 ], [ 45.703125, 7.710992 ], [ 45.703125, 8.407168 ], [ 44.296875, 8.407168 ], [ 44.296875, 9.102097 ], [ 43.593750, 9.102097 ], [ 43.593750, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.487812 ], [ 47.812500, 10.487812 ], [ 47.812500, 11.178402 ], [ 49.218750, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 11.867351 ], [ 50.625000, 9.795678 ], [ 49.921875, 9.795678 ], [ 49.921875, 7.710992 ], [ 49.218750, 7.710992 ], [ 49.218750, 6.315299 ], [ 48.515625, 6.315299 ], [ 48.515625, 4.915833 ], [ 47.109375, 4.915833 ], [ 47.109375, 4.214943 ], [ 46.406250, 4.214943 ], [ 46.406250, 2.811371 ], [ 45.703125, 2.811371 ], [ 45.703125, 2.108899 ], [ 45.000000, 2.108899 ], [ 45.000000, 1.406109 ], [ 43.593750, 1.406109 ], [ 43.593750, 0.703107 ], [ 42.890625, 0.703107 ], [ 42.890625, 0.000000 ], [ 42.187500, 0.000000 ], [ 42.187500, -0.703107 ], [ 41.484375, -0.703107 ], [ 41.484375, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 5.615986 ], [ 45.000000, 5.615986 ], [ 45.000000, 6.315299 ], [ 45.703125, 6.315299 ], [ 45.703125, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 7.710992 ], [ 47.109375, 7.710992 ], [ 47.109375, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 11.867351 ], [ 50.625000, 11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 11.867351 ], [ 51.328125, 10.487812 ], [ 50.625000, 10.487812 ], [ 50.625000, 8.407168 ], [ 49.921875, 8.407168 ], [ 49.921875, 7.710992 ], [ 49.218750, 7.710992 ], [ 49.218750, 6.315299 ], [ 48.515625, 6.315299 ], [ 48.515625, 4.915833 ], [ 47.812500, 4.915833 ], [ 47.812500, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.406109 ], [ 45.000000, 1.406109 ], [ 45.000000, 0.703107 ], [ 44.296875, 0.703107 ], [ 44.296875, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 42.187500, 3.513421 ], [ 42.187500, 4.214943 ], [ 43.593750, 4.214943 ], [ 43.593750, 4.915833 ], [ 45.703125, 4.915833 ], [ 45.703125, 5.615986 ], [ 46.406250, 5.615986 ], [ 46.406250, 6.315299 ], [ 47.109375, 6.315299 ], [ 47.109375, 7.013668 ], [ 47.812500, 7.013668 ], [ 47.812500, 8.407168 ], [ 48.515625, 8.407168 ], [ 48.515625, 9.102097 ], [ 49.218750, 9.102097 ], [ 49.218750, 11.178402 ], [ 49.921875, 11.178402 ], [ 49.921875, 11.867351 ], [ 51.328125, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.906250, 39.909736 ], [ 70.312500, 39.909736 ], [ 70.312500, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 38.822591 ], [ 74.531250, 38.822591 ], [ 74.531250, 37.718590 ], [ 73.125000, 37.718590 ], [ 73.125000, 37.160317 ], [ 71.015625, 37.160317 ], [ 71.015625, 38.272689 ], [ 69.609375, 38.272689 ], [ 69.609375, 37.718590 ], [ 68.906250, 37.718590 ], [ 68.906250, 37.160317 ], [ 67.500000, 37.160317 ], [ 67.500000, 37.718590 ], [ 68.203125, 37.718590 ], [ 68.203125, 38.822591 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.909736 ], [ 68.906250, 39.909736 ] ] ], [ [ [ 70.312500, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 40.446947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.015625, 40.979898 ], [ 71.015625, 39.909736 ], [ 69.609375, 39.909736 ], [ 69.609375, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 38.272689 ], [ 74.531250, 38.272689 ], [ 74.531250, 37.160317 ], [ 72.421875, 37.160317 ], [ 72.421875, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 71.015625, 37.718590 ], [ 71.015625, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.718590 ], [ 69.609375, 37.718590 ], [ 69.609375, 37.160317 ], [ 67.500000, 37.160317 ], [ 67.500000, 37.718590 ], [ 68.203125, 37.718590 ], [ 68.203125, 38.822591 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.368279 ], [ 68.906250, 39.368279 ], [ 68.906250, 40.446947 ], [ 69.609375, 40.446947 ], [ 69.609375, 40.979898 ], [ 71.015625, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.015625, 38.272689 ], [ 71.015625, 37.160317 ], [ 72.421875, 37.160317 ], [ 72.421875, 36.597889 ], [ 71.015625, 36.597889 ], [ 71.015625, 34.307144 ], [ 69.609375, 34.307144 ], [ 69.609375, 33.724340 ], [ 70.312500, 33.724340 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.546813 ], [ 68.906250, 32.546813 ], [ 68.906250, 31.952162 ], [ 67.500000, 31.952162 ], [ 67.500000, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.535230 ], [ 60.468750, 29.535230 ], [ 60.468750, 30.145127 ], [ 61.171875, 30.145127 ], [ 61.171875, 31.952162 ], [ 60.468750, 31.952162 ], [ 60.468750, 35.460670 ], [ 62.578125, 35.460670 ], [ 62.578125, 36.031332 ], [ 63.984375, 36.031332 ], [ 63.984375, 36.597889 ], [ 64.687500, 36.597889 ], [ 64.687500, 37.160317 ], [ 65.390625, 37.160317 ], [ 65.390625, 37.718590 ], [ 66.796875, 37.718590 ], [ 66.796875, 37.160317 ], [ 68.906250, 37.160317 ], [ 68.906250, 37.718590 ], [ 69.609375, 37.718590 ], [ 69.609375, 38.272689 ], [ 71.015625, 38.272689 ] ] ], [ [ [ 74.531250, 37.160317 ], [ 73.125000, 37.160317 ], [ 73.125000, 37.718590 ], [ 74.531250, 37.718590 ], [ 74.531250, 37.160317 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.015625, 38.272689 ], [ 71.015625, 37.718590 ], [ 71.718750, 37.718590 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.031332 ], [ 71.015625, 36.031332 ], [ 71.015625, 35.460670 ], [ 71.718750, 35.460670 ], [ 71.718750, 34.885931 ], [ 71.015625, 34.885931 ], [ 71.015625, 33.724340 ], [ 70.312500, 33.724340 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 30.145127 ], [ 61.875000, 30.145127 ], [ 61.875000, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 32.546813 ], [ 60.468750, 32.546813 ], [ 60.468750, 33.137551 ], [ 61.171875, 33.137551 ], [ 61.171875, 33.724340 ], [ 60.468750, 33.724340 ], [ 60.468750, 34.885931 ], [ 61.171875, 34.885931 ], [ 61.171875, 35.460670 ], [ 63.281250, 35.460670 ], [ 63.281250, 36.031332 ], [ 64.687500, 36.031332 ], [ 64.687500, 37.160317 ], [ 69.609375, 37.160317 ], [ 69.609375, 37.718590 ], [ 70.312500, 37.718590 ], [ 70.312500, 38.272689 ], [ 71.015625, 38.272689 ] ] ], [ [ [ 74.531250, 36.597889 ], [ 72.421875, 36.597889 ], [ 72.421875, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 36.597889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.234375, 37.160317 ], [ 75.234375, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.031332 ], [ 77.343750, 36.031332 ], [ 77.343750, 35.460670 ], [ 76.640625, 35.460670 ], [ 76.640625, 34.885931 ], [ 73.125000, 34.885931 ], [ 73.125000, 34.307144 ], [ 73.828125, 34.307144 ], [ 73.828125, 32.546813 ], [ 75.234375, 32.546813 ], [ 75.234375, 31.952162 ], [ 73.828125, 31.952162 ], [ 73.828125, 30.751278 ], [ 73.125000, 30.751278 ], [ 73.125000, 29.535230 ], [ 72.421875, 29.535230 ], [ 72.421875, 28.921631 ], [ 71.718750, 28.921631 ], [ 71.718750, 28.304381 ], [ 70.312500, 28.304381 ], [ 70.312500, 27.683528 ], [ 69.609375, 27.683528 ], [ 69.609375, 25.799891 ], [ 70.312500, 25.799891 ], [ 70.312500, 25.165173 ], [ 71.015625, 25.165173 ], [ 71.015625, 24.527135 ], [ 68.203125, 24.527135 ], [ 68.203125, 23.885838 ], [ 66.796875, 23.885838 ], [ 66.796875, 25.165173 ], [ 66.093750, 25.165173 ], [ 66.093750, 25.799891 ], [ 62.578125, 25.799891 ], [ 62.578125, 25.165173 ], [ 61.171875, 25.165173 ], [ 61.171875, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 26.431228 ], [ 63.281250, 26.431228 ], [ 63.281250, 27.059126 ], [ 62.578125, 27.059126 ], [ 62.578125, 28.304381 ], [ 61.171875, 28.304381 ], [ 61.171875, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 30.751278 ], [ 66.796875, 30.751278 ], [ 66.796875, 31.353637 ], [ 67.500000, 31.353637 ], [ 67.500000, 31.952162 ], [ 68.906250, 31.952162 ], [ 68.906250, 32.546813 ], [ 69.609375, 32.546813 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.724340 ], [ 69.609375, 33.724340 ], [ 69.609375, 34.307144 ], [ 71.015625, 34.307144 ], [ 71.015625, 36.597889 ], [ 72.421875, 36.597889 ], [ 72.421875, 37.160317 ], [ 75.234375, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.234375, 37.160317 ], [ 75.234375, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.031332 ], [ 76.640625, 36.031332 ], [ 76.640625, 35.460670 ], [ 78.046875, 35.460670 ], [ 78.046875, 34.885931 ], [ 76.640625, 34.885931 ], [ 76.640625, 34.307144 ], [ 73.828125, 34.307144 ], [ 73.828125, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 32.546813 ], [ 75.234375, 32.546813 ], [ 75.234375, 31.952162 ], [ 74.531250, 31.952162 ], [ 74.531250, 30.145127 ], [ 73.125000, 30.145127 ], [ 73.125000, 28.304381 ], [ 72.421875, 28.304381 ], [ 72.421875, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.431228 ], [ 70.312500, 26.431228 ], [ 70.312500, 25.165173 ], [ 71.015625, 25.165173 ], [ 71.015625, 24.527135 ], [ 68.906250, 24.527135 ], [ 68.906250, 23.885838 ], [ 66.796875, 23.885838 ], [ 66.796875, 24.527135 ], [ 66.093750, 24.527135 ], [ 66.093750, 25.165173 ], [ 61.171875, 25.165173 ], [ 61.171875, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 26.431228 ], [ 63.281250, 26.431228 ], [ 63.281250, 27.059126 ], [ 62.578125, 27.059126 ], [ 62.578125, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 28.921631 ], [ 61.171875, 28.921631 ], [ 61.171875, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 30.751278 ], [ 66.796875, 30.751278 ], [ 66.796875, 31.353637 ], [ 69.609375, 31.353637 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.724340 ], [ 71.015625, 33.724340 ], [ 71.015625, 34.885931 ], [ 71.718750, 34.885931 ], [ 71.718750, 35.460670 ], [ 71.015625, 35.460670 ], [ 71.015625, 36.031332 ], [ 71.718750, 36.031332 ], [ 71.718750, 36.597889 ], [ 74.531250, 36.597889 ], [ 74.531250, 37.160317 ], [ 75.234375, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 82.265625, 29.535230 ], [ 83.671875, 29.535230 ], [ 83.671875, 28.921631 ], [ 84.375000, 28.921631 ], [ 84.375000, 28.304381 ], [ 87.890625, 28.304381 ], [ 87.890625, 26.431228 ], [ 85.781250, 26.431228 ], [ 85.781250, 27.059126 ], [ 84.375000, 27.059126 ], [ 84.375000, 27.683528 ], [ 81.562500, 27.683528 ], [ 81.562500, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 28.921631 ], [ 79.453125, 28.921631 ], [ 79.453125, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 30.145127 ], [ 82.265625, 30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 82.265625, 29.535230 ], [ 83.671875, 29.535230 ], [ 83.671875, 28.921631 ], [ 85.078125, 28.921631 ], [ 85.078125, 28.304381 ], [ 85.781250, 28.304381 ], [ 85.781250, 27.683528 ], [ 87.890625, 27.683528 ], [ 87.890625, 26.431228 ], [ 84.375000, 26.431228 ], [ 84.375000, 27.059126 ], [ 82.265625, 27.059126 ], [ 82.265625, 27.683528 ], [ 80.859375, 27.683528 ], [ 80.859375, 28.304381 ], [ 80.156250, 28.304381 ], [ 80.156250, 29.535230 ], [ 80.859375, 29.535230 ], [ 80.859375, 30.145127 ], [ 82.265625, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.046875, 35.460670 ], [ 78.046875, 34.885931 ], [ 78.750000, 34.885931 ], [ 78.750000, 32.546813 ], [ 78.046875, 32.546813 ], [ 78.046875, 31.353637 ], [ 79.453125, 31.353637 ], [ 79.453125, 30.751278 ], [ 80.859375, 30.751278 ], [ 80.859375, 30.145127 ], [ 80.156250, 30.145127 ], [ 80.156250, 29.535230 ], [ 79.453125, 29.535230 ], [ 79.453125, 28.921631 ], [ 80.859375, 28.921631 ], [ 80.859375, 28.304381 ], [ 81.562500, 28.304381 ], [ 81.562500, 27.683528 ], [ 84.375000, 27.683528 ], [ 84.375000, 27.059126 ], [ 85.781250, 27.059126 ], [ 85.781250, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 25.165173 ], [ 87.890625, 25.165173 ], [ 87.890625, 24.527135 ], [ 88.593750, 24.527135 ], [ 88.593750, 23.885838 ], [ 87.890625, 23.885838 ], [ 87.890625, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 21.943046 ], [ 86.484375, 21.943046 ], [ 86.484375, 20.632784 ], [ 85.781250, 20.632784 ], [ 85.781250, 19.973349 ], [ 84.375000, 19.973349 ], [ 84.375000, 19.311143 ], [ 83.671875, 19.311143 ], [ 83.671875, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 17.308688 ], [ 81.562500, 17.308688 ], [ 81.562500, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 15.284185 ], [ 79.453125, 15.284185 ], [ 79.453125, 14.604847 ], [ 80.156250, 14.604847 ], [ 80.156250, 12.554564 ], [ 79.453125, 12.554564 ], [ 79.453125, 10.487812 ], [ 78.750000, 10.487812 ], [ 78.750000, 9.102097 ], [ 78.046875, 9.102097 ], [ 78.046875, 8.407168 ], [ 75.937500, 8.407168 ], [ 75.937500, 11.178402 ], [ 75.234375, 11.178402 ], [ 75.234375, 12.554564 ], [ 74.531250, 12.554564 ], [ 74.531250, 14.604847 ], [ 73.828125, 14.604847 ], [ 73.828125, 15.961329 ], [ 73.125000, 15.961329 ], [ 73.125000, 17.308688 ], [ 72.421875, 17.308688 ], [ 72.421875, 21.289374 ], [ 69.609375, 21.289374 ], [ 69.609375, 21.943046 ], [ 68.906250, 21.943046 ], [ 68.906250, 23.241346 ], [ 67.500000, 23.241346 ], [ 67.500000, 23.885838 ], [ 68.203125, 23.885838 ], [ 68.203125, 24.527135 ], [ 71.015625, 24.527135 ], [ 71.015625, 25.165173 ], [ 70.312500, 25.165173 ], [ 70.312500, 25.799891 ], [ 69.609375, 25.799891 ], [ 69.609375, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 28.304381 ], [ 71.718750, 28.304381 ], [ 71.718750, 28.921631 ], [ 72.421875, 28.921631 ], [ 72.421875, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 30.751278 ], [ 73.828125, 30.751278 ], [ 73.828125, 31.952162 ], [ 75.234375, 31.952162 ], [ 75.234375, 32.546813 ], [ 73.828125, 32.546813 ], [ 73.828125, 34.307144 ], [ 73.125000, 34.307144 ], [ 73.125000, 34.885931 ], [ 76.640625, 34.885931 ], [ 76.640625, 35.460670 ], [ 78.046875, 35.460670 ] ] ], [ [ [ 95.625000, 29.535230 ], [ 95.625000, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.683528 ], [ 96.328125, 27.683528 ], [ 96.328125, 27.059126 ], [ 94.921875, 27.059126 ], [ 94.921875, 25.799891 ], [ 94.218750, 25.799891 ], [ 94.218750, 24.527135 ], [ 93.515625, 24.527135 ], [ 93.515625, 23.885838 ], [ 92.812500, 23.885838 ], [ 92.812500, 22.593726 ], [ 92.109375, 22.593726 ], [ 92.109375, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 25.165173 ], [ 89.296875, 25.165173 ], [ 89.296875, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 28.304381 ], [ 88.593750, 28.304381 ], [ 88.593750, 27.059126 ], [ 91.406250, 27.059126 ], [ 91.406250, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 28.921631 ], [ 94.218750, 28.921631 ], [ 94.218750, 29.535230 ], [ 95.625000, 29.535230 ] ] ], [ [ [ 91.406250, 23.885838 ], [ 91.406250, 23.241346 ], [ 90.703125, 23.241346 ], [ 90.703125, 23.885838 ], [ 91.406250, 23.885838 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 34.885931 ], [ 78.750000, 33.137551 ], [ 79.453125, 33.137551 ], [ 79.453125, 32.546813 ], [ 78.750000, 32.546813 ], [ 78.750000, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 27.683528 ], [ 82.265625, 27.683528 ], [ 82.265625, 27.059126 ], [ 84.375000, 27.059126 ], [ 84.375000, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 26.431228 ], [ 90.703125, 26.431228 ], [ 90.703125, 27.059126 ], [ 92.109375, 27.059126 ], [ 92.109375, 27.683528 ], [ 92.812500, 27.683528 ], [ 92.812500, 28.304381 ], [ 93.515625, 28.304381 ], [ 93.515625, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.059126 ], [ 96.328125, 27.059126 ], [ 96.328125, 26.431228 ], [ 94.921875, 26.431228 ], [ 94.921875, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 21.943046 ], [ 92.812500, 21.943046 ], [ 92.812500, 22.593726 ], [ 92.109375, 22.593726 ], [ 92.109375, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.885838 ], [ 92.109375, 23.885838 ], [ 92.109375, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 25.799891 ], [ 87.890625, 25.799891 ], [ 87.890625, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 21.943046 ], [ 87.890625, 21.943046 ], [ 87.890625, 21.289374 ], [ 87.187500, 21.289374 ], [ 87.187500, 19.973349 ], [ 86.484375, 19.973349 ], [ 86.484375, 19.311143 ], [ 85.078125, 19.311143 ], [ 85.078125, 18.646245 ], [ 84.375000, 18.646245 ], [ 84.375000, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 17.308688 ], [ 82.265625, 17.308688 ], [ 82.265625, 16.636192 ], [ 81.562500, 16.636192 ], [ 81.562500, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 10.487812 ], [ 79.453125, 10.487812 ], [ 79.453125, 9.795678 ], [ 78.750000, 9.795678 ], [ 78.750000, 9.102097 ], [ 78.046875, 9.102097 ], [ 78.046875, 7.710992 ], [ 77.343750, 7.710992 ], [ 77.343750, 8.407168 ], [ 76.640625, 8.407168 ], [ 76.640625, 9.795678 ], [ 75.937500, 9.795678 ], [ 75.937500, 11.178402 ], [ 75.234375, 11.178402 ], [ 75.234375, 11.867351 ], [ 74.531250, 11.867351 ], [ 74.531250, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 16.636192 ], [ 73.125000, 16.636192 ], [ 73.125000, 20.632784 ], [ 69.609375, 20.632784 ], [ 69.609375, 21.289374 ], [ 68.906250, 21.289374 ], [ 68.906250, 21.943046 ], [ 69.609375, 21.943046 ], [ 69.609375, 22.593726 ], [ 68.906250, 22.593726 ], [ 68.906250, 23.241346 ], [ 68.203125, 23.241346 ], [ 68.203125, 23.885838 ], [ 68.906250, 23.885838 ], [ 68.906250, 24.527135 ], [ 71.015625, 24.527135 ], [ 71.015625, 25.165173 ], [ 70.312500, 25.165173 ], [ 70.312500, 26.431228 ], [ 69.609375, 26.431228 ], [ 69.609375, 27.059126 ], [ 70.312500, 27.059126 ], [ 70.312500, 27.683528 ], [ 72.421875, 27.683528 ], [ 72.421875, 28.304381 ], [ 73.125000, 28.304381 ], [ 73.125000, 30.145127 ], [ 74.531250, 30.145127 ], [ 74.531250, 31.952162 ], [ 75.234375, 31.952162 ], [ 75.234375, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 33.137551 ], [ 73.828125, 33.137551 ], [ 73.828125, 34.307144 ], [ 76.640625, 34.307144 ], [ 76.640625, 34.885931 ], [ 78.750000, 34.885931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.795678 ], [ 80.156250, 9.102097 ], [ 80.859375, 9.102097 ], [ 80.859375, 8.407168 ], [ 81.562500, 8.407168 ], [ 81.562500, 6.315299 ], [ 79.453125, 6.315299 ], [ 79.453125, 9.795678 ], [ 80.156250, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.859375, 9.102097 ], [ 80.859375, 8.407168 ], [ 81.562500, 8.407168 ], [ 81.562500, 6.315299 ], [ 80.156250, 6.315299 ], [ 80.156250, 7.710992 ], [ 79.453125, 7.710992 ], [ 79.453125, 9.102097 ], [ 80.859375, 9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.843750, 52.052490 ], [ 99.843750, 51.618017 ], [ 101.953125, 51.618017 ], [ 101.953125, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 49.382373 ], [ 112.500000, 49.382373 ], [ 112.500000, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 50.289339 ], [ 114.609375, 50.289339 ], [ 114.609375, 49.837982 ], [ 116.015625, 49.837982 ], [ 116.015625, 48.922499 ], [ 115.312500, 48.922499 ], [ 115.312500, 47.989922 ], [ 118.828125, 47.989922 ], [ 118.828125, 47.517201 ], [ 119.531250, 47.517201 ], [ 119.531250, 47.040182 ], [ 117.421875, 47.040182 ], [ 117.421875, 46.558860 ], [ 116.718750, 46.558860 ], [ 116.718750, 46.073231 ], [ 115.312500, 46.073231 ], [ 115.312500, 45.583290 ], [ 113.906250, 45.583290 ], [ 113.906250, 45.089036 ], [ 111.093750, 45.089036 ], [ 111.093750, 44.087585 ], [ 111.796875, 44.087585 ], [ 111.796875, 43.580391 ], [ 111.093750, 43.580391 ], [ 111.093750, 43.068888 ], [ 110.390625, 43.068888 ], [ 110.390625, 42.553080 ], [ 105.468750, 42.553080 ], [ 105.468750, 42.032974 ], [ 101.250000, 42.032974 ], [ 101.250000, 42.553080 ], [ 97.734375, 42.553080 ], [ 97.734375, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 44.087585 ], [ 94.921875, 44.087585 ], [ 94.921875, 44.590467 ], [ 92.812500, 44.590467 ], [ 92.812500, 45.089036 ], [ 92.109375, 45.089036 ], [ 92.109375, 45.583290 ], [ 90.000000, 45.583290 ], [ 90.000000, 46.558860 ], [ 90.703125, 46.558860 ], [ 90.703125, 47.517201 ], [ 90.000000, 47.517201 ], [ 90.000000, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.458352 ], [ 87.890625, 48.458352 ], [ 87.890625, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.382373 ], [ 88.593750, 49.382373 ], [ 88.593750, 49.837982 ], [ 89.296875, 49.837982 ], [ 89.296875, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.736455 ], [ 93.515625, 50.736455 ], [ 93.515625, 50.289339 ], [ 95.625000, 50.289339 ], [ 95.625000, 49.837982 ], [ 97.031250, 49.837982 ], [ 97.031250, 50.289339 ], [ 97.734375, 50.289339 ], [ 97.734375, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 52.052490 ], [ 99.843750, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 51.618017 ], [ 100.546875, 51.179343 ], [ 101.953125, 51.179343 ], [ 101.953125, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 49.382373 ], [ 109.687500, 49.382373 ], [ 109.687500, 48.922499 ], [ 111.796875, 48.922499 ], [ 111.796875, 49.382373 ], [ 113.906250, 49.382373 ], [ 113.906250, 49.837982 ], [ 114.609375, 49.837982 ], [ 114.609375, 50.289339 ], [ 115.312500, 50.289339 ], [ 115.312500, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.382373 ], [ 116.015625, 49.382373 ], [ 116.015625, 48.458352 ], [ 115.312500, 48.458352 ], [ 115.312500, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 46.558860 ], [ 116.718750, 46.558860 ], [ 116.718750, 46.073231 ], [ 116.015625, 46.073231 ], [ 116.015625, 45.583290 ], [ 114.609375, 45.583290 ], [ 114.609375, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.590467 ], [ 112.500000, 44.590467 ], [ 112.500000, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.590467 ], [ 111.093750, 44.590467 ], [ 111.093750, 44.087585 ], [ 111.796875, 44.087585 ], [ 111.796875, 43.580391 ], [ 111.093750, 43.580391 ], [ 111.093750, 43.068888 ], [ 110.390625, 43.068888 ], [ 110.390625, 42.553080 ], [ 107.578125, 42.553080 ], [ 107.578125, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 41.508577 ], [ 104.765625, 41.508577 ], [ 104.765625, 42.032974 ], [ 101.953125, 42.032974 ], [ 101.953125, 42.553080 ], [ 95.625000, 42.553080 ], [ 95.625000, 44.087585 ], [ 94.921875, 44.087585 ], [ 94.921875, 44.590467 ], [ 93.515625, 44.590467 ], [ 93.515625, 45.089036 ], [ 90.703125, 45.089036 ], [ 90.703125, 47.040182 ], [ 90.000000, 47.040182 ], [ 90.000000, 47.517201 ], [ 88.593750, 47.517201 ], [ 88.593750, 47.989922 ], [ 87.890625, 47.989922 ], [ 87.890625, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.837982 ], [ 90.703125, 49.837982 ], [ 90.703125, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 49.837982 ], [ 98.437500, 49.837982 ], [ 98.437500, 50.736455 ], [ 97.734375, 50.736455 ], [ 97.734375, 51.179343 ], [ 98.437500, 51.179343 ], [ 98.437500, 51.618017 ], [ 100.546875, 51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 28.304381 ], [ 91.406250, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 28.304381 ], [ 91.406250, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 28.304381 ], [ 91.406250, 27.683528 ], [ 92.109375, 27.683528 ], [ 92.109375, 27.059126 ], [ 90.703125, 27.059126 ], [ 90.703125, 26.431228 ], [ 88.593750, 26.431228 ], [ 88.593750, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 28.304381 ], [ 91.406250, 28.304381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, 23.885838 ], [ 90.703125, 23.885838 ], [ 90.703125, 23.241346 ], [ 90.000000, 23.241346 ], [ 90.000000, 21.943046 ], [ 89.296875, 21.943046 ], [ 89.296875, 22.593726 ], [ 88.593750, 22.593726 ], [ 88.593750, 23.241346 ], [ 87.890625, 23.241346 ], [ 87.890625, 23.885838 ], [ 88.593750, 23.885838 ], [ 88.593750, 24.527135 ], [ 87.890625, 24.527135 ], [ 87.890625, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.799891 ], [ 87.890625, 25.799891 ], [ 87.890625, 26.431228 ], [ 89.296875, 26.431228 ], [ 89.296875, 25.165173 ], [ 92.109375, 25.165173 ], [ 92.109375, 24.527135 ], [ 91.406250, 24.527135 ], [ 91.406250, 23.885838 ] ] ], [ [ [ 91.406250, 23.885838 ], [ 92.109375, 23.885838 ], [ 92.109375, 21.289374 ], [ 91.406250, 21.289374 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.885838 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 25.799891 ], [ 90.000000, 25.165173 ], [ 92.109375, 25.165173 ], [ 92.109375, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 23.241346 ], [ 92.109375, 23.241346 ], [ 92.109375, 22.593726 ], [ 92.812500, 22.593726 ], [ 92.812500, 21.289374 ], [ 92.109375, 21.289374 ], [ 92.109375, 21.943046 ], [ 91.406250, 21.943046 ], [ 91.406250, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.593750, 21.943046 ], [ 88.593750, 25.165173 ], [ 87.890625, 25.165173 ], [ 87.890625, 25.799891 ], [ 90.000000, 25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.046875, 53.748711 ], [ 123.046875, 53.330873 ], [ 124.453125, 53.330873 ], [ 124.453125, 52.908902 ], [ 125.859375, 52.908902 ], [ 125.859375, 52.482780 ], [ 126.562500, 52.482780 ], [ 126.562500, 51.179343 ], [ 127.265625, 51.179343 ], [ 127.265625, 49.837982 ], [ 129.375000, 49.837982 ], [ 129.375000, 49.382373 ], [ 130.078125, 49.382373 ], [ 130.078125, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 48.458352 ], [ 134.296875, 48.458352 ], [ 134.296875, 47.517201 ], [ 133.593750, 47.517201 ], [ 133.593750, 46.073231 ], [ 132.890625, 46.073231 ], [ 132.890625, 45.583290 ], [ 131.484375, 45.583290 ], [ 131.484375, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 43.068888 ], [ 130.078125, 43.068888 ], [ 130.078125, 42.553080 ], [ 129.375000, 42.553080 ], [ 129.375000, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.508577 ], [ 125.859375, 41.508577 ], [ 125.859375, 40.979898 ], [ 124.453125, 40.979898 ], [ 124.453125, 40.446947 ], [ 123.750000, 40.446947 ], [ 123.750000, 39.909736 ], [ 122.343750, 39.909736 ], [ 122.343750, 39.368279 ], [ 120.937500, 39.368279 ], [ 120.937500, 39.909736 ], [ 121.640625, 39.909736 ], [ 121.640625, 40.979898 ], [ 120.234375, 40.979898 ], [ 120.234375, 40.446947 ], [ 119.531250, 40.446947 ], [ 119.531250, 39.368279 ], [ 117.421875, 39.368279 ], [ 117.421875, 38.272689 ], [ 118.828125, 38.272689 ], [ 118.828125, 37.160317 ], [ 119.531250, 37.160317 ], [ 119.531250, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 37.160317 ], [ 120.937500, 37.160317 ], [ 120.937500, 36.597889 ], [ 120.234375, 36.597889 ], [ 120.234375, 36.031332 ], [ 119.531250, 36.031332 ], [ 119.531250, 35.460670 ], [ 118.828125, 35.460670 ], [ 118.828125, 34.885931 ], [ 119.531250, 34.885931 ], [ 119.531250, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 31.952162 ], [ 121.640625, 31.952162 ], [ 121.640625, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 30.145127 ], [ 121.640625, 30.145127 ], [ 121.640625, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 27.683528 ], [ 120.234375, 27.683528 ], [ 120.234375, 26.431228 ], [ 119.531250, 26.431228 ], [ 119.531250, 25.165173 ], [ 118.125000, 25.165173 ], [ 118.125000, 24.527135 ], [ 117.421875, 24.527135 ], [ 117.421875, 23.885838 ], [ 116.718750, 23.885838 ], [ 116.718750, 23.241346 ], [ 114.609375, 23.241346 ], [ 114.609375, 22.593726 ], [ 113.203125, 22.593726 ], [ 113.203125, 21.943046 ], [ 110.390625, 21.943046 ], [ 110.390625, 20.632784 ], [ 110.390625, 19.311143 ], [ 109.687500, 19.311143 ], [ 109.687500, 18.646245 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.973349 ], [ 109.687500, 19.973349 ], [ 109.687500, 20.632784 ], [ 108.984375, 20.632784 ], [ 108.984375, 21.289374 ], [ 109.687500, 21.289374 ], [ 109.687500, 21.943046 ], [ 106.171875, 21.943046 ], [ 106.171875, 23.241346 ], [ 102.656250, 23.241346 ], [ 102.656250, 22.593726 ], [ 101.250000, 22.593726 ], [ 101.250000, 21.289374 ], [ 100.546875, 21.289374 ], [ 100.546875, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 23.241346 ], [ 98.437500, 23.241346 ], [ 98.437500, 24.527135 ], [ 97.031250, 24.527135 ], [ 97.031250, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 27.683528 ], [ 97.734375, 27.683528 ], [ 97.734375, 28.304381 ], [ 95.625000, 28.304381 ], [ 95.625000, 29.535230 ], [ 94.218750, 29.535230 ], [ 94.218750, 28.921631 ], [ 92.812500, 28.921631 ], [ 92.812500, 28.304381 ], [ 89.296875, 28.304381 ], [ 89.296875, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 28.304381 ], [ 84.375000, 28.304381 ], [ 84.375000, 28.921631 ], [ 83.671875, 28.921631 ], [ 83.671875, 29.535230 ], [ 82.265625, 29.535230 ], [ 82.265625, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 31.353637 ], [ 78.046875, 31.353637 ], [ 78.046875, 32.546813 ], [ 78.750000, 32.546813 ], [ 78.750000, 34.885931 ], [ 78.046875, 34.885931 ], [ 78.046875, 35.460670 ], [ 77.343750, 35.460670 ], [ 77.343750, 36.031332 ], [ 75.937500, 36.031332 ], [ 75.937500, 36.597889 ], [ 75.234375, 36.597889 ], [ 75.234375, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 38.822591 ], [ 73.828125, 38.822591 ], [ 73.828125, 39.368279 ], [ 73.125000, 39.368279 ], [ 73.125000, 39.909736 ], [ 74.531250, 39.909736 ], [ 74.531250, 40.446947 ], [ 75.937500, 40.446947 ], [ 75.937500, 40.979898 ], [ 76.640625, 40.979898 ], [ 76.640625, 41.508577 ], [ 78.046875, 41.508577 ], [ 78.046875, 42.032974 ], [ 79.453125, 42.032974 ], [ 79.453125, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.580391 ], [ 80.156250, 43.580391 ], [ 80.156250, 44.590467 ], [ 79.453125, 44.590467 ], [ 79.453125, 45.089036 ], [ 80.859375, 45.089036 ], [ 80.859375, 45.583290 ], [ 82.265625, 45.583290 ], [ 82.265625, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.517201 ], [ 83.671875, 47.517201 ], [ 83.671875, 47.040182 ], [ 85.078125, 47.040182 ], [ 85.078125, 48.458352 ], [ 86.484375, 48.458352 ], [ 86.484375, 48.922499 ], [ 87.890625, 48.922499 ], [ 87.890625, 48.458352 ], [ 88.593750, 48.458352 ], [ 88.593750, 47.989922 ], [ 90.000000, 47.989922 ], [ 90.000000, 47.517201 ], [ 90.703125, 47.517201 ], [ 90.703125, 46.558860 ], [ 90.000000, 46.558860 ], [ 90.000000, 45.583290 ], [ 92.109375, 45.583290 ], [ 92.109375, 45.089036 ], [ 92.812500, 45.089036 ], [ 92.812500, 44.590467 ], [ 94.921875, 44.590467 ], [ 94.921875, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 43.068888 ], [ 97.734375, 43.068888 ], [ 97.734375, 42.553080 ], [ 101.250000, 42.553080 ], [ 101.250000, 42.032974 ], [ 105.468750, 42.032974 ], [ 105.468750, 42.553080 ], [ 110.390625, 42.553080 ], [ 110.390625, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 44.087585 ], [ 111.093750, 44.087585 ], [ 111.093750, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.989922 ], [ 115.312500, 47.989922 ], [ 115.312500, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 51.179343 ], [ 119.531250, 51.179343 ], [ 119.531250, 52.052490 ], [ 120.234375, 52.052490 ], [ 120.234375, 52.908902 ], [ 120.937500, 52.908902 ], [ 120.937500, 53.330873 ], [ 121.640625, 53.330873 ], [ 121.640625, 53.748711 ], [ 123.046875, 53.748711 ] ] ], [ [ [ 135.000000, 48.458352 ], [ 134.296875, 48.458352 ], [ 134.296875, 48.922499 ], [ 135.000000, 48.922499 ], [ 135.000000, 48.458352 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.687500, 19.973349 ], [ 109.687500, 21.289374 ], [ 106.875000, 21.289374 ], [ 106.875000, 22.593726 ], [ 101.953125, 22.593726 ], [ 101.953125, 21.289374 ], [ 99.843750, 21.289374 ], [ 99.843750, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 22.593726 ], [ 99.843750, 22.593726 ], [ 99.843750, 23.241346 ], [ 98.437500, 23.241346 ], [ 98.437500, 23.885838 ], [ 97.734375, 23.885838 ], [ 97.734375, 25.165173 ], [ 98.437500, 25.165173 ], [ 98.437500, 27.683528 ], [ 97.734375, 27.683528 ], [ 97.734375, 28.304381 ], [ 96.328125, 28.304381 ], [ 96.328125, 28.921631 ], [ 93.515625, 28.921631 ], [ 93.515625, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 28.304381 ], [ 89.296875, 28.304381 ], [ 89.296875, 27.683528 ], [ 85.781250, 27.683528 ], [ 85.781250, 28.304381 ], [ 85.078125, 28.304381 ], [ 85.078125, 28.921631 ], [ 83.671875, 28.921631 ], [ 83.671875, 29.535230 ], [ 82.265625, 29.535230 ], [ 82.265625, 30.145127 ], [ 79.453125, 30.145127 ], [ 79.453125, 30.751278 ], [ 78.750000, 30.751278 ], [ 78.750000, 32.546813 ], [ 79.453125, 32.546813 ], [ 79.453125, 33.137551 ], [ 78.750000, 33.137551 ], [ 78.750000, 34.885931 ], [ 78.046875, 34.885931 ], [ 78.046875, 35.460670 ], [ 76.640625, 35.460670 ], [ 76.640625, 36.031332 ], [ 75.937500, 36.031332 ], [ 75.937500, 36.597889 ], [ 75.234375, 36.597889 ], [ 75.234375, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 38.272689 ], [ 73.828125, 38.272689 ], [ 73.828125, 39.909736 ], [ 74.531250, 39.909736 ], [ 74.531250, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.979898 ], [ 78.750000, 40.979898 ], [ 78.750000, 41.508577 ], [ 80.156250, 41.508577 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 45.089036 ], [ 82.265625, 45.089036 ], [ 82.265625, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.517201 ], [ 83.671875, 47.517201 ], [ 83.671875, 47.040182 ], [ 85.781250, 47.040182 ], [ 85.781250, 48.458352 ], [ 86.484375, 48.458352 ], [ 86.484375, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.382373 ], [ 87.890625, 49.382373 ], [ 87.890625, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 47.517201 ], [ 90.000000, 47.517201 ], [ 90.000000, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 45.089036 ], [ 93.515625, 45.089036 ], [ 93.515625, 44.590467 ], [ 94.921875, 44.590467 ], [ 94.921875, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 42.553080 ], [ 101.953125, 42.553080 ], [ 101.953125, 42.032974 ], [ 104.765625, 42.032974 ], [ 104.765625, 41.508577 ], [ 106.171875, 41.508577 ], [ 106.171875, 42.032974 ], [ 107.578125, 42.032974 ], [ 107.578125, 42.553080 ], [ 110.390625, 42.553080 ], [ 110.390625, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 44.087585 ], [ 111.093750, 44.087585 ], [ 111.093750, 44.590467 ], [ 111.796875, 44.590467 ], [ 111.796875, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 44.590467 ], [ 113.906250, 44.590467 ], [ 113.906250, 45.089036 ], [ 114.609375, 45.089036 ], [ 114.609375, 45.583290 ], [ 116.015625, 45.583290 ], [ 116.015625, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 46.558860 ], [ 119.531250, 46.558860 ], [ 119.531250, 47.040182 ], [ 118.828125, 47.040182 ], [ 118.828125, 47.517201 ], [ 115.312500, 47.517201 ], [ 115.312500, 48.458352 ], [ 116.015625, 48.458352 ], [ 116.015625, 49.382373 ], [ 118.828125, 49.382373 ], [ 118.828125, 49.837982 ], [ 119.531250, 49.837982 ], [ 119.531250, 51.179343 ], [ 120.234375, 51.179343 ], [ 120.234375, 51.618017 ], [ 120.937500, 51.618017 ], [ 120.937500, 52.482780 ], [ 120.234375, 52.482780 ], [ 120.234375, 52.908902 ], [ 120.937500, 52.908902 ], [ 120.937500, 53.330873 ], [ 125.156250, 53.330873 ], [ 125.156250, 52.908902 ], [ 125.859375, 52.908902 ], [ 125.859375, 52.052490 ], [ 126.562500, 52.052490 ], [ 126.562500, 51.179343 ], [ 127.265625, 51.179343 ], [ 127.265625, 50.289339 ], [ 127.968750, 50.289339 ], [ 127.968750, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 48.922499 ], [ 130.781250, 48.922499 ], [ 130.781250, 47.989922 ], [ 134.296875, 47.989922 ], [ 134.296875, 46.558860 ], [ 133.593750, 46.558860 ], [ 133.593750, 45.583290 ], [ 132.890625, 45.583290 ], [ 132.890625, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 44.590467 ], [ 131.484375, 44.590467 ], [ 131.484375, 43.068888 ], [ 130.781250, 43.068888 ], [ 130.781250, 42.553080 ], [ 129.375000, 42.553080 ], [ 129.375000, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.508577 ], [ 125.859375, 41.508577 ], [ 125.859375, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 38.822591 ], [ 121.640625, 38.822591 ], [ 121.640625, 39.909736 ], [ 122.343750, 39.909736 ], [ 122.343750, 40.446947 ], [ 120.937500, 40.446947 ], [ 120.937500, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.368279 ], [ 118.125000, 39.368279 ], [ 118.125000, 38.822591 ], [ 117.421875, 38.822591 ], [ 117.421875, 38.272689 ], [ 118.125000, 38.272689 ], [ 118.125000, 37.718590 ], [ 118.828125, 37.718590 ], [ 118.828125, 37.160317 ], [ 120.937500, 37.160317 ], [ 120.937500, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 34.885931 ], [ 118.828125, 34.885931 ], [ 118.828125, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.724340 ], [ 120.937500, 33.724340 ], [ 120.937500, 31.952162 ], [ 121.640625, 31.952162 ], [ 121.640625, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 30.145127 ], [ 121.640625, 30.145127 ], [ 121.640625, 29.535230 ], [ 122.343750, 29.535230 ], [ 122.343750, 28.921631 ], [ 121.640625, 28.921631 ], [ 121.640625, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 27.683528 ], [ 120.234375, 27.683528 ], [ 120.234375, 26.431228 ], [ 119.531250, 26.431228 ], [ 119.531250, 25.165173 ], [ 118.828125, 25.165173 ], [ 118.828125, 23.885838 ], [ 117.421875, 23.885838 ], [ 117.421875, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 22.593726 ], [ 114.609375, 22.593726 ], [ 114.609375, 21.943046 ], [ 113.203125, 21.943046 ], [ 113.203125, 21.289374 ], [ 111.093750, 21.289374 ], [ 111.093750, 20.632784 ], [ 110.390625, 20.632784 ], [ 110.390625, 19.973349 ], [ 111.093750, 19.973349 ], [ 111.093750, 19.311143 ], [ 110.390625, 19.311143 ], [ 110.390625, 17.978733 ], [ 108.984375, 17.978733 ], [ 108.984375, 18.646245 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.311143 ], [ 108.984375, 19.311143 ], [ 108.984375, 19.973349 ], [ 109.687500, 19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.734375, 14.604847 ], [ 98.437500, 14.604847 ], [ 98.437500, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 11.867351 ], [ 97.734375, 11.867351 ], [ 97.734375, 12.554564 ], [ 98.437500, 12.554564 ], [ 98.437500, 13.239945 ], [ 97.734375, 13.239945 ], [ 97.734375, 14.604847 ] ] ], [ [ [ 97.734375, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 25.799891 ], [ 97.734375, 25.799891 ], [ 97.734375, 25.165173 ], [ 97.031250, 25.165173 ], [ 97.031250, 24.527135 ], [ 98.437500, 24.527135 ], [ 98.437500, 23.241346 ], [ 99.140625, 23.241346 ], [ 99.140625, 21.943046 ], [ 100.546875, 21.943046 ], [ 100.546875, 21.289374 ], [ 99.843750, 21.289374 ], [ 99.843750, 20.632784 ], [ 99.140625, 20.632784 ], [ 99.140625, 19.973349 ], [ 97.734375, 19.973349 ], [ 97.734375, 18.646245 ], [ 97.031250, 18.646245 ], [ 97.031250, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 17.308688 ], [ 98.437500, 17.308688 ], [ 98.437500, 15.284185 ], [ 97.734375, 15.284185 ], [ 97.734375, 15.961329 ], [ 97.031250, 15.961329 ], [ 97.031250, 16.636192 ], [ 96.328125, 16.636192 ], [ 96.328125, 15.961329 ], [ 93.515625, 15.961329 ], [ 93.515625, 16.636192 ], [ 94.218750, 16.636192 ], [ 94.218750, 19.311143 ], [ 93.515625, 19.311143 ], [ 93.515625, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.632784 ], [ 92.109375, 20.632784 ], [ 92.109375, 22.593726 ], [ 92.812500, 22.593726 ], [ 92.812500, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 25.799891 ], [ 94.921875, 25.799891 ], [ 94.921875, 27.059126 ], [ 96.328125, 27.059126 ], [ 96.328125, 27.683528 ], [ 97.031250, 27.683528 ], [ 97.031250, 28.304381 ], [ 97.734375, 28.304381 ], [ 97.734375, 27.683528 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 13.923404 ], [ 97.734375, 13.923404 ], [ 97.734375, 15.961329 ], [ 97.031250, 15.961329 ], [ 97.031250, 16.636192 ], [ 96.328125, 16.636192 ], [ 96.328125, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 18.646245 ], [ 93.515625, 18.646245 ], [ 93.515625, 19.973349 ], [ 92.109375, 19.973349 ], [ 92.109375, 21.289374 ], [ 92.812500, 21.289374 ], [ 92.812500, 21.943046 ], [ 93.515625, 21.943046 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.527135 ], [ 94.921875, 24.527135 ], [ 94.921875, 26.431228 ], [ 96.328125, 26.431228 ], [ 96.328125, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 28.304381 ], [ 97.734375, 28.304381 ], [ 97.734375, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 23.885838 ], [ 98.437500, 23.885838 ], [ 98.437500, 23.241346 ], [ 99.843750, 23.241346 ], [ 99.843750, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 19.973349 ], [ 98.437500, 19.973349 ], [ 98.437500, 19.311143 ], [ 97.734375, 19.311143 ], [ 97.734375, 18.646245 ], [ 97.031250, 18.646245 ], [ 97.031250, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 15.961329 ], [ 99.140625, 15.961329 ], [ 99.140625, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 13.923404 ] ] ], [ [ [ 98.437500, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 11.867351 ], [ 99.843750, 11.867351 ], [ 99.843750, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 10.487812 ], [ 98.437500, 10.487812 ], [ 98.437500, 13.923404 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.953125, 22.593726 ], [ 101.953125, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 104.062500, 21.289374 ], [ 104.062500, 20.632784 ], [ 104.765625, 20.632784 ], [ 104.765625, 19.973349 ], [ 104.062500, 19.973349 ], [ 104.062500, 19.311143 ], [ 104.765625, 19.311143 ], [ 104.765625, 18.646245 ], [ 105.468750, 18.646245 ], [ 105.468750, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 14.604847 ], [ 106.171875, 14.604847 ], [ 106.171875, 13.923404 ], [ 104.765625, 13.923404 ], [ 104.765625, 14.604847 ], [ 105.468750, 14.604847 ], [ 105.468750, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.062500, 17.308688 ], [ 104.062500, 17.978733 ], [ 103.359375, 17.978733 ], [ 103.359375, 18.646245 ], [ 102.656250, 18.646245 ], [ 102.656250, 17.978733 ], [ 100.546875, 17.978733 ], [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 22.593726 ], [ 101.953125, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.359375, 21.289374 ], [ 103.359375, 20.632784 ], [ 104.765625, 20.632784 ], [ 104.765625, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 15.961329 ], [ 107.578125, 15.961329 ], [ 107.578125, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.062500, 17.308688 ], [ 104.062500, 17.978733 ], [ 101.953125, 17.978733 ], [ 101.953125, 17.308688 ], [ 101.250000, 17.308688 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 99.843750, 19.973349 ], [ 99.843750, 20.632784 ], [ 101.250000, 20.632784 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.943046 ], [ 102.656250, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.843750, 7.013668 ], [ 99.140625, 7.013668 ], [ 99.140625, 7.710992 ], [ 98.437500, 7.710992 ], [ 98.437500, 8.407168 ], [ 97.734375, 8.407168 ], [ 97.734375, 9.795678 ], [ 98.437500, 9.795678 ], [ 98.437500, 11.867351 ], [ 99.140625, 11.867351 ], [ 99.140625, 9.795678 ], [ 99.843750, 9.795678 ], [ 99.843750, 7.013668 ] ] ], [ [ [ 100.546875, 19.973349 ], [ 101.250000, 19.973349 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 17.978733 ], [ 102.656250, 17.978733 ], [ 102.656250, 18.646245 ], [ 103.359375, 18.646245 ], [ 103.359375, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.468750, 15.961329 ], [ 105.468750, 14.604847 ], [ 102.656250, 14.604847 ], [ 102.656250, 13.923404 ], [ 101.953125, 13.923404 ], [ 101.953125, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.239945 ], [ 100.546875, 13.239945 ], [ 100.546875, 13.923404 ], [ 99.843750, 13.923404 ], [ 99.843750, 11.867351 ], [ 99.140625, 11.867351 ], [ 99.140625, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 14.604847 ], [ 97.734375, 14.604847 ], [ 97.734375, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 17.308688 ], [ 97.734375, 17.308688 ], [ 97.734375, 17.978733 ], [ 97.031250, 17.978733 ], [ 97.031250, 18.646245 ], [ 97.734375, 18.646245 ], [ 97.734375, 19.973349 ], [ 99.140625, 19.973349 ], [ 99.140625, 20.632784 ], [ 100.546875, 20.632784 ], [ 100.546875, 19.973349 ] ] ], [ [ [ 99.843750, 7.013668 ], [ 101.250000, 7.013668 ], [ 101.250000, 6.315299 ], [ 99.843750, 6.315299 ], [ 99.843750, 7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.140625, 10.487812 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ], [ 99.843750, 8.407168 ], [ 100.546875, 8.407168 ], [ 100.546875, 7.013668 ], [ 101.953125, 7.013668 ], [ 101.953125, 5.615986 ], [ 101.250000, 5.615986 ], [ 101.250000, 6.315299 ], [ 99.843750, 6.315299 ], [ 99.843750, 7.013668 ], [ 99.140625, 7.013668 ], [ 99.140625, 7.710992 ], [ 98.437500, 7.710992 ], [ 98.437500, 10.487812 ], [ 99.140625, 10.487812 ] ] ], [ [ [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 17.308688 ], [ 101.953125, 17.308688 ], [ 101.953125, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.468750, 15.961329 ], [ 105.468750, 14.604847 ], [ 104.062500, 14.604847 ], [ 104.062500, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 11.867351 ], [ 101.953125, 11.867351 ], [ 101.953125, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.239945 ], [ 99.843750, 13.239945 ], [ 99.843750, 11.867351 ], [ 99.140625, 11.867351 ], [ 99.140625, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 15.284185 ], [ 99.140625, 15.284185 ], [ 99.140625, 15.961329 ], [ 98.437500, 15.961329 ], [ 98.437500, 16.636192 ], [ 97.734375, 16.636192 ], [ 97.734375, 17.978733 ], [ 97.031250, 17.978733 ], [ 97.031250, 18.646245 ], [ 97.734375, 18.646245 ], [ 97.734375, 19.311143 ], [ 98.437500, 19.311143 ], [ 98.437500, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 19.311143 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 18.646245 ], [ 106.171875, 18.646245 ], [ 106.171875, 17.978733 ], [ 106.875000, 17.978733 ], [ 106.875000, 16.636192 ], [ 107.578125, 16.636192 ], [ 107.578125, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 14.604847 ], [ 108.984375, 14.604847 ], [ 108.984375, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.487812 ], [ 106.875000, 10.487812 ], [ 106.875000, 9.795678 ], [ 106.171875, 9.795678 ], [ 106.171875, 9.102097 ], [ 104.765625, 9.102097 ], [ 104.765625, 11.178402 ], [ 105.468750, 11.178402 ], [ 105.468750, 11.867351 ], [ 106.875000, 11.867351 ], [ 106.875000, 13.239945 ], [ 107.578125, 13.239945 ], [ 107.578125, 13.923404 ], [ 106.875000, 13.923404 ], [ 106.875000, 15.961329 ], [ 106.171875, 15.961329 ], [ 106.171875, 17.308688 ], [ 105.468750, 17.308688 ], [ 105.468750, 18.646245 ] ] ], [ [ [ 105.468750, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 19.973349 ], [ 104.765625, 19.973349 ], [ 104.765625, 20.632784 ], [ 104.062500, 20.632784 ], [ 104.062500, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 101.953125, 21.943046 ], [ 101.953125, 22.593726 ], [ 102.656250, 22.593726 ], [ 102.656250, 23.241346 ], [ 106.171875, 23.241346 ], [ 106.171875, 21.943046 ], [ 107.578125, 21.943046 ], [ 107.578125, 21.289374 ], [ 106.171875, 21.289374 ], [ 106.171875, 20.632784 ], [ 105.468750, 20.632784 ], [ 105.468750, 18.646245 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.171875, 17.308688 ], [ 105.468750, 17.308688 ], [ 105.468750, 17.978733 ], [ 104.765625, 17.978733 ], [ 104.765625, 18.646245 ], [ 104.062500, 18.646245 ], [ 104.062500, 19.311143 ], [ 104.765625, 19.311143 ], [ 104.765625, 20.632784 ], [ 103.359375, 20.632784 ], [ 103.359375, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 101.953125, 21.943046 ], [ 101.953125, 22.593726 ], [ 106.875000, 22.593726 ], [ 106.875000, 21.289374 ], [ 108.281250, 21.289374 ], [ 108.281250, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 19.973349 ], [ 106.171875, 19.973349 ], [ 106.171875, 19.311143 ], [ 105.468750, 19.311143 ], [ 105.468750, 18.646245 ], [ 106.171875, 18.646245 ], [ 106.171875, 17.308688 ] ] ], [ [ [ 107.578125, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 15.284185 ], [ 108.984375, 15.284185 ], [ 108.984375, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.487812 ], [ 106.875000, 10.487812 ], [ 106.875000, 9.795678 ], [ 106.171875, 9.795678 ], [ 106.171875, 9.102097 ], [ 105.468750, 9.102097 ], [ 105.468750, 8.407168 ], [ 104.765625, 8.407168 ], [ 104.765625, 9.795678 ], [ 104.062500, 9.795678 ], [ 104.062500, 10.487812 ], [ 105.468750, 10.487812 ], [ 105.468750, 11.867351 ], [ 106.875000, 11.867351 ], [ 106.875000, 12.554564 ], [ 107.578125, 12.554564 ], [ 107.578125, 15.961329 ] ] ], [ [ [ 106.875000, 16.636192 ], [ 107.578125, 16.636192 ], [ 107.578125, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 16.636192 ] ] ], [ [ [ 106.171875, 17.308688 ], [ 106.875000, 17.308688 ], [ 106.875000, 16.636192 ], [ 106.171875, 16.636192 ], [ 106.171875, 17.308688 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875000, 14.604847 ], [ 106.875000, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 13.239945 ], [ 106.875000, 13.239945 ], [ 106.875000, 11.867351 ], [ 105.468750, 11.867351 ], [ 105.468750, 11.178402 ], [ 104.765625, 11.178402 ], [ 104.765625, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 11.867351 ], [ 101.953125, 11.867351 ], [ 101.953125, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 14.604847 ], [ 104.765625, 14.604847 ], [ 104.765625, 13.923404 ], [ 106.171875, 13.923404 ], [ 106.171875, 14.604847 ], [ 106.875000, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 14.604847 ], [ 105.468750, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 11.867351 ], [ 105.468750, 11.867351 ], [ 105.468750, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 13.923404 ], [ 104.062500, 13.923404 ], [ 104.062500, 14.604847 ], [ 105.468750, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.953125, 6.315299 ], [ 101.953125, 5.615986 ], [ 102.656250, 5.615986 ], [ 102.656250, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 4.214943 ], [ 102.656250, 4.214943 ], [ 102.656250, 3.513421 ], [ 103.359375, 3.513421 ], [ 103.359375, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.406109 ], [ 101.953125, 1.406109 ], [ 101.953125, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 4.915833 ], [ 99.843750, 4.915833 ], [ 99.843750, 6.315299 ], [ 101.953125, 6.315299 ] ] ], [ [ [ 115.312500, 4.915833 ], [ 115.312500, 3.513421 ], [ 114.609375, 3.513421 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 2.108899 ], [ 111.796875, 2.108899 ], [ 111.796875, 1.406109 ], [ 108.984375, 1.406109 ], [ 108.984375, 2.108899 ], [ 111.093750, 2.108899 ], [ 111.093750, 2.811371 ], [ 111.796875, 2.811371 ], [ 111.796875, 3.513421 ], [ 113.203125, 3.513421 ], [ 113.203125, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.915833 ], [ 115.312500, 4.915833 ] ] ], [ [ [ 117.421875, 7.013668 ], [ 117.421875, 6.315299 ], [ 118.125000, 6.315299 ], [ 118.125000, 4.214943 ], [ 116.718750, 4.214943 ], [ 116.718750, 4.915833 ], [ 115.312500, 4.915833 ], [ 115.312500, 5.615986 ], [ 116.015625, 5.615986 ], [ 116.015625, 6.315299 ], [ 116.718750, 6.315299 ], [ 116.718750, 7.013668 ], [ 117.421875, 7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.421875, 7.013668 ], [ 117.421875, 5.615986 ], [ 119.531250, 5.615986 ], [ 119.531250, 4.915833 ], [ 118.125000, 4.915833 ], [ 118.125000, 4.214943 ], [ 116.015625, 4.214943 ], [ 116.015625, 3.513421 ], [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 113.203125, 3.513421 ], [ 113.906250, 3.513421 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.015625, 5.615986 ], [ 116.015625, 6.315299 ], [ 116.718750, 6.315299 ], [ 116.718750, 7.013668 ], [ 117.421875, 7.013668 ] ] ], [ [ [ 102.656250, 6.315299 ], [ 102.656250, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 6.315299 ], [ 101.250000, 6.315299 ], [ 101.250000, 5.615986 ], [ 101.953125, 5.615986 ], [ 101.953125, 6.315299 ], [ 102.656250, 6.315299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.640625, 25.165173 ], [ 121.640625, 23.885838 ], [ 120.937500, 23.885838 ], [ 120.937500, 22.593726 ], [ 119.531250, 22.593726 ], [ 119.531250, 24.527135 ], [ 120.234375, 24.527135 ], [ 120.234375, 25.165173 ], [ 121.640625, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.640625, 24.527135 ], [ 121.640625, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 21.943046 ], [ 120.234375, 21.943046 ], [ 120.234375, 23.885838 ], [ 120.937500, 23.885838 ], [ 120.937500, 24.527135 ], [ 121.640625, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.375000, 42.032974 ], [ 129.375000, 40.979898 ], [ 128.671875, 40.979898 ], [ 128.671875, 40.446947 ], [ 127.968750, 40.446947 ], [ 127.968750, 39.909736 ], [ 127.265625, 39.909736 ], [ 127.265625, 38.272689 ], [ 124.453125, 38.272689 ], [ 124.453125, 39.368279 ], [ 125.156250, 39.368279 ], [ 125.156250, 39.909736 ], [ 123.750000, 39.909736 ], [ 123.750000, 40.446947 ], [ 124.453125, 40.446947 ], [ 124.453125, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 41.508577 ], [ 127.968750, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.375000, 42.032974 ] ] ], [ [ [ 130.078125, 42.032974 ], [ 129.375000, 42.032974 ], [ 129.375000, 42.553080 ], [ 130.078125, 42.553080 ], [ 130.078125, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.781250, 42.553080 ], [ 130.781250, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.508577 ], [ 129.375000, 41.508577 ], [ 129.375000, 40.446947 ], [ 128.671875, 40.446947 ], [ 128.671875, 39.909736 ], [ 127.265625, 39.909736 ], [ 127.265625, 38.822591 ], [ 128.671875, 38.822591 ], [ 128.671875, 38.272689 ], [ 127.265625, 38.272689 ], [ 127.265625, 37.718590 ], [ 124.453125, 37.718590 ], [ 124.453125, 38.272689 ], [ 125.156250, 38.272689 ], [ 125.156250, 39.368279 ], [ 124.453125, 39.368279 ], [ 124.453125, 39.909736 ], [ 125.156250, 39.909736 ], [ 125.156250, 40.446947 ], [ 125.859375, 40.446947 ], [ 125.859375, 41.508577 ], [ 127.968750, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.375000, 42.032974 ], [ 129.375000, 42.553080 ], [ 130.781250, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.968750, 38.822591 ], [ 127.968750, 38.272689 ], [ 128.671875, 38.272689 ], [ 128.671875, 37.160317 ], [ 129.375000, 37.160317 ], [ 129.375000, 35.460670 ], [ 127.968750, 35.460670 ], [ 127.968750, 34.885931 ], [ 125.859375, 34.885931 ], [ 125.859375, 37.160317 ], [ 126.562500, 37.160317 ], [ 126.562500, 37.718590 ], [ 125.859375, 37.718590 ], [ 125.859375, 38.272689 ], [ 127.265625, 38.272689 ], [ 127.265625, 38.822591 ], [ 127.968750, 38.822591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.671875, 38.272689 ], [ 128.671875, 37.718590 ], [ 129.375000, 37.718590 ], [ 129.375000, 34.885931 ], [ 127.968750, 34.885931 ], [ 127.968750, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 36.031332 ], [ 125.859375, 36.031332 ], [ 125.859375, 36.597889 ], [ 126.562500, 36.597889 ], [ 126.562500, 37.160317 ], [ 125.859375, 37.160317 ], [ 125.859375, 37.718590 ], [ 127.265625, 37.718590 ], [ 127.265625, 38.272689 ], [ 128.671875, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.859375, 9.795678 ], [ 125.859375, 7.013668 ], [ 125.156250, 7.013668 ], [ 125.156250, 5.615986 ], [ 123.750000, 5.615986 ], [ 123.750000, 7.710992 ], [ 122.343750, 7.710992 ], [ 122.343750, 7.013668 ], [ 121.640625, 7.013668 ], [ 121.640625, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 9.102097 ], [ 125.156250, 9.102097 ], [ 125.156250, 9.795678 ], [ 125.859375, 9.795678 ] ] ], [ [ [ 120.234375, 13.923404 ], [ 120.234375, 14.604847 ], [ 119.531250, 14.604847 ], [ 119.531250, 16.636192 ], [ 120.234375, 16.636192 ], [ 120.234375, 18.646245 ], [ 121.640625, 18.646245 ], [ 121.640625, 17.308688 ], [ 122.343750, 17.308688 ], [ 122.343750, 16.636192 ], [ 121.640625, 16.636192 ], [ 121.640625, 15.284185 ], [ 120.937500, 15.284185 ], [ 120.937500, 14.604847 ], [ 122.343750, 14.604847 ], [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 12.554564 ], [ 123.046875, 12.554564 ], [ 123.046875, 13.239945 ], [ 121.640625, 13.239945 ], [ 121.640625, 13.923404 ], [ 120.937500, 13.923404 ], [ 120.937500, 12.554564 ], [ 120.234375, 12.554564 ], [ 120.234375, 13.923404 ] ] ], [ [ [ 123.046875, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 10.487812 ], [ 123.046875, 10.487812 ], [ 123.046875, 9.102097 ], [ 122.343750, 9.102097 ], [ 122.343750, 10.487812 ], [ 121.640625, 10.487812 ], [ 121.640625, 11.867351 ], [ 123.046875, 11.867351 ], [ 123.046875, 11.178402 ] ] ], [ [ [ 119.531250, 11.178402 ], [ 119.531250, 10.487812 ], [ 118.828125, 10.487812 ], [ 118.828125, 11.178402 ], [ 119.531250, 11.178402 ] ] ], [ [ [ 125.156250, 12.554564 ], [ 125.156250, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 11.867351 ], [ 124.453125, 11.867351 ], [ 124.453125, 12.554564 ], [ 125.156250, 12.554564 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.859375, 6.315299 ], [ 125.859375, 5.615986 ], [ 124.453125, 5.615986 ], [ 124.453125, 6.315299 ], [ 123.750000, 6.315299 ], [ 123.750000, 7.710992 ], [ 123.046875, 7.710992 ], [ 123.046875, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 9.102097 ], [ 126.562500, 9.102097 ], [ 126.562500, 6.315299 ], [ 125.859375, 6.315299 ] ], [ [ 125.859375, 6.315299 ], [ 125.859375, 7.013668 ], [ 125.156250, 7.013668 ], [ 125.156250, 6.315299 ], [ 125.859375, 6.315299 ] ] ], [ [ [ 121.640625, 13.923404 ], [ 120.937500, 13.923404 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 17.978733 ], [ 120.937500, 17.978733 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 121.640625, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 13.923404 ] ] ], [ [ [ 123.046875, 7.710992 ], [ 123.046875, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 7.710992 ], [ 123.046875, 7.710992 ] ] ], [ [ [ 118.828125, 9.795678 ], [ 118.828125, 8.407168 ], [ 117.421875, 8.407168 ], [ 117.421875, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 9.795678 ], [ 118.828125, 9.795678 ] ] ], [ [ [ 123.046875, 11.867351 ], [ 123.046875, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 9.102097 ], [ 122.343750, 9.102097 ], [ 122.343750, 9.795678 ], [ 123.046875, 9.795678 ], [ 123.046875, 10.487812 ], [ 121.640625, 10.487812 ], [ 121.640625, 11.867351 ], [ 123.046875, 11.867351 ] ] ], [ [ [ 125.156250, 11.178402 ], [ 125.156250, 9.795678 ], [ 124.453125, 9.795678 ], [ 124.453125, 11.178402 ], [ 125.156250, 11.178402 ] ] ], [ [ [ 119.531250, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 10.487812 ], [ 119.531250, 10.487812 ], [ 119.531250, 9.795678 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ], [ 124.453125, 13.239945 ], [ 124.453125, 12.554564 ], [ 123.046875, 12.554564 ], [ 123.046875, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.923404 ] ] ], [ [ [ 121.640625, 13.239945 ], [ 121.640625, 12.554564 ], [ 120.234375, 12.554564 ], [ 120.234375, 13.239945 ], [ 121.640625, 13.239945 ] ] ], [ [ [ 124.453125, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 11.867351 ], [ 124.453125, 11.867351 ], [ 124.453125, 12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.609375, 4.915833 ], [ 114.609375, 4.214943 ], [ 113.906250, 4.214943 ], [ 113.906250, 4.915833 ], [ 114.609375, 4.915833 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.915833 ], [ 115.312500, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.915833 ], [ 115.312500, 4.915833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, 33.724340 ], [ 131.484375, 33.724340 ], [ 131.484375, 32.546813 ], [ 130.781250, 32.546813 ], [ 130.781250, 31.353637 ], [ 130.078125, 31.353637 ], [ 130.078125, 32.546813 ], [ 129.375000, 32.546813 ], [ 129.375000, 33.724340 ], [ 130.781250, 33.724340 ] ] ], [ [ [ 132.890625, 33.724340 ], [ 132.890625, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 33.724340 ], [ 132.890625, 33.724340 ] ] ], [ [ [ 132.890625, 34.307144 ], [ 131.484375, 34.307144 ], [ 131.484375, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.460670 ], [ 133.593750, 35.460670 ], [ 133.593750, 36.031332 ], [ 135.703125, 36.031332 ], [ 135.703125, 37.160317 ], [ 137.812500, 37.160317 ], [ 137.812500, 37.718590 ], [ 138.515625, 37.718590 ], [ 138.515625, 38.272689 ], [ 139.218750, 38.272689 ], [ 139.218750, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.446947 ], [ 139.218750, 40.446947 ], [ 139.218750, 40.979898 ], [ 139.921875, 40.979898 ], [ 139.921875, 41.508577 ], [ 141.328125, 41.508577 ], [ 141.328125, 38.822591 ], [ 140.625000, 38.822591 ], [ 140.625000, 36.597889 ], [ 139.921875, 36.597889 ], [ 139.921875, 36.031332 ], [ 140.625000, 36.031332 ], [ 140.625000, 35.460670 ], [ 139.921875, 35.460670 ], [ 139.921875, 34.885931 ], [ 137.109375, 34.885931 ], [ 137.109375, 34.307144 ], [ 136.406250, 34.307144 ], [ 136.406250, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.885931 ], [ 132.890625, 34.885931 ], [ 132.890625, 34.307144 ] ] ], [ [ [ 142.031250, 45.089036 ], [ 142.031250, 44.590467 ], [ 143.437500, 44.590467 ], [ 143.437500, 44.087585 ], [ 144.843750, 44.087585 ], [ 144.843750, 43.068888 ], [ 143.437500, 43.068888 ], [ 143.437500, 42.553080 ], [ 142.734375, 42.553080 ], [ 142.734375, 42.032974 ], [ 142.031250, 42.032974 ], [ 142.031250, 42.553080 ], [ 140.625000, 42.553080 ], [ 140.625000, 42.032974 ], [ 139.921875, 42.032974 ], [ 139.921875, 42.553080 ], [ 139.218750, 42.553080 ], [ 139.218750, 43.068888 ], [ 139.921875, 43.068888 ], [ 139.921875, 43.580391 ], [ 141.328125, 43.580391 ], [ 141.328125, 45.089036 ], [ 142.031250, 45.089036 ] ] ], [ [ [ 132.890625, 34.307144 ], [ 134.296875, 34.307144 ], [ 134.296875, 33.724340 ], [ 132.890625, 33.724340 ], [ 132.890625, 34.307144 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 33.724340 ], [ 135.000000, 33.137551 ], [ 133.593750, 33.137551 ], [ 133.593750, 32.546813 ], [ 132.187500, 32.546813 ], [ 132.187500, 31.952162 ], [ 131.484375, 31.952162 ], [ 131.484375, 30.751278 ], [ 130.078125, 30.751278 ], [ 130.078125, 31.952162 ], [ 130.781250, 31.952162 ], [ 130.781250, 32.546813 ], [ 129.375000, 32.546813 ], [ 129.375000, 33.137551 ], [ 130.078125, 33.137551 ], [ 130.078125, 33.724340 ], [ 130.781250, 33.724340 ], [ 130.781250, 34.307144 ], [ 132.187500, 34.307144 ], [ 132.187500, 34.885931 ], [ 132.890625, 34.885931 ], [ 132.890625, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 36.031332 ], [ 136.406250, 36.031332 ], [ 136.406250, 36.597889 ], [ 137.812500, 36.597889 ], [ 137.812500, 37.160317 ], [ 138.515625, 37.160317 ], [ 138.515625, 37.718590 ], [ 139.218750, 37.718590 ], [ 139.218750, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.446947 ], [ 140.625000, 40.446947 ], [ 140.625000, 40.979898 ], [ 141.328125, 40.979898 ], [ 141.328125, 40.446947 ], [ 142.031250, 40.446947 ], [ 142.031250, 38.822591 ], [ 141.328125, 38.822591 ], [ 141.328125, 38.272689 ], [ 140.625000, 38.272689 ], [ 140.625000, 35.460670 ], [ 139.921875, 35.460670 ], [ 139.921875, 34.885931 ], [ 137.109375, 34.885931 ], [ 137.109375, 34.307144 ], [ 136.406250, 34.307144 ], [ 136.406250, 33.724340 ], [ 135.000000, 33.724340 ] ], [ [ 130.781250, 33.724340 ], [ 130.781250, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 33.724340 ], [ 130.781250, 33.724340 ] ], [ [ 134.296875, 34.307144 ], [ 134.296875, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.307144 ], [ 134.296875, 34.307144 ] ] ], [ [ [ 142.734375, 45.089036 ], [ 142.734375, 44.590467 ], [ 143.437500, 44.590467 ], [ 143.437500, 44.087585 ], [ 145.546875, 44.087585 ], [ 145.546875, 43.068888 ], [ 144.140625, 43.068888 ], [ 144.140625, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.032974 ], [ 142.031250, 42.032974 ], [ 142.031250, 42.553080 ], [ 141.328125, 42.553080 ], [ 141.328125, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 43.068888 ], [ 140.625000, 43.068888 ], [ 140.625000, 43.580391 ], [ 141.328125, 43.580391 ], [ 141.328125, 45.089036 ], [ 142.734375, 45.089036 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.811371 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 0.703107 ], [ 13.359375, 0.703107 ], [ 13.359375, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, -2.108899 ], [ 11.250000, -2.108899 ], [ 11.250000, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, -1.406109 ], [ 8.437500, -1.406109 ], [ 8.437500, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.811371 ], [ 12.656250, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.108899 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -1.406109 ], [ 14.765625, -1.406109 ], [ 14.765625, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.811371 ], [ 13.359375, -2.811371 ], [ 13.359375, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 4.214943 ], [ 17.578125, 3.513421 ], [ 18.281250, 3.513421 ], [ 18.281250, 2.811371 ], [ 17.578125, 2.811371 ], [ 17.578125, -0.703107 ], [ 16.171875, -0.703107 ], [ 16.171875, -2.108899 ], [ 15.468750, -2.108899 ], [ 15.468750, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, 0.000000 ], [ 13.359375, 0.000000 ], [ 13.359375, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.811371 ], [ 14.062500, 2.811371 ], [ 14.062500, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 4.214943 ], [ 17.578125, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 1.406109 ], [ 17.578125, 1.406109 ], [ 17.578125, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.811371 ], [ 12.656250, -2.811371 ], [ 12.656250, -2.108899 ], [ 13.359375, -2.108899 ], [ 13.359375, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, -2.108899 ], [ 14.765625, -2.108899 ], [ 14.765625, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 1.406109 ], [ 16.171875, 1.406109 ], [ 16.171875, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 5.615986 ], [ 26.718750, 4.915833 ], [ 29.531250, 4.915833 ], [ 29.531250, 3.513421 ], [ 30.234375, 3.513421 ], [ 30.234375, 2.811371 ], [ 30.937500, 2.811371 ], [ 30.937500, 2.108899 ], [ 30.234375, 2.108899 ], [ 30.234375, 1.406109 ], [ 29.531250, 1.406109 ], [ 29.531250, -1.406109 ], [ 28.828125, -1.406109 ], [ 28.828125, -3.513421 ], [ 15.468750, -3.513421 ], [ 15.468750, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -0.703107 ], [ 17.578125, -0.703107 ], [ 17.578125, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 4.915833 ], [ 21.093750, 4.915833 ], [ 21.093750, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 4.915833 ], [ 24.609375, 4.915833 ], [ 24.609375, 5.615986 ], [ 26.718750, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 4.915833 ], [ 27.421875, 4.214943 ], [ 30.234375, 4.214943 ], [ 30.234375, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.531250, 0.703107 ], [ 29.531250, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.513421 ], [ 16.171875, -3.513421 ], [ 16.171875, -1.406109 ], [ 17.578125, -1.406109 ], [ 17.578125, 1.406109 ], [ 18.281250, 1.406109 ], [ 18.281250, 4.214943 ], [ 18.984375, 4.214943 ], [ 18.984375, 4.915833 ], [ 20.390625, 4.915833 ], [ 20.390625, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 4.915833 ], [ 27.421875, 4.915833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -1.406109 ], [ 30.234375, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -1.406109 ], [ 30.234375, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ], [ 30.234375, -2.108899 ], [ 30.234375, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -2.108899 ], [ 30.234375, -3.513421 ], [ 28.828125, -3.513421 ], [ 28.828125, -2.811371 ], [ 29.531250, -2.811371 ], [ 29.531250, -2.108899 ], [ 30.234375, -2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.811371 ], [ 30.937500, -3.513421 ], [ 28.828125, -3.513421 ], [ 28.828125, -2.811371 ], [ 30.937500, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 35.156250, -1.406109 ], [ 35.156250, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ], [ 37.265625, -2.811371 ], [ 37.265625, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -3.513421 ], [ 30.937500, -3.513421 ], [ 30.937500, -2.811371 ], [ 30.234375, -2.811371 ], [ 30.234375, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.562500, -2.811371 ], [ 126.562500, -3.513421 ], [ 125.859375, -3.513421 ], [ 125.859375, -2.811371 ], [ 126.562500, -2.811371 ] ] ], [ [ [ 130.078125, -2.811371 ], [ 130.078125, -3.513421 ], [ 129.375000, -3.513421 ], [ 129.375000, -2.811371 ], [ 130.078125, -2.811371 ] ] ], [ [ [ 132.187500, 0.000000 ], [ 132.187500, -0.703107 ], [ 133.593750, -0.703107 ], [ 133.593750, -1.406109 ], [ 134.296875, -1.406109 ], [ 134.296875, -2.811371 ], [ 135.703125, -2.811371 ], [ 135.703125, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 140.625000, -2.108899 ], [ 140.625000, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 132.890625, -2.811371 ], [ 132.890625, -2.108899 ], [ 131.484375, -2.108899 ], [ 131.484375, -1.406109 ], [ 130.078125, -1.406109 ], [ 130.078125, -0.703107 ], [ 131.484375, -0.703107 ], [ 131.484375, 0.000000 ], [ 132.187500, 0.000000 ] ] ], [ [ [ 119.531250, 0.000000 ], [ 119.531250, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 118.125000, -2.811371 ], [ 118.125000, -2.108899 ], [ 118.828125, -2.108899 ], [ 118.828125, 0.000000 ], [ 119.531250, 0.000000 ] ] ], [ [ [ 116.718750, 4.915833 ], [ 116.718750, 4.214943 ], [ 117.421875, 4.214943 ], [ 117.421875, 3.513421 ], [ 116.718750, 3.513421 ], [ 116.718750, 2.811371 ], [ 117.421875, 2.811371 ], [ 117.421875, -1.406109 ], [ 116.015625, -1.406109 ], [ 116.015625, -3.513421 ], [ 113.906250, -3.513421 ], [ 113.906250, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 0.000000 ], [ 108.281250, 0.000000 ], [ 108.281250, 0.703107 ], [ 108.984375, 0.703107 ], [ 108.984375, 1.406109 ], [ 111.796875, 1.406109 ], [ 111.796875, 2.108899 ], [ 112.500000, 2.108899 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 3.513421 ], [ 115.312500, 3.513421 ], [ 115.312500, 4.915833 ], [ 116.718750, 4.915833 ] ] ], [ [ [ 97.031250, 5.615986 ], [ 97.031250, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.214943 ], [ 99.140625, 4.214943 ], [ 99.140625, 2.811371 ], [ 99.843750, 2.811371 ], [ 99.843750, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 1.406109 ], [ 101.953125, 1.406109 ], [ 101.953125, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, -0.703107 ], [ 104.062500, -0.703107 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -3.513421 ], [ 101.953125, -3.513421 ], [ 101.953125, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 0.703107 ], [ 98.437500, 0.703107 ], [ 98.437500, 2.108899 ], [ 97.031250, 2.108899 ], [ 97.031250, 3.513421 ], [ 96.328125, 3.513421 ], [ 96.328125, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 4.915833 ], [ 94.921875, 4.915833 ], [ 94.921875, 5.615986 ], [ 97.031250, 5.615986 ] ] ], [ [ [ 122.343750, -0.703107 ], [ 122.343750, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -0.703107 ], [ 122.343750, -0.703107 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.703107 ], [ 127.968750, 0.703107 ], [ 127.968750, -0.703107 ], [ 127.265625, -0.703107 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 123.046875, -0.703107 ], [ 122.343750, -0.703107 ], [ 122.343750, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, -0.703107 ] ] ], [ [ [ 120.234375, 0.703107 ], [ 120.234375, 1.406109 ], [ 124.453125, 1.406109 ], [ 124.453125, 0.703107 ], [ 120.234375, 0.703107 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 124.453125, 1.406109 ], [ 124.453125, 2.108899 ], [ 125.156250, 2.108899 ], [ 125.156250, 1.406109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 134.296875, -0.703107 ], [ 134.296875, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 133.593750, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -0.703107 ], [ 134.296875, -0.703107 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 118.125000, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 118.125000, 2.811371 ], [ 118.125000, 1.406109 ], [ 118.828125, 1.406109 ], [ 118.828125, 0.703107 ], [ 118.125000, 0.703107 ], [ 118.125000, 0.000000 ], [ 117.421875, 0.000000 ], [ 117.421875, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -2.811371 ], [ 110.390625, -2.811371 ], [ 110.390625, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 1.406109 ], [ 109.687500, 1.406109 ], [ 109.687500, 0.703107 ], [ 112.500000, 0.703107 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 2.108899 ], [ 115.312500, 3.513421 ], [ 116.015625, 3.513421 ], [ 116.015625, 4.214943 ], [ 118.125000, 4.214943 ] ] ], [ [ [ 120.234375, 0.000000 ], [ 120.234375, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.513421 ], [ 120.937500, -3.513421 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, 0.000000 ], [ 120.234375, 0.000000 ] ] ], [ [ [ 96.328125, 5.615986 ], [ 96.328125, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 3.513421 ], [ 99.843750, 3.513421 ], [ 99.843750, 2.811371 ], [ 100.546875, 2.811371 ], [ 100.546875, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -1.406109 ], [ 104.062500, -1.406109 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.811371 ], [ 106.171875, -2.811371 ], [ 106.171875, -3.513421 ], [ 101.250000, -3.513421 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, -0.703107 ], [ 99.140625, -0.703107 ], [ 99.140625, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 96.328125, 3.513421 ], [ 96.328125, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 5.615986 ], [ 96.328125, 5.615986 ] ] ], [ [ [ 135.703125, -3.513421 ], [ 135.703125, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 139.921875, -2.108899 ], [ 139.921875, -2.811371 ], [ 141.328125, -2.811371 ], [ 141.328125, -3.513421 ], [ 135.703125, -3.513421 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.000000 ], [ 127.265625, 0.000000 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 124.453125, 0.703107 ], [ 124.453125, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, 0.703107 ], [ 124.453125, 0.703107 ] ] ], [ [ [ 120.937500, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, 0.703107 ], [ 120.937500, 0.703107 ], [ 120.937500, 0.000000 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875000, -2.811371 ], [ 151.875000, -3.513421 ], [ 151.171875, -3.513421 ], [ 151.171875, -2.811371 ], [ 151.875000, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, -2.108899 ], [ 141.328125, -2.811371 ], [ 142.734375, -2.811371 ], [ 142.734375, -3.513421 ], [ 140.625000, -3.513421 ], [ 140.625000, -2.108899 ], [ 141.328125, -2.108899 ] ] ], [ [ [ 151.171875, -2.108899 ], [ 151.171875, -2.811371 ], [ 150.468750, -2.811371 ], [ 150.468750, -2.108899 ], [ 151.171875, -2.108899 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -144.492188, -85.200475 ], [ -144.492188, -85.170970 ], [ -144.140625, -85.170970 ], [ -144.140625, -85.141284 ], [ -143.789062, -85.141284 ], [ -143.789062, -85.111416 ], [ -143.437500, -85.111416 ], [ -143.437500, -85.081364 ], [ -143.085938, -85.081364 ], [ -143.085938, -84.834225 ], [ -142.734375, -84.834225 ], [ -142.734375, -84.574702 ], [ -145.195312, -84.574702 ], [ -145.195312, -84.541361 ], [ -147.304688, -84.541361 ], [ -147.304688, -84.507816 ], [ -147.656250, -84.507816 ], [ -147.656250, -84.474065 ], [ -148.359375, -84.474065 ], [ -148.359375, -84.440107 ], [ -148.710938, -84.440107 ], [ -148.710938, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.371566 ], [ -149.765625, -84.371566 ], [ -149.765625, -84.336980 ], [ -150.117188, -84.336980 ], [ -150.117188, -84.231947 ], [ -150.468750, -84.231947 ], [ -150.468750, -84.016022 ], [ -150.820312, -84.016022 ], [ -150.820312, -83.905058 ], [ -151.171875, -83.905058 ], [ -151.171875, -83.867616 ], [ -151.875000, -83.867616 ], [ -151.875000, -83.829945 ], [ -152.226562, -83.829945 ], [ -152.226562, -83.792044 ], [ -152.578125, -83.792044 ], [ -152.578125, -83.753911 ], [ -153.281250, -83.753911 ], [ -153.281250, -83.715544 ], [ -153.632812, -83.715544 ], [ -153.632812, -83.480366 ], [ -153.281250, -83.480366 ], [ -153.281250, -83.026219 ], [ -152.929688, -83.026219 ], [ -152.929688, -82.631333 ], [ -152.578125, -82.631333 ], [ -152.578125, -82.261699 ], [ -152.929688, -82.261699 ], [ -152.929688, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.972431 ], [ -153.632812, -81.972431 ], [ -153.632812, -81.923186 ], [ -153.984375, -81.923186 ], [ -153.984375, -81.873641 ], [ -154.335938, -81.873641 ], [ -154.335938, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.723188 ], [ -155.039062, -81.723188 ], [ -155.039062, -81.518272 ], [ -155.390625, -81.518272 ], [ -155.390625, -81.413933 ], [ -155.742188, -81.413933 ], [ -155.742188, -81.308321 ], [ -156.093750, -81.308321 ], [ -156.093750, -81.255032 ], [ -156.445312, -81.255032 ], [ -156.445312, -81.147481 ], [ -156.796875, -81.147481 ], [ -156.796875, -81.093214 ], [ -155.742188, -81.093214 ], [ -155.742188, -81.147481 ], [ -153.632812, -81.147481 ], [ -153.632812, -81.093214 ], [ -152.929688, -81.093214 ], [ -152.929688, -81.038617 ], [ -151.875000, -81.038617 ], [ -151.875000, -81.147481 ], [ -151.523438, -81.147481 ], [ -151.523438, -81.255032 ], [ -151.171875, -81.255032 ], [ -151.171875, -81.361287 ], [ -150.468750, -81.361287 ], [ -150.468750, -81.308321 ], [ -150.117188, -81.308321 ], [ -150.117188, -81.255032 ], [ -149.765625, -81.255032 ], [ -149.765625, -81.201420 ], [ -149.414062, -81.201420 ], [ -149.414062, -81.147481 ], [ -149.062500, -81.147481 ], [ -149.062500, -81.093214 ], [ -148.710938, -81.093214 ], [ -148.710938, -81.038617 ], [ -148.359375, -81.038617 ], [ -148.359375, -80.928426 ], [ -148.007812, -80.928426 ], [ -148.007812, -80.816891 ], [ -147.656250, -80.816891 ], [ -147.656250, -80.703997 ], [ -147.304688, -80.703997 ], [ -147.304688, -80.647035 ], [ -146.953125, -80.647035 ], [ -146.953125, -80.532071 ], [ -146.601562, -80.532071 ], [ -146.601562, -80.415707 ], [ -146.250000, -80.415707 ], [ -146.250000, -80.178713 ], [ -146.601562, -80.178713 ], [ -146.601562, -79.935918 ], [ -146.953125, -79.935918 ], [ -146.953125, -79.874297 ], [ -147.304688, -79.874297 ], [ -147.304688, -79.749932 ], [ -147.656250, -79.749932 ], [ -147.656250, -79.687184 ], [ -148.007812, -79.687184 ], [ -148.007812, -79.624056 ], [ -148.359375, -79.624056 ], [ -148.359375, -79.560546 ], [ -148.710938, -79.560546 ], [ -148.710938, -79.496652 ], [ -149.062500, -79.496652 ], [ -149.062500, -79.432371 ], [ -149.414062, -79.432371 ], [ -149.414062, -79.367701 ], [ -150.820312, -79.367701 ], [ -150.820312, -79.302640 ], [ -152.226562, -79.302640 ], [ -152.226562, -79.237185 ], [ -152.929688, -79.237185 ], [ -152.929688, -79.171335 ], [ -153.984375, -79.171335 ], [ -153.984375, -79.105086 ], [ -155.039062, -79.105086 ], [ -155.039062, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.971386 ], [ -155.742188, -78.971386 ], [ -155.742188, -78.836065 ], [ -156.093750, -78.836065 ], [ -156.093750, -78.699106 ], [ -156.445312, -78.699106 ], [ -156.445312, -78.560488 ], [ -156.796875, -78.560488 ], [ -156.796875, -78.420193 ], [ -157.148438, -78.420193 ], [ -157.148438, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.206563 ], [ -157.851562, -78.206563 ], [ -157.851562, -78.134493 ], [ -158.203125, -78.134493 ], [ -158.203125, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.078784 ], [ -157.500000, -77.078784 ], [ -157.500000, -77.235074 ], [ -157.148438, -77.235074 ], [ -157.148438, -77.312520 ], [ -156.093750, -77.312520 ], [ -156.093750, -77.235074 ], [ -154.687500, -77.235074 ], [ -154.687500, -77.157163 ], [ -153.984375, -77.157163 ], [ -153.984375, -77.078784 ], [ -153.632812, -77.078784 ], [ -153.632812, -77.235074 ], [ -153.281250, -77.235074 ], [ -153.281250, -77.389504 ], [ -152.929688, -77.389504 ], [ -152.929688, -77.466028 ], [ -151.875000, -77.466028 ], [ -151.875000, -77.389504 ], [ -150.820312, -77.389504 ], [ -150.820312, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.235074 ], [ -150.117188, -77.235074 ], [ -150.117188, -77.157163 ], [ -149.765625, -77.157163 ], [ -149.765625, -77.078784 ], [ -149.062500, -77.078784 ], [ -149.062500, -76.999935 ], [ -148.710938, -76.999935 ], [ -148.710938, -76.920614 ], [ -148.359375, -76.920614 ], [ -148.359375, -76.760541 ], [ -148.007812, -76.760541 ], [ -148.007812, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.598545 ], [ -146.601562, -76.598545 ], [ -146.601562, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.930885 ], [ -146.601562, -75.930885 ], [ -146.601562, -75.584937 ], [ -146.250000, -75.584937 ], [ -146.250000, -75.408854 ], [ -145.546875, -75.408854 ], [ -145.546875, -75.320025 ], [ -144.843750, -75.320025 ], [ -144.843750, -75.408854 ], [ -144.492188, -75.408854 ], [ -144.492188, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.320025 ], [ -142.382812, -75.320025 ], [ -142.382812, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.050354 ], [ -139.218750, -75.050354 ], [ -139.218750, -74.959392 ], [ -138.164062, -74.959392 ], [ -138.164062, -74.867889 ], [ -137.460938, -74.867889 ], [ -137.460938, -74.775843 ], [ -137.109375, -74.775843 ], [ -137.109375, -74.683250 ], [ -136.757812, -74.683250 ], [ -136.757812, -74.590108 ], [ -136.406250, -74.590108 ], [ -136.406250, -74.496413 ], [ -136.054688, -74.496413 ], [ -136.054688, -74.402163 ], [ -135.351562, -74.402163 ], [ -135.351562, -74.307353 ], [ -135.000000, -74.307353 ], [ -135.000000, -74.402163 ], [ -132.539062, -74.402163 ], [ -132.539062, -74.307353 ], [ -132.187500, -74.307353 ], [ -132.187500, -74.402163 ], [ -131.484375, -74.402163 ], [ -131.484375, -74.496413 ], [ -129.023438, -74.496413 ], [ -129.023438, -74.402163 ], [ -128.320312, -74.402163 ], [ -128.320312, -74.307353 ], [ -127.968750, -74.307353 ], [ -127.968750, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.496413 ], [ -119.179688, -74.496413 ], [ -119.179688, -74.307353 ], [ -118.828125, -74.307353 ], [ -118.828125, -74.211983 ], [ -118.125000, -74.211983 ], [ -118.125000, -74.116047 ], [ -116.718750, -74.116047 ], [ -116.718750, -74.211983 ], [ -115.664062, -74.211983 ], [ -115.664062, -74.116047 ], [ -114.960938, -74.116047 ], [ -114.960938, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.922469 ], [ -114.257812, -73.922469 ], [ -114.257812, -73.824820 ], [ -113.554688, -73.824820 ], [ -113.554688, -74.019543 ], [ -113.203125, -74.019543 ], [ -113.203125, -74.211983 ], [ -112.851562, -74.211983 ], [ -112.851562, -74.496413 ], [ -112.500000, -74.496413 ], [ -112.500000, -74.683250 ], [ -111.796875, -74.683250 ], [ -111.796875, -74.590108 ], [ -111.445312, -74.590108 ], [ -111.445312, -74.496413 ], [ -110.742188, -74.496413 ], [ -110.742188, -74.590108 ], [ -110.390625, -74.590108 ], [ -110.390625, -74.775843 ], [ -109.687500, -74.775843 ], [ -109.687500, -74.867889 ], [ -108.632812, -74.867889 ], [ -108.632812, -74.959392 ], [ -108.281250, -74.959392 ], [ -108.281250, -75.050354 ], [ -107.929688, -75.050354 ], [ -107.929688, -75.140778 ], [ -105.468750, -75.140778 ], [ -105.468750, -75.050354 ], [ -104.765625, -75.050354 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.050354 ], [ -102.656250, -75.050354 ], [ -102.656250, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.230667 ], [ -101.250000, -75.230667 ], [ -101.250000, -75.320025 ], [ -100.546875, -75.320025 ], [ -100.546875, -75.140778 ], [ -100.195312, -75.140778 ], [ -100.195312, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.590108 ], [ -100.898438, -74.590108 ], [ -100.898438, -74.402163 ], [ -101.250000, -74.402163 ], [ -101.250000, -74.211983 ], [ -102.304688, -74.211983 ], [ -102.304688, -74.116047 ], [ -102.656250, -74.116047 ], [ -102.656250, -73.922469 ], [ -103.007812, -73.922469 ], [ -103.007812, -73.528399 ], [ -103.359375, -73.528399 ], [ -103.359375, -73.022592 ], [ -103.710938, -73.022592 ], [ -103.710938, -72.711903 ], [ -102.656250, -72.711903 ], [ -102.656250, -72.816074 ], [ -100.546875, -72.816074 ], [ -100.546875, -72.711903 ], [ -100.195312, -72.711903 ], [ -100.195312, -72.816074 ], [ -99.492188, -72.816074 ], [ -99.492188, -72.919635 ], [ -99.140625, -72.919635 ], [ -99.140625, -73.022592 ], [ -98.789062, -73.022592 ], [ -98.789062, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.226700 ], [ -98.085938, -73.226700 ], [ -98.085938, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.528399 ], [ -97.382812, -73.528399 ], [ -97.382812, -73.627789 ], [ -95.273438, -73.627789 ], [ -95.273438, -73.528399 ], [ -94.218750, -73.528399 ], [ -94.218750, -73.428424 ], [ -93.515625, -73.428424 ], [ -93.515625, -73.327858 ], [ -93.164062, -73.327858 ], [ -93.164062, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.327858 ], [ -91.757812, -73.327858 ], [ -91.757812, -73.428424 ], [ -90.351562, -73.428424 ], [ -90.351562, -73.327858 ], [ -90.000000, -73.327858 ], [ -90.000000, -73.226700 ], [ -89.648438, -73.226700 ], [ -89.648438, -72.816074 ], [ -89.296875, -72.816074 ], [ -89.296875, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -85.200475 ], [ -144.492188, -85.200475 ] ] ], [ [ [ -169.804688, -83.905058 ], [ -169.804688, -83.942272 ], [ -169.453125, -83.942272 ], [ -169.453125, -84.088878 ], [ -169.101562, -84.088878 ], [ -169.101562, -84.160849 ], [ -168.750000, -84.160849 ], [ -168.750000, -84.231947 ], [ -168.398438, -84.231947 ], [ -168.398438, -84.302183 ], [ -168.046875, -84.302183 ], [ -168.046875, -84.371566 ], [ -167.695312, -84.371566 ], [ -167.695312, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.541361 ], [ -166.992188, -84.541361 ], [ -166.992188, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.706049 ], [ -165.585938, -84.706049 ], [ -165.585938, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.770528 ], [ -164.882812, -84.770528 ], [ -164.882812, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.834225 ], [ -164.179688, -84.834225 ], [ -164.179688, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.928321 ], [ -163.476562, -84.928321 ], [ -163.476562, -84.990100 ], [ -163.125000, -84.990100 ], [ -163.125000, -85.020708 ], [ -162.773438, -85.020708 ], [ -162.773438, -85.081364 ], [ -162.421875, -85.081364 ], [ -162.421875, -85.141284 ], [ -162.070312, -85.141284 ], [ -162.070312, -85.170970 ], [ -161.367188, -85.170970 ], [ -161.367188, -85.200475 ], [ -180.000000, -85.200475 ], [ -181.757812, -85.200475 ], [ -181.757812, -84.507816 ], [ -181.406250, -84.507816 ], [ -181.406250, -84.574702 ], [ -181.054688, -84.574702 ], [ -181.054688, -84.607840 ], [ -180.703125, -84.607840 ], [ -180.703125, -84.640777 ], [ -180.351562, -84.640777 ], [ -180.351562, -84.706049 ], [ -180.000000, -84.706049 ], [ -180.000000, -84.640777 ], [ -179.648438, -84.640777 ], [ -179.648438, -84.440107 ], [ -179.296875, -84.440107 ], [ -179.296875, -84.231947 ], [ -178.945312, -84.231947 ], [ -178.945312, -84.160849 ], [ -178.593750, -84.160849 ], [ -178.593750, -84.231947 ], [ -178.242188, -84.231947 ], [ -178.242188, -84.302183 ], [ -177.890625, -84.302183 ], [ -177.890625, -84.371566 ], [ -177.539062, -84.371566 ], [ -177.539062, -84.440107 ], [ -177.187500, -84.440107 ], [ -177.187500, -84.371566 ], [ -176.835938, -84.371566 ], [ -176.835938, -84.267172 ], [ -176.484375, -84.267172 ], [ -176.484375, -84.160849 ], [ -176.132812, -84.160849 ], [ -176.132812, -84.124973 ], [ -175.781250, -84.124973 ], [ -175.781250, -84.196507 ], [ -175.429688, -84.196507 ], [ -175.429688, -84.302183 ], [ -175.078125, -84.302183 ], [ -175.078125, -84.405941 ], [ -174.726562, -84.405941 ], [ -174.726562, -84.507816 ], [ -174.023438, -84.507816 ], [ -174.023438, -84.405941 ], [ -173.671875, -84.405941 ], [ -173.671875, -84.302183 ], [ -173.320312, -84.302183 ], [ -173.320312, -84.196507 ], [ -172.968750, -84.196507 ], [ -172.968750, -84.052561 ], [ -172.617188, -84.052561 ], [ -172.617188, -84.016022 ], [ -171.914062, -84.016022 ], [ -171.914062, -83.979259 ], [ -171.210938, -83.979259 ], [ -171.210938, -83.942272 ], [ -170.507812, -83.942272 ], [ -170.507812, -83.905058 ], [ -169.804688, -83.905058 ] ] ], [ [ [ -155.742188, -85.200475 ], [ -155.742188, -85.170970 ], [ -155.390625, -85.170970 ], [ -155.390625, -85.141284 ], [ -154.335938, -85.141284 ], [ -154.335938, -85.170970 ], [ -153.632812, -85.170970 ], [ -153.632812, -85.200475 ], [ -155.742188, -85.200475 ] ] ], [ [ [ -162.773438, -78.206563 ], [ -162.773438, -78.278201 ], [ -162.070312, -78.278201 ], [ -162.070312, -78.349411 ], [ -161.367188, -78.349411 ], [ -161.367188, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.699106 ], [ -160.312500, -78.699106 ], [ -160.312500, -78.836065 ], [ -159.960938, -78.836065 ], [ -159.960938, -78.971386 ], [ -159.609375, -78.971386 ], [ -159.609375, -79.302640 ], [ -159.257812, -79.302640 ], [ -159.257812, -79.496652 ], [ -159.609375, -79.496652 ], [ -159.609375, -79.560546 ], [ -160.312500, -79.560546 ], [ -160.312500, -79.624056 ], [ -161.367188, -79.624056 ], [ -161.367188, -79.560546 ], [ -161.718750, -79.560546 ], [ -161.718750, -79.432371 ], [ -162.070312, -79.432371 ], [ -162.070312, -79.367701 ], [ -162.421875, -79.367701 ], [ -162.421875, -79.237185 ], [ -162.773438, -79.237185 ], [ -162.773438, -79.038437 ], [ -163.125000, -79.038437 ], [ -163.125000, -78.836065 ], [ -163.476562, -78.836065 ], [ -163.476562, -78.699106 ], [ -163.828125, -78.699106 ], [ -163.828125, -78.560488 ], [ -163.476562, -78.560488 ], [ -163.476562, -78.349411 ], [ -163.125000, -78.349411 ], [ -163.125000, -78.206563 ], [ -162.773438, -78.206563 ] ] ], [ [ [ -101.250000, -71.746432 ], [ -101.250000, -71.856229 ], [ -100.195312, -71.856229 ], [ -100.195312, -71.965388 ], [ -98.789062, -71.965388 ], [ -98.789062, -72.073911 ], [ -97.031250, -72.073911 ], [ -97.031250, -71.965388 ], [ -96.679688, -71.965388 ], [ -96.679688, -72.289067 ], [ -96.328125, -72.289067 ], [ -96.328125, -72.501722 ], [ -97.031250, -72.501722 ], [ -97.031250, -72.395706 ], [ -97.382812, -72.395706 ], [ -97.382812, -72.501722 ], [ -99.140625, -72.501722 ], [ -99.140625, -72.395706 ], [ -99.843750, -72.395706 ], [ -99.843750, -72.501722 ], [ -101.250000, -72.501722 ], [ -101.250000, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -72.073911 ], [ -102.304688, -72.073911 ], [ -102.304688, -71.856229 ], [ -101.601562, -71.856229 ], [ -101.601562, -71.746432 ], [ -101.250000, -71.746432 ] ] ], [ [ [ -121.640625, -73.428424 ], [ -121.640625, -73.528399 ], [ -120.937500, -73.528399 ], [ -120.937500, -73.627789 ], [ -119.179688, -73.627789 ], [ -119.179688, -73.528399 ], [ -118.828125, -73.528399 ], [ -118.828125, -73.726595 ], [ -119.179688, -73.726595 ], [ -119.179688, -73.922469 ], [ -119.531250, -73.922469 ], [ -119.531250, -74.019543 ], [ -119.882812, -74.019543 ], [ -119.882812, -74.116047 ], [ -121.289062, -74.116047 ], [ -121.289062, -74.019543 ], [ -121.992188, -74.019543 ], [ -121.992188, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.726595 ], [ -122.695312, -73.726595 ], [ -122.695312, -73.528399 ], [ -122.343750, -73.528399 ], [ -122.343750, -73.428424 ], [ -121.640625, -73.428424 ] ] ], [ [ [ -126.210938, -73.327858 ], [ -126.210938, -73.428424 ], [ -125.859375, -73.428424 ], [ -125.859375, -73.528399 ], [ -125.507812, -73.528399 ], [ -125.507812, -73.627789 ], [ -125.156250, -73.627789 ], [ -125.156250, -73.726595 ], [ -124.453125, -73.726595 ], [ -124.453125, -73.824820 ], [ -125.507812, -73.824820 ], [ -125.507812, -73.726595 ], [ -126.210938, -73.726595 ], [ -126.210938, -73.627789 ], [ -126.914062, -73.627789 ], [ -126.914062, -73.528399 ], [ -127.265625, -73.528399 ], [ -127.265625, -73.428424 ], [ -126.914062, -73.428424 ], [ -126.914062, -73.327858 ], [ -126.210938, -73.327858 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -144.492188, -85.200475 ], [ -144.492188, -85.141284 ], [ -144.140625, -85.141284 ], [ -144.140625, -85.111416 ], [ -143.789062, -85.111416 ], [ -143.789062, -85.051129 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.802474 ], [ -143.085938, -84.802474 ], [ -143.085938, -84.541361 ], [ -145.195312, -84.541361 ], [ -145.195312, -84.507816 ], [ -147.304688, -84.507816 ], [ -147.304688, -84.474065 ], [ -147.656250, -84.474065 ], [ -147.656250, -84.440107 ], [ -148.359375, -84.440107 ], [ -148.359375, -84.405941 ], [ -148.710938, -84.405941 ], [ -148.710938, -84.371566 ], [ -149.062500, -84.371566 ], [ -149.062500, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.302183 ], [ -150.117188, -84.302183 ], [ -150.117188, -84.231947 ], [ -150.468750, -84.231947 ], [ -150.468750, -84.088878 ], [ -150.820312, -84.088878 ], [ -150.820312, -83.942272 ], [ -151.171875, -83.942272 ], [ -151.171875, -83.867616 ], [ -151.523438, -83.867616 ], [ -151.523438, -83.829945 ], [ -152.226562, -83.829945 ], [ -152.226562, -83.792044 ], [ -152.578125, -83.792044 ], [ -152.578125, -83.753911 ], [ -152.929688, -83.753911 ], [ -152.929688, -83.715544 ], [ -153.632812, -83.715544 ], [ -153.632812, -83.026219 ], [ -153.281250, -83.026219 ], [ -153.281250, -82.631333 ], [ -152.929688, -82.631333 ], [ -152.929688, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.972431 ], [ -153.632812, -81.972431 ], [ -153.632812, -81.873641 ], [ -153.984375, -81.873641 ], [ -153.984375, -81.823794 ], [ -154.335938, -81.823794 ], [ -154.335938, -81.773644 ], [ -154.687500, -81.773644 ], [ -154.687500, -81.672424 ], [ -155.039062, -81.672424 ], [ -155.039062, -81.518272 ], [ -155.390625, -81.518272 ], [ -155.390625, -81.413933 ], [ -155.742188, -81.413933 ], [ -155.742188, -81.361287 ], [ -156.093750, -81.361287 ], [ -156.093750, -81.255032 ], [ -156.445312, -81.255032 ], [ -156.445312, -81.201420 ], [ -156.796875, -81.201420 ], [ -156.796875, -81.147481 ], [ -157.148438, -81.147481 ], [ -157.148438, -81.093214 ], [ -156.093750, -81.093214 ], [ -156.093750, -81.147481 ], [ -153.984375, -81.147481 ], [ -153.984375, -81.093214 ], [ -153.281250, -81.093214 ], [ -153.281250, -81.038617 ], [ -152.578125, -81.038617 ], [ -152.578125, -80.983688 ], [ -152.226562, -80.983688 ], [ -152.226562, -81.038617 ], [ -151.875000, -81.038617 ], [ -151.875000, -81.147481 ], [ -151.523438, -81.147481 ], [ -151.523438, -81.201420 ], [ -151.171875, -81.201420 ], [ -151.171875, -81.308321 ], [ -150.468750, -81.308321 ], [ -150.468750, -81.255032 ], [ -150.117188, -81.255032 ], [ -150.117188, -81.201420 ], [ -149.765625, -81.201420 ], [ -149.765625, -81.147481 ], [ -149.414062, -81.147481 ], [ -149.414062, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -81.038617 ], [ -148.710938, -81.038617 ], [ -148.710938, -80.928426 ], [ -148.359375, -80.928426 ], [ -148.359375, -80.872827 ], [ -148.007812, -80.872827 ], [ -148.007812, -80.816891 ], [ -147.656250, -80.816891 ], [ -147.656250, -80.703997 ], [ -147.304688, -80.703997 ], [ -147.304688, -80.589727 ], [ -146.953125, -80.589727 ], [ -146.953125, -80.415707 ], [ -146.601562, -80.415707 ], [ -146.601562, -80.118564 ], [ -146.953125, -80.118564 ], [ -146.953125, -79.874297 ], [ -147.304688, -79.874297 ], [ -147.304688, -79.812302 ], [ -147.656250, -79.812302 ], [ -147.656250, -79.749932 ], [ -148.007812, -79.749932 ], [ -148.007812, -79.687184 ], [ -148.359375, -79.687184 ], [ -148.359375, -79.624056 ], [ -148.710938, -79.624056 ], [ -148.710938, -79.560546 ], [ -149.062500, -79.560546 ], [ -149.062500, -79.432371 ], [ -149.414062, -79.432371 ], [ -149.414062, -79.367701 ], [ -149.765625, -79.367701 ], [ -149.765625, -79.302640 ], [ -151.171875, -79.302640 ], [ -151.171875, -79.237185 ], [ -152.578125, -79.237185 ], [ -152.578125, -79.171335 ], [ -153.281250, -79.171335 ], [ -153.281250, -79.105086 ], [ -154.687500, -79.105086 ], [ -154.687500, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.971386 ], [ -155.742188, -78.971386 ], [ -155.742188, -78.767792 ], [ -156.093750, -78.767792 ], [ -156.093750, -78.630006 ], [ -156.445312, -78.630006 ], [ -156.445312, -78.560488 ], [ -156.796875, -78.560488 ], [ -156.796875, -78.490552 ], [ -157.148438, -78.490552 ], [ -157.148438, -78.420193 ], [ -157.500000, -78.420193 ], [ -157.500000, -78.278201 ], [ -157.851562, -78.278201 ], [ -157.851562, -78.134493 ], [ -158.203125, -78.134493 ], [ -158.203125, -77.466028 ], [ -158.554688, -77.466028 ], [ -158.554688, -76.920614 ], [ -158.203125, -76.920614 ], [ -158.203125, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.078784 ], [ -157.500000, -77.078784 ], [ -157.500000, -77.235074 ], [ -156.093750, -77.235074 ], [ -156.093750, -77.157163 ], [ -154.687500, -77.157163 ], [ -154.687500, -77.078784 ], [ -153.632812, -77.078784 ], [ -153.632812, -77.235074 ], [ -153.281250, -77.235074 ], [ -153.281250, -77.389504 ], [ -152.929688, -77.389504 ], [ -152.929688, -77.466028 ], [ -151.875000, -77.466028 ], [ -151.875000, -77.389504 ], [ -151.171875, -77.389504 ], [ -151.171875, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.235074 ], [ -150.117188, -77.235074 ], [ -150.117188, -77.157163 ], [ -149.765625, -77.157163 ], [ -149.765625, -76.999935 ], [ -149.414062, -76.999935 ], [ -149.414062, -76.920614 ], [ -149.062500, -76.920614 ], [ -149.062500, -76.840816 ], [ -148.710938, -76.840816 ], [ -148.710938, -76.760541 ], [ -148.359375, -76.760541 ], [ -148.359375, -76.679785 ], [ -148.007812, -76.679785 ], [ -148.007812, -76.598545 ], [ -147.656250, -76.598545 ], [ -147.656250, -76.516819 ], [ -146.601562, -76.516819 ], [ -146.601562, -76.434604 ], [ -146.250000, -76.434604 ], [ -146.250000, -75.930885 ], [ -146.601562, -75.930885 ], [ -146.601562, -75.497157 ], [ -146.250000, -75.497157 ], [ -146.250000, -75.320025 ], [ -145.898438, -75.320025 ], [ -145.898438, -75.230667 ], [ -144.843750, -75.230667 ], [ -144.843750, -75.408854 ], [ -144.492188, -75.408854 ], [ -144.492188, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.320025 ], [ -142.734375, -75.320025 ], [ -142.734375, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.050354 ], [ -139.218750, -75.050354 ], [ -139.218750, -74.959392 ], [ -138.515625, -74.959392 ], [ -138.515625, -74.867889 ], [ -138.164062, -74.867889 ], [ -138.164062, -74.775843 ], [ -137.812500, -74.775843 ], [ -137.812500, -74.683250 ], [ -137.460938, -74.683250 ], [ -137.460938, -74.590108 ], [ -136.757812, -74.590108 ], [ -136.757812, -74.496413 ], [ -136.406250, -74.496413 ], [ -136.406250, -74.402163 ], [ -135.703125, -74.402163 ], [ -135.703125, -74.307353 ], [ -134.648438, -74.307353 ], [ -134.648438, -74.402163 ], [ -133.242188, -74.402163 ], [ -133.242188, -74.307353 ], [ -131.835938, -74.307353 ], [ -131.835938, -74.402163 ], [ -128.671875, -74.402163 ], [ -128.671875, -74.307353 ], [ -127.968750, -74.307353 ], [ -127.968750, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.496413 ], [ -124.453125, -74.496413 ], [ -124.453125, -74.402163 ], [ -123.750000, -74.402163 ], [ -123.750000, -74.496413 ], [ -120.234375, -74.496413 ], [ -120.234375, -74.402163 ], [ -119.531250, -74.402163 ], [ -119.531250, -74.307353 ], [ -119.179688, -74.307353 ], [ -119.179688, -74.211983 ], [ -118.828125, -74.211983 ], [ -118.828125, -74.116047 ], [ -118.125000, -74.116047 ], [ -118.125000, -74.019543 ], [ -117.773438, -74.019543 ], [ -117.773438, -74.116047 ], [ -117.070312, -74.116047 ], [ -117.070312, -74.211983 ], [ -116.015625, -74.211983 ], [ -116.015625, -74.116047 ], [ -115.312500, -74.116047 ], [ -115.312500, -74.019543 ], [ -114.960938, -74.019543 ], [ -114.960938, -73.824820 ], [ -114.609375, -73.824820 ], [ -114.609375, -73.726595 ], [ -113.906250, -73.726595 ], [ -113.906250, -73.922469 ], [ -113.554688, -73.922469 ], [ -113.554688, -74.211983 ], [ -113.203125, -74.211983 ], [ -113.203125, -74.402163 ], [ -112.851562, -74.402163 ], [ -112.851562, -74.590108 ], [ -112.500000, -74.590108 ], [ -112.500000, -74.683250 ], [ -112.148438, -74.683250 ], [ -112.148438, -74.590108 ], [ -111.796875, -74.590108 ], [ -111.796875, -74.496413 ], [ -111.093750, -74.496413 ], [ -111.093750, -74.590108 ], [ -110.742188, -74.590108 ], [ -110.742188, -74.775843 ], [ -110.039062, -74.775843 ], [ -110.039062, -74.867889 ], [ -108.984375, -74.867889 ], [ -108.984375, -74.959392 ], [ -108.632812, -74.959392 ], [ -108.632812, -75.050354 ], [ -107.929688, -75.050354 ], [ -107.929688, -75.140778 ], [ -106.523438, -75.140778 ], [ -106.523438, -75.050354 ], [ -105.820312, -75.050354 ], [ -105.820312, -74.959392 ], [ -105.117188, -74.959392 ], [ -105.117188, -74.867889 ], [ -104.765625, -74.867889 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.050354 ], [ -102.304688, -75.050354 ], [ -102.304688, -75.140778 ], [ -101.601562, -75.140778 ], [ -101.601562, -75.230667 ], [ -100.898438, -75.230667 ], [ -100.898438, -75.140778 ], [ -100.546875, -75.140778 ], [ -100.546875, -74.959392 ], [ -100.195312, -74.959392 ], [ -100.195312, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.590108 ], [ -100.898438, -74.590108 ], [ -100.898438, -74.307353 ], [ -101.250000, -74.307353 ], [ -101.250000, -74.116047 ], [ -102.304688, -74.116047 ], [ -102.304688, -74.019543 ], [ -103.007812, -74.019543 ], [ -103.007812, -73.824820 ], [ -103.359375, -73.824820 ], [ -103.359375, -73.022592 ], [ -103.710938, -73.022592 ], [ -103.710938, -72.711903 ], [ -100.195312, -72.711903 ], [ -100.195312, -72.816074 ], [ -99.140625, -72.816074 ], [ -99.140625, -72.919635 ], [ -98.789062, -72.919635 ], [ -98.789062, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.226700 ], [ -98.085938, -73.226700 ], [ -98.085938, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.528399 ], [ -95.625000, -73.528399 ], [ -95.625000, -73.428424 ], [ -94.570312, -73.428424 ], [ -94.570312, -73.327858 ], [ -93.867188, -73.327858 ], [ -93.867188, -73.226700 ], [ -92.812500, -73.226700 ], [ -92.812500, -73.124945 ], [ -92.460938, -73.124945 ], [ -92.460938, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.327858 ], [ -90.703125, -73.327858 ], [ -90.703125, -73.226700 ], [ -90.351562, -73.226700 ], [ -90.351562, -73.124945 ], [ -90.000000, -73.124945 ], [ -90.000000, -72.919635 ], [ -89.648438, -72.919635 ], [ -89.648438, -72.711903 ], [ -89.296875, -72.711903 ], [ -89.296875, -72.607120 ], [ -88.945312, -72.607120 ], [ -88.945312, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -85.200475 ], [ -144.492188, -85.200475 ] ] ], [ [ [ -169.804688, -83.905058 ], [ -169.804688, -83.979259 ], [ -169.453125, -83.979259 ], [ -169.453125, -84.052561 ], [ -169.101562, -84.052561 ], [ -169.101562, -84.160849 ], [ -168.750000, -84.160849 ], [ -168.750000, -84.302183 ], [ -168.398438, -84.302183 ], [ -168.398438, -84.371566 ], [ -168.046875, -84.371566 ], [ -168.046875, -84.440107 ], [ -167.695312, -84.440107 ], [ -167.695312, -84.507816 ], [ -167.343750, -84.507816 ], [ -167.343750, -84.574702 ], [ -166.992188, -84.574702 ], [ -166.992188, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.673513 ], [ -165.585938, -84.673513 ], [ -165.585938, -84.706049 ], [ -165.234375, -84.706049 ], [ -165.234375, -84.738387 ], [ -164.882812, -84.738387 ], [ -164.882812, -84.770528 ], [ -164.531250, -84.770528 ], [ -164.531250, -84.802474 ], [ -164.179688, -84.802474 ], [ -164.179688, -84.834225 ], [ -163.828125, -84.834225 ], [ -163.828125, -84.897147 ], [ -163.476562, -84.897147 ], [ -163.476562, -84.959305 ], [ -163.125000, -84.959305 ], [ -163.125000, -84.990100 ], [ -162.773438, -84.990100 ], [ -162.773438, -85.051129 ], [ -162.421875, -85.051129 ], [ -162.421875, -85.111416 ], [ -162.070312, -85.111416 ], [ -162.070312, -85.141284 ], [ -161.718750, -85.141284 ], [ -161.718750, -85.170970 ], [ -161.367188, -85.170970 ], [ -161.367188, -85.200475 ], [ -180.000000, -85.200475 ], [ -181.757812, -85.200475 ], [ -181.757812, -84.474065 ], [ -181.406250, -84.474065 ], [ -181.406250, -84.541361 ], [ -181.054688, -84.541361 ], [ -181.054688, -84.574702 ], [ -180.703125, -84.574702 ], [ -180.703125, -84.640777 ], [ -180.351562, -84.640777 ], [ -180.351562, -84.706049 ], [ -180.000000, -84.706049 ], [ -180.000000, -84.574702 ], [ -179.648438, -84.574702 ], [ -179.648438, -84.302183 ], [ -179.296875, -84.302183 ], [ -179.296875, -84.160849 ], [ -178.945312, -84.160849 ], [ -178.945312, -84.231947 ], [ -178.593750, -84.231947 ], [ -178.593750, -84.302183 ], [ -178.242188, -84.302183 ], [ -178.242188, -84.371566 ], [ -177.890625, -84.371566 ], [ -177.890625, -84.440107 ], [ -177.187500, -84.440107 ], [ -177.187500, -84.371566 ], [ -176.835938, -84.371566 ], [ -176.835938, -84.267172 ], [ -176.484375, -84.267172 ], [ -176.484375, -84.160849 ], [ -175.781250, -84.160849 ], [ -175.781250, -84.267172 ], [ -175.429688, -84.267172 ], [ -175.429688, -84.371566 ], [ -175.078125, -84.371566 ], [ -175.078125, -84.474065 ], [ -174.375000, -84.474065 ], [ -174.375000, -84.371566 ], [ -174.023438, -84.371566 ], [ -174.023438, -84.267172 ], [ -173.671875, -84.267172 ], [ -173.671875, -84.160849 ], [ -173.320312, -84.160849 ], [ -173.320312, -84.088878 ], [ -172.968750, -84.088878 ], [ -172.968750, -84.052561 ], [ -172.617188, -84.052561 ], [ -172.617188, -84.016022 ], [ -171.914062, -84.016022 ], [ -171.914062, -83.979259 ], [ -171.210938, -83.979259 ], [ -171.210938, -83.942272 ], [ -170.859375, -83.942272 ], [ -170.859375, -83.905058 ], [ -169.804688, -83.905058 ] ] ], [ [ [ -156.093750, -85.200475 ], [ -156.093750, -85.141284 ], [ -155.742188, -85.141284 ], [ -155.742188, -85.111416 ], [ -154.687500, -85.111416 ], [ -154.687500, -85.141284 ], [ -154.335938, -85.141284 ], [ -154.335938, -85.170970 ], [ -153.632812, -85.170970 ], [ -153.632812, -85.200475 ], [ -156.093750, -85.200475 ] ] ], [ [ [ -162.773438, -78.206563 ], [ -162.773438, -78.278201 ], [ -162.070312, -78.278201 ], [ -162.070312, -78.349411 ], [ -161.367188, -78.349411 ], [ -161.367188, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.490552 ], [ -160.664062, -78.490552 ], [ -160.664062, -78.630006 ], [ -160.312500, -78.630006 ], [ -160.312500, -78.767792 ], [ -159.960938, -78.767792 ], [ -159.960938, -78.971386 ], [ -159.609375, -78.971386 ], [ -159.609375, -79.302640 ], [ -159.257812, -79.302640 ], [ -159.257812, -79.496652 ], [ -159.609375, -79.496652 ], [ -159.609375, -79.560546 ], [ -160.664062, -79.560546 ], [ -160.664062, -79.624056 ], [ -161.718750, -79.624056 ], [ -161.718750, -79.496652 ], [ -162.070312, -79.496652 ], [ -162.070312, -79.432371 ], [ -162.421875, -79.432371 ], [ -162.421875, -79.302640 ], [ -162.773438, -79.302640 ], [ -162.773438, -79.105086 ], [ -163.125000, -79.105086 ], [ -163.125000, -78.767792 ], [ -163.476562, -78.767792 ], [ -163.476562, -78.630006 ], [ -163.828125, -78.630006 ], [ -163.828125, -78.490552 ], [ -163.476562, -78.490552 ], [ -163.476562, -78.349411 ], [ -163.125000, -78.349411 ], [ -163.125000, -78.206563 ], [ -162.773438, -78.206563 ] ] ], [ [ [ -101.601562, -71.635993 ], [ -101.601562, -71.746432 ], [ -100.195312, -71.746432 ], [ -100.195312, -71.856229 ], [ -98.789062, -71.856229 ], [ -98.789062, -71.965388 ], [ -97.382812, -71.965388 ], [ -97.382812, -71.856229 ], [ -97.031250, -71.856229 ], [ -97.031250, -72.073911 ], [ -96.679688, -72.073911 ], [ -96.679688, -72.395706 ], [ -96.328125, -72.395706 ], [ -96.328125, -72.501722 ], [ -97.031250, -72.501722 ], [ -97.031250, -72.395706 ], [ -99.843750, -72.395706 ], [ -99.843750, -72.501722 ], [ -101.250000, -72.501722 ], [ -101.250000, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -72.181804 ], [ -102.304688, -72.181804 ], [ -102.304688, -71.965388 ], [ -102.656250, -71.965388 ], [ -102.656250, -71.856229 ], [ -102.304688, -71.856229 ], [ -102.304688, -71.746432 ], [ -101.953125, -71.746432 ], [ -101.953125, -71.635993 ], [ -101.601562, -71.635993 ] ] ], [ [ [ -121.992188, -73.327858 ], [ -121.992188, -73.428424 ], [ -121.289062, -73.428424 ], [ -121.289062, -73.528399 ], [ -120.585938, -73.528399 ], [ -120.585938, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -73.528399 ], [ -119.179688, -73.528399 ], [ -119.179688, -73.726595 ], [ -119.531250, -73.726595 ], [ -119.531250, -73.922469 ], [ -119.882812, -73.922469 ], [ -119.882812, -74.019543 ], [ -121.289062, -74.019543 ], [ -121.289062, -73.922469 ], [ -121.992188, -73.922469 ], [ -121.992188, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.726595 ], [ -122.695312, -73.726595 ], [ -122.695312, -73.327858 ], [ -121.992188, -73.327858 ] ] ], [ [ [ -126.210938, -73.327858 ], [ -126.210938, -73.428424 ], [ -125.859375, -73.428424 ], [ -125.859375, -73.528399 ], [ -125.507812, -73.528399 ], [ -125.507812, -73.627789 ], [ -124.804688, -73.627789 ], [ -124.804688, -73.726595 ], [ -124.453125, -73.726595 ], [ -124.453125, -73.824820 ], [ -125.859375, -73.824820 ], [ -125.859375, -73.726595 ], [ -126.562500, -73.726595 ], [ -126.562500, -73.627789 ], [ -127.265625, -73.627789 ], [ -127.265625, -73.528399 ], [ -127.617188, -73.528399 ], [ -127.617188, -73.428424 ], [ -127.265625, -73.428424 ], [ -127.265625, -73.327858 ], [ -126.210938, -73.327858 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.406250, -17.644022 ], [ -181.406250, -18.312811 ], [ -181.757812, -18.312811 ], [ -181.757812, -17.644022 ], [ -181.406250, -17.644022 ] ] ], [ [ [ -180.000000, -16.299051 ], [ -180.000000, -16.636192 ], [ -180.703125, -16.636192 ], [ -180.703125, -16.972741 ], [ -181.406250, -16.972741 ], [ -181.406250, -16.636192 ], [ -181.054688, -16.636192 ], [ -181.054688, -16.299051 ], [ -180.000000, -16.299051 ] ] ], [ [ [ -179.648438, -15.961329 ], [ -179.648438, -16.299051 ], [ -180.000000, -16.299051 ], [ -180.000000, -15.961329 ], [ -179.648438, -15.961329 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -181.406250, -37.718590 ], [ -181.406250, -38.272689 ], [ -181.757812, -38.272689 ], [ -181.757812, -37.718590 ], [ -181.406250, -37.718590 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.406250, -17.308688 ], [ -181.406250, -17.644022 ], [ -181.757812, -17.644022 ], [ -181.757812, -17.308688 ], [ -181.406250, -17.308688 ] ] ], [ [ [ -180.000000, -16.299051 ], [ -180.000000, -16.636192 ], [ -180.703125, -16.636192 ], [ -180.703125, -16.972741 ], [ -181.406250, -16.972741 ], [ -181.406250, -16.636192 ], [ -181.054688, -16.636192 ], [ -181.054688, -16.299051 ], [ -180.000000, -16.299051 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.168107 ], [ -88.945312, 64.168107 ], [ -88.945312, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.548552 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.054688, 62.915233 ], [ -91.054688, 62.754726 ], [ -91.757812, 62.754726 ], [ -91.757812, 62.593341 ], [ -92.109375, 62.593341 ], [ -92.109375, 62.431074 ], [ -92.460938, 62.431074 ], [ -92.460938, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 62.103883 ], [ -93.164062, 62.103883 ], [ -93.164062, 61.773123 ], [ -93.515625, 61.773123 ], [ -93.515625, 61.438767 ], [ -93.867188, 61.438767 ], [ -93.867188, 61.100789 ], [ -94.218750, 61.100789 ], [ -94.218750, 60.413852 ], [ -94.570312, 60.413852 ], [ -94.570312, 58.995311 ], [ -94.218750, 58.995311 ], [ -94.218750, 58.813742 ], [ -93.164062, 58.813742 ], [ -93.164062, 58.263287 ], [ -92.812500, 58.263287 ], [ -92.812500, 57.515823 ], [ -92.460938, 57.515823 ], [ -92.460938, 57.136239 ], [ -91.406250, 57.136239 ], [ -91.406250, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -89.648438, 57.136239 ], [ -89.648438, 56.944974 ], [ -88.945312, 56.944974 ], [ -88.945312, 56.752723 ], [ -88.593750, 56.752723 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 47.989922 ], [ -90.351562, 47.989922 ], [ -90.351562, 48.224673 ], [ -92.460938, 48.224673 ], [ -92.460938, 48.458352 ], [ -93.164062, 48.458352 ], [ -93.164062, 48.690960 ], [ -94.570312, 48.690960 ], [ -94.570312, 49.152970 ], [ -94.921875, 49.152970 ], [ -94.921875, 49.382373 ], [ -95.273438, 49.382373 ], [ -95.273438, 48.922499 ], [ -123.398438, 48.922499 ], [ -123.398438, 49.152970 ], [ -123.750000, 49.152970 ], [ -123.750000, 49.382373 ], [ -124.101562, 49.382373 ], [ -124.101562, 49.610710 ], [ -124.453125, 49.610710 ], [ -124.453125, 49.837982 ], [ -124.804688, 49.837982 ], [ -124.804688, 50.064192 ], [ -125.156250, 50.064192 ], [ -125.156250, 50.289339 ], [ -125.507812, 50.289339 ], [ -125.507812, 50.513427 ], [ -126.562500, 50.513427 ], [ -126.562500, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.399206 ], [ -127.968750, 51.399206 ], [ -127.968750, 52.268157 ], [ -128.320312, 52.268157 ], [ -128.320312, 52.482780 ], [ -129.023438, 52.482780 ], [ -129.023438, 53.120405 ], [ -129.375000, 53.120405 ], [ -129.375000, 53.540307 ], [ -129.726562, 53.540307 ], [ -129.726562, 53.956086 ], [ -130.078125, 53.956086 ], [ -130.078125, 54.162434 ], [ -130.429688, 54.162434 ], [ -130.429688, 54.977614 ], [ -130.078125, 54.977614 ], [ -130.078125, 55.973798 ], [ -130.429688, 55.973798 ], [ -130.429688, 56.170023 ], [ -131.132812, 56.170023 ], [ -131.132812, 56.365250 ], [ -131.835938, 56.365250 ], [ -131.835938, 56.752723 ], [ -132.187500, 56.752723 ], [ -132.187500, 57.136239 ], [ -132.539062, 57.136239 ], [ -132.539062, 57.515823 ], [ -132.890625, 57.515823 ], [ -132.890625, 58.077876 ], [ -133.242188, 58.077876 ], [ -133.242188, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.631217 ], [ -134.296875, 58.631217 ], [ -134.296875, 58.813742 ], [ -134.648438, 58.813742 ], [ -134.648438, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 59.355596 ], [ -136.757812, 59.355596 ], [ -136.757812, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 58.995311 ], [ -137.812500, 58.995311 ], [ -137.812500, 59.175928 ], [ -138.164062, 59.175928 ], [ -138.164062, 59.355596 ], [ -138.515625, 59.355596 ], [ -138.515625, 59.712097 ], [ -138.867188, 59.712097 ], [ -138.867188, 60.064840 ], [ -139.570312, 60.064840 ], [ -139.570312, 60.239811 ], [ -140.976562, 60.239811 ], [ -140.976562, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -127.968750, 50.736455 ], [ -127.968750, 50.513427 ], [ -127.265625, 50.513427 ], [ -127.265625, 50.289339 ], [ -125.859375, 50.289339 ], [ -125.859375, 50.064192 ], [ -125.507812, 50.064192 ], [ -125.507812, 49.610710 ], [ -125.156250, 49.610710 ], [ -125.156250, 49.382373 ], [ -124.453125, 49.382373 ], [ -124.453125, 49.152970 ], [ -123.750000, 49.152970 ], [ -123.750000, 48.690960 ], [ -123.398438, 48.690960 ], [ -123.398438, 48.458352 ], [ -124.804688, 48.458352 ], [ -124.804688, 48.690960 ], [ -125.507812, 48.690960 ], [ -125.507812, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.152970 ], [ -126.210938, 49.152970 ], [ -126.210938, 49.382373 ], [ -126.914062, 49.382373 ], [ -126.914062, 49.837982 ], [ -127.617188, 49.837982 ], [ -127.617188, 50.064192 ], [ -127.968750, 50.064192 ], [ -127.968750, 50.289339 ], [ -128.320312, 50.289339 ], [ -128.320312, 50.736455 ], [ -127.968750, 50.736455 ] ] ], [ [ [ -131.835938, 53.540307 ], [ -132.187500, 53.540307 ], [ -132.187500, 52.908902 ], [ -132.539062, 52.908902 ], [ -132.539062, 53.120405 ], [ -132.890625, 53.120405 ], [ -132.890625, 53.540307 ], [ -133.242188, 53.540307 ], [ -133.242188, 53.956086 ], [ -131.835938, 53.956086 ], [ -131.835938, 53.540307 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.696361 ], [ -131.835938, 52.696361 ], [ -131.835938, 52.482780 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -131.484375, 52.482780 ], [ -131.484375, 52.268157 ], [ -131.835938, 52.268157 ], [ -131.835938, 52.482780 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.562500, 50.513427 ], [ -126.562500, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 51.618017 ], [ -128.320312, 51.618017 ], [ -128.320312, 52.052490 ], [ -127.968750, 52.052490 ], [ -127.968750, 52.482780 ], [ -128.671875, 52.482780 ], [ -128.671875, 52.696361 ], [ -129.375000, 52.696361 ], [ -129.375000, 53.748711 ], [ -129.726562, 53.748711 ], [ -129.726562, 53.956086 ], [ -130.429688, 53.956086 ], [ -130.429688, 54.162434 ], [ -130.781250, 54.162434 ], [ -130.781250, 54.977614 ], [ -130.429688, 54.977614 ], [ -130.429688, 55.178868 ], [ -130.078125, 55.178868 ], [ -130.078125, 55.973798 ], [ -130.429688, 55.973798 ], [ -130.429688, 56.170023 ], [ -131.132812, 56.170023 ], [ -131.132812, 56.365250 ], [ -131.835938, 56.365250 ], [ -131.835938, 56.752723 ], [ -132.187500, 56.752723 ], [ -132.187500, 57.136239 ], [ -132.539062, 57.136239 ], [ -132.539062, 57.515823 ], [ -132.890625, 57.515823 ], [ -132.890625, 57.891497 ], [ -133.242188, 57.891497 ], [ -133.242188, 58.263287 ], [ -133.593750, 58.263287 ], [ -133.593750, 58.447733 ], [ -133.945312, 58.447733 ], [ -133.945312, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.355596 ], [ -135.351562, 59.355596 ], [ -135.351562, 59.712097 ], [ -136.406250, 59.712097 ], [ -136.406250, 59.534318 ], [ -136.757812, 59.534318 ], [ -136.757812, 59.355596 ], [ -137.109375, 59.355596 ], [ -137.109375, 58.995311 ], [ -137.812500, 58.995311 ], [ -137.812500, 59.355596 ], [ -138.164062, 59.355596 ], [ -138.164062, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.712097 ], [ -138.867188, 59.712097 ], [ -138.867188, 59.888937 ], [ -139.218750, 59.888937 ], [ -139.218750, 60.064840 ], [ -139.570312, 60.064840 ], [ -139.570312, 60.239811 ], [ -140.273438, 60.239811 ], [ -140.273438, 60.413852 ], [ -141.328125, 60.413852 ], [ -141.328125, 67.204032 ], [ -88.242188, 67.204032 ], [ -88.242188, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 64.014496 ], [ -90.351562, 64.014496 ], [ -90.351562, 63.704722 ], [ -90.703125, 63.704722 ], [ -90.703125, 63.391522 ], [ -91.054688, 63.391522 ], [ -91.054688, 63.074866 ], [ -91.406250, 63.074866 ], [ -91.406250, 62.915233 ], [ -92.109375, 62.915233 ], [ -92.109375, 62.754726 ], [ -92.460938, 62.754726 ], [ -92.460938, 62.431074 ], [ -92.812500, 62.431074 ], [ -92.812500, 62.103883 ], [ -93.164062, 62.103883 ], [ -93.164062, 61.938950 ], [ -93.515625, 61.938950 ], [ -93.515625, 61.606396 ], [ -93.867188, 61.606396 ], [ -93.867188, 61.270233 ], [ -94.218750, 61.270233 ], [ -94.218750, 60.930432 ], [ -94.570312, 60.930432 ], [ -94.570312, 60.586967 ], [ -94.921875, 60.586967 ], [ -94.921875, 58.995311 ], [ -94.570312, 58.995311 ], [ -94.570312, 58.813742 ], [ -93.515625, 58.813742 ], [ -93.515625, 58.447733 ], [ -93.164062, 58.447733 ], [ -93.164062, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.515823 ], [ -92.460938, 57.515823 ], [ -92.460938, 57.136239 ], [ -91.406250, 57.136239 ], [ -91.406250, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -90.000000, 57.136239 ], [ -90.000000, 56.944974 ], [ -89.296875, 56.944974 ], [ -89.296875, 56.752723 ], [ -88.593750, 56.752723 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.458352 ], [ -88.593750, 48.458352 ], [ -88.593750, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.458352 ], [ -91.054688, 48.458352 ], [ -91.054688, 48.224673 ], [ -92.460938, 48.224673 ], [ -92.460938, 48.458352 ], [ -93.515625, 48.458352 ], [ -93.515625, 48.690960 ], [ -94.921875, 48.690960 ], [ -94.921875, 49.610710 ], [ -95.273438, 49.610710 ], [ -95.273438, 49.152970 ], [ -123.398438, 49.152970 ], [ -123.398438, 49.382373 ], [ -124.101562, 49.382373 ], [ -124.101562, 49.610710 ], [ -124.453125, 49.610710 ], [ -124.453125, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 49.382373 ], [ -124.453125, 49.382373 ], [ -124.453125, 49.152970 ], [ -124.101562, 49.152970 ], [ -124.101562, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 48.458352 ], [ -124.804688, 48.458352 ], [ -124.804688, 48.690960 ], [ -125.507812, 48.690960 ], [ -125.507812, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.152970 ], [ -126.210938, 49.152970 ], [ -126.210938, 49.382373 ], [ -126.914062, 49.382373 ], [ -126.914062, 49.610710 ], [ -127.265625, 49.610710 ], [ -127.265625, 49.837982 ], [ -127.968750, 49.837982 ], [ -127.968750, 50.064192 ], [ -128.320312, 50.064192 ], [ -128.320312, 50.289339 ], [ -128.671875, 50.289339 ], [ -128.671875, 50.958427 ], [ -128.320312, 50.958427 ], [ -128.320312, 50.736455 ], [ -127.617188, 50.736455 ], [ -127.617188, 50.513427 ], [ -126.562500, 50.513427 ] ], [ [ -125.156250, 49.837982 ], [ -125.156250, 50.064192 ], [ -125.507812, 50.064192 ], [ -125.507812, 49.837982 ], [ -125.156250, 49.837982 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.696361 ], [ -132.539062, 52.696361 ], [ -132.539062, 52.908902 ], [ -132.890625, 52.908902 ], [ -132.890625, 53.330873 ], [ -133.242188, 53.330873 ], [ -133.242188, 54.162434 ], [ -131.835938, 54.162434 ], [ -131.835938, 53.540307 ], [ -132.187500, 53.540307 ], [ -132.187500, 52.908902 ], [ -131.835938, 52.908902 ], [ -131.835938, 52.482780 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -131.484375, 52.482780 ], [ -131.484375, 52.268157 ], [ -131.835938, 52.268157 ], [ -131.835938, 52.482780 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.742188, 20.303418 ], [ -155.742188, 19.973349 ], [ -155.039062, 19.973349 ], [ -155.039062, 19.642588 ], [ -154.687500, 19.642588 ], [ -154.687500, 19.311143 ], [ -155.390625, 19.311143 ], [ -155.390625, 18.979026 ], [ -155.742188, 18.979026 ], [ -155.742188, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.303418 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -156.796875, 20.961440 ], [ -156.093750, 20.961440 ], [ -156.093750, 20.632784 ], [ -156.796875, 20.632784 ], [ -156.796875, 20.961440 ] ] ], [ [ [ -94.921875, 49.382373 ], [ -94.921875, 49.152970 ], [ -94.570312, 49.152970 ], [ -94.570312, 48.690960 ], [ -93.164062, 48.690960 ], [ -93.164062, 48.458352 ], [ -92.460938, 48.458352 ], [ -92.460938, 48.224673 ], [ -90.351562, 48.224673 ], [ -90.351562, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.224673 ], [ -88.242188, 48.224673 ], [ -88.242188, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.840644 ], [ -89.296875, 29.840644 ], [ -89.296875, 29.228890 ], [ -91.757812, 29.228890 ], [ -91.757812, 29.535230 ], [ -93.164062, 29.535230 ], [ -93.164062, 29.840644 ], [ -93.867188, 29.840644 ], [ -93.867188, 29.535230 ], [ -94.570312, 29.535230 ], [ -94.570312, 29.228890 ], [ -94.921875, 29.228890 ], [ -94.921875, 28.921631 ], [ -95.273438, 28.921631 ], [ -95.273438, 28.613459 ], [ -95.976562, 28.613459 ], [ -95.976562, 28.304381 ], [ -96.679688, 28.304381 ], [ -96.679688, 27.994401 ], [ -97.031250, 27.994401 ], [ -97.031250, 27.371767 ], [ -97.382812, 27.371767 ], [ -97.382812, 25.799891 ], [ -98.085938, 25.799891 ], [ -98.085938, 26.115986 ], [ -98.789062, 26.115986 ], [ -98.789062, 26.431228 ], [ -99.140625, 26.431228 ], [ -99.140625, 27.059126 ], [ -99.492188, 27.059126 ], [ -99.492188, 27.683528 ], [ -100.195312, 27.683528 ], [ -100.195312, 28.304381 ], [ -100.546875, 28.304381 ], [ -100.546875, 28.921631 ], [ -100.898438, 28.921631 ], [ -100.898438, 29.228890 ], [ -101.250000, 29.228890 ], [ -101.250000, 29.535230 ], [ -101.601562, 29.535230 ], [ -101.601562, 29.840644 ], [ -102.304688, 29.840644 ], [ -102.304688, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 28.921631 ], [ -103.710938, 28.921631 ], [ -103.710938, 29.228890 ], [ -104.414062, 29.228890 ], [ -104.414062, 29.840644 ], [ -104.765625, 29.840644 ], [ -104.765625, 30.448674 ], [ -105.117188, 30.448674 ], [ -105.117188, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.052934 ], [ -106.171875, 31.052934 ], [ -106.171875, 31.353637 ], [ -106.523438, 31.353637 ], [ -106.523438, 31.653381 ], [ -108.281250, 31.653381 ], [ -108.281250, 31.353637 ], [ -111.796875, 31.353637 ], [ -111.796875, 31.653381 ], [ -112.851562, 31.653381 ], [ -112.851562, 31.952162 ], [ -113.906250, 31.952162 ], [ -113.906250, 32.249974 ], [ -114.609375, 32.249974 ], [ -114.609375, 32.842674 ], [ -114.960938, 32.842674 ], [ -114.960938, 32.546813 ], [ -117.070312, 32.546813 ], [ -117.070312, 32.842674 ], [ -117.421875, 32.842674 ], [ -117.421875, 33.431441 ], [ -117.773438, 33.431441 ], [ -117.773438, 33.724340 ], [ -118.476562, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.531250, 34.016242 ], [ -119.531250, 34.307144 ], [ -120.585938, 34.307144 ], [ -120.585938, 35.173808 ], [ -120.937500, 35.173808 ], [ -120.937500, 35.460670 ], [ -121.289062, 35.460670 ], [ -121.289062, 35.746512 ], [ -121.640625, 35.746512 ], [ -121.640625, 36.031332 ], [ -121.992188, 36.031332 ], [ -121.992188, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.160317 ], [ -122.695312, 37.160317 ], [ -122.695312, 37.439974 ], [ -122.343750, 37.439974 ], [ -122.343750, 37.718590 ], [ -123.046875, 37.718590 ], [ -123.046875, 37.996163 ], [ -123.398438, 37.996163 ], [ -123.398438, 38.548165 ], [ -123.750000, 38.548165 ], [ -123.750000, 39.639538 ], [ -124.101562, 39.639538 ], [ -124.101562, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 40.713956 ], [ -124.101562, 40.713956 ], [ -124.101562, 42.293564 ], [ -124.453125, 42.293564 ], [ -124.453125, 43.325178 ], [ -124.101562, 43.325178 ], [ -124.101562, 45.089036 ], [ -123.750000, 45.089036 ], [ -123.750000, 46.073231 ], [ -124.101562, 46.073231 ], [ -124.101562, 47.279229 ], [ -124.453125, 47.279229 ], [ -124.453125, 47.989922 ], [ -124.804688, 47.989922 ], [ -124.804688, 48.224673 ], [ -123.750000, 48.224673 ], [ -123.750000, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.695312, 47.517201 ], [ -122.695312, 47.040182 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.458352 ], [ -122.695312, 48.458352 ], [ -122.695312, 48.922499 ], [ -95.273438, 48.922499 ], [ -95.273438, 49.382373 ], [ -94.921875, 49.382373 ] ] ], [ [ [ -157.851562, 21.616579 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -157.851562, 21.616579 ] ] ], [ [ [ -159.257812, 22.268764 ], [ -159.257812, 21.943046 ], [ -159.609375, 21.943046 ], [ -159.609375, 22.268764 ], [ -159.257812, 22.268764 ] ] ], [ [ [ -140.976562, 67.204032 ], [ -140.976562, 60.239811 ], [ -139.570312, 60.239811 ], [ -139.570312, 60.064840 ], [ -138.867188, 60.064840 ], [ -138.867188, 59.712097 ], [ -138.515625, 59.712097 ], [ -138.515625, 59.355596 ], [ -138.164062, 59.355596 ], [ -138.164062, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 58.995311 ], [ -137.109375, 58.995311 ], [ -137.109375, 59.175928 ], [ -136.757812, 59.175928 ], [ -136.757812, 59.355596 ], [ -136.406250, 59.355596 ], [ -136.406250, 59.534318 ], [ -135.703125, 59.534318 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 59.175928 ], [ -134.648438, 59.175928 ], [ -134.648438, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.631217 ], [ -133.593750, 58.631217 ], [ -133.593750, 58.447733 ], [ -133.242188, 58.447733 ], [ -133.242188, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 57.515823 ], [ -132.539062, 57.515823 ], [ -132.539062, 57.136239 ], [ -132.187500, 57.136239 ], [ -132.187500, 56.752723 ], [ -131.835938, 56.752723 ], [ -131.835938, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.170023 ], [ -130.429688, 56.170023 ], [ -130.429688, 55.973798 ], [ -130.078125, 55.973798 ], [ -130.078125, 54.977614 ], [ -130.429688, 54.977614 ], [ -130.429688, 54.775346 ], [ -130.781250, 54.775346 ], [ -130.781250, 54.977614 ], [ -131.132812, 54.977614 ], [ -131.132812, 55.178868 ], [ -131.484375, 55.178868 ], [ -131.484375, 55.379110 ], [ -131.835938, 55.379110 ], [ -131.835938, 55.973798 ], [ -132.187500, 55.973798 ], [ -132.187500, 56.365250 ], [ -132.539062, 56.365250 ], [ -132.539062, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.752723 ], [ -133.242188, 56.752723 ], [ -133.242188, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.515823 ], [ -133.945312, 57.515823 ], [ -133.945312, 58.077876 ], [ -134.648438, 58.077876 ], [ -134.648438, 58.263287 ], [ -137.460938, 58.263287 ], [ -137.460938, 58.447733 ], [ -138.164062, 58.447733 ], [ -138.164062, 58.631217 ], [ -138.515625, 58.631217 ], [ -138.515625, 58.813742 ], [ -138.867188, 58.813742 ], [ -138.867188, 58.995311 ], [ -139.218750, 58.995311 ], [ -139.218750, 59.175928 ], [ -139.570312, 59.175928 ], [ -139.570312, 59.355596 ], [ -139.921875, 59.355596 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.712097 ], [ -141.679688, 59.712097 ], [ -141.679688, 59.888937 ], [ -142.382812, 59.888937 ], [ -142.382812, 60.064840 ], [ -144.492188, 60.064840 ], [ -144.492188, 60.239811 ], [ -145.546875, 60.239811 ], [ -145.546875, 60.413852 ], [ -146.250000, 60.413852 ], [ -146.250000, 60.586967 ], [ -146.601562, 60.586967 ], [ -146.601562, 60.759160 ], [ -147.656250, 60.759160 ], [ -147.656250, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 60.239811 ], [ -148.007812, 60.239811 ], [ -148.007812, 59.888937 ], [ -149.062500, 59.888937 ], [ -149.062500, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.534318 ], [ -150.117188, 59.534318 ], [ -150.117188, 59.355596 ], [ -150.820312, 59.355596 ], [ -150.820312, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.759160 ], [ -151.875000, 60.759160 ], [ -151.875000, 60.586967 ], [ -152.226562, 60.586967 ], [ -152.226562, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.712097 ], [ -153.281250, 59.712097 ], [ -153.281250, 59.534318 ], [ -153.632812, 59.534318 ], [ -153.632812, 59.355596 ], [ -153.984375, 59.355596 ], [ -153.984375, 59.175928 ], [ -153.632812, 59.175928 ], [ -153.632812, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.631217 ], [ -153.632812, 58.631217 ], [ -153.632812, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 58.077876 ], [ -154.335938, 58.077876 ], [ -154.335938, 57.891497 ], [ -155.039062, 57.891497 ], [ -155.039062, 57.704147 ], [ -155.742188, 57.704147 ], [ -155.742188, 57.515823 ], [ -156.445312, 57.515823 ], [ -156.445312, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.752723 ], [ -157.500000, 56.752723 ], [ -157.500000, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 56.170023 ], [ -158.554688, 56.170023 ], [ -158.554688, 55.776573 ], [ -159.257812, 55.776573 ], [ -159.257812, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.379110 ], [ -161.367188, 55.379110 ], [ -161.367188, 55.178868 ], [ -161.718750, 55.178868 ], [ -161.718750, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.775346 ], [ -163.476562, 54.775346 ], [ -163.476562, 54.572062 ], [ -164.179688, 54.572062 ], [ -164.179688, 54.367759 ], [ -164.882812, 54.367759 ], [ -164.882812, 54.572062 ], [ -164.531250, 54.572062 ], [ -164.531250, 54.775346 ], [ -163.828125, 54.775346 ], [ -163.828125, 54.977614 ], [ -163.476562, 54.977614 ], [ -163.476562, 55.178868 ], [ -162.773438, 55.178868 ], [ -162.773438, 55.379110 ], [ -162.421875, 55.379110 ], [ -162.421875, 55.578345 ], [ -162.070312, 55.578345 ], [ -162.070312, 55.776573 ], [ -161.718750, 55.776573 ], [ -161.718750, 55.973798 ], [ -160.312500, 55.973798 ], [ -160.312500, 56.170023 ], [ -159.960938, 56.170023 ], [ -159.960938, 56.365250 ], [ -159.609375, 56.365250 ], [ -159.609375, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.752723 ], [ -158.554688, 56.752723 ], [ -158.554688, 57.136239 ], [ -158.203125, 57.136239 ], [ -158.203125, 57.326521 ], [ -157.851562, 57.326521 ], [ -157.851562, 57.891497 ], [ -157.500000, 57.891497 ], [ -157.500000, 58.631217 ], [ -157.148438, 58.631217 ], [ -157.148438, 58.813742 ], [ -157.851562, 58.813742 ], [ -157.851562, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.813742 ], [ -161.015625, 58.813742 ], [ -161.015625, 58.631217 ], [ -162.070312, 58.631217 ], [ -162.070312, 59.534318 ], [ -161.718750, 59.534318 ], [ -161.718750, 59.712097 ], [ -162.070312, 59.712097 ], [ -162.070312, 59.888937 ], [ -163.125000, 59.888937 ], [ -163.125000, 59.712097 ], [ -164.179688, 59.712097 ], [ -164.179688, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.413852 ], [ -165.234375, 60.413852 ], [ -165.234375, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.270233 ], [ -166.289062, 61.270233 ], [ -166.289062, 61.606396 ], [ -165.937500, 61.606396 ], [ -165.937500, 61.938950 ], [ -165.585938, 61.938950 ], [ -165.585938, 62.103883 ], [ -165.234375, 62.103883 ], [ -165.234375, 62.431074 ], [ -164.882812, 62.431074 ], [ -164.882812, 62.754726 ], [ -164.531250, 62.754726 ], [ -164.531250, 63.074866 ], [ -162.773438, 63.074866 ], [ -162.773438, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.391522 ], [ -161.015625, 63.391522 ], [ -161.015625, 63.548552 ], [ -160.664062, 63.548552 ], [ -160.664062, 63.860036 ], [ -161.015625, 63.860036 ], [ -161.015625, 64.320872 ], [ -161.367188, 64.320872 ], [ -161.367188, 64.472794 ], [ -161.015625, 64.472794 ], [ -161.015625, 64.623877 ], [ -160.664062, 64.623877 ], [ -160.664062, 64.774125 ], [ -161.718750, 64.774125 ], [ -161.718750, 64.623877 ], [ -162.421875, 64.623877 ], [ -162.421875, 64.472794 ], [ -162.773438, 64.472794 ], [ -162.773438, 64.320872 ], [ -163.125000, 64.320872 ], [ -163.125000, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.623877 ], [ -163.828125, 64.623877 ], [ -163.828125, 64.472794 ], [ -165.937500, 64.472794 ], [ -165.937500, 64.623877 ], [ -166.640625, 64.623877 ], [ -166.640625, 64.923542 ], [ -166.992188, 64.923542 ], [ -166.992188, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -167.695312, 65.366837 ], [ -167.695312, 65.512963 ], [ -168.046875, 65.512963 ], [ -168.046875, 65.658275 ], [ -167.695312, 65.658275 ], [ -167.695312, 65.802776 ], [ -166.992188, 65.802776 ], [ -166.992188, 65.946472 ], [ -166.640625, 65.946472 ], [ -166.640625, 66.089364 ], [ -165.937500, 66.089364 ], [ -165.937500, 66.231457 ], [ -165.234375, 66.231457 ], [ -165.234375, 66.372755 ], [ -164.531250, 66.372755 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.828125, 66.930060 ], [ -163.828125, 67.204032 ], [ -140.976562, 67.204032 ] ], [ [ -151.171875, 60.930432 ], [ -151.523438, 60.930432 ], [ -151.523438, 60.759160 ], [ -151.171875, 60.759160 ], [ -151.171875, 60.930432 ] ], [ [ -150.820312, 61.100789 ], [ -150.820312, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.100789 ], [ -150.820312, 61.100789 ] ] ], [ [ [ -152.578125, 57.891497 ], [ -152.578125, 57.704147 ], [ -152.226562, 57.704147 ], [ -152.226562, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 57.136239 ], [ -152.929688, 57.136239 ], [ -152.929688, 56.944974 ], [ -153.632812, 56.944974 ], [ -153.632812, 56.752723 ], [ -154.687500, 56.752723 ], [ -154.687500, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.704147 ], [ -153.632812, 57.704147 ], [ -153.632812, 57.891497 ], [ -152.578125, 57.891497 ] ] ], [ [ [ -171.210938, 63.704722 ], [ -171.210938, 63.548552 ], [ -170.156250, 63.548552 ], [ -170.156250, 63.391522 ], [ -169.453125, 63.391522 ], [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 63.074866 ], [ -169.101562, 63.074866 ], [ -169.101562, 62.915233 ], [ -169.804688, 62.915233 ], [ -169.804688, 63.074866 ], [ -170.156250, 63.074866 ], [ -170.156250, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.391522 ], [ -171.914062, 63.391522 ], [ -171.914062, 63.548552 ], [ -171.562500, 63.548552 ], [ -171.562500, 63.704722 ], [ -171.210938, 63.704722 ] ] ], [ [ [ -166.289062, 60.413852 ], [ -166.289062, 60.239811 ], [ -165.585938, 60.239811 ], [ -165.585938, 59.712097 ], [ -166.992188, 59.712097 ], [ -166.992188, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.239811 ], [ -166.640625, 60.239811 ], [ -166.640625, 60.413852 ], [ -166.289062, 60.413852 ] ] ], [ [ [ -156.796875, 20.961440 ], [ -157.148438, 20.961440 ], [ -157.148438, 21.289374 ], [ -156.796875, 21.289374 ], [ -156.796875, 20.961440 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.390625, 20.303418 ], [ -155.390625, 19.642588 ], [ -155.039062, 19.642588 ], [ -155.039062, 19.311143 ], [ -155.742188, 19.311143 ], [ -155.742188, 18.979026 ], [ -156.093750, 18.979026 ], [ -156.093750, 20.303418 ], [ -155.390625, 20.303418 ] ] ], [ [ [ -156.093750, 20.961440 ], [ -156.093750, 20.632784 ], [ -156.796875, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.093750, 20.961440 ] ] ], [ [ [ -157.851562, 21.616579 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -157.851562, 21.616579 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.609375, 21.943046 ], [ -159.960938, 21.943046 ], [ -159.960938, 22.268764 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.921875, 49.610710 ], [ -94.921875, 48.690960 ], [ -93.515625, 48.690960 ], [ -93.515625, 48.458352 ], [ -92.460938, 48.458352 ], [ -92.460938, 48.224673 ], [ -91.054688, 48.224673 ], [ -91.054688, 48.458352 ], [ -90.703125, 48.458352 ], [ -90.703125, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 48.458352 ], [ -88.242188, 48.458352 ], [ -88.242188, 30.448674 ], [ -89.648438, 30.448674 ], [ -89.648438, 29.535230 ], [ -89.296875, 29.535230 ], [ -89.296875, 29.228890 ], [ -91.406250, 29.228890 ], [ -91.406250, 29.535230 ], [ -91.757812, 29.535230 ], [ -91.757812, 29.840644 ], [ -94.218750, 29.840644 ], [ -94.218750, 29.535230 ], [ -94.921875, 29.535230 ], [ -94.921875, 29.228890 ], [ -95.273438, 29.228890 ], [ -95.273438, 28.921631 ], [ -95.976562, 28.921631 ], [ -95.976562, 28.613459 ], [ -96.679688, 28.613459 ], [ -96.679688, 28.304381 ], [ -97.031250, 28.304381 ], [ -97.031250, 27.994401 ], [ -97.382812, 27.994401 ], [ -97.382812, 26.115986 ], [ -99.140625, 26.115986 ], [ -99.140625, 26.745610 ], [ -99.492188, 26.745610 ], [ -99.492188, 27.371767 ], [ -99.843750, 27.371767 ], [ -99.843750, 27.994401 ], [ -100.195312, 27.994401 ], [ -100.195312, 28.613459 ], [ -100.546875, 28.613459 ], [ -100.546875, 28.921631 ], [ -100.898438, 28.921631 ], [ -100.898438, 29.228890 ], [ -101.250000, 29.228890 ], [ -101.250000, 29.535230 ], [ -101.953125, 29.535230 ], [ -101.953125, 29.840644 ], [ -102.656250, 29.840644 ], [ -102.656250, 29.535230 ], [ -103.007812, 29.535230 ], [ -103.007812, 29.228890 ], [ -104.062500, 29.228890 ], [ -104.062500, 29.535230 ], [ -104.765625, 29.535230 ], [ -104.765625, 30.448674 ], [ -105.117188, 30.448674 ], [ -105.117188, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.052934 ], [ -105.820312, 31.052934 ], [ -105.820312, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 31.353637 ], [ -111.796875, 31.353637 ], [ -111.796875, 31.653381 ], [ -112.500000, 31.653381 ], [ -112.500000, 31.952162 ], [ -113.203125, 31.952162 ], [ -113.203125, 32.249974 ], [ -114.609375, 32.249974 ], [ -114.609375, 32.546813 ], [ -114.960938, 32.546813 ], [ -114.960938, 32.842674 ], [ -116.367188, 32.842674 ], [ -116.367188, 32.546813 ], [ -117.421875, 32.546813 ], [ -117.421875, 33.137551 ], [ -117.773438, 33.137551 ], [ -117.773438, 33.431441 ], [ -118.125000, 33.431441 ], [ -118.125000, 33.724340 ], [ -118.476562, 33.724340 ], [ -118.476562, 34.016242 ], [ -118.828125, 34.016242 ], [ -118.828125, 34.307144 ], [ -119.531250, 34.307144 ], [ -119.531250, 34.597042 ], [ -120.937500, 34.597042 ], [ -120.937500, 35.173808 ], [ -121.289062, 35.173808 ], [ -121.289062, 35.746512 ], [ -121.640625, 35.746512 ], [ -121.640625, 36.031332 ], [ -121.992188, 36.031332 ], [ -121.992188, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.160317 ], [ -122.695312, 37.160317 ], [ -122.695312, 37.996163 ], [ -123.046875, 37.996163 ], [ -123.046875, 38.272689 ], [ -123.398438, 38.272689 ], [ -123.398438, 38.822591 ], [ -123.750000, 38.822591 ], [ -123.750000, 39.368279 ], [ -124.101562, 39.368279 ], [ -124.101562, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 42.293564 ], [ -124.804688, 42.293564 ], [ -124.804688, 43.325178 ], [ -124.453125, 43.325178 ], [ -124.453125, 44.339565 ], [ -124.101562, 44.339565 ], [ -124.101562, 47.279229 ], [ -124.453125, 47.279229 ], [ -124.453125, 47.989922 ], [ -124.804688, 47.989922 ], [ -124.804688, 48.458352 ], [ -124.453125, 48.458352 ], [ -124.453125, 48.224673 ], [ -123.398438, 48.224673 ], [ -123.398438, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.695312, 47.517201 ], [ -122.695312, 47.279229 ], [ -122.343750, 47.279229 ], [ -122.343750, 47.754098 ], [ -122.695312, 47.754098 ], [ -122.695312, 48.690960 ], [ -123.046875, 48.690960 ], [ -123.046875, 49.152970 ], [ -95.273438, 49.152970 ], [ -95.273438, 49.610710 ], [ -94.921875, 49.610710 ] ] ], [ [ [ -141.328125, 67.204032 ], [ -141.328125, 60.413852 ], [ -140.273438, 60.413852 ], [ -140.273438, 60.239811 ], [ -139.570312, 60.239811 ], [ -139.570312, 60.064840 ], [ -139.218750, 60.064840 ], [ -139.218750, 59.888937 ], [ -138.867188, 59.888937 ], [ -138.867188, 59.712097 ], [ -138.515625, 59.712097 ], [ -138.515625, 59.534318 ], [ -138.164062, 59.534318 ], [ -138.164062, 59.355596 ], [ -137.812500, 59.355596 ], [ -137.812500, 58.995311 ], [ -137.109375, 58.995311 ], [ -137.109375, 59.355596 ], [ -136.757812, 59.355596 ], [ -136.757812, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.175928 ], [ -134.648438, 59.175928 ], [ -134.648438, 58.995311 ], [ -134.296875, 58.995311 ], [ -134.296875, 58.813742 ], [ -133.945312, 58.813742 ], [ -133.945312, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.263287 ], [ -133.242188, 58.263287 ], [ -133.242188, 57.891497 ], [ -132.890625, 57.891497 ], [ -132.890625, 57.515823 ], [ -132.539062, 57.515823 ], [ -132.539062, 57.136239 ], [ -132.187500, 57.136239 ], [ -132.187500, 56.752723 ], [ -131.835938, 56.752723 ], [ -131.835938, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.170023 ], [ -130.429688, 56.170023 ], [ -130.429688, 55.973798 ], [ -130.078125, 55.973798 ], [ -130.078125, 55.178868 ], [ -130.429688, 55.178868 ], [ -130.429688, 54.977614 ], [ -131.132812, 54.977614 ], [ -131.132812, 55.178868 ], [ -131.484375, 55.178868 ], [ -131.484375, 55.379110 ], [ -132.187500, 55.379110 ], [ -132.187500, 55.973798 ], [ -132.539062, 55.973798 ], [ -132.539062, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.944974 ], [ -133.242188, 56.944974 ], [ -133.242188, 57.136239 ], [ -133.593750, 57.136239 ], [ -133.593750, 57.515823 ], [ -133.945312, 57.515823 ], [ -133.945312, 57.891497 ], [ -134.296875, 57.891497 ], [ -134.296875, 58.263287 ], [ -137.109375, 58.263287 ], [ -137.109375, 58.447733 ], [ -137.812500, 58.447733 ], [ -137.812500, 58.631217 ], [ -138.164062, 58.631217 ], [ -138.164062, 58.813742 ], [ -138.515625, 58.813742 ], [ -138.515625, 58.995311 ], [ -138.867188, 58.995311 ], [ -138.867188, 59.175928 ], [ -139.218750, 59.175928 ], [ -139.218750, 59.355596 ], [ -139.570312, 59.355596 ], [ -139.570312, 59.534318 ], [ -139.921875, 59.534318 ], [ -139.921875, 59.712097 ], [ -140.625000, 59.712097 ], [ -140.625000, 59.888937 ], [ -141.679688, 59.888937 ], [ -141.679688, 60.064840 ], [ -142.382812, 60.064840 ], [ -142.382812, 60.239811 ], [ -143.085938, 60.239811 ], [ -143.085938, 60.064840 ], [ -144.843750, 60.064840 ], [ -144.843750, 60.239811 ], [ -145.546875, 60.239811 ], [ -145.546875, 60.413852 ], [ -146.250000, 60.413852 ], [ -146.250000, 60.586967 ], [ -146.601562, 60.586967 ], [ -146.601562, 60.759160 ], [ -147.304688, 60.759160 ], [ -147.304688, 60.930432 ], [ -147.656250, 60.930432 ], [ -147.656250, 60.759160 ], [ -148.359375, 60.759160 ], [ -148.359375, 60.064840 ], [ -148.710938, 60.064840 ], [ -148.710938, 59.888937 ], [ -149.414062, 59.888937 ], [ -149.414062, 59.712097 ], [ -150.117188, 59.712097 ], [ -150.117188, 59.534318 ], [ -150.820312, 59.534318 ], [ -150.820312, 59.355596 ], [ -151.523438, 59.355596 ], [ -151.523438, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.759160 ], [ -151.171875, 60.759160 ], [ -151.171875, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.270233 ], [ -151.171875, 61.270233 ], [ -151.171875, 61.100789 ], [ -151.523438, 61.100789 ], [ -151.523438, 60.930432 ], [ -151.875000, 60.930432 ], [ -151.875000, 60.759160 ], [ -152.226562, 60.759160 ], [ -152.226562, 60.413852 ], [ -152.578125, 60.413852 ], [ -152.578125, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.712097 ], [ -153.632812, 59.712097 ], [ -153.632812, 59.534318 ], [ -153.984375, 59.534318 ], [ -153.984375, 59.355596 ], [ -154.335938, 59.355596 ], [ -154.335938, 59.175928 ], [ -153.984375, 59.175928 ], [ -153.984375, 58.995311 ], [ -153.632812, 58.995311 ], [ -153.632812, 58.813742 ], [ -153.984375, 58.813742 ], [ -153.984375, 58.447733 ], [ -154.335938, 58.447733 ], [ -154.335938, 58.077876 ], [ -155.039062, 58.077876 ], [ -155.039062, 57.891497 ], [ -155.390625, 57.891497 ], [ -155.390625, 57.704147 ], [ -156.093750, 57.704147 ], [ -156.093750, 57.515823 ], [ -156.445312, 57.515823 ], [ -156.445312, 57.326521 ], [ -156.796875, 57.326521 ], [ -156.796875, 56.944974 ], [ -157.148438, 56.944974 ], [ -157.148438, 56.752723 ], [ -157.851562, 56.752723 ], [ -157.851562, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 56.365250 ], [ -158.554688, 56.365250 ], [ -158.554688, 55.973798 ], [ -158.906250, 55.973798 ], [ -158.906250, 55.776573 ], [ -159.257812, 55.776573 ], [ -159.257812, 55.578345 ], [ -161.015625, 55.578345 ], [ -161.015625, 55.379110 ], [ -161.718750, 55.379110 ], [ -161.718750, 55.178868 ], [ -162.421875, 55.178868 ], [ -162.421875, 54.977614 ], [ -162.773438, 54.977614 ], [ -162.773438, 54.775346 ], [ -163.828125, 54.775346 ], [ -163.828125, 54.572062 ], [ -164.882812, 54.572062 ], [ -164.882812, 54.775346 ], [ -164.531250, 54.775346 ], [ -164.531250, 54.977614 ], [ -164.179688, 54.977614 ], [ -164.179688, 55.178868 ], [ -163.476562, 55.178868 ], [ -163.476562, 55.379110 ], [ -162.773438, 55.379110 ], [ -162.773438, 55.578345 ], [ -162.421875, 55.578345 ], [ -162.421875, 55.776573 ], [ -162.070312, 55.776573 ], [ -162.070312, 55.973798 ], [ -161.015625, 55.973798 ], [ -161.015625, 56.170023 ], [ -160.664062, 56.170023 ], [ -160.664062, 56.365250 ], [ -160.312500, 56.365250 ], [ -160.312500, 56.559482 ], [ -159.960938, 56.559482 ], [ -159.960938, 56.752723 ], [ -159.257812, 56.752723 ], [ -159.257812, 56.944974 ], [ -158.906250, 56.944974 ], [ -158.906250, 57.136239 ], [ -158.554688, 57.136239 ], [ -158.554688, 57.326521 ], [ -158.203125, 57.326521 ], [ -158.203125, 57.515823 ], [ -157.851562, 57.515823 ], [ -157.851562, 58.447733 ], [ -157.500000, 58.447733 ], [ -157.500000, 58.813742 ], [ -157.851562, 58.813742 ], [ -157.851562, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.609375, 58.447733 ], [ -159.609375, 58.813742 ], [ -160.664062, 58.813742 ], [ -160.664062, 58.995311 ], [ -161.015625, 58.995311 ], [ -161.015625, 58.813742 ], [ -162.070312, 58.813742 ], [ -162.070312, 59.712097 ], [ -162.421875, 59.712097 ], [ -162.421875, 59.888937 ], [ -162.773438, 59.888937 ], [ -162.773438, 60.064840 ], [ -163.125000, 60.064840 ], [ -163.125000, 59.888937 ], [ -164.179688, 59.888937 ], [ -164.179688, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.413852 ], [ -165.585938, 60.413852 ], [ -165.585938, 61.100789 ], [ -165.937500, 61.100789 ], [ -165.937500, 61.438767 ], [ -166.289062, 61.438767 ], [ -166.289062, 61.773123 ], [ -165.937500, 61.773123 ], [ -165.937500, 62.267923 ], [ -165.585938, 62.267923 ], [ -165.585938, 62.593341 ], [ -165.234375, 62.593341 ], [ -165.234375, 62.915233 ], [ -164.882812, 62.915233 ], [ -164.882812, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 63.074866 ], [ -162.773438, 63.074866 ], [ -162.773438, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.548552 ], [ -161.367188, 63.548552 ], [ -161.367188, 63.704722 ], [ -161.015625, 63.704722 ], [ -161.015625, 64.320872 ], [ -161.718750, 64.320872 ], [ -161.718750, 64.472794 ], [ -161.367188, 64.472794 ], [ -161.367188, 64.774125 ], [ -161.015625, 64.774125 ], [ -161.015625, 64.923542 ], [ -161.718750, 64.923542 ], [ -161.718750, 64.774125 ], [ -162.421875, 64.774125 ], [ -162.421875, 64.623877 ], [ -162.773438, 64.623877 ], [ -162.773438, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.623877 ], [ -164.179688, 64.623877 ], [ -164.179688, 64.472794 ], [ -165.937500, 64.472794 ], [ -165.937500, 64.623877 ], [ -166.640625, 64.623877 ], [ -166.640625, 64.923542 ], [ -166.992188, 64.923542 ], [ -166.992188, 65.219894 ], [ -167.343750, 65.219894 ], [ -167.343750, 65.366837 ], [ -167.695312, 65.366837 ], [ -167.695312, 65.512963 ], [ -168.046875, 65.512963 ], [ -168.046875, 65.658275 ], [ -168.398438, 65.658275 ], [ -168.398438, 65.802776 ], [ -167.695312, 65.802776 ], [ -167.695312, 65.946472 ], [ -166.992188, 65.946472 ], [ -166.992188, 66.089364 ], [ -166.640625, 66.089364 ], [ -166.640625, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.652977 ], [ -163.828125, 66.652977 ], [ -163.828125, 66.089364 ], [ -162.421875, 66.089364 ], [ -162.421875, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.652977 ], [ -162.773438, 66.652977 ], [ -162.773438, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.476562, 66.930060 ], [ -163.476562, 67.067433 ], [ -163.828125, 67.067433 ], [ -163.828125, 67.204032 ], [ -141.328125, 67.204032 ] ] ], [ [ [ -152.578125, 58.077876 ], [ -152.578125, 57.891497 ], [ -152.226562, 57.891497 ], [ -152.226562, 57.515823 ], [ -152.578125, 57.515823 ], [ -152.578125, 57.326521 ], [ -152.929688, 57.326521 ], [ -152.929688, 57.136239 ], [ -153.281250, 57.136239 ], [ -153.281250, 56.944974 ], [ -153.984375, 56.944974 ], [ -153.984375, 56.752723 ], [ -154.335938, 56.752723 ], [ -154.335938, 56.944974 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.704147 ], [ -153.984375, 57.704147 ], [ -153.984375, 57.891497 ], [ -153.281250, 57.891497 ], [ -153.281250, 58.077876 ], [ -152.578125, 58.077876 ] ] ], [ [ [ -170.507812, 63.704722 ], [ -170.507812, 63.548552 ], [ -169.453125, 63.548552 ], [ -169.453125, 63.391522 ], [ -168.750000, 63.391522 ], [ -168.750000, 63.233627 ], [ -169.101562, 63.233627 ], [ -169.101562, 63.074866 ], [ -170.507812, 63.074866 ], [ -170.507812, 63.233627 ], [ -170.859375, 63.233627 ], [ -170.859375, 63.391522 ], [ -171.914062, 63.391522 ], [ -171.914062, 63.704722 ], [ -170.507812, 63.704722 ] ] ], [ [ [ -165.937500, 60.413852 ], [ -165.937500, 60.239811 ], [ -165.585938, 60.239811 ], [ -165.585938, 59.888937 ], [ -166.992188, 59.888937 ], [ -166.992188, 60.064840 ], [ -167.695312, 60.064840 ], [ -167.695312, 60.239811 ], [ -166.992188, 60.239811 ], [ -166.992188, 60.413852 ], [ -165.937500, 60.413852 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.609375, 32.842674 ], [ -114.609375, 32.249974 ], [ -113.906250, 32.249974 ], [ -113.906250, 31.952162 ], [ -112.851562, 31.952162 ], [ -112.851562, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.052934 ], [ -105.468750, 31.052934 ], [ -105.468750, 30.751278 ], [ -105.117188, 30.751278 ], [ -105.117188, 30.448674 ], [ -104.765625, 30.448674 ], [ -104.765625, 29.840644 ], [ -104.414062, 29.840644 ], [ -104.414062, 29.228890 ], [ -103.710938, 29.228890 ], [ -103.710938, 28.921631 ], [ -102.656250, 28.921631 ], [ -102.656250, 29.535230 ], [ -102.304688, 29.535230 ], [ -102.304688, 29.840644 ], [ -101.601562, 29.840644 ], [ -101.601562, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 28.304381 ], [ -100.195312, 28.304381 ], [ -100.195312, 27.683528 ], [ -99.492188, 27.683528 ], [ -99.492188, 27.059126 ], [ -99.140625, 27.059126 ], [ -99.140625, 26.431228 ], [ -98.789062, 26.431228 ], [ -98.789062, 26.115986 ], [ -98.085938, 26.115986 ], [ -98.085938, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 25.165173 ], [ -97.382812, 25.165173 ], [ -97.382812, 24.527135 ], [ -97.734375, 24.527135 ], [ -97.734375, 21.616579 ], [ -97.382812, 21.616579 ], [ -97.382812, 20.961440 ], [ -97.031250, 20.961440 ], [ -97.031250, 20.303418 ], [ -96.679688, 20.303418 ], [ -96.679688, 19.642588 ], [ -96.328125, 19.642588 ], [ -96.328125, 18.979026 ], [ -95.625000, 18.979026 ], [ -95.625000, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 18.312811 ], [ -94.570312, 18.312811 ], [ -94.570312, 17.978733 ], [ -93.867188, 17.978733 ], [ -93.867188, 18.312811 ], [ -92.812500, 18.312811 ], [ -92.812500, 18.646245 ], [ -91.406250, 18.646245 ], [ -91.406250, 18.979026 ], [ -90.703125, 18.979026 ], [ -90.703125, 20.303418 ], [ -90.351562, 20.303418 ], [ -90.351562, 20.961440 ], [ -89.648438, 20.961440 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -88.242188, 21.616579 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.644022 ], [ -90.000000, 17.644022 ], [ -90.000000, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 15.623037 ], [ -92.109375, 15.623037 ], [ -92.109375, 14.604847 ], [ -92.460938, 14.604847 ], [ -92.460938, 14.944785 ], [ -93.164062, 14.944785 ], [ -93.164062, 15.284185 ], [ -93.515625, 15.284185 ], [ -93.515625, 15.623037 ], [ -93.867188, 15.623037 ], [ -93.867188, 15.961329 ], [ -95.273438, 15.961329 ], [ -95.273438, 15.623037 ], [ -97.382812, 15.623037 ], [ -97.382812, 15.961329 ], [ -98.437500, 15.961329 ], [ -98.437500, 16.299051 ], [ -98.789062, 16.299051 ], [ -98.789062, 16.636192 ], [ -100.195312, 16.636192 ], [ -100.195312, 16.972741 ], [ -100.898438, 16.972741 ], [ -100.898438, 17.308688 ], [ -101.601562, 17.308688 ], [ -101.601562, 17.644022 ], [ -101.953125, 17.644022 ], [ -101.953125, 17.978733 ], [ -103.007812, 17.978733 ], [ -103.007812, 18.312811 ], [ -104.062500, 18.312811 ], [ -104.062500, 18.646245 ], [ -104.414062, 18.646245 ], [ -104.414062, 18.979026 ], [ -105.117188, 18.979026 ], [ -105.117188, 19.642588 ], [ -105.468750, 19.642588 ], [ -105.468750, 19.973349 ], [ -105.820312, 19.973349 ], [ -105.820312, 20.303418 ], [ -105.468750, 20.303418 ], [ -105.468750, 20.961440 ], [ -105.117188, 20.961440 ], [ -105.117188, 21.616579 ], [ -105.468750, 21.616579 ], [ -105.468750, 21.943046 ], [ -105.820312, 21.943046 ], [ -105.820312, 22.593726 ], [ -106.171875, 22.593726 ], [ -106.171875, 22.917923 ], [ -106.523438, 22.917923 ], [ -106.523438, 23.563987 ], [ -106.875000, 23.563987 ], [ -106.875000, 23.885838 ], [ -107.226562, 23.885838 ], [ -107.226562, 24.206890 ], [ -107.929688, 24.206890 ], [ -107.929688, 24.846565 ], [ -108.281250, 24.846565 ], [ -108.281250, 25.165173 ], [ -108.984375, 25.165173 ], [ -108.984375, 25.482951 ], [ -109.335938, 25.482951 ], [ -109.335938, 26.431228 ], [ -109.687500, 26.431228 ], [ -109.687500, 26.745610 ], [ -110.390625, 26.745610 ], [ -110.390625, 27.371767 ], [ -110.742188, 27.371767 ], [ -110.742188, 27.994401 ], [ -111.445312, 27.994401 ], [ -111.445312, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.613459 ], [ -112.148438, 28.613459 ], [ -112.148438, 29.228890 ], [ -112.500000, 29.228890 ], [ -112.500000, 29.840644 ], [ -112.851562, 29.840644 ], [ -112.851562, 30.448674 ], [ -113.203125, 30.448674 ], [ -113.203125, 31.052934 ], [ -113.554688, 31.052934 ], [ -113.554688, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.653381 ], [ -114.609375, 31.653381 ], [ -114.609375, 31.353637 ], [ -114.960938, 31.353637 ], [ -114.960938, 31.052934 ], [ -114.609375, 31.052934 ], [ -114.609375, 29.840644 ], [ -114.257812, 29.840644 ], [ -114.257812, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.921631 ], [ -113.554688, 28.921631 ], [ -113.554688, 28.613459 ], [ -113.203125, 28.613459 ], [ -113.203125, 28.304381 ], [ -112.851562, 28.304381 ], [ -112.851562, 27.371767 ], [ -112.500000, 27.371767 ], [ -112.500000, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.745610 ], [ -111.445312, 26.745610 ], [ -111.445312, 25.482951 ], [ -111.093750, 25.482951 ], [ -111.093750, 24.846565 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.206890 ], [ -110.039062, 24.206890 ], [ -110.039062, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 23.563987 ], [ -109.335938, 23.563987 ], [ -109.335938, 22.917923 ], [ -110.039062, 22.917923 ], [ -110.039062, 23.241346 ], [ -110.390625, 23.241346 ], [ -110.390625, 23.563987 ], [ -111.093750, 23.563987 ], [ -111.093750, 23.885838 ], [ -111.445312, 23.885838 ], [ -111.445312, 24.206890 ], [ -111.796875, 24.206890 ], [ -111.796875, 24.527135 ], [ -112.148438, 24.527135 ], [ -112.148438, 26.115986 ], [ -112.851562, 26.115986 ], [ -112.851562, 26.431228 ], [ -113.554688, 26.431228 ], [ -113.554688, 26.745610 ], [ -114.609375, 26.745610 ], [ -114.609375, 27.371767 ], [ -114.960938, 27.371767 ], [ -114.960938, 27.683528 ], [ -114.257812, 27.683528 ], [ -114.257812, 28.613459 ], [ -114.609375, 28.613459 ], [ -114.609375, 28.921631 ], [ -114.960938, 28.921631 ], [ -114.960938, 29.228890 ], [ -115.664062, 29.228890 ], [ -115.664062, 29.840644 ], [ -116.015625, 29.840644 ], [ -116.015625, 30.448674 ], [ -116.367188, 30.448674 ], [ -116.367188, 31.052934 ], [ -116.718750, 31.052934 ], [ -116.718750, 31.952162 ], [ -117.070312, 31.952162 ], [ -117.070312, 32.546813 ], [ -114.960938, 32.546813 ], [ -114.960938, 32.842674 ], [ -114.609375, 32.842674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.960938, 32.842674 ], [ -114.960938, 32.546813 ], [ -114.609375, 32.546813 ], [ -114.609375, 32.249974 ], [ -113.203125, 32.249974 ], [ -113.203125, 31.952162 ], [ -112.500000, 31.952162 ], [ -112.500000, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.952162 ], [ -106.523438, 31.952162 ], [ -106.523438, 31.653381 ], [ -106.171875, 31.653381 ], [ -106.171875, 31.353637 ], [ -105.820312, 31.353637 ], [ -105.820312, 31.052934 ], [ -105.468750, 31.052934 ], [ -105.468750, 30.751278 ], [ -105.117188, 30.751278 ], [ -105.117188, 30.448674 ], [ -104.765625, 30.448674 ], [ -104.765625, 29.535230 ], [ -104.062500, 29.535230 ], [ -104.062500, 29.228890 ], [ -103.007812, 29.228890 ], [ -103.007812, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 29.840644 ], [ -101.953125, 29.840644 ], [ -101.953125, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 28.613459 ], [ -100.195312, 28.613459 ], [ -100.195312, 27.994401 ], [ -99.843750, 27.994401 ], [ -99.843750, 27.371767 ], [ -99.492188, 27.371767 ], [ -99.492188, 26.745610 ], [ -99.140625, 26.745610 ], [ -99.140625, 26.115986 ], [ -97.382812, 26.115986 ], [ -97.382812, 25.482951 ], [ -97.734375, 25.482951 ], [ -97.734375, 23.885838 ], [ -98.085938, 23.885838 ], [ -98.085938, 22.268764 ], [ -97.734375, 22.268764 ], [ -97.734375, 21.289374 ], [ -97.382812, 21.289374 ], [ -97.382812, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 19.973349 ], [ -96.679688, 19.973349 ], [ -96.679688, 19.642588 ], [ -96.328125, 19.642588 ], [ -96.328125, 19.311143 ], [ -95.976562, 19.311143 ], [ -95.976562, 18.979026 ], [ -95.625000, 18.979026 ], [ -95.625000, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 18.312811 ], [ -93.867188, 18.312811 ], [ -93.867188, 18.646245 ], [ -92.109375, 18.646245 ], [ -92.109375, 18.979026 ], [ -91.054688, 18.979026 ], [ -91.054688, 19.642588 ], [ -90.703125, 19.642588 ], [ -90.703125, 20.961440 ], [ -90.351562, 20.961440 ], [ -90.351562, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -88.242188, 21.616579 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.757812, 17.308688 ], [ -91.757812, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -91.757812, 16.299051 ], [ -91.757812, 15.961329 ], [ -92.109375, 15.961329 ], [ -92.109375, 14.944785 ], [ -92.460938, 14.944785 ], [ -92.460938, 14.604847 ], [ -92.812500, 14.604847 ], [ -92.812500, 14.944785 ], [ -93.164062, 14.944785 ], [ -93.164062, 15.284185 ], [ -93.515625, 15.284185 ], [ -93.515625, 15.623037 ], [ -94.218750, 15.623037 ], [ -94.218750, 15.961329 ], [ -94.921875, 15.961329 ], [ -94.921875, 16.299051 ], [ -95.625000, 16.299051 ], [ -95.625000, 15.961329 ], [ -98.085938, 15.961329 ], [ -98.085938, 16.299051 ], [ -98.789062, 16.299051 ], [ -98.789062, 16.636192 ], [ -99.843750, 16.636192 ], [ -99.843750, 16.972741 ], [ -100.546875, 16.972741 ], [ -100.546875, 17.308688 ], [ -101.250000, 17.308688 ], [ -101.250000, 17.644022 ], [ -101.953125, 17.644022 ], [ -101.953125, 17.978733 ], [ -103.359375, 17.978733 ], [ -103.359375, 18.312811 ], [ -103.710938, 18.312811 ], [ -103.710938, 18.646245 ], [ -104.062500, 18.646245 ], [ -104.062500, 18.979026 ], [ -104.414062, 18.979026 ], [ -104.414062, 19.311143 ], [ -105.117188, 19.311143 ], [ -105.117188, 19.642588 ], [ -105.820312, 19.642588 ], [ -105.820312, 20.961440 ], [ -105.468750, 20.961440 ], [ -105.468750, 21.616579 ], [ -105.820312, 21.616579 ], [ -105.820312, 22.593726 ], [ -106.171875, 22.593726 ], [ -106.171875, 22.917923 ], [ -106.523438, 22.917923 ], [ -106.523438, 23.241346 ], [ -106.875000, 23.241346 ], [ -106.875000, 23.563987 ], [ -107.226562, 23.563987 ], [ -107.226562, 23.885838 ], [ -107.578125, 23.885838 ], [ -107.578125, 24.527135 ], [ -107.929688, 24.527135 ], [ -107.929688, 24.846565 ], [ -108.281250, 24.846565 ], [ -108.281250, 25.165173 ], [ -108.632812, 25.165173 ], [ -108.632812, 25.482951 ], [ -109.335938, 25.482951 ], [ -109.335938, 25.799891 ], [ -109.687500, 25.799891 ], [ -109.687500, 26.431228 ], [ -109.335938, 26.431228 ], [ -109.335938, 26.745610 ], [ -110.039062, 26.745610 ], [ -110.039062, 27.059126 ], [ -110.390625, 27.059126 ], [ -110.390625, 27.683528 ], [ -110.742188, 27.683528 ], [ -110.742188, 27.994401 ], [ -111.445312, 27.994401 ], [ -111.445312, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.613459 ], [ -112.148438, 28.613459 ], [ -112.148438, 28.921631 ], [ -112.500000, 28.921631 ], [ -112.500000, 29.840644 ], [ -112.851562, 29.840644 ], [ -112.851562, 30.448674 ], [ -113.203125, 30.448674 ], [ -113.203125, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.653381 ], [ -114.960938, 31.653381 ], [ -114.960938, 30.145127 ], [ -114.609375, 30.145127 ], [ -114.609375, 29.535230 ], [ -114.257812, 29.535230 ], [ -114.257812, 29.228890 ], [ -113.906250, 29.228890 ], [ -113.906250, 28.921631 ], [ -113.554688, 28.921631 ], [ -113.554688, 28.613459 ], [ -113.203125, 28.613459 ], [ -113.203125, 28.304381 ], [ -112.851562, 28.304381 ], [ -112.851562, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.745610 ], [ -111.796875, 26.745610 ], [ -111.796875, 26.115986 ], [ -111.445312, 26.115986 ], [ -111.445312, 25.482951 ], [ -111.093750, 25.482951 ], [ -111.093750, 25.165173 ], [ -110.742188, 25.165173 ], [ -110.742188, 24.527135 ], [ -110.390625, 24.527135 ], [ -110.390625, 24.206890 ], [ -110.039062, 24.206890 ], [ -110.039062, 23.563987 ], [ -109.687500, 23.563987 ], [ -109.687500, 22.917923 ], [ -110.039062, 22.917923 ], [ -110.039062, 23.241346 ], [ -110.390625, 23.241346 ], [ -110.390625, 23.563987 ], [ -110.742188, 23.563987 ], [ -110.742188, 23.885838 ], [ -111.093750, 23.885838 ], [ -111.093750, 24.206890 ], [ -111.796875, 24.206890 ], [ -111.796875, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 25.165173 ], [ -112.148438, 25.165173 ], [ -112.148438, 25.799891 ], [ -112.500000, 25.799891 ], [ -112.500000, 26.115986 ], [ -112.851562, 26.115986 ], [ -112.851562, 26.431228 ], [ -113.203125, 26.431228 ], [ -113.203125, 26.745610 ], [ -113.906250, 26.745610 ], [ -113.906250, 27.059126 ], [ -114.609375, 27.059126 ], [ -114.609375, 27.371767 ], [ -114.960938, 27.371767 ], [ -114.960938, 27.683528 ], [ -115.312500, 27.683528 ], [ -115.312500, 27.994401 ], [ -114.257812, 27.994401 ], [ -114.257812, 28.613459 ], [ -114.609375, 28.613459 ], [ -114.609375, 29.228890 ], [ -114.960938, 29.228890 ], [ -114.960938, 29.535230 ], [ -115.664062, 29.535230 ], [ -115.664062, 30.145127 ], [ -116.015625, 30.145127 ], [ -116.015625, 30.751278 ], [ -116.367188, 30.751278 ], [ -116.367188, 31.052934 ], [ -116.718750, 31.052934 ], [ -116.718750, 31.353637 ], [ -117.070312, 31.353637 ], [ -117.070312, 31.952162 ], [ -117.421875, 31.952162 ], [ -117.421875, 32.546813 ], [ -116.367188, 32.546813 ], [ -116.367188, 32.842674 ], [ -114.960938, 32.842674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.978733 ], [ -90.000000, 17.644022 ], [ -89.296875, 17.644022 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.284185 ], [ -88.593750, 15.284185 ], [ -88.593750, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.581921 ], [ -90.703125, 13.581921 ], [ -90.703125, 13.923404 ], [ -91.757812, 13.923404 ], [ -91.757812, 14.264383 ], [ -92.109375, 14.264383 ], [ -92.109375, 15.623037 ], [ -91.757812, 15.623037 ], [ -91.757812, 15.961329 ], [ -90.351562, 15.961329 ], [ -90.351562, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.406250, 16.972741 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -90.000000, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 17.978733 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.961329 ], [ -88.242188, 15.623037 ], [ -88.945312, 15.623037 ], [ -88.945312, 15.284185 ], [ -89.296875, 15.284185 ], [ -89.296875, 14.604847 ], [ -89.648438, 14.604847 ], [ -89.648438, 14.264383 ], [ -90.000000, 14.264383 ], [ -90.000000, 13.923404 ], [ -91.406250, 13.923404 ], [ -91.406250, 14.264383 ], [ -92.460938, 14.264383 ], [ -92.460938, 14.944785 ], [ -92.109375, 14.944785 ], [ -92.109375, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.757812, 16.972741 ], [ -91.757812, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -89.296875, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 16.299051 ], [ -88.593750, 16.299051 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 16.972741 ], [ -88.593750, 16.972741 ], [ -88.593750, 16.299051 ], [ -88.945312, 16.299051 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 14.604847 ], [ -89.296875, 14.264383 ], [ -88.593750, 14.264383 ], [ -88.593750, 13.923404 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.239945 ], [ -88.945312, 13.239945 ], [ -88.945312, 13.581921 ], [ -90.351562, 13.581921 ], [ -90.351562, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.604847 ], [ -89.296875, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 15.284185 ], [ -88.242188, 13.923404 ], [ -88.945312, 13.923404 ], [ -88.945312, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.944785 ], [ -88.593750, 14.944785 ], [ -88.593750, 15.284185 ], [ -88.242188, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 15.623037 ], [ -88.242188, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 15.284185 ], [ -88.945312, 15.284185 ], [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.757812, 63.704722 ], [ -181.406250, 63.704722 ], [ -181.406250, 63.391522 ], [ -181.054688, 63.391522 ], [ -181.054688, 63.074866 ], [ -180.703125, 63.074866 ], [ -180.703125, 62.754726 ], [ -180.351562, 62.754726 ], [ -180.351562, 62.431074 ], [ -180.703125, 62.431074 ], [ -180.703125, 62.267923 ], [ -181.406250, 62.267923 ], [ -181.406250, 62.431074 ], [ -181.757812, 62.431074 ], [ -181.757812, 63.704722 ] ] ], [ [ [ -180.000000, 67.204032 ], [ -175.078125, 67.204032 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -169.804688, 65.946472 ], [ -169.804688, 65.802776 ], [ -170.156250, 65.802776 ], [ -170.156250, 65.658275 ], [ -170.507812, 65.658275 ], [ -170.507812, 65.512963 ], [ -171.562500, 65.512963 ], [ -171.562500, 65.366837 ], [ -172.617188, 65.366837 ], [ -172.617188, 64.320872 ], [ -174.375000, 64.320872 ], [ -174.375000, 64.472794 ], [ -174.726562, 64.472794 ], [ -174.726562, 64.623877 ], [ -175.429688, 64.623877 ], [ -175.429688, 64.774125 ], [ -176.132812, 64.774125 ], [ -176.132812, 65.366837 ], [ -176.835938, 65.366837 ], [ -176.835938, 65.512963 ], [ -177.539062, 65.512963 ], [ -177.539062, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.658275 ], [ -178.945312, 65.658275 ], [ -178.945312, 65.946472 ], [ -179.296875, 65.946472 ], [ -179.296875, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 65.658275 ], [ -179.648438, 65.658275 ], [ -179.648438, 65.366837 ], [ -179.296875, 65.366837 ], [ -179.296875, 65.219894 ], [ -179.648438, 65.219894 ], [ -179.648438, 64.923542 ], [ -180.000000, 64.923542 ], [ -180.000000, 64.774125 ], [ -180.351562, 64.774125 ], [ -180.351562, 64.623877 ], [ -181.054688, 64.623877 ], [ -181.054688, 64.472794 ], [ -181.757812, 64.472794 ], [ -181.757812, 67.204032 ], [ -180.000000, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.757812, 63.704722 ], [ -181.406250, 63.704722 ], [ -181.406250, 63.233627 ], [ -181.054688, 63.233627 ], [ -181.054688, 63.074866 ], [ -180.703125, 63.074866 ], [ -180.703125, 62.431074 ], [ -181.757812, 62.431074 ], [ -181.757812, 63.704722 ] ] ], [ [ [ -180.000000, 67.204032 ], [ -175.078125, 67.204032 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -170.507812, 65.946472 ], [ -170.507812, 65.802776 ], [ -170.859375, 65.802776 ], [ -170.859375, 65.658275 ], [ -171.562500, 65.658275 ], [ -171.562500, 65.512963 ], [ -172.617188, 65.512963 ], [ -172.617188, 64.320872 ], [ -174.375000, 64.320872 ], [ -174.375000, 64.623877 ], [ -174.726562, 64.623877 ], [ -174.726562, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 64.923542 ], [ -176.132812, 64.923542 ], [ -176.132812, 65.072130 ], [ -176.484375, 65.072130 ], [ -176.484375, 65.366837 ], [ -176.835938, 65.366837 ], [ -176.835938, 65.512963 ], [ -177.539062, 65.512963 ], [ -177.539062, 65.658275 ], [ -177.890625, 65.658275 ], [ -177.890625, 65.512963 ], [ -178.593750, 65.512963 ], [ -178.593750, 65.658275 ], [ -178.945312, 65.658275 ], [ -178.945312, 66.089364 ], [ -179.648438, 66.089364 ], [ -179.648438, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.658275 ], [ -179.648438, 65.658275 ], [ -179.648438, 65.219894 ], [ -180.000000, 65.219894 ], [ -180.000000, 65.072130 ], [ -180.351562, 65.072130 ], [ -180.351562, 64.923542 ], [ -180.703125, 64.923542 ], [ -180.703125, 64.774125 ], [ -181.054688, 64.774125 ], [ -181.054688, 64.623877 ], [ -181.757812, 64.623877 ], [ -181.757812, 67.204032 ], [ -180.000000, 67.204032 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.570312, 71.856229 ], [ -94.570312, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.635993 ], [ -93.515625, 71.635993 ], [ -93.515625, 71.524909 ], [ -93.164062, 71.524909 ], [ -93.164062, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 71.074056 ], [ -92.460938, 71.074056 ], [ -92.460938, 70.844673 ], [ -92.109375, 70.844673 ], [ -92.109375, 70.495574 ], [ -91.757812, 70.495574 ], [ -91.757812, 70.259452 ], [ -91.406250, 70.259452 ], [ -91.406250, 70.020587 ], [ -91.757812, 70.020587 ], [ -91.757812, 69.900118 ], [ -92.109375, 69.900118 ], [ -92.109375, 69.657086 ], [ -91.757812, 69.657086 ], [ -91.757812, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 69.037142 ], [ -88.593750, 69.037142 ], [ -88.593750, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 65.802776 ], [ -140.976562, 65.802776 ], [ -140.976562, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 69.534518 ], [ -139.921875, 69.534518 ], [ -139.921875, 69.411242 ], [ -139.218750, 69.411242 ], [ -139.218750, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.162558 ], [ -137.812500, 69.162558 ], [ -137.812500, 69.037142 ], [ -137.109375, 69.037142 ], [ -137.109375, 68.911005 ], [ -136.054688, 68.911005 ], [ -136.054688, 69.162558 ], [ -135.703125, 69.162558 ], [ -135.703125, 69.287257 ], [ -135.351562, 69.287257 ], [ -135.351562, 69.411242 ], [ -134.648438, 69.411242 ], [ -134.648438, 69.534518 ], [ -134.296875, 69.534518 ], [ -134.296875, 69.657086 ], [ -133.945312, 69.657086 ], [ -133.945312, 69.534518 ], [ -132.539062, 69.534518 ], [ -132.539062, 69.657086 ], [ -131.835938, 69.657086 ], [ -131.835938, 69.778952 ], [ -131.484375, 69.778952 ], [ -131.484375, 69.900118 ], [ -130.781250, 69.900118 ], [ -130.781250, 70.020587 ], [ -130.078125, 70.020587 ], [ -130.078125, 70.140364 ], [ -129.726562, 70.140364 ], [ -129.726562, 70.020587 ], [ -129.375000, 70.020587 ], [ -129.375000, 69.778952 ], [ -128.671875, 69.778952 ], [ -128.671875, 69.900118 ], [ -128.320312, 69.900118 ], [ -128.320312, 70.259452 ], [ -127.968750, 70.259452 ], [ -127.968750, 70.377854 ], [ -127.617188, 70.377854 ], [ -127.617188, 70.259452 ], [ -127.265625, 70.259452 ], [ -127.265625, 70.020587 ], [ -126.914062, 70.020587 ], [ -126.914062, 69.900118 ], [ -126.562500, 69.900118 ], [ -126.562500, 69.778952 ], [ -126.210938, 69.778952 ], [ -126.210938, 69.534518 ], [ -125.507812, 69.534518 ], [ -125.507812, 69.657086 ], [ -125.156250, 69.657086 ], [ -125.156250, 69.900118 ], [ -124.804688, 69.900118 ], [ -124.804688, 70.020587 ], [ -124.453125, 70.020587 ], [ -124.453125, 69.411242 ], [ -123.398438, 69.411242 ], [ -123.398438, 69.534518 ], [ -123.046875, 69.534518 ], [ -123.046875, 69.657086 ], [ -122.695312, 69.657086 ], [ -122.695312, 69.900118 ], [ -122.343750, 69.900118 ], [ -122.343750, 69.778952 ], [ -121.640625, 69.778952 ], [ -121.640625, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.534518 ], [ -120.234375, 69.534518 ], [ -120.234375, 69.411242 ], [ -119.882812, 69.411242 ], [ -119.882812, 69.287257 ], [ -119.179688, 69.287257 ], [ -119.179688, 69.162558 ], [ -118.476562, 69.162558 ], [ -118.476562, 69.037142 ], [ -117.773438, 69.037142 ], [ -117.773438, 68.911005 ], [ -117.070312, 68.911005 ], [ -117.070312, 68.784144 ], [ -115.664062, 68.784144 ], [ -115.664062, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 68.007571 ], [ -114.960938, 68.007571 ], [ -114.960938, 67.875541 ], [ -114.609375, 67.875541 ], [ -114.609375, 67.742759 ], [ -110.390625, 67.742759 ], [ -110.390625, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.609221 ], [ -109.335938, 67.609221 ], [ -109.335938, 67.339861 ], [ -108.632812, 67.339861 ], [ -108.632812, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 67.742759 ], [ -107.929688, 67.742759 ], [ -107.929688, 67.875541 ], [ -108.281250, 67.875541 ], [ -108.281250, 68.007571 ], [ -108.632812, 68.007571 ], [ -108.632812, 68.138852 ], [ -108.984375, 68.138852 ], [ -108.984375, 68.269387 ], [ -108.632812, 68.269387 ], [ -108.632812, 68.528235 ], [ -108.281250, 68.528235 ], [ -108.281250, 68.656555 ], [ -105.820312, 68.656555 ], [ -105.820312, 68.528235 ], [ -105.468750, 68.528235 ], [ -105.468750, 68.399180 ], [ -105.117188, 68.399180 ], [ -105.117188, 68.269387 ], [ -104.765625, 68.269387 ], [ -104.765625, 68.007571 ], [ -103.710938, 68.007571 ], [ -103.710938, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 68.007571 ], [ -103.007812, 68.007571 ], [ -103.007812, 67.875541 ], [ -102.304688, 67.875541 ], [ -102.304688, 67.742759 ], [ -101.953125, 67.742759 ], [ -101.953125, 67.609221 ], [ -100.546875, 67.609221 ], [ -100.546875, 67.742759 ], [ -98.437500, 67.742759 ], [ -98.437500, 68.399180 ], [ -97.734375, 68.399180 ], [ -97.734375, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.269387 ], [ -95.976562, 68.269387 ], [ -95.976562, 67.742759 ], [ -95.625000, 67.742759 ], [ -95.625000, 68.138852 ], [ -95.273438, 68.138852 ], [ -95.273438, 68.007571 ], [ -94.570312, 68.007571 ], [ -94.570312, 68.528235 ], [ -94.218750, 68.528235 ], [ -94.218750, 69.037142 ], [ -94.570312, 69.037142 ], [ -94.570312, 69.287257 ], [ -94.921875, 69.287257 ], [ -94.921875, 69.534518 ], [ -95.273438, 69.534518 ], [ -95.273438, 69.657086 ], [ -95.625000, 69.657086 ], [ -95.625000, 69.900118 ], [ -95.976562, 69.900118 ], [ -95.976562, 70.020587 ], [ -96.328125, 70.020587 ], [ -96.328125, 71.300793 ], [ -95.976562, 71.300793 ], [ -95.976562, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 71.746432 ], [ -95.273438, 71.746432 ], [ -95.273438, 71.856229 ], [ -94.570312, 71.856229 ] ] ], [ [ [ -88.242188, 73.428424 ], [ -88.242188, 70.377854 ], [ -88.945312, 70.377854 ], [ -88.945312, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.612614 ], [ -89.648438, 70.612614 ], [ -89.648438, 70.728979 ], [ -89.296875, 70.728979 ], [ -89.296875, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.187754 ], [ -90.000000, 71.187754 ], [ -90.000000, 71.635993 ], [ -90.351562, 71.635993 ], [ -90.351562, 72.289067 ], [ -90.000000, 72.289067 ], [ -90.000000, 72.607120 ], [ -89.648438, 72.607120 ], [ -89.648438, 72.919635 ], [ -89.296875, 72.919635 ], [ -89.296875, 73.124945 ], [ -88.945312, 73.124945 ], [ -88.945312, 73.327858 ], [ -88.593750, 73.327858 ], [ -88.593750, 73.428424 ], [ -88.242188, 73.428424 ] ] ], [ [ [ -106.523438, 73.124945 ], [ -106.523438, 73.327858 ], [ -106.875000, 73.327858 ], [ -106.875000, 73.528399 ], [ -106.523438, 73.528399 ], [ -106.523438, 73.627789 ], [ -105.117188, 73.627789 ], [ -105.117188, 73.528399 ], [ -104.765625, 73.528399 ], [ -104.765625, 73.428424 ], [ -104.414062, 73.428424 ], [ -104.414062, 73.226700 ], [ -104.765625, 73.226700 ], [ -104.765625, 73.022592 ], [ -105.117188, 73.022592 ], [ -105.117188, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 72.711903 ], [ -105.468750, 72.395706 ], [ -105.117188, 72.395706 ], [ -105.117188, 71.965388 ], [ -104.765625, 71.965388 ], [ -104.765625, 71.300793 ], [ -104.414062, 71.300793 ], [ -104.414062, 70.844673 ], [ -104.062500, 70.844673 ], [ -104.062500, 70.728979 ], [ -103.359375, 70.728979 ], [ -103.359375, 70.612614 ], [ -103.007812, 70.612614 ], [ -103.007812, 70.495574 ], [ -102.656250, 70.495574 ], [ -102.656250, 70.377854 ], [ -102.304688, 70.377854 ], [ -102.304688, 70.259452 ], [ -101.601562, 70.259452 ], [ -101.601562, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 70.020587 ], [ -100.898438, 70.020587 ], [ -100.898438, 69.778952 ], [ -101.250000, 69.778952 ], [ -101.250000, 69.534518 ], [ -102.656250, 69.534518 ], [ -102.656250, 69.411242 ], [ -102.304688, 69.411242 ], [ -102.304688, 69.162558 ], [ -101.953125, 69.162558 ], [ -101.953125, 68.911005 ], [ -102.304688, 68.911005 ], [ -102.304688, 68.784144 ], [ -103.710938, 68.784144 ], [ -103.710938, 68.911005 ], [ -105.117188, 68.911005 ], [ -105.117188, 69.037142 ], [ -105.820312, 69.037142 ], [ -105.820312, 69.162558 ], [ -107.226562, 69.162558 ], [ -107.226562, 69.037142 ], [ -107.929688, 69.037142 ], [ -107.929688, 68.911005 ], [ -108.632812, 68.911005 ], [ -108.632812, 68.784144 ], [ -110.039062, 68.784144 ], [ -110.039062, 68.656555 ], [ -112.148438, 68.656555 ], [ -112.148438, 68.528235 ], [ -113.203125, 68.528235 ], [ -113.203125, 68.656555 ], [ -113.554688, 68.656555 ], [ -113.554688, 68.911005 ], [ -113.906250, 68.911005 ], [ -113.906250, 69.037142 ], [ -114.609375, 69.037142 ], [ -114.609375, 69.162558 ], [ -116.367188, 69.162558 ], [ -116.367188, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.534518 ], [ -117.070312, 69.534518 ], [ -117.070312, 69.778952 ], [ -117.421875, 69.778952 ], [ -117.421875, 69.900118 ], [ -116.718750, 69.900118 ], [ -116.718750, 70.020587 ], [ -116.015625, 70.020587 ], [ -116.015625, 70.140364 ], [ -115.312500, 70.140364 ], [ -115.312500, 70.259452 ], [ -114.609375, 70.259452 ], [ -114.609375, 70.140364 ], [ -113.203125, 70.140364 ], [ -113.203125, 70.259452 ], [ -112.500000, 70.259452 ], [ -112.500000, 70.377854 ], [ -113.203125, 70.377854 ], [ -113.203125, 70.495574 ], [ -113.906250, 70.495574 ], [ -113.906250, 70.612614 ], [ -114.960938, 70.612614 ], [ -114.960938, 70.495574 ], [ -117.773438, 70.495574 ], [ -117.773438, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.844673 ], [ -118.476562, 70.844673 ], [ -118.476562, 70.959697 ], [ -117.773438, 70.959697 ], [ -117.773438, 71.074056 ], [ -117.070312, 71.074056 ], [ -117.070312, 71.187754 ], [ -116.367188, 71.187754 ], [ -116.367188, 71.300793 ], [ -118.476562, 71.300793 ], [ -118.476562, 71.413177 ], [ -119.179688, 71.413177 ], [ -119.179688, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.635993 ], [ -119.179688, 71.635993 ], [ -119.179688, 71.856229 ], [ -118.828125, 71.856229 ], [ -118.828125, 72.073911 ], [ -118.476562, 72.073911 ], [ -118.476562, 72.395706 ], [ -118.125000, 72.395706 ], [ -118.125000, 72.607120 ], [ -117.773438, 72.607120 ], [ -117.773438, 72.711903 ], [ -117.421875, 72.711903 ], [ -117.421875, 72.816074 ], [ -117.070312, 72.816074 ], [ -117.070312, 72.919635 ], [ -116.718750, 72.919635 ], [ -116.718750, 73.022592 ], [ -116.015625, 73.022592 ], [ -116.015625, 73.124945 ], [ -115.664062, 73.124945 ], [ -115.664062, 73.226700 ], [ -114.609375, 73.226700 ], [ -114.609375, 73.124945 ], [ -114.257812, 73.124945 ], [ -114.257812, 72.816074 ], [ -114.609375, 72.816074 ], [ -114.609375, 72.607120 ], [ -113.906250, 72.607120 ], [ -113.906250, 72.711903 ], [ -113.203125, 72.711903 ], [ -113.203125, 72.816074 ], [ -112.148438, 72.816074 ], [ -112.148438, 72.711903 ], [ -111.796875, 72.711903 ], [ -111.796875, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.501722 ], [ -110.742188, 72.501722 ], [ -110.742188, 72.711903 ], [ -110.390625, 72.711903 ], [ -110.390625, 72.816074 ], [ -109.687500, 72.816074 ], [ -109.687500, 72.711903 ], [ -109.335938, 72.711903 ], [ -109.335938, 72.607120 ], [ -108.984375, 72.607120 ], [ -108.984375, 72.289067 ], [ -108.632812, 72.289067 ], [ -108.632812, 71.856229 ], [ -108.281250, 71.856229 ], [ -108.281250, 71.746432 ], [ -107.929688, 71.746432 ], [ -107.929688, 71.965388 ], [ -107.578125, 71.965388 ], [ -107.578125, 72.289067 ], [ -107.929688, 72.289067 ], [ -107.929688, 72.816074 ], [ -108.281250, 72.816074 ], [ -108.281250, 73.124945 ], [ -107.578125, 73.124945 ], [ -107.578125, 73.226700 ], [ -107.226562, 73.226700 ], [ -107.226562, 73.124945 ], [ -106.523438, 73.124945 ] ], [ [ -106.523438, 73.124945 ], [ -106.523438, 73.022592 ], [ -106.171875, 73.022592 ], [ -106.171875, 73.124945 ], [ -106.523438, 73.124945 ] ] ], [ [ [ -97.382812, 70.020587 ], [ -97.382812, 69.900118 ], [ -97.031250, 69.900118 ], [ -97.031250, 69.778952 ], [ -96.679688, 69.778952 ], [ -96.679688, 69.534518 ], [ -96.328125, 69.534518 ], [ -96.328125, 69.411242 ], [ -95.976562, 69.411242 ], [ -95.976562, 69.162558 ], [ -95.625000, 69.162558 ], [ -95.625000, 69.037142 ], [ -95.976562, 69.037142 ], [ -95.976562, 68.784144 ], [ -97.031250, 68.784144 ], [ -97.031250, 68.911005 ], [ -98.789062, 68.911005 ], [ -98.789062, 69.037142 ], [ -99.140625, 69.037142 ], [ -99.140625, 69.162558 ], [ -99.492188, 69.162558 ], [ -99.492188, 69.287257 ], [ -99.843750, 69.287257 ], [ -99.843750, 69.411242 ], [ -99.492188, 69.411242 ], [ -99.492188, 69.534518 ], [ -98.789062, 69.534518 ], [ -98.789062, 69.778952 ], [ -98.437500, 69.778952 ], [ -98.437500, 70.020587 ], [ -97.382812, 70.020587 ] ] ], [ [ [ -88.242188, 80.356995 ], [ -88.242188, 78.490552 ], [ -88.593750, 78.490552 ], [ -88.593750, 78.349411 ], [ -88.945312, 78.349411 ], [ -88.945312, 78.278201 ], [ -89.648438, 78.278201 ], [ -89.648438, 78.206563 ], [ -91.406250, 78.206563 ], [ -91.406250, 78.278201 ], [ -92.460938, 78.278201 ], [ -92.460938, 78.349411 ], [ -92.812500, 78.349411 ], [ -92.812500, 78.420193 ], [ -93.164062, 78.420193 ], [ -93.164062, 78.560488 ], [ -93.515625, 78.560488 ], [ -93.515625, 78.699106 ], [ -93.867188, 78.699106 ], [ -93.867188, 79.171335 ], [ -93.515625, 79.171335 ], [ -93.515625, 79.302640 ], [ -93.164062, 79.302640 ], [ -93.164062, 79.367701 ], [ -95.273438, 79.367701 ], [ -95.273438, 79.496652 ], [ -95.625000, 79.496652 ], [ -95.625000, 79.624056 ], [ -95.976562, 79.624056 ], [ -95.976562, 79.812302 ], [ -96.328125, 79.812302 ], [ -96.328125, 80.058050 ], [ -96.679688, 80.058050 ], [ -96.679688, 80.238501 ], [ -96.328125, 80.238501 ], [ -96.328125, 80.474065 ], [ -95.976562, 80.474065 ], [ -95.976562, 80.647035 ], [ -95.625000, 80.647035 ], [ -95.625000, 80.816891 ], [ -95.273438, 80.816891 ], [ -95.273438, 80.928426 ], [ -94.570312, 80.928426 ], [ -94.570312, 80.983688 ], [ -94.218750, 80.983688 ], [ -94.218750, 81.093214 ], [ -94.570312, 81.093214 ], [ -94.570312, 81.201420 ], [ -93.164062, 81.201420 ], [ -93.164062, 81.255032 ], [ -92.460938, 81.255032 ], [ -92.460938, 81.147481 ], [ -92.109375, 81.147481 ], [ -92.109375, 81.038617 ], [ -91.757812, 81.038617 ], [ -91.757812, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ], [ -89.648438, 80.589727 ], [ -89.648438, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.356995 ], [ -88.242188, 80.356995 ] ] ], [ [ [ -121.640625, 74.402163 ], [ -121.640625, 74.307353 ], [ -120.937500, 74.307353 ], [ -120.937500, 74.211983 ], [ -117.421875, 74.211983 ], [ -117.421875, 74.116047 ], [ -117.070312, 74.116047 ], [ -117.070312, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.824820 ], [ -116.367188, 73.824820 ], [ -116.367188, 73.627789 ], [ -116.015625, 73.627789 ], [ -116.015625, 73.428424 ], [ -115.664062, 73.428424 ], [ -115.664062, 73.327858 ], [ -116.367188, 73.327858 ], [ -116.367188, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.124945 ], [ -117.070312, 73.124945 ], [ -117.070312, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.919635 ], [ -117.773438, 72.919635 ], [ -117.773438, 72.816074 ], [ -118.125000, 72.816074 ], [ -118.125000, 72.711903 ], [ -118.476562, 72.711903 ], [ -118.476562, 72.607120 ], [ -118.828125, 72.607120 ], [ -118.828125, 72.501722 ], [ -119.179688, 72.501722 ], [ -119.179688, 72.395706 ], [ -119.531250, 72.395706 ], [ -119.531250, 72.181804 ], [ -119.882812, 72.181804 ], [ -119.882812, 72.073911 ], [ -120.234375, 72.073911 ], [ -120.234375, 71.856229 ], [ -120.585938, 71.856229 ], [ -120.585938, 71.300793 ], [ -121.289062, 71.300793 ], [ -121.289062, 71.187754 ], [ -121.640625, 71.187754 ], [ -121.640625, 71.074056 ], [ -121.992188, 71.074056 ], [ -121.992188, 70.959697 ], [ -122.695312, 70.959697 ], [ -122.695312, 70.844673 ], [ -123.046875, 70.844673 ], [ -123.046875, 70.959697 ], [ -123.398438, 70.959697 ], [ -123.398438, 71.187754 ], [ -123.750000, 71.187754 ], [ -123.750000, 71.300793 ], [ -124.101562, 71.300793 ], [ -124.101562, 71.413177 ], [ -124.453125, 71.413177 ], [ -124.453125, 71.524909 ], [ -125.156250, 71.524909 ], [ -125.156250, 71.635993 ], [ -125.507812, 71.635993 ], [ -125.507812, 71.746432 ], [ -125.859375, 71.746432 ], [ -125.859375, 72.073911 ], [ -125.507812, 72.073911 ], [ -125.507812, 72.395706 ], [ -125.156250, 72.395706 ], [ -125.156250, 72.816074 ], [ -124.804688, 72.816074 ], [ -124.804688, 73.124945 ], [ -124.453125, 73.124945 ], [ -124.453125, 73.528399 ], [ -124.101562, 73.528399 ], [ -124.101562, 73.824820 ], [ -124.453125, 73.824820 ], [ -124.453125, 74.116047 ], [ -124.804688, 74.116047 ], [ -124.804688, 74.307353 ], [ -123.046875, 74.307353 ], [ -123.046875, 74.402163 ], [ -121.640625, 74.402163 ] ] ], [ [ [ -97.382812, 73.726595 ], [ -97.382812, 73.528399 ], [ -97.031250, 73.528399 ], [ -97.031250, 73.327858 ], [ -97.382812, 73.327858 ], [ -97.382812, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 73.022592 ], [ -98.085938, 73.022592 ], [ -98.085938, 72.919635 ], [ -97.734375, 72.919635 ], [ -97.734375, 72.816074 ], [ -97.382812, 72.816074 ], [ -97.382812, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 71.524909 ], [ -97.382812, 71.524909 ], [ -97.382812, 71.413177 ], [ -98.085938, 71.413177 ], [ -98.085938, 71.300793 ], [ -99.492188, 71.300793 ], [ -99.492188, 71.524909 ], [ -99.843750, 71.524909 ], [ -99.843750, 71.746432 ], [ -100.195312, 71.746432 ], [ -100.195312, 71.856229 ], [ -100.546875, 71.856229 ], [ -100.546875, 71.965388 ], [ -100.898438, 71.965388 ], [ -100.898438, 72.073911 ], [ -101.601562, 72.073911 ], [ -101.601562, 72.181804 ], [ -101.953125, 72.181804 ], [ -101.953125, 72.289067 ], [ -102.304688, 72.289067 ], [ -102.304688, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 72.607120 ], [ -102.304688, 72.607120 ], [ -102.304688, 72.816074 ], [ -101.601562, 72.816074 ], [ -101.601562, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.816074 ], [ -100.898438, 72.816074 ], [ -100.898438, 73.022592 ], [ -101.250000, 73.022592 ], [ -101.250000, 73.226700 ], [ -101.601562, 73.226700 ], [ -101.601562, 73.327858 ], [ -101.250000, 73.327858 ], [ -101.250000, 73.428424 ], [ -100.898438, 73.428424 ], [ -100.898438, 73.627789 ], [ -100.546875, 73.627789 ], [ -100.546875, 73.726595 ], [ -99.492188, 73.726595 ], [ -99.492188, 73.627789 ], [ -98.085938, 73.627789 ], [ -98.085938, 73.726595 ], [ -97.382812, 73.726595 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -92.460938, 74.019543 ], [ -91.757812, 74.019543 ], [ -91.757812, 73.922469 ], [ -91.054688, 73.922469 ], [ -91.054688, 73.824820 ], [ -90.351562, 73.824820 ], [ -90.351562, 73.726595 ], [ -90.703125, 73.726595 ], [ -90.703125, 73.528399 ], [ -91.054688, 73.528399 ], [ -91.054688, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 72.919635 ], [ -92.460938, 72.919635 ], [ -92.460938, 72.816074 ], [ -93.164062, 72.816074 ], [ -93.164062, 72.607120 ], [ -93.515625, 72.607120 ], [ -93.515625, 72.395706 ], [ -93.867188, 72.395706 ], [ -93.867188, 72.181804 ], [ -94.218750, 72.181804 ], [ -94.218750, 72.073911 ], [ -95.273438, 72.073911 ], [ -95.273438, 72.289067 ], [ -95.625000, 72.289067 ], [ -95.625000, 72.711903 ], [ -95.976562, 72.711903 ], [ -95.976562, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.824820 ], [ -95.273438, 73.824820 ], [ -95.273438, 73.922469 ], [ -94.921875, 73.922469 ], [ -94.921875, 74.019543 ], [ -94.570312, 74.019543 ], [ -94.570312, 74.116047 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -109.335938, 76.760541 ], [ -109.335938, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.434604 ], [ -108.281250, 76.434604 ], [ -108.281250, 76.016094 ], [ -107.929688, 76.016094 ], [ -107.929688, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 75.930885 ], [ -106.875000, 75.930885 ], [ -106.875000, 76.016094 ], [ -106.523438, 76.016094 ], [ -106.523438, 75.930885 ], [ -105.820312, 75.930885 ], [ -105.820312, 75.230667 ], [ -106.171875, 75.230667 ], [ -106.171875, 75.050354 ], [ -106.875000, 75.050354 ], [ -106.875000, 74.959392 ], [ -108.632812, 74.959392 ], [ -108.632812, 74.867889 ], [ -109.687500, 74.867889 ], [ -109.687500, 74.775843 ], [ -110.390625, 74.775843 ], [ -110.390625, 74.683250 ], [ -110.742188, 74.683250 ], [ -110.742188, 74.590108 ], [ -111.093750, 74.590108 ], [ -111.093750, 74.496413 ], [ -111.796875, 74.496413 ], [ -111.796875, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.683250 ], [ -113.554688, 74.683250 ], [ -113.554688, 74.775843 ], [ -113.203125, 74.775843 ], [ -113.203125, 74.867889 ], [ -112.500000, 74.867889 ], [ -112.500000, 74.959392 ], [ -112.148438, 74.959392 ], [ -112.148438, 75.050354 ], [ -111.796875, 75.050354 ], [ -111.796875, 75.140778 ], [ -113.906250, 75.140778 ], [ -113.906250, 75.050354 ], [ -117.070312, 75.050354 ], [ -117.070312, 75.140778 ], [ -117.773438, 75.140778 ], [ -117.773438, 75.320025 ], [ -117.421875, 75.320025 ], [ -117.421875, 75.584937 ], [ -117.070312, 75.584937 ], [ -117.070312, 75.758940 ], [ -116.718750, 75.758940 ], [ -116.718750, 76.016094 ], [ -116.367188, 76.016094 ], [ -116.367188, 76.184995 ], [ -116.015625, 76.184995 ], [ -116.015625, 76.351896 ], [ -115.664062, 76.351896 ], [ -115.664062, 76.434604 ], [ -114.609375, 76.434604 ], [ -114.609375, 76.351896 ], [ -114.257812, 76.351896 ], [ -114.257812, 76.268695 ], [ -113.554688, 76.268695 ], [ -113.554688, 76.184995 ], [ -112.851562, 76.184995 ], [ -112.851562, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 76.016094 ], [ -112.148438, 76.016094 ], [ -112.148438, 75.930885 ], [ -111.796875, 75.930885 ], [ -111.796875, 75.845169 ], [ -111.445312, 75.845169 ], [ -111.445312, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.584937 ], [ -110.039062, 75.584937 ], [ -110.039062, 75.497157 ], [ -108.984375, 75.497157 ], [ -108.984375, 75.584937 ], [ -109.335938, 75.584937 ], [ -109.335938, 75.845169 ], [ -109.687500, 75.845169 ], [ -109.687500, 76.016094 ], [ -110.039062, 76.016094 ], [ -110.039062, 76.268695 ], [ -110.390625, 76.268695 ], [ -110.390625, 76.516819 ], [ -110.039062, 76.516819 ], [ -110.039062, 76.679785 ], [ -109.687500, 76.679785 ], [ -109.687500, 76.760541 ], [ -109.335938, 76.760541 ] ] ], [ [ [ -95.976562, 77.157163 ], [ -95.976562, 77.078784 ], [ -94.570312, 77.078784 ], [ -94.570312, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.920614 ], [ -93.867188, 76.920614 ], [ -93.867188, 76.760541 ], [ -91.757812, 76.760541 ], [ -91.757812, 76.679785 ], [ -91.406250, 76.679785 ], [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.268695 ], [ -91.054688, 76.268695 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.584937 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.496413 ], [ -90.351562, 74.496413 ], [ -90.351562, 74.590108 ], [ -91.054688, 74.590108 ], [ -91.054688, 74.683250 ], [ -91.757812, 74.683250 ], [ -91.757812, 74.775843 ], [ -92.460938, 74.775843 ], [ -92.460938, 75.140778 ], [ -92.812500, 75.140778 ], [ -92.812500, 75.930885 ], [ -93.164062, 75.930885 ], [ -93.164062, 76.100796 ], [ -93.515625, 76.100796 ], [ -93.515625, 76.268695 ], [ -93.867188, 76.268695 ], [ -93.867188, 76.351896 ], [ -95.273438, 76.351896 ], [ -95.273438, 76.434604 ], [ -96.328125, 76.434604 ], [ -96.328125, 76.598545 ], [ -96.679688, 76.598545 ], [ -96.679688, 76.679785 ], [ -97.031250, 76.679785 ], [ -97.031250, 76.920614 ], [ -96.679688, 76.920614 ], [ -96.679688, 77.157163 ], [ -95.976562, 77.157163 ] ] ], [ [ [ -94.570312, 75.584937 ], [ -94.570312, 75.497157 ], [ -94.218750, 75.497157 ], [ -94.218750, 75.320025 ], [ -93.867188, 75.320025 ], [ -93.867188, 75.140778 ], [ -93.515625, 75.140778 ], [ -93.515625, 74.867889 ], [ -93.867188, 74.867889 ], [ -93.867188, 74.683250 ], [ -94.218750, 74.683250 ], [ -94.218750, 74.590108 ], [ -95.273438, 74.590108 ], [ -95.273438, 74.683250 ], [ -95.976562, 74.683250 ], [ -95.976562, 74.775843 ], [ -96.328125, 74.775843 ], [ -96.328125, 74.867889 ], [ -96.679688, 74.867889 ], [ -96.679688, 75.140778 ], [ -96.328125, 75.140778 ], [ -96.328125, 75.408854 ], [ -95.976562, 75.408854 ], [ -95.976562, 75.497157 ], [ -95.273438, 75.497157 ], [ -95.273438, 75.584937 ], [ -94.570312, 75.584937 ] ] ], [ [ [ -99.492188, 76.679785 ], [ -99.492188, 76.598545 ], [ -98.437500, 76.598545 ], [ -98.437500, 76.516819 ], [ -98.085938, 76.516819 ], [ -98.085938, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.320025 ], [ -98.085938, 75.320025 ], [ -98.085938, 74.959392 ], [ -98.789062, 74.959392 ], [ -98.789062, 74.867889 ], [ -100.195312, 74.867889 ], [ -100.195312, 74.959392 ], [ -100.898438, 74.959392 ], [ -100.898438, 75.672197 ], [ -101.601562, 75.672197 ], [ -101.601562, 75.584937 ], [ -102.656250, 75.584937 ], [ -102.656250, 76.351896 ], [ -102.304688, 76.351896 ], [ -102.304688, 76.268695 ], [ -101.250000, 76.268695 ], [ -101.250000, 76.351896 ], [ -100.898438, 76.351896 ], [ -100.898438, 76.434604 ], [ -100.546875, 76.434604 ], [ -100.546875, 76.516819 ], [ -100.195312, 76.516819 ], [ -100.195312, 76.598545 ], [ -99.843750, 76.598545 ], [ -99.843750, 76.679785 ], [ -99.492188, 76.679785 ] ] ], [ [ [ -116.367188, 77.542096 ], [ -116.367188, 76.760541 ], [ -116.718750, 76.760541 ], [ -116.718750, 76.598545 ], [ -117.070312, 76.598545 ], [ -117.070312, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.434604 ], [ -118.476562, 76.434604 ], [ -118.476562, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.268695 ], [ -119.179688, 76.268695 ], [ -119.179688, 76.100796 ], [ -119.531250, 76.100796 ], [ -119.531250, 76.016094 ], [ -120.585938, 76.016094 ], [ -120.585938, 75.930885 ], [ -121.992188, 75.930885 ], [ -121.992188, 76.016094 ], [ -122.695312, 76.016094 ], [ -122.695312, 76.184995 ], [ -122.343750, 76.184995 ], [ -122.343750, 76.351896 ], [ -121.992188, 76.351896 ], [ -121.992188, 76.516819 ], [ -121.640625, 76.516819 ], [ -121.640625, 76.679785 ], [ -121.289062, 76.679785 ], [ -121.289062, 76.840816 ], [ -120.937500, 76.840816 ], [ -120.937500, 76.999935 ], [ -120.585938, 76.999935 ], [ -120.585938, 77.078784 ], [ -120.234375, 77.078784 ], [ -120.234375, 77.235074 ], [ -119.882812, 77.235074 ], [ -119.882812, 77.312520 ], [ -119.531250, 77.312520 ], [ -119.531250, 77.466028 ], [ -119.179688, 77.466028 ], [ -119.179688, 77.542096 ], [ -118.476562, 77.542096 ], [ -118.476562, 77.466028 ], [ -117.070312, 77.466028 ], [ -117.070312, 77.542096 ], [ -116.367188, 77.542096 ] ] ], [ [ [ -88.242188, 80.647035 ], [ -88.593750, 80.647035 ], [ -88.593750, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.928426 ], [ -89.648438, 80.928426 ], [ -89.648438, 81.038617 ], [ -90.000000, 81.038617 ], [ -90.000000, 81.147481 ], [ -90.351562, 81.147481 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.873641 ], [ -91.406250, 81.873641 ], [ -91.406250, 81.923186 ], [ -91.054688, 81.923186 ], [ -91.054688, 81.972431 ], [ -90.351562, 81.972431 ], [ -90.351562, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.070028 ], [ -89.296875, 82.070028 ], [ -89.296875, 82.118384 ], [ -88.242188, 82.118384 ], [ -88.242188, 80.647035 ] ] ], [ [ [ -105.117188, 79.302640 ], [ -105.117188, 79.237185 ], [ -104.062500, 79.237185 ], [ -104.062500, 79.171335 ], [ -103.359375, 79.171335 ], [ -103.359375, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.971386 ], [ -101.953125, 78.971386 ], [ -101.953125, 78.903929 ], [ -101.601562, 78.903929 ], [ -101.601562, 78.836065 ], [ -101.250000, 78.836065 ], [ -101.250000, 78.767792 ], [ -100.898438, 78.767792 ], [ -100.898438, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.420193 ], [ -100.195312, 78.420193 ], [ -100.195312, 78.134493 ], [ -99.843750, 78.134493 ], [ -99.843750, 77.915669 ], [ -100.898438, 77.915669 ], [ -100.898438, 77.989049 ], [ -101.601562, 77.989049 ], [ -101.601562, 78.061989 ], [ -101.953125, 78.061989 ], [ -101.953125, 78.134493 ], [ -102.304688, 78.134493 ], [ -102.304688, 78.206563 ], [ -102.656250, 78.206563 ], [ -102.656250, 78.278201 ], [ -103.007812, 78.278201 ], [ -103.007812, 78.349411 ], [ -104.765625, 78.349411 ], [ -104.765625, 78.490552 ], [ -104.414062, 78.490552 ], [ -104.414062, 78.630006 ], [ -104.062500, 78.630006 ], [ -104.062500, 78.699106 ], [ -104.414062, 78.699106 ], [ -104.414062, 78.767792 ], [ -105.117188, 78.767792 ], [ -105.117188, 78.836065 ], [ -105.468750, 78.836065 ], [ -105.468750, 79.302640 ], [ -105.117188, 79.302640 ] ] ], [ [ [ -88.242188, 77.078784 ], [ -88.242188, 76.434604 ], [ -89.648438, 76.434604 ], [ -89.648438, 76.920614 ], [ -89.296875, 76.920614 ], [ -89.296875, 76.999935 ], [ -88.593750, 76.999935 ], [ -88.593750, 77.078784 ], [ -88.242188, 77.078784 ] ] ], [ [ [ -111.093750, 78.134493 ], [ -111.093750, 78.061989 ], [ -110.390625, 78.061989 ], [ -110.390625, 77.989049 ], [ -109.687500, 77.989049 ], [ -109.687500, 77.841848 ], [ -110.039062, 77.841848 ], [ -110.039062, 77.617709 ], [ -110.742188, 77.617709 ], [ -110.742188, 77.542096 ], [ -111.093750, 77.542096 ], [ -111.093750, 77.466028 ], [ -111.796875, 77.466028 ], [ -111.796875, 77.389504 ], [ -112.500000, 77.389504 ], [ -112.500000, 77.466028 ], [ -112.851562, 77.466028 ], [ -112.851562, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.692870 ], [ -113.554688, 77.692870 ], [ -113.554688, 77.841848 ], [ -113.203125, 77.841848 ], [ -113.203125, 77.989049 ], [ -112.851562, 77.989049 ], [ -112.851562, 78.061989 ], [ -111.796875, 78.061989 ], [ -111.796875, 78.134493 ], [ -111.093750, 78.134493 ] ] ], [ [ [ -94.570312, 77.841848 ], [ -94.570312, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ], [ -93.867188, 77.617709 ], [ -93.867188, 77.466028 ], [ -95.625000, 77.466028 ], [ -95.625000, 77.542096 ], [ -96.328125, 77.542096 ], [ -96.328125, 77.841848 ], [ -94.570312, 77.841848 ] ] ], [ [ [ -98.437500, 78.903929 ], [ -98.437500, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.767792 ], [ -96.679688, 78.767792 ], [ -96.679688, 78.699106 ], [ -96.328125, 78.699106 ], [ -96.328125, 78.560488 ], [ -95.976562, 78.560488 ], [ -95.976562, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.206563 ], [ -95.976562, 78.206563 ], [ -95.976562, 77.989049 ], [ -96.328125, 77.989049 ], [ -96.328125, 77.915669 ], [ -97.031250, 77.915669 ], [ -97.031250, 77.841848 ], [ -97.734375, 77.841848 ], [ -97.734375, 77.989049 ], [ -98.085938, 77.989049 ], [ -98.085938, 78.278201 ], [ -98.437500, 78.278201 ], [ -98.437500, 78.699106 ], [ -98.789062, 78.699106 ], [ -98.789062, 78.903929 ], [ -98.437500, 78.903929 ] ] ], [ [ [ -111.093750, 78.836065 ], [ -111.093750, 78.767792 ], [ -110.742188, 78.767792 ], [ -110.742188, 78.699106 ], [ -110.039062, 78.699106 ], [ -110.039062, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.420193 ], [ -112.500000, 78.420193 ], [ -112.500000, 78.560488 ], [ -112.148438, 78.560488 ], [ -112.148438, 78.699106 ], [ -111.796875, 78.699106 ], [ -111.796875, 78.767792 ], [ -111.445312, 78.767792 ], [ -111.445312, 78.836065 ], [ -111.093750, 78.836065 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.921875, 71.965388 ], [ -94.921875, 71.856229 ], [ -94.218750, 71.856229 ], [ -94.218750, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.635993 ], [ -93.515625, 71.635993 ], [ -93.515625, 71.413177 ], [ -93.164062, 71.413177 ], [ -93.164062, 71.187754 ], [ -92.812500, 71.187754 ], [ -92.812500, 70.959697 ], [ -92.460938, 70.959697 ], [ -92.460938, 70.612614 ], [ -92.109375, 70.612614 ], [ -92.109375, 70.377854 ], [ -91.757812, 70.377854 ], [ -91.757812, 70.140364 ], [ -92.109375, 70.140364 ], [ -92.109375, 69.900118 ], [ -92.460938, 69.900118 ], [ -92.460938, 69.778952 ], [ -92.109375, 69.778952 ], [ -92.109375, 69.657086 ], [ -91.406250, 69.657086 ], [ -91.406250, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 69.037142 ], [ -88.593750, 69.037142 ], [ -88.593750, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 68.007571 ], [ -88.593750, 68.007571 ], [ -88.593750, 67.875541 ], [ -88.242188, 67.875541 ], [ -88.242188, 65.802776 ], [ -141.328125, 65.802776 ], [ -141.328125, 69.778952 ], [ -140.976562, 69.778952 ], [ -140.976562, 69.657086 ], [ -139.921875, 69.657086 ], [ -139.921875, 69.534518 ], [ -139.218750, 69.534518 ], [ -139.218750, 69.411242 ], [ -138.867188, 69.411242 ], [ -138.867188, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.162558 ], [ -138.164062, 69.162558 ], [ -138.164062, 69.037142 ], [ -137.460938, 69.037142 ], [ -137.460938, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 69.162558 ], [ -136.054688, 69.162558 ], [ -136.054688, 69.287257 ], [ -135.703125, 69.287257 ], [ -135.703125, 69.411242 ], [ -135.351562, 69.411242 ], [ -135.351562, 69.534518 ], [ -134.648438, 69.534518 ], [ -134.648438, 69.657086 ], [ -134.296875, 69.657086 ], [ -134.296875, 69.534518 ], [ -132.890625, 69.534518 ], [ -132.890625, 69.657086 ], [ -132.539062, 69.657086 ], [ -132.539062, 69.778952 ], [ -131.835938, 69.778952 ], [ -131.835938, 69.900118 ], [ -131.484375, 69.900118 ], [ -131.484375, 70.020587 ], [ -130.781250, 70.020587 ], [ -130.781250, 70.140364 ], [ -129.726562, 70.140364 ], [ -129.726562, 69.900118 ], [ -129.375000, 69.900118 ], [ -129.375000, 69.778952 ], [ -129.023438, 69.778952 ], [ -129.023438, 69.900118 ], [ -128.671875, 69.900118 ], [ -128.671875, 70.259452 ], [ -128.320312, 70.259452 ], [ -128.320312, 70.377854 ], [ -127.617188, 70.377854 ], [ -127.617188, 70.259452 ], [ -127.265625, 70.259452 ], [ -127.265625, 70.020587 ], [ -126.914062, 70.020587 ], [ -126.914062, 69.900118 ], [ -126.562500, 69.900118 ], [ -126.562500, 69.778952 ], [ -126.210938, 69.778952 ], [ -126.210938, 69.534518 ], [ -125.507812, 69.534518 ], [ -125.507812, 69.778952 ], [ -125.156250, 69.778952 ], [ -125.156250, 69.900118 ], [ -124.804688, 69.900118 ], [ -124.804688, 70.140364 ], [ -124.453125, 70.140364 ], [ -124.453125, 69.411242 ], [ -124.101562, 69.411242 ], [ -124.101562, 69.534518 ], [ -123.398438, 69.534518 ], [ -123.398438, 69.657086 ], [ -123.046875, 69.657086 ], [ -123.046875, 69.778952 ], [ -122.695312, 69.778952 ], [ -122.695312, 69.900118 ], [ -121.640625, 69.900118 ], [ -121.640625, 69.778952 ], [ -121.289062, 69.778952 ], [ -121.289062, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.534518 ], [ -120.585938, 69.534518 ], [ -120.585938, 69.411242 ], [ -119.882812, 69.411242 ], [ -119.882812, 69.287257 ], [ -119.179688, 69.287257 ], [ -119.179688, 69.162558 ], [ -118.476562, 69.162558 ], [ -118.476562, 69.037142 ], [ -117.421875, 69.037142 ], [ -117.421875, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.138852 ], [ -114.960938, 68.138852 ], [ -114.960938, 67.875541 ], [ -114.257812, 67.875541 ], [ -114.257812, 67.742759 ], [ -112.148438, 67.742759 ], [ -112.148438, 67.875541 ], [ -110.390625, 67.875541 ], [ -110.390625, 68.007571 ], [ -110.039062, 68.007571 ], [ -110.039062, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.742759 ], [ -109.335938, 67.742759 ], [ -109.335938, 67.474922 ], [ -108.632812, 67.474922 ], [ -108.632812, 67.742759 ], [ -108.281250, 67.742759 ], [ -108.281250, 67.875541 ], [ -107.929688, 67.875541 ], [ -107.929688, 68.007571 ], [ -108.281250, 68.007571 ], [ -108.281250, 68.138852 ], [ -108.632812, 68.138852 ], [ -108.632812, 68.269387 ], [ -108.984375, 68.269387 ], [ -108.984375, 68.399180 ], [ -108.632812, 68.399180 ], [ -108.632812, 68.528235 ], [ -108.281250, 68.528235 ], [ -108.281250, 68.656555 ], [ -107.578125, 68.656555 ], [ -107.578125, 68.784144 ], [ -106.523438, 68.784144 ], [ -106.523438, 68.911005 ], [ -106.171875, 68.911005 ], [ -106.171875, 68.784144 ], [ -105.820312, 68.784144 ], [ -105.820312, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.528235 ], [ -105.117188, 68.528235 ], [ -105.117188, 68.399180 ], [ -104.765625, 68.399180 ], [ -104.765625, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 68.007571 ], [ -102.656250, 68.007571 ], [ -102.656250, 67.875541 ], [ -101.953125, 67.875541 ], [ -101.953125, 67.742759 ], [ -100.546875, 67.742759 ], [ -100.546875, 67.875541 ], [ -98.789062, 67.875541 ], [ -98.789062, 68.528235 ], [ -98.085938, 68.528235 ], [ -98.085938, 68.656555 ], [ -97.734375, 68.656555 ], [ -97.734375, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.269387 ], [ -96.328125, 68.269387 ], [ -96.328125, 67.474922 ], [ -95.976562, 67.474922 ], [ -95.976562, 67.875541 ], [ -95.625000, 67.875541 ], [ -95.625000, 68.138852 ], [ -94.921875, 68.138852 ], [ -94.921875, 68.656555 ], [ -94.570312, 68.656555 ], [ -94.570312, 69.162558 ], [ -94.921875, 69.162558 ], [ -94.921875, 69.411242 ], [ -95.273438, 69.411242 ], [ -95.273438, 69.657086 ], [ -95.625000, 69.657086 ], [ -95.625000, 69.778952 ], [ -95.976562, 69.778952 ], [ -95.976562, 69.900118 ], [ -96.328125, 69.900118 ], [ -96.328125, 70.020587 ], [ -96.679688, 70.020587 ], [ -96.679688, 71.300793 ], [ -96.328125, 71.300793 ], [ -96.328125, 71.524909 ], [ -95.976562, 71.524909 ], [ -95.976562, 71.635993 ], [ -95.625000, 71.635993 ], [ -95.625000, 71.856229 ], [ -95.273438, 71.856229 ], [ -95.273438, 71.965388 ], [ -94.921875, 71.965388 ] ] ], [ [ [ -88.242188, 73.627789 ], [ -88.242188, 70.377854 ], [ -88.945312, 70.377854 ], [ -88.945312, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.728979 ], [ -89.648438, 70.728979 ], [ -89.648438, 70.844673 ], [ -89.296875, 70.844673 ], [ -89.296875, 71.074056 ], [ -88.945312, 71.074056 ], [ -88.945312, 71.187754 ], [ -88.593750, 71.187754 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.000000, 71.746432 ], [ -90.351562, 71.746432 ], [ -90.351562, 72.501722 ], [ -90.000000, 72.501722 ], [ -90.000000, 72.919635 ], [ -89.648438, 72.919635 ], [ -89.648438, 73.226700 ], [ -89.296875, 73.226700 ], [ -89.296875, 73.428424 ], [ -88.945312, 73.428424 ], [ -88.945312, 73.528399 ], [ -88.593750, 73.528399 ], [ -88.593750, 73.627789 ], [ -88.242188, 73.627789 ] ] ], [ [ [ -106.875000, 73.226700 ], [ -106.875000, 73.428424 ], [ -107.226562, 73.428424 ], [ -107.226562, 73.528399 ], [ -106.875000, 73.528399 ], [ -106.875000, 73.627789 ], [ -105.820312, 73.627789 ], [ -105.820312, 73.726595 ], [ -105.468750, 73.726595 ], [ -105.468750, 73.627789 ], [ -105.117188, 73.627789 ], [ -105.117188, 73.428424 ], [ -104.765625, 73.428424 ], [ -104.765625, 73.226700 ], [ -105.117188, 73.226700 ], [ -105.117188, 72.919635 ], [ -105.468750, 72.919635 ], [ -105.468750, 72.816074 ], [ -105.820312, 72.816074 ], [ -105.820312, 72.711903 ], [ -105.468750, 72.711903 ], [ -105.468750, 72.181804 ], [ -105.117188, 72.181804 ], [ -105.117188, 71.413177 ], [ -104.765625, 71.413177 ], [ -104.765625, 70.959697 ], [ -104.414062, 70.959697 ], [ -104.414062, 70.844673 ], [ -103.710938, 70.844673 ], [ -103.710938, 70.728979 ], [ -103.359375, 70.728979 ], [ -103.359375, 70.612614 ], [ -103.007812, 70.612614 ], [ -103.007812, 70.495574 ], [ -102.656250, 70.495574 ], [ -102.656250, 70.377854 ], [ -101.953125, 70.377854 ], [ -101.953125, 70.259452 ], [ -101.601562, 70.259452 ], [ -101.601562, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -101.953125, 69.657086 ], [ -101.953125, 69.534518 ], [ -103.007812, 69.534518 ], [ -103.007812, 69.411242 ], [ -102.656250, 69.411242 ], [ -102.656250, 69.162558 ], [ -102.304688, 69.162558 ], [ -102.304688, 68.911005 ], [ -102.656250, 68.911005 ], [ -102.656250, 68.784144 ], [ -103.710938, 68.784144 ], [ -103.710938, 68.911005 ], [ -104.765625, 68.911005 ], [ -104.765625, 69.037142 ], [ -105.468750, 69.037142 ], [ -105.468750, 69.162558 ], [ -106.171875, 69.162558 ], [ -106.171875, 69.287257 ], [ -106.523438, 69.287257 ], [ -106.523438, 69.162558 ], [ -107.226562, 69.162558 ], [ -107.226562, 69.037142 ], [ -107.929688, 69.037142 ], [ -107.929688, 68.911005 ], [ -108.632812, 68.911005 ], [ -108.632812, 68.784144 ], [ -110.390625, 68.784144 ], [ -110.390625, 68.656555 ], [ -113.554688, 68.656555 ], [ -113.554688, 68.784144 ], [ -113.906250, 68.784144 ], [ -113.906250, 69.037142 ], [ -114.609375, 69.037142 ], [ -114.609375, 69.162558 ], [ -115.312500, 69.162558 ], [ -115.312500, 69.287257 ], [ -116.367188, 69.287257 ], [ -116.367188, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.657086 ], [ -117.070312, 69.657086 ], [ -117.070312, 69.900118 ], [ -117.421875, 69.900118 ], [ -117.421875, 70.020587 ], [ -116.718750, 70.020587 ], [ -116.718750, 70.140364 ], [ -115.664062, 70.140364 ], [ -115.664062, 70.259452 ], [ -112.851562, 70.259452 ], [ -112.851562, 70.377854 ], [ -113.203125, 70.377854 ], [ -113.203125, 70.495574 ], [ -114.257812, 70.495574 ], [ -114.257812, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.728979 ], [ -118.476562, 70.728979 ], [ -118.476562, 70.959697 ], [ -118.125000, 70.959697 ], [ -118.125000, 71.074056 ], [ -117.421875, 71.074056 ], [ -117.421875, 71.187754 ], [ -117.070312, 71.187754 ], [ -117.070312, 71.300793 ], [ -118.125000, 71.300793 ], [ -118.125000, 71.413177 ], [ -118.828125, 71.413177 ], [ -118.828125, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.746432 ], [ -119.179688, 71.746432 ], [ -119.179688, 72.181804 ], [ -118.828125, 72.181804 ], [ -118.828125, 72.395706 ], [ -118.476562, 72.395706 ], [ -118.476562, 72.607120 ], [ -118.125000, 72.607120 ], [ -118.125000, 72.711903 ], [ -117.773438, 72.711903 ], [ -117.773438, 72.816074 ], [ -117.070312, 72.816074 ], [ -117.070312, 72.919635 ], [ -116.718750, 72.919635 ], [ -116.718750, 73.022592 ], [ -116.367188, 73.022592 ], [ -116.367188, 73.124945 ], [ -115.664062, 73.124945 ], [ -115.664062, 73.226700 ], [ -114.609375, 73.226700 ], [ -114.609375, 73.124945 ], [ -114.257812, 73.124945 ], [ -114.257812, 73.022592 ], [ -114.609375, 73.022592 ], [ -114.609375, 72.816074 ], [ -114.960938, 72.816074 ], [ -114.960938, 72.711903 ], [ -114.257812, 72.711903 ], [ -114.257812, 72.816074 ], [ -113.554688, 72.816074 ], [ -113.554688, 72.919635 ], [ -112.851562, 72.919635 ], [ -112.851562, 73.022592 ], [ -112.500000, 73.022592 ], [ -112.500000, 72.919635 ], [ -112.148438, 72.919635 ], [ -112.148438, 72.816074 ], [ -111.796875, 72.816074 ], [ -111.796875, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.501722 ], [ -110.742188, 72.501722 ], [ -110.742188, 72.711903 ], [ -110.390625, 72.711903 ], [ -110.390625, 72.919635 ], [ -109.687500, 72.919635 ], [ -109.687500, 72.711903 ], [ -109.335938, 72.711903 ], [ -109.335938, 72.501722 ], [ -108.984375, 72.501722 ], [ -108.984375, 72.181804 ], [ -108.632812, 72.181804 ], [ -108.632812, 71.856229 ], [ -107.929688, 71.856229 ], [ -107.929688, 72.289067 ], [ -108.281250, 72.289067 ], [ -108.281250, 72.816074 ], [ -108.632812, 72.816074 ], [ -108.632812, 73.124945 ], [ -108.281250, 73.124945 ], [ -108.281250, 73.226700 ], [ -106.875000, 73.226700 ] ], [ [ -116.718750, 71.413177 ], [ -116.718750, 71.300793 ], [ -116.367188, 71.300793 ], [ -116.367188, 71.413177 ], [ -116.718750, 71.413177 ] ], [ [ -106.171875, 73.022592 ], [ -106.171875, 72.919635 ], [ -105.820312, 72.919635 ], [ -105.820312, 73.022592 ], [ -106.171875, 73.022592 ] ], [ [ -106.523438, 73.124945 ], [ -106.523438, 73.022592 ], [ -106.171875, 73.022592 ], [ -106.171875, 73.124945 ], [ -106.523438, 73.124945 ] ], [ [ -106.875000, 73.226700 ], [ -106.875000, 73.124945 ], [ -106.523438, 73.124945 ], [ -106.523438, 73.226700 ], [ -106.875000, 73.226700 ] ] ], [ [ [ -98.085938, 70.140364 ], [ -98.085938, 70.020587 ], [ -97.734375, 70.020587 ], [ -97.734375, 69.900118 ], [ -97.382812, 69.900118 ], [ -97.382812, 69.778952 ], [ -96.679688, 69.778952 ], [ -96.679688, 69.657086 ], [ -96.328125, 69.657086 ], [ -96.328125, 69.287257 ], [ -95.976562, 69.287257 ], [ -95.976562, 68.911005 ], [ -96.328125, 68.911005 ], [ -96.328125, 68.784144 ], [ -96.679688, 68.784144 ], [ -96.679688, 68.911005 ], [ -97.382812, 68.911005 ], [ -97.382812, 69.037142 ], [ -98.789062, 69.037142 ], [ -98.789062, 69.162558 ], [ -99.492188, 69.162558 ], [ -99.492188, 69.287257 ], [ -99.843750, 69.287257 ], [ -99.843750, 69.411242 ], [ -99.492188, 69.411242 ], [ -99.492188, 69.657086 ], [ -99.140625, 69.657086 ], [ -99.140625, 69.900118 ], [ -98.789062, 69.900118 ], [ -98.789062, 70.140364 ], [ -98.085938, 70.140364 ] ] ], [ [ [ -121.640625, 74.496413 ], [ -121.640625, 74.402163 ], [ -120.937500, 74.402163 ], [ -120.937500, 74.307353 ], [ -119.179688, 74.307353 ], [ -119.179688, 74.211983 ], [ -117.773438, 74.211983 ], [ -117.773438, 74.116047 ], [ -117.421875, 74.116047 ], [ -117.421875, 74.019543 ], [ -117.070312, 74.019543 ], [ -117.070312, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.824820 ], [ -116.367188, 73.824820 ], [ -116.367188, 73.726595 ], [ -116.015625, 73.726595 ], [ -116.015625, 73.528399 ], [ -115.664062, 73.528399 ], [ -115.664062, 73.428424 ], [ -116.015625, 73.428424 ], [ -116.015625, 73.327858 ], [ -116.718750, 73.327858 ], [ -116.718750, 73.226700 ], [ -117.070312, 73.226700 ], [ -117.070312, 73.124945 ], [ -117.421875, 73.124945 ], [ -117.421875, 73.022592 ], [ -117.773438, 73.022592 ], [ -117.773438, 72.919635 ], [ -118.476562, 72.919635 ], [ -118.476562, 72.816074 ], [ -118.828125, 72.816074 ], [ -118.828125, 72.711903 ], [ -119.179688, 72.711903 ], [ -119.179688, 72.607120 ], [ -119.531250, 72.607120 ], [ -119.531250, 72.395706 ], [ -119.882812, 72.395706 ], [ -119.882812, 72.181804 ], [ -120.234375, 72.181804 ], [ -120.234375, 71.965388 ], [ -120.585938, 71.965388 ], [ -120.585938, 71.300793 ], [ -121.289062, 71.300793 ], [ -121.289062, 71.187754 ], [ -121.992188, 71.187754 ], [ -121.992188, 71.074056 ], [ -122.695312, 71.074056 ], [ -122.695312, 70.959697 ], [ -123.398438, 70.959697 ], [ -123.398438, 71.187754 ], [ -123.750000, 71.187754 ], [ -123.750000, 71.413177 ], [ -124.101562, 71.413177 ], [ -124.101562, 71.524909 ], [ -124.804688, 71.524909 ], [ -124.804688, 71.635993 ], [ -125.156250, 71.635993 ], [ -125.156250, 71.746432 ], [ -125.507812, 71.746432 ], [ -125.507812, 71.856229 ], [ -126.210938, 71.856229 ], [ -126.210938, 72.073911 ], [ -125.859375, 72.073911 ], [ -125.859375, 72.289067 ], [ -125.507812, 72.289067 ], [ -125.507812, 72.501722 ], [ -125.156250, 72.501722 ], [ -125.156250, 72.816074 ], [ -124.804688, 72.816074 ], [ -124.804688, 73.124945 ], [ -124.453125, 73.124945 ], [ -124.453125, 73.528399 ], [ -124.101562, 73.528399 ], [ -124.101562, 73.824820 ], [ -124.453125, 73.824820 ], [ -124.453125, 74.019543 ], [ -124.804688, 74.019543 ], [ -124.804688, 74.211983 ], [ -125.156250, 74.211983 ], [ -125.156250, 74.307353 ], [ -124.101562, 74.307353 ], [ -124.101562, 74.402163 ], [ -122.343750, 74.402163 ], [ -122.343750, 74.496413 ], [ -121.640625, 74.496413 ] ] ], [ [ [ -88.242188, 80.415707 ], [ -88.242188, 78.560488 ], [ -88.593750, 78.560488 ], [ -88.593750, 78.490552 ], [ -88.945312, 78.490552 ], [ -88.945312, 78.349411 ], [ -90.000000, 78.349411 ], [ -90.000000, 78.278201 ], [ -92.460938, 78.278201 ], [ -92.460938, 78.349411 ], [ -93.164062, 78.349411 ], [ -93.164062, 78.420193 ], [ -93.515625, 78.420193 ], [ -93.515625, 78.560488 ], [ -93.867188, 78.560488 ], [ -93.867188, 78.699106 ], [ -94.218750, 78.699106 ], [ -94.218750, 79.171335 ], [ -93.867188, 79.171335 ], [ -93.867188, 79.302640 ], [ -93.515625, 79.302640 ], [ -93.515625, 79.367701 ], [ -93.164062, 79.367701 ], [ -93.164062, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.560546 ], [ -95.976562, 79.560546 ], [ -95.976562, 79.687184 ], [ -96.328125, 79.687184 ], [ -96.328125, 79.812302 ], [ -96.679688, 79.812302 ], [ -96.679688, 80.058050 ], [ -97.031250, 80.058050 ], [ -97.031250, 80.297927 ], [ -96.679688, 80.297927 ], [ -96.679688, 80.532071 ], [ -96.328125, 80.532071 ], [ -96.328125, 80.703997 ], [ -95.976562, 80.703997 ], [ -95.976562, 80.816891 ], [ -95.625000, 80.816891 ], [ -95.625000, 80.928426 ], [ -94.921875, 80.928426 ], [ -94.921875, 80.983688 ], [ -94.570312, 80.983688 ], [ -94.570312, 81.093214 ], [ -94.921875, 81.093214 ], [ -94.921875, 81.255032 ], [ -93.515625, 81.255032 ], [ -93.515625, 81.308321 ], [ -92.460938, 81.308321 ], [ -92.460938, 81.201420 ], [ -92.109375, 81.201420 ], [ -92.109375, 81.038617 ], [ -91.757812, 81.038617 ], [ -91.757812, 80.816891 ], [ -91.406250, 80.816891 ], [ -91.406250, 80.703997 ], [ -91.054688, 80.703997 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.242188, 80.415707 ] ] ], [ [ [ -97.382812, 73.824820 ], [ -97.382812, 73.327858 ], [ -97.734375, 73.327858 ], [ -97.734375, 73.124945 ], [ -98.085938, 73.124945 ], [ -98.085938, 72.919635 ], [ -97.734375, 72.919635 ], [ -97.734375, 72.816074 ], [ -97.382812, 72.816074 ], [ -97.382812, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 72.181804 ], [ -97.031250, 72.181804 ], [ -97.031250, 71.635993 ], [ -97.382812, 71.635993 ], [ -97.382812, 71.524909 ], [ -97.734375, 71.524909 ], [ -97.734375, 71.413177 ], [ -98.085938, 71.413177 ], [ -98.085938, 71.300793 ], [ -99.140625, 71.300793 ], [ -99.140625, 71.413177 ], [ -99.843750, 71.413177 ], [ -99.843750, 71.635993 ], [ -100.195312, 71.635993 ], [ -100.195312, 71.746432 ], [ -100.546875, 71.746432 ], [ -100.546875, 71.856229 ], [ -100.898438, 71.856229 ], [ -100.898438, 71.965388 ], [ -101.250000, 71.965388 ], [ -101.250000, 72.181804 ], [ -101.601562, 72.181804 ], [ -101.601562, 72.289067 ], [ -101.953125, 72.289067 ], [ -101.953125, 72.395706 ], [ -102.304688, 72.395706 ], [ -102.304688, 72.501722 ], [ -102.656250, 72.501722 ], [ -102.656250, 72.919635 ], [ -102.304688, 72.919635 ], [ -102.304688, 72.816074 ], [ -101.250000, 72.816074 ], [ -101.250000, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.816074 ], [ -100.898438, 72.816074 ], [ -100.898438, 73.022592 ], [ -101.250000, 73.022592 ], [ -101.250000, 73.226700 ], [ -101.601562, 73.226700 ], [ -101.601562, 73.428424 ], [ -101.250000, 73.428424 ], [ -101.250000, 73.627789 ], [ -100.898438, 73.627789 ], [ -100.898438, 73.824820 ], [ -99.843750, 73.824820 ], [ -99.843750, 73.726595 ], [ -98.085938, 73.726595 ], [ -98.085938, 73.824820 ], [ -97.382812, 73.824820 ] ] ], [ [ [ -93.867188, 74.211983 ], [ -93.867188, 74.116047 ], [ -92.109375, 74.116047 ], [ -92.109375, 74.019543 ], [ -91.406250, 74.019543 ], [ -91.406250, 73.922469 ], [ -90.703125, 73.922469 ], [ -90.703125, 73.726595 ], [ -91.054688, 73.726595 ], [ -91.054688, 73.528399 ], [ -91.406250, 73.528399 ], [ -91.406250, 73.327858 ], [ -91.757812, 73.327858 ], [ -91.757812, 73.124945 ], [ -92.109375, 73.124945 ], [ -92.109375, 72.919635 ], [ -92.812500, 72.919635 ], [ -92.812500, 72.816074 ], [ -93.515625, 72.816074 ], [ -93.515625, 72.607120 ], [ -93.867188, 72.607120 ], [ -93.867188, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 72.181804 ], [ -94.570312, 72.181804 ], [ -94.570312, 72.073911 ], [ -95.625000, 72.073911 ], [ -95.625000, 72.289067 ], [ -95.976562, 72.289067 ], [ -95.976562, 72.711903 ], [ -96.328125, 72.711903 ], [ -96.328125, 73.627789 ], [ -95.976562, 73.627789 ], [ -95.976562, 73.824820 ], [ -95.625000, 73.824820 ], [ -95.625000, 73.922469 ], [ -95.273438, 73.922469 ], [ -95.273438, 74.019543 ], [ -94.921875, 74.019543 ], [ -94.921875, 74.116047 ], [ -94.570312, 74.116047 ], [ -94.570312, 74.211983 ], [ -93.867188, 74.211983 ] ] ], [ [ [ -108.984375, 76.760541 ], [ -108.984375, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.434604 ], [ -108.281250, 76.434604 ], [ -108.281250, 76.016094 ], [ -107.929688, 76.016094 ], [ -107.929688, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 75.930885 ], [ -107.226562, 75.930885 ], [ -107.226562, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.171875, 75.758940 ], [ -105.820312, 75.758940 ], [ -105.820312, 75.320025 ], [ -106.171875, 75.320025 ], [ -106.171875, 75.140778 ], [ -106.523438, 75.140778 ], [ -106.523438, 75.050354 ], [ -107.226562, 75.050354 ], [ -107.226562, 74.959392 ], [ -108.984375, 74.959392 ], [ -108.984375, 74.867889 ], [ -110.039062, 74.867889 ], [ -110.039062, 74.775843 ], [ -110.742188, 74.775843 ], [ -110.742188, 74.683250 ], [ -111.445312, 74.683250 ], [ -111.445312, 74.590108 ], [ -112.148438, 74.590108 ], [ -112.148438, 74.496413 ], [ -112.851562, 74.496413 ], [ -112.851562, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -113.554688, 74.775843 ], [ -113.554688, 74.867889 ], [ -113.203125, 74.867889 ], [ -113.203125, 74.959392 ], [ -112.500000, 74.959392 ], [ -112.500000, 75.050354 ], [ -112.148438, 75.050354 ], [ -112.148438, 75.140778 ], [ -111.796875, 75.140778 ], [ -111.796875, 75.230667 ], [ -112.851562, 75.230667 ], [ -112.851562, 75.140778 ], [ -114.960938, 75.140778 ], [ -114.960938, 75.050354 ], [ -117.070312, 75.050354 ], [ -117.070312, 75.140778 ], [ -117.773438, 75.140778 ], [ -117.773438, 75.320025 ], [ -117.421875, 75.320025 ], [ -117.421875, 75.584937 ], [ -117.070312, 75.584937 ], [ -117.070312, 75.845169 ], [ -116.718750, 75.845169 ], [ -116.718750, 76.100796 ], [ -116.367188, 76.100796 ], [ -116.367188, 76.268695 ], [ -116.015625, 76.268695 ], [ -116.015625, 76.434604 ], [ -114.960938, 76.434604 ], [ -114.960938, 76.351896 ], [ -114.257812, 76.351896 ], [ -114.257812, 76.268695 ], [ -113.554688, 76.268695 ], [ -113.554688, 76.184995 ], [ -112.851562, 76.184995 ], [ -112.851562, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 75.930885 ], [ -112.148438, 75.930885 ], [ -112.148438, 75.845169 ], [ -111.796875, 75.845169 ], [ -111.796875, 75.758940 ], [ -111.445312, 75.758940 ], [ -111.445312, 75.584937 ], [ -110.390625, 75.584937 ], [ -110.390625, 75.497157 ], [ -109.335938, 75.497157 ], [ -109.335938, 75.584937 ], [ -109.687500, 75.584937 ], [ -109.687500, 75.845169 ], [ -110.039062, 75.845169 ], [ -110.039062, 76.016094 ], [ -110.390625, 76.016094 ], [ -110.390625, 76.268695 ], [ -110.742188, 76.268695 ], [ -110.742188, 76.434604 ], [ -110.390625, 76.434604 ], [ -110.390625, 76.598545 ], [ -110.039062, 76.598545 ], [ -110.039062, 76.760541 ], [ -108.984375, 76.760541 ] ] ], [ [ [ -96.328125, 77.235074 ], [ -96.328125, 77.157163 ], [ -94.921875, 77.157163 ], [ -94.921875, 77.078784 ], [ -94.570312, 77.078784 ], [ -94.570312, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.840816 ], [ -91.757812, 76.840816 ], [ -91.757812, 76.760541 ], [ -91.406250, 76.760541 ], [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.016094 ], [ -90.351562, 76.016094 ], [ -90.351562, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -88.945312, 75.672197 ], [ -88.945312, 75.584937 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -88.945312, 74.402163 ], [ -88.945312, 74.496413 ], [ -89.648438, 74.496413 ], [ -89.648438, 74.590108 ], [ -90.703125, 74.590108 ], [ -90.703125, 74.683250 ], [ -91.406250, 74.683250 ], [ -91.406250, 74.775843 ], [ -92.109375, 74.775843 ], [ -92.109375, 74.867889 ], [ -92.460938, 74.867889 ], [ -92.460938, 75.140778 ], [ -92.812500, 75.140778 ], [ -92.812500, 75.672197 ], [ -93.164062, 75.672197 ], [ -93.164062, 75.930885 ], [ -93.515625, 75.930885 ], [ -93.515625, 76.100796 ], [ -93.867188, 76.100796 ], [ -93.867188, 76.268695 ], [ -94.218750, 76.268695 ], [ -94.218750, 76.351896 ], [ -94.921875, 76.351896 ], [ -94.921875, 76.434604 ], [ -95.625000, 76.434604 ], [ -95.625000, 76.516819 ], [ -96.328125, 76.516819 ], [ -96.328125, 76.598545 ], [ -97.031250, 76.598545 ], [ -97.031250, 76.679785 ], [ -97.382812, 76.679785 ], [ -97.382812, 76.999935 ], [ -97.031250, 76.999935 ], [ -97.031250, 77.235074 ], [ -96.328125, 77.235074 ] ] ], [ [ [ -116.367188, 77.617709 ], [ -116.367188, 76.840816 ], [ -116.718750, 76.840816 ], [ -116.718750, 76.760541 ], [ -117.070312, 76.760541 ], [ -117.070312, 76.598545 ], [ -117.421875, 76.598545 ], [ -117.421875, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.434604 ], [ -118.476562, 76.434604 ], [ -118.476562, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.268695 ], [ -119.531250, 76.268695 ], [ -119.531250, 76.184995 ], [ -119.882812, 76.184995 ], [ -119.882812, 76.100796 ], [ -120.234375, 76.100796 ], [ -120.234375, 76.016094 ], [ -120.937500, 76.016094 ], [ -120.937500, 75.930885 ], [ -121.992188, 75.930885 ], [ -121.992188, 76.016094 ], [ -122.695312, 76.016094 ], [ -122.695312, 76.100796 ], [ -123.046875, 76.100796 ], [ -123.046875, 76.184995 ], [ -122.695312, 76.184995 ], [ -122.695312, 76.351896 ], [ -122.343750, 76.351896 ], [ -122.343750, 76.516819 ], [ -121.992188, 76.516819 ], [ -121.992188, 76.679785 ], [ -121.640625, 76.679785 ], [ -121.640625, 76.840816 ], [ -121.289062, 76.840816 ], [ -121.289062, 76.920614 ], [ -120.937500, 76.920614 ], [ -120.937500, 77.078784 ], [ -120.585938, 77.078784 ], [ -120.585938, 77.157163 ], [ -120.234375, 77.157163 ], [ -120.234375, 77.235074 ], [ -119.882812, 77.235074 ], [ -119.882812, 77.389504 ], [ -119.531250, 77.389504 ], [ -119.531250, 77.466028 ], [ -119.179688, 77.466028 ], [ -119.179688, 77.542096 ], [ -117.070312, 77.542096 ], [ -117.070312, 77.617709 ], [ -116.367188, 77.617709 ] ] ], [ [ [ -94.570312, 75.584937 ], [ -94.570312, 75.408854 ], [ -94.218750, 75.408854 ], [ -94.218750, 75.140778 ], [ -93.867188, 75.140778 ], [ -93.867188, 74.867889 ], [ -94.218750, 74.867889 ], [ -94.218750, 74.683250 ], [ -95.976562, 74.683250 ], [ -95.976562, 74.775843 ], [ -96.679688, 74.775843 ], [ -96.679688, 74.867889 ], [ -97.031250, 74.867889 ], [ -97.031250, 75.050354 ], [ -96.679688, 75.050354 ], [ -96.679688, 75.230667 ], [ -96.328125, 75.230667 ], [ -96.328125, 75.408854 ], [ -95.976562, 75.408854 ], [ -95.976562, 75.497157 ], [ -95.273438, 75.497157 ], [ -95.273438, 75.584937 ], [ -94.570312, 75.584937 ] ] ], [ [ [ -98.437500, 76.679785 ], [ -98.437500, 76.516819 ], [ -98.085938, 76.516819 ], [ -98.085938, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.584937 ], [ -98.085938, 75.584937 ], [ -98.085938, 75.230667 ], [ -98.437500, 75.230667 ], [ -98.437500, 75.050354 ], [ -98.789062, 75.050354 ], [ -98.789062, 74.959392 ], [ -100.195312, 74.959392 ], [ -100.195312, 75.050354 ], [ -100.898438, 75.050354 ], [ -100.898438, 75.672197 ], [ -101.601562, 75.672197 ], [ -101.601562, 75.584937 ], [ -102.656250, 75.584937 ], [ -102.656250, 76.351896 ], [ -101.250000, 76.351896 ], [ -101.250000, 76.434604 ], [ -100.898438, 76.434604 ], [ -100.898438, 76.516819 ], [ -100.546875, 76.516819 ], [ -100.546875, 76.598545 ], [ -100.195312, 76.598545 ], [ -100.195312, 76.679785 ], [ -99.843750, 76.679785 ], [ -99.843750, 76.598545 ], [ -98.789062, 76.598545 ], [ -98.789062, 76.679785 ], [ -98.437500, 76.679785 ] ] ], [ [ [ -88.242188, 80.647035 ], [ -88.593750, 80.647035 ], [ -88.593750, 80.703997 ], [ -88.945312, 80.703997 ], [ -88.945312, 80.760615 ], [ -89.296875, 80.760615 ], [ -89.296875, 80.816891 ], [ -89.648438, 80.816891 ], [ -89.648438, 80.983688 ], [ -90.000000, 80.983688 ], [ -90.000000, 81.201420 ], [ -90.351562, 81.201420 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.923186 ], [ -91.406250, 81.923186 ], [ -91.406250, 81.972431 ], [ -91.054688, 81.972431 ], [ -91.054688, 82.021378 ], [ -90.703125, 82.021378 ], [ -90.703125, 82.070028 ], [ -90.351562, 82.070028 ], [ -90.351562, 82.118384 ], [ -88.593750, 82.118384 ], [ -88.593750, 82.166446 ], [ -88.242188, 82.166446 ], [ -88.242188, 80.647035 ] ] ], [ [ [ -105.468750, 79.302640 ], [ -105.468750, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.171335 ], [ -103.710938, 79.171335 ], [ -103.710938, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.971386 ], [ -101.953125, 78.971386 ], [ -101.953125, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.836065 ], [ -100.898438, 78.836065 ], [ -100.898438, 78.699106 ], [ -100.546875, 78.699106 ], [ -100.546875, 78.420193 ], [ -100.195312, 78.420193 ], [ -100.195312, 78.134493 ], [ -99.843750, 78.134493 ], [ -99.843750, 77.915669 ], [ -100.546875, 77.915669 ], [ -100.546875, 77.989049 ], [ -101.250000, 77.989049 ], [ -101.250000, 78.061989 ], [ -101.953125, 78.061989 ], [ -101.953125, 78.134493 ], [ -102.304688, 78.134493 ], [ -102.304688, 78.206563 ], [ -102.656250, 78.206563 ], [ -102.656250, 78.278201 ], [ -103.007812, 78.278201 ], [ -103.007812, 78.349411 ], [ -104.414062, 78.349411 ], [ -104.414062, 78.420193 ], [ -105.117188, 78.420193 ], [ -105.117188, 78.560488 ], [ -104.765625, 78.560488 ], [ -104.765625, 78.630006 ], [ -104.414062, 78.630006 ], [ -104.414062, 78.699106 ], [ -104.765625, 78.699106 ], [ -104.765625, 78.836065 ], [ -105.117188, 78.836065 ], [ -105.117188, 78.903929 ], [ -105.468750, 78.903929 ], [ -105.468750, 79.105086 ], [ -105.820312, 79.105086 ], [ -105.820312, 79.302640 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -98.437500, 78.903929 ], [ -98.437500, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.767792 ], [ -97.031250, 78.767792 ], [ -97.031250, 78.699106 ], [ -96.679688, 78.699106 ], [ -96.679688, 78.630006 ], [ -96.328125, 78.630006 ], [ -96.328125, 78.490552 ], [ -95.976562, 78.490552 ], [ -95.976562, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.206563 ], [ -95.976562, 78.206563 ], [ -95.976562, 77.989049 ], [ -96.679688, 77.989049 ], [ -96.679688, 77.915669 ], [ -97.734375, 77.915669 ], [ -97.734375, 77.989049 ], [ -98.085938, 77.989049 ], [ -98.085938, 78.061989 ], [ -98.437500, 78.061989 ], [ -98.437500, 78.278201 ], [ -98.789062, 78.278201 ], [ -98.789062, 78.903929 ], [ -98.437500, 78.903929 ] ] ], [ [ [ -88.242188, 77.078784 ], [ -88.242188, 76.516819 ], [ -89.648438, 76.516819 ], [ -89.648438, 76.999935 ], [ -88.945312, 76.999935 ], [ -88.945312, 77.078784 ], [ -88.242188, 77.078784 ] ] ], [ [ [ -110.742188, 78.134493 ], [ -110.742188, 78.061989 ], [ -110.039062, 78.061989 ], [ -110.039062, 77.915669 ], [ -110.390625, 77.915669 ], [ -110.390625, 77.692870 ], [ -110.742188, 77.692870 ], [ -110.742188, 77.617709 ], [ -111.445312, 77.617709 ], [ -111.445312, 77.542096 ], [ -111.796875, 77.542096 ], [ -111.796875, 77.466028 ], [ -112.500000, 77.466028 ], [ -112.500000, 77.542096 ], [ -112.851562, 77.542096 ], [ -112.851562, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.692870 ], [ -113.554688, 77.692870 ], [ -113.554688, 77.841848 ], [ -113.203125, 77.841848 ], [ -113.203125, 77.989049 ], [ -112.851562, 77.989049 ], [ -112.851562, 78.061989 ], [ -112.148438, 78.061989 ], [ -112.148438, 78.134493 ], [ -110.742188, 78.134493 ] ] ], [ [ [ -94.570312, 77.841848 ], [ -94.570312, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.692870 ], [ -93.867188, 77.692870 ], [ -93.867188, 77.542096 ], [ -95.625000, 77.542096 ], [ -95.625000, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.692870 ], [ -96.679688, 77.692870 ], [ -96.679688, 77.841848 ], [ -94.570312, 77.841848 ] ] ], [ [ [ -111.093750, 78.836065 ], [ -111.093750, 78.767792 ], [ -110.742188, 78.767792 ], [ -110.742188, 78.699106 ], [ -110.039062, 78.699106 ], [ -110.039062, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.490552 ], [ -110.742188, 78.490552 ], [ -110.742188, 78.420193 ], [ -112.851562, 78.420193 ], [ -112.851562, 78.560488 ], [ -112.500000, 78.560488 ], [ -112.500000, 78.699106 ], [ -112.148438, 78.699106 ], [ -112.148438, 78.836065 ], [ -111.093750, 78.836065 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.742188, 71.300793 ], [ -155.742188, 71.187754 ], [ -155.039062, 71.187754 ], [ -155.039062, 71.074056 ], [ -154.687500, 71.074056 ], [ -154.687500, 70.844673 ], [ -154.335938, 70.844673 ], [ -154.335938, 70.728979 ], [ -153.984375, 70.728979 ], [ -153.984375, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.495574 ], [ -151.523438, 70.495574 ], [ -151.523438, 70.377854 ], [ -150.117188, 70.377854 ], [ -150.117188, 70.495574 ], [ -149.414062, 70.495574 ], [ -149.414062, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.259452 ], [ -146.953125, 70.259452 ], [ -146.953125, 70.140364 ], [ -145.546875, 70.140364 ], [ -145.546875, 70.020587 ], [ -143.789062, 70.020587 ], [ -143.789062, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 70.020587 ], [ -142.734375, 70.020587 ], [ -142.734375, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.778952 ], [ -141.328125, 69.778952 ], [ -141.328125, 69.657086 ], [ -140.976562, 69.657086 ], [ -140.976562, 65.802776 ], [ -167.343750, 65.802776 ], [ -167.343750, 65.946472 ], [ -166.640625, 65.946472 ], [ -166.640625, 66.089364 ], [ -165.937500, 66.089364 ], [ -165.937500, 66.231457 ], [ -165.234375, 66.231457 ], [ -165.234375, 66.372755 ], [ -164.531250, 66.372755 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.828125, 66.930060 ], [ -163.828125, 67.204032 ], [ -164.179688, 67.204032 ], [ -164.179688, 67.474922 ], [ -164.531250, 67.474922 ], [ -164.531250, 67.609221 ], [ -164.882812, 67.609221 ], [ -164.882812, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.007571 ], [ -165.585938, 68.007571 ], [ -165.585938, 68.138852 ], [ -166.289062, 68.138852 ], [ -166.289062, 68.269387 ], [ -166.640625, 68.269387 ], [ -166.640625, 68.656555 ], [ -166.289062, 68.656555 ], [ -166.289062, 68.911005 ], [ -164.179688, 68.911005 ], [ -164.179688, 69.037142 ], [ -163.828125, 69.037142 ], [ -163.828125, 69.162558 ], [ -163.476562, 69.162558 ], [ -163.476562, 69.287257 ], [ -163.125000, 69.287257 ], [ -163.125000, 69.657086 ], [ -162.773438, 69.657086 ], [ -162.773438, 70.020587 ], [ -162.421875, 70.020587 ], [ -162.421875, 70.259452 ], [ -162.070312, 70.259452 ], [ -162.070312, 70.377854 ], [ -161.367188, 70.377854 ], [ -161.367188, 70.495574 ], [ -160.312500, 70.495574 ], [ -160.312500, 70.612614 ], [ -159.609375, 70.612614 ], [ -159.609375, 70.728979 ], [ -158.906250, 70.728979 ], [ -158.906250, 70.844673 ], [ -157.851562, 70.844673 ], [ -157.851562, 70.959697 ], [ -157.500000, 70.959697 ], [ -157.500000, 71.074056 ], [ -157.148438, 71.074056 ], [ -157.148438, 71.187754 ], [ -156.796875, 71.187754 ], [ -156.796875, 71.300793 ], [ -155.742188, 71.300793 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.093750, 71.300793 ], [ -156.093750, 71.187754 ], [ -155.390625, 71.187754 ], [ -155.390625, 71.074056 ], [ -155.039062, 71.074056 ], [ -155.039062, 70.844673 ], [ -154.687500, 70.844673 ], [ -154.687500, 70.728979 ], [ -154.335938, 70.728979 ], [ -154.335938, 70.844673 ], [ -153.984375, 70.844673 ], [ -153.984375, 70.959697 ], [ -153.281250, 70.959697 ], [ -153.281250, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.728979 ], [ -152.578125, 70.728979 ], [ -152.578125, 70.612614 ], [ -151.875000, 70.612614 ], [ -151.875000, 70.495574 ], [ -150.117188, 70.495574 ], [ -150.117188, 70.612614 ], [ -149.765625, 70.612614 ], [ -149.765625, 70.495574 ], [ -149.062500, 70.495574 ], [ -149.062500, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.259452 ], [ -146.953125, 70.259452 ], [ -146.953125, 70.140364 ], [ -145.898438, 70.140364 ], [ -145.898438, 70.020587 ], [ -144.492188, 70.020587 ], [ -144.492188, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 70.020587 ], [ -142.734375, 70.020587 ], [ -142.734375, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.778952 ], [ -141.328125, 69.778952 ], [ -141.328125, 65.802776 ], [ -167.343750, 65.802776 ], [ -167.343750, 65.946472 ], [ -166.992188, 65.946472 ], [ -166.992188, 66.089364 ], [ -166.640625, 66.089364 ], [ -166.640625, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.652977 ], [ -163.828125, 66.652977 ], [ -163.828125, 66.089364 ], [ -162.421875, 66.089364 ], [ -162.421875, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.652977 ], [ -162.773438, 66.652977 ], [ -162.773438, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.476562, 66.930060 ], [ -163.476562, 67.067433 ], [ -163.828125, 67.067433 ], [ -163.828125, 67.339861 ], [ -164.179688, 67.339861 ], [ -164.179688, 67.609221 ], [ -164.531250, 67.609221 ], [ -164.531250, 67.742759 ], [ -164.882812, 67.742759 ], [ -164.882812, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.007571 ], [ -165.585938, 68.007571 ], [ -165.585938, 68.138852 ], [ -166.289062, 68.138852 ], [ -166.289062, 68.269387 ], [ -166.992188, 68.269387 ], [ -166.992188, 68.528235 ], [ -166.640625, 68.528235 ], [ -166.640625, 68.784144 ], [ -166.289062, 68.784144 ], [ -166.289062, 68.911005 ], [ -165.234375, 68.911005 ], [ -165.234375, 69.037142 ], [ -164.179688, 69.037142 ], [ -164.179688, 69.162558 ], [ -163.828125, 69.162558 ], [ -163.828125, 69.287257 ], [ -163.476562, 69.287257 ], [ -163.476562, 69.657086 ], [ -163.125000, 69.657086 ], [ -163.125000, 69.900118 ], [ -162.773438, 69.900118 ], [ -162.773438, 70.140364 ], [ -162.421875, 70.140364 ], [ -162.421875, 70.259452 ], [ -162.070312, 70.259452 ], [ -162.070312, 70.377854 ], [ -161.367188, 70.377854 ], [ -161.367188, 70.495574 ], [ -160.664062, 70.495574 ], [ -160.664062, 70.612614 ], [ -160.312500, 70.612614 ], [ -160.312500, 70.728979 ], [ -159.609375, 70.728979 ], [ -159.609375, 70.844673 ], [ -159.257812, 70.844673 ], [ -159.257812, 70.959697 ], [ -158.906250, 70.959697 ], [ -158.906250, 70.844673 ], [ -157.851562, 70.844673 ], [ -157.851562, 70.959697 ], [ -157.500000, 70.959697 ], [ -157.500000, 71.187754 ], [ -157.148438, 71.187754 ], [ -157.148438, 71.300793 ], [ -156.093750, 71.300793 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.406250, 69.411242 ], [ -181.406250, 69.287257 ], [ -181.054688, 69.287257 ], [ -181.054688, 69.162558 ], [ -180.703125, 69.162558 ], [ -180.703125, 69.037142 ], [ -180.351562, 69.037142 ], [ -180.351562, 68.911005 ], [ -180.000000, 68.911005 ], [ -180.000000, 68.784144 ], [ -179.648438, 68.784144 ], [ -179.648438, 68.656555 ], [ -179.296875, 68.656555 ], [ -179.296875, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.399180 ], [ -178.242188, 68.399180 ], [ -178.242188, 68.269387 ], [ -177.890625, 68.269387 ], [ -177.890625, 68.138852 ], [ -177.539062, 68.138852 ], [ -177.539062, 68.007571 ], [ -177.187500, 68.007571 ], [ -177.187500, 67.875541 ], [ -176.835938, 67.875541 ], [ -176.835938, 67.742759 ], [ -176.484375, 67.742759 ], [ -176.484375, 67.609221 ], [ -176.132812, 67.609221 ], [ -176.132812, 67.474922 ], [ -175.781250, 67.474922 ], [ -175.781250, 67.339861 ], [ -175.429688, 67.339861 ], [ -175.429688, 67.204032 ], [ -175.078125, 67.204032 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -169.804688, 65.946472 ], [ -169.804688, 65.802776 ], [ -178.945312, 65.802776 ], [ -178.945312, 65.946472 ], [ -179.296875, 65.946472 ], [ -179.296875, 65.802776 ], [ -180.000000, 65.802776 ], [ -181.757812, 65.802776 ], [ -181.757812, 69.411242 ], [ -181.406250, 69.411242 ] ] ], [ [ [ -178.945312, 71.524909 ], [ -178.945312, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.300793 ], [ -177.539062, 71.300793 ], [ -177.539062, 71.074056 ], [ -177.890625, 71.074056 ], [ -177.890625, 70.959697 ], [ -178.242188, 70.959697 ], [ -178.242188, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.351562, 70.844673 ], [ -180.351562, 70.728979 ], [ -181.054688, 70.728979 ], [ -181.054688, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.074056 ], [ -181.054688, 71.074056 ], [ -181.054688, 71.187754 ], [ -180.703125, 71.187754 ], [ -180.703125, 71.300793 ], [ -180.351562, 71.300793 ], [ -180.351562, 71.413177 ], [ -180.000000, 71.413177 ], [ -180.000000, 71.524909 ], [ -178.945312, 71.524909 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 65.946472 ], [ -180.000000, 65.802776 ], [ -181.757812, 65.802776 ], [ -181.757812, 69.411242 ], [ -181.406250, 69.411242 ], [ -181.406250, 69.287257 ], [ -181.054688, 69.287257 ], [ -181.054688, 69.162558 ], [ -180.351562, 69.162558 ], [ -180.351562, 69.037142 ], [ -180.000000, 69.037142 ], [ -180.000000, 68.911005 ], [ -179.648438, 68.911005 ], [ -179.648438, 68.784144 ], [ -179.296875, 68.784144 ], [ -179.296875, 68.656555 ], [ -178.945312, 68.656555 ], [ -178.945312, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.399180 ], [ -178.242188, 68.399180 ], [ -178.242188, 68.269387 ], [ -177.890625, 68.269387 ], [ -177.890625, 68.138852 ], [ -177.539062, 68.138852 ], [ -177.539062, 68.007571 ], [ -177.187500, 68.007571 ], [ -177.187500, 67.875541 ], [ -176.835938, 67.875541 ], [ -176.835938, 67.742759 ], [ -176.132812, 67.742759 ], [ -176.132812, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.474922 ], [ -175.429688, 67.474922 ], [ -175.429688, 67.339861 ], [ -175.078125, 67.339861 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -170.507812, 65.946472 ], [ -170.507812, 65.802776 ], [ -178.945312, 65.802776 ], [ -178.945312, 66.089364 ], [ -179.648438, 66.089364 ], [ -179.648438, 65.946472 ], [ -180.000000, 65.946472 ] ] ], [ [ [ -179.296875, 71.635993 ], [ -179.296875, 71.524909 ], [ -178.945312, 71.524909 ], [ -178.945312, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.300793 ], [ -177.890625, 71.300793 ], [ -177.890625, 71.074056 ], [ -178.593750, 71.074056 ], [ -178.593750, 70.959697 ], [ -179.296875, 70.959697 ], [ -179.296875, 70.844673 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.187754 ], [ -181.054688, 71.187754 ], [ -181.054688, 71.300793 ], [ -180.351562, 71.300793 ], [ -180.351562, 71.413177 ], [ -180.000000, 71.413177 ], [ -180.000000, 71.635993 ], [ -179.296875, 71.635993 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.578125, -65.802776 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.372755 ], [ -62.929688, -66.372755 ], [ -62.929688, -66.513260 ], [ -63.632812, -66.513260 ], [ -63.632812, -66.652977 ], [ -63.984375, -66.652977 ], [ -63.984375, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.204032 ], [ -65.039062, -67.204032 ], [ -65.039062, -67.474922 ], [ -65.390625, -67.474922 ], [ -65.390625, -67.875541 ], [ -65.742188, -67.875541 ], [ -65.742188, -68.269387 ], [ -65.390625, -68.269387 ], [ -65.390625, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.287257 ], [ -63.281250, -69.287257 ], [ -63.281250, -69.534518 ], [ -62.929688, -69.534518 ], [ -62.929688, -69.900118 ], [ -62.578125, -69.900118 ], [ -62.578125, -70.259452 ], [ -62.226562, -70.259452 ], [ -62.226562, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.959697 ], [ -61.523438, -70.959697 ], [ -61.523438, -72.181804 ], [ -61.171875, -72.181804 ], [ -61.171875, -73.022592 ], [ -60.820312, -73.022592 ], [ -60.820312, -73.824820 ], [ -61.171875, -73.824820 ], [ -61.171875, -74.019543 ], [ -61.523438, -74.019543 ], [ -61.523438, -74.307353 ], [ -61.875000, -74.307353 ], [ -61.875000, -74.496413 ], [ -62.578125, -74.496413 ], [ -62.578125, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.775843 ], [ -63.632812, -74.775843 ], [ -63.632812, -75.050354 ], [ -63.984375, -75.050354 ], [ -63.984375, -75.230667 ], [ -64.335938, -75.230667 ], [ -64.335938, -75.320025 ], [ -64.687500, -75.320025 ], [ -64.687500, -75.408854 ], [ -65.039062, -75.408854 ], [ -65.039062, -75.584937 ], [ -65.390625, -75.584937 ], [ -65.390625, -75.672197 ], [ -66.093750, -75.672197 ], [ -66.093750, -75.758940 ], [ -67.148438, -75.758940 ], [ -67.148438, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -75.930885 ], [ -68.203125, -75.930885 ], [ -68.203125, -76.016094 ], [ -68.554688, -76.016094 ], [ -68.554688, -76.100796 ], [ -69.257812, -76.100796 ], [ -69.257812, -76.184995 ], [ -69.960938, -76.184995 ], [ -69.960938, -76.351896 ], [ -70.312500, -76.351896 ], [ -70.312500, -76.516819 ], [ -70.664062, -76.516819 ], [ -70.664062, -76.598545 ], [ -71.015625, -76.598545 ], [ -71.015625, -76.679785 ], [ -73.125000, -76.679785 ], [ -73.125000, -76.598545 ], [ -74.531250, -76.598545 ], [ -74.531250, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.920614 ], [ -76.992188, -76.920614 ], [ -76.992188, -77.157163 ], [ -76.289062, -77.157163 ], [ -76.289062, -77.235074 ], [ -75.585938, -77.235074 ], [ -75.585938, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.542096 ], [ -74.179688, -77.542096 ], [ -74.179688, -77.767582 ], [ -73.828125, -77.767582 ], [ -73.828125, -77.989049 ], [ -74.179688, -77.989049 ], [ -74.179688, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.206563 ], [ -75.937500, -78.206563 ], [ -75.937500, -78.134493 ], [ -76.640625, -78.134493 ], [ -76.640625, -78.206563 ], [ -76.992188, -78.206563 ], [ -76.992188, -78.278201 ], [ -77.695312, -78.278201 ], [ -77.695312, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.237185 ], [ -77.695312, -79.237185 ], [ -77.695312, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.496652 ], [ -76.992188, -79.496652 ], [ -76.992188, -79.687184 ], [ -76.640625, -79.687184 ], [ -76.640625, -79.935918 ], [ -76.289062, -79.935918 ], [ -76.289062, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.118564 ], [ -75.585938, -80.118564 ], [ -75.585938, -80.238501 ], [ -75.234375, -80.238501 ], [ -75.234375, -80.297927 ], [ -74.531250, -80.297927 ], [ -74.531250, -80.356995 ], [ -73.828125, -80.356995 ], [ -73.828125, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.474065 ], [ -72.773438, -80.474065 ], [ -72.773438, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.760615 ], [ -71.015625, -80.760615 ], [ -71.015625, -80.816891 ], [ -70.664062, -80.816891 ], [ -70.664062, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.983688 ], [ -69.960938, -80.983688 ], [ -69.960938, -81.038617 ], [ -69.609375, -81.038617 ], [ -69.609375, -81.093214 ], [ -69.257812, -81.093214 ], [ -69.257812, -81.147481 ], [ -68.906250, -81.147481 ], [ -68.906250, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.308321 ], [ -67.851562, -81.308321 ], [ -67.851562, -81.361287 ], [ -67.148438, -81.361287 ], [ -67.148438, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.518272 ], [ -65.390625, -81.518272 ], [ -65.390625, -81.569968 ], [ -65.039062, -81.569968 ], [ -65.039062, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.723188 ], [ -63.632812, -81.723188 ], [ -63.632812, -81.773644 ], [ -63.281250, -81.773644 ], [ -63.281250, -81.823794 ], [ -62.929688, -81.823794 ], [ -62.929688, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.972431 ], [ -61.875000, -81.972431 ], [ -61.875000, -82.021378 ], [ -61.523438, -82.021378 ], [ -61.523438, -82.070028 ], [ -61.171875, -82.070028 ], [ -61.171875, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.214217 ], [ -60.468750, -82.214217 ], [ -60.468750, -82.261699 ], [ -60.117188, -82.261699 ], [ -60.117188, -82.355800 ], [ -59.765625, -82.355800 ], [ -59.765625, -82.448764 ], [ -59.414062, -82.448764 ], [ -59.414062, -82.631333 ], [ -59.062500, -82.631333 ], [ -59.062500, -82.809511 ], [ -58.710938, -82.809511 ], [ -58.710938, -83.068774 ], [ -58.359375, -83.068774 ], [ -58.359375, -83.194896 ], [ -58.007812, -83.194896 ], [ -58.007812, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -83.026219 ], [ -57.304688, -83.026219 ], [ -57.304688, -82.940327 ], [ -56.953125, -82.940327 ], [ -56.953125, -82.853382 ], [ -56.601562, -82.853382 ], [ -56.601562, -82.809511 ], [ -56.250000, -82.809511 ], [ -56.250000, -82.720964 ], [ -55.898438, -82.720964 ], [ -55.898438, -82.676285 ], [ -55.546875, -82.676285 ], [ -55.546875, -82.631333 ], [ -55.195312, -82.631333 ], [ -55.195312, -82.586106 ], [ -54.843750, -82.586106 ], [ -54.843750, -82.494824 ], [ -54.492188, -82.494824 ], [ -54.492188, -82.402423 ], [ -54.140625, -82.402423 ], [ -54.140625, -82.308893 ], [ -53.789062, -82.308893 ], [ -53.789062, -82.261699 ], [ -53.437500, -82.261699 ], [ -53.437500, -82.214217 ], [ -53.085938, -82.214217 ], [ -53.085938, -82.166446 ], [ -52.382812, -82.166446 ], [ -52.382812, -82.118384 ], [ -52.031250, -82.118384 ], [ -52.031250, -82.070028 ], [ -51.679688, -82.070028 ], [ -51.679688, -82.021378 ], [ -51.328125, -82.021378 ], [ -51.328125, -81.972431 ], [ -50.976562, -81.972431 ], [ -50.976562, -81.873641 ], [ -50.625000, -81.873641 ], [ -50.625000, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.723188 ], [ -46.757812, -81.723188 ], [ -46.757812, -81.773644 ], [ -45.703125, -81.773644 ], [ -45.703125, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.923186 ], [ -44.296875, -81.923186 ], [ -44.296875, -81.972431 ], [ -43.593750, -81.972431 ], [ -43.593750, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -81.972431 ], [ -42.539062, -81.972431 ], [ -42.539062, -81.773644 ], [ -42.187500, -81.773644 ], [ -42.187500, -81.672424 ], [ -41.835938, -81.672424 ], [ -41.835938, -81.569968 ], [ -41.484375, -81.569968 ], [ -41.484375, -81.518272 ], [ -41.132812, -81.518272 ], [ -41.132812, -81.413933 ], [ -40.781250, -81.413933 ], [ -40.781250, -81.361287 ], [ -37.968750, -81.361287 ], [ -37.968750, -81.308321 ], [ -37.265625, -81.308321 ], [ -37.265625, -81.255032 ], [ -36.914062, -81.255032 ], [ -36.914062, -81.201420 ], [ -36.210938, -81.201420 ], [ -36.210938, -81.147481 ], [ -35.859375, -81.147481 ], [ -35.859375, -81.093214 ], [ -35.507812, -81.093214 ], [ -35.507812, -81.038617 ], [ -34.804688, -81.038617 ], [ -34.804688, -80.983688 ], [ -34.453125, -80.983688 ], [ -34.453125, -80.928426 ], [ -33.750000, -80.928426 ], [ -33.750000, -80.872827 ], [ -33.046875, -80.872827 ], [ -33.046875, -80.816891 ], [ -32.343750, -80.816891 ], [ -32.343750, -80.760615 ], [ -31.640625, -80.760615 ], [ -31.640625, -80.703997 ], [ -30.937500, -80.703997 ], [ -30.937500, -80.647035 ], [ -30.234375, -80.647035 ], [ -30.234375, -80.589727 ], [ -29.882812, -80.589727 ], [ -29.882812, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.474065 ], [ -28.828125, -80.474065 ], [ -28.828125, -80.415707 ], [ -28.476562, -80.415707 ], [ -28.476562, -80.297927 ], [ -28.828125, -80.297927 ], [ -28.828125, -80.118564 ], [ -29.179688, -80.118564 ], [ -29.179688, -79.812302 ], [ -29.531250, -79.812302 ], [ -29.531250, -79.237185 ], [ -30.234375, -79.237185 ], [ -30.234375, -79.302640 ], [ -31.992188, -79.302640 ], [ -31.992188, -79.367701 ], [ -33.046875, -79.367701 ], [ -33.046875, -79.432371 ], [ -35.507812, -79.432371 ], [ -35.507812, -79.302640 ], [ -35.859375, -79.302640 ], [ -35.859375, -78.349411 ], [ -35.507812, -78.349411 ], [ -35.507812, -78.206563 ], [ -35.156250, -78.206563 ], [ -35.156250, -78.134493 ], [ -34.804688, -78.134493 ], [ -34.804688, -78.061989 ], [ -34.101562, -78.061989 ], [ -34.101562, -77.989049 ], [ -33.750000, -77.989049 ], [ -33.750000, -77.915669 ], [ -33.398438, -77.915669 ], [ -33.398438, -77.841848 ], [ -33.046875, -77.841848 ], [ -33.046875, -77.767582 ], [ -32.695312, -77.767582 ], [ -32.695312, -77.692870 ], [ -32.343750, -77.692870 ], [ -32.343750, -77.617709 ], [ -31.992188, -77.617709 ], [ -31.992188, -77.542096 ], [ -31.289062, -77.542096 ], [ -31.289062, -77.466028 ], [ -30.937500, -77.466028 ], [ -30.937500, -77.389504 ], [ -30.585938, -77.389504 ], [ -30.585938, -77.235074 ], [ -30.234375, -77.235074 ], [ -30.234375, -77.157163 ], [ -29.882812, -77.157163 ], [ -29.882812, -77.078784 ], [ -29.531250, -77.078784 ], [ -29.531250, -76.920614 ], [ -29.179688, -76.920614 ], [ -29.179688, -76.760541 ], [ -28.828125, -76.760541 ], [ -28.828125, -76.679785 ], [ -28.125000, -76.679785 ], [ -28.125000, -76.598545 ], [ -27.421875, -76.598545 ], [ -27.421875, -76.516819 ], [ -26.718750, -76.516819 ], [ -26.718750, -76.434604 ], [ -26.015625, -76.434604 ], [ -26.015625, -76.351896 ], [ -25.312500, -76.351896 ], [ -25.312500, -76.268695 ], [ -23.203125, -76.268695 ], [ -23.203125, -76.184995 ], [ -22.500000, -76.184995 ], [ -22.500000, -76.100796 ], [ -21.796875, -76.100796 ], [ -21.796875, -76.016094 ], [ -21.093750, -76.016094 ], [ -21.093750, -75.930885 ], [ -20.742188, -75.930885 ], [ -20.742188, -75.845169 ], [ -20.390625, -75.845169 ], [ -20.390625, -75.758940 ], [ -20.039062, -75.758940 ], [ -20.039062, -75.672197 ], [ -19.687500, -75.672197 ], [ -19.687500, -75.584937 ], [ -19.335938, -75.584937 ], [ -19.335938, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.408854 ], [ -18.632812, -75.408854 ], [ -18.632812, -75.320025 ], [ -17.929688, -75.320025 ], [ -17.929688, -75.230667 ], [ -17.578125, -75.230667 ], [ -17.578125, -75.140778 ], [ -17.226562, -75.140778 ], [ -17.226562, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.867889 ], [ -16.523438, -74.867889 ], [ -16.523438, -74.775843 ], [ -16.171875, -74.775843 ], [ -16.171875, -74.590108 ], [ -15.820312, -74.590108 ], [ -15.820312, -74.307353 ], [ -15.468750, -74.307353 ], [ -15.468750, -74.116047 ], [ -15.820312, -74.116047 ], [ -15.820312, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.922469 ], [ -16.523438, -73.922469 ], [ -16.523438, -73.627789 ], [ -16.171875, -73.627789 ], [ -16.171875, -73.428424 ], [ -15.820312, -73.428424 ], [ -15.820312, -73.226700 ], [ -15.468750, -73.226700 ], [ -15.468750, -73.124945 ], [ -15.117188, -73.124945 ], [ -15.117188, -73.022592 ], [ -14.414062, -73.022592 ], [ -14.414062, -72.919635 ], [ -14.062500, -72.919635 ], [ -14.062500, -72.816074 ], [ -13.359375, -72.816074 ], [ -13.359375, -72.711903 ], [ -13.007812, -72.711903 ], [ -13.007812, -72.607120 ], [ -12.656250, -72.607120 ], [ -12.656250, -72.501722 ], [ -12.304688, -72.501722 ], [ -12.304688, -72.289067 ], [ -11.953125, -72.289067 ], [ -11.953125, -72.073911 ], [ -11.601562, -72.073911 ], [ -11.601562, -71.856229 ], [ -11.250000, -71.856229 ], [ -11.250000, -71.635993 ], [ -10.898438, -71.635993 ], [ -10.898438, -71.524909 ], [ -10.546875, -71.524909 ], [ -10.546875, -71.413177 ], [ -10.195312, -71.413177 ], [ -10.195312, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.413177 ], [ -8.789062, -71.413177 ], [ -8.789062, -71.635993 ], [ -8.085938, -71.635993 ], [ -8.085938, -71.746432 ], [ -7.382812, -71.746432 ], [ -7.382812, -71.187754 ], [ -7.031250, -71.187754 ], [ -7.031250, -70.959697 ], [ -6.679688, -70.959697 ], [ -6.679688, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.413177 ], [ -3.515625, -71.413177 ], [ -3.515625, -71.300793 ], [ -2.109375, -71.300793 ], [ -2.109375, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.406250, -71.300793 ], [ 1.406250, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.428424 ], [ -90.351562, -73.428424 ], [ -90.351562, -73.327858 ], [ -90.000000, -73.327858 ], [ -90.000000, -73.226700 ], [ -89.648438, -73.226700 ], [ -89.648438, -72.816074 ], [ -89.296875, -72.816074 ], [ -89.296875, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.124945 ], [ -87.890625, -73.124945 ], [ -87.890625, -73.226700 ], [ -86.484375, -73.226700 ], [ -86.484375, -73.124945 ], [ -86.132812, -73.124945 ], [ -86.132812, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.327858 ], [ -85.429688, -73.327858 ], [ -85.429688, -73.528399 ], [ -83.671875, -73.528399 ], [ -83.671875, -73.627789 ], [ -82.617188, -73.627789 ], [ -82.617188, -73.726595 ], [ -81.914062, -73.726595 ], [ -81.914062, -73.824820 ], [ -81.210938, -73.824820 ], [ -81.210938, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.428424 ], [ -80.507812, -73.428424 ], [ -80.507812, -73.226700 ], [ -79.804688, -73.226700 ], [ -79.804688, -73.428424 ], [ -79.453125, -73.428424 ], [ -79.453125, -73.528399 ], [ -78.398438, -73.528399 ], [ -78.398438, -73.428424 ], [ -78.046875, -73.428424 ], [ -78.046875, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.726595 ], [ -76.640625, -73.726595 ], [ -76.640625, -73.922469 ], [ -75.234375, -73.922469 ], [ -75.234375, -73.824820 ], [ -74.531250, -73.824820 ], [ -74.531250, -73.726595 ], [ -73.828125, -73.726595 ], [ -73.828125, -73.627789 ], [ -73.476562, -73.627789 ], [ -73.476562, -73.528399 ], [ -72.773438, -73.528399 ], [ -72.773438, -73.428424 ], [ -72.421875, -73.428424 ], [ -72.421875, -73.327858 ], [ -71.718750, -73.327858 ], [ -71.718750, -73.226700 ], [ -70.664062, -73.226700 ], [ -70.664062, -73.124945 ], [ -69.257812, -73.124945 ], [ -69.257812, -73.022592 ], [ -68.554688, -73.022592 ], [ -68.554688, -72.919635 ], [ -67.851562, -72.919635 ], [ -67.851562, -72.711903 ], [ -67.500000, -72.711903 ], [ -67.500000, -72.289067 ], [ -67.148438, -72.289067 ], [ -67.148438, -71.524909 ], [ -67.500000, -71.524909 ], [ -67.500000, -71.074056 ], [ -67.851562, -71.074056 ], [ -67.851562, -70.728979 ], [ -68.203125, -70.728979 ], [ -68.203125, -70.377854 ], [ -68.554688, -70.377854 ], [ -68.554688, -71.187754 ], [ -68.203125, -71.187754 ], [ -68.203125, -71.635993 ], [ -68.554688, -71.635993 ], [ -68.554688, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.181804 ], [ -69.257812, -72.181804 ], [ -69.257812, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.395706 ], [ -70.664062, -72.395706 ], [ -70.664062, -72.501722 ], [ -72.421875, -72.501722 ], [ -72.421875, -72.289067 ], [ -72.070312, -72.289067 ], [ -72.070312, -72.073911 ], [ -72.421875, -72.073911 ], [ -72.421875, -72.181804 ], [ -73.125000, -72.181804 ], [ -73.125000, -72.289067 ], [ -73.828125, -72.289067 ], [ -73.828125, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -72.181804 ], [ -74.882812, -72.181804 ], [ -74.882812, -71.635993 ], [ -74.531250, -71.635993 ], [ -74.531250, -71.524909 ], [ -74.179688, -71.524909 ], [ -74.179688, -71.413177 ], [ -73.828125, -71.413177 ], [ -73.828125, -71.300793 ], [ -73.125000, -71.300793 ], [ -73.125000, -71.187754 ], [ -72.070312, -71.187754 ], [ -72.070312, -70.959697 ], [ -71.718750, -70.959697 ], [ -71.718750, -69.411242 ], [ -71.367188, -69.411242 ], [ -71.367188, -69.162558 ], [ -71.015625, -69.162558 ], [ -71.015625, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.287257 ], [ -69.609375, -69.287257 ], [ -69.609375, -69.778952 ], [ -69.257812, -69.778952 ], [ -69.257812, -70.020587 ], [ -68.906250, -70.020587 ], [ -68.906250, -70.259452 ], [ -68.554688, -70.259452 ], [ -68.554688, -69.287257 ], [ -68.203125, -69.287257 ], [ -68.203125, -69.037142 ], [ -67.851562, -69.037142 ], [ -67.851562, -68.784144 ], [ -67.500000, -68.784144 ], [ -67.500000, -67.609221 ], [ -67.851562, -67.609221 ], [ -67.851562, -67.339861 ], [ -67.500000, -67.339861 ], [ -67.500000, -67.067433 ], [ -67.148438, -67.067433 ], [ -67.148438, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.372755 ], [ -66.093750, -66.372755 ], [ -66.093750, -66.231457 ], [ -65.742188, -66.231457 ], [ -65.742188, -66.089364 ], [ -65.390625, -66.089364 ], [ -65.390625, -65.946472 ], [ -65.039062, -65.946472 ], [ -65.039062, -65.802776 ], [ -62.578125, -65.802776 ] ] ], [ [ [ -46.054688, -77.915669 ], [ -46.054688, -77.989049 ], [ -45.351562, -77.989049 ], [ -45.351562, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.134493 ], [ -44.648438, -78.134493 ], [ -44.648438, -78.278201 ], [ -44.296875, -78.278201 ], [ -44.296875, -78.420193 ], [ -43.945312, -78.420193 ], [ -43.945312, -78.836065 ], [ -43.593750, -78.836065 ], [ -43.593750, -79.302640 ], [ -43.242188, -79.302640 ], [ -43.242188, -80.058050 ], [ -43.593750, -80.058050 ], [ -43.593750, -80.118564 ], [ -43.945312, -80.118564 ], [ -43.945312, -80.178713 ], [ -44.296875, -80.178713 ], [ -44.296875, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.474065 ], [ -45.703125, -80.474065 ], [ -45.703125, -80.532071 ], [ -46.054688, -80.532071 ], [ -46.054688, -80.589727 ], [ -46.406250, -80.589727 ], [ -46.406250, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.703997 ], [ -47.460938, -80.703997 ], [ -47.460938, -80.760615 ], [ -48.164062, -80.760615 ], [ -48.164062, -80.816891 ], [ -48.515625, -80.816891 ], [ -48.515625, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.928426 ], [ -49.570312, -80.928426 ], [ -49.570312, -80.983688 ], [ -50.273438, -80.983688 ], [ -50.273438, -81.038617 ], [ -52.031250, -81.038617 ], [ -52.031250, -80.983688 ], [ -53.085938, -80.983688 ], [ -53.085938, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.789062, -80.816891 ], [ -53.789062, -80.703997 ], [ -54.140625, -80.703997 ], [ -54.140625, -80.238501 ], [ -53.789062, -80.238501 ], [ -53.789062, -80.178713 ], [ -53.085938, -80.178713 ], [ -53.085938, -80.118564 ], [ -52.734375, -80.118564 ], [ -52.734375, -80.058050 ], [ -52.382812, -80.058050 ], [ -52.382812, -79.997168 ], [ -51.679688, -79.997168 ], [ -51.679688, -79.874297 ], [ -51.328125, -79.874297 ], [ -51.328125, -79.749932 ], [ -50.976562, -79.749932 ], [ -50.976562, -79.560546 ], [ -50.625000, -79.560546 ], [ -50.625000, -79.302640 ], [ -50.273438, -79.302640 ], [ -50.273438, -79.038437 ], [ -49.921875, -79.038437 ], [ -49.921875, -78.767792 ], [ -49.570312, -78.767792 ], [ -49.570312, -78.630006 ], [ -49.218750, -78.630006 ], [ -49.218750, -78.420193 ], [ -48.867188, -78.420193 ], [ -48.867188, -78.206563 ], [ -48.515625, -78.206563 ], [ -48.515625, -78.061989 ], [ -47.812500, -78.061989 ], [ -47.812500, -77.989049 ], [ -47.109375, -77.989049 ], [ -47.109375, -77.915669 ], [ -46.054688, -77.915669 ] ] ], [ [ [ -60.117188, -79.749932 ], [ -60.117188, -79.874297 ], [ -59.765625, -79.874297 ], [ -59.765625, -79.997168 ], [ -59.414062, -79.997168 ], [ -59.414062, -80.297927 ], [ -59.765625, -80.297927 ], [ -59.765625, -80.760615 ], [ -60.117188, -80.760615 ], [ -60.117188, -80.983688 ], [ -60.820312, -80.983688 ], [ -60.820312, -80.928426 ], [ -61.875000, -80.928426 ], [ -61.875000, -80.872827 ], [ -62.929688, -80.872827 ], [ -62.929688, -80.928426 ], [ -64.687500, -80.928426 ], [ -64.687500, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.760615 ], [ -65.390625, -80.760615 ], [ -65.390625, -80.647035 ], [ -65.742188, -80.647035 ], [ -65.742188, -80.474065 ], [ -66.093750, -80.474065 ], [ -66.093750, -80.356995 ], [ -66.445312, -80.356995 ], [ -66.445312, -80.238501 ], [ -65.390625, -80.238501 ], [ -65.390625, -80.297927 ], [ -63.632812, -80.297927 ], [ -63.632812, -80.356995 ], [ -62.578125, -80.356995 ], [ -62.578125, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.356995 ], [ -61.523438, -80.356995 ], [ -61.523438, -80.118564 ], [ -61.171875, -80.118564 ], [ -61.171875, -79.935918 ], [ -60.820312, -79.935918 ], [ -60.820312, -79.749932 ], [ -60.117188, -79.749932 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.929688, -65.802776 ], [ -62.929688, -65.946472 ], [ -62.578125, -65.946472 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.231457 ], [ -62.578125, -66.231457 ], [ -62.578125, -66.372755 ], [ -63.984375, -66.372755 ], [ -63.984375, -66.652977 ], [ -64.335938, -66.652977 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.067433 ], [ -65.039062, -67.067433 ], [ -65.039062, -67.204032 ], [ -65.390625, -67.204032 ], [ -65.390625, -67.474922 ], [ -65.742188, -67.474922 ], [ -65.742188, -68.138852 ], [ -65.390625, -68.138852 ], [ -65.390625, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -69.411242 ], [ -62.929688, -69.411242 ], [ -62.929688, -69.778952 ], [ -62.578125, -69.778952 ], [ -62.578125, -70.495574 ], [ -62.226562, -70.495574 ], [ -62.226562, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.844673 ], [ -61.523438, -70.844673 ], [ -61.523438, -72.181804 ], [ -61.171875, -72.181804 ], [ -61.171875, -72.919635 ], [ -60.820312, -72.919635 ], [ -60.820312, -73.428424 ], [ -61.171875, -73.428424 ], [ -61.171875, -73.824820 ], [ -61.523438, -73.824820 ], [ -61.523438, -74.116047 ], [ -61.875000, -74.116047 ], [ -61.875000, -74.307353 ], [ -62.226562, -74.307353 ], [ -62.226562, -74.402163 ], [ -62.578125, -74.402163 ], [ -62.578125, -74.496413 ], [ -63.632812, -74.496413 ], [ -63.632812, -74.683250 ], [ -63.984375, -74.683250 ], [ -63.984375, -74.959392 ], [ -64.335938, -74.959392 ], [ -64.335938, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.320025 ], [ -65.039062, -75.320025 ], [ -65.039062, -75.408854 ], [ -65.390625, -75.408854 ], [ -65.390625, -75.497157 ], [ -65.742188, -75.497157 ], [ -65.742188, -75.584937 ], [ -66.093750, -75.584937 ], [ -66.093750, -75.672197 ], [ -66.796875, -75.672197 ], [ -66.796875, -75.758940 ], [ -67.500000, -75.758940 ], [ -67.500000, -75.845169 ], [ -68.203125, -75.845169 ], [ -68.203125, -75.930885 ], [ -68.554688, -75.930885 ], [ -68.554688, -76.016094 ], [ -68.906250, -76.016094 ], [ -68.906250, -76.100796 ], [ -69.609375, -76.100796 ], [ -69.609375, -76.184995 ], [ -69.960938, -76.184995 ], [ -69.960938, -76.351896 ], [ -70.312500, -76.351896 ], [ -70.312500, -76.516819 ], [ -70.664062, -76.516819 ], [ -70.664062, -76.598545 ], [ -74.531250, -76.598545 ], [ -74.531250, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.920614 ], [ -76.992188, -76.920614 ], [ -76.992188, -77.157163 ], [ -76.289062, -77.157163 ], [ -76.289062, -77.235074 ], [ -75.585938, -77.235074 ], [ -75.585938, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.542096 ], [ -74.531250, -77.542096 ], [ -74.531250, -77.617709 ], [ -74.179688, -77.617709 ], [ -74.179688, -77.767582 ], [ -73.828125, -77.767582 ], [ -73.828125, -77.915669 ], [ -74.179688, -77.915669 ], [ -74.179688, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.206563 ], [ -75.585938, -78.206563 ], [ -75.585938, -78.134493 ], [ -76.289062, -78.134493 ], [ -76.289062, -78.061989 ], [ -76.640625, -78.061989 ], [ -76.640625, -78.134493 ], [ -76.992188, -78.134493 ], [ -76.992188, -78.206563 ], [ -77.343750, -78.206563 ], [ -77.343750, -78.278201 ], [ -77.695312, -78.278201 ], [ -77.695312, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.237185 ], [ -77.695312, -79.237185 ], [ -77.695312, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.496652 ], [ -76.992188, -79.496652 ], [ -76.992188, -79.687184 ], [ -76.640625, -79.687184 ], [ -76.640625, -79.935918 ], [ -76.289062, -79.935918 ], [ -76.289062, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.178713 ], [ -75.585938, -80.178713 ], [ -75.585938, -80.297927 ], [ -74.882812, -80.297927 ], [ -74.882812, -80.356995 ], [ -74.179688, -80.356995 ], [ -74.179688, -80.415707 ], [ -73.476562, -80.415707 ], [ -73.476562, -80.474065 ], [ -73.125000, -80.474065 ], [ -73.125000, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.816891 ], [ -71.015625, -80.816891 ], [ -71.015625, -80.872827 ], [ -70.664062, -80.872827 ], [ -70.664062, -80.983688 ], [ -70.312500, -80.983688 ], [ -70.312500, -81.038617 ], [ -69.960938, -81.038617 ], [ -69.960938, -81.093214 ], [ -69.609375, -81.093214 ], [ -69.609375, -81.147481 ], [ -69.257812, -81.147481 ], [ -69.257812, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.308321 ], [ -67.851562, -81.308321 ], [ -67.851562, -81.361287 ], [ -67.148438, -81.361287 ], [ -67.148438, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.518272 ], [ -65.039062, -81.518272 ], [ -65.039062, -81.569968 ], [ -64.687500, -81.569968 ], [ -64.687500, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.672424 ], [ -63.632812, -81.672424 ], [ -63.632812, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.773644 ], [ -62.929688, -81.773644 ], [ -62.929688, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -82.021378 ], [ -61.875000, -82.021378 ], [ -61.875000, -82.070028 ], [ -61.523438, -82.070028 ], [ -61.523438, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.261699 ], [ -60.468750, -82.261699 ], [ -60.468750, -82.308893 ], [ -60.117188, -82.308893 ], [ -60.117188, -82.355800 ], [ -59.765625, -82.355800 ], [ -59.765625, -82.448764 ], [ -59.414062, -82.448764 ], [ -59.414062, -82.586106 ], [ -59.062500, -82.586106 ], [ -59.062500, -82.765373 ], [ -58.710938, -82.765373 ], [ -58.710938, -83.026219 ], [ -58.359375, -83.026219 ], [ -58.359375, -83.153111 ], [ -58.007812, -83.153111 ], [ -58.007812, -83.026219 ], [ -57.656250, -83.026219 ], [ -57.656250, -82.940327 ], [ -57.304688, -82.940327 ], [ -57.304688, -82.853382 ], [ -56.953125, -82.853382 ], [ -56.953125, -82.765373 ], [ -56.601562, -82.765373 ], [ -56.601562, -82.720964 ], [ -56.250000, -82.720964 ], [ -56.250000, -82.676285 ], [ -55.898438, -82.676285 ], [ -55.898438, -82.586106 ], [ -55.546875, -82.586106 ], [ -55.546875, -82.540604 ], [ -55.195312, -82.540604 ], [ -55.195312, -82.448764 ], [ -54.843750, -82.448764 ], [ -54.843750, -82.402423 ], [ -54.492188, -82.402423 ], [ -54.492188, -82.355800 ], [ -54.140625, -82.355800 ], [ -54.140625, -82.261699 ], [ -53.789062, -82.261699 ], [ -53.789062, -82.214217 ], [ -53.437500, -82.214217 ], [ -53.437500, -82.166446 ], [ -53.085938, -82.166446 ], [ -53.085938, -82.118384 ], [ -52.382812, -82.118384 ], [ -52.382812, -82.070028 ], [ -52.031250, -82.070028 ], [ -52.031250, -82.021378 ], [ -51.679688, -82.021378 ], [ -51.679688, -81.972431 ], [ -51.328125, -81.972431 ], [ -51.328125, -81.923186 ], [ -50.976562, -81.923186 ], [ -50.976562, -81.873641 ], [ -50.625000, -81.873641 ], [ -50.625000, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.723188 ], [ -48.515625, -81.723188 ], [ -48.515625, -81.672424 ], [ -47.109375, -81.672424 ], [ -47.109375, -81.723188 ], [ -46.406250, -81.723188 ], [ -46.406250, -81.773644 ], [ -45.703125, -81.773644 ], [ -45.703125, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.923186 ], [ -44.296875, -81.923186 ], [ -44.296875, -81.972431 ], [ -43.593750, -81.972431 ], [ -43.593750, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -81.972431 ], [ -42.539062, -81.972431 ], [ -42.539062, -81.773644 ], [ -42.187500, -81.773644 ], [ -42.187500, -81.621352 ], [ -41.835938, -81.621352 ], [ -41.835938, -81.518272 ], [ -41.484375, -81.518272 ], [ -41.484375, -81.466261 ], [ -41.132812, -81.466261 ], [ -41.132812, -81.361287 ], [ -40.781250, -81.361287 ], [ -40.781250, -81.308321 ], [ -37.968750, -81.308321 ], [ -37.968750, -81.255032 ], [ -37.617188, -81.255032 ], [ -37.617188, -81.201420 ], [ -36.914062, -81.201420 ], [ -36.914062, -81.147481 ], [ -36.562500, -81.147481 ], [ -36.562500, -81.093214 ], [ -36.210938, -81.093214 ], [ -36.210938, -81.038617 ], [ -35.507812, -81.038617 ], [ -35.507812, -80.983688 ], [ -35.156250, -80.983688 ], [ -35.156250, -80.928426 ], [ -34.453125, -80.928426 ], [ -34.453125, -80.872827 ], [ -33.750000, -80.872827 ], [ -33.750000, -80.816891 ], [ -32.695312, -80.816891 ], [ -32.695312, -80.760615 ], [ -31.640625, -80.760615 ], [ -31.640625, -80.703997 ], [ -30.937500, -80.703997 ], [ -30.937500, -80.647035 ], [ -30.234375, -80.647035 ], [ -30.234375, -80.589727 ], [ -29.882812, -80.589727 ], [ -29.882812, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.415707 ], [ -29.179688, -80.415707 ], [ -29.179688, -80.356995 ], [ -28.828125, -80.356995 ], [ -28.828125, -80.238501 ], [ -29.179688, -80.238501 ], [ -29.179688, -80.058050 ], [ -29.531250, -80.058050 ], [ -29.531250, -79.812302 ], [ -29.882812, -79.812302 ], [ -29.882812, -79.237185 ], [ -31.640625, -79.237185 ], [ -31.640625, -79.302640 ], [ -32.343750, -79.302640 ], [ -32.343750, -79.367701 ], [ -33.046875, -79.367701 ], [ -33.046875, -79.432371 ], [ -35.859375, -79.432371 ], [ -35.859375, -79.237185 ], [ -36.210938, -79.237185 ], [ -36.210938, -78.699106 ], [ -35.859375, -78.699106 ], [ -35.859375, -78.206563 ], [ -35.507812, -78.206563 ], [ -35.507812, -78.061989 ], [ -35.156250, -78.061989 ], [ -35.156250, -77.989049 ], [ -34.453125, -77.989049 ], [ -34.453125, -77.915669 ], [ -34.101562, -77.915669 ], [ -34.101562, -77.841848 ], [ -33.750000, -77.841848 ], [ -33.750000, -77.767582 ], [ -33.046875, -77.767582 ], [ -33.046875, -77.692870 ], [ -32.343750, -77.692870 ], [ -32.343750, -77.617709 ], [ -31.992188, -77.617709 ], [ -31.992188, -77.466028 ], [ -31.640625, -77.466028 ], [ -31.640625, -77.389504 ], [ -31.289062, -77.389504 ], [ -31.289062, -77.312520 ], [ -30.937500, -77.312520 ], [ -30.937500, -77.235074 ], [ -30.585938, -77.235074 ], [ -30.585938, -77.157163 ], [ -30.234375, -77.157163 ], [ -30.234375, -77.078784 ], [ -29.882812, -77.078784 ], [ -29.882812, -76.920614 ], [ -29.531250, -76.920614 ], [ -29.531250, -76.760541 ], [ -29.179688, -76.760541 ], [ -29.179688, -76.598545 ], [ -28.476562, -76.598545 ], [ -28.476562, -76.516819 ], [ -27.773438, -76.516819 ], [ -27.773438, -76.434604 ], [ -26.718750, -76.434604 ], [ -26.718750, -76.351896 ], [ -25.664062, -76.351896 ], [ -25.664062, -76.268695 ], [ -24.609375, -76.268695 ], [ -24.609375, -76.184995 ], [ -23.203125, -76.184995 ], [ -23.203125, -76.100796 ], [ -22.148438, -76.100796 ], [ -22.148438, -76.016094 ], [ -21.796875, -76.016094 ], [ -21.796875, -75.930885 ], [ -21.445312, -75.930885 ], [ -21.445312, -75.845169 ], [ -20.742188, -75.845169 ], [ -20.742188, -75.758940 ], [ -20.039062, -75.758940 ], [ -20.039062, -75.672197 ], [ -19.687500, -75.672197 ], [ -19.687500, -75.584937 ], [ -19.335938, -75.584937 ], [ -19.335938, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.408854 ], [ -18.632812, -75.408854 ], [ -18.632812, -75.320025 ], [ -18.281250, -75.320025 ], [ -18.281250, -75.230667 ], [ -17.929688, -75.230667 ], [ -17.929688, -75.140778 ], [ -17.578125, -75.140778 ], [ -17.578125, -75.050354 ], [ -17.226562, -75.050354 ], [ -17.226562, -74.867889 ], [ -16.875000, -74.867889 ], [ -16.875000, -74.775843 ], [ -16.523438, -74.775843 ], [ -16.523438, -74.683250 ], [ -16.171875, -74.683250 ], [ -16.171875, -74.590108 ], [ -15.820312, -74.590108 ], [ -15.820312, -74.307353 ], [ -15.468750, -74.307353 ], [ -15.468750, -74.019543 ], [ -15.820312, -74.019543 ], [ -15.820312, -73.922469 ], [ -16.523438, -73.922469 ], [ -16.523438, -73.627789 ], [ -16.171875, -73.627789 ], [ -16.171875, -73.428424 ], [ -15.820312, -73.428424 ], [ -15.820312, -73.226700 ], [ -15.468750, -73.226700 ], [ -15.468750, -73.124945 ], [ -15.117188, -73.124945 ], [ -15.117188, -73.022592 ], [ -14.414062, -73.022592 ], [ -14.414062, -72.919635 ], [ -14.062500, -72.919635 ], [ -14.062500, -72.816074 ], [ -13.359375, -72.816074 ], [ -13.359375, -72.711903 ], [ -13.007812, -72.711903 ], [ -13.007812, -72.607120 ], [ -12.656250, -72.607120 ], [ -12.656250, -72.501722 ], [ -12.304688, -72.501722 ], [ -12.304688, -72.289067 ], [ -11.953125, -72.289067 ], [ -11.953125, -72.073911 ], [ -11.601562, -72.073911 ], [ -11.601562, -71.746432 ], [ -11.250000, -71.746432 ], [ -11.250000, -71.524909 ], [ -10.898438, -71.524909 ], [ -10.898438, -71.300793 ], [ -10.546875, -71.300793 ], [ -10.546875, -71.187754 ], [ -10.195312, -71.187754 ], [ -10.195312, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.524909 ], [ -8.789062, -71.524909 ], [ -8.789062, -71.635993 ], [ -7.734375, -71.635993 ], [ -7.734375, -71.524909 ], [ -7.382812, -71.524909 ], [ -7.382812, -71.074056 ], [ -7.031250, -71.074056 ], [ -7.031250, -70.844673 ], [ -6.679688, -70.844673 ], [ -6.679688, -70.959697 ], [ -5.976562, -70.959697 ], [ -5.976562, -71.187754 ], [ -5.625000, -71.187754 ], [ -5.625000, -71.300793 ], [ -5.273438, -71.300793 ], [ -5.273438, -71.413177 ], [ -3.867188, -71.413177 ], [ -3.867188, -71.300793 ], [ -3.164062, -71.300793 ], [ -3.164062, -71.187754 ], [ -2.460938, -71.187754 ], [ -2.460938, -71.074056 ], [ -1.757812, -71.074056 ], [ -1.757812, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.054688, -71.300793 ], [ 1.054688, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.327858 ], [ -90.703125, -73.327858 ], [ -90.703125, -73.226700 ], [ -90.351562, -73.226700 ], [ -90.351562, -73.124945 ], [ -90.000000, -73.124945 ], [ -90.000000, -72.919635 ], [ -89.648438, -72.919635 ], [ -89.648438, -72.711903 ], [ -89.296875, -72.711903 ], [ -89.296875, -72.607120 ], [ -88.945312, -72.607120 ], [ -88.945312, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.022592 ], [ -87.890625, -73.022592 ], [ -87.890625, -73.124945 ], [ -86.484375, -73.124945 ], [ -86.484375, -73.022592 ], [ -86.132812, -73.022592 ], [ -86.132812, -73.124945 ], [ -85.781250, -73.124945 ], [ -85.781250, -73.327858 ], [ -85.429688, -73.327858 ], [ -85.429688, -73.428424 ], [ -84.023438, -73.428424 ], [ -84.023438, -73.528399 ], [ -83.320312, -73.528399 ], [ -83.320312, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -73.726595 ], [ -82.265625, -73.726595 ], [ -82.265625, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.726595 ], [ -81.210938, -73.726595 ], [ -81.210938, -73.528399 ], [ -80.859375, -73.528399 ], [ -80.859375, -73.327858 ], [ -80.507812, -73.327858 ], [ -80.507812, -73.226700 ], [ -80.156250, -73.226700 ], [ -80.156250, -73.327858 ], [ -79.804688, -73.327858 ], [ -79.804688, -73.428424 ], [ -78.398438, -73.428424 ], [ -78.398438, -73.327858 ], [ -78.046875, -73.327858 ], [ -78.046875, -73.428424 ], [ -77.695312, -73.428424 ], [ -77.695312, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.726595 ], [ -76.640625, -73.726595 ], [ -76.640625, -73.922469 ], [ -75.585938, -73.922469 ], [ -75.585938, -73.824820 ], [ -74.882812, -73.824820 ], [ -74.882812, -73.726595 ], [ -74.179688, -73.726595 ], [ -74.179688, -73.627789 ], [ -73.828125, -73.627789 ], [ -73.828125, -73.528399 ], [ -73.476562, -73.528399 ], [ -73.476562, -73.428424 ], [ -73.125000, -73.428424 ], [ -73.125000, -73.327858 ], [ -72.070312, -73.327858 ], [ -72.070312, -73.226700 ], [ -70.664062, -73.226700 ], [ -70.664062, -73.124945 ], [ -69.960938, -73.124945 ], [ -69.960938, -73.022592 ], [ -69.257812, -73.022592 ], [ -69.257812, -72.919635 ], [ -68.906250, -72.919635 ], [ -68.906250, -72.816074 ], [ -68.203125, -72.816074 ], [ -68.203125, -72.711903 ], [ -67.851562, -72.711903 ], [ -67.851562, -72.501722 ], [ -67.500000, -72.501722 ], [ -67.500000, -72.181804 ], [ -67.148438, -72.181804 ], [ -67.148438, -71.856229 ], [ -67.500000, -71.856229 ], [ -67.500000, -71.413177 ], [ -67.851562, -71.413177 ], [ -67.851562, -71.074056 ], [ -68.203125, -71.074056 ], [ -68.203125, -70.612614 ], [ -68.554688, -70.612614 ], [ -68.554688, -69.162558 ], [ -68.203125, -69.162558 ], [ -68.203125, -68.784144 ], [ -67.851562, -68.784144 ], [ -67.851562, -68.399180 ], [ -67.500000, -68.399180 ], [ -67.500000, -67.875541 ], [ -67.851562, -67.875541 ], [ -67.851562, -67.067433 ], [ -67.500000, -67.067433 ], [ -67.500000, -66.791909 ], [ -67.148438, -66.791909 ], [ -67.148438, -66.652977 ], [ -66.796875, -66.652977 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.231457 ], [ -66.093750, -66.231457 ], [ -66.093750, -66.089364 ], [ -65.742188, -66.089364 ], [ -65.742188, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.802776 ], [ -62.929688, -65.802776 ] ] ], [ [ [ -70.312500, -68.784144 ], [ -70.312500, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.411242 ], [ -69.609375, -69.411242 ], [ -69.609375, -69.778952 ], [ -69.257812, -69.778952 ], [ -69.257812, -70.259452 ], [ -68.906250, -70.259452 ], [ -68.906250, -70.728979 ], [ -68.554688, -70.728979 ], [ -68.554688, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.181804 ], [ -69.609375, -72.181804 ], [ -69.609375, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.395706 ], [ -70.664062, -72.395706 ], [ -70.664062, -72.501722 ], [ -72.070312, -72.501722 ], [ -72.070312, -72.395706 ], [ -72.421875, -72.395706 ], [ -72.421875, -72.289067 ], [ -72.070312, -72.289067 ], [ -72.070312, -72.073911 ], [ -72.421875, -72.073911 ], [ -72.421875, -72.181804 ], [ -73.476562, -72.181804 ], [ -73.476562, -72.289067 ], [ -74.882812, -72.289067 ], [ -74.882812, -72.073911 ], [ -75.234375, -72.073911 ], [ -75.234375, -71.635993 ], [ -74.882812, -71.635993 ], [ -74.882812, -71.413177 ], [ -74.531250, -71.413177 ], [ -74.531250, -71.300793 ], [ -74.179688, -71.300793 ], [ -74.179688, -71.187754 ], [ -73.476562, -71.187754 ], [ -73.476562, -71.074056 ], [ -73.125000, -71.074056 ], [ -73.125000, -71.187754 ], [ -72.421875, -71.187754 ], [ -72.421875, -70.959697 ], [ -72.070312, -70.959697 ], [ -72.070312, -69.287257 ], [ -71.718750, -69.287257 ], [ -71.718750, -69.037142 ], [ -71.367188, -69.037142 ], [ -71.367188, -68.911005 ], [ -70.664062, -68.911005 ], [ -70.664062, -68.784144 ], [ -70.312500, -68.784144 ] ] ], [ [ [ -60.468750, -79.687184 ], [ -60.468750, -79.812302 ], [ -60.117188, -79.812302 ], [ -60.117188, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -80.297927 ], [ -60.117188, -80.297927 ], [ -60.117188, -80.760615 ], [ -60.468750, -80.760615 ], [ -60.468750, -80.983688 ], [ -61.171875, -80.983688 ], [ -61.171875, -80.928426 ], [ -61.875000, -80.928426 ], [ -61.875000, -80.872827 ], [ -62.578125, -80.872827 ], [ -62.578125, -80.816891 ], [ -63.281250, -80.816891 ], [ -63.281250, -80.872827 ], [ -64.687500, -80.872827 ], [ -64.687500, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.703997 ], [ -65.390625, -80.703997 ], [ -65.390625, -80.589727 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.474065 ], [ -66.093750, -80.474065 ], [ -66.093750, -80.356995 ], [ -66.445312, -80.356995 ], [ -66.445312, -80.238501 ], [ -63.984375, -80.238501 ], [ -63.984375, -80.297927 ], [ -62.929688, -80.297927 ], [ -62.929688, -80.356995 ], [ -62.226562, -80.356995 ], [ -62.226562, -80.297927 ], [ -61.875000, -80.297927 ], [ -61.875000, -80.178713 ], [ -61.523438, -80.178713 ], [ -61.523438, -80.058050 ], [ -61.171875, -80.058050 ], [ -61.171875, -79.812302 ], [ -60.820312, -79.812302 ], [ -60.820312, -79.687184 ], [ -60.468750, -79.687184 ] ] ], [ [ [ -46.406250, -77.841848 ], [ -46.406250, -77.915669 ], [ -45.703125, -77.915669 ], [ -45.703125, -77.989049 ], [ -45.351562, -77.989049 ], [ -45.351562, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.206563 ], [ -44.648438, -78.206563 ], [ -44.648438, -78.278201 ], [ -44.296875, -78.278201 ], [ -44.296875, -78.420193 ], [ -43.945312, -78.420193 ], [ -43.945312, -78.767792 ], [ -43.593750, -78.767792 ], [ -43.593750, -80.058050 ], [ -43.945312, -80.058050 ], [ -43.945312, -80.118564 ], [ -44.296875, -80.118564 ], [ -44.296875, -80.238501 ], [ -44.648438, -80.238501 ], [ -44.648438, -80.297927 ], [ -45.000000, -80.297927 ], [ -45.000000, -80.356995 ], [ -45.351562, -80.356995 ], [ -45.351562, -80.415707 ], [ -45.703125, -80.415707 ], [ -45.703125, -80.474065 ], [ -46.054688, -80.474065 ], [ -46.054688, -80.532071 ], [ -46.406250, -80.532071 ], [ -46.406250, -80.589727 ], [ -46.757812, -80.589727 ], [ -46.757812, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.703997 ], [ -47.812500, -80.703997 ], [ -47.812500, -80.760615 ], [ -48.164062, -80.760615 ], [ -48.164062, -80.816891 ], [ -48.515625, -80.816891 ], [ -48.515625, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.928426 ], [ -49.921875, -80.928426 ], [ -49.921875, -80.983688 ], [ -52.031250, -80.983688 ], [ -52.031250, -80.928426 ], [ -53.437500, -80.928426 ], [ -53.437500, -80.816891 ], [ -53.789062, -80.816891 ], [ -53.789062, -80.760615 ], [ -54.140625, -80.760615 ], [ -54.140625, -80.647035 ], [ -54.492188, -80.647035 ], [ -54.492188, -80.415707 ], [ -54.140625, -80.415707 ], [ -54.140625, -80.178713 ], [ -53.789062, -80.178713 ], [ -53.789062, -80.118564 ], [ -53.085938, -80.118564 ], [ -53.085938, -80.058050 ], [ -52.734375, -80.058050 ], [ -52.734375, -79.997168 ], [ -52.031250, -79.997168 ], [ -52.031250, -79.874297 ], [ -51.679688, -79.874297 ], [ -51.679688, -79.687184 ], [ -51.328125, -79.687184 ], [ -51.328125, -79.496652 ], [ -50.976562, -79.496652 ], [ -50.976562, -79.302640 ], [ -50.625000, -79.302640 ], [ -50.625000, -79.105086 ], [ -50.273438, -79.105086 ], [ -50.273438, -78.903929 ], [ -49.921875, -78.903929 ], [ -49.921875, -78.630006 ], [ -49.570312, -78.630006 ], [ -49.570312, -78.349411 ], [ -49.218750, -78.349411 ], [ -49.218750, -78.134493 ], [ -48.867188, -78.134493 ], [ -48.867188, -77.989049 ], [ -47.812500, -77.989049 ], [ -47.812500, -77.915669 ], [ -47.109375, -77.915669 ], [ -47.109375, -77.841848 ], [ -46.406250, -77.841848 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.960938, -3.162456 ], [ -69.960938, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -3.162456 ], [ -69.960938, -3.162456 ] ] ], [ [ [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -69.960938, 0.703107 ], [ -69.960938, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -1.054628 ], [ -69.257812, -1.054628 ], [ -69.257812, -1.406109 ], [ -69.609375, -1.406109 ], [ -69.609375, -2.811371 ], [ -69.960938, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -2.460181 ], [ -73.476562, -2.460181 ], [ -73.476562, -1.757537 ], [ -73.828125, -1.757537 ], [ -73.828125, -1.406109 ], [ -74.179688, -1.406109 ], [ -74.179688, -1.054628 ], [ -74.531250, -1.054628 ], [ -74.531250, -0.703107 ], [ -74.882812, -0.703107 ], [ -74.882812, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, 0.000000 ], [ -76.289062, 0.000000 ], [ -76.289062, 0.351560 ], [ -77.695312, 0.351560 ], [ -77.695312, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ] ] ], [ [ [ -67.148438, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.351560 ], [ -69.609375, -0.351560 ], [ -69.609375, -2.811371 ], [ -69.960938, -2.811371 ], [ -69.960938, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -3.864255 ], [ -70.664062, -3.864255 ], [ -70.664062, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -2.460181 ], [ -71.015625, -2.460181 ], [ -71.015625, -2.108899 ], [ -73.476562, -2.108899 ], [ -73.476562, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.351560 ], [ -77.343750, 0.351560 ], [ -77.343750, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -69.960938, 1.757537 ] ] ], [ [ [ -67.148438, 1.757537 ], [ -67.148438, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 1.757537 ], [ -67.148438, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.984375, 1.757537 ], [ -63.984375, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.757537 ], [ -63.984375, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.335938, 1.757537 ], [ -64.335938, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.757537 ], [ -64.335938, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, 1.757537 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 1.757537 ], [ -57.656250, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.710938, 1.757537 ], [ -58.710938, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 1.757537 ], [ -58.710938, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.046875, 1.054628 ], [ -78.046875, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -75.937500, -1.757537 ], [ -75.937500, -2.108899 ], [ -76.289062, -2.108899 ], [ -76.289062, -2.460181 ], [ -76.640625, -2.460181 ], [ -76.640625, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -3.162456 ], [ -77.695312, -3.162456 ], [ -77.695312, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -4.214943 ], [ -78.750000, -4.214943 ], [ -78.750000, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -80.507812, -4.565474 ], [ -80.507812, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -3.162456 ], [ -79.804688, -3.162456 ], [ -79.804688, -2.460181 ], [ -80.859375, -2.460181 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 0.703107 ], [ -79.453125, 0.703107 ], [ -79.453125, 1.054628 ], [ -78.046875, 1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.750000, 1.406109 ], [ -78.750000, 1.054628 ], [ -77.695312, 1.054628 ], [ -77.695312, 0.703107 ], [ -77.343750, 0.703107 ], [ -77.343750, 0.351560 ], [ -75.937500, 0.351560 ], [ -75.937500, 0.000000 ], [ -75.585938, 0.000000 ], [ -75.585938, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, -1.054628 ], [ -75.585938, -1.054628 ], [ -75.585938, -1.757537 ], [ -75.937500, -1.757537 ], [ -75.937500, -2.108899 ], [ -76.289062, -2.108899 ], [ -76.289062, -2.460181 ], [ -76.992188, -2.460181 ], [ -76.992188, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.162456 ], [ -78.398438, -3.162456 ], [ -78.398438, -3.864255 ], [ -78.750000, -3.864255 ], [ -78.750000, -4.565474 ], [ -79.101562, -4.565474 ], [ -79.101562, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -79.804688, -4.565474 ], [ -79.804688, -4.214943 ], [ -80.507812, -4.214943 ], [ -80.507812, -3.162456 ], [ -80.156250, -3.162456 ], [ -80.156250, -2.811371 ], [ -79.804688, -2.811371 ], [ -79.804688, -2.460181 ], [ -81.210938, -2.460181 ], [ -81.210938, -2.108899 ], [ -80.859375, -2.108899 ], [ -80.859375, -1.406109 ], [ -81.210938, -1.406109 ], [ -81.210938, -1.054628 ], [ -80.859375, -1.054628 ], [ -80.859375, -0.351560 ], [ -80.507812, -0.351560 ], [ -80.507812, 0.351560 ], [ -80.156250, 0.351560 ], [ -80.156250, 1.054628 ], [ -79.101562, 1.054628 ], [ -79.101562, 1.406109 ], [ -78.750000, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.351560 ], [ -74.882812, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -2.460181 ], [ -70.312500, -2.460181 ], [ -70.312500, -2.811371 ], [ -69.960938, -2.811371 ], [ -69.960938, -3.162456 ], [ -70.312500, -3.162456 ], [ -70.312500, -4.214943 ], [ -70.664062, -4.214943 ], [ -70.664062, -4.565474 ], [ -71.718750, -4.565474 ], [ -71.718750, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -73.828125, -7.013668 ], [ -73.828125, -8.059230 ], [ -73.476562, -8.059230 ], [ -73.476562, -8.754795 ], [ -73.125000, -8.754795 ], [ -73.125000, -9.449062 ], [ -72.421875, -9.449062 ], [ -72.421875, -9.795678 ], [ -72.070312, -9.795678 ], [ -72.070312, -10.141932 ], [ -71.015625, -10.141932 ], [ -71.015625, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -10.487812 ], [ -70.664062, -10.487812 ], [ -70.664062, -11.178402 ], [ -69.257812, -11.178402 ], [ -69.257812, -11.867351 ], [ -68.906250, -11.867351 ], [ -68.906250, -12.554564 ], [ -68.554688, -12.554564 ], [ -68.554688, -12.897489 ], [ -68.906250, -12.897489 ], [ -68.906250, -14.944785 ], [ -69.257812, -14.944785 ], [ -69.257812, -16.299051 ], [ -68.906250, -16.299051 ], [ -68.906250, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -17.978733 ], [ -69.960938, -17.978733 ], [ -69.960938, -18.312811 ], [ -70.664062, -18.312811 ], [ -70.664062, -17.978733 ], [ -71.367188, -17.978733 ], [ -71.367188, -17.308688 ], [ -72.070312, -17.308688 ], [ -72.070312, -16.972741 ], [ -72.773438, -16.972741 ], [ -72.773438, -16.636192 ], [ -73.476562, -16.636192 ], [ -73.476562, -16.299051 ], [ -73.828125, -16.299051 ], [ -73.828125, -15.961329 ], [ -74.531250, -15.961329 ], [ -74.531250, -15.623037 ], [ -75.234375, -15.623037 ], [ -75.234375, -15.284185 ], [ -75.585938, -15.284185 ], [ -75.585938, -14.944785 ], [ -75.937500, -14.944785 ], [ -75.937500, -14.264383 ], [ -76.289062, -14.264383 ], [ -76.289062, -13.239945 ], [ -76.640625, -13.239945 ], [ -76.640625, -12.554564 ], [ -76.992188, -12.554564 ], [ -76.992188, -12.211180 ], [ -77.343750, -12.211180 ], [ -77.343750, -11.523088 ], [ -77.695312, -11.523088 ], [ -77.695312, -10.833306 ], [ -78.046875, -10.833306 ], [ -78.046875, -10.141932 ], [ -78.398438, -10.141932 ], [ -78.398438, -9.449062 ], [ -78.750000, -9.449062 ], [ -78.750000, -8.754795 ], [ -79.101562, -8.754795 ], [ -79.101562, -8.407168 ], [ -79.453125, -8.407168 ], [ -79.453125, -7.710992 ], [ -79.804688, -7.710992 ], [ -79.804688, -7.362467 ], [ -80.156250, -7.362467 ], [ -80.156250, -7.013668 ], [ -80.507812, -7.013668 ], [ -80.507812, -6.664608 ], [ -80.859375, -6.664608 ], [ -80.859375, -6.315299 ], [ -81.210938, -6.315299 ], [ -81.210938, -5.965754 ], [ -80.859375, -5.965754 ], [ -80.859375, -5.615986 ], [ -81.210938, -5.615986 ], [ -81.210938, -4.915833 ], [ -81.562500, -4.915833 ], [ -81.562500, -4.214943 ], [ -81.210938, -4.214943 ], [ -81.210938, -3.864255 ], [ -80.507812, -3.864255 ], [ -80.507812, -3.513421 ], [ -80.156250, -3.513421 ], [ -80.156250, -4.214943 ], [ -80.507812, -4.214943 ], [ -80.507812, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -78.750000, -4.915833 ], [ -78.750000, -4.214943 ], [ -78.398438, -4.214943 ], [ -78.398438, -3.864255 ], [ -78.046875, -3.864255 ], [ -78.046875, -3.513421 ], [ -77.695312, -3.513421 ], [ -77.695312, -3.162456 ], [ -77.343750, -3.162456 ], [ -77.343750, -2.811371 ], [ -76.640625, -2.811371 ], [ -76.640625, -2.460181 ], [ -76.289062, -2.460181 ], [ -76.289062, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.351560 ], [ -74.882812, -0.351560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.234375, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.703107 ], [ -74.179688, -0.703107 ], [ -74.179688, -1.054628 ], [ -73.828125, -1.054628 ], [ -73.828125, -1.406109 ], [ -73.476562, -1.406109 ], [ -73.476562, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.460181 ], [ -70.312500, -2.460181 ], [ -70.312500, -2.811371 ], [ -70.664062, -2.811371 ], [ -70.664062, -3.864255 ], [ -70.312500, -3.864255 ], [ -70.312500, -4.214943 ], [ -71.367188, -4.214943 ], [ -71.367188, -4.565474 ], [ -72.070312, -4.565474 ], [ -72.070312, -4.915833 ], [ -72.773438, -4.915833 ], [ -72.773438, -5.266008 ], [ -73.125000, -5.266008 ], [ -73.125000, -5.965754 ], [ -73.476562, -5.965754 ], [ -73.476562, -6.315299 ], [ -73.125000, -6.315299 ], [ -73.125000, -6.664608 ], [ -73.828125, -6.664608 ], [ -73.828125, -7.362467 ], [ -74.179688, -7.362467 ], [ -74.179688, -8.059230 ], [ -73.828125, -8.059230 ], [ -73.828125, -8.754795 ], [ -73.125000, -8.754795 ], [ -73.125000, -9.102097 ], [ -73.476562, -9.102097 ], [ -73.476562, -9.449062 ], [ -72.773438, -9.449062 ], [ -72.773438, -9.795678 ], [ -70.664062, -9.795678 ], [ -70.664062, -10.833306 ], [ -69.609375, -10.833306 ], [ -69.609375, -11.523088 ], [ -69.257812, -11.523088 ], [ -69.257812, -12.211180 ], [ -68.906250, -12.211180 ], [ -68.906250, -13.239945 ], [ -69.257812, -13.239945 ], [ -69.257812, -14.604847 ], [ -69.609375, -14.604847 ], [ -69.609375, -15.284185 ], [ -69.257812, -15.284185 ], [ -69.257812, -15.623037 ], [ -69.609375, -15.623037 ], [ -69.609375, -15.961329 ], [ -69.257812, -15.961329 ], [ -69.257812, -16.972741 ], [ -69.609375, -16.972741 ], [ -69.609375, -17.644022 ], [ -69.960938, -17.644022 ], [ -69.960938, -18.312811 ], [ -71.015625, -18.312811 ], [ -71.015625, -17.978733 ], [ -71.718750, -17.978733 ], [ -71.718750, -17.308688 ], [ -72.070312, -17.308688 ], [ -72.070312, -16.972741 ], [ -72.773438, -16.972741 ], [ -72.773438, -16.636192 ], [ -73.476562, -16.636192 ], [ -73.476562, -16.299051 ], [ -73.828125, -16.299051 ], [ -73.828125, -15.961329 ], [ -74.531250, -15.961329 ], [ -74.531250, -15.623037 ], [ -74.882812, -15.623037 ], [ -74.882812, -15.284185 ], [ -75.585938, -15.284185 ], [ -75.585938, -14.944785 ], [ -76.289062, -14.944785 ], [ -76.289062, -14.264383 ], [ -76.640625, -14.264383 ], [ -76.640625, -13.581921 ], [ -76.289062, -13.581921 ], [ -76.289062, -13.239945 ], [ -76.640625, -13.239945 ], [ -76.640625, -12.897489 ], [ -76.992188, -12.897489 ], [ -76.992188, -12.554564 ], [ -77.343750, -12.554564 ], [ -77.343750, -11.867351 ], [ -77.695312, -11.867351 ], [ -77.695312, -11.178402 ], [ -78.046875, -11.178402 ], [ -78.046875, -10.487812 ], [ -78.398438, -10.487812 ], [ -78.398438, -9.795678 ], [ -78.750000, -9.795678 ], [ -78.750000, -8.754795 ], [ -79.101562, -8.754795 ], [ -79.101562, -8.059230 ], [ -79.453125, -8.059230 ], [ -79.453125, -7.362467 ], [ -79.804688, -7.362467 ], [ -79.804688, -7.013668 ], [ -80.156250, -7.013668 ], [ -80.156250, -6.664608 ], [ -80.859375, -6.664608 ], [ -80.859375, -6.315299 ], [ -81.562500, -6.315299 ], [ -81.562500, -5.965754 ], [ -81.210938, -5.965754 ], [ -81.210938, -5.266008 ], [ -81.562500, -5.266008 ], [ -81.562500, -4.214943 ], [ -81.210938, -4.214943 ], [ -81.210938, -3.864255 ], [ -80.859375, -3.864255 ], [ -80.859375, -3.513421 ], [ -80.507812, -3.513421 ], [ -80.507812, -4.214943 ], [ -79.804688, -4.214943 ], [ -79.804688, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -79.101562, -4.915833 ], [ -79.101562, -4.565474 ], [ -78.750000, -4.565474 ], [ -78.750000, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -3.162456 ], [ -78.046875, -3.162456 ], [ -78.046875, -2.811371 ], [ -76.992188, -2.811371 ], [ -76.992188, -2.460181 ], [ -76.289062, -2.460181 ], [ -76.289062, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.054628 ], [ -75.234375, -1.054628 ], [ -75.234375, -0.351560 ] ] ], [ [ [ -75.234375, -0.351560 ], [ -75.585938, -0.351560 ], [ -75.585938, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -0.351560 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.960938, -52.696361 ], [ -70.664062, -52.696361 ], [ -70.664062, -52.908902 ], [ -71.015625, -52.908902 ], [ -71.015625, -53.956086 ], [ -71.718750, -53.956086 ], [ -71.718750, -53.748711 ], [ -72.421875, -53.748711 ], [ -72.421875, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.330873 ], [ -73.476562, -53.330873 ], [ -73.476562, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -52.908902 ], [ -74.179688, -52.908902 ], [ -74.179688, -52.696361 ], [ -74.531250, -52.696361 ], [ -74.531250, -52.482780 ], [ -74.882812, -52.482780 ], [ -74.882812, -52.052490 ], [ -75.234375, -52.052490 ], [ -75.234375, -51.399206 ], [ -74.882812, -51.399206 ], [ -74.882812, -50.958427 ], [ -75.234375, -50.958427 ], [ -75.234375, -50.513427 ], [ -75.585938, -50.513427 ], [ -75.585938, -48.224673 ], [ -75.234375, -48.224673 ], [ -75.234375, -47.754098 ], [ -74.882812, -47.754098 ], [ -74.882812, -47.517201 ], [ -74.531250, -47.517201 ], [ -74.531250, -47.279229 ], [ -74.179688, -47.279229 ], [ -74.179688, -47.040182 ], [ -74.882812, -47.040182 ], [ -74.882812, -46.800059 ], [ -75.585938, -46.800059 ], [ -75.585938, -46.558860 ], [ -75.234375, -46.558860 ], [ -75.234375, -46.316584 ], [ -74.882812, -46.316584 ], [ -74.882812, -46.073231 ], [ -74.531250, -46.073231 ], [ -74.531250, -45.089036 ], [ -74.179688, -45.089036 ], [ -74.179688, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.828125, -44.339565 ], [ -73.125000, -44.339565 ], [ -73.125000, -43.325178 ], [ -72.773438, -43.325178 ], [ -72.773438, -42.293564 ], [ -73.476562, -42.293564 ], [ -73.476562, -42.811522 ], [ -73.828125, -42.811522 ], [ -73.828125, -43.325178 ], [ -74.179688, -43.325178 ], [ -74.179688, -40.979898 ], [ -73.828125, -40.979898 ], [ -73.828125, -39.909736 ], [ -73.476562, -39.909736 ], [ -73.476562, -39.639538 ], [ -73.125000, -39.639538 ], [ -73.125000, -38.822591 ], [ -73.476562, -38.822591 ], [ -73.476562, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.879621 ], [ -72.773438, -36.879621 ], [ -72.773438, -36.031332 ], [ -72.421875, -36.031332 ], [ -72.421875, -35.173808 ], [ -72.070312, -35.173808 ], [ -72.070312, -34.597042 ], [ -71.718750, -34.597042 ], [ -71.718750, -33.431441 ], [ -71.367188, -33.431441 ], [ -71.367188, -31.952162 ], [ -71.718750, -31.952162 ], [ -71.718750, -30.751278 ], [ -71.367188, -30.751278 ], [ -71.367188, -28.304381 ], [ -71.015625, -28.304381 ], [ -71.015625, -26.745610 ], [ -70.664062, -26.745610 ], [ -70.664062, -24.846565 ], [ -70.312500, -24.846565 ], [ -70.312500, -22.593726 ], [ -69.960938, -22.593726 ], [ -69.960938, -20.632784 ], [ -70.312500, -20.632784 ], [ -70.312500, -18.312811 ], [ -69.960938, -18.312811 ], [ -69.960938, -17.978733 ], [ -69.257812, -17.978733 ], [ -69.257812, -18.646245 ], [ -68.906250, -18.646245 ], [ -68.906250, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.973349 ], [ -68.906250, -19.973349 ], [ -68.906250, -20.632784 ], [ -68.554688, -20.632784 ], [ -68.554688, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -22.268764 ], [ -67.851562, -22.268764 ], [ -67.851562, -22.917923 ], [ -67.148438, -22.917923 ], [ -67.148438, -23.563987 ], [ -67.500000, -23.563987 ], [ -67.500000, -24.206890 ], [ -68.203125, -24.206890 ], [ -68.203125, -24.527135 ], [ -68.554688, -24.527135 ], [ -68.554688, -26.745610 ], [ -68.203125, -26.745610 ], [ -68.203125, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.683528 ], [ -69.257812, -27.683528 ], [ -69.257812, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.921631 ], [ -69.960938, -28.921631 ], [ -69.960938, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -31.353637 ], [ -70.664062, -31.353637 ], [ -70.664062, -31.952162 ], [ -70.312500, -31.952162 ], [ -70.312500, -32.842674 ], [ -69.960938, -32.842674 ], [ -69.960938, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -36.315125 ], [ -70.664062, -36.315125 ], [ -70.664062, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -37.996163 ], [ -70.664062, -37.996163 ], [ -70.664062, -38.822591 ], [ -71.367188, -38.822591 ], [ -71.367188, -39.368279 ], [ -71.718750, -39.368279 ], [ -71.718750, -40.446947 ], [ -72.070312, -40.446947 ], [ -72.070312, -41.508577 ], [ -71.718750, -41.508577 ], [ -71.718750, -42.293564 ], [ -72.070312, -42.293564 ], [ -72.070312, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.834527 ], [ -71.367188, -43.834527 ], [ -71.367188, -44.087585 ], [ -71.718750, -44.087585 ], [ -71.718750, -44.339565 ], [ -71.367188, -44.339565 ], [ -71.367188, -45.089036 ], [ -71.718750, -45.089036 ], [ -71.718750, -46.316584 ], [ -72.070312, -46.316584 ], [ -72.070312, -47.279229 ], [ -72.421875, -47.279229 ], [ -72.421875, -48.690960 ], [ -72.773438, -48.690960 ], [ -72.773438, -49.152970 ], [ -73.125000, -49.152970 ], [ -73.125000, -49.382373 ], [ -73.476562, -49.382373 ], [ -73.476562, -50.513427 ], [ -73.125000, -50.513427 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -51.835778 ], [ -72.070312, -51.835778 ], [ -72.070312, -52.052490 ], [ -69.257812, -52.052490 ], [ -69.257812, -52.268157 ], [ -69.609375, -52.268157 ], [ -69.609375, -52.482780 ], [ -69.960938, -52.482780 ], [ -69.960938, -52.696361 ] ] ], [ [ [ -73.828125, -53.330873 ], [ -74.179688, -53.330873 ], [ -74.179688, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -53.330873 ] ] ], [ [ [ -69.960938, -52.696361 ], [ -68.554688, -52.696361 ], [ -68.554688, -54.775346 ], [ -67.500000, -54.775346 ], [ -67.500000, -54.977614 ], [ -66.796875, -54.977614 ], [ -66.796875, -55.178868 ], [ -67.148438, -55.178868 ], [ -67.148438, -55.379110 ], [ -67.500000, -55.379110 ], [ -67.500000, -55.578345 ], [ -69.609375, -55.578345 ], [ -69.609375, -55.379110 ], [ -69.960938, -55.379110 ], [ -69.960938, -55.178868 ], [ -70.664062, -55.178868 ], [ -70.664062, -54.977614 ], [ -71.718750, -54.977614 ], [ -71.718750, -54.775346 ], [ -72.421875, -54.775346 ], [ -72.421875, -54.572062 ], [ -72.773438, -54.572062 ], [ -72.773438, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -53.956086 ], [ -73.476562, -53.956086 ], [ -73.476562, -53.748711 ], [ -73.828125, -53.748711 ], [ -73.828125, -53.330873 ], [ -73.476562, -53.330873 ], [ -73.476562, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.748711 ], [ -72.421875, -53.748711 ], [ -72.421875, -53.956086 ], [ -71.718750, -53.956086 ], [ -71.718750, -54.162434 ], [ -71.015625, -54.162434 ], [ -71.015625, -53.956086 ], [ -70.664062, -53.956086 ], [ -70.664062, -53.330873 ], [ -70.312500, -53.330873 ], [ -70.312500, -52.908902 ], [ -69.960938, -52.908902 ], [ -69.960938, -52.696361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.609375, -52.482780 ], [ -70.312500, -52.482780 ], [ -70.312500, -52.696361 ], [ -71.015625, -52.696361 ], [ -71.015625, -53.748711 ], [ -72.070312, -53.748711 ], [ -72.070312, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.330873 ], [ -73.125000, -53.330873 ], [ -73.125000, -53.120405 ], [ -73.476562, -53.120405 ], [ -73.476562, -52.908902 ], [ -73.828125, -52.908902 ], [ -73.828125, -52.696361 ], [ -74.179688, -52.696361 ], [ -74.179688, -52.482780 ], [ -74.882812, -52.482780 ], [ -74.882812, -52.268157 ], [ -75.234375, -52.268157 ], [ -75.234375, -51.835778 ], [ -75.585938, -51.835778 ], [ -75.585938, -51.399206 ], [ -75.234375, -51.399206 ], [ -75.234375, -50.736455 ], [ -75.585938, -50.736455 ], [ -75.585938, -49.382373 ], [ -75.937500, -49.382373 ], [ -75.937500, -48.224673 ], [ -75.585938, -48.224673 ], [ -75.585938, -47.754098 ], [ -75.234375, -47.754098 ], [ -75.234375, -47.517201 ], [ -74.882812, -47.517201 ], [ -74.882812, -47.279229 ], [ -74.531250, -47.279229 ], [ -74.531250, -47.040182 ], [ -74.179688, -47.040182 ], [ -74.179688, -46.800059 ], [ -75.234375, -46.800059 ], [ -75.234375, -46.558860 ], [ -75.585938, -46.558860 ], [ -75.585938, -46.073231 ], [ -75.234375, -46.073231 ], [ -75.234375, -45.828799 ], [ -74.882812, -45.828799 ], [ -74.882812, -44.840291 ], [ -74.531250, -44.840291 ], [ -74.531250, -44.087585 ], [ -74.179688, -44.087585 ], [ -74.179688, -44.339565 ], [ -73.476562, -44.339565 ], [ -73.476562, -43.834527 ], [ -73.125000, -43.834527 ], [ -73.125000, -42.811522 ], [ -72.773438, -42.811522 ], [ -72.773438, -42.293564 ], [ -73.476562, -42.293564 ], [ -73.476562, -42.811522 ], [ -73.828125, -42.811522 ], [ -73.828125, -43.325178 ], [ -74.531250, -43.325178 ], [ -74.531250, -42.553080 ], [ -74.179688, -42.553080 ], [ -74.179688, -40.979898 ], [ -73.828125, -40.979898 ], [ -73.828125, -39.639538 ], [ -73.476562, -39.639538 ], [ -73.476562, -38.822591 ], [ -73.828125, -38.822591 ], [ -73.828125, -36.879621 ], [ -73.476562, -36.879621 ], [ -73.476562, -36.597889 ], [ -73.125000, -36.597889 ], [ -73.125000, -36.031332 ], [ -72.773438, -36.031332 ], [ -72.773438, -35.173808 ], [ -72.421875, -35.173808 ], [ -72.421875, -34.307144 ], [ -72.070312, -34.307144 ], [ -72.070312, -33.137551 ], [ -71.718750, -33.137551 ], [ -71.718750, -28.304381 ], [ -71.367188, -28.304381 ], [ -71.367188, -27.683528 ], [ -71.015625, -27.683528 ], [ -71.015625, -24.527135 ], [ -70.664062, -24.527135 ], [ -70.664062, -22.593726 ], [ -70.312500, -22.593726 ], [ -70.312500, -18.979026 ], [ -70.664062, -18.979026 ], [ -70.664062, -18.312811 ], [ -69.960938, -18.312811 ], [ -69.960938, -17.644022 ], [ -69.257812, -17.644022 ], [ -69.257812, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.973349 ], [ -68.906250, -19.973349 ], [ -68.906250, -20.961440 ], [ -68.554688, -20.961440 ], [ -68.554688, -21.616579 ], [ -68.203125, -21.616579 ], [ -68.203125, -22.268764 ], [ -67.851562, -22.268764 ], [ -67.851562, -22.593726 ], [ -67.148438, -22.593726 ], [ -67.148438, -23.563987 ], [ -67.500000, -23.563987 ], [ -67.500000, -23.885838 ], [ -67.851562, -23.885838 ], [ -67.851562, -24.206890 ], [ -68.554688, -24.206890 ], [ -68.554688, -26.431228 ], [ -68.906250, -26.431228 ], [ -68.906250, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -27.059126 ], [ -68.906250, -27.059126 ], [ -68.906250, -27.371767 ], [ -69.257812, -27.371767 ], [ -69.257812, -27.683528 ], [ -69.609375, -27.683528 ], [ -69.609375, -28.304381 ], [ -69.960938, -28.304381 ], [ -69.960938, -28.921631 ], [ -70.312500, -28.921631 ], [ -70.312500, -29.840644 ], [ -69.960938, -29.840644 ], [ -69.960938, -30.448674 ], [ -70.312500, -30.448674 ], [ -70.312500, -31.052934 ], [ -70.664062, -31.052934 ], [ -70.664062, -32.249974 ], [ -70.312500, -32.249974 ], [ -70.312500, -33.137551 ], [ -69.960938, -33.137551 ], [ -69.960938, -34.307144 ], [ -70.312500, -34.307144 ], [ -70.312500, -34.885931 ], [ -70.664062, -34.885931 ], [ -70.664062, -36.031332 ], [ -71.015625, -36.031332 ], [ -71.015625, -36.597889 ], [ -71.367188, -36.597889 ], [ -71.367188, -37.996163 ], [ -71.015625, -37.996163 ], [ -71.015625, -38.822591 ], [ -71.718750, -38.822591 ], [ -71.718750, -40.178873 ], [ -72.070312, -40.178873 ], [ -72.070312, -42.032974 ], [ -72.421875, -42.032974 ], [ -72.421875, -42.811522 ], [ -72.070312, -42.811522 ], [ -72.070312, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.834527 ], [ -72.070312, -43.834527 ], [ -72.070312, -44.339565 ], [ -71.367188, -44.339565 ], [ -71.367188, -44.840291 ], [ -71.718750, -44.840291 ], [ -71.718750, -46.073231 ], [ -72.070312, -46.073231 ], [ -72.070312, -47.040182 ], [ -72.421875, -47.040182 ], [ -72.421875, -47.517201 ], [ -72.773438, -47.517201 ], [ -72.773438, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -48.458352 ], [ -72.773438, -48.458352 ], [ -72.773438, -48.922499 ], [ -73.125000, -48.922499 ], [ -73.125000, -49.152970 ], [ -73.476562, -49.152970 ], [ -73.476562, -50.513427 ], [ -73.125000, -50.513427 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -51.618017 ], [ -72.070312, -51.618017 ], [ -72.070312, -51.835778 ], [ -71.015625, -51.835778 ], [ -71.015625, -52.052490 ], [ -69.609375, -52.052490 ], [ -69.609375, -52.482780 ] ] ], [ [ [ -69.609375, -52.482780 ], [ -68.906250, -52.482780 ], [ -68.906250, -54.775346 ], [ -67.148438, -54.775346 ], [ -67.148438, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -55.379110 ], [ -67.851562, -55.379110 ], [ -67.851562, -55.578345 ], [ -69.257812, -55.578345 ], [ -69.257812, -55.379110 ], [ -69.960938, -55.379110 ], [ -69.960938, -55.178868 ], [ -70.664062, -55.178868 ], [ -70.664062, -54.977614 ], [ -71.367188, -54.977614 ], [ -71.367188, -54.775346 ], [ -72.070312, -54.775346 ], [ -72.070312, -54.572062 ], [ -72.421875, -54.572062 ], [ -72.421875, -54.367759 ], [ -72.773438, -54.367759 ], [ -72.773438, -54.162434 ], [ -73.476562, -54.162434 ], [ -73.476562, -53.956086 ], [ -73.828125, -53.956086 ], [ -73.828125, -53.540307 ], [ -74.179688, -53.540307 ], [ -74.179688, -53.330873 ], [ -74.531250, -53.330873 ], [ -74.531250, -52.908902 ], [ -74.179688, -52.908902 ], [ -74.179688, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -53.330873 ], [ -73.125000, -53.330873 ], [ -73.125000, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.748711 ], [ -72.070312, -53.748711 ], [ -72.070312, -53.956086 ], [ -71.015625, -53.956086 ], [ -71.015625, -53.748711 ], [ -70.664062, -53.748711 ], [ -70.664062, -53.330873 ], [ -70.312500, -53.330873 ], [ -70.312500, -52.908902 ], [ -69.960938, -52.908902 ], [ -69.960938, -52.696361 ], [ -69.609375, -52.696361 ], [ -69.609375, -52.482780 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.795678 ], [ -65.390625, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.211180 ], [ -64.687500, -12.211180 ], [ -64.687500, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.897489 ], [ -62.929688, -12.897489 ], [ -62.929688, -13.239945 ], [ -62.226562, -13.239945 ], [ -62.226562, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -14.604847 ], [ -60.117188, -14.604847 ], [ -60.117188, -14.944785 ], [ -60.468750, -14.944785 ], [ -60.468750, -15.623037 ], [ -60.117188, -15.623037 ], [ -60.117188, -16.299051 ], [ -58.359375, -16.299051 ], [ -58.359375, -17.644022 ], [ -57.656250, -17.644022 ], [ -57.656250, -19.311143 ], [ -58.007812, -19.311143 ], [ -58.007812, -19.973349 ], [ -58.359375, -19.973349 ], [ -58.359375, -19.642588 ], [ -59.062500, -19.642588 ], [ -59.062500, -19.311143 ], [ -60.820312, -19.311143 ], [ -60.820312, -19.642588 ], [ -61.875000, -19.642588 ], [ -61.875000, -20.303418 ], [ -62.226562, -20.303418 ], [ -62.226562, -21.616579 ], [ -62.578125, -21.616579 ], [ -62.578125, -22.268764 ], [ -62.929688, -22.268764 ], [ -62.929688, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.593726 ], [ -64.335938, -22.593726 ], [ -64.335938, -22.917923 ], [ -64.687500, -22.917923 ], [ -64.687500, -22.268764 ], [ -65.039062, -22.268764 ], [ -65.039062, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -22.268764 ], [ -66.796875, -22.268764 ], [ -66.796875, -22.593726 ], [ -67.148438, -22.593726 ], [ -67.148438, -22.917923 ], [ -67.851562, -22.917923 ], [ -67.851562, -22.268764 ], [ -68.203125, -22.268764 ], [ -68.203125, -21.289374 ], [ -68.554688, -21.289374 ], [ -68.554688, -20.632784 ], [ -68.906250, -20.632784 ], [ -68.906250, -19.973349 ], [ -68.554688, -19.973349 ], [ -68.554688, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -18.646245 ], [ -69.257812, -18.646245 ], [ -69.257812, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.644022 ], [ -69.257812, -17.644022 ], [ -69.257812, -16.972741 ], [ -68.906250, -16.972741 ], [ -68.906250, -16.299051 ], [ -69.257812, -16.299051 ], [ -69.257812, -14.944785 ], [ -68.906250, -14.944785 ], [ -68.906250, -12.897489 ], [ -68.554688, -12.897489 ], [ -68.554688, -12.554564 ], [ -68.906250, -12.554564 ], [ -68.906250, -11.867351 ], [ -69.257812, -11.867351 ], [ -69.257812, -11.178402 ], [ -68.203125, -11.178402 ], [ -68.203125, -10.833306 ], [ -67.851562, -10.833306 ], [ -67.851562, -10.487812 ], [ -67.148438, -10.487812 ], [ -67.148438, -10.141932 ], [ -66.796875, -10.141932 ], [ -66.796875, -9.795678 ], [ -65.390625, -9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.449062 ], [ -65.390625, -10.141932 ], [ -65.742188, -10.141932 ], [ -65.742188, -10.833306 ], [ -65.390625, -10.833306 ], [ -65.390625, -11.178402 ], [ -65.742188, -11.178402 ], [ -65.742188, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.211180 ], [ -63.984375, -12.211180 ], [ -63.984375, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.897489 ], [ -62.226562, -12.897489 ], [ -62.226562, -13.239945 ], [ -61.171875, -13.239945 ], [ -61.171875, -13.581921 ], [ -60.820312, -13.581921 ], [ -60.820312, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -14.944785 ], [ -60.820312, -14.944785 ], [ -60.820312, -15.623037 ], [ -60.468750, -15.623037 ], [ -60.468750, -15.961329 ], [ -59.765625, -15.961329 ], [ -59.765625, -16.299051 ], [ -58.359375, -16.299051 ], [ -58.359375, -16.636192 ], [ -58.710938, -16.636192 ], [ -58.710938, -16.972741 ], [ -58.359375, -16.972741 ], [ -58.359375, -17.308688 ], [ -58.007812, -17.308688 ], [ -58.007812, -17.644022 ], [ -57.656250, -17.644022 ], [ -57.656250, -18.312811 ], [ -58.007812, -18.312811 ], [ -58.007812, -19.973349 ], [ -58.359375, -19.973349 ], [ -58.359375, -19.642588 ], [ -59.062500, -19.642588 ], [ -59.062500, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -19.642588 ], [ -62.226562, -19.642588 ], [ -62.226562, -20.303418 ], [ -62.578125, -20.303418 ], [ -62.578125, -21.616579 ], [ -62.929688, -21.616579 ], [ -62.929688, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.268764 ], [ -64.335938, -22.268764 ], [ -64.335938, -22.593726 ], [ -64.687500, -22.593726 ], [ -64.687500, -22.268764 ], [ -65.039062, -22.268764 ], [ -65.039062, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -21.616579 ], [ -66.445312, -21.616579 ], [ -66.445312, -21.943046 ], [ -66.796875, -21.943046 ], [ -66.796875, -22.593726 ], [ -67.851562, -22.593726 ], [ -67.851562, -22.268764 ], [ -68.203125, -22.268764 ], [ -68.203125, -21.616579 ], [ -68.554688, -21.616579 ], [ -68.554688, -20.961440 ], [ -68.906250, -20.961440 ], [ -68.906250, -19.973349 ], [ -68.554688, -19.973349 ], [ -68.554688, -19.311143 ], [ -69.257812, -19.311143 ], [ -69.257812, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -15.961329 ], [ -69.609375, -15.961329 ], [ -69.609375, -15.623037 ], [ -69.257812, -15.623037 ], [ -69.257812, -15.284185 ], [ -69.609375, -15.284185 ], [ -69.609375, -14.604847 ], [ -69.257812, -14.604847 ], [ -69.257812, -13.239945 ], [ -68.906250, -13.239945 ], [ -68.906250, -12.211180 ], [ -69.257812, -12.211180 ], [ -69.257812, -11.523088 ], [ -69.609375, -11.523088 ], [ -69.609375, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -10.487812 ], [ -67.500000, -10.487812 ], [ -67.500000, -10.141932 ], [ -66.796875, -10.141932 ], [ -66.796875, -9.795678 ], [ -65.742188, -9.795678 ], [ -65.742188, -9.449062 ], [ -65.390625, -9.449062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.921875, 1.757537 ], [ -49.921875, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.625000, 0.351560 ], [ -50.625000, 0.000000 ], [ -49.570312, 0.000000 ], [ -49.570312, -0.351560 ], [ -48.515625, -0.351560 ], [ -48.515625, -1.406109 ], [ -48.164062, -1.406109 ], [ -48.164062, -1.054628 ], [ -47.812500, -1.054628 ], [ -47.812500, -0.703107 ], [ -47.460938, -0.703107 ], [ -47.460938, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.811371 ], [ -43.945312, -2.811371 ], [ -43.945312, -2.460181 ], [ -42.890625, -2.460181 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.162456 ], [ -39.726562, -3.162456 ], [ -39.726562, -3.513421 ], [ -39.023438, -3.513421 ], [ -39.023438, -3.864255 ], [ -38.671875, -3.864255 ], [ -38.671875, -4.214943 ], [ -38.320312, -4.214943 ], [ -38.320312, -4.565474 ], [ -37.617188, -4.565474 ], [ -37.617188, -4.915833 ], [ -37.265625, -4.915833 ], [ -37.265625, -5.266008 ], [ -35.507812, -5.266008 ], [ -35.507812, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -6.315299 ], [ -34.804688, -6.315299 ], [ -34.804688, -8.407168 ], [ -35.156250, -8.407168 ], [ -35.156250, -9.449062 ], [ -35.507812, -9.449062 ], [ -35.507812, -10.141932 ], [ -35.859375, -10.141932 ], [ -35.859375, -10.487812 ], [ -36.210938, -10.487812 ], [ -36.210938, -10.833306 ], [ -36.562500, -10.833306 ], [ -36.562500, -11.178402 ], [ -36.914062, -11.178402 ], [ -36.914062, -11.523088 ], [ -37.265625, -11.523088 ], [ -37.265625, -12.211180 ], [ -37.617188, -12.211180 ], [ -37.617188, -12.554564 ], [ -37.968750, -12.554564 ], [ -37.968750, -12.897489 ], [ -38.671875, -12.897489 ], [ -38.671875, -13.581921 ], [ -39.023438, -13.581921 ], [ -39.023438, -17.644022 ], [ -39.375000, -17.644022 ], [ -39.375000, -18.312811 ], [ -39.726562, -18.312811 ], [ -39.726562, -19.973349 ], [ -40.078125, -19.973349 ], [ -40.078125, -20.303418 ], [ -40.429688, -20.303418 ], [ -40.429688, -20.961440 ], [ -40.781250, -20.961440 ], [ -40.781250, -21.943046 ], [ -41.132812, -21.943046 ], [ -41.132812, -22.268764 ], [ -41.835938, -22.268764 ], [ -41.835938, -22.917923 ], [ -43.593750, -22.917923 ], [ -43.593750, -23.241346 ], [ -44.648438, -23.241346 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.885838 ], [ -45.703125, -23.885838 ], [ -45.703125, -24.206890 ], [ -46.406250, -24.206890 ], [ -46.406250, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -24.846565 ], [ -47.812500, -24.846565 ], [ -47.812500, -25.165173 ], [ -48.164062, -25.165173 ], [ -48.164062, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -28.613459 ], [ -48.867188, -28.613459 ], [ -48.867188, -28.921631 ], [ -49.218750, -28.921631 ], [ -49.218750, -29.228890 ], [ -49.570312, -29.228890 ], [ -49.570312, -29.535230 ], [ -49.921875, -29.535230 ], [ -49.921875, -30.145127 ], [ -50.273438, -30.145127 ], [ -50.273438, -30.751278 ], [ -50.625000, -30.751278 ], [ -50.625000, -31.353637 ], [ -51.328125, -31.353637 ], [ -51.328125, -31.653381 ], [ -51.679688, -31.653381 ], [ -51.679688, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -32.249974 ], [ -52.382812, -32.249974 ], [ -52.382812, -32.842674 ], [ -52.734375, -32.842674 ], [ -52.734375, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.431441 ], [ -53.789062, -33.431441 ], [ -53.789062, -33.137551 ], [ -53.085938, -33.137551 ], [ -53.085938, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -32.249974 ], [ -53.789062, -32.249974 ], [ -53.789062, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -31.653381 ], [ -54.492188, -31.653381 ], [ -54.492188, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.052934 ], [ -55.546875, -31.052934 ], [ -55.546875, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -30.448674 ], [ -56.953125, -30.448674 ], [ -56.953125, -30.145127 ], [ -57.304688, -30.145127 ], [ -57.304688, -29.840644 ], [ -56.953125, -29.840644 ], [ -56.953125, -29.535230 ], [ -56.601562, -29.535230 ], [ -56.601562, -29.228890 ], [ -56.250000, -29.228890 ], [ -56.250000, -28.921631 ], [ -55.898438, -28.921631 ], [ -55.898438, -28.613459 ], [ -55.546875, -28.613459 ], [ -55.546875, -28.304381 ], [ -55.195312, -28.304381 ], [ -55.195312, -27.994401 ], [ -54.843750, -27.994401 ], [ -54.843750, -27.683528 ], [ -54.492188, -27.683528 ], [ -54.492188, -27.371767 ], [ -53.789062, -27.371767 ], [ -53.789062, -25.799891 ], [ -54.492188, -25.799891 ], [ -54.492188, -24.846565 ], [ -54.140625, -24.846565 ], [ -54.140625, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -22.593726 ], [ -55.898438, -22.593726 ], [ -55.898438, -22.268764 ], [ -57.656250, -22.268764 ], [ -57.656250, -21.943046 ], [ -58.007812, -21.943046 ], [ -58.007812, -19.311143 ], [ -57.656250, -19.311143 ], [ -57.656250, -17.644022 ], [ -58.359375, -17.644022 ], [ -58.359375, -16.299051 ], [ -60.117188, -16.299051 ], [ -60.117188, -15.623037 ], [ -60.468750, -15.623037 ], [ -60.468750, -14.944785 ], [ -60.117188, -14.944785 ], [ -60.117188, -14.604847 ], [ -60.468750, -14.604847 ], [ -60.468750, -13.923404 ], [ -61.171875, -13.923404 ], [ -61.171875, -13.581921 ], [ -62.226562, -13.581921 ], [ -62.226562, -13.239945 ], [ -62.929688, -13.239945 ], [ -62.929688, -12.897489 ], [ -63.281250, -12.897489 ], [ -63.281250, -12.554564 ], [ -64.687500, -12.554564 ], [ -64.687500, -12.211180 ], [ -65.039062, -12.211180 ], [ -65.039062, -11.867351 ], [ -65.390625, -11.867351 ], [ -65.390625, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -10.141932 ], [ -67.148438, -10.141932 ], [ -67.148438, -10.487812 ], [ -67.851562, -10.487812 ], [ -67.851562, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -11.178402 ], [ -70.664062, -11.178402 ], [ -70.664062, -10.487812 ], [ -70.312500, -10.487812 ], [ -70.312500, -9.795678 ], [ -71.015625, -9.795678 ], [ -71.015625, -10.141932 ], [ -72.070312, -10.141932 ], [ -72.070312, -9.795678 ], [ -72.421875, -9.795678 ], [ -72.421875, -9.449062 ], [ -73.125000, -9.449062 ], [ -73.125000, -8.754795 ], [ -73.476562, -8.754795 ], [ -73.476562, -8.059230 ], [ -73.828125, -8.059230 ], [ -73.828125, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -72.773438, -5.615986 ], [ -72.773438, -5.266008 ], [ -72.421875, -5.266008 ], [ -72.421875, -4.915833 ], [ -71.718750, -4.915833 ], [ -71.718750, -4.565474 ], [ -70.664062, -4.565474 ], [ -70.664062, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -2.811371 ], [ -69.609375, -2.811371 ], [ -69.609375, -1.406109 ], [ -69.257812, -1.406109 ], [ -69.257812, -1.054628 ], [ -69.609375, -1.054628 ], [ -69.609375, -0.703107 ], [ -69.960938, -0.703107 ], [ -69.960938, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 1.054628 ], [ -66.445312, 1.054628 ], [ -66.445312, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.054628 ], [ -64.687500, 1.054628 ], [ -64.687500, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 1.757537 ], [ -59.765625, 1.757537 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 1.757537 ], [ -49.921875, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.273438, 1.757537 ], [ -50.273438, 0.703107 ], [ -50.625000, 0.703107 ], [ -50.625000, 0.351560 ], [ -50.976562, 0.351560 ], [ -50.976562, 0.000000 ], [ -48.867188, 0.000000 ], [ -48.867188, -1.054628 ], [ -48.515625, -1.054628 ], [ -48.515625, -0.703107 ], [ -48.164062, -0.703107 ], [ -48.164062, -0.351560 ], [ -47.812500, -0.351560 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.054628 ], [ -45.703125, -1.054628 ], [ -45.703125, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.460181 ], [ -43.945312, -2.460181 ], [ -43.945312, -2.108899 ], [ -43.242188, -2.108899 ], [ -43.242188, -2.460181 ], [ -42.187500, -2.460181 ], [ -42.187500, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.162456 ], [ -39.375000, -3.162456 ], [ -39.375000, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -3.864255 ], [ -38.320312, -3.864255 ], [ -38.320312, -4.214943 ], [ -37.617188, -4.214943 ], [ -37.617188, -4.565474 ], [ -37.265625, -4.565474 ], [ -37.265625, -4.915833 ], [ -35.859375, -4.915833 ], [ -35.859375, -5.266008 ], [ -35.507812, -5.266008 ], [ -35.507812, -5.965754 ], [ -35.156250, -5.965754 ], [ -35.156250, -7.013668 ], [ -34.804688, -7.013668 ], [ -34.804688, -8.059230 ], [ -35.156250, -8.059230 ], [ -35.156250, -9.102097 ], [ -35.507812, -9.102097 ], [ -35.507812, -9.449062 ], [ -35.859375, -9.449062 ], [ -35.859375, -9.795678 ], [ -36.210938, -9.795678 ], [ -36.210938, -10.141932 ], [ -36.562500, -10.141932 ], [ -36.562500, -10.487812 ], [ -36.914062, -10.487812 ], [ -36.914062, -10.833306 ], [ -37.265625, -10.833306 ], [ -37.265625, -11.178402 ], [ -37.617188, -11.178402 ], [ -37.617188, -11.867351 ], [ -37.968750, -11.867351 ], [ -37.968750, -12.211180 ], [ -38.320312, -12.211180 ], [ -38.320312, -12.897489 ], [ -38.671875, -12.897489 ], [ -38.671875, -13.239945 ], [ -39.023438, -13.239945 ], [ -39.023438, -16.299051 ], [ -39.375000, -16.299051 ], [ -39.375000, -17.978733 ], [ -39.726562, -17.978733 ], [ -39.726562, -18.646245 ], [ -40.078125, -18.646245 ], [ -40.078125, -19.642588 ], [ -40.429688, -19.642588 ], [ -40.429688, -20.303418 ], [ -40.781250, -20.303418 ], [ -40.781250, -21.289374 ], [ -41.132812, -21.289374 ], [ -41.132812, -21.943046 ], [ -41.484375, -21.943046 ], [ -41.484375, -22.268764 ], [ -41.835938, -22.268764 ], [ -41.835938, -22.593726 ], [ -42.187500, -22.593726 ], [ -42.187500, -22.917923 ], [ -43.593750, -22.917923 ], [ -43.593750, -23.241346 ], [ -44.648438, -23.241346 ], [ -44.648438, -23.563987 ], [ -45.703125, -23.563987 ], [ -45.703125, -23.885838 ], [ -46.757812, -23.885838 ], [ -46.757812, -24.206890 ], [ -47.109375, -24.206890 ], [ -47.109375, -24.527135 ], [ -47.460938, -24.527135 ], [ -47.460938, -24.846565 ], [ -47.812500, -24.846565 ], [ -47.812500, -25.165173 ], [ -48.164062, -25.165173 ], [ -48.164062, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -26.115986 ], [ -48.867188, -26.115986 ], [ -48.867188, -26.745610 ], [ -48.515625, -26.745610 ], [ -48.515625, -27.683528 ], [ -48.867188, -27.683528 ], [ -48.867188, -28.304381 ], [ -49.218750, -28.304381 ], [ -49.218750, -28.921631 ], [ -49.921875, -28.921631 ], [ -49.921875, -29.228890 ], [ -50.273438, -29.228890 ], [ -50.273438, -29.840644 ], [ -50.625000, -29.840644 ], [ -50.625000, -30.448674 ], [ -50.976562, -30.448674 ], [ -50.976562, -31.052934 ], [ -51.328125, -31.052934 ], [ -51.328125, -31.653381 ], [ -51.679688, -31.653381 ], [ -51.679688, -31.952162 ], [ -52.382812, -31.952162 ], [ -52.382812, -32.546813 ], [ -52.734375, -32.546813 ], [ -52.734375, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.431441 ], [ -53.789062, -33.431441 ], [ -53.789062, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -32.249974 ], [ -53.789062, -32.249974 ], [ -53.789062, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -31.653381 ], [ -54.843750, -31.653381 ], [ -54.843750, -31.353637 ], [ -55.195312, -31.353637 ], [ -55.195312, -31.052934 ], [ -55.898438, -31.052934 ], [ -55.898438, -30.751278 ], [ -56.601562, -30.751278 ], [ -56.601562, -30.448674 ], [ -56.953125, -30.448674 ], [ -56.953125, -30.145127 ], [ -57.304688, -30.145127 ], [ -57.304688, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -28.921631 ], [ -56.601562, -28.921631 ], [ -56.601562, -28.613459 ], [ -56.250000, -28.613459 ], [ -56.250000, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -27.683528 ], [ -54.492188, -27.683528 ], [ -54.492188, -27.371767 ], [ -54.140625, -27.371767 ], [ -54.140625, -27.059126 ], [ -53.789062, -27.059126 ], [ -53.789062, -25.799891 ], [ -54.140625, -25.799891 ], [ -54.140625, -25.482951 ], [ -54.843750, -25.482951 ], [ -54.843750, -25.165173 ], [ -54.492188, -25.165173 ], [ -54.492188, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -23.241346 ], [ -55.898438, -23.241346 ], [ -55.898438, -22.268764 ], [ -57.656250, -22.268764 ], [ -57.656250, -21.943046 ], [ -58.007812, -21.943046 ], [ -58.007812, -20.303418 ], [ -58.359375, -20.303418 ], [ -58.359375, -19.973349 ], [ -58.007812, -19.973349 ], [ -58.007812, -18.312811 ], [ -57.656250, -18.312811 ], [ -57.656250, -17.644022 ], [ -58.007812, -17.644022 ], [ -58.007812, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.972741 ], [ -58.710938, -16.972741 ], [ -58.710938, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -16.299051 ], [ -59.765625, -16.299051 ], [ -59.765625, -15.961329 ], [ -60.468750, -15.961329 ], [ -60.468750, -15.623037 ], [ -60.820312, -15.623037 ], [ -60.820312, -14.944785 ], [ -60.468750, -14.944785 ], [ -60.468750, -13.923404 ], [ -60.820312, -13.923404 ], [ -60.820312, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.239945 ], [ -62.226562, -13.239945 ], [ -62.226562, -12.897489 ], [ -63.281250, -12.897489 ], [ -63.281250, -12.554564 ], [ -63.984375, -12.554564 ], [ -63.984375, -12.211180 ], [ -65.039062, -12.211180 ], [ -65.039062, -11.867351 ], [ -65.742188, -11.867351 ], [ -65.742188, -11.178402 ], [ -65.390625, -11.178402 ], [ -65.390625, -10.833306 ], [ -65.742188, -10.833306 ], [ -65.742188, -10.141932 ], [ -65.390625, -10.141932 ], [ -65.390625, -9.449062 ], [ -65.742188, -9.449062 ], [ -65.742188, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -10.141932 ], [ -67.500000, -10.141932 ], [ -67.500000, -10.487812 ], [ -68.203125, -10.487812 ], [ -68.203125, -10.833306 ], [ -70.664062, -10.833306 ], [ -70.664062, -9.795678 ], [ -72.773438, -9.795678 ], [ -72.773438, -9.449062 ], [ -73.476562, -9.449062 ], [ -73.476562, -9.102097 ], [ -73.125000, -9.102097 ], [ -73.125000, -8.754795 ], [ -73.828125, -8.754795 ], [ -73.828125, -8.059230 ], [ -74.179688, -8.059230 ], [ -74.179688, -7.362467 ], [ -73.828125, -7.362467 ], [ -73.828125, -6.664608 ], [ -73.125000, -6.664608 ], [ -73.125000, -6.315299 ], [ -73.476562, -6.315299 ], [ -73.476562, -5.965754 ], [ -73.125000, -5.965754 ], [ -73.125000, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -4.915833 ], [ -72.070312, -4.915833 ], [ -72.070312, -4.565474 ], [ -71.367188, -4.565474 ], [ -71.367188, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -2.811371 ], [ -69.609375, -2.811371 ], [ -69.609375, -0.351560 ], [ -70.312500, -0.351560 ], [ -70.312500, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.500000, 1.757537 ], [ -67.500000, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 1.406109 ], [ -64.335938, 1.406109 ], [ -64.335938, 1.757537 ], [ -59.765625, 1.757537 ], [ -59.765625, 1.406109 ], [ -58.710938, 1.406109 ], [ -58.710938, 1.757537 ], [ -50.273438, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -19.642588 ], [ -58.359375, -19.642588 ], [ -58.359375, -19.973349 ], [ -58.007812, -19.973349 ], [ -58.007812, -21.943046 ], [ -57.656250, -21.943046 ], [ -57.656250, -22.268764 ], [ -55.898438, -22.268764 ], [ -55.898438, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.885838 ], [ -54.140625, -23.885838 ], [ -54.140625, -24.846565 ], [ -54.492188, -24.846565 ], [ -54.492188, -26.431228 ], [ -54.843750, -26.431228 ], [ -54.843750, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -27.371767 ], [ -55.898438, -27.371767 ], [ -55.898438, -27.683528 ], [ -57.304688, -27.683528 ], [ -57.304688, -27.371767 ], [ -58.359375, -27.371767 ], [ -58.359375, -26.431228 ], [ -58.007812, -26.431228 ], [ -58.007812, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.165173 ], [ -58.359375, -25.165173 ], [ -58.359375, -24.846565 ], [ -59.062500, -24.846565 ], [ -59.062500, -24.527135 ], [ -59.765625, -24.527135 ], [ -59.765625, -24.206890 ], [ -60.117188, -24.206890 ], [ -60.117188, -23.885838 ], [ -61.171875, -23.885838 ], [ -61.171875, -23.563987 ], [ -61.523438, -23.563987 ], [ -61.523438, -23.241346 ], [ -61.875000, -23.241346 ], [ -61.875000, -22.917923 ], [ -62.226562, -22.917923 ], [ -62.226562, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -21.616579 ], [ -62.226562, -21.616579 ], [ -62.226562, -20.303418 ], [ -61.875000, -20.303418 ], [ -61.875000, -19.642588 ], [ -60.820312, -19.642588 ], [ -60.820312, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -19.642588 ], [ -58.359375, -19.642588 ], [ -58.359375, -20.303418 ], [ -58.007812, -20.303418 ], [ -58.007812, -21.943046 ], [ -57.656250, -21.943046 ], [ -57.656250, -22.268764 ], [ -55.898438, -22.268764 ], [ -55.898438, -23.241346 ], [ -55.546875, -23.241346 ], [ -55.546875, -23.885838 ], [ -54.492188, -23.885838 ], [ -54.492188, -25.165173 ], [ -54.843750, -25.165173 ], [ -54.843750, -26.745610 ], [ -55.195312, -26.745610 ], [ -55.195312, -27.059126 ], [ -55.546875, -27.059126 ], [ -55.546875, -27.371767 ], [ -58.359375, -27.371767 ], [ -58.359375, -26.431228 ], [ -58.007812, -26.431228 ], [ -58.007812, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.165173 ], [ -58.007812, -25.165173 ], [ -58.007812, -24.846565 ], [ -58.710938, -24.846565 ], [ -58.710938, -24.527135 ], [ -59.414062, -24.527135 ], [ -59.414062, -24.206890 ], [ -60.117188, -24.206890 ], [ -60.117188, -23.885838 ], [ -60.820312, -23.885838 ], [ -60.820312, -23.563987 ], [ -61.523438, -23.563987 ], [ -61.523438, -23.241346 ], [ -61.875000, -23.241346 ], [ -61.875000, -22.917923 ], [ -62.226562, -22.917923 ], [ -62.226562, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -22.268764 ], [ -62.929688, -22.268764 ], [ -62.929688, -21.616579 ], [ -62.578125, -21.616579 ], [ -62.578125, -20.303418 ], [ -62.226562, -20.303418 ], [ -62.226562, -19.642588 ], [ -61.875000, -19.642588 ], [ -61.875000, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.203125, -52.908902 ], [ -68.203125, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.162434 ], [ -66.796875, -54.162434 ], [ -66.796875, -54.367759 ], [ -66.445312, -54.367759 ], [ -66.445312, -54.572062 ], [ -65.742188, -54.572062 ], [ -65.742188, -54.775346 ], [ -65.039062, -54.775346 ], [ -65.039062, -54.977614 ], [ -65.390625, -54.977614 ], [ -65.390625, -55.178868 ], [ -66.796875, -55.178868 ], [ -66.796875, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -54.775346 ], [ -68.554688, -54.775346 ], [ -68.554688, -52.908902 ], [ -68.203125, -52.908902 ] ] ], [ [ [ -62.929688, -21.943046 ], [ -62.929688, -22.268764 ], [ -62.578125, -22.268764 ], [ -62.578125, -22.593726 ], [ -62.226562, -22.593726 ], [ -62.226562, -22.917923 ], [ -61.875000, -22.917923 ], [ -61.875000, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.563987 ], [ -61.171875, -23.563987 ], [ -61.171875, -23.885838 ], [ -60.117188, -23.885838 ], [ -60.117188, -24.206890 ], [ -59.765625, -24.206890 ], [ -59.765625, -24.527135 ], [ -59.062500, -24.527135 ], [ -59.062500, -24.846565 ], [ -58.359375, -24.846565 ], [ -58.359375, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -25.799891 ], [ -58.007812, -25.799891 ], [ -58.007812, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -27.371767 ], [ -57.304688, -27.371767 ], [ -57.304688, -27.683528 ], [ -55.898438, -27.683528 ], [ -55.898438, -27.371767 ], [ -55.195312, -27.371767 ], [ -55.195312, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -26.431228 ], [ -54.492188, -26.431228 ], [ -54.492188, -25.799891 ], [ -53.789062, -25.799891 ], [ -53.789062, -27.371767 ], [ -54.492188, -27.371767 ], [ -54.492188, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.613459 ], [ -55.898438, -28.613459 ], [ -55.898438, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.228890 ], [ -56.601562, -29.228890 ], [ -56.601562, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -29.840644 ], [ -57.304688, -29.840644 ], [ -57.304688, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.751278 ], [ -58.007812, -30.751278 ], [ -58.007812, -33.137551 ], [ -58.359375, -33.137551 ], [ -58.359375, -34.597042 ], [ -58.007812, -34.597042 ], [ -58.007812, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.173808 ], [ -57.304688, -35.173808 ], [ -57.304688, -36.315125 ], [ -56.601562, -36.315125 ], [ -56.601562, -36.597889 ], [ -56.953125, -36.597889 ], [ -56.953125, -37.439974 ], [ -57.304688, -37.439974 ], [ -57.304688, -37.996163 ], [ -57.656250, -37.996163 ], [ -57.656250, -38.548165 ], [ -58.359375, -38.548165 ], [ -58.359375, -38.822591 ], [ -62.226562, -38.822591 ], [ -62.226562, -40.979898 ], [ -62.929688, -40.979898 ], [ -62.929688, -41.244772 ], [ -63.984375, -41.244772 ], [ -63.984375, -40.979898 ], [ -65.039062, -40.979898 ], [ -65.039062, -42.293564 ], [ -63.632812, -42.293564 ], [ -63.632812, -42.811522 ], [ -64.335938, -42.811522 ], [ -64.335938, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.580391 ], [ -65.039062, -43.580391 ], [ -65.039062, -44.087585 ], [ -65.390625, -44.087585 ], [ -65.390625, -45.089036 ], [ -66.445312, -45.089036 ], [ -66.445312, -45.336702 ], [ -66.796875, -45.336702 ], [ -66.796875, -45.583290 ], [ -67.148438, -45.583290 ], [ -67.148438, -46.073231 ], [ -67.500000, -46.073231 ], [ -67.500000, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.800059 ], [ -66.796875, -46.800059 ], [ -66.796875, -47.040182 ], [ -66.445312, -47.040182 ], [ -66.445312, -47.279229 ], [ -65.742188, -47.279229 ], [ -65.742188, -47.754098 ], [ -66.093750, -47.754098 ], [ -66.093750, -48.458352 ], [ -66.796875, -48.458352 ], [ -66.796875, -48.690960 ], [ -67.148438, -48.690960 ], [ -67.148438, -49.152970 ], [ -67.500000, -49.152970 ], [ -67.500000, -49.610710 ], [ -67.851562, -49.610710 ], [ -67.851562, -50.064192 ], [ -68.203125, -50.064192 ], [ -68.203125, -50.289339 ], [ -68.554688, -50.289339 ], [ -68.554688, -50.513427 ], [ -68.906250, -50.513427 ], [ -68.906250, -50.736455 ], [ -69.257812, -50.736455 ], [ -69.257812, -51.399206 ], [ -68.906250, -51.399206 ], [ -68.906250, -52.052490 ], [ -68.554688, -52.052490 ], [ -68.554688, -52.268157 ], [ -69.257812, -52.268157 ], [ -69.257812, -52.052490 ], [ -72.070312, -52.052490 ], [ -72.070312, -51.835778 ], [ -72.421875, -51.835778 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.476562, -50.513427 ], [ -73.476562, -49.382373 ], [ -73.125000, -49.382373 ], [ -73.125000, -49.152970 ], [ -72.773438, -49.152970 ], [ -72.773438, -48.690960 ], [ -72.421875, -48.690960 ], [ -72.421875, -47.279229 ], [ -72.070312, -47.279229 ], [ -72.070312, -46.316584 ], [ -71.718750, -46.316584 ], [ -71.718750, -45.089036 ], [ -71.367188, -45.089036 ], [ -71.367188, -44.339565 ], [ -71.718750, -44.339565 ], [ -71.718750, -44.087585 ], [ -71.367188, -44.087585 ], [ -71.367188, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -72.070312, -43.580391 ], [ -72.070312, -42.293564 ], [ -71.718750, -42.293564 ], [ -71.718750, -41.508577 ], [ -72.070312, -41.508577 ], [ -72.070312, -40.446947 ], [ -71.718750, -40.446947 ], [ -71.718750, -39.368279 ], [ -71.367188, -39.368279 ], [ -71.367188, -38.822591 ], [ -70.664062, -38.822591 ], [ -70.664062, -37.996163 ], [ -71.015625, -37.996163 ], [ -71.015625, -36.597889 ], [ -70.664062, -36.597889 ], [ -70.664062, -36.315125 ], [ -70.312500, -36.315125 ], [ -70.312500, -34.885931 ], [ -69.960938, -34.885931 ], [ -69.960938, -32.842674 ], [ -70.312500, -32.842674 ], [ -70.312500, -31.952162 ], [ -70.664062, -31.952162 ], [ -70.664062, -31.353637 ], [ -70.312500, -31.353637 ], [ -70.312500, -30.751278 ], [ -69.960938, -30.751278 ], [ -69.960938, -28.921631 ], [ -69.609375, -28.921631 ], [ -69.609375, -28.304381 ], [ -69.257812, -28.304381 ], [ -69.257812, -27.683528 ], [ -68.906250, -27.683528 ], [ -68.906250, -27.371767 ], [ -68.554688, -27.371767 ], [ -68.554688, -27.059126 ], [ -68.203125, -27.059126 ], [ -68.203125, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -24.527135 ], [ -68.203125, -24.527135 ], [ -68.203125, -24.206890 ], [ -67.500000, -24.206890 ], [ -67.500000, -23.563987 ], [ -67.148438, -23.563987 ], [ -67.148438, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -22.268764 ], [ -66.445312, -22.268764 ], [ -66.445312, -21.943046 ], [ -65.039062, -21.943046 ], [ -65.039062, -22.268764 ], [ -64.687500, -22.268764 ], [ -64.687500, -22.917923 ], [ -64.335938, -22.917923 ], [ -64.335938, -22.593726 ], [ -63.984375, -22.593726 ], [ -63.984375, -21.943046 ], [ -62.929688, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.554688, -52.696361 ], [ -68.554688, -53.120405 ], [ -68.203125, -53.120405 ], [ -68.203125, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.162434 ], [ -67.148438, -54.162434 ], [ -67.148438, -54.367759 ], [ -66.445312, -54.367759 ], [ -66.445312, -54.572062 ], [ -65.390625, -54.572062 ], [ -65.390625, -54.977614 ], [ -65.742188, -54.977614 ], [ -65.742188, -55.178868 ], [ -66.796875, -55.178868 ], [ -66.796875, -54.977614 ], [ -67.148438, -54.977614 ], [ -67.148438, -54.775346 ], [ -68.906250, -54.775346 ], [ -68.906250, -52.696361 ], [ -68.554688, -52.696361 ] ] ], [ [ [ -66.093750, -21.616579 ], [ -66.093750, -21.943046 ], [ -65.039062, -21.943046 ], [ -65.039062, -22.268764 ], [ -64.687500, -22.268764 ], [ -64.687500, -22.593726 ], [ -64.335938, -22.593726 ], [ -64.335938, -22.268764 ], [ -63.984375, -22.268764 ], [ -63.984375, -21.943046 ], [ -62.929688, -21.943046 ], [ -62.929688, -22.268764 ], [ -62.578125, -22.268764 ], [ -62.578125, -22.593726 ], [ -62.226562, -22.593726 ], [ -62.226562, -22.917923 ], [ -61.875000, -22.917923 ], [ -61.875000, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.563987 ], [ -60.820312, -23.563987 ], [ -60.820312, -23.885838 ], [ -60.117188, -23.885838 ], [ -60.117188, -24.206890 ], [ -59.414062, -24.206890 ], [ -59.414062, -24.527135 ], [ -58.710938, -24.527135 ], [ -58.710938, -24.846565 ], [ -58.007812, -24.846565 ], [ -58.007812, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -25.799891 ], [ -58.007812, -25.799891 ], [ -58.007812, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -27.371767 ], [ -55.546875, -27.371767 ], [ -55.546875, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -26.745610 ], [ -54.843750, -26.745610 ], [ -54.843750, -25.482951 ], [ -54.140625, -25.482951 ], [ -54.140625, -25.799891 ], [ -53.789062, -25.799891 ], [ -53.789062, -27.059126 ], [ -54.140625, -27.059126 ], [ -54.140625, -27.371767 ], [ -54.492188, -27.371767 ], [ -54.492188, -27.683528 ], [ -55.195312, -27.683528 ], [ -55.195312, -27.994401 ], [ -55.546875, -27.994401 ], [ -55.546875, -28.304381 ], [ -56.250000, -28.304381 ], [ -56.250000, -28.613459 ], [ -56.601562, -28.613459 ], [ -56.601562, -28.921631 ], [ -56.953125, -28.921631 ], [ -56.953125, -29.535230 ], [ -57.304688, -29.535230 ], [ -57.304688, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.448674 ], [ -58.007812, -30.448674 ], [ -58.007812, -31.353637 ], [ -58.359375, -31.353637 ], [ -58.359375, -33.431441 ], [ -58.710938, -33.431441 ], [ -58.710938, -34.597042 ], [ -58.359375, -34.597042 ], [ -58.359375, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.173808 ], [ -57.304688, -35.173808 ], [ -57.304688, -35.460670 ], [ -57.656250, -35.460670 ], [ -57.656250, -36.031332 ], [ -57.304688, -36.031332 ], [ -57.304688, -36.315125 ], [ -56.953125, -36.315125 ], [ -56.953125, -37.160317 ], [ -57.304688, -37.160317 ], [ -57.304688, -37.439974 ], [ -57.656250, -37.439974 ], [ -57.656250, -37.996163 ], [ -58.007812, -37.996163 ], [ -58.007812, -38.272689 ], [ -58.710938, -38.272689 ], [ -58.710938, -38.548165 ], [ -60.117188, -38.548165 ], [ -60.117188, -38.822591 ], [ -62.578125, -38.822591 ], [ -62.578125, -39.095963 ], [ -62.226562, -39.095963 ], [ -62.226562, -39.639538 ], [ -62.578125, -39.639538 ], [ -62.578125, -40.178873 ], [ -62.226562, -40.178873 ], [ -62.226562, -40.713956 ], [ -62.578125, -40.713956 ], [ -62.578125, -40.979898 ], [ -64.687500, -40.979898 ], [ -64.687500, -40.713956 ], [ -65.039062, -40.713956 ], [ -65.039062, -40.979898 ], [ -65.390625, -40.979898 ], [ -65.390625, -41.508577 ], [ -65.039062, -41.508577 ], [ -65.039062, -42.293564 ], [ -63.632812, -42.293564 ], [ -63.632812, -42.553080 ], [ -63.984375, -42.553080 ], [ -63.984375, -42.811522 ], [ -64.687500, -42.811522 ], [ -64.687500, -43.068888 ], [ -65.039062, -43.068888 ], [ -65.039062, -43.325178 ], [ -65.390625, -43.325178 ], [ -65.390625, -44.590467 ], [ -65.742188, -44.590467 ], [ -65.742188, -44.840291 ], [ -66.796875, -44.840291 ], [ -66.796875, -45.089036 ], [ -67.148438, -45.089036 ], [ -67.148438, -45.336702 ], [ -67.500000, -45.336702 ], [ -67.500000, -45.828799 ], [ -67.851562, -45.828799 ], [ -67.851562, -46.316584 ], [ -67.500000, -46.316584 ], [ -67.500000, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.800059 ], [ -66.445312, -46.800059 ], [ -66.445312, -47.040182 ], [ -65.742188, -47.040182 ], [ -65.742188, -47.517201 ], [ -66.093750, -47.517201 ], [ -66.093750, -48.224673 ], [ -66.445312, -48.224673 ], [ -66.445312, -48.458352 ], [ -67.148438, -48.458352 ], [ -67.148438, -48.690960 ], [ -67.500000, -48.690960 ], [ -67.500000, -49.382373 ], [ -67.851562, -49.382373 ], [ -67.851562, -49.837982 ], [ -68.203125, -49.837982 ], [ -68.203125, -50.064192 ], [ -68.906250, -50.064192 ], [ -68.906250, -50.289339 ], [ -69.257812, -50.289339 ], [ -69.257812, -51.179343 ], [ -68.906250, -51.179343 ], [ -68.906250, -51.835778 ], [ -68.554688, -51.835778 ], [ -68.554688, -52.268157 ], [ -69.609375, -52.268157 ], [ -69.609375, -52.052490 ], [ -71.015625, -52.052490 ], [ -71.015625, -51.835778 ], [ -72.070312, -51.835778 ], [ -72.070312, -51.618017 ], [ -72.421875, -51.618017 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.476562, -50.513427 ], [ -73.476562, -49.152970 ], [ -73.125000, -49.152970 ], [ -73.125000, -48.922499 ], [ -72.773438, -48.922499 ], [ -72.773438, -48.458352 ], [ -72.421875, -48.458352 ], [ -72.421875, -47.989922 ], [ -72.773438, -47.989922 ], [ -72.773438, -47.517201 ], [ -72.421875, -47.517201 ], [ -72.421875, -47.040182 ], [ -72.070312, -47.040182 ], [ -72.070312, -46.073231 ], [ -71.718750, -46.073231 ], [ -71.718750, -44.840291 ], [ -71.367188, -44.840291 ], [ -71.367188, -44.339565 ], [ -72.070312, -44.339565 ], [ -72.070312, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -72.070312, -43.580391 ], [ -72.070312, -42.811522 ], [ -72.421875, -42.811522 ], [ -72.421875, -42.032974 ], [ -72.070312, -42.032974 ], [ -72.070312, -40.178873 ], [ -71.718750, -40.178873 ], [ -71.718750, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -37.996163 ], [ -71.367188, -37.996163 ], [ -71.367188, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -36.031332 ], [ -70.664062, -36.031332 ], [ -70.664062, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -34.307144 ], [ -69.960938, -34.307144 ], [ -69.960938, -33.137551 ], [ -70.312500, -33.137551 ], [ -70.312500, -32.249974 ], [ -70.664062, -32.249974 ], [ -70.664062, -31.052934 ], [ -70.312500, -31.052934 ], [ -70.312500, -30.448674 ], [ -69.960938, -30.448674 ], [ -69.960938, -29.840644 ], [ -70.312500, -29.840644 ], [ -70.312500, -28.921631 ], [ -69.960938, -28.921631 ], [ -69.960938, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -27.683528 ], [ -69.257812, -27.683528 ], [ -69.257812, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -26.745610 ], [ -68.906250, -26.745610 ], [ -68.906250, -26.431228 ], [ -68.554688, -26.431228 ], [ -68.554688, -24.206890 ], [ -67.851562, -24.206890 ], [ -67.851562, -23.885838 ], [ -67.500000, -23.885838 ], [ -67.500000, -23.563987 ], [ -67.148438, -23.563987 ], [ -67.148438, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -21.616579 ], [ -66.093750, -21.616579 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.448674 ], [ -56.250000, -30.448674 ], [ -56.250000, -30.751278 ], [ -55.546875, -30.751278 ], [ -55.546875, -31.052934 ], [ -54.843750, -31.052934 ], [ -54.843750, -31.353637 ], [ -54.492188, -31.353637 ], [ -54.492188, -31.653381 ], [ -54.140625, -31.653381 ], [ -54.140625, -31.952162 ], [ -53.789062, -31.952162 ], [ -53.789062, -32.249974 ], [ -53.437500, -32.249974 ], [ -53.437500, -32.842674 ], [ -53.085938, -32.842674 ], [ -53.085938, -33.137551 ], [ -53.789062, -33.137551 ], [ -53.789062, -33.431441 ], [ -53.437500, -33.431441 ], [ -53.437500, -34.016242 ], [ -53.789062, -34.016242 ], [ -53.789062, -34.597042 ], [ -54.492188, -34.597042 ], [ -54.492188, -34.885931 ], [ -56.601562, -34.885931 ], [ -56.601562, -34.597042 ], [ -58.007812, -34.597042 ], [ -58.007812, -34.307144 ], [ -58.359375, -34.307144 ], [ -58.359375, -33.137551 ], [ -58.007812, -33.137551 ], [ -58.007812, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.448674 ], [ -56.601562, -30.448674 ], [ -56.601562, -30.751278 ], [ -55.898438, -30.751278 ], [ -55.898438, -31.052934 ], [ -55.195312, -31.052934 ], [ -55.195312, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.653381 ], [ -54.140625, -31.653381 ], [ -54.140625, -31.952162 ], [ -53.789062, -31.952162 ], [ -53.789062, -32.249974 ], [ -53.437500, -32.249974 ], [ -53.437500, -32.842674 ], [ -53.789062, -32.842674 ], [ -53.789062, -33.431441 ], [ -53.437500, -33.431441 ], [ -53.437500, -34.016242 ], [ -53.789062, -34.016242 ], [ -53.789062, -34.307144 ], [ -54.140625, -34.307144 ], [ -54.140625, -34.597042 ], [ -54.843750, -34.597042 ], [ -54.843750, -34.885931 ], [ -55.898438, -34.885931 ], [ -55.898438, -34.597042 ], [ -56.953125, -34.597042 ], [ -56.953125, -34.307144 ], [ -58.359375, -34.307144 ], [ -58.359375, -34.016242 ], [ -58.710938, -34.016242 ], [ -58.710938, -33.431441 ], [ -58.359375, -33.431441 ], [ -58.359375, -31.353637 ], [ -58.007812, -31.353637 ], [ -58.007812, -30.448674 ], [ -57.656250, -30.448674 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, -51.179343 ], [ -59.765625, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.618017 ], [ -57.656250, -51.618017 ], [ -57.656250, -51.835778 ], [ -58.007812, -51.835778 ], [ -58.007812, -52.052490 ], [ -58.710938, -52.052490 ], [ -58.710938, -52.268157 ], [ -59.414062, -52.268157 ], [ -59.414062, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -52.268157 ], [ -60.820312, -52.268157 ], [ -60.820312, -52.052490 ], [ -61.171875, -52.052490 ], [ -61.171875, -51.835778 ], [ -60.820312, -51.835778 ], [ -60.820312, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.399206 ], [ -60.117188, -51.399206 ], [ -60.117188, -51.179343 ], [ -59.765625, -51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -51.179343 ], [ -58.359375, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.618017 ], [ -58.359375, -51.618017 ], [ -58.359375, -51.835778 ], [ -58.710938, -51.835778 ], [ -58.710938, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -52.268157 ], [ -61.171875, -52.268157 ], [ -61.171875, -52.052490 ], [ -61.523438, -52.052490 ], [ -61.523438, -51.835778 ], [ -61.171875, -51.835778 ], [ -61.171875, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.399206 ], [ -59.062500, -51.399206 ], [ -59.062500, -51.179343 ], [ -58.359375, -51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -63.233627 ], [ -57.656250, -63.391522 ], [ -57.304688, -63.391522 ], [ -57.304688, -63.704722 ], [ -57.656250, -63.704722 ], [ -57.656250, -64.014496 ], [ -58.359375, -64.014496 ], [ -58.359375, -64.168107 ], [ -58.710938, -64.168107 ], [ -58.710938, -64.320872 ], [ -60.468750, -64.320872 ], [ -60.468750, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.623877 ], [ -61.523438, -64.623877 ], [ -61.523438, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.923542 ], [ -62.226562, -64.923542 ], [ -62.226562, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.372755 ], [ -62.929688, -66.372755 ], [ -62.929688, -66.513260 ], [ -63.632812, -66.513260 ], [ -63.632812, -66.652977 ], [ -63.984375, -66.652977 ], [ -63.984375, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.204032 ], [ -67.500000, -67.204032 ], [ -67.500000, -67.067433 ], [ -67.148438, -67.067433 ], [ -67.148438, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.372755 ], [ -66.093750, -66.372755 ], [ -66.093750, -66.231457 ], [ -65.742188, -66.231457 ], [ -65.742188, -66.089364 ], [ -65.390625, -66.089364 ], [ -65.390625, -65.946472 ], [ -65.039062, -65.946472 ], [ -65.039062, -65.802776 ], [ -64.687500, -65.802776 ], [ -64.687500, -65.512963 ], [ -64.335938, -65.512963 ], [ -64.335938, -65.219894 ], [ -63.984375, -65.219894 ], [ -63.984375, -65.072130 ], [ -63.632812, -65.072130 ], [ -63.632812, -64.923542 ], [ -63.281250, -64.923542 ], [ -63.281250, -64.774125 ], [ -62.929688, -64.774125 ], [ -62.929688, -64.623877 ], [ -61.875000, -64.623877 ], [ -61.875000, -64.472794 ], [ -61.523438, -64.472794 ], [ -61.523438, -64.320872 ], [ -61.171875, -64.320872 ], [ -61.171875, -64.168107 ], [ -60.820312, -64.168107 ], [ -60.820312, -64.014496 ], [ -59.414062, -64.014496 ], [ -59.414062, -63.860036 ], [ -59.062500, -63.860036 ], [ -59.062500, -63.548552 ], [ -58.710938, -63.548552 ], [ -58.710938, -63.391522 ], [ -58.007812, -63.391522 ], [ -58.007812, -63.233627 ], [ -57.656250, -63.233627 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.820312, -64.168107 ], [ -60.820312, -64.320872 ], [ -61.171875, -64.320872 ], [ -61.171875, -64.472794 ], [ -61.523438, -64.472794 ], [ -61.523438, -64.623877 ], [ -61.875000, -64.623877 ], [ -61.875000, -64.774125 ], [ -62.226562, -64.774125 ], [ -62.226562, -64.923542 ], [ -62.578125, -64.923542 ], [ -62.578125, -65.219894 ], [ -62.929688, -65.219894 ], [ -62.929688, -65.946472 ], [ -62.578125, -65.946472 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.231457 ], [ -62.578125, -66.231457 ], [ -62.578125, -66.372755 ], [ -63.984375, -66.372755 ], [ -63.984375, -66.652977 ], [ -64.335938, -66.652977 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.067433 ], [ -65.039062, -67.067433 ], [ -65.039062, -67.204032 ], [ -67.851562, -67.204032 ], [ -67.851562, -67.067433 ], [ -67.500000, -67.067433 ], [ -67.500000, -66.791909 ], [ -67.148438, -66.791909 ], [ -67.148438, -66.652977 ], [ -66.796875, -66.652977 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.231457 ], [ -66.093750, -66.231457 ], [ -66.093750, -66.089364 ], [ -65.742188, -66.089364 ], [ -65.742188, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.802776 ], [ -65.039062, -65.802776 ], [ -65.039062, -65.658275 ], [ -64.687500, -65.658275 ], [ -64.687500, -65.366837 ], [ -64.335938, -65.366837 ], [ -64.335938, -65.072130 ], [ -63.984375, -65.072130 ], [ -63.984375, -64.923542 ], [ -63.632812, -64.923542 ], [ -63.632812, -64.774125 ], [ -63.281250, -64.774125 ], [ -63.281250, -64.623877 ], [ -62.578125, -64.623877 ], [ -62.578125, -64.472794 ], [ -61.875000, -64.472794 ], [ -61.875000, -64.320872 ], [ -61.523438, -64.320872 ], [ -61.523438, -64.168107 ], [ -60.820312, -64.168107 ] ] ], [ [ [ -58.007812, -63.233627 ], [ -58.007812, -63.391522 ], [ -57.304688, -63.391522 ], [ -57.304688, -63.548552 ], [ -57.656250, -63.548552 ], [ -57.656250, -63.860036 ], [ -58.359375, -63.860036 ], [ -58.359375, -64.014496 ], [ -58.710938, -64.014496 ], [ -58.710938, -64.168107 ], [ -59.062500, -64.168107 ], [ -59.062500, -64.320872 ], [ -59.765625, -64.320872 ], [ -59.765625, -64.168107 ], [ -60.820312, -64.168107 ], [ -60.820312, -64.014496 ], [ -60.117188, -64.014496 ], [ -60.117188, -63.860036 ], [ -59.765625, -63.860036 ], [ -59.765625, -63.704722 ], [ -59.414062, -63.704722 ], [ -59.414062, -63.548552 ], [ -59.062500, -63.548552 ], [ -59.062500, -63.391522 ], [ -58.710938, -63.391522 ], [ -58.710938, -63.233627 ], [ -58.007812, -63.233627 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 62.915233 ], [ -91.757812, 67.204032 ], [ -81.210938, 67.204032 ], [ -81.210938, 66.930060 ], [ -81.562500, 66.930060 ], [ -81.562500, 66.791909 ], [ -81.914062, 66.791909 ], [ -81.914062, 66.652977 ], [ -82.617188, 66.652977 ], [ -82.617188, 66.513260 ], [ -82.968750, 66.513260 ], [ -82.968750, 66.372755 ], [ -83.671875, 66.372755 ], [ -83.671875, 66.231457 ], [ -85.078125, 66.231457 ], [ -85.078125, 66.372755 ], [ -85.781250, 66.372755 ], [ -85.781250, 66.231457 ], [ -86.132812, 66.231457 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.658275 ], [ -86.835938, 65.658275 ], [ -86.835938, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 64.623877 ], [ -87.539062, 64.623877 ], [ -87.539062, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.320872 ], [ -88.242188, 64.320872 ], [ -88.242188, 64.168107 ], [ -88.945312, 64.168107 ], [ -88.945312, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.548552 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.757812, 62.915233 ] ] ], [ [ [ -65.039062, 49.152970 ], [ -65.039062, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 48.690960 ], [ -64.335938, 48.690960 ], [ -64.335938, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.039062, 47.989922 ], [ -65.039062, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 45.828799 ], [ -61.171875, 45.828799 ], [ -61.171875, 46.316584 ], [ -60.820312, 46.316584 ], [ -60.820312, 46.800059 ], [ -60.468750, 46.800059 ], [ -60.468750, 46.073231 ], [ -60.117188, 46.073231 ], [ -60.117188, 45.828799 ], [ -59.765625, 45.828799 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.336702 ], [ -61.171875, 45.336702 ], [ -61.171875, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.840291 ], [ -62.578125, 44.840291 ], [ -62.578125, 44.590467 ], [ -63.632812, 44.590467 ], [ -63.632812, 44.339565 ], [ -64.335938, 44.339565 ], [ -64.335938, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 43.834527 ], [ -65.039062, 43.834527 ], [ -65.039062, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.339565 ], [ -65.742188, 44.339565 ], [ -65.742188, 44.590467 ], [ -65.390625, 44.590467 ], [ -65.390625, 44.840291 ], [ -64.687500, 44.840291 ], [ -64.687500, 45.089036 ], [ -64.335938, 45.089036 ], [ -64.335938, 45.336702 ], [ -66.445312, 45.336702 ], [ -66.445312, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 45.336702 ], [ -67.851562, 45.336702 ], [ -67.851562, 47.040182 ], [ -68.203125, 47.040182 ], [ -68.203125, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 47.517201 ], [ -69.257812, 47.517201 ], [ -69.257812, 47.754098 ], [ -68.906250, 47.754098 ], [ -68.906250, 47.989922 ], [ -68.554688, 47.989922 ], [ -68.554688, 48.224673 ], [ -68.203125, 48.224673 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.690960 ], [ -67.148438, 48.690960 ], [ -67.148438, 48.922499 ], [ -66.445312, 48.922499 ], [ -66.445312, 49.152970 ], [ -65.039062, 49.152970 ] ] ], [ [ [ -63.632812, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 46.316584 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -55.546875, 51.179343 ], [ -55.898438, 51.179343 ], [ -55.898438, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.513427 ], [ -56.601562, 50.513427 ], [ -56.601562, 50.064192 ], [ -56.953125, 50.064192 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.152970 ], [ -53.437500, 49.152970 ], [ -53.437500, 48.690960 ], [ -53.789062, 48.690960 ], [ -53.789062, 48.458352 ], [ -53.085938, 48.458352 ], [ -53.085938, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.040182 ], [ -53.085938, 47.040182 ], [ -53.085938, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -53.789062, 47.040182 ], [ -53.789062, 47.517201 ], [ -54.492188, 47.517201 ], [ -54.492188, 47.279229 ], [ -54.843750, 47.279229 ], [ -54.843750, 47.040182 ], [ -55.195312, 47.040182 ], [ -55.195312, 47.279229 ], [ -55.898438, 47.279229 ], [ -55.898438, 47.517201 ], [ -59.414062, 47.517201 ], [ -59.414062, 47.989922 ], [ -58.710938, 47.989922 ], [ -58.710938, 48.224673 ], [ -59.062500, 48.224673 ], [ -59.062500, 48.458352 ], [ -58.710938, 48.458352 ], [ -58.710938, 48.922499 ], [ -58.359375, 48.922499 ], [ -58.359375, 49.382373 ], [ -58.007812, 49.382373 ], [ -58.007812, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.289339 ], [ -57.304688, 50.289339 ], [ -57.304688, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 50.958427 ], [ -56.601562, 50.958427 ], [ -56.601562, 51.179343 ], [ -56.250000, 51.179343 ], [ -56.250000, 51.399206 ], [ -55.898438, 51.399206 ], [ -55.898438, 51.618017 ], [ -55.546875, 51.618017 ] ] ], [ [ [ -55.195312, 47.040182 ], [ -55.195312, 46.800059 ], [ -55.546875, 46.800059 ], [ -55.546875, 47.040182 ], [ -55.195312, 47.040182 ] ] ], [ [ [ -61.875000, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.316584 ] ] ], [ [ [ -79.453125, 62.431074 ], [ -79.453125, 62.267923 ], [ -79.101562, 62.267923 ], [ -79.101562, 61.938950 ], [ -79.453125, 61.938950 ], [ -79.453125, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 61.773123 ], [ -80.507812, 61.773123 ], [ -80.507812, 61.938950 ], [ -80.156250, 61.938950 ], [ -80.156250, 62.267923 ], [ -79.804688, 62.267923 ], [ -79.804688, 62.431074 ], [ -79.453125, 62.431074 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.593341 ], [ -82.265625, 62.593341 ], [ -82.265625, 62.431074 ], [ -82.617188, 62.431074 ], [ -82.617188, 62.103883 ], [ -83.671875, 62.103883 ], [ -83.671875, 62.267923 ], [ -84.023438, 62.267923 ], [ -84.023438, 62.431074 ], [ -83.671875, 62.431074 ], [ -83.671875, 62.754726 ], [ -83.320312, 62.754726 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -63.632812, 49.837982 ], [ -63.632812, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 49.152970 ], [ -63.281250, 49.152970 ], [ -63.281250, 49.382373 ], [ -63.984375, 49.382373 ], [ -63.984375, 49.610710 ], [ -64.687500, 49.610710 ], [ -64.687500, 49.837982 ], [ -63.632812, 49.837982 ] ] ], [ [ [ -91.757812, 57.136239 ], [ -91.054688, 57.136239 ], [ -91.054688, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -89.648438, 57.136239 ], [ -89.648438, 56.944974 ], [ -88.945312, 56.944974 ], [ -88.945312, 56.752723 ], [ -88.242188, 56.752723 ], [ -88.242188, 56.559482 ], [ -87.890625, 56.559482 ], [ -87.890625, 56.365250 ], [ -87.539062, 56.365250 ], [ -87.539062, 55.973798 ], [ -86.835938, 55.973798 ], [ -86.835938, 55.776573 ], [ -86.132812, 55.776573 ], [ -86.132812, 55.578345 ], [ -85.429688, 55.578345 ], [ -85.429688, 55.379110 ], [ -84.375000, 55.379110 ], [ -84.375000, 55.178868 ], [ -82.265625, 55.178868 ], [ -82.265625, 52.908902 ], [ -81.914062, 52.908902 ], [ -81.914062, 52.268157 ], [ -81.562500, 52.268157 ], [ -81.562500, 51.835778 ], [ -81.210938, 51.835778 ], [ -81.210938, 51.618017 ], [ -80.507812, 51.618017 ], [ -80.507812, 51.399206 ], [ -80.156250, 51.399206 ], [ -80.156250, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 51.399206 ], [ -79.101562, 51.399206 ], [ -79.101562, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.101562, 53.330873 ], [ -79.101562, 54.162434 ], [ -79.453125, 54.162434 ], [ -79.453125, 54.367759 ], [ -79.804688, 54.367759 ], [ -79.804688, 54.572062 ], [ -79.453125, 54.572062 ], [ -79.453125, 54.775346 ], [ -78.750000, 54.775346 ], [ -78.750000, 54.977614 ], [ -78.398438, 54.977614 ], [ -78.398438, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 55.578345 ], [ -76.992188, 55.578345 ], [ -76.992188, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 57.326521 ], [ -76.992188, 57.326521 ], [ -76.992188, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -77.695312, 58.077876 ], [ -77.695312, 58.447733 ], [ -78.046875, 58.447733 ], [ -78.046875, 58.631217 ], [ -78.398438, 58.631217 ], [ -78.398438, 58.995311 ], [ -78.046875, 58.995311 ], [ -78.046875, 59.355596 ], [ -77.695312, 59.355596 ], [ -77.695312, 59.712097 ], [ -77.343750, 59.712097 ], [ -77.343750, 60.239811 ], [ -77.695312, 60.239811 ], [ -77.695312, 61.438767 ], [ -78.046875, 61.438767 ], [ -78.046875, 62.267923 ], [ -77.695312, 62.267923 ], [ -77.695312, 62.431074 ], [ -77.343750, 62.431074 ], [ -77.343750, 62.593341 ], [ -76.992188, 62.593341 ], [ -76.992188, 62.431074 ], [ -76.289062, 62.431074 ], [ -76.289062, 62.267923 ], [ -75.234375, 62.267923 ], [ -75.234375, 62.103883 ], [ -74.179688, 62.103883 ], [ -74.179688, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 62.103883 ], [ -72.773438, 62.103883 ], [ -72.773438, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.773123 ], [ -72.070312, 61.773123 ], [ -72.070312, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.367188, 61.270233 ], [ -71.367188, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 59.534318 ], [ -69.257812, 59.534318 ], [ -69.257812, 58.995311 ], [ -68.906250, 58.995311 ], [ -68.906250, 58.813742 ], [ -68.203125, 58.813742 ], [ -68.203125, 58.631217 ], [ -67.851562, 58.631217 ], [ -67.851562, 58.263287 ], [ -67.148438, 58.263287 ], [ -67.148438, 58.447733 ], [ -66.445312, 58.447733 ], [ -66.445312, 58.631217 ], [ -66.093750, 58.631217 ], [ -66.093750, 58.995311 ], [ -65.742188, 58.995311 ], [ -65.742188, 59.534318 ], [ -65.390625, 59.534318 ], [ -65.390625, 59.888937 ], [ -65.039062, 59.888937 ], [ -65.039062, 60.239811 ], [ -64.335938, 60.239811 ], [ -64.335938, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.534318 ], [ -63.632812, 59.534318 ], [ -63.632812, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 57.891497 ], [ -62.226562, 57.891497 ], [ -62.226562, 57.515823 ], [ -61.875000, 57.515823 ], [ -61.875000, 57.136239 ], [ -61.523438, 57.136239 ], [ -61.523438, 56.559482 ], [ -61.875000, 56.559482 ], [ -61.875000, 56.170023 ], [ -61.523438, 56.170023 ], [ -61.523438, 55.973798 ], [ -60.820312, 55.973798 ], [ -60.820312, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.379110 ], [ -59.765625, 55.379110 ], [ -59.765625, 55.178868 ], [ -59.062500, 55.178868 ], [ -59.062500, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.775346 ], [ -57.656250, 54.775346 ], [ -57.656250, 54.572062 ], [ -57.304688, 54.572062 ], [ -57.304688, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 52.696361 ], [ -55.546875, 52.696361 ], [ -55.546875, 51.835778 ], [ -56.250000, 51.835778 ], [ -56.250000, 51.618017 ], [ -56.601562, 51.618017 ], [ -56.601562, 51.399206 ], [ -57.304688, 51.399206 ], [ -57.304688, 51.179343 ], [ -58.007812, 51.179343 ], [ -58.007812, 50.958427 ], [ -58.710938, 50.958427 ], [ -58.710938, 50.736455 ], [ -59.062500, 50.736455 ], [ -59.062500, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.289339 ], [ -60.820312, 50.289339 ], [ -60.820312, 50.064192 ], [ -63.281250, 50.064192 ], [ -63.281250, 50.289339 ], [ -66.445312, 50.289339 ], [ -66.445312, 50.064192 ], [ -66.796875, 50.064192 ], [ -66.796875, 49.610710 ], [ -67.148438, 49.610710 ], [ -67.148438, 49.382373 ], [ -67.851562, 49.382373 ], [ -67.851562, 49.152970 ], [ -68.554688, 49.152970 ], [ -68.554688, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.609375, 48.224673 ], [ -69.609375, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 46.800059 ], [ -70.312500, 46.800059 ], [ -70.312500, 47.040182 ], [ -69.960938, 47.040182 ], [ -69.960938, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 46.800059 ], [ -69.960938, 46.800059 ], [ -69.960938, 46.316584 ], [ -70.312500, 46.316584 ], [ -70.312500, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.336702 ], [ -71.367188, 45.336702 ], [ -71.367188, 45.089036 ], [ -74.882812, 45.089036 ], [ -74.882812, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.339565 ], [ -75.937500, 44.339565 ], [ -75.937500, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.834527 ], [ -76.992188, 43.834527 ], [ -76.992188, 43.580391 ], [ -79.101562, 43.580391 ], [ -79.101562, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.553080 ], [ -79.804688, 42.553080 ], [ -79.804688, 42.293564 ], [ -81.210938, 42.293564 ], [ -81.210938, 42.032974 ], [ -81.914062, 42.032974 ], [ -81.914062, 41.771312 ], [ -82.968750, 41.771312 ], [ -82.968750, 42.553080 ], [ -82.617188, 42.553080 ], [ -82.617188, 42.811522 ], [ -82.265625, 42.811522 ], [ -82.265625, 44.840291 ], [ -82.617188, 44.840291 ], [ -82.617188, 45.336702 ], [ -82.968750, 45.336702 ], [ -82.968750, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 45.828799 ], [ -83.320312, 45.828799 ], [ -83.320312, 46.073231 ], [ -84.023438, 46.073231 ], [ -84.023438, 46.316584 ], [ -84.726562, 46.316584 ], [ -84.726562, 46.800059 ], [ -85.078125, 46.800059 ], [ -85.078125, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.279229 ], [ -86.484375, 47.279229 ], [ -86.484375, 47.517201 ], [ -86.835938, 47.517201 ], [ -86.835938, 47.754098 ], [ -87.539062, 47.754098 ], [ -87.539062, 47.989922 ], [ -88.242188, 47.989922 ], [ -88.242188, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 47.989922 ], [ -90.351562, 47.989922 ], [ -90.351562, 48.224673 ], [ -91.757812, 48.224673 ], [ -91.757812, 57.136239 ] ] ], [ [ [ -68.203125, 63.391522 ], [ -68.203125, 63.074866 ], [ -67.851562, 63.074866 ], [ -67.851562, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.754726 ], [ -67.148438, 62.754726 ], [ -67.148438, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.267923 ], [ -66.445312, 62.267923 ], [ -66.445312, 62.103883 ], [ -66.093750, 62.103883 ], [ -66.093750, 61.938950 ], [ -67.148438, 61.938950 ], [ -67.148438, 62.103883 ], [ -68.554688, 62.103883 ], [ -68.554688, 62.267923 ], [ -69.257812, 62.267923 ], [ -69.257812, 62.431074 ], [ -69.960938, 62.431074 ], [ -69.960938, 62.593341 ], [ -70.312500, 62.593341 ], [ -70.312500, 62.754726 ], [ -71.015625, 62.754726 ], [ -71.015625, 62.915233 ], [ -71.367188, 62.915233 ], [ -71.367188, 63.074866 ], [ -71.718750, 63.074866 ], [ -71.718750, 63.233627 ], [ -72.070312, 63.233627 ], [ -72.070312, 63.548552 ], [ -71.718750, 63.548552 ], [ -71.718750, 63.704722 ], [ -72.070312, 63.704722 ], [ -72.070312, 63.860036 ], [ -72.773438, 63.860036 ], [ -72.773438, 64.014496 ], [ -73.476562, 64.014496 ], [ -73.476562, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.320872 ], [ -74.531250, 64.320872 ], [ -74.531250, 64.472794 ], [ -74.882812, 64.472794 ], [ -74.882812, 64.320872 ], [ -75.937500, 64.320872 ], [ -75.937500, 64.168107 ], [ -78.046875, 64.168107 ], [ -78.046875, 64.472794 ], [ -78.398438, 64.472794 ], [ -78.398438, 64.923542 ], [ -78.046875, 64.923542 ], [ -78.046875, 65.366837 ], [ -74.531250, 65.366837 ], [ -74.531250, 65.512963 ], [ -73.828125, 65.512963 ], [ -73.828125, 65.658275 ], [ -74.179688, 65.658275 ], [ -74.179688, 66.089364 ], [ -73.828125, 66.089364 ], [ -73.828125, 66.513260 ], [ -73.476562, 66.513260 ], [ -73.476562, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.204032 ], [ -63.984375, 67.204032 ], [ -63.984375, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.658275 ], [ -62.929688, 65.658275 ], [ -62.929688, 65.512963 ], [ -63.281250, 65.512963 ], [ -63.281250, 65.366837 ], [ -63.632812, 65.366837 ], [ -63.632812, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.219894 ], [ -65.039062, 65.219894 ], [ -65.039062, 65.366837 ], [ -65.390625, 65.366837 ], [ -65.390625, 65.658275 ], [ -65.742188, 65.658275 ], [ -65.742188, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 65.946472 ], [ -66.445312, 65.946472 ], [ -66.445312, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.372755 ], [ -67.148438, 66.372755 ], [ -67.148438, 66.231457 ], [ -67.851562, 66.231457 ], [ -67.851562, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.512963 ], [ -67.851562, 65.512963 ], [ -67.851562, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.072130 ], [ -67.148438, 65.072130 ], [ -67.148438, 64.923542 ], [ -66.796875, 64.923542 ], [ -66.796875, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.623877 ], [ -65.742188, 64.623877 ], [ -65.742188, 64.472794 ], [ -65.390625, 64.472794 ], [ -65.390625, 64.014496 ], [ -65.039062, 64.014496 ], [ -65.039062, 63.548552 ], [ -64.687500, 63.548552 ], [ -64.687500, 63.074866 ], [ -65.039062, 63.074866 ], [ -65.039062, 62.754726 ], [ -66.093750, 62.754726 ], [ -66.093750, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.074866 ], [ -67.500000, 63.074866 ], [ -67.500000, 63.233627 ], [ -67.851562, 63.233627 ], [ -67.851562, 63.391522 ], [ -68.203125, 63.391522 ] ], [ [ -68.203125, 63.391522 ], [ -68.203125, 63.548552 ], [ -68.554688, 63.548552 ], [ -68.554688, 63.391522 ], [ -68.203125, 63.391522 ] ] ], [ [ [ -85.078125, 65.658275 ], [ -85.078125, 65.219894 ], [ -84.023438, 65.219894 ], [ -84.023438, 64.923542 ], [ -83.320312, 64.923542 ], [ -83.320312, 64.774125 ], [ -82.617188, 64.774125 ], [ -82.617188, 64.623877 ], [ -81.914062, 64.623877 ], [ -81.914062, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.014496 ], [ -80.859375, 63.860036 ], [ -80.507812, 63.860036 ], [ -80.507812, 63.704722 ], [ -80.156250, 63.704722 ], [ -80.156250, 63.548552 ], [ -80.507812, 63.548552 ], [ -80.507812, 63.391522 ], [ -81.562500, 63.391522 ], [ -81.562500, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.704722 ], [ -82.617188, 63.704722 ], [ -82.617188, 63.860036 ], [ -82.968750, 63.860036 ], [ -82.968750, 64.014496 ], [ -83.320312, 64.014496 ], [ -83.320312, 63.860036 ], [ -83.671875, 63.860036 ], [ -83.671875, 63.548552 ], [ -84.023438, 63.548552 ], [ -84.023438, 63.391522 ], [ -84.375000, 63.391522 ], [ -84.375000, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 63.074866 ], [ -85.429688, 63.074866 ], [ -85.429688, 63.391522 ], [ -85.781250, 63.391522 ], [ -85.781250, 63.704722 ], [ -86.132812, 63.704722 ], [ -86.132812, 63.548552 ], [ -86.835938, 63.548552 ], [ -86.835938, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 64.320872 ], [ -86.132812, 64.320872 ], [ -86.132812, 65.219894 ], [ -85.781250, 65.219894 ], [ -85.781250, 65.658275 ], [ -85.078125, 65.658275 ] ] ], [ [ [ -63.632812, 46.316584 ], [ -63.984375, 46.316584 ], [ -63.984375, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.800059 ], [ -63.632812, 46.800059 ], [ -63.632812, 46.316584 ] ] ], [ [ [ -76.289062, 67.204032 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.204032 ], [ -76.289062, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.906250, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.609375, 48.224673 ], [ -69.609375, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.279229 ], [ -71.015625, 47.279229 ], [ -71.015625, 47.040182 ], [ -69.960938, 47.040182 ], [ -69.960938, 46.800059 ], [ -70.312500, 46.800059 ], [ -70.312500, 45.828799 ], [ -70.664062, 45.828799 ], [ -70.664062, 45.336702 ], [ -71.718750, 45.336702 ], [ -71.718750, 45.089036 ], [ -74.882812, 45.089036 ], [ -74.882812, 44.840291 ], [ -75.585938, 44.840291 ], [ -75.585938, 44.590467 ], [ -76.289062, 44.590467 ], [ -76.289062, 44.339565 ], [ -76.640625, 44.339565 ], [ -76.640625, 43.834527 ], [ -78.750000, 43.834527 ], [ -78.750000, 43.580391 ], [ -79.453125, 43.580391 ], [ -79.453125, 43.325178 ], [ -79.101562, 43.325178 ], [ -79.101562, 42.811522 ], [ -79.804688, 42.811522 ], [ -79.804688, 42.553080 ], [ -80.859375, 42.553080 ], [ -80.859375, 42.293564 ], [ -81.562500, 42.293564 ], [ -81.562500, 42.032974 ], [ -82.265625, 42.032974 ], [ -82.265625, 41.771312 ], [ -83.320312, 41.771312 ], [ -83.320312, 42.293564 ], [ -82.968750, 42.293564 ], [ -82.968750, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 43.325178 ], [ -82.265625, 43.325178 ], [ -82.265625, 44.087585 ], [ -82.617188, 44.087585 ], [ -82.617188, 45.583290 ], [ -83.320312, 45.583290 ], [ -83.320312, 45.828799 ], [ -83.671875, 45.828799 ], [ -83.671875, 46.316584 ], [ -84.375000, 46.316584 ], [ -84.375000, 46.558860 ], [ -85.078125, 46.558860 ], [ -85.078125, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.279229 ], [ -86.132812, 47.279229 ], [ -86.132812, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.754098 ], [ -87.187500, 47.754098 ], [ -87.187500, 47.989922 ], [ -87.890625, 47.989922 ], [ -87.890625, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.458352 ], [ -91.054688, 48.458352 ], [ -91.054688, 48.224673 ], [ -91.757812, 48.224673 ], [ -91.757812, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -90.000000, 57.136239 ], [ -90.000000, 56.944974 ], [ -89.296875, 56.944974 ], [ -89.296875, 56.752723 ], [ -88.593750, 56.752723 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 56.365250 ], [ -87.890625, 56.365250 ], [ -87.890625, 56.170023 ], [ -87.539062, 56.170023 ], [ -87.539062, 55.973798 ], [ -86.835938, 55.973798 ], [ -86.835938, 55.776573 ], [ -86.132812, 55.776573 ], [ -86.132812, 55.578345 ], [ -85.429688, 55.578345 ], [ -85.429688, 55.379110 ], [ -83.320312, 55.379110 ], [ -83.320312, 55.178868 ], [ -82.617188, 55.178868 ], [ -82.617188, 53.748711 ], [ -82.265625, 53.748711 ], [ -82.265625, 52.908902 ], [ -81.914062, 52.908902 ], [ -81.914062, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 52.052490 ], [ -81.210938, 52.052490 ], [ -81.210938, 51.835778 ], [ -80.859375, 51.835778 ], [ -80.859375, 51.618017 ], [ -80.507812, 51.618017 ], [ -80.507812, 51.399206 ], [ -79.453125, 51.399206 ], [ -79.453125, 51.835778 ], [ -79.101562, 51.835778 ], [ -79.101562, 52.268157 ], [ -78.750000, 52.268157 ], [ -78.750000, 52.908902 ], [ -79.101562, 52.908902 ], [ -79.101562, 53.748711 ], [ -79.453125, 53.748711 ], [ -79.453125, 54.162434 ], [ -79.804688, 54.162434 ], [ -79.804688, 54.572062 ], [ -80.156250, 54.572062 ], [ -80.156250, 54.775346 ], [ -79.453125, 54.775346 ], [ -79.453125, 54.977614 ], [ -78.750000, 54.977614 ], [ -78.750000, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.578345 ], [ -77.695312, 55.578345 ], [ -77.695312, 55.776573 ], [ -77.343750, 55.776573 ], [ -77.343750, 55.973798 ], [ -76.992188, 55.973798 ], [ -76.992188, 56.365250 ], [ -76.640625, 56.365250 ], [ -76.640625, 57.515823 ], [ -76.992188, 57.515823 ], [ -76.992188, 57.891497 ], [ -77.343750, 57.891497 ], [ -77.343750, 58.077876 ], [ -77.695312, 58.077876 ], [ -77.695312, 58.263287 ], [ -78.046875, 58.263287 ], [ -78.046875, 58.447733 ], [ -78.398438, 58.447733 ], [ -78.398438, 58.631217 ], [ -78.750000, 58.631217 ], [ -78.750000, 58.813742 ], [ -78.398438, 58.813742 ], [ -78.398438, 59.175928 ], [ -78.046875, 59.175928 ], [ -78.046875, 59.355596 ], [ -77.695312, 59.355596 ], [ -77.695312, 59.712097 ], [ -77.343750, 59.712097 ], [ -77.343750, 60.064840 ], [ -77.695312, 60.064840 ], [ -77.695312, 60.413852 ], [ -78.046875, 60.413852 ], [ -78.046875, 61.606396 ], [ -78.398438, 61.606396 ], [ -78.398438, 62.431074 ], [ -77.695312, 62.431074 ], [ -77.695312, 62.593341 ], [ -76.992188, 62.593341 ], [ -76.992188, 62.431074 ], [ -75.585938, 62.431074 ], [ -75.585938, 62.267923 ], [ -74.531250, 62.267923 ], [ -74.531250, 62.431074 ], [ -73.828125, 62.431074 ], [ -73.828125, 62.267923 ], [ -73.476562, 62.267923 ], [ -73.476562, 62.103883 ], [ -73.125000, 62.103883 ], [ -73.125000, 61.938950 ], [ -72.773438, 61.938950 ], [ -72.773438, 61.773123 ], [ -72.070312, 61.773123 ], [ -72.070312, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.015625, 61.270233 ], [ -71.015625, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 60.586967 ], [ -69.960938, 60.586967 ], [ -69.960938, 59.534318 ], [ -69.609375, 59.534318 ], [ -69.609375, 58.995311 ], [ -69.257812, 58.995311 ], [ -69.257812, 58.813742 ], [ -68.554688, 58.813742 ], [ -68.554688, 58.631217 ], [ -68.203125, 58.631217 ], [ -68.203125, 58.263287 ], [ -67.500000, 58.263287 ], [ -67.500000, 58.447733 ], [ -66.796875, 58.447733 ], [ -66.796875, 58.631217 ], [ -66.445312, 58.631217 ], [ -66.445312, 58.995311 ], [ -66.093750, 58.995311 ], [ -66.093750, 59.355596 ], [ -65.742188, 59.355596 ], [ -65.742188, 59.712097 ], [ -65.390625, 59.712097 ], [ -65.390625, 59.888937 ], [ -65.039062, 59.888937 ], [ -65.039062, 60.239811 ], [ -64.687500, 60.239811 ], [ -64.687500, 60.064840 ], [ -64.335938, 60.064840 ], [ -64.335938, 59.712097 ], [ -63.984375, 59.712097 ], [ -63.984375, 59.355596 ], [ -63.632812, 59.355596 ], [ -63.632812, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 58.077876 ], [ -62.226562, 58.077876 ], [ -62.226562, 57.704147 ], [ -61.875000, 57.704147 ], [ -61.875000, 57.326521 ], [ -61.523438, 57.326521 ], [ -61.523438, 56.752723 ], [ -61.875000, 56.752723 ], [ -61.875000, 56.170023 ], [ -61.523438, 56.170023 ], [ -61.523438, 55.973798 ], [ -60.820312, 55.973798 ], [ -60.820312, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.379110 ], [ -59.414062, 55.379110 ], [ -59.414062, 55.178868 ], [ -58.710938, 55.178868 ], [ -58.710938, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.775346 ], [ -57.656250, 54.775346 ], [ -57.656250, 54.572062 ], [ -57.304688, 54.572062 ], [ -57.304688, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 52.052490 ], [ -56.250000, 52.052490 ], [ -56.250000, 51.835778 ], [ -56.601562, 51.835778 ], [ -56.601562, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 51.399206 ], [ -58.359375, 51.399206 ], [ -58.359375, 51.179343 ], [ -59.062500, 51.179343 ], [ -59.062500, 50.958427 ], [ -59.414062, 50.958427 ], [ -59.414062, 50.736455 ], [ -59.765625, 50.736455 ], [ -59.765625, 50.289339 ], [ -65.039062, 50.289339 ], [ -65.039062, 50.513427 ], [ -65.742188, 50.513427 ], [ -65.742188, 50.289339 ], [ -66.445312, 50.289339 ], [ -66.445312, 50.064192 ], [ -66.796875, 50.064192 ], [ -66.796875, 49.837982 ], [ -67.148438, 49.837982 ], [ -67.148438, 49.610710 ], [ -67.500000, 49.610710 ], [ -67.500000, 49.382373 ], [ -68.203125, 49.382373 ], [ -68.203125, 49.152970 ], [ -68.554688, 49.152970 ], [ -68.554688, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 48.458352 ] ] ], [ [ [ -63.984375, 67.204032 ], [ -63.984375, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 66.089364 ], [ -62.578125, 66.089364 ], [ -62.578125, 65.802776 ], [ -62.929688, 65.802776 ], [ -62.929688, 65.658275 ], [ -63.281250, 65.658275 ], [ -63.281250, 65.366837 ], [ -63.632812, 65.366837 ], [ -63.632812, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.219894 ], [ -65.039062, 65.219894 ], [ -65.039062, 65.366837 ], [ -65.390625, 65.366837 ], [ -65.390625, 65.512963 ], [ -65.742188, 65.512963 ], [ -65.742188, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 66.089364 ], [ -66.445312, 66.089364 ], [ -66.445312, 66.372755 ], [ -66.796875, 66.372755 ], [ -66.796875, 66.513260 ], [ -67.148438, 66.513260 ], [ -67.148438, 66.372755 ], [ -68.203125, 66.372755 ], [ -68.203125, 65.658275 ], [ -67.851562, 65.658275 ], [ -67.851562, 65.512963 ], [ -67.500000, 65.512963 ], [ -67.500000, 65.219894 ], [ -67.148438, 65.219894 ], [ -67.148438, 65.072130 ], [ -66.796875, 65.072130 ], [ -66.796875, 64.923542 ], [ -66.093750, 64.923542 ], [ -66.093750, 64.774125 ], [ -65.742188, 64.774125 ], [ -65.742188, 64.623877 ], [ -65.390625, 64.623877 ], [ -65.390625, 64.168107 ], [ -65.039062, 64.168107 ], [ -65.039062, 63.704722 ], [ -64.687500, 63.704722 ], [ -64.687500, 63.074866 ], [ -65.039062, 63.074866 ], [ -65.039062, 62.754726 ], [ -65.742188, 62.754726 ], [ -65.742188, 62.915233 ], [ -66.445312, 62.915233 ], [ -66.445312, 63.074866 ], [ -66.796875, 63.074866 ], [ -66.796875, 63.233627 ], [ -67.500000, 63.233627 ], [ -67.500000, 63.391522 ], [ -67.851562, 63.391522 ], [ -67.851562, 63.548552 ], [ -68.203125, 63.548552 ], [ -68.203125, 63.704722 ], [ -68.554688, 63.704722 ], [ -68.554688, 63.391522 ], [ -68.203125, 63.391522 ], [ -68.203125, 63.233627 ], [ -67.851562, 63.233627 ], [ -67.851562, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.754726 ], [ -67.148438, 62.754726 ], [ -67.148438, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.431074 ], [ -66.445312, 62.431074 ], [ -66.445312, 61.938950 ], [ -67.148438, 61.938950 ], [ -67.148438, 62.103883 ], [ -67.851562, 62.103883 ], [ -67.851562, 62.267923 ], [ -68.554688, 62.267923 ], [ -68.554688, 62.431074 ], [ -69.609375, 62.431074 ], [ -69.609375, 62.593341 ], [ -70.312500, 62.593341 ], [ -70.312500, 62.754726 ], [ -71.015625, 62.754726 ], [ -71.015625, 62.915233 ], [ -71.718750, 62.915233 ], [ -71.718750, 63.233627 ], [ -72.070312, 63.233627 ], [ -72.070312, 63.391522 ], [ -72.421875, 63.391522 ], [ -72.421875, 63.548552 ], [ -72.070312, 63.548552 ], [ -72.070312, 63.704722 ], [ -72.421875, 63.704722 ], [ -72.421875, 63.860036 ], [ -72.773438, 63.860036 ], [ -72.773438, 64.014496 ], [ -73.125000, 64.014496 ], [ -73.125000, 64.168107 ], [ -73.476562, 64.168107 ], [ -73.476562, 64.320872 ], [ -73.828125, 64.320872 ], [ -73.828125, 64.472794 ], [ -74.531250, 64.472794 ], [ -74.531250, 64.623877 ], [ -74.882812, 64.623877 ], [ -74.882812, 64.472794 ], [ -76.289062, 64.472794 ], [ -76.289062, 64.320872 ], [ -78.398438, 64.320872 ], [ -78.398438, 64.472794 ], [ -78.750000, 64.472794 ], [ -78.750000, 64.774125 ], [ -78.398438, 64.774125 ], [ -78.398438, 65.072130 ], [ -78.046875, 65.072130 ], [ -78.046875, 65.366837 ], [ -74.882812, 65.366837 ], [ -74.882812, 65.512963 ], [ -74.179688, 65.512963 ], [ -74.179688, 65.658275 ], [ -74.531250, 65.658275 ], [ -74.531250, 66.089364 ], [ -74.179688, 66.089364 ], [ -74.179688, 66.372755 ], [ -73.828125, 66.372755 ], [ -73.828125, 66.652977 ], [ -73.476562, 66.652977 ], [ -73.476562, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.204032 ], [ -63.984375, 67.204032 ] ] ], [ [ [ -81.562500, 67.067433 ], [ -81.914062, 67.067433 ], [ -81.914062, 66.930060 ], [ -82.265625, 66.930060 ], [ -82.265625, 66.791909 ], [ -82.968750, 66.791909 ], [ -82.968750, 66.652977 ], [ -83.320312, 66.652977 ], [ -83.320312, 66.513260 ], [ -84.023438, 66.513260 ], [ -84.023438, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.372755 ], [ -86.132812, 66.372755 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.658275 ], [ -86.835938, 65.658275 ], [ -86.835938, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 65.072130 ], [ -87.539062, 65.072130 ], [ -87.539062, 64.774125 ], [ -87.890625, 64.774125 ], [ -87.890625, 64.472794 ], [ -88.242188, 64.472794 ], [ -88.242188, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 64.014496 ], [ -90.351562, 64.014496 ], [ -90.351562, 63.704722 ], [ -90.703125, 63.704722 ], [ -90.703125, 63.391522 ], [ -91.054688, 63.391522 ], [ -91.054688, 62.915233 ], [ -91.757812, 62.915233 ], [ -91.757812, 67.204032 ], [ -81.562500, 67.204032 ], [ -81.562500, 67.067433 ] ] ], [ [ [ -63.984375, 46.800059 ], [ -63.984375, 46.558860 ], [ -62.226562, 46.558860 ], [ -62.226562, 46.316584 ], [ -62.578125, 46.316584 ], [ -62.578125, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 46.316584 ], [ -64.335938, 46.316584 ], [ -64.335938, 46.558860 ], [ -64.687500, 46.558860 ], [ -64.687500, 46.800059 ], [ -63.984375, 46.800059 ] ] ], [ [ [ -56.601562, 51.618017 ], [ -55.546875, 51.618017 ], [ -55.546875, 51.399206 ], [ -55.898438, 51.399206 ], [ -55.898438, 50.958427 ], [ -56.250000, 50.958427 ], [ -56.250000, 50.513427 ], [ -56.601562, 50.513427 ], [ -56.601562, 50.064192 ], [ -55.546875, 50.064192 ], [ -55.546875, 49.837982 ], [ -55.898438, 49.837982 ], [ -55.898438, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 48.690960 ], [ -53.085938, 48.690960 ], [ -53.085938, 47.989922 ], [ -52.734375, 47.989922 ], [ -52.734375, 47.279229 ], [ -53.085938, 47.279229 ], [ -53.085938, 46.800059 ], [ -54.492188, 46.800059 ], [ -54.492188, 47.279229 ], [ -54.140625, 47.279229 ], [ -54.140625, 47.754098 ], [ -54.492188, 47.754098 ], [ -54.492188, 47.517201 ], [ -54.843750, 47.517201 ], [ -54.843750, 47.279229 ], [ -55.195312, 47.279229 ], [ -55.195312, 47.040182 ], [ -55.898438, 47.040182 ], [ -55.898438, 47.279229 ], [ -55.546875, 47.279229 ], [ -55.546875, 47.517201 ], [ -56.250000, 47.517201 ], [ -56.250000, 47.754098 ], [ -59.765625, 47.754098 ], [ -59.765625, 47.989922 ], [ -59.414062, 47.989922 ], [ -59.414062, 48.224673 ], [ -59.062500, 48.224673 ], [ -59.062500, 48.458352 ], [ -59.414062, 48.458352 ], [ -59.414062, 48.690960 ], [ -59.062500, 48.690960 ], [ -59.062500, 48.922499 ], [ -58.710938, 48.922499 ], [ -58.710938, 49.382373 ], [ -58.359375, 49.382373 ], [ -58.359375, 49.837982 ], [ -58.007812, 49.837982 ], [ -58.007812, 50.289339 ], [ -57.656250, 50.289339 ], [ -57.656250, 50.736455 ], [ -57.304688, 50.736455 ], [ -57.304688, 51.179343 ], [ -56.953125, 51.179343 ], [ -56.953125, 51.399206 ], [ -56.601562, 51.399206 ], [ -56.601562, 51.618017 ] ], [ [ -56.601562, 50.064192 ], [ -56.953125, 50.064192 ], [ -56.953125, 49.837982 ], [ -56.601562, 49.837982 ], [ -56.601562, 50.064192 ] ] ], [ [ [ -85.429688, 65.658275 ], [ -85.429688, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 65.219894 ], [ -84.023438, 65.219894 ], [ -84.023438, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.923542 ], [ -83.320312, 64.923542 ], [ -83.320312, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.623877 ], [ -82.265625, 64.623877 ], [ -82.265625, 64.472794 ], [ -81.914062, 64.472794 ], [ -81.914062, 64.168107 ], [ -81.562500, 64.168107 ], [ -81.562500, 64.014496 ], [ -80.507812, 64.014496 ], [ -80.507812, 63.860036 ], [ -80.156250, 63.860036 ], [ -80.156250, 63.704722 ], [ -80.859375, 63.704722 ], [ -80.859375, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.704722 ], [ -82.968750, 63.704722 ], [ -82.968750, 64.014496 ], [ -83.671875, 64.014496 ], [ -83.671875, 63.860036 ], [ -84.023438, 63.860036 ], [ -84.023438, 63.704722 ], [ -84.375000, 63.704722 ], [ -84.375000, 63.548552 ], [ -84.726562, 63.548552 ], [ -84.726562, 63.391522 ], [ -85.078125, 63.391522 ], [ -85.078125, 63.233627 ], [ -85.429688, 63.233627 ], [ -85.429688, 63.074866 ], [ -85.781250, 63.074866 ], [ -85.781250, 63.391522 ], [ -86.132812, 63.391522 ], [ -86.132812, 63.704722 ], [ -86.484375, 63.704722 ], [ -86.484375, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 63.860036 ], [ -86.835938, 63.860036 ], [ -86.835938, 64.014496 ], [ -86.484375, 64.014496 ], [ -86.484375, 65.366837 ], [ -86.132812, 65.366837 ], [ -86.132812, 65.658275 ], [ -85.429688, 65.658275 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.593341 ], [ -82.265625, 62.593341 ], [ -82.265625, 62.431074 ], [ -82.968750, 62.431074 ], [ -82.968750, 62.267923 ], [ -84.023438, 62.267923 ], [ -84.023438, 62.593341 ], [ -83.671875, 62.593341 ], [ -83.671875, 62.754726 ], [ -83.320312, 62.754726 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -63.984375, 49.837982 ], [ -62.929688, 49.837982 ], [ -62.929688, 49.610710 ], [ -62.226562, 49.610710 ], [ -62.226562, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 49.152970 ], [ -62.929688, 49.152970 ], [ -62.929688, 49.382373 ], [ -63.632812, 49.382373 ], [ -63.632812, 49.610710 ], [ -63.984375, 49.610710 ], [ -63.984375, 49.837982 ] ] ], [ [ [ -79.804688, 62.431074 ], [ -79.804688, 62.267923 ], [ -79.453125, 62.267923 ], [ -79.453125, 61.938950 ], [ -79.804688, 61.938950 ], [ -79.804688, 61.773123 ], [ -80.156250, 61.773123 ], [ -80.156250, 61.938950 ], [ -80.507812, 61.938950 ], [ -80.507812, 62.267923 ], [ -80.156250, 62.267923 ], [ -80.156250, 62.431074 ], [ -79.804688, 62.431074 ] ] ], [ [ [ -63.984375, 49.837982 ], [ -64.687500, 49.837982 ], [ -64.687500, 50.064192 ], [ -63.984375, 50.064192 ], [ -63.984375, 49.837982 ] ] ], [ [ [ -68.906250, 48.458352 ], [ -68.203125, 48.458352 ], [ -68.203125, 48.690960 ], [ -67.500000, 48.690960 ], [ -67.500000, 48.922499 ], [ -66.796875, 48.922499 ], [ -66.796875, 49.152970 ], [ -65.742188, 49.152970 ], [ -65.742188, 49.382373 ], [ -65.390625, 49.382373 ], [ -65.390625, 49.152970 ], [ -64.687500, 49.152970 ], [ -64.687500, 48.922499 ], [ -64.335938, 48.922499 ], [ -64.335938, 48.690960 ], [ -64.687500, 48.690960 ], [ -64.687500, 48.458352 ], [ -65.039062, 48.458352 ], [ -65.039062, 48.224673 ], [ -65.390625, 48.224673 ], [ -65.390625, 47.517201 ], [ -65.039062, 47.517201 ], [ -65.039062, 46.558860 ], [ -64.687500, 46.558860 ], [ -64.687500, 46.073231 ], [ -63.984375, 46.073231 ], [ -63.984375, 45.828799 ], [ -62.226562, 45.828799 ], [ -62.226562, 46.073231 ], [ -61.523438, 46.073231 ], [ -61.523438, 46.316584 ], [ -61.171875, 46.316584 ], [ -61.171875, 46.800059 ], [ -60.820312, 46.800059 ], [ -60.820312, 46.558860 ], [ -60.468750, 46.558860 ], [ -60.468750, 46.073231 ], [ -60.117188, 46.073231 ], [ -60.117188, 45.828799 ], [ -60.468750, 45.828799 ], [ -60.468750, 45.583290 ], [ -60.820312, 45.583290 ], [ -60.820312, 45.336702 ], [ -61.523438, 45.336702 ], [ -61.523438, 45.089036 ], [ -62.578125, 45.089036 ], [ -62.578125, 44.840291 ], [ -63.281250, 44.840291 ], [ -63.281250, 44.590467 ], [ -63.984375, 44.590467 ], [ -63.984375, 44.339565 ], [ -64.335938, 44.339565 ], [ -64.335938, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 43.834527 ], [ -65.039062, 43.834527 ], [ -65.039062, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 43.834527 ], [ -66.445312, 43.834527 ], [ -66.445312, 44.590467 ], [ -66.093750, 44.590467 ], [ -66.093750, 44.840291 ], [ -65.390625, 44.840291 ], [ -65.390625, 45.089036 ], [ -64.687500, 45.089036 ], [ -64.687500, 45.336702 ], [ -67.500000, 45.336702 ], [ -67.500000, 45.583290 ], [ -67.851562, 45.583290 ], [ -67.851562, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 47.040182 ], [ -69.960938, 47.040182 ], [ -69.960938, 47.517201 ], [ -69.609375, 47.517201 ], [ -69.609375, 47.754098 ], [ -69.257812, 47.754098 ], [ -69.257812, 48.224673 ], [ -68.906250, 48.224673 ], [ -68.906250, 48.458352 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.234375, 39.095963 ], [ -75.234375, 38.548165 ], [ -74.882812, 38.548165 ], [ -74.882812, 37.996163 ], [ -75.234375, 37.996163 ], [ -75.234375, 37.718590 ], [ -75.585938, 37.718590 ], [ -75.585938, 37.996163 ], [ -76.289062, 37.996163 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 36.031332 ], [ -75.585938, 36.031332 ], [ -75.585938, 35.173808 ], [ -75.937500, 35.173808 ], [ -75.937500, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.597042 ], [ -77.343750, 34.597042 ], [ -77.343750, 34.307144 ], [ -77.695312, 34.307144 ], [ -77.695312, 34.016242 ], [ -78.046875, 34.016242 ], [ -78.046875, 33.724340 ], [ -78.398438, 33.724340 ], [ -78.398438, 33.431441 ], [ -79.101562, 33.431441 ], [ -79.101562, 32.842674 ], [ -79.804688, 32.842674 ], [ -79.804688, 32.546813 ], [ -80.156250, 32.546813 ], [ -80.156250, 32.249974 ], [ -80.507812, 32.249974 ], [ -80.507812, 31.952162 ], [ -80.859375, 31.952162 ], [ -80.859375, 31.653381 ], [ -81.210938, 31.653381 ], [ -81.210938, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.448674 ], [ -81.210938, 30.448674 ], [ -81.210938, 29.535230 ], [ -80.859375, 29.535230 ], [ -80.859375, 28.921631 ], [ -80.507812, 28.921631 ], [ -80.507812, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 25.482951 ], [ -80.507812, 25.482951 ], [ -80.507812, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.482951 ], [ -81.562500, 25.482951 ], [ -81.562500, 25.799891 ], [ -81.914062, 25.799891 ], [ -81.914062, 26.431228 ], [ -82.265625, 26.431228 ], [ -82.265625, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.683528 ], [ -82.968750, 27.683528 ], [ -82.968750, 28.304381 ], [ -82.617188, 28.304381 ], [ -82.617188, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.228890 ], [ -83.320312, 29.228890 ], [ -83.320312, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 29.840644 ], [ -84.726562, 29.840644 ], [ -84.726562, 29.535230 ], [ -85.429688, 29.535230 ], [ -85.429688, 29.840644 ], [ -85.781250, 29.840644 ], [ -85.781250, 30.145127 ], [ -86.484375, 30.145127 ], [ -86.484375, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.145127 ], [ -88.242188, 30.145127 ], [ -88.242188, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.840644 ], [ -89.296875, 29.840644 ], [ -89.296875, 29.228890 ], [ -91.757812, 29.228890 ], [ -91.757812, 48.224673 ], [ -90.351562, 48.224673 ], [ -90.351562, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.224673 ], [ -88.242188, 48.224673 ], [ -88.242188, 47.989922 ], [ -87.539062, 47.989922 ], [ -87.539062, 47.754098 ], [ -86.835938, 47.754098 ], [ -86.835938, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.279229 ], [ -85.781250, 47.279229 ], [ -85.781250, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.800059 ], [ -84.726562, 46.800059 ], [ -84.726562, 46.316584 ], [ -84.023438, 46.316584 ], [ -84.023438, 46.073231 ], [ -83.320312, 46.073231 ], [ -83.320312, 45.828799 ], [ -83.671875, 45.828799 ], [ -83.671875, 45.583290 ], [ -82.968750, 45.583290 ], [ -82.968750, 45.336702 ], [ -82.617188, 45.336702 ], [ -82.617188, 44.840291 ], [ -82.265625, 44.840291 ], [ -82.265625, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 41.771312 ], [ -81.914062, 41.771312 ], [ -81.914062, 42.032974 ], [ -81.210938, 42.032974 ], [ -81.210938, 42.293564 ], [ -79.804688, 42.293564 ], [ -79.804688, 42.553080 ], [ -79.101562, 42.553080 ], [ -79.101562, 42.811522 ], [ -78.750000, 42.811522 ], [ -78.750000, 43.068888 ], [ -79.101562, 43.068888 ], [ -79.101562, 43.580391 ], [ -76.992188, 43.580391 ], [ -76.992188, 43.834527 ], [ -76.640625, 43.834527 ], [ -76.640625, 44.087585 ], [ -75.937500, 44.087585 ], [ -75.937500, 44.339565 ], [ -75.585938, 44.339565 ], [ -75.585938, 44.590467 ], [ -75.234375, 44.590467 ], [ -75.234375, 44.840291 ], [ -74.882812, 44.840291 ], [ -74.882812, 45.089036 ], [ -71.367188, 45.089036 ], [ -71.367188, 45.336702 ], [ -70.664062, 45.336702 ], [ -70.664062, 45.583290 ], [ -70.312500, 45.583290 ], [ -70.312500, 46.316584 ], [ -69.960938, 46.316584 ], [ -69.960938, 46.800059 ], [ -69.609375, 46.800059 ], [ -69.609375, 47.279229 ], [ -68.203125, 47.279229 ], [ -68.203125, 47.040182 ], [ -67.851562, 47.040182 ], [ -67.851562, 45.336702 ], [ -67.500000, 45.336702 ], [ -67.500000, 45.089036 ], [ -67.148438, 45.089036 ], [ -67.148438, 44.840291 ], [ -66.796875, 44.840291 ], [ -66.796875, 44.590467 ], [ -67.500000, 44.590467 ], [ -67.500000, 44.339565 ], [ -68.203125, 44.339565 ], [ -68.203125, 44.087585 ], [ -68.906250, 44.087585 ], [ -68.906250, 43.834527 ], [ -69.609375, 43.834527 ], [ -69.609375, 43.580391 ], [ -69.960938, 43.580391 ], [ -69.960938, 43.325178 ], [ -70.312500, 43.325178 ], [ -70.312500, 43.068888 ], [ -70.664062, 43.068888 ], [ -70.664062, 41.771312 ], [ -70.312500, 41.771312 ], [ -70.312500, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.508577 ], [ -71.015625, 41.508577 ], [ -71.015625, 41.244772 ], [ -72.070312, 41.244772 ], [ -72.070312, 40.979898 ], [ -72.421875, 40.979898 ], [ -72.421875, 40.713956 ], [ -73.828125, 40.713956 ], [ -73.828125, 39.909736 ], [ -74.179688, 39.909736 ], [ -74.179688, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 38.822591 ], [ -74.882812, 38.822591 ], [ -74.882812, 39.095963 ], [ -75.234375, 39.095963 ] ], [ [ -76.640625, 38.822591 ], [ -76.640625, 38.272689 ], [ -76.289062, 38.272689 ], [ -76.289062, 38.822591 ], [ -76.640625, 38.822591 ] ], [ [ -72.773438, 41.244772 ], [ -73.125000, 41.244772 ], [ -73.125000, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.244772 ] ], [ [ -75.234375, 39.095963 ], [ -75.234375, 39.368279 ], [ -75.585938, 39.368279 ], [ -75.585938, 39.095963 ], [ -75.234375, 39.095963 ] ] ], [ [ [ -75.585938, 37.439974 ], [ -75.585938, 37.160317 ], [ -75.937500, 37.160317 ], [ -75.937500, 37.439974 ], [ -75.585938, 37.439974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.703125, 48.458352 ], [ -90.703125, 48.224673 ], [ -87.890625, 48.224673 ], [ -87.890625, 47.989922 ], [ -87.187500, 47.989922 ], [ -87.187500, 47.754098 ], [ -86.484375, 47.754098 ], [ -86.484375, 47.517201 ], [ -86.132812, 47.517201 ], [ -86.132812, 47.279229 ], [ -85.781250, 47.279229 ], [ -85.781250, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.558860 ], [ -84.375000, 46.558860 ], [ -84.375000, 46.316584 ], [ -83.671875, 46.316584 ], [ -83.671875, 45.828799 ], [ -83.320312, 45.828799 ], [ -83.320312, 45.583290 ], [ -82.617188, 45.583290 ], [ -82.617188, 44.087585 ], [ -82.265625, 44.087585 ], [ -82.265625, 43.325178 ], [ -82.617188, 43.325178 ], [ -82.617188, 42.811522 ], [ -82.968750, 42.811522 ], [ -82.968750, 42.293564 ], [ -83.320312, 42.293564 ], [ -83.320312, 41.771312 ], [ -82.265625, 41.771312 ], [ -82.265625, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 42.293564 ], [ -80.859375, 42.293564 ], [ -80.859375, 42.553080 ], [ -79.804688, 42.553080 ], [ -79.804688, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 43.325178 ], [ -79.453125, 43.325178 ], [ -79.453125, 43.580391 ], [ -78.750000, 43.580391 ], [ -78.750000, 43.834527 ], [ -76.640625, 43.834527 ], [ -76.640625, 44.339565 ], [ -76.289062, 44.339565 ], [ -76.289062, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.840291 ], [ -74.882812, 44.840291 ], [ -74.882812, 45.089036 ], [ -71.718750, 45.089036 ], [ -71.718750, 45.336702 ], [ -70.664062, 45.336702 ], [ -70.664062, 45.828799 ], [ -70.312500, 45.828799 ], [ -70.312500, 46.800059 ], [ -69.960938, 46.800059 ], [ -69.960938, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 47.279229 ], [ -67.851562, 47.279229 ], [ -67.851562, 45.583290 ], [ -67.500000, 45.583290 ], [ -67.500000, 45.336702 ], [ -67.148438, 45.336702 ], [ -67.148438, 44.590467 ], [ -67.851562, 44.590467 ], [ -67.851562, 44.339565 ], [ -68.554688, 44.339565 ], [ -68.554688, 44.087585 ], [ -69.609375, 44.087585 ], [ -69.609375, 43.834527 ], [ -70.312500, 43.834527 ], [ -70.312500, 43.580391 ], [ -70.664062, 43.580391 ], [ -70.664062, 43.068888 ], [ -71.015625, 43.068888 ], [ -71.015625, 42.293564 ], [ -70.664062, 42.293564 ], [ -70.664062, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.771312 ], [ -70.312500, 41.771312 ], [ -70.312500, 41.508577 ], [ -72.421875, 41.508577 ], [ -72.421875, 41.244772 ], [ -72.421875, 40.713956 ], [ -74.531250, 40.713956 ], [ -74.531250, 40.446947 ], [ -74.179688, 40.446947 ], [ -74.179688, 39.639538 ], [ -74.531250, 39.639538 ], [ -74.531250, 39.368279 ], [ -74.882812, 39.368279 ], [ -74.882812, 39.095963 ], [ -75.234375, 39.095963 ], [ -75.234375, 39.368279 ], [ -75.585938, 39.368279 ], [ -75.585938, 38.822591 ], [ -75.234375, 38.822591 ], [ -75.234375, 38.272689 ], [ -75.585938, 38.272689 ], [ -75.585938, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 38.272689 ], [ -76.289062, 38.272689 ], [ -76.289062, 38.822591 ], [ -76.640625, 38.822591 ], [ -76.640625, 38.272689 ], [ -76.992188, 38.272689 ], [ -76.992188, 37.996163 ], [ -76.640625, 37.996163 ], [ -76.640625, 37.439974 ], [ -76.289062, 37.439974 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 35.460670 ], [ -76.289062, 35.460670 ], [ -76.289062, 34.885931 ], [ -76.992188, 34.885931 ], [ -76.992188, 34.597042 ], [ -77.695312, 34.597042 ], [ -77.695312, 34.307144 ], [ -78.046875, 34.307144 ], [ -78.046875, 34.016242 ], [ -78.750000, 34.016242 ], [ -78.750000, 33.724340 ], [ -79.101562, 33.724340 ], [ -79.101562, 33.431441 ], [ -79.453125, 33.431441 ], [ -79.453125, 33.137551 ], [ -79.804688, 33.137551 ], [ -79.804688, 32.842674 ], [ -80.156250, 32.842674 ], [ -80.156250, 32.546813 ], [ -80.507812, 32.546813 ], [ -80.507812, 32.249974 ], [ -81.210938, 32.249974 ], [ -81.210938, 31.952162 ], [ -81.562500, 31.952162 ], [ -81.562500, 29.535230 ], [ -81.210938, 29.535230 ], [ -81.210938, 28.921631 ], [ -80.859375, 28.921631 ], [ -80.859375, 27.994401 ], [ -80.507812, 27.994401 ], [ -80.507812, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 25.799891 ], [ -80.507812, 25.799891 ], [ -80.507812, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.482951 ], [ -81.562500, 25.482951 ], [ -81.562500, 25.799891 ], [ -81.914062, 25.799891 ], [ -81.914062, 26.431228 ], [ -82.265625, 26.431228 ], [ -82.265625, 26.745610 ], [ -82.617188, 26.745610 ], [ -82.617188, 27.371767 ], [ -82.968750, 27.371767 ], [ -82.968750, 29.228890 ], [ -83.320312, 29.228890 ], [ -83.320312, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 29.840644 ], [ -84.023438, 29.840644 ], [ -84.023438, 30.145127 ], [ -84.726562, 30.145127 ], [ -84.726562, 29.840644 ], [ -85.429688, 29.840644 ], [ -85.429688, 30.145127 ], [ -85.781250, 30.145127 ], [ -85.781250, 30.448674 ], [ -89.648438, 30.448674 ], [ -89.648438, 29.535230 ], [ -89.296875, 29.535230 ], [ -89.296875, 29.228890 ], [ -91.406250, 29.228890 ], [ -91.406250, 29.535230 ], [ -91.757812, 29.535230 ], [ -91.757812, 48.224673 ], [ -91.054688, 48.224673 ], [ -91.054688, 48.458352 ], [ -90.703125, 48.458352 ] ], [ [ -72.773438, 41.244772 ], [ -73.125000, 41.244772 ], [ -73.125000, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.244772 ] ] ], [ [ [ -75.937500, 37.718590 ], [ -75.937500, 37.439974 ], [ -76.289062, 37.439974 ], [ -76.289062, 37.718590 ], [ -75.937500, 37.718590 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.187500, 21.616579 ], [ -87.187500, 21.289374 ], [ -86.835938, 21.289374 ], [ -86.835938, 20.632784 ], [ -87.187500, 20.632784 ], [ -87.187500, 20.303418 ], [ -87.539062, 20.303418 ], [ -87.539062, 18.646245 ], [ -87.890625, 18.646245 ], [ -87.890625, 18.312811 ], [ -88.242188, 18.312811 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.644022 ], [ -90.000000, 17.644022 ], [ -90.000000, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 18.646245 ], [ -91.406250, 18.646245 ], [ -91.406250, 18.979026 ], [ -90.703125, 18.979026 ], [ -90.703125, 20.303418 ], [ -90.351562, 20.303418 ], [ -90.351562, 20.961440 ], [ -89.648438, 20.961440 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -87.187500, 21.616579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -91.757812, 16.299051 ], [ -91.757812, 16.972741 ] ] ], [ [ [ -86.835938, 21.289374 ], [ -87.187500, 21.289374 ], [ -87.187500, 20.632784 ], [ -87.539062, 20.632784 ], [ -87.539062, 19.973349 ], [ -87.890625, 19.973349 ], [ -87.890625, 19.642588 ], [ -87.539062, 19.642588 ], [ -87.539062, 19.311143 ], [ -87.890625, 19.311143 ], [ -87.890625, 18.312811 ], [ -88.242188, 18.312811 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.757812, 17.308688 ], [ -91.757812, 18.979026 ], [ -91.054688, 18.979026 ], [ -91.054688, 19.642588 ], [ -90.703125, 19.642588 ], [ -90.703125, 20.961440 ], [ -90.351562, 20.961440 ], [ -90.351562, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -86.835938, 21.616579 ], [ -86.835938, 21.289374 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.978733 ], [ -90.000000, 17.644022 ], [ -89.296875, 17.644022 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.284185 ], [ -88.593750, 15.284185 ], [ -88.593750, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.581921 ], [ -90.703125, 13.581921 ], [ -90.703125, 13.923404 ], [ -91.757812, 13.923404 ], [ -91.757812, 15.961329 ], [ -90.351562, 15.961329 ], [ -90.351562, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.406250, 16.972741 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -90.000000, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 17.978733 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.961329 ], [ -88.242188, 15.623037 ], [ -88.945312, 15.623037 ], [ -88.945312, 15.284185 ], [ -89.296875, 15.284185 ], [ -89.296875, 14.604847 ], [ -89.648438, 14.604847 ], [ -89.648438, 14.264383 ], [ -90.000000, 14.264383 ], [ -90.000000, 13.923404 ], [ -91.406250, 13.923404 ], [ -91.406250, 14.264383 ], [ -91.757812, 14.264383 ], [ -91.757812, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.757812, 16.972741 ], [ -91.757812, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -89.296875, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.398438, 67.204032 ], [ -33.398438, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.513260 ], [ -34.453125, 66.513260 ], [ -34.453125, 66.372755 ], [ -34.804688, 66.372755 ], [ -34.804688, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.089364 ], [ -35.859375, 66.089364 ], [ -35.859375, 65.946472 ], [ -36.914062, 65.946472 ], [ -36.914062, 65.802776 ], [ -37.617188, 65.802776 ], [ -37.617188, 65.658275 ], [ -38.671875, 65.658275 ], [ -38.671875, 65.512963 ], [ -39.726562, 65.512963 ], [ -39.726562, 65.366837 ], [ -40.078125, 65.366837 ], [ -40.078125, 65.072130 ], [ -40.429688, 65.072130 ], [ -40.429688, 64.774125 ], [ -40.781250, 64.774125 ], [ -40.781250, 63.860036 ], [ -41.132812, 63.860036 ], [ -41.132812, 63.391522 ], [ -41.484375, 63.391522 ], [ -41.484375, 63.233627 ], [ -41.835938, 63.233627 ], [ -41.835938, 63.074866 ], [ -42.187500, 63.074866 ], [ -42.187500, 62.915233 ], [ -42.539062, 62.915233 ], [ -42.539062, 62.754726 ], [ -42.890625, 62.754726 ], [ -42.890625, 62.267923 ], [ -42.539062, 62.267923 ], [ -42.539062, 61.438767 ], [ -42.890625, 61.438767 ], [ -42.890625, 60.586967 ], [ -43.242188, 60.586967 ], [ -43.242188, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.413852 ], [ -45.703125, 60.413852 ], [ -45.703125, 60.586967 ], [ -46.054688, 60.586967 ], [ -46.054688, 60.759160 ], [ -46.406250, 60.759160 ], [ -46.406250, 60.930432 ], [ -48.515625, 60.930432 ], [ -48.515625, 61.100789 ], [ -48.867188, 61.100789 ], [ -48.867188, 61.270233 ], [ -49.218750, 61.270233 ], [ -49.218750, 61.606396 ], [ -49.570312, 61.606396 ], [ -49.570312, 62.103883 ], [ -49.921875, 62.103883 ], [ -49.921875, 62.431074 ], [ -50.273438, 62.431074 ], [ -50.273438, 62.754726 ], [ -50.625000, 62.754726 ], [ -50.625000, 63.074866 ], [ -50.976562, 63.074866 ], [ -50.976562, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 64.014496 ], [ -52.031250, 64.014496 ], [ -52.031250, 64.774125 ], [ -52.382812, 64.774125 ], [ -52.382812, 65.219894 ], [ -52.734375, 65.219894 ], [ -52.734375, 65.512963 ], [ -53.085938, 65.512963 ], [ -53.085938, 65.658275 ], [ -53.437500, 65.658275 ], [ -53.437500, 65.946472 ], [ -53.789062, 65.946472 ], [ -53.789062, 66.372755 ], [ -53.437500, 66.372755 ], [ -53.437500, 66.791909 ], [ -53.789062, 66.791909 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.204032 ], [ -33.398438, 67.204032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.750000, 67.204032 ], [ -33.750000, 67.067433 ], [ -34.101562, 67.067433 ], [ -34.101562, 66.791909 ], [ -34.453125, 66.791909 ], [ -34.453125, 66.652977 ], [ -34.804688, 66.652977 ], [ -34.804688, 66.513260 ], [ -35.156250, 66.513260 ], [ -35.156250, 66.372755 ], [ -35.859375, 66.372755 ], [ -35.859375, 66.231457 ], [ -36.210938, 66.231457 ], [ -36.210938, 66.089364 ], [ -36.562500, 66.089364 ], [ -36.562500, 65.946472 ], [ -37.617188, 65.946472 ], [ -37.617188, 65.802776 ], [ -38.671875, 65.802776 ], [ -38.671875, 65.658275 ], [ -39.375000, 65.658275 ], [ -39.375000, 65.512963 ], [ -40.078125, 65.512963 ], [ -40.078125, 65.366837 ], [ -40.429688, 65.366837 ], [ -40.429688, 65.072130 ], [ -40.781250, 65.072130 ], [ -40.781250, 64.014496 ], [ -41.132812, 64.014496 ], [ -41.132812, 63.704722 ], [ -41.484375, 63.704722 ], [ -41.484375, 63.391522 ], [ -41.835938, 63.391522 ], [ -41.835938, 63.233627 ], [ -42.187500, 63.233627 ], [ -42.187500, 62.915233 ], [ -42.539062, 62.915233 ], [ -42.539062, 62.754726 ], [ -42.890625, 62.754726 ], [ -42.890625, 62.267923 ], [ -42.539062, 62.267923 ], [ -42.539062, 61.438767 ], [ -42.890625, 61.438767 ], [ -42.890625, 60.759160 ], [ -43.242188, 60.759160 ], [ -43.242188, 60.413852 ], [ -43.593750, 60.413852 ], [ -43.593750, 60.239811 ], [ -43.945312, 60.239811 ], [ -43.945312, 60.064840 ], [ -45.351562, 60.064840 ], [ -45.351562, 60.239811 ], [ -45.703125, 60.239811 ], [ -45.703125, 60.586967 ], [ -46.054688, 60.586967 ], [ -46.054688, 60.759160 ], [ -46.406250, 60.759160 ], [ -46.406250, 60.930432 ], [ -48.867188, 60.930432 ], [ -48.867188, 61.100789 ], [ -49.218750, 61.100789 ], [ -49.218750, 61.270233 ], [ -49.570312, 61.270233 ], [ -49.570312, 61.938950 ], [ -49.921875, 61.938950 ], [ -49.921875, 62.431074 ], [ -50.273438, 62.431074 ], [ -50.273438, 62.754726 ], [ -50.625000, 62.754726 ], [ -50.625000, 63.074866 ], [ -50.976562, 63.074866 ], [ -50.976562, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 63.860036 ], [ -52.031250, 63.860036 ], [ -52.031250, 64.168107 ], [ -52.382812, 64.168107 ], [ -52.382812, 65.219894 ], [ -52.734375, 65.219894 ], [ -52.734375, 65.512963 ], [ -53.085938, 65.512963 ], [ -53.085938, 65.802776 ], [ -53.437500, 65.802776 ], [ -53.437500, 66.089364 ], [ -53.789062, 66.089364 ], [ -53.789062, 66.513260 ], [ -53.437500, 66.513260 ], [ -53.437500, 66.930060 ], [ -53.789062, 66.930060 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.204032 ], [ -33.750000, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 24.846565 ], [ -78.046875, 24.527135 ], [ -77.695312, 24.527135 ], [ -77.695312, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.206890 ], [ -78.398438, 24.206890 ], [ -78.398438, 24.846565 ], [ -78.046875, 24.846565 ] ] ], [ [ [ -76.992188, 26.745610 ], [ -76.992188, 26.115986 ], [ -77.343750, 26.115986 ], [ -77.343750, 26.745610 ], [ -76.992188, 26.745610 ] ] ], [ [ [ -77.695312, 26.745610 ], [ -77.695312, 26.431228 ], [ -79.101562, 26.431228 ], [ -79.101562, 26.745610 ], [ -77.695312, 26.745610 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 25.482951 ], [ -78.046875, 24.846565 ], [ -77.695312, 24.846565 ], [ -77.695312, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.527135 ], [ -78.750000, 24.527135 ], [ -78.750000, 25.165173 ], [ -78.398438, 25.165173 ], [ -78.398438, 25.482951 ], [ -78.046875, 25.482951 ] ] ], [ [ [ -77.343750, 26.431228 ], [ -77.343750, 26.115986 ], [ -77.695312, 26.115986 ], [ -77.695312, 26.431228 ], [ -77.343750, 26.431228 ] ] ], [ [ [ -78.046875, 27.059126 ], [ -78.046875, 26.745610 ], [ -78.398438, 26.745610 ], [ -78.398438, 26.431228 ], [ -79.101562, 26.431228 ], [ -79.101562, 27.059126 ], [ -78.046875, 27.059126 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 16.299051 ], [ -88.593750, 16.299051 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 17.644022 ], [ -88.242188, 17.644022 ], [ -88.242188, 16.972741 ], [ -88.593750, 16.972741 ], [ -88.593750, 16.299051 ], [ -88.945312, 16.299051 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 14.604847 ], [ -89.296875, 14.264383 ], [ -88.593750, 14.264383 ], [ -88.593750, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -88.945312, 13.239945 ], [ -88.945312, 13.581921 ], [ -90.351562, 13.581921 ], [ -90.351562, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.604847 ], [ -89.296875, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.284185 ], [ -83.320312, 15.284185 ], [ -83.320312, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 14.604847 ], [ -84.726562, 14.604847 ], [ -84.726562, 14.944785 ], [ -85.078125, 14.944785 ], [ -85.078125, 13.923404 ], [ -86.835938, 13.923404 ], [ -86.835938, 12.897489 ], [ -87.539062, 12.897489 ], [ -87.539062, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -88.945312, 13.923404 ], [ -88.945312, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.944785 ], [ -88.593750, 14.944785 ], [ -88.593750, 15.284185 ], [ -88.242188, 15.284185 ], [ -88.242188, 15.623037 ], [ -87.890625, 15.623037 ], [ -87.890625, 15.961329 ], [ -87.539062, 15.961329 ], [ -87.539062, 15.623037 ], [ -86.132812, 15.623037 ], [ -86.132812, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.284185 ], [ -83.671875, 15.284185 ], [ -83.671875, 14.944785 ], [ -85.078125, 14.944785 ], [ -85.078125, 14.604847 ], [ -85.429688, 14.604847 ], [ -85.429688, 14.264383 ], [ -85.781250, 14.264383 ], [ -85.781250, 13.923404 ], [ -86.835938, 13.923404 ], [ -86.835938, 13.581921 ], [ -87.187500, 13.581921 ], [ -87.187500, 13.239945 ], [ -87.539062, 13.239945 ], [ -87.539062, 13.581921 ], [ -87.890625, 13.581921 ], [ -87.890625, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 15.284185 ], [ -88.945312, 15.284185 ], [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.944785 ], [ -83.320312, 13.581921 ], [ -83.671875, 13.581921 ], [ -83.671875, 12.554564 ], [ -83.320312, 12.554564 ], [ -83.320312, 12.211180 ], [ -83.671875, 12.211180 ], [ -83.671875, 11.523088 ], [ -84.023438, 11.523088 ], [ -84.023438, 11.178402 ], [ -83.671875, 11.178402 ], [ -83.671875, 10.833306 ], [ -85.429688, 10.833306 ], [ -85.429688, 11.178402 ], [ -86.132812, 11.178402 ], [ -86.132812, 11.523088 ], [ -86.484375, 11.523088 ], [ -86.484375, 11.867351 ], [ -86.835938, 11.867351 ], [ -86.835938, 12.211180 ], [ -87.187500, 12.211180 ], [ -87.187500, 12.554564 ], [ -87.539062, 12.554564 ], [ -87.539062, 12.897489 ], [ -86.835938, 12.897489 ], [ -86.835938, 13.923404 ], [ -85.078125, 13.923404 ], [ -85.078125, 14.944785 ], [ -84.726562, 14.944785 ], [ -84.726562, 14.604847 ], [ -83.671875, 14.604847 ], [ -83.671875, 14.944785 ], [ -83.320312, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 15.284185 ], [ -83.320312, 14.264383 ], [ -83.671875, 14.264383 ], [ -83.671875, 12.211180 ], [ -84.023438, 12.211180 ], [ -84.023438, 11.867351 ], [ -83.671875, 11.867351 ], [ -83.671875, 11.523088 ], [ -84.023438, 11.523088 ], [ -84.023438, 11.178402 ], [ -83.671875, 11.178402 ], [ -83.671875, 10.833306 ], [ -84.375000, 10.833306 ], [ -84.375000, 11.178402 ], [ -86.132812, 11.178402 ], [ -86.132812, 11.523088 ], [ -86.835938, 11.523088 ], [ -86.835938, 12.211180 ], [ -87.187500, 12.211180 ], [ -87.187500, 12.554564 ], [ -87.539062, 12.554564 ], [ -87.539062, 12.897489 ], [ -87.890625, 12.897489 ], [ -87.890625, 13.239945 ], [ -87.187500, 13.239945 ], [ -87.187500, 13.581921 ], [ -86.835938, 13.581921 ], [ -86.835938, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 14.264383 ], [ -85.429688, 14.264383 ], [ -85.429688, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 15.284185 ], [ -83.320312, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.507812, 23.241346 ], [ -80.507812, 22.917923 ], [ -79.804688, 22.917923 ], [ -79.804688, 22.593726 ], [ -79.453125, 22.593726 ], [ -79.453125, 22.268764 ], [ -78.750000, 22.268764 ], [ -78.750000, 22.593726 ], [ -78.398438, 22.593726 ], [ -78.398438, 22.268764 ], [ -78.046875, 22.268764 ], [ -78.046875, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.616579 ], [ -76.992188, 21.616579 ], [ -76.992188, 21.289374 ], [ -76.289062, 21.289374 ], [ -76.289062, 20.961440 ], [ -75.585938, 20.961440 ], [ -75.585938, 20.632784 ], [ -74.882812, 20.632784 ], [ -74.882812, 20.303418 ], [ -74.179688, 20.303418 ], [ -74.179688, 19.973349 ], [ -76.992188, 19.973349 ], [ -76.992188, 20.303418 ], [ -77.343750, 20.303418 ], [ -77.343750, 20.632784 ], [ -78.398438, 20.632784 ], [ -78.398438, 21.289374 ], [ -78.750000, 21.289374 ], [ -78.750000, 21.616579 ], [ -80.156250, 21.616579 ], [ -80.156250, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 22.268764 ], [ -81.914062, 22.268764 ], [ -81.914062, 22.593726 ], [ -82.617188, 22.593726 ], [ -82.617188, 22.268764 ], [ -84.023438, 22.268764 ], [ -84.023438, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 22.593726 ], [ -83.671875, 22.593726 ], [ -83.671875, 22.917923 ], [ -82.265625, 22.917923 ], [ -82.265625, 23.241346 ], [ -80.507812, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.507812, 23.241346 ], [ -80.507812, 22.917923 ], [ -79.804688, 22.917923 ], [ -79.804688, 22.593726 ], [ -78.046875, 22.593726 ], [ -78.046875, 22.268764 ], [ -77.695312, 22.268764 ], [ -77.695312, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.616579 ], [ -76.992188, 21.616579 ], [ -76.992188, 21.289374 ], [ -75.937500, 21.289374 ], [ -75.937500, 20.961440 ], [ -75.234375, 20.961440 ], [ -75.234375, 20.632784 ], [ -74.531250, 20.632784 ], [ -74.531250, 19.973349 ], [ -77.695312, 19.973349 ], [ -77.695312, 20.303418 ], [ -77.343750, 20.303418 ], [ -77.343750, 20.632784 ], [ -77.695312, 20.632784 ], [ -77.695312, 20.961440 ], [ -78.750000, 20.961440 ], [ -78.750000, 21.616579 ], [ -80.156250, 21.616579 ], [ -80.156250, 21.943046 ], [ -80.859375, 21.943046 ], [ -80.859375, 22.268764 ], [ -82.265625, 22.268764 ], [ -82.265625, 22.593726 ], [ -81.914062, 22.593726 ], [ -81.914062, 22.917923 ], [ -82.968750, 22.917923 ], [ -82.968750, 22.593726 ], [ -83.320312, 22.593726 ], [ -83.320312, 22.268764 ], [ -84.023438, 22.268764 ], [ -84.023438, 21.943046 ], [ -84.726562, 21.943046 ], [ -84.726562, 22.268764 ], [ -84.375000, 22.268764 ], [ -84.375000, 22.593726 ], [ -84.023438, 22.593726 ], [ -84.023438, 22.917923 ], [ -83.320312, 22.917923 ], [ -83.320312, 23.241346 ], [ -80.507812, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.429688, 11.178402 ], [ -85.429688, 10.833306 ], [ -83.671875, 10.833306 ], [ -83.671875, 10.487812 ], [ -83.320312, 10.487812 ], [ -83.320312, 10.141932 ], [ -82.968750, 10.141932 ], [ -82.968750, 9.795678 ], [ -82.617188, 9.795678 ], [ -82.617188, 9.449062 ], [ -82.968750, 9.449062 ], [ -82.968750, 8.059230 ], [ -83.671875, 8.059230 ], [ -83.671875, 9.102097 ], [ -84.023438, 9.102097 ], [ -84.023438, 9.449062 ], [ -84.726562, 9.449062 ], [ -84.726562, 9.795678 ], [ -85.078125, 9.795678 ], [ -85.078125, 9.449062 ], [ -85.429688, 9.449062 ], [ -85.429688, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -85.429688, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 11.178402 ], [ -84.375000, 10.833306 ], [ -83.671875, 10.833306 ], [ -83.671875, 10.141932 ], [ -83.320312, 10.141932 ], [ -83.320312, 9.795678 ], [ -82.968750, 9.795678 ], [ -82.968750, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -84.023438, 9.102097 ], [ -84.023438, 9.449062 ], [ -84.375000, 9.449062 ], [ -84.375000, 9.795678 ], [ -84.726562, 9.795678 ], [ -84.726562, 10.141932 ], [ -85.078125, 10.141932 ], [ -85.078125, 9.795678 ], [ -85.429688, 9.795678 ], [ -85.429688, 10.141932 ], [ -86.132812, 10.141932 ], [ -86.132812, 10.487812 ], [ -85.781250, 10.487812 ], [ -85.781250, 10.833306 ], [ -86.132812, 10.833306 ], [ -86.132812, 11.178402 ], [ -84.375000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.398438, 9.449062 ], [ -78.398438, 9.102097 ], [ -77.695312, 9.102097 ], [ -77.695312, 8.754795 ], [ -77.343750, 8.754795 ], [ -77.343750, 7.710992 ], [ -77.695312, 7.710992 ], [ -77.695312, 7.362467 ], [ -78.046875, 7.362467 ], [ -78.046875, 7.710992 ], [ -78.398438, 7.710992 ], [ -78.398438, 8.059230 ], [ -78.046875, 8.059230 ], [ -78.046875, 8.407168 ], [ -78.750000, 8.407168 ], [ -78.750000, 8.754795 ], [ -79.101562, 8.754795 ], [ -79.101562, 9.102097 ], [ -79.453125, 9.102097 ], [ -79.453125, 8.754795 ], [ -79.804688, 8.754795 ], [ -79.804688, 8.407168 ], [ -80.507812, 8.407168 ], [ -80.507812, 7.710992 ], [ -80.156250, 7.710992 ], [ -80.156250, 7.362467 ], [ -81.210938, 7.362467 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.059230 ], [ -82.265625, 8.059230 ], [ -82.265625, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.449062 ], [ -82.617188, 9.449062 ], [ -82.617188, 9.102097 ], [ -81.562500, 9.102097 ], [ -81.562500, 8.754795 ], [ -80.507812, 8.754795 ], [ -80.507812, 9.102097 ], [ -79.804688, 9.102097 ], [ -79.804688, 9.449062 ], [ -78.398438, 9.449062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.101562, 9.795678 ], [ -79.101562, 9.449062 ], [ -78.398438, 9.449062 ], [ -78.398438, 9.102097 ], [ -78.046875, 9.102097 ], [ -78.046875, 8.754795 ], [ -77.695312, 8.754795 ], [ -77.695312, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.710992 ], [ -78.046875, 7.710992 ], [ -78.046875, 7.362467 ], [ -78.398438, 7.362467 ], [ -78.398438, 7.710992 ], [ -78.750000, 7.710992 ], [ -78.750000, 8.059230 ], [ -78.398438, 8.059230 ], [ -78.398438, 8.407168 ], [ -78.750000, 8.407168 ], [ -78.750000, 8.754795 ], [ -79.453125, 8.754795 ], [ -79.453125, 9.102097 ], [ -79.804688, 9.102097 ], [ -79.804688, 8.407168 ], [ -80.507812, 8.407168 ], [ -80.507812, 8.059230 ], [ -80.156250, 8.059230 ], [ -80.156250, 7.710992 ], [ -80.507812, 7.710992 ], [ -80.507812, 7.362467 ], [ -81.210938, 7.362467 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.059230 ], [ -81.914062, 8.059230 ], [ -81.914062, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -82.617188, 9.795678 ], [ -82.617188, 9.449062 ], [ -82.265625, 9.449062 ], [ -82.265625, 9.102097 ], [ -80.859375, 9.102097 ], [ -80.859375, 9.449062 ], [ -79.804688, 9.449062 ], [ -79.804688, 9.795678 ], [ -79.101562, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.289062, 18.312811 ], [ -76.289062, 17.978733 ], [ -76.992188, 17.978733 ], [ -76.992188, 17.644022 ], [ -77.695312, 17.644022 ], [ -77.695312, 17.978733 ], [ -78.398438, 17.978733 ], [ -78.398438, 18.312811 ], [ -76.289062, 18.312811 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.992188, 18.646245 ], [ -76.992188, 18.312811 ], [ -76.640625, 18.312811 ], [ -76.640625, 17.978733 ], [ -78.398438, 17.978733 ], [ -78.398438, 18.646245 ], [ -76.992188, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.421875, 19.973349 ], [ -72.421875, 19.642588 ], [ -71.718750, 19.642588 ], [ -71.718750, 18.646245 ], [ -72.070312, 18.646245 ], [ -72.070312, 18.312811 ], [ -71.718750, 18.312811 ], [ -71.718750, 17.978733 ], [ -74.531250, 17.978733 ], [ -74.531250, 18.646245 ], [ -73.476562, 18.646245 ], [ -73.476562, 18.312811 ], [ -72.421875, 18.312811 ], [ -72.421875, 18.646245 ], [ -72.773438, 18.646245 ], [ -72.773438, 19.642588 ], [ -73.125000, 19.642588 ], [ -73.125000, 19.973349 ], [ -72.421875, 19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.973349 ], [ -71.718750, 18.312811 ], [ -74.531250, 18.312811 ], [ -74.531250, 18.979026 ], [ -74.179688, 18.979026 ], [ -74.179688, 18.646245 ], [ -72.421875, 18.646245 ], [ -72.421875, 18.979026 ], [ -73.125000, 18.979026 ], [ -73.125000, 19.642588 ], [ -73.476562, 19.642588 ], [ -73.476562, 19.973349 ], [ -71.718750, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.664062, 19.973349 ], [ -70.664062, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.906250, 18.979026 ], [ -68.906250, 18.646245 ], [ -68.203125, 18.646245 ], [ -68.203125, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 17.978733 ], [ -71.367188, 17.978733 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 18.312811 ], [ -72.070312, 18.312811 ], [ -72.070312, 18.646245 ], [ -71.718750, 18.646245 ], [ -71.718750, 19.973349 ], [ -70.664062, 19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.015625, 19.973349 ], [ -71.015625, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.906250, 18.979026 ], [ -68.906250, 18.646245 ], [ -68.554688, 18.646245 ], [ -68.554688, 18.312811 ], [ -69.257812, 18.312811 ], [ -69.257812, 18.646245 ], [ -69.960938, 18.646245 ], [ -69.960938, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 17.978733 ], [ -71.367188, 17.978733 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 19.973349 ], [ -71.015625, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.148438, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -69.960938, 0.703107 ], [ -69.960938, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -1.054628 ], [ -69.257812, -1.054628 ], [ -69.257812, -1.406109 ], [ -69.609375, -1.406109 ], [ -69.609375, -1.757537 ], [ -73.828125, -1.757537 ], [ -73.828125, -1.406109 ], [ -74.179688, -1.406109 ], [ -74.179688, -1.054628 ], [ -74.531250, -1.054628 ], [ -74.531250, -0.703107 ], [ -74.882812, -0.703107 ], [ -74.882812, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, 0.000000 ], [ -76.289062, 0.000000 ], [ -76.289062, 0.351560 ], [ -77.695312, 0.351560 ], [ -77.695312, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -78.750000, 1.757537 ], [ -78.750000, 2.108899 ], [ -78.398438, 2.108899 ], [ -78.398438, 2.460181 ], [ -78.046875, 2.460181 ], [ -78.046875, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 3.513421 ], [ -76.992188, 3.513421 ], [ -76.992188, 3.864255 ], [ -77.343750, 3.864255 ], [ -77.343750, 4.915833 ], [ -77.695312, 4.915833 ], [ -77.695312, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.664608 ], [ -77.695312, 6.664608 ], [ -77.695312, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.362467 ], [ -77.695312, 7.362467 ], [ -77.695312, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.754795 ], [ -76.640625, 8.754795 ], [ -76.640625, 9.102097 ], [ -75.937500, 9.102097 ], [ -75.937500, 9.449062 ], [ -75.585938, 9.449062 ], [ -75.585938, 10.487812 ], [ -75.234375, 10.487812 ], [ -75.234375, 10.833306 ], [ -74.882812, 10.833306 ], [ -74.882812, 11.178402 ], [ -73.125000, 11.178402 ], [ -73.125000, 11.523088 ], [ -72.773438, 11.523088 ], [ -72.773438, 11.867351 ], [ -72.070312, 11.867351 ], [ -72.070312, 12.211180 ], [ -71.015625, 12.211180 ], [ -71.015625, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.523088 ], [ -72.070312, 11.523088 ], [ -72.070312, 10.833306 ], [ -72.773438, 10.833306 ], [ -72.773438, 10.141932 ], [ -73.125000, 10.141932 ], [ -73.125000, 9.449062 ], [ -73.476562, 9.449062 ], [ -73.476562, 9.102097 ], [ -72.773438, 9.102097 ], [ -72.773438, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.362467 ], [ -72.070312, 7.362467 ], [ -72.070312, 7.013668 ], [ -69.960938, 7.013668 ], [ -69.960938, 6.664608 ], [ -69.609375, 6.664608 ], [ -69.609375, 5.965754 ], [ -68.906250, 5.965754 ], [ -68.906250, 6.315299 ], [ -67.851562, 6.315299 ], [ -67.851562, 5.965754 ], [ -67.500000, 5.965754 ], [ -67.500000, 5.266008 ], [ -67.851562, 5.266008 ], [ -67.851562, 4.214943 ], [ -67.500000, 4.214943 ], [ -67.500000, 3.162456 ], [ -67.148438, 3.162456 ], [ -67.148438, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 2.460181 ], [ -67.500000, 2.460181 ], [ -67.500000, 2.108899 ], [ -67.148438, 2.108899 ], [ -67.148438, 1.757537 ] ] ], [ [ [ -67.148438, 1.757537 ], [ -66.796875, 1.757537 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.757537 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.351560 ], [ -69.609375, -0.351560 ], [ -69.609375, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.351560 ], [ -77.343750, 0.351560 ], [ -77.343750, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -78.750000, 1.757537 ], [ -78.750000, 2.811371 ], [ -78.046875, 2.811371 ], [ -78.046875, 3.162456 ], [ -77.695312, 3.162456 ], [ -77.695312, 3.513421 ], [ -77.343750, 3.513421 ], [ -77.343750, 3.864255 ], [ -77.695312, 3.864255 ], [ -77.695312, 4.565474 ], [ -77.343750, 4.565474 ], [ -77.343750, 5.266008 ], [ -77.695312, 5.266008 ], [ -77.695312, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.315299 ], [ -77.695312, 6.315299 ], [ -77.695312, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.407168 ], [ -77.695312, 8.407168 ], [ -77.695312, 8.754795 ], [ -76.640625, 8.754795 ], [ -76.640625, 9.102097 ], [ -76.289062, 9.102097 ], [ -76.289062, 9.449062 ], [ -75.937500, 9.449062 ], [ -75.937500, 10.141932 ], [ -75.585938, 10.141932 ], [ -75.585938, 10.833306 ], [ -75.234375, 10.833306 ], [ -75.234375, 11.178402 ], [ -74.531250, 11.178402 ], [ -74.531250, 11.523088 ], [ -72.773438, 11.523088 ], [ -72.773438, 11.867351 ], [ -72.421875, 11.867351 ], [ -72.421875, 12.211180 ], [ -72.070312, 12.211180 ], [ -72.070312, 12.554564 ], [ -71.718750, 12.554564 ], [ -71.718750, 12.211180 ], [ -71.367188, 12.211180 ], [ -71.367188, 11.867351 ], [ -72.070312, 11.867351 ], [ -72.070312, 11.523088 ], [ -72.421875, 11.523088 ], [ -72.421875, 10.833306 ], [ -72.773438, 10.833306 ], [ -72.773438, 10.487812 ], [ -73.125000, 10.487812 ], [ -73.125000, 9.449062 ], [ -73.476562, 9.449062 ], [ -73.476562, 9.102097 ], [ -73.125000, 9.102097 ], [ -73.125000, 8.754795 ], [ -72.773438, 8.754795 ], [ -72.773438, 8.059230 ], [ -72.421875, 8.059230 ], [ -72.421875, 7.710992 ], [ -72.773438, 7.710992 ], [ -72.773438, 7.362467 ], [ -72.421875, 7.362467 ], [ -72.421875, 7.013668 ], [ -71.367188, 7.013668 ], [ -71.367188, 7.362467 ], [ -71.015625, 7.362467 ], [ -71.015625, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 6.315299 ], [ -67.500000, 6.315299 ], [ -67.500000, 5.965754 ], [ -67.851562, 5.965754 ], [ -67.851562, 3.864255 ], [ -67.500000, 3.864255 ], [ -67.500000, 3.162456 ], [ -67.851562, 3.162456 ], [ -67.851562, 2.811371 ], [ -67.500000, 2.811371 ], [ -67.500000, 1.757537 ] ] ], [ [ [ -67.500000, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.445312, 18.646245 ], [ -66.445312, 18.312811 ], [ -65.742188, 18.312811 ], [ -65.742188, 17.978733 ], [ -67.148438, 17.978733 ], [ -67.148438, 18.646245 ], [ -66.445312, 18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, 18.646245 ], [ -66.093750, 18.312811 ], [ -65.742188, 18.312811 ], [ -65.742188, 17.978733 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.867351 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 10.833306 ], [ -68.203125, 10.833306 ], [ -68.203125, 10.487812 ], [ -66.093750, 10.487812 ], [ -66.093750, 10.141932 ], [ -64.335938, 10.141932 ], [ -64.335938, 10.487812 ], [ -63.281250, 10.487812 ], [ -63.281250, 10.833306 ], [ -61.875000, 10.833306 ], [ -61.875000, 10.487812 ], [ -62.578125, 10.487812 ], [ -62.578125, 10.141932 ], [ -62.226562, 10.141932 ], [ -62.226562, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.449062 ], [ -60.820312, 9.449062 ], [ -60.820312, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 6.664608 ], [ -61.171875, 6.664608 ], [ -61.171875, 5.965754 ], [ -61.523438, 5.965754 ], [ -61.523438, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 4.915833 ], [ -60.468750, 4.915833 ], [ -60.468750, 4.565474 ], [ -61.171875, 4.565474 ], [ -61.171875, 4.214943 ], [ -62.226562, 4.214943 ], [ -62.226562, 3.864255 ], [ -64.335938, 3.864255 ], [ -64.335938, 2.460181 ], [ -63.281250, 2.460181 ], [ -63.281250, 1.757537 ], [ -63.984375, 1.757537 ], [ -63.984375, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 2.108899 ], [ -67.500000, 2.108899 ], [ -67.500000, 2.460181 ], [ -67.851562, 2.460181 ], [ -67.851562, 2.811371 ], [ -67.148438, 2.811371 ], [ -67.148438, 3.162456 ], [ -67.500000, 3.162456 ], [ -67.500000, 4.214943 ], [ -67.851562, 4.214943 ], [ -67.851562, 5.266008 ], [ -67.500000, 5.266008 ], [ -67.500000, 5.965754 ], [ -67.851562, 5.965754 ], [ -67.851562, 6.315299 ], [ -68.906250, 6.315299 ], [ -68.906250, 5.965754 ], [ -69.609375, 5.965754 ], [ -69.609375, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 7.013668 ], [ -72.070312, 7.013668 ], [ -72.070312, 7.362467 ], [ -72.421875, 7.362467 ], [ -72.421875, 8.407168 ], [ -72.773438, 8.407168 ], [ -72.773438, 9.102097 ], [ -73.476562, 9.102097 ], [ -73.476562, 9.449062 ], [ -73.125000, 9.449062 ], [ -73.125000, 10.141932 ], [ -72.773438, 10.141932 ], [ -72.773438, 10.833306 ], [ -72.070312, 10.833306 ], [ -72.070312, 11.178402 ], [ -71.718750, 11.178402 ], [ -71.718750, 10.141932 ], [ -72.070312, 10.141932 ], [ -72.070312, 9.449062 ], [ -71.718750, 9.449062 ], [ -71.718750, 9.102097 ], [ -71.367188, 9.102097 ], [ -71.367188, 9.449062 ], [ -71.015625, 9.449062 ], [ -71.015625, 9.795678 ], [ -71.367188, 9.795678 ], [ -71.367188, 10.833306 ], [ -71.015625, 10.833306 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.867351 ], [ -69.609375, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.609375, 11.867351 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 10.833306 ], [ -66.445312, 10.833306 ], [ -66.445312, 10.487812 ], [ -65.742188, 10.487812 ], [ -65.742188, 10.141932 ], [ -64.335938, 10.141932 ], [ -64.335938, 10.833306 ], [ -62.226562, 10.833306 ], [ -62.226562, 10.487812 ], [ -62.929688, 10.487812 ], [ -62.929688, 10.141932 ], [ -61.875000, 10.141932 ], [ -61.875000, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.449062 ], [ -61.171875, 9.449062 ], [ -61.171875, 9.102097 ], [ -60.820312, 9.102097 ], [ -60.820312, 8.754795 ], [ -60.468750, 8.754795 ], [ -60.468750, 8.407168 ], [ -60.117188, 8.407168 ], [ -60.117188, 8.059230 ], [ -60.820312, 8.059230 ], [ -60.820312, 7.362467 ], [ -60.468750, 7.362467 ], [ -60.468750, 7.013668 ], [ -61.171875, 7.013668 ], [ -61.171875, 5.965754 ], [ -61.523438, 5.965754 ], [ -61.523438, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 4.565474 ], [ -61.523438, 4.565474 ], [ -61.523438, 4.214943 ], [ -62.929688, 4.214943 ], [ -62.929688, 3.864255 ], [ -63.984375, 3.864255 ], [ -63.984375, 4.214943 ], [ -65.039062, 4.214943 ], [ -65.039062, 3.864255 ], [ -64.687500, 3.864255 ], [ -64.687500, 2.811371 ], [ -64.335938, 2.811371 ], [ -64.335938, 2.460181 ], [ -63.632812, 2.460181 ], [ -63.632812, 2.108899 ], [ -64.335938, 2.108899 ], [ -64.335938, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.757537 ], [ -67.500000, 1.757537 ], [ -67.500000, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 3.162456 ], [ -67.500000, 3.162456 ], [ -67.500000, 3.864255 ], [ -67.851562, 3.864255 ], [ -67.851562, 5.965754 ], [ -67.500000, 5.965754 ], [ -67.500000, 6.315299 ], [ -69.960938, 6.315299 ], [ -69.960938, 6.664608 ], [ -70.312500, 6.664608 ], [ -70.312500, 7.013668 ], [ -71.015625, 7.013668 ], [ -71.015625, 7.362467 ], [ -71.367188, 7.362467 ], [ -71.367188, 7.013668 ], [ -72.421875, 7.013668 ], [ -72.421875, 7.362467 ], [ -72.773438, 7.362467 ], [ -72.773438, 7.710992 ], [ -72.421875, 7.710992 ], [ -72.421875, 8.059230 ], [ -72.773438, 8.059230 ], [ -72.773438, 8.754795 ], [ -73.125000, 8.754795 ], [ -73.125000, 9.102097 ], [ -73.476562, 9.102097 ], [ -73.476562, 9.449062 ], [ -73.125000, 9.449062 ], [ -73.125000, 10.487812 ], [ -72.773438, 10.487812 ], [ -72.773438, 10.833306 ], [ -72.421875, 10.833306 ], [ -72.421875, 11.523088 ], [ -72.070312, 11.523088 ], [ -72.070312, 11.178402 ], [ -71.718750, 11.178402 ], [ -70.664062, 11.178402 ], [ -70.664062, 11.523088 ], [ -70.312500, 11.523088 ], [ -70.312500, 11.867351 ], [ -69.609375, 11.867351 ] ], [ [ -71.718750, 10.833306 ], [ -71.718750, 10.141932 ], [ -72.421875, 10.141932 ], [ -72.421875, 9.795678 ], [ -72.070312, 9.795678 ], [ -72.070312, 9.102097 ], [ -71.367188, 9.102097 ], [ -71.367188, 10.833306 ], [ -71.718750, 10.833306 ] ] ], [ [ [ -71.367188, 11.523088 ], [ -72.070312, 11.523088 ], [ -72.070312, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.523088 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.820312, 10.833306 ], [ -60.820312, 10.141932 ], [ -61.523438, 10.141932 ], [ -61.523438, 10.833306 ], [ -60.820312, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, 10.833306 ], [ -61.171875, 10.141932 ], [ -61.875000, 10.141932 ], [ -61.875000, 10.833306 ], [ -61.171875, 10.833306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 8.059230 ], [ -59.062500, 7.710992 ], [ -58.710938, 7.710992 ], [ -58.710938, 7.362467 ], [ -58.359375, 7.362467 ], [ -58.359375, 6.664608 ], [ -58.007812, 6.664608 ], [ -58.007812, 6.315299 ], [ -57.656250, 6.315299 ], [ -57.656250, 5.965754 ], [ -57.304688, 5.965754 ], [ -57.304688, 4.915833 ], [ -58.007812, 4.915833 ], [ -58.007812, 3.513421 ], [ -57.656250, 3.513421 ], [ -57.656250, 3.162456 ], [ -57.304688, 3.162456 ], [ -57.304688, 2.460181 ], [ -56.953125, 2.460181 ], [ -56.953125, 1.757537 ], [ -57.656250, 1.757537 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 2.460181 ], [ -60.117188, 2.460181 ], [ -60.117188, 3.162456 ], [ -59.765625, 3.162456 ], [ -59.765625, 3.513421 ], [ -59.414062, 3.513421 ], [ -59.414062, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.565474 ], [ -60.117188, 4.565474 ], [ -60.117188, 5.266008 ], [ -61.171875, 5.266008 ], [ -61.171875, 5.615986 ], [ -61.523438, 5.615986 ], [ -61.523438, 5.965754 ], [ -61.171875, 5.965754 ], [ -61.171875, 6.664608 ], [ -60.468750, 6.664608 ], [ -60.468750, 7.710992 ], [ -60.117188, 7.710992 ], [ -60.117188, 8.059230 ], [ -59.062500, 8.059230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.765625, 8.059230 ], [ -59.414062, 8.059230 ], [ -59.414062, 7.710992 ], [ -59.062500, 7.710992 ], [ -59.062500, 7.362467 ], [ -58.710938, 7.362467 ], [ -58.710938, 7.013668 ], [ -58.359375, 7.013668 ], [ -58.359375, 6.664608 ], [ -57.656250, 6.664608 ], [ -57.656250, 6.315299 ], [ -57.304688, 6.315299 ], [ -57.304688, 4.915833 ], [ -58.007812, 4.915833 ], [ -58.007812, 4.565474 ], [ -58.359375, 4.565474 ], [ -58.359375, 3.864255 ], [ -58.007812, 3.864255 ], [ -58.007812, 3.513421 ], [ -57.304688, 3.513421 ], [ -57.304688, 2.460181 ], [ -56.953125, 2.460181 ], [ -56.953125, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 1.757537 ], [ -58.710938, 1.757537 ], [ -58.710938, 1.406109 ], [ -59.414062, 1.406109 ], [ -59.414062, 1.757537 ], [ -59.765625, 1.757537 ], [ -59.765625, 2.460181 ], [ -60.117188, 2.460181 ], [ -60.117188, 3.864255 ], [ -59.765625, 3.864255 ], [ -59.765625, 4.565474 ], [ -60.117188, 4.565474 ], [ -60.117188, 5.266008 ], [ -61.171875, 5.266008 ], [ -61.171875, 5.615986 ], [ -61.523438, 5.615986 ], [ -61.523438, 5.965754 ], [ -61.171875, 5.965754 ], [ -61.171875, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.362467 ], [ -60.820312, 7.362467 ], [ -60.820312, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 8.407168 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, 5.965754 ], [ -54.843750, 5.615986 ], [ -53.789062, 5.615986 ], [ -53.789062, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 4.915833 ], [ -54.492188, 4.915833 ], [ -54.492188, 3.864255 ], [ -54.140625, 3.864255 ], [ -54.140625, 2.460181 ], [ -55.898438, 2.460181 ], [ -55.898438, 1.757537 ], [ -56.953125, 1.757537 ], [ -56.953125, 2.460181 ], [ -57.304688, 2.460181 ], [ -57.304688, 3.162456 ], [ -57.656250, 3.162456 ], [ -57.656250, 3.513421 ], [ -58.007812, 3.513421 ], [ -58.007812, 4.915833 ], [ -57.304688, 4.915833 ], [ -57.304688, 5.965754 ], [ -56.953125, 5.965754 ], [ -56.953125, 5.615986 ], [ -55.898438, 5.615986 ], [ -55.898438, 5.965754 ], [ -54.843750, 5.965754 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, 6.315299 ], [ -54.843750, 5.965754 ], [ -54.140625, 5.965754 ], [ -54.140625, 5.266008 ], [ -54.492188, 5.266008 ], [ -54.492188, 3.864255 ], [ -54.140625, 3.864255 ], [ -54.140625, 3.513421 ], [ -54.492188, 3.513421 ], [ -54.492188, 2.460181 ], [ -56.250000, 2.460181 ], [ -56.250000, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 2.460181 ], [ -57.304688, 2.460181 ], [ -57.304688, 3.513421 ], [ -58.007812, 3.513421 ], [ -58.007812, 3.864255 ], [ -58.359375, 3.864255 ], [ -58.359375, 4.565474 ], [ -58.007812, 4.565474 ], [ -58.007812, 4.915833 ], [ -57.304688, 4.915833 ], [ -57.304688, 6.315299 ], [ -56.953125, 6.315299 ], [ -56.953125, 5.965754 ], [ -55.195312, 5.965754 ], [ -55.195312, 6.315299 ], [ -54.843750, 6.315299 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.414062, 66.513260 ], [ -14.414062, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.658275 ], [ -14.414062, 65.658275 ], [ -14.414062, 65.366837 ], [ -14.062500, 65.366837 ], [ -14.062500, 65.072130 ], [ -13.710938, 65.072130 ], [ -13.710938, 64.923542 ], [ -14.062500, 64.923542 ], [ -14.062500, 64.623877 ], [ -14.414062, 64.623877 ], [ -14.414062, 64.320872 ], [ -15.117188, 64.320872 ], [ -15.117188, 64.168107 ], [ -15.820312, 64.168107 ], [ -15.820312, 64.014496 ], [ -16.523438, 64.014496 ], [ -16.523438, 63.860036 ], [ -17.226562, 63.860036 ], [ -17.226562, 63.704722 ], [ -17.929688, 63.704722 ], [ -17.929688, 63.548552 ], [ -19.687500, 63.548552 ], [ -19.687500, 63.704722 ], [ -21.093750, 63.704722 ], [ -21.093750, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -22.148438, 64.168107 ], [ -22.148438, 64.320872 ], [ -21.796875, 64.320872 ], [ -21.796875, 64.472794 ], [ -22.500000, 64.472794 ], [ -22.500000, 64.623877 ], [ -23.203125, 64.623877 ], [ -23.203125, 64.774125 ], [ -23.906250, 64.774125 ], [ -23.906250, 64.923542 ], [ -22.851562, 64.923542 ], [ -22.851562, 65.072130 ], [ -22.148438, 65.072130 ], [ -22.148438, 65.366837 ], [ -22.851562, 65.366837 ], [ -22.851562, 65.512963 ], [ -23.906250, 65.512963 ], [ -23.906250, 65.658275 ], [ -24.257812, 65.658275 ], [ -24.257812, 65.802776 ], [ -23.906250, 65.802776 ], [ -23.906250, 66.089364 ], [ -23.554688, 66.089364 ], [ -23.554688, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.372755 ], [ -22.148438, 66.372755 ], [ -22.148438, 66.231457 ], [ -21.796875, 66.231457 ], [ -21.796875, 66.089364 ], [ -21.445312, 66.089364 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -20.390625, 65.802776 ], [ -20.390625, 65.946472 ], [ -19.687500, 65.946472 ], [ -19.687500, 66.089364 ], [ -18.281250, 66.089364 ], [ -18.281250, 65.946472 ], [ -17.578125, 65.946472 ], [ -17.578125, 66.089364 ], [ -17.226562, 66.089364 ], [ -17.226562, 66.231457 ], [ -16.523438, 66.231457 ], [ -16.523438, 66.372755 ], [ -16.171875, 66.372755 ], [ -16.171875, 66.513260 ], [ -14.414062, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.652977 ], [ -15.820312, 66.513260 ], [ -14.765625, 66.513260 ], [ -14.765625, 65.802776 ], [ -14.414062, 65.802776 ], [ -14.414062, 65.512963 ], [ -14.062500, 65.512963 ], [ -14.062500, 65.219894 ], [ -13.710938, 65.219894 ], [ -13.710938, 65.072130 ], [ -14.062500, 65.072130 ], [ -14.062500, 64.923542 ], [ -14.414062, 64.923542 ], [ -14.414062, 64.623877 ], [ -14.765625, 64.623877 ], [ -14.765625, 64.472794 ], [ -15.117188, 64.472794 ], [ -15.117188, 64.320872 ], [ -15.820312, 64.320872 ], [ -15.820312, 64.168107 ], [ -16.171875, 64.168107 ], [ -16.171875, 64.014496 ], [ -16.875000, 64.014496 ], [ -16.875000, 63.860036 ], [ -17.578125, 63.860036 ], [ -17.578125, 63.704722 ], [ -18.281250, 63.704722 ], [ -18.281250, 63.548552 ], [ -19.687500, 63.548552 ], [ -19.687500, 63.704722 ], [ -21.093750, 63.704722 ], [ -21.093750, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -22.148438, 64.168107 ], [ -22.148438, 64.320872 ], [ -21.796875, 64.320872 ], [ -21.796875, 64.472794 ], [ -22.500000, 64.472794 ], [ -22.500000, 64.623877 ], [ -23.203125, 64.623877 ], [ -23.203125, 64.774125 ], [ -23.906250, 64.774125 ], [ -23.906250, 64.923542 ], [ -23.554688, 64.923542 ], [ -23.554688, 65.072130 ], [ -22.851562, 65.072130 ], [ -22.851562, 65.219894 ], [ -22.500000, 65.219894 ], [ -22.500000, 65.512963 ], [ -23.906250, 65.512963 ], [ -23.906250, 65.658275 ], [ -24.609375, 65.658275 ], [ -24.609375, 65.802776 ], [ -24.257812, 65.802776 ], [ -24.257812, 66.089364 ], [ -23.906250, 66.089364 ], [ -23.906250, 66.372755 ], [ -22.851562, 66.372755 ], [ -22.851562, 66.513260 ], [ -22.148438, 66.513260 ], [ -22.148438, 66.372755 ], [ -21.796875, 66.372755 ], [ -21.796875, 66.231457 ], [ -21.445312, 66.231457 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -20.390625, 65.802776 ], [ -20.390625, 65.946472 ], [ -20.039062, 65.946472 ], [ -20.039062, 66.089364 ], [ -19.687500, 66.089364 ], [ -19.687500, 66.231457 ], [ -18.632812, 66.231457 ], [ -18.632812, 66.089364 ], [ -17.578125, 66.089364 ], [ -17.578125, 66.231457 ], [ -17.226562, 66.231457 ], [ -17.226562, 66.372755 ], [ -16.523438, 66.372755 ], [ -16.523438, 66.513260 ], [ -16.171875, 66.513260 ], [ -16.171875, 66.652977 ], [ -15.820312, 66.652977 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 54.977614 ], [ -7.734375, 54.775346 ], [ -7.382812, 54.775346 ], [ -7.382812, 54.367759 ], [ -7.734375, 54.367759 ], [ -7.734375, 54.162434 ], [ -7.031250, 54.162434 ], [ -7.031250, 53.956086 ], [ -6.328125, 53.956086 ], [ -6.328125, 53.540307 ], [ -5.976562, 53.540307 ], [ -5.976562, 52.908902 ], [ -6.328125, 52.908902 ], [ -6.328125, 52.482780 ], [ -6.679688, 52.482780 ], [ -6.679688, 52.052490 ], [ -7.382812, 52.052490 ], [ -7.382812, 51.835778 ], [ -8.085938, 51.835778 ], [ -8.085938, 51.618017 ], [ -9.492188, 51.618017 ], [ -9.492188, 51.835778 ], [ -9.843750, 51.835778 ], [ -9.843750, 52.052490 ], [ -9.492188, 52.052490 ], [ -9.492188, 52.482780 ], [ -9.140625, 52.482780 ], [ -9.140625, 53.120405 ], [ -9.492188, 53.120405 ], [ -9.492188, 53.540307 ], [ -9.843750, 53.540307 ], [ -9.843750, 53.956086 ], [ -9.492188, 53.956086 ], [ -9.492188, 54.162434 ], [ -8.789062, 54.162434 ], [ -8.789062, 54.367759 ], [ -8.437500, 54.367759 ], [ -8.437500, 54.572062 ], [ -8.085938, 54.572062 ], [ -8.085938, 54.977614 ], [ -7.734375, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.977614 ], [ -7.382812, 54.367759 ], [ -7.734375, 54.367759 ], [ -7.734375, 54.162434 ], [ -7.031250, 54.162434 ], [ -7.031250, 53.956086 ], [ -6.328125, 53.956086 ], [ -6.328125, 52.908902 ], [ -6.679688, 52.908902 ], [ -6.679688, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 52.268157 ], [ -7.382812, 52.268157 ], [ -7.382812, 52.052490 ], [ -8.085938, 52.052490 ], [ -8.085938, 51.835778 ], [ -10.195312, 51.835778 ], [ -10.195312, 52.052490 ], [ -9.843750, 52.052490 ], [ -9.843750, 52.482780 ], [ -9.492188, 52.482780 ], [ -9.492188, 53.330873 ], [ -9.843750, 53.330873 ], [ -9.843750, 53.956086 ], [ -9.492188, 53.956086 ], [ -9.492188, 54.162434 ], [ -9.140625, 54.162434 ], [ -9.140625, 54.367759 ], [ -8.789062, 54.367759 ], [ -8.789062, 54.572062 ], [ -8.437500, 54.572062 ], [ -8.437500, 54.775346 ], [ -8.085938, 54.775346 ], [ -8.085938, 54.977614 ], [ -7.382812, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.164062, 58.631217 ], [ -3.164062, 58.447733 ], [ -3.515625, 58.447733 ], [ -3.515625, 58.077876 ], [ -3.867188, 58.077876 ], [ -3.867188, 57.704147 ], [ -4.218750, 57.704147 ], [ -4.218750, 57.515823 ], [ -3.515625, 57.515823 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 56.752723 ], [ -2.460938, 56.752723 ], [ -2.460938, 56.365250 ], [ -2.812500, 56.365250 ], [ -2.812500, 55.973798 ], [ -2.109375, 55.973798 ], [ -2.109375, 55.578345 ], [ -1.757812, 55.578345 ], [ -1.757812, 55.178868 ], [ -1.406250, 55.178868 ], [ -1.406250, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.367759 ], [ -0.351562, 54.367759 ], [ -0.351562, 53.956086 ], [ 0.000000, 53.956086 ], [ 0.000000, 53.540307 ], [ 0.351562, 53.540307 ], [ 0.351562, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.268157 ], [ 1.406250, 52.268157 ], [ 1.406250, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ 1.054688, 51.179343 ], [ 1.054688, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.513427 ], [ -3.164062, 50.513427 ], [ -3.164062, 50.289339 ], [ -4.570312, 50.289339 ], [ -4.570312, 50.064192 ], [ -5.273438, 50.064192 ], [ -5.273438, 50.289339 ], [ -4.921875, 50.289339 ], [ -4.921875, 50.736455 ], [ -4.570312, 50.736455 ], [ -4.570312, 50.958427 ], [ -4.218750, 50.958427 ], [ -4.218750, 51.179343 ], [ -3.515625, 51.179343 ], [ -3.515625, 51.399206 ], [ -4.570312, 51.399206 ], [ -4.570312, 51.618017 ], [ -4.921875, 51.618017 ], [ -4.921875, 51.835778 ], [ -5.273438, 51.835778 ], [ -5.273438, 52.052490 ], [ -4.570312, 52.052490 ], [ -4.570312, 52.696361 ], [ -4.921875, 52.696361 ], [ -4.921875, 53.120405 ], [ -4.570312, 53.120405 ], [ -4.570312, 53.540307 ], [ -4.218750, 53.540307 ], [ -4.218750, 53.330873 ], [ -3.164062, 53.330873 ], [ -3.164062, 53.540307 ], [ -2.812500, 53.540307 ], [ -2.812500, 53.956086 ], [ -3.164062, 53.956086 ], [ -3.164062, 54.367759 ], [ -3.515625, 54.367759 ], [ -3.515625, 54.572062 ], [ -4.570312, 54.572062 ], [ -4.570312, 54.775346 ], [ -4.921875, 54.775346 ], [ -4.921875, 55.178868 ], [ -4.570312, 55.178868 ], [ -4.570312, 55.578345 ], [ -5.273438, 55.578345 ], [ -5.273438, 55.379110 ], [ -5.625000, 55.379110 ], [ -5.625000, 56.559482 ], [ -5.976562, 56.559482 ], [ -5.976562, 57.326521 ], [ -5.625000, 57.326521 ], [ -5.625000, 58.077876 ], [ -5.273438, 58.077876 ], [ -5.273438, 58.447733 ], [ -4.921875, 58.447733 ], [ -4.921875, 58.631217 ], [ -3.164062, 58.631217 ] ] ], [ [ [ -6.679688, 55.178868 ], [ -6.679688, 54.977614 ], [ -6.328125, 54.977614 ], [ -6.328125, 54.775346 ], [ -5.976562, 54.775346 ], [ -5.976562, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.367759 ], [ -5.976562, 54.367759 ], [ -5.976562, 53.956086 ], [ -7.031250, 53.956086 ], [ -7.031250, 54.162434 ], [ -7.734375, 54.162434 ], [ -7.734375, 54.367759 ], [ -7.382812, 54.367759 ], [ -7.382812, 54.775346 ], [ -7.734375, 54.775346 ], [ -7.734375, 55.178868 ], [ -6.679688, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 58.631217 ], [ -3.515625, 58.263287 ], [ -3.867188, 58.263287 ], [ -3.867188, 57.891497 ], [ -4.218750, 57.891497 ], [ -4.218750, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 57.326521 ], [ -2.460938, 57.326521 ], [ -2.460938, 56.559482 ], [ -2.812500, 56.559482 ], [ -2.812500, 56.170023 ], [ -3.164062, 56.170023 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.973798 ], [ -2.109375, 55.578345 ], [ -1.757812, 55.578345 ], [ -1.757812, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 54.162434 ], [ -0.351562, 54.162434 ], [ -0.351562, 53.540307 ], [ 0.000000, 53.540307 ], [ 0.000000, 53.120405 ], [ 0.703125, 53.120405 ], [ 0.703125, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 52.052490 ], [ 1.054688, 52.052490 ], [ 1.054688, 51.835778 ], [ 0.703125, 51.835778 ], [ 0.703125, 51.618017 ], [ 1.054688, 51.618017 ], [ 1.054688, 51.399206 ], [ 1.406250, 51.399206 ], [ 1.406250, 51.179343 ], [ 0.703125, 51.179343 ], [ 0.703125, 50.958427 ], [ -1.406250, 50.958427 ], [ -1.406250, 50.736455 ], [ -2.109375, 50.736455 ], [ -2.109375, 50.513427 ], [ -3.515625, 50.513427 ], [ -3.515625, 50.289339 ], [ -4.921875, 50.289339 ], [ -4.921875, 50.064192 ], [ -5.976562, 50.064192 ], [ -5.976562, 50.289339 ], [ -5.625000, 50.289339 ], [ -5.625000, 50.513427 ], [ -5.273438, 50.513427 ], [ -5.273438, 50.958427 ], [ -4.921875, 50.958427 ], [ -4.921875, 51.179343 ], [ -4.570312, 51.179343 ], [ -4.570312, 51.399206 ], [ -3.867188, 51.399206 ], [ -3.867188, 51.618017 ], [ -5.273438, 51.618017 ], [ -5.273438, 52.052490 ], [ -4.921875, 52.052490 ], [ -4.921875, 52.268157 ], [ -4.570312, 52.268157 ], [ -4.570312, 52.696361 ], [ -4.921875, 52.696361 ], [ -4.921875, 53.540307 ], [ -3.164062, 53.540307 ], [ -3.164062, 54.162434 ], [ -3.515625, 54.162434 ], [ -3.515625, 54.572062 ], [ -3.867188, 54.572062 ], [ -3.867188, 54.775346 ], [ -4.570312, 54.775346 ], [ -4.570312, 54.977614 ], [ -5.273438, 54.977614 ], [ -5.273438, 55.379110 ], [ -4.921875, 55.379110 ], [ -4.921875, 55.776573 ], [ -5.273438, 55.776573 ], [ -5.273438, 55.578345 ], [ -5.625000, 55.578345 ], [ -5.625000, 55.776573 ], [ -5.976562, 55.776573 ], [ -5.976562, 56.559482 ], [ -6.328125, 56.559482 ], [ -6.328125, 57.326521 ], [ -5.976562, 57.326521 ], [ -5.976562, 58.077876 ], [ -5.625000, 58.077876 ], [ -5.625000, 58.447733 ], [ -5.273438, 58.447733 ], [ -5.273438, 58.631217 ], [ -3.515625, 58.631217 ] ] ], [ [ [ -7.031250, 55.178868 ], [ -7.031250, 54.977614 ], [ -6.679688, 54.977614 ], [ -6.679688, 54.775346 ], [ -6.328125, 54.775346 ], [ -6.328125, 54.572062 ], [ -5.976562, 54.572062 ], [ -5.976562, 54.162434 ], [ -6.328125, 54.162434 ], [ -6.328125, 53.956086 ], [ -7.031250, 53.956086 ], [ -7.031250, 54.162434 ], [ -7.734375, 54.162434 ], [ -7.734375, 54.367759 ], [ -7.382812, 54.367759 ], [ -7.382812, 54.977614 ], [ -7.734375, 54.977614 ], [ -7.734375, 55.178868 ], [ -7.031250, 55.178868 ] ] ], [ [ [ -3.164062, 58.631217 ], [ -3.515625, 58.631217 ], [ -3.515625, 58.813742 ], [ -3.164062, 58.813742 ], [ -3.164062, 58.631217 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.437500, 5.615986 ], [ -53.437500, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 4.915833 ], [ -52.031250, 4.915833 ], [ -52.031250, 4.565474 ], [ -51.679688, 4.565474 ], [ -51.679688, 3.864255 ], [ -52.031250, 3.864255 ], [ -52.031250, 3.162456 ], [ -52.382812, 3.162456 ], [ -52.382812, 2.108899 ], [ -53.437500, 2.108899 ], [ -53.437500, 2.460181 ], [ -53.789062, 2.460181 ], [ -53.789062, 2.108899 ], [ -54.492188, 2.108899 ], [ -54.492188, 2.460181 ], [ -54.140625, 2.460181 ], [ -54.140625, 3.864255 ], [ -54.492188, 3.864255 ], [ -54.492188, 4.915833 ], [ -54.140625, 4.915833 ], [ -54.140625, 5.266008 ], [ -53.789062, 5.266008 ], [ -53.789062, 5.615986 ], [ -53.437500, 5.615986 ] ] ], [ [ [ 1.757812, 50.513427 ], [ 1.757812, 42.293564 ], [ 1.406250, 42.293564 ], [ 1.406250, 42.553080 ], [ -0.351562, 42.553080 ], [ -0.351562, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 45.089036 ], [ -1.054688, 45.089036 ], [ -1.054688, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.558860 ], [ -1.757812, 46.558860 ], [ -1.757812, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 47.754098 ], [ -4.218750, 47.754098 ], [ -4.218750, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -3.515625, 48.690960 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.690960 ], [ -1.757812, 48.690960 ], [ -1.757812, 49.610710 ], [ -1.406250, 49.610710 ], [ -1.406250, 49.382373 ], [ -0.351562, 49.382373 ], [ -0.351562, 49.610710 ], [ 0.351562, 49.610710 ], [ 0.351562, 49.837982 ], [ 1.054688, 49.837982 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.757812, 50.513427 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.789062, 5.965754 ], [ -53.789062, 5.615986 ], [ -53.085938, 5.615986 ], [ -53.085938, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 4.915833 ], [ -52.382812, 4.915833 ], [ -52.382812, 4.565474 ], [ -52.031250, 4.565474 ], [ -52.031250, 4.214943 ], [ -51.679688, 4.214943 ], [ -51.679688, 3.864255 ], [ -52.031250, 3.864255 ], [ -52.031250, 3.513421 ], [ -52.382812, 3.513421 ], [ -52.382812, 3.162456 ], [ -52.734375, 3.162456 ], [ -52.734375, 2.460181 ], [ -53.085938, 2.460181 ], [ -53.085938, 2.108899 ], [ -54.843750, 2.108899 ], [ -54.843750, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 3.513421 ], [ -54.140625, 3.513421 ], [ -54.140625, 3.864255 ], [ -54.492188, 3.864255 ], [ -54.492188, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 5.965754 ], [ -53.789062, 5.965754 ] ] ], [ [ [ 1.757812, 50.958427 ], [ 1.757812, 42.553080 ], [ 1.054688, 42.553080 ], [ 1.054688, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.325178 ], [ -2.109375, 43.325178 ], [ -2.109375, 43.580391 ], [ -1.757812, 43.580391 ], [ -1.757812, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 46.073231 ], [ -1.757812, 46.073231 ], [ -1.757812, 46.558860 ], [ -2.109375, 46.558860 ], [ -2.109375, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.517201 ], [ -3.164062, 47.517201 ], [ -3.164062, 47.754098 ], [ -4.218750, 47.754098 ], [ -4.218750, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.224673 ], [ -4.921875, 48.224673 ], [ -4.921875, 48.690960 ], [ -3.867188, 48.690960 ], [ -3.867188, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.690960 ], [ -1.757812, 48.690960 ], [ -1.757812, 49.152970 ], [ -2.109375, 49.152970 ], [ -2.109375, 49.610710 ], [ -1.406250, 49.610710 ], [ -1.406250, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.837982 ], [ 0.351562, 49.837982 ], [ 0.351562, 50.064192 ], [ 1.054688, 50.064192 ], [ 1.054688, 50.513427 ], [ 1.406250, 50.513427 ], [ 1.406250, 50.958427 ], [ 1.757812, 50.958427 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.799891 ], [ -11.953125, 23.241346 ], [ -13.007812, 23.241346 ], [ -13.007812, 21.289374 ], [ -15.468750, 21.289374 ], [ -15.468750, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.563987 ], [ -13.710938, 23.563987 ], [ -13.710938, 23.885838 ], [ -13.359375, 23.885838 ], [ -13.359375, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.165173 ], [ -12.304688, 25.165173 ], [ -12.304688, 25.799891 ], [ -11.953125, 25.799891 ] ] ], [ [ [ -8.789062, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 26.115986 ], [ -11.601562, 26.115986 ], [ -11.601562, 26.431228 ], [ -11.250000, 26.431228 ], [ -11.250000, 26.745610 ], [ -9.492188, 26.745610 ], [ -9.492188, 27.059126 ], [ -8.789062, 27.059126 ], [ -8.789062, 25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -16.875000, 21.616579 ], [ -16.875000, 21.289374 ], [ -17.226562, 21.289374 ], [ -17.226562, 21.616579 ], [ -16.875000, 21.616579 ] ] ], [ [ [ -12.304688, 24.846565 ], [ -11.953125, 24.846565 ], [ -11.953125, 23.563987 ], [ -13.007812, 23.563987 ], [ -13.007812, 23.241346 ], [ -13.359375, 23.241346 ], [ -13.359375, 22.268764 ], [ -13.007812, 22.268764 ], [ -13.007812, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 22.268764 ], [ -14.414062, 22.268764 ], [ -14.414062, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.482951 ], [ -12.304688, 25.482951 ], [ -12.304688, 24.846565 ] ] ], [ [ [ -11.953125, 26.115986 ], [ -11.953125, 26.431228 ], [ -11.601562, 26.431228 ], [ -11.601562, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 27.371767 ], [ -9.140625, 27.371767 ], [ -9.140625, 27.683528 ], [ -8.789062, 27.683528 ], [ -8.789062, 26.115986 ], [ -11.953125, 26.115986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 42.032974 ], [ -8.085938, 41.771312 ], [ -6.679688, 41.771312 ], [ -6.679688, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 40.713956 ], [ -7.031250, 40.713956 ], [ -7.031250, 39.639538 ], [ -7.382812, 39.639538 ], [ -7.382812, 39.368279 ], [ -7.031250, 39.368279 ], [ -7.031250, 38.548165 ], [ -7.382812, 38.548165 ], [ -7.382812, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 36.879621 ], [ -8.789062, 36.879621 ], [ -8.789062, 38.272689 ], [ -9.140625, 38.272689 ], [ -9.140625, 38.548165 ], [ -9.492188, 38.548165 ], [ -9.492188, 39.368279 ], [ -9.140625, 39.368279 ], [ -9.140625, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.244772 ], [ -9.140625, 41.244772 ], [ -9.140625, 41.771312 ], [ -8.789062, 41.771312 ], [ -8.789062, 42.032974 ], [ -8.085938, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 42.293564 ], [ -8.437500, 42.032974 ], [ -6.679688, 42.032974 ], [ -6.679688, 41.244772 ], [ -7.031250, 41.244772 ], [ -7.031250, 40.178873 ], [ -7.382812, 40.178873 ], [ -7.382812, 39.639538 ], [ -7.734375, 39.639538 ], [ -7.734375, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 38.272689 ], [ -7.031250, 38.272689 ], [ -7.031250, 37.996163 ], [ -7.382812, 37.996163 ], [ -7.382812, 37.718590 ], [ -7.734375, 37.718590 ], [ -7.734375, 36.879621 ], [ -9.140625, 36.879621 ], [ -9.140625, 37.160317 ], [ -8.789062, 37.160317 ], [ -8.789062, 37.996163 ], [ -9.140625, 37.996163 ], [ -9.140625, 38.272689 ], [ -9.492188, 38.272689 ], [ -9.492188, 38.548165 ], [ -9.843750, 38.548165 ], [ -9.843750, 39.095963 ], [ -9.492188, 39.095963 ], [ -9.492188, 39.639538 ], [ -9.140625, 39.639538 ], [ -9.140625, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.508577 ], [ -9.140625, 41.508577 ], [ -9.140625, 42.032974 ], [ -8.789062, 42.032974 ], [ -8.789062, 42.293564 ], [ -8.437500, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 43.834527 ], [ -7.734375, 43.580391 ], [ -4.921875, 43.580391 ], [ -4.921875, 43.325178 ], [ -3.515625, 43.325178 ], [ -3.515625, 43.580391 ], [ -2.812500, 43.580391 ], [ -2.812500, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.553080 ], [ 1.406250, 42.553080 ], [ 1.406250, 42.293564 ], [ 1.757812, 42.293564 ], [ 1.757812, 41.244772 ], [ 1.406250, 41.244772 ], [ 1.406250, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 36.597889 ], [ -4.218750, 36.597889 ], [ -4.218750, 36.315125 ], [ -4.921875, 36.315125 ], [ -4.921875, 36.031332 ], [ -6.328125, 36.031332 ], [ -6.328125, 36.597889 ], [ -6.679688, 36.597889 ], [ -6.679688, 36.879621 ], [ -7.382812, 36.879621 ], [ -7.382812, 37.439974 ], [ -7.031250, 37.439974 ], [ -7.031250, 37.996163 ], [ -7.382812, 37.996163 ], [ -7.382812, 38.548165 ], [ -7.031250, 38.548165 ], [ -7.031250, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 39.639538 ], [ -7.031250, 39.639538 ], [ -7.031250, 40.713956 ], [ -6.679688, 40.713956 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.679688, 41.508577 ], [ -6.679688, 41.771312 ], [ -8.085938, 41.771312 ], [ -8.085938, 42.032974 ], [ -8.789062, 42.032974 ], [ -8.789062, 41.771312 ], [ -9.140625, 41.771312 ], [ -9.140625, 42.811522 ], [ -9.492188, 42.811522 ], [ -9.492188, 43.068888 ], [ -9.140625, 43.068888 ], [ -9.140625, 43.325178 ], [ -8.437500, 43.325178 ], [ -8.437500, 43.580391 ], [ -8.085938, 43.580391 ], [ -8.085938, 43.834527 ], [ -7.734375, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 43.834527 ], [ -7.734375, 43.580391 ], [ -2.109375, 43.580391 ], [ -2.109375, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ], [ 1.054688, 42.811522 ], [ 1.054688, 42.553080 ], [ 1.757812, 42.553080 ], [ 1.757812, 41.244772 ], [ 0.703125, 41.244772 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.703125, 38.548165 ], [ -0.703125, 37.718590 ], [ -1.757812, 37.718590 ], [ -1.757812, 37.439974 ], [ -2.109375, 37.439974 ], [ -2.109375, 36.879621 ], [ -4.570312, 36.879621 ], [ -4.570312, 36.597889 ], [ -5.273438, 36.597889 ], [ -5.273438, 36.315125 ], [ -5.625000, 36.315125 ], [ -5.625000, 36.031332 ], [ -5.976562, 36.031332 ], [ -5.976562, 36.315125 ], [ -6.328125, 36.315125 ], [ -6.328125, 36.879621 ], [ -6.679688, 36.879621 ], [ -6.679688, 37.160317 ], [ -7.734375, 37.160317 ], [ -7.734375, 37.718590 ], [ -7.382812, 37.718590 ], [ -7.382812, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 38.272689 ], [ -7.382812, 38.272689 ], [ -7.382812, 39.368279 ], [ -7.734375, 39.368279 ], [ -7.734375, 39.639538 ], [ -7.382812, 39.639538 ], [ -7.382812, 40.178873 ], [ -7.031250, 40.178873 ], [ -7.031250, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 42.032974 ], [ -8.437500, 42.032974 ], [ -8.437500, 42.293564 ], [ -8.789062, 42.293564 ], [ -8.789062, 42.032974 ], [ -9.140625, 42.032974 ], [ -9.140625, 42.811522 ], [ -9.492188, 42.811522 ], [ -9.492188, 43.068888 ], [ -9.140625, 43.068888 ], [ -9.140625, 43.325178 ], [ -8.437500, 43.325178 ], [ -8.437500, 43.580391 ], [ -8.085938, 43.580391 ], [ -8.085938, 43.834527 ], [ -7.734375, 43.834527 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.746512 ], [ -5.273438, 35.460670 ], [ -3.164062, 35.460670 ], [ -3.164062, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 34.885931 ], [ -1.757812, 34.885931 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ], [ -1.406250, 32.546813 ], [ -1.054688, 32.546813 ], [ -1.054688, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 31.952162 ], [ -2.460938, 31.952162 ], [ -2.460938, 31.653381 ], [ -3.515625, 31.653381 ], [ -3.515625, 30.751278 ], [ -3.867188, 30.751278 ], [ -3.867188, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.145127 ], [ -5.273438, 30.145127 ], [ -5.273438, 29.840644 ], [ -6.328125, 29.840644 ], [ -6.328125, 29.535230 ], [ -7.382812, 29.535230 ], [ -7.382812, 29.228890 ], [ -8.085938, 29.228890 ], [ -8.085938, 28.921631 ], [ -8.789062, 28.921631 ], [ -8.789062, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 26.745610 ], [ -11.250000, 26.745610 ], [ -11.250000, 26.431228 ], [ -11.601562, 26.431228 ], [ -11.601562, 26.115986 ], [ -11.953125, 26.115986 ], [ -11.953125, 25.799891 ], [ -12.304688, 25.799891 ], [ -12.304688, 25.165173 ], [ -12.656250, 25.165173 ], [ -12.656250, 24.527135 ], [ -13.007812, 24.527135 ], [ -13.007812, 24.206890 ], [ -13.359375, 24.206890 ], [ -13.359375, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 23.563987 ], [ -14.062500, 23.563987 ], [ -14.062500, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 21.616579 ], [ -15.468750, 21.616579 ], [ -15.468750, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.943046 ], [ -16.523438, 21.943046 ], [ -16.523438, 22.268764 ], [ -16.171875, 22.268764 ], [ -16.171875, 23.241346 ], [ -15.820312, 23.241346 ], [ -15.820312, 23.885838 ], [ -15.468750, 23.885838 ], [ -15.468750, 24.206890 ], [ -15.117188, 24.206890 ], [ -15.117188, 24.846565 ], [ -14.765625, 24.846565 ], [ -14.765625, 25.799891 ], [ -14.414062, 25.799891 ], [ -14.414062, 26.115986 ], [ -14.062500, 26.115986 ], [ -14.062500, 26.431228 ], [ -13.710938, 26.431228 ], [ -13.710938, 26.745610 ], [ -13.359375, 26.745610 ], [ -13.359375, 27.371767 ], [ -13.007812, 27.371767 ], [ -13.007812, 27.683528 ], [ -12.656250, 27.683528 ], [ -12.656250, 27.994401 ], [ -11.250000, 27.994401 ], [ -11.250000, 28.613459 ], [ -10.898438, 28.613459 ], [ -10.898438, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.228890 ], [ -10.195312, 29.228890 ], [ -10.195312, 29.535230 ], [ -9.492188, 29.535230 ], [ -9.492188, 30.448674 ], [ -9.843750, 30.448674 ], [ -9.843750, 31.353637 ], [ -9.492188, 31.353637 ], [ -9.492188, 32.249974 ], [ -9.140625, 32.249974 ], [ -9.140625, 32.842674 ], [ -8.789062, 32.842674 ], [ -8.789062, 33.137551 ], [ -8.437500, 33.137551 ], [ -8.437500, 33.431441 ], [ -7.734375, 33.431441 ], [ -7.734375, 33.724340 ], [ -7.031250, 33.724340 ], [ -7.031250, 34.307144 ], [ -6.679688, 34.307144 ], [ -6.679688, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 35.460670 ], [ -5.976562, 35.460670 ], [ -5.976562, 35.746512 ], [ -5.273438, 35.746512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 36.031332 ], [ -5.273438, 35.746512 ], [ -4.921875, 35.746512 ], [ -4.921875, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 35.173808 ], [ -2.460938, 35.173808 ], [ -2.460938, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 34.307144 ], [ -1.757812, 34.307144 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ], [ -1.406250, 32.546813 ], [ -1.757812, 32.546813 ], [ -1.757812, 32.249974 ], [ -2.812500, 32.249974 ], [ -2.812500, 31.952162 ], [ -3.164062, 31.952162 ], [ -3.164062, 31.653381 ], [ -3.867188, 31.653381 ], [ -3.867188, 31.052934 ], [ -4.218750, 31.052934 ], [ -4.218750, 30.751278 ], [ -4.921875, 30.751278 ], [ -4.921875, 30.448674 ], [ -5.273438, 30.448674 ], [ -5.273438, 30.145127 ], [ -5.625000, 30.145127 ], [ -5.625000, 29.840644 ], [ -7.382812, 29.840644 ], [ -7.382812, 29.535230 ], [ -7.734375, 29.535230 ], [ -7.734375, 29.228890 ], [ -8.437500, 29.228890 ], [ -8.437500, 28.921631 ], [ -8.789062, 28.921631 ], [ -8.789062, 27.683528 ], [ -9.140625, 27.683528 ], [ -9.140625, 27.371767 ], [ -9.492188, 27.371767 ], [ -9.492188, 27.059126 ], [ -11.601562, 27.059126 ], [ -11.601562, 26.431228 ], [ -11.953125, 26.431228 ], [ -11.953125, 26.115986 ], [ -12.304688, 26.115986 ], [ -12.304688, 25.482951 ], [ -12.656250, 25.482951 ], [ -12.656250, 24.527135 ], [ -13.007812, 24.527135 ], [ -13.007812, 24.206890 ], [ -13.710938, 24.206890 ], [ -13.710938, 23.885838 ], [ -14.062500, 23.885838 ], [ -14.062500, 23.241346 ], [ -14.414062, 23.241346 ], [ -14.414062, 22.268764 ], [ -14.765625, 22.268764 ], [ -14.765625, 21.616579 ], [ -17.226562, 21.616579 ], [ -17.226562, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 22.593726 ], [ -16.523438, 22.593726 ], [ -16.523438, 23.563987 ], [ -16.171875, 23.563987 ], [ -16.171875, 23.885838 ], [ -15.820312, 23.885838 ], [ -15.820312, 24.206890 ], [ -15.468750, 24.206890 ], [ -15.468750, 24.527135 ], [ -15.117188, 24.527135 ], [ -15.117188, 26.115986 ], [ -14.765625, 26.115986 ], [ -14.765625, 26.431228 ], [ -14.062500, 26.431228 ], [ -14.062500, 26.745610 ], [ -13.710938, 26.745610 ], [ -13.710938, 27.371767 ], [ -13.359375, 27.371767 ], [ -13.359375, 27.683528 ], [ -13.007812, 27.683528 ], [ -13.007812, 27.994401 ], [ -12.656250, 27.994401 ], [ -12.656250, 28.304381 ], [ -11.601562, 28.304381 ], [ -11.601562, 28.613459 ], [ -10.898438, 28.613459 ], [ -10.898438, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.228890 ], [ -10.195312, 29.228890 ], [ -10.195312, 29.840644 ], [ -9.843750, 29.840644 ], [ -9.843750, 31.653381 ], [ -9.492188, 31.653381 ], [ -9.492188, 32.842674 ], [ -9.140625, 32.842674 ], [ -9.140625, 33.137551 ], [ -8.789062, 33.137551 ], [ -8.789062, 33.431441 ], [ -8.085938, 33.431441 ], [ -8.085938, 33.724340 ], [ -7.382812, 33.724340 ], [ -7.382812, 34.016242 ], [ -7.031250, 34.016242 ], [ -7.031250, 34.307144 ], [ -6.679688, 34.307144 ], [ -6.679688, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 35.460670 ], [ -5.976562, 35.460670 ], [ -5.976562, 36.031332 ], [ -5.273438, 36.031332 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.414062, 16.636192 ], [ -14.414062, 16.299051 ], [ -14.062500, 16.299051 ], [ -14.062500, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 14.944785 ], [ -12.304688, 14.944785 ], [ -12.304688, 14.264383 ], [ -11.953125, 14.264383 ], [ -11.953125, 13.239945 ], [ -11.601562, 13.239945 ], [ -11.601562, 12.554564 ], [ -12.304688, 12.554564 ], [ -12.304688, 12.211180 ], [ -13.359375, 12.211180 ], [ -13.359375, 12.554564 ], [ -16.523438, 12.554564 ], [ -16.523438, 12.897489 ], [ -16.875000, 12.897489 ], [ -16.875000, 13.239945 ], [ -13.710938, 13.239945 ], [ -13.710938, 13.581921 ], [ -15.117188, 13.581921 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.468750, 13.581921 ], [ -16.875000, 13.581921 ], [ -16.875000, 13.923404 ], [ -17.226562, 13.923404 ], [ -17.226562, 14.264383 ], [ -17.578125, 14.264383 ], [ -17.578125, 14.604847 ], [ -17.226562, 14.604847 ], [ -17.226562, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.961329 ], [ -16.523438, 15.961329 ], [ -16.523438, 16.299051 ], [ -15.117188, 16.299051 ], [ -15.117188, 16.636192 ], [ -14.414062, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.414062, 16.636192 ], [ -14.414062, 16.299051 ], [ -13.710938, 16.299051 ], [ -13.710938, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 14.944785 ], [ -12.304688, 14.944785 ], [ -12.304688, 13.923404 ], [ -11.953125, 13.923404 ], [ -11.953125, 13.239945 ], [ -11.601562, 13.239945 ], [ -11.601562, 12.554564 ], [ -13.359375, 12.554564 ], [ -13.359375, 12.897489 ], [ -15.820312, 12.897489 ], [ -15.820312, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -15.820312, 13.239945 ], [ -15.820312, 13.581921 ], [ -14.062500, 13.581921 ], [ -14.062500, 13.923404 ], [ -16.875000, 13.923404 ], [ -16.875000, 14.264383 ], [ -17.226562, 14.264383 ], [ -17.226562, 14.604847 ], [ -17.929688, 14.604847 ], [ -17.929688, 14.944785 ], [ -17.226562, 14.944785 ], [ -17.226562, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.961329 ], [ -16.523438, 15.961329 ], [ -16.523438, 16.299051 ], [ -16.171875, 16.299051 ], [ -16.171875, 16.636192 ], [ -14.414062, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -15.117188, 13.581921 ], [ -13.710938, 13.581921 ], [ -13.710938, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.581921 ], [ -15.468750, 13.581921 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 13.923404 ], [ -14.062500, 13.581921 ], [ -15.820312, 13.581921 ], [ -15.820312, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.923404 ], [ -14.062500, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.554564 ], [ -13.710938, 11.523088 ], [ -14.765625, 11.523088 ], [ -14.765625, 11.178402 ], [ -15.820312, 11.178402 ], [ -15.820312, 11.523088 ], [ -16.171875, 11.523088 ], [ -16.171875, 11.867351 ], [ -16.523438, 11.867351 ], [ -16.523438, 12.554564 ], [ -13.710938, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.897489 ], [ -13.710938, 12.554564 ], [ -14.062500, 12.554564 ], [ -14.062500, 11.867351 ], [ -14.414062, 11.867351 ], [ -14.414062, 11.523088 ], [ -15.117188, 11.523088 ], [ -15.117188, 11.178402 ], [ -15.820312, 11.178402 ], [ -15.820312, 11.523088 ], [ -16.523438, 11.523088 ], [ -16.523438, 12.211180 ], [ -16.875000, 12.211180 ], [ -16.875000, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.820312, 12.897489 ], [ -13.710938, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.601562, 12.554564 ], [ -11.601562, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 11.867351 ], [ -9.843750, 11.867351 ], [ -9.843750, 12.211180 ], [ -8.789062, 12.211180 ], [ -8.789062, 11.523088 ], [ -8.437500, 11.523088 ], [ -8.437500, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 9.449062 ], [ -8.085938, 9.449062 ], [ -8.085938, 8.754795 ], [ -7.734375, 8.754795 ], [ -7.734375, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 8.059230 ], [ -8.085938, 8.059230 ], [ -8.085938, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.362467 ], [ -9.492188, 7.362467 ], [ -9.492188, 8.059230 ], [ -9.843750, 8.059230 ], [ -9.843750, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 9.449062 ], [ -10.898438, 9.449062 ], [ -10.898438, 9.795678 ], [ -11.250000, 9.795678 ], [ -11.250000, 10.141932 ], [ -11.953125, 10.141932 ], [ -11.953125, 9.795678 ], [ -12.304688, 9.795678 ], [ -12.304688, 9.449062 ], [ -12.656250, 9.449062 ], [ -12.656250, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 8.754795 ], [ -13.359375, 8.754795 ], [ -13.359375, 9.102097 ], [ -13.710938, 9.102097 ], [ -13.710938, 9.449062 ], [ -14.062500, 9.449062 ], [ -14.062500, 9.795678 ], [ -14.414062, 9.795678 ], [ -14.414062, 10.141932 ], [ -14.765625, 10.141932 ], [ -14.765625, 10.833306 ], [ -15.117188, 10.833306 ], [ -15.117188, 11.178402 ], [ -14.765625, 11.178402 ], [ -14.765625, 11.523088 ], [ -13.710938, 11.523088 ], [ -13.710938, 12.554564 ], [ -13.359375, 12.554564 ], [ -13.359375, 12.211180 ], [ -12.304688, 12.211180 ], [ -12.304688, 12.554564 ], [ -11.601562, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.359375, 12.897489 ], [ -13.359375, 12.554564 ], [ -11.601562, 12.554564 ], [ -11.601562, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 11.867351 ], [ -10.195312, 11.867351 ], [ -10.195312, 12.211180 ], [ -9.492188, 12.211180 ], [ -9.492188, 12.554564 ], [ -9.140625, 12.554564 ], [ -9.140625, 11.867351 ], [ -8.789062, 11.867351 ], [ -8.789062, 11.523088 ], [ -8.437500, 11.523088 ], [ -8.437500, 11.178402 ], [ -8.789062, 11.178402 ], [ -8.789062, 10.833306 ], [ -8.437500, 10.833306 ], [ -8.437500, 10.487812 ], [ -8.085938, 10.487812 ], [ -8.085938, 10.141932 ], [ -8.437500, 10.141932 ], [ -8.437500, 9.449062 ], [ -8.085938, 9.449062 ], [ -8.085938, 8.754795 ], [ -8.437500, 8.754795 ], [ -8.437500, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.362467 ], [ -9.492188, 7.362467 ], [ -9.492188, 8.407168 ], [ -9.843750, 8.407168 ], [ -9.843750, 8.754795 ], [ -10.195312, 8.754795 ], [ -10.195312, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 8.754795 ], [ -10.898438, 8.754795 ], [ -10.898438, 9.795678 ], [ -11.250000, 9.795678 ], [ -11.250000, 10.141932 ], [ -12.656250, 10.141932 ], [ -12.656250, 9.449062 ], [ -13.007812, 9.449062 ], [ -13.007812, 9.102097 ], [ -13.359375, 9.102097 ], [ -13.359375, 9.449062 ], [ -13.710938, 9.449062 ], [ -13.710938, 9.795678 ], [ -14.414062, 9.795678 ], [ -14.414062, 10.141932 ], [ -14.765625, 10.141932 ], [ -14.765625, 10.833306 ], [ -15.117188, 10.833306 ], [ -15.117188, 11.523088 ], [ -14.414062, 11.523088 ], [ -14.414062, 11.867351 ], [ -14.062500, 11.867351 ], [ -14.062500, 12.554564 ], [ -13.710938, 12.554564 ], [ -13.710938, 12.897489 ], [ -13.359375, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.141932 ], [ -11.250000, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 9.449062 ], [ -10.546875, 9.449062 ], [ -10.546875, 8.407168 ], [ -10.195312, 8.407168 ], [ -10.195312, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 7.362467 ], [ -11.250000, 7.362467 ], [ -11.250000, 6.664608 ], [ -11.601562, 6.664608 ], [ -11.601562, 7.013668 ], [ -12.304688, 7.013668 ], [ -12.304688, 7.362467 ], [ -13.007812, 7.362467 ], [ -13.007812, 8.407168 ], [ -13.359375, 8.407168 ], [ -13.359375, 8.754795 ], [ -13.007812, 8.754795 ], [ -13.007812, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.449062 ], [ -12.304688, 9.449062 ], [ -12.304688, 9.795678 ], [ -11.953125, 9.795678 ], [ -11.953125, 10.141932 ], [ -11.250000, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.141932 ], [ -11.250000, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 8.754795 ], [ -10.546875, 8.754795 ], [ -10.546875, 8.059230 ], [ -10.898438, 8.059230 ], [ -10.898438, 7.710992 ], [ -11.250000, 7.710992 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 7.710992 ], [ -13.007812, 7.710992 ], [ -13.007812, 8.059230 ], [ -13.359375, 8.059230 ], [ -13.359375, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 9.449062 ], [ -12.656250, 9.449062 ], [ -12.656250, 10.141932 ], [ -11.250000, 10.141932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 27.059126 ], [ -8.085938, 26.745610 ], [ -7.734375, 26.745610 ], [ -7.734375, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.115986 ], [ -6.679688, 26.115986 ], [ -6.679688, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 25.482951 ], [ -5.976562, 25.482951 ], [ -5.976562, 25.165173 ], [ -5.273438, 25.165173 ], [ -5.273438, 24.846565 ], [ -6.328125, 24.846565 ], [ -6.328125, 22.593726 ], [ -5.976562, 22.593726 ], [ -5.976562, 18.312811 ], [ -5.625000, 18.312811 ], [ -5.625000, 16.299051 ], [ -5.273438, 16.299051 ], [ -5.273438, 15.961329 ], [ -5.625000, 15.961329 ], [ -5.625000, 15.623037 ], [ -9.492188, 15.623037 ], [ -9.492188, 15.284185 ], [ -11.601562, 15.284185 ], [ -11.601562, 14.944785 ], [ -11.953125, 14.944785 ], [ -11.953125, 14.604847 ], [ -12.304688, 14.604847 ], [ -12.304688, 14.944785 ], [ -12.656250, 14.944785 ], [ -12.656250, 15.284185 ], [ -13.007812, 15.284185 ], [ -13.007812, 15.623037 ], [ -13.359375, 15.623037 ], [ -13.359375, 15.961329 ], [ -14.062500, 15.961329 ], [ -14.062500, 16.299051 ], [ -14.414062, 16.299051 ], [ -14.414062, 16.636192 ], [ -15.117188, 16.636192 ], [ -15.117188, 16.299051 ], [ -16.523438, 16.299051 ], [ -16.523438, 16.972741 ], [ -16.171875, 16.972741 ], [ -16.171875, 19.311143 ], [ -16.523438, 19.311143 ], [ -16.523438, 19.642588 ], [ -16.171875, 19.642588 ], [ -16.171875, 20.303418 ], [ -16.523438, 20.303418 ], [ -16.523438, 20.632784 ], [ -17.226562, 20.632784 ], [ -17.226562, 20.961440 ], [ -16.875000, 20.961440 ], [ -16.875000, 21.289374 ], [ -13.007812, 21.289374 ], [ -13.007812, 23.241346 ], [ -11.953125, 23.241346 ], [ -11.953125, 25.799891 ], [ -8.789062, 25.799891 ], [ -8.789062, 27.059126 ], [ -8.085938, 27.059126 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 27.371767 ], [ -8.085938, 27.059126 ], [ -7.734375, 27.059126 ], [ -7.734375, 26.745610 ], [ -7.382812, 26.745610 ], [ -7.382812, 26.431228 ], [ -6.679688, 26.431228 ], [ -6.679688, 26.115986 ], [ -6.328125, 26.115986 ], [ -6.328125, 25.799891 ], [ -5.976562, 25.799891 ], [ -5.976562, 25.482951 ], [ -5.273438, 25.482951 ], [ -5.273438, 25.165173 ], [ -6.679688, 25.165173 ], [ -6.679688, 23.885838 ], [ -6.328125, 23.885838 ], [ -6.328125, 21.943046 ], [ -5.976562, 21.943046 ], [ -5.976562, 18.646245 ], [ -5.625000, 18.646245 ], [ -5.625000, 15.623037 ], [ -9.843750, 15.623037 ], [ -9.843750, 15.284185 ], [ -11.601562, 15.284185 ], [ -11.601562, 15.623037 ], [ -11.953125, 15.623037 ], [ -11.953125, 14.944785 ], [ -12.656250, 14.944785 ], [ -12.656250, 15.284185 ], [ -13.007812, 15.284185 ], [ -13.007812, 15.623037 ], [ -13.359375, 15.623037 ], [ -13.359375, 15.961329 ], [ -13.710938, 15.961329 ], [ -13.710938, 16.299051 ], [ -14.414062, 16.299051 ], [ -14.414062, 16.636192 ], [ -16.171875, 16.636192 ], [ -16.171875, 16.299051 ], [ -16.523438, 16.299051 ], [ -16.523438, 16.636192 ], [ -16.875000, 16.636192 ], [ -16.875000, 16.972741 ], [ -16.523438, 16.972741 ], [ -16.523438, 17.644022 ], [ -16.171875, 17.644022 ], [ -16.171875, 18.646245 ], [ -16.523438, 18.646245 ], [ -16.523438, 20.303418 ], [ -16.875000, 20.303418 ], [ -16.875000, 20.961440 ], [ -17.226562, 20.961440 ], [ -17.226562, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.616579 ], [ -13.007812, 21.616579 ], [ -13.007812, 22.268764 ], [ -13.359375, 22.268764 ], [ -13.359375, 23.241346 ], [ -13.007812, 23.241346 ], [ -13.007812, 23.563987 ], [ -11.953125, 23.563987 ], [ -11.953125, 24.846565 ], [ -12.304688, 24.846565 ], [ -12.304688, 26.115986 ], [ -8.789062, 26.115986 ], [ -8.789062, 27.371767 ], [ -8.085938, 27.371767 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.846565 ], [ -4.921875, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 24.206890 ], [ -3.515625, 24.206890 ], [ -3.515625, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.563987 ], [ -2.460938, 23.563987 ], [ -2.460938, 23.241346 ], [ -1.757812, 23.241346 ], [ -1.757812, 22.917923 ], [ -1.406250, 22.917923 ], [ -1.406250, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.351562, 22.268764 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.289374 ], [ 1.054688, 21.289374 ], [ 1.054688, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 14.944785 ], [ -1.406250, 14.944785 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 12.897489 ], [ -4.570312, 12.897489 ], [ -4.570312, 12.211180 ], [ -4.921875, 12.211180 ], [ -4.921875, 11.867351 ], [ -5.273438, 11.867351 ], [ -5.273438, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 10.487812 ], [ -5.273438, 10.487812 ], [ -5.273438, 10.141932 ], [ -6.328125, 10.141932 ], [ -6.328125, 10.487812 ], [ -6.679688, 10.487812 ], [ -6.679688, 10.141932 ], [ -8.437500, 10.141932 ], [ -8.437500, 11.523088 ], [ -8.789062, 11.523088 ], [ -8.789062, 12.211180 ], [ -9.843750, 12.211180 ], [ -9.843750, 11.867351 ], [ -10.898438, 11.867351 ], [ -10.898438, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 14.264383 ], [ -12.304688, 14.264383 ], [ -12.304688, 14.604847 ], [ -11.953125, 14.604847 ], [ -11.953125, 14.944785 ], [ -11.601562, 14.944785 ], [ -11.601562, 15.284185 ], [ -9.492188, 15.284185 ], [ -9.492188, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 15.961329 ], [ -5.273438, 15.961329 ], [ -5.273438, 16.299051 ], [ -5.625000, 16.299051 ], [ -5.625000, 18.312811 ], [ -5.976562, 18.312811 ], [ -5.976562, 22.593726 ], [ -6.328125, 22.593726 ], [ -6.328125, 24.846565 ], [ -4.921875, 24.846565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.165173 ], [ -4.921875, 24.846565 ], [ -4.570312, 24.846565 ], [ -4.570312, 24.527135 ], [ -3.867188, 24.527135 ], [ -3.867188, 24.206890 ], [ -3.515625, 24.206890 ], [ -3.515625, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.563987 ], [ -2.460938, 23.563987 ], [ -2.460938, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.351562, 22.268764 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.616579 ], [ 0.703125, 21.616579 ], [ 0.703125, 21.289374 ], [ 1.406250, 21.289374 ], [ 1.406250, 20.961440 ], [ 1.757812, 20.961440 ], [ 1.757812, 15.623037 ], [ 1.054688, 15.623037 ], [ 1.054688, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.944785 ], [ -0.703125, 14.944785 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.944785 ], [ -1.757812, 14.944785 ], [ -1.757812, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 14.264383 ], [ -2.460938, 14.264383 ], [ -2.460938, 13.923404 ], [ -3.164062, 13.923404 ], [ -3.164062, 13.581921 ], [ -4.218750, 13.581921 ], [ -4.218750, 13.239945 ], [ -4.570312, 13.239945 ], [ -4.570312, 12.211180 ], [ -4.921875, 12.211180 ], [ -4.921875, 11.867351 ], [ -5.273438, 11.867351 ], [ -5.273438, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 10.487812 ], [ -5.976562, 10.487812 ], [ -5.976562, 10.141932 ], [ -6.328125, 10.141932 ], [ -6.328125, 10.487812 ], [ -6.679688, 10.487812 ], [ -6.679688, 10.141932 ], [ -7.734375, 10.141932 ], [ -7.734375, 10.487812 ], [ -8.437500, 10.487812 ], [ -8.437500, 10.833306 ], [ -8.789062, 10.833306 ], [ -8.789062, 11.178402 ], [ -8.437500, 11.178402 ], [ -8.437500, 11.523088 ], [ -8.789062, 11.523088 ], [ -8.789062, 11.867351 ], [ -9.140625, 11.867351 ], [ -9.140625, 12.554564 ], [ -9.492188, 12.554564 ], [ -9.492188, 12.211180 ], [ -10.195312, 12.211180 ], [ -10.195312, 11.867351 ], [ -10.898438, 11.867351 ], [ -10.898438, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 13.923404 ], [ -12.304688, 13.923404 ], [ -12.304688, 14.944785 ], [ -11.953125, 14.944785 ], [ -11.953125, 15.623037 ], [ -11.601562, 15.623037 ], [ -11.601562, 15.284185 ], [ -9.843750, 15.284185 ], [ -9.843750, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 18.646245 ], [ -5.976562, 18.646245 ], [ -5.976562, 21.943046 ], [ -6.328125, 21.943046 ], [ -6.328125, 23.885838 ], [ -6.679688, 23.885838 ], [ -6.679688, 25.165173 ], [ -4.921875, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.239945 ], [ 1.054688, 13.239945 ], [ 1.054688, 12.554564 ], [ 1.757812, 12.554564 ], [ 1.757812, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 10.833306 ], [ 0.351562, 10.833306 ], [ 0.351562, 11.178402 ], [ -0.351562, 11.178402 ], [ -0.351562, 10.833306 ], [ -1.054688, 10.833306 ], [ -1.054688, 11.178402 ], [ -1.757812, 11.178402 ], [ -1.757812, 10.833306 ], [ -2.812500, 10.833306 ], [ -2.812500, 9.795678 ], [ -3.867188, 9.795678 ], [ -3.867188, 9.449062 ], [ -4.921875, 9.449062 ], [ -4.921875, 10.141932 ], [ -5.273438, 10.141932 ], [ -5.273438, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -5.273438, 11.178402 ], [ -5.273438, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 12.211180 ], [ -4.570312, 12.211180 ], [ -4.570312, 12.897489 ], [ -4.218750, 12.897489 ], [ -4.218750, 13.239945 ], [ -3.164062, 13.239945 ], [ -3.164062, 13.581921 ], [ -2.812500, 13.581921 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 14.264383 ], [ 0.351562, 14.264383 ], [ 0.351562, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.897489 ], [ 1.757812, 12.897489 ], [ 1.757812, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.523088 ], [ 1.054688, 11.523088 ], [ 1.054688, 11.178402 ], [ -3.164062, 11.178402 ], [ -3.164062, 9.795678 ], [ -3.515625, 9.795678 ], [ -3.515625, 10.141932 ], [ -4.218750, 10.141932 ], [ -4.218750, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.141932 ], [ -5.273438, 10.141932 ], [ -5.273438, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -5.273438, 11.178402 ], [ -5.273438, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 12.211180 ], [ -4.570312, 12.211180 ], [ -4.570312, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.923404 ], [ -2.460938, 13.923404 ], [ -2.460938, 14.264383 ], [ -2.109375, 14.264383 ], [ -2.109375, 14.604847 ], [ -1.757812, 14.604847 ], [ -1.757812, 14.944785 ], [ -1.406250, 14.944785 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 7.362467 ], [ -8.789062, 7.362467 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 5.965754 ], [ -8.085938, 5.965754 ], [ -8.085938, 5.615986 ], [ -7.734375, 5.615986 ], [ -7.734375, 4.214943 ], [ -8.437500, 4.214943 ], [ -8.437500, 4.565474 ], [ -9.140625, 4.565474 ], [ -9.140625, 4.915833 ], [ -9.492188, 4.915833 ], [ -9.492188, 5.266008 ], [ -9.843750, 5.266008 ], [ -9.843750, 5.615986 ], [ -10.195312, 5.615986 ], [ -10.195312, 5.965754 ], [ -10.898438, 5.965754 ], [ -10.898438, 6.315299 ], [ -11.601562, 6.315299 ], [ -11.601562, 6.664608 ], [ -11.250000, 6.664608 ], [ -11.250000, 7.362467 ], [ -10.898438, 7.362467 ], [ -10.898438, 7.710992 ], [ -10.546875, 7.710992 ], [ -10.546875, 8.059230 ], [ -10.195312, 8.059230 ], [ -10.195312, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.754795 ], [ -9.843750, 8.407168 ], [ -9.492188, 8.407168 ], [ -9.492188, 7.362467 ], [ -8.437500, 7.362467 ], [ -8.437500, 6.664608 ], [ -8.789062, 6.664608 ], [ -8.789062, 6.315299 ], [ -8.085938, 6.315299 ], [ -8.085938, 5.965754 ], [ -7.734375, 5.965754 ], [ -7.734375, 4.565474 ], [ -8.789062, 4.565474 ], [ -8.789062, 4.915833 ], [ -9.492188, 4.915833 ], [ -9.492188, 5.266008 ], [ -10.195312, 5.266008 ], [ -10.195312, 5.615986 ], [ -10.546875, 5.615986 ], [ -10.546875, 5.965754 ], [ -10.898438, 5.965754 ], [ -10.898438, 6.315299 ], [ -11.250000, 6.315299 ], [ -11.250000, 6.664608 ], [ -11.601562, 6.664608 ], [ -11.601562, 7.013668 ], [ -11.250000, 7.013668 ], [ -11.250000, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 8.407168 ], [ -10.195312, 8.407168 ], [ -10.195312, 8.754795 ], [ -9.843750, 8.754795 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 10.487812 ], [ -6.328125, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.449062 ], [ -3.867188, 9.449062 ], [ -3.867188, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 8.754795 ], [ -2.460938, 8.754795 ], [ -2.460938, 7.710992 ], [ -2.812500, 7.710992 ], [ -2.812500, 6.664608 ], [ -3.164062, 6.664608 ], [ -3.164062, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.867188, 4.915833 ], [ -3.867188, 5.266008 ], [ -4.921875, 5.266008 ], [ -4.921875, 4.915833 ], [ -5.976562, 4.915833 ], [ -5.976562, 4.565474 ], [ -6.679688, 4.565474 ], [ -6.679688, 4.214943 ], [ -7.734375, 4.214943 ], [ -7.734375, 5.615986 ], [ -8.085938, 5.615986 ], [ -8.085938, 5.965754 ], [ -8.437500, 5.965754 ], [ -8.437500, 7.710992 ], [ -8.085938, 7.710992 ], [ -8.085938, 8.059230 ], [ -8.437500, 8.059230 ], [ -8.437500, 8.407168 ], [ -7.734375, 8.407168 ], [ -7.734375, 8.754795 ], [ -8.085938, 8.754795 ], [ -8.085938, 9.449062 ], [ -8.437500, 9.449062 ], [ -8.437500, 9.795678 ], [ -8.085938, 9.795678 ], [ -8.085938, 10.141932 ], [ -6.679688, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.328125, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 10.487812 ], [ -5.273438, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.795678 ], [ -4.218750, 9.795678 ], [ -4.218750, 10.141932 ], [ -3.515625, 10.141932 ], [ -3.515625, 9.795678 ], [ -3.164062, 9.795678 ], [ -3.164062, 9.102097 ], [ -2.812500, 9.102097 ], [ -2.812500, 8.059230 ], [ -3.164062, 8.059230 ], [ -3.164062, 7.013668 ], [ -3.515625, 7.013668 ], [ -3.515625, 5.965754 ], [ -3.164062, 5.965754 ], [ -3.164062, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 5.266008 ], [ -5.976562, 5.266008 ], [ -5.976562, 4.915833 ], [ -7.031250, 4.915833 ], [ -7.031250, 4.565474 ], [ -7.734375, 4.565474 ], [ -7.734375, 5.965754 ], [ -8.085938, 5.965754 ], [ -8.085938, 6.315299 ], [ -8.789062, 6.315299 ], [ -8.789062, 6.664608 ], [ -8.437500, 6.664608 ], [ -8.437500, 7.362467 ], [ -8.789062, 7.362467 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 8.754795 ], [ -8.085938, 8.754795 ], [ -8.085938, 9.449062 ], [ -8.437500, 9.449062 ], [ -8.437500, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 10.487812 ], [ -7.734375, 10.487812 ], [ -7.734375, 10.141932 ], [ -6.679688, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.328125, 10.487812 ], [ -6.328125, 10.141932 ], [ -5.976562, 10.141932 ], [ -5.976562, 10.487812 ], [ -5.273438, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.013668 ], [ 0.703125, 7.013668 ], [ 0.703125, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.266008 ], [ -0.351562, 5.266008 ], [ -0.351562, 4.915833 ], [ -1.406250, 4.915833 ], [ -1.406250, 4.565474 ], [ -2.812500, 4.565474 ], [ -2.812500, 5.615986 ], [ -3.164062, 5.615986 ], [ -3.164062, 6.664608 ], [ -2.812500, 6.664608 ], [ -2.812500, 7.710992 ], [ -2.460938, 7.710992 ], [ -2.460938, 8.754795 ], [ -2.812500, 8.754795 ], [ -2.812500, 10.833306 ], [ -1.757812, 10.833306 ], [ -1.757812, 11.178402 ], [ -1.054688, 11.178402 ], [ -1.054688, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 8.059230 ], [ 0.351562, 8.059230 ], [ 0.351562, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 5.965754 ], [ 0.351562, 5.965754 ], [ 0.351562, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 5.266008 ], [ -1.406250, 5.266008 ], [ -1.406250, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -3.164062, 5.615986 ], [ -3.164062, 5.965754 ], [ -3.515625, 5.965754 ], [ -3.515625, 7.013668 ], [ -3.164062, 7.013668 ], [ -3.164062, 8.059230 ], [ -2.812500, 8.059230 ], [ -2.812500, 9.102097 ], [ -3.164062, 9.102097 ], [ -3.164062, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.046875, 1.054628 ], [ -78.046875, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -80.859375, -1.757537 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 0.703107 ], [ -79.453125, 0.703107 ], [ -79.453125, 1.054628 ], [ -78.046875, 1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.750000, 1.406109 ], [ -78.750000, 1.054628 ], [ -77.695312, 1.054628 ], [ -77.695312, 0.703107 ], [ -77.343750, 0.703107 ], [ -77.343750, 0.351560 ], [ -75.937500, 0.351560 ], [ -75.937500, 0.000000 ], [ -75.585938, 0.000000 ], [ -75.585938, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, -1.054628 ], [ -75.585938, -1.054628 ], [ -75.585938, -1.757537 ], [ -80.859375, -1.757537 ], [ -80.859375, -1.406109 ], [ -81.210938, -1.406109 ], [ -81.210938, -1.054628 ], [ -80.859375, -1.054628 ], [ -80.859375, -0.351560 ], [ -80.507812, -0.351560 ], [ -80.507812, 0.351560 ], [ -80.156250, 0.351560 ], [ -80.156250, 1.054628 ], [ -79.101562, 1.054628 ], [ -79.101562, 1.406109 ], [ -78.750000, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.351560 ], [ -74.882812, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.351560 ], [ -74.882812, -0.351560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.234375, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.703107 ], [ -74.179688, -0.703107 ], [ -74.179688, -1.054628 ], [ -73.828125, -1.054628 ], [ -73.828125, -1.406109 ], [ -73.476562, -1.406109 ], [ -73.476562, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.054628 ], [ -75.234375, -1.054628 ], [ -75.234375, -0.351560 ] ] ], [ [ [ -75.234375, -0.351560 ], [ -75.585938, -0.351560 ], [ -75.585938, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -0.351560 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.117188, 5.266008 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.565474 ], [ -59.765625, 4.214943 ], [ -59.414062, 4.214943 ], [ -59.414062, 3.513421 ], [ -59.765625, 3.513421 ], [ -59.765625, 3.162456 ], [ -60.117188, 3.162456 ], [ -60.117188, 2.460181 ], [ -59.765625, 2.460181 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 1.757537 ], [ -55.898438, 1.757537 ], [ -55.898438, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 2.108899 ], [ -53.789062, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.437500, 2.460181 ], [ -53.437500, 2.108899 ], [ -52.382812, 2.108899 ], [ -52.382812, 3.162456 ], [ -52.031250, 3.162456 ], [ -52.031250, 3.864255 ], [ -51.679688, 3.864255 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.864255 ], [ -50.976562, 3.864255 ], [ -50.976562, 2.460181 ], [ -50.625000, 2.460181 ], [ -50.625000, 1.757537 ], [ -49.921875, 1.757537 ], [ -49.921875, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.625000, 0.351560 ], [ -50.625000, 0.000000 ], [ -49.570312, 0.000000 ], [ -49.570312, -0.351560 ], [ -48.515625, -0.351560 ], [ -48.515625, -1.406109 ], [ -48.164062, -1.406109 ], [ -48.164062, -1.054628 ], [ -47.812500, -1.054628 ], [ -47.812500, -0.703107 ], [ -47.460938, -0.703107 ], [ -47.460938, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -69.609375, -1.757537 ], [ -69.609375, -1.406109 ], [ -69.257812, -1.406109 ], [ -69.257812, -1.054628 ], [ -69.609375, -1.054628 ], [ -69.609375, -0.703107 ], [ -69.960938, -0.703107 ], [ -69.960938, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 1.054628 ], [ -66.445312, 1.054628 ], [ -66.445312, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.054628 ], [ -64.687500, 1.054628 ], [ -64.687500, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 1.757537 ], [ -63.281250, 1.757537 ], [ -63.281250, 2.460181 ], [ -64.335938, 2.460181 ], [ -64.335938, 3.864255 ], [ -62.226562, 3.864255 ], [ -62.226562, 4.214943 ], [ -61.171875, 4.214943 ], [ -61.171875, 4.565474 ], [ -60.468750, 4.565474 ], [ -60.468750, 4.915833 ], [ -60.820312, 4.915833 ], [ -60.820312, 5.266008 ], [ -60.117188, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.117188, 5.266008 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.565474 ], [ -59.765625, 3.864255 ], [ -60.117188, 3.864255 ], [ -60.117188, 2.460181 ], [ -59.765625, 2.460181 ], [ -59.765625, 1.757537 ], [ -59.414062, 1.757537 ], [ -59.414062, 1.406109 ], [ -58.710938, 1.406109 ], [ -58.710938, 1.757537 ], [ -57.656250, 1.757537 ], [ -57.656250, 2.108899 ], [ -56.250000, 2.108899 ], [ -56.250000, 2.460181 ], [ -54.843750, 2.460181 ], [ -54.843750, 2.108899 ], [ -53.085938, 2.108899 ], [ -53.085938, 2.460181 ], [ -52.734375, 2.460181 ], [ -52.734375, 3.162456 ], [ -52.382812, 3.162456 ], [ -52.382812, 3.513421 ], [ -52.031250, 3.513421 ], [ -52.031250, 3.864255 ], [ -51.679688, 3.864255 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.162456 ], [ -50.976562, 3.162456 ], [ -50.976562, 2.460181 ], [ -50.625000, 2.460181 ], [ -50.625000, 1.757537 ], [ -50.273438, 1.757537 ], [ -50.273438, 0.703107 ], [ -50.625000, 0.703107 ], [ -50.625000, 0.351560 ], [ -50.976562, 0.351560 ], [ -50.976562, 0.000000 ], [ -48.867188, 0.000000 ], [ -48.867188, -1.054628 ], [ -48.515625, -1.054628 ], [ -48.515625, -0.703107 ], [ -48.164062, -0.703107 ], [ -48.164062, -0.351560 ], [ -47.812500, -0.351560 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.054628 ], [ -45.703125, -1.054628 ], [ -45.703125, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -69.609375, -1.757537 ], [ -69.609375, -0.351560 ], [ -70.312500, -0.351560 ], [ -70.312500, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.500000, 1.757537 ], [ -67.500000, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 1.406109 ], [ -64.335938, 1.406109 ], [ -64.335938, 2.108899 ], [ -63.632812, 2.108899 ], [ -63.632812, 2.460181 ], [ -64.335938, 2.460181 ], [ -64.335938, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 3.864255 ], [ -65.039062, 3.864255 ], [ -65.039062, 4.214943 ], [ -63.984375, 4.214943 ], [ -63.984375, 3.864255 ], [ -62.929688, 3.864255 ], [ -62.929688, 4.214943 ], [ -61.523438, 4.214943 ], [ -61.523438, 4.565474 ], [ -60.820312, 4.565474 ], [ -60.820312, 5.266008 ], [ -60.117188, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.597889 ], [ 1.757812, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.289374 ], [ 0.351562, 21.289374 ], [ 0.351562, 21.616579 ], [ 0.000000, 21.616579 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 23.241346 ], [ -2.460938, 23.241346 ], [ -2.460938, 23.563987 ], [ -3.164062, 23.563987 ], [ -3.164062, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 24.206890 ], [ -4.218750, 24.206890 ], [ -4.218750, 24.527135 ], [ -4.921875, 24.527135 ], [ -4.921875, 24.846565 ], [ -5.273438, 24.846565 ], [ -5.273438, 25.165173 ], [ -5.976562, 25.165173 ], [ -5.976562, 25.482951 ], [ -6.328125, 25.482951 ], [ -6.328125, 25.799891 ], [ -6.679688, 25.799891 ], [ -6.679688, 26.115986 ], [ -7.382812, 26.115986 ], [ -7.382812, 26.431228 ], [ -7.734375, 26.431228 ], [ -7.734375, 26.745610 ], [ -8.085938, 26.745610 ], [ -8.085938, 27.059126 ], [ -8.789062, 27.059126 ], [ -8.789062, 28.921631 ], [ -8.085938, 28.921631 ], [ -8.085938, 29.228890 ], [ -7.382812, 29.228890 ], [ -7.382812, 29.535230 ], [ -6.328125, 29.535230 ], [ -6.328125, 29.840644 ], [ -5.273438, 29.840644 ], [ -5.273438, 30.145127 ], [ -4.921875, 30.145127 ], [ -4.921875, 30.448674 ], [ -3.867188, 30.448674 ], [ -3.867188, 30.751278 ], [ -3.515625, 30.751278 ], [ -3.515625, 31.653381 ], [ -2.460938, 31.653381 ], [ -2.460938, 31.952162 ], [ -1.757812, 31.952162 ], [ -1.757812, 32.249974 ], [ -1.054688, 32.249974 ], [ -1.054688, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 35.173808 ], [ -1.757812, 35.173808 ], [ -1.757812, 35.460670 ], [ -1.054688, 35.460670 ], [ -1.054688, 35.746512 ], [ 0.000000, 35.746512 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 1.054688, 36.315125 ], [ 1.054688, 36.597889 ], [ 1.757812, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.879621 ], [ 1.757812, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 21.616579 ], [ 0.000000, 21.616579 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.757812, 22.593726 ], [ -1.757812, 22.917923 ], [ -2.109375, 22.917923 ], [ -2.109375, 23.241346 ], [ -2.460938, 23.241346 ], [ -2.460938, 23.563987 ], [ -3.164062, 23.563987 ], [ -3.164062, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 24.206890 ], [ -3.867188, 24.206890 ], [ -3.867188, 24.527135 ], [ -4.570312, 24.527135 ], [ -4.570312, 24.846565 ], [ -4.921875, 24.846565 ], [ -4.921875, 25.165173 ], [ -5.273438, 25.165173 ], [ -5.273438, 25.482951 ], [ -5.976562, 25.482951 ], [ -5.976562, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 26.115986 ], [ -6.679688, 26.115986 ], [ -6.679688, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.745610 ], [ -7.734375, 26.745610 ], [ -7.734375, 27.059126 ], [ -8.085938, 27.059126 ], [ -8.085938, 27.371767 ], [ -8.789062, 27.371767 ], [ -8.789062, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 29.228890 ], [ -7.734375, 29.228890 ], [ -7.734375, 29.535230 ], [ -7.382812, 29.535230 ], [ -7.382812, 29.840644 ], [ -5.625000, 29.840644 ], [ -5.625000, 30.145127 ], [ -5.273438, 30.145127 ], [ -5.273438, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.751278 ], [ -4.218750, 30.751278 ], [ -4.218750, 31.052934 ], [ -3.867188, 31.052934 ], [ -3.867188, 31.653381 ], [ -3.164062, 31.653381 ], [ -3.164062, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 34.307144 ], [ -2.109375, 34.307144 ], [ -2.109375, 34.885931 ], [ -2.460938, 34.885931 ], [ -2.460938, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 35.746512 ], [ -0.703125, 35.746512 ], [ -0.703125, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 0.703125, 36.315125 ], [ 0.703125, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 36.879621 ], [ 1.757812, 36.879621 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.284185 ], [ 1.757812, 12.554564 ], [ 1.054688, 12.554564 ], [ 1.054688, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.581921 ], [ 0.351562, 13.581921 ], [ 0.351562, 14.944785 ], [ 1.406250, 14.944785 ], [ 1.406250, 15.284185 ], [ 1.757812, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.623037 ], [ 1.757812, 12.897489 ], [ 0.703125, 12.897489 ], [ 0.703125, 13.923404 ], [ 0.351562, 13.923404 ], [ 0.351562, 14.264383 ], [ 0.000000, 14.264383 ], [ 0.000000, 14.604847 ], [ 0.351562, 14.604847 ], [ 0.351562, 14.944785 ], [ 0.703125, 14.944785 ], [ 0.703125, 15.284185 ], [ 1.054688, 15.284185 ], [ 1.054688, 15.623037 ], [ 1.757812, 15.623037 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 11.178402 ], [ 0.351562, 10.833306 ], [ 1.054688, 10.833306 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.757812, 9.102097 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 7.013668 ], [ 0.351562, 7.013668 ], [ 0.351562, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.141932 ], [ 1.406250, 10.141932 ], [ 1.406250, 6.664608 ], [ 1.757812, 6.664608 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 6.664608 ], [ 0.351562, 6.664608 ], [ 0.351562, 8.059230 ], [ 0.703125, 8.059230 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ -0.351562, 10.487812 ], [ -0.351562, 10.833306 ], [ 0.000000, 10.833306 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.523088 ], [ 1.757812, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.054688, 9.795678 ], [ 1.054688, 10.141932 ], [ 0.703125, 10.141932 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.833306 ], [ 1.406250, 10.833306 ], [ 1.406250, 11.523088 ], [ 1.757812, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.867351 ], [ 1.757812, 6.664608 ], [ 1.406250, 6.664608 ], [ 1.406250, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.054688, 11.178402 ], [ 1.054688, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 11.867351 ], [ 1.757812, 11.867351 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.078125, 69.900118 ], [ -85.078125, 69.778952 ], [ -83.671875, 69.778952 ], [ -83.671875, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.411242 ], [ -81.914062, 69.411242 ], [ -81.914062, 69.287257 ], [ -81.562500, 69.287257 ], [ -81.562500, 69.162558 ], [ -81.210938, 69.162558 ], [ -81.210938, 68.528235 ], [ -81.562500, 68.528235 ], [ -81.562500, 68.269387 ], [ -81.914062, 68.269387 ], [ -81.914062, 68.007571 ], [ -81.562500, 68.007571 ], [ -81.562500, 67.742759 ], [ -81.210938, 67.742759 ], [ -81.210938, 66.930060 ], [ -81.562500, 66.930060 ], [ -81.562500, 66.791909 ], [ -81.914062, 66.791909 ], [ -81.914062, 66.652977 ], [ -82.617188, 66.652977 ], [ -82.617188, 66.513260 ], [ -82.968750, 66.513260 ], [ -82.968750, 66.372755 ], [ -83.671875, 66.372755 ], [ -83.671875, 66.231457 ], [ -85.078125, 66.231457 ], [ -85.078125, 66.372755 ], [ -85.781250, 66.372755 ], [ -85.781250, 66.231457 ], [ -86.132812, 66.231457 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.657086 ], [ -91.406250, 69.657086 ], [ -91.406250, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 69.037142 ], [ -88.593750, 69.037142 ], [ -88.593750, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 68.656555 ], [ -87.890625, 68.656555 ], [ -87.890625, 68.269387 ], [ -88.242188, 68.269387 ], [ -88.242188, 67.742759 ], [ -87.890625, 67.742759 ], [ -87.890625, 67.474922 ], [ -87.539062, 67.474922 ], [ -87.539062, 67.204032 ], [ -86.835938, 67.204032 ], [ -86.835938, 67.474922 ], [ -86.484375, 67.474922 ], [ -86.484375, 67.742759 ], [ -86.132812, 67.742759 ], [ -86.132812, 68.007571 ], [ -85.781250, 68.007571 ], [ -85.781250, 68.528235 ], [ -85.429688, 68.528235 ], [ -85.429688, 69.900118 ], [ -85.078125, 69.900118 ] ] ], [ [ [ -85.429688, 77.617709 ], [ -85.429688, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 77.915669 ], [ -86.132812, 77.915669 ], [ -86.132812, 78.061989 ], [ -86.484375, 78.061989 ], [ -86.484375, 78.206563 ], [ -87.187500, 78.206563 ], [ -87.187500, 78.278201 ], [ -87.890625, 78.278201 ], [ -87.890625, 78.420193 ], [ -87.539062, 78.420193 ], [ -87.539062, 78.630006 ], [ -87.187500, 78.630006 ], [ -87.187500, 78.767792 ], [ -86.835938, 78.767792 ], [ -86.835938, 78.836065 ], [ -86.132812, 78.836065 ], [ -86.132812, 78.903929 ], [ -85.429688, 78.903929 ], [ -85.429688, 79.171335 ], [ -85.078125, 79.171335 ], [ -85.078125, 79.367701 ], [ -85.429688, 79.367701 ], [ -85.429688, 79.496652 ], [ -85.781250, 79.496652 ], [ -85.781250, 79.560546 ], [ -86.132812, 79.560546 ], [ -86.132812, 79.687184 ], [ -86.484375, 79.687184 ], [ -86.484375, 79.997168 ], [ -86.835938, 79.997168 ], [ -86.835938, 80.238501 ], [ -85.781250, 80.238501 ], [ -85.781250, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.118564 ], [ -82.968750, 80.118564 ], [ -82.968750, 80.238501 ], [ -82.617188, 80.238501 ], [ -82.617188, 80.297927 ], [ -82.265625, 80.297927 ], [ -82.265625, 80.415707 ], [ -81.914062, 80.415707 ], [ -81.914062, 80.474065 ], [ -82.617188, 80.474065 ], [ -82.617188, 80.532071 ], [ -83.671875, 80.532071 ], [ -83.671875, 80.589727 ], [ -85.429688, 80.589727 ], [ -85.429688, 80.532071 ], [ -87.890625, 80.532071 ], [ -87.890625, 80.589727 ], [ -88.242188, 80.589727 ], [ -88.242188, 80.703997 ], [ -88.593750, 80.703997 ], [ -88.593750, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.928426 ], [ -89.648438, 80.928426 ], [ -89.648438, 81.038617 ], [ -90.000000, 81.038617 ], [ -90.000000, 81.147481 ], [ -90.351562, 81.147481 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.873641 ], [ -91.406250, 81.873641 ], [ -91.406250, 81.923186 ], [ -91.054688, 81.923186 ], [ -91.054688, 81.972431 ], [ -90.351562, 81.972431 ], [ -90.351562, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.070028 ], [ -89.296875, 82.070028 ], [ -89.296875, 82.118384 ], [ -88.242188, 82.118384 ], [ -88.242188, 82.166446 ], [ -87.539062, 82.166446 ], [ -87.539062, 82.214217 ], [ -86.835938, 82.214217 ], [ -86.835938, 82.308893 ], [ -86.484375, 82.308893 ], [ -86.484375, 82.402423 ], [ -86.132812, 82.402423 ], [ -86.132812, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.586106 ], [ -85.429688, 82.586106 ], [ -85.429688, 82.631333 ], [ -85.078125, 82.631333 ], [ -85.078125, 82.586106 ], [ -84.375000, 82.586106 ], [ -84.375000, 82.540604 ], [ -84.023438, 82.540604 ], [ -84.023438, 82.448764 ], [ -83.671875, 82.448764 ], [ -83.671875, 82.355800 ], [ -83.320312, 82.355800 ], [ -83.320312, 82.402423 ], [ -82.968750, 82.402423 ], [ -82.968750, 82.586106 ], [ -82.617188, 82.586106 ], [ -82.617188, 82.765373 ], [ -82.265625, 82.765373 ], [ -82.265625, 82.853382 ], [ -81.914062, 82.853382 ], [ -81.914062, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 82.983404 ], [ -81.210938, 82.983404 ], [ -81.210938, 83.026219 ], [ -80.507812, 83.026219 ], [ -80.507812, 83.068774 ], [ -79.804688, 83.068774 ], [ -79.804688, 83.111071 ], [ -77.695312, 83.111071 ], [ -77.695312, 83.153111 ], [ -76.289062, 83.153111 ], [ -76.289062, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -74.882812, 83.068774 ], [ -74.882812, 83.111071 ], [ -74.179688, 83.111071 ], [ -74.179688, 83.153111 ], [ -73.476562, 83.153111 ], [ -73.476562, 83.194896 ], [ -72.773438, 83.194896 ], [ -72.773438, 83.236426 ], [ -72.421875, 83.236426 ], [ -72.421875, 83.194896 ], [ -71.367188, 83.194896 ], [ -71.367188, 83.153111 ], [ -69.960938, 83.153111 ], [ -69.960938, 83.111071 ], [ -68.203125, 83.111071 ], [ -68.203125, 83.068774 ], [ -66.796875, 83.068774 ], [ -66.796875, 83.026219 ], [ -65.742188, 83.026219 ], [ -65.742188, 82.983404 ], [ -65.039062, 82.983404 ], [ -65.039062, 82.940327 ], [ -64.335938, 82.940327 ], [ -64.335938, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.809511 ], [ -62.929688, 82.809511 ], [ -62.929688, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.676285 ], [ -62.226562, 82.676285 ], [ -62.226562, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.308893 ], [ -62.226562, 82.308893 ], [ -62.226562, 82.261699 ], [ -62.578125, 82.261699 ], [ -62.578125, 82.166446 ], [ -62.929688, 82.166446 ], [ -62.929688, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 82.070028 ], [ -63.632812, 82.070028 ], [ -63.632812, 81.972431 ], [ -63.984375, 81.972431 ], [ -63.984375, 81.923186 ], [ -64.335938, 81.923186 ], [ -64.335938, 81.873641 ], [ -65.039062, 81.873641 ], [ -65.039062, 81.823794 ], [ -65.742188, 81.823794 ], [ -65.742188, 81.773644 ], [ -66.445312, 81.773644 ], [ -66.445312, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.672424 ], [ -67.148438, 81.672424 ], [ -67.148438, 81.569968 ], [ -67.500000, 81.569968 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -65.390625, 81.466261 ], [ -65.742188, 81.466261 ], [ -65.742188, 81.361287 ], [ -66.093750, 81.361287 ], [ -66.093750, 81.255032 ], [ -66.445312, 81.255032 ], [ -66.445312, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 81.093214 ], [ -67.148438, 81.093214 ], [ -67.148438, 80.983688 ], [ -67.500000, 80.983688 ], [ -67.500000, 80.872827 ], [ -67.851562, 80.872827 ], [ -67.851562, 80.816891 ], [ -68.203125, 80.816891 ], [ -68.203125, 80.760615 ], [ -68.554688, 80.760615 ], [ -68.554688, 80.703997 ], [ -68.906250, 80.703997 ], [ -68.906250, 80.647035 ], [ -69.257812, 80.647035 ], [ -69.257812, 80.589727 ], [ -69.609375, 80.589727 ], [ -69.609375, 80.474065 ], [ -69.960938, 80.474065 ], [ -69.960938, 80.297927 ], [ -70.312500, 80.297927 ], [ -70.312500, 80.058050 ], [ -70.664062, 80.058050 ], [ -70.664062, 79.874297 ], [ -71.015625, 79.874297 ], [ -71.015625, 79.749932 ], [ -71.718750, 79.749932 ], [ -71.718750, 79.687184 ], [ -72.421875, 79.687184 ], [ -72.421875, 79.624056 ], [ -73.125000, 79.624056 ], [ -73.125000, 79.560546 ], [ -73.476562, 79.560546 ], [ -73.476562, 79.432371 ], [ -74.531250, 79.432371 ], [ -74.531250, 79.367701 ], [ -75.937500, 79.367701 ], [ -75.937500, 79.302640 ], [ -76.992188, 79.302640 ], [ -76.992188, 79.237185 ], [ -76.289062, 79.237185 ], [ -76.289062, 79.171335 ], [ -75.585938, 79.171335 ], [ -75.585938, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.038437 ], [ -76.289062, 79.038437 ], [ -76.289062, 78.903929 ], [ -75.937500, 78.903929 ], [ -75.937500, 78.767792 ], [ -75.585938, 78.767792 ], [ -75.585938, 78.630006 ], [ -75.234375, 78.630006 ], [ -75.234375, 78.490552 ], [ -75.585938, 78.490552 ], [ -75.585938, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.206563 ], [ -76.289062, 78.206563 ], [ -76.289062, 78.134493 ], [ -76.640625, 78.134493 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.989049 ], [ -77.695312, 77.989049 ], [ -77.695312, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.692870 ], [ -78.398438, 77.692870 ], [ -78.398438, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.389504 ], [ -79.101562, 77.389504 ], [ -79.101562, 77.312520 ], [ -79.453125, 77.312520 ], [ -79.453125, 77.235074 ], [ -79.804688, 77.235074 ], [ -79.804688, 77.078784 ], [ -79.453125, 77.078784 ], [ -79.453125, 76.999935 ], [ -78.046875, 76.999935 ], [ -78.046875, 76.679785 ], [ -78.398438, 76.679785 ], [ -78.398438, 76.598545 ], [ -78.750000, 76.598545 ], [ -78.750000, 76.516819 ], [ -79.101562, 76.516819 ], [ -79.101562, 76.434604 ], [ -79.453125, 76.434604 ], [ -79.453125, 76.351896 ], [ -79.804688, 76.351896 ], [ -79.804688, 76.268695 ], [ -80.156250, 76.268695 ], [ -80.156250, 76.184995 ], [ -81.210938, 76.184995 ], [ -81.210938, 76.268695 ], [ -82.265625, 76.268695 ], [ -82.265625, 76.351896 ], [ -82.968750, 76.351896 ], [ -82.968750, 76.434604 ], [ -83.671875, 76.434604 ], [ -83.671875, 76.351896 ], [ -85.078125, 76.351896 ], [ -85.078125, 76.268695 ], [ -86.835938, 76.268695 ], [ -86.835938, 76.351896 ], [ -87.539062, 76.351896 ], [ -87.539062, 76.434604 ], [ -89.648438, 76.434604 ], [ -89.648438, 76.920614 ], [ -89.296875, 76.920614 ], [ -89.296875, 76.999935 ], [ -88.593750, 76.999935 ], [ -88.593750, 77.078784 ], [ -87.890625, 77.078784 ], [ -87.890625, 77.542096 ], [ -88.242188, 77.542096 ], [ -88.242188, 77.915669 ], [ -87.187500, 77.915669 ], [ -87.187500, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.767582 ], [ -86.132812, 77.767582 ], [ -86.132812, 77.692870 ], [ -85.781250, 77.692870 ], [ -85.781250, 77.617709 ], [ -85.429688, 77.617709 ] ], [ [ -85.429688, 77.617709 ], [ -85.429688, 77.542096 ], [ -85.078125, 77.542096 ], [ -85.078125, 77.617709 ], [ -85.429688, 77.617709 ] ] ], [ [ [ -85.781250, 73.824820 ], [ -85.781250, 73.627789 ], [ -86.132812, 73.627789 ], [ -86.132812, 73.226700 ], [ -86.484375, 73.226700 ], [ -86.484375, 72.919635 ], [ -86.132812, 72.919635 ], [ -86.132812, 72.607120 ], [ -85.429688, 72.607120 ], [ -85.429688, 72.919635 ], [ -85.078125, 72.919635 ], [ -85.078125, 73.124945 ], [ -84.726562, 73.124945 ], [ -84.726562, 73.327858 ], [ -84.375000, 73.327858 ], [ -84.375000, 73.428424 ], [ -83.671875, 73.428424 ], [ -83.671875, 73.528399 ], [ -82.968750, 73.528399 ], [ -82.968750, 73.627789 ], [ -81.914062, 73.627789 ], [ -81.914062, 73.428424 ], [ -81.562500, 73.428424 ], [ -81.562500, 73.226700 ], [ -81.210938, 73.226700 ], [ -81.210938, 73.022592 ], [ -80.859375, 73.022592 ], [ -80.859375, 72.816074 ], [ -80.507812, 72.816074 ], [ -80.507812, 72.395706 ], [ -80.859375, 72.395706 ], [ -80.859375, 72.073911 ], [ -80.156250, 72.073911 ], [ -80.156250, 72.181804 ], [ -79.453125, 72.181804 ], [ -79.453125, 72.289067 ], [ -78.750000, 72.289067 ], [ -78.750000, 72.395706 ], [ -78.398438, 72.395706 ], [ -78.398438, 72.501722 ], [ -78.046875, 72.501722 ], [ -78.046875, 72.607120 ], [ -76.992188, 72.607120 ], [ -76.992188, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 72.289067 ], [ -75.585938, 72.289067 ], [ -75.585938, 72.181804 ], [ -75.234375, 72.181804 ], [ -75.234375, 72.073911 ], [ -74.882812, 72.073911 ], [ -74.882812, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.746432 ], [ -74.179688, 71.746432 ], [ -74.179688, 71.300793 ], [ -73.476562, 71.300793 ], [ -73.476562, 71.413177 ], [ -72.421875, 71.413177 ], [ -72.421875, 71.524909 ], [ -72.070312, 71.524909 ], [ -72.070312, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 71.074056 ], [ -71.367188, 71.074056 ], [ -71.367188, 70.844673 ], [ -70.664062, 70.844673 ], [ -70.664062, 70.728979 ], [ -69.960938, 70.728979 ], [ -69.960938, 70.612614 ], [ -69.257812, 70.612614 ], [ -69.257812, 70.495574 ], [ -68.906250, 70.495574 ], [ -68.906250, 70.377854 ], [ -68.554688, 70.377854 ], [ -68.554688, 70.259452 ], [ -68.203125, 70.259452 ], [ -68.203125, 70.140364 ], [ -67.851562, 70.140364 ], [ -67.851562, 69.900118 ], [ -67.500000, 69.900118 ], [ -67.500000, 69.657086 ], [ -67.148438, 69.657086 ], [ -67.148438, 69.287257 ], [ -66.796875, 69.287257 ], [ -66.796875, 69.037142 ], [ -67.500000, 69.037142 ], [ -67.500000, 68.911005 ], [ -67.851562, 68.911005 ], [ -67.851562, 68.784144 ], [ -68.554688, 68.784144 ], [ -68.554688, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.528235 ], [ -68.203125, 68.528235 ], [ -68.203125, 68.399180 ], [ -67.851562, 68.399180 ], [ -67.851562, 68.269387 ], [ -67.500000, 68.269387 ], [ -67.500000, 68.138852 ], [ -66.796875, 68.138852 ], [ -66.796875, 68.007571 ], [ -65.742188, 68.007571 ], [ -65.742188, 67.875541 ], [ -64.687500, 67.875541 ], [ -64.687500, 67.742759 ], [ -64.335938, 67.742759 ], [ -64.335938, 67.474922 ], [ -63.984375, 67.474922 ], [ -63.984375, 67.204032 ], [ -63.632812, 67.204032 ], [ -63.632812, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 66.089364 ], [ -66.445312, 66.089364 ], [ -66.445312, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.372755 ], [ -67.148438, 66.372755 ], [ -67.148438, 66.231457 ], [ -67.851562, 66.231457 ], [ -67.851562, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.802776 ], [ -74.179688, 65.802776 ], [ -74.179688, 66.089364 ], [ -73.828125, 66.089364 ], [ -73.828125, 66.513260 ], [ -73.476562, 66.513260 ], [ -73.476562, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.742759 ], [ -73.125000, 67.742759 ], [ -73.125000, 67.875541 ], [ -73.476562, 67.875541 ], [ -73.476562, 68.007571 ], [ -73.828125, 68.007571 ], [ -73.828125, 68.138852 ], [ -74.179688, 68.138852 ], [ -74.179688, 68.269387 ], [ -74.531250, 68.269387 ], [ -74.531250, 68.399180 ], [ -74.882812, 68.399180 ], [ -74.882812, 68.528235 ], [ -75.585938, 68.528235 ], [ -75.585938, 68.656555 ], [ -76.289062, 68.656555 ], [ -76.289062, 68.784144 ], [ -76.992188, 68.784144 ], [ -76.992188, 68.911005 ], [ -76.640625, 68.911005 ], [ -76.640625, 69.037142 ], [ -76.289062, 69.037142 ], [ -76.289062, 69.162558 ], [ -76.640625, 69.162558 ], [ -76.640625, 69.411242 ], [ -76.992188, 69.411242 ], [ -76.992188, 69.657086 ], [ -77.343750, 69.657086 ], [ -77.343750, 69.778952 ], [ -78.398438, 69.778952 ], [ -78.398438, 69.900118 ], [ -78.750000, 69.900118 ], [ -78.750000, 70.020587 ], [ -79.453125, 70.020587 ], [ -79.453125, 69.900118 ], [ -80.156250, 69.900118 ], [ -80.156250, 69.778952 ], [ -82.265625, 69.778952 ], [ -82.265625, 69.900118 ], [ -84.375000, 69.900118 ], [ -84.375000, 70.020587 ], [ -85.781250, 70.020587 ], [ -85.781250, 70.140364 ], [ -86.835938, 70.140364 ], [ -86.835938, 70.259452 ], [ -88.242188, 70.259452 ], [ -88.242188, 70.377854 ], [ -88.945312, 70.377854 ], [ -88.945312, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.612614 ], [ -89.648438, 70.612614 ], [ -89.648438, 70.728979 ], [ -89.296875, 70.728979 ], [ -89.296875, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.187754 ], [ -90.000000, 71.187754 ], [ -90.000000, 71.635993 ], [ -90.351562, 71.635993 ], [ -90.351562, 72.289067 ], [ -90.000000, 72.289067 ], [ -90.000000, 72.607120 ], [ -89.648438, 72.607120 ], [ -89.648438, 72.919635 ], [ -89.296875, 72.919635 ], [ -89.296875, 73.124945 ], [ -88.945312, 73.124945 ], [ -88.945312, 73.327858 ], [ -88.593750, 73.327858 ], [ -88.593750, 73.428424 ], [ -88.242188, 73.428424 ], [ -88.242188, 73.528399 ], [ -87.539062, 73.528399 ], [ -87.539062, 73.627789 ], [ -86.835938, 73.627789 ], [ -86.835938, 73.726595 ], [ -86.132812, 73.726595 ], [ -86.132812, 73.824820 ], [ -85.781250, 73.824820 ] ] ], [ [ [ -91.406250, 76.679785 ], [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.268695 ], [ -91.054688, 76.268695 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.584937 ], [ -87.539062, 75.584937 ], [ -87.539062, 75.497157 ], [ -85.781250, 75.497157 ], [ -85.781250, 75.584937 ], [ -85.078125, 75.584937 ], [ -85.078125, 75.672197 ], [ -83.320312, 75.672197 ], [ -83.320312, 75.758940 ], [ -82.265625, 75.758940 ], [ -82.265625, 75.672197 ], [ -81.210938, 75.672197 ], [ -81.210938, 75.584937 ], [ -80.859375, 75.584937 ], [ -80.859375, 75.497157 ], [ -80.507812, 75.497157 ], [ -80.507812, 75.320025 ], [ -80.156250, 75.320025 ], [ -80.156250, 75.140778 ], [ -79.804688, 75.140778 ], [ -79.804688, 74.867889 ], [ -80.156250, 74.867889 ], [ -80.156250, 74.683250 ], [ -80.507812, 74.683250 ], [ -80.507812, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.496413 ], [ -81.562500, 74.496413 ], [ -81.562500, 74.402163 ], [ -82.617188, 74.402163 ], [ -82.617188, 74.496413 ], [ -83.320312, 74.496413 ], [ -83.320312, 74.590108 ], [ -83.671875, 74.590108 ], [ -83.671875, 74.496413 ], [ -85.078125, 74.496413 ], [ -85.078125, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.496413 ], [ -90.351562, 74.496413 ], [ -90.351562, 74.590108 ], [ -91.054688, 74.590108 ], [ -91.054688, 74.683250 ], [ -91.757812, 74.683250 ], [ -91.757812, 76.679785 ], [ -91.406250, 76.679785 ] ] ], [ [ [ -75.585938, 68.138852 ], [ -75.585938, 68.007571 ], [ -75.234375, 68.007571 ], [ -75.234375, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.204032 ], [ -76.289062, 67.204032 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.742759 ], [ -76.992188, 67.742759 ], [ -76.992188, 68.007571 ], [ -76.640625, 68.007571 ], [ -76.640625, 68.138852 ], [ -75.585938, 68.138852 ] ] ], [ [ [ -91.406250, 80.872827 ], [ -91.406250, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ], [ -89.648438, 80.589727 ], [ -89.648438, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.356995 ], [ -88.242188, 80.356995 ], [ -88.242188, 80.297927 ], [ -87.890625, 80.297927 ], [ -87.890625, 80.118564 ], [ -87.539062, 80.118564 ], [ -87.539062, 79.812302 ], [ -87.187500, 79.812302 ], [ -87.187500, 79.624056 ], [ -86.835938, 79.624056 ], [ -86.835938, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.432371 ], [ -86.132812, 79.432371 ], [ -86.132812, 79.367701 ], [ -85.781250, 79.367701 ], [ -85.781250, 79.302640 ], [ -86.132812, 79.302640 ], [ -86.132812, 79.237185 ], [ -86.484375, 79.237185 ], [ -86.484375, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 78.903929 ], [ -87.539062, 78.903929 ], [ -87.539062, 78.767792 ], [ -87.890625, 78.767792 ], [ -87.890625, 78.630006 ], [ -88.242188, 78.630006 ], [ -88.242188, 78.490552 ], [ -88.593750, 78.490552 ], [ -88.593750, 78.349411 ], [ -88.945312, 78.349411 ], [ -88.945312, 78.278201 ], [ -89.648438, 78.278201 ], [ -89.648438, 78.206563 ], [ -91.406250, 78.206563 ], [ -91.406250, 78.278201 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.872827 ], [ -91.406250, 80.872827 ] ] ], [ [ [ -91.406250, 70.020587 ], [ -91.757812, 70.020587 ], [ -91.757812, 70.259452 ], [ -91.406250, 70.259452 ], [ -91.406250, 70.020587 ] ] ], [ [ [ -79.453125, 73.726595 ], [ -79.453125, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.327858 ], [ -76.992188, 73.327858 ], [ -76.992188, 73.226700 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.124945 ], [ -76.289062, 73.124945 ], [ -76.289062, 72.816074 ], [ -78.046875, 72.816074 ], [ -78.046875, 72.919635 ], [ -78.398438, 72.919635 ], [ -78.398438, 72.816074 ], [ -79.101562, 72.816074 ], [ -79.101562, 72.711903 ], [ -79.804688, 72.711903 ], [ -79.804688, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.022592 ], [ -80.507812, 73.022592 ], [ -80.507812, 73.226700 ], [ -80.859375, 73.226700 ], [ -80.859375, 73.726595 ], [ -79.453125, 73.726595 ] ] ], [ [ [ -91.054688, 73.922469 ], [ -91.054688, 73.824820 ], [ -90.351562, 73.824820 ], [ -90.351562, 73.726595 ], [ -90.703125, 73.726595 ], [ -90.703125, 73.528399 ], [ -91.054688, 73.528399 ], [ -91.054688, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 73.922469 ], [ -91.054688, 73.922469 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.429688, 77.617709 ], [ -85.429688, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 77.915669 ], [ -86.132812, 77.915669 ], [ -86.132812, 78.061989 ], [ -86.484375, 78.061989 ], [ -86.484375, 78.206563 ], [ -86.835938, 78.206563 ], [ -86.835938, 78.278201 ], [ -87.539062, 78.278201 ], [ -87.539062, 78.349411 ], [ -88.242188, 78.349411 ], [ -88.242188, 78.420193 ], [ -87.890625, 78.420193 ], [ -87.890625, 78.560488 ], [ -87.539062, 78.560488 ], [ -87.539062, 78.699106 ], [ -87.187500, 78.699106 ], [ -87.187500, 78.767792 ], [ -86.835938, 78.767792 ], [ -86.835938, 78.836065 ], [ -86.484375, 78.836065 ], [ -86.484375, 78.903929 ], [ -85.781250, 78.903929 ], [ -85.781250, 78.971386 ], [ -85.429688, 78.971386 ], [ -85.429688, 79.367701 ], [ -85.781250, 79.367701 ], [ -85.781250, 79.496652 ], [ -86.132812, 79.496652 ], [ -86.132812, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.687184 ], [ -86.835938, 79.687184 ], [ -86.835938, 79.997168 ], [ -87.187500, 79.997168 ], [ -87.187500, 80.297927 ], [ -86.132812, 80.297927 ], [ -86.132812, 80.238501 ], [ -84.375000, 80.238501 ], [ -84.375000, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.118564 ], [ -83.320312, 80.118564 ], [ -83.320312, 80.178713 ], [ -82.968750, 80.178713 ], [ -82.968750, 80.297927 ], [ -82.617188, 80.297927 ], [ -82.617188, 80.356995 ], [ -82.265625, 80.356995 ], [ -82.265625, 80.415707 ], [ -81.914062, 80.415707 ], [ -81.914062, 80.474065 ], [ -82.617188, 80.474065 ], [ -82.617188, 80.532071 ], [ -84.023438, 80.532071 ], [ -84.023438, 80.589727 ], [ -85.781250, 80.589727 ], [ -85.781250, 80.532071 ], [ -88.242188, 80.532071 ], [ -88.242188, 80.589727 ], [ -88.593750, 80.589727 ], [ -88.593750, 80.703997 ], [ -88.945312, 80.703997 ], [ -88.945312, 80.760615 ], [ -89.296875, 80.760615 ], [ -89.296875, 80.816891 ], [ -89.648438, 80.816891 ], [ -89.648438, 80.983688 ], [ -90.000000, 80.983688 ], [ -90.000000, 81.201420 ], [ -90.351562, 81.201420 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.923186 ], [ -91.406250, 81.923186 ], [ -91.406250, 81.972431 ], [ -91.054688, 81.972431 ], [ -91.054688, 82.021378 ], [ -90.703125, 82.021378 ], [ -90.703125, 82.070028 ], [ -90.351562, 82.070028 ], [ -90.351562, 82.118384 ], [ -88.593750, 82.118384 ], [ -88.593750, 82.166446 ], [ -88.242188, 82.166446 ], [ -88.242188, 82.214217 ], [ -87.539062, 82.214217 ], [ -87.539062, 82.261699 ], [ -87.187500, 82.261699 ], [ -87.187500, 82.355800 ], [ -86.835938, 82.355800 ], [ -86.835938, 82.448764 ], [ -86.484375, 82.448764 ], [ -86.484375, 82.540604 ], [ -86.132812, 82.540604 ], [ -86.132812, 82.631333 ], [ -85.781250, 82.631333 ], [ -85.781250, 82.676285 ], [ -85.429688, 82.676285 ], [ -85.429688, 82.631333 ], [ -84.375000, 82.631333 ], [ -84.375000, 82.586106 ], [ -84.023438, 82.586106 ], [ -84.023438, 82.494824 ], [ -83.671875, 82.494824 ], [ -83.671875, 82.402423 ], [ -83.320312, 82.402423 ], [ -83.320312, 82.494824 ], [ -82.968750, 82.494824 ], [ -82.968750, 82.765373 ], [ -82.617188, 82.765373 ], [ -82.617188, 82.896987 ], [ -82.265625, 82.896987 ], [ -82.265625, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 82.983404 ], [ -81.210938, 82.983404 ], [ -81.210938, 83.026219 ], [ -80.859375, 83.026219 ], [ -80.859375, 83.068774 ], [ -80.156250, 83.068774 ], [ -80.156250, 83.111071 ], [ -79.453125, 83.111071 ], [ -79.453125, 83.153111 ], [ -77.695312, 83.153111 ], [ -77.695312, 83.194896 ], [ -76.289062, 83.194896 ], [ -76.289062, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -75.234375, 83.068774 ], [ -75.234375, 83.111071 ], [ -74.531250, 83.111071 ], [ -74.531250, 83.153111 ], [ -73.828125, 83.153111 ], [ -73.828125, 83.194896 ], [ -73.125000, 83.194896 ], [ -73.125000, 83.236426 ], [ -72.070312, 83.236426 ], [ -72.070312, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.153111 ], [ -69.257812, 83.153111 ], [ -69.257812, 83.111071 ], [ -67.500000, 83.111071 ], [ -67.500000, 83.068774 ], [ -66.093750, 83.068774 ], [ -66.093750, 83.026219 ], [ -65.390625, 83.026219 ], [ -65.390625, 82.983404 ], [ -64.687500, 82.983404 ], [ -64.687500, 82.940327 ], [ -63.984375, 82.940327 ], [ -63.984375, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.809511 ], [ -62.929688, 82.809511 ], [ -62.929688, 82.720964 ], [ -62.578125, 82.720964 ], [ -62.578125, 82.676285 ], [ -62.226562, 82.676285 ], [ -62.226562, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.494824 ], [ -62.226562, 82.494824 ], [ -62.226562, 82.355800 ], [ -62.578125, 82.355800 ], [ -62.578125, 82.261699 ], [ -62.929688, 82.261699 ], [ -62.929688, 82.214217 ], [ -63.281250, 82.214217 ], [ -63.281250, 82.118384 ], [ -63.632812, 82.118384 ], [ -63.632812, 82.070028 ], [ -63.984375, 82.070028 ], [ -63.984375, 81.972431 ], [ -64.335938, 81.972431 ], [ -64.335938, 81.923186 ], [ -65.039062, 81.923186 ], [ -65.039062, 81.873641 ], [ -65.742188, 81.873641 ], [ -65.742188, 81.823794 ], [ -66.445312, 81.823794 ], [ -66.445312, 81.773644 ], [ -66.796875, 81.773644 ], [ -66.796875, 81.723188 ], [ -67.148438, 81.723188 ], [ -67.148438, 81.621352 ], [ -67.500000, 81.621352 ], [ -67.500000, 81.518272 ], [ -65.742188, 81.518272 ], [ -65.742188, 81.466261 ], [ -66.093750, 81.466261 ], [ -66.093750, 81.361287 ], [ -66.445312, 81.361287 ], [ -66.445312, 81.255032 ], [ -66.796875, 81.255032 ], [ -66.796875, 81.147481 ], [ -67.148438, 81.147481 ], [ -67.148438, 81.038617 ], [ -67.500000, 81.038617 ], [ -67.500000, 80.928426 ], [ -67.851562, 80.928426 ], [ -67.851562, 80.872827 ], [ -68.203125, 80.872827 ], [ -68.203125, 80.816891 ], [ -68.554688, 80.816891 ], [ -68.554688, 80.760615 ], [ -68.906250, 80.760615 ], [ -68.906250, 80.703997 ], [ -69.257812, 80.703997 ], [ -69.257812, 80.647035 ], [ -69.609375, 80.647035 ], [ -69.609375, 80.532071 ], [ -69.960938, 80.532071 ], [ -69.960938, 80.356995 ], [ -70.312500, 80.356995 ], [ -70.312500, 80.238501 ], [ -70.664062, 80.238501 ], [ -70.664062, 80.058050 ], [ -71.015625, 80.058050 ], [ -71.015625, 79.874297 ], [ -71.367188, 79.874297 ], [ -71.367188, 79.812302 ], [ -71.718750, 79.812302 ], [ -71.718750, 79.749932 ], [ -72.773438, 79.749932 ], [ -72.773438, 79.687184 ], [ -73.476562, 79.687184 ], [ -73.476562, 79.624056 ], [ -73.828125, 79.624056 ], [ -73.828125, 79.496652 ], [ -74.179688, 79.496652 ], [ -74.179688, 79.432371 ], [ -75.234375, 79.432371 ], [ -75.234375, 79.367701 ], [ -76.992188, 79.367701 ], [ -76.992188, 79.302640 ], [ -76.289062, 79.302640 ], [ -76.289062, 79.237185 ], [ -75.585938, 79.237185 ], [ -75.585938, 79.171335 ], [ -75.937500, 79.171335 ], [ -75.937500, 79.038437 ], [ -76.289062, 79.038437 ], [ -76.289062, 78.903929 ], [ -75.937500, 78.903929 ], [ -75.937500, 78.630006 ], [ -75.585938, 78.630006 ], [ -75.585938, 78.490552 ], [ -75.937500, 78.490552 ], [ -75.937500, 78.349411 ], [ -76.289062, 78.349411 ], [ -76.289062, 78.206563 ], [ -76.640625, 78.206563 ], [ -76.640625, 78.134493 ], [ -76.992188, 78.134493 ], [ -76.992188, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.989049 ], [ -77.695312, 77.989049 ], [ -77.695312, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.692870 ], [ -78.398438, 77.692870 ], [ -78.398438, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.389504 ], [ -79.101562, 77.389504 ], [ -79.101562, 77.312520 ], [ -79.453125, 77.312520 ], [ -79.453125, 77.235074 ], [ -79.804688, 77.235074 ], [ -79.804688, 76.999935 ], [ -78.750000, 76.999935 ], [ -78.750000, 77.078784 ], [ -78.046875, 77.078784 ], [ -78.046875, 76.760541 ], [ -78.398438, 76.760541 ], [ -78.398438, 76.679785 ], [ -78.750000, 76.679785 ], [ -78.750000, 76.598545 ], [ -79.101562, 76.598545 ], [ -79.101562, 76.516819 ], [ -79.453125, 76.516819 ], [ -79.453125, 76.434604 ], [ -79.804688, 76.434604 ], [ -79.804688, 76.351896 ], [ -80.156250, 76.351896 ], [ -80.156250, 76.268695 ], [ -80.507812, 76.268695 ], [ -80.507812, 76.184995 ], [ -81.210938, 76.184995 ], [ -81.210938, 76.268695 ], [ -81.914062, 76.268695 ], [ -81.914062, 76.351896 ], [ -82.617188, 76.351896 ], [ -82.617188, 76.434604 ], [ -83.320312, 76.434604 ], [ -83.320312, 76.516819 ], [ -83.671875, 76.516819 ], [ -83.671875, 76.434604 ], [ -85.078125, 76.434604 ], [ -85.078125, 76.351896 ], [ -87.187500, 76.351896 ], [ -87.187500, 76.434604 ], [ -88.945312, 76.434604 ], [ -88.945312, 76.516819 ], [ -89.648438, 76.516819 ], [ -89.648438, 76.999935 ], [ -89.296875, 76.999935 ], [ -89.296875, 77.078784 ], [ -88.593750, 77.078784 ], [ -88.593750, 77.157163 ], [ -87.890625, 77.157163 ], [ -87.890625, 77.389504 ], [ -88.242188, 77.389504 ], [ -88.242188, 77.692870 ], [ -88.593750, 77.692870 ], [ -88.593750, 77.915669 ], [ -87.539062, 77.915669 ], [ -87.539062, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.767582 ], [ -86.484375, 77.767582 ], [ -86.484375, 77.692870 ], [ -86.132812, 77.692870 ], [ -86.132812, 77.617709 ], [ -85.429688, 77.617709 ] ], [ [ -85.429688, 77.617709 ], [ -85.429688, 77.542096 ], [ -85.078125, 77.542096 ], [ -85.078125, 77.617709 ], [ -85.429688, 77.617709 ] ] ], [ [ [ -84.375000, 69.900118 ], [ -84.375000, 70.020587 ], [ -85.781250, 70.020587 ], [ -85.781250, 70.140364 ], [ -86.835938, 70.140364 ], [ -86.835938, 70.259452 ], [ -87.890625, 70.259452 ], [ -87.890625, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.728979 ], [ -89.648438, 70.728979 ], [ -89.648438, 70.844673 ], [ -89.296875, 70.844673 ], [ -89.296875, 71.074056 ], [ -88.945312, 71.074056 ], [ -88.945312, 71.187754 ], [ -88.593750, 71.187754 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.000000, 71.746432 ], [ -90.351562, 71.746432 ], [ -90.351562, 72.501722 ], [ -90.000000, 72.501722 ], [ -90.000000, 72.919635 ], [ -89.648438, 72.919635 ], [ -89.648438, 73.226700 ], [ -89.296875, 73.226700 ], [ -89.296875, 73.428424 ], [ -88.945312, 73.428424 ], [ -88.945312, 73.528399 ], [ -88.593750, 73.528399 ], [ -88.593750, 73.627789 ], [ -87.890625, 73.627789 ], [ -87.890625, 73.726595 ], [ -86.484375, 73.726595 ], [ -86.484375, 73.824820 ], [ -86.132812, 73.824820 ], [ -86.132812, 73.627789 ], [ -86.484375, 73.627789 ], [ -86.484375, 73.327858 ], [ -86.835938, 73.327858 ], [ -86.835938, 73.124945 ], [ -86.484375, 73.124945 ], [ -86.484375, 72.919635 ], [ -86.132812, 72.919635 ], [ -86.132812, 72.711903 ], [ -85.781250, 72.711903 ], [ -85.781250, 72.816074 ], [ -85.429688, 72.816074 ], [ -85.429688, 73.226700 ], [ -85.078125, 73.226700 ], [ -85.078125, 73.428424 ], [ -84.726562, 73.428424 ], [ -84.726562, 73.528399 ], [ -84.023438, 73.528399 ], [ -84.023438, 73.627789 ], [ -83.320312, 73.627789 ], [ -83.320312, 73.726595 ], [ -82.265625, 73.726595 ], [ -82.265625, 73.528399 ], [ -81.914062, 73.528399 ], [ -81.914062, 73.327858 ], [ -81.562500, 73.327858 ], [ -81.562500, 73.124945 ], [ -81.210938, 73.124945 ], [ -81.210938, 72.919635 ], [ -80.859375, 72.919635 ], [ -80.859375, 72.073911 ], [ -80.507812, 72.073911 ], [ -80.507812, 72.181804 ], [ -79.804688, 72.181804 ], [ -79.804688, 72.289067 ], [ -79.101562, 72.289067 ], [ -79.101562, 72.395706 ], [ -78.750000, 72.395706 ], [ -78.750000, 72.607120 ], [ -78.398438, 72.607120 ], [ -78.398438, 72.711903 ], [ -77.695312, 72.711903 ], [ -77.695312, 72.607120 ], [ -77.343750, 72.607120 ], [ -77.343750, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.395706 ], [ -76.289062, 72.395706 ], [ -76.289062, 72.289067 ], [ -75.937500, 72.289067 ], [ -75.937500, 72.181804 ], [ -75.585938, 72.181804 ], [ -75.585938, 72.073911 ], [ -75.234375, 72.073911 ], [ -75.234375, 71.965388 ], [ -74.882812, 71.965388 ], [ -74.882812, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.635993 ], [ -74.179688, 71.635993 ], [ -74.179688, 71.413177 ], [ -73.476562, 71.413177 ], [ -73.476562, 71.524909 ], [ -72.773438, 71.524909 ], [ -72.773438, 71.635993 ], [ -72.421875, 71.635993 ], [ -72.421875, 71.524909 ], [ -72.070312, 71.524909 ], [ -72.070312, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 71.074056 ], [ -71.367188, 71.074056 ], [ -71.367188, 70.959697 ], [ -71.015625, 70.959697 ], [ -71.015625, 70.844673 ], [ -70.312500, 70.844673 ], [ -70.312500, 70.728979 ], [ -69.609375, 70.728979 ], [ -69.609375, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.495574 ], [ -68.554688, 70.495574 ], [ -68.554688, 70.259452 ], [ -68.203125, 70.259452 ], [ -68.203125, 69.900118 ], [ -67.851562, 69.900118 ], [ -67.851562, 69.657086 ], [ -67.500000, 69.657086 ], [ -67.500000, 69.411242 ], [ -67.148438, 69.411242 ], [ -67.148438, 69.162558 ], [ -67.500000, 69.162558 ], [ -67.500000, 69.037142 ], [ -68.203125, 69.037142 ], [ -68.203125, 68.911005 ], [ -68.554688, 68.911005 ], [ -68.554688, 68.784144 ], [ -68.906250, 68.784144 ], [ -68.906250, 68.656555 ], [ -68.554688, 68.656555 ], [ -68.554688, 68.528235 ], [ -68.203125, 68.528235 ], [ -68.203125, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.269387 ], [ -67.148438, 68.269387 ], [ -67.148438, 68.138852 ], [ -66.445312, 68.138852 ], [ -66.445312, 68.007571 ], [ -65.742188, 68.007571 ], [ -65.742188, 67.875541 ], [ -65.039062, 67.875541 ], [ -65.039062, 67.742759 ], [ -64.687500, 67.742759 ], [ -64.687500, 67.474922 ], [ -64.335938, 67.474922 ], [ -64.335938, 67.204032 ], [ -63.984375, 67.204032 ], [ -63.984375, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 66.089364 ], [ -62.578125, 66.089364 ], [ -62.578125, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 65.946472 ], [ -66.445312, 65.946472 ], [ -66.445312, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.513260 ], [ -67.148438, 66.513260 ], [ -67.148438, 66.372755 ], [ -68.203125, 66.372755 ], [ -68.203125, 65.802776 ], [ -74.531250, 65.802776 ], [ -74.531250, 66.089364 ], [ -74.179688, 66.089364 ], [ -74.179688, 66.372755 ], [ -73.828125, 66.372755 ], [ -73.828125, 66.652977 ], [ -73.476562, 66.652977 ], [ -73.476562, 66.930060 ], [ -73.125000, 66.930060 ], [ -73.125000, 67.204032 ], [ -72.773438, 67.204032 ], [ -72.773438, 67.474922 ], [ -73.125000, 67.474922 ], [ -73.125000, 67.875541 ], [ -73.476562, 67.875541 ], [ -73.476562, 68.138852 ], [ -73.828125, 68.138852 ], [ -73.828125, 68.269387 ], [ -74.179688, 68.269387 ], [ -74.179688, 68.399180 ], [ -74.531250, 68.399180 ], [ -74.531250, 68.528235 ], [ -74.882812, 68.528235 ], [ -74.882812, 68.656555 ], [ -75.585938, 68.656555 ], [ -75.585938, 68.784144 ], [ -76.640625, 68.784144 ], [ -76.640625, 69.037142 ], [ -76.289062, 69.037142 ], [ -76.289062, 69.162558 ], [ -76.640625, 69.162558 ], [ -76.640625, 69.411242 ], [ -76.992188, 69.411242 ], [ -76.992188, 69.657086 ], [ -77.343750, 69.657086 ], [ -77.343750, 69.778952 ], [ -78.046875, 69.778952 ], [ -78.046875, 69.900118 ], [ -78.750000, 69.900118 ], [ -78.750000, 70.140364 ], [ -79.453125, 70.140364 ], [ -79.453125, 69.900118 ], [ -80.507812, 69.900118 ], [ -80.507812, 69.778952 ], [ -82.617188, 69.778952 ], [ -82.617188, 69.900118 ], [ -84.023438, 69.900118 ], [ -84.023438, 69.778952 ], [ -82.968750, 69.778952 ], [ -82.968750, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.287257 ], [ -81.914062, 69.287257 ], [ -81.914062, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 68.528235 ], [ -81.914062, 68.528235 ], [ -81.914062, 68.269387 ], [ -82.265625, 68.269387 ], [ -82.265625, 68.007571 ], [ -81.914062, 68.007571 ], [ -81.914062, 67.742759 ], [ -81.562500, 67.742759 ], [ -81.562500, 67.067433 ], [ -81.914062, 67.067433 ], [ -81.914062, 66.930060 ], [ -82.265625, 66.930060 ], [ -82.265625, 66.791909 ], [ -82.968750, 66.791909 ], [ -82.968750, 66.652977 ], [ -83.320312, 66.652977 ], [ -83.320312, 66.513260 ], [ -84.023438, 66.513260 ], [ -84.023438, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.372755 ], [ -86.132812, 66.372755 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.657086 ], [ -91.406250, 69.657086 ], [ -91.406250, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 68.656555 ], [ -88.242188, 68.656555 ], [ -88.242188, 68.269387 ], [ -88.593750, 68.269387 ], [ -88.593750, 67.742759 ], [ -88.242188, 67.742759 ], [ -88.242188, 67.474922 ], [ -87.890625, 67.474922 ], [ -87.890625, 67.204032 ], [ -87.539062, 67.204032 ], [ -87.539062, 67.339861 ], [ -87.187500, 67.339861 ], [ -87.187500, 67.609221 ], [ -86.835938, 67.609221 ], [ -86.835938, 67.875541 ], [ -86.484375, 67.875541 ], [ -86.484375, 68.138852 ], [ -86.132812, 68.138852 ], [ -86.132812, 68.528235 ], [ -85.781250, 68.528235 ], [ -85.781250, 69.900118 ], [ -84.375000, 69.900118 ] ] ], [ [ [ -91.406250, 76.760541 ], [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.016094 ], [ -90.351562, 76.016094 ], [ -90.351562, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -88.945312, 75.672197 ], [ -88.945312, 75.584937 ], [ -87.539062, 75.584937 ], [ -87.539062, 75.497157 ], [ -86.132812, 75.497157 ], [ -86.132812, 75.584937 ], [ -85.429688, 75.584937 ], [ -85.429688, 75.672197 ], [ -85.078125, 75.672197 ], [ -85.078125, 75.758940 ], [ -83.671875, 75.758940 ], [ -83.671875, 75.845169 ], [ -82.265625, 75.845169 ], [ -82.265625, 75.758940 ], [ -81.210938, 75.758940 ], [ -81.210938, 75.672197 ], [ -80.859375, 75.672197 ], [ -80.859375, 75.584937 ], [ -80.507812, 75.584937 ], [ -80.507812, 75.408854 ], [ -80.156250, 75.408854 ], [ -80.156250, 74.775843 ], [ -80.507812, 74.775843 ], [ -80.507812, 74.683250 ], [ -80.859375, 74.683250 ], [ -80.859375, 74.590108 ], [ -81.562500, 74.590108 ], [ -81.562500, 74.496413 ], [ -82.968750, 74.496413 ], [ -82.968750, 74.590108 ], [ -84.375000, 74.590108 ], [ -84.375000, 74.496413 ], [ -86.835938, 74.496413 ], [ -86.835938, 74.402163 ], [ -88.945312, 74.402163 ], [ -88.945312, 74.496413 ], [ -89.648438, 74.496413 ], [ -89.648438, 74.590108 ], [ -90.703125, 74.590108 ], [ -90.703125, 74.683250 ], [ -91.406250, 74.683250 ], [ -91.406250, 74.775843 ], [ -91.757812, 74.775843 ], [ -91.757812, 76.760541 ], [ -91.406250, 76.760541 ] ] ], [ [ [ -91.406250, 80.872827 ], [ -91.406250, 80.703997 ], [ -91.054688, 80.703997 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.242188, 80.415707 ], [ -88.242188, 80.356995 ], [ -87.890625, 80.356995 ], [ -87.890625, 80.178713 ], [ -87.539062, 80.178713 ], [ -87.539062, 79.812302 ], [ -87.187500, 79.812302 ], [ -87.187500, 79.624056 ], [ -86.835938, 79.624056 ], [ -86.835938, 79.496652 ], [ -86.484375, 79.496652 ], [ -86.484375, 79.367701 ], [ -86.132812, 79.367701 ], [ -86.132812, 79.302640 ], [ -86.484375, 79.302640 ], [ -86.484375, 79.237185 ], [ -86.835938, 79.237185 ], [ -86.835938, 79.105086 ], [ -87.187500, 79.105086 ], [ -87.187500, 79.038437 ], [ -87.539062, 79.038437 ], [ -87.539062, 78.903929 ], [ -87.890625, 78.903929 ], [ -87.890625, 78.767792 ], [ -88.242188, 78.767792 ], [ -88.242188, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.490552 ], [ -88.945312, 78.490552 ], [ -88.945312, 78.349411 ], [ -90.000000, 78.349411 ], [ -90.000000, 78.278201 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.872827 ], [ -91.406250, 80.872827 ] ] ], [ [ [ -75.937500, 68.399180 ], [ -75.937500, 68.269387 ], [ -75.585938, 68.269387 ], [ -75.585938, 68.138852 ], [ -75.234375, 68.138852 ], [ -75.234375, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.204032 ], [ -76.992188, 67.204032 ], [ -76.992188, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.875541 ], [ -76.992188, 67.875541 ], [ -76.992188, 68.269387 ], [ -76.289062, 68.269387 ], [ -76.289062, 68.399180 ], [ -75.937500, 68.399180 ] ] ], [ [ [ -79.804688, 73.824820 ], [ -79.804688, 73.726595 ], [ -78.398438, 73.726595 ], [ -78.398438, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.226700 ], [ -76.992188, 73.226700 ], [ -76.992188, 73.124945 ], [ -76.640625, 73.124945 ], [ -76.640625, 73.022592 ], [ -76.289062, 73.022592 ], [ -76.289062, 72.919635 ], [ -78.750000, 72.919635 ], [ -78.750000, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.022592 ], [ -80.507812, 73.022592 ], [ -80.507812, 73.124945 ], [ -80.859375, 73.124945 ], [ -80.859375, 73.327858 ], [ -81.210938, 73.327858 ], [ -81.210938, 73.528399 ], [ -80.859375, 73.528399 ], [ -80.859375, 73.726595 ], [ -80.507812, 73.726595 ], [ -80.507812, 73.824820 ], [ -79.804688, 73.824820 ] ] ], [ [ [ -91.406250, 74.019543 ], [ -91.406250, 73.922469 ], [ -90.703125, 73.922469 ], [ -90.703125, 73.726595 ], [ -91.054688, 73.726595 ], [ -91.054688, 73.528399 ], [ -91.406250, 73.528399 ], [ -91.406250, 73.226700 ], [ -91.757812, 73.226700 ], [ -91.757812, 74.019543 ], [ -91.406250, 74.019543 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.351562, 81.773644 ], [ -45.351562, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.972431 ], [ -46.054688, 81.972431 ], [ -46.054688, 82.070028 ], [ -46.406250, 82.070028 ], [ -46.406250, 82.166446 ], [ -46.757812, 82.166446 ], [ -46.757812, 82.631333 ], [ -46.406250, 82.631333 ], [ -46.406250, 82.720964 ], [ -46.054688, 82.720964 ], [ -46.054688, 82.765373 ], [ -45.703125, 82.765373 ], [ -45.703125, 82.809511 ], [ -45.351562, 82.809511 ], [ -45.351562, 82.896987 ], [ -45.000000, 82.896987 ], [ -45.000000, 82.940327 ], [ -44.648438, 82.940327 ], [ -44.648438, 83.026219 ], [ -44.296875, 83.026219 ], [ -44.296875, 83.068774 ], [ -43.945312, 83.068774 ], [ -43.945312, 83.111071 ], [ -43.593750, 83.111071 ], [ -43.593750, 83.194896 ], [ -43.242188, 83.194896 ], [ -43.242188, 83.236426 ], [ -41.835938, 83.236426 ], [ -41.835938, 83.194896 ], [ -39.726562, 83.194896 ], [ -39.726562, 83.236426 ], [ -39.375000, 83.236426 ], [ -39.375000, 83.359511 ], [ -39.023438, 83.359511 ], [ -39.023438, 83.480366 ], [ -38.671875, 83.480366 ], [ -38.671875, 83.559717 ], [ -37.617188, 83.559717 ], [ -37.617188, 83.599031 ], [ -35.859375, 83.599031 ], [ -35.859375, 83.638106 ], [ -34.101562, 83.638106 ], [ -34.101562, 83.599031 ], [ -31.289062, 83.599031 ], [ -31.289062, 83.559717 ], [ -28.476562, 83.559717 ], [ -28.476562, 83.520162 ], [ -27.070312, 83.520162 ], [ -27.070312, 83.480366 ], [ -26.718750, 83.480366 ], [ -26.718750, 83.440326 ], [ -26.367188, 83.440326 ], [ -26.367188, 83.400042 ], [ -26.015625, 83.400042 ], [ -26.015625, 83.359511 ], [ -25.664062, 83.359511 ], [ -25.664062, 83.318733 ], [ -25.312500, 83.318733 ], [ -25.312500, 83.277705 ], [ -24.960938, 83.277705 ], [ -24.960938, 83.236426 ], [ -24.609375, 83.236426 ], [ -24.609375, 83.194896 ], [ -24.257812, 83.194896 ], [ -24.257812, 83.153111 ], [ -23.906250, 83.153111 ], [ -23.906250, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.809511 ], [ -21.445312, 82.809511 ], [ -21.445312, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.720964 ], [ -20.742188, 82.720964 ], [ -20.742188, 82.676285 ], [ -21.093750, 82.676285 ], [ -21.093750, 82.631333 ], [ -21.445312, 82.631333 ], [ -21.445312, 82.540604 ], [ -21.796875, 82.540604 ], [ -21.796875, 82.494824 ], [ -22.148438, 82.494824 ], [ -22.148438, 82.448764 ], [ -22.500000, 82.448764 ], [ -22.500000, 82.355800 ], [ -24.257812, 82.355800 ], [ -24.257812, 82.308893 ], [ -27.421875, 82.308893 ], [ -27.421875, 82.261699 ], [ -30.234375, 82.261699 ], [ -30.234375, 82.214217 ], [ -31.992188, 82.214217 ], [ -31.992188, 82.166446 ], [ -31.640625, 82.166446 ], [ -31.640625, 82.070028 ], [ -31.289062, 82.070028 ], [ -31.289062, 82.021378 ], [ -30.234375, 82.021378 ], [ -30.234375, 82.070028 ], [ -28.476562, 82.070028 ], [ -28.476562, 82.118384 ], [ -27.773438, 82.118384 ], [ -27.773438, 82.070028 ], [ -27.421875, 82.070028 ], [ -27.421875, 82.021378 ], [ -27.070312, 82.021378 ], [ -27.070312, 81.972431 ], [ -26.718750, 81.972431 ], [ -26.718750, 81.923186 ], [ -26.015625, 81.923186 ], [ -26.015625, 81.873641 ], [ -25.664062, 81.873641 ], [ -25.664062, 81.823794 ], [ -25.312500, 81.823794 ], [ -25.312500, 81.773644 ], [ -24.609375, 81.773644 ], [ -24.609375, 81.823794 ], [ -24.257812, 81.823794 ], [ -24.257812, 81.873641 ], [ -23.906250, 81.873641 ], [ -23.906250, 81.923186 ], [ -23.554688, 81.923186 ], [ -23.554688, 81.972431 ], [ -23.203125, 81.972431 ], [ -23.203125, 82.021378 ], [ -22.851562, 82.021378 ], [ -22.851562, 81.972431 ], [ -22.500000, 81.972431 ], [ -22.500000, 81.773644 ], [ -22.148438, 81.773644 ], [ -22.148438, 81.621352 ], [ -22.500000, 81.621352 ], [ -22.500000, 81.413933 ], [ -22.851562, 81.413933 ], [ -22.851562, 81.201420 ], [ -22.500000, 81.201420 ], [ -22.500000, 81.255032 ], [ -22.148438, 81.255032 ], [ -22.148438, 81.308321 ], [ -21.796875, 81.308321 ], [ -21.796875, 81.361287 ], [ -21.445312, 81.361287 ], [ -21.445312, 81.413933 ], [ -21.093750, 81.413933 ], [ -21.093750, 81.466261 ], [ -20.742188, 81.466261 ], [ -20.742188, 81.518272 ], [ -20.390625, 81.518272 ], [ -20.390625, 81.569968 ], [ -19.687500, 81.569968 ], [ -19.687500, 81.621352 ], [ -18.984375, 81.621352 ], [ -18.984375, 81.672424 ], [ -18.281250, 81.672424 ], [ -18.281250, 81.723188 ], [ -17.929688, 81.723188 ], [ -17.929688, 81.773644 ], [ -17.226562, 81.773644 ], [ -17.226562, 81.823794 ], [ -16.523438, 81.823794 ], [ -16.523438, 81.873641 ], [ -15.820312, 81.873641 ], [ -15.820312, 81.923186 ], [ -15.468750, 81.923186 ], [ -15.468750, 81.873641 ], [ -14.765625, 81.873641 ], [ -14.765625, 81.823794 ], [ -14.062500, 81.823794 ], [ -14.062500, 81.773644 ], [ -13.359375, 81.773644 ], [ -13.359375, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.518272 ], [ -12.304688, 81.518272 ], [ -12.304688, 81.255032 ], [ -12.656250, 81.255032 ], [ -12.656250, 81.201420 ], [ -13.007812, 81.201420 ], [ -13.007812, 81.147481 ], [ -13.359375, 81.147481 ], [ -13.359375, 81.038617 ], [ -13.710938, 81.038617 ], [ -13.710938, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.928426 ], [ -14.414062, 80.928426 ], [ -14.414062, 80.872827 ], [ -14.765625, 80.872827 ], [ -14.765625, 80.816891 ], [ -15.117188, 80.816891 ], [ -15.117188, 80.703997 ], [ -15.468750, 80.703997 ], [ -15.468750, 80.647035 ], [ -15.820312, 80.647035 ], [ -15.820312, 80.589727 ], [ -16.171875, 80.589727 ], [ -16.171875, 80.532071 ], [ -16.523438, 80.532071 ], [ -16.523438, 80.415707 ], [ -16.875000, 80.415707 ], [ -16.875000, 80.356995 ], [ -17.226562, 80.356995 ], [ -17.226562, 80.297927 ], [ -18.281250, 80.297927 ], [ -18.281250, 80.238501 ], [ -19.335938, 80.238501 ], [ -19.335938, 80.178713 ], [ -18.984375, 80.178713 ], [ -18.984375, 80.118564 ], [ -17.578125, 80.118564 ], [ -17.578125, 79.997168 ], [ -17.929688, 79.997168 ], [ -17.929688, 79.812302 ], [ -18.281250, 79.812302 ], [ -18.281250, 79.624056 ], [ -18.632812, 79.624056 ], [ -18.632812, 79.432371 ], [ -18.984375, 79.432371 ], [ -18.984375, 79.171335 ], [ -19.335938, 79.171335 ], [ -19.335938, 78.903929 ], [ -19.687500, 78.903929 ], [ -19.687500, 77.466028 ], [ -19.335938, 77.466028 ], [ -19.335938, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 77.078784 ], [ -18.632812, 77.078784 ], [ -18.632812, 76.999935 ], [ -18.984375, 76.999935 ], [ -18.984375, 76.920614 ], [ -20.039062, 76.920614 ], [ -20.039062, 76.840816 ], [ -20.390625, 76.840816 ], [ -20.390625, 76.760541 ], [ -21.093750, 76.760541 ], [ -21.093750, 76.679785 ], [ -21.445312, 76.679785 ], [ -21.445312, 76.598545 ], [ -21.796875, 76.598545 ], [ -21.796875, 76.516819 ], [ -21.445312, 76.516819 ], [ -21.445312, 76.434604 ], [ -21.093750, 76.434604 ], [ -21.093750, 76.351896 ], [ -20.742188, 76.351896 ], [ -20.742188, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.184995 ], [ -20.039062, 76.184995 ], [ -20.039062, 76.100796 ], [ -19.687500, 76.100796 ], [ -19.687500, 75.230667 ], [ -20.039062, 75.230667 ], [ -20.039062, 75.140778 ], [ -20.742188, 75.140778 ], [ -20.742188, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.775843 ], [ -20.039062, 74.775843 ], [ -20.039062, 74.590108 ], [ -19.687500, 74.590108 ], [ -19.687500, 74.402163 ], [ -19.335938, 74.402163 ], [ -19.335938, 74.307353 ], [ -20.039062, 74.307353 ], [ -20.039062, 74.211983 ], [ -21.445312, 74.211983 ], [ -21.445312, 74.116047 ], [ -21.093750, 74.116047 ], [ -21.093750, 74.019543 ], [ -20.742188, 74.019543 ], [ -20.742188, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.627789 ], [ -20.742188, 73.627789 ], [ -20.742188, 73.428424 ], [ -21.093750, 73.428424 ], [ -21.093750, 73.327858 ], [ -23.554688, 73.327858 ], [ -23.554688, 73.226700 ], [ -23.203125, 73.226700 ], [ -23.203125, 73.022592 ], [ -22.851562, 73.022592 ], [ -22.851562, 72.816074 ], [ -22.500000, 72.816074 ], [ -22.500000, 72.607120 ], [ -22.148438, 72.607120 ], [ -22.148438, 72.181804 ], [ -22.500000, 72.181804 ], [ -22.500000, 72.289067 ], [ -23.203125, 72.289067 ], [ -23.203125, 72.395706 ], [ -23.554688, 72.395706 ], [ -23.554688, 72.501722 ], [ -24.609375, 72.501722 ], [ -24.609375, 72.289067 ], [ -24.960938, 72.289067 ], [ -24.960938, 72.181804 ], [ -24.257812, 72.181804 ], [ -24.257812, 72.073911 ], [ -23.554688, 72.073911 ], [ -23.554688, 71.965388 ], [ -23.203125, 71.965388 ], [ -23.203125, 71.746432 ], [ -22.851562, 71.746432 ], [ -22.851562, 71.635993 ], [ -22.500000, 71.635993 ], [ -22.500000, 71.413177 ], [ -22.148438, 71.413177 ], [ -22.148438, 70.959697 ], [ -21.796875, 70.959697 ], [ -21.796875, 70.612614 ], [ -22.500000, 70.612614 ], [ -22.500000, 70.495574 ], [ -23.906250, 70.495574 ], [ -23.906250, 70.728979 ], [ -24.257812, 70.728979 ], [ -24.257812, 70.844673 ], [ -24.609375, 70.844673 ], [ -24.609375, 70.959697 ], [ -24.960938, 70.959697 ], [ -24.960938, 71.187754 ], [ -25.312500, 71.187754 ], [ -25.312500, 71.300793 ], [ -25.664062, 71.300793 ], [ -25.664062, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.612614 ], [ -25.664062, 70.612614 ], [ -25.664062, 70.495574 ], [ -26.015625, 70.495574 ], [ -26.015625, 70.259452 ], [ -25.312500, 70.259452 ], [ -25.312500, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 70.020587 ], [ -22.851562, 70.020587 ], [ -22.851562, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.778952 ], [ -23.554688, 69.778952 ], [ -23.554688, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.534518 ], [ -24.257812, 69.534518 ], [ -24.257812, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.287257 ], [ -24.960938, 69.287257 ], [ -24.960938, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 69.037142 ], [ -26.015625, 69.037142 ], [ -26.015625, 68.911005 ], [ -26.367188, 68.911005 ], [ -26.367188, 68.784144 ], [ -26.718750, 68.784144 ], [ -26.718750, 68.656555 ], [ -27.421875, 68.656555 ], [ -27.421875, 68.528235 ], [ -28.125000, 68.528235 ], [ -28.125000, 68.399180 ], [ -28.828125, 68.399180 ], [ -28.828125, 68.269387 ], [ -29.882812, 68.269387 ], [ -29.882812, 68.138852 ], [ -31.640625, 68.138852 ], [ -31.640625, 68.007571 ], [ -31.992188, 68.007571 ], [ -31.992188, 67.875541 ], [ -32.343750, 67.875541 ], [ -32.343750, 67.742759 ], [ -32.695312, 67.742759 ], [ -32.695312, 67.609221 ], [ -33.046875, 67.609221 ], [ -33.046875, 67.339861 ], [ -33.398438, 67.339861 ], [ -33.398438, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.513260 ], [ -34.453125, 66.513260 ], [ -34.453125, 66.372755 ], [ -34.804688, 66.372755 ], [ -34.804688, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.089364 ], [ -35.859375, 66.089364 ], [ -35.859375, 65.946472 ], [ -36.914062, 65.946472 ], [ -36.914062, 65.802776 ], [ -53.437500, 65.802776 ], [ -53.437500, 65.946472 ], [ -53.789062, 65.946472 ], [ -53.789062, 66.372755 ], [ -53.437500, 66.372755 ], [ -53.437500, 66.791909 ], [ -53.789062, 66.791909 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.339861 ], [ -53.789062, 67.339861 ], [ -53.789062, 67.742759 ], [ -53.437500, 67.742759 ], [ -53.437500, 68.138852 ], [ -53.085938, 68.138852 ], [ -53.085938, 68.399180 ], [ -52.734375, 68.399180 ], [ -52.734375, 68.528235 ], [ -52.031250, 68.528235 ], [ -52.031250, 68.656555 ], [ -51.328125, 68.656555 ], [ -51.328125, 68.911005 ], [ -50.976562, 68.911005 ], [ -50.976562, 69.778952 ], [ -51.328125, 69.778952 ], [ -51.328125, 69.657086 ], [ -51.679688, 69.657086 ], [ -51.679688, 69.534518 ], [ -52.031250, 69.534518 ], [ -52.031250, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.287257 ], [ -53.789062, 69.287257 ], [ -53.789062, 69.411242 ], [ -54.492188, 69.411242 ], [ -54.492188, 69.534518 ], [ -54.843750, 69.534518 ], [ -54.843750, 70.495574 ], [ -54.492188, 70.495574 ], [ -54.492188, 70.844673 ], [ -53.085938, 70.844673 ], [ -53.085938, 70.728979 ], [ -52.031250, 70.728979 ], [ -52.031250, 70.844673 ], [ -52.382812, 70.844673 ], [ -52.382812, 70.959697 ], [ -52.734375, 70.959697 ], [ -52.734375, 71.074056 ], [ -53.085938, 71.074056 ], [ -53.085938, 71.187754 ], [ -53.437500, 71.187754 ], [ -53.437500, 71.300793 ], [ -53.789062, 71.300793 ], [ -53.789062, 71.413177 ], [ -55.195312, 71.413177 ], [ -55.195312, 71.524909 ], [ -55.898438, 71.524909 ], [ -55.898438, 71.746432 ], [ -55.546875, 71.746432 ], [ -55.546875, 72.073911 ], [ -55.195312, 72.073911 ], [ -55.195312, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.711903 ], [ -55.195312, 72.711903 ], [ -55.195312, 73.022592 ], [ -55.546875, 73.022592 ], [ -55.546875, 73.226700 ], [ -55.898438, 73.226700 ], [ -55.898438, 73.428424 ], [ -56.250000, 73.428424 ], [ -56.250000, 73.726595 ], [ -56.601562, 73.726595 ], [ -56.601562, 74.116047 ], [ -56.953125, 74.116047 ], [ -56.953125, 74.496413 ], [ -57.304688, 74.496413 ], [ -57.304688, 74.683250 ], [ -57.656250, 74.683250 ], [ -57.656250, 74.775843 ], [ -58.007812, 74.775843 ], [ -58.007812, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.050354 ], [ -58.710938, 75.050354 ], [ -58.710938, 75.497157 ], [ -59.062500, 75.497157 ], [ -59.062500, 75.584937 ], [ -59.414062, 75.584937 ], [ -59.414062, 75.672197 ], [ -59.765625, 75.672197 ], [ -59.765625, 75.758940 ], [ -60.117188, 75.758940 ], [ -60.117188, 75.845169 ], [ -60.468750, 75.845169 ], [ -60.468750, 75.930885 ], [ -60.820312, 75.930885 ], [ -60.820312, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.100796 ], [ -62.578125, 76.100796 ], [ -62.578125, 76.184995 ], [ -64.335938, 76.184995 ], [ -64.335938, 76.100796 ], [ -68.906250, 76.100796 ], [ -68.906250, 76.184995 ], [ -69.257812, 76.184995 ], [ -69.257812, 76.268695 ], [ -69.609375, 76.268695 ], [ -69.609375, 76.351896 ], [ -69.960938, 76.351896 ], [ -69.960938, 76.516819 ], [ -70.312500, 76.516819 ], [ -70.312500, 76.679785 ], [ -70.664062, 76.679785 ], [ -70.664062, 76.760541 ], [ -71.015625, 76.760541 ], [ -71.015625, 76.920614 ], [ -71.367188, 76.920614 ], [ -71.367188, 76.999935 ], [ -71.015625, 76.999935 ], [ -71.015625, 77.078784 ], [ -70.312500, 77.078784 ], [ -70.312500, 77.157163 ], [ -69.609375, 77.157163 ], [ -69.609375, 77.235074 ], [ -68.906250, 77.235074 ], [ -68.906250, 77.312520 ], [ -67.500000, 77.312520 ], [ -67.500000, 77.389504 ], [ -67.851562, 77.389504 ], [ -67.851562, 77.466028 ], [ -69.257812, 77.466028 ], [ -69.257812, 77.542096 ], [ -70.664062, 77.542096 ], [ -70.664062, 77.617709 ], [ -71.367188, 77.617709 ], [ -71.367188, 77.692870 ], [ -71.718750, 77.692870 ], [ -71.718750, 77.767582 ], [ -72.070312, 77.767582 ], [ -72.070312, 77.841848 ], [ -72.421875, 77.841848 ], [ -72.421875, 77.915669 ], [ -72.773438, 77.915669 ], [ -72.773438, 77.989049 ], [ -73.125000, 77.989049 ], [ -73.125000, 78.420193 ], [ -72.773438, 78.420193 ], [ -72.773438, 78.490552 ], [ -72.070312, 78.490552 ], [ -72.070312, 78.560488 ], [ -71.718750, 78.560488 ], [ -71.718750, 78.630006 ], [ -71.015625, 78.630006 ], [ -71.015625, 78.699106 ], [ -70.312500, 78.699106 ], [ -70.312500, 78.767792 ], [ -69.960938, 78.767792 ], [ -69.960938, 78.836065 ], [ -69.257812, 78.836065 ], [ -69.257812, 78.903929 ], [ -68.906250, 78.903929 ], [ -68.906250, 78.971386 ], [ -68.203125, 78.971386 ], [ -68.203125, 79.038437 ], [ -67.851562, 79.038437 ], [ -67.851562, 79.105086 ], [ -67.148438, 79.105086 ], [ -67.148438, 79.171335 ], [ -66.796875, 79.171335 ], [ -66.796875, 79.237185 ], [ -66.445312, 79.237185 ], [ -66.445312, 79.302640 ], [ -65.742188, 79.302640 ], [ -65.742188, 79.560546 ], [ -65.390625, 79.560546 ], [ -65.390625, 79.749932 ], [ -65.742188, 79.749932 ], [ -65.742188, 79.812302 ], [ -66.093750, 79.812302 ], [ -66.093750, 79.874297 ], [ -66.445312, 79.874297 ], [ -66.445312, 79.935918 ], [ -67.148438, 79.935918 ], [ -67.148438, 79.997168 ], [ -67.500000, 79.997168 ], [ -67.500000, 80.058050 ], [ -67.851562, 80.058050 ], [ -67.851562, 80.178713 ], [ -67.500000, 80.178713 ], [ -67.500000, 80.415707 ], [ -67.148438, 80.415707 ], [ -67.148438, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.589727 ], [ -66.445312, 80.589727 ], [ -66.445312, 80.703997 ], [ -66.093750, 80.703997 ], [ -66.093750, 80.760615 ], [ -65.742188, 80.760615 ], [ -65.742188, 80.816891 ], [ -65.390625, 80.816891 ], [ -65.390625, 80.872827 ], [ -65.039062, 80.872827 ], [ -65.039062, 80.928426 ], [ -64.687500, 80.928426 ], [ -64.687500, 81.038617 ], [ -64.335938, 81.038617 ], [ -64.335938, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.147481 ], [ -63.632812, 81.147481 ], [ -63.632812, 81.201420 ], [ -62.929688, 81.201420 ], [ -62.929688, 81.255032 ], [ -62.226562, 81.255032 ], [ -62.226562, 81.518272 ], [ -62.578125, 81.518272 ], [ -62.578125, 81.773644 ], [ -62.226562, 81.773644 ], [ -62.226562, 81.823794 ], [ -61.523438, 81.823794 ], [ -61.523438, 81.873641 ], [ -61.171875, 81.873641 ], [ -61.171875, 81.923186 ], [ -60.820312, 81.923186 ], [ -60.820312, 81.972431 ], [ -60.117188, 81.972431 ], [ -60.117188, 82.021378 ], [ -59.414062, 82.021378 ], [ -59.414062, 82.070028 ], [ -58.710938, 82.070028 ], [ -58.710938, 82.118384 ], [ -58.007812, 82.118384 ], [ -58.007812, 82.166446 ], [ -57.304688, 82.166446 ], [ -57.304688, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.118384 ], [ -53.789062, 82.118384 ], [ -53.789062, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.923186 ], [ -53.085938, 81.923186 ], [ -53.085938, 81.873641 ], [ -52.734375, 81.873641 ], [ -52.734375, 81.972431 ], [ -52.382812, 81.972431 ], [ -52.382812, 82.021378 ], [ -52.031250, 82.021378 ], [ -52.031250, 82.118384 ], [ -51.679688, 82.118384 ], [ -51.679688, 82.166446 ], [ -51.328125, 82.166446 ], [ -51.328125, 82.261699 ], [ -50.976562, 82.261699 ], [ -50.976562, 82.308893 ], [ -50.625000, 82.308893 ], [ -50.625000, 82.402423 ], [ -49.921875, 82.402423 ], [ -49.921875, 82.355800 ], [ -49.570312, 82.355800 ], [ -49.570312, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.214217 ], [ -48.867188, 82.214217 ], [ -48.867188, 82.166446 ], [ -48.515625, 82.166446 ], [ -48.515625, 82.070028 ], [ -48.164062, 82.070028 ], [ -48.164062, 82.021378 ], [ -47.460938, 82.021378 ], [ -47.460938, 81.972431 ], [ -46.757812, 81.972431 ], [ -46.757812, 81.923186 ], [ -46.406250, 81.923186 ], [ -46.406250, 81.873641 ], [ -46.054688, 81.873641 ], [ -46.054688, 81.823794 ], [ -45.703125, 81.823794 ], [ -45.703125, 81.773644 ], [ -45.351562, 81.773644 ] ], [ [ -22.851562, 81.201420 ], [ -23.203125, 81.201420 ], [ -23.203125, 81.147481 ], [ -22.851562, 81.147481 ], [ -22.851562, 81.201420 ] ], [ [ -52.031250, 70.728979 ], [ -52.031250, 70.612614 ], [ -51.679688, 70.612614 ], [ -51.679688, 70.728979 ], [ -52.031250, 70.728979 ] ], [ [ -45.351562, 81.773644 ], [ -45.351562, 81.723188 ], [ -45.000000, 81.723188 ], [ -45.000000, 81.773644 ], [ -45.351562, 81.773644 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.054688, 81.923186 ], [ -46.054688, 82.021378 ], [ -46.406250, 82.021378 ], [ -46.406250, 82.070028 ], [ -46.757812, 82.070028 ], [ -46.757812, 82.166446 ], [ -47.109375, 82.166446 ], [ -47.109375, 82.631333 ], [ -46.757812, 82.631333 ], [ -46.757812, 82.720964 ], [ -46.406250, 82.720964 ], [ -46.406250, 82.765373 ], [ -46.054688, 82.765373 ], [ -46.054688, 82.809511 ], [ -45.703125, 82.809511 ], [ -45.703125, 82.896987 ], [ -45.351562, 82.896987 ], [ -45.351562, 82.940327 ], [ -45.000000, 82.940327 ], [ -45.000000, 83.026219 ], [ -44.648438, 83.026219 ], [ -44.648438, 83.068774 ], [ -44.296875, 83.068774 ], [ -44.296875, 83.111071 ], [ -43.945312, 83.111071 ], [ -43.945312, 83.194896 ], [ -43.593750, 83.194896 ], [ -43.593750, 83.236426 ], [ -42.187500, 83.236426 ], [ -42.187500, 83.194896 ], [ -40.078125, 83.194896 ], [ -40.078125, 83.236426 ], [ -39.726562, 83.236426 ], [ -39.726562, 83.318733 ], [ -39.375000, 83.318733 ], [ -39.375000, 83.400042 ], [ -39.023438, 83.400042 ], [ -39.023438, 83.480366 ], [ -38.671875, 83.480366 ], [ -38.671875, 83.559717 ], [ -37.968750, 83.559717 ], [ -37.968750, 83.599031 ], [ -36.562500, 83.599031 ], [ -36.562500, 83.638106 ], [ -35.507812, 83.638106 ], [ -35.507812, 83.676943 ], [ -34.453125, 83.676943 ], [ -34.453125, 83.638106 ], [ -32.343750, 83.638106 ], [ -32.343750, 83.599031 ], [ -30.585938, 83.599031 ], [ -30.585938, 83.559717 ], [ -28.476562, 83.559717 ], [ -28.476562, 83.520162 ], [ -27.421875, 83.520162 ], [ -27.421875, 83.480366 ], [ -27.070312, 83.480366 ], [ -27.070312, 83.440326 ], [ -26.718750, 83.440326 ], [ -26.718750, 83.400042 ], [ -26.367188, 83.400042 ], [ -26.367188, 83.359511 ], [ -26.015625, 83.359511 ], [ -26.015625, 83.318733 ], [ -25.664062, 83.318733 ], [ -25.664062, 83.277705 ], [ -25.312500, 83.277705 ], [ -25.312500, 83.236426 ], [ -24.960938, 83.236426 ], [ -24.960938, 83.194896 ], [ -24.609375, 83.194896 ], [ -24.609375, 83.153111 ], [ -24.257812, 83.153111 ], [ -24.257812, 83.111071 ], [ -23.906250, 83.111071 ], [ -23.906250, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.809511 ], [ -21.445312, 82.809511 ], [ -21.445312, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.720964 ], [ -21.445312, 82.720964 ], [ -21.445312, 82.631333 ], [ -21.796875, 82.631333 ], [ -21.796875, 82.540604 ], [ -22.148438, 82.540604 ], [ -22.148438, 82.448764 ], [ -22.500000, 82.448764 ], [ -22.500000, 82.355800 ], [ -24.609375, 82.355800 ], [ -24.609375, 82.308893 ], [ -27.773438, 82.308893 ], [ -27.773438, 82.261699 ], [ -30.585938, 82.261699 ], [ -30.585938, 82.214217 ], [ -31.992188, 82.214217 ], [ -31.992188, 82.118384 ], [ -31.640625, 82.118384 ], [ -31.640625, 82.021378 ], [ -30.937500, 82.021378 ], [ -30.937500, 82.070028 ], [ -29.531250, 82.070028 ], [ -29.531250, 82.118384 ], [ -28.476562, 82.118384 ], [ -28.476562, 82.166446 ], [ -28.125000, 82.166446 ], [ -28.125000, 82.118384 ], [ -27.773438, 82.118384 ], [ -27.773438, 82.070028 ], [ -27.070312, 82.070028 ], [ -27.070312, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.972431 ], [ -26.367188, 81.972431 ], [ -26.367188, 81.923186 ], [ -25.664062, 81.923186 ], [ -25.664062, 81.873641 ], [ -25.312500, 81.873641 ], [ -25.312500, 81.823794 ], [ -24.609375, 81.823794 ], [ -24.609375, 81.873641 ], [ -24.257812, 81.873641 ], [ -24.257812, 81.972431 ], [ -23.906250, 81.972431 ], [ -23.906250, 82.021378 ], [ -23.554688, 82.021378 ], [ -23.554688, 82.070028 ], [ -23.203125, 82.070028 ], [ -23.203125, 82.021378 ], [ -22.851562, 82.021378 ], [ -22.851562, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.823794 ], [ -22.148438, 81.823794 ], [ -22.148438, 81.672424 ], [ -22.500000, 81.672424 ], [ -22.500000, 81.466261 ], [ -22.851562, 81.466261 ], [ -22.851562, 81.255032 ], [ -22.500000, 81.255032 ], [ -22.500000, 81.308321 ], [ -22.148438, 81.308321 ], [ -22.148438, 81.361287 ], [ -21.796875, 81.361287 ], [ -21.796875, 81.413933 ], [ -21.445312, 81.413933 ], [ -21.445312, 81.466261 ], [ -21.093750, 81.466261 ], [ -21.093750, 81.518272 ], [ -20.742188, 81.518272 ], [ -20.742188, 81.569968 ], [ -20.039062, 81.569968 ], [ -20.039062, 81.621352 ], [ -19.335938, 81.621352 ], [ -19.335938, 81.672424 ], [ -18.632812, 81.672424 ], [ -18.632812, 81.723188 ], [ -17.929688, 81.723188 ], [ -17.929688, 81.773644 ], [ -17.226562, 81.773644 ], [ -17.226562, 81.823794 ], [ -16.523438, 81.823794 ], [ -16.523438, 81.873641 ], [ -15.117188, 81.873641 ], [ -15.117188, 81.823794 ], [ -14.414062, 81.823794 ], [ -14.414062, 81.773644 ], [ -13.710938, 81.773644 ], [ -13.710938, 81.723188 ], [ -13.007812, 81.723188 ], [ -13.007812, 81.621352 ], [ -12.656250, 81.621352 ], [ -12.656250, 81.413933 ], [ -12.304688, 81.413933 ], [ -12.304688, 81.255032 ], [ -12.656250, 81.255032 ], [ -12.656250, 81.201420 ], [ -13.007812, 81.201420 ], [ -13.007812, 81.147481 ], [ -13.359375, 81.147481 ], [ -13.359375, 81.093214 ], [ -13.710938, 81.093214 ], [ -13.710938, 81.038617 ], [ -14.062500, 81.038617 ], [ -14.062500, 80.983688 ], [ -14.414062, 80.983688 ], [ -14.414062, 80.872827 ], [ -14.765625, 80.872827 ], [ -14.765625, 80.816891 ], [ -15.117188, 80.816891 ], [ -15.117188, 80.760615 ], [ -15.468750, 80.760615 ], [ -15.468750, 80.703997 ], [ -15.820312, 80.703997 ], [ -15.820312, 80.647035 ], [ -16.171875, 80.647035 ], [ -16.171875, 80.589727 ], [ -16.523438, 80.589727 ], [ -16.523438, 80.474065 ], [ -16.875000, 80.474065 ], [ -16.875000, 80.356995 ], [ -17.226562, 80.356995 ], [ -17.226562, 80.297927 ], [ -18.281250, 80.297927 ], [ -18.281250, 80.238501 ], [ -19.687500, 80.238501 ], [ -19.687500, 80.178713 ], [ -17.929688, 80.178713 ], [ -17.929688, 80.058050 ], [ -18.281250, 80.058050 ], [ -18.281250, 79.812302 ], [ -18.632812, 79.812302 ], [ -18.632812, 79.560546 ], [ -18.984375, 79.560546 ], [ -18.984375, 79.302640 ], [ -19.335938, 79.302640 ], [ -19.335938, 79.105086 ], [ -19.687500, 79.105086 ], [ -19.687500, 78.836065 ], [ -20.039062, 78.836065 ], [ -20.039062, 78.206563 ], [ -19.687500, 78.206563 ], [ -19.687500, 77.542096 ], [ -19.335938, 77.542096 ], [ -19.335938, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 77.078784 ], [ -18.632812, 77.078784 ], [ -18.632812, 76.999935 ], [ -20.039062, 76.999935 ], [ -20.039062, 76.920614 ], [ -20.390625, 76.920614 ], [ -20.390625, 76.840816 ], [ -21.093750, 76.840816 ], [ -21.093750, 76.760541 ], [ -21.445312, 76.760541 ], [ -21.445312, 76.679785 ], [ -21.796875, 76.679785 ], [ -21.796875, 76.598545 ], [ -21.445312, 76.598545 ], [ -21.445312, 76.434604 ], [ -21.093750, 76.434604 ], [ -21.093750, 76.351896 ], [ -20.742188, 76.351896 ], [ -20.742188, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.100796 ], [ -20.039062, 76.100796 ], [ -20.039062, 75.672197 ], [ -19.687500, 75.672197 ], [ -19.687500, 75.320025 ], [ -20.039062, 75.320025 ], [ -20.039062, 75.230667 ], [ -20.742188, 75.230667 ], [ -20.742188, 75.050354 ], [ -20.390625, 75.050354 ], [ -20.390625, 74.775843 ], [ -20.039062, 74.775843 ], [ -20.039062, 74.402163 ], [ -19.687500, 74.402163 ], [ -19.687500, 74.307353 ], [ -21.796875, 74.307353 ], [ -21.796875, 74.211983 ], [ -21.445312, 74.211983 ], [ -21.445312, 74.019543 ], [ -21.093750, 74.019543 ], [ -21.093750, 73.824820 ], [ -20.742188, 73.824820 ], [ -20.742188, 73.627789 ], [ -21.093750, 73.627789 ], [ -21.093750, 73.428424 ], [ -21.796875, 73.428424 ], [ -21.796875, 73.327858 ], [ -23.906250, 73.327858 ], [ -23.906250, 73.226700 ], [ -23.554688, 73.226700 ], [ -23.554688, 73.022592 ], [ -23.203125, 73.022592 ], [ -23.203125, 72.919635 ], [ -22.851562, 72.919635 ], [ -22.851562, 72.711903 ], [ -22.500000, 72.711903 ], [ -22.500000, 72.289067 ], [ -23.203125, 72.289067 ], [ -23.203125, 72.395706 ], [ -23.906250, 72.395706 ], [ -23.906250, 72.501722 ], [ -24.960938, 72.501722 ], [ -24.960938, 72.289067 ], [ -24.257812, 72.289067 ], [ -24.257812, 72.181804 ], [ -23.554688, 72.181804 ], [ -23.554688, 72.073911 ], [ -23.203125, 72.073911 ], [ -23.203125, 71.856229 ], [ -22.851562, 71.856229 ], [ -22.851562, 71.746432 ], [ -22.500000, 71.746432 ], [ -22.500000, 71.524909 ], [ -22.148438, 71.524909 ], [ -22.148438, 71.074056 ], [ -21.796875, 71.074056 ], [ -21.796875, 70.728979 ], [ -22.148438, 70.728979 ], [ -22.148438, 70.612614 ], [ -22.851562, 70.612614 ], [ -22.851562, 70.495574 ], [ -23.906250, 70.495574 ], [ -23.906250, 70.728979 ], [ -24.257812, 70.728979 ], [ -24.257812, 70.844673 ], [ -24.609375, 70.844673 ], [ -24.609375, 70.959697 ], [ -24.960938, 70.959697 ], [ -24.960938, 71.187754 ], [ -25.312500, 71.187754 ], [ -25.312500, 70.728979 ], [ -25.664062, 70.728979 ], [ -25.664062, 70.495574 ], [ -26.015625, 70.495574 ], [ -26.015625, 70.259452 ], [ -23.554688, 70.259452 ], [ -23.554688, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 70.020587 ], [ -22.851562, 70.020587 ], [ -22.851562, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.778952 ], [ -23.554688, 69.778952 ], [ -23.554688, 69.657086 ], [ -24.257812, 69.657086 ], [ -24.257812, 69.534518 ], [ -24.609375, 69.534518 ], [ -24.609375, 69.411242 ], [ -24.960938, 69.411242 ], [ -24.960938, 69.287257 ], [ -25.312500, 69.287257 ], [ -25.312500, 69.162558 ], [ -25.664062, 69.162558 ], [ -25.664062, 69.037142 ], [ -26.015625, 69.037142 ], [ -26.015625, 68.911005 ], [ -26.718750, 68.911005 ], [ -26.718750, 68.784144 ], [ -27.070312, 68.784144 ], [ -27.070312, 68.656555 ], [ -27.421875, 68.656555 ], [ -27.421875, 68.528235 ], [ -28.125000, 68.528235 ], [ -28.125000, 68.399180 ], [ -29.179688, 68.399180 ], [ -29.179688, 68.269387 ], [ -30.234375, 68.269387 ], [ -30.234375, 68.138852 ], [ -31.992188, 68.138852 ], [ -31.992188, 68.007571 ], [ -32.343750, 68.007571 ], [ -32.343750, 67.875541 ], [ -32.695312, 67.875541 ], [ -32.695312, 67.742759 ], [ -33.046875, 67.742759 ], [ -33.046875, 67.609221 ], [ -33.398438, 67.609221 ], [ -33.398438, 67.339861 ], [ -33.750000, 67.339861 ], [ -33.750000, 67.067433 ], [ -34.101562, 67.067433 ], [ -34.101562, 66.791909 ], [ -34.453125, 66.791909 ], [ -34.453125, 66.652977 ], [ -34.804688, 66.652977 ], [ -34.804688, 66.513260 ], [ -35.156250, 66.513260 ], [ -35.156250, 66.372755 ], [ -35.859375, 66.372755 ], [ -35.859375, 66.231457 ], [ -36.210938, 66.231457 ], [ -36.210938, 66.089364 ], [ -36.562500, 66.089364 ], [ -36.562500, 65.946472 ], [ -37.265625, 65.946472 ], [ -37.265625, 65.802776 ], [ -53.437500, 65.802776 ], [ -53.437500, 65.946472 ], [ -53.789062, 65.946472 ], [ -53.789062, 66.513260 ], [ -53.437500, 66.513260 ], [ -53.437500, 66.930060 ], [ -53.789062, 66.930060 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.339861 ], [ -53.789062, 67.339861 ], [ -53.789062, 67.742759 ], [ -53.437500, 67.742759 ], [ -53.437500, 68.138852 ], [ -53.085938, 68.138852 ], [ -53.085938, 68.399180 ], [ -52.734375, 68.399180 ], [ -52.734375, 68.528235 ], [ -52.031250, 68.528235 ], [ -52.031250, 68.656555 ], [ -51.679688, 68.656555 ], [ -51.679688, 68.911005 ], [ -51.328125, 68.911005 ], [ -51.328125, 69.534518 ], [ -50.976562, 69.534518 ], [ -50.976562, 69.900118 ], [ -51.328125, 69.900118 ], [ -51.328125, 69.778952 ], [ -51.679688, 69.778952 ], [ -51.679688, 69.657086 ], [ -52.031250, 69.657086 ], [ -52.031250, 69.534518 ], [ -52.734375, 69.534518 ], [ -52.734375, 69.411242 ], [ -53.437500, 69.411242 ], [ -53.437500, 69.287257 ], [ -54.140625, 69.287257 ], [ -54.140625, 69.411242 ], [ -54.492188, 69.411242 ], [ -54.492188, 69.534518 ], [ -54.843750, 69.534518 ], [ -54.843750, 70.612614 ], [ -54.492188, 70.612614 ], [ -54.492188, 70.844673 ], [ -53.085938, 70.844673 ], [ -53.085938, 70.728979 ], [ -52.382812, 70.728979 ], [ -52.382812, 70.959697 ], [ -52.734375, 70.959697 ], [ -52.734375, 71.074056 ], [ -53.085938, 71.074056 ], [ -53.085938, 71.187754 ], [ -53.437500, 71.187754 ], [ -53.437500, 71.300793 ], [ -53.789062, 71.300793 ], [ -53.789062, 71.524909 ], [ -54.843750, 71.524909 ], [ -54.843750, 71.413177 ], [ -55.546875, 71.413177 ], [ -55.546875, 71.635993 ], [ -55.898438, 71.635993 ], [ -55.898438, 71.856229 ], [ -55.546875, 71.856229 ], [ -55.546875, 72.181804 ], [ -55.195312, 72.181804 ], [ -55.195312, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.711903 ], [ -55.195312, 72.711903 ], [ -55.195312, 72.919635 ], [ -55.546875, 72.919635 ], [ -55.546875, 73.124945 ], [ -55.898438, 73.124945 ], [ -55.898438, 73.528399 ], [ -56.250000, 73.528399 ], [ -56.250000, 73.824820 ], [ -56.601562, 73.824820 ], [ -56.601562, 74.116047 ], [ -56.953125, 74.116047 ], [ -56.953125, 74.307353 ], [ -57.304688, 74.307353 ], [ -57.304688, 74.590108 ], [ -57.656250, 74.590108 ], [ -57.656250, 74.775843 ], [ -58.007812, 74.775843 ], [ -58.007812, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.050354 ], [ -58.710938, 75.050354 ], [ -58.710938, 75.584937 ], [ -59.062500, 75.584937 ], [ -59.062500, 75.672197 ], [ -59.414062, 75.672197 ], [ -59.414062, 75.758940 ], [ -59.765625, 75.758940 ], [ -59.765625, 75.845169 ], [ -60.468750, 75.845169 ], [ -60.468750, 75.930885 ], [ -60.820312, 75.930885 ], [ -60.820312, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.100796 ], [ -61.523438, 76.100796 ], [ -61.523438, 76.184995 ], [ -67.148438, 76.184995 ], [ -67.148438, 76.100796 ], [ -68.906250, 76.100796 ], [ -68.906250, 76.184995 ], [ -69.257812, 76.184995 ], [ -69.257812, 76.268695 ], [ -69.609375, 76.268695 ], [ -69.609375, 76.351896 ], [ -69.960938, 76.351896 ], [ -69.960938, 76.434604 ], [ -70.312500, 76.434604 ], [ -70.312500, 76.598545 ], [ -70.664062, 76.598545 ], [ -70.664062, 76.760541 ], [ -71.015625, 76.760541 ], [ -71.015625, 76.840816 ], [ -71.367188, 76.840816 ], [ -71.367188, 76.999935 ], [ -71.718750, 76.999935 ], [ -71.718750, 77.078784 ], [ -71.015625, 77.078784 ], [ -71.015625, 77.157163 ], [ -70.312500, 77.157163 ], [ -70.312500, 77.235074 ], [ -69.609375, 77.235074 ], [ -69.609375, 77.312520 ], [ -68.906250, 77.312520 ], [ -68.906250, 77.389504 ], [ -67.500000, 77.389504 ], [ -67.500000, 77.466028 ], [ -68.554688, 77.466028 ], [ -68.554688, 77.542096 ], [ -69.960938, 77.542096 ], [ -69.960938, 77.617709 ], [ -71.015625, 77.617709 ], [ -71.015625, 77.692870 ], [ -71.718750, 77.692870 ], [ -71.718750, 77.767582 ], [ -72.070312, 77.767582 ], [ -72.070312, 77.841848 ], [ -72.773438, 77.841848 ], [ -72.773438, 77.915669 ], [ -73.125000, 77.915669 ], [ -73.125000, 77.989049 ], [ -73.476562, 77.989049 ], [ -73.476562, 78.490552 ], [ -73.125000, 78.490552 ], [ -73.125000, 78.560488 ], [ -72.421875, 78.560488 ], [ -72.421875, 78.630006 ], [ -72.070312, 78.630006 ], [ -72.070312, 78.699106 ], [ -71.367188, 78.699106 ], [ -71.367188, 78.767792 ], [ -70.664062, 78.767792 ], [ -70.664062, 78.836065 ], [ -70.312500, 78.836065 ], [ -70.312500, 78.903929 ], [ -69.609375, 78.903929 ], [ -69.609375, 78.971386 ], [ -69.257812, 78.971386 ], [ -69.257812, 79.038437 ], [ -68.554688, 79.038437 ], [ -68.554688, 79.105086 ], [ -68.203125, 79.105086 ], [ -68.203125, 79.171335 ], [ -67.500000, 79.171335 ], [ -67.500000, 79.237185 ], [ -66.796875, 79.237185 ], [ -66.796875, 79.302640 ], [ -66.445312, 79.302640 ], [ -66.445312, 79.367701 ], [ -65.742188, 79.367701 ], [ -65.742188, 79.624056 ], [ -65.390625, 79.624056 ], [ -65.390625, 79.812302 ], [ -65.742188, 79.812302 ], [ -65.742188, 79.874297 ], [ -66.445312, 79.874297 ], [ -66.445312, 79.935918 ], [ -67.148438, 79.935918 ], [ -67.148438, 79.997168 ], [ -67.500000, 79.997168 ], [ -67.500000, 80.058050 ], [ -68.203125, 80.058050 ], [ -68.203125, 80.178713 ], [ -67.851562, 80.178713 ], [ -67.851562, 80.415707 ], [ -67.500000, 80.415707 ], [ -67.500000, 80.532071 ], [ -67.148438, 80.532071 ], [ -67.148438, 80.589727 ], [ -66.796875, 80.589727 ], [ -66.796875, 80.703997 ], [ -66.445312, 80.703997 ], [ -66.445312, 80.760615 ], [ -66.093750, 80.760615 ], [ -66.093750, 80.816891 ], [ -65.742188, 80.816891 ], [ -65.742188, 80.928426 ], [ -65.390625, 80.928426 ], [ -65.390625, 80.983688 ], [ -65.039062, 80.983688 ], [ -65.039062, 81.038617 ], [ -64.687500, 81.038617 ], [ -64.687500, 81.147481 ], [ -64.335938, 81.147481 ], [ -64.335938, 81.201420 ], [ -63.984375, 81.201420 ], [ -63.984375, 81.255032 ], [ -63.281250, 81.255032 ], [ -63.281250, 81.308321 ], [ -62.578125, 81.308321 ], [ -62.578125, 81.569968 ], [ -62.929688, 81.569968 ], [ -62.929688, 81.773644 ], [ -62.578125, 81.773644 ], [ -62.578125, 81.823794 ], [ -62.226562, 81.823794 ], [ -62.226562, 81.873641 ], [ -61.875000, 81.873641 ], [ -61.875000, 81.923186 ], [ -61.171875, 81.923186 ], [ -61.171875, 81.972431 ], [ -60.820312, 81.972431 ], [ -60.820312, 82.021378 ], [ -60.468750, 82.021378 ], [ -60.468750, 82.070028 ], [ -59.765625, 82.070028 ], [ -59.765625, 82.118384 ], [ -58.710938, 82.118384 ], [ -58.710938, 82.166446 ], [ -57.656250, 82.166446 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.166446 ], [ -53.789062, 82.166446 ], [ -53.789062, 82.070028 ], [ -53.437500, 82.070028 ], [ -53.437500, 81.972431 ], [ -53.085938, 81.972431 ], [ -53.085938, 81.923186 ], [ -52.734375, 81.923186 ], [ -52.734375, 82.021378 ], [ -52.382812, 82.021378 ], [ -52.382812, 82.070028 ], [ -52.031250, 82.070028 ], [ -52.031250, 82.166446 ], [ -51.679688, 82.166446 ], [ -51.679688, 82.261699 ], [ -51.328125, 82.261699 ], [ -51.328125, 82.308893 ], [ -50.976562, 82.308893 ], [ -50.976562, 82.402423 ], [ -50.273438, 82.402423 ], [ -50.273438, 82.355800 ], [ -49.921875, 82.355800 ], [ -49.921875, 82.308893 ], [ -49.570312, 82.308893 ], [ -49.570312, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.166446 ], [ -48.867188, 82.166446 ], [ -48.867188, 82.118384 ], [ -48.515625, 82.118384 ], [ -48.515625, 82.070028 ], [ -47.812500, 82.070028 ], [ -47.812500, 82.021378 ], [ -46.757812, 82.021378 ], [ -46.757812, 81.972431 ], [ -46.406250, 81.972431 ], [ -46.406250, 81.923186 ], [ -46.054688, 81.923186 ] ], [ [ -25.312500, 71.187754 ], [ -25.312500, 71.413177 ], [ -25.664062, 71.413177 ], [ -25.664062, 71.187754 ], [ -25.312500, 71.187754 ] ], [ [ -22.851562, 81.255032 ], [ -23.203125, 81.255032 ], [ -23.203125, 81.201420 ], [ -22.851562, 81.201420 ], [ -22.851562, 81.255032 ] ], [ [ -45.351562, 81.773644 ], [ -45.351562, 81.723188 ], [ -45.000000, 81.723188 ], [ -45.000000, 81.773644 ], [ -45.351562, 81.773644 ] ], [ [ -52.382812, 70.728979 ], [ -52.382812, 70.612614 ], [ -52.031250, 70.612614 ], [ -52.031250, 70.728979 ], [ -52.382812, 70.728979 ] ], [ [ -45.351562, 81.773644 ], [ -45.351562, 81.823794 ], [ -45.703125, 81.823794 ], [ -45.703125, 81.773644 ], [ -45.351562, 81.773644 ] ], [ [ -46.054688, 81.923186 ], [ -46.054688, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.923186 ], [ -46.054688, 81.923186 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.372755 ], [ -22.148438, 66.231457 ], [ -21.796875, 66.231457 ], [ -21.796875, 66.089364 ], [ -21.445312, 66.089364 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -23.906250, 65.802776 ], [ -23.906250, 66.089364 ], [ -23.554688, 66.089364 ], [ -23.554688, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.372755 ], [ -22.148438, 66.372755 ] ] ], [ [ [ -20.039062, 65.802776 ], [ -20.039062, 65.946472 ], [ -19.335938, 65.946472 ], [ -19.335938, 66.089364 ], [ -18.281250, 66.089364 ], [ -18.281250, 65.946472 ], [ -17.578125, 65.946472 ], [ -17.578125, 66.089364 ], [ -17.226562, 66.089364 ], [ -17.226562, 66.231457 ], [ -16.523438, 66.231457 ], [ -16.523438, 66.372755 ], [ -16.171875, 66.372755 ], [ -16.171875, 66.513260 ], [ -14.414062, 66.513260 ], [ -14.414062, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.802776 ], [ -20.039062, 65.802776 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.513260 ], [ -22.148438, 66.372755 ], [ -21.796875, 66.372755 ], [ -21.796875, 66.231457 ], [ -21.445312, 66.231457 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -24.257812, 65.802776 ], [ -24.257812, 66.089364 ], [ -23.906250, 66.089364 ], [ -23.906250, 66.372755 ], [ -22.851562, 66.372755 ], [ -22.851562, 66.513260 ], [ -22.148438, 66.513260 ] ] ], [ [ [ -20.039062, 65.802776 ], [ -20.039062, 66.089364 ], [ -19.687500, 66.089364 ], [ -19.687500, 66.231457 ], [ -18.632812, 66.231457 ], [ -18.632812, 66.089364 ], [ -17.578125, 66.089364 ], [ -17.578125, 66.231457 ], [ -17.226562, 66.231457 ], [ -17.226562, 66.372755 ], [ -16.523438, 66.372755 ], [ -16.523438, 66.513260 ], [ -16.171875, 66.513260 ], [ -16.171875, 66.652977 ], [ -15.820312, 66.652977 ], [ -15.820312, 66.513260 ], [ -14.765625, 66.513260 ], [ -14.765625, 65.802776 ], [ -20.039062, 65.802776 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.546875, -65.802776 ], [ 55.546875, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ], [ 56.953125, -66.089364 ], [ 56.953125, -66.231457 ], [ 57.304688, -66.231457 ], [ 57.304688, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -67.067433 ], [ 58.007812, -67.067433 ], [ 58.007812, -67.204032 ], [ 58.359375, -67.204032 ], [ 58.359375, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.474922 ], [ 60.117188, -67.474922 ], [ 60.117188, -67.742759 ], [ 60.468750, -67.742759 ], [ 60.468750, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -68.007571 ], [ 62.929688, -68.007571 ], [ 62.929688, -67.875541 ], [ 63.281250, -67.875541 ], [ 63.281250, -67.742759 ], [ 63.632812, -67.742759 ], [ 63.632812, -67.474922 ], [ 64.687500, -67.474922 ], [ 64.687500, -67.609221 ], [ 65.390625, -67.609221 ], [ 65.390625, -67.742759 ], [ 66.093750, -67.742759 ], [ 66.093750, -67.875541 ], [ 68.906250, -67.875541 ], [ 68.906250, -68.138852 ], [ 69.257812, -68.138852 ], [ 69.257812, -68.656555 ], [ 69.609375, -68.656555 ], [ 69.609375, -69.778952 ], [ 68.906250, -69.778952 ], [ 68.906250, -69.900118 ], [ 68.554688, -69.900118 ], [ 68.554688, -70.020587 ], [ 68.203125, -70.020587 ], [ 68.203125, -70.259452 ], [ 67.851562, -70.259452 ], [ 67.851562, -70.728979 ], [ 68.906250, -70.728979 ], [ 68.906250, -71.300793 ], [ 68.554688, -71.300793 ], [ 68.554688, -71.524909 ], [ 68.203125, -71.524909 ], [ 68.203125, -71.746432 ], [ 67.851562, -71.746432 ], [ 67.851562, -71.965388 ], [ 68.203125, -71.965388 ], [ 68.203125, -72.181804 ], [ 68.906250, -72.181804 ], [ 68.906250, -72.289067 ], [ 70.312500, -72.289067 ], [ 70.312500, -72.181804 ], [ 71.015625, -72.181804 ], [ 71.015625, -72.073911 ], [ 71.367188, -72.073911 ], [ 71.367188, -71.856229 ], [ 71.718750, -71.856229 ], [ 71.718750, -71.524909 ], [ 72.070312, -71.524909 ], [ 72.070312, -71.187754 ], [ 72.421875, -71.187754 ], [ 72.421875, -70.959697 ], [ 72.773438, -70.959697 ], [ 72.773438, -70.844673 ], [ 73.125000, -70.844673 ], [ 73.125000, -70.612614 ], [ 73.476562, -70.612614 ], [ 73.476562, -70.140364 ], [ 73.828125, -70.140364 ], [ 73.828125, -69.900118 ], [ 74.531250, -69.900118 ], [ 74.531250, -69.778952 ], [ 76.289062, -69.778952 ], [ 76.289062, -69.657086 ], [ 76.992188, -69.657086 ], [ 76.992188, -69.534518 ], [ 77.695312, -69.534518 ], [ 77.695312, -69.287257 ], [ 78.046875, -69.287257 ], [ 78.046875, -68.911005 ], [ 78.398438, -68.911005 ], [ 78.398438, -68.656555 ], [ 78.750000, -68.656555 ], [ 78.750000, -68.399180 ], [ 79.101562, -68.399180 ], [ 79.101562, -68.269387 ], [ 79.453125, -68.269387 ], [ 79.453125, -68.138852 ], [ 80.156250, -68.138852 ], [ 80.156250, -68.007571 ], [ 80.859375, -68.007571 ], [ 80.859375, -67.875541 ], [ 81.210938, -67.875541 ], [ 81.210938, -67.742759 ], [ 81.562500, -67.742759 ], [ 81.562500, -67.474922 ], [ 81.914062, -67.474922 ], [ 81.914062, -67.339861 ], [ 82.617188, -67.339861 ], [ 82.617188, -67.204032 ], [ 82.968750, -67.204032 ], [ 82.968750, -67.339861 ], [ 84.375000, -67.339861 ], [ 84.375000, -67.204032 ], [ 85.429688, -67.204032 ], [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.204032 ], [ 87.187500, -67.204032 ], [ 87.187500, -67.067433 ], [ 87.539062, -67.067433 ], [ 87.539062, -66.652977 ], [ 87.890625, -66.652977 ], [ 87.890625, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.054688, -71.300793 ], [ 1.054688, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -70.959697 ], [ 3.867188, -70.959697 ], [ 3.867188, -70.844673 ], [ 4.570312, -70.844673 ], [ 4.570312, -70.728979 ], [ 5.273438, -70.728979 ], [ 5.273438, -70.612614 ], [ 5.976562, -70.612614 ], [ 5.976562, -70.495574 ], [ 6.679688, -70.495574 ], [ 6.679688, -70.377854 ], [ 7.031250, -70.377854 ], [ 7.031250, -70.259452 ], [ 7.382812, -70.259452 ], [ 7.382812, -70.020587 ], [ 8.085938, -70.020587 ], [ 8.085938, -70.140364 ], [ 9.140625, -70.140364 ], [ 9.140625, -70.020587 ], [ 9.492188, -70.020587 ], [ 9.492188, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.377854 ], [ 10.195312, -70.377854 ], [ 10.195312, -70.612614 ], [ 10.546875, -70.612614 ], [ 10.546875, -70.844673 ], [ 11.250000, -70.844673 ], [ 11.250000, -70.728979 ], [ 11.953125, -70.728979 ], [ 11.953125, -70.495574 ], [ 12.304688, -70.495574 ], [ 12.304688, -70.259452 ], [ 12.656250, -70.259452 ], [ 12.656250, -70.140364 ], [ 13.359375, -70.140364 ], [ 13.359375, -70.020587 ], [ 14.765625, -70.020587 ], [ 14.765625, -70.259452 ], [ 15.117188, -70.259452 ], [ 15.117188, -70.377854 ], [ 15.468750, -70.377854 ], [ 15.468750, -70.140364 ], [ 15.820312, -70.140364 ], [ 15.820312, -70.020587 ], [ 16.523438, -70.020587 ], [ 16.523438, -69.900118 ], [ 19.687500, -69.900118 ], [ 19.687500, -70.020587 ], [ 21.445312, -70.020587 ], [ 21.445312, -70.259452 ], [ 21.796875, -70.259452 ], [ 21.796875, -70.495574 ], [ 22.148438, -70.495574 ], [ 22.148438, -70.728979 ], [ 22.851562, -70.728979 ], [ 22.851562, -70.612614 ], [ 23.554688, -70.612614 ], [ 23.554688, -70.495574 ], [ 27.773438, -70.495574 ], [ 27.773438, -70.377854 ], [ 28.828125, -70.377854 ], [ 28.828125, -70.259452 ], [ 29.531250, -70.259452 ], [ 29.531250, -70.020587 ], [ 29.882812, -70.020587 ], [ 29.882812, -69.900118 ], [ 30.585938, -69.900118 ], [ 30.585938, -69.778952 ], [ 31.640625, -69.778952 ], [ 31.640625, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -69.534518 ], [ 32.695312, -69.534518 ], [ 32.695312, -69.287257 ], [ 33.046875, -69.287257 ], [ 33.046875, -69.037142 ], [ 33.398438, -69.037142 ], [ 33.398438, -68.656555 ], [ 33.750000, -68.656555 ], [ 33.750000, -68.528235 ], [ 34.101562, -68.528235 ], [ 34.101562, -68.656555 ], [ 34.804688, -68.656555 ], [ 34.804688, -68.911005 ], [ 35.156250, -68.911005 ], [ 35.156250, -69.162558 ], [ 35.859375, -69.162558 ], [ 35.859375, -69.287257 ], [ 36.914062, -69.287257 ], [ 36.914062, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.287257 ], [ 37.617188, -69.287257 ], [ 37.617188, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.657086 ], [ 38.320312, -69.657086 ], [ 38.320312, -69.778952 ], [ 39.023438, -69.778952 ], [ 39.023438, -69.657086 ], [ 39.726562, -69.657086 ], [ 39.726562, -69.411242 ], [ 40.078125, -69.411242 ], [ 40.078125, -69.162558 ], [ 40.429688, -69.162558 ], [ 40.429688, -69.037142 ], [ 40.781250, -69.037142 ], [ 40.781250, -68.911005 ], [ 41.132812, -68.911005 ], [ 41.132812, -68.784144 ], [ 41.835938, -68.784144 ], [ 41.835938, -68.656555 ], [ 42.187500, -68.656555 ], [ 42.187500, -68.528235 ], [ 42.890625, -68.528235 ], [ 42.890625, -68.399180 ], [ 43.593750, -68.399180 ], [ 43.593750, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.138852 ], [ 45.000000, -68.138852 ], [ 45.000000, -68.007571 ], [ 45.703125, -68.007571 ], [ 45.703125, -67.875541 ], [ 46.054688, -67.875541 ], [ 46.054688, -67.742759 ], [ 46.406250, -67.742759 ], [ 46.406250, -67.609221 ], [ 46.757812, -67.609221 ], [ 46.757812, -67.742759 ], [ 47.812500, -67.742759 ], [ 47.812500, -67.609221 ], [ 48.164062, -67.609221 ], [ 48.164062, -67.474922 ], [ 48.515625, -67.474922 ], [ 48.515625, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.791909 ], [ 50.976562, -66.791909 ], [ 50.976562, -66.513260 ], [ 51.328125, -66.513260 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.382812, -66.231457 ], [ 52.382812, -66.089364 ], [ 53.437500, -66.089364 ], [ 53.437500, -65.946472 ], [ 54.140625, -65.946472 ], [ 54.140625, -65.802776 ], [ 55.546875, -65.802776 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.546875, -65.802776 ], [ 55.546875, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ], [ 56.601562, -66.089364 ], [ 56.601562, -66.231457 ], [ 56.953125, -66.231457 ], [ 56.953125, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -66.930060 ], [ 58.007812, -66.930060 ], [ 58.007812, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.204032 ], [ 59.062500, -67.204032 ], [ 59.062500, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.474922 ], [ 60.117188, -67.474922 ], [ 60.117188, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.742759 ], [ 60.820312, -67.742759 ], [ 60.820312, -67.875541 ], [ 61.523438, -67.875541 ], [ 61.523438, -68.007571 ], [ 62.578125, -68.007571 ], [ 62.578125, -67.875541 ], [ 62.929688, -67.875541 ], [ 62.929688, -67.742759 ], [ 63.281250, -67.742759 ], [ 63.281250, -67.609221 ], [ 63.632812, -67.609221 ], [ 63.632812, -67.474922 ], [ 64.335938, -67.474922 ], [ 64.335938, -67.609221 ], [ 66.093750, -67.609221 ], [ 66.093750, -67.742759 ], [ 67.148438, -67.742759 ], [ 67.148438, -67.875541 ], [ 68.554688, -67.875541 ], [ 68.554688, -68.138852 ], [ 68.906250, -68.138852 ], [ 68.906250, -68.399180 ], [ 69.257812, -68.399180 ], [ 69.257812, -68.784144 ], [ 69.609375, -68.784144 ], [ 69.609375, -69.411242 ], [ 69.257812, -69.411242 ], [ 69.257812, -69.778952 ], [ 68.906250, -69.778952 ], [ 68.906250, -69.900118 ], [ 68.554688, -69.900118 ], [ 68.554688, -70.020587 ], [ 68.203125, -70.020587 ], [ 68.203125, -70.140364 ], [ 67.851562, -70.140364 ], [ 67.851562, -70.259452 ], [ 67.500000, -70.259452 ], [ 67.500000, -70.495574 ], [ 67.851562, -70.495574 ], [ 67.851562, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -71.074056 ], [ 68.554688, -71.074056 ], [ 68.554688, -71.300793 ], [ 68.203125, -71.300793 ], [ 68.203125, -71.635993 ], [ 67.851562, -71.635993 ], [ 67.851562, -71.856229 ], [ 68.203125, -71.856229 ], [ 68.203125, -72.073911 ], [ 68.906250, -72.073911 ], [ 68.906250, -72.181804 ], [ 70.664062, -72.181804 ], [ 70.664062, -72.073911 ], [ 71.015625, -72.073911 ], [ 71.015625, -71.856229 ], [ 71.367188, -71.856229 ], [ 71.367188, -71.524909 ], [ 71.718750, -71.524909 ], [ 71.718750, -71.300793 ], [ 72.070312, -71.300793 ], [ 72.070312, -71.074056 ], [ 72.421875, -71.074056 ], [ 72.421875, -70.844673 ], [ 72.773438, -70.844673 ], [ 72.773438, -70.495574 ], [ 73.125000, -70.495574 ], [ 73.125000, -70.140364 ], [ 73.476562, -70.140364 ], [ 73.476562, -69.900118 ], [ 73.828125, -69.900118 ], [ 73.828125, -69.778952 ], [ 74.179688, -69.778952 ], [ 74.179688, -69.657086 ], [ 76.289062, -69.657086 ], [ 76.289062, -69.534518 ], [ 76.992188, -69.534518 ], [ 76.992188, -69.411242 ], [ 77.695312, -69.411242 ], [ 77.695312, -69.162558 ], [ 78.046875, -69.162558 ], [ 78.046875, -68.911005 ], [ 78.398438, -68.911005 ], [ 78.398438, -68.656555 ], [ 78.750000, -68.656555 ], [ 78.750000, -68.399180 ], [ 79.101562, -68.399180 ], [ 79.101562, -68.269387 ], [ 79.453125, -68.269387 ], [ 79.453125, -68.138852 ], [ 79.804688, -68.138852 ], [ 79.804688, -68.007571 ], [ 80.507812, -68.007571 ], [ 80.507812, -67.875541 ], [ 80.859375, -67.875541 ], [ 80.859375, -67.742759 ], [ 81.210938, -67.742759 ], [ 81.210938, -67.474922 ], [ 81.914062, -67.474922 ], [ 81.914062, -67.339861 ], [ 82.617188, -67.339861 ], [ 82.617188, -67.204032 ], [ 85.078125, -67.204032 ], [ 85.078125, -67.067433 ], [ 86.835938, -67.067433 ], [ 86.835938, -66.930060 ], [ 87.187500, -66.930060 ], [ 87.187500, -66.652977 ], [ 87.539062, -66.652977 ], [ 87.539062, -66.372755 ], [ 87.890625, -66.372755 ], [ 87.890625, -66.231457 ], [ 88.242188, -66.231457 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.648438, -67.067433 ], [ 89.648438, -67.204032 ], [ 91.054688, -67.204032 ], [ 91.054688, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.074056 ], [ -1.406250, -71.074056 ], [ -1.406250, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.054688, -71.300793 ], [ 1.054688, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -71.074056 ], [ 2.460938, -71.074056 ], [ 2.460938, -70.959697 ], [ 3.515625, -70.959697 ], [ 3.515625, -70.844673 ], [ 4.218750, -70.844673 ], [ 4.218750, -70.728979 ], [ 4.921875, -70.728979 ], [ 4.921875, -70.612614 ], [ 5.273438, -70.612614 ], [ 5.273438, -70.495574 ], [ 5.976562, -70.495574 ], [ 5.976562, -70.377854 ], [ 6.328125, -70.377854 ], [ 6.328125, -70.259452 ], [ 7.031250, -70.259452 ], [ 7.031250, -70.140364 ], [ 7.382812, -70.140364 ], [ 7.382812, -69.900118 ], [ 8.085938, -69.900118 ], [ 8.085938, -70.140364 ], [ 8.789062, -70.140364 ], [ 8.789062, -70.020587 ], [ 9.843750, -70.020587 ], [ 9.843750, -70.259452 ], [ 10.195312, -70.259452 ], [ 10.195312, -70.612614 ], [ 10.546875, -70.612614 ], [ 10.546875, -70.728979 ], [ 11.601562, -70.728979 ], [ 11.601562, -70.612614 ], [ 11.953125, -70.612614 ], [ 11.953125, -70.377854 ], [ 12.304688, -70.377854 ], [ 12.304688, -70.140364 ], [ 12.656250, -70.140364 ], [ 12.656250, -70.020587 ], [ 13.359375, -70.020587 ], [ 13.359375, -69.900118 ], [ 13.710938, -69.900118 ], [ 13.710938, -70.020587 ], [ 14.414062, -70.020587 ], [ 14.414062, -70.140364 ], [ 14.765625, -70.140364 ], [ 14.765625, -70.377854 ], [ 15.468750, -70.377854 ], [ 15.468750, -70.140364 ], [ 15.820312, -70.140364 ], [ 15.820312, -70.020587 ], [ 16.523438, -70.020587 ], [ 16.523438, -69.900118 ], [ 17.578125, -69.900118 ], [ 17.578125, -69.778952 ], [ 19.335938, -69.778952 ], [ 19.335938, -69.900118 ], [ 20.390625, -69.900118 ], [ 20.390625, -70.020587 ], [ 21.445312, -70.020587 ], [ 21.445312, -70.259452 ], [ 21.796875, -70.259452 ], [ 21.796875, -70.495574 ], [ 22.148438, -70.495574 ], [ 22.148438, -70.612614 ], [ 23.203125, -70.612614 ], [ 23.203125, -70.495574 ], [ 24.257812, -70.495574 ], [ 24.257812, -70.377854 ], [ 27.773438, -70.377854 ], [ 27.773438, -70.259452 ], [ 28.476562, -70.259452 ], [ 28.476562, -70.140364 ], [ 29.179688, -70.140364 ], [ 29.179688, -70.020587 ], [ 29.882812, -70.020587 ], [ 29.882812, -69.900118 ], [ 30.234375, -69.900118 ], [ 30.234375, -69.778952 ], [ 30.937500, -69.778952 ], [ 30.937500, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -69.411242 ], [ 32.695312, -69.411242 ], [ 32.695312, -69.037142 ], [ 33.046875, -69.037142 ], [ 33.046875, -68.784144 ], [ 33.398438, -68.784144 ], [ 33.398438, -68.528235 ], [ 34.453125, -68.528235 ], [ 34.453125, -68.656555 ], [ 34.804688, -68.656555 ], [ 34.804688, -68.784144 ], [ 35.156250, -68.784144 ], [ 35.156250, -69.037142 ], [ 35.507812, -69.037142 ], [ 35.507812, -69.162558 ], [ 36.914062, -69.162558 ], [ 36.914062, -69.287257 ], [ 37.265625, -69.287257 ], [ 37.265625, -69.411242 ], [ 37.617188, -69.411242 ], [ 37.617188, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.657086 ], [ 39.023438, -69.657086 ], [ 39.023438, -69.534518 ], [ 39.375000, -69.534518 ], [ 39.375000, -69.287257 ], [ 39.726562, -69.287257 ], [ 39.726562, -69.037142 ], [ 40.429688, -69.037142 ], [ 40.429688, -68.911005 ], [ 41.132812, -68.911005 ], [ 41.132812, -68.784144 ], [ 41.484375, -68.784144 ], [ 41.484375, -68.656555 ], [ 41.835938, -68.656555 ], [ 41.835938, -68.528235 ], [ 42.539062, -68.528235 ], [ 42.539062, -68.399180 ], [ 43.242188, -68.399180 ], [ 43.242188, -68.269387 ], [ 43.945312, -68.269387 ], [ 43.945312, -68.138852 ], [ 44.648438, -68.138852 ], [ 44.648438, -68.007571 ], [ 45.000000, -68.007571 ], [ 45.000000, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.742759 ], [ 46.054688, -67.742759 ], [ 46.054688, -67.609221 ], [ 47.460938, -67.609221 ], [ 47.460938, -67.474922 ], [ 48.164062, -67.474922 ], [ 48.164062, -67.339861 ], [ 48.515625, -67.339861 ], [ 48.515625, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.273438, -67.067433 ], [ 50.273438, -66.930060 ], [ 50.625000, -66.930060 ], [ 50.625000, -66.513260 ], [ 50.976562, -66.513260 ], [ 50.976562, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -66.089364 ], [ 52.382812, -66.089364 ], [ 52.382812, -65.946472 ], [ 53.085938, -65.946472 ], [ 53.085938, -65.802776 ], [ 55.546875, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, -65.802776 ], [ 54.843750, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ], [ 56.953125, -66.089364 ], [ 56.953125, -66.231457 ], [ 57.304688, -66.231457 ], [ 57.304688, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -67.067433 ], [ 58.007812, -67.067433 ], [ 58.007812, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.791909 ], [ 50.976562, -66.791909 ], [ 50.976562, -66.513260 ], [ 51.328125, -66.513260 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.382812, -66.231457 ], [ 52.382812, -66.089364 ], [ 53.437500, -66.089364 ], [ 53.437500, -65.946472 ], [ 54.140625, -65.946472 ], [ 54.140625, -65.802776 ], [ 54.843750, -65.802776 ] ] ], [ [ [ 85.429688, -67.204032 ], [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.204032 ], [ 85.429688, -67.204032 ] ] ], [ [ [ 87.187500, -67.204032 ], [ 87.187500, -67.067433 ], [ 87.539062, -67.067433 ], [ 87.539062, -66.652977 ], [ 87.890625, -66.652977 ], [ 87.890625, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 87.187500, -67.204032 ] ] ], [ [ [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.546875, -65.802776 ], [ 55.546875, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ], [ 56.601562, -66.089364 ], [ 56.601562, -66.231457 ], [ 56.953125, -66.231457 ], [ 56.953125, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -66.930060 ], [ 58.007812, -66.930060 ], [ 58.007812, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.273438, -67.067433 ], [ 50.273438, -66.930060 ], [ 50.625000, -66.930060 ], [ 50.625000, -66.513260 ], [ 50.976562, -66.513260 ], [ 50.976562, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -66.089364 ], [ 52.382812, -66.089364 ], [ 52.382812, -65.946472 ], [ 53.085938, -65.946472 ], [ 53.085938, -65.802776 ], [ 55.546875, -65.802776 ] ] ], [ [ [ 85.078125, -67.204032 ], [ 85.078125, -67.067433 ], [ 86.835938, -67.067433 ], [ 86.835938, -66.930060 ], [ 87.187500, -66.930060 ], [ 87.187500, -66.652977 ], [ 87.539062, -66.652977 ], [ 87.539062, -66.372755 ], [ 87.890625, -66.372755 ], [ 87.890625, -66.231457 ], [ 88.242188, -66.231457 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.648438, -67.067433 ], [ 89.648438, -67.204032 ], [ 85.078125, -67.204032 ] ] ], [ [ [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.757537 ], [ 11.250000, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.757537 ], [ 11.250000, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.757537 ], [ 11.250000, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.757537 ], [ 11.250000, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.804688, 1.757537 ], [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 34.804688, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.804688, 1.757537 ], [ 34.804688, 1.406109 ], [ 34.453125, 1.406109 ], [ 34.453125, 1.054628 ], [ 34.101562, 1.054628 ], [ 34.101562, 0.351560 ], [ 33.750000, 0.351560 ], [ 33.750000, -0.703107 ], [ 30.585938, -0.703107 ], [ 30.585938, -1.054628 ], [ 30.234375, -1.054628 ], [ 30.234375, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.054628 ], [ 29.882812, 1.054628 ], [ 29.882812, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 1.757537 ], [ 34.804688, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.132812, 1.757537 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.460181 ], [ 40.429688, -2.460181 ], [ 40.429688, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.513421 ], [ 39.726562, -3.513421 ], [ 39.726562, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -4.214943 ], [ 38.320312, -4.214943 ], [ 38.320312, -3.864255 ], [ 37.617188, -3.864255 ], [ 37.617188, -3.162456 ], [ 37.265625, -3.162456 ], [ 37.265625, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.460181 ], [ 35.859375, -2.460181 ], [ 35.859375, -2.108899 ], [ 35.507812, -2.108899 ], [ 35.507812, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.000000 ], [ 34.101562, 0.000000 ], [ 34.101562, 0.351560 ], [ 34.453125, 0.351560 ], [ 34.453125, 0.703107 ], [ 34.804688, 0.703107 ], [ 34.804688, 1.757537 ], [ 41.132812, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 1.757537 ], [ 40.781250, -1.054628 ], [ 41.132812, -1.054628 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -1.757537 ], [ 40.781250, -1.757537 ], [ 40.781250, -2.108899 ], [ 40.429688, -2.108899 ], [ 40.429688, -2.460181 ], [ 40.078125, -2.460181 ], [ 40.078125, -3.513421 ], [ 39.726562, -3.513421 ], [ 39.726562, -3.864255 ], [ 39.375000, -3.864255 ], [ 39.375000, -4.565474 ], [ 38.671875, -4.565474 ], [ 38.671875, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -3.864255 ], [ 37.617188, -3.864255 ], [ 37.617188, -2.811371 ], [ 36.914062, -2.811371 ], [ 36.914062, -2.460181 ], [ 36.210938, -2.460181 ], [ 36.210938, -2.108899 ], [ 35.507812, -2.108899 ], [ 35.507812, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 1.054628 ], [ 34.453125, 1.054628 ], [ 34.453125, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 1.757537 ], [ 40.781250, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.351560 ], [ 43.242188, 0.351560 ], [ 43.242188, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.351560 ], [ 42.539062, -0.351560 ], [ 42.539062, -1.054628 ], [ 42.187500, -1.054628 ], [ 42.187500, -1.406109 ], [ 41.835938, -1.406109 ], [ 41.835938, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, 1.757537 ], [ 45.000000, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.242188, 0.703107 ], [ 43.242188, 0.351560 ], [ 42.890625, 0.351560 ], [ 42.890625, 0.000000 ], [ 42.539062, 0.000000 ], [ 42.539062, -0.351560 ], [ 42.187500, -0.351560 ], [ 42.187500, -0.703107 ], [ 41.835938, -0.703107 ], [ 41.835938, -1.054628 ], [ 41.484375, -1.054628 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, -1.054628 ], [ 40.781250, -1.054628 ], [ 40.781250, 1.757537 ], [ 45.000000, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 1.757537 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.054628 ], [ 14.414062, 1.054628 ], [ 14.414062, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, -0.351560 ], [ 14.062500, -0.351560 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -2.460181 ], [ 11.953125, -2.460181 ], [ 11.953125, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -3.162456 ], [ 11.953125, -3.162456 ], [ 11.953125, -3.864255 ], [ 10.898438, -3.864255 ], [ 10.898438, -3.513421 ], [ 10.546875, -3.513421 ], [ 10.546875, -3.162456 ], [ 10.195312, -3.162456 ], [ 10.195312, -2.811371 ], [ 9.843750, -2.811371 ], [ 9.843750, -2.460181 ], [ 9.492188, -2.460181 ], [ 9.492188, -2.108899 ], [ 9.140625, -2.108899 ], [ 9.140625, -1.406109 ], [ 8.789062, -1.406109 ], [ 8.789062, -0.703107 ], [ 9.140625, -0.703107 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 1.757537 ], [ 13.007812, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 1.757537 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 0.703107 ], [ 13.710938, 0.703107 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, -2.108899 ], [ 13.710938, -2.108899 ], [ 13.710938, -2.460181 ], [ 13.007812, -2.460181 ], [ 13.007812, -2.108899 ], [ 12.304688, -2.108899 ], [ 12.304688, -2.460181 ], [ 11.250000, -2.460181 ], [ 11.250000, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -3.864255 ], [ 10.546875, -3.864255 ], [ 10.546875, -3.513421 ], [ 10.195312, -3.513421 ], [ 10.195312, -3.162456 ], [ 9.843750, -3.162456 ], [ 9.843750, -2.811371 ], [ 9.492188, -2.811371 ], [ 9.492188, -2.460181 ], [ 9.140625, -2.460181 ], [ 9.140625, -1.757537 ], [ 8.789062, -1.757537 ], [ 8.789062, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 1.757537 ], [ 13.007812, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.929688, 1.757537 ], [ 17.929688, 0.000000 ], [ 17.578125, 0.000000 ], [ 17.578125, -1.054628 ], [ 16.875000, -1.054628 ], [ 16.875000, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -2.811371 ], [ 15.820312, -2.811371 ], [ 15.820312, -3.162456 ], [ 16.171875, -3.162456 ], [ 16.171875, -3.864255 ], [ 15.820312, -3.864255 ], [ 15.820312, -4.214943 ], [ 15.117188, -4.214943 ], [ 15.117188, -4.565474 ], [ 14.765625, -4.565474 ], [ 14.765625, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.565474 ], [ 13.710938, -4.565474 ], [ 13.710938, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.915833 ], [ 11.601562, -4.915833 ], [ 11.601562, -4.214943 ], [ 11.250000, -4.214943 ], [ 11.250000, -3.864255 ], [ 11.953125, -3.864255 ], [ 11.953125, -3.162456 ], [ 11.601562, -3.162456 ], [ 11.601562, -2.811371 ], [ 11.953125, -2.811371 ], [ 11.953125, -2.460181 ], [ 14.414062, -2.460181 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, -0.351560 ], [ 13.710938, -0.351560 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, 0.703107 ], [ 14.414062, 0.703107 ], [ 14.414062, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 1.757537 ], [ 17.929688, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 1.757537 ], [ 17.578125, -0.703107 ], [ 17.226562, -0.703107 ], [ 17.226562, -1.054628 ], [ 16.523438, -1.054628 ], [ 16.523438, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -2.108899 ], [ 15.820312, -2.108899 ], [ 15.820312, -3.513421 ], [ 15.468750, -3.513421 ], [ 15.468750, -3.864255 ], [ 15.117188, -3.864255 ], [ 15.117188, -4.565474 ], [ 14.765625, -4.565474 ], [ 14.765625, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.214943 ], [ 13.359375, -4.214943 ], [ 13.359375, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.915833 ], [ 11.250000, -4.915833 ], [ 11.250000, -4.214943 ], [ 10.898438, -4.214943 ], [ 10.898438, -3.864255 ], [ 11.250000, -3.864255 ], [ 11.250000, -3.513421 ], [ 11.601562, -3.513421 ], [ 11.601562, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -2.460181 ], [ 12.304688, -2.460181 ], [ 12.304688, -2.108899 ], [ 13.007812, -2.108899 ], [ 13.007812, -2.460181 ], [ 13.710938, -2.460181 ], [ 13.710938, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -1.406109 ], [ 14.414062, -1.406109 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 1.757537 ], [ 17.578125, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, 1.757537 ], [ 30.585938, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.703107 ], [ 29.531250, -0.703107 ], [ 29.531250, -1.757537 ], [ 29.179688, -1.757537 ], [ 29.179688, -4.915833 ], [ 29.531250, -4.915833 ], [ 29.531250, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.710992 ], [ 30.585938, -7.710992 ], [ 30.585938, -8.407168 ], [ 28.828125, -8.407168 ], [ 28.828125, -8.754795 ], [ 28.476562, -8.754795 ], [ 28.476562, -9.449062 ], [ 28.828125, -9.449062 ], [ 28.828125, -10.141932 ], [ 28.476562, -10.141932 ], [ 28.476562, -12.211180 ], [ 29.531250, -12.211180 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.897489 ], [ 28.476562, -12.897489 ], [ 28.476562, -12.554564 ], [ 28.125000, -12.554564 ], [ 28.125000, -12.211180 ], [ 27.421875, -12.211180 ], [ 27.421875, -11.867351 ], [ 25.664062, -11.867351 ], [ 25.664062, -11.523088 ], [ 25.312500, -11.523088 ], [ 25.312500, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -10.833306 ], [ 23.554688, -10.833306 ], [ 23.554688, -11.178402 ], [ 22.148438, -11.178402 ], [ 22.148438, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -7.362467 ], [ 20.742188, -7.362467 ], [ 20.742188, -7.013668 ], [ 19.335938, -7.013668 ], [ 19.335938, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 16.875000, -7.710992 ], [ 16.875000, -7.013668 ], [ 16.523438, -7.013668 ], [ 16.523438, -6.315299 ], [ 16.171875, -6.315299 ], [ 16.171875, -5.965754 ], [ 12.304688, -5.965754 ], [ 12.304688, -5.266008 ], [ 12.656250, -5.266008 ], [ 12.656250, -4.915833 ], [ 13.710938, -4.915833 ], [ 13.710938, -4.565474 ], [ 14.062500, -4.565474 ], [ 14.062500, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.565474 ], [ 15.117188, -4.565474 ], [ 15.117188, -4.214943 ], [ 15.820312, -4.214943 ], [ 15.820312, -3.864255 ], [ 16.171875, -3.864255 ], [ 16.171875, -3.162456 ], [ 15.820312, -3.162456 ], [ 15.820312, -2.811371 ], [ 16.171875, -2.811371 ], [ 16.171875, -2.108899 ], [ 16.523438, -2.108899 ], [ 16.523438, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.054628 ], [ 17.578125, -1.054628 ], [ 17.578125, 0.000000 ], [ 17.929688, 0.000000 ], [ 17.929688, 1.757537 ], [ 30.585938, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, 1.757537 ], [ 30.234375, 1.406109 ], [ 29.882812, 1.406109 ], [ 29.882812, 1.054628 ], [ 29.531250, 1.054628 ], [ 29.531250, -1.406109 ], [ 29.179688, -1.406109 ], [ 29.179688, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.162456 ], [ 29.179688, -3.162456 ], [ 29.179688, -5.965754 ], [ 29.531250, -5.965754 ], [ 29.531250, -6.664608 ], [ 29.882812, -6.664608 ], [ 29.882812, -7.362467 ], [ 30.234375, -7.362467 ], [ 30.234375, -8.059230 ], [ 29.882812, -8.059230 ], [ 29.882812, -8.407168 ], [ 28.476562, -8.407168 ], [ 28.476562, -8.754795 ], [ 28.125000, -8.754795 ], [ 28.125000, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -11.178402 ], [ 28.125000, -11.178402 ], [ 28.125000, -11.867351 ], [ 28.476562, -11.867351 ], [ 28.476562, -12.211180 ], [ 29.531250, -12.211180 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.897489 ], [ 28.476562, -12.897489 ], [ 28.476562, -12.554564 ], [ 28.125000, -12.554564 ], [ 28.125000, -12.211180 ], [ 27.421875, -12.211180 ], [ 27.421875, -11.867351 ], [ 25.664062, -11.867351 ], [ 25.664062, -11.523088 ], [ 25.312500, -11.523088 ], [ 25.312500, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -10.833306 ], [ 22.148438, -10.833306 ], [ 22.148438, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -8.059230 ], [ 21.445312, -8.059230 ], [ 21.445312, -7.013668 ], [ 20.390625, -7.013668 ], [ 20.390625, -6.664608 ], [ 20.039062, -6.664608 ], [ 20.039062, -7.013668 ], [ 19.335938, -7.013668 ], [ 19.335938, -7.362467 ], [ 18.984375, -7.362467 ], [ 18.984375, -7.710992 ], [ 17.929688, -7.710992 ], [ 17.929688, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 16.875000, -7.710992 ], [ 16.875000, -7.362467 ], [ 16.523438, -7.362467 ], [ 16.523438, -5.965754 ], [ 16.171875, -5.965754 ], [ 16.171875, -5.615986 ], [ 13.359375, -5.615986 ], [ 13.359375, -5.965754 ], [ 11.953125, -5.965754 ], [ 11.953125, -5.615986 ], [ 12.304688, -5.615986 ], [ 12.304688, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -4.565474 ], [ 13.359375, -4.565474 ], [ 13.359375, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.565474 ], [ 15.117188, -4.565474 ], [ 15.117188, -3.864255 ], [ 15.468750, -3.864255 ], [ 15.468750, -3.513421 ], [ 15.820312, -3.513421 ], [ 15.820312, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -1.054628 ], [ 17.226562, -1.054628 ], [ 17.226562, -0.703107 ], [ 17.578125, -0.703107 ], [ 17.578125, 1.757537 ], [ 30.234375, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, -5.965754 ], [ 16.171875, -6.315299 ], [ 16.523438, -6.315299 ], [ 16.523438, -7.013668 ], [ 16.875000, -7.013668 ], [ 16.875000, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 19.335938, -8.059230 ], [ 19.335938, -7.013668 ], [ 20.742188, -7.013668 ], [ 20.742188, -7.362467 ], [ 21.796875, -7.362467 ], [ 21.796875, -9.795678 ], [ 22.148438, -9.795678 ], [ 22.148438, -11.178402 ], [ 23.554688, -11.178402 ], [ 23.554688, -10.833306 ], [ 23.906250, -10.833306 ], [ 23.906250, -12.897489 ], [ 21.796875, -12.897489 ], [ 21.796875, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -17.308688 ], [ 22.851562, -17.308688 ], [ 22.851562, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.978733 ], [ 20.039062, -17.978733 ], [ 20.039062, -17.644022 ], [ 18.281250, -17.644022 ], [ 18.281250, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.972741 ], [ 12.304688, -16.972741 ], [ 12.304688, -17.308688 ], [ 11.601562, -17.308688 ], [ 11.601562, -16.299051 ], [ 11.953125, -16.299051 ], [ 11.953125, -14.944785 ], [ 12.304688, -14.944785 ], [ 12.304688, -14.264383 ], [ 12.656250, -14.264383 ], [ 12.656250, -13.239945 ], [ 13.007812, -13.239945 ], [ 13.007812, -12.897489 ], [ 13.359375, -12.897489 ], [ 13.359375, -12.211180 ], [ 13.710938, -12.211180 ], [ 13.710938, -10.833306 ], [ 13.359375, -10.833306 ], [ 13.359375, -10.141932 ], [ 13.007812, -10.141932 ], [ 13.007812, -8.754795 ], [ 13.359375, -8.754795 ], [ 13.359375, -8.059230 ], [ 13.007812, -8.059230 ], [ 13.007812, -7.362467 ], [ 12.656250, -7.362467 ], [ 12.656250, -6.664608 ], [ 12.304688, -6.664608 ], [ 12.304688, -5.965754 ], [ 16.171875, -5.965754 ] ] ], [ [ [ 12.656250, -4.565474 ], [ 12.656250, -5.266008 ], [ 11.953125, -5.266008 ], [ 11.953125, -4.915833 ], [ 12.304688, -4.915833 ], [ 12.304688, -4.565474 ], [ 12.656250, -4.565474 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, -5.615986 ], [ 16.171875, -5.965754 ], [ 16.523438, -5.965754 ], [ 16.523438, -7.362467 ], [ 16.875000, -7.362467 ], [ 16.875000, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 17.929688, -8.059230 ], [ 17.929688, -7.710992 ], [ 18.984375, -7.710992 ], [ 18.984375, -7.362467 ], [ 19.335938, -7.362467 ], [ 19.335938, -7.013668 ], [ 20.039062, -7.013668 ], [ 20.039062, -6.664608 ], [ 20.390625, -6.664608 ], [ 20.390625, -7.013668 ], [ 21.445312, -7.013668 ], [ 21.445312, -8.059230 ], [ 21.796875, -8.059230 ], [ 21.796875, -9.795678 ], [ 22.148438, -9.795678 ], [ 22.148438, -10.833306 ], [ 23.906250, -10.833306 ], [ 23.906250, -12.897489 ], [ 21.796875, -12.897489 ], [ 21.796875, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.636192 ], [ 22.500000, -16.636192 ], [ 22.500000, -16.972741 ], [ 22.851562, -16.972741 ], [ 22.851562, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -17.644022 ], [ 17.929688, -17.644022 ], [ 17.929688, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.972741 ], [ 11.601562, -16.972741 ], [ 11.601562, -15.284185 ], [ 11.953125, -15.284185 ], [ 11.953125, -13.923404 ], [ 12.304688, -13.923404 ], [ 12.304688, -13.239945 ], [ 12.656250, -13.239945 ], [ 12.656250, -12.554564 ], [ 13.007812, -12.554564 ], [ 13.007812, -12.211180 ], [ 13.359375, -12.211180 ], [ 13.359375, -11.523088 ], [ 13.710938, -11.523088 ], [ 13.710938, -10.833306 ], [ 13.359375, -10.833306 ], [ 13.359375, -9.795678 ], [ 13.007812, -9.795678 ], [ 13.007812, -9.449062 ], [ 12.656250, -9.449062 ], [ 12.656250, -8.754795 ], [ 13.007812, -8.754795 ], [ 13.007812, -8.059230 ], [ 12.656250, -8.059230 ], [ 12.656250, -6.664608 ], [ 12.304688, -6.664608 ], [ 12.304688, -6.315299 ], [ 11.953125, -6.315299 ], [ 11.953125, -5.965754 ], [ 13.359375, -5.965754 ], [ 13.359375, -5.615986 ], [ 16.171875, -5.615986 ] ] ], [ [ [ 12.304688, -4.915833 ], [ 12.304688, -5.615986 ], [ 11.953125, -5.615986 ], [ 11.953125, -5.266008 ], [ 11.601562, -5.266008 ], [ 11.601562, -4.915833 ], [ 12.304688, -4.915833 ] ] ], [ [ [ 12.656250, -4.915833 ], [ 12.304688, -4.915833 ], [ 12.304688, -4.565474 ], [ 12.656250, -4.565474 ], [ 12.656250, -4.915833 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, -16.972741 ], [ 13.359375, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.644022 ], [ 20.039062, -17.644022 ], [ 20.039062, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -17.644022 ], [ 23.906250, -17.644022 ], [ 23.906250, -17.308688 ], [ 24.609375, -17.308688 ], [ 24.609375, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.978733 ], [ 24.257812, -17.978733 ], [ 24.257812, -18.312811 ], [ 23.203125, -18.312811 ], [ 23.203125, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -18.312811 ], [ 20.742188, -18.312811 ], [ 20.742188, -21.943046 ], [ 20.039062, -21.943046 ], [ 20.039062, -28.613459 ], [ 19.687500, -28.613459 ], [ 19.687500, -28.921631 ], [ 17.226562, -28.921631 ], [ 17.226562, -28.304381 ], [ 16.523438, -28.304381 ], [ 16.523438, -28.613459 ], [ 15.820312, -28.613459 ], [ 15.820312, -27.994401 ], [ 15.468750, -27.994401 ], [ 15.468750, -27.371767 ], [ 15.117188, -27.371767 ], [ 15.117188, -25.799891 ], [ 14.765625, -25.799891 ], [ 14.765625, -24.846565 ], [ 14.414062, -24.846565 ], [ 14.414062, -22.268764 ], [ 14.062500, -22.268764 ], [ 14.062500, -21.943046 ], [ 13.710938, -21.943046 ], [ 13.710938, -21.289374 ], [ 13.359375, -21.289374 ], [ 13.359375, -20.632784 ], [ 13.007812, -20.632784 ], [ 13.007812, -19.973349 ], [ 12.656250, -19.973349 ], [ 12.656250, -18.979026 ], [ 12.304688, -18.979026 ], [ 12.304688, -18.312811 ], [ 11.953125, -18.312811 ], [ 11.953125, -17.644022 ], [ 11.601562, -17.644022 ], [ 11.601562, -17.308688 ], [ 12.304688, -17.308688 ], [ 12.304688, -16.972741 ], [ 13.359375, -16.972741 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.359375, -16.972741 ], [ 13.359375, -17.308688 ], [ 17.929688, -17.308688 ], [ 17.929688, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.978733 ], [ 20.742188, -17.978733 ], [ 20.742188, -21.616579 ], [ 19.687500, -21.616579 ], [ 19.687500, -28.613459 ], [ 19.335938, -28.613459 ], [ 19.335938, -28.921631 ], [ 17.578125, -28.921631 ], [ 17.578125, -28.613459 ], [ 16.875000, -28.613459 ], [ 16.875000, -28.304381 ], [ 15.820312, -28.304381 ], [ 15.820312, -27.994401 ], [ 15.468750, -27.994401 ], [ 15.468750, -27.371767 ], [ 15.117188, -27.371767 ], [ 15.117188, -26.745610 ], [ 14.765625, -26.745610 ], [ 14.765625, -25.799891 ], [ 14.414062, -25.799891 ], [ 14.414062, -24.527135 ], [ 14.062500, -24.527135 ], [ 14.062500, -21.943046 ], [ 13.710938, -21.943046 ], [ 13.710938, -21.616579 ], [ 13.359375, -21.616579 ], [ 13.359375, -20.961440 ], [ 13.007812, -20.961440 ], [ 13.007812, -20.303418 ], [ 12.656250, -20.303418 ], [ 12.656250, -19.311143 ], [ 12.304688, -19.311143 ], [ 12.304688, -18.979026 ], [ 11.953125, -18.979026 ], [ 11.953125, -18.312811 ], [ 11.601562, -18.312811 ], [ 11.601562, -16.972741 ], [ 13.359375, -16.972741 ] ] ], [ [ [ 24.960938, -17.308688 ], [ 24.960938, -17.644022 ], [ 23.906250, -17.644022 ], [ 23.906250, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.308688 ], [ 24.960938, -17.308688 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ], [ 30.585938, -2.108899 ], [ 30.585938, -2.460181 ], [ 29.882812, -2.460181 ], [ 29.882812, -2.811371 ], [ 29.179688, -2.811371 ], [ 29.179688, -1.757537 ], [ 29.531250, -1.757537 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -1.406109 ], [ 30.585938, -2.108899 ], [ 29.882812, -2.108899 ], [ 29.882812, -2.460181 ], [ 29.531250, -2.460181 ], [ 29.531250, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -2.108899 ], [ 29.179688, -2.108899 ], [ 29.179688, -1.406109 ], [ 30.585938, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -2.460181 ], [ 30.585938, -3.864255 ], [ 30.234375, -3.864255 ], [ 30.234375, -4.565474 ], [ 29.179688, -4.565474 ], [ 29.179688, -2.811371 ], [ 29.882812, -2.811371 ], [ 29.882812, -2.460181 ], [ 30.585938, -2.460181 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -2.108899 ], [ 30.234375, -2.811371 ], [ 30.585938, -2.811371 ], [ 30.585938, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -3.864255 ], [ 29.882812, -3.864255 ], [ 29.882812, -4.214943 ], [ 29.179688, -4.214943 ], [ 29.179688, -3.162456 ], [ 28.828125, -3.162456 ], [ 28.828125, -2.811371 ], [ 29.531250, -2.811371 ], [ 29.531250, -2.460181 ], [ 29.882812, -2.460181 ], [ 29.882812, -2.108899 ], [ 30.234375, -2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -8.407168 ], [ 30.585938, -8.754795 ], [ 31.640625, -8.754795 ], [ 31.640625, -9.102097 ], [ 32.695312, -9.102097 ], [ 32.695312, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.795678 ], [ 33.398438, -9.795678 ], [ 33.398438, -11.178402 ], [ 33.046875, -11.178402 ], [ 33.046875, -12.211180 ], [ 33.398438, -12.211180 ], [ 33.398438, -12.897489 ], [ 33.046875, -12.897489 ], [ 33.046875, -13.239945 ], [ 32.695312, -13.239945 ], [ 32.695312, -14.264383 ], [ 31.992188, -14.264383 ], [ 31.992188, -14.604847 ], [ 30.937500, -14.604847 ], [ 30.937500, -14.944785 ], [ 30.234375, -14.944785 ], [ 30.234375, -15.623037 ], [ 29.531250, -15.623037 ], [ 29.531250, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.636192 ], [ 28.476562, -16.636192 ], [ 28.476562, -16.972741 ], [ 28.125000, -16.972741 ], [ 28.125000, -17.308688 ], [ 27.773438, -17.308688 ], [ 27.773438, -17.644022 ], [ 27.421875, -17.644022 ], [ 27.421875, -17.978733 ], [ 25.664062, -17.978733 ], [ 25.664062, -17.644022 ], [ 24.609375, -17.644022 ], [ 24.609375, -17.308688 ], [ 23.906250, -17.308688 ], [ 23.906250, -17.644022 ], [ 22.851562, -17.644022 ], [ 22.851562, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.972741 ], [ 22.148438, -16.972741 ], [ 22.148438, -16.299051 ], [ 21.796875, -16.299051 ], [ 21.796875, -12.897489 ], [ 23.906250, -12.897489 ], [ 23.906250, -10.833306 ], [ 24.257812, -10.833306 ], [ 24.257812, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.523088 ], [ 25.664062, -11.523088 ], [ 25.664062, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.554564 ], [ 28.476562, -12.554564 ], [ 28.476562, -12.897489 ], [ 28.828125, -12.897489 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.211180 ], [ 28.476562, -12.211180 ], [ 28.476562, -10.141932 ], [ 28.828125, -10.141932 ], [ 28.828125, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -8.754795 ], [ 28.828125, -8.754795 ], [ 28.828125, -8.407168 ], [ 30.585938, -8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -8.059230 ], [ 30.585938, -8.407168 ], [ 30.937500, -8.407168 ], [ 30.937500, -8.754795 ], [ 31.992188, -8.754795 ], [ 31.992188, -9.102097 ], [ 32.695312, -9.102097 ], [ 32.695312, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -10.141932 ], [ 33.398438, -10.141932 ], [ 33.398438, -10.487812 ], [ 33.046875, -10.487812 ], [ 33.046875, -12.554564 ], [ 32.695312, -12.554564 ], [ 32.695312, -13.239945 ], [ 32.343750, -13.239945 ], [ 32.343750, -14.264383 ], [ 30.937500, -14.264383 ], [ 30.937500, -14.604847 ], [ 29.882812, -14.604847 ], [ 29.882812, -14.944785 ], [ 30.234375, -14.944785 ], [ 30.234375, -15.284185 ], [ 29.882812, -15.284185 ], [ 29.882812, -15.623037 ], [ 29.179688, -15.623037 ], [ 29.179688, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.299051 ], [ 28.125000, -16.299051 ], [ 28.125000, -16.636192 ], [ 27.773438, -16.636192 ], [ 27.773438, -16.972741 ], [ 27.421875, -16.972741 ], [ 27.421875, -17.308688 ], [ 27.070312, -17.308688 ], [ 27.070312, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.308688 ], [ 22.851562, -17.308688 ], [ 22.851562, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -16.636192 ], [ 22.148438, -16.636192 ], [ 22.148438, -16.299051 ], [ 21.796875, -16.299051 ], [ 21.796875, -12.897489 ], [ 23.906250, -12.897489 ], [ 23.906250, -10.833306 ], [ 24.257812, -10.833306 ], [ 24.257812, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.523088 ], [ 25.664062, -11.523088 ], [ 25.664062, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.554564 ], [ 28.476562, -12.554564 ], [ 28.476562, -12.897489 ], [ 28.828125, -12.897489 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.211180 ], [ 28.476562, -12.211180 ], [ 28.476562, -11.867351 ], [ 28.125000, -11.867351 ], [ 28.125000, -11.178402 ], [ 28.476562, -11.178402 ], [ 28.476562, -9.449062 ], [ 28.125000, -9.449062 ], [ 28.125000, -8.754795 ], [ 28.476562, -8.754795 ], [ 28.476562, -8.407168 ], [ 29.882812, -8.407168 ], [ 29.882812, -8.059230 ], [ 30.585938, -8.059230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.623037 ], [ 30.234375, -15.961329 ], [ 31.640625, -15.961329 ], [ 31.640625, -16.299051 ], [ 32.343750, -16.299051 ], [ 32.343750, -16.636192 ], [ 32.695312, -16.636192 ], [ 32.695312, -20.303418 ], [ 32.343750, -20.303418 ], [ 32.343750, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.992188, -21.616579 ], [ 31.640625, -21.616579 ], [ 31.640625, -22.268764 ], [ 29.882812, -22.268764 ], [ 29.882812, -21.943046 ], [ 28.828125, -21.943046 ], [ 28.828125, -21.616579 ], [ 28.125000, -21.616579 ], [ 28.125000, -21.289374 ], [ 27.773438, -21.289374 ], [ 27.773438, -20.632784 ], [ 27.421875, -20.632784 ], [ 27.421875, -20.303418 ], [ 27.070312, -20.303418 ], [ 27.070312, -19.973349 ], [ 26.367188, -19.973349 ], [ 26.367188, -19.642588 ], [ 26.015625, -19.642588 ], [ 26.015625, -18.646245 ], [ 25.664062, -18.646245 ], [ 25.664062, -18.312811 ], [ 25.312500, -18.312811 ], [ 25.312500, -17.644022 ], [ 25.664062, -17.644022 ], [ 25.664062, -17.978733 ], [ 27.421875, -17.978733 ], [ 27.421875, -17.644022 ], [ 27.773438, -17.644022 ], [ 27.773438, -17.308688 ], [ 28.125000, -17.308688 ], [ 28.125000, -16.972741 ], [ 28.476562, -16.972741 ], [ 28.476562, -16.636192 ], [ 28.828125, -16.636192 ], [ 28.828125, -15.961329 ], [ 29.531250, -15.961329 ], [ 29.531250, -15.623037 ], [ 30.234375, -15.623037 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.284185 ], [ 30.234375, -15.623037 ], [ 30.937500, -15.623037 ], [ 30.937500, -15.961329 ], [ 31.289062, -15.961329 ], [ 31.289062, -16.299051 ], [ 31.992188, -16.299051 ], [ 31.992188, -16.636192 ], [ 32.695312, -16.636192 ], [ 32.695312, -18.312811 ], [ 32.343750, -18.312811 ], [ 32.343750, -19.642588 ], [ 32.695312, -19.642588 ], [ 32.695312, -19.973349 ], [ 32.343750, -19.973349 ], [ 32.343750, -20.632784 ], [ 31.992188, -20.632784 ], [ 31.992188, -21.289374 ], [ 31.640625, -21.289374 ], [ 31.640625, -21.616579 ], [ 31.289062, -21.616579 ], [ 31.289062, -21.943046 ], [ 30.585938, -21.943046 ], [ 30.585938, -22.268764 ], [ 29.531250, -22.268764 ], [ 29.531250, -21.943046 ], [ 28.476562, -21.943046 ], [ 28.476562, -21.616579 ], [ 27.773438, -21.616579 ], [ 27.773438, -20.961440 ], [ 27.421875, -20.961440 ], [ 27.421875, -20.303418 ], [ 26.718750, -20.303418 ], [ 26.718750, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.311143 ], [ 26.015625, -19.311143 ], [ 26.015625, -18.979026 ], [ 25.664062, -18.979026 ], [ 25.664062, -18.646245 ], [ 25.312500, -18.646245 ], [ 25.312500, -17.978733 ], [ 24.960938, -17.978733 ], [ 24.960938, -17.644022 ], [ 27.070312, -17.644022 ], [ 27.070312, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -16.972741 ], [ 27.773438, -16.972741 ], [ 27.773438, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -16.299051 ], [ 28.828125, -16.299051 ], [ 28.828125, -15.961329 ], [ 29.179688, -15.961329 ], [ 29.179688, -15.623037 ], [ 29.882812, -15.623037 ], [ 29.882812, -15.284185 ], [ 30.234375, -15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, -1.054628 ], [ 34.101562, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.757537 ], [ 35.507812, -1.757537 ], [ 35.507812, -2.108899 ], [ 35.859375, -2.108899 ], [ 35.859375, -2.460181 ], [ 36.562500, -2.460181 ], [ 36.562500, -2.811371 ], [ 37.265625, -2.811371 ], [ 37.265625, -3.162456 ], [ 37.617188, -3.162456 ], [ 37.617188, -3.864255 ], [ 38.320312, -3.864255 ], [ 38.320312, -4.214943 ], [ 39.023438, -4.214943 ], [ 39.023438, -4.565474 ], [ 39.375000, -4.565474 ], [ 39.375000, -4.915833 ], [ 39.023438, -4.915833 ], [ 39.023438, -5.615986 ], [ 38.671875, -5.615986 ], [ 38.671875, -6.664608 ], [ 39.023438, -6.664608 ], [ 39.023438, -7.013668 ], [ 39.375000, -7.013668 ], [ 39.375000, -7.362467 ], [ 39.023438, -7.362467 ], [ 39.023438, -8.059230 ], [ 39.375000, -8.059230 ], [ 39.375000, -8.407168 ], [ 39.023438, -8.407168 ], [ 39.023438, -8.754795 ], [ 39.375000, -8.754795 ], [ 39.375000, -9.449062 ], [ 39.726562, -9.449062 ], [ 39.726562, -10.141932 ], [ 40.078125, -10.141932 ], [ 40.078125, -10.833306 ], [ 39.023438, -10.833306 ], [ 39.023438, -11.178402 ], [ 37.968750, -11.178402 ], [ 37.968750, -11.523088 ], [ 36.914062, -11.523088 ], [ 36.914062, -11.867351 ], [ 35.507812, -11.867351 ], [ 35.507812, -11.523088 ], [ 34.453125, -11.523088 ], [ 34.453125, -10.141932 ], [ 34.101562, -10.141932 ], [ 34.101562, -9.795678 ], [ 33.750000, -9.795678 ], [ 33.750000, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.102097 ], [ 31.640625, -9.102097 ], [ 31.640625, -8.754795 ], [ 30.585938, -8.754795 ], [ 30.585938, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -7.013668 ], [ 29.531250, -7.013668 ], [ 29.531250, -4.915833 ], [ 29.179688, -4.915833 ], [ 29.179688, -4.565474 ], [ 30.234375, -4.565474 ], [ 30.234375, -3.864255 ], [ 30.585938, -3.864255 ], [ 30.585938, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -1.406109 ], [ 30.585938, -1.406109 ], [ 30.585938, -1.054628 ], [ 34.101562, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.054628 ], [ 34.101562, -1.054628 ], [ 34.101562, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.757537 ], [ 35.507812, -1.757537 ], [ 35.507812, -2.108899 ], [ 36.210938, -2.108899 ], [ 36.210938, -2.460181 ], [ 36.914062, -2.460181 ], [ 36.914062, -2.811371 ], [ 37.617188, -2.811371 ], [ 37.617188, -3.864255 ], [ 37.968750, -3.864255 ], [ 37.968750, -4.214943 ], [ 38.671875, -4.214943 ], [ 38.671875, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -5.266008 ], [ 38.671875, -5.266008 ], [ 38.671875, -6.664608 ], [ 39.375000, -6.664608 ], [ 39.375000, -7.362467 ], [ 39.023438, -7.362467 ], [ 39.023438, -8.754795 ], [ 39.375000, -8.754795 ], [ 39.375000, -9.449062 ], [ 39.726562, -9.449062 ], [ 39.726562, -10.141932 ], [ 40.078125, -10.141932 ], [ 40.078125, -10.487812 ], [ 39.726562, -10.487812 ], [ 39.726562, -10.833306 ], [ 39.023438, -10.833306 ], [ 39.023438, -11.178402 ], [ 37.617188, -11.178402 ], [ 37.617188, -11.523088 ], [ 35.507812, -11.523088 ], [ 35.507812, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.833306 ], [ 34.101562, -10.833306 ], [ 34.101562, -9.795678 ], [ 33.750000, -9.795678 ], [ 33.750000, -9.449062 ], [ 33.398438, -9.449062 ], [ 33.398438, -9.102097 ], [ 31.992188, -9.102097 ], [ 31.992188, -8.754795 ], [ 30.937500, -8.754795 ], [ 30.937500, -8.407168 ], [ 30.585938, -8.407168 ], [ 30.585938, -8.059230 ], [ 30.234375, -8.059230 ], [ 30.234375, -7.362467 ], [ 29.882812, -7.362467 ], [ 29.882812, -6.664608 ], [ 29.531250, -6.664608 ], [ 29.531250, -5.965754 ], [ 29.179688, -5.965754 ], [ 29.179688, -4.214943 ], [ 29.882812, -4.214943 ], [ 29.882812, -3.864255 ], [ 30.234375, -3.864255 ], [ 30.234375, -3.513421 ], [ 30.585938, -3.513421 ], [ 30.585938, -2.811371 ], [ 30.234375, -2.811371 ], [ 30.234375, -2.108899 ], [ 30.585938, -2.108899 ], [ 30.585938, -1.406109 ], [ 30.234375, -1.406109 ], [ 30.234375, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.046875, -9.449062 ], [ 33.750000, -9.449062 ], [ 33.750000, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.101562, -10.141932 ], [ 34.453125, -10.141932 ], [ 34.453125, -13.581921 ], [ 34.804688, -13.581921 ], [ 34.804688, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -14.264383 ], [ 35.507812, -14.264383 ], [ 35.507812, -14.604847 ], [ 35.859375, -14.604847 ], [ 35.859375, -15.961329 ], [ 35.507812, -15.961329 ], [ 35.507812, -16.299051 ], [ 35.156250, -16.299051 ], [ 35.156250, -16.636192 ], [ 34.453125, -16.636192 ], [ 34.453125, -14.604847 ], [ 33.398438, -14.604847 ], [ 33.398438, -14.264383 ], [ 33.046875, -14.264383 ], [ 33.046875, -13.923404 ], [ 32.695312, -13.923404 ], [ 32.695312, -13.239945 ], [ 33.046875, -13.239945 ], [ 33.046875, -12.897489 ], [ 33.398438, -12.897489 ], [ 33.398438, -12.211180 ], [ 33.046875, -12.211180 ], [ 33.046875, -11.178402 ], [ 33.398438, -11.178402 ], [ 33.398438, -9.795678 ], [ 33.046875, -9.795678 ], [ 33.046875, -9.449062 ] ] ], [ [ [ 33.046875, -9.449062 ], [ 32.695312, -9.449062 ], [ 32.695312, -9.102097 ], [ 33.046875, -9.102097 ], [ 33.046875, -9.449062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, -9.102097 ], [ 33.398438, -9.449062 ], [ 33.750000, -9.449062 ], [ 33.750000, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.101562, -10.833306 ], [ 34.453125, -10.833306 ], [ 34.453125, -11.867351 ], [ 34.101562, -11.867351 ], [ 34.101562, -12.897489 ], [ 34.453125, -12.897489 ], [ 34.453125, -13.581921 ], [ 35.156250, -13.581921 ], [ 35.156250, -14.264383 ], [ 35.507812, -14.264383 ], [ 35.507812, -15.961329 ], [ 35.156250, -15.961329 ], [ 35.156250, -16.299051 ], [ 34.804688, -16.299051 ], [ 34.804688, -16.636192 ], [ 34.453125, -16.636192 ], [ 34.453125, -16.299051 ], [ 34.101562, -16.299051 ], [ 34.101562, -15.284185 ], [ 34.453125, -15.284185 ], [ 34.453125, -14.604847 ], [ 33.750000, -14.604847 ], [ 33.750000, -14.264383 ], [ 33.046875, -14.264383 ], [ 33.046875, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -13.239945 ], [ 32.695312, -13.239945 ], [ 32.695312, -12.554564 ], [ 33.046875, -12.554564 ], [ 33.046875, -10.487812 ], [ 33.398438, -10.487812 ], [ 33.398438, -10.141932 ], [ 33.046875, -10.141932 ], [ 33.046875, -9.449062 ], [ 32.695312, -9.449062 ], [ 32.695312, -9.102097 ], [ 33.398438, -9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -10.487812 ], [ 40.429688, -14.604847 ], [ 40.781250, -14.604847 ], [ 40.781250, -14.944785 ], [ 40.429688, -14.944785 ], [ 40.429688, -15.623037 ], [ 40.078125, -15.623037 ], [ 40.078125, -16.299051 ], [ 39.726562, -16.299051 ], [ 39.726562, -16.636192 ], [ 39.375000, -16.636192 ], [ 39.375000, -16.972741 ], [ 38.671875, -16.972741 ], [ 38.671875, -17.308688 ], [ 37.968750, -17.308688 ], [ 37.968750, -17.644022 ], [ 37.265625, -17.644022 ], [ 37.265625, -17.978733 ], [ 36.914062, -17.978733 ], [ 36.914062, -18.312811 ], [ 36.562500, -18.312811 ], [ 36.562500, -18.646245 ], [ 36.210938, -18.646245 ], [ 36.210938, -18.979026 ], [ 35.859375, -18.979026 ], [ 35.859375, -19.311143 ], [ 35.507812, -19.311143 ], [ 35.507812, -19.642588 ], [ 34.804688, -19.642588 ], [ 34.804688, -20.961440 ], [ 35.156250, -20.961440 ], [ 35.156250, -21.616579 ], [ 35.507812, -21.616579 ], [ 35.507812, -24.527135 ], [ 34.804688, -24.527135 ], [ 34.804688, -24.846565 ], [ 34.101562, -24.846565 ], [ 34.101562, -25.165173 ], [ 33.398438, -25.165173 ], [ 33.398438, -25.482951 ], [ 33.046875, -25.482951 ], [ 33.046875, -25.799891 ], [ 32.695312, -25.799891 ], [ 32.695312, -26.115986 ], [ 33.046875, -26.115986 ], [ 33.046875, -26.431228 ], [ 32.695312, -26.431228 ], [ 32.695312, -26.745610 ], [ 31.992188, -26.745610 ], [ 31.992188, -25.799891 ], [ 31.640625, -25.799891 ], [ 31.640625, -25.165173 ], [ 31.992188, -25.165173 ], [ 31.992188, -24.206890 ], [ 31.640625, -24.206890 ], [ 31.640625, -22.917923 ], [ 31.289062, -22.917923 ], [ 31.289062, -22.268764 ], [ 31.640625, -22.268764 ], [ 31.640625, -21.616579 ], [ 31.992188, -21.616579 ], [ 31.992188, -21.289374 ], [ 32.343750, -21.289374 ], [ 32.343750, -20.303418 ], [ 32.695312, -20.303418 ], [ 32.695312, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -16.299051 ], [ 31.640625, -16.299051 ], [ 31.640625, -15.961329 ], [ 30.234375, -15.961329 ], [ 30.234375, -14.944785 ], [ 30.937500, -14.944785 ], [ 30.937500, -14.604847 ], [ 31.992188, -14.604847 ], [ 31.992188, -14.264383 ], [ 32.695312, -14.264383 ], [ 32.695312, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.264383 ], [ 33.398438, -14.264383 ], [ 33.398438, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -16.299051 ], [ 35.507812, -16.299051 ], [ 35.507812, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -14.604847 ], [ 35.507812, -14.604847 ], [ 35.507812, -14.264383 ], [ 35.156250, -14.264383 ], [ 35.156250, -13.923404 ], [ 34.804688, -13.923404 ], [ 34.804688, -13.581921 ], [ 34.453125, -13.581921 ], [ 34.453125, -11.523088 ], [ 35.507812, -11.523088 ], [ 35.507812, -11.867351 ], [ 36.914062, -11.867351 ], [ 36.914062, -11.523088 ], [ 37.968750, -11.523088 ], [ 37.968750, -11.178402 ], [ 39.023438, -11.178402 ], [ 39.023438, -10.833306 ], [ 40.078125, -10.833306 ], [ 40.078125, -10.487812 ], [ 40.429688, -10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -10.487812 ], [ 40.429688, -15.623037 ], [ 40.078125, -15.623037 ], [ 40.078125, -16.299051 ], [ 39.726562, -16.299051 ], [ 39.726562, -16.636192 ], [ 39.023438, -16.636192 ], [ 39.023438, -16.972741 ], [ 37.968750, -16.972741 ], [ 37.968750, -17.308688 ], [ 37.265625, -17.308688 ], [ 37.265625, -17.644022 ], [ 36.914062, -17.644022 ], [ 36.914062, -17.978733 ], [ 36.562500, -17.978733 ], [ 36.562500, -18.646245 ], [ 35.859375, -18.646245 ], [ 35.859375, -18.979026 ], [ 35.507812, -18.979026 ], [ 35.507812, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -19.642588 ], [ 34.453125, -19.642588 ], [ 34.453125, -20.632784 ], [ 34.804688, -20.632784 ], [ 34.804688, -20.961440 ], [ 35.156250, -20.961440 ], [ 35.156250, -21.943046 ], [ 35.507812, -21.943046 ], [ 35.507812, -23.241346 ], [ 35.156250, -23.241346 ], [ 35.156250, -23.563987 ], [ 35.507812, -23.563987 ], [ 35.507812, -23.885838 ], [ 35.156250, -23.885838 ], [ 35.156250, -24.206890 ], [ 34.804688, -24.206890 ], [ 34.804688, -24.527135 ], [ 34.101562, -24.527135 ], [ 34.101562, -24.846565 ], [ 33.398438, -24.846565 ], [ 33.398438, -25.165173 ], [ 32.695312, -25.165173 ], [ 32.695312, -25.482951 ], [ 32.343750, -25.482951 ], [ 32.343750, -26.115986 ], [ 32.695312, -26.115986 ], [ 32.695312, -26.431228 ], [ 31.640625, -26.431228 ], [ 31.640625, -23.241346 ], [ 31.289062, -23.241346 ], [ 31.289062, -22.593726 ], [ 30.937500, -22.593726 ], [ 30.937500, -21.943046 ], [ 31.289062, -21.943046 ], [ 31.289062, -21.616579 ], [ 31.640625, -21.616579 ], [ 31.640625, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.992188, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -19.973349 ], [ 32.695312, -19.973349 ], [ 32.695312, -19.642588 ], [ 32.343750, -19.642588 ], [ 32.343750, -18.312811 ], [ 32.695312, -18.312811 ], [ 32.695312, -16.636192 ], [ 31.992188, -16.636192 ], [ 31.992188, -16.299051 ], [ 31.289062, -16.299051 ], [ 31.289062, -15.961329 ], [ 30.937500, -15.961329 ], [ 30.937500, -15.623037 ], [ 30.234375, -15.623037 ], [ 30.234375, -14.944785 ], [ 29.882812, -14.944785 ], [ 29.882812, -14.604847 ], [ 30.937500, -14.604847 ], [ 30.937500, -14.264383 ], [ 32.343750, -14.264383 ], [ 32.343750, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.264383 ], [ 33.750000, -14.264383 ], [ 33.750000, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -15.284185 ], [ 34.101562, -15.284185 ], [ 34.101562, -16.299051 ], [ 34.453125, -16.299051 ], [ 34.453125, -16.636192 ], [ 34.804688, -16.636192 ], [ 34.804688, -16.299051 ], [ 35.156250, -16.299051 ], [ 35.156250, -15.961329 ], [ 35.507812, -15.961329 ], [ 35.507812, -14.264383 ], [ 35.156250, -14.264383 ], [ 35.156250, -13.581921 ], [ 34.453125, -13.581921 ], [ 34.453125, -12.897489 ], [ 34.101562, -12.897489 ], [ 34.101562, -11.867351 ], [ 34.453125, -11.867351 ], [ 34.453125, -11.178402 ], [ 35.507812, -11.178402 ], [ 35.507812, -11.523088 ], [ 37.617188, -11.523088 ], [ 37.617188, -11.178402 ], [ 39.023438, -11.178402 ], [ 39.023438, -10.833306 ], [ 39.726562, -10.833306 ], [ 39.726562, -10.487812 ], [ 40.429688, -10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.644022 ], [ 25.312500, -18.312811 ], [ 25.664062, -18.312811 ], [ 25.664062, -18.646245 ], [ 26.015625, -18.646245 ], [ 26.015625, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.973349 ], [ 27.070312, -19.973349 ], [ 27.070312, -20.303418 ], [ 27.421875, -20.303418 ], [ 27.421875, -20.632784 ], [ 27.773438, -20.632784 ], [ 27.773438, -21.289374 ], [ 28.125000, -21.289374 ], [ 28.125000, -21.616579 ], [ 28.828125, -21.616579 ], [ 28.828125, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -22.268764 ], [ 29.179688, -22.268764 ], [ 29.179688, -22.593726 ], [ 28.476562, -22.593726 ], [ 28.476562, -22.917923 ], [ 28.125000, -22.917923 ], [ 28.125000, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.885838 ], [ 26.718750, -23.885838 ], [ 26.718750, -24.527135 ], [ 26.367188, -24.527135 ], [ 26.367188, -24.846565 ], [ 26.015625, -24.846565 ], [ 26.015625, -25.165173 ], [ 25.664062, -25.165173 ], [ 25.664062, -25.799891 ], [ 23.906250, -25.799891 ], [ 23.906250, -25.482951 ], [ 22.851562, -25.482951 ], [ 22.851562, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -26.431228 ], [ 22.148438, -26.431228 ], [ 22.148438, -26.745610 ], [ 20.742188, -26.745610 ], [ 20.742188, -25.799891 ], [ 20.390625, -25.799891 ], [ 20.390625, -25.165173 ], [ 20.039062, -25.165173 ], [ 20.039062, -21.943046 ], [ 20.742188, -21.943046 ], [ 20.742188, -18.312811 ], [ 22.851562, -18.312811 ], [ 22.851562, -17.978733 ], [ 23.203125, -17.978733 ], [ 23.203125, -18.312811 ], [ 24.257812, -18.312811 ], [ 24.257812, -17.978733 ], [ 24.960938, -17.978733 ], [ 24.960938, -17.644022 ], [ 25.312500, -17.644022 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, -17.644022 ], [ 24.960938, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -18.646245 ], [ 25.664062, -18.646245 ], [ 25.664062, -18.979026 ], [ 26.015625, -18.979026 ], [ 26.015625, -19.311143 ], [ 26.367188, -19.311143 ], [ 26.367188, -19.642588 ], [ 26.718750, -19.642588 ], [ 26.718750, -20.303418 ], [ 27.421875, -20.303418 ], [ 27.421875, -20.961440 ], [ 27.773438, -20.961440 ], [ 27.773438, -21.616579 ], [ 28.476562, -21.616579 ], [ 28.476562, -21.943046 ], [ 29.179688, -21.943046 ], [ 29.179688, -22.268764 ], [ 28.476562, -22.268764 ], [ 28.476562, -22.593726 ], [ 27.773438, -22.593726 ], [ 27.773438, -22.917923 ], [ 27.421875, -22.917923 ], [ 27.421875, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.885838 ], [ 26.718750, -23.885838 ], [ 26.718750, -24.527135 ], [ 25.664062, -24.527135 ], [ 25.664062, -25.482951 ], [ 23.554688, -25.482951 ], [ 23.554688, -25.165173 ], [ 23.203125, -25.165173 ], [ 23.203125, -25.482951 ], [ 22.500000, -25.482951 ], [ 22.500000, -26.115986 ], [ 21.796875, -26.115986 ], [ 21.796875, -26.431228 ], [ 21.445312, -26.431228 ], [ 21.445312, -26.745610 ], [ 20.390625, -26.745610 ], [ 20.390625, -26.115986 ], [ 20.742188, -26.115986 ], [ 20.742188, -25.799891 ], [ 20.390625, -25.799891 ], [ 20.390625, -25.165173 ], [ 20.039062, -25.165173 ], [ 20.039062, -24.846565 ], [ 19.687500, -24.846565 ], [ 19.687500, -21.616579 ], [ 20.742188, -21.616579 ], [ 20.742188, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -17.644022 ], [ 22.851562, -17.644022 ], [ 22.851562, -17.978733 ], [ 23.906250, -17.978733 ], [ 23.906250, -17.644022 ], [ 24.960938, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.882812, -21.943046 ], [ 29.882812, -22.268764 ], [ 31.289062, -22.268764 ], [ 31.289062, -22.917923 ], [ 31.640625, -22.917923 ], [ 31.640625, -24.206890 ], [ 31.992188, -24.206890 ], [ 31.992188, -25.165173 ], [ 31.640625, -25.165173 ], [ 31.640625, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -26.431228 ], [ 30.585938, -26.431228 ], [ 30.585938, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -27.371767 ], [ 31.992188, -27.371767 ], [ 31.992188, -26.745610 ], [ 32.695312, -26.745610 ], [ 32.695312, -27.994401 ], [ 32.343750, -27.994401 ], [ 32.343750, -28.921631 ], [ 31.992188, -28.921631 ], [ 31.992188, -29.228890 ], [ 31.640625, -29.228890 ], [ 31.640625, -29.535230 ], [ 31.289062, -29.535230 ], [ 31.289062, -29.840644 ], [ 30.937500, -29.840644 ], [ 30.937500, -30.145127 ], [ 30.585938, -30.145127 ], [ 30.585938, -30.751278 ], [ 30.234375, -30.751278 ], [ 30.234375, -31.052934 ], [ 29.882812, -31.052934 ], [ 29.882812, -31.353637 ], [ 29.531250, -31.353637 ], [ 29.531250, -31.653381 ], [ 29.179688, -31.653381 ], [ 29.179688, -32.249974 ], [ 28.828125, -32.249974 ], [ 28.828125, -32.546813 ], [ 28.476562, -32.546813 ], [ 28.476562, -32.842674 ], [ 28.125000, -32.842674 ], [ 28.125000, -33.137551 ], [ 27.421875, -33.137551 ], [ 27.421875, -33.431441 ], [ 26.718750, -33.431441 ], [ 26.718750, -33.724340 ], [ 26.015625, -33.724340 ], [ 26.015625, -34.016242 ], [ 23.906250, -34.016242 ], [ 23.906250, -33.724340 ], [ 23.554688, -33.724340 ], [ 23.554688, -34.016242 ], [ 21.796875, -34.016242 ], [ 21.796875, -34.307144 ], [ 20.742188, -34.307144 ], [ 20.742188, -34.597042 ], [ 20.390625, -34.597042 ], [ 20.390625, -34.885931 ], [ 19.335938, -34.885931 ], [ 19.335938, -34.597042 ], [ 18.984375, -34.597042 ], [ 18.984375, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -32.842674 ], [ 17.929688, -32.842674 ], [ 17.929688, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.653381 ], [ 17.929688, -31.653381 ], [ 17.929688, -31.052934 ], [ 17.578125, -31.052934 ], [ 17.578125, -30.448674 ], [ 17.226562, -30.448674 ], [ 17.226562, -29.840644 ], [ 16.875000, -29.840644 ], [ 16.875000, -29.228890 ], [ 16.523438, -29.228890 ], [ 16.523438, -28.921631 ], [ 16.171875, -28.921631 ], [ 16.171875, -28.613459 ], [ 16.523438, -28.613459 ], [ 16.523438, -28.304381 ], [ 17.226562, -28.304381 ], [ 17.226562, -28.921631 ], [ 19.687500, -28.921631 ], [ 19.687500, -28.613459 ], [ 20.039062, -28.613459 ], [ 20.039062, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -25.799891 ], [ 20.742188, -25.799891 ], [ 20.742188, -26.745610 ], [ 22.148438, -26.745610 ], [ 22.148438, -26.431228 ], [ 22.500000, -26.431228 ], [ 22.500000, -25.799891 ], [ 22.851562, -25.799891 ], [ 22.851562, -25.482951 ], [ 23.906250, -25.482951 ], [ 23.906250, -25.799891 ], [ 25.664062, -25.799891 ], [ 25.664062, -25.165173 ], [ 26.015625, -25.165173 ], [ 26.015625, -24.846565 ], [ 26.367188, -24.846565 ], [ 26.367188, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.885838 ], [ 27.070312, -23.885838 ], [ 27.070312, -23.563987 ], [ 27.421875, -23.563987 ], [ 27.421875, -23.241346 ], [ 28.125000, -23.241346 ], [ 28.125000, -22.917923 ], [ 28.476562, -22.917923 ], [ 28.476562, -22.593726 ], [ 29.179688, -22.593726 ], [ 29.179688, -22.268764 ], [ 29.531250, -22.268764 ], [ 29.531250, -21.943046 ], [ 29.882812, -21.943046 ] ], [ [ 28.125000, -29.228890 ], [ 27.421875, -29.228890 ], [ 27.421875, -29.535230 ], [ 27.070312, -29.535230 ], [ 27.070312, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -30.751278 ], [ 28.125000, -30.751278 ], [ 28.125000, -30.145127 ], [ 29.179688, -30.145127 ], [ 29.179688, -29.228890 ], [ 28.828125, -29.228890 ], [ 28.828125, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -29.228890 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -21.943046 ], [ 30.937500, -22.593726 ], [ 31.289062, -22.593726 ], [ 31.289062, -23.241346 ], [ 31.640625, -23.241346 ], [ 31.640625, -25.799891 ], [ 31.289062, -25.799891 ], [ 31.289062, -25.482951 ], [ 30.937500, -25.482951 ], [ 30.937500, -26.115986 ], [ 30.585938, -26.115986 ], [ 30.585938, -27.059126 ], [ 31.640625, -27.059126 ], [ 31.640625, -26.745610 ], [ 31.992188, -26.745610 ], [ 31.992188, -26.431228 ], [ 32.695312, -26.431228 ], [ 32.695312, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -28.304381 ], [ 31.992188, -28.304381 ], [ 31.992188, -28.921631 ], [ 31.640625, -28.921631 ], [ 31.640625, -29.228890 ], [ 31.289062, -29.228890 ], [ 31.289062, -29.535230 ], [ 30.937500, -29.535230 ], [ 30.937500, -29.840644 ], [ 30.585938, -29.840644 ], [ 30.585938, -30.448674 ], [ 30.234375, -30.448674 ], [ 30.234375, -31.052934 ], [ 29.882812, -31.052934 ], [ 29.882812, -31.353637 ], [ 29.531250, -31.353637 ], [ 29.531250, -31.653381 ], [ 29.179688, -31.653381 ], [ 29.179688, -31.952162 ], [ 28.828125, -31.952162 ], [ 28.828125, -32.249974 ], [ 28.476562, -32.249974 ], [ 28.476562, -32.546813 ], [ 28.125000, -32.546813 ], [ 28.125000, -32.842674 ], [ 27.773438, -32.842674 ], [ 27.773438, -33.137551 ], [ 27.070312, -33.137551 ], [ 27.070312, -33.431441 ], [ 25.664062, -33.431441 ], [ 25.664062, -33.724340 ], [ 22.148438, -33.724340 ], [ 22.148438, -34.016242 ], [ 21.093750, -34.016242 ], [ 21.093750, -34.307144 ], [ 20.390625, -34.307144 ], [ 20.390625, -34.597042 ], [ 18.984375, -34.597042 ], [ 18.984375, -34.307144 ], [ 18.632812, -34.307144 ], [ 18.632812, -34.016242 ], [ 17.929688, -34.016242 ], [ 17.929688, -32.842674 ], [ 17.578125, -32.842674 ], [ 17.578125, -32.546813 ], [ 17.929688, -32.546813 ], [ 17.929688, -31.353637 ], [ 17.578125, -31.353637 ], [ 17.578125, -30.751278 ], [ 17.226562, -30.751278 ], [ 17.226562, -30.145127 ], [ 16.875000, -30.145127 ], [ 16.875000, -29.535230 ], [ 16.523438, -29.535230 ], [ 16.523438, -28.921631 ], [ 16.171875, -28.921631 ], [ 16.171875, -28.304381 ], [ 16.875000, -28.304381 ], [ 16.875000, -28.613459 ], [ 17.578125, -28.613459 ], [ 17.578125, -28.921631 ], [ 19.335938, -28.921631 ], [ 19.335938, -28.613459 ], [ 19.687500, -28.613459 ], [ 19.687500, -24.846565 ], [ 20.039062, -24.846565 ], [ 20.039062, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -25.799891 ], [ 20.742188, -25.799891 ], [ 20.742188, -26.115986 ], [ 20.390625, -26.115986 ], [ 20.390625, -26.745610 ], [ 21.445312, -26.745610 ], [ 21.445312, -26.431228 ], [ 21.796875, -26.431228 ], [ 21.796875, -26.115986 ], [ 22.500000, -26.115986 ], [ 22.500000, -25.482951 ], [ 23.203125, -25.482951 ], [ 23.203125, -25.165173 ], [ 23.554688, -25.165173 ], [ 23.554688, -25.482951 ], [ 25.664062, -25.482951 ], [ 25.664062, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.885838 ], [ 27.070312, -23.885838 ], [ 27.070312, -23.563987 ], [ 27.421875, -23.563987 ], [ 27.421875, -22.917923 ], [ 27.773438, -22.917923 ], [ 27.773438, -22.593726 ], [ 28.476562, -22.593726 ], [ 28.476562, -22.268764 ], [ 29.179688, -22.268764 ], [ 29.179688, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -22.268764 ], [ 30.585938, -22.268764 ], [ 30.585938, -21.943046 ], [ 30.937500, -21.943046 ] ], [ [ 27.773438, -28.921631 ], [ 27.421875, -28.921631 ], [ 27.421875, -29.535230 ], [ 27.070312, -29.535230 ], [ 27.070312, -29.840644 ], [ 26.718750, -29.840644 ], [ 26.718750, -30.145127 ], [ 27.070312, -30.145127 ], [ 27.070312, -30.448674 ], [ 28.125000, -30.448674 ], [ 28.125000, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -29.535230 ], [ 29.179688, -29.535230 ], [ 29.179688, -29.228890 ], [ 28.828125, -29.228890 ], [ 28.828125, -28.921631 ], [ 28.476562, -28.921631 ], [ 28.476562, -28.613459 ], [ 27.773438, -28.613459 ], [ 27.773438, -28.921631 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.992188, -25.799891 ], [ 31.992188, -27.371767 ], [ 30.937500, -27.371767 ], [ 30.937500, -27.059126 ], [ 30.585938, -27.059126 ], [ 30.585938, -26.431228 ], [ 30.937500, -26.431228 ], [ 30.937500, -25.799891 ], [ 31.992188, -25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, -25.482951 ], [ 31.289062, -25.799891 ], [ 31.640625, -25.799891 ], [ 31.640625, -26.431228 ], [ 31.992188, -26.431228 ], [ 31.992188, -26.745610 ], [ 31.640625, -26.745610 ], [ 31.640625, -27.059126 ], [ 30.585938, -27.059126 ], [ 30.585938, -26.115986 ], [ 30.937500, -26.115986 ], [ 30.937500, -25.482951 ], [ 31.289062, -25.482951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -28.921631 ], [ 28.828125, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.751278 ], [ 27.421875, -30.751278 ], [ 27.421875, -30.145127 ], [ 27.070312, -30.145127 ], [ 27.070312, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -29.228890 ], [ 28.125000, -29.228890 ], [ 28.125000, -28.921631 ], [ 28.828125, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, -28.613459 ], [ 28.476562, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -29.535230 ], [ 28.828125, -29.535230 ], [ 28.828125, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.448674 ], [ 27.070312, -30.448674 ], [ 27.070312, -30.145127 ], [ 26.718750, -30.145127 ], [ 26.718750, -29.840644 ], [ 27.070312, -29.840644 ], [ 27.070312, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -28.921631 ], [ 27.773438, -28.921631 ], [ 27.773438, -28.613459 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.570312, -12.554564 ], [ 49.570312, -12.897489 ], [ 49.921875, -12.897489 ], [ 49.921875, -14.264383 ], [ 50.273438, -14.264383 ], [ 50.273438, -14.944785 ], [ 50.625000, -14.944785 ], [ 50.625000, -15.623037 ], [ 49.570312, -15.623037 ], [ 49.570312, -15.961329 ], [ 49.921875, -15.961329 ], [ 49.921875, -16.972741 ], [ 49.570312, -16.972741 ], [ 49.570312, -18.312811 ], [ 49.218750, -18.312811 ], [ 49.218750, -18.979026 ], [ 48.867188, -18.979026 ], [ 48.867188, -19.973349 ], [ 48.515625, -19.973349 ], [ 48.515625, -21.289374 ], [ 48.164062, -21.289374 ], [ 48.164062, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -23.241346 ], [ 47.460938, -23.241346 ], [ 47.460938, -24.527135 ], [ 47.109375, -24.527135 ], [ 47.109375, -25.165173 ], [ 46.054688, -25.165173 ], [ 46.054688, -25.482951 ], [ 44.648438, -25.482951 ], [ 44.648438, -25.165173 ], [ 43.945312, -25.165173 ], [ 43.945312, -24.846565 ], [ 43.593750, -24.846565 ], [ 43.593750, -23.241346 ], [ 43.242188, -23.241346 ], [ 43.242188, -21.616579 ], [ 43.593750, -21.616579 ], [ 43.593750, -21.289374 ], [ 43.945312, -21.289374 ], [ 43.945312, -20.632784 ], [ 44.296875, -20.632784 ], [ 44.296875, -18.646245 ], [ 43.945312, -18.646245 ], [ 43.945312, -17.308688 ], [ 44.296875, -17.308688 ], [ 44.296875, -16.299051 ], [ 45.351562, -16.299051 ], [ 45.351562, -15.961329 ], [ 46.406250, -15.961329 ], [ 46.406250, -15.623037 ], [ 46.757812, -15.623037 ], [ 46.757812, -15.284185 ], [ 47.109375, -15.284185 ], [ 47.109375, -14.944785 ], [ 47.812500, -14.944785 ], [ 47.812500, -14.264383 ], [ 48.164062, -14.264383 ], [ 48.164062, -13.923404 ], [ 48.515625, -13.923404 ], [ 48.515625, -13.581921 ], [ 48.867188, -13.581921 ], [ 48.867188, -12.554564 ], [ 49.570312, -12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, -12.211180 ], [ 49.218750, -12.554564 ], [ 49.570312, -12.554564 ], [ 49.570312, -13.239945 ], [ 49.921875, -13.239945 ], [ 49.921875, -14.944785 ], [ 50.273438, -14.944785 ], [ 50.273438, -15.961329 ], [ 49.921875, -15.961329 ], [ 49.921875, -15.623037 ], [ 49.570312, -15.623037 ], [ 49.570312, -16.972741 ], [ 49.218750, -16.972741 ], [ 49.218750, -18.312811 ], [ 48.867188, -18.312811 ], [ 48.867188, -19.642588 ], [ 48.515625, -19.642588 ], [ 48.515625, -20.961440 ], [ 48.164062, -20.961440 ], [ 48.164062, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -22.917923 ], [ 47.460938, -22.917923 ], [ 47.460938, -23.885838 ], [ 47.109375, -23.885838 ], [ 47.109375, -24.527135 ], [ 46.757812, -24.527135 ], [ 46.757812, -25.165173 ], [ 46.054688, -25.165173 ], [ 46.054688, -25.482951 ], [ 44.648438, -25.482951 ], [ 44.648438, -25.165173 ], [ 43.945312, -25.165173 ], [ 43.945312, -24.527135 ], [ 43.593750, -24.527135 ], [ 43.593750, -23.241346 ], [ 43.242188, -23.241346 ], [ 43.242188, -21.289374 ], [ 43.593750, -21.289374 ], [ 43.593750, -20.632784 ], [ 43.945312, -20.632784 ], [ 43.945312, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -18.979026 ], [ 43.945312, -18.979026 ], [ 43.945312, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -15.961329 ], [ 45.703125, -15.961329 ], [ 45.703125, -15.623037 ], [ 46.406250, -15.623037 ], [ 46.406250, -15.284185 ], [ 46.757812, -15.284185 ], [ 46.757812, -14.944785 ], [ 47.109375, -14.944785 ], [ 47.109375, -14.604847 ], [ 47.460938, -14.604847 ], [ 47.460938, -14.264383 ], [ 47.812500, -14.264383 ], [ 47.812500, -13.581921 ], [ 48.164062, -13.581921 ], [ 48.164062, -13.239945 ], [ 48.515625, -13.239945 ], [ 48.515625, -12.211180 ], [ 49.218750, -12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.960938, -48.922499 ], [ 69.960938, -49.152970 ], [ 70.664062, -49.152970 ], [ 70.664062, -49.382373 ], [ 70.312500, -49.382373 ], [ 70.312500, -49.610710 ], [ 69.960938, -49.610710 ], [ 69.960938, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -49.610710 ], [ 68.554688, -49.610710 ], [ 68.554688, -49.152970 ], [ 68.906250, -49.152970 ], [ 68.906250, -48.922499 ], [ 69.960938, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.257812, -48.690960 ], [ 69.257812, -48.922499 ], [ 70.312500, -48.922499 ], [ 70.312500, -49.382373 ], [ 69.960938, -49.382373 ], [ 69.960938, -49.610710 ], [ 68.554688, -49.610710 ], [ 68.554688, -48.690960 ], [ 69.257812, -48.690960 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 55.178868 ], [ -1.406250, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.367759 ], [ -0.351562, 54.367759 ], [ -0.351562, 53.956086 ], [ 0.000000, 53.956086 ], [ 0.000000, 53.540307 ], [ 0.351562, 53.540307 ], [ 0.351562, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.268157 ], [ 1.406250, 52.268157 ], [ 1.406250, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ 1.054688, 51.179343 ], [ 1.054688, 50.736455 ], [ -1.054688, 50.736455 ], [ -1.054688, 50.513427 ], [ -1.757812, 50.513427 ], [ -1.757812, 55.178868 ], [ -1.406250, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 55.178868 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 54.162434 ], [ -0.351562, 54.162434 ], [ -0.351562, 53.540307 ], [ 0.000000, 53.540307 ], [ 0.000000, 53.120405 ], [ 0.703125, 53.120405 ], [ 0.703125, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 52.052490 ], [ 1.054688, 52.052490 ], [ 1.054688, 51.835778 ], [ 0.703125, 51.835778 ], [ 0.703125, 51.618017 ], [ 1.054688, 51.618017 ], [ 1.054688, 51.399206 ], [ 1.406250, 51.399206 ], [ 1.406250, 51.179343 ], [ 0.703125, 51.179343 ], [ 0.703125, 50.958427 ], [ -1.054688, 50.958427 ], [ -1.054688, 50.736455 ], [ -1.757812, 50.736455 ], [ -1.757812, 55.178868 ], [ -1.406250, 55.178868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.492188, 42.811522 ], [ 9.492188, 41.771312 ], [ 9.140625, 41.771312 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.771312 ], [ 8.437500, 41.771312 ], [ 8.437500, 42.293564 ], [ 8.789062, 42.293564 ], [ 8.789062, 42.553080 ], [ 9.140625, 42.553080 ], [ 9.140625, 42.811522 ], [ 9.492188, 42.811522 ] ] ], [ [ [ 2.812500, 50.958427 ], [ 2.812500, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.513427 ], [ 3.515625, 50.513427 ], [ 3.515625, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 49.837982 ], [ 5.273438, 49.837982 ], [ 5.273438, 49.610710 ], [ 5.625000, 49.610710 ], [ 5.625000, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 49.152970 ], [ 7.031250, 49.152970 ], [ 7.031250, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 47.754098 ], [ 7.382812, 47.754098 ], [ 7.382812, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.040182 ], [ 6.328125, 47.040182 ], [ 6.328125, 46.800059 ], [ 5.976562, 46.800059 ], [ 5.976562, 46.316584 ], [ 6.328125, 46.316584 ], [ 6.328125, 46.073231 ], [ 6.679688, 46.073231 ], [ 6.679688, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.590467 ], [ 7.031250, 44.590467 ], [ 7.031250, 44.087585 ], [ 7.382812, 44.087585 ], [ 7.382812, 43.325178 ], [ 7.031250, 43.325178 ], [ 7.031250, 43.068888 ], [ 5.273438, 43.068888 ], [ 5.273438, 43.325178 ], [ 4.218750, 43.325178 ], [ 4.218750, 43.068888 ], [ 3.164062, 43.068888 ], [ 3.164062, 42.811522 ], [ 2.812500, 42.811522 ], [ 2.812500, 42.553080 ], [ 2.460938, 42.553080 ], [ 2.460938, 42.293564 ], [ 1.406250, 42.293564 ], [ 1.406250, 42.553080 ], [ -0.351562, 42.553080 ], [ -0.351562, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 45.089036 ], [ -1.054688, 45.089036 ], [ -1.054688, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.757812, 46.316584 ], [ -1.757812, 49.382373 ], [ -0.351562, 49.382373 ], [ -0.351562, 49.610710 ], [ 0.351562, 49.610710 ], [ 0.351562, 49.837982 ], [ 1.054688, 49.837982 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.757812, 50.513427 ], [ 1.757812, 50.958427 ], [ 2.812500, 50.958427 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.140625, 42.811522 ], [ 9.140625, 42.553080 ], [ 9.492188, 42.553080 ], [ 9.492188, 41.771312 ], [ 9.140625, 41.771312 ], [ 9.140625, 41.508577 ], [ 8.437500, 41.508577 ], [ 8.437500, 42.811522 ], [ 9.140625, 42.811522 ] ] ], [ [ [ 2.460938, 51.179343 ], [ 2.460938, 50.958427 ], [ 2.812500, 50.958427 ], [ 2.812500, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.513427 ], [ 3.515625, 50.513427 ], [ 3.515625, 50.289339 ], [ 3.867188, 50.289339 ], [ 3.867188, 50.064192 ], [ 4.570312, 50.064192 ], [ 4.570312, 49.837982 ], [ 5.273438, 49.837982 ], [ 5.273438, 49.610710 ], [ 5.976562, 49.610710 ], [ 5.976562, 49.382373 ], [ 7.031250, 49.382373 ], [ 7.031250, 49.152970 ], [ 8.085938, 49.152970 ], [ 8.085938, 48.922499 ], [ 7.734375, 48.922499 ], [ 7.734375, 48.458352 ], [ 7.382812, 48.458352 ], [ 7.382812, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.279229 ], [ 6.328125, 47.279229 ], [ 6.328125, 46.800059 ], [ 5.976562, 46.800059 ], [ 5.976562, 46.316584 ], [ 6.679688, 46.316584 ], [ 6.679688, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.339565 ], [ 7.382812, 44.339565 ], [ 7.382812, 43.580391 ], [ 6.679688, 43.580391 ], [ 6.679688, 43.325178 ], [ 4.921875, 43.325178 ], [ 4.921875, 43.580391 ], [ 3.867188, 43.580391 ], [ 3.867188, 43.325178 ], [ 2.812500, 43.325178 ], [ 2.812500, 42.553080 ], [ 1.054688, 42.553080 ], [ 1.054688, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 46.316584 ], [ -1.757812, 46.316584 ], [ -1.757812, 49.610710 ], [ -1.406250, 49.610710 ], [ -1.406250, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.837982 ], [ 0.351562, 49.837982 ], [ 0.351562, 50.064192 ], [ 1.054688, 50.064192 ], [ 1.054688, 50.513427 ], [ 1.406250, 50.513427 ], [ 1.406250, 50.958427 ], [ 2.109375, 50.958427 ], [ 2.109375, 51.179343 ], [ 2.460938, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.553080 ], [ 1.406250, 42.553080 ], [ 1.406250, 42.293564 ], [ 2.460938, 42.293564 ], [ 2.460938, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 42.032974 ], [ 3.164062, 42.032974 ], [ 3.164062, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.244772 ], [ 1.757812, 41.244772 ], [ 1.757812, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ], [ 1.054688, 42.811522 ], [ 1.054688, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.771312 ], [ 2.460938, 41.771312 ], [ 2.460938, 41.508577 ], [ 2.109375, 41.508577 ], [ 2.109375, 41.244772 ], [ 0.703125, 41.244772 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.703125, 38.548165 ], [ -0.703125, 37.718590 ], [ -1.757812, 37.718590 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 33.431441 ], [ -1.406250, 32.546813 ], [ -1.054688, 32.546813 ], [ -1.054688, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 33.431441 ], [ -1.406250, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 22.917923 ], [ -1.406250, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.351562, 22.268764 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.289374 ], [ 1.054688, 21.289374 ], [ 1.054688, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 20.303418 ], [ 2.109375, 20.303418 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.642588 ], [ 3.164062, 19.642588 ], [ 3.164062, 18.979026 ], [ 3.867188, 18.979026 ], [ 3.867188, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.636192 ], [ 3.867188, 16.636192 ], [ 3.867188, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 14.944785 ], [ -1.054688, 14.944785 ], [ -1.054688, 14.604847 ], [ -1.757812, 14.604847 ], [ -1.757812, 22.917923 ], [ -1.406250, 22.917923 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.703125, 22.268764 ], [ -0.703125, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.636192 ], [ 3.867188, 16.636192 ], [ 3.867188, 16.299051 ], [ 3.515625, 16.299051 ], [ 3.515625, 15.623037 ], [ 1.054688, 15.623037 ], [ 1.054688, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.944785 ], [ -0.703125, 14.944785 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.944785 ], [ -1.757812, 14.944785 ], [ -1.757812, 22.593726 ], [ -1.054688, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.239945 ], [ 1.054688, 13.239945 ], [ 1.054688, 12.897489 ], [ 1.406250, 12.897489 ], [ 1.406250, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 10.833306 ], [ 0.351562, 10.833306 ], [ 0.351562, 11.178402 ], [ -0.351562, 11.178402 ], [ -0.351562, 10.833306 ], [ -1.757812, 10.833306 ], [ -1.757812, 14.604847 ], [ -1.054688, 14.604847 ], [ -1.054688, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 14.264383 ], [ 0.351562, 14.264383 ], [ 0.351562, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.897489 ], [ 2.109375, 12.897489 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.523088 ], [ 1.054688, 11.523088 ], [ 1.054688, 11.178402 ], [ -1.757812, 11.178402 ], [ -1.757812, 14.944785 ], [ -1.406250, 14.944785 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.013668 ], [ 0.703125, 7.013668 ], [ 0.703125, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.266008 ], [ -0.351562, 5.266008 ], [ -0.351562, 4.915833 ], [ -1.757812, 4.915833 ], [ -1.757812, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 8.059230 ], [ 0.351562, 8.059230 ], [ 0.351562, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 5.965754 ], [ 0.351562, 5.965754 ], [ 0.351562, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 5.266008 ], [ -1.406250, 5.266008 ], [ -1.406250, 4.915833 ], [ -1.757812, 4.915833 ], [ -1.757812, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.513427 ], [ 91.054688, 50.513427 ], [ 91.054688, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.382373 ], [ 87.890625, 49.382373 ], [ 87.890625, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 49.382373 ], [ 86.835938, 49.382373 ], [ 86.835938, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.610710 ], [ 85.429688, 49.610710 ], [ 85.429688, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.064192 ], [ 84.375000, 50.064192 ], [ 84.375000, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.958427 ], [ 82.617188, 50.958427 ], [ 82.617188, 50.736455 ], [ 81.562500, 50.736455 ], [ 81.562500, 50.958427 ], [ 80.859375, 50.958427 ], [ 80.859375, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.101562, 51.618017 ], [ 79.101562, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.482780 ], [ 78.398438, 52.482780 ], [ 78.398438, 52.696361 ], [ 78.046875, 52.696361 ], [ 78.046875, 53.120405 ], [ 77.695312, 53.120405 ], [ 77.695312, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.367759 ], [ 76.289062, 54.367759 ], [ 76.289062, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 53.956086 ], [ 75.585938, 53.956086 ], [ 75.585938, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.540307 ], [ 73.476562, 53.540307 ], [ 73.476562, 53.956086 ], [ 72.773438, 53.956086 ], [ 72.773438, 54.162434 ], [ 72.070312, 54.162434 ], [ 72.070312, 54.367759 ], [ 71.718750, 54.367759 ], [ 71.718750, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 55.178868 ], [ 69.609375, 55.178868 ], [ 69.609375, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 54.977614 ], [ 67.851562, 54.977614 ], [ 67.851562, 54.775346 ], [ 66.445312, 54.775346 ], [ 66.445312, 54.572062 ], [ 65.742188, 54.572062 ], [ 65.742188, 54.367759 ], [ 64.335938, 54.367759 ], [ 64.335938, 54.162434 ], [ 62.578125, 54.162434 ], [ 62.578125, 53.956086 ], [ 61.523438, 53.956086 ], [ 61.523438, 53.748711 ], [ 60.820312, 53.748711 ], [ 60.820312, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 53.330873 ], [ 61.523438, 53.330873 ], [ 61.523438, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.268157 ], [ 60.468750, 52.268157 ], [ 60.468750, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 51.835778 ], [ 60.468750, 51.835778 ], [ 60.468750, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.399206 ], [ 61.171875, 51.399206 ], [ 61.171875, 51.179343 ], [ 61.523438, 51.179343 ], [ 61.523438, 50.958427 ], [ 61.171875, 50.958427 ], [ 61.171875, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.513427 ], [ 59.062500, 50.513427 ], [ 59.062500, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 50.958427 ], [ 56.953125, 50.958427 ], [ 56.953125, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 50.513427 ], [ 55.195312, 50.513427 ], [ 55.195312, 50.736455 ], [ 54.492188, 50.736455 ], [ 54.492188, 50.958427 ], [ 53.789062, 50.958427 ], [ 53.789062, 51.179343 ], [ 53.085938, 51.179343 ], [ 53.085938, 51.399206 ], [ 52.382812, 51.399206 ], [ 52.382812, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.399206 ], [ 50.273438, 51.399206 ], [ 50.273438, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 50.958427 ], [ 49.570312, 50.958427 ], [ 49.570312, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 50.513427 ], [ 48.867188, 50.513427 ], [ 48.867188, 50.064192 ], [ 48.515625, 50.064192 ], [ 48.515625, 49.837982 ], [ 48.164062, 49.837982 ], [ 48.164062, 50.064192 ], [ 47.812500, 50.064192 ], [ 47.812500, 50.289339 ], [ 47.460938, 50.289339 ], [ 47.460938, 50.064192 ], [ 47.109375, 50.064192 ], [ 47.109375, 49.610710 ], [ 46.757812, 49.610710 ], [ 46.757812, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 48.922499 ], [ 46.757812, 48.922499 ], [ 46.757812, 48.458352 ], [ 46.406250, 48.458352 ], [ 46.406250, 48.224673 ], [ 46.757812, 48.224673 ], [ 46.757812, 47.989922 ], [ 47.109375, 47.989922 ], [ 47.109375, 47.754098 ], [ 48.164062, 47.754098 ], [ 48.164062, 47.517201 ], [ 48.515625, 47.517201 ], [ 48.515625, 47.040182 ], [ 48.867188, 47.040182 ], [ 48.867188, 46.800059 ], [ 48.515625, 46.800059 ], [ 48.515625, 46.316584 ], [ 49.218750, 46.316584 ], [ 49.218750, 46.073231 ], [ 48.867188, 46.073231 ], [ 48.867188, 45.828799 ], [ 48.515625, 45.828799 ], [ 48.515625, 45.583290 ], [ 47.812500, 45.583290 ], [ 47.812500, 45.336702 ], [ 47.460938, 45.336702 ], [ 47.460938, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.339565 ], [ 47.109375, 44.339565 ], [ 47.109375, 43.834527 ], [ 47.460938, 43.834527 ], [ 47.460938, 42.811522 ], [ 47.812500, 42.811522 ], [ 47.812500, 42.293564 ], [ 48.164062, 42.293564 ], [ 48.164062, 41.771312 ], [ 48.515625, 41.771312 ], [ 48.515625, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 41.244772 ], [ 47.109375, 41.244772 ], [ 47.109375, 41.508577 ], [ 46.757812, 41.508577 ], [ 46.757812, 41.771312 ], [ 45.703125, 41.771312 ], [ 45.703125, 42.293564 ], [ 45.351562, 42.293564 ], [ 45.351562, 42.553080 ], [ 43.593750, 42.553080 ], [ 43.593750, 42.811522 ], [ 43.242188, 42.811522 ], [ 43.242188, 43.068888 ], [ 42.539062, 43.068888 ], [ 42.539062, 43.325178 ], [ 39.726562, 43.325178 ], [ 39.726562, 43.580391 ], [ 39.375000, 43.580391 ], [ 39.375000, 43.834527 ], [ 39.023438, 43.834527 ], [ 39.023438, 44.087585 ], [ 38.671875, 44.087585 ], [ 38.671875, 44.339565 ], [ 37.968750, 44.339565 ], [ 37.968750, 44.590467 ], [ 37.265625, 44.590467 ], [ 37.265625, 44.840291 ], [ 36.914062, 44.840291 ], [ 36.914062, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 45.336702 ], [ 37.617188, 45.336702 ], [ 37.617188, 45.828799 ], [ 37.968750, 45.828799 ], [ 37.968750, 46.073231 ], [ 38.320312, 46.073231 ], [ 38.320312, 46.316584 ], [ 37.617188, 46.316584 ], [ 37.617188, 46.558860 ], [ 38.320312, 46.558860 ], [ 38.320312, 46.800059 ], [ 39.023438, 46.800059 ], [ 39.023438, 47.040182 ], [ 38.320312, 47.040182 ], [ 38.320312, 47.517201 ], [ 38.671875, 47.517201 ], [ 38.671875, 47.754098 ], [ 39.375000, 47.754098 ], [ 39.375000, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.610710 ], [ 39.023438, 49.610710 ], [ 39.023438, 49.837982 ], [ 37.617188, 49.837982 ], [ 37.617188, 50.064192 ], [ 37.265625, 50.064192 ], [ 37.265625, 50.289339 ], [ 35.859375, 50.289339 ], [ 35.859375, 50.513427 ], [ 35.507812, 50.513427 ], [ 35.507812, 50.958427 ], [ 35.156250, 50.958427 ], [ 35.156250, 51.179343 ], [ 34.101562, 51.179343 ], [ 34.101562, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.835778 ], [ 34.101562, 51.835778 ], [ 34.101562, 52.052490 ], [ 33.750000, 52.052490 ], [ 33.750000, 52.268157 ], [ 32.343750, 52.268157 ], [ 32.343750, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 32.695312, 53.120405 ], [ 32.695312, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.540307 ], [ 31.640625, 53.540307 ], [ 31.640625, 53.956086 ], [ 31.289062, 53.956086 ], [ 31.289062, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 54.572062 ], [ 30.585938, 54.572062 ], [ 30.585938, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.578345 ], [ 30.234375, 55.578345 ], [ 30.234375, 55.776573 ], [ 29.882812, 55.776573 ], [ 29.882812, 55.578345 ], [ 29.531250, 55.578345 ], [ 29.531250, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.365250 ], [ 27.773438, 56.365250 ], [ 27.773438, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.515823 ], [ 27.773438, 57.515823 ], [ 27.773438, 58.263287 ], [ 27.421875, 58.263287 ], [ 27.421875, 58.813742 ], [ 27.773438, 58.813742 ], [ 27.773438, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.534318 ], [ 28.476562, 59.534318 ], [ 28.476562, 59.712097 ], [ 28.828125, 59.712097 ], [ 28.828125, 59.888937 ], [ 29.179688, 59.888937 ], [ 29.179688, 60.064840 ], [ 28.828125, 60.064840 ], [ 28.828125, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.586967 ], [ 28.476562, 60.586967 ], [ 28.476562, 60.759160 ], [ 28.828125, 60.759160 ], [ 28.828125, 60.930432 ], [ 29.179688, 60.930432 ], [ 29.179688, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.438767 ], [ 29.882812, 61.438767 ], [ 29.882812, 61.606396 ], [ 30.234375, 61.606396 ], [ 30.234375, 61.773123 ], [ 30.585938, 61.773123 ], [ 30.585938, 62.103883 ], [ 30.937500, 62.103883 ], [ 30.937500, 62.267923 ], [ 31.289062, 62.267923 ], [ 31.289062, 62.593341 ], [ 31.640625, 62.593341 ], [ 31.640625, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 63.233627 ], [ 30.234375, 63.233627 ], [ 30.234375, 63.391522 ], [ 29.882812, 63.391522 ], [ 29.882812, 63.704722 ], [ 30.234375, 63.704722 ], [ 30.234375, 64.014496 ], [ 30.585938, 64.014496 ], [ 30.585938, 64.168107 ], [ 30.234375, 64.168107 ], [ 30.234375, 64.472794 ], [ 29.882812, 64.472794 ], [ 29.882812, 64.774125 ], [ 29.531250, 64.774125 ], [ 29.531250, 65.072130 ], [ 29.882812, 65.072130 ], [ 29.882812, 65.512963 ], [ 30.234375, 65.512963 ], [ 30.234375, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.204032 ], [ 41.132812, 67.204032 ], [ 41.132812, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.429688, 66.513260 ], [ 40.429688, 66.231457 ], [ 39.726562, 66.231457 ], [ 39.726562, 66.089364 ], [ 39.023438, 66.089364 ], [ 39.023438, 65.946472 ], [ 37.617188, 65.946472 ], [ 37.617188, 66.089364 ], [ 36.914062, 66.089364 ], [ 36.914062, 66.231457 ], [ 36.210938, 66.231457 ], [ 36.210938, 66.372755 ], [ 35.507812, 66.372755 ], [ 35.507812, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.320872 ], [ 35.507812, 64.320872 ], [ 35.507812, 64.168107 ], [ 36.210938, 64.168107 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.860036 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.014496 ], [ 37.265625, 64.014496 ], [ 37.265625, 64.320872 ], [ 36.914062, 64.320872 ], [ 36.914062, 64.623877 ], [ 36.562500, 64.623877 ], [ 36.562500, 64.774125 ], [ 36.914062, 64.774125 ], [ 36.914062, 64.923542 ], [ 37.968750, 64.923542 ], [ 37.968750, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.472794 ], [ 40.078125, 64.472794 ], [ 40.078125, 64.623877 ], [ 40.429688, 64.623877 ], [ 40.429688, 64.923542 ], [ 40.078125, 64.923542 ], [ 40.078125, 65.219894 ], [ 39.726562, 65.219894 ], [ 39.726562, 65.512963 ], [ 40.078125, 65.512963 ], [ 40.078125, 65.658275 ], [ 40.429688, 65.658275 ], [ 40.429688, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.089364 ], [ 41.484375, 66.089364 ], [ 41.484375, 66.231457 ], [ 41.835938, 66.231457 ], [ 41.835938, 66.372755 ], [ 42.890625, 66.372755 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.231457 ], [ 44.296875, 66.231457 ], [ 44.296875, 66.513260 ], [ 44.648438, 66.513260 ], [ 44.648438, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 45.703125, 67.204032 ], [ 45.703125, 66.930060 ], [ 46.054688, 66.930060 ], [ 46.054688, 66.652977 ], [ 47.109375, 66.652977 ], [ 47.109375, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.067433 ], [ 48.164062, 67.067433 ], [ 48.164062, 67.204032 ], [ 72.421875, 67.204032 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.372755 ], [ 71.718750, 66.372755 ], [ 71.718750, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 73.125000, 66.513260 ], [ 73.125000, 66.652977 ], [ 73.828125, 66.652977 ], [ 73.828125, 66.930060 ], [ 74.179688, 66.930060 ], [ 74.179688, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.445312, 55.178868 ], [ 21.445312, 54.977614 ], [ 22.148438, 54.977614 ], [ 22.148438, 54.775346 ], [ 22.851562, 54.775346 ], [ 22.851562, 54.572062 ], [ 22.500000, 54.572062 ], [ 22.500000, 54.367759 ], [ 19.687500, 54.367759 ], [ 19.687500, 54.572062 ], [ 20.039062, 54.572062 ], [ 20.039062, 54.775346 ], [ 20.390625, 54.775346 ], [ 20.390625, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.178868 ], [ 21.445312, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.736455 ], [ 91.406250, 50.736455 ], [ 91.406250, 50.513427 ], [ 90.703125, 50.513427 ], [ 90.703125, 50.289339 ], [ 90.000000, 50.289339 ], [ 90.000000, 50.064192 ], [ 89.648438, 50.064192 ], [ 89.648438, 49.837982 ], [ 88.945312, 49.837982 ], [ 88.945312, 49.610710 ], [ 88.242188, 49.610710 ], [ 88.242188, 49.382373 ], [ 86.835938, 49.382373 ], [ 86.835938, 49.610710 ], [ 86.484375, 49.610710 ], [ 86.484375, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 50.289339 ], [ 84.375000, 50.289339 ], [ 84.375000, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.736455 ], [ 83.671875, 50.736455 ], [ 83.671875, 50.958427 ], [ 83.320312, 50.958427 ], [ 83.320312, 51.179343 ], [ 82.968750, 51.179343 ], [ 82.968750, 50.958427 ], [ 81.210938, 50.958427 ], [ 81.210938, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.179343 ], [ 79.453125, 51.179343 ], [ 79.453125, 51.618017 ], [ 79.101562, 51.618017 ], [ 79.101562, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.482780 ], [ 78.398438, 52.482780 ], [ 78.398438, 52.908902 ], [ 78.046875, 52.908902 ], [ 78.046875, 53.330873 ], [ 77.695312, 53.330873 ], [ 77.695312, 53.540307 ], [ 77.343750, 53.540307 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.162434 ], [ 76.289062, 54.162434 ], [ 76.289062, 54.367759 ], [ 75.937500, 54.367759 ], [ 75.937500, 54.162434 ], [ 75.234375, 54.162434 ], [ 75.234375, 53.956086 ], [ 74.531250, 53.956086 ], [ 74.531250, 53.748711 ], [ 73.828125, 53.748711 ], [ 73.828125, 53.540307 ], [ 73.125000, 53.540307 ], [ 73.125000, 53.748711 ], [ 73.476562, 53.748711 ], [ 73.476562, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 54.367759 ], [ 71.367188, 54.367759 ], [ 71.367188, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 54.572062 ], [ 70.664062, 54.572062 ], [ 70.664062, 55.178868 ], [ 69.960938, 55.178868 ], [ 69.960938, 55.379110 ], [ 69.257812, 55.379110 ], [ 69.257812, 55.578345 ], [ 68.906250, 55.578345 ], [ 68.906250, 55.379110 ], [ 68.554688, 55.379110 ], [ 68.554688, 55.178868 ], [ 68.203125, 55.178868 ], [ 68.203125, 54.977614 ], [ 66.796875, 54.977614 ], [ 66.796875, 54.775346 ], [ 65.390625, 54.775346 ], [ 65.390625, 54.572062 ], [ 65.039062, 54.572062 ], [ 65.039062, 54.367759 ], [ 63.281250, 54.367759 ], [ 63.281250, 54.162434 ], [ 61.171875, 54.162434 ], [ 61.171875, 53.956086 ], [ 60.820312, 53.956086 ], [ 60.820312, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 52.908902 ], [ 60.468750, 52.908902 ], [ 60.468750, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.268157 ], [ 60.117188, 52.268157 ], [ 60.117188, 52.052490 ], [ 59.765625, 52.052490 ], [ 59.765625, 51.835778 ], [ 60.468750, 51.835778 ], [ 60.468750, 51.618017 ], [ 61.171875, 51.618017 ], [ 61.171875, 51.399206 ], [ 61.523438, 51.399206 ], [ 61.523438, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 50.958427 ], [ 59.765625, 50.958427 ], [ 59.765625, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 51.179343 ], [ 56.601562, 51.179343 ], [ 56.601562, 50.958427 ], [ 55.898438, 50.958427 ], [ 55.898438, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.835778 ], [ 50.625000, 51.835778 ], [ 50.625000, 51.618017 ], [ 50.273438, 51.618017 ], [ 50.273438, 51.399206 ], [ 49.921875, 51.399206 ], [ 49.921875, 51.179343 ], [ 49.218750, 51.179343 ], [ 49.218750, 50.958427 ], [ 48.867188, 50.958427 ], [ 48.867188, 50.736455 ], [ 48.515625, 50.736455 ], [ 48.515625, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 50.289339 ], [ 47.109375, 50.289339 ], [ 47.109375, 49.837982 ], [ 46.757812, 49.837982 ], [ 46.757812, 49.382373 ], [ 46.406250, 49.382373 ], [ 46.406250, 49.152970 ], [ 46.757812, 49.152970 ], [ 46.757812, 48.690960 ], [ 46.406250, 48.690960 ], [ 46.406250, 48.224673 ], [ 46.757812, 48.224673 ], [ 46.757812, 47.754098 ], [ 47.812500, 47.754098 ], [ 47.812500, 47.517201 ], [ 48.164062, 47.517201 ], [ 48.164062, 47.279229 ], [ 48.515625, 47.279229 ], [ 48.515625, 46.558860 ], [ 48.867188, 46.558860 ], [ 48.867188, 46.073231 ], [ 48.515625, 46.073231 ], [ 48.515625, 45.828799 ], [ 47.460938, 45.828799 ], [ 47.460938, 45.583290 ], [ 47.109375, 45.583290 ], [ 47.109375, 45.336702 ], [ 46.757812, 45.336702 ], [ 46.757812, 44.840291 ], [ 46.406250, 44.840291 ], [ 46.406250, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.339565 ], [ 47.109375, 44.339565 ], [ 47.109375, 43.834527 ], [ 47.460938, 43.834527 ], [ 47.460938, 42.811522 ], [ 47.812500, 42.811522 ], [ 47.812500, 42.553080 ], [ 48.164062, 42.553080 ], [ 48.164062, 42.032974 ], [ 48.515625, 42.032974 ], [ 48.515625, 41.771312 ], [ 48.164062, 41.771312 ], [ 48.164062, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 41.244772 ], [ 46.757812, 41.244772 ], [ 46.757812, 41.771312 ], [ 46.406250, 41.771312 ], [ 46.406250, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.351562, 42.293564 ], [ 45.351562, 42.553080 ], [ 44.648438, 42.553080 ], [ 44.648438, 42.811522 ], [ 44.296875, 42.811522 ], [ 44.296875, 42.553080 ], [ 43.593750, 42.553080 ], [ 43.593750, 42.811522 ], [ 42.890625, 42.811522 ], [ 42.890625, 43.068888 ], [ 42.187500, 43.068888 ], [ 42.187500, 43.325178 ], [ 41.132812, 43.325178 ], [ 41.132812, 43.580391 ], [ 39.375000, 43.580391 ], [ 39.375000, 43.834527 ], [ 39.023438, 43.834527 ], [ 39.023438, 44.087585 ], [ 38.671875, 44.087585 ], [ 38.671875, 44.339565 ], [ 37.968750, 44.339565 ], [ 37.968750, 44.590467 ], [ 37.265625, 44.590467 ], [ 37.265625, 44.840291 ], [ 36.914062, 44.840291 ], [ 36.914062, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 45.336702 ], [ 37.265625, 45.336702 ], [ 37.265625, 45.583290 ], [ 37.617188, 45.583290 ], [ 37.617188, 46.073231 ], [ 37.968750, 46.073231 ], [ 37.968750, 46.558860 ], [ 37.617188, 46.558860 ], [ 37.617188, 46.800059 ], [ 38.320312, 46.800059 ], [ 38.320312, 47.040182 ], [ 39.023438, 47.040182 ], [ 39.023438, 47.279229 ], [ 37.968750, 47.279229 ], [ 37.968750, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 48.690960 ], [ 39.375000, 48.690960 ], [ 39.375000, 48.922499 ], [ 39.726562, 48.922499 ], [ 39.726562, 49.152970 ], [ 40.078125, 49.152970 ], [ 40.078125, 49.382373 ], [ 39.726562, 49.382373 ], [ 39.726562, 49.610710 ], [ 39.023438, 49.610710 ], [ 39.023438, 49.837982 ], [ 38.320312, 49.837982 ], [ 38.320312, 50.064192 ], [ 37.617188, 50.064192 ], [ 37.617188, 50.289339 ], [ 35.859375, 50.289339 ], [ 35.859375, 50.513427 ], [ 35.156250, 50.513427 ], [ 35.156250, 51.179343 ], [ 34.804688, 51.179343 ], [ 34.804688, 51.399206 ], [ 34.101562, 51.399206 ], [ 34.101562, 52.052490 ], [ 33.750000, 52.052490 ], [ 33.750000, 52.482780 ], [ 33.398438, 52.482780 ], [ 33.398438, 52.268157 ], [ 31.640625, 52.268157 ], [ 31.640625, 52.482780 ], [ 31.289062, 52.482780 ], [ 31.289062, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.748711 ], [ 31.640625, 53.748711 ], [ 31.640625, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 54.367759 ], [ 30.937500, 54.367759 ], [ 30.937500, 54.775346 ], [ 30.585938, 54.775346 ], [ 30.585938, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.379110 ], [ 30.585938, 55.379110 ], [ 30.585938, 55.578345 ], [ 30.234375, 55.578345 ], [ 30.234375, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.559482 ], [ 27.773438, 56.559482 ], [ 27.773438, 57.136239 ], [ 27.421875, 57.136239 ], [ 27.421875, 57.326521 ], [ 27.070312, 57.326521 ], [ 27.070312, 57.704147 ], [ 27.421875, 57.704147 ], [ 27.421875, 58.813742 ], [ 27.773438, 58.813742 ], [ 27.773438, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.355596 ], [ 27.773438, 59.355596 ], [ 27.773438, 59.534318 ], [ 28.125000, 59.534318 ], [ 28.125000, 59.712097 ], [ 28.476562, 59.712097 ], [ 28.476562, 59.888937 ], [ 28.828125, 59.888937 ], [ 28.828125, 60.064840 ], [ 28.476562, 60.064840 ], [ 28.476562, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.413852 ], [ 27.773438, 60.413852 ], [ 27.773438, 60.586967 ], [ 28.125000, 60.586967 ], [ 28.125000, 60.930432 ], [ 28.476562, 60.930432 ], [ 28.476562, 61.100789 ], [ 28.828125, 61.100789 ], [ 28.828125, 61.270233 ], [ 29.179688, 61.270233 ], [ 29.179688, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 61.773123 ], [ 29.882812, 61.773123 ], [ 29.882812, 61.938950 ], [ 30.234375, 61.938950 ], [ 30.234375, 62.103883 ], [ 30.585938, 62.103883 ], [ 30.585938, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.593341 ], [ 31.289062, 62.593341 ], [ 31.289062, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 63.074866 ], [ 30.585938, 63.074866 ], [ 30.585938, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.548552 ], [ 29.882812, 63.548552 ], [ 29.882812, 64.014496 ], [ 30.234375, 64.014496 ], [ 30.234375, 64.472794 ], [ 29.882812, 64.472794 ], [ 29.882812, 64.774125 ], [ 29.531250, 64.774125 ], [ 29.531250, 65.512963 ], [ 29.882812, 65.512963 ], [ 29.882812, 66.089364 ], [ 29.531250, 66.089364 ], [ 29.531250, 66.513260 ], [ 29.179688, 66.513260 ], [ 29.179688, 66.791909 ], [ 28.828125, 66.791909 ], [ 28.828125, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 67.204032 ], [ 40.781250, 67.204032 ], [ 40.781250, 66.652977 ], [ 40.429688, 66.652977 ], [ 40.429688, 66.513260 ], [ 40.078125, 66.513260 ], [ 40.078125, 66.372755 ], [ 39.726562, 66.372755 ], [ 39.726562, 66.231457 ], [ 39.023438, 66.231457 ], [ 39.023438, 66.089364 ], [ 37.617188, 66.089364 ], [ 37.617188, 66.231457 ], [ 36.914062, 66.231457 ], [ 36.914062, 66.372755 ], [ 35.859375, 66.372755 ], [ 35.859375, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.320872 ], [ 35.507812, 64.320872 ], [ 35.507812, 64.168107 ], [ 36.210938, 64.168107 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.860036 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.472794 ], [ 36.562500, 64.472794 ], [ 36.562500, 64.623877 ], [ 36.210938, 64.623877 ], [ 36.210938, 64.774125 ], [ 36.562500, 64.774125 ], [ 36.562500, 65.072130 ], [ 37.617188, 65.072130 ], [ 37.617188, 64.923542 ], [ 38.320312, 64.923542 ], [ 38.320312, 64.774125 ], [ 39.023438, 64.774125 ], [ 39.023438, 64.623877 ], [ 40.078125, 64.623877 ], [ 40.078125, 64.774125 ], [ 40.429688, 64.774125 ], [ 40.429688, 64.923542 ], [ 40.078125, 64.923542 ], [ 40.078125, 65.219894 ], [ 39.726562, 65.219894 ], [ 39.726562, 65.512963 ], [ 40.078125, 65.512963 ], [ 40.078125, 65.658275 ], [ 40.429688, 65.658275 ], [ 40.429688, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 66.089364 ], [ 41.132812, 66.089364 ], [ 41.132812, 66.231457 ], [ 41.484375, 66.231457 ], [ 41.484375, 66.372755 ], [ 41.835938, 66.372755 ], [ 41.835938, 66.513260 ], [ 42.890625, 66.513260 ], [ 42.890625, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.791909 ], [ 43.945312, 66.791909 ], [ 43.945312, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 67.204032 ], [ 45.351562, 67.204032 ], [ 45.351562, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.791909 ], [ 47.109375, 66.791909 ], [ 47.109375, 66.930060 ], [ 47.812500, 66.930060 ], [ 47.812500, 67.204032 ], [ 72.421875, 67.204032 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.652977 ], [ 71.367188, 66.652977 ], [ 71.367188, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.652977 ], [ 73.476562, 66.652977 ], [ 73.476562, 66.791909 ], [ 73.828125, 66.791909 ], [ 73.828125, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.445312, 55.379110 ], [ 21.445312, 55.178868 ], [ 22.148438, 55.178868 ], [ 22.148438, 54.977614 ], [ 22.500000, 54.977614 ], [ 22.500000, 54.367759 ], [ 19.687500, 54.367759 ], [ 19.687500, 54.572062 ], [ 19.335938, 54.572062 ], [ 19.335938, 54.775346 ], [ 19.687500, 54.775346 ], [ 19.687500, 54.977614 ], [ 20.390625, 54.977614 ], [ 20.390625, 55.178868 ], [ 21.093750, 55.178868 ], [ 21.093750, 55.379110 ], [ 21.445312, 55.379110 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 67.204032 ], [ 16.171875, 66.930060 ], [ 15.820312, 66.930060 ], [ 15.820312, 66.652977 ], [ 15.468750, 66.652977 ], [ 15.468750, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 65.658275 ], [ 14.414062, 65.658275 ], [ 14.414062, 65.219894 ], [ 14.062500, 65.219894 ], [ 14.062500, 64.923542 ], [ 13.710938, 64.923542 ], [ 13.710938, 64.623877 ], [ 14.062500, 64.623877 ], [ 14.062500, 64.168107 ], [ 13.710938, 64.168107 ], [ 13.710938, 64.014496 ], [ 12.656250, 64.014496 ], [ 12.656250, 63.704722 ], [ 12.304688, 63.704722 ], [ 12.304688, 63.233627 ], [ 11.953125, 63.233627 ], [ 11.953125, 61.606396 ], [ 12.304688, 61.606396 ], [ 12.304688, 61.270233 ], [ 12.656250, 61.270233 ], [ 12.656250, 60.586967 ], [ 12.304688, 60.586967 ], [ 12.304688, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 59.534318 ], [ 11.601562, 59.534318 ], [ 11.601562, 59.175928 ], [ 11.250000, 59.175928 ], [ 11.250000, 58.813742 ], [ 10.898438, 58.813742 ], [ 10.898438, 58.995311 ], [ 10.546875, 58.995311 ], [ 10.546875, 59.355596 ], [ 9.843750, 59.355596 ], [ 9.843750, 58.995311 ], [ 9.492188, 58.995311 ], [ 9.492188, 58.813742 ], [ 9.140625, 58.813742 ], [ 9.140625, 58.631217 ], [ 8.789062, 58.631217 ], [ 8.789062, 58.263287 ], [ 8.085938, 58.263287 ], [ 8.085938, 58.077876 ], [ 6.679688, 58.077876 ], [ 6.679688, 58.263287 ], [ 5.976562, 58.263287 ], [ 5.976562, 58.447733 ], [ 5.625000, 58.447733 ], [ 5.625000, 59.175928 ], [ 5.273438, 59.175928 ], [ 5.273438, 60.759160 ], [ 4.921875, 60.759160 ], [ 4.921875, 61.938950 ], [ 5.273438, 61.938950 ], [ 5.273438, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.431074 ], [ 5.976562, 62.431074 ], [ 5.976562, 62.593341 ], [ 6.328125, 62.593341 ], [ 6.328125, 62.754726 ], [ 7.031250, 62.754726 ], [ 7.031250, 62.915233 ], [ 7.382812, 62.915233 ], [ 7.382812, 63.074866 ], [ 7.734375, 63.074866 ], [ 7.734375, 63.233627 ], [ 8.437500, 63.233627 ], [ 8.437500, 63.391522 ], [ 8.789062, 63.391522 ], [ 8.789062, 63.548552 ], [ 9.140625, 63.548552 ], [ 9.140625, 63.704722 ], [ 9.492188, 63.704722 ], [ 9.492188, 64.014496 ], [ 9.843750, 64.014496 ], [ 9.843750, 64.168107 ], [ 10.195312, 64.168107 ], [ 10.195312, 64.320872 ], [ 10.546875, 64.320872 ], [ 10.546875, 64.623877 ], [ 10.898438, 64.623877 ], [ 10.898438, 64.923542 ], [ 11.250000, 64.923542 ], [ 11.250000, 65.219894 ], [ 11.601562, 65.219894 ], [ 11.601562, 65.512963 ], [ 11.953125, 65.512963 ], [ 11.953125, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 65.946472 ], [ 12.656250, 65.946472 ], [ 12.656250, 66.231457 ], [ 13.007812, 66.231457 ], [ 13.007812, 66.513260 ], [ 13.359375, 66.513260 ], [ 13.359375, 66.791909 ], [ 13.710938, 66.791909 ], [ 13.710938, 67.067433 ], [ 14.062500, 67.067433 ], [ 14.062500, 67.204032 ], [ 16.171875, 67.204032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 67.204032 ], [ 15.820312, 66.930060 ], [ 15.468750, 66.930060 ], [ 15.468750, 66.652977 ], [ 15.117188, 66.652977 ], [ 15.117188, 66.372755 ], [ 14.765625, 66.372755 ], [ 14.765625, 65.946472 ], [ 14.414062, 65.946472 ], [ 14.414062, 65.658275 ], [ 14.062500, 65.658275 ], [ 14.062500, 65.366837 ], [ 13.710938, 65.366837 ], [ 13.710938, 65.072130 ], [ 13.359375, 65.072130 ], [ 13.359375, 64.623877 ], [ 13.710938, 64.623877 ], [ 13.710938, 64.320872 ], [ 13.359375, 64.320872 ], [ 13.359375, 64.168107 ], [ 12.304688, 64.168107 ], [ 12.304688, 63.860036 ], [ 11.953125, 63.860036 ], [ 11.953125, 63.391522 ], [ 11.601562, 63.391522 ], [ 11.601562, 62.593341 ], [ 11.953125, 62.593341 ], [ 11.953125, 61.606396 ], [ 12.304688, 61.606396 ], [ 12.304688, 60.759160 ], [ 11.953125, 60.759160 ], [ 11.953125, 60.064840 ], [ 11.601562, 60.064840 ], [ 11.601562, 59.712097 ], [ 11.250000, 59.712097 ], [ 11.250000, 59.175928 ], [ 10.898438, 59.175928 ], [ 10.898438, 58.995311 ], [ 10.546875, 58.995311 ], [ 10.546875, 59.355596 ], [ 9.843750, 59.355596 ], [ 9.843750, 59.175928 ], [ 9.492188, 59.175928 ], [ 9.492188, 58.995311 ], [ 9.140625, 58.995311 ], [ 9.140625, 58.813742 ], [ 8.789062, 58.813742 ], [ 8.789062, 58.631217 ], [ 8.437500, 58.631217 ], [ 8.437500, 58.447733 ], [ 8.085938, 58.447733 ], [ 8.085938, 58.263287 ], [ 7.382812, 58.263287 ], [ 7.382812, 58.077876 ], [ 6.679688, 58.077876 ], [ 6.679688, 58.263287 ], [ 5.976562, 58.263287 ], [ 5.976562, 58.447733 ], [ 5.625000, 58.447733 ], [ 5.625000, 59.175928 ], [ 5.273438, 59.175928 ], [ 5.273438, 60.930432 ], [ 4.921875, 60.930432 ], [ 4.921875, 62.267923 ], [ 5.273438, 62.267923 ], [ 5.273438, 62.593341 ], [ 5.625000, 62.593341 ], [ 5.625000, 62.754726 ], [ 5.976562, 62.754726 ], [ 5.976562, 62.915233 ], [ 6.679688, 62.915233 ], [ 6.679688, 63.074866 ], [ 7.382812, 63.074866 ], [ 7.382812, 63.233627 ], [ 7.734375, 63.233627 ], [ 7.734375, 63.391522 ], [ 8.437500, 63.391522 ], [ 8.437500, 63.548552 ], [ 8.789062, 63.548552 ], [ 8.789062, 63.860036 ], [ 9.140625, 63.860036 ], [ 9.140625, 64.014496 ], [ 9.492188, 64.014496 ], [ 9.492188, 64.168107 ], [ 9.843750, 64.168107 ], [ 9.843750, 64.472794 ], [ 10.195312, 64.472794 ], [ 10.195312, 64.623877 ], [ 10.546875, 64.623877 ], [ 10.546875, 64.923542 ], [ 10.898438, 64.923542 ], [ 10.898438, 65.072130 ], [ 11.250000, 65.072130 ], [ 11.250000, 65.366837 ], [ 11.601562, 65.366837 ], [ 11.601562, 65.512963 ], [ 11.953125, 65.512963 ], [ 11.953125, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.930060 ], [ 13.710938, 66.930060 ], [ 13.710938, 67.204032 ], [ 15.820312, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 55.973798 ], [ 12.304688, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 55.379110 ], [ 12.304688, 55.379110 ], [ 12.304688, 54.977614 ], [ 11.953125, 54.977614 ], [ 11.953125, 54.775346 ], [ 11.601562, 54.775346 ], [ 11.601562, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.178868 ], [ 10.898438, 55.178868 ], [ 10.898438, 55.776573 ], [ 11.601562, 55.776573 ], [ 11.601562, 55.973798 ], [ 12.304688, 55.973798 ] ] ], [ [ [ 10.546875, 57.515823 ], [ 10.546875, 56.944974 ], [ 10.195312, 56.944974 ], [ 10.195312, 56.365250 ], [ 10.898438, 56.365250 ], [ 10.898438, 56.170023 ], [ 10.195312, 56.170023 ], [ 10.195312, 55.973798 ], [ 9.843750, 55.973798 ], [ 9.843750, 55.578345 ], [ 9.492188, 55.578345 ], [ 9.492188, 55.178868 ], [ 9.843750, 55.178868 ], [ 9.843750, 54.775346 ], [ 8.437500, 54.775346 ], [ 8.437500, 55.178868 ], [ 8.085938, 55.178868 ], [ 8.085938, 56.944974 ], [ 8.437500, 56.944974 ], [ 8.437500, 57.136239 ], [ 9.492188, 57.136239 ], [ 9.492188, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 57.515823 ], [ 10.546875, 57.515823 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.170023 ], [ 12.304688, 55.973798 ], [ 12.656250, 55.973798 ], [ 12.656250, 55.578345 ], [ 12.304688, 55.578345 ], [ 12.304688, 55.178868 ], [ 11.953125, 55.178868 ], [ 11.953125, 54.977614 ], [ 11.601562, 54.977614 ], [ 11.601562, 55.178868 ], [ 10.898438, 55.178868 ], [ 10.898438, 55.973798 ], [ 11.953125, 55.973798 ], [ 11.953125, 56.170023 ], [ 12.304688, 56.170023 ] ] ], [ [ [ 10.546875, 57.704147 ], [ 10.546875, 57.136239 ], [ 10.195312, 57.136239 ], [ 10.195312, 56.559482 ], [ 10.898438, 56.559482 ], [ 10.898438, 56.365250 ], [ 10.546875, 56.365250 ], [ 10.546875, 56.170023 ], [ 9.843750, 56.170023 ], [ 9.843750, 55.776573 ], [ 9.492188, 55.776573 ], [ 9.492188, 55.379110 ], [ 9.843750, 55.379110 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 55.178868 ], [ 8.085938, 55.178868 ], [ 8.085938, 56.944974 ], [ 8.437500, 56.944974 ], [ 8.437500, 57.136239 ], [ 9.140625, 57.136239 ], [ 9.140625, 57.326521 ], [ 9.492188, 57.326521 ], [ 9.492188, 57.515823 ], [ 9.843750, 57.515823 ], [ 9.843750, 57.704147 ], [ 10.546875, 57.704147 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 67.204032 ], [ 23.554688, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 65.802776 ], [ 22.851562, 65.802776 ], [ 22.851562, 65.658275 ], [ 22.148438, 65.658275 ], [ 22.148438, 65.512963 ], [ 21.796875, 65.512963 ], [ 21.796875, 65.366837 ], [ 21.445312, 65.366837 ], [ 21.445312, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.774125 ], [ 21.445312, 64.774125 ], [ 21.445312, 64.320872 ], [ 21.093750, 64.320872 ], [ 21.093750, 64.168107 ], [ 20.742188, 64.168107 ], [ 20.742188, 64.014496 ], [ 20.390625, 64.014496 ], [ 20.390625, 63.704722 ], [ 20.039062, 63.704722 ], [ 20.039062, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.391522 ], [ 19.335938, 63.391522 ], [ 19.335938, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 63.074866 ], [ 18.632812, 63.074866 ], [ 18.632812, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.754726 ], [ 17.929688, 62.754726 ], [ 17.929688, 62.267923 ], [ 17.578125, 62.267923 ], [ 17.578125, 61.606396 ], [ 17.226562, 61.606396 ], [ 17.226562, 61.100789 ], [ 17.578125, 61.100789 ], [ 17.578125, 60.759160 ], [ 17.929688, 60.759160 ], [ 17.929688, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.064840 ], [ 18.632812, 60.064840 ], [ 18.632812, 59.712097 ], [ 18.281250, 59.712097 ], [ 18.281250, 59.175928 ], [ 17.929688, 59.175928 ], [ 17.929688, 58.813742 ], [ 17.226562, 58.813742 ], [ 17.226562, 58.631217 ], [ 16.875000, 58.631217 ], [ 16.875000, 57.891497 ], [ 16.523438, 57.891497 ], [ 16.523438, 56.752723 ], [ 16.171875, 56.752723 ], [ 16.171875, 56.365250 ], [ 15.820312, 56.365250 ], [ 15.820312, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.765625, 55.973798 ], [ 14.414062, 55.973798 ], [ 14.414062, 55.578345 ], [ 14.062500, 55.578345 ], [ 14.062500, 55.379110 ], [ 13.007812, 55.379110 ], [ 13.007812, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 56.559482 ], [ 12.304688, 56.559482 ], [ 12.304688, 57.136239 ], [ 11.953125, 57.136239 ], [ 11.953125, 57.704147 ], [ 11.601562, 57.704147 ], [ 11.601562, 58.077876 ], [ 11.250000, 58.077876 ], [ 11.250000, 58.447733 ], [ 10.898438, 58.447733 ], [ 10.898438, 58.813742 ], [ 11.250000, 58.813742 ], [ 11.250000, 59.175928 ], [ 11.601562, 59.175928 ], [ 11.601562, 59.534318 ], [ 11.953125, 59.534318 ], [ 11.953125, 59.888937 ], [ 12.304688, 59.888937 ], [ 12.304688, 60.586967 ], [ 12.656250, 60.586967 ], [ 12.656250, 61.270233 ], [ 12.304688, 61.270233 ], [ 12.304688, 61.606396 ], [ 11.953125, 61.606396 ], [ 11.953125, 63.233627 ], [ 12.304688, 63.233627 ], [ 12.304688, 63.704722 ], [ 12.656250, 63.704722 ], [ 12.656250, 64.014496 ], [ 13.710938, 64.014496 ], [ 13.710938, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 64.623877 ], [ 13.710938, 64.623877 ], [ 13.710938, 64.923542 ], [ 14.062500, 64.923542 ], [ 14.062500, 65.219894 ], [ 14.414062, 65.219894 ], [ 14.414062, 65.658275 ], [ 14.765625, 65.658275 ], [ 14.765625, 65.946472 ], [ 15.117188, 65.946472 ], [ 15.117188, 66.372755 ], [ 15.468750, 66.372755 ], [ 15.468750, 66.652977 ], [ 15.820312, 66.652977 ], [ 15.820312, 66.930060 ], [ 16.171875, 66.930060 ], [ 16.171875, 67.204032 ], [ 23.554688, 67.204032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 67.204032 ], [ 23.203125, 66.791909 ], [ 23.554688, 66.791909 ], [ 23.554688, 65.946472 ], [ 22.851562, 65.946472 ], [ 22.851562, 65.802776 ], [ 22.148438, 65.802776 ], [ 22.148438, 65.658275 ], [ 21.796875, 65.658275 ], [ 21.796875, 65.366837 ], [ 21.445312, 65.366837 ], [ 21.445312, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.320872 ], [ 20.742188, 64.320872 ], [ 20.742188, 64.168107 ], [ 20.390625, 64.168107 ], [ 20.390625, 63.860036 ], [ 20.039062, 63.860036 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.335938, 63.548552 ], [ 19.335938, 63.391522 ], [ 18.984375, 63.391522 ], [ 18.984375, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.074866 ], [ 18.281250, 63.074866 ], [ 18.281250, 62.915233 ], [ 17.929688, 62.915233 ], [ 17.929688, 62.754726 ], [ 17.578125, 62.754726 ], [ 17.578125, 62.431074 ], [ 17.226562, 62.431074 ], [ 17.226562, 61.773123 ], [ 16.875000, 61.773123 ], [ 16.875000, 61.270233 ], [ 17.226562, 61.270233 ], [ 17.226562, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.586967 ], [ 17.929688, 60.586967 ], [ 17.929688, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.239811 ], [ 18.632812, 60.239811 ], [ 18.632812, 59.888937 ], [ 18.281250, 59.888937 ], [ 18.281250, 59.534318 ], [ 17.929688, 59.534318 ], [ 17.929688, 59.175928 ], [ 17.578125, 59.175928 ], [ 17.578125, 58.995311 ], [ 17.226562, 58.995311 ], [ 17.226562, 58.813742 ], [ 16.523438, 58.813742 ], [ 16.523438, 57.891497 ], [ 16.171875, 57.891497 ], [ 16.171875, 56.559482 ], [ 15.820312, 56.559482 ], [ 15.820312, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.765625, 56.365250 ], [ 14.414062, 56.365250 ], [ 14.414062, 55.973798 ], [ 14.062500, 55.973798 ], [ 14.062500, 55.578345 ], [ 13.710938, 55.578345 ], [ 13.710938, 55.379110 ], [ 12.656250, 55.379110 ], [ 12.656250, 55.776573 ], [ 12.304688, 55.776573 ], [ 12.304688, 56.559482 ], [ 11.953125, 56.559482 ], [ 11.953125, 57.136239 ], [ 11.601562, 57.136239 ], [ 11.601562, 57.891497 ], [ 11.250000, 57.891497 ], [ 11.250000, 58.631217 ], [ 10.898438, 58.631217 ], [ 10.898438, 59.175928 ], [ 11.250000, 59.175928 ], [ 11.250000, 59.712097 ], [ 11.601562, 59.712097 ], [ 11.601562, 60.064840 ], [ 11.953125, 60.064840 ], [ 11.953125, 60.759160 ], [ 12.304688, 60.759160 ], [ 12.304688, 61.606396 ], [ 11.953125, 61.606396 ], [ 11.953125, 62.593341 ], [ 11.601562, 62.593341 ], [ 11.601562, 63.391522 ], [ 11.953125, 63.391522 ], [ 11.953125, 63.860036 ], [ 12.304688, 63.860036 ], [ 12.304688, 64.168107 ], [ 13.359375, 64.168107 ], [ 13.359375, 64.320872 ], [ 13.710938, 64.320872 ], [ 13.710938, 64.623877 ], [ 13.359375, 64.623877 ], [ 13.359375, 65.072130 ], [ 13.710938, 65.072130 ], [ 13.710938, 65.366837 ], [ 14.062500, 65.366837 ], [ 14.062500, 65.658275 ], [ 14.414062, 65.658275 ], [ 14.414062, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 66.652977 ], [ 15.468750, 66.652977 ], [ 15.468750, 66.930060 ], [ 15.820312, 66.930060 ], [ 15.820312, 67.204032 ], [ 23.203125, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.540307 ], [ 7.031250, 52.696361 ], [ 6.679688, 52.696361 ], [ 6.679688, 51.835778 ], [ 5.976562, 51.835778 ], [ 5.976562, 51.179343 ], [ 6.328125, 51.179343 ], [ 6.328125, 50.736455 ], [ 5.625000, 50.736455 ], [ 5.625000, 50.958427 ], [ 5.273438, 50.958427 ], [ 5.273438, 51.179343 ], [ 3.515625, 51.179343 ], [ 3.515625, 51.399206 ], [ 3.867188, 51.399206 ], [ 3.867188, 51.835778 ], [ 4.218750, 51.835778 ], [ 4.218750, 52.696361 ], [ 4.570312, 52.696361 ], [ 4.570312, 53.120405 ], [ 5.273438, 53.120405 ], [ 5.273438, 53.330873 ], [ 5.976562, 53.330873 ], [ 5.976562, 53.540307 ], [ 7.031250, 53.540307 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.679688, 53.540307 ], [ 6.679688, 53.330873 ], [ 7.031250, 53.330873 ], [ 7.031250, 52.696361 ], [ 6.679688, 52.696361 ], [ 6.679688, 52.052490 ], [ 5.976562, 52.052490 ], [ 5.976562, 50.958427 ], [ 5.273438, 50.958427 ], [ 5.273438, 51.399206 ], [ 4.921875, 51.399206 ], [ 4.921875, 51.618017 ], [ 4.570312, 51.618017 ], [ 4.570312, 51.399206 ], [ 3.164062, 51.399206 ], [ 3.164062, 51.618017 ], [ 3.515625, 51.618017 ], [ 3.515625, 52.052490 ], [ 3.867188, 52.052490 ], [ 3.867188, 52.482780 ], [ 4.218750, 52.482780 ], [ 4.218750, 52.908902 ], [ 4.570312, 52.908902 ], [ 4.570312, 53.120405 ], [ 5.273438, 53.120405 ], [ 5.273438, 53.330873 ], [ 5.976562, 53.330873 ], [ 5.976562, 53.540307 ], [ 6.679688, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.399206 ], [ 3.515625, 51.179343 ], [ 5.273438, 51.179343 ], [ 5.273438, 50.958427 ], [ 5.625000, 50.958427 ], [ 5.625000, 50.736455 ], [ 6.328125, 50.736455 ], [ 6.328125, 50.289339 ], [ 5.976562, 50.289339 ], [ 5.976562, 50.064192 ], [ 5.625000, 50.064192 ], [ 5.625000, 49.610710 ], [ 5.273438, 49.610710 ], [ 5.273438, 49.837982 ], [ 3.867188, 49.837982 ], [ 3.867188, 50.064192 ], [ 3.515625, 50.064192 ], [ 3.515625, 50.513427 ], [ 3.164062, 50.513427 ], [ 3.164062, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 3.164062, 51.179343 ], [ 3.164062, 51.399206 ], [ 3.515625, 51.399206 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.618017 ], [ 4.921875, 51.399206 ], [ 5.273438, 51.399206 ], [ 5.273438, 50.958427 ], [ 5.976562, 50.958427 ], [ 5.976562, 50.289339 ], [ 5.625000, 50.289339 ], [ 5.625000, 49.610710 ], [ 5.273438, 49.610710 ], [ 5.273438, 49.837982 ], [ 4.570312, 49.837982 ], [ 4.570312, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 50.513427 ], [ 3.164062, 50.513427 ], [ 3.164062, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 3.164062, 51.179343 ], [ 3.164062, 51.399206 ], [ 4.570312, 51.399206 ], [ 4.570312, 51.618017 ], [ 4.921875, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.064192 ], [ 5.976562, 49.837982 ], [ 6.328125, 49.837982 ], [ 6.328125, 49.382373 ], [ 5.625000, 49.382373 ], [ 5.625000, 50.064192 ], [ 5.976562, 50.064192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.289339 ], [ 5.976562, 49.610710 ], [ 5.625000, 49.610710 ], [ 5.625000, 50.289339 ], [ 5.976562, 50.289339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.775346 ], [ 9.843750, 54.572062 ], [ 10.195312, 54.572062 ], [ 10.195312, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 53.956086 ], [ 11.601562, 53.956086 ], [ 11.601562, 54.162434 ], [ 12.304688, 54.162434 ], [ 12.304688, 54.367759 ], [ 13.359375, 54.367759 ], [ 13.359375, 54.162434 ], [ 13.710938, 54.162434 ], [ 13.710938, 53.956086 ], [ 14.062500, 53.956086 ], [ 14.062500, 53.540307 ], [ 14.414062, 53.540307 ], [ 14.414062, 53.120405 ], [ 14.062500, 53.120405 ], [ 14.062500, 52.696361 ], [ 14.414062, 52.696361 ], [ 14.414062, 52.268157 ], [ 14.765625, 52.268157 ], [ 14.765625, 51.399206 ], [ 15.117188, 51.399206 ], [ 15.117188, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.289339 ], [ 12.304688, 50.289339 ], [ 12.304688, 49.837982 ], [ 12.656250, 49.837982 ], [ 12.656250, 49.382373 ], [ 13.007812, 49.382373 ], [ 13.007812, 49.152970 ], [ 13.359375, 49.152970 ], [ 13.359375, 48.922499 ], [ 13.710938, 48.922499 ], [ 13.710938, 48.690960 ], [ 13.359375, 48.690960 ], [ 13.359375, 48.224673 ], [ 13.007812, 48.224673 ], [ 13.007812, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 47.754098 ], [ 12.304688, 47.754098 ], [ 12.304688, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.279229 ], [ 9.843750, 47.279229 ], [ 9.843750, 47.517201 ], [ 8.789062, 47.517201 ], [ 8.789062, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.754098 ], [ 7.734375, 47.754098 ], [ 7.734375, 48.458352 ], [ 8.085938, 48.458352 ], [ 8.085938, 48.922499 ], [ 7.031250, 48.922499 ], [ 7.031250, 49.152970 ], [ 6.328125, 49.152970 ], [ 6.328125, 49.837982 ], [ 5.976562, 49.837982 ], [ 5.976562, 50.289339 ], [ 6.328125, 50.289339 ], [ 6.328125, 51.179343 ], [ 5.976562, 51.179343 ], [ 5.976562, 51.835778 ], [ 6.679688, 51.835778 ], [ 6.679688, 52.696361 ], [ 7.031250, 52.696361 ], [ 7.031250, 53.748711 ], [ 8.085938, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.437500, 53.540307 ], [ 8.437500, 53.748711 ], [ 8.789062, 53.748711 ], [ 8.789062, 54.162434 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.775346 ], [ 9.843750, 54.775346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.572062 ], [ 10.546875, 54.572062 ], [ 10.546875, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.162434 ], [ 11.601562, 54.162434 ], [ 11.601562, 54.367759 ], [ 13.007812, 54.367759 ], [ 13.007812, 54.162434 ], [ 13.359375, 54.162434 ], [ 13.359375, 53.956086 ], [ 14.062500, 53.956086 ], [ 14.062500, 52.908902 ], [ 14.414062, 52.908902 ], [ 14.414062, 51.399206 ], [ 14.765625, 51.399206 ], [ 14.765625, 51.179343 ], [ 14.062500, 51.179343 ], [ 14.062500, 50.958427 ], [ 13.710938, 50.958427 ], [ 13.710938, 50.736455 ], [ 13.007812, 50.736455 ], [ 13.007812, 50.513427 ], [ 12.656250, 50.513427 ], [ 12.656250, 50.289339 ], [ 11.953125, 50.289339 ], [ 11.953125, 50.064192 ], [ 12.304688, 50.064192 ], [ 12.304688, 49.382373 ], [ 13.007812, 49.382373 ], [ 13.007812, 49.152970 ], [ 13.359375, 49.152970 ], [ 13.359375, 48.690960 ], [ 13.007812, 48.690960 ], [ 13.007812, 48.458352 ], [ 12.656250, 48.458352 ], [ 12.656250, 47.989922 ], [ 13.007812, 47.989922 ], [ 13.007812, 47.517201 ], [ 12.304688, 47.517201 ], [ 12.304688, 47.754098 ], [ 10.546875, 47.754098 ], [ 10.546875, 47.517201 ], [ 9.843750, 47.517201 ], [ 9.843750, 47.754098 ], [ 8.789062, 47.754098 ], [ 8.789062, 47.989922 ], [ 8.437500, 47.989922 ], [ 8.437500, 47.754098 ], [ 7.382812, 47.754098 ], [ 7.382812, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 49.152970 ], [ 7.031250, 49.152970 ], [ 7.031250, 49.382373 ], [ 5.976562, 49.382373 ], [ 5.976562, 52.052490 ], [ 6.679688, 52.052490 ], [ 6.679688, 52.696361 ], [ 7.031250, 52.696361 ], [ 7.031250, 53.330873 ], [ 6.679688, 53.330873 ], [ 6.679688, 53.540307 ], [ 7.031250, 53.540307 ], [ 7.031250, 53.748711 ], [ 7.734375, 53.748711 ], [ 7.734375, 53.540307 ], [ 8.437500, 53.540307 ], [ 8.437500, 53.956086 ], [ 8.789062, 53.956086 ], [ 8.789062, 54.367759 ], [ 8.437500, 54.367759 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.789062, 47.754098 ], [ 8.789062, 47.517201 ], [ 9.492188, 47.517201 ], [ 9.492188, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 46.800059 ], [ 10.546875, 46.800059 ], [ 10.546875, 46.558860 ], [ 10.195312, 46.558860 ], [ 10.195312, 46.316584 ], [ 9.140625, 46.316584 ], [ 9.140625, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.828799 ], [ 6.679688, 45.828799 ], [ 6.679688, 46.073231 ], [ 6.328125, 46.073231 ], [ 6.328125, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.800059 ], [ 6.328125, 46.800059 ], [ 6.328125, 47.040182 ], [ 6.679688, 47.040182 ], [ 6.679688, 47.517201 ], [ 8.437500, 47.517201 ], [ 8.437500, 47.754098 ], [ 8.789062, 47.754098 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.789062, 47.989922 ], [ 8.789062, 47.754098 ], [ 9.492188, 47.754098 ], [ 9.492188, 47.279229 ], [ 9.140625, 47.279229 ], [ 9.140625, 47.040182 ], [ 10.195312, 47.040182 ], [ 10.195312, 46.316584 ], [ 8.789062, 46.316584 ], [ 8.789062, 46.073231 ], [ 7.734375, 46.073231 ], [ 7.734375, 45.828799 ], [ 6.679688, 45.828799 ], [ 6.679688, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.800059 ], [ 6.328125, 46.800059 ], [ 6.328125, 47.279229 ], [ 6.679688, 47.279229 ], [ 6.679688, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.989922 ], [ 8.789062, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.958427 ], [ 15.468750, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 17.578125, 50.289339 ], [ 17.578125, 50.064192 ], [ 18.281250, 50.064192 ], [ 18.281250, 49.837982 ], [ 18.632812, 49.837982 ], [ 18.632812, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.152970 ], [ 17.929688, 49.152970 ], [ 17.929688, 48.690960 ], [ 15.820312, 48.690960 ], [ 15.820312, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 48.690960 ], [ 14.414062, 48.690960 ], [ 14.414062, 48.458352 ], [ 14.062500, 48.458352 ], [ 14.062500, 48.690960 ], [ 13.710938, 48.690960 ], [ 13.710938, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 49.152970 ], [ 13.007812, 49.152970 ], [ 13.007812, 49.382373 ], [ 12.656250, 49.382373 ], [ 12.656250, 49.837982 ], [ 12.304688, 49.837982 ], [ 12.304688, 50.289339 ], [ 13.007812, 50.289339 ], [ 13.007812, 50.513427 ], [ 13.359375, 50.513427 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 50.958427 ], [ 15.468750, 50.958427 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 51.179343 ], [ 14.765625, 50.958427 ], [ 15.468750, 50.958427 ], [ 15.468750, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 16.523438, 50.289339 ], [ 16.523438, 50.513427 ], [ 17.226562, 50.513427 ], [ 17.226562, 50.289339 ], [ 17.578125, 50.289339 ], [ 17.578125, 50.064192 ], [ 18.281250, 50.064192 ], [ 18.281250, 49.837982 ], [ 18.632812, 49.837982 ], [ 18.632812, 49.610710 ], [ 18.281250, 49.610710 ], [ 18.281250, 49.382373 ], [ 17.929688, 49.382373 ], [ 17.929688, 49.152970 ], [ 17.578125, 49.152970 ], [ 17.578125, 48.922499 ], [ 16.875000, 48.922499 ], [ 16.875000, 48.690960 ], [ 16.171875, 48.690960 ], [ 16.171875, 48.922499 ], [ 15.117188, 48.922499 ], [ 15.117188, 49.152970 ], [ 14.765625, 49.152970 ], [ 14.765625, 48.922499 ], [ 14.414062, 48.922499 ], [ 14.414062, 48.690960 ], [ 13.359375, 48.690960 ], [ 13.359375, 49.152970 ], [ 13.007812, 49.152970 ], [ 13.007812, 49.382373 ], [ 12.304688, 49.382373 ], [ 12.304688, 50.064192 ], [ 11.953125, 50.064192 ], [ 11.953125, 50.289339 ], [ 12.656250, 50.289339 ], [ 12.656250, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.736455 ], [ 13.710938, 50.736455 ], [ 13.710938, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 51.179343 ], [ 14.765625, 51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 49.152970 ], [ 21.796875, 49.152970 ], [ 21.796875, 49.382373 ], [ 20.390625, 49.382373 ], [ 20.390625, 49.152970 ], [ 19.687500, 49.152970 ], [ 19.687500, 49.382373 ], [ 18.632812, 49.382373 ], [ 18.632812, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.736455 ], [ 15.468750, 50.958427 ], [ 15.117188, 50.958427 ], [ 15.117188, 51.399206 ], [ 14.765625, 51.399206 ], [ 14.765625, 52.268157 ], [ 14.414062, 52.268157 ], [ 14.414062, 52.696361 ], [ 14.062500, 52.696361 ], [ 14.062500, 53.120405 ], [ 14.414062, 53.120405 ], [ 14.414062, 53.540307 ], [ 14.062500, 53.540307 ], [ 14.062500, 53.748711 ], [ 14.765625, 53.748711 ], [ 14.765625, 53.956086 ], [ 15.117188, 53.956086 ], [ 15.117188, 54.162434 ], [ 15.820312, 54.162434 ], [ 15.820312, 54.367759 ], [ 16.523438, 54.367759 ], [ 16.523438, 54.572062 ], [ 17.226562, 54.572062 ], [ 17.226562, 54.775346 ], [ 18.632812, 54.775346 ], [ 18.632812, 54.367759 ], [ 22.851562, 54.367759 ], [ 22.851562, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 53.956086 ], [ 23.554688, 53.956086 ], [ 23.554688, 53.330873 ], [ 23.906250, 53.330873 ], [ 23.906250, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 52.268157 ], [ 23.554688, 52.268157 ], [ 23.554688, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.289339 ], [ 23.554688, 50.289339 ], [ 23.554688, 50.064192 ], [ 23.203125, 50.064192 ], [ 23.203125, 49.837982 ], [ 22.851562, 49.837982 ], [ 22.851562, 49.382373 ], [ 22.500000, 49.382373 ], [ 22.500000, 49.152970 ] ] ], [ [ [ 22.500000, 49.152970 ], [ 22.851562, 49.152970 ], [ 22.851562, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 49.152970 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 54.775346 ], [ 18.281250, 54.572062 ], [ 19.687500, 54.572062 ], [ 19.687500, 54.367759 ], [ 23.203125, 54.367759 ], [ 23.203125, 53.330873 ], [ 23.554688, 53.330873 ], [ 23.554688, 52.696361 ], [ 22.851562, 52.696361 ], [ 22.851562, 52.268157 ], [ 23.203125, 52.268157 ], [ 23.203125, 51.399206 ], [ 23.554688, 51.399206 ], [ 23.554688, 50.958427 ], [ 23.906250, 50.958427 ], [ 23.906250, 50.513427 ], [ 23.203125, 50.513427 ], [ 23.203125, 50.289339 ], [ 22.851562, 50.289339 ], [ 22.851562, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 49.152970 ], [ 22.148438, 49.152970 ], [ 22.148438, 49.382373 ], [ 18.984375, 49.382373 ], [ 18.984375, 49.610710 ], [ 18.632812, 49.610710 ], [ 18.632812, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.289339 ], [ 17.226562, 50.289339 ], [ 17.226562, 50.513427 ], [ 16.523438, 50.513427 ], [ 16.523438, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.736455 ], [ 15.468750, 50.958427 ], [ 14.765625, 50.958427 ], [ 14.765625, 51.399206 ], [ 14.414062, 51.399206 ], [ 14.414062, 52.908902 ], [ 14.062500, 52.908902 ], [ 14.062500, 53.956086 ], [ 14.765625, 53.956086 ], [ 14.765625, 54.162434 ], [ 15.468750, 54.162434 ], [ 15.468750, 54.367759 ], [ 16.171875, 54.367759 ], [ 16.171875, 54.572062 ], [ 16.875000, 54.572062 ], [ 16.875000, 54.775346 ], [ 18.281250, 54.775346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 48.922499 ], [ 15.820312, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 47.754098 ], [ 16.171875, 47.754098 ], [ 16.171875, 47.517201 ], [ 16.523438, 47.517201 ], [ 16.523438, 47.040182 ], [ 16.171875, 47.040182 ], [ 16.171875, 46.800059 ], [ 15.820312, 46.800059 ], [ 15.820312, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.316584 ], [ 14.062500, 46.316584 ], [ 14.062500, 46.558860 ], [ 12.656250, 46.558860 ], [ 12.656250, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 47.040182 ], [ 11.250000, 47.040182 ], [ 11.250000, 46.800059 ], [ 9.843750, 46.800059 ], [ 9.843750, 47.040182 ], [ 9.492188, 47.040182 ], [ 9.492188, 47.517201 ], [ 9.843750, 47.517201 ], [ 9.843750, 47.279229 ], [ 10.546875, 47.279229 ], [ 10.546875, 47.517201 ], [ 12.304688, 47.517201 ], [ 12.304688, 47.754098 ], [ 12.656250, 47.754098 ], [ 12.656250, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 48.224673 ], [ 13.359375, 48.224673 ], [ 13.359375, 48.690960 ], [ 14.062500, 48.690960 ], [ 14.062500, 48.458352 ], [ 14.414062, 48.458352 ], [ 14.414062, 48.690960 ], [ 14.765625, 48.690960 ], [ 14.765625, 48.922499 ], [ 15.820312, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.117188, 49.152970 ], [ 15.117188, 48.922499 ], [ 16.171875, 48.922499 ], [ 16.171875, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 47.754098 ], [ 16.171875, 47.754098 ], [ 16.171875, 47.517201 ], [ 16.523438, 47.517201 ], [ 16.523438, 47.279229 ], [ 16.171875, 47.279229 ], [ 16.171875, 46.800059 ], [ 15.117188, 46.800059 ], [ 15.117188, 46.558860 ], [ 12.656250, 46.558860 ], [ 12.656250, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 47.279229 ], [ 11.601562, 47.279229 ], [ 11.601562, 47.040182 ], [ 10.898438, 47.040182 ], [ 10.898438, 46.800059 ], [ 10.195312, 46.800059 ], [ 10.195312, 47.040182 ], [ 9.140625, 47.040182 ], [ 9.140625, 47.279229 ], [ 9.492188, 47.279229 ], [ 9.492188, 47.754098 ], [ 9.843750, 47.754098 ], [ 9.843750, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.754098 ], [ 12.304688, 47.754098 ], [ 12.304688, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 47.989922 ], [ 12.656250, 47.989922 ], [ 12.656250, 48.458352 ], [ 13.007812, 48.458352 ], [ 13.007812, 48.690960 ], [ 14.414062, 48.690960 ], [ 14.414062, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 49.152970 ], [ 15.117188, 49.152970 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.800059 ], [ 16.523438, 46.316584 ], [ 15.820312, 46.316584 ], [ 15.820312, 45.828799 ], [ 15.468750, 45.828799 ], [ 15.468750, 45.336702 ], [ 14.765625, 45.336702 ], [ 14.765625, 45.583290 ], [ 14.062500, 45.583290 ], [ 14.062500, 45.828799 ], [ 13.710938, 45.828799 ], [ 13.710938, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.316584 ], [ 15.117188, 46.316584 ], [ 15.117188, 46.558860 ], [ 15.820312, 46.558860 ], [ 15.820312, 46.800059 ], [ 16.523438, 46.800059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.800059 ], [ 16.523438, 46.558860 ], [ 16.171875, 46.558860 ], [ 16.171875, 46.316584 ], [ 15.468750, 46.316584 ], [ 15.468750, 45.828799 ], [ 15.117188, 45.828799 ], [ 15.117188, 45.583290 ], [ 13.710938, 45.583290 ], [ 13.710938, 45.828799 ], [ 13.359375, 45.828799 ], [ 13.359375, 46.316584 ], [ 13.710938, 46.316584 ], [ 13.710938, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.800059 ], [ 16.523438, 46.800059 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.718590 ], [ 15.117188, 37.718590 ], [ 15.117188, 37.160317 ], [ 15.468750, 37.160317 ], [ 15.468750, 36.879621 ], [ 15.117188, 36.879621 ], [ 15.117188, 36.597889 ], [ 14.414062, 36.597889 ], [ 14.414062, 36.879621 ], [ 13.710938, 36.879621 ], [ 13.710938, 37.160317 ], [ 13.007812, 37.160317 ], [ 13.007812, 37.439974 ], [ 12.304688, 37.439974 ], [ 12.304688, 37.718590 ], [ 12.656250, 37.718590 ], [ 12.656250, 37.996163 ], [ 14.414062, 37.996163 ], [ 14.414062, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 12.304688, 47.040182 ], [ 12.304688, 46.800059 ], [ 12.656250, 46.800059 ], [ 12.656250, 46.558860 ], [ 13.710938, 46.558860 ], [ 13.710938, 45.828799 ], [ 14.062500, 45.828799 ], [ 14.062500, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 45.828799 ], [ 13.007812, 45.828799 ], [ 13.007812, 45.583290 ], [ 12.656250, 45.583290 ], [ 12.656250, 45.336702 ], [ 12.304688, 45.336702 ], [ 12.304688, 44.339565 ], [ 12.656250, 44.339565 ], [ 12.656250, 43.834527 ], [ 13.007812, 43.834527 ], [ 13.007812, 43.580391 ], [ 13.359375, 43.580391 ], [ 13.359375, 43.325178 ], [ 13.710938, 43.325178 ], [ 13.710938, 42.811522 ], [ 14.062500, 42.811522 ], [ 14.062500, 42.553080 ], [ 14.414062, 42.553080 ], [ 14.414062, 42.293564 ], [ 14.765625, 42.293564 ], [ 14.765625, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.771312 ], [ 16.171875, 41.771312 ], [ 16.171875, 41.244772 ], [ 16.875000, 41.244772 ], [ 16.875000, 40.979898 ], [ 17.578125, 40.979898 ], [ 17.578125, 40.713956 ], [ 17.929688, 40.713956 ], [ 17.929688, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.178873 ], [ 18.632812, 40.178873 ], [ 18.632812, 39.909736 ], [ 17.578125, 39.909736 ], [ 17.578125, 40.178873 ], [ 16.523438, 40.178873 ], [ 16.523438, 39.639538 ], [ 16.875000, 39.639538 ], [ 16.875000, 39.368279 ], [ 17.226562, 39.368279 ], [ 17.226562, 38.822591 ], [ 16.523438, 38.822591 ], [ 16.523438, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 37.996163 ], [ 15.820312, 37.996163 ], [ 15.820312, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 39.368279 ], [ 15.820312, 39.368279 ], [ 15.820312, 39.909736 ], [ 15.468750, 39.909736 ], [ 15.468750, 40.178873 ], [ 15.117188, 40.178873 ], [ 15.117188, 40.446947 ], [ 14.765625, 40.446947 ], [ 14.765625, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.979898 ], [ 13.710938, 40.979898 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 41.771312 ], [ 11.601562, 41.771312 ], [ 11.601562, 42.032974 ], [ 11.250000, 42.032974 ], [ 11.250000, 42.293564 ], [ 10.898438, 42.293564 ], [ 10.898438, 42.553080 ], [ 10.546875, 42.553080 ], [ 10.546875, 43.325178 ], [ 10.195312, 43.325178 ], [ 10.195312, 43.834527 ], [ 9.843750, 43.834527 ], [ 9.843750, 44.087585 ], [ 9.140625, 44.087585 ], [ 9.140625, 44.339565 ], [ 8.437500, 44.339565 ], [ 8.437500, 44.087585 ], [ 8.085938, 44.087585 ], [ 8.085938, 43.834527 ], [ 7.734375, 43.834527 ], [ 7.734375, 43.580391 ], [ 7.382812, 43.580391 ], [ 7.382812, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 44.590467 ], [ 6.679688, 44.590467 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.089036 ], [ 7.031250, 45.583290 ], [ 6.679688, 45.583290 ], [ 6.679688, 45.828799 ], [ 8.437500, 45.828799 ], [ 8.437500, 46.073231 ], [ 9.140625, 46.073231 ], [ 9.140625, 46.316584 ], [ 10.195312, 46.316584 ], [ 10.195312, 46.558860 ], [ 10.546875, 46.558860 ], [ 10.546875, 46.800059 ], [ 11.250000, 46.800059 ], [ 11.250000, 47.040182 ], [ 12.304688, 47.040182 ] ] ], [ [ [ 9.492188, 40.979898 ], [ 9.492188, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.095963 ], [ 8.789062, 39.095963 ], [ 8.789062, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 9.492188, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.953125, 47.279229 ], [ 11.953125, 47.040182 ], [ 12.304688, 47.040182 ], [ 12.304688, 46.800059 ], [ 12.656250, 46.800059 ], [ 12.656250, 46.558860 ], [ 13.710938, 46.558860 ], [ 13.710938, 46.316584 ], [ 13.359375, 46.316584 ], [ 13.359375, 45.828799 ], [ 13.007812, 45.828799 ], [ 13.007812, 45.583290 ], [ 12.304688, 45.583290 ], [ 12.304688, 44.840291 ], [ 11.953125, 44.840291 ], [ 11.953125, 44.590467 ], [ 12.304688, 44.590467 ], [ 12.304688, 44.087585 ], [ 13.007812, 44.087585 ], [ 13.007812, 43.834527 ], [ 13.359375, 43.834527 ], [ 13.359375, 43.325178 ], [ 13.710938, 43.325178 ], [ 13.710938, 42.553080 ], [ 14.062500, 42.553080 ], [ 14.062500, 42.293564 ], [ 14.765625, 42.293564 ], [ 14.765625, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.508577 ], [ 16.171875, 41.508577 ], [ 16.171875, 41.244772 ], [ 16.523438, 41.244772 ], [ 16.523438, 40.979898 ], [ 17.226562, 40.979898 ], [ 17.226562, 40.713956 ], [ 17.929688, 40.713956 ], [ 17.929688, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 39.909736 ], [ 17.929688, 39.909736 ], [ 17.929688, 40.178873 ], [ 17.578125, 40.178873 ], [ 17.578125, 40.446947 ], [ 16.523438, 40.446947 ], [ 16.523438, 40.178873 ], [ 16.171875, 40.178873 ], [ 16.171875, 39.639538 ], [ 16.875000, 39.639538 ], [ 16.875000, 39.095963 ], [ 16.523438, 39.095963 ], [ 16.523438, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 38.272689 ], [ 15.820312, 38.272689 ], [ 15.820312, 37.996163 ], [ 15.468750, 37.996163 ], [ 15.117188, 37.996163 ], [ 15.117188, 36.879621 ], [ 14.062500, 36.879621 ], [ 14.062500, 37.160317 ], [ 13.007812, 37.160317 ], [ 13.007812, 37.439974 ], [ 12.304688, 37.439974 ], [ 12.304688, 38.272689 ], [ 15.468750, 38.272689 ], [ 15.468750, 38.548165 ], [ 15.820312, 38.548165 ], [ 15.820312, 39.368279 ], [ 15.468750, 39.368279 ], [ 15.468750, 39.909736 ], [ 15.117188, 39.909736 ], [ 15.117188, 40.178873 ], [ 14.765625, 40.178873 ], [ 14.765625, 40.446947 ], [ 14.414062, 40.446947 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.979898 ], [ 13.359375, 40.979898 ], [ 13.359375, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 41.771312 ], [ 11.601562, 41.771312 ], [ 11.601562, 42.032974 ], [ 11.250000, 42.032974 ], [ 11.250000, 42.293564 ], [ 10.898438, 42.293564 ], [ 10.898438, 42.553080 ], [ 10.546875, 42.553080 ], [ 10.546875, 42.811522 ], [ 10.195312, 42.811522 ], [ 10.195312, 44.087585 ], [ 9.140625, 44.087585 ], [ 9.140625, 44.339565 ], [ 8.085938, 44.339565 ], [ 8.085938, 44.087585 ], [ 7.734375, 44.087585 ], [ 7.734375, 43.834527 ], [ 7.382812, 43.834527 ], [ 7.382812, 44.339565 ], [ 6.679688, 44.339565 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.089036 ], [ 7.031250, 45.583290 ], [ 6.679688, 45.583290 ], [ 6.679688, 45.828799 ], [ 7.734375, 45.828799 ], [ 7.734375, 46.073231 ], [ 8.789062, 46.073231 ], [ 8.789062, 46.316584 ], [ 10.195312, 46.316584 ], [ 10.195312, 46.800059 ], [ 10.898438, 46.800059 ], [ 10.898438, 47.040182 ], [ 11.601562, 47.040182 ], [ 11.601562, 47.279229 ], [ 11.953125, 47.279229 ] ] ], [ [ [ 9.492188, 40.979898 ], [ 9.492188, 39.368279 ], [ 9.140625, 39.368279 ], [ 9.140625, 39.095963 ], [ 8.085938, 39.095963 ], [ 8.085938, 40.979898 ], [ 9.492188, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, 43.325178 ], [ 16.171875, 43.325178 ], [ 16.171875, 43.580391 ], [ 15.820312, 43.580391 ], [ 15.820312, 43.834527 ], [ 15.468750, 43.834527 ], [ 15.468750, 44.087585 ], [ 15.117188, 44.087585 ], [ 15.117188, 44.590467 ], [ 14.765625, 44.590467 ], [ 14.765625, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.840291 ], [ 13.710938, 44.840291 ], [ 13.710938, 45.583290 ], [ 14.765625, 45.583290 ], [ 14.765625, 45.336702 ], [ 15.468750, 45.336702 ], [ 15.468750, 45.828799 ], [ 15.820312, 45.828799 ], [ 15.820312, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.073231 ], [ 17.578125, 46.073231 ], [ 17.578125, 45.828799 ], [ 18.984375, 45.828799 ], [ 18.984375, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.089036 ], [ 18.984375, 45.089036 ], [ 18.984375, 44.840291 ], [ 18.632812, 44.840291 ], [ 18.632812, 45.089036 ], [ 17.226562, 45.089036 ], [ 17.226562, 45.336702 ], [ 16.875000, 45.336702 ], [ 16.875000, 45.089036 ], [ 15.820312, 45.089036 ], [ 15.820312, 44.590467 ], [ 16.171875, 44.590467 ], [ 16.171875, 44.087585 ], [ 16.523438, 44.087585 ], [ 16.523438, 43.834527 ], [ 16.875000, 43.834527 ], [ 16.875000, 43.325178 ] ] ], [ [ [ 17.578125, 42.811522 ], [ 18.281250, 42.811522 ], [ 18.281250, 42.553080 ], [ 17.578125, 42.553080 ], [ 17.578125, 42.811522 ] ] ], [ [ [ 17.226562, 43.068888 ], [ 17.578125, 43.068888 ], [ 17.578125, 42.811522 ], [ 17.226562, 42.811522 ], [ 17.226562, 43.068888 ] ] ], [ [ [ 16.875000, 43.325178 ], [ 17.226562, 43.325178 ], [ 17.226562, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 43.325178 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.929688, 42.811522 ], [ 18.281250, 42.811522 ], [ 18.281250, 42.553080 ], [ 17.929688, 42.553080 ], [ 17.929688, 42.811522 ] ] ], [ [ [ 17.578125, 42.811522 ], [ 17.226562, 42.811522 ], [ 17.226562, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 43.325178 ], [ 16.171875, 43.325178 ], [ 16.171875, 43.580391 ], [ 15.468750, 43.580391 ], [ 15.468750, 44.087585 ], [ 15.117188, 44.087585 ], [ 15.117188, 44.590467 ], [ 14.765625, 44.590467 ], [ 14.765625, 45.089036 ], [ 13.359375, 45.089036 ], [ 13.359375, 45.583290 ], [ 15.117188, 45.583290 ], [ 15.117188, 45.828799 ], [ 15.468750, 45.828799 ], [ 15.468750, 46.316584 ], [ 16.171875, 46.316584 ], [ 16.171875, 46.558860 ], [ 16.875000, 46.558860 ], [ 16.875000, 46.316584 ], [ 17.226562, 46.316584 ], [ 17.226562, 46.073231 ], [ 17.578125, 46.073231 ], [ 17.578125, 45.828799 ], [ 18.984375, 45.828799 ], [ 18.984375, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.089036 ], [ 16.875000, 45.089036 ], [ 16.875000, 45.336702 ], [ 16.523438, 45.336702 ], [ 16.523438, 45.089036 ], [ 15.468750, 45.089036 ], [ 15.468750, 44.590467 ], [ 16.171875, 44.590467 ], [ 16.171875, 43.834527 ], [ 16.875000, 43.834527 ], [ 16.875000, 43.580391 ], [ 17.226562, 43.580391 ], [ 17.226562, 43.325178 ], [ 17.578125, 43.325178 ], [ 17.578125, 42.811522 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.445312, 48.458352 ], [ 21.445312, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 47.989922 ], [ 22.851562, 47.989922 ], [ 22.851562, 47.754098 ], [ 22.148438, 47.754098 ], [ 22.148438, 47.279229 ], [ 21.796875, 47.279229 ], [ 21.796875, 46.800059 ], [ 21.445312, 46.800059 ], [ 21.445312, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 45.828799 ], [ 17.578125, 45.828799 ], [ 17.578125, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 46.316584 ], [ 16.523438, 46.316584 ], [ 16.523438, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 47.040182 ], [ 16.523438, 47.040182 ], [ 16.523438, 47.517201 ], [ 16.171875, 47.517201 ], [ 16.171875, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 47.989922 ], [ 17.226562, 47.989922 ], [ 17.226562, 47.754098 ], [ 18.632812, 47.754098 ], [ 18.632812, 47.989922 ], [ 19.335938, 47.989922 ], [ 19.335938, 48.224673 ], [ 20.390625, 48.224673 ], [ 20.390625, 48.458352 ], [ 21.445312, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 48.690960 ], [ 21.093750, 48.458352 ], [ 21.796875, 48.458352 ], [ 21.796875, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 47.754098 ], [ 21.796875, 47.754098 ], [ 21.796875, 47.279229 ], [ 21.445312, 47.279229 ], [ 21.445312, 46.800059 ], [ 21.093750, 46.800059 ], [ 21.093750, 46.316584 ], [ 19.335938, 46.316584 ], [ 19.335938, 46.073231 ], [ 18.632812, 46.073231 ], [ 18.632812, 45.828799 ], [ 17.578125, 45.828799 ], [ 17.578125, 46.073231 ], [ 17.226562, 46.073231 ], [ 17.226562, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.558860 ], [ 16.523438, 46.558860 ], [ 16.523438, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 47.279229 ], [ 16.523438, 47.279229 ], [ 16.523438, 47.517201 ], [ 16.171875, 47.517201 ], [ 16.171875, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 48.224673 ], [ 20.039062, 48.224673 ], [ 20.039062, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.690960 ], [ 21.093750, 48.690960 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 49.382373 ], [ 21.796875, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 48.922499 ], [ 22.148438, 48.922499 ], [ 22.148438, 48.224673 ], [ 21.445312, 48.224673 ], [ 21.445312, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.224673 ], [ 19.335938, 48.224673 ], [ 19.335938, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 47.754098 ], [ 17.226562, 47.754098 ], [ 17.226562, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.690960 ], [ 17.929688, 48.690960 ], [ 17.929688, 49.152970 ], [ 18.281250, 49.152970 ], [ 18.281250, 49.382373 ], [ 19.687500, 49.382373 ], [ 19.687500, 49.152970 ], [ 20.390625, 49.152970 ], [ 20.390625, 49.382373 ], [ 21.796875, 49.382373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 49.610710 ], [ 18.984375, 49.382373 ], [ 22.148438, 49.382373 ], [ 22.148438, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 48.922499 ], [ 22.148438, 48.922499 ], [ 22.148438, 48.690960 ], [ 21.796875, 48.690960 ], [ 21.796875, 48.458352 ], [ 21.093750, 48.458352 ], [ 21.093750, 48.690960 ], [ 20.390625, 48.690960 ], [ 20.390625, 48.458352 ], [ 20.039062, 48.458352 ], [ 20.039062, 48.224673 ], [ 18.632812, 48.224673 ], [ 18.632812, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 17.578125, 48.922499 ], [ 17.578125, 49.152970 ], [ 17.929688, 49.152970 ], [ 17.929688, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.610710 ], [ 18.984375, 49.610710 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.226562, 45.336702 ], [ 17.226562, 45.089036 ], [ 18.632812, 45.089036 ], [ 18.632812, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 44.590467 ], [ 18.984375, 44.590467 ], [ 18.984375, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.834527 ], [ 19.335938, 43.834527 ], [ 19.335938, 43.325178 ], [ 18.632812, 43.325178 ], [ 18.632812, 42.553080 ], [ 18.281250, 42.553080 ], [ 18.281250, 42.811522 ], [ 17.578125, 42.811522 ], [ 17.578125, 43.068888 ], [ 17.226562, 43.068888 ], [ 17.226562, 43.325178 ], [ 16.875000, 43.325178 ], [ 16.875000, 43.834527 ], [ 16.523438, 43.834527 ], [ 16.523438, 44.087585 ], [ 16.171875, 44.087585 ], [ 16.171875, 44.590467 ], [ 15.820312, 44.590467 ], [ 15.820312, 45.089036 ], [ 16.875000, 45.089036 ], [ 16.875000, 45.336702 ], [ 17.226562, 45.336702 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 45.336702 ], [ 16.875000, 45.089036 ], [ 19.335938, 45.089036 ], [ 19.335938, 44.840291 ], [ 18.984375, 44.840291 ], [ 18.984375, 44.339565 ], [ 19.335938, 44.339565 ], [ 19.335938, 43.580391 ], [ 18.984375, 43.580391 ], [ 18.984375, 43.325178 ], [ 18.632812, 43.325178 ], [ 18.632812, 43.068888 ], [ 18.281250, 43.068888 ], [ 18.281250, 42.811522 ], [ 17.578125, 42.811522 ], [ 17.578125, 43.325178 ], [ 17.226562, 43.325178 ], [ 17.226562, 43.580391 ], [ 16.875000, 43.580391 ], [ 16.875000, 43.834527 ], [ 16.171875, 43.834527 ], [ 16.171875, 44.590467 ], [ 15.468750, 44.590467 ], [ 15.468750, 45.089036 ], [ 16.523438, 45.089036 ], [ 16.523438, 45.336702 ], [ 16.875000, 45.336702 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.325178 ], [ 19.687500, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 42.553080 ], [ 19.335938, 42.553080 ], [ 19.335938, 42.032974 ], [ 18.984375, 42.032974 ], [ 18.984375, 42.293564 ], [ 18.281250, 42.293564 ], [ 18.281250, 42.553080 ], [ 18.632812, 42.553080 ], [ 18.632812, 43.325178 ], [ 19.687500, 43.325178 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.335938, 43.580391 ], [ 19.335938, 43.325178 ], [ 19.687500, 43.325178 ], [ 19.687500, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.553080 ], [ 19.335938, 42.553080 ], [ 19.335938, 42.293564 ], [ 18.984375, 42.293564 ], [ 18.984375, 42.032974 ], [ 18.632812, 42.032974 ], [ 18.632812, 42.293564 ], [ 18.281250, 42.293564 ], [ 18.281250, 43.068888 ], [ 18.632812, 43.068888 ], [ 18.632812, 43.325178 ], [ 18.984375, 43.325178 ], [ 18.984375, 43.580391 ], [ 19.335938, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 46.073231 ], [ 20.390625, 45.828799 ], [ 20.742188, 45.828799 ], [ 20.742188, 45.089036 ], [ 21.445312, 45.089036 ], [ 21.445312, 44.590467 ], [ 22.851562, 44.590467 ], [ 22.851562, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 43.325178 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.068888 ], [ 22.500000, 43.068888 ], [ 22.500000, 42.293564 ], [ 21.796875, 42.293564 ], [ 21.796875, 42.553080 ], [ 21.445312, 42.553080 ], [ 21.445312, 42.811522 ], [ 21.093750, 42.811522 ], [ 21.093750, 43.068888 ], [ 20.390625, 43.068888 ], [ 20.390625, 42.811522 ], [ 20.039062, 42.811522 ], [ 20.039062, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 43.834527 ], [ 19.687500, 43.834527 ], [ 19.687500, 44.087585 ], [ 18.984375, 44.087585 ], [ 18.984375, 44.590467 ], [ 19.335938, 44.590467 ], [ 19.335938, 44.840291 ], [ 18.984375, 44.840291 ], [ 18.984375, 45.089036 ], [ 19.335938, 45.089036 ], [ 19.335938, 45.336702 ], [ 18.984375, 45.336702 ], [ 18.984375, 45.828799 ], [ 19.687500, 45.828799 ], [ 19.687500, 46.073231 ], [ 20.390625, 46.073231 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 46.316584 ], [ 20.039062, 46.073231 ], [ 20.390625, 46.073231 ], [ 20.390625, 45.828799 ], [ 20.742188, 45.828799 ], [ 20.742188, 45.336702 ], [ 21.445312, 45.336702 ], [ 21.445312, 44.590467 ], [ 22.148438, 44.590467 ], [ 22.148438, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 44.087585 ], [ 22.148438, 44.087585 ], [ 22.148438, 43.834527 ], [ 22.500000, 43.834527 ], [ 22.500000, 43.580391 ], [ 22.851562, 43.580391 ], [ 22.851562, 43.068888 ], [ 22.500000, 43.068888 ], [ 22.500000, 42.811522 ], [ 22.148438, 42.811522 ], [ 22.148438, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.293564 ], [ 21.445312, 42.293564 ], [ 21.445312, 42.811522 ], [ 21.093750, 42.811522 ], [ 21.093750, 43.068888 ], [ 20.742188, 43.068888 ], [ 20.742188, 43.325178 ], [ 20.390625, 43.325178 ], [ 20.390625, 42.811522 ], [ 20.039062, 42.811522 ], [ 20.039062, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 44.339565 ], [ 18.984375, 44.339565 ], [ 18.984375, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 45.336702 ], [ 18.984375, 45.336702 ], [ 18.984375, 45.828799 ], [ 18.632812, 45.828799 ], [ 18.632812, 46.073231 ], [ 19.335938, 46.073231 ], [ 19.335938, 46.316584 ], [ 20.039062, 46.316584 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.293564 ], [ 21.445312, 42.293564 ], [ 21.445312, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 42.293564 ], [ 20.039062, 42.293564 ], [ 20.039062, 42.553080 ], [ 20.390625, 42.553080 ], [ 20.390625, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 20.742188, 43.068888 ], [ 21.093750, 43.068888 ], [ 21.093750, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.293564 ], [ 20.742188, 42.293564 ], [ 20.742188, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 42.293564 ], [ 20.039062, 42.293564 ], [ 20.039062, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 43.325178 ], [ 20.742188, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.553080 ], [ 20.039062, 42.293564 ], [ 20.390625, 42.293564 ], [ 20.390625, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.508577 ], [ 20.390625, 41.508577 ], [ 20.390625, 41.244772 ], [ 20.742188, 41.244772 ], [ 20.742188, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 39.639538 ], [ 20.039062, 39.639538 ], [ 20.039062, 39.909736 ], [ 19.335938, 39.909736 ], [ 19.335938, 41.508577 ], [ 19.687500, 41.508577 ], [ 19.687500, 41.771312 ], [ 19.335938, 41.771312 ], [ 19.335938, 42.553080 ], [ 20.039062, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.553080 ], [ 20.039062, 42.293564 ], [ 20.390625, 42.293564 ], [ 20.390625, 40.979898 ], [ 20.742188, 40.979898 ], [ 20.742188, 40.446947 ], [ 20.390625, 40.446947 ], [ 20.390625, 39.909736 ], [ 20.039062, 39.909736 ], [ 20.039062, 39.639538 ], [ 19.687500, 39.639538 ], [ 19.687500, 40.178873 ], [ 19.335938, 40.178873 ], [ 19.335938, 40.713956 ], [ 18.984375, 40.713956 ], [ 18.984375, 41.244772 ], [ 19.335938, 41.244772 ], [ 19.335938, 42.032974 ], [ 18.984375, 42.032974 ], [ 18.984375, 42.293564 ], [ 19.335938, 42.293564 ], [ 19.335938, 42.553080 ], [ 20.039062, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.293564 ], [ 22.500000, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.244772 ], [ 22.148438, 41.244772 ], [ 22.148438, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 40.713956 ], [ 20.742188, 40.713956 ], [ 20.742188, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.508577 ], [ 20.742188, 41.508577 ], [ 20.742188, 42.032974 ], [ 21.445312, 42.032974 ], [ 21.445312, 42.293564 ], [ 22.500000, 42.293564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.148438, 42.553080 ], [ 22.148438, 42.293564 ], [ 22.500000, 42.293564 ], [ 22.500000, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.508577 ], [ 22.500000, 41.508577 ], [ 22.500000, 41.244772 ], [ 21.796875, 41.244772 ], [ 21.796875, 40.979898 ], [ 20.390625, 40.979898 ], [ 20.390625, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 42.293564 ], [ 21.796875, 42.293564 ], [ 21.796875, 42.553080 ], [ 22.148438, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 67.204032 ], [ 29.531250, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.652977 ], [ 29.531250, 66.652977 ], [ 29.531250, 66.372755 ], [ 29.882812, 66.372755 ], [ 29.882812, 65.946472 ], [ 30.234375, 65.946472 ], [ 30.234375, 65.512963 ], [ 29.882812, 65.512963 ], [ 29.882812, 65.072130 ], [ 29.531250, 65.072130 ], [ 29.531250, 64.774125 ], [ 29.882812, 64.774125 ], [ 29.882812, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 64.168107 ], [ 30.585938, 64.168107 ], [ 30.585938, 64.014496 ], [ 30.234375, 64.014496 ], [ 30.234375, 63.704722 ], [ 29.882812, 63.704722 ], [ 29.882812, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.233627 ], [ 30.937500, 63.233627 ], [ 30.937500, 63.074866 ], [ 31.289062, 63.074866 ], [ 31.289062, 62.915233 ], [ 31.640625, 62.915233 ], [ 31.640625, 62.593341 ], [ 31.289062, 62.593341 ], [ 31.289062, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.103883 ], [ 30.585938, 62.103883 ], [ 30.585938, 61.773123 ], [ 30.234375, 61.773123 ], [ 30.234375, 61.606396 ], [ 29.882812, 61.606396 ], [ 29.882812, 61.438767 ], [ 29.531250, 61.438767 ], [ 29.531250, 61.270233 ], [ 29.179688, 61.270233 ], [ 29.179688, 60.930432 ], [ 28.828125, 60.930432 ], [ 28.828125, 60.759160 ], [ 28.476562, 60.759160 ], [ 28.476562, 60.586967 ], [ 27.421875, 60.586967 ], [ 27.421875, 60.413852 ], [ 26.015625, 60.413852 ], [ 26.015625, 60.239811 ], [ 25.312500, 60.239811 ], [ 25.312500, 60.064840 ], [ 23.906250, 60.064840 ], [ 23.906250, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 22.148438, 60.239811 ], [ 22.148438, 60.413852 ], [ 21.796875, 60.413852 ], [ 21.796875, 60.586967 ], [ 21.445312, 60.586967 ], [ 21.445312, 62.103883 ], [ 21.093750, 62.103883 ], [ 21.093750, 62.915233 ], [ 21.445312, 62.915233 ], [ 21.445312, 63.233627 ], [ 21.796875, 63.233627 ], [ 21.796875, 63.548552 ], [ 22.148438, 63.548552 ], [ 22.148438, 63.704722 ], [ 22.500000, 63.704722 ], [ 22.500000, 63.860036 ], [ 22.851562, 63.860036 ], [ 22.851562, 64.014496 ], [ 23.203125, 64.014496 ], [ 23.203125, 64.168107 ], [ 23.554688, 64.168107 ], [ 23.554688, 64.472794 ], [ 23.906250, 64.472794 ], [ 23.906250, 64.623877 ], [ 24.257812, 64.623877 ], [ 24.257812, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 64.923542 ], [ 25.312500, 64.923542 ], [ 25.312500, 65.512963 ], [ 24.960938, 65.512963 ], [ 24.960938, 65.658275 ], [ 24.257812, 65.658275 ], [ 24.257812, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 66.089364 ], [ 23.554688, 66.089364 ], [ 23.554688, 67.204032 ], [ 29.531250, 67.204032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.179688, 67.204032 ], [ 29.179688, 67.067433 ], [ 28.828125, 67.067433 ], [ 28.828125, 66.791909 ], [ 29.179688, 66.791909 ], [ 29.179688, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 66.089364 ], [ 29.882812, 66.089364 ], [ 29.882812, 65.512963 ], [ 29.531250, 65.512963 ], [ 29.531250, 64.774125 ], [ 29.882812, 64.774125 ], [ 29.882812, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 64.014496 ], [ 29.882812, 64.014496 ], [ 29.882812, 63.548552 ], [ 30.234375, 63.548552 ], [ 30.234375, 63.391522 ], [ 30.585938, 63.391522 ], [ 30.585938, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 62.593341 ], [ 30.937500, 62.593341 ], [ 30.937500, 62.267923 ], [ 30.585938, 62.267923 ], [ 30.585938, 62.103883 ], [ 30.234375, 62.103883 ], [ 30.234375, 61.938950 ], [ 29.882812, 61.938950 ], [ 29.882812, 61.773123 ], [ 29.531250, 61.773123 ], [ 29.531250, 61.606396 ], [ 29.179688, 61.606396 ], [ 29.179688, 61.270233 ], [ 28.828125, 61.270233 ], [ 28.828125, 61.100789 ], [ 28.476562, 61.100789 ], [ 28.476562, 60.930432 ], [ 28.125000, 60.930432 ], [ 28.125000, 60.586967 ], [ 26.015625, 60.586967 ], [ 26.015625, 60.413852 ], [ 25.312500, 60.413852 ], [ 25.312500, 60.239811 ], [ 24.609375, 60.239811 ], [ 24.609375, 60.064840 ], [ 23.906250, 60.064840 ], [ 23.906250, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 22.148438, 60.239811 ], [ 22.148438, 60.413852 ], [ 21.796875, 60.413852 ], [ 21.796875, 60.586967 ], [ 21.093750, 60.586967 ], [ 21.093750, 61.270233 ], [ 21.445312, 61.270233 ], [ 21.445312, 61.938950 ], [ 21.093750, 61.938950 ], [ 21.093750, 62.431074 ], [ 20.742188, 62.431074 ], [ 20.742188, 62.754726 ], [ 21.093750, 62.754726 ], [ 21.093750, 63.074866 ], [ 21.445312, 63.074866 ], [ 21.445312, 63.391522 ], [ 21.796875, 63.391522 ], [ 21.796875, 63.704722 ], [ 22.148438, 63.704722 ], [ 22.148438, 63.860036 ], [ 22.500000, 63.860036 ], [ 22.500000, 64.014496 ], [ 22.851562, 64.014496 ], [ 22.851562, 64.168107 ], [ 23.203125, 64.168107 ], [ 23.203125, 64.320872 ], [ 23.554688, 64.320872 ], [ 23.554688, 64.472794 ], [ 23.906250, 64.472794 ], [ 23.906250, 64.623877 ], [ 24.257812, 64.623877 ], [ 24.257812, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 64.923542 ], [ 24.960938, 64.923542 ], [ 24.960938, 65.072130 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.366837 ], [ 24.960938, 65.366837 ], [ 24.960938, 65.658275 ], [ 24.609375, 65.658275 ], [ 24.609375, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 66.791909 ], [ 23.203125, 66.791909 ], [ 23.203125, 67.204032 ], [ 29.179688, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 57.891497 ], [ 25.664062, 57.704147 ], [ 26.015625, 57.704147 ], [ 26.015625, 57.515823 ], [ 27.421875, 57.515823 ], [ 27.421875, 57.326521 ], [ 27.773438, 57.326521 ], [ 27.773438, 56.365250 ], [ 28.125000, 56.365250 ], [ 28.125000, 55.973798 ], [ 27.421875, 55.973798 ], [ 27.421875, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.578345 ], [ 26.015625, 55.578345 ], [ 26.015625, 55.973798 ], [ 25.664062, 55.973798 ], [ 25.664062, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.365250 ], [ 22.148438, 56.365250 ], [ 22.148438, 56.170023 ], [ 21.445312, 56.170023 ], [ 21.445312, 55.973798 ], [ 21.093750, 55.973798 ], [ 21.093750, 56.944974 ], [ 21.445312, 56.944974 ], [ 21.445312, 57.326521 ], [ 21.796875, 57.326521 ], [ 21.796875, 57.515823 ], [ 22.851562, 57.515823 ], [ 22.851562, 57.136239 ], [ 23.203125, 57.136239 ], [ 23.203125, 56.944974 ], [ 24.257812, 56.944974 ], [ 24.257812, 57.704147 ], [ 24.960938, 57.704147 ], [ 24.960938, 57.891497 ], [ 25.664062, 57.891497 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 57.891497 ], [ 25.312500, 57.704147 ], [ 26.015625, 57.704147 ], [ 26.015625, 57.515823 ], [ 27.070312, 57.515823 ], [ 27.070312, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.136239 ], [ 27.773438, 57.136239 ], [ 27.773438, 56.559482 ], [ 28.125000, 56.559482 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.170023 ], [ 27.773438, 55.973798 ], [ 27.070312, 55.973798 ], [ 27.070312, 55.776573 ], [ 26.015625, 55.776573 ], [ 26.015625, 55.973798 ], [ 25.312500, 55.973798 ], [ 25.312500, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.365250 ], [ 24.609375, 56.365250 ], [ 24.609375, 56.559482 ], [ 24.257812, 56.559482 ], [ 24.257812, 56.365250 ], [ 21.796875, 56.365250 ], [ 21.796875, 56.170023 ], [ 20.742188, 56.170023 ], [ 20.742188, 56.944974 ], [ 21.093750, 56.944974 ], [ 21.093750, 57.326521 ], [ 21.445312, 57.326521 ], [ 21.445312, 57.515823 ], [ 21.796875, 57.515823 ], [ 21.796875, 57.704147 ], [ 22.851562, 57.704147 ], [ 22.851562, 57.326521 ], [ 23.203125, 57.326521 ], [ 23.203125, 57.136239 ], [ 23.906250, 57.136239 ], [ 23.906250, 57.515823 ], [ 24.257812, 57.515823 ], [ 24.257812, 57.891497 ], [ 25.312500, 57.891497 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 59.175928 ], [ 27.773438, 59.175928 ], [ 27.773438, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 58.263287 ], [ 27.773438, 58.263287 ], [ 27.773438, 57.515823 ], [ 26.015625, 57.515823 ], [ 26.015625, 57.704147 ], [ 25.664062, 57.704147 ], [ 25.664062, 57.891497 ], [ 24.960938, 57.891497 ], [ 24.960938, 57.704147 ], [ 24.257812, 57.704147 ], [ 24.257812, 58.263287 ], [ 23.906250, 58.263287 ], [ 23.906250, 58.447733 ], [ 23.554688, 58.447733 ], [ 23.554688, 58.813742 ], [ 23.203125, 58.813742 ], [ 23.203125, 59.175928 ], [ 23.906250, 59.175928 ], [ 23.906250, 59.355596 ], [ 24.609375, 59.355596 ], [ 24.609375, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 59.712097 ], [ 26.015625, 59.534318 ], [ 27.773438, 59.534318 ], [ 27.773438, 59.355596 ], [ 28.125000, 59.355596 ], [ 28.125000, 59.175928 ], [ 27.773438, 59.175928 ], [ 27.773438, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 57.704147 ], [ 27.070312, 57.704147 ], [ 27.070312, 57.515823 ], [ 26.015625, 57.515823 ], [ 26.015625, 57.704147 ], [ 25.312500, 57.704147 ], [ 25.312500, 57.891497 ], [ 24.257812, 57.891497 ], [ 24.257812, 58.263287 ], [ 23.554688, 58.263287 ], [ 23.554688, 58.447733 ], [ 23.203125, 58.447733 ], [ 23.203125, 59.355596 ], [ 23.906250, 59.355596 ], [ 23.906250, 59.534318 ], [ 25.312500, 59.534318 ], [ 25.312500, 59.712097 ], [ 26.015625, 59.712097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.365250 ], [ 24.960938, 56.170023 ], [ 25.664062, 56.170023 ], [ 25.664062, 55.973798 ], [ 26.015625, 55.973798 ], [ 26.015625, 55.578345 ], [ 26.367188, 55.578345 ], [ 26.367188, 55.379110 ], [ 26.718750, 55.379110 ], [ 26.718750, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.775346 ], [ 25.664062, 54.775346 ], [ 25.664062, 54.162434 ], [ 24.960938, 54.162434 ], [ 24.960938, 53.956086 ], [ 23.203125, 53.956086 ], [ 23.203125, 54.162434 ], [ 22.851562, 54.162434 ], [ 22.851562, 54.367759 ], [ 22.500000, 54.367759 ], [ 22.500000, 54.572062 ], [ 22.851562, 54.572062 ], [ 22.851562, 54.775346 ], [ 22.148438, 54.775346 ], [ 22.148438, 54.977614 ], [ 21.445312, 54.977614 ], [ 21.445312, 55.178868 ], [ 21.093750, 55.178868 ], [ 21.093750, 55.973798 ], [ 21.445312, 55.973798 ], [ 21.445312, 56.170023 ], [ 22.148438, 56.170023 ], [ 22.148438, 56.365250 ], [ 24.960938, 56.365250 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 56.559482 ], [ 24.609375, 56.365250 ], [ 24.960938, 56.365250 ], [ 24.960938, 56.170023 ], [ 25.312500, 56.170023 ], [ 25.312500, 55.973798 ], [ 26.015625, 55.973798 ], [ 26.015625, 55.776573 ], [ 26.367188, 55.776573 ], [ 26.367188, 54.977614 ], [ 25.664062, 54.977614 ], [ 25.664062, 54.572062 ], [ 25.312500, 54.572062 ], [ 25.312500, 54.162434 ], [ 24.609375, 54.162434 ], [ 24.609375, 53.956086 ], [ 23.203125, 53.956086 ], [ 23.203125, 54.367759 ], [ 22.500000, 54.367759 ], [ 22.500000, 54.977614 ], [ 22.148438, 54.977614 ], [ 22.148438, 55.178868 ], [ 21.445312, 55.178868 ], [ 21.445312, 55.379110 ], [ 21.093750, 55.379110 ], [ 21.093750, 55.776573 ], [ 20.742188, 55.776573 ], [ 20.742188, 56.170023 ], [ 21.796875, 56.170023 ], [ 21.796875, 56.365250 ], [ 24.257812, 56.365250 ], [ 24.257812, 56.559482 ], [ 24.609375, 56.559482 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, 56.170023 ], [ 28.476562, 55.973798 ], [ 29.179688, 55.973798 ], [ 29.179688, 55.776573 ], [ 29.531250, 55.776573 ], [ 29.531250, 55.578345 ], [ 29.882812, 55.578345 ], [ 29.882812, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.578345 ], [ 30.937500, 55.578345 ], [ 30.937500, 54.977614 ], [ 30.585938, 54.977614 ], [ 30.585938, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 53.956086 ], [ 31.640625, 53.956086 ], [ 31.640625, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.120405 ], [ 31.289062, 53.120405 ], [ 31.289062, 52.908902 ], [ 31.640625, 52.908902 ], [ 31.640625, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.835778 ], [ 30.585938, 51.835778 ], [ 30.585938, 51.399206 ], [ 28.125000, 51.399206 ], [ 28.125000, 51.618017 ], [ 26.718750, 51.618017 ], [ 26.718750, 51.835778 ], [ 24.609375, 51.835778 ], [ 24.609375, 51.618017 ], [ 23.554688, 51.618017 ], [ 23.554688, 52.268157 ], [ 23.203125, 52.268157 ], [ 23.203125, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 53.330873 ], [ 23.554688, 53.330873 ], [ 23.554688, 53.956086 ], [ 24.960938, 53.956086 ], [ 24.960938, 54.162434 ], [ 25.664062, 54.162434 ], [ 25.664062, 54.775346 ], [ 26.015625, 54.775346 ], [ 26.015625, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.379110 ], [ 26.367188, 55.379110 ], [ 26.367188, 55.578345 ], [ 27.070312, 55.578345 ], [ 27.070312, 55.776573 ], [ 27.421875, 55.776573 ], [ 27.421875, 55.973798 ], [ 28.125000, 55.973798 ], [ 28.125000, 56.170023 ], [ 28.476562, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, 56.170023 ], [ 28.476562, 55.973798 ], [ 29.179688, 55.973798 ], [ 29.179688, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.578345 ], [ 30.585938, 55.578345 ], [ 30.585938, 55.379110 ], [ 30.937500, 55.379110 ], [ 30.937500, 54.977614 ], [ 30.585938, 54.977614 ], [ 30.585938, 54.775346 ], [ 30.937500, 54.775346 ], [ 30.937500, 54.367759 ], [ 31.289062, 54.367759 ], [ 31.289062, 54.162434 ], [ 31.640625, 54.162434 ], [ 31.640625, 53.748711 ], [ 32.343750, 53.748711 ], [ 32.343750, 53.540307 ], [ 32.695312, 53.540307 ], [ 32.695312, 53.330873 ], [ 31.289062, 53.330873 ], [ 31.289062, 52.482780 ], [ 31.640625, 52.482780 ], [ 31.640625, 52.268157 ], [ 31.289062, 52.268157 ], [ 31.289062, 52.052490 ], [ 30.585938, 52.052490 ], [ 30.585938, 51.618017 ], [ 30.234375, 51.618017 ], [ 30.234375, 51.399206 ], [ 28.828125, 51.399206 ], [ 28.828125, 51.618017 ], [ 26.367188, 51.618017 ], [ 26.367188, 51.835778 ], [ 25.312500, 51.835778 ], [ 25.312500, 52.052490 ], [ 24.257812, 52.052490 ], [ 24.257812, 51.835778 ], [ 23.906250, 51.835778 ], [ 23.906250, 51.618017 ], [ 23.203125, 51.618017 ], [ 23.203125, 52.268157 ], [ 22.851562, 52.268157 ], [ 22.851562, 52.696361 ], [ 23.554688, 52.696361 ], [ 23.554688, 53.330873 ], [ 23.203125, 53.330873 ], [ 23.203125, 53.956086 ], [ 24.609375, 53.956086 ], [ 24.609375, 54.162434 ], [ 25.312500, 54.162434 ], [ 25.312500, 54.572062 ], [ 25.664062, 54.572062 ], [ 25.664062, 54.977614 ], [ 26.367188, 54.977614 ], [ 26.367188, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.973798 ], [ 27.773438, 55.973798 ], [ 27.773438, 56.170023 ], [ 28.476562, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 48.224673 ], [ 27.070312, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 46.800059 ], [ 28.125000, 46.800059 ], [ 28.125000, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.087585 ], [ 28.476562, 44.087585 ], [ 28.476562, 43.580391 ], [ 28.125000, 43.580391 ], [ 28.125000, 43.834527 ], [ 27.421875, 43.834527 ], [ 27.421875, 44.087585 ], [ 26.718750, 44.087585 ], [ 26.718750, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.580391 ], [ 24.609375, 43.580391 ], [ 24.609375, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.339565 ], [ 22.851562, 44.339565 ], [ 22.851562, 44.590467 ], [ 21.445312, 44.590467 ], [ 21.445312, 45.089036 ], [ 20.742188, 45.089036 ], [ 20.742188, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.316584 ], [ 21.445312, 46.316584 ], [ 21.445312, 46.800059 ], [ 21.796875, 46.800059 ], [ 21.796875, 47.279229 ], [ 22.148438, 47.279229 ], [ 22.148438, 47.754098 ], [ 22.851562, 47.754098 ], [ 22.851562, 47.989922 ], [ 24.257812, 47.989922 ], [ 24.257812, 47.754098 ], [ 25.312500, 47.754098 ], [ 25.312500, 47.989922 ], [ 26.367188, 47.989922 ], [ 26.367188, 48.224673 ], [ 27.070312, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 48.224673 ], [ 26.718750, 47.989922 ], [ 27.070312, 47.989922 ], [ 27.070312, 47.754098 ], [ 27.421875, 47.754098 ], [ 27.421875, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 46.316584 ], [ 27.773438, 46.316584 ], [ 27.773438, 45.828799 ], [ 28.125000, 45.828799 ], [ 28.125000, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.339565 ], [ 28.476562, 44.339565 ], [ 28.476562, 43.834527 ], [ 27.421875, 43.834527 ], [ 27.421875, 44.087585 ], [ 27.070312, 44.087585 ], [ 27.070312, 44.339565 ], [ 26.718750, 44.339565 ], [ 26.718750, 44.087585 ], [ 26.015625, 44.087585 ], [ 26.015625, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.339565 ], [ 22.148438, 44.339565 ], [ 22.148438, 44.590467 ], [ 21.445312, 44.590467 ], [ 21.445312, 45.336702 ], [ 20.742188, 45.336702 ], [ 20.742188, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 46.073231 ], [ 20.039062, 46.073231 ], [ 20.039062, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.800059 ], [ 21.445312, 46.800059 ], [ 21.445312, 47.279229 ], [ 21.796875, 47.279229 ], [ 21.796875, 47.754098 ], [ 22.500000, 47.754098 ], [ 22.500000, 47.989922 ], [ 24.257812, 47.989922 ], [ 24.257812, 47.754098 ], [ 24.960938, 47.754098 ], [ 24.960938, 47.989922 ], [ 26.015625, 47.989922 ], [ 26.015625, 48.224673 ], [ 26.718750, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 44.087585 ], [ 27.421875, 43.834527 ], [ 28.125000, 43.834527 ], [ 28.125000, 43.580391 ], [ 28.476562, 43.580391 ], [ 28.476562, 43.325178 ], [ 28.125000, 43.325178 ], [ 28.125000, 42.811522 ], [ 27.773438, 42.811522 ], [ 27.773438, 42.293564 ], [ 28.125000, 42.293564 ], [ 28.125000, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 41.771312 ], [ 26.015625, 41.771312 ], [ 26.015625, 41.244772 ], [ 24.609375, 41.244772 ], [ 24.609375, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.244772 ], [ 22.851562, 41.244772 ], [ 22.851562, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 43.068888 ], [ 22.851562, 43.068888 ], [ 22.851562, 43.325178 ], [ 22.500000, 43.325178 ], [ 22.500000, 44.087585 ], [ 22.851562, 44.087585 ], [ 22.851562, 43.834527 ], [ 24.609375, 43.834527 ], [ 24.609375, 43.580391 ], [ 26.015625, 43.580391 ], [ 26.015625, 43.834527 ], [ 26.718750, 43.834527 ], [ 26.718750, 44.087585 ], [ 27.421875, 44.087585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 44.339565 ], [ 27.070312, 44.087585 ], [ 27.421875, 44.087585 ], [ 27.421875, 43.834527 ], [ 28.476562, 43.834527 ], [ 28.476562, 43.580391 ], [ 28.125000, 43.580391 ], [ 28.125000, 43.325178 ], [ 27.773438, 43.325178 ], [ 27.773438, 43.068888 ], [ 27.421875, 43.068888 ], [ 27.421875, 42.293564 ], [ 27.773438, 42.293564 ], [ 27.773438, 42.032974 ], [ 27.070312, 42.032974 ], [ 27.070312, 42.293564 ], [ 26.718750, 42.293564 ], [ 26.718750, 42.032974 ], [ 26.015625, 42.032974 ], [ 26.015625, 41.508577 ], [ 25.664062, 41.508577 ], [ 25.664062, 41.244772 ], [ 24.609375, 41.244772 ], [ 24.609375, 41.508577 ], [ 22.851562, 41.508577 ], [ 22.851562, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 42.293564 ], [ 22.148438, 42.293564 ], [ 22.148438, 42.811522 ], [ 22.500000, 42.811522 ], [ 22.500000, 43.068888 ], [ 22.851562, 43.068888 ], [ 22.851562, 43.580391 ], [ 22.500000, 43.580391 ], [ 22.500000, 43.834527 ], [ 22.148438, 43.834527 ], [ 22.148438, 44.087585 ], [ 22.851562, 44.087585 ], [ 22.851562, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 44.087585 ], [ 26.718750, 44.087585 ], [ 26.718750, 44.339565 ], [ 27.070312, 44.339565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 48.458352 ], [ 27.421875, 48.224673 ], [ 28.828125, 48.224673 ], [ 28.828125, 47.989922 ], [ 29.179688, 47.989922 ], [ 29.179688, 47.279229 ], [ 29.531250, 47.279229 ], [ 29.531250, 46.800059 ], [ 29.882812, 46.800059 ], [ 29.882812, 46.316584 ], [ 29.179688, 46.316584 ], [ 29.179688, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 46.800059 ], [ 27.773438, 46.800059 ], [ 27.773438, 47.279229 ], [ 27.421875, 47.279229 ], [ 27.421875, 47.517201 ], [ 27.070312, 47.517201 ], [ 27.070312, 48.224673 ], [ 26.718750, 48.224673 ], [ 26.718750, 48.458352 ], [ 27.421875, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 48.458352 ], [ 27.773438, 48.224673 ], [ 28.476562, 48.224673 ], [ 28.476562, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 47.517201 ], [ 29.179688, 47.517201 ], [ 29.179688, 47.279229 ], [ 29.531250, 47.279229 ], [ 29.531250, 46.800059 ], [ 29.882812, 46.800059 ], [ 29.882812, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 46.073231 ], [ 28.476562, 46.073231 ], [ 28.476562, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 45.828799 ], [ 27.773438, 45.828799 ], [ 27.773438, 46.316584 ], [ 28.125000, 46.316584 ], [ 28.125000, 47.040182 ], [ 27.773438, 47.040182 ], [ 27.773438, 47.279229 ], [ 27.421875, 47.279229 ], [ 27.421875, 47.754098 ], [ 27.070312, 47.754098 ], [ 27.070312, 47.989922 ], [ 26.718750, 47.989922 ], [ 26.718750, 48.458352 ], [ 27.773438, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, 52.268157 ], [ 33.750000, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.835778 ], [ 34.453125, 51.835778 ], [ 34.453125, 51.618017 ], [ 34.101562, 51.618017 ], [ 34.101562, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.958427 ], [ 35.507812, 50.958427 ], [ 35.507812, 50.513427 ], [ 35.859375, 50.513427 ], [ 35.859375, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 50.064192 ], [ 37.617188, 50.064192 ], [ 37.617188, 49.837982 ], [ 39.023438, 49.837982 ], [ 39.023438, 49.610710 ], [ 40.078125, 49.610710 ], [ 40.078125, 48.922499 ], [ 39.726562, 48.922499 ], [ 39.726562, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.517201 ], [ 38.320312, 47.517201 ], [ 38.320312, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.800059 ], [ 36.562500, 46.800059 ], [ 36.562500, 46.558860 ], [ 35.507812, 46.558860 ], [ 35.507812, 46.316584 ], [ 34.804688, 46.316584 ], [ 34.804688, 45.828799 ], [ 35.156250, 45.828799 ], [ 35.156250, 45.336702 ], [ 36.210938, 45.336702 ], [ 36.210938, 45.089036 ], [ 35.859375, 45.089036 ], [ 35.859375, 44.840291 ], [ 35.156250, 44.840291 ], [ 35.156250, 44.590467 ], [ 34.453125, 44.590467 ], [ 34.453125, 44.339565 ], [ 33.398438, 44.339565 ], [ 33.398438, 45.089036 ], [ 32.695312, 45.089036 ], [ 32.695312, 45.583290 ], [ 33.398438, 45.583290 ], [ 33.398438, 46.073231 ], [ 32.343750, 46.073231 ], [ 32.343750, 46.316584 ], [ 31.640625, 46.316584 ], [ 31.640625, 46.800059 ], [ 31.289062, 46.800059 ], [ 31.289062, 46.558860 ], [ 30.585938, 46.558860 ], [ 30.585938, 46.316584 ], [ 30.234375, 46.316584 ], [ 30.234375, 45.828799 ], [ 29.882812, 45.828799 ], [ 29.882812, 45.336702 ], [ 28.125000, 45.336702 ], [ 28.125000, 45.583290 ], [ 28.828125, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.179688, 46.558860 ], [ 29.179688, 46.316584 ], [ 29.882812, 46.316584 ], [ 29.882812, 46.800059 ], [ 29.531250, 46.800059 ], [ 29.531250, 47.279229 ], [ 29.179688, 47.279229 ], [ 29.179688, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 48.224673 ], [ 27.421875, 48.224673 ], [ 27.421875, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 48.224673 ], [ 26.367188, 48.224673 ], [ 26.367188, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 47.754098 ], [ 24.257812, 47.754098 ], [ 24.257812, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 48.224673 ], [ 22.148438, 48.224673 ], [ 22.148438, 48.922499 ], [ 22.851562, 48.922499 ], [ 22.851562, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 49.382373 ], [ 22.851562, 49.382373 ], [ 22.851562, 49.837982 ], [ 23.203125, 49.837982 ], [ 23.203125, 50.064192 ], [ 23.554688, 50.064192 ], [ 23.554688, 50.289339 ], [ 23.906250, 50.289339 ], [ 23.906250, 51.179343 ], [ 23.554688, 51.179343 ], [ 23.554688, 51.618017 ], [ 24.609375, 51.618017 ], [ 24.609375, 51.835778 ], [ 26.718750, 51.835778 ], [ 26.718750, 51.618017 ], [ 28.125000, 51.618017 ], [ 28.125000, 51.399206 ], [ 30.585938, 51.399206 ], [ 30.585938, 51.835778 ], [ 30.937500, 51.835778 ], [ 30.937500, 52.052490 ], [ 32.343750, 52.052490 ], [ 32.343750, 52.268157 ], [ 33.750000, 52.268157 ] ] ], [ [ [ 36.562500, 45.336702 ], [ 36.210938, 45.336702 ], [ 36.210938, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.336702 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.482780 ], [ 33.750000, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.399206 ], [ 34.804688, 51.399206 ], [ 34.804688, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.513427 ], [ 35.859375, 50.513427 ], [ 35.859375, 50.289339 ], [ 37.617188, 50.289339 ], [ 37.617188, 50.064192 ], [ 38.320312, 50.064192 ], [ 38.320312, 49.837982 ], [ 39.023438, 49.837982 ], [ 39.023438, 49.610710 ], [ 39.726562, 49.610710 ], [ 39.726562, 49.382373 ], [ 40.078125, 49.382373 ], [ 40.078125, 49.152970 ], [ 39.726562, 49.152970 ], [ 39.726562, 48.922499 ], [ 39.375000, 48.922499 ], [ 39.375000, 48.690960 ], [ 39.726562, 48.690960 ], [ 39.726562, 47.989922 ], [ 38.671875, 47.989922 ], [ 38.671875, 47.754098 ], [ 37.968750, 47.754098 ], [ 37.968750, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.800059 ], [ 35.507812, 46.800059 ], [ 35.507812, 46.558860 ], [ 35.156250, 46.558860 ], [ 35.156250, 46.316584 ], [ 34.804688, 46.316584 ], [ 34.804688, 45.583290 ], [ 36.210938, 45.583290 ], [ 36.210938, 45.336702 ], [ 35.859375, 45.336702 ], [ 35.859375, 45.089036 ], [ 35.156250, 45.089036 ], [ 35.156250, 44.840291 ], [ 34.453125, 44.840291 ], [ 34.453125, 44.590467 ], [ 33.046875, 44.590467 ], [ 33.046875, 44.840291 ], [ 33.398438, 44.840291 ], [ 33.398438, 45.089036 ], [ 32.695312, 45.089036 ], [ 32.695312, 45.336702 ], [ 32.343750, 45.336702 ], [ 32.343750, 45.583290 ], [ 32.695312, 45.583290 ], [ 32.695312, 45.828799 ], [ 33.398438, 45.828799 ], [ 33.398438, 46.073231 ], [ 33.046875, 46.073231 ], [ 33.046875, 46.316584 ], [ 31.992188, 46.316584 ], [ 31.992188, 46.558860 ], [ 31.640625, 46.558860 ], [ 31.640625, 46.800059 ], [ 30.585938, 46.800059 ], [ 30.585938, 46.316584 ], [ 30.234375, 46.316584 ], [ 30.234375, 45.828799 ], [ 29.882812, 45.828799 ], [ 29.882812, 45.336702 ], [ 28.125000, 45.336702 ], [ 28.125000, 45.583290 ], [ 28.476562, 45.583290 ], [ 28.476562, 46.073231 ], [ 28.828125, 46.073231 ], [ 28.828125, 46.558860 ], [ 29.882812, 46.558860 ], [ 29.882812, 46.800059 ], [ 29.531250, 46.800059 ], [ 29.531250, 47.279229 ], [ 29.179688, 47.279229 ], [ 29.179688, 47.517201 ], [ 28.828125, 47.517201 ], [ 28.828125, 47.989922 ], [ 28.476562, 47.989922 ], [ 28.476562, 48.224673 ], [ 27.773438, 48.224673 ], [ 27.773438, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 48.224673 ], [ 26.015625, 48.224673 ], [ 26.015625, 47.989922 ], [ 24.960938, 47.989922 ], [ 24.960938, 47.754098 ], [ 24.257812, 47.754098 ], [ 24.257812, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 48.224673 ], [ 21.796875, 48.224673 ], [ 21.796875, 48.690960 ], [ 22.148438, 48.690960 ], [ 22.148438, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 49.837982 ], [ 22.851562, 49.837982 ], [ 22.851562, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 50.513427 ], [ 23.906250, 50.513427 ], [ 23.906250, 50.958427 ], [ 23.554688, 50.958427 ], [ 23.554688, 51.399206 ], [ 23.203125, 51.399206 ], [ 23.203125, 51.618017 ], [ 23.906250, 51.618017 ], [ 23.906250, 51.835778 ], [ 24.257812, 51.835778 ], [ 24.257812, 52.052490 ], [ 25.312500, 52.052490 ], [ 25.312500, 51.835778 ], [ 26.367188, 51.835778 ], [ 26.367188, 51.618017 ], [ 28.828125, 51.618017 ], [ 28.828125, 51.399206 ], [ 30.234375, 51.399206 ], [ 30.234375, 51.618017 ], [ 30.585938, 51.618017 ], [ 30.585938, 52.052490 ], [ 31.289062, 52.052490 ], [ 31.289062, 52.268157 ], [ 33.398438, 52.268157 ], [ 33.398438, 52.482780 ], [ 33.750000, 52.482780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.539062, 43.325178 ], [ 42.539062, 43.068888 ], [ 43.242188, 43.068888 ], [ 43.242188, 42.811522 ], [ 43.593750, 42.811522 ], [ 43.593750, 42.553080 ], [ 45.351562, 42.553080 ], [ 45.351562, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 41.771312 ], [ 46.054688, 41.771312 ], [ 46.054688, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.757812, 41.244772 ], [ 46.757812, 40.979898 ], [ 46.054688, 40.979898 ], [ 46.054688, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 40.979898 ], [ 43.242188, 40.979898 ], [ 43.242188, 41.244772 ], [ 42.539062, 41.244772 ], [ 42.539062, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.771312 ], [ 41.835938, 41.771312 ], [ 41.835938, 42.293564 ], [ 41.484375, 42.293564 ], [ 41.484375, 42.553080 ], [ 41.132812, 42.553080 ], [ 41.132812, 42.811522 ], [ 40.781250, 42.811522 ], [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.325178 ], [ 42.539062, 43.325178 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.132812, 43.580391 ], [ 41.132812, 43.325178 ], [ 42.187500, 43.325178 ], [ 42.187500, 43.068888 ], [ 42.890625, 43.068888 ], [ 42.890625, 42.811522 ], [ 43.593750, 42.811522 ], [ 43.593750, 42.553080 ], [ 44.296875, 42.553080 ], [ 44.296875, 42.811522 ], [ 44.648438, 42.811522 ], [ 44.648438, 42.553080 ], [ 45.351562, 42.553080 ], [ 45.351562, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 41.771312 ], [ 46.054688, 41.771312 ], [ 46.054688, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.508577 ], [ 44.296875, 41.508577 ], [ 44.296875, 41.244772 ], [ 42.890625, 41.244772 ], [ 42.890625, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.771312 ], [ 41.484375, 41.771312 ], [ 41.484375, 42.293564 ], [ 41.132812, 42.293564 ], [ 41.132812, 42.811522 ], [ 40.781250, 42.811522 ], [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.325178 ], [ 39.726562, 43.325178 ], [ 39.726562, 43.580391 ], [ 41.132812, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.160317 ], [ 10.195312, 36.597889 ], [ 10.546875, 36.597889 ], [ 10.546875, 36.879621 ], [ 11.250000, 36.879621 ], [ 11.250000, 36.597889 ], [ 10.898438, 36.597889 ], [ 10.898438, 36.315125 ], [ 10.546875, 36.315125 ], [ 10.546875, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 34.597042 ], [ 10.546875, 34.597042 ], [ 10.546875, 34.307144 ], [ 10.195312, 34.307144 ], [ 10.195312, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.431441 ], [ 11.250000, 33.431441 ], [ 11.250000, 33.137551 ], [ 11.601562, 33.137551 ], [ 11.601562, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.353637 ], [ 9.843750, 31.353637 ], [ 9.843750, 31.052934 ], [ 10.195312, 31.052934 ], [ 10.195312, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 30.448674 ], [ 9.492188, 30.448674 ], [ 9.492188, 31.353637 ], [ 9.140625, 31.353637 ], [ 9.140625, 32.249974 ], [ 8.437500, 32.249974 ], [ 8.437500, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 33.724340 ], [ 7.382812, 33.724340 ], [ 7.382812, 34.016242 ], [ 7.734375, 34.016242 ], [ 7.734375, 34.307144 ], [ 8.085938, 34.307144 ], [ 8.085938, 34.885931 ], [ 8.437500, 34.885931 ], [ 8.437500, 35.746512 ], [ 8.085938, 35.746512 ], [ 8.085938, 36.597889 ], [ 8.437500, 36.597889 ], [ 8.437500, 36.879621 ], [ 8.789062, 36.879621 ], [ 8.789062, 37.160317 ], [ 10.195312, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.195312, 37.439974 ], [ 10.195312, 37.160317 ], [ 9.843750, 37.160317 ], [ 9.843750, 36.879621 ], [ 10.546875, 36.879621 ], [ 10.546875, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 35.173808 ], [ 10.546875, 35.173808 ], [ 10.546875, 34.597042 ], [ 9.843750, 34.597042 ], [ 9.843750, 34.307144 ], [ 10.195312, 34.307144 ], [ 10.195312, 34.016242 ], [ 10.546875, 34.016242 ], [ 10.546875, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.137551 ], [ 11.250000, 33.137551 ], [ 11.250000, 32.249974 ], [ 10.898438, 32.249974 ], [ 10.898438, 31.952162 ], [ 10.546875, 31.952162 ], [ 10.546875, 31.653381 ], [ 9.843750, 31.653381 ], [ 9.843750, 30.448674 ], [ 9.140625, 30.448674 ], [ 9.140625, 31.353637 ], [ 8.789062, 31.353637 ], [ 8.789062, 32.249974 ], [ 8.437500, 32.249974 ], [ 8.437500, 32.546813 ], [ 8.085938, 32.546813 ], [ 8.085938, 32.842674 ], [ 7.734375, 32.842674 ], [ 7.734375, 33.137551 ], [ 7.382812, 33.137551 ], [ 7.382812, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.597042 ], [ 8.085938, 34.597042 ], [ 8.085938, 37.160317 ], [ 9.140625, 37.160317 ], [ 9.140625, 37.439974 ], [ 10.195312, 37.439974 ] ] ], [ [ [ 10.898438, 36.879621 ], [ 10.546875, 36.879621 ], [ 10.546875, 37.160317 ], [ 10.898438, 37.160317 ], [ 10.898438, 36.879621 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.382812, 37.160317 ], [ 7.382812, 36.879621 ], [ 8.437500, 36.879621 ], [ 8.437500, 36.597889 ], [ 8.085938, 36.597889 ], [ 8.085938, 35.746512 ], [ 8.437500, 35.746512 ], [ 8.437500, 34.885931 ], [ 8.085938, 34.885931 ], [ 8.085938, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.016242 ], [ 7.382812, 34.016242 ], [ 7.382812, 33.724340 ], [ 7.734375, 33.724340 ], [ 7.734375, 33.137551 ], [ 8.085938, 33.137551 ], [ 8.085938, 32.842674 ], [ 8.437500, 32.842674 ], [ 8.437500, 32.249974 ], [ 9.140625, 32.249974 ], [ 9.140625, 31.353637 ], [ 9.492188, 31.353637 ], [ 9.492188, 29.840644 ], [ 9.843750, 29.840644 ], [ 9.843750, 27.371767 ], [ 9.492188, 27.371767 ], [ 9.492188, 26.745610 ], [ 9.843750, 26.745610 ], [ 9.843750, 26.115986 ], [ 9.492188, 26.115986 ], [ 9.492188, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 24.527135 ], [ 10.898438, 24.527135 ], [ 10.898438, 24.206890 ], [ 11.601562, 24.206890 ], [ 11.601562, 23.885838 ], [ 11.953125, 23.885838 ], [ 11.953125, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 22.917923 ], [ 10.546875, 22.917923 ], [ 10.546875, 22.593726 ], [ 10.195312, 22.593726 ], [ 10.195312, 22.268764 ], [ 9.492188, 22.268764 ], [ 9.492188, 21.943046 ], [ 8.789062, 21.943046 ], [ 8.789062, 21.616579 ], [ 8.437500, 21.616579 ], [ 8.437500, 21.289374 ], [ 8.085938, 21.289374 ], [ 8.085938, 20.961440 ], [ 7.382812, 20.961440 ], [ 7.382812, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.303418 ], [ 6.679688, 20.303418 ], [ 6.679688, 19.973349 ], [ 5.976562, 19.973349 ], [ 5.976562, 19.642588 ], [ 5.273438, 19.642588 ], [ 5.273438, 19.311143 ], [ 3.867188, 19.311143 ], [ 3.867188, 18.979026 ], [ 3.164062, 18.979026 ], [ 3.164062, 19.642588 ], [ 2.812500, 19.642588 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.303418 ], [ 1.757812, 20.303418 ], [ 1.757812, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.289374 ], [ 0.351562, 21.289374 ], [ 0.351562, 21.616579 ], [ 0.000000, 21.616579 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 32.249974 ], [ -1.054688, 32.249974 ], [ -1.054688, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 35.460670 ], [ -1.054688, 35.460670 ], [ -1.054688, 35.746512 ], [ 0.000000, 35.746512 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 1.054688, 36.315125 ], [ 1.054688, 36.597889 ], [ 2.460938, 36.597889 ], [ 2.460938, 36.879621 ], [ 4.921875, 36.879621 ], [ 4.921875, 36.597889 ], [ 5.625000, 36.597889 ], [ 5.625000, 36.879621 ], [ 6.328125, 36.879621 ], [ 6.328125, 37.160317 ], [ 7.382812, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.085938, 37.160317 ], [ 8.085938, 34.597042 ], [ 7.734375, 34.597042 ], [ 7.734375, 34.307144 ], [ 7.382812, 34.307144 ], [ 7.382812, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 32.546813 ], [ 8.437500, 32.546813 ], [ 8.437500, 32.249974 ], [ 8.789062, 32.249974 ], [ 8.789062, 31.353637 ], [ 9.140625, 31.353637 ], [ 9.140625, 29.840644 ], [ 9.492188, 29.840644 ], [ 9.492188, 29.228890 ], [ 9.843750, 29.228890 ], [ 9.843750, 28.613459 ], [ 9.492188, 28.613459 ], [ 9.492188, 26.431228 ], [ 9.140625, 26.431228 ], [ 9.140625, 25.799891 ], [ 9.492188, 25.799891 ], [ 9.492188, 25.482951 ], [ 9.843750, 25.482951 ], [ 9.843750, 24.846565 ], [ 10.195312, 24.846565 ], [ 10.195312, 24.527135 ], [ 10.898438, 24.527135 ], [ 10.898438, 24.206890 ], [ 11.250000, 24.206890 ], [ 11.250000, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 22.917923 ], [ 10.546875, 22.917923 ], [ 10.546875, 22.593726 ], [ 10.195312, 22.593726 ], [ 10.195312, 22.268764 ], [ 9.492188, 22.268764 ], [ 9.492188, 21.943046 ], [ 8.789062, 21.943046 ], [ 8.789062, 21.616579 ], [ 8.437500, 21.616579 ], [ 8.437500, 21.289374 ], [ 8.085938, 21.289374 ], [ 8.085938, 20.961440 ], [ 7.382812, 20.961440 ], [ 7.382812, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.303418 ], [ 6.679688, 20.303418 ], [ 6.679688, 19.973349 ], [ 5.976562, 19.973349 ], [ 5.976562, 19.642588 ], [ 5.273438, 19.642588 ], [ 5.273438, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 1.757812, 19.973349 ], [ 1.757812, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 20.961440 ], [ 0.703125, 20.961440 ], [ 0.703125, 21.289374 ], [ 0.351562, 21.289374 ], [ 0.351562, 21.616579 ], [ -0.351562, 21.616579 ], [ -0.351562, 21.943046 ], [ -0.703125, 21.943046 ], [ -0.703125, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.757812, 22.593726 ], [ -1.757812, 32.249974 ], [ -1.406250, 32.249974 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 35.746512 ], [ -0.703125, 35.746512 ], [ -0.703125, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 0.703125, 36.315125 ], [ 0.703125, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 36.879621 ], [ 5.976562, 36.879621 ], [ 5.976562, 37.160317 ], [ 8.085938, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.953125, 33.137551 ], [ 11.953125, 32.842674 ], [ 14.062500, 32.842674 ], [ 14.062500, 32.546813 ], [ 14.765625, 32.546813 ], [ 14.765625, 32.249974 ], [ 15.117188, 32.249974 ], [ 15.117188, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.353637 ], [ 15.820312, 31.353637 ], [ 15.820312, 31.052934 ], [ 16.875000, 31.052934 ], [ 16.875000, 30.751278 ], [ 17.929688, 30.751278 ], [ 17.929688, 30.448674 ], [ 18.632812, 30.448674 ], [ 18.632812, 30.145127 ], [ 19.687500, 30.145127 ], [ 19.687500, 30.751278 ], [ 20.039062, 30.751278 ], [ 20.039062, 31.353637 ], [ 19.687500, 31.353637 ], [ 19.687500, 31.952162 ], [ 20.039062, 31.952162 ], [ 20.039062, 32.249974 ], [ 20.390625, 32.249974 ], [ 20.390625, 32.546813 ], [ 20.742188, 32.546813 ], [ 20.742188, 32.842674 ], [ 21.796875, 32.842674 ], [ 21.796875, 32.546813 ], [ 22.851562, 32.546813 ], [ 22.851562, 32.249974 ], [ 23.554688, 32.249974 ], [ 23.554688, 31.952162 ], [ 24.960938, 31.952162 ], [ 24.960938, 31.653381 ], [ 25.312500, 31.653381 ], [ 25.312500, 31.353637 ], [ 24.960938, 31.353637 ], [ 24.960938, 30.448674 ], [ 24.609375, 30.448674 ], [ 24.609375, 29.535230 ], [ 24.960938, 29.535230 ], [ 24.960938, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.642588 ], [ 23.203125, 19.642588 ], [ 23.203125, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 20.303418 ], [ 21.796875, 20.303418 ], [ 21.796875, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 20.961440 ], [ 20.390625, 20.961440 ], [ 20.390625, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 21.616579 ], [ 19.335938, 21.616579 ], [ 19.335938, 21.943046 ], [ 18.632812, 21.943046 ], [ 18.632812, 22.268764 ], [ 17.929688, 22.268764 ], [ 17.929688, 22.593726 ], [ 17.226562, 22.593726 ], [ 17.226562, 22.917923 ], [ 16.523438, 22.917923 ], [ 16.523438, 23.241346 ], [ 15.117188, 23.241346 ], [ 15.117188, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.593726 ], [ 13.710938, 22.593726 ], [ 13.710938, 22.917923 ], [ 13.007812, 22.917923 ], [ 13.007812, 23.241346 ], [ 12.304688, 23.241346 ], [ 12.304688, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 24.206890 ], [ 10.898438, 24.206890 ], [ 10.898438, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.799891 ], [ 9.492188, 25.799891 ], [ 9.492188, 26.115986 ], [ 9.843750, 26.115986 ], [ 9.843750, 26.745610 ], [ 9.492188, 26.745610 ], [ 9.492188, 27.371767 ], [ 9.843750, 27.371767 ], [ 9.843750, 29.840644 ], [ 9.492188, 29.840644 ], [ 9.492188, 30.448674 ], [ 9.843750, 30.448674 ], [ 9.843750, 30.751278 ], [ 10.195312, 30.751278 ], [ 10.195312, 31.052934 ], [ 9.843750, 31.052934 ], [ 9.843750, 31.353637 ], [ 10.546875, 31.353637 ], [ 10.546875, 31.653381 ], [ 10.898438, 31.653381 ], [ 10.898438, 31.952162 ], [ 11.601562, 31.952162 ], [ 11.601562, 33.137551 ], [ 11.953125, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.601562, 33.137551 ], [ 11.601562, 32.842674 ], [ 14.062500, 32.842674 ], [ 14.062500, 32.546813 ], [ 15.117188, 32.546813 ], [ 15.117188, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.653381 ], [ 15.820312, 31.653381 ], [ 15.820312, 31.353637 ], [ 16.875000, 31.353637 ], [ 16.875000, 31.052934 ], [ 17.929688, 31.052934 ], [ 17.929688, 30.751278 ], [ 18.632812, 30.751278 ], [ 18.632812, 30.448674 ], [ 19.335938, 30.448674 ], [ 19.335938, 30.751278 ], [ 20.039062, 30.751278 ], [ 20.039062, 31.353637 ], [ 19.687500, 31.353637 ], [ 19.687500, 31.952162 ], [ 20.039062, 31.952162 ], [ 20.039062, 32.249974 ], [ 20.390625, 32.249974 ], [ 20.390625, 32.546813 ], [ 20.742188, 32.546813 ], [ 20.742188, 32.842674 ], [ 22.851562, 32.842674 ], [ 22.851562, 32.546813 ], [ 23.203125, 32.546813 ], [ 23.203125, 32.249974 ], [ 23.906250, 32.249974 ], [ 23.906250, 31.952162 ], [ 24.609375, 31.952162 ], [ 24.609375, 31.653381 ], [ 24.960938, 31.653381 ], [ 24.960938, 31.353637 ], [ 24.609375, 31.353637 ], [ 24.609375, 29.840644 ], [ 24.960938, 29.840644 ], [ 24.960938, 20.303418 ], [ 23.554688, 20.303418 ], [ 23.554688, 19.642588 ], [ 23.203125, 19.642588 ], [ 23.203125, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 20.303418 ], [ 21.796875, 20.303418 ], [ 21.796875, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 20.961440 ], [ 20.390625, 20.961440 ], [ 20.390625, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 21.616579 ], [ 19.335938, 21.616579 ], [ 19.335938, 21.943046 ], [ 18.632812, 21.943046 ], [ 18.632812, 22.268764 ], [ 17.929688, 22.268764 ], [ 17.929688, 22.593726 ], [ 17.226562, 22.593726 ], [ 17.226562, 22.917923 ], [ 16.523438, 22.917923 ], [ 16.523438, 23.241346 ], [ 15.117188, 23.241346 ], [ 15.117188, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.593726 ], [ 13.710938, 22.593726 ], [ 13.710938, 22.917923 ], [ 13.359375, 22.917923 ], [ 13.359375, 23.241346 ], [ 12.304688, 23.241346 ], [ 12.304688, 23.563987 ], [ 11.601562, 23.563987 ], [ 11.601562, 23.885838 ], [ 11.250000, 23.885838 ], [ 11.250000, 24.206890 ], [ 10.898438, 24.206890 ], [ 10.898438, 24.527135 ], [ 10.195312, 24.527135 ], [ 10.195312, 24.846565 ], [ 9.843750, 24.846565 ], [ 9.843750, 25.482951 ], [ 9.492188, 25.482951 ], [ 9.492188, 25.799891 ], [ 9.140625, 25.799891 ], [ 9.140625, 26.431228 ], [ 9.492188, 26.431228 ], [ 9.492188, 28.613459 ], [ 9.843750, 28.613459 ], [ 9.843750, 29.228890 ], [ 9.492188, 29.228890 ], [ 9.492188, 29.840644 ], [ 9.140625, 29.840644 ], [ 9.140625, 30.448674 ], [ 9.843750, 30.448674 ], [ 9.843750, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 32.249974 ], [ 11.250000, 32.249974 ], [ 11.250000, 33.137551 ], [ 11.601562, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.304688, 23.563987 ], [ 12.304688, 23.241346 ], [ 13.007812, 23.241346 ], [ 13.007812, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.943046 ], [ 15.117188, 21.943046 ], [ 15.117188, 20.961440 ], [ 15.468750, 20.961440 ], [ 15.468750, 20.303418 ], [ 15.820312, 20.303418 ], [ 15.820312, 18.979026 ], [ 15.468750, 18.979026 ], [ 15.468750, 17.308688 ], [ 15.117188, 17.308688 ], [ 15.117188, 16.299051 ], [ 14.765625, 16.299051 ], [ 14.765625, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 15.623037 ], [ 14.062500, 15.623037 ], [ 14.062500, 14.944785 ], [ 13.710938, 14.944785 ], [ 13.710938, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 13.239945 ], [ 14.765625, 13.239945 ], [ 14.765625, 12.897489 ], [ 14.062500, 12.897489 ], [ 14.062500, 12.554564 ], [ 13.710938, 12.554564 ], [ 13.710938, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 13.581921 ], [ 13.007812, 13.581921 ], [ 13.007812, 13.239945 ], [ 12.656250, 13.239945 ], [ 12.656250, 12.897489 ], [ 11.601562, 12.897489 ], [ 11.601562, 13.239945 ], [ 10.195312, 13.239945 ], [ 10.195312, 12.897489 ], [ 8.085938, 12.897489 ], [ 8.085938, 13.239945 ], [ 6.328125, 13.239945 ], [ 6.328125, 13.581921 ], [ 5.625000, 13.581921 ], [ 5.625000, 13.923404 ], [ 4.921875, 13.923404 ], [ 4.921875, 13.581921 ], [ 4.218750, 13.581921 ], [ 4.218750, 13.239945 ], [ 3.867188, 13.239945 ], [ 3.867188, 12.554564 ], [ 3.515625, 12.554564 ], [ 3.515625, 11.523088 ], [ 3.164062, 11.523088 ], [ 3.164062, 11.867351 ], [ 2.812500, 11.867351 ], [ 2.812500, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 1.406250, 12.554564 ], [ 1.406250, 12.897489 ], [ 1.054688, 12.897489 ], [ 1.054688, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.581921 ], [ 0.351562, 13.581921 ], [ 0.351562, 14.944785 ], [ 1.406250, 14.944785 ], [ 1.406250, 15.284185 ], [ 3.515625, 15.284185 ], [ 3.515625, 15.961329 ], [ 3.867188, 15.961329 ], [ 3.867188, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.311143 ], [ 5.273438, 19.311143 ], [ 5.273438, 19.642588 ], [ 5.976562, 19.642588 ], [ 5.976562, 19.973349 ], [ 6.679688, 19.973349 ], [ 6.679688, 20.303418 ], [ 7.031250, 20.303418 ], [ 7.031250, 20.632784 ], [ 7.382812, 20.632784 ], [ 7.382812, 20.961440 ], [ 8.085938, 20.961440 ], [ 8.085938, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 21.616579 ], [ 8.789062, 21.616579 ], [ 8.789062, 21.943046 ], [ 9.492188, 21.943046 ], [ 9.492188, 22.268764 ], [ 10.195312, 22.268764 ], [ 10.195312, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 22.917923 ], [ 11.250000, 22.917923 ], [ 11.250000, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.563987 ], [ 12.304688, 23.563987 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.304688, 23.563987 ], [ 12.304688, 23.241346 ], [ 13.359375, 23.241346 ], [ 13.359375, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.289374 ], [ 15.468750, 21.289374 ], [ 15.468750, 20.632784 ], [ 15.820312, 20.632784 ], [ 15.820312, 20.303418 ], [ 15.468750, 20.303418 ], [ 15.468750, 18.979026 ], [ 15.117188, 18.979026 ], [ 15.117188, 16.299051 ], [ 14.414062, 16.299051 ], [ 14.414062, 15.961329 ], [ 13.710938, 15.961329 ], [ 13.710938, 15.284185 ], [ 13.359375, 15.284185 ], [ 13.359375, 14.264383 ], [ 13.710938, 14.264383 ], [ 13.710938, 13.581921 ], [ 14.414062, 13.581921 ], [ 14.414062, 12.897489 ], [ 14.062500, 12.897489 ], [ 14.062500, 12.554564 ], [ 13.359375, 12.554564 ], [ 13.359375, 13.239945 ], [ 13.007812, 13.239945 ], [ 13.007812, 13.581921 ], [ 12.656250, 13.581921 ], [ 12.656250, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 13.581921 ], [ 9.843750, 13.581921 ], [ 9.843750, 13.239945 ], [ 9.492188, 13.239945 ], [ 9.492188, 12.897489 ], [ 8.437500, 12.897489 ], [ 8.437500, 13.239945 ], [ 6.328125, 13.239945 ], [ 6.328125, 13.581921 ], [ 5.625000, 13.581921 ], [ 5.625000, 13.923404 ], [ 4.218750, 13.923404 ], [ 4.218750, 13.581921 ], [ 3.867188, 13.581921 ], [ 3.867188, 12.897489 ], [ 3.515625, 12.897489 ], [ 3.515625, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 12.211180 ], [ 2.812500, 12.211180 ], [ 2.812500, 12.554564 ], [ 2.460938, 12.554564 ], [ 2.460938, 12.211180 ], [ 2.109375, 12.211180 ], [ 2.109375, 12.897489 ], [ 0.703125, 12.897489 ], [ 0.703125, 13.923404 ], [ 0.351562, 13.923404 ], [ 0.351562, 14.264383 ], [ 0.000000, 14.264383 ], [ 0.000000, 14.604847 ], [ 0.351562, 14.604847 ], [ 0.351562, 14.944785 ], [ 0.703125, 14.944785 ], [ 0.703125, 15.284185 ], [ 1.054688, 15.284185 ], [ 1.054688, 15.623037 ], [ 3.515625, 15.623037 ], [ 3.515625, 16.299051 ], [ 3.867188, 16.299051 ], [ 3.867188, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.311143 ], [ 5.273438, 19.311143 ], [ 5.273438, 19.642588 ], [ 5.976562, 19.642588 ], [ 5.976562, 19.973349 ], [ 6.679688, 19.973349 ], [ 6.679688, 20.303418 ], [ 7.031250, 20.303418 ], [ 7.031250, 20.632784 ], [ 7.382812, 20.632784 ], [ 7.382812, 20.961440 ], [ 8.085938, 20.961440 ], [ 8.085938, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 21.616579 ], [ 8.789062, 21.616579 ], [ 8.789062, 21.943046 ], [ 9.492188, 21.943046 ], [ 9.492188, 22.268764 ], [ 10.195312, 22.268764 ], [ 10.195312, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 22.917923 ], [ 11.250000, 22.917923 ], [ 11.250000, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.563987 ], [ 12.304688, 23.563987 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 11.178402 ], [ 0.351562, 10.833306 ], [ 1.054688, 10.833306 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.757812, 9.102097 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 7.013668 ], [ 0.351562, 7.013668 ], [ 0.351562, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.141932 ], [ 1.406250, 10.141932 ], [ 1.406250, 6.664608 ], [ 1.757812, 6.664608 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 6.664608 ], [ 0.351562, 6.664608 ], [ 0.351562, 8.059230 ], [ 0.703125, 8.059230 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ -0.351562, 10.487812 ], [ -0.351562, 10.833306 ], [ 0.000000, 10.833306 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.211180 ], [ 2.812500, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 11.523088 ], [ 3.515625, 11.523088 ], [ 3.515625, 10.833306 ], [ 3.867188, 10.833306 ], [ 3.867188, 10.487812 ], [ 3.515625, 10.487812 ], [ 3.515625, 10.141932 ], [ 3.867188, 10.141932 ], [ 3.867188, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.757812, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.054688, 9.795678 ], [ 1.054688, 10.141932 ], [ 0.703125, 10.141932 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.833306 ], [ 1.406250, 10.833306 ], [ 1.406250, 11.523088 ], [ 2.109375, 11.523088 ], [ 2.109375, 11.867351 ], [ 2.460938, 11.867351 ], [ 2.460938, 12.211180 ], [ 2.812500, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.554564 ], [ 2.812500, 12.211180 ], [ 3.164062, 12.211180 ], [ 3.164062, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 9.795678 ], [ 3.164062, 9.795678 ], [ 3.164062, 9.449062 ], [ 2.812500, 9.449062 ], [ 2.812500, 9.102097 ], [ 2.460938, 9.102097 ], [ 2.460938, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.757812, 6.664608 ], [ 1.406250, 6.664608 ], [ 1.406250, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.054688, 11.178402 ], [ 1.054688, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 12.554564 ], [ 2.812500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 13.923404 ], [ 5.625000, 13.581921 ], [ 6.328125, 13.581921 ], [ 6.328125, 13.239945 ], [ 8.085938, 13.239945 ], [ 8.085938, 12.897489 ], [ 10.195312, 12.897489 ], [ 10.195312, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 12.897489 ], [ 12.656250, 12.897489 ], [ 12.656250, 13.239945 ], [ 13.007812, 13.239945 ], [ 13.007812, 13.581921 ], [ 13.359375, 13.581921 ], [ 13.359375, 13.239945 ], [ 13.710938, 13.239945 ], [ 13.710938, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 12.211180 ], [ 14.414062, 12.211180 ], [ 14.414062, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.795678 ], [ 13.007812, 9.795678 ], [ 13.007812, 9.102097 ], [ 12.656250, 9.102097 ], [ 12.656250, 8.407168 ], [ 12.304688, 8.407168 ], [ 12.304688, 8.059230 ], [ 11.953125, 8.059230 ], [ 11.953125, 7.013668 ], [ 11.601562, 7.013668 ], [ 11.601562, 6.664608 ], [ 10.546875, 6.664608 ], [ 10.546875, 7.013668 ], [ 10.195312, 7.013668 ], [ 10.195312, 6.664608 ], [ 9.843750, 6.664608 ], [ 9.843750, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.965754 ], [ 8.789062, 5.965754 ], [ 8.789062, 5.266008 ], [ 8.437500, 5.266008 ], [ 8.437500, 4.915833 ], [ 8.085938, 4.915833 ], [ 8.085938, 4.565474 ], [ 7.031250, 4.565474 ], [ 7.031250, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 4.565474 ], [ 5.273438, 4.565474 ], [ 5.273438, 5.266008 ], [ 4.921875, 5.266008 ], [ 4.921875, 5.615986 ], [ 4.570312, 5.615986 ], [ 4.570312, 5.965754 ], [ 4.218750, 5.965754 ], [ 4.218750, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.164062, 9.102097 ], [ 3.164062, 9.449062 ], [ 3.515625, 9.449062 ], [ 3.515625, 9.795678 ], [ 3.867188, 9.795678 ], [ 3.867188, 10.141932 ], [ 3.515625, 10.141932 ], [ 3.515625, 10.487812 ], [ 3.867188, 10.487812 ], [ 3.867188, 10.833306 ], [ 3.515625, 10.833306 ], [ 3.515625, 12.554564 ], [ 3.867188, 12.554564 ], [ 3.867188, 13.239945 ], [ 4.218750, 13.239945 ], [ 4.218750, 13.581921 ], [ 4.921875, 13.581921 ], [ 4.921875, 13.923404 ], [ 5.625000, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 13.923404 ], [ 5.625000, 13.581921 ], [ 6.328125, 13.581921 ], [ 6.328125, 13.239945 ], [ 8.437500, 13.239945 ], [ 8.437500, 12.897489 ], [ 9.492188, 12.897489 ], [ 9.492188, 13.239945 ], [ 9.843750, 13.239945 ], [ 9.843750, 13.581921 ], [ 11.601562, 13.581921 ], [ 11.601562, 13.239945 ], [ 12.656250, 13.239945 ], [ 12.656250, 13.581921 ], [ 13.007812, 13.581921 ], [ 13.007812, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 12.211180 ], [ 14.414062, 12.211180 ], [ 14.414062, 11.523088 ], [ 14.062500, 11.523088 ], [ 14.062500, 11.178402 ], [ 13.710938, 11.178402 ], [ 13.710938, 10.833306 ], [ 13.359375, 10.833306 ], [ 13.359375, 10.487812 ], [ 13.007812, 10.487812 ], [ 13.007812, 9.449062 ], [ 12.656250, 9.449062 ], [ 12.656250, 8.407168 ], [ 11.953125, 8.407168 ], [ 11.953125, 7.710992 ], [ 11.601562, 7.710992 ], [ 11.601562, 6.664608 ], [ 10.546875, 6.664608 ], [ 10.546875, 7.013668 ], [ 10.195312, 7.013668 ], [ 10.195312, 7.362467 ], [ 9.843750, 7.362467 ], [ 9.843750, 7.013668 ], [ 9.492188, 7.013668 ], [ 9.492188, 6.664608 ], [ 9.140625, 6.664608 ], [ 9.140625, 6.315299 ], [ 8.789062, 6.315299 ], [ 8.789062, 5.615986 ], [ 8.437500, 5.615986 ], [ 8.437500, 4.915833 ], [ 8.085938, 4.915833 ], [ 8.085938, 4.565474 ], [ 5.273438, 4.565474 ], [ 5.273438, 5.266008 ], [ 4.921875, 5.266008 ], [ 4.921875, 5.615986 ], [ 4.570312, 5.615986 ], [ 4.570312, 5.965754 ], [ 4.218750, 5.965754 ], [ 4.218750, 6.315299 ], [ 2.460938, 6.315299 ], [ 2.460938, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 12.897489 ], [ 3.867188, 12.897489 ], [ 3.867188, 13.581921 ], [ 4.218750, 13.581921 ], [ 4.218750, 13.923404 ], [ 5.625000, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.108899 ], [ 11.250000, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 2.108899 ], [ 11.250000, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.460181 ], [ 11.250000, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.757537 ], [ 9.492188, 1.757537 ], [ 9.492188, 2.460181 ], [ 11.250000, 2.460181 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 23.241346 ], [ 16.523438, 22.917923 ], [ 17.226562, 22.917923 ], [ 17.226562, 22.593726 ], [ 17.929688, 22.593726 ], [ 17.929688, 22.268764 ], [ 18.632812, 22.268764 ], [ 18.632812, 21.943046 ], [ 19.335938, 21.943046 ], [ 19.335938, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.642588 ], [ 23.906250, 19.642588 ], [ 23.906250, 15.623037 ], [ 22.851562, 15.623037 ], [ 22.851562, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 14.604847 ], [ 22.148438, 14.604847 ], [ 22.148438, 12.211180 ], [ 22.500000, 12.211180 ], [ 22.500000, 11.523088 ], [ 22.851562, 11.523088 ], [ 22.851562, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 10.141932 ], [ 21.445312, 10.141932 ], [ 21.445312, 9.449062 ], [ 20.742188, 9.449062 ], [ 20.742188, 9.102097 ], [ 18.984375, 9.102097 ], [ 18.984375, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 8.059230 ], [ 17.929688, 8.059230 ], [ 17.929688, 7.710992 ], [ 17.226562, 7.710992 ], [ 17.226562, 7.362467 ], [ 16.523438, 7.362467 ], [ 16.523438, 7.710992 ], [ 16.171875, 7.710992 ], [ 16.171875, 7.362467 ], [ 15.468750, 7.362467 ], [ 15.468750, 8.059230 ], [ 15.117188, 8.059230 ], [ 15.117188, 8.754795 ], [ 14.414062, 8.754795 ], [ 14.414062, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.795678 ], [ 14.765625, 9.795678 ], [ 14.765625, 10.141932 ], [ 15.117188, 10.141932 ], [ 15.117188, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 11.178402 ], [ 15.117188, 11.178402 ], [ 15.117188, 11.867351 ], [ 14.765625, 11.867351 ], [ 14.765625, 12.554564 ], [ 14.414062, 12.554564 ], [ 14.414062, 12.897489 ], [ 14.765625, 12.897489 ], [ 14.765625, 13.239945 ], [ 14.062500, 13.239945 ], [ 14.062500, 13.923404 ], [ 13.710938, 13.923404 ], [ 13.710938, 14.944785 ], [ 14.062500, 14.944785 ], [ 14.062500, 15.623037 ], [ 14.414062, 15.623037 ], [ 14.414062, 15.961329 ], [ 14.765625, 15.961329 ], [ 14.765625, 16.299051 ], [ 15.117188, 16.299051 ], [ 15.117188, 17.308688 ], [ 15.468750, 17.308688 ], [ 15.468750, 18.979026 ], [ 15.820312, 18.979026 ], [ 15.820312, 20.303418 ], [ 15.468750, 20.303418 ], [ 15.468750, 20.961440 ], [ 15.117188, 20.961440 ], [ 15.117188, 21.943046 ], [ 14.765625, 21.943046 ], [ 14.765625, 22.917923 ], [ 15.117188, 22.917923 ], [ 15.117188, 23.241346 ], [ 16.523438, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 23.241346 ], [ 16.523438, 22.917923 ], [ 17.226562, 22.917923 ], [ 17.226562, 22.593726 ], [ 17.929688, 22.593726 ], [ 17.929688, 22.268764 ], [ 18.632812, 22.268764 ], [ 18.632812, 21.943046 ], [ 19.335938, 21.943046 ], [ 19.335938, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.642588 ], [ 23.554688, 19.642588 ], [ 23.554688, 15.623037 ], [ 22.851562, 15.623037 ], [ 22.851562, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 14.604847 ], [ 22.148438, 14.604847 ], [ 22.148438, 14.264383 ], [ 22.500000, 14.264383 ], [ 22.500000, 13.923404 ], [ 22.148438, 13.923404 ], [ 22.148438, 13.239945 ], [ 21.796875, 13.239945 ], [ 21.796875, 12.897489 ], [ 22.148438, 12.897489 ], [ 22.148438, 12.554564 ], [ 22.500000, 12.554564 ], [ 22.500000, 11.523088 ], [ 22.851562, 11.523088 ], [ 22.851562, 11.178402 ], [ 22.148438, 11.178402 ], [ 22.148438, 10.833306 ], [ 21.445312, 10.833306 ], [ 21.445312, 10.487812 ], [ 21.093750, 10.487812 ], [ 21.093750, 9.795678 ], [ 20.742188, 9.795678 ], [ 20.742188, 9.449062 ], [ 20.390625, 9.449062 ], [ 20.390625, 9.102097 ], [ 18.632812, 9.102097 ], [ 18.632812, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 8.059230 ], [ 17.578125, 8.059230 ], [ 17.578125, 7.710992 ], [ 15.117188, 7.710992 ], [ 15.117188, 8.754795 ], [ 14.765625, 8.754795 ], [ 14.765625, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.449062 ], [ 13.710938, 9.449062 ], [ 13.710938, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 10.141932 ], [ 15.117188, 10.141932 ], [ 15.117188, 10.833306 ], [ 14.765625, 10.833306 ], [ 14.765625, 12.554564 ], [ 14.414062, 12.554564 ], [ 14.414062, 13.581921 ], [ 13.710938, 13.581921 ], [ 13.710938, 14.264383 ], [ 13.359375, 14.264383 ], [ 13.359375, 15.284185 ], [ 13.710938, 15.284185 ], [ 13.710938, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 16.299051 ], [ 15.117188, 16.299051 ], [ 15.117188, 18.979026 ], [ 15.468750, 18.979026 ], [ 15.468750, 20.303418 ], [ 15.820312, 20.303418 ], [ 15.820312, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.289374 ], [ 14.765625, 21.289374 ], [ 14.765625, 22.917923 ], [ 15.117188, 22.917923 ], [ 15.117188, 23.241346 ], [ 16.523438, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.414062, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ], [ 15.117188, 11.867351 ], [ 15.117188, 11.178402 ], [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.117188, 10.487812 ], [ 15.117188, 10.141932 ], [ 14.765625, 10.141932 ], [ 14.765625, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.414062, 9.102097 ], [ 14.414062, 8.754795 ], [ 15.117188, 8.754795 ], [ 15.117188, 8.059230 ], [ 15.468750, 8.059230 ], [ 15.468750, 7.362467 ], [ 15.117188, 7.362467 ], [ 15.117188, 6.664608 ], [ 14.765625, 6.664608 ], [ 14.765625, 6.315299 ], [ 14.414062, 6.315299 ], [ 14.414062, 4.214943 ], [ 15.117188, 4.214943 ], [ 15.117188, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 3.162456 ], [ 15.820312, 3.162456 ], [ 15.820312, 2.108899 ], [ 16.171875, 2.108899 ], [ 16.171875, 1.757537 ], [ 15.117188, 1.757537 ], [ 15.117188, 2.108899 ], [ 9.492188, 2.108899 ], [ 9.492188, 2.460181 ], [ 9.843750, 2.460181 ], [ 9.843750, 3.513421 ], [ 9.492188, 3.513421 ], [ 9.492188, 3.864255 ], [ 8.789062, 3.864255 ], [ 8.789062, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.266008 ], [ 8.789062, 5.266008 ], [ 8.789062, 5.965754 ], [ 9.140625, 5.965754 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 6.664608 ], [ 10.195312, 6.664608 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.664608 ], [ 11.601562, 6.664608 ], [ 11.601562, 7.013668 ], [ 11.953125, 7.013668 ], [ 11.953125, 8.059230 ], [ 12.304688, 8.059230 ], [ 12.304688, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.007812, 9.102097 ], [ 13.007812, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 10.487812 ], [ 13.710938, 10.487812 ], [ 13.710938, 10.833306 ], [ 14.062500, 10.833306 ], [ 14.062500, 11.178402 ], [ 14.414062, 11.178402 ], [ 14.414062, 12.211180 ], [ 14.062500, 12.211180 ], [ 14.062500, 12.897489 ], [ 14.414062, 12.897489 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.414062, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 10.833306 ], [ 15.117188, 10.833306 ], [ 15.117188, 10.141932 ], [ 14.062500, 10.141932 ], [ 14.062500, 9.795678 ], [ 13.710938, 9.795678 ], [ 13.710938, 9.449062 ], [ 14.062500, 9.449062 ], [ 14.062500, 9.102097 ], [ 14.765625, 9.102097 ], [ 14.765625, 8.754795 ], [ 15.117188, 8.754795 ], [ 15.117188, 7.013668 ], [ 14.765625, 7.013668 ], [ 14.765625, 6.315299 ], [ 14.414062, 6.315299 ], [ 14.414062, 4.565474 ], [ 14.765625, 4.565474 ], [ 14.765625, 3.513421 ], [ 15.117188, 3.513421 ], [ 15.117188, 3.162456 ], [ 15.820312, 3.162456 ], [ 15.820312, 1.757537 ], [ 15.117188, 1.757537 ], [ 15.117188, 2.108899 ], [ 14.414062, 2.108899 ], [ 14.414062, 2.460181 ], [ 9.492188, 2.460181 ], [ 9.492188, 3.513421 ], [ 9.140625, 3.513421 ], [ 9.140625, 3.864255 ], [ 8.789062, 3.864255 ], [ 8.789062, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 8.789062, 5.615986 ], [ 8.789062, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 6.664608 ], [ 9.492188, 6.664608 ], [ 9.492188, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 7.362467 ], [ 10.195312, 7.362467 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.664608 ], [ 11.601562, 6.664608 ], [ 11.601562, 7.710992 ], [ 11.953125, 7.710992 ], [ 11.953125, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.449062 ], [ 13.007812, 9.449062 ], [ 13.007812, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 11.523088 ], [ 14.414062, 11.523088 ], [ 14.414062, 12.211180 ], [ 14.062500, 12.211180 ], [ 14.062500, 12.897489 ], [ 14.414062, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 10.833306 ], [ 22.851562, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 8.754795 ], [ 23.906250, 8.754795 ], [ 23.906250, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.059230 ], [ 24.609375, 8.059230 ], [ 24.609375, 7.710992 ], [ 24.960938, 7.710992 ], [ 24.960938, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 6.664608 ], [ 26.367188, 6.664608 ], [ 26.367188, 5.615986 ], [ 27.070312, 5.615986 ], [ 27.070312, 5.266008 ], [ 25.312500, 5.266008 ], [ 25.312500, 4.915833 ], [ 23.554688, 4.915833 ], [ 23.554688, 4.565474 ], [ 22.851562, 4.565474 ], [ 22.851562, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 3.864255 ], [ 21.796875, 3.864255 ], [ 21.796875, 4.214943 ], [ 20.390625, 4.214943 ], [ 20.390625, 4.565474 ], [ 19.687500, 4.565474 ], [ 19.687500, 4.915833 ], [ 19.335938, 4.915833 ], [ 19.335938, 4.565474 ], [ 18.984375, 4.565474 ], [ 18.984375, 4.214943 ], [ 18.632812, 4.214943 ], [ 18.632812, 3.864255 ], [ 18.281250, 3.864255 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 2.460181 ], [ 16.171875, 2.460181 ], [ 16.171875, 2.108899 ], [ 15.820312, 2.108899 ], [ 15.820312, 3.162456 ], [ 15.468750, 3.162456 ], [ 15.468750, 3.513421 ], [ 15.117188, 3.513421 ], [ 15.117188, 4.214943 ], [ 14.414062, 4.214943 ], [ 14.414062, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 6.664608 ], [ 15.117188, 6.664608 ], [ 15.117188, 7.362467 ], [ 16.171875, 7.362467 ], [ 16.171875, 7.710992 ], [ 16.523438, 7.710992 ], [ 16.523438, 7.362467 ], [ 17.226562, 7.362467 ], [ 17.226562, 7.710992 ], [ 17.929688, 7.710992 ], [ 17.929688, 8.059230 ], [ 18.281250, 8.059230 ], [ 18.281250, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 9.102097 ], [ 20.742188, 9.102097 ], [ 20.742188, 9.449062 ], [ 21.445312, 9.449062 ], [ 21.445312, 10.141932 ], [ 21.796875, 10.141932 ], [ 21.796875, 10.487812 ], [ 22.148438, 10.487812 ], [ 22.148438, 10.833306 ], [ 22.851562, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.851562, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 9.449062 ], [ 23.203125, 9.449062 ], [ 23.203125, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.059230 ], [ 24.960938, 8.059230 ], [ 24.960938, 7.362467 ], [ 25.312500, 7.362467 ], [ 25.312500, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 6.664608 ], [ 26.015625, 6.664608 ], [ 26.015625, 6.315299 ], [ 26.367188, 6.315299 ], [ 26.367188, 5.615986 ], [ 27.070312, 5.615986 ], [ 27.070312, 5.266008 ], [ 24.960938, 5.266008 ], [ 24.960938, 4.915833 ], [ 24.257812, 4.915833 ], [ 24.257812, 5.266008 ], [ 23.906250, 5.266008 ], [ 23.906250, 4.915833 ], [ 22.500000, 4.915833 ], [ 22.500000, 4.565474 ], [ 22.148438, 4.565474 ], [ 22.148438, 4.214943 ], [ 21.445312, 4.214943 ], [ 21.445312, 4.565474 ], [ 20.039062, 4.565474 ], [ 20.039062, 4.915833 ], [ 18.632812, 4.915833 ], [ 18.632812, 4.565474 ], [ 18.281250, 4.565474 ], [ 18.281250, 3.513421 ], [ 17.578125, 3.513421 ], [ 17.578125, 3.864255 ], [ 16.875000, 3.864255 ], [ 16.875000, 3.513421 ], [ 16.523438, 3.513421 ], [ 16.523438, 3.162456 ], [ 16.171875, 3.162456 ], [ 16.171875, 2.460181 ], [ 15.820312, 2.460181 ], [ 15.820312, 3.162456 ], [ 15.117188, 3.162456 ], [ 15.117188, 3.513421 ], [ 14.765625, 3.513421 ], [ 14.765625, 4.565474 ], [ 14.414062, 4.565474 ], [ 14.414062, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 7.013668 ], [ 15.117188, 7.013668 ], [ 15.117188, 7.710992 ], [ 17.578125, 7.710992 ], [ 17.578125, 8.059230 ], [ 18.281250, 8.059230 ], [ 18.281250, 8.407168 ], [ 18.632812, 8.407168 ], [ 18.632812, 9.102097 ], [ 20.390625, 9.102097 ], [ 20.390625, 9.449062 ], [ 20.742188, 9.449062 ], [ 20.742188, 9.795678 ], [ 21.093750, 9.795678 ], [ 21.093750, 10.487812 ], [ 21.445312, 10.487812 ], [ 21.445312, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 11.178402 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.664062, 35.460670 ], [ 25.664062, 35.173808 ], [ 26.367188, 35.173808 ], [ 26.367188, 34.885931 ], [ 24.609375, 34.885931 ], [ 24.609375, 35.173808 ], [ 23.554688, 35.173808 ], [ 23.554688, 35.460670 ], [ 25.664062, 35.460670 ] ] ], [ [ [ 26.718750, 41.508577 ], [ 26.718750, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.713956 ], [ 25.312500, 40.713956 ], [ 25.312500, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 40.713956 ], [ 23.554688, 40.713956 ], [ 23.554688, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 40.178873 ], [ 24.257812, 40.178873 ], [ 24.257812, 39.909736 ], [ 23.203125, 39.909736 ], [ 23.203125, 40.178873 ], [ 22.500000, 40.178873 ], [ 22.500000, 39.909736 ], [ 22.851562, 39.909736 ], [ 22.851562, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 39.095963 ], [ 22.851562, 39.095963 ], [ 22.851562, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.548165 ], [ 23.554688, 38.548165 ], [ 23.554688, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.554688, 37.718590 ], [ 23.554688, 37.439974 ], [ 22.851562, 37.439974 ], [ 22.851562, 36.879621 ], [ 23.203125, 36.879621 ], [ 23.203125, 36.315125 ], [ 22.148438, 36.315125 ], [ 22.148438, 36.597889 ], [ 21.796875, 36.597889 ], [ 21.796875, 37.160317 ], [ 21.445312, 37.160317 ], [ 21.445312, 37.996163 ], [ 21.093750, 37.996163 ], [ 21.093750, 38.548165 ], [ 20.742188, 38.548165 ], [ 20.742188, 39.095963 ], [ 20.390625, 39.095963 ], [ 20.390625, 39.368279 ], [ 20.039062, 39.368279 ], [ 20.039062, 39.639538 ], [ 20.390625, 39.639538 ], [ 20.390625, 39.909736 ], [ 20.742188, 39.909736 ], [ 20.742188, 40.446947 ], [ 21.093750, 40.446947 ], [ 21.093750, 40.713956 ], [ 21.796875, 40.713956 ], [ 21.796875, 40.979898 ], [ 22.148438, 40.979898 ], [ 22.148438, 41.244772 ], [ 24.257812, 41.244772 ], [ 24.257812, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.244772 ], [ 26.015625, 41.244772 ], [ 26.015625, 41.508577 ], [ 26.718750, 41.508577 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.015625, 35.460670 ], [ 26.015625, 35.173808 ], [ 23.554688, 35.173808 ], [ 23.554688, 35.460670 ], [ 26.015625, 35.460670 ] ] ], [ [ [ 22.851562, 40.178873 ], [ 22.851562, 39.639538 ], [ 23.203125, 39.639538 ], [ 23.203125, 39.095963 ], [ 22.851562, 39.095963 ], [ 22.851562, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.203125, 37.718590 ], [ 23.203125, 37.439974 ], [ 22.500000, 37.439974 ], [ 22.500000, 36.879621 ], [ 22.851562, 36.879621 ], [ 22.851562, 36.597889 ], [ 21.445312, 36.597889 ], [ 21.445312, 37.160317 ], [ 21.093750, 37.160317 ], [ 21.093750, 38.548165 ], [ 20.390625, 38.548165 ], [ 20.390625, 39.095963 ], [ 20.039062, 39.095963 ], [ 20.039062, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 41.244772 ], [ 22.500000, 41.244772 ], [ 22.500000, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.244772 ], [ 25.664062, 41.244772 ], [ 25.664062, 41.508577 ], [ 26.015625, 41.508577 ], [ 26.015625, 41.771312 ], [ 26.367188, 41.771312 ], [ 26.367188, 41.244772 ], [ 26.015625, 41.244772 ], [ 26.015625, 40.979898 ], [ 24.257812, 40.979898 ], [ 24.257812, 40.713956 ], [ 23.554688, 40.713956 ], [ 23.554688, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 40.178873 ], [ 22.851562, 40.178873 ] ], [ [ 23.203125, 37.718590 ], [ 23.203125, 37.996163 ], [ 22.851562, 37.996163 ], [ 22.851562, 37.718590 ], [ 23.203125, 37.718590 ] ], [ [ 22.851562, 40.178873 ], [ 22.851562, 40.446947 ], [ 22.500000, 40.446947 ], [ 22.500000, 40.178873 ], [ 22.851562, 40.178873 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 35.460670 ], [ 34.101562, 35.173808 ], [ 33.750000, 35.173808 ], [ 33.750000, 34.885931 ], [ 33.398438, 34.885931 ], [ 33.398438, 35.173808 ], [ 33.046875, 35.173808 ], [ 33.046875, 35.460670 ], [ 34.101562, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, 35.460670 ], [ 33.750000, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.695312, 35.460670 ], [ 33.750000, 35.460670 ] ] ], [ [ [ 34.453125, 35.460670 ], [ 34.101562, 35.460670 ], [ 34.101562, 35.746512 ], [ 34.453125, 35.746512 ], [ 34.453125, 35.460670 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.398438, 35.173808 ], [ 33.398438, 34.885931 ], [ 33.750000, 34.885931 ], [ 33.750000, 34.597042 ], [ 32.343750, 34.597042 ], [ 32.343750, 35.173808 ], [ 33.398438, 35.173808 ] ] ], [ [ [ 34.101562, 34.885931 ], [ 33.750000, 34.885931 ], [ 33.750000, 35.173808 ], [ 34.101562, 35.173808 ], [ 34.101562, 34.885931 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 35.173808 ], [ 33.750000, 34.885931 ], [ 33.046875, 34.885931 ], [ 33.046875, 34.597042 ], [ 32.343750, 34.597042 ], [ 32.343750, 34.885931 ], [ 31.992188, 34.885931 ], [ 31.992188, 35.173808 ], [ 33.750000, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 31.653381 ], [ 26.718750, 31.353637 ], [ 27.773438, 31.353637 ], [ 27.773438, 31.052934 ], [ 28.476562, 31.052934 ], [ 28.476562, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.052934 ], [ 30.234375, 31.052934 ], [ 30.234375, 31.353637 ], [ 31.640625, 31.353637 ], [ 31.640625, 31.052934 ], [ 34.101562, 31.052934 ], [ 34.101562, 30.751278 ], [ 34.453125, 30.751278 ], [ 34.453125, 29.840644 ], [ 34.804688, 29.840644 ], [ 34.804688, 28.613459 ], [ 34.453125, 28.613459 ], [ 34.453125, 27.994401 ], [ 34.101562, 27.994401 ], [ 34.101562, 27.683528 ], [ 33.750000, 27.683528 ], [ 33.750000, 27.994401 ], [ 33.046875, 27.994401 ], [ 33.046875, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.431228 ], [ 34.101562, 26.431228 ], [ 34.101562, 25.799891 ], [ 34.453125, 25.799891 ], [ 34.453125, 25.165173 ], [ 34.804688, 25.165173 ], [ 34.804688, 24.846565 ], [ 35.156250, 24.846565 ], [ 35.156250, 24.527135 ], [ 35.507812, 24.527135 ], [ 35.507812, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.268764 ], [ 36.562500, 22.268764 ], [ 36.562500, 21.943046 ], [ 24.960938, 21.943046 ], [ 24.960938, 29.535230 ], [ 24.609375, 29.535230 ], [ 24.609375, 30.448674 ], [ 24.960938, 30.448674 ], [ 24.960938, 31.353637 ], [ 25.312500, 31.353637 ], [ 25.312500, 31.653381 ], [ 26.718750, 31.653381 ] ], [ [ 32.695312, 28.613459 ], [ 32.695312, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 28.613459 ], [ 32.695312, 28.613459 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 27.683528 ], [ 33.398438, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.431228 ], [ 34.101562, 26.431228 ], [ 34.101562, 26.115986 ], [ 34.453125, 26.115986 ], [ 34.453125, 24.846565 ], [ 34.804688, 24.846565 ], [ 34.804688, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 24.206890 ], [ 35.507812, 24.206890 ], [ 35.507812, 23.885838 ], [ 35.156250, 23.885838 ], [ 35.156250, 23.563987 ], [ 35.507812, 23.563987 ], [ 35.507812, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.268764 ], [ 24.960938, 22.268764 ], [ 24.960938, 29.840644 ], [ 24.609375, 29.840644 ], [ 24.609375, 31.353637 ], [ 24.960938, 31.353637 ], [ 24.960938, 31.653381 ], [ 26.718750, 31.653381 ], [ 26.718750, 31.353637 ], [ 27.421875, 31.353637 ], [ 27.421875, 31.052934 ], [ 29.531250, 31.052934 ], [ 29.531250, 31.353637 ], [ 29.882812, 31.353637 ], [ 29.882812, 31.653381 ], [ 31.640625, 31.653381 ], [ 31.640625, 31.052934 ], [ 34.101562, 31.052934 ], [ 34.101562, 30.751278 ], [ 34.453125, 30.751278 ], [ 34.453125, 29.840644 ], [ 34.804688, 29.840644 ], [ 34.804688, 29.228890 ], [ 34.453125, 29.228890 ], [ 34.453125, 28.921631 ], [ 34.101562, 28.921631 ], [ 34.101562, 27.683528 ], [ 33.398438, 27.683528 ] ], [ [ 32.343750, 29.535230 ], [ 32.343750, 28.921631 ], [ 32.695312, 28.921631 ], [ 32.695312, 29.535230 ], [ 32.343750, 29.535230 ] ], [ [ 33.046875, 28.304381 ], [ 33.046875, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 28.304381 ], [ 33.046875, 28.304381 ] ], [ [ 32.695312, 28.921631 ], [ 32.695312, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 28.921631 ], [ 32.695312, 28.921631 ] ], [ [ 32.343750, 29.535230 ], [ 32.343750, 29.840644 ], [ 31.992188, 29.840644 ], [ 31.992188, 29.535230 ], [ 32.343750, 29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.032974 ], [ 35.156250, 41.771312 ], [ 35.859375, 41.771312 ], [ 35.859375, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.244772 ], [ 37.265625, 41.244772 ], [ 37.265625, 40.979898 ], [ 40.781250, 40.979898 ], [ 40.781250, 41.244772 ], [ 41.484375, 41.244772 ], [ 41.484375, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.244772 ], [ 43.242188, 41.244772 ], [ 43.242188, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.368279 ], [ 43.945312, 39.368279 ], [ 43.945312, 38.822591 ], [ 44.296875, 38.822591 ], [ 44.296875, 37.439974 ], [ 44.648438, 37.439974 ], [ 44.648438, 36.879621 ], [ 43.945312, 36.879621 ], [ 43.945312, 37.160317 ], [ 43.242188, 37.160317 ], [ 43.242188, 37.439974 ], [ 42.890625, 37.439974 ], [ 42.890625, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 36.879621 ], [ 40.078125, 36.879621 ], [ 40.078125, 36.597889 ], [ 38.320312, 36.597889 ], [ 38.320312, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 35.746512 ], [ 36.210938, 35.746512 ], [ 36.210938, 36.031332 ], [ 35.859375, 36.031332 ], [ 35.859375, 36.315125 ], [ 36.210938, 36.315125 ], [ 36.210938, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.315125 ], [ 33.398438, 36.315125 ], [ 33.398438, 36.031332 ], [ 31.992188, 36.031332 ], [ 31.992188, 36.315125 ], [ 31.640625, 36.315125 ], [ 31.640625, 36.597889 ], [ 30.585938, 36.597889 ], [ 30.585938, 36.315125 ], [ 30.234375, 36.315125 ], [ 30.234375, 36.031332 ], [ 29.179688, 36.031332 ], [ 29.179688, 36.315125 ], [ 28.828125, 36.315125 ], [ 28.828125, 36.597889 ], [ 27.773438, 36.597889 ], [ 27.773438, 36.879621 ], [ 27.421875, 36.879621 ], [ 27.421875, 37.439974 ], [ 27.070312, 37.439974 ], [ 27.070312, 37.718590 ], [ 26.718750, 37.718590 ], [ 26.718750, 37.996163 ], [ 26.367188, 37.996163 ], [ 26.367188, 38.548165 ], [ 26.718750, 38.548165 ], [ 26.718750, 39.095963 ], [ 26.015625, 39.095963 ], [ 26.015625, 39.368279 ], [ 26.367188, 39.368279 ], [ 26.367188, 39.639538 ], [ 26.718750, 39.639538 ], [ 26.718750, 39.909736 ], [ 27.070312, 39.909736 ], [ 27.070312, 40.178873 ], [ 27.421875, 40.178873 ], [ 27.421875, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.713956 ], [ 29.179688, 40.713956 ], [ 29.179688, 41.244772 ], [ 29.882812, 41.244772 ], [ 29.882812, 40.979898 ], [ 31.640625, 40.979898 ], [ 31.640625, 41.244772 ], [ 31.992188, 41.244772 ], [ 31.992188, 41.508577 ], [ 32.343750, 41.508577 ], [ 32.343750, 41.771312 ], [ 33.046875, 41.771312 ], [ 33.046875, 42.032974 ], [ 35.156250, 42.032974 ] ] ], [ [ [ 28.125000, 42.032974 ], [ 28.125000, 41.244772 ], [ 28.828125, 41.244772 ], [ 28.828125, 40.979898 ], [ 27.773438, 40.979898 ], [ 27.773438, 40.713956 ], [ 27.070312, 40.713956 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.178873 ], [ 26.367188, 40.178873 ], [ 26.367188, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.713956 ], [ 26.367188, 40.713956 ], [ 26.367188, 41.244772 ], [ 26.718750, 41.244772 ], [ 26.718750, 41.508577 ], [ 26.015625, 41.508577 ], [ 26.015625, 41.771312 ], [ 26.718750, 41.771312 ], [ 26.718750, 42.032974 ], [ 28.125000, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.070312, 40.446947 ], [ 28.125000, 40.446947 ], [ 28.125000, 40.713956 ], [ 28.828125, 40.713956 ], [ 28.828125, 40.979898 ], [ 29.179688, 40.979898 ], [ 29.179688, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.508577 ], [ 32.343750, 41.508577 ], [ 32.343750, 41.771312 ], [ 33.046875, 41.771312 ], [ 33.046875, 42.032974 ], [ 34.453125, 42.032974 ], [ 34.453125, 42.293564 ], [ 35.156250, 42.293564 ], [ 35.156250, 42.032974 ], [ 35.859375, 42.032974 ], [ 35.859375, 41.771312 ], [ 36.562500, 41.771312 ], [ 36.562500, 41.508577 ], [ 36.914062, 41.508577 ], [ 36.914062, 41.244772 ], [ 37.617188, 41.244772 ], [ 37.617188, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.244772 ], [ 40.781250, 41.244772 ], [ 40.781250, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.771312 ], [ 42.539062, 41.771312 ], [ 42.539062, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 41.244772 ], [ 43.242188, 41.244772 ], [ 43.242188, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 40.178873 ], [ 44.296875, 40.178873 ], [ 44.296875, 39.909736 ], [ 44.648438, 39.909736 ], [ 44.648438, 39.639538 ], [ 43.945312, 39.639538 ], [ 43.945312, 39.095963 ], [ 44.296875, 39.095963 ], [ 44.296875, 38.272689 ], [ 43.945312, 38.272689 ], [ 43.945312, 37.718590 ], [ 44.296875, 37.718590 ], [ 44.296875, 37.439974 ], [ 44.648438, 37.439974 ], [ 44.648438, 37.160317 ], [ 43.593750, 37.160317 ], [ 43.593750, 37.439974 ], [ 41.835938, 37.439974 ], [ 41.835938, 37.160317 ], [ 40.078125, 37.160317 ], [ 40.078125, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 37.160317 ], [ 37.617188, 37.160317 ], [ 37.617188, 36.879621 ], [ 36.562500, 36.879621 ], [ 36.562500, 36.315125 ], [ 36.210938, 36.315125 ], [ 36.210938, 36.031332 ], [ 35.507812, 36.031332 ], [ 35.507812, 36.597889 ], [ 34.804688, 36.597889 ], [ 34.804688, 36.879621 ], [ 34.453125, 36.879621 ], [ 34.453125, 36.597889 ], [ 34.101562, 36.597889 ], [ 34.101562, 36.315125 ], [ 31.992188, 36.315125 ], [ 31.992188, 36.597889 ], [ 31.640625, 36.597889 ], [ 31.640625, 36.879621 ], [ 30.585938, 36.879621 ], [ 30.585938, 36.597889 ], [ 30.234375, 36.597889 ], [ 30.234375, 36.315125 ], [ 29.179688, 36.315125 ], [ 29.179688, 36.597889 ], [ 28.476562, 36.597889 ], [ 28.476562, 36.879621 ], [ 27.070312, 36.879621 ], [ 27.070312, 37.439974 ], [ 26.718750, 37.439974 ], [ 26.718750, 37.718590 ], [ 26.367188, 37.718590 ], [ 26.367188, 37.996163 ], [ 26.015625, 37.996163 ], [ 26.015625, 38.272689 ], [ 26.367188, 38.272689 ], [ 26.367188, 38.822591 ], [ 26.718750, 38.822591 ], [ 26.718750, 39.095963 ], [ 26.367188, 39.095963 ], [ 26.367188, 39.368279 ], [ 26.015625, 39.368279 ], [ 26.015625, 39.639538 ], [ 26.367188, 39.639538 ], [ 26.367188, 39.909736 ], [ 26.718750, 39.909736 ], [ 26.718750, 40.178873 ], [ 27.070312, 40.178873 ], [ 27.070312, 40.446947 ] ] ], [ [ [ 27.070312, 40.446947 ], [ 26.367188, 40.446947 ], [ 26.367188, 40.178873 ], [ 26.015625, 40.178873 ], [ 26.015625, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 41.771312 ], [ 26.015625, 41.771312 ], [ 26.015625, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 42.293564 ], [ 27.070312, 42.293564 ], [ 27.070312, 42.032974 ], [ 27.773438, 42.032974 ], [ 27.773438, 41.771312 ], [ 28.125000, 41.771312 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 28.828125, 41.244772 ], [ 27.421875, 41.244772 ], [ 27.421875, 40.979898 ], [ 27.070312, 40.979898 ], [ 27.070312, 40.446947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 34.597042 ], [ 36.562500, 34.016242 ], [ 36.210938, 34.016242 ], [ 36.210938, 33.431441 ], [ 35.859375, 33.431441 ], [ 35.859375, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 33.431441 ], [ 35.507812, 33.431441 ], [ 35.507812, 34.307144 ], [ 35.859375, 34.307144 ], [ 35.859375, 34.597042 ], [ 36.562500, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.210938, 34.597042 ], [ 36.210938, 34.307144 ], [ 36.562500, 34.307144 ], [ 36.562500, 34.016242 ], [ 35.859375, 34.016242 ], [ 35.859375, 33.724340 ], [ 35.507812, 33.724340 ], [ 35.507812, 33.137551 ], [ 34.804688, 33.137551 ], [ 34.804688, 33.431441 ], [ 35.156250, 33.431441 ], [ 35.156250, 34.016242 ], [ 35.507812, 34.016242 ], [ 35.507812, 34.597042 ], [ 36.210938, 34.597042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 37.160317 ], [ 42.187500, 36.879621 ], [ 41.835938, 36.879621 ], [ 41.835938, 36.315125 ], [ 41.132812, 36.315125 ], [ 41.132812, 36.031332 ], [ 41.484375, 36.031332 ], [ 41.484375, 34.885931 ], [ 41.132812, 34.885931 ], [ 41.132812, 34.307144 ], [ 40.781250, 34.307144 ], [ 40.781250, 34.016242 ], [ 40.078125, 34.016242 ], [ 40.078125, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.431441 ], [ 38.671875, 33.431441 ], [ 38.671875, 33.137551 ], [ 38.320312, 33.137551 ], [ 38.320312, 32.842674 ], [ 37.617188, 32.842674 ], [ 37.617188, 32.546813 ], [ 37.265625, 32.546813 ], [ 37.265625, 32.249974 ], [ 36.562500, 32.249974 ], [ 36.562500, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.431441 ], [ 36.210938, 33.431441 ], [ 36.210938, 34.016242 ], [ 36.562500, 34.016242 ], [ 36.562500, 34.597042 ], [ 35.859375, 34.597042 ], [ 35.859375, 35.460670 ], [ 36.210938, 35.460670 ], [ 36.210938, 35.746512 ], [ 36.562500, 35.746512 ], [ 36.562500, 36.597889 ], [ 37.968750, 36.597889 ], [ 37.968750, 36.879621 ], [ 38.320312, 36.879621 ], [ 38.320312, 36.597889 ], [ 40.078125, 36.597889 ], [ 40.078125, 36.879621 ], [ 40.781250, 36.879621 ], [ 40.781250, 37.160317 ], [ 42.187500, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.835938, 37.160317 ], [ 41.835938, 36.597889 ], [ 41.132812, 36.597889 ], [ 41.132812, 35.173808 ], [ 40.781250, 35.173808 ], [ 40.781250, 34.307144 ], [ 40.078125, 34.307144 ], [ 40.078125, 34.016242 ], [ 39.726562, 34.016242 ], [ 39.726562, 33.724340 ], [ 39.023438, 33.724340 ], [ 39.023438, 33.431441 ], [ 38.671875, 33.431441 ], [ 38.671875, 33.137551 ], [ 37.968750, 33.137551 ], [ 37.968750, 32.842674 ], [ 37.265625, 32.842674 ], [ 37.265625, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 32.842674 ], [ 35.507812, 32.842674 ], [ 35.507812, 33.724340 ], [ 35.859375, 33.724340 ], [ 35.859375, 34.016242 ], [ 36.562500, 34.016242 ], [ 36.562500, 34.307144 ], [ 36.210938, 34.307144 ], [ 36.210938, 34.597042 ], [ 35.859375, 34.597042 ], [ 35.859375, 36.031332 ], [ 36.210938, 36.031332 ], [ 36.210938, 36.315125 ], [ 36.562500, 36.315125 ], [ 36.562500, 36.879621 ], [ 37.617188, 36.879621 ], [ 37.617188, 37.160317 ], [ 37.968750, 37.160317 ], [ 37.968750, 36.879621 ], [ 40.078125, 36.879621 ], [ 40.078125, 37.160317 ], [ 41.835938, 37.160317 ] ] ], [ [ [ 42.187500, 37.160317 ], [ 41.835938, 37.160317 ], [ 41.835938, 37.439974 ], [ 42.187500, 37.439974 ], [ 42.187500, 37.160317 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 37.439974 ], [ 43.242188, 37.160317 ], [ 43.945312, 37.160317 ], [ 43.945312, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.315125 ], [ 45.351562, 36.315125 ], [ 45.351562, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 34.307144 ], [ 45.351562, 34.307144 ], [ 45.351562, 33.724340 ], [ 45.703125, 33.724340 ], [ 45.703125, 33.137551 ], [ 46.054688, 33.137551 ], [ 46.054688, 32.842674 ], [ 46.757812, 32.842674 ], [ 46.757812, 32.546813 ], [ 47.460938, 32.546813 ], [ 47.460938, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 31.052934 ], [ 48.164062, 31.052934 ], [ 48.164062, 30.145127 ], [ 48.515625, 30.145127 ], [ 48.515625, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 29.535230 ], [ 46.757812, 29.535230 ], [ 46.757812, 29.228890 ], [ 44.296875, 29.228890 ], [ 44.296875, 29.535230 ], [ 43.593750, 29.535230 ], [ 43.593750, 29.840644 ], [ 43.242188, 29.840644 ], [ 43.242188, 30.145127 ], [ 42.890625, 30.145127 ], [ 42.890625, 30.448674 ], [ 42.187500, 30.448674 ], [ 42.187500, 30.751278 ], [ 41.835938, 30.751278 ], [ 41.835938, 31.052934 ], [ 41.484375, 31.052934 ], [ 41.484375, 31.353637 ], [ 40.781250, 31.353637 ], [ 40.781250, 31.653381 ], [ 40.429688, 31.653381 ], [ 40.429688, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 32.249974 ], [ 39.023438, 32.249974 ], [ 39.023438, 32.842674 ], [ 38.671875, 32.842674 ], [ 38.671875, 33.431441 ], [ 39.375000, 33.431441 ], [ 39.375000, 33.724340 ], [ 40.078125, 33.724340 ], [ 40.078125, 34.016242 ], [ 40.781250, 34.016242 ], [ 40.781250, 34.307144 ], [ 41.132812, 34.307144 ], [ 41.132812, 34.885931 ], [ 41.484375, 34.885931 ], [ 41.484375, 36.031332 ], [ 41.132812, 36.031332 ], [ 41.132812, 36.315125 ], [ 41.835938, 36.315125 ], [ 41.835938, 36.879621 ], [ 42.187500, 36.879621 ], [ 42.187500, 37.160317 ], [ 42.890625, 37.160317 ], [ 42.890625, 37.439974 ], [ 43.242188, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 37.439974 ], [ 43.593750, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.315125 ], [ 45.351562, 36.315125 ], [ 45.351562, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 34.885931 ], [ 45.351562, 34.885931 ], [ 45.351562, 33.724340 ], [ 45.703125, 33.724340 ], [ 45.703125, 33.137551 ], [ 46.054688, 33.137551 ], [ 46.054688, 32.842674 ], [ 46.757812, 32.842674 ], [ 46.757812, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 32.249974 ], [ 47.460938, 32.249974 ], [ 47.460938, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 31.353637 ], [ 47.460938, 31.353637 ], [ 47.460938, 31.052934 ], [ 47.812500, 31.052934 ], [ 47.812500, 30.448674 ], [ 48.164062, 30.448674 ], [ 48.164062, 30.145127 ], [ 47.109375, 30.145127 ], [ 47.109375, 29.840644 ], [ 46.757812, 29.840644 ], [ 46.757812, 29.228890 ], [ 44.296875, 29.228890 ], [ 44.296875, 29.535230 ], [ 43.945312, 29.535230 ], [ 43.945312, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 30.145127 ], [ 42.890625, 30.145127 ], [ 42.890625, 30.448674 ], [ 42.539062, 30.448674 ], [ 42.539062, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 31.353637 ], [ 41.132812, 31.353637 ], [ 41.132812, 31.653381 ], [ 40.429688, 31.653381 ], [ 40.429688, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 32.249974 ], [ 39.023438, 32.249974 ], [ 39.023438, 32.842674 ], [ 38.671875, 32.842674 ], [ 38.671875, 33.431441 ], [ 39.023438, 33.431441 ], [ 39.023438, 33.724340 ], [ 39.726562, 33.724340 ], [ 39.726562, 34.016242 ], [ 40.078125, 34.016242 ], [ 40.078125, 34.307144 ], [ 40.781250, 34.307144 ], [ 40.781250, 35.173808 ], [ 41.132812, 35.173808 ], [ 41.132812, 36.597889 ], [ 41.835938, 36.597889 ], [ 41.835938, 37.160317 ], [ 42.187500, 37.160317 ], [ 42.187500, 37.439974 ], [ 43.593750, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.804688, 31.653381 ], [ 34.804688, 31.353637 ], [ 35.507812, 31.353637 ], [ 35.507812, 30.448674 ], [ 35.156250, 30.448674 ], [ 35.156250, 29.840644 ], [ 34.453125, 29.840644 ], [ 34.453125, 30.751278 ], [ 34.101562, 30.751278 ], [ 34.101562, 31.353637 ], [ 34.453125, 31.353637 ], [ 34.453125, 31.653381 ], [ 34.804688, 31.653381 ] ] ], [ [ [ 35.859375, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 32.249974 ], [ 34.804688, 32.249974 ], [ 34.804688, 32.842674 ], [ 35.156250, 32.842674 ], [ 35.156250, 33.137551 ], [ 35.859375, 33.137551 ], [ 35.859375, 32.546813 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 33.137551 ], [ 35.507812, 32.546813 ], [ 35.156250, 32.546813 ], [ 35.156250, 32.249974 ], [ 34.804688, 32.249974 ], [ 34.804688, 31.952162 ], [ 35.156250, 31.952162 ], [ 35.156250, 31.653381 ], [ 34.804688, 31.653381 ], [ 34.804688, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 30.448674 ], [ 34.804688, 30.448674 ], [ 34.804688, 29.840644 ], [ 34.453125, 29.840644 ], [ 34.453125, 30.751278 ], [ 34.101562, 30.751278 ], [ 34.101562, 31.353637 ], [ 34.453125, 31.353637 ], [ 34.453125, 32.546813 ], [ 34.804688, 32.546813 ], [ 34.804688, 33.137551 ], [ 35.507812, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.249974 ], [ 35.507812, 31.353637 ], [ 34.804688, 31.353637 ], [ 34.804688, 32.249974 ], [ 35.507812, 32.249974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 31.653381 ], [ 35.156250, 31.353637 ], [ 34.804688, 31.353637 ], [ 34.804688, 31.653381 ], [ 35.156250, 31.653381 ] ] ], [ [ [ 35.507812, 31.653381 ], [ 35.156250, 31.653381 ], [ 35.156250, 31.952162 ], [ 34.804688, 31.952162 ], [ 34.804688, 32.249974 ], [ 35.156250, 32.249974 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 31.653381 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.137551 ], [ 38.671875, 32.842674 ], [ 39.023438, 32.842674 ], [ 39.023438, 31.952162 ], [ 38.320312, 31.952162 ], [ 38.320312, 31.653381 ], [ 36.914062, 31.653381 ], [ 36.914062, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.052934 ], [ 37.617188, 31.052934 ], [ 37.617188, 29.840644 ], [ 36.914062, 29.840644 ], [ 36.914062, 29.535230 ], [ 36.562500, 29.535230 ], [ 36.562500, 29.228890 ], [ 34.804688, 29.228890 ], [ 34.804688, 29.840644 ], [ 35.156250, 29.840644 ], [ 35.156250, 30.448674 ], [ 35.507812, 30.448674 ], [ 35.507812, 32.546813 ], [ 36.562500, 32.546813 ], [ 36.562500, 32.249974 ], [ 37.265625, 32.249974 ], [ 37.265625, 32.546813 ], [ 37.617188, 32.546813 ], [ 37.617188, 32.842674 ], [ 38.320312, 32.842674 ], [ 38.320312, 33.137551 ], [ 38.671875, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.137551 ], [ 38.671875, 32.842674 ], [ 39.023438, 32.842674 ], [ 39.023438, 32.249974 ], [ 38.320312, 32.249974 ], [ 38.320312, 31.952162 ], [ 37.617188, 31.952162 ], [ 37.617188, 31.653381 ], [ 36.914062, 31.653381 ], [ 36.914062, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.052934 ], [ 37.617188, 31.052934 ], [ 37.617188, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 30.448674 ], [ 37.617188, 30.448674 ], [ 37.617188, 30.145127 ], [ 36.562500, 30.145127 ], [ 36.562500, 29.840644 ], [ 36.210938, 29.840644 ], [ 36.210938, 29.228890 ], [ 35.156250, 29.228890 ], [ 35.156250, 29.535230 ], [ 34.804688, 29.535230 ], [ 34.804688, 30.448674 ], [ 35.156250, 30.448674 ], [ 35.156250, 31.653381 ], [ 35.507812, 31.653381 ], [ 35.507812, 32.842674 ], [ 35.859375, 32.842674 ], [ 35.859375, 32.546813 ], [ 37.265625, 32.546813 ], [ 37.265625, 32.842674 ], [ 37.968750, 32.842674 ], [ 37.968750, 33.137551 ], [ 38.671875, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.914062, 21.943046 ], [ 36.914062, 21.289374 ], [ 37.265625, 21.289374 ], [ 37.265625, 20.961440 ], [ 36.914062, 20.961440 ], [ 36.914062, 20.303418 ], [ 37.265625, 20.303418 ], [ 37.265625, 18.979026 ], [ 37.617188, 18.979026 ], [ 37.617188, 18.312811 ], [ 37.968750, 18.312811 ], [ 37.968750, 17.978733 ], [ 38.320312, 17.978733 ], [ 38.320312, 17.644022 ], [ 37.968750, 17.644022 ], [ 37.968750, 17.308688 ], [ 37.265625, 17.308688 ], [ 37.265625, 16.972741 ], [ 36.914062, 16.972741 ], [ 36.914062, 15.961329 ], [ 36.562500, 15.961329 ], [ 36.562500, 15.284185 ], [ 36.210938, 15.284185 ], [ 36.210938, 14.604847 ], [ 36.562500, 14.604847 ], [ 36.562500, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 12.897489 ], [ 35.859375, 12.897489 ], [ 35.859375, 12.211180 ], [ 35.156250, 12.211180 ], [ 35.156250, 11.523088 ], [ 34.804688, 11.523088 ], [ 34.804688, 10.487812 ], [ 34.101562, 10.487812 ], [ 34.101562, 9.449062 ], [ 33.750000, 9.449062 ], [ 33.750000, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 12.211180 ], [ 32.695312, 12.211180 ], [ 32.695312, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 11.523088 ], [ 32.343750, 11.523088 ], [ 32.343750, 10.833306 ], [ 31.992188, 10.833306 ], [ 31.992188, 10.141932 ], [ 31.640625, 10.141932 ], [ 31.640625, 9.795678 ], [ 30.234375, 9.795678 ], [ 30.234375, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.449062 ], [ 26.367188, 9.449062 ], [ 26.367188, 9.795678 ], [ 26.015625, 9.795678 ], [ 26.015625, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 9.102097 ], [ 24.609375, 9.102097 ], [ 24.609375, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 10.141932 ], [ 23.203125, 10.141932 ], [ 23.203125, 10.487812 ], [ 22.851562, 10.487812 ], [ 22.851562, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.211180 ], [ 22.148438, 12.211180 ], [ 22.148438, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.623037 ], [ 23.906250, 15.623037 ], [ 23.906250, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 21.943046 ], [ 36.914062, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 22.268764 ], [ 36.562500, 21.616579 ], [ 36.914062, 21.616579 ], [ 36.914062, 19.311143 ], [ 37.265625, 19.311143 ], [ 37.265625, 18.646245 ], [ 37.617188, 18.646245 ], [ 37.617188, 18.312811 ], [ 38.320312, 18.312811 ], [ 38.320312, 17.978733 ], [ 37.968750, 17.978733 ], [ 37.968750, 17.644022 ], [ 37.617188, 17.644022 ], [ 37.617188, 17.308688 ], [ 36.914062, 17.308688 ], [ 36.914062, 16.972741 ], [ 36.562500, 16.972741 ], [ 36.562500, 15.623037 ], [ 36.210938, 15.623037 ], [ 36.210938, 13.239945 ], [ 35.859375, 13.239945 ], [ 35.859375, 12.554564 ], [ 35.507812, 12.554564 ], [ 35.507812, 12.211180 ], [ 35.156250, 12.211180 ], [ 35.156250, 11.867351 ], [ 34.804688, 11.867351 ], [ 34.804688, 11.178402 ], [ 34.453125, 11.178402 ], [ 34.453125, 10.833306 ], [ 34.101562, 10.833306 ], [ 34.101562, 10.141932 ], [ 33.398438, 10.141932 ], [ 33.398438, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 12.211180 ], [ 31.992188, 12.211180 ], [ 31.992188, 11.523088 ], [ 32.343750, 11.523088 ], [ 32.343750, 10.833306 ], [ 31.640625, 10.833306 ], [ 31.640625, 10.487812 ], [ 31.289062, 10.487812 ], [ 31.289062, 9.795678 ], [ 30.234375, 9.795678 ], [ 30.234375, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.795678 ], [ 28.828125, 9.795678 ], [ 28.828125, 9.449062 ], [ 27.773438, 9.449062 ], [ 27.773438, 9.795678 ], [ 25.664062, 9.795678 ], [ 25.664062, 10.487812 ], [ 24.960938, 10.487812 ], [ 24.960938, 10.141932 ], [ 24.609375, 10.141932 ], [ 24.609375, 9.449062 ], [ 24.257812, 9.449062 ], [ 24.257812, 8.754795 ], [ 23.203125, 8.754795 ], [ 23.203125, 9.449062 ], [ 23.554688, 9.449062 ], [ 23.554688, 10.141932 ], [ 23.203125, 10.141932 ], [ 23.203125, 10.487812 ], [ 22.851562, 10.487812 ], [ 22.851562, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.554564 ], [ 22.148438, 12.554564 ], [ 22.148438, 12.897489 ], [ 21.796875, 12.897489 ], [ 21.796875, 13.239945 ], [ 22.148438, 13.239945 ], [ 22.148438, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 14.264383 ], [ 22.148438, 14.264383 ], [ 22.148438, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.623037 ], [ 23.554688, 15.623037 ], [ 23.554688, 20.303418 ], [ 24.960938, 20.303418 ], [ 24.960938, 22.268764 ], [ 36.562500, 22.268764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 12.211180 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 9.449062 ], [ 34.101562, 9.449062 ], [ 34.101562, 8.407168 ], [ 33.398438, 8.407168 ], [ 33.398438, 8.059230 ], [ 33.046875, 8.059230 ], [ 33.046875, 7.710992 ], [ 33.398438, 7.710992 ], [ 33.398438, 7.362467 ], [ 34.101562, 7.362467 ], [ 34.101562, 6.664608 ], [ 34.804688, 6.664608 ], [ 34.804688, 5.965754 ], [ 35.156250, 5.965754 ], [ 35.156250, 5.266008 ], [ 34.804688, 5.266008 ], [ 34.804688, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.565474 ], [ 34.101562, 4.565474 ], [ 34.101562, 3.864255 ], [ 32.695312, 3.864255 ], [ 32.695312, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.864255 ], [ 29.882812, 3.864255 ], [ 29.882812, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.565474 ], [ 27.773438, 4.565474 ], [ 27.773438, 4.915833 ], [ 27.421875, 4.915833 ], [ 27.421875, 5.266008 ], [ 27.070312, 5.266008 ], [ 27.070312, 5.615986 ], [ 26.367188, 5.615986 ], [ 26.367188, 6.664608 ], [ 25.664062, 6.664608 ], [ 25.664062, 7.013668 ], [ 24.960938, 7.013668 ], [ 24.960938, 7.710992 ], [ 24.609375, 7.710992 ], [ 24.609375, 8.059230 ], [ 24.257812, 8.059230 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.102097 ], [ 24.960938, 9.102097 ], [ 24.960938, 10.141932 ], [ 26.015625, 10.141932 ], [ 26.015625, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.449062 ], [ 29.531250, 9.449062 ], [ 29.531250, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.795678 ], [ 31.640625, 9.795678 ], [ 31.640625, 10.141932 ], [ 31.992188, 10.141932 ], [ 31.992188, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.523088 ], [ 31.992188, 11.523088 ], [ 31.992188, 11.867351 ], [ 32.695312, 11.867351 ], [ 32.695312, 12.211180 ], [ 33.046875, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 12.211180 ], [ 33.046875, 10.487812 ], [ 33.398438, 10.487812 ], [ 33.398438, 10.141932 ], [ 33.750000, 10.141932 ], [ 33.750000, 8.407168 ], [ 33.046875, 8.407168 ], [ 33.046875, 8.059230 ], [ 32.695312, 8.059230 ], [ 32.695312, 7.710992 ], [ 33.398438, 7.710992 ], [ 33.398438, 7.362467 ], [ 33.750000, 7.362467 ], [ 33.750000, 7.013668 ], [ 34.101562, 7.013668 ], [ 34.101562, 6.664608 ], [ 34.453125, 6.664608 ], [ 34.453125, 6.315299 ], [ 34.804688, 6.315299 ], [ 34.804688, 5.615986 ], [ 35.156250, 5.615986 ], [ 35.156250, 5.266008 ], [ 34.804688, 5.266008 ], [ 34.804688, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.565474 ], [ 33.750000, 4.565474 ], [ 33.750000, 4.214943 ], [ 33.398438, 4.214943 ], [ 33.398438, 3.864255 ], [ 30.937500, 3.864255 ], [ 30.937500, 3.513421 ], [ 30.234375, 3.513421 ], [ 30.234375, 3.864255 ], [ 29.882812, 3.864255 ], [ 29.882812, 4.565474 ], [ 27.421875, 4.565474 ], [ 27.421875, 4.915833 ], [ 27.070312, 4.915833 ], [ 27.070312, 5.615986 ], [ 26.367188, 5.615986 ], [ 26.367188, 6.315299 ], [ 26.015625, 6.315299 ], [ 26.015625, 6.664608 ], [ 25.664062, 6.664608 ], [ 25.664062, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 7.362467 ], [ 24.960938, 7.362467 ], [ 24.960938, 8.059230 ], [ 24.257812, 8.059230 ], [ 24.257812, 8.407168 ], [ 23.554688, 8.407168 ], [ 23.554688, 8.754795 ], [ 24.257812, 8.754795 ], [ 24.257812, 9.449062 ], [ 24.609375, 9.449062 ], [ 24.609375, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 10.487812 ], [ 25.664062, 10.487812 ], [ 25.664062, 9.795678 ], [ 27.773438, 9.795678 ], [ 27.773438, 9.449062 ], [ 28.828125, 9.449062 ], [ 28.828125, 9.795678 ], [ 29.531250, 9.795678 ], [ 29.531250, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.795678 ], [ 31.289062, 9.795678 ], [ 31.289062, 10.487812 ], [ 31.640625, 10.487812 ], [ 31.640625, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.523088 ], [ 31.992188, 11.523088 ], [ 31.992188, 12.211180 ], [ 33.046875, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.864255 ], [ 34.453125, 2.811371 ], [ 34.804688, 2.811371 ], [ 34.804688, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 31.289062, 1.757537 ], [ 31.289062, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 3.513421 ], [ 32.695312, 3.513421 ], [ 32.695312, 3.864255 ], [ 34.453125, 3.864255 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 4.214943 ], [ 34.101562, 3.864255 ], [ 34.453125, 3.864255 ], [ 34.453125, 2.460181 ], [ 34.804688, 2.460181 ], [ 34.804688, 1.757537 ], [ 34.453125, 1.757537 ], [ 34.453125, 1.054628 ], [ 34.101562, 1.054628 ], [ 34.101562, 0.351560 ], [ 33.750000, 0.351560 ], [ 33.750000, -0.703107 ], [ 30.585938, -0.703107 ], [ 30.585938, -1.054628 ], [ 30.234375, -1.054628 ], [ 30.234375, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.054628 ], [ 29.882812, 1.054628 ], [ 29.882812, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 2.460181 ], [ 30.585938, 2.460181 ], [ 30.585938, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 3.864255 ], [ 33.398438, 3.864255 ], [ 33.398438, 4.214943 ], [ 34.101562, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 17.644022 ], [ 38.671875, 16.972741 ], [ 39.023438, 16.972741 ], [ 39.023438, 16.299051 ], [ 39.375000, 16.299051 ], [ 39.375000, 15.623037 ], [ 39.726562, 15.623037 ], [ 39.726562, 14.944785 ], [ 40.429688, 14.944785 ], [ 40.429688, 14.604847 ], [ 41.132812, 14.604847 ], [ 41.132812, 14.264383 ], [ 41.484375, 14.264383 ], [ 41.484375, 13.923404 ], [ 41.835938, 13.923404 ], [ 41.835938, 13.581921 ], [ 42.187500, 13.581921 ], [ 42.187500, 12.897489 ], [ 42.539062, 12.897489 ], [ 42.539062, 12.554564 ], [ 41.835938, 12.554564 ], [ 41.835938, 13.239945 ], [ 41.484375, 13.239945 ], [ 41.484375, 13.581921 ], [ 41.132812, 13.581921 ], [ 41.132812, 13.923404 ], [ 40.781250, 13.923404 ], [ 40.781250, 14.264383 ], [ 40.078125, 14.264383 ], [ 40.078125, 14.604847 ], [ 37.617188, 14.604847 ], [ 37.617188, 14.264383 ], [ 36.562500, 14.264383 ], [ 36.562500, 14.604847 ], [ 36.210938, 14.604847 ], [ 36.210938, 15.284185 ], [ 36.562500, 15.284185 ], [ 36.562500, 15.961329 ], [ 36.914062, 15.961329 ], [ 36.914062, 16.972741 ], [ 37.265625, 16.972741 ], [ 37.265625, 17.308688 ], [ 37.968750, 17.308688 ], [ 37.968750, 17.644022 ], [ 38.671875, 17.644022 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.484375, 13.581921 ], [ 41.132812, 13.581921 ], [ 41.132812, 13.923404 ], [ 40.781250, 13.923404 ], [ 40.781250, 14.264383 ], [ 40.078125, 14.264383 ], [ 40.078125, 14.604847 ], [ 37.968750, 14.604847 ], [ 37.968750, 14.944785 ], [ 37.617188, 14.944785 ], [ 37.617188, 14.604847 ], [ 37.265625, 14.604847 ], [ 37.265625, 14.264383 ], [ 36.562500, 14.264383 ], [ 36.562500, 14.604847 ], [ 36.210938, 14.604847 ], [ 36.210938, 15.623037 ], [ 36.562500, 15.623037 ], [ 36.562500, 16.972741 ], [ 36.914062, 16.972741 ], [ 36.914062, 17.308688 ], [ 37.617188, 17.308688 ], [ 37.617188, 17.644022 ], [ 37.968750, 17.644022 ], [ 37.968750, 17.978733 ], [ 38.320312, 17.978733 ], [ 38.320312, 17.644022 ], [ 38.671875, 17.644022 ], [ 38.671875, 16.299051 ], [ 39.023438, 16.299051 ], [ 39.023438, 15.623037 ], [ 39.726562, 15.623037 ], [ 39.726562, 15.284185 ], [ 40.078125, 15.284185 ], [ 40.078125, 14.944785 ], [ 40.781250, 14.944785 ], [ 40.781250, 14.604847 ], [ 41.132812, 14.604847 ], [ 41.132812, 14.264383 ], [ 41.484375, 14.264383 ], [ 41.484375, 13.581921 ] ] ], [ [ [ 41.484375, 13.581921 ], [ 42.187500, 13.581921 ], [ 42.187500, 13.239945 ], [ 42.539062, 13.239945 ], [ 42.539062, 12.897489 ], [ 42.890625, 12.897489 ], [ 42.890625, 12.554564 ], [ 41.835938, 12.554564 ], [ 41.835938, 13.239945 ], [ 41.484375, 13.239945 ], [ 41.484375, 13.581921 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.554564 ], [ 43.242188, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.523088 ], [ 43.242188, 11.523088 ], [ 43.242188, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 10.833306 ], [ 42.539062, 10.833306 ], [ 42.539062, 11.178402 ], [ 41.835938, 11.178402 ], [ 41.835938, 12.211180 ], [ 42.187500, 12.211180 ], [ 42.187500, 12.554564 ], [ 43.242188, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.554564 ], [ 43.242188, 11.867351 ], [ 42.539062, 11.867351 ], [ 42.539062, 11.523088 ], [ 42.890625, 11.523088 ], [ 42.890625, 11.178402 ], [ 41.484375, 11.178402 ], [ 41.484375, 11.867351 ], [ 41.835938, 11.867351 ], [ 41.835938, 12.211180 ], [ 42.187500, 12.211180 ], [ 42.187500, 12.554564 ], [ 43.242188, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 5.266008 ], [ 35.859375, 4.565474 ], [ 36.914062, 4.565474 ], [ 36.914062, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 3.864255 ], [ 37.617188, 3.864255 ], [ 37.617188, 3.513421 ], [ 39.726562, 3.513421 ], [ 39.726562, 3.864255 ], [ 40.429688, 3.864255 ], [ 40.429688, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.000000 ], [ 34.101562, 0.000000 ], [ 34.101562, 0.351560 ], [ 34.453125, 0.351560 ], [ 34.453125, 0.703107 ], [ 34.804688, 0.703107 ], [ 34.804688, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.804688, 2.108899 ], [ 34.804688, 2.811371 ], [ 34.453125, 2.811371 ], [ 34.453125, 3.864255 ], [ 34.101562, 3.864255 ], [ 34.101562, 4.565474 ], [ 34.453125, 4.565474 ], [ 34.453125, 4.915833 ], [ 34.804688, 4.915833 ], [ 34.804688, 5.266008 ], [ 35.859375, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 5.615986 ], [ 35.507812, 4.565474 ], [ 36.562500, 4.565474 ], [ 36.562500, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 3.864255 ], [ 38.671875, 3.864255 ], [ 38.671875, 3.513421 ], [ 39.726562, 3.513421 ], [ 39.726562, 3.864255 ], [ 40.078125, 3.864255 ], [ 40.078125, 4.214943 ], [ 41.835938, 4.214943 ], [ 41.835938, 3.864255 ], [ 41.484375, 3.864255 ], [ 41.484375, 3.513421 ], [ 41.132812, 3.513421 ], [ 41.132812, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -1.054628 ], [ 41.132812, -1.054628 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -1.757537 ], [ 34.453125, -1.757537 ], [ 34.453125, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 1.054628 ], [ 34.453125, 1.054628 ], [ 34.453125, 1.757537 ], [ 34.804688, 1.757537 ], [ 34.804688, 2.460181 ], [ 34.453125, 2.460181 ], [ 34.453125, 3.864255 ], [ 34.101562, 3.864255 ], [ 34.101562, 4.214943 ], [ 33.750000, 4.214943 ], [ 33.750000, 4.565474 ], [ 34.453125, 4.565474 ], [ 34.453125, 4.915833 ], [ 34.804688, 4.915833 ], [ 34.804688, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.615986 ], [ 35.507812, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 14.604847 ], [ 40.078125, 14.264383 ], [ 40.781250, 14.264383 ], [ 40.781250, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.211180 ], [ 41.835938, 12.211180 ], [ 41.835938, 11.178402 ], [ 42.539062, 11.178402 ], [ 42.539062, 10.833306 ], [ 42.890625, 10.833306 ], [ 42.890625, 10.487812 ], [ 42.539062, 10.487812 ], [ 42.539062, 10.141932 ], [ 42.890625, 10.141932 ], [ 42.890625, 9.795678 ], [ 43.242188, 9.795678 ], [ 43.242188, 9.102097 ], [ 43.945312, 9.102097 ], [ 43.945312, 8.754795 ], [ 45.000000, 8.754795 ], [ 45.000000, 8.407168 ], [ 46.406250, 8.407168 ], [ 46.406250, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.013668 ], [ 46.757812, 7.013668 ], [ 46.757812, 6.664608 ], [ 46.406250, 6.664608 ], [ 46.406250, 5.965754 ], [ 46.054688, 5.965754 ], [ 46.054688, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 5.266008 ], [ 45.351562, 5.266008 ], [ 45.351562, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.565474 ], [ 43.242188, 4.565474 ], [ 43.242188, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 3.864255 ], [ 40.781250, 3.864255 ], [ 40.781250, 4.214943 ], [ 40.429688, 4.214943 ], [ 40.429688, 3.864255 ], [ 39.726562, 3.864255 ], [ 39.726562, 3.513421 ], [ 37.617188, 3.513421 ], [ 37.617188, 3.864255 ], [ 37.265625, 3.864255 ], [ 37.265625, 4.214943 ], [ 36.914062, 4.214943 ], [ 36.914062, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.965754 ], [ 34.804688, 5.965754 ], [ 34.804688, 6.664608 ], [ 34.101562, 6.664608 ], [ 34.101562, 7.362467 ], [ 33.398438, 7.362467 ], [ 33.398438, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.059230 ], [ 33.398438, 8.059230 ], [ 33.398438, 8.407168 ], [ 34.101562, 8.407168 ], [ 34.101562, 10.487812 ], [ 34.804688, 10.487812 ], [ 34.804688, 11.523088 ], [ 35.156250, 11.523088 ], [ 35.156250, 12.211180 ], [ 35.859375, 12.211180 ], [ 35.859375, 12.897489 ], [ 36.210938, 12.897489 ], [ 36.210938, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 14.264383 ], [ 37.617188, 14.264383 ], [ 37.617188, 14.604847 ], [ 40.078125, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.968750, 14.944785 ], [ 37.968750, 14.604847 ], [ 40.078125, 14.604847 ], [ 40.078125, 14.264383 ], [ 40.781250, 14.264383 ], [ 40.781250, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.211180 ], [ 41.835938, 12.211180 ], [ 41.835938, 11.867351 ], [ 41.484375, 11.867351 ], [ 41.484375, 11.178402 ], [ 42.539062, 11.178402 ], [ 42.539062, 10.487812 ], [ 42.890625, 10.487812 ], [ 42.890625, 9.795678 ], [ 43.242188, 9.795678 ], [ 43.242188, 9.449062 ], [ 43.945312, 9.449062 ], [ 43.945312, 9.102097 ], [ 44.648438, 9.102097 ], [ 44.648438, 8.754795 ], [ 45.351562, 8.754795 ], [ 45.351562, 8.407168 ], [ 46.054688, 8.407168 ], [ 46.054688, 8.059230 ], [ 47.460938, 8.059230 ], [ 47.460938, 7.710992 ], [ 47.109375, 7.710992 ], [ 47.109375, 7.362467 ], [ 46.757812, 7.362467 ], [ 46.757812, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 6.664608 ], [ 46.054688, 6.664608 ], [ 46.054688, 6.315299 ], [ 45.703125, 6.315299 ], [ 45.703125, 5.965754 ], [ 45.351562, 5.965754 ], [ 45.351562, 5.615986 ], [ 45.000000, 5.615986 ], [ 45.000000, 5.266008 ], [ 43.593750, 5.266008 ], [ 43.593750, 4.915833 ], [ 42.890625, 4.915833 ], [ 42.890625, 4.565474 ], [ 41.835938, 4.565474 ], [ 41.835938, 4.214943 ], [ 40.078125, 4.214943 ], [ 40.078125, 3.864255 ], [ 39.726562, 3.864255 ], [ 39.726562, 3.513421 ], [ 38.671875, 3.513421 ], [ 38.671875, 3.864255 ], [ 37.265625, 3.864255 ], [ 37.265625, 4.214943 ], [ 36.562500, 4.214943 ], [ 36.562500, 4.565474 ], [ 35.507812, 4.565474 ], [ 35.507812, 5.615986 ], [ 34.804688, 5.615986 ], [ 34.804688, 6.315299 ], [ 34.453125, 6.315299 ], [ 34.453125, 6.664608 ], [ 34.101562, 6.664608 ], [ 34.101562, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 7.362467 ], [ 33.398438, 7.362467 ], [ 33.398438, 7.710992 ], [ 32.695312, 7.710992 ], [ 32.695312, 8.059230 ], [ 33.046875, 8.059230 ], [ 33.046875, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 10.141932 ], [ 34.101562, 10.141932 ], [ 34.101562, 10.833306 ], [ 34.453125, 10.833306 ], [ 34.453125, 11.178402 ], [ 34.804688, 11.178402 ], [ 34.804688, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 12.211180 ], [ 35.507812, 12.211180 ], [ 35.507812, 12.554564 ], [ 35.859375, 12.554564 ], [ 35.859375, 13.239945 ], [ 36.210938, 13.239945 ], [ 36.210938, 14.604847 ], [ 36.562500, 14.604847 ], [ 36.562500, 14.264383 ], [ 37.265625, 14.264383 ], [ 37.265625, 14.604847 ], [ 37.617188, 14.604847 ], [ 37.617188, 14.944785 ], [ 37.968750, 14.944785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.609375, 55.379110 ], [ 69.609375, 55.178868 ], [ 71.015625, 55.178868 ], [ 71.015625, 54.162434 ], [ 71.718750, 54.162434 ], [ 71.718750, 54.367759 ], [ 72.070312, 54.367759 ], [ 72.070312, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 53.956086 ], [ 73.476562, 53.956086 ], [ 73.476562, 53.540307 ], [ 74.882812, 53.540307 ], [ 74.882812, 53.748711 ], [ 75.585938, 53.748711 ], [ 75.585938, 53.956086 ], [ 75.937500, 53.956086 ], [ 75.937500, 54.162434 ], [ 76.289062, 54.162434 ], [ 76.289062, 54.367759 ], [ 76.640625, 54.367759 ], [ 76.640625, 53.956086 ], [ 76.992188, 53.956086 ], [ 76.992188, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 77.695312, 53.330873 ], [ 77.695312, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 52.052490 ], [ 79.101562, 52.052490 ], [ 79.101562, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.399206 ], [ 79.804688, 51.399206 ], [ 79.804688, 50.958427 ], [ 80.156250, 50.958427 ], [ 80.156250, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 50.958427 ], [ 81.562500, 50.958427 ], [ 81.562500, 50.736455 ], [ 82.617188, 50.736455 ], [ 82.617188, 50.958427 ], [ 84.023438, 50.958427 ], [ 84.023438, 50.513427 ], [ 84.375000, 50.513427 ], [ 84.375000, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 49.610710 ], [ 86.484375, 49.610710 ], [ 86.484375, 49.837982 ], [ 86.835938, 49.837982 ], [ 86.835938, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.835938, 48.922499 ], [ 86.835938, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.279229 ], [ 85.429688, 47.279229 ], [ 85.429688, 47.040182 ], [ 84.023438, 47.040182 ], [ 84.023438, 47.279229 ], [ 83.320312, 47.279229 ], [ 83.320312, 46.800059 ], [ 82.968750, 46.800059 ], [ 82.968750, 45.828799 ], [ 82.617188, 45.828799 ], [ 82.617188, 45.336702 ], [ 81.562500, 45.336702 ], [ 81.562500, 45.089036 ], [ 80.507812, 45.089036 ], [ 80.507812, 44.840291 ], [ 79.804688, 44.840291 ], [ 79.804688, 44.339565 ], [ 80.156250, 44.339565 ], [ 80.156250, 43.834527 ], [ 80.507812, 43.834527 ], [ 80.507812, 43.325178 ], [ 80.859375, 43.325178 ], [ 80.859375, 42.811522 ], [ 80.156250, 42.811522 ], [ 80.156250, 42.293564 ], [ 79.804688, 42.293564 ], [ 79.804688, 42.553080 ], [ 79.101562, 42.553080 ], [ 79.101562, 42.811522 ], [ 78.046875, 42.811522 ], [ 78.046875, 43.068888 ], [ 75.937500, 43.068888 ], [ 75.937500, 42.811522 ], [ 74.882812, 42.811522 ], [ 74.882812, 43.068888 ], [ 73.476562, 43.068888 ], [ 73.476562, 42.553080 ], [ 72.421875, 42.553080 ], [ 72.421875, 42.811522 ], [ 71.015625, 42.811522 ], [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.771312 ], [ 69.609375, 41.771312 ], [ 69.609375, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.979898 ], [ 68.554688, 40.979898 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.979898 ], [ 67.851562, 40.979898 ], [ 67.851562, 41.244772 ], [ 66.796875, 41.244772 ], [ 66.796875, 41.508577 ], [ 66.445312, 41.508577 ], [ 66.445312, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 65.742188, 43.068888 ], [ 65.742188, 43.325178 ], [ 65.390625, 43.325178 ], [ 65.390625, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.834527 ], [ 64.335938, 43.834527 ], [ 64.335938, 43.580391 ], [ 61.523438, 43.580391 ], [ 61.523438, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.339565 ], [ 60.820312, 44.339565 ], [ 60.820312, 44.590467 ], [ 60.117188, 44.590467 ], [ 60.117188, 44.840291 ], [ 59.765625, 44.840291 ], [ 59.765625, 45.089036 ], [ 59.062500, 45.089036 ], [ 59.062500, 45.336702 ], [ 58.710938, 45.336702 ], [ 58.710938, 45.583290 ], [ 58.007812, 45.583290 ], [ 58.007812, 45.336702 ], [ 56.601562, 45.336702 ], [ 56.601562, 45.089036 ], [ 55.898438, 45.089036 ], [ 55.898438, 41.244772 ], [ 55.195312, 41.244772 ], [ 55.195312, 41.771312 ], [ 54.843750, 41.771312 ], [ 54.843750, 42.032974 ], [ 54.140625, 42.032974 ], [ 54.140625, 42.293564 ], [ 53.789062, 42.293564 ], [ 53.789062, 42.032974 ], [ 53.085938, 42.032974 ], [ 53.085938, 41.771312 ], [ 52.382812, 41.771312 ], [ 52.382812, 42.293564 ], [ 52.734375, 42.293564 ], [ 52.734375, 42.553080 ], [ 52.382812, 42.553080 ], [ 52.382812, 42.811522 ], [ 51.679688, 42.811522 ], [ 51.679688, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.580391 ], [ 50.976562, 43.580391 ], [ 50.976562, 44.087585 ], [ 50.273438, 44.087585 ], [ 50.273438, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.336702 ], [ 53.085938, 45.336702 ], [ 53.085938, 46.800059 ], [ 50.625000, 46.800059 ], [ 50.625000, 46.558860 ], [ 49.921875, 46.558860 ], [ 49.921875, 46.316584 ], [ 48.515625, 46.316584 ], [ 48.515625, 46.800059 ], [ 48.867188, 46.800059 ], [ 48.867188, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 47.517201 ], [ 48.164062, 47.517201 ], [ 48.164062, 47.754098 ], [ 47.109375, 47.754098 ], [ 47.109375, 47.989922 ], [ 46.757812, 47.989922 ], [ 46.757812, 48.224673 ], [ 46.406250, 48.224673 ], [ 46.406250, 48.458352 ], [ 46.757812, 48.458352 ], [ 46.757812, 48.922499 ], [ 47.109375, 48.922499 ], [ 47.109375, 49.152970 ], [ 46.757812, 49.152970 ], [ 46.757812, 49.610710 ], [ 47.109375, 49.610710 ], [ 47.109375, 50.064192 ], [ 47.460938, 50.064192 ], [ 47.460938, 50.289339 ], [ 47.812500, 50.289339 ], [ 47.812500, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.064192 ], [ 48.867188, 50.064192 ], [ 48.867188, 50.513427 ], [ 49.218750, 50.513427 ], [ 49.218750, 50.736455 ], [ 49.570312, 50.736455 ], [ 49.570312, 50.958427 ], [ 49.921875, 50.958427 ], [ 49.921875, 51.179343 ], [ 50.273438, 51.179343 ], [ 50.273438, 51.399206 ], [ 50.625000, 51.399206 ], [ 50.625000, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.513427 ], [ 56.250000, 50.513427 ], [ 56.250000, 50.736455 ], [ 56.953125, 50.736455 ], [ 56.953125, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.513427 ], [ 59.765625, 50.513427 ], [ 59.765625, 50.736455 ], [ 61.171875, 50.736455 ], [ 61.171875, 50.958427 ], [ 61.523438, 50.958427 ], [ 61.523438, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.399206 ], [ 60.820312, 51.399206 ], [ 60.820312, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 51.835778 ], [ 60.117188, 51.835778 ], [ 60.117188, 52.052490 ], [ 60.468750, 52.052490 ], [ 60.468750, 52.268157 ], [ 60.820312, 52.268157 ], [ 60.820312, 52.696361 ], [ 61.523438, 52.696361 ], [ 61.523438, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 53.540307 ], [ 60.820312, 53.540307 ], [ 60.820312, 53.748711 ], [ 61.523438, 53.748711 ], [ 61.523438, 53.956086 ], [ 62.578125, 53.956086 ], [ 62.578125, 54.162434 ], [ 64.335938, 54.162434 ], [ 64.335938, 54.367759 ], [ 65.742188, 54.367759 ], [ 65.742188, 54.572062 ], [ 66.445312, 54.572062 ], [ 66.445312, 54.775346 ], [ 67.851562, 54.775346 ], [ 67.851562, 54.977614 ], [ 68.554688, 54.977614 ], [ 68.554688, 55.178868 ], [ 68.906250, 55.178868 ], [ 68.906250, 55.379110 ], [ 69.609375, 55.379110 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.257812, 55.578345 ], [ 69.257812, 55.379110 ], [ 69.960938, 55.379110 ], [ 69.960938, 55.178868 ], [ 70.664062, 55.178868 ], [ 70.664062, 54.572062 ], [ 71.015625, 54.572062 ], [ 71.015625, 54.162434 ], [ 71.367188, 54.162434 ], [ 71.367188, 54.367759 ], [ 72.773438, 54.367759 ], [ 72.773438, 54.162434 ], [ 73.476562, 54.162434 ], [ 73.476562, 53.748711 ], [ 73.125000, 53.748711 ], [ 73.125000, 53.540307 ], [ 73.828125, 53.540307 ], [ 73.828125, 53.748711 ], [ 74.531250, 53.748711 ], [ 74.531250, 53.956086 ], [ 75.234375, 53.956086 ], [ 75.234375, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 54.367759 ], [ 76.289062, 54.367759 ], [ 76.289062, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 53.956086 ], [ 76.992188, 53.956086 ], [ 76.992188, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.540307 ], [ 77.695312, 53.540307 ], [ 77.695312, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 52.908902 ], [ 78.398438, 52.908902 ], [ 78.398438, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 52.052490 ], [ 79.101562, 52.052490 ], [ 79.101562, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.179343 ], [ 79.804688, 51.179343 ], [ 79.804688, 50.958427 ], [ 80.156250, 50.958427 ], [ 80.156250, 51.179343 ], [ 81.210938, 51.179343 ], [ 81.210938, 50.958427 ], [ 82.968750, 50.958427 ], [ 82.968750, 51.179343 ], [ 83.320312, 51.179343 ], [ 83.320312, 50.958427 ], [ 83.671875, 50.958427 ], [ 83.671875, 50.736455 ], [ 84.023438, 50.736455 ], [ 84.023438, 50.513427 ], [ 84.375000, 50.513427 ], [ 84.375000, 50.289339 ], [ 85.078125, 50.289339 ], [ 85.078125, 50.064192 ], [ 85.429688, 50.064192 ], [ 85.429688, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.610710 ], [ 86.835938, 49.610710 ], [ 86.835938, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 49.152970 ], [ 86.835938, 49.152970 ], [ 86.835938, 48.690960 ], [ 86.132812, 48.690960 ], [ 86.132812, 48.458352 ], [ 85.429688, 48.458352 ], [ 85.429688, 47.279229 ], [ 85.078125, 47.279229 ], [ 85.078125, 47.040182 ], [ 84.375000, 47.040182 ], [ 84.375000, 47.279229 ], [ 83.320312, 47.279229 ], [ 83.320312, 47.517201 ], [ 82.968750, 47.517201 ], [ 82.968750, 47.040182 ], [ 82.617188, 47.040182 ], [ 82.617188, 46.073231 ], [ 82.265625, 46.073231 ], [ 82.265625, 45.336702 ], [ 81.210938, 45.336702 ], [ 81.210938, 45.089036 ], [ 79.804688, 45.089036 ], [ 79.804688, 44.590467 ], [ 80.156250, 44.590467 ], [ 80.156250, 44.087585 ], [ 80.507812, 44.087585 ], [ 80.507812, 43.580391 ], [ 80.859375, 43.580391 ], [ 80.859375, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 43.068888 ], [ 74.531250, 43.068888 ], [ 74.531250, 43.325178 ], [ 73.476562, 43.325178 ], [ 73.476562, 42.553080 ], [ 72.773438, 42.553080 ], [ 72.773438, 42.811522 ], [ 72.070312, 42.811522 ], [ 72.070312, 43.068888 ], [ 71.718750, 43.068888 ], [ 71.718750, 42.811522 ], [ 71.015625, 42.811522 ], [ 71.015625, 42.553080 ], [ 70.664062, 42.553080 ], [ 70.664062, 42.293564 ], [ 70.312500, 42.293564 ], [ 70.312500, 42.032974 ], [ 69.960938, 42.032974 ], [ 69.960938, 41.771312 ], [ 69.257812, 41.771312 ], [ 69.257812, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.979898 ], [ 68.554688, 40.979898 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.979898 ], [ 67.851562, 40.979898 ], [ 67.851562, 41.244772 ], [ 66.445312, 41.244772 ], [ 66.445312, 42.032974 ], [ 65.742188, 42.032974 ], [ 65.742188, 42.553080 ], [ 66.093750, 42.553080 ], [ 66.093750, 43.068888 ], [ 65.742188, 43.068888 ], [ 65.742188, 43.325178 ], [ 65.039062, 43.325178 ], [ 65.039062, 43.580391 ], [ 64.687500, 43.580391 ], [ 64.687500, 43.834527 ], [ 62.578125, 43.834527 ], [ 62.578125, 43.580391 ], [ 61.523438, 43.580391 ], [ 61.523438, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.339565 ], [ 60.820312, 44.339565 ], [ 60.820312, 44.590467 ], [ 60.117188, 44.590467 ], [ 60.117188, 44.840291 ], [ 59.765625, 44.840291 ], [ 59.765625, 45.089036 ], [ 59.062500, 45.089036 ], [ 59.062500, 45.336702 ], [ 58.359375, 45.336702 ], [ 58.359375, 45.828799 ], [ 58.007812, 45.828799 ], [ 58.007812, 45.583290 ], [ 57.304688, 45.583290 ], [ 57.304688, 45.336702 ], [ 56.601562, 45.336702 ], [ 56.601562, 45.089036 ], [ 55.898438, 45.089036 ], [ 55.898438, 41.508577 ], [ 54.843750, 41.508577 ], [ 54.843750, 42.032974 ], [ 54.492188, 42.032974 ], [ 54.492188, 42.293564 ], [ 53.789062, 42.293564 ], [ 53.789062, 42.553080 ], [ 53.437500, 42.553080 ], [ 53.437500, 42.293564 ], [ 52.734375, 42.293564 ], [ 52.734375, 42.032974 ], [ 52.382812, 42.032974 ], [ 52.382812, 42.811522 ], [ 52.031250, 42.811522 ], [ 52.031250, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.325178 ], [ 50.976562, 43.325178 ], [ 50.976562, 43.834527 ], [ 50.625000, 43.834527 ], [ 50.625000, 44.087585 ], [ 50.273438, 44.087585 ], [ 50.273438, 44.590467 ], [ 50.976562, 44.590467 ], [ 50.976562, 45.336702 ], [ 51.679688, 45.336702 ], [ 51.679688, 45.583290 ], [ 52.031250, 45.583290 ], [ 52.031250, 45.336702 ], [ 52.734375, 45.336702 ], [ 52.734375, 45.828799 ], [ 53.085938, 45.828799 ], [ 53.085938, 46.558860 ], [ 52.734375, 46.558860 ], [ 52.734375, 47.040182 ], [ 51.328125, 47.040182 ], [ 51.328125, 47.279229 ], [ 50.976562, 47.279229 ], [ 50.976562, 47.040182 ], [ 50.273438, 47.040182 ], [ 50.273438, 46.800059 ], [ 49.570312, 46.800059 ], [ 49.570312, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 47.279229 ], [ 48.164062, 47.279229 ], [ 48.164062, 47.517201 ], [ 47.812500, 47.517201 ], [ 47.812500, 47.754098 ], [ 46.757812, 47.754098 ], [ 46.757812, 48.224673 ], [ 46.406250, 48.224673 ], [ 46.406250, 48.690960 ], [ 46.757812, 48.690960 ], [ 46.757812, 49.152970 ], [ 46.406250, 49.152970 ], [ 46.406250, 49.382373 ], [ 46.757812, 49.382373 ], [ 46.757812, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 50.289339 ], [ 48.164062, 50.289339 ], [ 48.164062, 50.064192 ], [ 48.515625, 50.064192 ], [ 48.515625, 50.736455 ], [ 48.867188, 50.736455 ], [ 48.867188, 50.958427 ], [ 49.218750, 50.958427 ], [ 49.218750, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 51.399206 ], [ 50.273438, 51.399206 ], [ 50.273438, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.835778 ], [ 52.382812, 51.835778 ], [ 52.382812, 51.618017 ], [ 53.085938, 51.618017 ], [ 53.085938, 51.399206 ], [ 53.789062, 51.399206 ], [ 53.789062, 51.179343 ], [ 54.492188, 51.179343 ], [ 54.492188, 50.958427 ], [ 55.195312, 50.958427 ], [ 55.195312, 50.736455 ], [ 55.898438, 50.736455 ], [ 55.898438, 50.958427 ], [ 56.601562, 50.958427 ], [ 56.601562, 51.179343 ], [ 58.359375, 51.179343 ], [ 58.359375, 50.958427 ], [ 59.062500, 50.958427 ], [ 59.062500, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.958427 ], [ 61.171875, 50.958427 ], [ 61.171875, 51.179343 ], [ 61.523438, 51.179343 ], [ 61.523438, 51.399206 ], [ 61.171875, 51.399206 ], [ 61.171875, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 51.835778 ], [ 59.765625, 51.835778 ], [ 59.765625, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 52.268157 ], [ 60.820312, 52.268157 ], [ 60.820312, 52.696361 ], [ 60.468750, 52.696361 ], [ 60.468750, 52.908902 ], [ 61.171875, 52.908902 ], [ 61.171875, 53.540307 ], [ 60.820312, 53.540307 ], [ 60.820312, 53.956086 ], [ 61.171875, 53.956086 ], [ 61.171875, 54.162434 ], [ 63.281250, 54.162434 ], [ 63.281250, 54.367759 ], [ 65.039062, 54.367759 ], [ 65.039062, 54.572062 ], [ 65.390625, 54.572062 ], [ 65.390625, 54.775346 ], [ 66.796875, 54.775346 ], [ 66.796875, 54.977614 ], [ 68.203125, 54.977614 ], [ 68.203125, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 55.578345 ], [ 69.257812, 55.578345 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.710938, 45.583290 ], [ 58.710938, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.087585 ], [ 61.523438, 44.087585 ], [ 61.523438, 43.580391 ], [ 64.335938, 43.580391 ], [ 64.335938, 43.834527 ], [ 65.039062, 43.834527 ], [ 65.039062, 43.580391 ], [ 65.390625, 43.580391 ], [ 65.390625, 43.325178 ], [ 65.742188, 43.325178 ], [ 65.742188, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.508577 ], [ 66.796875, 41.508577 ], [ 66.796875, 41.244772 ], [ 67.851562, 41.244772 ], [ 67.851562, 40.979898 ], [ 68.203125, 40.979898 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.554688, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.771312 ], [ 70.312500, 41.771312 ], [ 70.312500, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.771312 ], [ 70.664062, 41.771312 ], [ 70.664062, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 41.244772 ], [ 72.421875, 41.244772 ], [ 72.421875, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.446947 ], [ 72.070312, 40.446947 ], [ 72.070312, 40.178873 ], [ 70.312500, 40.178873 ], [ 70.312500, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 39.909736 ], [ 68.554688, 39.909736 ], [ 68.554688, 39.639538 ], [ 67.851562, 39.639538 ], [ 67.851562, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 38.822591 ], [ 68.203125, 38.822591 ], [ 68.203125, 38.548165 ], [ 68.554688, 38.548165 ], [ 68.554688, 37.996163 ], [ 68.203125, 37.996163 ], [ 68.203125, 37.439974 ], [ 67.851562, 37.439974 ], [ 67.851562, 37.160317 ], [ 67.148438, 37.160317 ], [ 67.148438, 37.439974 ], [ 66.445312, 37.439974 ], [ 66.445312, 37.996163 ], [ 65.742188, 37.996163 ], [ 65.742188, 38.272689 ], [ 65.039062, 38.272689 ], [ 65.039062, 38.548165 ], [ 64.335938, 38.548165 ], [ 64.335938, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 39.095963 ], [ 63.632812, 39.095963 ], [ 63.632812, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.639538 ], [ 62.578125, 39.639538 ], [ 62.578125, 39.909736 ], [ 62.226562, 39.909736 ], [ 62.226562, 40.446947 ], [ 61.875000, 40.446947 ], [ 61.875000, 40.979898 ], [ 61.523438, 40.979898 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 42.293564 ], [ 59.414062, 42.293564 ], [ 59.414062, 42.553080 ], [ 58.007812, 42.553080 ], [ 58.007812, 42.293564 ], [ 57.656250, 42.293564 ], [ 57.656250, 42.032974 ], [ 57.304688, 42.032974 ], [ 57.304688, 41.771312 ], [ 56.953125, 41.771312 ], [ 56.953125, 41.244772 ], [ 55.898438, 41.244772 ], [ 55.898438, 45.089036 ], [ 56.601562, 45.089036 ], [ 56.601562, 45.336702 ], [ 58.007812, 45.336702 ], [ 58.007812, 45.583290 ], [ 58.710938, 45.583290 ] ], [ [ 70.312500, 40.979898 ], [ 70.312500, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.312500, 40.979898 ] ] ], [ [ [ 71.367188, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 42.293564 ], [ 71.367188, 42.293564 ], [ 71.367188, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.359375, 45.828799 ], [ 58.359375, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.087585 ], [ 61.523438, 44.087585 ], [ 61.523438, 43.580391 ], [ 62.578125, 43.580391 ], [ 62.578125, 43.834527 ], [ 64.687500, 43.834527 ], [ 64.687500, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.325178 ], [ 65.742188, 43.325178 ], [ 65.742188, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.553080 ], [ 65.742188, 42.553080 ], [ 65.742188, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.244772 ], [ 67.851562, 41.244772 ], [ 67.851562, 40.979898 ], [ 68.203125, 40.979898 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.554688, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.771312 ], [ 69.960938, 41.771312 ], [ 69.960938, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 42.293564 ], [ 71.015625, 42.293564 ], [ 71.015625, 42.032974 ], [ 70.664062, 42.032974 ], [ 70.664062, 41.771312 ], [ 70.312500, 41.771312 ], [ 70.312500, 41.508577 ], [ 70.664062, 41.508577 ], [ 70.664062, 41.244772 ], [ 72.421875, 41.244772 ], [ 72.421875, 40.979898 ], [ 72.773438, 40.979898 ], [ 72.773438, 40.713956 ], [ 72.421875, 40.713956 ], [ 72.421875, 40.446947 ], [ 72.070312, 40.446947 ], [ 72.070312, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 40.446947 ], [ 70.312500, 40.446947 ], [ 70.312500, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.979898 ], [ 69.257812, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 39.909736 ], [ 68.554688, 39.909736 ], [ 68.554688, 39.639538 ], [ 67.500000, 39.639538 ], [ 67.500000, 39.368279 ], [ 67.148438, 39.368279 ], [ 67.148438, 39.095963 ], [ 67.851562, 39.095963 ], [ 67.851562, 38.548165 ], [ 68.203125, 38.548165 ], [ 68.203125, 37.996163 ], [ 67.851562, 37.996163 ], [ 67.851562, 37.439974 ], [ 67.500000, 37.439974 ], [ 67.500000, 37.160317 ], [ 66.796875, 37.160317 ], [ 66.796875, 37.439974 ], [ 66.445312, 37.439974 ], [ 66.445312, 37.996163 ], [ 65.742188, 37.996163 ], [ 65.742188, 38.272689 ], [ 65.039062, 38.272689 ], [ 65.039062, 38.548165 ], [ 64.687500, 38.548165 ], [ 64.687500, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 39.095963 ], [ 63.281250, 39.095963 ], [ 63.281250, 39.368279 ], [ 62.929688, 39.368279 ], [ 62.929688, 39.639538 ], [ 62.578125, 39.639538 ], [ 62.578125, 39.909736 ], [ 62.226562, 39.909736 ], [ 62.226562, 40.713956 ], [ 61.875000, 40.713956 ], [ 61.875000, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.508577 ], [ 61.171875, 41.508577 ], [ 61.171875, 41.244772 ], [ 59.765625, 41.244772 ], [ 59.765625, 42.293564 ], [ 59.062500, 42.293564 ], [ 59.062500, 42.553080 ], [ 58.007812, 42.553080 ], [ 58.007812, 42.293564 ], [ 57.304688, 42.293564 ], [ 57.304688, 42.032974 ], [ 56.601562, 42.032974 ], [ 56.601562, 41.771312 ], [ 56.953125, 41.771312 ], [ 56.953125, 41.508577 ], [ 55.898438, 41.508577 ], [ 55.898438, 45.089036 ], [ 56.601562, 45.089036 ], [ 56.601562, 45.336702 ], [ 57.304688, 45.336702 ], [ 57.304688, 45.583290 ], [ 58.007812, 45.583290 ], [ 58.007812, 45.828799 ], [ 58.359375, 45.828799 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.046875, 43.068888 ], [ 78.046875, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 42.553080 ], [ 79.804688, 42.553080 ], [ 79.804688, 42.293564 ], [ 80.156250, 42.293564 ], [ 80.156250, 42.032974 ], [ 79.804688, 42.032974 ], [ 79.804688, 41.771312 ], [ 79.101562, 41.771312 ], [ 79.101562, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 74.882812, 40.446947 ], [ 74.882812, 40.178873 ], [ 74.179688, 40.178873 ], [ 74.179688, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.368279 ], [ 71.015625, 39.368279 ], [ 71.015625, 39.639538 ], [ 69.609375, 39.639538 ], [ 69.609375, 40.178873 ], [ 69.960938, 40.178873 ], [ 69.960938, 39.909736 ], [ 71.015625, 39.909736 ], [ 71.015625, 40.178873 ], [ 72.070312, 40.178873 ], [ 72.070312, 40.446947 ], [ 72.773438, 40.446947 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.979898 ], [ 72.421875, 40.979898 ], [ 72.421875, 41.244772 ], [ 70.312500, 41.244772 ], [ 70.312500, 41.508577 ], [ 70.664062, 41.508577 ], [ 70.664062, 41.771312 ], [ 71.015625, 41.771312 ], [ 71.015625, 42.032974 ], [ 71.367188, 42.032974 ], [ 71.367188, 42.293564 ], [ 71.015625, 42.293564 ], [ 71.015625, 42.811522 ], [ 72.421875, 42.811522 ], [ 72.421875, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 43.068888 ], [ 74.882812, 43.068888 ], [ 74.882812, 42.811522 ], [ 75.937500, 42.811522 ], [ 75.937500, 43.068888 ], [ 78.046875, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.531250, 43.325178 ], [ 74.531250, 43.068888 ], [ 79.101562, 43.068888 ], [ 79.101562, 42.811522 ], [ 79.453125, 42.811522 ], [ 79.453125, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 42.293564 ], [ 79.804688, 42.293564 ], [ 79.804688, 42.032974 ], [ 79.101562, 42.032974 ], [ 79.101562, 41.771312 ], [ 78.398438, 41.771312 ], [ 78.398438, 41.508577 ], [ 78.046875, 41.508577 ], [ 78.046875, 41.244772 ], [ 76.640625, 41.244772 ], [ 76.640625, 40.713956 ], [ 76.289062, 40.713956 ], [ 76.289062, 40.446947 ], [ 75.585938, 40.446947 ], [ 75.585938, 40.713956 ], [ 75.234375, 40.713956 ], [ 75.234375, 40.446947 ], [ 74.531250, 40.446947 ], [ 74.531250, 40.178873 ], [ 73.828125, 40.178873 ], [ 73.828125, 39.639538 ], [ 72.773438, 39.639538 ], [ 72.773438, 39.368279 ], [ 70.664062, 39.368279 ], [ 70.664062, 39.639538 ], [ 69.257812, 39.639538 ], [ 69.257812, 40.178873 ], [ 72.070312, 40.178873 ], [ 72.070312, 40.446947 ], [ 72.421875, 40.446947 ], [ 72.421875, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.979898 ], [ 72.421875, 40.979898 ], [ 72.421875, 41.244772 ], [ 70.664062, 41.244772 ], [ 70.664062, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 41.771312 ], [ 70.664062, 41.771312 ], [ 70.664062, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 42.293564 ], [ 70.664062, 42.293564 ], [ 70.664062, 42.553080 ], [ 71.015625, 42.553080 ], [ 71.015625, 42.811522 ], [ 71.718750, 42.811522 ], [ 71.718750, 43.068888 ], [ 72.070312, 43.068888 ], [ 72.070312, 42.811522 ], [ 72.773438, 42.811522 ], [ 72.773438, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 43.325178 ], [ 74.531250, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.713956 ], [ 45.703125, 40.713956 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.178873 ], [ 46.054688, 40.178873 ], [ 46.054688, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 39.639538 ], [ 46.054688, 39.639538 ], [ 46.054688, 39.368279 ], [ 46.406250, 39.368279 ], [ 46.406250, 38.822591 ], [ 46.054688, 38.822591 ], [ 46.054688, 39.095963 ], [ 45.703125, 39.095963 ], [ 45.703125, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 39.639538 ], [ 44.296875, 39.639538 ], [ 44.296875, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 44.648438, 40.979898 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.703125, 39.639538 ], [ 46.406250, 39.639538 ], [ 46.406250, 38.822591 ], [ 46.054688, 38.822591 ], [ 46.054688, 39.095963 ], [ 45.703125, 39.095963 ], [ 45.703125, 39.639538 ] ] ], [ [ [ 45.351562, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 40.178873 ], [ 43.593750, 40.178873 ], [ 43.593750, 40.979898 ], [ 43.242188, 40.979898 ], [ 43.242188, 41.244772 ], [ 44.296875, 41.244772 ], [ 44.296875, 41.508577 ], [ 44.648438, 41.508577 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 40.178873 ], [ 45.351562, 40.178873 ], [ 45.351562, 39.639538 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.757812, 41.771312 ], [ 46.757812, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ], [ 49.218750, 41.244772 ], [ 49.218750, 40.713956 ], [ 49.570312, 40.713956 ], [ 49.570312, 40.446947 ], [ 49.921875, 40.446947 ], [ 49.921875, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.095963 ], [ 49.218750, 39.095963 ], [ 49.218750, 38.822591 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.272689 ], [ 48.515625, 38.272689 ], [ 48.515625, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 39.095963 ], [ 48.515625, 39.095963 ], [ 48.515625, 39.368279 ], [ 48.164062, 39.368279 ], [ 48.164062, 39.639538 ], [ 47.812500, 39.639538 ], [ 47.812500, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.095963 ], [ 46.757812, 39.095963 ], [ 46.757812, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.368279 ], [ 46.054688, 39.368279 ], [ 46.054688, 39.639538 ], [ 45.703125, 39.639538 ], [ 45.703125, 39.909736 ], [ 46.054688, 39.909736 ], [ 46.054688, 40.178873 ], [ 45.351562, 40.178873 ], [ 45.351562, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.979898 ], [ 45.000000, 40.979898 ], [ 45.000000, 41.244772 ], [ 46.054688, 41.244772 ], [ 46.054688, 40.979898 ], [ 46.757812, 40.979898 ], [ 46.757812, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.054688, 41.508577 ], [ 46.054688, 41.771312 ], [ 46.757812, 41.771312 ] ] ], [ [ [ 45.000000, 39.368279 ], [ 45.703125, 39.368279 ], [ 45.703125, 39.095963 ], [ 46.054688, 39.095963 ], [ 46.054688, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.000000, 39.095963 ], [ 45.000000, 39.368279 ] ] ], [ [ [ 45.000000, 39.368279 ], [ 44.648438, 39.368279 ], [ 44.648438, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.368279 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.054688, 41.508577 ], [ 46.054688, 41.771312 ], [ 46.757812, 41.771312 ], [ 46.757812, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.771312 ], [ 48.867188, 41.771312 ], [ 48.867188, 41.244772 ], [ 49.218750, 41.244772 ], [ 49.218750, 40.713956 ], [ 49.921875, 40.713956 ], [ 49.921875, 40.446947 ], [ 50.273438, 40.446947 ], [ 50.273438, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.909736 ], [ 49.218750, 39.909736 ], [ 49.218750, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 38.548165 ], [ 48.867188, 38.548165 ], [ 48.867188, 38.272689 ], [ 48.164062, 38.272689 ], [ 48.164062, 38.548165 ], [ 47.812500, 38.548165 ], [ 47.812500, 39.095963 ], [ 48.164062, 39.095963 ], [ 48.164062, 39.368279 ], [ 47.812500, 39.368279 ], [ 47.812500, 39.639538 ], [ 47.460938, 39.639538 ], [ 47.460938, 39.368279 ], [ 47.109375, 39.368279 ], [ 47.109375, 39.095963 ], [ 46.757812, 39.095963 ], [ 46.757812, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.639538 ], [ 45.703125, 39.639538 ], [ 45.703125, 39.095963 ], [ 46.054688, 39.095963 ], [ 46.054688, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 44.648438, 39.095963 ], [ 44.648438, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 39.639538 ], [ 45.351562, 39.639538 ], [ 45.351562, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.979898 ], [ 45.000000, 40.979898 ], [ 45.000000, 41.244772 ] ] ], [ [ [ 45.000000, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.508577 ], [ 45.000000, 41.508577 ], [ 45.000000, 41.244772 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.164062, 39.639538 ], [ 48.164062, 39.368279 ], [ 48.515625, 39.368279 ], [ 48.515625, 39.095963 ], [ 48.164062, 39.095963 ], [ 48.164062, 38.548165 ], [ 48.515625, 38.548165 ], [ 48.515625, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.996163 ], [ 49.218750, 37.996163 ], [ 49.218750, 37.718590 ], [ 49.570312, 37.718590 ], [ 49.570312, 37.439974 ], [ 50.273438, 37.439974 ], [ 50.273438, 37.160317 ], [ 50.625000, 37.160317 ], [ 50.625000, 36.879621 ], [ 51.328125, 36.879621 ], [ 51.328125, 36.597889 ], [ 53.437500, 36.597889 ], [ 53.437500, 36.879621 ], [ 53.789062, 36.879621 ], [ 53.789062, 37.160317 ], [ 54.492188, 37.160317 ], [ 54.492188, 37.439974 ], [ 55.195312, 37.439974 ], [ 55.195312, 37.718590 ], [ 55.546875, 37.718590 ], [ 55.546875, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 37.718590 ], [ 58.007812, 37.718590 ], [ 58.007812, 37.439974 ], [ 59.062500, 37.439974 ], [ 59.062500, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 36.879621 ], [ 60.117188, 36.879621 ], [ 60.117188, 36.597889 ], [ 61.171875, 36.597889 ], [ 61.171875, 34.885931 ], [ 60.820312, 34.885931 ], [ 60.820312, 34.016242 ], [ 60.468750, 34.016242 ], [ 60.468750, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.137551 ], [ 60.468750, 33.137551 ], [ 60.468750, 32.546813 ], [ 60.820312, 32.546813 ], [ 60.820312, 31.653381 ], [ 61.171875, 31.653381 ], [ 61.171875, 31.353637 ], [ 61.875000, 31.353637 ], [ 61.875000, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 30.145127 ], [ 61.171875, 30.145127 ], [ 61.171875, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.228890 ], [ 61.523438, 29.228890 ], [ 61.523438, 28.921631 ], [ 61.875000, 28.921631 ], [ 61.875000, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.683528 ], [ 62.929688, 27.683528 ], [ 62.929688, 27.371767 ], [ 63.281250, 27.371767 ], [ 63.281250, 26.431228 ], [ 62.578125, 26.431228 ], [ 62.578125, 26.115986 ], [ 61.875000, 26.115986 ], [ 61.875000, 25.482951 ], [ 61.523438, 25.482951 ], [ 61.523438, 25.165173 ], [ 60.468750, 25.165173 ], [ 60.468750, 25.482951 ], [ 57.656250, 25.482951 ], [ 57.656250, 25.799891 ], [ 57.304688, 25.799891 ], [ 57.304688, 26.431228 ], [ 56.953125, 26.431228 ], [ 56.953125, 27.059126 ], [ 55.898438, 27.059126 ], [ 55.898438, 26.745610 ], [ 55.195312, 26.745610 ], [ 55.195312, 26.431228 ], [ 53.789062, 26.431228 ], [ 53.789062, 26.745610 ], [ 53.085938, 26.745610 ], [ 53.085938, 27.059126 ], [ 52.734375, 27.059126 ], [ 52.734375, 27.371767 ], [ 52.382812, 27.371767 ], [ 52.382812, 27.683528 ], [ 51.679688, 27.683528 ], [ 51.679688, 27.994401 ], [ 51.328125, 27.994401 ], [ 51.328125, 28.613459 ], [ 50.976562, 28.613459 ], [ 50.976562, 29.228890 ], [ 50.625000, 29.228890 ], [ 50.625000, 29.840644 ], [ 49.218750, 29.840644 ], [ 49.218750, 30.145127 ], [ 48.164062, 30.145127 ], [ 48.164062, 31.052934 ], [ 47.812500, 31.052934 ], [ 47.812500, 31.952162 ], [ 47.460938, 31.952162 ], [ 47.460938, 32.546813 ], [ 46.757812, 32.546813 ], [ 46.757812, 32.842674 ], [ 46.054688, 32.842674 ], [ 46.054688, 33.137551 ], [ 45.703125, 33.137551 ], [ 45.703125, 33.724340 ], [ 45.351562, 33.724340 ], [ 45.351562, 34.307144 ], [ 45.703125, 34.307144 ], [ 45.703125, 34.885931 ], [ 46.054688, 34.885931 ], [ 46.054688, 35.746512 ], [ 45.351562, 35.746512 ], [ 45.351562, 36.315125 ], [ 45.000000, 36.315125 ], [ 45.000000, 36.879621 ], [ 44.648438, 36.879621 ], [ 44.648438, 37.439974 ], [ 44.296875, 37.439974 ], [ 44.296875, 38.822591 ], [ 43.945312, 38.822591 ], [ 43.945312, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 46.757812, 38.822591 ], [ 46.757812, 39.095963 ], [ 47.460938, 39.095963 ], [ 47.460938, 39.368279 ], [ 47.812500, 39.368279 ], [ 47.812500, 39.639538 ], [ 48.164062, 39.639538 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 39.639538 ], [ 47.812500, 39.368279 ], [ 48.164062, 39.368279 ], [ 48.164062, 39.095963 ], [ 47.812500, 39.095963 ], [ 47.812500, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.718590 ], [ 49.218750, 37.718590 ], [ 49.218750, 37.439974 ], [ 49.921875, 37.439974 ], [ 49.921875, 37.160317 ], [ 50.273438, 37.160317 ], [ 50.273438, 36.879621 ], [ 53.085938, 36.879621 ], [ 53.085938, 37.160317 ], [ 53.789062, 37.160317 ], [ 53.789062, 37.439974 ], [ 54.843750, 37.439974 ], [ 54.843750, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.996163 ], [ 56.601562, 37.996163 ], [ 56.601562, 38.272689 ], [ 57.304688, 38.272689 ], [ 57.304688, 37.996163 ], [ 58.007812, 37.996163 ], [ 58.007812, 37.718590 ], [ 58.359375, 37.718590 ], [ 58.359375, 37.439974 ], [ 59.062500, 37.439974 ], [ 59.062500, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 36.879621 ], [ 59.765625, 36.879621 ], [ 59.765625, 36.597889 ], [ 60.820312, 36.597889 ], [ 60.820312, 36.031332 ], [ 61.171875, 36.031332 ], [ 61.171875, 35.460670 ], [ 60.820312, 35.460670 ], [ 60.820312, 34.885931 ], [ 60.468750, 34.885931 ], [ 60.468750, 33.724340 ], [ 60.820312, 33.724340 ], [ 60.820312, 33.431441 ], [ 60.468750, 33.431441 ], [ 60.468750, 32.546813 ], [ 60.820312, 32.546813 ], [ 60.820312, 31.653381 ], [ 61.523438, 31.653381 ], [ 61.523438, 30.448674 ], [ 61.171875, 30.448674 ], [ 61.171875, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.228890 ], [ 61.523438, 29.228890 ], [ 61.523438, 28.613459 ], [ 62.226562, 28.613459 ], [ 62.226562, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.059126 ], [ 63.281250, 27.059126 ], [ 63.281250, 26.745610 ], [ 62.578125, 26.745610 ], [ 62.578125, 26.431228 ], [ 61.875000, 26.431228 ], [ 61.875000, 26.115986 ], [ 61.523438, 26.115986 ], [ 61.523438, 25.482951 ], [ 61.171875, 25.482951 ], [ 61.171875, 25.165173 ], [ 60.117188, 25.165173 ], [ 60.117188, 25.482951 ], [ 58.710938, 25.482951 ], [ 58.710938, 25.799891 ], [ 57.304688, 25.799891 ], [ 57.304688, 26.431228 ], [ 56.953125, 26.431228 ], [ 56.953125, 27.059126 ], [ 55.195312, 27.059126 ], [ 55.195312, 26.745610 ], [ 53.789062, 26.745610 ], [ 53.789062, 27.059126 ], [ 53.085938, 27.059126 ], [ 53.085938, 27.371767 ], [ 52.382812, 27.371767 ], [ 52.382812, 27.683528 ], [ 51.679688, 27.683528 ], [ 51.679688, 27.994401 ], [ 50.976562, 27.994401 ], [ 50.976562, 28.613459 ], [ 50.625000, 28.613459 ], [ 50.625000, 29.228890 ], [ 50.273438, 29.228890 ], [ 50.273438, 29.840644 ], [ 49.921875, 29.840644 ], [ 49.921875, 30.145127 ], [ 48.164062, 30.145127 ], [ 48.164062, 30.448674 ], [ 47.812500, 30.448674 ], [ 47.812500, 31.052934 ], [ 47.460938, 31.052934 ], [ 47.460938, 31.353637 ], [ 47.812500, 31.353637 ], [ 47.812500, 31.952162 ], [ 47.460938, 31.952162 ], [ 47.460938, 32.249974 ], [ 47.109375, 32.249974 ], [ 47.109375, 32.546813 ], [ 46.757812, 32.546813 ], [ 46.757812, 32.842674 ], [ 46.054688, 32.842674 ], [ 46.054688, 33.137551 ], [ 45.703125, 33.137551 ], [ 45.703125, 33.724340 ], [ 45.351562, 33.724340 ], [ 45.351562, 34.885931 ], [ 46.054688, 34.885931 ], [ 46.054688, 35.746512 ], [ 45.351562, 35.746512 ], [ 45.351562, 36.315125 ], [ 45.000000, 36.315125 ], [ 45.000000, 36.879621 ], [ 44.648438, 36.879621 ], [ 44.648438, 37.439974 ], [ 44.296875, 37.439974 ], [ 44.296875, 37.718590 ], [ 43.945312, 37.718590 ], [ 43.945312, 38.272689 ], [ 44.296875, 38.272689 ], [ 44.296875, 39.095963 ], [ 43.945312, 39.095963 ], [ 43.945312, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 46.757812, 38.822591 ], [ 46.757812, 39.095963 ], [ 47.109375, 39.095963 ], [ 47.109375, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.639538 ], [ 47.812500, 39.639538 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 29.840644 ], [ 47.812500, 29.535230 ], [ 48.164062, 29.535230 ], [ 48.164062, 28.921631 ], [ 48.515625, 28.921631 ], [ 48.515625, 28.613459 ], [ 47.460938, 28.613459 ], [ 47.460938, 28.921631 ], [ 46.757812, 28.921631 ], [ 46.757812, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 29.840644 ], [ 47.812500, 29.840644 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 30.145127 ], [ 47.812500, 29.840644 ], [ 48.164062, 29.840644 ], [ 48.164062, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 28.921631 ], [ 48.164062, 28.921631 ], [ 48.164062, 28.613459 ], [ 47.460938, 28.613459 ], [ 47.460938, 29.228890 ], [ 46.757812, 29.228890 ], [ 46.757812, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 30.145127 ], [ 47.812500, 30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 32.249974 ], [ 39.375000, 31.952162 ], [ 40.429688, 31.952162 ], [ 40.429688, 31.653381 ], [ 40.781250, 31.653381 ], [ 40.781250, 31.353637 ], [ 41.484375, 31.353637 ], [ 41.484375, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.145127 ], [ 43.242188, 30.145127 ], [ 43.242188, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.228890 ], [ 46.757812, 29.228890 ], [ 46.757812, 28.921631 ], [ 47.460938, 28.921631 ], [ 47.460938, 28.613459 ], [ 48.515625, 28.613459 ], [ 48.515625, 27.994401 ], [ 48.867188, 27.994401 ], [ 48.867188, 27.371767 ], [ 49.218750, 27.371767 ], [ 49.218750, 27.059126 ], [ 49.570312, 27.059126 ], [ 49.570312, 26.745610 ], [ 50.273438, 26.745610 ], [ 50.273438, 25.482951 ], [ 50.625000, 25.482951 ], [ 50.625000, 24.846565 ], [ 50.976562, 24.846565 ], [ 50.976562, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 24.206890 ], [ 51.679688, 24.206890 ], [ 51.679688, 23.241346 ], [ 52.031250, 23.241346 ], [ 52.031250, 22.917923 ], [ 53.085938, 22.917923 ], [ 53.085938, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 22.268764 ], [ 55.546875, 22.268764 ], [ 55.546875, 21.289374 ], [ 55.195312, 21.289374 ], [ 55.195312, 20.303418 ], [ 54.843750, 20.303418 ], [ 54.843750, 19.973349 ], [ 54.492188, 19.973349 ], [ 54.492188, 19.642588 ], [ 53.789062, 19.642588 ], [ 53.789062, 19.311143 ], [ 52.734375, 19.311143 ], [ 52.734375, 18.979026 ], [ 50.976562, 18.979026 ], [ 50.976562, 18.646245 ], [ 48.867188, 18.646245 ], [ 48.867188, 18.312811 ], [ 48.164062, 18.312811 ], [ 48.164062, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 17.308688 ], [ 47.460938, 17.308688 ], [ 47.460938, 16.972741 ], [ 46.757812, 16.972741 ], [ 46.757812, 17.308688 ], [ 43.242188, 17.308688 ], [ 43.242188, 16.299051 ], [ 42.539062, 16.299051 ], [ 42.539062, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.644022 ], [ 41.835938, 17.644022 ], [ 41.835938, 17.978733 ], [ 41.484375, 17.978733 ], [ 41.484375, 18.312811 ], [ 41.132812, 18.312811 ], [ 41.132812, 18.979026 ], [ 40.781250, 18.979026 ], [ 40.781250, 19.642588 ], [ 40.429688, 19.642588 ], [ 40.429688, 19.973349 ], [ 40.078125, 19.973349 ], [ 40.078125, 20.303418 ], [ 39.375000, 20.303418 ], [ 39.375000, 20.961440 ], [ 39.023438, 20.961440 ], [ 39.023438, 22.593726 ], [ 38.671875, 22.593726 ], [ 38.671875, 23.241346 ], [ 38.320312, 23.241346 ], [ 38.320312, 23.885838 ], [ 37.968750, 23.885838 ], [ 37.968750, 24.206890 ], [ 37.617188, 24.206890 ], [ 37.617188, 24.527135 ], [ 37.265625, 24.527135 ], [ 37.265625, 25.165173 ], [ 36.914062, 25.165173 ], [ 36.914062, 25.482951 ], [ 36.562500, 25.482951 ], [ 36.562500, 26.115986 ], [ 36.210938, 26.115986 ], [ 36.210938, 26.431228 ], [ 35.859375, 26.431228 ], [ 35.859375, 27.059126 ], [ 35.507812, 27.059126 ], [ 35.507812, 27.683528 ], [ 35.156250, 27.683528 ], [ 35.156250, 27.994401 ], [ 34.804688, 27.994401 ], [ 34.804688, 29.228890 ], [ 36.562500, 29.228890 ], [ 36.562500, 29.535230 ], [ 36.914062, 29.535230 ], [ 36.914062, 29.840644 ], [ 37.617188, 29.840644 ], [ 37.617188, 31.052934 ], [ 37.265625, 31.052934 ], [ 37.265625, 31.353637 ], [ 36.914062, 31.353637 ], [ 36.914062, 31.653381 ], [ 38.320312, 31.653381 ], [ 38.320312, 31.952162 ], [ 39.023438, 31.952162 ], [ 39.023438, 32.249974 ], [ 39.375000, 32.249974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 32.249974 ], [ 39.375000, 31.952162 ], [ 40.429688, 31.952162 ], [ 40.429688, 31.653381 ], [ 41.132812, 31.653381 ], [ 41.132812, 31.353637 ], [ 41.835938, 31.353637 ], [ 41.835938, 31.052934 ], [ 42.187500, 31.052934 ], [ 42.187500, 30.751278 ], [ 42.539062, 30.751278 ], [ 42.539062, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.145127 ], [ 43.593750, 30.145127 ], [ 43.593750, 29.840644 ], [ 43.945312, 29.840644 ], [ 43.945312, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.228890 ], [ 47.460938, 29.228890 ], [ 47.460938, 28.613459 ], [ 48.164062, 28.613459 ], [ 48.164062, 28.304381 ], [ 48.515625, 28.304381 ], [ 48.515625, 27.683528 ], [ 49.218750, 27.683528 ], [ 49.218750, 27.059126 ], [ 49.570312, 27.059126 ], [ 49.570312, 26.745610 ], [ 49.921875, 26.745610 ], [ 49.921875, 25.482951 ], [ 50.273438, 25.482951 ], [ 50.273438, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.846565 ], [ 51.328125, 24.846565 ], [ 51.328125, 23.563987 ], [ 51.679688, 23.563987 ], [ 51.679688, 23.241346 ], [ 52.382812, 23.241346 ], [ 52.382812, 22.917923 ], [ 53.789062, 22.917923 ], [ 53.789062, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 21.616579 ], [ 55.195312, 21.616579 ], [ 55.195312, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 20.303418 ], [ 54.492188, 20.303418 ], [ 54.492188, 19.973349 ], [ 53.437500, 19.973349 ], [ 53.437500, 19.642588 ], [ 52.382812, 19.642588 ], [ 52.382812, 19.311143 ], [ 51.328125, 19.311143 ], [ 51.328125, 18.979026 ], [ 49.921875, 18.979026 ], [ 49.921875, 18.646245 ], [ 48.867188, 18.646245 ], [ 48.867188, 18.312811 ], [ 48.164062, 18.312811 ], [ 48.164062, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 17.308688 ], [ 47.460938, 17.308688 ], [ 47.460938, 16.972741 ], [ 46.406250, 16.972741 ], [ 46.406250, 17.308688 ], [ 45.351562, 17.308688 ], [ 45.351562, 17.644022 ], [ 43.242188, 17.644022 ], [ 43.242188, 17.308688 ], [ 42.890625, 17.308688 ], [ 42.890625, 16.636192 ], [ 42.539062, 16.636192 ], [ 42.539062, 16.972741 ], [ 42.187500, 16.972741 ], [ 42.187500, 17.644022 ], [ 41.484375, 17.644022 ], [ 41.484375, 18.312811 ], [ 41.132812, 18.312811 ], [ 41.132812, 19.311143 ], [ 40.781250, 19.311143 ], [ 40.781250, 19.642588 ], [ 40.429688, 19.642588 ], [ 40.429688, 19.973349 ], [ 40.078125, 19.973349 ], [ 40.078125, 20.303418 ], [ 39.726562, 20.303418 ], [ 39.726562, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 20.961440 ], [ 39.023438, 20.961440 ], [ 39.023438, 22.917923 ], [ 38.671875, 22.917923 ], [ 38.671875, 23.563987 ], [ 38.320312, 23.563987 ], [ 38.320312, 23.885838 ], [ 37.968750, 23.885838 ], [ 37.968750, 24.206890 ], [ 37.265625, 24.206890 ], [ 37.265625, 24.846565 ], [ 36.914062, 24.846565 ], [ 36.914062, 25.799891 ], [ 36.562500, 25.799891 ], [ 36.562500, 26.431228 ], [ 36.210938, 26.431228 ], [ 36.210938, 26.745610 ], [ 35.859375, 26.745610 ], [ 35.859375, 27.371767 ], [ 35.507812, 27.371767 ], [ 35.507812, 27.683528 ], [ 35.156250, 27.683528 ], [ 35.156250, 27.994401 ], [ 34.804688, 27.994401 ], [ 34.804688, 28.304381 ], [ 34.453125, 28.304381 ], [ 34.453125, 28.921631 ], [ 34.804688, 28.921631 ], [ 34.804688, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 29.228890 ], [ 36.210938, 29.228890 ], [ 36.210938, 29.840644 ], [ 36.562500, 29.840644 ], [ 36.562500, 30.145127 ], [ 37.617188, 30.145127 ], [ 37.617188, 30.448674 ], [ 37.968750, 30.448674 ], [ 37.968750, 30.751278 ], [ 37.617188, 30.751278 ], [ 37.617188, 31.052934 ], [ 37.265625, 31.052934 ], [ 37.265625, 31.353637 ], [ 36.914062, 31.353637 ], [ 36.914062, 31.653381 ], [ 37.617188, 31.653381 ], [ 37.617188, 31.952162 ], [ 38.320312, 31.952162 ], [ 38.320312, 32.249974 ], [ 39.375000, 32.249974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 26.115986 ], [ 51.328125, 25.799891 ], [ 51.679688, 25.799891 ], [ 51.679688, 24.846565 ], [ 51.328125, 24.846565 ], [ 51.328125, 24.527135 ], [ 50.976562, 24.527135 ], [ 50.976562, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 25.799891 ], [ 50.976562, 25.799891 ], [ 50.976562, 26.115986 ], [ 51.328125, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 25.799891 ], [ 51.328125, 24.846565 ], [ 50.625000, 24.846565 ], [ 50.625000, 25.799891 ], [ 51.328125, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.799891 ], [ 56.250000, 24.846565 ], [ 55.898438, 24.846565 ], [ 55.898438, 23.885838 ], [ 55.546875, 23.885838 ], [ 55.546875, 23.241346 ], [ 55.195312, 23.241346 ], [ 55.195312, 22.593726 ], [ 53.085938, 22.593726 ], [ 53.085938, 22.917923 ], [ 52.031250, 22.917923 ], [ 52.031250, 23.241346 ], [ 51.679688, 23.241346 ], [ 51.679688, 23.885838 ], [ 52.382812, 23.885838 ], [ 52.382812, 24.206890 ], [ 54.492188, 24.206890 ], [ 54.492188, 24.527135 ], [ 54.843750, 24.527135 ], [ 54.843750, 24.846565 ], [ 55.195312, 24.846565 ], [ 55.195312, 25.165173 ], [ 55.546875, 25.165173 ], [ 55.546875, 25.799891 ], [ 56.250000, 25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.799891 ], [ 56.250000, 25.165173 ], [ 55.546875, 25.165173 ], [ 55.546875, 24.206890 ], [ 55.195312, 24.206890 ], [ 55.195312, 22.593726 ], [ 53.789062, 22.593726 ], [ 53.789062, 22.917923 ], [ 52.382812, 22.917923 ], [ 52.382812, 23.241346 ], [ 51.679688, 23.241346 ], [ 51.679688, 23.563987 ], [ 51.328125, 23.563987 ], [ 51.328125, 24.527135 ], [ 51.679688, 24.527135 ], [ 51.679688, 24.206890 ], [ 54.140625, 24.206890 ], [ 54.140625, 24.527135 ], [ 54.492188, 24.527135 ], [ 54.492188, 24.846565 ], [ 54.843750, 24.846565 ], [ 54.843750, 25.165173 ], [ 55.195312, 25.165173 ], [ 55.195312, 25.482951 ], [ 55.546875, 25.482951 ], [ 55.546875, 25.799891 ], [ 56.250000, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.414062, 42.553080 ], [ 59.414062, 42.293564 ], [ 60.117188, 42.293564 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 40.446947 ], [ 62.226562, 40.446947 ], [ 62.226562, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.639538 ], [ 63.281250, 39.639538 ], [ 63.281250, 39.368279 ], [ 63.632812, 39.368279 ], [ 63.632812, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.822591 ], [ 64.335938, 38.822591 ], [ 64.335938, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 37.996163 ], [ 66.445312, 37.996163 ], [ 66.445312, 37.439974 ], [ 65.390625, 37.439974 ], [ 65.390625, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.031332 ], [ 63.984375, 36.031332 ], [ 63.984375, 35.746512 ], [ 63.281250, 35.746512 ], [ 63.281250, 35.460670 ], [ 62.929688, 35.460670 ], [ 62.929688, 35.173808 ], [ 61.875000, 35.173808 ], [ 61.875000, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 36.597889 ], [ 60.117188, 36.597889 ], [ 60.117188, 36.879621 ], [ 59.414062, 36.879621 ], [ 59.414062, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 37.439974 ], [ 58.007812, 37.439974 ], [ 58.007812, 37.718590 ], [ 57.304688, 37.718590 ], [ 57.304688, 37.996163 ], [ 55.546875, 37.996163 ], [ 55.546875, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.439974 ], [ 54.492188, 37.439974 ], [ 54.492188, 37.160317 ], [ 53.789062, 37.160317 ], [ 53.789062, 38.822591 ], [ 53.437500, 38.822591 ], [ 53.437500, 39.095963 ], [ 53.085938, 39.095963 ], [ 53.085938, 39.639538 ], [ 53.437500, 39.639538 ], [ 53.437500, 39.909736 ], [ 52.734375, 39.909736 ], [ 52.734375, 40.446947 ], [ 53.085938, 40.446947 ], [ 53.085938, 40.713956 ], [ 54.492188, 40.713956 ], [ 54.492188, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.771312 ], [ 53.085938, 41.771312 ], [ 53.085938, 42.032974 ], [ 53.789062, 42.032974 ], [ 53.789062, 42.293564 ], [ 54.140625, 42.293564 ], [ 54.140625, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.771312 ], [ 55.195312, 41.771312 ], [ 55.195312, 41.244772 ], [ 56.953125, 41.244772 ], [ 56.953125, 41.771312 ], [ 57.304688, 41.771312 ], [ 57.304688, 42.032974 ], [ 57.656250, 42.032974 ], [ 57.656250, 42.293564 ], [ 58.007812, 42.293564 ], [ 58.007812, 42.553080 ], [ 59.414062, 42.553080 ] ] ], [ [ [ 53.085938, 41.771312 ], [ 53.085938, 41.508577 ], [ 52.382812, 41.508577 ], [ 52.382812, 41.771312 ], [ 53.085938, 41.771312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.062500, 42.553080 ], [ 59.062500, 42.293564 ], [ 59.765625, 42.293564 ], [ 59.765625, 41.244772 ], [ 61.171875, 41.244772 ], [ 61.171875, 41.508577 ], [ 61.523438, 41.508577 ], [ 61.523438, 41.244772 ], [ 61.875000, 41.244772 ], [ 61.875000, 40.713956 ], [ 62.226562, 40.713956 ], [ 62.226562, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.639538 ], [ 62.929688, 39.639538 ], [ 62.929688, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.822591 ], [ 64.687500, 38.822591 ], [ 64.687500, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 37.996163 ], [ 66.445312, 37.996163 ], [ 66.445312, 37.439974 ], [ 65.390625, 37.439974 ], [ 65.390625, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.597889 ], [ 64.335938, 36.597889 ], [ 64.335938, 36.031332 ], [ 62.929688, 36.031332 ], [ 62.929688, 35.460670 ], [ 61.523438, 35.460670 ], [ 61.523438, 35.746512 ], [ 61.171875, 35.746512 ], [ 61.171875, 36.031332 ], [ 60.820312, 36.031332 ], [ 60.820312, 36.597889 ], [ 59.765625, 36.597889 ], [ 59.765625, 36.879621 ], [ 59.414062, 36.879621 ], [ 59.414062, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 37.439974 ], [ 58.359375, 37.439974 ], [ 58.359375, 37.718590 ], [ 58.007812, 37.718590 ], [ 58.007812, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 38.272689 ], [ 56.601562, 38.272689 ], [ 56.601562, 37.996163 ], [ 55.195312, 37.996163 ], [ 55.195312, 37.718590 ], [ 54.843750, 37.718590 ], [ 54.843750, 37.439974 ], [ 53.789062, 37.439974 ], [ 53.789062, 37.718590 ], [ 53.437500, 37.718590 ], [ 53.437500, 38.548165 ], [ 53.789062, 38.548165 ], [ 53.789062, 39.095963 ], [ 53.085938, 39.095963 ], [ 53.085938, 40.178873 ], [ 52.382812, 40.178873 ], [ 52.382812, 40.446947 ], [ 52.734375, 40.446947 ], [ 52.734375, 40.979898 ], [ 53.085938, 40.979898 ], [ 53.085938, 40.713956 ], [ 54.492188, 40.713956 ], [ 54.492188, 40.979898 ], [ 54.140625, 40.979898 ], [ 54.140625, 41.508577 ], [ 53.789062, 41.508577 ], [ 53.789062, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 42.293564 ], [ 53.437500, 42.293564 ], [ 53.437500, 42.553080 ], [ 53.789062, 42.553080 ], [ 53.789062, 42.293564 ], [ 54.492188, 42.293564 ], [ 54.492188, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 41.771312 ], [ 56.601562, 41.771312 ], [ 56.601562, 42.032974 ], [ 57.304688, 42.032974 ], [ 57.304688, 42.293564 ], [ 58.007812, 42.293564 ], [ 58.007812, 42.553080 ], [ 59.062500, 42.553080 ] ] ], [ [ [ 52.734375, 42.032974 ], [ 52.734375, 41.508577 ], [ 52.382812, 41.508577 ], [ 52.382812, 42.032974 ], [ 52.734375, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 18.979026 ], [ 52.031250, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.644022 ], [ 52.734375, 17.644022 ], [ 52.734375, 16.972741 ], [ 53.085938, 16.972741 ], [ 53.085938, 16.299051 ], [ 52.382812, 16.299051 ], [ 52.382812, 15.961329 ], [ 52.031250, 15.961329 ], [ 52.031250, 15.284185 ], [ 50.976562, 15.284185 ], [ 50.976562, 14.944785 ], [ 50.273438, 14.944785 ], [ 50.273438, 14.604847 ], [ 49.570312, 14.604847 ], [ 49.570312, 14.264383 ], [ 48.867188, 14.264383 ], [ 48.867188, 13.923404 ], [ 47.812500, 13.923404 ], [ 47.812500, 13.581921 ], [ 47.460938, 13.581921 ], [ 47.460938, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 12.897489 ], [ 45.000000, 12.897489 ], [ 45.000000, 12.554564 ], [ 43.593750, 12.554564 ], [ 43.593750, 12.897489 ], [ 43.242188, 12.897489 ], [ 43.242188, 14.264383 ], [ 42.890625, 14.264383 ], [ 42.890625, 14.944785 ], [ 42.539062, 14.944785 ], [ 42.539062, 15.623037 ], [ 42.890625, 15.623037 ], [ 42.890625, 16.299051 ], [ 43.242188, 16.299051 ], [ 43.242188, 17.308688 ], [ 46.757812, 17.308688 ], [ 46.757812, 16.972741 ], [ 47.460938, 16.972741 ], [ 47.460938, 17.308688 ], [ 47.812500, 17.308688 ], [ 47.812500, 17.978733 ], [ 48.164062, 17.978733 ], [ 48.164062, 18.312811 ], [ 48.867188, 18.312811 ], [ 48.867188, 18.646245 ], [ 50.976562, 18.646245 ], [ 50.976562, 18.979026 ], [ 52.031250, 18.979026 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.679688, 19.311143 ], [ 51.679688, 18.979026 ], [ 52.031250, 18.979026 ], [ 52.031250, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.644022 ], [ 52.734375, 17.644022 ], [ 52.734375, 17.308688 ], [ 53.085938, 17.308688 ], [ 53.085938, 16.636192 ], [ 52.382812, 16.636192 ], [ 52.382812, 16.299051 ], [ 52.031250, 16.299051 ], [ 52.031250, 15.623037 ], [ 51.679688, 15.623037 ], [ 51.679688, 15.284185 ], [ 50.625000, 15.284185 ], [ 50.625000, 14.944785 ], [ 49.570312, 14.944785 ], [ 49.570312, 14.604847 ], [ 48.867188, 14.604847 ], [ 48.867188, 14.264383 ], [ 47.812500, 14.264383 ], [ 47.812500, 13.923404 ], [ 47.109375, 13.923404 ], [ 47.109375, 13.581921 ], [ 45.351562, 13.581921 ], [ 45.351562, 13.239945 ], [ 45.000000, 13.239945 ], [ 45.000000, 12.897489 ], [ 42.890625, 12.897489 ], [ 42.890625, 13.581921 ], [ 43.242188, 13.581921 ], [ 43.242188, 13.923404 ], [ 42.890625, 13.923404 ], [ 42.890625, 14.944785 ], [ 42.539062, 14.944785 ], [ 42.539062, 16.636192 ], [ 42.890625, 16.636192 ], [ 42.890625, 17.308688 ], [ 43.242188, 17.308688 ], [ 43.242188, 17.644022 ], [ 45.351562, 17.644022 ], [ 45.351562, 17.308688 ], [ 46.406250, 17.308688 ], [ 46.406250, 16.972741 ], [ 47.460938, 16.972741 ], [ 47.460938, 17.308688 ], [ 47.812500, 17.308688 ], [ 47.812500, 17.978733 ], [ 48.164062, 17.978733 ], [ 48.164062, 18.312811 ], [ 48.867188, 18.312811 ], [ 48.867188, 18.646245 ], [ 49.921875, 18.646245 ], [ 49.921875, 18.979026 ], [ 51.328125, 18.979026 ], [ 51.328125, 19.311143 ], [ 51.679688, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.250000, 24.846565 ], [ 56.250000, 24.527135 ], [ 56.601562, 24.527135 ], [ 56.601562, 24.206890 ], [ 56.953125, 24.206890 ], [ 56.953125, 23.885838 ], [ 58.007812, 23.885838 ], [ 58.007812, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 21.943046 ], [ 59.414062, 21.943046 ], [ 59.414062, 20.961440 ], [ 58.710938, 20.961440 ], [ 58.710938, 20.632784 ], [ 58.359375, 20.632784 ], [ 58.359375, 20.303418 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 57.304688, 18.979026 ], [ 57.304688, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 16.972741 ], [ 54.140625, 16.972741 ], [ 54.140625, 16.636192 ], [ 53.085938, 16.636192 ], [ 53.085938, 16.972741 ], [ 52.734375, 16.972741 ], [ 52.734375, 17.644022 ], [ 52.382812, 17.644022 ], [ 52.382812, 18.312811 ], [ 52.031250, 18.312811 ], [ 52.031250, 18.979026 ], [ 52.734375, 18.979026 ], [ 52.734375, 19.311143 ], [ 53.789062, 19.311143 ], [ 53.789062, 19.642588 ], [ 54.492188, 19.642588 ], [ 54.492188, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 20.303418 ], [ 55.195312, 20.303418 ], [ 55.195312, 21.289374 ], [ 55.546875, 21.289374 ], [ 55.546875, 22.268764 ], [ 55.195312, 22.268764 ], [ 55.195312, 23.241346 ], [ 55.546875, 23.241346 ], [ 55.546875, 23.885838 ], [ 55.898438, 23.885838 ], [ 55.898438, 24.846565 ], [ 56.250000, 24.846565 ] ] ], [ [ [ 56.250000, 26.115986 ], [ 56.250000, 25.799891 ], [ 55.898438, 25.799891 ], [ 55.898438, 26.115986 ], [ 56.250000, 26.115986 ] ] ], [ [ [ 56.601562, 26.115986 ], [ 56.250000, 26.115986 ], [ 56.250000, 26.431228 ], [ 56.601562, 26.431228 ], [ 56.601562, 26.115986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.250000, 25.165173 ], [ 56.250000, 24.846565 ], [ 56.601562, 24.846565 ], [ 56.601562, 24.206890 ], [ 56.953125, 24.206890 ], [ 56.953125, 23.885838 ], [ 58.007812, 23.885838 ], [ 58.007812, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.917923 ], [ 59.414062, 22.917923 ], [ 59.414062, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.268764 ], [ 59.414062, 22.268764 ], [ 59.414062, 21.616579 ], [ 59.062500, 21.616579 ], [ 59.062500, 21.289374 ], [ 58.710938, 21.289374 ], [ 58.710938, 20.961440 ], [ 58.359375, 20.961440 ], [ 58.359375, 20.632784 ], [ 58.007812, 20.632784 ], [ 58.007812, 20.303418 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 56.953125, 18.979026 ], [ 56.953125, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 18.312811 ], [ 56.250000, 18.312811 ], [ 56.250000, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 16.972741 ], [ 53.085938, 16.972741 ], [ 53.085938, 17.308688 ], [ 52.734375, 17.308688 ], [ 52.734375, 17.644022 ], [ 52.382812, 17.644022 ], [ 52.382812, 18.312811 ], [ 52.031250, 18.312811 ], [ 52.031250, 18.979026 ], [ 51.679688, 18.979026 ], [ 51.679688, 19.311143 ], [ 52.382812, 19.311143 ], [ 52.382812, 19.642588 ], [ 53.437500, 19.642588 ], [ 53.437500, 19.973349 ], [ 54.492188, 19.973349 ], [ 54.492188, 20.303418 ], [ 54.843750, 20.303418 ], [ 54.843750, 20.632784 ], [ 55.195312, 20.632784 ], [ 55.195312, 21.616579 ], [ 55.546875, 21.616579 ], [ 55.546875, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 24.206890 ], [ 55.546875, 24.206890 ], [ 55.546875, 25.165173 ], [ 56.250000, 25.165173 ] ] ], [ [ [ 56.250000, 26.115986 ], [ 56.250000, 25.799891 ], [ 55.898438, 25.799891 ], [ 55.898438, 26.115986 ], [ 56.250000, 26.115986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 11.523088 ], [ 48.867188, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 8.407168 ], [ 48.164062, 8.407168 ], [ 48.164062, 8.059230 ], [ 46.406250, 8.059230 ], [ 46.406250, 8.407168 ], [ 45.000000, 8.407168 ], [ 45.000000, 8.754795 ], [ 43.945312, 8.754795 ], [ 43.945312, 9.102097 ], [ 43.242188, 9.102097 ], [ 43.242188, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 10.141932 ], [ 42.539062, 10.141932 ], [ 42.539062, 10.487812 ], [ 42.890625, 10.487812 ], [ 42.890625, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.487812 ], [ 45.351562, 10.487812 ], [ 45.351562, 10.833306 ], [ 47.460938, 10.833306 ], [ 47.460938, 11.178402 ], [ 48.515625, 11.178402 ], [ 48.515625, 11.523088 ], [ 48.867188, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 11.523088 ], [ 48.867188, 9.102097 ], [ 48.164062, 9.102097 ], [ 48.164062, 8.754795 ], [ 47.812500, 8.754795 ], [ 47.812500, 8.059230 ], [ 46.054688, 8.059230 ], [ 46.054688, 8.407168 ], [ 45.351562, 8.407168 ], [ 45.351562, 8.754795 ], [ 44.648438, 8.754795 ], [ 44.648438, 9.102097 ], [ 43.945312, 9.102097 ], [ 43.945312, 9.449062 ], [ 43.242188, 9.449062 ], [ 43.242188, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 10.487812 ], [ 42.539062, 10.487812 ], [ 42.539062, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 11.523088 ], [ 43.242188, 11.523088 ], [ 43.242188, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.833306 ], [ 43.945312, 10.833306 ], [ 43.945312, 10.487812 ], [ 45.000000, 10.487812 ], [ 45.000000, 10.833306 ], [ 47.109375, 10.833306 ], [ 47.109375, 11.178402 ], [ 47.812500, 11.178402 ], [ 47.812500, 11.523088 ], [ 48.867188, 11.523088 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 11.867351 ], [ 50.976562, 9.449062 ], [ 50.625000, 9.449062 ], [ 50.625000, 8.754795 ], [ 50.273438, 8.754795 ], [ 50.273438, 8.059230 ], [ 49.921875, 8.059230 ], [ 49.921875, 7.362467 ], [ 49.570312, 7.362467 ], [ 49.570312, 6.315299 ], [ 49.218750, 6.315299 ], [ 49.218750, 5.965754 ], [ 48.867188, 5.965754 ], [ 48.867188, 5.266008 ], [ 48.515625, 5.266008 ], [ 48.515625, 4.915833 ], [ 48.164062, 4.915833 ], [ 48.164062, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 3.864255 ], [ 47.460938, 3.864255 ], [ 47.460938, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 3.162456 ], [ 46.757812, 3.162456 ], [ 46.757812, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.460181 ], [ 46.054688, 2.460181 ], [ 46.054688, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.351560 ], [ 43.242188, 0.351560 ], [ 43.242188, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.351560 ], [ 42.539062, -0.351560 ], [ 42.539062, -1.054628 ], [ 42.187500, -1.054628 ], [ 42.187500, -1.406109 ], [ 41.835938, -1.406109 ], [ 41.835938, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 41.835938, 3.513421 ], [ 41.835938, 3.864255 ], [ 42.187500, 3.864255 ], [ 42.187500, 4.214943 ], [ 43.242188, 4.214943 ], [ 43.242188, 4.565474 ], [ 43.593750, 4.565474 ], [ 43.593750, 4.915833 ], [ 45.351562, 4.915833 ], [ 45.351562, 5.266008 ], [ 45.703125, 5.266008 ], [ 45.703125, 5.615986 ], [ 46.054688, 5.615986 ], [ 46.054688, 5.965754 ], [ 46.406250, 5.965754 ], [ 46.406250, 6.664608 ], [ 46.757812, 6.664608 ], [ 46.757812, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 7.362467 ], [ 47.460938, 7.362467 ], [ 47.460938, 7.710992 ], [ 47.812500, 7.710992 ], [ 47.812500, 8.059230 ], [ 48.164062, 8.059230 ], [ 48.164062, 8.407168 ], [ 48.515625, 8.407168 ], [ 48.515625, 9.102097 ], [ 48.867188, 9.102097 ], [ 48.867188, 11.523088 ], [ 50.625000, 11.523088 ], [ 50.625000, 11.867351 ], [ 50.976562, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 12.211180 ], [ 50.976562, 10.487812 ], [ 50.625000, 10.487812 ], [ 50.625000, 9.795678 ], [ 50.273438, 9.795678 ], [ 50.273438, 8.754795 ], [ 49.921875, 8.754795 ], [ 49.921875, 8.059230 ], [ 49.570312, 8.059230 ], [ 49.570312, 7.362467 ], [ 49.218750, 7.362467 ], [ 49.218750, 6.664608 ], [ 48.867188, 6.664608 ], [ 48.867188, 5.965754 ], [ 48.515625, 5.965754 ], [ 48.515625, 5.266008 ], [ 48.164062, 5.266008 ], [ 48.164062, 4.915833 ], [ 47.812500, 4.915833 ], [ 47.812500, 4.565474 ], [ 47.460938, 4.565474 ], [ 47.460938, 4.214943 ], [ 47.109375, 4.214943 ], [ 47.109375, 3.864255 ], [ 46.757812, 3.864255 ], [ 46.757812, 3.162456 ], [ 46.406250, 3.162456 ], [ 46.406250, 2.811371 ], [ 46.054688, 2.811371 ], [ 46.054688, 2.460181 ], [ 45.703125, 2.460181 ], [ 45.703125, 2.108899 ], [ 45.351562, 2.108899 ], [ 45.351562, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.242188, 0.703107 ], [ 43.242188, 0.351560 ], [ 42.890625, 0.351560 ], [ 42.890625, 0.000000 ], [ 42.539062, 0.000000 ], [ 42.539062, -0.351560 ], [ 42.187500, -0.351560 ], [ 42.187500, -0.703107 ], [ 41.835938, -0.703107 ], [ 41.835938, -1.054628 ], [ 41.484375, -1.054628 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, -1.054628 ], [ 40.781250, -1.054628 ], [ 40.781250, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 4.565474 ], [ 42.890625, 4.565474 ], [ 42.890625, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 5.266008 ], [ 45.000000, 5.266008 ], [ 45.000000, 5.615986 ], [ 45.351562, 5.615986 ], [ 45.351562, 5.965754 ], [ 45.703125, 5.965754 ], [ 45.703125, 6.315299 ], [ 46.054688, 6.315299 ], [ 46.054688, 6.664608 ], [ 46.406250, 6.664608 ], [ 46.406250, 7.013668 ], [ 46.757812, 7.013668 ], [ 46.757812, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 8.754795 ], [ 48.164062, 8.754795 ], [ 48.164062, 9.102097 ], [ 48.867188, 9.102097 ], [ 48.867188, 11.523088 ], [ 49.570312, 11.523088 ], [ 49.570312, 11.867351 ], [ 50.625000, 11.867351 ], [ 50.625000, 12.211180 ], [ 50.976562, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.312500, 40.713956 ], [ 70.312500, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 39.909736 ], [ 69.960938, 39.909736 ], [ 69.960938, 40.178873 ], [ 69.609375, 40.178873 ], [ 69.609375, 39.639538 ], [ 71.015625, 39.639538 ], [ 71.015625, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 38.548165 ], [ 74.179688, 38.548165 ], [ 74.179688, 38.272689 ], [ 74.882812, 38.272689 ], [ 74.882812, 37.439974 ], [ 73.125000, 37.439974 ], [ 73.125000, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 36.879621 ], [ 72.070312, 36.879621 ], [ 72.070312, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.879621 ], [ 71.367188, 36.879621 ], [ 71.367188, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.718590 ], [ 69.609375, 37.718590 ], [ 69.609375, 37.439974 ], [ 69.257812, 37.439974 ], [ 69.257812, 37.160317 ], [ 67.851562, 37.160317 ], [ 67.851562, 37.439974 ], [ 68.203125, 37.439974 ], [ 68.203125, 37.996163 ], [ 68.554688, 37.996163 ], [ 68.554688, 38.548165 ], [ 68.203125, 38.548165 ], [ 68.203125, 38.822591 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.368279 ], [ 67.851562, 39.368279 ], [ 67.851562, 39.639538 ], [ 68.554688, 39.639538 ], [ 68.554688, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.446947 ], [ 69.257812, 40.446947 ], [ 69.257812, 40.713956 ], [ 70.312500, 40.713956 ] ] ], [ [ [ 70.664062, 40.713956 ], [ 70.312500, 40.713956 ], [ 70.312500, 40.979898 ], [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ], [ 70.312500, 40.713956 ], [ 70.312500, 40.446947 ], [ 71.015625, 40.446947 ], [ 71.015625, 40.178873 ], [ 69.257812, 40.178873 ], [ 69.257812, 39.639538 ], [ 70.664062, 39.639538 ], [ 70.664062, 39.368279 ], [ 72.773438, 39.368279 ], [ 72.773438, 39.639538 ], [ 73.476562, 39.639538 ], [ 73.476562, 39.095963 ], [ 73.828125, 39.095963 ], [ 73.828125, 38.548165 ], [ 74.531250, 38.548165 ], [ 74.531250, 37.718590 ], [ 74.882812, 37.718590 ], [ 74.882812, 37.439974 ], [ 72.773438, 37.439974 ], [ 72.773438, 37.160317 ], [ 72.070312, 37.160317 ], [ 72.070312, 36.879621 ], [ 71.367188, 36.879621 ], [ 71.367188, 37.996163 ], [ 71.015625, 37.996163 ], [ 71.015625, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.996163 ], [ 69.960938, 37.996163 ], [ 69.960938, 37.718590 ], [ 69.257812, 37.718590 ], [ 69.257812, 37.439974 ], [ 68.906250, 37.439974 ], [ 68.906250, 37.160317 ], [ 67.500000, 37.160317 ], [ 67.500000, 37.439974 ], [ 67.851562, 37.439974 ], [ 67.851562, 37.996163 ], [ 68.203125, 37.996163 ], [ 68.203125, 38.548165 ], [ 67.851562, 38.548165 ], [ 67.851562, 39.095963 ], [ 67.148438, 39.095963 ], [ 67.148438, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 39.639538 ], [ 68.554688, 39.639538 ], [ 68.554688, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.446947 ], [ 69.257812, 40.446947 ], [ 69.257812, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.367188, 38.272689 ], [ 71.367188, 36.879621 ], [ 71.718750, 36.879621 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.315125 ], [ 71.367188, 36.315125 ], [ 71.367188, 35.460670 ], [ 71.718750, 35.460670 ], [ 71.718750, 34.885931 ], [ 71.367188, 34.885931 ], [ 71.367188, 34.597042 ], [ 71.015625, 34.597042 ], [ 71.015625, 34.016242 ], [ 69.960938, 34.016242 ], [ 69.960938, 33.724340 ], [ 70.312500, 33.724340 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.842674 ], [ 69.257812, 32.842674 ], [ 69.257812, 31.653381 ], [ 67.851562, 31.653381 ], [ 67.851562, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 31.052934 ], [ 66.445312, 31.052934 ], [ 66.445312, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 29.535230 ], [ 64.335938, 29.535230 ], [ 64.335938, 29.228890 ], [ 63.632812, 29.228890 ], [ 63.632812, 29.535230 ], [ 63.281250, 29.535230 ], [ 63.281250, 29.228890 ], [ 61.875000, 29.228890 ], [ 61.875000, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 30.145127 ], [ 61.523438, 30.145127 ], [ 61.523438, 30.448674 ], [ 61.875000, 30.448674 ], [ 61.875000, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 31.653381 ], [ 60.820312, 31.653381 ], [ 60.820312, 32.546813 ], [ 60.468750, 32.546813 ], [ 60.468750, 33.137551 ], [ 60.820312, 33.137551 ], [ 60.820312, 33.431441 ], [ 60.468750, 33.431441 ], [ 60.468750, 34.016242 ], [ 60.820312, 34.016242 ], [ 60.820312, 34.885931 ], [ 61.171875, 34.885931 ], [ 61.171875, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 35.173808 ], [ 62.929688, 35.173808 ], [ 62.929688, 35.460670 ], [ 63.281250, 35.460670 ], [ 63.281250, 35.746512 ], [ 63.984375, 35.746512 ], [ 63.984375, 36.031332 ], [ 64.687500, 36.031332 ], [ 64.687500, 37.160317 ], [ 65.390625, 37.160317 ], [ 65.390625, 37.439974 ], [ 67.148438, 37.439974 ], [ 67.148438, 37.160317 ], [ 69.257812, 37.160317 ], [ 69.257812, 37.439974 ], [ 69.609375, 37.439974 ], [ 69.609375, 37.718590 ], [ 70.312500, 37.718590 ], [ 70.312500, 38.272689 ], [ 71.367188, 38.272689 ] ] ], [ [ [ 74.882812, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 36.879621 ], [ 73.828125, 36.879621 ], [ 73.828125, 36.597889 ], [ 72.070312, 36.597889 ], [ 72.070312, 36.879621 ], [ 72.773438, 36.879621 ], [ 72.773438, 37.160317 ], [ 73.125000, 37.160317 ], [ 73.125000, 37.439974 ], [ 74.882812, 37.439974 ], [ 74.882812, 37.160317 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.960938, 34.016242 ], [ 69.960938, 33.431441 ], [ 70.312500, 33.431441 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.842674 ], [ 69.257812, 32.842674 ], [ 69.257812, 31.653381 ], [ 68.554688, 31.653381 ], [ 68.554688, 31.952162 ], [ 68.203125, 31.952162 ], [ 68.203125, 31.653381 ], [ 67.500000, 31.653381 ], [ 67.500000, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 31.052934 ], [ 66.445312, 31.052934 ], [ 66.445312, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.840644 ], [ 65.390625, 29.840644 ], [ 65.390625, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 31.653381 ], [ 60.820312, 31.653381 ], [ 60.820312, 32.546813 ], [ 60.468750, 32.546813 ], [ 60.468750, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.724340 ], [ 60.468750, 33.724340 ], [ 60.468750, 34.885931 ], [ 60.820312, 34.885931 ], [ 60.820312, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 35.746512 ], [ 61.523438, 35.746512 ], [ 61.523438, 35.460670 ], [ 62.929688, 35.460670 ], [ 62.929688, 36.031332 ], [ 64.335938, 36.031332 ], [ 64.335938, 36.597889 ], [ 64.687500, 36.597889 ], [ 64.687500, 37.160317 ], [ 65.390625, 37.160317 ], [ 65.390625, 37.439974 ], [ 66.796875, 37.439974 ], [ 66.796875, 37.160317 ], [ 68.906250, 37.160317 ], [ 68.906250, 37.439974 ], [ 69.257812, 37.439974 ], [ 69.257812, 37.718590 ], [ 69.960938, 37.718590 ], [ 69.960938, 37.996163 ], [ 70.312500, 37.996163 ], [ 70.312500, 38.272689 ], [ 71.015625, 38.272689 ], [ 71.015625, 37.996163 ], [ 71.367188, 37.996163 ], [ 71.367188, 36.879621 ], [ 72.070312, 36.879621 ], [ 72.070312, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 37.439974 ], [ 74.882812, 37.439974 ], [ 74.882812, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 36.879621 ], [ 72.421875, 36.879621 ], [ 72.421875, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.315125 ], [ 71.015625, 36.315125 ], [ 71.015625, 36.031332 ], [ 71.367188, 36.031332 ], [ 71.367188, 34.885931 ], [ 71.015625, 34.885931 ], [ 71.015625, 34.307144 ], [ 70.664062, 34.307144 ], [ 70.664062, 34.016242 ], [ 69.960938, 34.016242 ] ], [ [ 69.960938, 34.016242 ], [ 69.960938, 34.307144 ], [ 69.609375, 34.307144 ], [ 69.609375, 34.016242 ], [ 69.960938, 34.016242 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 61.171875, 29.535230 ], [ 61.875000, 29.535230 ], [ 61.875000, 29.228890 ], [ 63.281250, 29.228890 ], [ 63.281250, 29.535230 ], [ 63.632812, 29.535230 ], [ 63.632812, 29.228890 ], [ 64.335938, 29.228890 ], [ 64.335938, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 29.840644 ], [ 66.445312, 29.840644 ], [ 66.445312, 31.052934 ], [ 66.796875, 31.052934 ], [ 66.796875, 31.353637 ], [ 67.851562, 31.353637 ], [ 67.851562, 31.653381 ], [ 69.257812, 31.653381 ], [ 69.257812, 32.842674 ], [ 69.609375, 32.842674 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.724340 ], [ 69.960938, 33.724340 ], [ 69.960938, 34.016242 ], [ 71.015625, 34.016242 ], [ 71.015625, 34.597042 ], [ 71.367188, 34.597042 ], [ 71.367188, 34.885931 ], [ 71.718750, 34.885931 ], [ 71.718750, 35.460670 ], [ 71.367188, 35.460670 ], [ 71.367188, 36.315125 ], [ 71.718750, 36.315125 ], [ 71.718750, 36.597889 ], [ 73.828125, 36.597889 ], [ 73.828125, 36.879621 ], [ 74.531250, 36.879621 ], [ 74.531250, 37.160317 ], [ 75.234375, 37.160317 ], [ 75.234375, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.315125 ], [ 76.289062, 36.315125 ], [ 76.289062, 35.746512 ], [ 76.992188, 35.746512 ], [ 76.992188, 35.460670 ], [ 77.695312, 35.460670 ], [ 77.695312, 35.173808 ], [ 77.343750, 35.173808 ], [ 77.343750, 34.597042 ], [ 74.531250, 34.597042 ], [ 74.531250, 34.885931 ], [ 74.179688, 34.885931 ], [ 74.179688, 34.597042 ], [ 73.828125, 34.597042 ], [ 73.828125, 33.724340 ], [ 74.179688, 33.724340 ], [ 74.179688, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 32.546813 ], [ 74.882812, 32.546813 ], [ 74.882812, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 31.952162 ], [ 74.882812, 31.952162 ], [ 74.882812, 31.653381 ], [ 74.531250, 31.653381 ], [ 74.531250, 30.751278 ], [ 74.179688, 30.751278 ], [ 74.179688, 30.448674 ], [ 73.828125, 30.448674 ], [ 73.828125, 29.840644 ], [ 73.476562, 29.840644 ], [ 73.476562, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.304381 ], [ 72.070312, 28.304381 ], [ 72.070312, 27.994401 ], [ 70.664062, 27.994401 ], [ 70.664062, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.745610 ], [ 69.960938, 26.745610 ], [ 69.960938, 26.431228 ], [ 70.312500, 26.431228 ], [ 70.312500, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 25.165173 ], [ 71.015625, 25.165173 ], [ 71.015625, 24.206890 ], [ 68.906250, 24.206890 ], [ 68.906250, 23.885838 ], [ 68.554688, 23.885838 ], [ 68.554688, 23.563987 ], [ 67.500000, 23.563987 ], [ 67.500000, 24.206890 ], [ 67.148438, 24.206890 ], [ 67.148438, 24.527135 ], [ 66.796875, 24.527135 ], [ 66.796875, 25.165173 ], [ 66.445312, 25.165173 ], [ 66.445312, 25.482951 ], [ 65.742188, 25.482951 ], [ 65.742188, 25.165173 ], [ 61.523438, 25.165173 ], [ 61.523438, 25.482951 ], [ 61.875000, 25.482951 ], [ 61.875000, 26.115986 ], [ 62.578125, 26.115986 ], [ 62.578125, 26.431228 ], [ 63.281250, 26.431228 ], [ 63.281250, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.683528 ], [ 62.578125, 27.683528 ], [ 62.578125, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 28.921631 ], [ 61.523438, 28.921631 ], [ 61.523438, 29.228890 ], [ 61.171875, 29.228890 ], [ 61.171875, 29.535230 ] ] ], [ [ [ 61.171875, 29.535230 ], [ 60.820312, 29.535230 ], [ 60.820312, 29.840644 ], [ 61.171875, 29.840644 ], [ 61.171875, 29.535230 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.960938, 34.016242 ], [ 70.664062, 34.016242 ], [ 70.664062, 34.307144 ], [ 71.015625, 34.307144 ], [ 71.015625, 34.885931 ], [ 71.367188, 34.885931 ], [ 71.367188, 36.031332 ], [ 71.015625, 36.031332 ], [ 71.015625, 36.315125 ], [ 71.718750, 36.315125 ], [ 71.718750, 36.597889 ], [ 72.421875, 36.597889 ], [ 72.421875, 36.879621 ], [ 74.531250, 36.879621 ], [ 74.531250, 37.160317 ], [ 74.882812, 37.160317 ], [ 74.882812, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.315125 ], [ 75.937500, 36.315125 ], [ 75.937500, 36.031332 ], [ 76.640625, 36.031332 ], [ 76.640625, 35.746512 ], [ 77.695312, 35.746512 ], [ 77.695312, 35.460670 ], [ 77.343750, 35.460670 ], [ 77.343750, 35.173808 ], [ 76.992188, 35.173808 ], [ 76.992188, 34.885931 ], [ 76.289062, 34.885931 ], [ 76.289062, 34.597042 ], [ 74.531250, 34.597042 ], [ 74.531250, 34.885931 ], [ 74.179688, 34.885931 ], [ 74.179688, 34.597042 ], [ 73.476562, 34.597042 ], [ 73.476562, 34.016242 ], [ 73.828125, 34.016242 ], [ 73.828125, 33.137551 ], [ 74.179688, 33.137551 ], [ 74.179688, 32.842674 ], [ 74.531250, 32.842674 ], [ 74.531250, 32.546813 ], [ 75.234375, 32.546813 ], [ 75.234375, 32.249974 ], [ 74.531250, 32.249974 ], [ 74.531250, 31.952162 ], [ 74.179688, 31.952162 ], [ 74.179688, 30.751278 ], [ 73.828125, 30.751278 ], [ 73.828125, 30.448674 ], [ 73.476562, 30.448674 ], [ 73.476562, 30.145127 ], [ 73.125000, 30.145127 ], [ 73.125000, 29.535230 ], [ 72.773438, 29.535230 ], [ 72.773438, 28.921631 ], [ 72.421875, 28.921631 ], [ 72.421875, 28.613459 ], [ 72.070312, 28.613459 ], [ 72.070312, 27.994401 ], [ 70.312500, 27.994401 ], [ 70.312500, 27.683528 ], [ 69.960938, 27.683528 ], [ 69.960938, 27.371767 ], [ 69.609375, 27.371767 ], [ 69.609375, 27.059126 ], [ 69.257812, 27.059126 ], [ 69.257812, 26.745610 ], [ 69.960938, 26.745610 ], [ 69.960938, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 24.846565 ], [ 71.015625, 24.846565 ], [ 71.015625, 24.527135 ], [ 68.554688, 24.527135 ], [ 68.554688, 24.206890 ], [ 68.203125, 24.206890 ], [ 68.203125, 23.885838 ], [ 67.148438, 23.885838 ], [ 67.148438, 24.527135 ], [ 66.796875, 24.527135 ], [ 66.796875, 24.846565 ], [ 66.445312, 24.846565 ], [ 66.445312, 25.165173 ], [ 66.093750, 25.165173 ], [ 66.093750, 25.482951 ], [ 62.226562, 25.482951 ], [ 62.226562, 25.165173 ], [ 61.171875, 25.165173 ], [ 61.171875, 25.482951 ], [ 61.523438, 25.482951 ], [ 61.523438, 26.115986 ], [ 61.875000, 26.115986 ], [ 61.875000, 26.431228 ], [ 62.578125, 26.431228 ], [ 62.578125, 26.745610 ], [ 63.281250, 26.745610 ], [ 63.281250, 27.059126 ], [ 62.929688, 27.059126 ], [ 62.929688, 27.371767 ], [ 62.578125, 27.371767 ], [ 62.578125, 28.304381 ], [ 62.226562, 28.304381 ], [ 62.226562, 28.613459 ], [ 61.523438, 28.613459 ], [ 61.523438, 29.228890 ], [ 61.171875, 29.228890 ], [ 61.171875, 29.535230 ], [ 65.390625, 29.535230 ], [ 65.390625, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 30.751278 ], [ 66.445312, 30.751278 ], [ 66.445312, 31.052934 ], [ 66.796875, 31.052934 ], [ 66.796875, 31.353637 ], [ 67.500000, 31.353637 ], [ 67.500000, 31.653381 ], [ 68.203125, 31.653381 ], [ 68.203125, 31.952162 ], [ 68.554688, 31.952162 ], [ 68.554688, 31.653381 ], [ 69.257812, 31.653381 ], [ 69.257812, 32.842674 ], [ 69.609375, 32.842674 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.431441 ], [ 69.960938, 33.431441 ], [ 69.960938, 34.016242 ] ] ], [ [ [ 61.171875, 29.535230 ], [ 60.820312, 29.535230 ], [ 60.820312, 29.840644 ], [ 61.171875, 29.840644 ], [ 61.171875, 29.535230 ] ] ], [ [ [ 69.960938, 34.016242 ], [ 69.609375, 34.016242 ], [ 69.609375, 34.307144 ], [ 69.960938, 34.307144 ], [ 69.960938, 34.016242 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 82.265625, 29.840644 ], [ 82.968750, 29.840644 ], [ 82.968750, 29.535230 ], [ 83.320312, 29.535230 ], [ 83.320312, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.375000, 28.921631 ], [ 84.375000, 28.613459 ], [ 85.078125, 28.613459 ], [ 85.078125, 28.304381 ], [ 86.132812, 28.304381 ], [ 86.132812, 27.994401 ], [ 88.242188, 27.994401 ], [ 88.242188, 27.683528 ], [ 87.890625, 27.683528 ], [ 87.890625, 27.059126 ], [ 88.242188, 27.059126 ], [ 88.242188, 26.431228 ], [ 86.484375, 26.431228 ], [ 86.484375, 26.745610 ], [ 85.078125, 26.745610 ], [ 85.078125, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 27.371767 ], [ 82.617188, 27.371767 ], [ 82.617188, 27.683528 ], [ 81.914062, 27.683528 ], [ 81.914062, 27.994401 ], [ 81.210938, 27.994401 ], [ 81.210938, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 28.613459 ], [ 80.156250, 28.613459 ], [ 80.156250, 29.228890 ], [ 80.507812, 29.228890 ], [ 80.507812, 29.840644 ], [ 81.210938, 29.840644 ], [ 81.210938, 30.145127 ], [ 82.265625, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.562500, 30.448674 ], [ 81.562500, 30.145127 ], [ 82.265625, 30.145127 ], [ 82.265625, 29.840644 ], [ 82.968750, 29.840644 ], [ 82.968750, 29.535230 ], [ 83.671875, 29.535230 ], [ 83.671875, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.726562, 28.921631 ], [ 84.726562, 28.613459 ], [ 85.429688, 28.613459 ], [ 85.429688, 28.304381 ], [ 86.132812, 28.304381 ], [ 86.132812, 27.994401 ], [ 87.890625, 27.994401 ], [ 87.890625, 26.431228 ], [ 86.132812, 26.431228 ], [ 86.132812, 26.745610 ], [ 84.726562, 26.745610 ], [ 84.726562, 27.059126 ], [ 84.375000, 27.059126 ], [ 84.375000, 27.371767 ], [ 82.617188, 27.371767 ], [ 82.617188, 27.683528 ], [ 81.914062, 27.683528 ], [ 81.914062, 27.994401 ], [ 81.562500, 27.994401 ], [ 81.562500, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 28.613459 ], [ 80.156250, 28.613459 ], [ 80.156250, 28.921631 ], [ 79.804688, 28.921631 ], [ 79.804688, 29.228890 ], [ 80.156250, 29.228890 ], [ 80.156250, 29.840644 ], [ 80.507812, 29.840644 ], [ 80.507812, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 30.448674 ], [ 81.562500, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.046875, 35.173808 ], [ 78.046875, 34.885931 ], [ 78.398438, 34.885931 ], [ 78.398438, 34.307144 ], [ 78.750000, 34.307144 ], [ 78.750000, 33.137551 ], [ 79.101562, 33.137551 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.546813 ], [ 78.398438, 31.952162 ], [ 78.750000, 31.952162 ], [ 78.750000, 31.353637 ], [ 79.101562, 31.353637 ], [ 79.101562, 31.052934 ], [ 79.453125, 31.052934 ], [ 79.453125, 30.751278 ], [ 79.804688, 30.751278 ], [ 79.804688, 30.448674 ], [ 80.507812, 30.448674 ], [ 80.507812, 30.145127 ], [ 81.210938, 30.145127 ], [ 81.210938, 29.840644 ], [ 80.507812, 29.840644 ], [ 80.507812, 29.228890 ], [ 80.156250, 29.228890 ], [ 80.156250, 28.613459 ], [ 80.859375, 28.613459 ], [ 80.859375, 28.304381 ], [ 81.210938, 28.304381 ], [ 81.210938, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.371767 ], [ 84.726562, 27.371767 ], [ 84.726562, 27.059126 ], [ 85.078125, 27.059126 ], [ 85.078125, 26.745610 ], [ 86.484375, 26.745610 ], [ 86.484375, 26.431228 ], [ 88.242188, 26.431228 ], [ 88.242188, 27.059126 ], [ 87.890625, 27.059126 ], [ 87.890625, 27.683528 ], [ 88.242188, 27.683528 ], [ 88.242188, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.683528 ], [ 88.945312, 27.683528 ], [ 88.945312, 26.745610 ], [ 91.757812, 26.745610 ], [ 91.757812, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 26.115986 ], [ 88.242188, 26.115986 ], [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ], [ 88.593750, 23.241346 ], [ 88.945312, 23.241346 ], [ 88.945312, 21.616579 ], [ 86.835938, 21.616579 ], [ 86.835938, 20.961440 ], [ 87.187500, 20.961440 ], [ 87.187500, 20.303418 ], [ 86.484375, 20.303418 ], [ 86.484375, 19.973349 ], [ 85.781250, 19.973349 ], [ 85.781250, 19.642588 ], [ 85.078125, 19.642588 ], [ 85.078125, 19.311143 ], [ 84.726562, 19.311143 ], [ 84.726562, 18.979026 ], [ 84.375000, 18.979026 ], [ 84.375000, 18.312811 ], [ 84.023438, 18.312811 ], [ 84.023438, 17.978733 ], [ 83.671875, 17.978733 ], [ 83.671875, 17.644022 ], [ 83.320312, 17.644022 ], [ 83.320312, 17.308688 ], [ 82.617188, 17.308688 ], [ 82.617188, 16.972741 ], [ 82.265625, 16.972741 ], [ 82.265625, 16.299051 ], [ 81.562500, 16.299051 ], [ 81.562500, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 12.554564 ], [ 79.804688, 12.554564 ], [ 79.804688, 10.141932 ], [ 79.453125, 10.141932 ], [ 79.453125, 9.795678 ], [ 79.101562, 9.795678 ], [ 79.101562, 9.449062 ], [ 78.750000, 9.449062 ], [ 78.750000, 9.102097 ], [ 78.398438, 9.102097 ], [ 78.398438, 8.754795 ], [ 78.046875, 8.754795 ], [ 78.046875, 8.059230 ], [ 77.343750, 8.059230 ], [ 77.343750, 8.407168 ], [ 76.640625, 8.407168 ], [ 76.640625, 9.449062 ], [ 76.289062, 9.449062 ], [ 76.289062, 10.141932 ], [ 75.937500, 10.141932 ], [ 75.937500, 10.833306 ], [ 75.585938, 10.833306 ], [ 75.585938, 11.523088 ], [ 75.234375, 11.523088 ], [ 75.234375, 12.211180 ], [ 74.882812, 12.211180 ], [ 74.882812, 13.239945 ], [ 74.531250, 13.239945 ], [ 74.531250, 14.604847 ], [ 74.179688, 14.604847 ], [ 74.179688, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 15.623037 ], [ 73.476562, 15.623037 ], [ 73.476562, 16.972741 ], [ 73.125000, 16.972741 ], [ 73.125000, 18.646245 ], [ 72.773438, 18.646245 ], [ 72.773438, 21.289374 ], [ 72.421875, 21.289374 ], [ 72.421875, 20.961440 ], [ 71.718750, 20.961440 ], [ 71.718750, 20.632784 ], [ 70.312500, 20.632784 ], [ 70.312500, 20.961440 ], [ 69.960938, 20.961440 ], [ 69.960938, 21.289374 ], [ 69.609375, 21.289374 ], [ 69.609375, 21.616579 ], [ 69.257812, 21.616579 ], [ 69.257812, 22.268764 ], [ 69.609375, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.257812, 22.593726 ], [ 69.257812, 22.917923 ], [ 68.906250, 22.917923 ], [ 68.906250, 23.241346 ], [ 68.203125, 23.241346 ], [ 68.203125, 23.563987 ], [ 68.554688, 23.563987 ], [ 68.554688, 23.885838 ], [ 68.906250, 23.885838 ], [ 68.906250, 24.206890 ], [ 71.015625, 24.206890 ], [ 71.015625, 25.165173 ], [ 70.664062, 25.165173 ], [ 70.664062, 25.482951 ], [ 70.312500, 25.482951 ], [ 70.312500, 26.431228 ], [ 69.960938, 26.431228 ], [ 69.960938, 26.745610 ], [ 69.609375, 26.745610 ], [ 69.609375, 27.059126 ], [ 69.960938, 27.059126 ], [ 69.960938, 27.371767 ], [ 70.312500, 27.371767 ], [ 70.312500, 27.683528 ], [ 70.664062, 27.683528 ], [ 70.664062, 27.994401 ], [ 72.070312, 27.994401 ], [ 72.070312, 28.304381 ], [ 72.421875, 28.304381 ], [ 72.421875, 28.613459 ], [ 72.773438, 28.613459 ], [ 72.773438, 28.921631 ], [ 73.125000, 28.921631 ], [ 73.125000, 29.535230 ], [ 73.476562, 29.535230 ], [ 73.476562, 29.840644 ], [ 73.828125, 29.840644 ], [ 73.828125, 30.448674 ], [ 74.179688, 30.448674 ], [ 74.179688, 30.751278 ], [ 74.531250, 30.751278 ], [ 74.531250, 31.653381 ], [ 74.882812, 31.653381 ], [ 74.882812, 31.952162 ], [ 75.234375, 31.952162 ], [ 75.234375, 32.249974 ], [ 74.882812, 32.249974 ], [ 74.882812, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 33.137551 ], [ 74.179688, 33.137551 ], [ 74.179688, 33.724340 ], [ 73.828125, 33.724340 ], [ 73.828125, 34.597042 ], [ 74.179688, 34.597042 ], [ 74.179688, 34.885931 ], [ 74.531250, 34.885931 ], [ 74.531250, 34.597042 ], [ 77.343750, 34.597042 ], [ 77.343750, 35.173808 ], [ 78.046875, 35.173808 ] ] ], [ [ [ 91.757812, 24.206890 ], [ 91.757812, 22.917923 ], [ 91.406250, 22.917923 ], [ 91.406250, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 91.757812, 24.206890 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.046875, 35.460670 ], [ 78.046875, 35.173808 ], [ 78.398438, 35.173808 ], [ 78.398438, 34.597042 ], [ 78.750000, 34.597042 ], [ 78.750000, 33.431441 ], [ 79.101562, 33.431441 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.546813 ], [ 78.398438, 31.353637 ], [ 79.101562, 31.353637 ], [ 79.101562, 31.052934 ], [ 79.453125, 31.052934 ], [ 79.453125, 30.751278 ], [ 80.156250, 30.751278 ], [ 80.156250, 30.448674 ], [ 80.859375, 30.448674 ], [ 80.859375, 30.145127 ], [ 80.507812, 30.145127 ], [ 80.507812, 29.840644 ], [ 80.156250, 29.840644 ], [ 80.156250, 29.228890 ], [ 79.804688, 29.228890 ], [ 79.804688, 28.921631 ], [ 80.156250, 28.921631 ], [ 80.156250, 28.613459 ], [ 80.859375, 28.613459 ], [ 80.859375, 28.304381 ], [ 81.562500, 28.304381 ], [ 81.562500, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.371767 ], [ 84.375000, 27.371767 ], [ 84.375000, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 26.745610 ], [ 86.132812, 26.745610 ], [ 86.132812, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.059126 ], [ 89.296875, 27.059126 ], [ 89.296875, 26.745610 ], [ 90.351562, 26.745610 ], [ 90.351562, 27.059126 ], [ 91.757812, 27.059126 ], [ 91.757812, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 25.482951 ], [ 89.648438, 25.482951 ], [ 89.648438, 26.115986 ], [ 88.945312, 26.115986 ], [ 88.945312, 26.431228 ], [ 88.242188, 26.431228 ], [ 88.242188, 26.115986 ], [ 87.890625, 26.115986 ], [ 87.890625, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.242188, 25.165173 ], [ 88.242188, 24.846565 ], [ 87.890625, 24.846565 ], [ 87.890625, 24.527135 ], [ 88.593750, 24.527135 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 22.593726 ], [ 88.945312, 22.593726 ], [ 88.945312, 21.943046 ], [ 87.539062, 21.943046 ], [ 87.539062, 21.616579 ], [ 86.835938, 21.616579 ], [ 86.835938, 20.632784 ], [ 86.484375, 20.632784 ], [ 86.484375, 20.303418 ], [ 86.132812, 20.303418 ], [ 86.132812, 19.973349 ], [ 85.429688, 19.973349 ], [ 85.429688, 19.642588 ], [ 84.726562, 19.642588 ], [ 84.726562, 19.311143 ], [ 84.375000, 19.311143 ], [ 84.375000, 18.979026 ], [ 84.023438, 18.979026 ], [ 84.023438, 18.312811 ], [ 83.671875, 18.312811 ], [ 83.671875, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 17.644022 ], [ 82.265625, 17.644022 ], [ 82.265625, 17.308688 ], [ 81.914062, 17.308688 ], [ 81.914062, 16.636192 ], [ 81.562500, 16.636192 ], [ 81.562500, 16.299051 ], [ 80.859375, 16.299051 ], [ 80.859375, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 15.623037 ], [ 79.804688, 15.623037 ], [ 79.804688, 14.604847 ], [ 80.156250, 14.604847 ], [ 80.156250, 12.554564 ], [ 79.804688, 12.554564 ], [ 79.804688, 10.487812 ], [ 79.101562, 10.487812 ], [ 79.101562, 10.141932 ], [ 78.750000, 10.141932 ], [ 78.750000, 9.102097 ], [ 78.046875, 9.102097 ], [ 78.046875, 8.754795 ], [ 77.695312, 8.754795 ], [ 77.695312, 8.059230 ], [ 76.992188, 8.059230 ], [ 76.992188, 8.407168 ], [ 76.640625, 8.407168 ], [ 76.640625, 8.754795 ], [ 76.289062, 8.754795 ], [ 76.289062, 9.795678 ], [ 75.937500, 9.795678 ], [ 75.937500, 10.833306 ], [ 75.585938, 10.833306 ], [ 75.585938, 11.523088 ], [ 75.234375, 11.523088 ], [ 75.234375, 11.867351 ], [ 74.882812, 11.867351 ], [ 74.882812, 12.554564 ], [ 74.531250, 12.554564 ], [ 74.531250, 14.604847 ], [ 74.179688, 14.604847 ], [ 74.179688, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 15.961329 ], [ 73.476562, 15.961329 ], [ 73.476562, 16.636192 ], [ 73.125000, 16.636192 ], [ 73.125000, 17.308688 ], [ 72.773438, 17.308688 ], [ 72.773438, 20.961440 ], [ 72.421875, 20.961440 ], [ 72.421875, 21.289374 ], [ 71.718750, 21.289374 ], [ 71.718750, 20.961440 ], [ 69.960938, 20.961440 ], [ 69.960938, 21.289374 ], [ 69.609375, 21.289374 ], [ 69.609375, 21.616579 ], [ 69.257812, 21.616579 ], [ 69.257812, 21.943046 ], [ 68.906250, 21.943046 ], [ 68.906250, 22.268764 ], [ 69.609375, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.257812, 22.593726 ], [ 69.257812, 22.917923 ], [ 68.906250, 22.917923 ], [ 68.906250, 23.241346 ], [ 68.203125, 23.241346 ], [ 68.203125, 23.563987 ], [ 67.851562, 23.563987 ], [ 67.851562, 23.885838 ], [ 68.203125, 23.885838 ], [ 68.203125, 24.206890 ], [ 68.554688, 24.206890 ], [ 68.554688, 24.527135 ], [ 71.015625, 24.527135 ], [ 71.015625, 24.846565 ], [ 70.664062, 24.846565 ], [ 70.664062, 25.482951 ], [ 69.960938, 25.482951 ], [ 69.960938, 26.745610 ], [ 69.257812, 26.745610 ], [ 69.257812, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.994401 ], [ 72.070312, 27.994401 ], [ 72.070312, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 30.145127 ], [ 73.476562, 30.145127 ], [ 73.476562, 30.448674 ], [ 73.828125, 30.448674 ], [ 73.828125, 30.751278 ], [ 74.179688, 30.751278 ], [ 74.179688, 31.952162 ], [ 74.531250, 31.952162 ], [ 74.531250, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 32.842674 ], [ 74.179688, 32.842674 ], [ 74.179688, 33.137551 ], [ 73.828125, 33.137551 ], [ 73.828125, 34.016242 ], [ 73.476562, 34.016242 ], [ 73.476562, 34.597042 ], [ 74.179688, 34.597042 ], [ 74.179688, 34.885931 ], [ 74.531250, 34.885931 ], [ 74.531250, 34.597042 ], [ 76.289062, 34.597042 ], [ 76.289062, 34.885931 ], [ 76.992188, 34.885931 ], [ 76.992188, 35.173808 ], [ 77.343750, 35.173808 ], [ 77.343750, 35.460670 ], [ 78.046875, 35.460670 ] ] ], [ [ [ 91.757812, 24.206890 ], [ 91.757812, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 91.757812, 24.206890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.507812, 9.449062 ], [ 80.507812, 9.102097 ], [ 80.859375, 9.102097 ], [ 80.859375, 8.754795 ], [ 81.210938, 8.754795 ], [ 81.210938, 8.059230 ], [ 81.562500, 8.059230 ], [ 81.562500, 7.362467 ], [ 81.914062, 7.362467 ], [ 81.914062, 6.664608 ], [ 81.562500, 6.664608 ], [ 81.562500, 6.315299 ], [ 81.210938, 6.315299 ], [ 81.210938, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.804688, 6.315299 ], [ 79.804688, 8.754795 ], [ 80.156250, 8.754795 ], [ 80.156250, 9.449062 ], [ 80.507812, 9.449062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.795678 ], [ 80.156250, 9.449062 ], [ 80.507812, 9.449062 ], [ 80.507812, 9.102097 ], [ 80.859375, 9.102097 ], [ 80.859375, 8.754795 ], [ 81.210938, 8.754795 ], [ 81.210938, 8.059230 ], [ 81.562500, 8.059230 ], [ 81.562500, 6.315299 ], [ 80.859375, 6.315299 ], [ 80.859375, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.804688, 6.315299 ], [ 79.804688, 7.710992 ], [ 79.453125, 7.710992 ], [ 79.453125, 9.102097 ], [ 79.804688, 9.102097 ], [ 79.804688, 9.795678 ], [ 80.156250, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.513427 ], [ 91.757812, 45.089036 ], [ 91.054688, 45.089036 ], [ 91.054688, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 46.316584 ], [ 91.054688, 46.316584 ], [ 91.054688, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 48.458352 ], [ 87.890625, 48.458352 ], [ 87.890625, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.610710 ], [ 89.648438, 49.610710 ], [ 89.648438, 49.837982 ], [ 90.351562, 49.837982 ], [ 90.351562, 50.064192 ], [ 90.703125, 50.064192 ], [ 90.703125, 50.289339 ], [ 91.054688, 50.289339 ], [ 91.054688, 50.513427 ], [ 91.757812, 50.513427 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.736455 ], [ 91.757812, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.351562, 45.583290 ], [ 90.351562, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 47.040182 ], [ 90.351562, 47.040182 ], [ 90.351562, 47.517201 ], [ 90.000000, 47.517201 ], [ 90.000000, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 48.458352 ], [ 87.890625, 48.458352 ], [ 87.890625, 48.922499 ], [ 87.539062, 48.922499 ], [ 87.539062, 49.382373 ], [ 88.242188, 49.382373 ], [ 88.242188, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 50.064192 ], [ 90.000000, 50.064192 ], [ 90.000000, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.513427 ], [ 91.406250, 50.513427 ], [ 91.406250, 50.736455 ], [ 91.757812, 50.736455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 27.994401 ], [ 91.406250, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 26.745610 ], [ 88.945312, 26.745610 ], [ 88.945312, 27.371767 ], [ 89.296875, 27.371767 ], [ 89.296875, 27.683528 ], [ 89.648438, 27.683528 ], [ 89.648438, 27.994401 ], [ 91.406250, 27.994401 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.054688, 28.304381 ], [ 91.054688, 27.994401 ], [ 91.757812, 27.994401 ], [ 91.757812, 27.059126 ], [ 90.351562, 27.059126 ], [ 90.351562, 26.745610 ], [ 89.296875, 26.745610 ], [ 89.296875, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 28.304381 ], [ 91.054688, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.945312, 21.943046 ], [ 88.945312, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 24.846565 ], [ 88.945312, 24.846565 ], [ 88.945312, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 26.115986 ], [ 90.000000, 26.115986 ], [ 90.000000, 25.165173 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 22.917923 ] ] ], [ [ [ 91.406250, 22.917923 ], [ 91.757812, 22.917923 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.945312, 26.431228 ], [ 88.945312, 26.115986 ], [ 89.648438, 26.115986 ], [ 89.648438, 25.482951 ], [ 90.000000, 25.482951 ], [ 90.000000, 25.165173 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.757812, 23.241346 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.268764 ], [ 90.000000, 22.268764 ], [ 90.000000, 21.943046 ], [ 89.296875, 21.943046 ], [ 89.296875, 22.268764 ], [ 88.945312, 22.268764 ], [ 88.945312, 22.593726 ], [ 88.593750, 22.593726 ], [ 88.593750, 23.241346 ], [ 88.242188, 23.241346 ], [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ], [ 88.593750, 24.527135 ], [ 87.890625, 24.527135 ], [ 87.890625, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 87.890625, 25.482951 ], [ 87.890625, 26.115986 ], [ 88.242188, 26.115986 ], [ 88.242188, 26.431228 ], [ 88.945312, 26.431228 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.890625, 49.152970 ], [ 87.890625, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.351562, 47.754098 ], [ 90.351562, 47.517201 ], [ 90.703125, 47.517201 ], [ 90.703125, 47.040182 ], [ 91.054688, 47.040182 ], [ 91.054688, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.583290 ], [ 91.054688, 45.583290 ], [ 91.054688, 45.089036 ], [ 91.757812, 45.089036 ], [ 91.757812, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 27.994401 ], [ 86.132812, 27.994401 ], [ 86.132812, 28.304381 ], [ 85.078125, 28.304381 ], [ 85.078125, 28.613459 ], [ 84.375000, 28.613459 ], [ 84.375000, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.320312, 29.228890 ], [ 83.320312, 29.535230 ], [ 82.968750, 29.535230 ], [ 82.968750, 29.840644 ], [ 82.265625, 29.840644 ], [ 82.265625, 30.145127 ], [ 80.507812, 30.145127 ], [ 80.507812, 30.448674 ], [ 79.804688, 30.448674 ], [ 79.804688, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 31.052934 ], [ 79.101562, 31.052934 ], [ 79.101562, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.952162 ], [ 78.398438, 31.952162 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 33.137551 ], [ 78.750000, 33.137551 ], [ 78.750000, 34.307144 ], [ 78.398438, 34.307144 ], [ 78.398438, 34.885931 ], [ 78.046875, 34.885931 ], [ 78.046875, 35.173808 ], [ 77.695312, 35.173808 ], [ 77.695312, 35.460670 ], [ 76.992188, 35.460670 ], [ 76.992188, 35.746512 ], [ 76.289062, 35.746512 ], [ 76.289062, 36.315125 ], [ 75.937500, 36.315125 ], [ 75.937500, 36.597889 ], [ 75.585938, 36.597889 ], [ 75.585938, 36.879621 ], [ 75.234375, 36.879621 ], [ 75.234375, 37.160317 ], [ 74.882812, 37.160317 ], [ 74.882812, 38.272689 ], [ 74.179688, 38.272689 ], [ 74.179688, 38.548165 ], [ 73.828125, 38.548165 ], [ 73.828125, 39.909736 ], [ 74.179688, 39.909736 ], [ 74.179688, 40.178873 ], [ 74.882812, 40.178873 ], [ 74.882812, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.992188, 40.713956 ], [ 76.992188, 40.979898 ], [ 77.695312, 40.979898 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 79.101562, 41.508577 ], [ 79.101562, 41.771312 ], [ 79.804688, 41.771312 ], [ 79.804688, 42.032974 ], [ 80.156250, 42.032974 ], [ 80.156250, 42.811522 ], [ 80.859375, 42.811522 ], [ 80.859375, 43.325178 ], [ 80.507812, 43.325178 ], [ 80.507812, 43.834527 ], [ 80.156250, 43.834527 ], [ 80.156250, 44.339565 ], [ 79.804688, 44.339565 ], [ 79.804688, 44.840291 ], [ 80.507812, 44.840291 ], [ 80.507812, 45.089036 ], [ 81.562500, 45.089036 ], [ 81.562500, 45.336702 ], [ 82.617188, 45.336702 ], [ 82.617188, 45.828799 ], [ 82.968750, 45.828799 ], [ 82.968750, 46.800059 ], [ 83.320312, 46.800059 ], [ 83.320312, 47.279229 ], [ 84.023438, 47.279229 ], [ 84.023438, 47.040182 ], [ 85.429688, 47.040182 ], [ 85.429688, 47.279229 ], [ 85.781250, 47.279229 ], [ 85.781250, 48.458352 ], [ 86.835938, 48.458352 ], [ 86.835938, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.152970 ], [ 87.890625, 49.152970 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.539062, 49.382373 ], [ 87.539062, 48.922499 ], [ 87.890625, 48.922499 ], [ 87.890625, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 46.316584 ], [ 90.351562, 46.316584 ], [ 90.351562, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 91.757812, 45.336702 ], [ 91.757812, 27.994401 ], [ 91.054688, 27.994401 ], [ 91.054688, 28.304381 ], [ 89.296875, 28.304381 ], [ 89.296875, 27.994401 ], [ 88.945312, 27.994401 ], [ 88.945312, 27.371767 ], [ 88.593750, 27.371767 ], [ 88.593750, 27.994401 ], [ 86.132812, 27.994401 ], [ 86.132812, 28.304381 ], [ 85.429688, 28.304381 ], [ 85.429688, 28.613459 ], [ 84.726562, 28.613459 ], [ 84.726562, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.671875, 29.228890 ], [ 83.671875, 29.535230 ], [ 82.968750, 29.535230 ], [ 82.968750, 29.840644 ], [ 82.265625, 29.840644 ], [ 82.265625, 30.145127 ], [ 81.562500, 30.145127 ], [ 81.562500, 30.448674 ], [ 80.156250, 30.448674 ], [ 80.156250, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 31.052934 ], [ 79.101562, 31.052934 ], [ 79.101562, 31.353637 ], [ 78.398438, 31.353637 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 33.431441 ], [ 78.750000, 33.431441 ], [ 78.750000, 34.597042 ], [ 78.398438, 34.597042 ], [ 78.398438, 35.173808 ], [ 78.046875, 35.173808 ], [ 78.046875, 35.460670 ], [ 77.695312, 35.460670 ], [ 77.695312, 35.746512 ], [ 76.640625, 35.746512 ], [ 76.640625, 36.031332 ], [ 75.937500, 36.031332 ], [ 75.937500, 36.315125 ], [ 75.585938, 36.315125 ], [ 75.585938, 36.879621 ], [ 74.882812, 36.879621 ], [ 74.882812, 37.718590 ], [ 74.531250, 37.718590 ], [ 74.531250, 38.548165 ], [ 73.828125, 38.548165 ], [ 73.828125, 39.095963 ], [ 73.476562, 39.095963 ], [ 73.476562, 39.639538 ], [ 73.828125, 39.639538 ], [ 73.828125, 40.178873 ], [ 74.531250, 40.178873 ], [ 74.531250, 40.446947 ], [ 75.234375, 40.446947 ], [ 75.234375, 40.713956 ], [ 75.585938, 40.713956 ], [ 75.585938, 40.446947 ], [ 76.289062, 40.446947 ], [ 76.289062, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 41.244772 ], [ 78.046875, 41.244772 ], [ 78.046875, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.771312 ], [ 79.101562, 41.771312 ], [ 79.101562, 42.032974 ], [ 79.804688, 42.032974 ], [ 79.804688, 42.293564 ], [ 80.156250, 42.293564 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.580391 ], [ 80.507812, 43.580391 ], [ 80.507812, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 44.590467 ], [ 79.804688, 44.590467 ], [ 79.804688, 45.089036 ], [ 81.210938, 45.089036 ], [ 81.210938, 45.336702 ], [ 82.265625, 45.336702 ], [ 82.265625, 46.073231 ], [ 82.617188, 46.073231 ], [ 82.617188, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 47.517201 ], [ 83.320312, 47.517201 ], [ 83.320312, 47.279229 ], [ 84.375000, 47.279229 ], [ 84.375000, 47.040182 ], [ 85.078125, 47.040182 ], [ 85.078125, 47.279229 ], [ 85.429688, 47.279229 ], [ 85.429688, 48.458352 ], [ 86.132812, 48.458352 ], [ 86.132812, 48.690960 ], [ 86.835938, 48.690960 ], [ 86.835938, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 49.382373 ], [ 87.539062, 49.382373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.108899 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.054628 ], [ 14.414062, 1.054628 ], [ 14.414062, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, -0.351560 ], [ 14.062500, -0.351560 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -1.757537 ], [ 9.140625, -1.757537 ], [ 9.140625, -1.406109 ], [ 8.789062, -1.406109 ], [ 8.789062, -0.703107 ], [ 9.140625, -0.703107 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.108899 ], [ 13.007812, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.460181 ], [ 13.007812, 2.108899 ], [ 12.656250, 2.108899 ], [ 12.656250, 1.757537 ], [ 13.007812, 1.757537 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 0.703107 ], [ 13.710938, 0.703107 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, -1.757537 ], [ 9.140625, -1.757537 ], [ 9.140625, -1.406109 ], [ 8.789062, -1.406109 ], [ 8.789062, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.460181 ], [ 13.007812, 2.460181 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 2.460181 ], [ 17.929688, 2.460181 ], [ 17.929688, 0.000000 ], [ 17.578125, 0.000000 ], [ 17.578125, -1.054628 ], [ 16.875000, -1.054628 ], [ 16.875000, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -1.757537 ], [ 14.414062, -1.757537 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, -0.351560 ], [ 13.710938, -0.351560 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, 0.703107 ], [ 14.414062, 0.703107 ], [ 14.414062, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 2.108899 ], [ 15.117188, 2.108899 ], [ 15.117188, 1.757537 ], [ 16.171875, 1.757537 ], [ 16.171875, 2.460181 ], [ 16.523438, 2.460181 ], [ 16.523438, 3.162456 ], [ 16.875000, 3.162456 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 3.864255 ], [ 17.578125, 3.513421 ], [ 18.281250, 3.513421 ], [ 18.281250, 2.811371 ], [ 17.929688, 2.811371 ], [ 17.929688, 2.108899 ], [ 17.578125, 2.108899 ], [ 17.578125, -0.703107 ], [ 17.226562, -0.703107 ], [ 17.226562, -1.054628 ], [ 16.523438, -1.054628 ], [ 16.523438, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -1.757537 ], [ 14.062500, -1.757537 ], [ 14.062500, -1.406109 ], [ 14.414062, -1.406109 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 1.757537 ], [ 12.656250, 1.757537 ], [ 12.656250, 2.108899 ], [ 13.007812, 2.108899 ], [ 13.007812, 2.460181 ], [ 14.414062, 2.460181 ], [ 14.414062, 2.108899 ], [ 15.117188, 2.108899 ], [ 15.117188, 1.757537 ], [ 15.820312, 1.757537 ], [ 15.820312, 2.460181 ], [ 16.171875, 2.460181 ], [ 16.171875, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.864255 ], [ 17.578125, 3.864255 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 5.266008 ], [ 27.421875, 4.915833 ], [ 27.773438, 4.915833 ], [ 27.773438, 4.565474 ], [ 28.125000, 4.565474 ], [ 28.125000, 4.214943 ], [ 29.882812, 4.214943 ], [ 29.882812, 3.864255 ], [ 30.585938, 3.864255 ], [ 30.585938, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 2.108899 ], [ 31.289062, 2.108899 ], [ 31.289062, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.703107 ], [ 29.531250, -0.703107 ], [ 29.531250, -1.757537 ], [ 16.523438, -1.757537 ], [ 16.523438, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.054628 ], [ 17.578125, -1.054628 ], [ 17.578125, 0.000000 ], [ 17.929688, 0.000000 ], [ 17.929688, 2.460181 ], [ 18.281250, 2.460181 ], [ 18.281250, 3.864255 ], [ 18.632812, 3.864255 ], [ 18.632812, 4.214943 ], [ 18.984375, 4.214943 ], [ 18.984375, 4.565474 ], [ 19.335938, 4.565474 ], [ 19.335938, 4.915833 ], [ 19.687500, 4.915833 ], [ 19.687500, 4.565474 ], [ 20.390625, 4.565474 ], [ 20.390625, 4.214943 ], [ 21.796875, 4.214943 ], [ 21.796875, 3.864255 ], [ 22.500000, 3.864255 ], [ 22.500000, 4.214943 ], [ 22.851562, 4.214943 ], [ 22.851562, 4.565474 ], [ 23.554688, 4.565474 ], [ 23.554688, 4.915833 ], [ 25.312500, 4.915833 ], [ 25.312500, 5.266008 ], [ 27.421875, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 5.266008 ], [ 27.070312, 4.915833 ], [ 27.421875, 4.915833 ], [ 27.421875, 4.565474 ], [ 29.882812, 4.565474 ], [ 29.882812, 3.864255 ], [ 30.234375, 3.864255 ], [ 30.234375, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 2.460181 ], [ 30.937500, 2.460181 ], [ 30.937500, 2.108899 ], [ 30.585938, 2.108899 ], [ 30.585938, 1.757537 ], [ 30.234375, 1.757537 ], [ 30.234375, 1.406109 ], [ 29.882812, 1.406109 ], [ 29.882812, 1.054628 ], [ 29.531250, 1.054628 ], [ 29.531250, -1.406109 ], [ 29.179688, -1.406109 ], [ 29.179688, -1.757537 ], [ 16.171875, -1.757537 ], [ 16.171875, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -1.054628 ], [ 17.226562, -1.054628 ], [ 17.226562, -0.703107 ], [ 17.578125, -0.703107 ], [ 17.578125, 2.108899 ], [ 17.929688, 2.108899 ], [ 17.929688, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 4.565474 ], [ 18.632812, 4.565474 ], [ 18.632812, 4.915833 ], [ 20.039062, 4.915833 ], [ 20.039062, 4.565474 ], [ 21.445312, 4.565474 ], [ 21.445312, 4.214943 ], [ 22.148438, 4.214943 ], [ 22.148438, 4.565474 ], [ 22.500000, 4.565474 ], [ 22.500000, 4.915833 ], [ 23.906250, 4.915833 ], [ 23.906250, 5.266008 ], [ 24.257812, 5.266008 ], [ 24.257812, 4.915833 ], [ 24.960938, 4.915833 ], [ 24.960938, 5.266008 ], [ 27.070312, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -1.757537 ], [ 29.531250, -1.757537 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -1.406109 ], [ 30.585938, -1.757537 ], [ 29.179688, -1.757537 ], [ 29.179688, -1.406109 ], [ 30.585938, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, -1.054628 ], [ 34.101562, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.757537 ], [ 30.937500, -1.757537 ], [ 30.937500, -1.406109 ], [ 30.585938, -1.406109 ], [ 30.585938, -1.054628 ], [ 34.101562, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -1.757537 ], [ 30.585938, -1.757537 ], [ 30.585938, -1.406109 ], [ 30.234375, -1.406109 ], [ 30.234375, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.343750, 69.778952 ], [ 32.343750, 69.657086 ], [ 32.695312, 69.657086 ], [ 32.695312, 69.534518 ], [ 33.046875, 69.534518 ], [ 33.046875, 69.411242 ], [ 33.398438, 69.411242 ], [ 33.398438, 69.287257 ], [ 34.101562, 69.287257 ], [ 34.101562, 69.162558 ], [ 35.507812, 69.162558 ], [ 35.507812, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.911005 ], [ 36.914062, 68.911005 ], [ 36.914062, 68.784144 ], [ 37.617188, 68.784144 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.269387 ], [ 39.023438, 68.269387 ], [ 39.023438, 68.138852 ], [ 39.726562, 68.138852 ], [ 39.726562, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.742759 ], [ 40.781250, 67.742759 ], [ 40.781250, 67.474922 ], [ 41.132812, 67.474922 ], [ 41.132812, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.429688, 66.513260 ], [ 40.429688, 66.231457 ], [ 39.726562, 66.231457 ], [ 39.726562, 66.089364 ], [ 39.023438, 66.089364 ], [ 39.023438, 65.946472 ], [ 37.617188, 65.946472 ], [ 37.617188, 66.089364 ], [ 36.914062, 66.089364 ], [ 36.914062, 66.231457 ], [ 36.210938, 66.231457 ], [ 36.210938, 66.372755 ], [ 35.507812, 66.372755 ], [ 35.507812, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 65.802776 ], [ 30.234375, 65.802776 ], [ 30.234375, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.474922 ], [ 29.882812, 67.474922 ], [ 29.882812, 67.742759 ], [ 29.531250, 67.742759 ], [ 29.531250, 67.875541 ], [ 29.179688, 67.875541 ], [ 29.179688, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 69.037142 ], [ 29.179688, 69.037142 ], [ 29.179688, 69.162558 ], [ 29.882812, 69.162558 ], [ 29.882812, 69.287257 ], [ 30.585938, 69.287257 ], [ 30.585938, 69.411242 ], [ 30.937500, 69.411242 ], [ 30.937500, 69.534518 ], [ 31.289062, 69.534518 ], [ 31.289062, 69.657086 ], [ 31.640625, 69.657086 ], [ 31.640625, 69.778952 ], [ 32.343750, 69.778952 ] ] ], [ [ [ 81.210938, 71.856229 ], [ 81.210938, 72.181804 ], [ 80.859375, 72.181804 ], [ 80.859375, 72.395706 ], [ 80.507812, 72.395706 ], [ 80.507812, 73.627789 ], [ 81.210938, 73.627789 ], [ 81.210938, 73.726595 ], [ 81.914062, 73.726595 ], [ 81.914062, 73.824820 ], [ 86.132812, 73.824820 ], [ 86.132812, 73.922469 ], [ 86.835938, 73.922469 ], [ 86.835938, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.307353 ], [ 86.132812, 74.307353 ], [ 86.132812, 74.590108 ], [ 86.484375, 74.590108 ], [ 86.484375, 74.775843 ], [ 86.835938, 74.775843 ], [ 86.835938, 74.959392 ], [ 87.187500, 74.959392 ], [ 87.187500, 75.140778 ], [ 88.593750, 75.140778 ], [ 88.593750, 75.230667 ], [ 88.945312, 75.230667 ], [ 88.945312, 75.320025 ], [ 89.296875, 75.320025 ], [ 89.296875, 75.408854 ], [ 89.648438, 75.408854 ], [ 89.648438, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.584937 ], [ 90.351562, 75.584937 ], [ 90.351562, 75.672197 ], [ 91.406250, 75.672197 ], [ 91.406250, 75.758940 ], [ 91.757812, 75.758940 ], [ 91.757812, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.089364 ], [ 41.484375, 66.089364 ], [ 41.484375, 66.231457 ], [ 41.835938, 66.231457 ], [ 41.835938, 66.372755 ], [ 42.890625, 66.372755 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.231457 ], [ 44.296875, 66.231457 ], [ 44.296875, 66.513260 ], [ 44.648438, 66.513260 ], [ 44.648438, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 43.593750, 67.204032 ], [ 43.593750, 67.474922 ], [ 43.945312, 67.474922 ], [ 43.945312, 67.742759 ], [ 44.296875, 67.742759 ], [ 44.296875, 68.138852 ], [ 43.945312, 68.138852 ], [ 43.945312, 68.399180 ], [ 45.351562, 68.399180 ], [ 45.351562, 68.269387 ], [ 46.406250, 68.269387 ], [ 46.406250, 68.007571 ], [ 46.757812, 68.007571 ], [ 46.757812, 67.742759 ], [ 46.406250, 67.742759 ], [ 46.406250, 67.609221 ], [ 45.703125, 67.609221 ], [ 45.703125, 66.930060 ], [ 46.054688, 66.930060 ], [ 46.054688, 66.652977 ], [ 47.109375, 66.652977 ], [ 47.109375, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.204032 ], [ 48.164062, 67.204032 ], [ 48.164062, 67.474922 ], [ 48.515625, 67.474922 ], [ 48.515625, 67.609221 ], [ 49.218750, 67.609221 ], [ 49.218750, 67.742759 ], [ 49.570312, 67.742759 ], [ 49.570312, 67.875541 ], [ 50.273438, 67.875541 ], [ 50.273438, 68.007571 ], [ 50.625000, 68.007571 ], [ 50.625000, 68.138852 ], [ 51.328125, 68.138852 ], [ 51.328125, 68.269387 ], [ 51.679688, 68.269387 ], [ 51.679688, 68.399180 ], [ 52.382812, 68.399180 ], [ 52.382812, 68.528235 ], [ 52.734375, 68.528235 ], [ 52.734375, 68.656555 ], [ 53.085938, 68.656555 ], [ 53.085938, 68.784144 ], [ 54.492188, 68.784144 ], [ 54.492188, 68.656555 ], [ 54.140625, 68.656555 ], [ 54.140625, 68.399180 ], [ 53.789062, 68.399180 ], [ 53.789062, 68.138852 ], [ 55.195312, 68.138852 ], [ 55.195312, 68.269387 ], [ 55.546875, 68.269387 ], [ 55.546875, 68.399180 ], [ 56.601562, 68.399180 ], [ 56.601562, 68.528235 ], [ 57.656250, 68.528235 ], [ 57.656250, 68.656555 ], [ 58.359375, 68.656555 ], [ 58.359375, 68.784144 ], [ 59.062500, 68.784144 ], [ 59.062500, 68.656555 ], [ 59.414062, 68.656555 ], [ 59.414062, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.269387 ], [ 60.468750, 68.269387 ], [ 60.468750, 68.528235 ], [ 60.820312, 68.528235 ], [ 60.820312, 68.784144 ], [ 61.171875, 68.784144 ], [ 61.171875, 68.911005 ], [ 60.820312, 68.911005 ], [ 60.820312, 69.162558 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.411242 ], [ 60.117188, 69.411242 ], [ 60.117188, 69.657086 ], [ 60.468750, 69.657086 ], [ 60.468750, 69.900118 ], [ 60.820312, 69.900118 ], [ 60.820312, 69.778952 ], [ 61.875000, 69.778952 ], [ 61.875000, 69.657086 ], [ 62.929688, 69.657086 ], [ 62.929688, 69.534518 ], [ 63.632812, 69.534518 ], [ 63.632812, 69.411242 ], [ 64.335938, 69.411242 ], [ 64.335938, 69.287257 ], [ 65.039062, 69.287257 ], [ 65.039062, 69.162558 ], [ 65.390625, 69.162558 ], [ 65.390625, 69.037142 ], [ 65.742188, 69.037142 ], [ 65.742188, 68.911005 ], [ 66.093750, 68.911005 ], [ 66.093750, 68.784144 ], [ 66.445312, 68.784144 ], [ 66.445312, 68.656555 ], [ 67.148438, 68.656555 ], [ 67.148438, 68.528235 ], [ 67.500000, 68.528235 ], [ 67.500000, 68.399180 ], [ 67.851562, 68.399180 ], [ 67.851562, 68.269387 ], [ 68.203125, 68.269387 ], [ 68.203125, 68.138852 ], [ 68.554688, 68.138852 ], [ 68.554688, 68.269387 ], [ 68.906250, 68.269387 ], [ 68.906250, 68.528235 ], [ 69.257812, 68.528235 ], [ 69.257812, 68.656555 ], [ 68.906250, 68.656555 ], [ 68.906250, 68.911005 ], [ 68.554688, 68.911005 ], [ 68.554688, 69.037142 ], [ 68.203125, 69.037142 ], [ 68.203125, 69.411242 ], [ 66.796875, 69.411242 ], [ 66.796875, 69.657086 ], [ 67.148438, 69.657086 ], [ 67.148438, 70.259452 ], [ 66.796875, 70.259452 ], [ 66.796875, 71.074056 ], [ 67.148438, 71.074056 ], [ 67.148438, 71.300793 ], [ 67.500000, 71.300793 ], [ 67.500000, 71.524909 ], [ 67.851562, 71.524909 ], [ 67.851562, 71.635993 ], [ 68.203125, 71.635993 ], [ 68.203125, 71.856229 ], [ 68.554688, 71.856229 ], [ 68.554688, 72.181804 ], [ 68.906250, 72.181804 ], [ 68.906250, 72.607120 ], [ 69.257812, 72.607120 ], [ 69.257812, 72.816074 ], [ 69.609375, 72.816074 ], [ 69.609375, 72.919635 ], [ 69.960938, 72.919635 ], [ 69.960938, 73.022592 ], [ 70.312500, 73.022592 ], [ 70.312500, 72.919635 ], [ 71.718750, 72.919635 ], [ 71.718750, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.501722 ], [ 72.773438, 72.501722 ], [ 72.773438, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.746432 ], [ 72.070312, 71.746432 ], [ 72.070312, 71.524909 ], [ 71.718750, 71.524909 ], [ 71.718750, 71.300793 ], [ 72.070312, 71.300793 ], [ 72.070312, 71.074056 ], [ 72.421875, 71.074056 ], [ 72.421875, 70.728979 ], [ 72.773438, 70.728979 ], [ 72.773438, 69.657086 ], [ 72.421875, 69.657086 ], [ 72.421875, 68.911005 ], [ 72.773438, 68.911005 ], [ 72.773438, 68.784144 ], [ 73.125000, 68.784144 ], [ 73.125000, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.399180 ], [ 73.828125, 68.399180 ], [ 73.828125, 68.138852 ], [ 73.476562, 68.138852 ], [ 73.476562, 67.875541 ], [ 73.125000, 67.875541 ], [ 73.125000, 67.609221 ], [ 72.773438, 67.609221 ], [ 72.773438, 67.339861 ], [ 72.421875, 67.339861 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.372755 ], [ 71.718750, 66.372755 ], [ 71.718750, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 73.125000, 66.513260 ], [ 73.125000, 66.652977 ], [ 73.828125, 66.652977 ], [ 73.828125, 67.067433 ], [ 74.179688, 67.067433 ], [ 74.179688, 67.339861 ], [ 74.531250, 67.339861 ], [ 74.531250, 67.609221 ], [ 74.882812, 67.609221 ], [ 74.882812, 68.007571 ], [ 74.531250, 68.007571 ], [ 74.531250, 68.656555 ], [ 74.882812, 68.656555 ], [ 74.882812, 69.037142 ], [ 73.828125, 69.037142 ], [ 73.828125, 69.287257 ], [ 73.476562, 69.287257 ], [ 73.476562, 69.778952 ], [ 73.828125, 69.778952 ], [ 73.828125, 70.140364 ], [ 74.179688, 70.140364 ], [ 74.179688, 70.377854 ], [ 74.531250, 70.377854 ], [ 74.531250, 70.612614 ], [ 74.179688, 70.612614 ], [ 74.179688, 70.844673 ], [ 73.828125, 70.844673 ], [ 73.828125, 71.074056 ], [ 73.476562, 71.074056 ], [ 73.476562, 71.300793 ], [ 73.125000, 71.300793 ], [ 73.125000, 71.413177 ], [ 73.476562, 71.413177 ], [ 73.476562, 71.524909 ], [ 73.828125, 71.524909 ], [ 73.828125, 71.746432 ], [ 74.179688, 71.746432 ], [ 74.179688, 71.856229 ], [ 74.531250, 71.856229 ], [ 74.531250, 71.965388 ], [ 74.882812, 71.965388 ], [ 74.882812, 72.395706 ], [ 74.531250, 72.395706 ], [ 74.531250, 72.816074 ], [ 75.234375, 72.816074 ], [ 75.234375, 72.501722 ], [ 75.585938, 72.501722 ], [ 75.585938, 71.746432 ], [ 75.234375, 71.746432 ], [ 75.234375, 71.300793 ], [ 75.585938, 71.300793 ], [ 75.585938, 71.187754 ], [ 76.289062, 71.187754 ], [ 76.289062, 71.524909 ], [ 75.937500, 71.524909 ], [ 75.937500, 71.856229 ], [ 76.289062, 71.856229 ], [ 76.289062, 71.965388 ], [ 76.640625, 71.965388 ], [ 76.640625, 72.073911 ], [ 77.343750, 72.073911 ], [ 77.343750, 72.181804 ], [ 77.695312, 72.181804 ], [ 77.695312, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.856229 ], [ 81.210938, 71.856229 ] ], [ [ 81.210938, 71.856229 ], [ 81.210938, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 71.856229 ], [ 81.210938, 71.856229 ] ] ], [ [ [ 68.203125, 76.920614 ], [ 68.203125, 76.760541 ], [ 68.554688, 76.760541 ], [ 68.554688, 76.598545 ], [ 68.906250, 76.598545 ], [ 68.906250, 76.434604 ], [ 68.554688, 76.434604 ], [ 68.554688, 76.268695 ], [ 68.203125, 76.268695 ], [ 68.203125, 76.184995 ], [ 67.500000, 76.184995 ], [ 67.500000, 76.100796 ], [ 66.796875, 76.100796 ], [ 66.796875, 76.016094 ], [ 66.445312, 76.016094 ], [ 66.445312, 75.930885 ], [ 65.742188, 75.930885 ], [ 65.742188, 75.845169 ], [ 65.039062, 75.845169 ], [ 65.039062, 75.758940 ], [ 64.687500, 75.758940 ], [ 64.687500, 75.672197 ], [ 63.984375, 75.672197 ], [ 63.984375, 75.584937 ], [ 63.632812, 75.584937 ], [ 63.632812, 75.497157 ], [ 62.929688, 75.497157 ], [ 62.929688, 75.408854 ], [ 62.578125, 75.408854 ], [ 62.578125, 75.320025 ], [ 61.875000, 75.320025 ], [ 61.875000, 75.230667 ], [ 61.523438, 75.230667 ], [ 61.523438, 75.140778 ], [ 61.171875, 75.140778 ], [ 61.171875, 75.050354 ], [ 60.820312, 75.050354 ], [ 60.820312, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.867889 ], [ 60.117188, 74.867889 ], [ 60.117188, 74.775843 ], [ 59.765625, 74.775843 ], [ 59.765625, 74.590108 ], [ 59.414062, 74.590108 ], [ 59.414062, 74.496413 ], [ 59.062500, 74.496413 ], [ 59.062500, 74.402163 ], [ 58.710938, 74.402163 ], [ 58.710938, 74.307353 ], [ 58.359375, 74.307353 ], [ 58.359375, 74.116047 ], [ 58.007812, 74.116047 ], [ 58.007812, 73.922469 ], [ 57.656250, 73.922469 ], [ 57.656250, 73.627789 ], [ 57.304688, 73.627789 ], [ 57.304688, 73.428424 ], [ 56.953125, 73.428424 ], [ 56.953125, 73.124945 ], [ 56.601562, 73.124945 ], [ 56.601562, 72.919635 ], [ 56.250000, 72.919635 ], [ 56.250000, 72.711903 ], [ 55.898438, 72.711903 ], [ 55.898438, 72.501722 ], [ 55.546875, 72.501722 ], [ 55.546875, 71.413177 ], [ 55.898438, 71.413177 ], [ 55.898438, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.187754 ], [ 56.601562, 71.187754 ], [ 56.601562, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.844673 ], [ 57.304688, 70.844673 ], [ 57.304688, 70.728979 ], [ 57.656250, 70.728979 ], [ 57.656250, 70.612614 ], [ 55.195312, 70.612614 ], [ 55.195312, 70.728979 ], [ 53.789062, 70.728979 ], [ 53.789062, 70.959697 ], [ 53.437500, 70.959697 ], [ 53.437500, 71.187754 ], [ 53.085938, 71.187754 ], [ 53.085938, 71.300793 ], [ 52.382812, 71.300793 ], [ 52.382812, 71.413177 ], [ 51.679688, 71.413177 ], [ 51.679688, 71.746432 ], [ 51.328125, 71.746432 ], [ 51.328125, 71.965388 ], [ 51.679688, 71.965388 ], [ 51.679688, 72.073911 ], [ 52.382812, 72.073911 ], [ 52.382812, 72.816074 ], [ 52.734375, 72.816074 ], [ 52.734375, 73.022592 ], [ 53.085938, 73.022592 ], [ 53.085938, 73.124945 ], [ 53.437500, 73.124945 ], [ 53.437500, 73.226700 ], [ 53.789062, 73.226700 ], [ 53.789062, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.528399 ], [ 54.492188, 73.528399 ], [ 54.492188, 73.627789 ], [ 53.789062, 73.627789 ], [ 53.789062, 73.824820 ], [ 54.140625, 73.824820 ], [ 54.140625, 74.019543 ], [ 54.492188, 74.019543 ], [ 54.492188, 74.116047 ], [ 54.843750, 74.116047 ], [ 54.843750, 74.211983 ], [ 55.195312, 74.211983 ], [ 55.195312, 74.402163 ], [ 55.546875, 74.402163 ], [ 55.546875, 74.496413 ], [ 55.898438, 74.496413 ], [ 55.898438, 74.775843 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.050354 ], [ 55.898438, 75.050354 ], [ 55.898438, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.230667 ], [ 56.601562, 75.230667 ], [ 56.601562, 75.320025 ], [ 57.304688, 75.320025 ], [ 57.304688, 75.408854 ], [ 57.656250, 75.408854 ], [ 57.656250, 75.497157 ], [ 58.007812, 75.497157 ], [ 58.007812, 75.584937 ], [ 58.359375, 75.584937 ], [ 58.359375, 75.672197 ], [ 58.710938, 75.672197 ], [ 58.710938, 75.758940 ], [ 59.062500, 75.758940 ], [ 59.062500, 75.845169 ], [ 59.414062, 75.845169 ], [ 59.414062, 75.930885 ], [ 60.117188, 75.930885 ], [ 60.117188, 76.016094 ], [ 60.468750, 76.016094 ], [ 60.468750, 76.100796 ], [ 60.820312, 76.100796 ], [ 60.820312, 76.184995 ], [ 61.171875, 76.184995 ], [ 61.171875, 76.268695 ], [ 62.226562, 76.268695 ], [ 62.226562, 76.351896 ], [ 63.632812, 76.351896 ], [ 63.632812, 76.434604 ], [ 64.687500, 76.434604 ], [ 64.687500, 76.516819 ], [ 65.039062, 76.516819 ], [ 65.039062, 76.598545 ], [ 65.390625, 76.598545 ], [ 65.390625, 76.679785 ], [ 65.742188, 76.679785 ], [ 65.742188, 76.760541 ], [ 66.093750, 76.760541 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ], [ 67.500000, 76.920614 ], [ 68.203125, 76.920614 ] ] ], [ [ [ 50.273438, 80.872827 ], [ 50.273438, 80.816891 ], [ 50.976562, 80.816891 ], [ 50.976562, 80.760615 ], [ 51.328125, 80.760615 ], [ 51.328125, 80.703997 ], [ 51.679688, 80.703997 ], [ 51.679688, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.532071 ], [ 50.976562, 80.532071 ], [ 50.976562, 80.474065 ], [ 50.273438, 80.474065 ], [ 50.273438, 80.415707 ], [ 49.570312, 80.415707 ], [ 49.570312, 80.356995 ], [ 48.867188, 80.356995 ], [ 48.867188, 80.118564 ], [ 48.515625, 80.118564 ], [ 48.515625, 80.058050 ], [ 47.812500, 80.058050 ], [ 47.812500, 79.997168 ], [ 47.109375, 79.997168 ], [ 47.109375, 80.118564 ], [ 46.757812, 80.118564 ], [ 46.757812, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.297927 ], [ 46.757812, 80.297927 ], [ 46.757812, 80.415707 ], [ 47.109375, 80.415707 ], [ 47.109375, 80.532071 ], [ 45.703125, 80.532071 ], [ 45.703125, 80.589727 ], [ 45.351562, 80.589727 ], [ 45.351562, 80.647035 ], [ 46.054688, 80.647035 ], [ 46.054688, 80.703997 ], [ 46.757812, 80.703997 ], [ 46.757812, 80.760615 ], [ 48.164062, 80.760615 ], [ 48.164062, 80.647035 ], [ 48.515625, 80.647035 ], [ 48.515625, 80.589727 ], [ 48.867188, 80.589727 ], [ 48.867188, 80.703997 ], [ 49.218750, 80.703997 ], [ 49.218750, 80.760615 ], [ 49.570312, 80.760615 ], [ 49.570312, 80.872827 ], [ 50.273438, 80.872827 ] ] ], [ [ [ 91.757812, 80.415707 ], [ 91.757812, 80.238501 ], [ 91.406250, 80.238501 ], [ 91.406250, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.415707 ], [ 91.757812, 80.415707 ] ] ], [ [ [ 43.945312, 68.399180 ], [ 43.593750, 68.399180 ], [ 43.593750, 68.528235 ], [ 43.945312, 68.528235 ], [ 43.945312, 68.399180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.343750, 69.900118 ], [ 32.343750, 69.778952 ], [ 32.695312, 69.778952 ], [ 32.695312, 69.657086 ], [ 33.046875, 69.657086 ], [ 33.046875, 69.534518 ], [ 33.398438, 69.534518 ], [ 33.398438, 69.411242 ], [ 34.101562, 69.411242 ], [ 34.101562, 69.287257 ], [ 35.507812, 69.287257 ], [ 35.507812, 69.162558 ], [ 36.210938, 69.162558 ], [ 36.210938, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.911005 ], [ 37.265625, 68.911005 ], [ 37.265625, 68.784144 ], [ 37.617188, 68.784144 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.269387 ], [ 39.375000, 68.269387 ], [ 39.375000, 68.138852 ], [ 39.726562, 68.138852 ], [ 39.726562, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.609221 ], [ 40.781250, 67.609221 ], [ 40.781250, 66.652977 ], [ 40.429688, 66.652977 ], [ 40.429688, 66.513260 ], [ 40.078125, 66.513260 ], [ 40.078125, 66.372755 ], [ 39.726562, 66.372755 ], [ 39.726562, 66.231457 ], [ 39.023438, 66.231457 ], [ 39.023438, 66.089364 ], [ 37.617188, 66.089364 ], [ 37.617188, 66.231457 ], [ 36.914062, 66.231457 ], [ 36.914062, 66.372755 ], [ 35.859375, 66.372755 ], [ 35.859375, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 65.802776 ], [ 29.882812, 65.802776 ], [ 29.882812, 66.089364 ], [ 29.531250, 66.089364 ], [ 29.531250, 66.513260 ], [ 29.179688, 66.513260 ], [ 29.179688, 66.791909 ], [ 28.828125, 66.791909 ], [ 28.828125, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.609221 ], [ 29.882812, 67.609221 ], [ 29.882812, 67.742759 ], [ 29.531250, 67.742759 ], [ 29.531250, 67.875541 ], [ 29.179688, 67.875541 ], [ 29.179688, 68.007571 ], [ 28.828125, 68.007571 ], [ 28.828125, 68.138852 ], [ 28.476562, 68.138852 ], [ 28.476562, 68.269387 ], [ 28.125000, 68.269387 ], [ 28.125000, 68.784144 ], [ 28.476562, 68.784144 ], [ 28.476562, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.287257 ], [ 29.882812, 69.287257 ], [ 29.882812, 69.411242 ], [ 30.585938, 69.411242 ], [ 30.585938, 69.534518 ], [ 30.937500, 69.534518 ], [ 30.937500, 69.657086 ], [ 31.289062, 69.657086 ], [ 31.289062, 69.778952 ], [ 31.640625, 69.778952 ], [ 31.640625, 69.900118 ], [ 32.343750, 69.900118 ] ] ], [ [ [ 80.859375, 71.965388 ], [ 80.859375, 72.395706 ], [ 80.507812, 72.395706 ], [ 80.507812, 73.726595 ], [ 81.210938, 73.726595 ], [ 81.210938, 73.824820 ], [ 81.914062, 73.824820 ], [ 81.914062, 73.922469 ], [ 82.968750, 73.922469 ], [ 82.968750, 73.824820 ], [ 85.078125, 73.824820 ], [ 85.078125, 73.922469 ], [ 86.132812, 73.922469 ], [ 86.132812, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.116047 ], [ 86.132812, 74.116047 ], [ 86.132812, 74.307353 ], [ 85.781250, 74.307353 ], [ 85.781250, 74.590108 ], [ 86.132812, 74.590108 ], [ 86.132812, 74.775843 ], [ 86.484375, 74.775843 ], [ 86.484375, 74.959392 ], [ 86.835938, 74.959392 ], [ 86.835938, 75.140778 ], [ 87.890625, 75.140778 ], [ 87.890625, 75.230667 ], [ 88.593750, 75.230667 ], [ 88.593750, 75.320025 ], [ 88.945312, 75.320025 ], [ 88.945312, 75.408854 ], [ 89.296875, 75.408854 ], [ 89.296875, 75.497157 ], [ 89.648438, 75.497157 ], [ 89.648438, 75.584937 ], [ 90.000000, 75.584937 ], [ 90.000000, 75.672197 ], [ 91.054688, 75.672197 ], [ 91.054688, 75.758940 ], [ 91.757812, 75.758940 ], [ 91.757812, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.231457 ], [ 41.484375, 66.231457 ], [ 41.484375, 66.372755 ], [ 41.835938, 66.372755 ], [ 41.835938, 66.513260 ], [ 42.890625, 66.513260 ], [ 42.890625, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.930060 ], [ 43.945312, 66.930060 ], [ 43.945312, 67.204032 ], [ 43.593750, 67.204032 ], [ 43.593750, 67.742759 ], [ 43.945312, 67.742759 ], [ 43.945312, 68.138852 ], [ 43.593750, 68.138852 ], [ 43.593750, 68.399180 ], [ 43.242188, 68.399180 ], [ 43.242188, 68.656555 ], [ 43.593750, 68.656555 ], [ 43.593750, 68.528235 ], [ 44.296875, 68.528235 ], [ 44.296875, 68.399180 ], [ 45.351562, 68.399180 ], [ 45.351562, 68.269387 ], [ 46.054688, 68.269387 ], [ 46.054688, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.875541 ], [ 46.757812, 67.875541 ], [ 46.757812, 67.742759 ], [ 46.406250, 67.742759 ], [ 46.406250, 67.609221 ], [ 45.351562, 67.609221 ], [ 45.351562, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.791909 ], [ 47.109375, 66.791909 ], [ 47.109375, 66.930060 ], [ 47.812500, 66.930060 ], [ 47.812500, 67.609221 ], [ 48.515625, 67.609221 ], [ 48.515625, 67.742759 ], [ 49.218750, 67.742759 ], [ 49.218750, 67.875541 ], [ 49.921875, 67.875541 ], [ 49.921875, 68.007571 ], [ 50.273438, 68.007571 ], [ 50.273438, 68.138852 ], [ 50.976562, 68.138852 ], [ 50.976562, 68.269387 ], [ 51.328125, 68.269387 ], [ 51.328125, 68.399180 ], [ 52.031250, 68.399180 ], [ 52.031250, 68.528235 ], [ 52.382812, 68.528235 ], [ 52.382812, 68.656555 ], [ 52.734375, 68.656555 ], [ 52.734375, 68.784144 ], [ 53.437500, 68.784144 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 54.140625, 68.656555 ], [ 53.789062, 68.656555 ], [ 53.789062, 68.399180 ], [ 53.437500, 68.399180 ], [ 53.437500, 68.269387 ], [ 53.789062, 68.269387 ], [ 53.789062, 68.138852 ], [ 54.843750, 68.138852 ], [ 54.843750, 68.399180 ], [ 55.195312, 68.399180 ], [ 55.195312, 68.528235 ], [ 57.656250, 68.528235 ], [ 57.656250, 68.656555 ], [ 58.359375, 68.656555 ], [ 58.359375, 68.784144 ], [ 59.062500, 68.784144 ], [ 59.062500, 68.656555 ], [ 59.414062, 68.656555 ], [ 59.414062, 68.399180 ], [ 60.117188, 68.399180 ], [ 60.117188, 68.656555 ], [ 60.468750, 68.656555 ], [ 60.468750, 68.911005 ], [ 60.820312, 68.911005 ], [ 60.820312, 69.037142 ], [ 60.468750, 69.037142 ], [ 60.468750, 69.287257 ], [ 60.117188, 69.287257 ], [ 60.117188, 69.411242 ], [ 59.765625, 69.411242 ], [ 59.765625, 69.534518 ], [ 60.117188, 69.534518 ], [ 60.117188, 69.778952 ], [ 60.468750, 69.778952 ], [ 60.468750, 69.900118 ], [ 60.820312, 69.900118 ], [ 60.820312, 69.778952 ], [ 62.226562, 69.778952 ], [ 62.226562, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.534518 ], [ 63.632812, 69.534518 ], [ 63.632812, 69.411242 ], [ 64.335938, 69.411242 ], [ 64.335938, 69.287257 ], [ 64.687500, 69.287257 ], [ 64.687500, 69.162558 ], [ 65.039062, 69.162558 ], [ 65.039062, 69.037142 ], [ 65.390625, 69.037142 ], [ 65.390625, 68.911005 ], [ 65.742188, 68.911005 ], [ 65.742188, 68.784144 ], [ 66.093750, 68.784144 ], [ 66.093750, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.528235 ], [ 67.148438, 68.528235 ], [ 67.148438, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.269387 ], [ 67.851562, 68.269387 ], [ 67.851562, 68.138852 ], [ 68.203125, 68.138852 ], [ 68.203125, 68.269387 ], [ 68.554688, 68.269387 ], [ 68.554688, 68.528235 ], [ 68.906250, 68.528235 ], [ 68.906250, 68.656555 ], [ 68.554688, 68.656555 ], [ 68.554688, 68.911005 ], [ 68.203125, 68.911005 ], [ 68.203125, 69.037142 ], [ 67.851562, 69.037142 ], [ 67.851562, 69.411242 ], [ 67.148438, 69.411242 ], [ 67.148438, 69.534518 ], [ 66.796875, 69.534518 ], [ 66.796875, 69.778952 ], [ 67.148438, 69.778952 ], [ 67.148438, 70.140364 ], [ 66.796875, 70.140364 ], [ 66.796875, 70.495574 ], [ 66.445312, 70.495574 ], [ 66.445312, 71.074056 ], [ 66.796875, 71.074056 ], [ 66.796875, 71.300793 ], [ 67.148438, 71.300793 ], [ 67.148438, 71.524909 ], [ 67.500000, 71.524909 ], [ 67.500000, 71.635993 ], [ 67.851562, 71.635993 ], [ 67.851562, 71.856229 ], [ 68.203125, 71.856229 ], [ 68.203125, 72.181804 ], [ 68.554688, 72.181804 ], [ 68.554688, 72.607120 ], [ 68.906250, 72.607120 ], [ 68.906250, 72.919635 ], [ 69.257812, 72.919635 ], [ 69.257812, 73.022592 ], [ 69.609375, 73.022592 ], [ 69.609375, 73.124945 ], [ 69.960938, 73.124945 ], [ 69.960938, 73.022592 ], [ 70.664062, 73.022592 ], [ 70.664062, 72.919635 ], [ 71.718750, 72.919635 ], [ 71.718750, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.501722 ], [ 72.773438, 72.501722 ], [ 72.773438, 72.073911 ], [ 72.421875, 72.073911 ], [ 72.421875, 71.856229 ], [ 72.070312, 71.856229 ], [ 72.070312, 71.524909 ], [ 71.718750, 71.524909 ], [ 71.718750, 71.300793 ], [ 72.070312, 71.300793 ], [ 72.070312, 71.187754 ], [ 72.421875, 71.187754 ], [ 72.421875, 70.844673 ], [ 72.773438, 70.844673 ], [ 72.773438, 69.778952 ], [ 72.421875, 69.778952 ], [ 72.421875, 68.911005 ], [ 72.773438, 68.911005 ], [ 72.773438, 68.784144 ], [ 73.125000, 68.784144 ], [ 73.125000, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.138852 ], [ 73.125000, 68.138852 ], [ 73.125000, 67.609221 ], [ 72.773438, 67.609221 ], [ 72.773438, 67.339861 ], [ 72.421875, 67.339861 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.930060 ], [ 71.718750, 66.930060 ], [ 71.718750, 66.652977 ], [ 71.367188, 66.652977 ], [ 71.367188, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.652977 ], [ 73.476562, 66.652977 ], [ 73.476562, 66.791909 ], [ 73.828125, 66.791909 ], [ 73.828125, 67.067433 ], [ 74.179688, 67.067433 ], [ 74.179688, 67.474922 ], [ 74.531250, 67.474922 ], [ 74.531250, 67.742759 ], [ 74.882812, 67.742759 ], [ 74.882812, 68.007571 ], [ 74.531250, 68.007571 ], [ 74.531250, 68.269387 ], [ 74.179688, 68.269387 ], [ 74.179688, 68.528235 ], [ 74.531250, 68.528235 ], [ 74.531250, 68.784144 ], [ 74.882812, 68.784144 ], [ 74.882812, 69.037142 ], [ 74.179688, 69.037142 ], [ 74.179688, 69.162558 ], [ 73.828125, 69.162558 ], [ 73.828125, 69.411242 ], [ 73.476562, 69.411242 ], [ 73.476562, 69.900118 ], [ 73.828125, 69.900118 ], [ 73.828125, 70.377854 ], [ 74.179688, 70.377854 ], [ 74.179688, 70.728979 ], [ 73.828125, 70.728979 ], [ 73.828125, 70.959697 ], [ 73.476562, 70.959697 ], [ 73.476562, 71.187754 ], [ 73.125000, 71.187754 ], [ 73.125000, 71.413177 ], [ 72.773438, 71.413177 ], [ 72.773438, 71.524909 ], [ 73.125000, 71.524909 ], [ 73.125000, 71.635993 ], [ 73.476562, 71.635993 ], [ 73.476562, 71.746432 ], [ 73.828125, 71.746432 ], [ 73.828125, 71.856229 ], [ 74.179688, 71.856229 ], [ 74.179688, 71.965388 ], [ 74.531250, 71.965388 ], [ 74.531250, 72.073911 ], [ 74.882812, 72.073911 ], [ 74.882812, 72.501722 ], [ 74.531250, 72.501722 ], [ 74.531250, 72.919635 ], [ 74.882812, 72.919635 ], [ 74.882812, 72.711903 ], [ 75.234375, 72.711903 ], [ 75.234375, 72.501722 ], [ 75.585938, 72.501722 ], [ 75.585938, 71.965388 ], [ 75.937500, 71.965388 ], [ 75.937500, 72.073911 ], [ 76.640625, 72.073911 ], [ 76.640625, 72.181804 ], [ 77.343750, 72.181804 ], [ 77.343750, 72.289067 ], [ 78.750000, 72.289067 ], [ 78.750000, 72.395706 ], [ 79.453125, 72.395706 ], [ 79.453125, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 71.965388 ], [ 80.859375, 71.965388 ] ], [ [ 75.937500, 71.300793 ], [ 75.937500, 71.746432 ], [ 75.585938, 71.746432 ], [ 75.585938, 71.856229 ], [ 75.234375, 71.856229 ], [ 75.234375, 71.300793 ], [ 75.937500, 71.300793 ] ], [ [ 75.937500, 71.300793 ], [ 75.937500, 71.187754 ], [ 76.289062, 71.187754 ], [ 76.289062, 71.300793 ], [ 75.937500, 71.300793 ] ], [ [ 80.859375, 71.965388 ], [ 80.859375, 71.856229 ], [ 81.210938, 71.856229 ], [ 81.210938, 71.965388 ], [ 80.859375, 71.965388 ] ] ], [ [ [ 67.851562, 76.999935 ], [ 67.851562, 76.840816 ], [ 68.203125, 76.840816 ], [ 68.203125, 76.679785 ], [ 68.554688, 76.679785 ], [ 68.554688, 76.516819 ], [ 68.203125, 76.516819 ], [ 68.203125, 76.351896 ], [ 67.851562, 76.351896 ], [ 67.851562, 76.184995 ], [ 67.148438, 76.184995 ], [ 67.148438, 76.100796 ], [ 66.445312, 76.100796 ], [ 66.445312, 76.016094 ], [ 66.093750, 76.016094 ], [ 66.093750, 75.930885 ], [ 65.390625, 75.930885 ], [ 65.390625, 75.845169 ], [ 64.687500, 75.845169 ], [ 64.687500, 75.758940 ], [ 64.335938, 75.758940 ], [ 64.335938, 75.672197 ], [ 63.632812, 75.672197 ], [ 63.632812, 75.584937 ], [ 63.281250, 75.584937 ], [ 63.281250, 75.497157 ], [ 62.578125, 75.497157 ], [ 62.578125, 75.408854 ], [ 61.875000, 75.408854 ], [ 61.875000, 75.320025 ], [ 61.523438, 75.320025 ], [ 61.523438, 75.230667 ], [ 61.171875, 75.230667 ], [ 61.171875, 75.140778 ], [ 60.820312, 75.140778 ], [ 60.820312, 75.050354 ], [ 60.468750, 75.050354 ], [ 60.468750, 74.959392 ], [ 60.117188, 74.959392 ], [ 60.117188, 74.867889 ], [ 59.765625, 74.867889 ], [ 59.765625, 74.683250 ], [ 59.414062, 74.683250 ], [ 59.414062, 74.590108 ], [ 59.062500, 74.590108 ], [ 59.062500, 74.496413 ], [ 58.710938, 74.496413 ], [ 58.710938, 74.402163 ], [ 58.359375, 74.402163 ], [ 58.359375, 74.211983 ], [ 58.007812, 74.211983 ], [ 58.007812, 74.019543 ], [ 57.656250, 74.019543 ], [ 57.656250, 73.726595 ], [ 57.304688, 73.726595 ], [ 57.304688, 73.528399 ], [ 56.953125, 73.528399 ], [ 56.953125, 73.327858 ], [ 56.601562, 73.327858 ], [ 56.601562, 73.124945 ], [ 56.250000, 73.124945 ], [ 56.250000, 72.919635 ], [ 55.898438, 72.919635 ], [ 55.898438, 72.711903 ], [ 55.546875, 72.711903 ], [ 55.546875, 72.501722 ], [ 55.195312, 72.501722 ], [ 55.195312, 71.965388 ], [ 55.546875, 71.965388 ], [ 55.546875, 71.524909 ], [ 55.898438, 71.524909 ], [ 55.898438, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.187754 ], [ 56.601562, 71.187754 ], [ 56.601562, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.728979 ], [ 54.843750, 70.728979 ], [ 54.843750, 70.844673 ], [ 53.437500, 70.844673 ], [ 53.437500, 71.074056 ], [ 53.085938, 71.074056 ], [ 53.085938, 71.300793 ], [ 52.382812, 71.300793 ], [ 52.382812, 71.413177 ], [ 51.679688, 71.413177 ], [ 51.679688, 71.524909 ], [ 51.328125, 71.524909 ], [ 51.328125, 72.073911 ], [ 51.679688, 72.073911 ], [ 51.679688, 72.181804 ], [ 52.382812, 72.181804 ], [ 52.382812, 72.816074 ], [ 52.734375, 72.816074 ], [ 52.734375, 73.022592 ], [ 53.085938, 73.022592 ], [ 53.085938, 73.226700 ], [ 53.437500, 73.226700 ], [ 53.437500, 73.327858 ], [ 53.789062, 73.327858 ], [ 53.789062, 73.528399 ], [ 54.140625, 73.528399 ], [ 54.140625, 73.627789 ], [ 53.789062, 73.627789 ], [ 53.789062, 73.726595 ], [ 53.437500, 73.726595 ], [ 53.437500, 73.824820 ], [ 53.789062, 73.824820 ], [ 53.789062, 73.922469 ], [ 54.140625, 73.922469 ], [ 54.140625, 74.116047 ], [ 54.492188, 74.116047 ], [ 54.492188, 74.211983 ], [ 54.843750, 74.211983 ], [ 54.843750, 74.307353 ], [ 55.195312, 74.307353 ], [ 55.195312, 74.496413 ], [ 55.546875, 74.496413 ], [ 55.546875, 74.590108 ], [ 55.898438, 74.590108 ], [ 55.898438, 74.867889 ], [ 55.546875, 74.867889 ], [ 55.546875, 75.140778 ], [ 55.898438, 75.140778 ], [ 55.898438, 75.230667 ], [ 56.250000, 75.230667 ], [ 56.250000, 75.320025 ], [ 56.601562, 75.320025 ], [ 56.601562, 75.408854 ], [ 56.953125, 75.408854 ], [ 56.953125, 75.497157 ], [ 57.304688, 75.497157 ], [ 57.304688, 75.584937 ], [ 57.656250, 75.584937 ], [ 57.656250, 75.672197 ], [ 58.007812, 75.672197 ], [ 58.007812, 75.758940 ], [ 58.710938, 75.758940 ], [ 58.710938, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 75.930885 ], [ 59.765625, 75.930885 ], [ 59.765625, 76.016094 ], [ 60.117188, 76.016094 ], [ 60.117188, 76.100796 ], [ 60.468750, 76.100796 ], [ 60.468750, 76.184995 ], [ 61.171875, 76.184995 ], [ 61.171875, 76.268695 ], [ 61.875000, 76.268695 ], [ 61.875000, 76.351896 ], [ 62.929688, 76.351896 ], [ 62.929688, 76.434604 ], [ 63.984375, 76.434604 ], [ 63.984375, 76.516819 ], [ 64.687500, 76.516819 ], [ 64.687500, 76.598545 ], [ 65.039062, 76.598545 ], [ 65.039062, 76.679785 ], [ 65.742188, 76.679785 ], [ 65.742188, 76.760541 ], [ 66.093750, 76.760541 ], [ 66.093750, 76.840816 ], [ 66.796875, 76.840816 ], [ 66.796875, 76.920614 ], [ 67.500000, 76.920614 ], [ 67.500000, 76.999935 ], [ 67.851562, 76.999935 ] ] ], [ [ [ 50.273438, 80.872827 ], [ 50.273438, 80.816891 ], [ 50.625000, 80.816891 ], [ 50.625000, 80.760615 ], [ 50.976562, 80.760615 ], [ 50.976562, 80.703997 ], [ 51.328125, 80.703997 ], [ 51.328125, 80.647035 ], [ 50.976562, 80.647035 ], [ 50.976562, 80.532071 ], [ 50.625000, 80.532071 ], [ 50.625000, 80.474065 ], [ 49.921875, 80.474065 ], [ 49.921875, 80.415707 ], [ 49.570312, 80.415707 ], [ 49.570312, 80.356995 ], [ 48.867188, 80.356995 ], [ 48.867188, 80.238501 ], [ 48.515625, 80.238501 ], [ 48.515625, 80.118564 ], [ 47.812500, 80.118564 ], [ 47.812500, 80.058050 ], [ 47.109375, 80.058050 ], [ 47.109375, 80.178713 ], [ 46.757812, 80.178713 ], [ 46.757812, 80.238501 ], [ 46.406250, 80.238501 ], [ 46.406250, 80.415707 ], [ 46.757812, 80.415707 ], [ 46.757812, 80.589727 ], [ 45.000000, 80.589727 ], [ 45.000000, 80.647035 ], [ 45.703125, 80.647035 ], [ 45.703125, 80.703997 ], [ 46.054688, 80.703997 ], [ 46.054688, 80.760615 ], [ 46.757812, 80.760615 ], [ 46.757812, 80.816891 ], [ 48.164062, 80.816891 ], [ 48.164062, 80.647035 ], [ 48.867188, 80.647035 ], [ 48.867188, 80.760615 ], [ 49.218750, 80.760615 ], [ 49.218750, 80.816891 ], [ 49.570312, 80.816891 ], [ 49.570312, 80.872827 ], [ 50.273438, 80.872827 ] ] ], [ [ [ 91.757812, 80.474065 ], [ 91.757812, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.474065 ], [ 91.757812, 80.474065 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 28.125000, 71.074056 ], [ 28.828125, 71.074056 ], [ 28.828125, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.844673 ], [ 29.882812, 70.844673 ], [ 29.882812, 70.728979 ], [ 30.234375, 70.728979 ], [ 30.234375, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.495574 ], [ 31.289062, 70.495574 ], [ 31.289062, 70.377854 ], [ 30.937500, 70.377854 ], [ 30.937500, 70.259452 ], [ 30.234375, 70.259452 ], [ 30.234375, 70.140364 ], [ 29.882812, 70.140364 ], [ 29.882812, 70.020587 ], [ 30.234375, 70.020587 ], [ 30.234375, 69.778952 ], [ 30.585938, 69.778952 ], [ 30.585938, 69.534518 ], [ 30.937500, 69.534518 ], [ 30.937500, 69.411242 ], [ 30.585938, 69.411242 ], [ 30.585938, 69.287257 ], [ 29.882812, 69.287257 ], [ 29.882812, 69.162558 ], [ 29.179688, 69.162558 ], [ 29.179688, 69.037142 ], [ 28.476562, 69.037142 ], [ 28.476562, 69.162558 ], [ 28.828125, 69.162558 ], [ 28.828125, 69.534518 ], [ 29.179688, 69.534518 ], [ 29.179688, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.900118 ], [ 28.125000, 69.900118 ], [ 28.125000, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 69.900118 ], [ 26.367188, 69.900118 ], [ 26.367188, 69.778952 ], [ 26.015625, 69.778952 ], [ 26.015625, 69.411242 ], [ 25.664062, 69.411242 ], [ 25.664062, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.784144 ], [ 24.960938, 68.784144 ], [ 24.960938, 68.656555 ], [ 24.257812, 68.656555 ], [ 24.257812, 68.784144 ], [ 23.554688, 68.784144 ], [ 23.554688, 68.911005 ], [ 23.203125, 68.911005 ], [ 23.203125, 68.784144 ], [ 22.148438, 68.784144 ], [ 22.148438, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 21.445312, 69.162558 ], [ 21.445312, 69.287257 ], [ 20.742188, 69.287257 ], [ 20.742188, 69.037142 ], [ 20.039062, 69.037142 ], [ 20.039062, 68.399180 ], [ 18.632812, 68.399180 ], [ 18.632812, 68.528235 ], [ 17.929688, 68.528235 ], [ 17.929688, 68.269387 ], [ 17.578125, 68.269387 ], [ 17.578125, 68.007571 ], [ 16.875000, 68.007571 ], [ 16.875000, 67.742759 ], [ 16.523438, 67.742759 ], [ 16.523438, 67.474922 ], [ 16.171875, 67.474922 ], [ 16.171875, 67.067433 ], [ 15.820312, 67.067433 ], [ 15.820312, 66.791909 ], [ 15.468750, 66.791909 ], [ 15.468750, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.930060 ], [ 13.710938, 66.930060 ], [ 13.710938, 67.204032 ], [ 14.062500, 67.204032 ], [ 14.062500, 67.474922 ], [ 14.414062, 67.474922 ], [ 14.414062, 67.742759 ], [ 14.765625, 67.742759 ], [ 14.765625, 67.875541 ], [ 15.117188, 67.875541 ], [ 15.117188, 68.007571 ], [ 15.468750, 68.007571 ], [ 15.468750, 68.138852 ], [ 15.820312, 68.138852 ], [ 15.820312, 68.269387 ], [ 16.171875, 68.269387 ], [ 16.171875, 68.399180 ], [ 16.523438, 68.399180 ], [ 16.523438, 68.528235 ], [ 16.875000, 68.528235 ], [ 16.875000, 68.656555 ], [ 17.226562, 68.656555 ], [ 17.226562, 68.911005 ], [ 17.578125, 68.911005 ], [ 17.578125, 69.037142 ], [ 17.929688, 69.037142 ], [ 17.929688, 69.162558 ], [ 18.281250, 69.162558 ], [ 18.281250, 69.287257 ], [ 18.632812, 69.287257 ], [ 18.632812, 69.534518 ], [ 18.984375, 69.534518 ], [ 18.984375, 69.657086 ], [ 19.335938, 69.657086 ], [ 19.335938, 69.778952 ], [ 19.687500, 69.778952 ], [ 19.687500, 69.900118 ], [ 20.390625, 69.900118 ], [ 20.390625, 70.020587 ], [ 20.742188, 70.020587 ], [ 20.742188, 70.140364 ], [ 21.445312, 70.140364 ], [ 21.445312, 70.259452 ], [ 23.203125, 70.259452 ], [ 23.203125, 70.495574 ], [ 23.554688, 70.495574 ], [ 23.554688, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 70.728979 ], [ 24.257812, 70.728979 ], [ 24.257812, 70.959697 ], [ 24.609375, 70.959697 ], [ 24.609375, 71.074056 ], [ 25.312500, 71.074056 ], [ 25.312500, 70.959697 ], [ 27.070312, 70.959697 ], [ 27.070312, 71.074056 ], [ 27.773438, 71.074056 ], [ 27.773438, 71.187754 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 16.875000, 79.997168 ], [ 17.226562, 79.997168 ], [ 17.226562, 79.874297 ], [ 17.578125, 79.874297 ], [ 17.578125, 79.812302 ], [ 17.929688, 79.812302 ], [ 17.929688, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.624056 ], [ 18.632812, 79.624056 ], [ 18.632812, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.335938, 79.432371 ], [ 19.335938, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.237185 ], [ 20.390625, 79.237185 ], [ 20.390625, 79.171335 ], [ 20.742188, 79.171335 ], [ 20.742188, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.971386 ], [ 21.445312, 78.971386 ], [ 21.445312, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.836065 ], [ 20.742188, 78.836065 ], [ 20.742188, 78.767792 ], [ 20.039062, 78.767792 ], [ 20.039062, 78.699106 ], [ 19.687500, 78.699106 ], [ 19.687500, 78.630006 ], [ 19.335938, 78.630006 ], [ 19.335938, 78.560488 ], [ 18.984375, 78.560488 ], [ 18.984375, 78.206563 ], [ 18.632812, 78.206563 ], [ 18.632812, 77.767582 ], [ 18.281250, 77.767582 ], [ 18.281250, 77.692870 ], [ 17.929688, 77.692870 ], [ 17.929688, 77.617709 ], [ 17.578125, 77.617709 ], [ 17.578125, 77.235074 ], [ 17.226562, 77.235074 ], [ 17.226562, 76.840816 ], [ 16.875000, 76.840816 ], [ 16.875000, 76.760541 ], [ 15.468750, 76.760541 ], [ 15.468750, 76.920614 ], [ 15.117188, 76.920614 ], [ 15.117188, 76.999935 ], [ 14.765625, 76.999935 ], [ 14.765625, 77.078784 ], [ 14.414062, 77.078784 ], [ 14.414062, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.710938, 77.312520 ], [ 13.710938, 77.389504 ], [ 14.062500, 77.389504 ], [ 14.062500, 77.542096 ], [ 14.414062, 77.542096 ], [ 14.414062, 77.692870 ], [ 14.765625, 77.692870 ], [ 14.765625, 77.767582 ], [ 14.414062, 77.767582 ], [ 14.414062, 77.841848 ], [ 13.710938, 77.841848 ], [ 13.710938, 77.915669 ], [ 13.007812, 77.915669 ], [ 13.007812, 78.061989 ], [ 12.656250, 78.061989 ], [ 12.656250, 78.206563 ], [ 12.304688, 78.206563 ], [ 12.304688, 78.420193 ], [ 11.953125, 78.420193 ], [ 11.953125, 78.560488 ], [ 11.601562, 78.560488 ], [ 11.601562, 78.699106 ], [ 11.250000, 78.699106 ], [ 11.250000, 79.038437 ], [ 10.898438, 79.038437 ], [ 10.898438, 79.432371 ], [ 10.546875, 79.432371 ], [ 10.546875, 79.624056 ], [ 10.898438, 79.624056 ], [ 10.898438, 79.687184 ], [ 11.250000, 79.687184 ], [ 11.250000, 79.749932 ], [ 11.601562, 79.749932 ], [ 11.601562, 79.812302 ], [ 12.304688, 79.812302 ], [ 12.304688, 79.874297 ], [ 12.656250, 79.874297 ], [ 12.656250, 79.935918 ], [ 13.007812, 79.935918 ], [ 13.007812, 79.874297 ], [ 13.359375, 79.874297 ], [ 13.359375, 79.749932 ], [ 13.710938, 79.749932 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.812302 ], [ 15.468750, 79.812302 ], [ 15.468750, 79.997168 ], [ 16.523438, 79.997168 ], [ 16.523438, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 23.554688, 80.589727 ], [ 23.554688, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.474065 ], [ 24.960938, 80.474065 ], [ 24.960938, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.356995 ], [ 25.664062, 80.356995 ], [ 25.664062, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.238501 ], [ 26.367188, 80.238501 ], [ 26.367188, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.118564 ], [ 27.070312, 80.118564 ], [ 27.070312, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 79.935918 ], [ 27.070312, 79.935918 ], [ 27.070312, 79.812302 ], [ 26.718750, 79.812302 ], [ 26.718750, 79.687184 ], [ 26.367188, 79.687184 ], [ 26.367188, 79.560546 ], [ 26.015625, 79.560546 ], [ 26.015625, 79.496652 ], [ 25.312500, 79.496652 ], [ 25.312500, 79.432371 ], [ 23.906250, 79.432371 ], [ 23.906250, 79.367701 ], [ 22.148438, 79.367701 ], [ 22.148438, 79.432371 ], [ 21.093750, 79.432371 ], [ 21.093750, 79.496652 ], [ 20.390625, 79.496652 ], [ 20.390625, 79.560546 ], [ 20.039062, 79.560546 ], [ 20.039062, 79.812302 ], [ 18.984375, 79.812302 ], [ 18.984375, 79.874297 ], [ 18.281250, 79.874297 ], [ 18.281250, 79.997168 ], [ 17.929688, 79.997168 ], [ 17.929688, 80.118564 ], [ 17.578125, 80.118564 ], [ 17.578125, 80.238501 ], [ 17.226562, 80.238501 ], [ 17.226562, 80.297927 ], [ 17.578125, 80.297927 ], [ 17.578125, 80.356995 ], [ 18.281250, 80.356995 ], [ 18.281250, 80.415707 ], [ 18.984375, 80.415707 ], [ 18.984375, 80.474065 ], [ 19.687500, 80.474065 ], [ 19.687500, 80.532071 ], [ 20.742188, 80.532071 ], [ 20.742188, 80.474065 ], [ 21.093750, 80.474065 ], [ 21.093750, 80.415707 ], [ 21.445312, 80.415707 ], [ 21.445312, 80.356995 ], [ 22.148438, 80.356995 ], [ 22.148438, 80.474065 ], [ 22.500000, 80.474065 ], [ 22.500000, 80.589727 ], [ 23.554688, 80.589727 ] ] ], [ [ [ 22.851562, 78.420193 ], [ 22.851562, 78.206563 ], [ 23.203125, 78.206563 ], [ 23.203125, 77.989049 ], [ 23.554688, 77.989049 ], [ 23.554688, 77.915669 ], [ 24.257812, 77.915669 ], [ 24.257812, 77.841848 ], [ 24.609375, 77.841848 ], [ 24.609375, 77.767582 ], [ 24.257812, 77.767582 ], [ 24.257812, 77.692870 ], [ 23.906250, 77.692870 ], [ 23.906250, 77.617709 ], [ 23.203125, 77.617709 ], [ 23.203125, 77.542096 ], [ 22.851562, 77.542096 ], [ 22.851562, 77.466028 ], [ 22.148438, 77.466028 ], [ 22.148438, 77.542096 ], [ 21.445312, 77.542096 ], [ 21.445312, 77.617709 ], [ 20.742188, 77.617709 ], [ 20.742188, 77.692870 ], [ 21.093750, 77.692870 ], [ 21.093750, 77.841848 ], [ 21.445312, 77.841848 ], [ 21.445312, 77.989049 ], [ 21.093750, 77.989049 ], [ 21.093750, 78.134493 ], [ 20.742188, 78.134493 ], [ 20.742188, 78.278201 ], [ 21.445312, 78.278201 ], [ 21.445312, 78.349411 ], [ 22.500000, 78.349411 ], [ 22.500000, 78.420193 ], [ 22.851562, 78.420193 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 28.125000, 71.074056 ], [ 28.828125, 71.074056 ], [ 28.828125, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.844673 ], [ 29.882812, 70.844673 ], [ 29.882812, 70.728979 ], [ 30.234375, 70.728979 ], [ 30.234375, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.495574 ], [ 31.289062, 70.495574 ], [ 31.289062, 70.377854 ], [ 30.585938, 70.377854 ], [ 30.585938, 70.259452 ], [ 29.882812, 70.259452 ], [ 29.882812, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 69.900118 ], [ 30.585938, 69.900118 ], [ 30.585938, 69.657086 ], [ 30.937500, 69.657086 ], [ 30.937500, 69.534518 ], [ 30.585938, 69.534518 ], [ 30.585938, 69.411242 ], [ 29.882812, 69.411242 ], [ 29.882812, 69.287257 ], [ 29.531250, 69.287257 ], [ 29.531250, 69.162558 ], [ 28.476562, 69.162558 ], [ 28.476562, 69.411242 ], [ 28.828125, 69.411242 ], [ 28.828125, 69.778952 ], [ 28.476562, 69.778952 ], [ 28.476562, 69.900118 ], [ 28.125000, 69.900118 ], [ 28.125000, 70.020587 ], [ 27.773438, 70.020587 ], [ 27.773438, 70.140364 ], [ 27.070312, 70.140364 ], [ 27.070312, 70.020587 ], [ 26.367188, 70.020587 ], [ 26.367188, 69.900118 ], [ 26.015625, 69.900118 ], [ 26.015625, 69.534518 ], [ 25.664062, 69.534518 ], [ 25.664062, 69.037142 ], [ 25.312500, 69.037142 ], [ 25.312500, 68.911005 ], [ 24.960938, 68.911005 ], [ 24.960938, 68.656555 ], [ 24.257812, 68.656555 ], [ 24.257812, 68.784144 ], [ 23.554688, 68.784144 ], [ 23.554688, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 21.445312, 69.162558 ], [ 21.445312, 69.287257 ], [ 20.742188, 69.287257 ], [ 20.742188, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.528235 ], [ 18.632812, 68.528235 ], [ 18.632812, 68.656555 ], [ 17.929688, 68.656555 ], [ 17.929688, 68.399180 ], [ 17.578125, 68.399180 ], [ 17.578125, 68.138852 ], [ 16.523438, 68.138852 ], [ 16.523438, 67.875541 ], [ 16.171875, 67.875541 ], [ 16.171875, 67.474922 ], [ 15.820312, 67.474922 ], [ 15.820312, 67.067433 ], [ 15.468750, 67.067433 ], [ 15.468750, 66.791909 ], [ 15.117188, 66.791909 ], [ 15.117188, 66.372755 ], [ 14.765625, 66.372755 ], [ 14.765625, 65.946472 ], [ 14.414062, 65.946472 ], [ 14.414062, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 67.067433 ], [ 13.710938, 67.067433 ], [ 13.710938, 67.339861 ], [ 14.062500, 67.339861 ], [ 14.062500, 67.609221 ], [ 14.414062, 67.609221 ], [ 14.414062, 67.875541 ], [ 14.765625, 67.875541 ], [ 14.765625, 68.007571 ], [ 15.117188, 68.007571 ], [ 15.117188, 68.269387 ], [ 15.468750, 68.269387 ], [ 15.468750, 68.399180 ], [ 15.820312, 68.399180 ], [ 15.820312, 68.528235 ], [ 16.171875, 68.528235 ], [ 16.171875, 68.656555 ], [ 16.523438, 68.656555 ], [ 16.523438, 68.784144 ], [ 16.875000, 68.784144 ], [ 16.875000, 69.037142 ], [ 17.226562, 69.037142 ], [ 17.226562, 69.162558 ], [ 17.578125, 69.162558 ], [ 17.578125, 69.287257 ], [ 17.929688, 69.287257 ], [ 17.929688, 69.411242 ], [ 18.281250, 69.411242 ], [ 18.281250, 69.657086 ], [ 18.632812, 69.657086 ], [ 18.632812, 69.778952 ], [ 18.984375, 69.778952 ], [ 18.984375, 69.900118 ], [ 19.687500, 69.900118 ], [ 19.687500, 70.020587 ], [ 20.390625, 70.020587 ], [ 20.390625, 70.140364 ], [ 21.093750, 70.140364 ], [ 21.093750, 70.259452 ], [ 23.203125, 70.259452 ], [ 23.203125, 70.495574 ], [ 23.554688, 70.495574 ], [ 23.554688, 70.728979 ], [ 23.906250, 70.728979 ], [ 23.906250, 70.959697 ], [ 24.257812, 70.959697 ], [ 24.257812, 71.074056 ], [ 27.421875, 71.074056 ], [ 27.421875, 71.187754 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 16.875000, 79.997168 ], [ 17.226562, 79.997168 ], [ 17.226562, 79.874297 ], [ 17.578125, 79.874297 ], [ 17.578125, 79.749932 ], [ 17.929688, 79.749932 ], [ 17.929688, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.624056 ], [ 18.632812, 79.624056 ], [ 18.632812, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.335938, 79.432371 ], [ 19.335938, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.237185 ], [ 20.390625, 79.237185 ], [ 20.390625, 79.171335 ], [ 20.742188, 79.171335 ], [ 20.742188, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.971386 ], [ 21.445312, 78.971386 ], [ 21.445312, 78.903929 ], [ 20.742188, 78.903929 ], [ 20.742188, 78.836065 ], [ 20.390625, 78.836065 ], [ 20.390625, 78.767792 ], [ 20.039062, 78.767792 ], [ 20.039062, 78.699106 ], [ 19.335938, 78.699106 ], [ 19.335938, 78.630006 ], [ 18.984375, 78.630006 ], [ 18.984375, 78.420193 ], [ 18.632812, 78.420193 ], [ 18.632812, 77.989049 ], [ 18.281250, 77.989049 ], [ 18.281250, 77.767582 ], [ 17.929688, 77.767582 ], [ 17.929688, 77.692870 ], [ 17.578125, 77.692870 ], [ 17.578125, 77.466028 ], [ 17.226562, 77.466028 ], [ 17.226562, 76.999935 ], [ 16.875000, 76.999935 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 76.920614 ], [ 15.117188, 76.920614 ], [ 15.117188, 76.999935 ], [ 14.765625, 76.999935 ], [ 14.765625, 77.157163 ], [ 14.414062, 77.157163 ], [ 14.414062, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.710938, 77.312520 ], [ 13.710938, 77.466028 ], [ 14.062500, 77.466028 ], [ 14.062500, 77.617709 ], [ 14.414062, 77.617709 ], [ 14.414062, 77.767582 ], [ 14.062500, 77.767582 ], [ 14.062500, 77.841848 ], [ 13.710938, 77.841848 ], [ 13.710938, 77.915669 ], [ 13.359375, 77.915669 ], [ 13.359375, 77.989049 ], [ 13.007812, 77.989049 ], [ 13.007812, 78.134493 ], [ 12.656250, 78.134493 ], [ 12.656250, 78.278201 ], [ 12.304688, 78.278201 ], [ 12.304688, 78.420193 ], [ 11.953125, 78.420193 ], [ 11.953125, 78.560488 ], [ 11.601562, 78.560488 ], [ 11.601562, 78.699106 ], [ 11.250000, 78.699106 ], [ 11.250000, 78.836065 ], [ 10.898438, 78.836065 ], [ 10.898438, 79.105086 ], [ 10.546875, 79.105086 ], [ 10.546875, 79.496652 ], [ 10.195312, 79.496652 ], [ 10.195312, 79.687184 ], [ 10.546875, 79.687184 ], [ 10.546875, 79.749932 ], [ 11.250000, 79.749932 ], [ 11.250000, 79.812302 ], [ 11.601562, 79.812302 ], [ 11.601562, 79.874297 ], [ 11.953125, 79.874297 ], [ 11.953125, 79.935918 ], [ 12.656250, 79.935918 ], [ 12.656250, 79.997168 ], [ 13.007812, 79.997168 ], [ 13.007812, 79.935918 ], [ 13.359375, 79.935918 ], [ 13.359375, 79.749932 ], [ 13.710938, 79.749932 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.874297 ], [ 15.468750, 79.874297 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 23.554688, 80.647035 ], [ 23.554688, 80.589727 ], [ 23.906250, 80.589727 ], [ 23.906250, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.474065 ], [ 24.960938, 80.474065 ], [ 24.960938, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.356995 ], [ 25.664062, 80.356995 ], [ 25.664062, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.238501 ], [ 26.367188, 80.238501 ], [ 26.367188, 80.118564 ], [ 26.718750, 80.118564 ], [ 26.718750, 80.058050 ], [ 27.070312, 80.058050 ], [ 27.070312, 79.997168 ], [ 26.718750, 79.997168 ], [ 26.718750, 79.874297 ], [ 26.367188, 79.874297 ], [ 26.367188, 79.749932 ], [ 26.015625, 79.749932 ], [ 26.015625, 79.624056 ], [ 25.664062, 79.624056 ], [ 25.664062, 79.560546 ], [ 25.312500, 79.560546 ], [ 25.312500, 79.496652 ], [ 23.906250, 79.496652 ], [ 23.906250, 79.432371 ], [ 22.148438, 79.432371 ], [ 22.148438, 79.496652 ], [ 21.093750, 79.496652 ], [ 21.093750, 79.560546 ], [ 20.390625, 79.560546 ], [ 20.390625, 79.624056 ], [ 20.039062, 79.624056 ], [ 20.039062, 79.749932 ], [ 19.687500, 79.749932 ], [ 19.687500, 79.874297 ], [ 18.281250, 79.874297 ], [ 18.281250, 79.935918 ], [ 17.929688, 79.935918 ], [ 17.929688, 80.118564 ], [ 17.578125, 80.118564 ], [ 17.578125, 80.238501 ], [ 17.226562, 80.238501 ], [ 17.226562, 80.356995 ], [ 17.578125, 80.356995 ], [ 17.578125, 80.415707 ], [ 18.281250, 80.415707 ], [ 18.281250, 80.474065 ], [ 18.984375, 80.474065 ], [ 18.984375, 80.532071 ], [ 19.687500, 80.532071 ], [ 19.687500, 80.589727 ], [ 20.742188, 80.589727 ], [ 20.742188, 80.532071 ], [ 21.093750, 80.532071 ], [ 21.093750, 80.474065 ], [ 21.445312, 80.474065 ], [ 21.445312, 80.415707 ], [ 22.148438, 80.415707 ], [ 22.148438, 80.532071 ], [ 22.500000, 80.532071 ], [ 22.500000, 80.647035 ], [ 23.554688, 80.647035 ] ] ], [ [ [ 22.851562, 78.420193 ], [ 22.851562, 78.278201 ], [ 23.203125, 78.278201 ], [ 23.203125, 78.061989 ], [ 23.554688, 78.061989 ], [ 23.554688, 77.989049 ], [ 24.257812, 77.989049 ], [ 24.257812, 77.915669 ], [ 24.609375, 77.915669 ], [ 24.609375, 77.841848 ], [ 24.257812, 77.841848 ], [ 24.257812, 77.767582 ], [ 23.906250, 77.767582 ], [ 23.906250, 77.692870 ], [ 23.203125, 77.692870 ], [ 23.203125, 77.617709 ], [ 22.851562, 77.617709 ], [ 22.851562, 77.542096 ], [ 22.500000, 77.542096 ], [ 22.500000, 77.466028 ], [ 21.796875, 77.466028 ], [ 21.796875, 77.542096 ], [ 21.093750, 77.542096 ], [ 21.093750, 77.617709 ], [ 20.390625, 77.617709 ], [ 20.390625, 77.767582 ], [ 20.742188, 77.767582 ], [ 20.742188, 77.915669 ], [ 21.093750, 77.915669 ], [ 21.093750, 78.134493 ], [ 20.742188, 78.134493 ], [ 20.742188, 78.278201 ], [ 21.445312, 78.278201 ], [ 21.445312, 78.349411 ], [ 22.148438, 78.349411 ], [ 22.148438, 78.420193 ], [ 22.851562, 78.420193 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 69.037142 ], [ 21.093750, 68.911005 ], [ 21.445312, 68.911005 ], [ 21.445312, 68.784144 ], [ 21.796875, 68.784144 ], [ 21.796875, 68.656555 ], [ 22.148438, 68.656555 ], [ 22.148438, 68.528235 ], [ 22.500000, 68.528235 ], [ 22.500000, 68.269387 ], [ 22.851562, 68.269387 ], [ 22.851562, 68.138852 ], [ 23.203125, 68.138852 ], [ 23.203125, 67.875541 ], [ 23.554688, 67.875541 ], [ 23.554688, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 65.802776 ], [ 14.765625, 65.802776 ], [ 14.765625, 65.946472 ], [ 15.117188, 65.946472 ], [ 15.117188, 66.372755 ], [ 15.468750, 66.372755 ], [ 15.468750, 66.791909 ], [ 15.820312, 66.791909 ], [ 15.820312, 67.067433 ], [ 16.171875, 67.067433 ], [ 16.171875, 67.474922 ], [ 16.523438, 67.474922 ], [ 16.523438, 67.742759 ], [ 16.875000, 67.742759 ], [ 16.875000, 68.007571 ], [ 17.578125, 68.007571 ], [ 17.578125, 68.269387 ], [ 17.929688, 68.269387 ], [ 17.929688, 68.528235 ], [ 18.632812, 68.528235 ], [ 18.632812, 68.399180 ], [ 20.039062, 68.399180 ], [ 20.039062, 69.037142 ], [ 21.093750, 69.037142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 69.162558 ], [ 20.390625, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.528235 ], [ 22.148438, 68.528235 ], [ 22.148438, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.007571 ], [ 23.203125, 68.007571 ], [ 23.203125, 67.204032 ], [ 23.554688, 67.204032 ], [ 23.554688, 65.946472 ], [ 22.851562, 65.946472 ], [ 22.851562, 65.802776 ], [ 14.414062, 65.802776 ], [ 14.414062, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 66.791909 ], [ 15.468750, 66.791909 ], [ 15.468750, 67.067433 ], [ 15.820312, 67.067433 ], [ 15.820312, 67.474922 ], [ 16.171875, 67.474922 ], [ 16.171875, 67.875541 ], [ 16.523438, 67.875541 ], [ 16.523438, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.399180 ], [ 17.929688, 68.399180 ], [ 17.929688, 68.656555 ], [ 18.632812, 68.656555 ], [ 18.632812, 68.528235 ], [ 19.687500, 68.528235 ], [ 19.687500, 69.162558 ], [ 20.390625, 69.162558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 70.020587 ], [ 28.125000, 69.900118 ], [ 28.828125, 69.900118 ], [ 28.828125, 69.778952 ], [ 29.179688, 69.778952 ], [ 29.179688, 69.534518 ], [ 28.828125, 69.534518 ], [ 28.828125, 69.162558 ], [ 28.476562, 69.162558 ], [ 28.476562, 68.269387 ], [ 28.828125, 68.269387 ], [ 28.828125, 68.138852 ], [ 29.179688, 68.138852 ], [ 29.179688, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.474922 ], [ 29.531250, 67.474922 ], [ 29.531250, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.652977 ], [ 29.531250, 66.652977 ], [ 29.531250, 66.372755 ], [ 29.882812, 66.372755 ], [ 29.882812, 65.946472 ], [ 30.234375, 65.946472 ], [ 30.234375, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 66.089364 ], [ 23.554688, 66.089364 ], [ 23.554688, 67.875541 ], [ 23.203125, 67.875541 ], [ 23.203125, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.269387 ], [ 22.500000, 68.269387 ], [ 22.500000, 68.528235 ], [ 22.148438, 68.528235 ], [ 22.148438, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 22.148438, 68.911005 ], [ 22.148438, 68.784144 ], [ 23.203125, 68.784144 ], [ 23.203125, 68.911005 ], [ 23.554688, 68.911005 ], [ 23.554688, 68.784144 ], [ 24.257812, 68.784144 ], [ 24.257812, 68.656555 ], [ 24.960938, 68.656555 ], [ 24.960938, 68.784144 ], [ 25.312500, 68.784144 ], [ 25.312500, 68.911005 ], [ 25.664062, 68.911005 ], [ 25.664062, 69.411242 ], [ 26.015625, 69.411242 ], [ 26.015625, 69.778952 ], [ 26.367188, 69.778952 ], [ 26.367188, 69.900118 ], [ 27.070312, 69.900118 ], [ 27.070312, 70.020587 ], [ 28.125000, 70.020587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 70.140364 ], [ 27.773438, 70.020587 ], [ 28.125000, 70.020587 ], [ 28.125000, 69.900118 ], [ 28.476562, 69.900118 ], [ 28.476562, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.411242 ], [ 28.476562, 69.411242 ], [ 28.476562, 68.784144 ], [ 28.125000, 68.784144 ], [ 28.125000, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.007571 ], [ 29.179688, 68.007571 ], [ 29.179688, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 67.339861 ], [ 29.179688, 67.339861 ], [ 29.179688, 67.067433 ], [ 28.828125, 67.067433 ], [ 28.828125, 66.791909 ], [ 29.179688, 66.791909 ], [ 29.179688, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 66.089364 ], [ 29.882812, 66.089364 ], [ 29.882812, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 67.204032 ], [ 23.203125, 67.204032 ], [ 23.203125, 68.007571 ], [ 22.851562, 68.007571 ], [ 22.851562, 68.138852 ], [ 22.500000, 68.138852 ], [ 22.500000, 68.399180 ], [ 22.148438, 68.399180 ], [ 22.148438, 68.528235 ], [ 21.796875, 68.528235 ], [ 21.796875, 68.656555 ], [ 21.445312, 68.656555 ], [ 21.445312, 68.784144 ], [ 21.093750, 68.784144 ], [ 21.093750, 68.911005 ], [ 20.742188, 68.911005 ], [ 20.742188, 69.037142 ], [ 20.390625, 69.037142 ], [ 20.390625, 69.162558 ], [ 20.742188, 69.162558 ], [ 20.742188, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 23.554688, 68.911005 ], [ 23.554688, 68.784144 ], [ 24.257812, 68.784144 ], [ 24.257812, 68.656555 ], [ 24.960938, 68.656555 ], [ 24.960938, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 69.037142 ], [ 25.664062, 69.037142 ], [ 25.664062, 69.534518 ], [ 26.015625, 69.534518 ], [ 26.015625, 69.900118 ], [ 26.367188, 69.900118 ], [ 26.367188, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 70.140364 ], [ 27.773438, 70.140364 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.802776 ], [ 135.703125, -66.231457 ], [ 136.054688, -66.231457 ], [ 136.054688, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.204032 ], [ 146.250000, -67.204032 ], [ 146.250000, -67.474922 ], [ 145.898438, -67.474922 ], [ 145.898438, -67.742759 ], [ 146.250000, -67.742759 ], [ 146.250000, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -68.007571 ], [ 147.304688, -68.007571 ], [ 147.304688, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.269387 ], [ 148.359375, -68.269387 ], [ 148.359375, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.528235 ], [ 150.468750, -68.528235 ], [ 150.468750, -68.656555 ], [ 151.523438, -68.656555 ], [ 151.523438, -68.784144 ], [ 152.226562, -68.784144 ], [ 152.226562, -68.911005 ], [ 153.984375, -68.911005 ], [ 153.984375, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.037142 ], [ 155.742188, -69.037142 ], [ 155.742188, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.287257 ], [ 156.445312, -69.287257 ], [ 156.445312, -69.411242 ], [ 157.148438, -69.411242 ], [ 157.148438, -69.534518 ], [ 158.203125, -69.534518 ], [ 158.203125, -69.657086 ], [ 159.257812, -69.657086 ], [ 159.257812, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.259452 ], [ 160.664062, -70.259452 ], [ 160.664062, -70.377854 ], [ 161.015625, -70.377854 ], [ 161.015625, -70.495574 ], [ 161.367188, -70.495574 ], [ 161.367188, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.728979 ], [ 166.640625, -70.728979 ], [ 166.640625, -70.844673 ], [ 167.695312, -70.844673 ], [ 167.695312, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.074056 ], [ 169.101562, -71.074056 ], [ 169.101562, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -71.746432 ], [ 171.210938, -71.746432 ], [ 171.210938, -72.181804 ], [ 170.859375, -72.181804 ], [ 170.859375, -72.395706 ], [ 170.507812, -72.395706 ], [ 170.507812, -72.711903 ], [ 170.156250, -72.711903 ], [ 170.156250, -73.124945 ], [ 169.804688, -73.124945 ], [ 169.804688, -73.428424 ], [ 169.453125, -73.428424 ], [ 169.453125, -73.726595 ], [ 168.750000, -73.726595 ], [ 168.750000, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -73.922469 ], [ 167.695312, -73.922469 ], [ 167.695312, -74.116047 ], [ 167.343750, -74.116047 ], [ 167.343750, -74.307353 ], [ 166.640625, -74.307353 ], [ 166.640625, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -74.590108 ], [ 165.585938, -74.590108 ], [ 165.585938, -74.867889 ], [ 165.234375, -74.867889 ], [ 165.234375, -75.050354 ], [ 164.882812, -75.050354 ], [ 164.882812, -75.230667 ], [ 164.531250, -75.230667 ], [ 164.531250, -75.408854 ], [ 164.179688, -75.408854 ], [ 164.179688, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -76.100796 ], [ 163.476562, -76.100796 ], [ 163.476562, -77.235074 ], [ 163.828125, -77.235074 ], [ 163.828125, -77.389504 ], [ 164.179688, -77.389504 ], [ 164.179688, -77.989049 ], [ 164.531250, -77.989049 ], [ 164.531250, -78.134493 ], [ 164.882812, -78.134493 ], [ 164.882812, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.278201 ], [ 165.937500, -78.278201 ], [ 165.937500, -78.349411 ], [ 166.640625, -78.349411 ], [ 166.640625, -78.560488 ], [ 166.992188, -78.560488 ], [ 166.992188, -78.767792 ], [ 166.640625, -78.767792 ], [ 166.640625, -78.836065 ], [ 165.937500, -78.836065 ], [ 165.937500, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -78.971386 ], [ 164.882812, -78.971386 ], [ 164.882812, -79.038437 ], [ 164.179688, -79.038437 ], [ 164.179688, -79.105086 ], [ 163.125000, -79.105086 ], [ 163.125000, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.367701 ], [ 161.367188, -79.367701 ], [ 161.367188, -79.624056 ], [ 161.015625, -79.624056 ], [ 161.015625, -79.997168 ], [ 160.664062, -79.997168 ], [ 160.664062, -80.415707 ], [ 160.312500, -80.415707 ], [ 160.312500, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.983688 ], [ 160.312500, -80.983688 ], [ 160.312500, -81.093214 ], [ 160.664062, -81.093214 ], [ 160.664062, -81.201420 ], [ 161.015625, -81.201420 ], [ 161.015625, -81.361287 ], [ 161.367188, -81.361287 ], [ 161.367188, -81.569968 ], [ 161.718750, -81.569968 ], [ 161.718750, -81.773644 ], [ 162.070312, -81.773644 ], [ 162.070312, -81.972431 ], [ 162.421875, -81.972431 ], [ 162.421875, -82.118384 ], [ 162.773438, -82.118384 ], [ 162.773438, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.308893 ], [ 163.476562, -82.308893 ], [ 163.476562, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.448764 ], [ 164.179688, -82.448764 ], [ 164.179688, -82.540604 ], [ 164.531250, -82.540604 ], [ 164.531250, -82.631333 ], [ 164.882812, -82.631333 ], [ 164.882812, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.585938, -82.765373 ], [ 165.585938, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -82.940327 ], [ 166.289062, -82.940327 ], [ 166.289062, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.153111 ], [ 167.695312, -83.153111 ], [ 167.695312, -83.236426 ], [ 168.046875, -83.236426 ], [ 168.046875, -83.277705 ], [ 168.398438, -83.277705 ], [ 168.398438, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.480366 ], [ 169.101562, -83.480366 ], [ 169.101562, -83.715544 ], [ 169.453125, -83.715544 ], [ 169.453125, -83.867616 ], [ 169.804688, -83.867616 ], [ 169.804688, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.942272 ], [ 170.859375, -83.942272 ], [ 170.859375, -83.979259 ], [ 171.210938, -83.979259 ], [ 171.210938, -84.016022 ], [ 171.914062, -84.016022 ], [ 171.914062, -84.052561 ], [ 172.265625, -84.052561 ], [ 172.265625, -84.088878 ], [ 172.617188, -84.088878 ], [ 172.617188, -84.196507 ], [ 172.968750, -84.196507 ], [ 172.968750, -84.336980 ], [ 173.320312, -84.336980 ], [ 173.320312, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.371566 ], [ 174.023438, -84.371566 ], [ 174.023438, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.302183 ], [ 175.078125, -84.302183 ], [ 175.078125, -84.267172 ], [ 175.429688, -84.267172 ], [ 175.429688, -84.231947 ], [ 175.781250, -84.231947 ], [ 175.781250, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 176.835938, -84.267172 ], [ 176.835938, -84.302183 ], [ 177.187500, -84.302183 ], [ 177.187500, -84.371566 ], [ 177.539062, -84.371566 ], [ 177.539062, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.242188, -84.474065 ], [ 178.242188, -84.507816 ], [ 178.593750, -84.507816 ], [ 178.593750, -84.574702 ], [ 178.945312, -84.574702 ], [ 178.945312, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.640777 ], [ 179.648438, -84.640777 ], [ 179.648438, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -84.640777 ], [ 180.351562, -84.640777 ], [ 180.351562, -84.440107 ], [ 180.703125, -84.440107 ], [ 180.703125, -84.231947 ], [ 181.054688, -84.231947 ], [ 181.054688, -84.160849 ], [ 181.406250, -84.160849 ], [ 181.406250, -84.231947 ], [ 181.757812, -84.231947 ], [ 181.757812, -85.200475 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 94.921875, -67.204032 ], [ 94.921875, -67.339861 ], [ 96.328125, -67.339861 ], [ 96.328125, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.067433 ], [ 99.140625, -67.067433 ], [ 99.140625, -67.204032 ], [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 113.203125, -66.089364 ], [ 113.203125, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.204032 ], [ 121.289062, -67.204032 ], [ 121.289062, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -66.089364 ], [ 135.000000, -66.089364 ], [ 135.000000, -65.802776 ], [ 135.703125, -65.802776 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.802776 ], [ 135.703125, -66.231457 ], [ 136.054688, -66.231457 ], [ 136.054688, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 137.109375, -66.791909 ], [ 137.109375, -66.930060 ], [ 138.164062, -66.930060 ], [ 138.164062, -66.791909 ], [ 145.195312, -66.791909 ], [ 145.195312, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.204032 ], [ 145.898438, -67.204032 ], [ 145.898438, -67.609221 ], [ 146.250000, -67.609221 ], [ 146.250000, -67.875541 ], [ 146.953125, -67.875541 ], [ 146.953125, -68.007571 ], [ 147.656250, -68.007571 ], [ 147.656250, -68.138852 ], [ 148.359375, -68.138852 ], [ 148.359375, -68.269387 ], [ 148.710938, -68.269387 ], [ 148.710938, -68.399180 ], [ 149.414062, -68.399180 ], [ 149.414062, -68.528235 ], [ 150.468750, -68.528235 ], [ 150.468750, -68.656555 ], [ 151.523438, -68.656555 ], [ 151.523438, -68.784144 ], [ 153.632812, -68.784144 ], [ 153.632812, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.037142 ], [ 155.742188, -69.037142 ], [ 155.742188, -69.162558 ], [ 156.445312, -69.162558 ], [ 156.445312, -69.287257 ], [ 157.148438, -69.287257 ], [ 157.148438, -69.411242 ], [ 158.203125, -69.411242 ], [ 158.203125, -69.534518 ], [ 158.906250, -69.534518 ], [ 158.906250, -69.657086 ], [ 159.257812, -69.657086 ], [ 159.257812, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.020587 ], [ 160.312500, -70.020587 ], [ 160.312500, -70.140364 ], [ 160.664062, -70.140364 ], [ 160.664062, -70.259452 ], [ 161.015625, -70.259452 ], [ 161.015625, -70.495574 ], [ 161.367188, -70.495574 ], [ 161.367188, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.728979 ], [ 163.476562, -70.728979 ], [ 163.476562, -70.612614 ], [ 164.179688, -70.612614 ], [ 164.179688, -70.728979 ], [ 166.992188, -70.728979 ], [ 166.992188, -70.844673 ], [ 167.695312, -70.844673 ], [ 167.695312, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.074056 ], [ 169.101562, -71.074056 ], [ 169.101562, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.635993 ], [ 170.859375, -71.635993 ], [ 170.859375, -72.289067 ], [ 170.507812, -72.289067 ], [ 170.507812, -72.501722 ], [ 170.156250, -72.501722 ], [ 170.156250, -72.711903 ], [ 169.804688, -72.711903 ], [ 169.804688, -73.022592 ], [ 169.453125, -73.022592 ], [ 169.453125, -73.428424 ], [ 169.101562, -73.428424 ], [ 169.101562, -73.627789 ], [ 168.750000, -73.627789 ], [ 168.750000, -73.726595 ], [ 167.695312, -73.726595 ], [ 167.695312, -73.922469 ], [ 167.343750, -73.922469 ], [ 167.343750, -74.211983 ], [ 166.640625, -74.211983 ], [ 166.640625, -74.307353 ], [ 165.937500, -74.307353 ], [ 165.937500, -74.496413 ], [ 165.585938, -74.496413 ], [ 165.585938, -74.867889 ], [ 165.234375, -74.867889 ], [ 165.234375, -75.050354 ], [ 164.882812, -75.050354 ], [ 164.882812, -75.230667 ], [ 164.531250, -75.230667 ], [ 164.531250, -75.408854 ], [ 164.179688, -75.408854 ], [ 164.179688, -75.584937 ], [ 163.828125, -75.584937 ], [ 163.828125, -75.758940 ], [ 163.476562, -75.758940 ], [ 163.476562, -76.434604 ], [ 163.125000, -76.434604 ], [ 163.125000, -76.840816 ], [ 163.476562, -76.840816 ], [ 163.476562, -77.235074 ], [ 163.828125, -77.235074 ], [ 163.828125, -77.617709 ], [ 164.179688, -77.617709 ], [ 164.179688, -77.989049 ], [ 164.531250, -77.989049 ], [ 164.531250, -78.134493 ], [ 164.882812, -78.134493 ], [ 164.882812, -78.206563 ], [ 165.585938, -78.206563 ], [ 165.585938, -78.278201 ], [ 166.289062, -78.278201 ], [ 166.289062, -78.420193 ], [ 166.640625, -78.420193 ], [ 166.640625, -78.630006 ], [ 166.992188, -78.630006 ], [ 166.992188, -78.767792 ], [ 166.289062, -78.767792 ], [ 166.289062, -78.836065 ], [ 165.585938, -78.836065 ], [ 165.585938, -78.903929 ], [ 164.882812, -78.903929 ], [ 164.882812, -78.971386 ], [ 164.531250, -78.971386 ], [ 164.531250, -79.038437 ], [ 163.828125, -79.038437 ], [ 163.828125, -79.105086 ], [ 161.718750, -79.105086 ], [ 161.718750, -79.237185 ], [ 161.367188, -79.237185 ], [ 161.367188, -79.432371 ], [ 161.015625, -79.432371 ], [ 161.015625, -79.624056 ], [ 160.664062, -79.624056 ], [ 160.664062, -80.356995 ], [ 160.312500, -80.356995 ], [ 160.312500, -80.647035 ], [ 159.960938, -80.647035 ], [ 159.960938, -80.872827 ], [ 159.609375, -80.872827 ], [ 159.609375, -80.983688 ], [ 159.960938, -80.983688 ], [ 159.960938, -81.093214 ], [ 160.312500, -81.093214 ], [ 160.312500, -81.147481 ], [ 160.664062, -81.147481 ], [ 160.664062, -81.255032 ], [ 161.015625, -81.255032 ], [ 161.015625, -81.466261 ], [ 161.367188, -81.466261 ], [ 161.367188, -81.773644 ], [ 161.718750, -81.773644 ], [ 161.718750, -81.873641 ], [ 162.070312, -81.873641 ], [ 162.070312, -81.972431 ], [ 162.421875, -81.972431 ], [ 162.421875, -82.118384 ], [ 162.773438, -82.118384 ], [ 162.773438, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.308893 ], [ 163.476562, -82.308893 ], [ 163.476562, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.494824 ], [ 164.179688, -82.494824 ], [ 164.179688, -82.586106 ], [ 164.531250, -82.586106 ], [ 164.531250, -82.676285 ], [ 164.882812, -82.676285 ], [ 164.882812, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.809511 ], [ 165.585938, -82.809511 ], [ 165.585938, -82.896987 ], [ 165.937500, -82.896987 ], [ 165.937500, -82.983404 ], [ 166.289062, -82.983404 ], [ 166.289062, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.153111 ], [ 167.695312, -83.153111 ], [ 167.695312, -83.236426 ], [ 168.046875, -83.236426 ], [ 168.046875, -83.277705 ], [ 168.398438, -83.277705 ], [ 168.398438, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.559717 ], [ 169.101562, -83.559717 ], [ 169.101562, -83.829945 ], [ 169.804688, -83.829945 ], [ 169.804688, -83.867616 ], [ 170.156250, -83.867616 ], [ 170.156250, -83.905058 ], [ 170.859375, -83.905058 ], [ 170.859375, -83.942272 ], [ 171.210938, -83.942272 ], [ 171.210938, -83.979259 ], [ 171.914062, -83.979259 ], [ 171.914062, -84.016022 ], [ 172.265625, -84.016022 ], [ 172.265625, -84.196507 ], [ 172.617188, -84.196507 ], [ 172.617188, -84.336980 ], [ 172.968750, -84.336980 ], [ 172.968750, -84.405941 ], [ 173.320312, -84.405941 ], [ 173.320312, -84.371566 ], [ 173.671875, -84.371566 ], [ 173.671875, -84.336980 ], [ 174.023438, -84.336980 ], [ 174.023438, -84.302183 ], [ 174.375000, -84.302183 ], [ 174.375000, -84.267172 ], [ 174.726562, -84.267172 ], [ 174.726562, -84.231947 ], [ 175.078125, -84.231947 ], [ 175.078125, -84.196507 ], [ 175.429688, -84.196507 ], [ 175.429688, -84.160849 ], [ 176.132812, -84.160849 ], [ 176.132812, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 176.835938, -84.267172 ], [ 176.835938, -84.302183 ], [ 177.187500, -84.302183 ], [ 177.187500, -84.336980 ], [ 177.539062, -84.336980 ], [ 177.539062, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.440107 ], [ 178.242188, -84.440107 ], [ 178.242188, -84.474065 ], [ 178.593750, -84.474065 ], [ 178.593750, -84.541361 ], [ 178.945312, -84.541361 ], [ 178.945312, -84.574702 ], [ 179.296875, -84.574702 ], [ 179.296875, -84.640777 ], [ 179.648438, -84.640777 ], [ 179.648438, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -84.574702 ], [ 180.351562, -84.574702 ], [ 180.351562, -84.302183 ], [ 180.703125, -84.302183 ], [ 180.703125, -84.160849 ], [ 181.054688, -84.160849 ], [ 181.054688, -84.196507 ], [ 181.406250, -84.196507 ], [ 181.406250, -84.267172 ], [ 181.757812, -84.267172 ], [ 181.757812, -85.200475 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.648438, -67.067433 ], [ 89.648438, -67.204032 ], [ 91.054688, -67.204032 ], [ 91.054688, -67.067433 ], [ 92.812500, -67.067433 ], [ 92.812500, -67.204032 ], [ 93.867188, -67.204032 ], [ 93.867188, -67.067433 ], [ 94.921875, -67.067433 ], [ 94.921875, -67.204032 ], [ 95.273438, -67.204032 ], [ 95.273438, -67.339861 ], [ 96.328125, -67.339861 ], [ 96.328125, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.067433 ], [ 98.789062, -67.067433 ], [ 98.789062, -67.204032 ], [ 99.843750, -67.204032 ], [ 99.843750, -66.930060 ], [ 100.195312, -66.930060 ], [ 100.195312, -66.652977 ], [ 100.546875, -66.652977 ], [ 100.546875, -66.513260 ], [ 100.898438, -66.513260 ], [ 100.898438, -66.372755 ], [ 101.250000, -66.372755 ], [ 101.250000, -66.231457 ], [ 101.601562, -66.231457 ], [ 101.601562, -66.089364 ], [ 101.953125, -66.089364 ], [ 101.953125, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.089364 ], [ 104.414062, -66.089364 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 109.687500, -66.791909 ], [ 109.687500, -66.652977 ], [ 110.390625, -66.652977 ], [ 110.390625, -66.513260 ], [ 110.742188, -66.513260 ], [ 110.742188, -66.372755 ], [ 111.093750, -66.372755 ], [ 111.093750, -66.231457 ], [ 111.445312, -66.231457 ], [ 111.445312, -66.089364 ], [ 113.203125, -66.089364 ], [ 113.203125, -65.946472 ], [ 114.257812, -65.946472 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.513260 ], [ 114.960938, -66.513260 ], [ 114.960938, -66.652977 ], [ 116.367188, -66.652977 ], [ 116.367188, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.773438, -66.930060 ], [ 117.773438, -67.067433 ], [ 118.828125, -67.067433 ], [ 118.828125, -67.204032 ], [ 120.234375, -67.204032 ], [ 120.234375, -67.067433 ], [ 120.937500, -67.067433 ], [ 120.937500, -66.930060 ], [ 121.640625, -66.930060 ], [ 121.640625, -66.652977 ], [ 121.992188, -66.652977 ], [ 121.992188, -66.513260 ], [ 122.695312, -66.513260 ], [ 122.695312, -66.372755 ], [ 123.398438, -66.372755 ], [ 123.398438, -66.513260 ], [ 124.453125, -66.513260 ], [ 124.453125, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 126.914062, -66.513260 ], [ 126.914062, -66.652977 ], [ 129.375000, -66.652977 ], [ 129.375000, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.296875, -66.231457 ], [ 134.296875, -66.089364 ], [ 134.648438, -66.089364 ], [ 134.648438, -65.802776 ], [ 135.703125, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ] ] ], [ [ [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ] ] ], [ [ [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.372755 ], [ 101.953125, -66.372755 ], [ 101.953125, -66.089364 ], [ 102.304688, -66.089364 ], [ 102.304688, -65.946472 ], [ 102.656250, -65.946472 ], [ 102.656250, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.802776 ], [ 104.062500, -65.802776 ], [ 104.062500, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.204032 ], [ 100.195312, -67.204032 ] ] ], [ [ [ 121.289062, -67.204032 ], [ 121.289062, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -65.512963 ], [ 135.703125, -65.512963 ], [ 135.703125, -66.372755 ], [ 136.054688, -66.372755 ], [ 136.054688, -66.652977 ], [ 136.406250, -66.652977 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.204032 ], [ 121.289062, -67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.648438, -67.067433 ], [ 89.648438, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ] ] ], [ [ [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 92.460938, -67.067433 ], [ 92.460938, -67.204032 ], [ 91.406250, -67.204032 ] ] ], [ [ [ 93.867188, -67.204032 ], [ 93.867188, -67.067433 ], [ 94.921875, -67.067433 ], [ 94.921875, -67.204032 ], [ 93.867188, -67.204032 ] ] ], [ [ [ 99.843750, -67.204032 ], [ 99.843750, -66.930060 ], [ 100.195312, -66.930060 ], [ 100.195312, -66.652977 ], [ 100.546875, -66.652977 ], [ 100.546875, -66.513260 ], [ 100.898438, -66.513260 ], [ 100.898438, -66.372755 ], [ 101.250000, -66.372755 ], [ 101.250000, -66.231457 ], [ 101.601562, -66.231457 ], [ 101.601562, -66.089364 ], [ 101.953125, -66.089364 ], [ 101.953125, -65.802776 ], [ 102.304688, -65.802776 ], [ 102.304688, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.089364 ], [ 104.414062, -66.089364 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 109.687500, -66.791909 ], [ 109.687500, -66.652977 ], [ 110.390625, -66.652977 ], [ 110.390625, -66.513260 ], [ 110.742188, -66.513260 ], [ 110.742188, -66.372755 ], [ 111.093750, -66.372755 ], [ 111.093750, -66.231457 ], [ 111.445312, -66.231457 ], [ 111.445312, -66.089364 ], [ 113.203125, -66.089364 ], [ 113.203125, -65.946472 ], [ 114.257812, -65.946472 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.513260 ], [ 114.960938, -66.513260 ], [ 114.960938, -66.652977 ], [ 116.367188, -66.652977 ], [ 116.367188, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.773438, -66.930060 ], [ 117.773438, -67.067433 ], [ 118.476562, -67.067433 ], [ 118.476562, -67.204032 ], [ 99.843750, -67.204032 ] ] ], [ [ [ 120.585938, -67.204032 ], [ 120.585938, -67.067433 ], [ 120.937500, -67.067433 ], [ 120.937500, -66.930060 ], [ 121.640625, -66.930060 ], [ 121.640625, -66.652977 ], [ 121.992188, -66.652977 ], [ 121.992188, -66.513260 ], [ 122.695312, -66.513260 ], [ 122.695312, -66.372755 ], [ 123.398438, -66.372755 ], [ 123.398438, -66.513260 ], [ 124.453125, -66.513260 ], [ 124.453125, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 126.914062, -66.513260 ], [ 126.914062, -66.652977 ], [ 129.375000, -66.652977 ], [ 129.375000, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.296875, -66.231457 ], [ 134.296875, -66.089364 ], [ 134.648438, -66.089364 ], [ 134.648438, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -65.366837 ], [ 135.351562, -65.366837 ], [ 135.351562, -65.802776 ], [ 135.703125, -65.802776 ], [ 135.703125, -66.231457 ], [ 136.054688, -66.231457 ], [ 136.054688, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 137.109375, -66.791909 ], [ 137.109375, -66.930060 ], [ 138.164062, -66.930060 ], [ 138.164062, -66.791909 ], [ 145.195312, -66.791909 ], [ 145.195312, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.204032 ], [ 120.585938, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.609375, 1.757537 ], [ 114.609375, 1.054628 ], [ 113.203125, 1.054628 ], [ 113.203125, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.703107 ], [ 110.039062, 0.703107 ], [ 110.039062, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ], [ 114.609375, 1.757537 ] ] ], [ [ [ 104.414062, 1.757537 ], [ 104.414062, 1.406109 ], [ 103.007812, 1.406109 ], [ 103.007812, 1.757537 ], [ 104.414062, 1.757537 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.148438, 1.757537 ], [ 112.148438, 1.406109 ], [ 111.796875, 1.406109 ], [ 111.796875, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ], [ 112.148438, 1.757537 ] ] ], [ [ [ 104.062500, 1.757537 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 1.757537 ], [ 104.062500, 1.757537 ] ] ], [ [ [ 114.257812, 1.757537 ], [ 114.257812, 1.406109 ], [ 112.851562, 1.406109 ], [ 112.851562, 1.757537 ], [ 114.257812, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.644022 ], [ 178.593750, -18.312811 ], [ 177.539062, -18.312811 ], [ 177.539062, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.644022 ], [ 178.593750, -17.644022 ] ] ], [ [ [ 180.000000, -16.299051 ], [ 180.000000, -16.636192 ], [ 179.296875, -16.636192 ], [ 179.296875, -16.972741 ], [ 178.593750, -16.972741 ], [ 178.593750, -16.636192 ], [ 178.945312, -16.636192 ], [ 178.945312, -16.299051 ], [ 180.000000, -16.299051 ] ] ], [ [ [ 180.351562, -15.961329 ], [ 180.351562, -16.299051 ], [ 180.000000, -16.299051 ], [ 180.000000, -15.961329 ], [ 180.351562, -15.961329 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.308688 ], [ 178.593750, -17.644022 ], [ 178.242188, -17.644022 ], [ 178.242188, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.644022 ], [ 177.539062, -17.644022 ], [ 177.539062, -17.308688 ], [ 178.593750, -17.308688 ] ] ], [ [ [ 180.000000, -16.299051 ], [ 180.000000, -16.636192 ], [ 179.296875, -16.636192 ], [ 179.296875, -16.972741 ], [ 178.593750, -16.972741 ], [ 178.593750, -16.636192 ], [ 178.945312, -16.636192 ], [ 178.945312, -16.299051 ], [ 180.000000, -16.299051 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.156250, -9.102097 ], [ 125.156250, -9.795678 ], [ 124.804688, -9.795678 ], [ 124.804688, -10.141932 ], [ 124.453125, -10.141932 ], [ 124.453125, -10.487812 ], [ 123.398438, -10.487812 ], [ 123.398438, -9.795678 ], [ 124.101562, -9.795678 ], [ 124.101562, -9.449062 ], [ 124.453125, -9.449062 ], [ 124.453125, -9.102097 ], [ 125.156250, -9.102097 ] ] ], [ [ [ 119.882812, -9.449062 ], [ 119.882812, -9.795678 ], [ 120.585938, -9.795678 ], [ 120.585938, -10.141932 ], [ 119.531250, -10.141932 ], [ 119.531250, -9.795678 ], [ 118.828125, -9.795678 ], [ 118.828125, -9.449062 ], [ 119.882812, -9.449062 ] ] ], [ [ [ 118.828125, -8.407168 ], [ 118.828125, -8.754795 ], [ 118.125000, -8.754795 ], [ 118.125000, -9.102097 ], [ 116.718750, -9.102097 ], [ 116.718750, -8.754795 ], [ 117.070312, -8.754795 ], [ 117.070312, -8.407168 ], [ 118.828125, -8.407168 ] ] ], [ [ [ 122.695312, -8.407168 ], [ 122.695312, -8.754795 ], [ 122.343750, -8.754795 ], [ 122.343750, -9.102097 ], [ 120.234375, -9.102097 ], [ 120.234375, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 122.695312, -8.407168 ] ] ], [ [ [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.054628 ], [ 134.296875, -1.054628 ], [ 134.296875, -3.162456 ], [ 135.000000, -3.162456 ], [ 135.000000, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -3.162456 ], [ 136.054688, -3.162456 ], [ 136.054688, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.460181 ], [ 136.757812, -2.460181 ], [ 136.757812, -2.108899 ], [ 137.460938, -2.108899 ], [ 137.460938, -1.757537 ], [ 138.515625, -1.757537 ], [ 138.515625, -2.108899 ], [ 139.218750, -2.108899 ], [ 139.218750, -2.460181 ], [ 140.976562, -2.460181 ], [ 140.976562, -9.102097 ], [ 140.625000, -9.102097 ], [ 140.625000, -8.754795 ], [ 140.273438, -8.754795 ], [ 140.273438, -8.407168 ], [ 139.570312, -8.407168 ], [ 139.570312, -8.059230 ], [ 139.218750, -8.059230 ], [ 139.218750, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -8.059230 ], [ 138.164062, -8.059230 ], [ 138.164062, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -6.315299 ], [ 138.164062, -6.315299 ], [ 138.164062, -5.615986 ], [ 137.812500, -5.615986 ], [ 137.812500, -5.266008 ], [ 137.109375, -5.266008 ], [ 137.109375, -4.915833 ], [ 136.406250, -4.915833 ], [ 136.406250, -4.565474 ], [ 134.648438, -4.565474 ], [ 134.648438, -4.214943 ], [ 133.945312, -4.214943 ], [ 133.945312, -3.864255 ], [ 133.242188, -3.864255 ], [ 133.242188, -4.214943 ], [ 132.890625, -4.214943 ], [ 132.890625, -3.162456 ], [ 132.187500, -3.162456 ], [ 132.187500, -2.811371 ], [ 132.890625, -2.811371 ], [ 132.890625, -2.460181 ], [ 133.593750, -2.460181 ], [ 133.593750, -2.108899 ], [ 131.835938, -2.108899 ], [ 131.835938, -1.757537 ], [ 131.132812, -1.757537 ], [ 131.132812, -1.406109 ], [ 130.429688, -1.406109 ], [ 130.429688, -1.054628 ], [ 131.484375, -1.054628 ], [ 131.484375, -0.703107 ], [ 132.539062, -0.703107 ], [ 132.539062, -0.351560 ], [ 132.890625, -0.351560 ] ] ], [ [ [ 107.226562, -5.965754 ], [ 107.226562, -6.315299 ], [ 108.632812, -6.315299 ], [ 108.632812, -6.664608 ], [ 109.335938, -6.664608 ], [ 109.335938, -7.013668 ], [ 110.390625, -7.013668 ], [ 110.390625, -6.664608 ], [ 110.742188, -6.664608 ], [ 110.742188, -6.315299 ], [ 111.093750, -6.315299 ], [ 111.093750, -6.664608 ], [ 111.796875, -6.664608 ], [ 111.796875, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -7.362467 ], [ 112.851562, -7.362467 ], [ 112.851562, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.059230 ], [ 115.312500, -8.059230 ], [ 115.312500, -8.754795 ], [ 113.906250, -8.754795 ], [ 113.906250, -8.407168 ], [ 110.742188, -8.407168 ], [ 110.742188, -8.059230 ], [ 109.687500, -8.059230 ], [ 109.687500, -7.710992 ], [ 107.226562, -7.710992 ], [ 107.226562, -7.362467 ], [ 106.171875, -7.362467 ], [ 106.171875, -7.013668 ], [ 105.820312, -7.013668 ], [ 105.820312, -6.315299 ], [ 106.171875, -6.315299 ], [ 106.171875, -5.965754 ], [ 107.226562, -5.965754 ] ] ], [ [ [ 118.125000, 1.757537 ], [ 118.125000, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -1.054628 ], [ 117.070312, -1.054628 ], [ 117.070312, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -2.108899 ], [ 116.367188, -2.108899 ], [ 116.367188, -3.162456 ], [ 116.015625, -3.162456 ], [ 116.015625, -3.864255 ], [ 115.312500, -3.864255 ], [ 115.312500, -4.214943 ], [ 114.960938, -4.214943 ], [ 114.960938, -3.864255 ], [ 114.609375, -3.864255 ], [ 114.609375, -3.513421 ], [ 113.203125, -3.513421 ], [ 113.203125, -3.162456 ], [ 112.851562, -3.162456 ], [ 112.851562, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -3.162456 ], [ 110.390625, -3.162456 ], [ 110.390625, -2.460181 ], [ 110.039062, -2.460181 ], [ 110.039062, -1.757537 ], [ 109.687500, -1.757537 ], [ 109.687500, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 1.406109 ], [ 109.335938, 1.406109 ], [ 109.335938, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 0.703107 ], [ 111.093750, 0.703107 ], [ 111.093750, 1.054628 ], [ 112.500000, 1.054628 ], [ 112.500000, 1.406109 ], [ 113.203125, 1.406109 ], [ 113.203125, 1.054628 ], [ 114.609375, 1.054628 ], [ 114.609375, 1.757537 ], [ 118.125000, 1.757537 ] ] ], [ [ [ 123.046875, -8.407168 ], [ 122.695312, -8.407168 ], [ 122.695312, -8.059230 ], [ 123.046875, -8.059230 ], [ 123.046875, -8.407168 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.664608 ], [ 133.945312, -6.664608 ], [ 133.945312, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ] ] ], [ [ [ 101.953125, 1.757537 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 0.351560 ], [ 103.359375, 0.351560 ], [ 103.359375, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -2.108899 ], [ 104.765625, -2.108899 ], [ 104.765625, -2.460181 ], [ 105.468750, -2.460181 ], [ 105.468750, -2.811371 ], [ 105.820312, -2.811371 ], [ 105.820312, -3.162456 ], [ 106.171875, -3.162456 ], [ 106.171875, -3.864255 ], [ 105.820312, -3.864255 ], [ 105.820312, -5.965754 ], [ 104.414062, -5.965754 ], [ 104.414062, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -5.266008 ], [ 103.710938, -5.266008 ], [ 103.710938, -4.915833 ], [ 103.359375, -4.915833 ], [ 103.359375, -4.565474 ], [ 102.656250, -4.565474 ], [ 102.656250, -3.864255 ], [ 102.304688, -3.864255 ], [ 102.304688, -3.513421 ], [ 101.953125, -3.513421 ], [ 101.953125, -3.162456 ], [ 101.250000, -3.162456 ], [ 101.250000, -2.460181 ], [ 100.898438, -2.460181 ], [ 100.898438, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 1.406109 ], [ 98.789062, 1.406109 ], [ 98.789062, 1.757537 ], [ 101.953125, 1.757537 ] ] ], [ [ [ 122.695312, -4.565474 ], [ 122.343750, -4.565474 ], [ 122.343750, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.214943 ], [ 121.289062, -4.214943 ], [ 121.289062, -3.864255 ], [ 120.937500, -3.864255 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -4.915833 ], [ 120.585938, -4.915833 ], [ 120.585938, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -3.513421 ], [ 119.179688, -3.513421 ], [ 119.179688, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.460181 ], [ 119.179688, -2.460181 ], [ 119.179688, -1.054628 ], [ 119.531250, -1.054628 ], [ 119.531250, -0.351560 ], [ 119.882812, -0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -1.757537 ], [ 121.640625, -1.757537 ], [ 121.640625, -2.108899 ], [ 121.992188, -2.108899 ], [ 121.992188, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.864255 ], [ 122.695312, -3.864255 ], [ 122.695312, -4.565474 ] ] ], [ [ [ 125.156250, 1.054628 ], [ 124.804688, 1.054628 ], [ 124.804688, 0.351560 ], [ 120.234375, 0.351560 ], [ 120.234375, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 1.054628 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 127.617188, -0.703107 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 1.406109 ], [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.703107 ] ] ], [ [ [ 129.726562, -2.811371 ], [ 129.726562, -3.162456 ], [ 130.429688, -3.162456 ], [ 130.429688, -3.513421 ], [ 130.781250, -3.513421 ], [ 130.781250, -3.864255 ], [ 130.078125, -3.864255 ], [ 130.078125, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 129.726562, -2.811371 ] ] ], [ [ [ 126.914062, -3.162456 ], [ 126.914062, -3.513421 ], [ 127.265625, -3.513421 ], [ 127.265625, -3.864255 ], [ 126.210938, -3.864255 ], [ 126.210938, -3.513421 ], [ 125.859375, -3.513421 ], [ 125.859375, -3.162456 ], [ 126.914062, -3.162456 ] ] ], [ [ [ 123.398438, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -1.054628 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -1.054628 ], [ 127.968750, -1.054628 ], [ 127.968750, -0.703107 ] ] ], [ [ [ 122.695312, -4.565474 ], [ 123.046875, -4.565474 ], [ 123.046875, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.915833 ], [ 122.695312, -4.915833 ], [ 122.695312, -4.565474 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.882812, -9.102097 ], [ 119.882812, -9.449062 ], [ 120.234375, -9.449062 ], [ 120.234375, -9.795678 ], [ 120.585938, -9.795678 ], [ 120.585938, -10.141932 ], [ 119.531250, -10.141932 ], [ 119.531250, -9.795678 ], [ 118.828125, -9.795678 ], [ 118.828125, -9.449062 ], [ 119.531250, -9.449062 ], [ 119.531250, -9.102097 ], [ 119.882812, -9.102097 ] ] ], [ [ [ 124.804688, -8.754795 ], [ 124.804688, -9.449062 ], [ 124.453125, -9.449062 ], [ 124.453125, -10.141932 ], [ 123.398438, -10.141932 ], [ 123.398438, -9.449062 ], [ 123.750000, -9.449062 ], [ 123.750000, -9.102097 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.754795 ], [ 124.804688, -8.754795 ] ] ], [ [ [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.757537 ], [ 134.296875, -1.757537 ], [ 134.296875, -2.811371 ], [ 135.000000, -2.811371 ], [ 135.000000, -3.162456 ], [ 135.703125, -3.162456 ], [ 135.703125, -2.460181 ], [ 136.054688, -2.460181 ], [ 136.054688, -2.108899 ], [ 136.406250, -2.108899 ], [ 136.406250, -1.757537 ], [ 137.109375, -1.757537 ], [ 137.109375, -1.406109 ], [ 138.164062, -1.406109 ], [ 138.164062, -1.757537 ], [ 139.218750, -1.757537 ], [ 139.218750, -2.108899 ], [ 140.273438, -2.108899 ], [ 140.273438, -2.460181 ], [ 140.976562, -2.460181 ], [ 140.976562, -9.102097 ], [ 140.625000, -9.102097 ], [ 140.625000, -8.754795 ], [ 140.273438, -8.754795 ], [ 140.273438, -8.407168 ], [ 139.921875, -8.407168 ], [ 139.921875, -8.059230 ], [ 138.515625, -8.059230 ], [ 138.515625, -8.407168 ], [ 137.460938, -8.407168 ], [ 137.460938, -8.059230 ], [ 137.812500, -8.059230 ], [ 137.812500, -7.362467 ], [ 138.515625, -7.362467 ], [ 138.515625, -6.664608 ], [ 138.164062, -6.664608 ], [ 138.164062, -5.615986 ], [ 137.812500, -5.615986 ], [ 137.812500, -5.266008 ], [ 137.109375, -5.266008 ], [ 137.109375, -4.915833 ], [ 136.406250, -4.915833 ], [ 136.406250, -4.565474 ], [ 135.703125, -4.565474 ], [ 135.703125, -4.214943 ], [ 134.296875, -4.214943 ], [ 134.296875, -3.864255 ], [ 132.539062, -3.864255 ], [ 132.539062, -3.162456 ], [ 131.835938, -3.162456 ], [ 131.835938, -2.811371 ], [ 132.539062, -2.811371 ], [ 132.539062, -2.460181 ], [ 133.593750, -2.460181 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.757537 ], [ 131.835938, -1.757537 ], [ 131.835938, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -1.054628 ], [ 130.429688, -1.054628 ], [ 130.429688, -0.703107 ], [ 131.484375, -0.703107 ], [ 131.484375, -0.351560 ], [ 132.890625, -0.351560 ] ] ], [ [ [ 118.828125, -8.059230 ], [ 118.828125, -8.407168 ], [ 118.476562, -8.407168 ], [ 118.476562, -8.754795 ], [ 117.070312, -8.754795 ], [ 117.070312, -8.407168 ], [ 117.773438, -8.407168 ], [ 117.773438, -8.059230 ], [ 118.828125, -8.059230 ] ] ], [ [ [ 121.992188, -8.407168 ], [ 121.992188, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 121.992188, -8.407168 ] ] ], [ [ [ 105.820312, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -5.266008 ], [ 103.710938, -5.266008 ], [ 103.710938, -4.915833 ], [ 103.007812, -4.915833 ], [ 103.007812, -4.565474 ], [ 102.304688, -4.565474 ], [ 102.304688, -3.864255 ], [ 101.953125, -3.864255 ], [ 101.953125, -3.513421 ], [ 101.601562, -3.513421 ], [ 101.601562, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.108899 ], [ 100.898438, -2.108899 ], [ 100.898438, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 0.703107 ], [ 98.789062, 0.703107 ], [ 98.789062, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 1.757537 ], [ 101.953125, 1.757537 ], [ 101.953125, 1.406109 ], [ 102.304688, 1.406109 ], [ 102.304688, 1.054628 ], [ 102.656250, 1.054628 ], [ 102.656250, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.351560 ], [ 103.710938, 0.351560 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.062500, -1.054628 ], [ 104.062500, -1.406109 ], [ 104.414062, -1.406109 ], [ 104.414062, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.460181 ], [ 105.820312, -2.460181 ], [ 105.820312, -5.615986 ] ] ], [ [ [ 117.773438, 1.757537 ], [ 117.773438, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 1.054628 ], [ 117.773438, 1.054628 ], [ 117.773438, 0.703107 ], [ 117.421875, 0.703107 ], [ 117.421875, -1.054628 ], [ 116.718750, -1.054628 ], [ 116.718750, -1.406109 ], [ 116.367188, -1.406109 ], [ 116.367188, -3.162456 ], [ 116.015625, -3.162456 ], [ 116.015625, -3.864255 ], [ 115.664062, -3.864255 ], [ 115.664062, -3.513421 ], [ 115.312500, -3.513421 ], [ 115.312500, -3.864255 ], [ 114.609375, -3.864255 ], [ 114.609375, -3.513421 ], [ 114.257812, -3.513421 ], [ 114.257812, -3.162456 ], [ 113.203125, -3.162456 ], [ 113.203125, -2.811371 ], [ 112.851562, -2.811371 ], [ 112.851562, -3.162456 ], [ 111.445312, -3.162456 ], [ 111.445312, -2.811371 ], [ 110.039062, -2.811371 ], [ 110.039062, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 0.000000 ], [ 108.632812, 0.000000 ], [ 108.632812, 1.054628 ], [ 108.984375, 1.054628 ], [ 108.984375, 1.406109 ], [ 109.335938, 1.406109 ], [ 109.335938, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 111.796875, 1.054628 ], [ 111.796875, 1.406109 ], [ 112.148438, 1.406109 ], [ 112.148438, 1.757537 ], [ 112.851562, 1.757537 ], [ 112.851562, 1.406109 ], [ 114.257812, 1.406109 ], [ 114.257812, 1.757537 ], [ 117.773438, 1.757537 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.296875, -6.315299 ], [ 134.296875, -6.664608 ], [ 133.945312, -6.664608 ], [ 133.945312, -5.615986 ], [ 134.648438, -5.615986 ] ] ], [ [ [ 122.343750, -4.565474 ], [ 121.289062, -4.565474 ], [ 121.289062, -3.864255 ], [ 120.585938, -3.864255 ], [ 120.585938, -3.162456 ], [ 120.937500, -3.162456 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -5.615986 ], [ 119.179688, -5.615986 ], [ 119.179688, -4.915833 ], [ 119.531250, -4.915833 ], [ 119.531250, -3.864255 ], [ 119.179688, -3.864255 ], [ 119.179688, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.811371 ], [ 118.476562, -2.811371 ], [ 118.476562, -2.460181 ], [ 119.179688, -2.460181 ], [ 119.179688, -0.351560 ], [ 119.531250, -0.351560 ], [ 119.531250, 0.351560 ], [ 119.882812, 0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -1.054628 ], [ 121.289062, -1.054628 ], [ 121.289062, -0.703107 ], [ 122.343750, -0.703107 ], [ 122.343750, -0.351560 ], [ 123.046875, -0.351560 ], [ 123.046875, -1.054628 ], [ 122.343750, -1.054628 ], [ 122.343750, -1.406109 ], [ 121.992188, -1.406109 ], [ 121.992188, -1.757537 ], [ 121.289062, -1.757537 ], [ 121.289062, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.460181 ], [ 121.992188, -2.460181 ], [ 121.992188, -3.162456 ], [ 122.343750, -3.162456 ], [ 122.343750, -3.513421 ], [ 121.992188, -3.513421 ], [ 121.992188, -3.864255 ], [ 122.343750, -3.864255 ], [ 122.343750, -4.214943 ], [ 122.343750, -4.565474 ] ] ], [ [ [ 105.820312, -5.615986 ], [ 107.226562, -5.615986 ], [ 107.226562, -5.965754 ], [ 107.578125, -5.965754 ], [ 107.578125, -6.315299 ], [ 108.281250, -6.315299 ], [ 108.281250, -6.664608 ], [ 110.742188, -6.664608 ], [ 110.742188, -6.315299 ], [ 111.445312, -6.315299 ], [ 111.445312, -6.664608 ], [ 112.500000, -6.664608 ], [ 112.500000, -7.013668 ], [ 112.851562, -7.013668 ], [ 112.851562, -7.362467 ], [ 113.203125, -7.362467 ], [ 113.203125, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.059230 ], [ 115.312500, -8.059230 ], [ 115.312500, -8.407168 ], [ 113.554688, -8.407168 ], [ 113.554688, -8.059230 ], [ 109.687500, -8.059230 ], [ 109.687500, -7.710992 ], [ 107.226562, -7.710992 ], [ 107.226562, -7.362467 ], [ 106.523438, -7.362467 ], [ 106.523438, -7.013668 ], [ 106.171875, -7.013668 ], [ 106.171875, -6.664608 ], [ 105.468750, -6.664608 ], [ 105.468750, -5.965754 ], [ 105.820312, -5.965754 ], [ 105.820312, -5.615986 ] ] ], [ [ [ 124.804688, 1.406109 ], [ 124.804688, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 0.703107 ], [ 124.101562, 0.703107 ], [ 124.101562, 0.351560 ], [ 122.695312, 0.351560 ], [ 122.695312, 0.703107 ], [ 120.585938, 0.703107 ], [ 120.585938, 0.351560 ], [ 119.882812, 0.351560 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 1.054628 ], [ 120.585938, 1.054628 ], [ 120.585938, 1.406109 ], [ 120.937500, 1.406109 ], [ 120.937500, 1.054628 ], [ 124.101562, 1.054628 ], [ 124.101562, 1.406109 ], [ 124.804688, 1.406109 ] ] ], [ [ [ 127.968750, -0.351560 ], [ 127.617188, -0.351560 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 1.757537 ], [ 128.320312, 1.757537 ], [ 128.320312, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.703107 ], [ 128.320312, 0.703107 ], [ 128.320312, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.351560 ] ] ], [ [ [ 129.375000, -2.460181 ], [ 129.375000, -2.811371 ], [ 130.429688, -2.811371 ], [ 130.429688, -3.162456 ], [ 130.781250, -3.162456 ], [ 130.781250, -3.513421 ], [ 130.078125, -3.513421 ], [ 130.078125, -3.162456 ], [ 127.968750, -3.162456 ], [ 127.968750, -2.811371 ], [ 128.671875, -2.811371 ], [ 128.671875, -2.460181 ], [ 129.375000, -2.460181 ] ] ], [ [ [ 122.343750, -4.565474 ], [ 122.695312, -4.565474 ], [ 123.046875, -4.565474 ], [ 123.046875, -5.615986 ], [ 121.992188, -5.615986 ], [ 121.992188, -5.266008 ], [ 122.343750, -5.266008 ], [ 122.343750, -4.565474 ] ] ], [ [ [ 126.914062, -2.811371 ], [ 126.914062, -3.513421 ], [ 125.859375, -3.513421 ], [ 125.859375, -3.162456 ], [ 126.562500, -3.162456 ], [ 126.562500, -2.811371 ], [ 126.914062, -2.811371 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 124.804688, 1.406109 ], [ 124.804688, 1.757537 ], [ 125.156250, 1.757537 ], [ 125.156250, 1.406109 ] ] ], [ [ [ 127.968750, -0.351560 ], [ 128.320312, -0.351560 ], [ 128.320312, -0.703107 ], [ 127.968750, -0.703107 ], [ 127.968750, -0.351560 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.407168 ], [ 127.265625, -8.754795 ], [ 126.562500, -8.754795 ], [ 126.562500, -9.102097 ], [ 125.859375, -9.102097 ], [ 125.859375, -9.449062 ], [ 125.156250, -9.449062 ], [ 125.156250, -9.102097 ], [ 124.804688, -9.102097 ], [ 124.804688, -8.754795 ], [ 125.859375, -8.754795 ], [ 125.859375, -8.407168 ], [ 127.265625, -8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.059230 ], [ 127.265625, -8.407168 ], [ 126.914062, -8.407168 ], [ 126.914062, -8.754795 ], [ 126.210938, -8.754795 ], [ 126.210938, -9.102097 ], [ 124.804688, -9.102097 ], [ 124.804688, -8.407168 ], [ 126.562500, -8.407168 ], [ 126.562500, -8.059230 ], [ 127.265625, -8.059230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.546875, -40.713956 ], [ 145.546875, -40.979898 ], [ 145.898438, -40.979898 ], [ 145.898438, -41.244772 ], [ 146.953125, -41.244772 ], [ 146.953125, -40.979898 ], [ 148.359375, -40.979898 ], [ 148.359375, -42.293564 ], [ 148.007812, -42.293564 ], [ 148.007812, -43.068888 ], [ 147.304688, -43.068888 ], [ 147.304688, -43.580391 ], [ 145.898438, -43.580391 ], [ 145.898438, -43.325178 ], [ 145.546875, -43.325178 ], [ 145.546875, -42.553080 ], [ 145.195312, -42.553080 ], [ 145.195312, -41.771312 ], [ 144.843750, -41.771312 ], [ 144.843750, -40.713956 ], [ 145.546875, -40.713956 ] ] ], [ [ [ 132.539062, -11.523088 ], [ 132.890625, -11.523088 ], [ 132.890625, -11.867351 ], [ 133.593750, -11.867351 ], [ 133.593750, -12.211180 ], [ 137.109375, -12.211180 ], [ 137.109375, -12.554564 ], [ 136.757812, -12.554564 ], [ 136.757812, -13.239945 ], [ 136.054688, -13.239945 ], [ 136.054688, -13.923404 ], [ 135.703125, -13.923404 ], [ 135.703125, -14.604847 ], [ 135.351562, -14.604847 ], [ 135.351562, -15.284185 ], [ 136.054688, -15.284185 ], [ 136.054688, -15.623037 ], [ 136.406250, -15.623037 ], [ 136.406250, -15.961329 ], [ 137.109375, -15.961329 ], [ 137.109375, -16.299051 ], [ 137.460938, -16.299051 ], [ 137.460938, -16.636192 ], [ 137.812500, -16.636192 ], [ 137.812500, -16.972741 ], [ 139.218750, -16.972741 ], [ 139.218750, -17.308688 ], [ 139.570312, -17.308688 ], [ 139.570312, -17.644022 ], [ 140.976562, -17.644022 ], [ 140.976562, -16.636192 ], [ 141.328125, -16.636192 ], [ 141.328125, -15.623037 ], [ 141.679688, -15.623037 ], [ 141.679688, -12.211180 ], [ 142.031250, -12.211180 ], [ 142.031250, -11.178402 ], [ 142.734375, -11.178402 ], [ 142.734375, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.554564 ], [ 143.437500, -12.554564 ], [ 143.437500, -14.264383 ], [ 143.789062, -14.264383 ], [ 143.789062, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -14.944785 ], [ 145.546875, -14.944785 ], [ 145.546875, -15.284185 ], [ 145.195312, -15.284185 ], [ 145.195312, -15.961329 ], [ 145.546875, -15.961329 ], [ 145.546875, -16.972741 ], [ 145.898438, -16.972741 ], [ 145.898438, -17.308688 ], [ 146.250000, -17.308688 ], [ 146.250000, -17.978733 ], [ 145.898438, -17.978733 ], [ 145.898438, -18.646245 ], [ 146.250000, -18.646245 ], [ 146.250000, -19.311143 ], [ 146.953125, -19.311143 ], [ 146.953125, -19.642588 ], [ 147.304688, -19.642588 ], [ 147.304688, -19.973349 ], [ 148.007812, -19.973349 ], [ 148.007812, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.289374 ], [ 149.414062, -21.289374 ], [ 149.414062, -21.943046 ], [ 149.765625, -21.943046 ], [ 149.765625, -22.268764 ], [ 150.117188, -22.268764 ], [ 150.117188, -22.593726 ], [ 150.820312, -22.593726 ], [ 150.820312, -23.885838 ], [ 151.171875, -23.885838 ], [ 151.171875, -24.206890 ], [ 151.523438, -24.206890 ], [ 151.523438, -24.527135 ], [ 152.226562, -24.527135 ], [ 152.226562, -24.846565 ], [ 152.578125, -24.846565 ], [ 152.578125, -25.165173 ], [ 152.929688, -25.165173 ], [ 152.929688, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -27.059126 ], [ 152.929688, -27.059126 ], [ 152.929688, -27.683528 ], [ 153.281250, -27.683528 ], [ 153.281250, -27.994401 ], [ 153.632812, -27.994401 ], [ 153.632812, -29.228890 ], [ 153.281250, -29.228890 ], [ 153.281250, -30.145127 ], [ 152.929688, -30.145127 ], [ 152.929688, -32.249974 ], [ 152.578125, -32.249974 ], [ 152.578125, -32.842674 ], [ 152.226562, -32.842674 ], [ 152.226562, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -33.431441 ], [ 151.523438, -33.431441 ], [ 151.523438, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.885931 ], [ 150.820312, -34.885931 ], [ 150.820312, -35.460670 ], [ 150.468750, -35.460670 ], [ 150.468750, -36.031332 ], [ 150.117188, -36.031332 ], [ 150.117188, -37.718590 ], [ 148.359375, -37.718590 ], [ 148.359375, -37.996163 ], [ 147.656250, -37.996163 ], [ 147.656250, -38.272689 ], [ 147.304688, -38.272689 ], [ 147.304688, -38.548165 ], [ 146.953125, -38.548165 ], [ 146.953125, -38.822591 ], [ 146.601562, -38.822591 ], [ 146.601562, -39.095963 ], [ 145.898438, -39.095963 ], [ 145.898438, -38.822591 ], [ 145.546875, -38.822591 ], [ 145.546875, -38.548165 ], [ 144.843750, -38.548165 ], [ 144.843750, -38.272689 ], [ 145.195312, -38.272689 ], [ 145.195312, -37.996163 ], [ 144.492188, -37.996163 ], [ 144.492188, -38.272689 ], [ 144.140625, -38.272689 ], [ 144.140625, -38.548165 ], [ 143.789062, -38.548165 ], [ 143.789062, -38.822591 ], [ 142.734375, -38.822591 ], [ 142.734375, -38.548165 ], [ 142.031250, -38.548165 ], [ 142.031250, -38.272689 ], [ 140.976562, -38.272689 ], [ 140.976562, -37.996163 ], [ 140.273438, -37.996163 ], [ 140.273438, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -36.315125 ], [ 139.570312, -36.315125 ], [ 139.570312, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.746512 ], [ 138.164062, -35.746512 ], [ 138.164062, -35.460670 ], [ 138.515625, -35.460670 ], [ 138.515625, -34.885931 ], [ 137.812500, -34.885931 ], [ 137.812500, -35.173808 ], [ 137.109375, -35.173808 ], [ 137.109375, -34.885931 ], [ 137.460938, -34.885931 ], [ 137.460938, -34.016242 ], [ 137.812500, -34.016242 ], [ 137.812500, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.724340 ], [ 137.109375, -33.724340 ], [ 137.109375, -34.016242 ], [ 136.406250, -34.016242 ], [ 136.406250, -34.597042 ], [ 136.054688, -34.597042 ], [ 136.054688, -34.885931 ], [ 135.351562, -34.885931 ], [ 135.351562, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.137551 ], [ 133.945312, -33.137551 ], [ 133.945312, -32.842674 ], [ 134.296875, -32.842674 ], [ 134.296875, -32.546813 ], [ 133.593750, -32.546813 ], [ 133.593750, -32.249974 ], [ 132.890625, -32.249974 ], [ 132.890625, -31.952162 ], [ 131.835938, -31.952162 ], [ 131.835938, -31.653381 ], [ 131.484375, -31.653381 ], [ 131.484375, -31.353637 ], [ 130.781250, -31.353637 ], [ 130.781250, -31.653381 ], [ 129.023438, -31.653381 ], [ 129.023438, -31.952162 ], [ 127.968750, -31.952162 ], [ 127.968750, -32.249974 ], [ 126.210938, -32.249974 ], [ 126.210938, -32.546813 ], [ 125.507812, -32.546813 ], [ 125.507812, -32.842674 ], [ 124.101562, -32.842674 ], [ 124.101562, -33.724340 ], [ 123.750000, -33.724340 ], [ 123.750000, -34.016242 ], [ 121.640625, -34.016242 ], [ 121.640625, -33.724340 ], [ 121.289062, -33.724340 ], [ 121.289062, -34.016242 ], [ 119.882812, -34.016242 ], [ 119.882812, -34.307144 ], [ 119.531250, -34.307144 ], [ 119.531250, -34.597042 ], [ 119.179688, -34.597042 ], [ 119.179688, -34.885931 ], [ 118.476562, -34.885931 ], [ 118.476562, -35.173808 ], [ 117.421875, -35.173808 ], [ 117.421875, -34.885931 ], [ 116.367188, -34.885931 ], [ 116.367188, -34.597042 ], [ 115.664062, -34.597042 ], [ 115.664062, -34.307144 ], [ 114.960938, -34.307144 ], [ 114.960938, -33.724340 ], [ 115.664062, -33.724340 ], [ 115.664062, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -30.448674 ], [ 114.960938, -30.448674 ], [ 114.960938, -29.228890 ], [ 114.609375, -29.228890 ], [ 114.609375, -28.304381 ], [ 114.257812, -28.304381 ], [ 114.257812, -27.683528 ], [ 113.906250, -27.683528 ], [ 113.906250, -27.059126 ], [ 113.554688, -27.059126 ], [ 113.554688, -26.431228 ], [ 113.906250, -26.431228 ], [ 113.906250, -26.115986 ], [ 114.257812, -26.115986 ], [ 114.257812, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -25.165173 ], [ 113.554688, -25.165173 ], [ 113.554688, -23.241346 ], [ 113.906250, -23.241346 ], [ 113.906250, -22.268764 ], [ 114.609375, -22.268764 ], [ 114.609375, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -21.616579 ], [ 115.664062, -21.616579 ], [ 115.664062, -21.289374 ], [ 116.015625, -21.289374 ], [ 116.015625, -20.961440 ], [ 116.718750, -20.961440 ], [ 116.718750, -20.632784 ], [ 118.125000, -20.632784 ], [ 118.125000, -20.303418 ], [ 118.828125, -20.303418 ], [ 118.828125, -19.973349 ], [ 120.585938, -19.973349 ], [ 120.585938, -19.642588 ], [ 121.289062, -19.642588 ], [ 121.289062, -18.979026 ], [ 121.640625, -18.979026 ], [ 121.640625, -18.646245 ], [ 122.343750, -18.646245 ], [ 122.343750, -17.308688 ], [ 122.695312, -17.308688 ], [ 122.695312, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -16.972741 ], [ 123.398438, -16.972741 ], [ 123.398438, -16.299051 ], [ 124.101562, -16.299051 ], [ 124.101562, -15.961329 ], [ 124.453125, -15.961329 ], [ 124.453125, -15.284185 ], [ 124.804688, -15.284185 ], [ 124.804688, -14.944785 ], [ 125.156250, -14.944785 ], [ 125.156250, -14.604847 ], [ 125.859375, -14.604847 ], [ 125.859375, -14.264383 ], [ 126.562500, -14.264383 ], [ 126.562500, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.264383 ], [ 127.968750, -14.264383 ], [ 127.968750, -14.604847 ], [ 128.320312, -14.604847 ], [ 128.320312, -14.944785 ], [ 129.726562, -14.944785 ], [ 129.726562, -14.604847 ], [ 129.375000, -14.604847 ], [ 129.375000, -13.923404 ], [ 129.726562, -13.923404 ], [ 129.726562, -13.581921 ], [ 130.429688, -13.581921 ], [ 130.429688, -12.897489 ], [ 130.781250, -12.897489 ], [ 130.781250, -12.554564 ], [ 131.132812, -12.554564 ], [ 131.132812, -12.211180 ], [ 132.539062, -12.211180 ], [ 132.539062, -11.523088 ] ], [ [ 123.398438, -16.972741 ], [ 123.398438, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.972741 ], [ 123.398438, -16.972741 ] ] ], [ [ [ 113.906250, -26.115986 ], [ 113.554688, -26.115986 ], [ 113.554688, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -26.115986 ] ] ], [ [ [ 132.187500, -11.523088 ], [ 131.835938, -11.523088 ], [ 131.835938, -11.178402 ], [ 132.187500, -11.178402 ], [ 132.187500, -11.523088 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.007812, -40.713956 ], [ 148.007812, -41.508577 ], [ 148.359375, -41.508577 ], [ 148.359375, -42.293564 ], [ 148.007812, -42.293564 ], [ 148.007812, -42.811522 ], [ 147.656250, -42.811522 ], [ 147.656250, -43.068888 ], [ 146.953125, -43.068888 ], [ 146.953125, -43.580391 ], [ 145.898438, -43.580391 ], [ 145.898438, -43.325178 ], [ 145.546875, -43.325178 ], [ 145.546875, -42.811522 ], [ 145.195312, -42.811522 ], [ 145.195312, -41.771312 ], [ 144.843750, -41.771312 ], [ 144.843750, -41.244772 ], [ 144.492188, -41.244772 ], [ 144.492188, -40.713956 ], [ 145.546875, -40.713956 ], [ 145.546875, -40.979898 ], [ 147.304688, -40.979898 ], [ 147.304688, -40.713956 ], [ 148.007812, -40.713956 ] ] ], [ [ [ 142.734375, -10.833306 ], [ 142.734375, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.554564 ], [ 143.437500, -12.554564 ], [ 143.437500, -13.923404 ], [ 143.789062, -13.923404 ], [ 143.789062, -14.264383 ], [ 144.843750, -14.264383 ], [ 144.843750, -14.604847 ], [ 145.195312, -14.604847 ], [ 145.195312, -16.299051 ], [ 145.546875, -16.299051 ], [ 145.546875, -17.308688 ], [ 145.898438, -17.308688 ], [ 145.898438, -18.312811 ], [ 146.250000, -18.312811 ], [ 146.250000, -18.979026 ], [ 146.953125, -18.979026 ], [ 146.953125, -19.311143 ], [ 147.304688, -19.311143 ], [ 147.304688, -19.642588 ], [ 148.007812, -19.642588 ], [ 148.007812, -19.973349 ], [ 148.359375, -19.973349 ], [ 148.359375, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.616579 ], [ 149.414062, -21.616579 ], [ 149.414062, -22.268764 ], [ 150.468750, -22.268764 ], [ 150.468750, -22.917923 ], [ 150.820312, -22.917923 ], [ 150.820312, -23.563987 ], [ 151.171875, -23.563987 ], [ 151.171875, -23.885838 ], [ 151.523438, -23.885838 ], [ 151.523438, -24.206890 ], [ 151.875000, -24.206890 ], [ 151.875000, -24.527135 ], [ 152.226562, -24.527135 ], [ 152.226562, -25.165173 ], [ 152.578125, -25.165173 ], [ 152.578125, -25.482951 ], [ 152.929688, -25.482951 ], [ 152.929688, -27.683528 ], [ 153.281250, -27.683528 ], [ 153.281250, -29.840644 ], [ 152.929688, -29.840644 ], [ 152.929688, -31.052934 ], [ 152.578125, -31.052934 ], [ 152.578125, -31.952162 ], [ 152.226562, -31.952162 ], [ 152.226562, -32.842674 ], [ 151.523438, -32.842674 ], [ 151.523438, -33.431441 ], [ 151.171875, -33.431441 ], [ 151.171875, -34.016242 ], [ 150.820312, -34.016242 ], [ 150.820312, -34.885931 ], [ 150.468750, -34.885931 ], [ 150.468750, -35.460670 ], [ 150.117188, -35.460670 ], [ 150.117188, -36.031332 ], [ 149.765625, -36.031332 ], [ 149.765625, -37.439974 ], [ 149.414062, -37.439974 ], [ 149.414062, -37.718590 ], [ 148.007812, -37.718590 ], [ 148.007812, -37.996163 ], [ 147.304688, -37.996163 ], [ 147.304688, -38.272689 ], [ 146.953125, -38.272689 ], [ 146.953125, -38.548165 ], [ 146.601562, -38.548165 ], [ 146.601562, -38.822591 ], [ 145.546875, -38.822591 ], [ 145.546875, -38.548165 ], [ 144.843750, -38.548165 ], [ 144.843750, -37.996163 ], [ 144.140625, -37.996163 ], [ 144.140625, -38.272689 ], [ 143.789062, -38.272689 ], [ 143.789062, -38.548165 ], [ 142.734375, -38.548165 ], [ 142.734375, -38.272689 ], [ 140.625000, -38.272689 ], [ 140.625000, -37.996163 ], [ 140.273438, -37.996163 ], [ 140.273438, -37.439974 ], [ 139.921875, -37.439974 ], [ 139.921875, -36.879621 ], [ 139.570312, -36.879621 ], [ 139.570312, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.746512 ], [ 138.867188, -35.746512 ], [ 138.867188, -35.460670 ], [ 137.812500, -35.460670 ], [ 137.812500, -35.173808 ], [ 138.164062, -35.173808 ], [ 138.164062, -34.597042 ], [ 137.812500, -34.597042 ], [ 137.812500, -34.885931 ], [ 137.460938, -34.885931 ], [ 137.460938, -35.173808 ], [ 136.757812, -35.173808 ], [ 136.757812, -34.885931 ], [ 137.109375, -34.885931 ], [ 137.109375, -34.307144 ], [ 137.460938, -34.307144 ], [ 137.460938, -33.724340 ], [ 137.812500, -33.724340 ], [ 137.812500, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.431441 ], [ 137.109375, -33.431441 ], [ 137.109375, -33.724340 ], [ 136.757812, -33.724340 ], [ 136.757812, -34.016242 ], [ 136.054688, -34.016242 ], [ 136.054688, -34.597042 ], [ 135.703125, -34.597042 ], [ 135.703125, -34.885931 ], [ 135.351562, -34.885931 ], [ 135.351562, -34.597042 ], [ 135.000000, -34.597042 ], [ 135.000000, -33.724340 ], [ 134.648438, -33.724340 ], [ 134.648438, -33.431441 ], [ 134.296875, -33.431441 ], [ 134.296875, -33.137551 ], [ 133.945312, -33.137551 ], [ 133.945312, -32.546813 ], [ 133.593750, -32.546813 ], [ 133.593750, -32.249974 ], [ 132.890625, -32.249974 ], [ 132.890625, -31.952162 ], [ 131.835938, -31.952162 ], [ 131.835938, -31.653381 ], [ 131.132812, -31.653381 ], [ 131.132812, -31.353637 ], [ 129.023438, -31.353637 ], [ 129.023438, -31.653381 ], [ 127.968750, -31.653381 ], [ 127.968750, -31.952162 ], [ 127.265625, -31.952162 ], [ 127.265625, -32.249974 ], [ 126.210938, -32.249974 ], [ 126.210938, -31.952162 ], [ 125.859375, -31.952162 ], [ 125.859375, -32.249974 ], [ 125.156250, -32.249974 ], [ 125.156250, -32.546813 ], [ 124.804688, -32.546813 ], [ 124.804688, -32.842674 ], [ 124.101562, -32.842674 ], [ 124.101562, -33.137551 ], [ 123.750000, -33.137551 ], [ 123.750000, -33.724340 ], [ 119.882812, -33.724340 ], [ 119.882812, -34.016242 ], [ 119.531250, -34.016242 ], [ 119.531250, -34.307144 ], [ 118.828125, -34.307144 ], [ 118.828125, -34.597042 ], [ 118.476562, -34.597042 ], [ 118.476562, -34.885931 ], [ 116.015625, -34.885931 ], [ 116.015625, -34.597042 ], [ 115.312500, -34.597042 ], [ 115.312500, -34.307144 ], [ 114.960938, -34.307144 ], [ 114.960938, -33.431441 ], [ 115.664062, -33.431441 ], [ 115.664062, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -30.751278 ], [ 114.960938, -30.751278 ], [ 114.960938, -28.921631 ], [ 114.609375, -28.921631 ], [ 114.609375, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -27.059126 ], [ 113.554688, -27.059126 ], [ 113.554688, -26.745610 ], [ 113.203125, -26.745610 ], [ 113.203125, -26.431228 ], [ 113.554688, -26.431228 ], [ 113.554688, -26.115986 ], [ 113.203125, -26.115986 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -25.165173 ], [ 113.554688, -25.165173 ], [ 113.554688, -24.527135 ], [ 113.203125, -24.527135 ], [ 113.203125, -23.563987 ], [ 113.554688, -23.563987 ], [ 113.554688, -21.943046 ], [ 113.906250, -21.943046 ], [ 113.906250, -22.268764 ], [ 114.257812, -22.268764 ], [ 114.257812, -21.943046 ], [ 114.609375, -21.943046 ], [ 114.609375, -21.616579 ], [ 115.312500, -21.616579 ], [ 115.312500, -21.289374 ], [ 115.664062, -21.289374 ], [ 115.664062, -20.961440 ], [ 116.367188, -20.961440 ], [ 116.367188, -20.632784 ], [ 118.125000, -20.632784 ], [ 118.125000, -20.303418 ], [ 118.828125, -20.303418 ], [ 118.828125, -19.973349 ], [ 120.234375, -19.973349 ], [ 120.234375, -19.642588 ], [ 120.937500, -19.642588 ], [ 120.937500, -19.311143 ], [ 121.289062, -19.311143 ], [ 121.289062, -18.979026 ], [ 121.640625, -18.979026 ], [ 121.640625, -18.312811 ], [ 121.992188, -18.312811 ], [ 121.992188, -16.972741 ], [ 122.343750, -16.972741 ], [ 122.343750, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -16.972741 ], [ 123.750000, -16.972741 ], [ 123.750000, -16.636192 ], [ 123.398438, -16.636192 ], [ 123.398438, -16.299051 ], [ 124.101562, -16.299051 ], [ 124.101562, -15.284185 ], [ 124.804688, -15.284185 ], [ 124.804688, -14.944785 ], [ 125.156250, -14.944785 ], [ 125.156250, -14.604847 ], [ 125.507812, -14.604847 ], [ 125.507812, -14.264383 ], [ 125.859375, -14.264383 ], [ 125.859375, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.264383 ], [ 127.617188, -14.264383 ], [ 127.617188, -14.604847 ], [ 128.671875, -14.604847 ], [ 128.671875, -14.944785 ], [ 129.375000, -14.944785 ], [ 129.375000, -13.923404 ], [ 129.726562, -13.923404 ], [ 129.726562, -13.581921 ], [ 130.078125, -13.581921 ], [ 130.078125, -12.554564 ], [ 130.429688, -12.554564 ], [ 130.429688, -12.211180 ], [ 132.187500, -12.211180 ], [ 132.187500, -11.867351 ], [ 132.539062, -11.867351 ], [ 132.539062, -11.523088 ], [ 131.835938, -11.523088 ], [ 131.835938, -11.178402 ], [ 132.890625, -11.178402 ], [ 132.890625, -11.523088 ], [ 133.593750, -11.523088 ], [ 133.593750, -11.867351 ], [ 134.648438, -11.867351 ], [ 134.648438, -12.211180 ], [ 135.703125, -12.211180 ], [ 135.703125, -11.867351 ], [ 136.757812, -11.867351 ], [ 136.757812, -12.554564 ], [ 136.406250, -12.554564 ], [ 136.406250, -12.897489 ], [ 136.054688, -12.897489 ], [ 136.054688, -13.239945 ], [ 135.703125, -13.239945 ], [ 135.703125, -13.581921 ], [ 136.054688, -13.581921 ], [ 136.054688, -13.923404 ], [ 135.703125, -13.923404 ], [ 135.703125, -14.264383 ], [ 135.351562, -14.264383 ], [ 135.351562, -15.284185 ], [ 136.054688, -15.284185 ], [ 136.054688, -15.623037 ], [ 136.757812, -15.623037 ], [ 136.757812, -15.961329 ], [ 137.460938, -15.961329 ], [ 137.460938, -16.299051 ], [ 137.812500, -16.299051 ], [ 137.812500, -16.636192 ], [ 138.515625, -16.636192 ], [ 138.515625, -16.972741 ], [ 138.867188, -16.972741 ], [ 138.867188, -17.308688 ], [ 139.218750, -17.308688 ], [ 139.218750, -17.644022 ], [ 140.625000, -17.644022 ], [ 140.625000, -16.972741 ], [ 140.976562, -16.972741 ], [ 140.976562, -15.961329 ], [ 141.328125, -15.961329 ], [ 141.328125, -15.284185 ], [ 141.679688, -15.284185 ], [ 141.679688, -14.604847 ], [ 141.328125, -14.604847 ], [ 141.328125, -12.897489 ], [ 141.679688, -12.897489 ], [ 141.679688, -11.523088 ], [ 142.031250, -11.523088 ], [ 142.031250, -10.833306 ], [ 142.734375, -10.833306 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, -2.460181 ], [ 141.328125, -2.811371 ], [ 142.031250, -2.811371 ], [ 142.031250, -3.162456 ], [ 143.085938, -3.162456 ], [ 143.085938, -3.513421 ], [ 143.789062, -3.513421 ], [ 143.789062, -3.864255 ], [ 144.492188, -3.864255 ], [ 144.492188, -4.214943 ], [ 145.195312, -4.214943 ], [ 145.195312, -4.565474 ], [ 145.546875, -4.565474 ], [ 145.546875, -4.915833 ], [ 145.898438, -4.915833 ], [ 145.898438, -5.615986 ], [ 146.601562, -5.615986 ], [ 146.601562, -5.965754 ], [ 147.656250, -5.965754 ], [ 147.656250, -6.315299 ], [ 148.007812, -6.315299 ], [ 148.007812, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.013668 ], [ 147.304688, -7.013668 ], [ 147.304688, -7.710992 ], [ 147.656250, -7.710992 ], [ 147.656250, -8.059230 ], [ 148.007812, -8.059230 ], [ 148.007812, -8.407168 ], [ 148.359375, -8.407168 ], [ 148.359375, -9.102097 ], [ 149.414062, -9.102097 ], [ 149.414062, -9.795678 ], [ 150.117188, -9.795678 ], [ 150.117188, -10.141932 ], [ 150.820312, -10.141932 ], [ 150.820312, -10.487812 ], [ 149.062500, -10.487812 ], [ 149.062500, -10.141932 ], [ 147.656250, -10.141932 ], [ 147.656250, -9.795678 ], [ 147.304688, -9.795678 ], [ 147.304688, -9.449062 ], [ 146.601562, -9.449062 ], [ 146.601562, -9.102097 ], [ 146.250000, -9.102097 ], [ 146.250000, -8.407168 ], [ 145.898438, -8.407168 ], [ 145.898438, -8.059230 ], [ 145.195312, -8.059230 ], [ 145.195312, -7.710992 ], [ 144.492188, -7.710992 ], [ 144.492188, -8.059230 ], [ 143.789062, -8.059230 ], [ 143.789062, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.449062 ], [ 142.031250, -9.449062 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.460181 ], [ 141.328125, -2.460181 ] ] ], [ [ [ 152.226562, -4.214943 ], [ 152.226562, -5.266008 ], [ 151.875000, -5.266008 ], [ 151.875000, -5.615986 ], [ 151.523438, -5.615986 ], [ 151.523438, -5.965754 ], [ 150.820312, -5.965754 ], [ 150.820312, -6.315299 ], [ 149.062500, -6.315299 ], [ 149.062500, -5.965754 ], [ 148.359375, -5.965754 ], [ 148.359375, -5.266008 ], [ 148.710938, -5.266008 ], [ 148.710938, -5.615986 ], [ 149.765625, -5.615986 ], [ 149.765625, -5.266008 ], [ 150.117188, -5.266008 ], [ 150.117188, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -5.266008 ], [ 151.523438, -5.266008 ], [ 151.523438, -4.214943 ], [ 152.226562, -4.214943 ] ] ], [ [ [ 155.039062, -5.615986 ], [ 155.039062, -5.965754 ], [ 155.390625, -5.965754 ], [ 155.390625, -6.664608 ], [ 155.742188, -6.664608 ], [ 155.742188, -7.013668 ], [ 155.039062, -7.013668 ], [ 155.039062, -6.315299 ], [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ], [ 155.039062, -5.615986 ] ] ], [ [ [ 151.523438, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.513421 ], [ 152.578125, -3.513421 ], [ 152.578125, -3.864255 ], [ 151.875000, -3.864255 ], [ 151.875000, -3.513421 ], [ 151.523438, -3.513421 ], [ 151.523438, -3.162456 ] ] ], [ [ [ 152.578125, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.214943 ], [ 153.281250, -4.214943 ], [ 153.281250, -4.915833 ], [ 152.929688, -4.915833 ], [ 152.929688, -4.565474 ], [ 152.578125, -4.565474 ], [ 152.578125, -3.864255 ] ] ], [ [ [ 151.523438, -3.162456 ], [ 150.820312, -3.162456 ], [ 150.820312, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -3.162456 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.765625, -10.141932 ], [ 148.007812, -10.141932 ], [ 148.007812, -9.795678 ], [ 146.953125, -9.795678 ], [ 146.953125, -9.449062 ], [ 146.601562, -9.449062 ], [ 146.601562, -9.102097 ], [ 146.250000, -9.102097 ], [ 146.250000, -8.407168 ], [ 145.898438, -8.407168 ], [ 145.898438, -8.059230 ], [ 145.195312, -8.059230 ], [ 145.195312, -7.710992 ], [ 143.789062, -7.710992 ], [ 143.789062, -8.059230 ], [ 143.085938, -8.059230 ], [ 143.085938, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.460181 ], [ 141.328125, -2.460181 ], [ 141.328125, -2.811371 ], [ 142.031250, -2.811371 ], [ 142.031250, -3.162456 ], [ 143.437500, -3.162456 ], [ 143.437500, -3.513421 ], [ 144.492188, -3.513421 ], [ 144.492188, -3.864255 ], [ 144.843750, -3.864255 ], [ 144.843750, -4.214943 ], [ 145.195312, -4.214943 ], [ 145.195312, -4.565474 ], [ 145.546875, -4.565474 ], [ 145.546875, -4.915833 ], [ 145.898438, -4.915833 ], [ 145.898438, -5.615986 ], [ 146.601562, -5.615986 ], [ 146.601562, -5.965754 ], [ 147.304688, -5.965754 ], [ 147.304688, -6.315299 ], [ 147.656250, -6.315299 ], [ 147.656250, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.362467 ], [ 147.304688, -7.362467 ], [ 147.304688, -7.710992 ], [ 148.007812, -7.710992 ], [ 148.007812, -8.059230 ], [ 148.359375, -8.059230 ], [ 148.359375, -8.754795 ], [ 148.710938, -8.754795 ], [ 148.710938, -9.102097 ], [ 149.062500, -9.102097 ], [ 149.062500, -9.449062 ], [ 149.765625, -9.449062 ], [ 149.765625, -10.141932 ] ] ], [ [ [ 151.875000, -3.864255 ], [ 151.875000, -4.214943 ], [ 152.226562, -4.214943 ], [ 152.226562, -4.915833 ], [ 151.875000, -4.915833 ], [ 151.875000, -5.266008 ], [ 151.171875, -5.266008 ], [ 151.171875, -5.965754 ], [ 150.468750, -5.965754 ], [ 150.468750, -6.315299 ], [ 148.710938, -6.315299 ], [ 148.710938, -5.965754 ], [ 148.007812, -5.965754 ], [ 148.007812, -5.615986 ], [ 148.359375, -5.615986 ], [ 148.359375, -5.266008 ], [ 149.765625, -5.266008 ], [ 149.765625, -4.915833 ], [ 150.117188, -4.915833 ], [ 150.117188, -5.266008 ], [ 150.820312, -5.266008 ], [ 150.820312, -4.915833 ], [ 151.523438, -4.915833 ], [ 151.523438, -3.864255 ], [ 151.875000, -3.864255 ] ] ], [ [ [ 155.039062, -5.266008 ], [ 155.039062, -5.615986 ], [ 155.390625, -5.615986 ], [ 155.390625, -6.315299 ], [ 155.742188, -6.315299 ], [ 155.742188, -6.664608 ], [ 155.039062, -6.664608 ], [ 155.039062, -5.965754 ], [ 154.687500, -5.965754 ], [ 154.687500, -5.266008 ], [ 155.039062, -5.266008 ] ] ], [ [ [ 149.765625, -10.141932 ], [ 150.468750, -10.141932 ], [ 150.468750, -10.487812 ], [ 149.765625, -10.487812 ], [ 149.765625, -10.141932 ] ] ], [ [ [ 151.875000, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.513421 ], [ 151.875000, -3.513421 ], [ 151.875000, -3.162456 ] ] ], [ [ [ 152.578125, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.565474 ], [ 152.578125, -4.565474 ], [ 152.578125, -3.864255 ] ] ], [ [ [ 151.171875, -2.811371 ], [ 150.468750, -2.811371 ], [ 150.468750, -2.460181 ], [ 151.171875, -2.460181 ], [ 151.171875, -2.811371 ] ] ], [ [ [ 152.226562, -3.513421 ], [ 152.578125, -3.513421 ], [ 152.578125, -3.864255 ], [ 152.226562, -3.864255 ], [ 152.226562, -3.513421 ] ] ], [ [ [ 151.171875, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -3.162456 ], [ 151.171875, -3.162456 ], [ 151.171875, -2.811371 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.070312, -10.487812 ], [ 162.070312, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.718750, -10.487812 ], [ 162.070312, -10.487812 ] ] ], [ [ [ 160.664062, -9.449062 ], [ 160.664062, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.449062 ], [ 160.664062, -9.449062 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.015625, -8.754795 ], [ 161.367188, -8.754795 ], [ 161.367188, -9.449062 ], [ 161.718750, -9.449062 ], [ 161.718750, -9.795678 ], [ 161.015625, -9.795678 ], [ 161.015625, -9.102097 ], [ 160.664062, -9.102097 ], [ 160.664062, -8.407168 ], [ 161.015625, -8.407168 ] ] ], [ [ [ 159.257812, -8.059230 ], [ 159.609375, -8.059230 ], [ 159.609375, -8.407168 ], [ 159.257812, -8.407168 ], [ 159.257812, -8.059230 ] ] ], [ [ [ 157.148438, -7.013668 ], [ 157.148438, -7.362467 ], [ 156.796875, -7.362467 ], [ 156.796875, -7.013668 ], [ 157.148438, -7.013668 ] ] ], [ [ [ 158.906250, -8.059230 ], [ 158.554688, -8.059230 ], [ 158.554688, -7.710992 ], [ 158.906250, -7.710992 ], [ 158.906250, -8.059230 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.070312, -10.141932 ], [ 162.070312, -10.487812 ], [ 161.015625, -10.487812 ], [ 161.015625, -10.141932 ], [ 162.070312, -10.141932 ] ] ], [ [ [ 160.312500, -9.102097 ], [ 160.312500, -9.449062 ], [ 160.664062, -9.449062 ], [ 160.664062, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.102097 ], [ 160.312500, -9.102097 ] ] ], [ [ [ 160.664062, -8.754795 ], [ 161.015625, -8.754795 ], [ 161.015625, -9.102097 ], [ 160.664062, -9.102097 ], [ 160.664062, -8.754795 ] ] ], [ [ [ 158.906250, -7.362467 ], [ 158.906250, -7.710992 ], [ 159.609375, -7.710992 ], [ 159.609375, -8.407168 ], [ 158.906250, -8.407168 ], [ 158.906250, -8.059230 ], [ 158.554688, -8.059230 ], [ 158.554688, -7.710992 ], [ 158.203125, -7.710992 ], [ 158.203125, -7.362467 ], [ 158.906250, -7.362467 ] ] ], [ [ [ 160.664062, -8.407168 ], [ 160.312500, -8.407168 ], [ 160.312500, -8.059230 ], [ 160.664062, -8.059230 ], [ 160.664062, -8.407168 ] ] ], [ [ [ 156.796875, -7.013668 ], [ 157.500000, -7.013668 ], [ 157.500000, -7.362467 ], [ 156.796875, -7.362467 ], [ 156.796875, -7.013668 ] ] ], [ [ [ 156.796875, -7.013668 ], [ 156.445312, -7.013668 ], [ 156.445312, -6.664608 ], [ 156.796875, -6.664608 ], [ 156.796875, -7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.695312, -16.299051 ], [ 167.695312, -16.636192 ], [ 167.343750, -16.636192 ], [ 167.343750, -16.299051 ], [ 167.695312, -16.299051 ] ] ], [ [ [ 166.992188, -14.944785 ], [ 166.992188, -15.284185 ], [ 167.343750, -15.284185 ], [ 167.343750, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.944785 ], [ 166.992188, -14.944785 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.343750, -15.961329 ], [ 167.343750, -16.299051 ], [ 166.992188, -16.299051 ], [ 166.992188, -15.961329 ], [ 167.343750, -15.961329 ] ] ], [ [ [ 166.992188, -14.604847 ], [ 166.992188, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.944785 ], [ 166.289062, -14.944785 ], [ 166.289062, -14.604847 ], [ 166.992188, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, -19.973349 ], [ 164.531250, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.961440 ], [ 165.937500, -20.961440 ], [ 165.937500, -21.289374 ], [ 166.289062, -21.289374 ], [ 166.289062, -21.616579 ], [ 166.640625, -21.616579 ], [ 166.640625, -21.943046 ], [ 166.992188, -21.943046 ], [ 166.992188, -22.268764 ], [ 165.937500, -22.268764 ], [ 165.937500, -21.943046 ], [ 165.585938, -21.943046 ], [ 165.585938, -21.616579 ], [ 164.882812, -21.616579 ], [ 164.882812, -21.289374 ], [ 164.531250, -21.289374 ], [ 164.531250, -20.632784 ], [ 164.179688, -20.632784 ], [ 164.179688, -19.973349 ], [ 164.531250, -19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.179688, -19.973349 ], [ 164.179688, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.961440 ], [ 165.585938, -20.961440 ], [ 165.585938, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.616579 ], [ 166.289062, -21.616579 ], [ 166.289062, -21.943046 ], [ 166.992188, -21.943046 ], [ 166.992188, -22.268764 ], [ 165.937500, -22.268764 ], [ 165.937500, -21.943046 ], [ 165.234375, -21.943046 ], [ 165.234375, -21.616579 ], [ 164.882812, -21.616579 ], [ 164.882812, -21.289374 ], [ 164.531250, -21.289374 ], [ 164.531250, -20.961440 ], [ 164.179688, -20.961440 ], [ 164.179688, -20.632784 ], [ 163.828125, -20.632784 ], [ 163.828125, -19.973349 ], [ 164.179688, -19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.713956 ], [ 172.968750, -41.244772 ], [ 174.375000, -41.244772 ], [ 174.375000, -42.032974 ], [ 174.023438, -42.032974 ], [ 174.023438, -42.553080 ], [ 173.671875, -42.553080 ], [ 173.671875, -43.068888 ], [ 173.320312, -43.068888 ], [ 173.320312, -43.325178 ], [ 172.617188, -43.325178 ], [ 172.617188, -43.580391 ], [ 172.968750, -43.580391 ], [ 172.968750, -43.834527 ], [ 172.265625, -43.834527 ], [ 172.265625, -44.087585 ], [ 171.914062, -44.087585 ], [ 171.914062, -44.339565 ], [ 171.562500, -44.339565 ], [ 171.562500, -44.590467 ], [ 171.210938, -44.590467 ], [ 171.210938, -45.089036 ], [ 170.859375, -45.089036 ], [ 170.859375, -45.583290 ], [ 170.507812, -45.583290 ], [ 170.507812, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.558860 ], [ 167.695312, -46.558860 ], [ 167.695312, -46.316584 ], [ 166.640625, -46.316584 ], [ 166.640625, -45.583290 ], [ 166.992188, -45.583290 ], [ 166.992188, -45.089036 ], [ 167.343750, -45.089036 ], [ 167.343750, -44.840291 ], [ 167.695312, -44.840291 ], [ 167.695312, -44.590467 ], [ 168.046875, -44.590467 ], [ 168.046875, -44.339565 ], [ 168.398438, -44.339565 ], [ 168.398438, -44.087585 ], [ 169.101562, -44.087585 ], [ 169.101562, -43.834527 ], [ 169.804688, -43.834527 ], [ 169.804688, -43.580391 ], [ 170.156250, -43.580391 ], [ 170.156250, -43.325178 ], [ 170.507812, -43.325178 ], [ 170.507812, -43.068888 ], [ 170.859375, -43.068888 ], [ 170.859375, -42.811522 ], [ 171.210938, -42.811522 ], [ 171.210938, -42.293564 ], [ 171.562500, -42.293564 ], [ 171.562500, -41.771312 ], [ 171.914062, -41.771312 ], [ 171.914062, -41.244772 ], [ 172.265625, -41.244772 ], [ 172.265625, -40.979898 ], [ 172.617188, -40.979898 ], [ 172.617188, -40.713956 ], [ 172.968750, -40.713956 ] ] ], [ [ [ 173.320312, -34.597042 ], [ 173.320312, -34.885931 ], [ 173.671875, -34.885931 ], [ 173.671875, -35.173808 ], [ 174.375000, -35.173808 ], [ 174.375000, -35.746512 ], [ 174.726562, -35.746512 ], [ 174.726562, -36.315125 ], [ 175.078125, -36.315125 ], [ 175.078125, -36.879621 ], [ 175.781250, -36.879621 ], [ 175.781250, -37.160317 ], [ 176.132812, -37.160317 ], [ 176.132812, -37.718590 ], [ 176.484375, -37.718590 ], [ 176.484375, -37.996163 ], [ 177.890625, -37.996163 ], [ 177.890625, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -38.272689 ], [ 178.242188, -38.272689 ], [ 178.242188, -38.822591 ], [ 177.890625, -38.822591 ], [ 177.890625, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.368279 ], [ 176.835938, -39.368279 ], [ 176.835938, -39.639538 ], [ 177.187500, -39.639538 ], [ 177.187500, -40.178873 ], [ 176.835938, -40.178873 ], [ 176.835938, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.771312 ], [ 175.078125, -41.771312 ], [ 175.078125, -41.508577 ], [ 174.726562, -41.508577 ], [ 174.726562, -40.979898 ], [ 175.078125, -40.979898 ], [ 175.078125, -40.178873 ], [ 174.726562, -40.178873 ], [ 174.726562, -39.909736 ], [ 174.023438, -39.909736 ], [ 174.023438, -39.639538 ], [ 173.671875, -39.639538 ], [ 173.671875, -39.368279 ], [ 174.023438, -39.368279 ], [ 174.023438, -39.095963 ], [ 174.726562, -39.095963 ], [ 174.726562, -37.160317 ], [ 174.375000, -37.160317 ], [ 174.375000, -36.597889 ], [ 174.023438, -36.597889 ], [ 174.023438, -36.315125 ], [ 173.671875, -36.315125 ], [ 173.671875, -36.031332 ], [ 173.320312, -36.031332 ], [ 173.320312, -35.460670 ], [ 172.968750, -35.460670 ], [ 172.968750, -34.885931 ], [ 172.617188, -34.885931 ], [ 172.617188, -34.597042 ], [ 173.320312, -34.597042 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.713956 ], [ 172.968750, -41.244772 ], [ 173.320312, -41.244772 ], [ 173.320312, -40.979898 ], [ 174.023438, -40.979898 ], [ 174.023438, -42.032974 ], [ 173.671875, -42.032974 ], [ 173.671875, -42.293564 ], [ 173.320312, -42.293564 ], [ 173.320312, -42.811522 ], [ 172.968750, -42.811522 ], [ 172.968750, -43.068888 ], [ 172.617188, -43.068888 ], [ 172.617188, -43.580391 ], [ 172.968750, -43.580391 ], [ 172.968750, -43.834527 ], [ 171.914062, -43.834527 ], [ 171.914062, -44.087585 ], [ 171.210938, -44.087585 ], [ 171.210938, -44.590467 ], [ 170.859375, -44.590467 ], [ 170.859375, -45.336702 ], [ 170.507812, -45.336702 ], [ 170.507812, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.558860 ], [ 168.046875, -46.558860 ], [ 168.046875, -46.316584 ], [ 167.695312, -46.316584 ], [ 167.695312, -46.073231 ], [ 166.289062, -46.073231 ], [ 166.289062, -45.828799 ], [ 166.640625, -45.828799 ], [ 166.640625, -45.336702 ], [ 166.992188, -45.336702 ], [ 166.992188, -45.089036 ], [ 167.343750, -45.089036 ], [ 167.343750, -44.590467 ], [ 167.695312, -44.590467 ], [ 167.695312, -44.339565 ], [ 168.046875, -44.339565 ], [ 168.046875, -44.087585 ], [ 168.750000, -44.087585 ], [ 168.750000, -43.834527 ], [ 169.101562, -43.834527 ], [ 169.101562, -43.580391 ], [ 169.453125, -43.580391 ], [ 169.453125, -43.325178 ], [ 169.804688, -43.325178 ], [ 169.804688, -43.068888 ], [ 170.507812, -43.068888 ], [ 170.507812, -42.553080 ], [ 170.859375, -42.553080 ], [ 170.859375, -42.293564 ], [ 171.210938, -42.293564 ], [ 171.210938, -41.771312 ], [ 171.562500, -41.771312 ], [ 171.562500, -41.508577 ], [ 171.914062, -41.508577 ], [ 171.914062, -40.713956 ], [ 172.968750, -40.713956 ] ] ], [ [ [ 172.968750, -34.307144 ], [ 172.968750, -34.597042 ], [ 173.320312, -34.597042 ], [ 173.320312, -35.173808 ], [ 174.023438, -35.173808 ], [ 174.023438, -35.746512 ], [ 174.375000, -35.746512 ], [ 174.375000, -36.315125 ], [ 174.726562, -36.315125 ], [ 174.726562, -36.879621 ], [ 175.078125, -36.879621 ], [ 175.078125, -36.597889 ], [ 175.781250, -36.597889 ], [ 175.781250, -37.718590 ], [ 177.890625, -37.718590 ], [ 177.890625, -37.439974 ], [ 178.242188, -37.439974 ], [ 178.242188, -38.822591 ], [ 177.890625, -38.822591 ], [ 177.890625, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.368279 ], [ 176.835938, -39.368279 ], [ 176.835938, -40.178873 ], [ 176.484375, -40.178873 ], [ 176.484375, -40.713956 ], [ 176.132812, -40.713956 ], [ 176.132812, -41.244772 ], [ 175.781250, -41.244772 ], [ 175.781250, -41.508577 ], [ 174.726562, -41.508577 ], [ 174.726562, -40.713956 ], [ 175.078125, -40.713956 ], [ 175.078125, -40.178873 ], [ 174.726562, -40.178873 ], [ 174.726562, -39.909736 ], [ 174.375000, -39.909736 ], [ 174.375000, -39.639538 ], [ 173.671875, -39.639538 ], [ 173.671875, -39.095963 ], [ 174.023438, -39.095963 ], [ 174.023438, -38.822591 ], [ 174.375000, -38.822591 ], [ 174.375000, -38.272689 ], [ 174.726562, -38.272689 ], [ 174.726562, -37.718590 ], [ 174.375000, -37.718590 ], [ 174.375000, -36.879621 ], [ 174.023438, -36.879621 ], [ 174.023438, -36.315125 ], [ 173.671875, -36.315125 ], [ 173.671875, -36.031332 ], [ 173.320312, -36.031332 ], [ 173.320312, -35.460670 ], [ 172.968750, -35.460670 ], [ 172.968750, -34.885931 ], [ 172.617188, -34.885931 ], [ 172.617188, -34.307144 ], [ 172.968750, -34.307144 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.132812, 42.811522 ], [ 131.132812, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 42.811522 ], [ 131.132812, 42.811522 ] ] ], [ [ [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.366837 ], [ 181.406250, 65.366837 ], [ 181.406250, 65.658275 ], [ 181.054688, 65.658275 ], [ 181.054688, 65.946472 ], [ 180.703125, 65.946472 ], [ 180.703125, 65.802776 ], [ 180.000000, 65.802776 ], [ 180.000000, 65.658275 ], [ 180.351562, 65.658275 ], [ 180.351562, 65.366837 ], [ 180.703125, 65.366837 ], [ 180.703125, 65.219894 ], [ 180.351562, 65.219894 ], [ 180.351562, 64.923542 ], [ 180.000000, 64.923542 ], [ 180.000000, 64.774125 ], [ 179.648438, 64.774125 ], [ 179.648438, 64.623877 ], [ 178.945312, 64.623877 ], [ 178.945312, 64.472794 ], [ 177.890625, 64.472794 ], [ 177.890625, 64.168107 ], [ 178.242188, 64.168107 ], [ 178.242188, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.391522 ], [ 178.945312, 63.391522 ], [ 178.945312, 63.074866 ], [ 179.296875, 63.074866 ], [ 179.296875, 62.754726 ], [ 179.648438, 62.754726 ], [ 179.648438, 62.431074 ], [ 179.296875, 62.431074 ], [ 179.296875, 62.267923 ], [ 178.593750, 62.267923 ], [ 178.593750, 62.431074 ], [ 177.890625, 62.431074 ], [ 177.890625, 62.593341 ], [ 177.539062, 62.593341 ], [ 177.539062, 62.431074 ], [ 176.835938, 62.431074 ], [ 176.835938, 62.267923 ], [ 176.484375, 62.267923 ], [ 176.484375, 62.103883 ], [ 175.781250, 62.103883 ], [ 175.781250, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.773123 ], [ 174.375000, 61.773123 ], [ 174.375000, 61.606396 ], [ 173.671875, 61.606396 ], [ 173.671875, 61.438767 ], [ 173.320312, 61.438767 ], [ 173.320312, 61.270233 ], [ 172.968750, 61.270233 ], [ 172.968750, 61.100789 ], [ 172.617188, 61.100789 ], [ 172.617188, 60.930432 ], [ 172.265625, 60.930432 ], [ 172.265625, 60.759160 ], [ 171.914062, 60.759160 ], [ 171.914062, 60.586967 ], [ 171.210938, 60.586967 ], [ 171.210938, 60.413852 ], [ 170.859375, 60.413852 ], [ 170.859375, 60.239811 ], [ 170.507812, 60.239811 ], [ 170.507812, 59.888937 ], [ 169.804688, 59.888937 ], [ 169.804688, 60.064840 ], [ 169.453125, 60.064840 ], [ 169.453125, 60.239811 ], [ 169.101562, 60.239811 ], [ 169.101562, 60.413852 ], [ 168.046875, 60.413852 ], [ 168.046875, 60.239811 ], [ 167.695312, 60.239811 ], [ 167.695312, 60.064840 ], [ 167.343750, 60.064840 ], [ 167.343750, 59.888937 ], [ 166.640625, 59.888937 ], [ 166.640625, 59.712097 ], [ 166.289062, 59.712097 ], [ 166.289062, 59.888937 ], [ 165.937500, 59.888937 ], [ 165.937500, 60.064840 ], [ 165.585938, 60.064840 ], [ 165.585938, 59.888937 ], [ 165.234375, 59.888937 ], [ 165.234375, 59.712097 ], [ 163.828125, 59.712097 ], [ 163.828125, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.995311 ], [ 162.773438, 58.995311 ], [ 162.773438, 58.631217 ], [ 162.421875, 58.631217 ], [ 162.421875, 58.263287 ], [ 162.070312, 58.263287 ], [ 162.070312, 57.891497 ], [ 162.421875, 57.891497 ], [ 162.421875, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.977614 ], [ 162.070312, 54.977614 ], [ 162.070312, 54.775346 ], [ 161.718750, 54.775346 ], [ 161.718750, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 53.748711 ], [ 159.960938, 53.748711 ], [ 159.960938, 53.120405 ], [ 159.609375, 53.120405 ], [ 159.609375, 52.908902 ], [ 158.554688, 52.908902 ], [ 158.554688, 52.268157 ], [ 158.203125, 52.268157 ], [ 158.203125, 51.618017 ], [ 157.851562, 51.618017 ], [ 157.851562, 51.399206 ], [ 157.500000, 51.399206 ], [ 157.500000, 51.179343 ], [ 157.148438, 51.179343 ], [ 157.148438, 50.958427 ], [ 156.796875, 50.958427 ], [ 156.796875, 51.179343 ], [ 156.445312, 51.179343 ], [ 156.445312, 52.268157 ], [ 156.093750, 52.268157 ], [ 156.093750, 53.540307 ], [ 155.742188, 53.540307 ], [ 155.742188, 54.775346 ], [ 155.390625, 54.775346 ], [ 155.390625, 55.973798 ], [ 155.742188, 55.973798 ], [ 155.742188, 56.752723 ], [ 156.093750, 56.752723 ], [ 156.093750, 56.944974 ], [ 156.445312, 56.944974 ], [ 156.445312, 57.136239 ], [ 156.796875, 57.136239 ], [ 156.796875, 57.891497 ], [ 157.851562, 57.891497 ], [ 157.851562, 58.077876 ], [ 158.554688, 58.077876 ], [ 158.554688, 58.263287 ], [ 158.906250, 58.263287 ], [ 158.906250, 58.447733 ], [ 159.257812, 58.447733 ], [ 159.257812, 58.813742 ], [ 159.609375, 58.813742 ], [ 159.609375, 58.995311 ], [ 159.960938, 58.995311 ], [ 159.960938, 59.175928 ], [ 160.312500, 59.175928 ], [ 160.312500, 59.355596 ], [ 160.664062, 59.355596 ], [ 160.664062, 59.712097 ], [ 161.015625, 59.712097 ], [ 161.015625, 59.888937 ], [ 161.367188, 59.888937 ], [ 161.367188, 60.239811 ], [ 161.718750, 60.239811 ], [ 161.718750, 60.413852 ], [ 162.070312, 60.413852 ], [ 162.070312, 60.586967 ], [ 162.773438, 60.586967 ], [ 162.773438, 60.759160 ], [ 163.125000, 60.759160 ], [ 163.125000, 60.930432 ], [ 163.828125, 60.930432 ], [ 163.828125, 61.438767 ], [ 164.179688, 61.438767 ], [ 164.179688, 62.103883 ], [ 164.531250, 62.103883 ], [ 164.531250, 62.593341 ], [ 164.179688, 62.593341 ], [ 164.179688, 62.431074 ], [ 163.125000, 62.431074 ], [ 163.125000, 61.938950 ], [ 162.773438, 61.938950 ], [ 162.773438, 61.438767 ], [ 162.421875, 61.438767 ], [ 162.421875, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 61.100789 ], [ 161.367188, 61.100789 ], [ 161.367188, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.759160 ], [ 160.312500, 60.759160 ], [ 160.312500, 60.586967 ], [ 159.960938, 60.586967 ], [ 159.960938, 60.759160 ], [ 159.609375, 60.759160 ], [ 159.609375, 61.438767 ], [ 159.257812, 61.438767 ], [ 159.257812, 61.773123 ], [ 158.906250, 61.773123 ], [ 158.906250, 61.606396 ], [ 157.500000, 61.606396 ], [ 157.500000, 61.438767 ], [ 156.796875, 61.438767 ], [ 156.796875, 61.270233 ], [ 156.445312, 61.270233 ], [ 156.445312, 60.930432 ], [ 156.093750, 60.930432 ], [ 156.093750, 60.759160 ], [ 155.742188, 60.759160 ], [ 155.742188, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.239811 ], [ 155.039062, 60.239811 ], [ 155.039062, 60.064840 ], [ 154.687500, 60.064840 ], [ 154.687500, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 58.995311 ], [ 153.632812, 58.995311 ], [ 153.632812, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 150.117188, 59.534318 ], [ 150.117188, 59.712097 ], [ 149.765625, 59.712097 ], [ 149.765625, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.355596 ], [ 149.062500, 59.355596 ], [ 149.062500, 59.175928 ], [ 146.953125, 59.175928 ], [ 146.953125, 59.355596 ], [ 144.843750, 59.355596 ], [ 144.843750, 59.175928 ], [ 143.085938, 59.175928 ], [ 143.085938, 58.995311 ], [ 142.031250, 58.995311 ], [ 142.031250, 58.813742 ], [ 141.679688, 58.813742 ], [ 141.679688, 58.631217 ], [ 141.328125, 58.631217 ], [ 141.328125, 58.447733 ], [ 140.976562, 58.447733 ], [ 140.976562, 58.263287 ], [ 140.625000, 58.263287 ], [ 140.625000, 58.077876 ], [ 140.273438, 58.077876 ], [ 140.273438, 57.704147 ], [ 139.921875, 57.704147 ], [ 139.921875, 57.515823 ], [ 139.570312, 57.515823 ], [ 139.570312, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 57.136239 ], [ 138.867188, 57.136239 ], [ 138.867188, 56.944974 ], [ 138.515625, 56.944974 ], [ 138.515625, 56.752723 ], [ 138.164062, 56.752723 ], [ 138.164062, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 56.365250 ], [ 137.460938, 56.365250 ], [ 137.460938, 56.170023 ], [ 137.109375, 56.170023 ], [ 137.109375, 55.973798 ], [ 136.757812, 55.973798 ], [ 136.757812, 55.578345 ], [ 136.406250, 55.578345 ], [ 136.406250, 55.379110 ], [ 136.054688, 55.379110 ], [ 136.054688, 55.178868 ], [ 135.703125, 55.178868 ], [ 135.703125, 54.977614 ], [ 135.351562, 54.977614 ], [ 135.351562, 54.775346 ], [ 135.703125, 54.775346 ], [ 135.703125, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.162434 ], [ 137.109375, 54.162434 ], [ 137.109375, 53.956086 ], [ 137.460938, 53.956086 ], [ 137.460938, 53.748711 ], [ 138.515625, 53.748711 ], [ 138.515625, 53.956086 ], [ 138.867188, 53.956086 ], [ 138.867188, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.956086 ], [ 140.273438, 53.956086 ], [ 140.273438, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 53.330873 ], [ 140.976562, 53.330873 ], [ 140.976562, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 51.835778 ], [ 140.976562, 51.835778 ], [ 140.976562, 51.399206 ], [ 140.625000, 51.399206 ], [ 140.625000, 49.610710 ], [ 140.273438, 49.610710 ], [ 140.273438, 48.690960 ], [ 139.921875, 48.690960 ], [ 139.921875, 48.224673 ], [ 139.570312, 48.224673 ], [ 139.570312, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.517201 ], [ 138.867188, 47.517201 ], [ 138.867188, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.558860 ], [ 138.164062, 46.558860 ], [ 138.164062, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.828799 ], [ 137.460938, 45.828799 ], [ 137.460938, 45.336702 ], [ 137.109375, 45.336702 ], [ 137.109375, 45.089036 ], [ 136.757812, 45.089036 ], [ 136.757812, 44.840291 ], [ 136.406250, 44.840291 ], [ 136.406250, 44.590467 ], [ 136.054688, 44.590467 ], [ 136.054688, 44.339565 ], [ 135.703125, 44.339565 ], [ 135.703125, 44.087585 ], [ 135.351562, 44.087585 ], [ 135.351562, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.068888 ], [ 134.296875, 43.068888 ], [ 134.296875, 42.811522 ], [ 132.539062, 42.811522 ], [ 132.539062, 43.068888 ], [ 131.835938, 43.068888 ], [ 131.835938, 42.811522 ], [ 131.132812, 42.811522 ], [ 131.132812, 45.089036 ], [ 131.835938, 45.089036 ], [ 131.835938, 45.336702 ], [ 132.187500, 45.336702 ], [ 132.187500, 45.089036 ], [ 133.242188, 45.089036 ], [ 133.242188, 45.336702 ], [ 133.593750, 45.336702 ], [ 133.593750, 45.828799 ], [ 133.945312, 45.828799 ], [ 133.945312, 47.279229 ], [ 134.648438, 47.279229 ], [ 134.648438, 47.989922 ], [ 135.000000, 47.989922 ], [ 135.000000, 48.458352 ], [ 134.296875, 48.458352 ], [ 134.296875, 48.224673 ], [ 133.242188, 48.224673 ], [ 133.242188, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 47.754098 ], [ 131.132812, 47.754098 ], [ 131.132812, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.429688, 48.458352 ], [ 130.429688, 48.690960 ], [ 130.078125, 48.690960 ], [ 130.078125, 48.922499 ], [ 129.726562, 48.922499 ], [ 129.726562, 49.152970 ], [ 129.375000, 49.152970 ], [ 129.375000, 49.382373 ], [ 128.671875, 49.382373 ], [ 128.671875, 49.610710 ], [ 127.968750, 49.610710 ], [ 127.968750, 49.837982 ], [ 127.617188, 49.837982 ], [ 127.617188, 50.289339 ], [ 127.265625, 50.289339 ], [ 127.265625, 50.958427 ], [ 126.914062, 50.958427 ], [ 126.914062, 51.618017 ], [ 126.562500, 51.618017 ], [ 126.562500, 52.052490 ], [ 126.210938, 52.052490 ], [ 126.210938, 52.482780 ], [ 125.859375, 52.482780 ], [ 125.859375, 52.696361 ], [ 125.507812, 52.696361 ], [ 125.507812, 52.908902 ], [ 125.156250, 52.908902 ], [ 125.156250, 53.120405 ], [ 124.453125, 53.120405 ], [ 124.453125, 53.330873 ], [ 123.750000, 53.330873 ], [ 123.750000, 53.540307 ], [ 123.046875, 53.540307 ], [ 123.046875, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 53.120405 ], [ 120.585938, 53.120405 ], [ 120.585938, 52.696361 ], [ 120.234375, 52.696361 ], [ 120.234375, 52.482780 ], [ 120.585938, 52.482780 ], [ 120.585938, 51.835778 ], [ 120.234375, 51.835778 ], [ 120.234375, 51.399206 ], [ 119.882812, 51.399206 ], [ 119.882812, 50.958427 ], [ 119.531250, 50.958427 ], [ 119.531250, 50.513427 ], [ 119.179688, 50.513427 ], [ 119.179688, 49.837982 ], [ 118.476562, 49.837982 ], [ 118.476562, 49.610710 ], [ 117.070312, 49.610710 ], [ 117.070312, 49.837982 ], [ 114.960938, 49.837982 ], [ 114.960938, 50.064192 ], [ 113.906250, 50.064192 ], [ 113.906250, 49.837982 ], [ 113.203125, 49.837982 ], [ 113.203125, 49.610710 ], [ 112.500000, 49.610710 ], [ 112.500000, 49.382373 ], [ 111.445312, 49.382373 ], [ 111.445312, 49.152970 ], [ 109.687500, 49.152970 ], [ 109.687500, 49.382373 ], [ 108.281250, 49.382373 ], [ 108.281250, 49.610710 ], [ 107.929688, 49.610710 ], [ 107.929688, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 50.064192 ], [ 106.875000, 50.064192 ], [ 106.875000, 50.289339 ], [ 106.171875, 50.289339 ], [ 106.171875, 50.513427 ], [ 105.468750, 50.513427 ], [ 105.468750, 50.289339 ], [ 104.414062, 50.289339 ], [ 104.414062, 50.064192 ], [ 103.007812, 50.064192 ], [ 103.007812, 50.289339 ], [ 102.304688, 50.289339 ], [ 102.304688, 50.736455 ], [ 101.953125, 50.736455 ], [ 101.953125, 51.179343 ], [ 101.601562, 51.179343 ], [ 101.601562, 51.399206 ], [ 100.898438, 51.399206 ], [ 100.898438, 51.618017 ], [ 99.492188, 51.618017 ], [ 99.492188, 51.835778 ], [ 98.437500, 51.835778 ], [ 98.437500, 51.399206 ], [ 98.085938, 51.399206 ], [ 98.085938, 50.958427 ], [ 97.734375, 50.958427 ], [ 97.734375, 50.736455 ], [ 98.085938, 50.736455 ], [ 98.085938, 50.289339 ], [ 97.734375, 50.289339 ], [ 97.734375, 49.837982 ], [ 96.328125, 49.837982 ], [ 96.328125, 50.064192 ], [ 94.570312, 50.064192 ], [ 94.570312, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 50.513427 ], [ 92.460938, 50.513427 ], [ 92.460938, 50.736455 ], [ 92.109375, 50.736455 ], [ 92.109375, 50.513427 ], [ 91.406250, 50.513427 ], [ 91.406250, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.382373 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ], [ [ 177.890625, 64.472794 ], [ 177.890625, 64.623877 ], [ 177.539062, 64.623877 ], [ 177.539062, 64.472794 ], [ 177.890625, 64.472794 ] ] ], [ [ [ 142.734375, 53.956086 ], [ 143.085938, 53.956086 ], [ 143.085938, 51.399206 ], [ 143.437500, 51.399206 ], [ 143.437500, 50.958427 ], [ 143.789062, 50.958427 ], [ 143.789062, 50.289339 ], [ 144.140625, 50.289339 ], [ 144.140625, 49.382373 ], [ 144.492188, 49.382373 ], [ 144.492188, 48.922499 ], [ 143.789062, 48.922499 ], [ 143.789062, 49.152970 ], [ 143.085938, 49.152970 ], [ 143.085938, 48.458352 ], [ 142.734375, 48.458352 ], [ 142.734375, 47.517201 ], [ 143.085938, 47.517201 ], [ 143.085938, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.073231 ], [ 143.085938, 46.073231 ], [ 143.085938, 46.558860 ], [ 142.382812, 46.558860 ], [ 142.382812, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 51.399206 ], [ 141.679688, 51.399206 ], [ 141.679688, 53.330873 ], [ 142.031250, 53.330873 ], [ 142.031250, 53.540307 ], [ 142.734375, 53.540307 ], [ 142.734375, 53.956086 ] ] ], [ [ [ 142.734375, 53.956086 ], [ 142.382812, 53.956086 ], [ 142.382812, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 53.956086 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.512963 ], [ 181.406250, 65.512963 ], [ 181.406250, 65.658275 ], [ 181.054688, 65.658275 ], [ 181.054688, 66.089364 ], [ 180.351562, 66.089364 ], [ 180.351562, 65.946472 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.658275 ], [ 180.351562, 65.658275 ], [ 180.351562, 65.219894 ], [ 180.000000, 65.219894 ], [ 180.000000, 65.072130 ], [ 179.648438, 65.072130 ], [ 179.648438, 64.923542 ], [ 179.296875, 64.923542 ], [ 179.296875, 64.774125 ], [ 178.945312, 64.774125 ], [ 178.945312, 64.623877 ], [ 177.187500, 64.623877 ], [ 177.187500, 64.472794 ], [ 177.539062, 64.472794 ], [ 177.539062, 64.320872 ], [ 177.890625, 64.320872 ], [ 177.890625, 64.168107 ], [ 178.242188, 64.168107 ], [ 178.242188, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.233627 ], [ 178.945312, 63.233627 ], [ 178.945312, 63.074866 ], [ 179.296875, 63.074866 ], [ 179.296875, 62.431074 ], [ 177.890625, 62.431074 ], [ 177.890625, 62.593341 ], [ 177.187500, 62.593341 ], [ 177.187500, 62.431074 ], [ 176.484375, 62.431074 ], [ 176.484375, 62.267923 ], [ 176.132812, 62.267923 ], [ 176.132812, 62.103883 ], [ 175.429688, 62.103883 ], [ 175.429688, 61.938950 ], [ 174.726562, 61.938950 ], [ 174.726562, 61.773123 ], [ 173.671875, 61.773123 ], [ 173.671875, 61.606396 ], [ 173.320312, 61.606396 ], [ 173.320312, 61.438767 ], [ 172.617188, 61.438767 ], [ 172.617188, 61.270233 ], [ 172.265625, 61.270233 ], [ 172.265625, 61.100789 ], [ 171.914062, 61.100789 ], [ 171.914062, 60.930432 ], [ 171.562500, 60.930432 ], [ 171.562500, 60.759160 ], [ 171.210938, 60.759160 ], [ 171.210938, 60.586967 ], [ 170.859375, 60.586967 ], [ 170.859375, 60.413852 ], [ 170.507812, 60.413852 ], [ 170.507812, 60.064840 ], [ 170.156250, 60.064840 ], [ 170.156250, 59.888937 ], [ 169.804688, 59.888937 ], [ 169.804688, 60.064840 ], [ 169.453125, 60.064840 ], [ 169.453125, 60.239811 ], [ 169.101562, 60.239811 ], [ 169.101562, 60.413852 ], [ 168.046875, 60.413852 ], [ 168.046875, 60.239811 ], [ 167.343750, 60.239811 ], [ 167.343750, 60.064840 ], [ 166.640625, 60.064840 ], [ 166.640625, 59.888937 ], [ 165.937500, 59.888937 ], [ 165.937500, 60.064840 ], [ 164.882812, 60.064840 ], [ 164.882812, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 59.175928 ], [ 162.773438, 59.175928 ], [ 162.773438, 58.813742 ], [ 162.421875, 58.813742 ], [ 162.421875, 58.631217 ], [ 162.070312, 58.631217 ], [ 162.070312, 58.263287 ], [ 161.718750, 58.263287 ], [ 161.718750, 57.891497 ], [ 162.070312, 57.891497 ], [ 162.070312, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.944974 ], [ 162.773438, 56.944974 ], [ 162.773438, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.973798 ], [ 161.718750, 55.973798 ], [ 161.718750, 55.578345 ], [ 161.367188, 55.578345 ], [ 161.367188, 55.178868 ], [ 161.718750, 55.178868 ], [ 161.718750, 54.977614 ], [ 162.070312, 54.977614 ], [ 162.070312, 54.775346 ], [ 161.367188, 54.775346 ], [ 161.367188, 54.572062 ], [ 160.664062, 54.572062 ], [ 160.664062, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 53.748711 ], [ 159.960938, 53.748711 ], [ 159.960938, 53.330873 ], [ 159.257812, 53.330873 ], [ 159.257812, 53.120405 ], [ 158.203125, 53.120405 ], [ 158.203125, 51.835778 ], [ 157.851562, 51.835778 ], [ 157.851562, 51.618017 ], [ 157.148438, 51.618017 ], [ 157.148438, 51.399206 ], [ 156.796875, 51.399206 ], [ 156.796875, 51.179343 ], [ 156.445312, 51.179343 ], [ 156.445312, 51.399206 ], [ 156.093750, 51.399206 ], [ 156.093750, 52.482780 ], [ 155.742188, 52.482780 ], [ 155.742188, 54.367759 ], [ 155.390625, 54.367759 ], [ 155.390625, 56.170023 ], [ 155.742188, 56.170023 ], [ 155.742188, 56.944974 ], [ 156.093750, 56.944974 ], [ 156.093750, 57.326521 ], [ 156.445312, 57.326521 ], [ 156.445312, 57.704147 ], [ 156.796875, 57.704147 ], [ 156.796875, 57.891497 ], [ 157.851562, 57.891497 ], [ 157.851562, 58.077876 ], [ 158.554688, 58.077876 ], [ 158.554688, 58.447733 ], [ 158.906250, 58.447733 ], [ 158.906250, 58.631217 ], [ 159.257812, 58.631217 ], [ 159.257812, 58.813742 ], [ 159.609375, 58.813742 ], [ 159.609375, 59.175928 ], [ 159.960938, 59.175928 ], [ 159.960938, 59.355596 ], [ 160.312500, 59.355596 ], [ 160.312500, 59.534318 ], [ 160.664062, 59.534318 ], [ 160.664062, 59.888937 ], [ 161.015625, 59.888937 ], [ 161.015625, 60.064840 ], [ 161.367188, 60.064840 ], [ 161.367188, 60.239811 ], [ 161.718750, 60.239811 ], [ 161.718750, 60.413852 ], [ 162.070312, 60.413852 ], [ 162.070312, 60.586967 ], [ 162.421875, 60.586967 ], [ 162.421875, 60.759160 ], [ 162.773438, 60.759160 ], [ 162.773438, 60.930432 ], [ 163.125000, 60.930432 ], [ 163.125000, 61.100789 ], [ 163.476562, 61.100789 ], [ 163.476562, 61.606396 ], [ 163.828125, 61.606396 ], [ 163.828125, 62.267923 ], [ 164.179688, 62.267923 ], [ 164.179688, 62.593341 ], [ 163.125000, 62.593341 ], [ 163.125000, 62.267923 ], [ 162.773438, 62.267923 ], [ 162.773438, 61.938950 ], [ 162.421875, 61.938950 ], [ 162.421875, 61.606396 ], [ 162.070312, 61.606396 ], [ 162.070312, 61.438767 ], [ 161.718750, 61.438767 ], [ 161.718750, 61.270233 ], [ 161.367188, 61.270233 ], [ 161.367188, 61.100789 ], [ 161.015625, 61.100789 ], [ 161.015625, 60.930432 ], [ 160.664062, 60.930432 ], [ 160.664062, 60.759160 ], [ 160.312500, 60.759160 ], [ 160.312500, 60.586967 ], [ 159.960938, 60.586967 ], [ 159.960938, 60.759160 ], [ 159.609375, 60.759160 ], [ 159.609375, 61.438767 ], [ 159.257812, 61.438767 ], [ 159.257812, 61.773123 ], [ 158.906250, 61.773123 ], [ 158.906250, 61.606396 ], [ 157.500000, 61.606396 ], [ 157.500000, 61.438767 ], [ 156.445312, 61.438767 ], [ 156.445312, 61.270233 ], [ 156.093750, 61.270233 ], [ 156.093750, 61.100789 ], [ 155.742188, 61.100789 ], [ 155.742188, 60.759160 ], [ 155.390625, 60.759160 ], [ 155.390625, 60.586967 ], [ 155.039062, 60.586967 ], [ 155.039062, 60.413852 ], [ 154.687500, 60.413852 ], [ 154.687500, 60.064840 ], [ 154.335938, 60.064840 ], [ 154.335938, 59.888937 ], [ 153.984375, 59.888937 ], [ 153.984375, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 59.175928 ], [ 153.984375, 59.175928 ], [ 153.984375, 58.995311 ], [ 152.226562, 58.995311 ], [ 152.226562, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 150.117188, 59.534318 ], [ 150.117188, 59.712097 ], [ 149.765625, 59.712097 ], [ 149.765625, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.355596 ], [ 148.710938, 59.355596 ], [ 148.710938, 59.175928 ], [ 146.601562, 59.175928 ], [ 146.601562, 59.355596 ], [ 143.789062, 59.355596 ], [ 143.789062, 59.175928 ], [ 142.031250, 59.175928 ], [ 142.031250, 58.995311 ], [ 141.679688, 58.995311 ], [ 141.679688, 58.813742 ], [ 141.328125, 58.813742 ], [ 141.328125, 58.447733 ], [ 140.976562, 58.447733 ], [ 140.976562, 58.263287 ], [ 140.625000, 58.263287 ], [ 140.625000, 58.077876 ], [ 140.273438, 58.077876 ], [ 140.273438, 57.891497 ], [ 139.921875, 57.891497 ], [ 139.921875, 57.704147 ], [ 139.570312, 57.704147 ], [ 139.570312, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 57.136239 ], [ 138.867188, 57.136239 ], [ 138.867188, 56.944974 ], [ 138.515625, 56.944974 ], [ 138.515625, 56.752723 ], [ 138.164062, 56.752723 ], [ 138.164062, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 56.365250 ], [ 137.460938, 56.365250 ], [ 137.460938, 56.170023 ], [ 137.109375, 56.170023 ], [ 137.109375, 55.973798 ], [ 136.757812, 55.973798 ], [ 136.757812, 55.578345 ], [ 136.406250, 55.578345 ], [ 136.406250, 55.379110 ], [ 136.054688, 55.379110 ], [ 136.054688, 55.178868 ], [ 135.703125, 55.178868 ], [ 135.703125, 54.977614 ], [ 135.351562, 54.977614 ], [ 135.351562, 54.775346 ], [ 136.406250, 54.775346 ], [ 136.406250, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.162434 ], [ 137.460938, 54.162434 ], [ 137.460938, 53.956086 ], [ 138.164062, 53.956086 ], [ 138.164062, 54.162434 ], [ 138.515625, 54.162434 ], [ 138.515625, 54.367759 ], [ 139.570312, 54.367759 ], [ 139.570312, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.956086 ], [ 140.273438, 53.956086 ], [ 140.273438, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 53.330873 ], [ 140.976562, 53.330873 ], [ 140.976562, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.696361 ], [ 141.679688, 52.696361 ], [ 141.679688, 53.330873 ], [ 142.031250, 53.330873 ], [ 142.031250, 53.748711 ], [ 142.382812, 53.748711 ], [ 142.382812, 53.956086 ], [ 142.734375, 53.956086 ], [ 142.734375, 53.330873 ], [ 143.085938, 53.330873 ], [ 143.085938, 51.399206 ], [ 143.437500, 51.399206 ], [ 143.437500, 50.513427 ], [ 143.789062, 50.513427 ], [ 143.789062, 50.064192 ], [ 144.140625, 50.064192 ], [ 144.140625, 49.382373 ], [ 144.492188, 49.382373 ], [ 144.492188, 49.152970 ], [ 143.437500, 49.152970 ], [ 143.437500, 49.382373 ], [ 143.085938, 49.382373 ], [ 143.085938, 48.922499 ], [ 142.734375, 48.922499 ], [ 142.734375, 48.224673 ], [ 142.382812, 48.224673 ], [ 142.382812, 47.754098 ], [ 142.734375, 47.754098 ], [ 142.734375, 47.517201 ], [ 143.085938, 47.517201 ], [ 143.085938, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.316584 ], [ 143.085938, 46.316584 ], [ 143.085938, 46.558860 ], [ 142.382812, 46.558860 ], [ 142.382812, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 46.558860 ], [ 141.679688, 46.558860 ], [ 141.679688, 49.382373 ], [ 142.031250, 49.382373 ], [ 142.031250, 51.179343 ], [ 141.679688, 51.179343 ], [ 141.679688, 51.618017 ], [ 141.328125, 51.618017 ], [ 141.328125, 52.052490 ], [ 140.976562, 52.052490 ], [ 140.976562, 51.835778 ], [ 140.625000, 51.835778 ], [ 140.625000, 51.399206 ], [ 140.273438, 51.399206 ], [ 140.273438, 49.152970 ], [ 139.921875, 49.152970 ], [ 139.921875, 48.224673 ], [ 139.570312, 48.224673 ], [ 139.570312, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.517201 ], [ 138.867188, 47.517201 ], [ 138.867188, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.558860 ], [ 138.164062, 46.558860 ], [ 138.164062, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.828799 ], [ 137.460938, 45.828799 ], [ 137.460938, 45.583290 ], [ 137.109375, 45.583290 ], [ 137.109375, 45.336702 ], [ 136.757812, 45.336702 ], [ 136.757812, 45.089036 ], [ 136.406250, 45.089036 ], [ 136.406250, 44.840291 ], [ 136.054688, 44.840291 ], [ 136.054688, 44.339565 ], [ 135.703125, 44.339565 ], [ 135.703125, 44.087585 ], [ 135.351562, 44.087585 ], [ 135.351562, 43.834527 ], [ 135.000000, 43.834527 ], [ 135.000000, 43.580391 ], [ 134.648438, 43.580391 ], [ 134.648438, 43.325178 ], [ 134.296875, 43.325178 ], [ 134.296875, 43.068888 ], [ 133.593750, 43.068888 ], [ 133.593750, 42.811522 ], [ 132.539062, 42.811522 ], [ 132.539062, 43.068888 ], [ 131.835938, 43.068888 ], [ 131.835938, 42.811522 ], [ 131.132812, 42.811522 ], [ 131.132812, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 42.293564 ], [ 130.429688, 42.293564 ], [ 130.429688, 43.068888 ], [ 131.132812, 43.068888 ], [ 131.132812, 44.590467 ], [ 130.781250, 44.590467 ], [ 130.781250, 45.089036 ], [ 131.484375, 45.089036 ], [ 131.484375, 45.336702 ], [ 132.890625, 45.336702 ], [ 132.890625, 45.583290 ], [ 133.242188, 45.583290 ], [ 133.242188, 46.073231 ], [ 133.593750, 46.073231 ], [ 133.593750, 46.800059 ], [ 133.945312, 46.800059 ], [ 133.945312, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 48.458352 ], [ 133.945312, 48.458352 ], [ 133.945312, 48.224673 ], [ 132.890625, 48.224673 ], [ 132.890625, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.429688, 48.458352 ], [ 130.429688, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.610710 ], [ 128.320312, 49.610710 ], [ 128.320312, 49.837982 ], [ 127.617188, 49.837982 ], [ 127.617188, 50.289339 ], [ 127.265625, 50.289339 ], [ 127.265625, 51.179343 ], [ 126.914062, 51.179343 ], [ 126.914062, 51.618017 ], [ 126.562500, 51.618017 ], [ 126.562500, 52.052490 ], [ 126.210938, 52.052490 ], [ 126.210938, 52.482780 ], [ 125.859375, 52.482780 ], [ 125.859375, 52.908902 ], [ 125.507812, 52.908902 ], [ 125.507812, 53.120405 ], [ 124.804688, 53.120405 ], [ 124.804688, 53.330873 ], [ 123.750000, 53.330873 ], [ 123.750000, 53.540307 ], [ 121.640625, 53.540307 ], [ 121.640625, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 53.120405 ], [ 120.234375, 53.120405 ], [ 120.234375, 52.908902 ], [ 119.882812, 52.908902 ], [ 119.882812, 52.696361 ], [ 120.585938, 52.696361 ], [ 120.585938, 51.835778 ], [ 119.882812, 51.835778 ], [ 119.882812, 51.399206 ], [ 119.531250, 51.399206 ], [ 119.531250, 50.958427 ], [ 119.179688, 50.958427 ], [ 119.179688, 50.064192 ], [ 118.828125, 50.064192 ], [ 118.828125, 49.837982 ], [ 118.125000, 49.837982 ], [ 118.125000, 49.610710 ], [ 117.070312, 49.610710 ], [ 117.070312, 49.837982 ], [ 116.367188, 49.837982 ], [ 116.367188, 50.064192 ], [ 116.015625, 50.064192 ], [ 116.015625, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 50.289339 ], [ 114.257812, 50.289339 ], [ 114.257812, 50.064192 ], [ 113.906250, 50.064192 ], [ 113.906250, 49.837982 ], [ 113.203125, 49.837982 ], [ 113.203125, 49.610710 ], [ 112.500000, 49.610710 ], [ 112.500000, 49.382373 ], [ 111.093750, 49.382373 ], [ 111.093750, 49.152970 ], [ 109.687500, 49.152970 ], [ 109.687500, 49.382373 ], [ 107.929688, 49.382373 ], [ 107.929688, 49.610710 ], [ 107.578125, 49.610710 ], [ 107.578125, 49.837982 ], [ 107.226562, 49.837982 ], [ 107.226562, 50.064192 ], [ 106.875000, 50.064192 ], [ 106.875000, 50.289339 ], [ 106.171875, 50.289339 ], [ 106.171875, 50.513427 ], [ 105.468750, 50.513427 ], [ 105.468750, 50.289339 ], [ 102.304688, 50.289339 ], [ 102.304688, 50.513427 ], [ 101.953125, 50.513427 ], [ 101.953125, 51.399206 ], [ 100.898438, 51.399206 ], [ 100.898438, 51.618017 ], [ 99.843750, 51.618017 ], [ 99.843750, 51.835778 ], [ 99.140625, 51.835778 ], [ 99.140625, 52.052490 ], [ 98.789062, 52.052490 ], [ 98.789062, 51.835778 ], [ 98.437500, 51.835778 ], [ 98.437500, 51.618017 ], [ 98.085938, 51.618017 ], [ 98.085938, 51.179343 ], [ 97.734375, 51.179343 ], [ 97.734375, 50.736455 ], [ 98.085938, 50.736455 ], [ 98.085938, 50.289339 ], [ 97.734375, 50.289339 ], [ 97.734375, 50.064192 ], [ 97.382812, 50.064192 ], [ 97.382812, 49.837982 ], [ 95.976562, 49.837982 ], [ 95.976562, 50.064192 ], [ 94.218750, 50.064192 ], [ 94.218750, 50.289339 ], [ 93.867188, 50.289339 ], [ 93.867188, 50.513427 ], [ 92.460938, 50.513427 ], [ 92.460938, 50.736455 ], [ 91.406250, 50.736455 ], [ 91.406250, 50.513427 ], [ 90.703125, 50.513427 ], [ 90.703125, 50.289339 ], [ 90.000000, 50.289339 ], [ 90.000000, 50.064192 ], [ 89.648438, 50.064192 ], [ 89.648438, 49.837982 ], [ 88.945312, 49.837982 ], [ 88.945312, 49.610710 ], [ 88.593750, 49.610710 ], [ 88.593750, 49.382373 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ], [ [ 134.648438, 48.690960 ], [ 134.648438, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 48.690960 ], [ 134.648438, 48.690960 ] ] ], [ [ [ 142.382812, 54.162434 ], [ 142.031250, 54.162434 ], [ 142.031250, 54.367759 ], [ 142.382812, 54.367759 ], [ 142.382812, 54.162434 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ], [ 88.593750, 23.241346 ], [ 88.945312, 23.241346 ], [ 88.945312, 21.616579 ], [ 88.242188, 21.616579 ], [ 88.242188, 24.206890 ] ] ], [ [ [ 96.328125, 29.228890 ], [ 96.328125, 28.921631 ], [ 96.679688, 28.921631 ], [ 96.679688, 28.613459 ], [ 96.328125, 28.613459 ], [ 96.328125, 28.304381 ], [ 97.382812, 28.304381 ], [ 97.382812, 27.683528 ], [ 97.031250, 27.683528 ], [ 97.031250, 27.059126 ], [ 95.976562, 27.059126 ], [ 95.976562, 26.745610 ], [ 95.625000, 26.745610 ], [ 95.625000, 26.431228 ], [ 95.273438, 26.431228 ], [ 95.273438, 25.799891 ], [ 94.921875, 25.799891 ], [ 94.921875, 25.165173 ], [ 94.570312, 25.165173 ], [ 94.570312, 24.206890 ], [ 94.218750, 24.206890 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 24.206890 ], [ 93.164062, 24.206890 ], [ 93.164062, 21.943046 ], [ 92.812500, 21.943046 ], [ 92.812500, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.917923 ], [ 92.109375, 22.917923 ], [ 92.109375, 23.563987 ], [ 91.757812, 23.563987 ], [ 91.757812, 22.917923 ], [ 91.406250, 22.917923 ], [ 91.406250, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 92.109375, 24.206890 ], [ 92.109375, 24.527135 ], [ 92.460938, 24.527135 ], [ 92.460938, 24.846565 ], [ 91.757812, 24.846565 ], [ 91.757812, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 26.115986 ], [ 88.242188, 26.115986 ], [ 88.242188, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.683528 ], [ 88.945312, 27.683528 ], [ 88.945312, 26.745610 ], [ 92.109375, 26.745610 ], [ 92.109375, 27.371767 ], [ 91.757812, 27.371767 ], [ 91.757812, 27.683528 ], [ 92.460938, 27.683528 ], [ 92.460938, 27.994401 ], [ 92.812500, 27.994401 ], [ 92.812500, 28.304381 ], [ 93.515625, 28.304381 ], [ 93.515625, 28.613459 ], [ 93.867188, 28.613459 ], [ 93.867188, 28.921631 ], [ 95.625000, 28.921631 ], [ 95.625000, 29.228890 ], [ 96.328125, 29.228890 ] ] ], [ [ [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 25.482951 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 22.593726 ], [ 88.945312, 22.593726 ], [ 88.945312, 21.943046 ], [ 88.242188, 21.943046 ], [ 88.242188, 23.241346 ] ] ], [ [ [ 94.570312, 29.535230 ], [ 94.570312, 29.228890 ], [ 96.328125, 29.228890 ], [ 96.328125, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.371767 ], [ 96.328125, 27.371767 ], [ 96.328125, 27.059126 ], [ 95.625000, 27.059126 ], [ 95.625000, 26.745610 ], [ 94.921875, 26.745610 ], [ 94.921875, 25.482951 ], [ 94.570312, 25.482951 ], [ 94.570312, 24.846565 ], [ 94.218750, 24.846565 ], [ 94.218750, 24.206890 ], [ 93.867188, 24.206890 ], [ 93.867188, 23.885838 ], [ 93.164062, 23.885838 ], [ 93.164062, 22.917923 ], [ 92.812500, 22.917923 ], [ 92.812500, 22.593726 ], [ 93.164062, 22.593726 ], [ 93.164062, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.917923 ], [ 92.109375, 22.917923 ], [ 92.109375, 23.885838 ], [ 91.757812, 23.885838 ], [ 91.757812, 23.563987 ], [ 91.406250, 23.563987 ], [ 91.406250, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 91.757812, 24.206890 ], [ 91.757812, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 25.482951 ], [ 89.648438, 25.482951 ], [ 89.648438, 26.115986 ], [ 88.945312, 26.115986 ], [ 88.945312, 26.431228 ], [ 88.242188, 26.431228 ], [ 88.242188, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.059126 ], [ 89.296875, 27.059126 ], [ 89.296875, 26.745610 ], [ 90.351562, 26.745610 ], [ 90.351562, 27.059126 ], [ 91.757812, 27.059126 ], [ 91.757812, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 27.994401 ], [ 92.812500, 27.994401 ], [ 92.812500, 28.613459 ], [ 93.164062, 28.613459 ], [ 93.164062, 28.921631 ], [ 93.515625, 28.921631 ], [ 93.515625, 29.228890 ], [ 94.218750, 29.228890 ], [ 94.218750, 29.535230 ], [ 94.570312, 29.535230 ] ] ], [ [ [ 88.242188, 24.527135 ], [ 88.593750, 24.527135 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 24.527135 ] ] ], [ [ [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.242188, 25.165173 ], [ 88.242188, 25.482951 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.492188, 51.835778 ], [ 99.492188, 51.618017 ], [ 100.898438, 51.618017 ], [ 100.898438, 51.399206 ], [ 101.601562, 51.399206 ], [ 101.601562, 51.179343 ], [ 101.953125, 51.179343 ], [ 101.953125, 50.736455 ], [ 102.304688, 50.736455 ], [ 102.304688, 50.289339 ], [ 103.007812, 50.289339 ], [ 103.007812, 50.064192 ], [ 104.414062, 50.064192 ], [ 104.414062, 50.289339 ], [ 105.468750, 50.289339 ], [ 105.468750, 50.513427 ], [ 106.171875, 50.513427 ], [ 106.171875, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.064192 ], [ 107.578125, 50.064192 ], [ 107.578125, 49.837982 ], [ 107.929688, 49.837982 ], [ 107.929688, 49.610710 ], [ 108.281250, 49.610710 ], [ 108.281250, 49.382373 ], [ 109.687500, 49.382373 ], [ 109.687500, 49.152970 ], [ 111.445312, 49.152970 ], [ 111.445312, 49.382373 ], [ 112.500000, 49.382373 ], [ 112.500000, 49.610710 ], [ 113.203125, 49.610710 ], [ 113.203125, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.382373 ], [ 116.367188, 49.382373 ], [ 116.367188, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 48.690960 ], [ 115.664062, 48.690960 ], [ 115.664062, 48.224673 ], [ 115.312500, 48.224673 ], [ 115.312500, 47.989922 ], [ 115.664062, 47.989922 ], [ 115.664062, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.279229 ], [ 119.531250, 47.279229 ], [ 119.531250, 47.040182 ], [ 119.882812, 47.040182 ], [ 119.882812, 46.800059 ], [ 118.476562, 46.800059 ], [ 118.476562, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 45.828799 ], [ 116.015625, 45.828799 ], [ 116.015625, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.336702 ], [ 114.609375, 45.336702 ], [ 114.609375, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.840291 ], [ 112.851562, 44.840291 ], [ 112.851562, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.590467 ], [ 111.445312, 44.590467 ], [ 111.445312, 44.087585 ], [ 111.796875, 44.087585 ], [ 111.796875, 43.580391 ], [ 111.445312, 43.580391 ], [ 111.445312, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.068888 ], [ 110.742188, 43.068888 ], [ 110.742188, 42.811522 ], [ 110.039062, 42.811522 ], [ 110.039062, 42.553080 ], [ 107.578125, 42.553080 ], [ 107.578125, 42.293564 ], [ 106.875000, 42.293564 ], [ 106.875000, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 41.771312 ], [ 105.468750, 41.771312 ], [ 105.468750, 41.508577 ], [ 104.765625, 41.508577 ], [ 104.765625, 41.771312 ], [ 104.414062, 41.771312 ], [ 104.414062, 42.032974 ], [ 102.656250, 42.032974 ], [ 102.656250, 42.293564 ], [ 101.953125, 42.293564 ], [ 101.953125, 42.553080 ], [ 98.085938, 42.553080 ], [ 98.085938, 42.811522 ], [ 95.976562, 42.811522 ], [ 95.976562, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 43.834527 ], [ 95.273438, 43.834527 ], [ 95.273438, 44.339565 ], [ 94.218750, 44.339565 ], [ 94.218750, 44.590467 ], [ 93.867188, 44.590467 ], [ 93.867188, 44.840291 ], [ 93.515625, 44.840291 ], [ 93.515625, 45.089036 ], [ 91.406250, 45.089036 ], [ 91.406250, 45.336702 ], [ 91.054688, 45.336702 ], [ 91.054688, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 46.316584 ], [ 91.054688, 46.316584 ], [ 91.054688, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.610710 ], [ 89.648438, 49.610710 ], [ 89.648438, 49.837982 ], [ 90.351562, 49.837982 ], [ 90.351562, 50.064192 ], [ 90.703125, 50.064192 ], [ 90.703125, 50.289339 ], [ 91.406250, 50.289339 ], [ 91.406250, 50.513427 ], [ 92.109375, 50.513427 ], [ 92.109375, 50.736455 ], [ 92.460938, 50.736455 ], [ 92.460938, 50.513427 ], [ 94.218750, 50.513427 ], [ 94.218750, 50.289339 ], [ 94.570312, 50.289339 ], [ 94.570312, 50.064192 ], [ 96.328125, 50.064192 ], [ 96.328125, 49.837982 ], [ 97.734375, 49.837982 ], [ 97.734375, 50.289339 ], [ 98.085938, 50.289339 ], [ 98.085938, 50.736455 ], [ 97.734375, 50.736455 ], [ 97.734375, 50.958427 ], [ 98.085938, 50.958427 ], [ 98.085938, 51.399206 ], [ 98.437500, 51.399206 ], [ 98.437500, 51.835778 ], [ 99.492188, 51.835778 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.140625, 52.052490 ], [ 99.140625, 51.835778 ], [ 99.843750, 51.835778 ], [ 99.843750, 51.618017 ], [ 100.898438, 51.618017 ], [ 100.898438, 51.399206 ], [ 101.953125, 51.399206 ], [ 101.953125, 50.513427 ], [ 102.304688, 50.513427 ], [ 102.304688, 50.289339 ], [ 105.468750, 50.289339 ], [ 105.468750, 50.513427 ], [ 106.171875, 50.513427 ], [ 106.171875, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.064192 ], [ 107.226562, 50.064192 ], [ 107.226562, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 49.610710 ], [ 107.929688, 49.610710 ], [ 107.929688, 49.382373 ], [ 109.687500, 49.382373 ], [ 109.687500, 49.152970 ], [ 111.093750, 49.152970 ], [ 111.093750, 49.382373 ], [ 112.500000, 49.382373 ], [ 112.500000, 49.610710 ], [ 113.203125, 49.610710 ], [ 113.203125, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 50.064192 ], [ 114.257812, 50.064192 ], [ 114.257812, 50.289339 ], [ 114.960938, 50.289339 ], [ 114.960938, 50.064192 ], [ 115.312500, 50.064192 ], [ 115.312500, 49.837982 ], [ 116.015625, 49.837982 ], [ 116.015625, 50.064192 ], [ 116.367188, 50.064192 ], [ 116.367188, 49.610710 ], [ 116.015625, 49.610710 ], [ 116.015625, 48.922499 ], [ 115.664062, 48.922499 ], [ 115.664062, 48.458352 ], [ 115.312500, 48.458352 ], [ 115.312500, 47.989922 ], [ 115.664062, 47.989922 ], [ 115.664062, 47.754098 ], [ 116.015625, 47.754098 ], [ 116.015625, 47.989922 ], [ 116.367188, 47.989922 ], [ 116.367188, 47.754098 ], [ 117.421875, 47.754098 ], [ 117.421875, 47.989922 ], [ 118.476562, 47.989922 ], [ 118.476562, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.279229 ], [ 119.531250, 47.279229 ], [ 119.531250, 46.800059 ], [ 118.828125, 46.800059 ], [ 118.828125, 47.040182 ], [ 118.476562, 47.040182 ], [ 118.476562, 46.800059 ], [ 117.421875, 46.800059 ], [ 117.421875, 46.558860 ], [ 116.718750, 46.558860 ], [ 116.718750, 46.316584 ], [ 116.367188, 46.316584 ], [ 116.367188, 46.073231 ], [ 116.015625, 46.073231 ], [ 116.015625, 45.828799 ], [ 115.312500, 45.828799 ], [ 115.312500, 45.583290 ], [ 114.257812, 45.583290 ], [ 114.257812, 45.336702 ], [ 113.906250, 45.336702 ], [ 113.906250, 45.089036 ], [ 113.554688, 45.089036 ], [ 113.554688, 44.840291 ], [ 112.500000, 44.840291 ], [ 112.500000, 45.089036 ], [ 111.445312, 45.089036 ], [ 111.445312, 44.590467 ], [ 111.093750, 44.590467 ], [ 111.093750, 44.339565 ], [ 111.445312, 44.339565 ], [ 111.445312, 43.834527 ], [ 111.796875, 43.834527 ], [ 111.796875, 43.580391 ], [ 111.093750, 43.580391 ], [ 111.093750, 43.325178 ], [ 110.742188, 43.325178 ], [ 110.742188, 43.068888 ], [ 110.390625, 43.068888 ], [ 110.390625, 42.811522 ], [ 109.687500, 42.811522 ], [ 109.687500, 42.553080 ], [ 106.875000, 42.553080 ], [ 106.875000, 42.293564 ], [ 105.820312, 42.293564 ], [ 105.820312, 42.032974 ], [ 105.117188, 42.032974 ], [ 105.117188, 41.771312 ], [ 104.414062, 41.771312 ], [ 104.414062, 42.032974 ], [ 102.304688, 42.032974 ], [ 102.304688, 42.293564 ], [ 101.601562, 42.293564 ], [ 101.601562, 42.553080 ], [ 100.898438, 42.553080 ], [ 100.898438, 42.811522 ], [ 100.195312, 42.811522 ], [ 100.195312, 42.553080 ], [ 98.085938, 42.553080 ], [ 98.085938, 42.811522 ], [ 95.976562, 42.811522 ], [ 95.976562, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 43.834527 ], [ 95.273438, 43.834527 ], [ 95.273438, 44.339565 ], [ 94.570312, 44.339565 ], [ 94.570312, 44.590467 ], [ 93.867188, 44.590467 ], [ 93.867188, 44.840291 ], [ 93.164062, 44.840291 ], [ 93.164062, 45.089036 ], [ 92.460938, 45.089036 ], [ 92.460938, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.351562, 45.583290 ], [ 90.351562, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 47.040182 ], [ 90.351562, 47.040182 ], [ 90.351562, 47.517201 ], [ 90.000000, 47.517201 ], [ 90.000000, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 49.382373 ], [ 88.593750, 49.382373 ], [ 88.593750, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 50.064192 ], [ 90.000000, 50.064192 ], [ 90.000000, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.513427 ], [ 91.406250, 50.513427 ], [ 91.406250, 50.736455 ], [ 92.460938, 50.736455 ], [ 92.460938, 50.513427 ], [ 93.867188, 50.513427 ], [ 93.867188, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 50.064192 ], [ 95.976562, 50.064192 ], [ 95.976562, 49.837982 ], [ 97.382812, 49.837982 ], [ 97.382812, 50.064192 ], [ 97.734375, 50.064192 ], [ 97.734375, 50.289339 ], [ 98.085938, 50.289339 ], [ 98.085938, 50.736455 ], [ 97.734375, 50.736455 ], [ 97.734375, 51.179343 ], [ 98.085938, 51.179343 ], [ 98.085938, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 51.835778 ], [ 98.789062, 51.835778 ], [ 98.789062, 52.052490 ], [ 99.140625, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 27.994401 ], [ 91.406250, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.371767 ], [ 92.109375, 27.371767 ], [ 92.109375, 26.745610 ], [ 88.945312, 26.745610 ], [ 88.945312, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.994401 ], [ 91.406250, 27.994401 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.054688, 28.304381 ], [ 91.054688, 27.994401 ], [ 91.406250, 27.994401 ], [ 91.406250, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.059126 ], [ 90.351562, 27.059126 ], [ 90.351562, 26.745610 ], [ 89.296875, 26.745610 ], [ 89.296875, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 28.304381 ], [ 91.054688, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.945312, 21.943046 ], [ 88.945312, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 24.846565 ], [ 88.945312, 24.846565 ], [ 88.945312, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 26.115986 ], [ 90.000000, 26.115986 ], [ 90.000000, 25.165173 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.846565 ], [ 92.460938, 24.846565 ], [ 92.460938, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 22.917923 ] ] ], [ [ [ 91.406250, 22.917923 ], [ 91.757812, 22.917923 ], [ 91.757812, 23.563987 ], [ 92.109375, 23.563987 ], [ 92.109375, 22.917923 ], [ 92.460938, 22.917923 ], [ 92.460938, 22.268764 ], [ 92.812500, 22.268764 ], [ 92.812500, 21.289374 ], [ 92.460938, 21.289374 ], [ 92.460938, 20.961440 ], [ 92.109375, 20.961440 ], [ 92.109375, 21.943046 ], [ 91.757812, 21.943046 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.945312, 26.431228 ], [ 88.945312, 26.115986 ], [ 89.648438, 26.115986 ], [ 89.648438, 25.482951 ], [ 90.000000, 25.482951 ], [ 90.000000, 25.165173 ], [ 92.109375, 25.165173 ], [ 92.109375, 24.527135 ], [ 91.757812, 24.527135 ], [ 91.757812, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.563987 ], [ 91.757812, 23.563987 ], [ 91.757812, 23.885838 ], [ 92.109375, 23.885838 ], [ 92.109375, 22.917923 ], [ 92.460938, 22.917923 ], [ 92.460938, 21.616579 ], [ 92.109375, 21.616579 ], [ 92.109375, 20.961440 ], [ 91.757812, 20.961440 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.268764 ], [ 90.000000, 22.268764 ], [ 90.000000, 21.943046 ], [ 89.296875, 21.943046 ], [ 89.296875, 22.268764 ], [ 88.945312, 22.268764 ], [ 88.945312, 22.593726 ], [ 88.593750, 22.593726 ], [ 88.593750, 23.241346 ], [ 88.242188, 23.241346 ], [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ], [ 88.593750, 24.527135 ], [ 88.242188, 24.527135 ], [ 88.242188, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 26.431228 ], [ 88.945312, 26.431228 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 19.973349 ], [ 110.742188, 19.642588 ], [ 111.093750, 19.642588 ], [ 111.093750, 19.311143 ], [ 110.742188, 19.311143 ], [ 110.742188, 18.979026 ], [ 110.390625, 18.979026 ], [ 110.390625, 18.646245 ], [ 110.039062, 18.646245 ], [ 110.039062, 18.312811 ], [ 108.632812, 18.312811 ], [ 108.632812, 19.642588 ], [ 108.984375, 19.642588 ], [ 108.984375, 19.973349 ], [ 110.742188, 19.973349 ] ] ], [ [ [ 123.750000, 53.540307 ], [ 123.750000, 53.330873 ], [ 124.453125, 53.330873 ], [ 124.453125, 53.120405 ], [ 125.156250, 53.120405 ], [ 125.156250, 52.908902 ], [ 125.507812, 52.908902 ], [ 125.507812, 52.696361 ], [ 125.859375, 52.696361 ], [ 125.859375, 52.482780 ], [ 126.210938, 52.482780 ], [ 126.210938, 52.052490 ], [ 126.562500, 52.052490 ], [ 126.562500, 51.618017 ], [ 126.914062, 51.618017 ], [ 126.914062, 50.958427 ], [ 127.265625, 50.958427 ], [ 127.265625, 50.289339 ], [ 127.617188, 50.289339 ], [ 127.617188, 49.837982 ], [ 127.968750, 49.837982 ], [ 127.968750, 49.610710 ], [ 128.671875, 49.610710 ], [ 128.671875, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 48.690960 ], [ 130.429688, 48.690960 ], [ 130.429688, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 131.132812, 47.989922 ], [ 131.132812, 47.754098 ], [ 132.890625, 47.754098 ], [ 132.890625, 47.989922 ], [ 133.242188, 47.989922 ], [ 133.242188, 48.224673 ], [ 134.296875, 48.224673 ], [ 134.296875, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.279229 ], [ 133.945312, 47.279229 ], [ 133.945312, 45.828799 ], [ 133.593750, 45.828799 ], [ 133.593750, 45.336702 ], [ 133.242188, 45.336702 ], [ 133.242188, 45.089036 ], [ 132.187500, 45.089036 ], [ 132.187500, 45.336702 ], [ 131.835938, 45.336702 ], [ 131.835938, 45.089036 ], [ 131.132812, 45.089036 ], [ 131.132812, 42.811522 ], [ 130.781250, 42.811522 ], [ 130.781250, 42.293564 ], [ 130.429688, 42.293564 ], [ 130.429688, 42.811522 ], [ 129.726562, 42.811522 ], [ 129.726562, 42.553080 ], [ 129.375000, 42.553080 ], [ 129.375000, 42.293564 ], [ 128.671875, 42.293564 ], [ 128.671875, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.771312 ], [ 128.320312, 41.771312 ], [ 128.320312, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 40.713956 ], [ 125.507812, 40.713956 ], [ 125.507812, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.178873 ], [ 124.453125, 40.178873 ], [ 124.453125, 39.909736 ], [ 123.750000, 39.909736 ], [ 123.750000, 39.639538 ], [ 122.695312, 39.639538 ], [ 122.695312, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 39.095963 ], [ 121.640625, 39.095963 ], [ 121.640625, 39.368279 ], [ 121.289062, 39.368279 ], [ 121.289062, 39.639538 ], [ 121.640625, 39.639538 ], [ 121.640625, 39.909736 ], [ 121.992188, 39.909736 ], [ 121.992188, 40.178873 ], [ 122.343750, 40.178873 ], [ 122.343750, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.446947 ], [ 120.585938, 40.446947 ], [ 120.585938, 40.178873 ], [ 119.882812, 40.178873 ], [ 119.882812, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.639538 ], [ 119.179688, 39.639538 ], [ 119.179688, 39.368279 ], [ 118.828125, 39.368279 ], [ 118.828125, 39.095963 ], [ 118.125000, 39.095963 ], [ 118.125000, 38.822591 ], [ 117.421875, 38.822591 ], [ 117.421875, 38.548165 ], [ 117.773438, 38.548165 ], [ 117.773438, 37.996163 ], [ 118.828125, 37.996163 ], [ 118.828125, 37.160317 ], [ 119.882812, 37.160317 ], [ 119.882812, 37.439974 ], [ 120.585938, 37.439974 ], [ 120.585938, 37.718590 ], [ 121.289062, 37.718590 ], [ 121.289062, 37.439974 ], [ 122.343750, 37.439974 ], [ 122.343750, 37.160317 ], [ 122.695312, 37.160317 ], [ 122.695312, 36.879621 ], [ 121.992188, 36.879621 ], [ 121.992188, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 36.315125 ], [ 120.585938, 36.315125 ], [ 120.585938, 36.031332 ], [ 120.234375, 36.031332 ], [ 120.234375, 35.746512 ], [ 119.531250, 35.746512 ], [ 119.531250, 35.173808 ], [ 119.179688, 35.173808 ], [ 119.179688, 34.597042 ], [ 119.882812, 34.597042 ], [ 119.882812, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.724340 ], [ 120.585938, 33.724340 ], [ 120.585938, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 32.546813 ], [ 121.289062, 32.546813 ], [ 121.289062, 32.249974 ], [ 121.640625, 32.249974 ], [ 121.640625, 31.653381 ], [ 121.992188, 31.653381 ], [ 121.992188, 30.751278 ], [ 121.289062, 30.751278 ], [ 121.289062, 30.448674 ], [ 121.640625, 30.448674 ], [ 121.640625, 29.840644 ], [ 121.992188, 29.840644 ], [ 121.992188, 28.613459 ], [ 121.640625, 28.613459 ], [ 121.640625, 27.994401 ], [ 121.289062, 27.994401 ], [ 121.289062, 27.683528 ], [ 120.937500, 27.683528 ], [ 120.937500, 27.371767 ], [ 120.585938, 27.371767 ], [ 120.585938, 27.059126 ], [ 120.234375, 27.059126 ], [ 120.234375, 26.745610 ], [ 119.882812, 26.745610 ], [ 119.882812, 26.115986 ], [ 119.531250, 26.115986 ], [ 119.531250, 25.482951 ], [ 119.179688, 25.482951 ], [ 119.179688, 24.846565 ], [ 118.828125, 24.846565 ], [ 118.828125, 24.206890 ], [ 118.476562, 24.206890 ], [ 118.476562, 23.885838 ], [ 117.773438, 23.885838 ], [ 117.773438, 23.563987 ], [ 117.421875, 23.563987 ], [ 117.421875, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 22.917923 ], [ 115.664062, 22.917923 ], [ 115.664062, 22.593726 ], [ 114.609375, 22.593726 ], [ 114.609375, 22.268764 ], [ 113.554688, 22.268764 ], [ 113.554688, 21.943046 ], [ 112.851562, 21.943046 ], [ 112.851562, 21.616579 ], [ 111.445312, 21.616579 ], [ 111.445312, 21.289374 ], [ 110.742188, 21.289374 ], [ 110.742188, 20.632784 ], [ 110.390625, 20.632784 ], [ 110.390625, 20.303418 ], [ 110.039062, 20.303418 ], [ 110.039062, 20.632784 ], [ 109.687500, 20.632784 ], [ 109.687500, 20.961440 ], [ 110.039062, 20.961440 ], [ 110.039062, 21.289374 ], [ 108.984375, 21.289374 ], [ 108.984375, 21.616579 ], [ 107.226562, 21.616579 ], [ 107.226562, 21.943046 ], [ 106.523438, 21.943046 ], [ 106.523438, 22.593726 ], [ 106.875000, 22.593726 ], [ 106.875000, 22.917923 ], [ 105.468750, 22.917923 ], [ 105.468750, 23.241346 ], [ 105.117188, 23.241346 ], [ 105.117188, 22.917923 ], [ 104.062500, 22.917923 ], [ 104.062500, 22.593726 ], [ 102.304688, 22.593726 ], [ 102.304688, 22.268764 ], [ 101.601562, 22.268764 ], [ 101.601562, 21.616579 ], [ 101.953125, 21.616579 ], [ 101.953125, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 21.616579 ], [ 99.492188, 21.616579 ], [ 99.492188, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 22.593726 ], [ 99.492188, 22.593726 ], [ 99.492188, 22.917923 ], [ 98.789062, 22.917923 ], [ 98.789062, 24.206890 ], [ 98.437500, 24.206890 ], [ 98.437500, 23.885838 ], [ 97.734375, 23.885838 ], [ 97.734375, 25.165173 ], [ 98.085938, 25.165173 ], [ 98.085938, 25.482951 ], [ 98.789062, 25.482951 ], [ 98.789062, 27.371767 ], [ 98.085938, 27.371767 ], [ 98.085938, 28.304381 ], [ 96.328125, 28.304381 ], [ 96.328125, 28.613459 ], [ 96.679688, 28.613459 ], [ 96.679688, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 29.228890 ], [ 95.625000, 29.228890 ], [ 95.625000, 28.921631 ], [ 93.867188, 28.921631 ], [ 93.867188, 28.613459 ], [ 93.515625, 28.613459 ], [ 93.515625, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 27.994401 ], [ 92.460938, 27.994401 ], [ 92.460938, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 27.994401 ], [ 88.242188, 27.994401 ], [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.351562, 47.754098 ], [ 90.351562, 47.517201 ], [ 90.703125, 47.517201 ], [ 90.703125, 47.040182 ], [ 91.054688, 47.040182 ], [ 91.054688, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.583290 ], [ 91.054688, 45.583290 ], [ 91.054688, 45.336702 ], [ 91.406250, 45.336702 ], [ 91.406250, 45.089036 ], [ 93.515625, 45.089036 ], [ 93.515625, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.590467 ], [ 94.218750, 44.590467 ], [ 94.218750, 44.339565 ], [ 95.273438, 44.339565 ], [ 95.273438, 43.834527 ], [ 95.625000, 43.834527 ], [ 95.625000, 43.068888 ], [ 95.976562, 43.068888 ], [ 95.976562, 42.811522 ], [ 98.085938, 42.811522 ], [ 98.085938, 42.553080 ], [ 101.953125, 42.553080 ], [ 101.953125, 42.293564 ], [ 102.656250, 42.293564 ], [ 102.656250, 42.032974 ], [ 104.414062, 42.032974 ], [ 104.414062, 41.771312 ], [ 104.765625, 41.771312 ], [ 104.765625, 41.508577 ], [ 105.468750, 41.508577 ], [ 105.468750, 41.771312 ], [ 106.171875, 41.771312 ], [ 106.171875, 42.032974 ], [ 106.875000, 42.032974 ], [ 106.875000, 42.293564 ], [ 107.578125, 42.293564 ], [ 107.578125, 42.553080 ], [ 110.039062, 42.553080 ], [ 110.039062, 42.811522 ], [ 110.742188, 42.811522 ], [ 110.742188, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 43.325178 ], [ 111.445312, 43.325178 ], [ 111.445312, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 44.087585 ], [ 111.445312, 44.087585 ], [ 111.445312, 44.590467 ], [ 111.796875, 44.590467 ], [ 111.796875, 45.089036 ], [ 112.851562, 45.089036 ], [ 112.851562, 44.840291 ], [ 113.906250, 44.840291 ], [ 113.906250, 45.089036 ], [ 114.609375, 45.089036 ], [ 114.609375, 45.336702 ], [ 115.312500, 45.336702 ], [ 115.312500, 45.583290 ], [ 116.015625, 45.583290 ], [ 116.015625, 45.828799 ], [ 116.367188, 45.828799 ], [ 116.367188, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 46.316584 ], [ 117.421875, 46.316584 ], [ 117.421875, 46.558860 ], [ 118.476562, 46.558860 ], [ 118.476562, 46.800059 ], [ 119.882812, 46.800059 ], [ 119.882812, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.279229 ], [ 119.179688, 47.279229 ], [ 119.179688, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.989922 ], [ 115.312500, 47.989922 ], [ 115.312500, 48.224673 ], [ 115.664062, 48.224673 ], [ 115.664062, 48.690960 ], [ 116.015625, 48.690960 ], [ 116.015625, 48.922499 ], [ 116.367188, 48.922499 ], [ 116.367188, 49.382373 ], [ 116.718750, 49.382373 ], [ 116.718750, 49.837982 ], [ 117.070312, 49.837982 ], [ 117.070312, 49.610710 ], [ 118.476562, 49.610710 ], [ 118.476562, 49.837982 ], [ 119.179688, 49.837982 ], [ 119.179688, 50.513427 ], [ 119.531250, 50.513427 ], [ 119.531250, 50.958427 ], [ 119.882812, 50.958427 ], [ 119.882812, 51.399206 ], [ 120.234375, 51.399206 ], [ 120.234375, 51.835778 ], [ 120.585938, 51.835778 ], [ 120.585938, 52.482780 ], [ 120.234375, 52.482780 ], [ 120.234375, 52.696361 ], [ 120.585938, 52.696361 ], [ 120.585938, 53.120405 ], [ 120.937500, 53.120405 ], [ 120.937500, 53.330873 ], [ 123.046875, 53.330873 ], [ 123.046875, 53.540307 ], [ 123.750000, 53.540307 ] ] ], [ [ [ 121.640625, 39.095963 ], [ 121.640625, 38.822591 ], [ 121.289062, 38.822591 ], [ 121.289062, 39.095963 ], [ 121.640625, 39.095963 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.750000, 53.540307 ], [ 123.750000, 53.330873 ], [ 124.804688, 53.330873 ], [ 124.804688, 53.120405 ], [ 125.507812, 53.120405 ], [ 125.507812, 52.908902 ], [ 125.859375, 52.908902 ], [ 125.859375, 52.482780 ], [ 126.210938, 52.482780 ], [ 126.210938, 52.052490 ], [ 126.562500, 52.052490 ], [ 126.562500, 51.618017 ], [ 126.914062, 51.618017 ], [ 126.914062, 51.179343 ], [ 127.265625, 51.179343 ], [ 127.265625, 50.289339 ], [ 127.617188, 50.289339 ], [ 127.617188, 49.837982 ], [ 128.320312, 49.837982 ], [ 128.320312, 49.610710 ], [ 129.375000, 49.610710 ], [ 129.375000, 49.382373 ], [ 129.726562, 49.382373 ], [ 129.726562, 49.152970 ], [ 130.078125, 49.152970 ], [ 130.078125, 48.922499 ], [ 130.429688, 48.922499 ], [ 130.429688, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 48.224673 ], [ 133.945312, 48.224673 ], [ 133.945312, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 47.989922 ], [ 134.296875, 47.989922 ], [ 134.296875, 47.517201 ], [ 133.945312, 47.517201 ], [ 133.945312, 46.800059 ], [ 133.593750, 46.800059 ], [ 133.593750, 46.073231 ], [ 133.242188, 46.073231 ], [ 133.242188, 45.583290 ], [ 132.890625, 45.583290 ], [ 132.890625, 45.336702 ], [ 131.484375, 45.336702 ], [ 131.484375, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 44.590467 ], [ 131.132812, 44.590467 ], [ 131.132812, 43.068888 ], [ 130.429688, 43.068888 ], [ 130.429688, 42.553080 ], [ 130.078125, 42.553080 ], [ 130.078125, 42.811522 ], [ 129.375000, 42.811522 ], [ 129.375000, 42.293564 ], [ 128.671875, 42.293564 ], [ 128.671875, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.508577 ], [ 126.914062, 41.508577 ], [ 126.914062, 41.771312 ], [ 126.210938, 41.771312 ], [ 126.210938, 41.244772 ], [ 125.859375, 41.244772 ], [ 125.859375, 40.979898 ], [ 125.156250, 40.979898 ], [ 125.156250, 40.713956 ], [ 124.804688, 40.713956 ], [ 124.804688, 40.446947 ], [ 124.453125, 40.446947 ], [ 124.453125, 40.178873 ], [ 124.101562, 40.178873 ], [ 124.101562, 39.909736 ], [ 123.398438, 39.909736 ], [ 123.398438, 39.639538 ], [ 122.695312, 39.639538 ], [ 122.695312, 39.368279 ], [ 121.640625, 39.368279 ], [ 121.640625, 39.095963 ], [ 121.289062, 39.095963 ], [ 121.289062, 39.909736 ], [ 121.640625, 39.909736 ], [ 121.640625, 40.178873 ], [ 121.992188, 40.178873 ], [ 121.992188, 40.713956 ], [ 121.640625, 40.713956 ], [ 121.640625, 40.979898 ], [ 121.289062, 40.979898 ], [ 121.289062, 40.713956 ], [ 120.585938, 40.713956 ], [ 120.585938, 40.446947 ], [ 120.234375, 40.446947 ], [ 120.234375, 40.178873 ], [ 119.882812, 40.178873 ], [ 119.882812, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.639538 ], [ 119.179688, 39.639538 ], [ 119.179688, 39.368279 ], [ 117.773438, 39.368279 ], [ 117.773438, 39.095963 ], [ 117.421875, 39.095963 ], [ 117.421875, 38.548165 ], [ 117.773438, 38.548165 ], [ 117.773438, 38.272689 ], [ 118.125000, 38.272689 ], [ 118.125000, 37.996163 ], [ 118.828125, 37.996163 ], [ 118.828125, 37.439974 ], [ 119.179688, 37.439974 ], [ 119.179688, 37.160317 ], [ 119.882812, 37.160317 ], [ 119.882812, 37.439974 ], [ 120.234375, 37.439974 ], [ 120.234375, 37.718590 ], [ 120.585938, 37.718590 ], [ 120.585938, 37.996163 ], [ 120.937500, 37.996163 ], [ 120.937500, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 37.160317 ], [ 121.992188, 37.160317 ], [ 121.992188, 36.879621 ], [ 120.937500, 36.879621 ], [ 120.937500, 36.597889 ], [ 120.585938, 36.597889 ], [ 120.585938, 36.031332 ], [ 119.882812, 36.031332 ], [ 119.882812, 35.746512 ], [ 119.531250, 35.746512 ], [ 119.531250, 35.460670 ], [ 119.179688, 35.460670 ], [ 119.179688, 35.173808 ], [ 118.828125, 35.173808 ], [ 118.828125, 34.885931 ], [ 119.531250, 34.885931 ], [ 119.531250, 34.597042 ], [ 119.882812, 34.597042 ], [ 119.882812, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.724340 ], [ 120.585938, 33.724340 ], [ 120.585938, 32.842674 ], [ 120.937500, 32.842674 ], [ 120.937500, 32.249974 ], [ 121.289062, 32.249974 ], [ 121.289062, 31.952162 ], [ 121.640625, 31.952162 ], [ 121.640625, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 30.448674 ], [ 121.289062, 30.448674 ], [ 121.289062, 29.840644 ], [ 121.992188, 29.840644 ], [ 121.992188, 29.535230 ], [ 121.640625, 29.535230 ], [ 121.640625, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 27.994401 ], [ 120.585938, 27.994401 ], [ 120.585938, 27.371767 ], [ 120.234375, 27.371767 ], [ 120.234375, 26.745610 ], [ 119.882812, 26.745610 ], [ 119.882812, 26.115986 ], [ 119.531250, 26.115986 ], [ 119.531250, 25.482951 ], [ 119.179688, 25.482951 ], [ 119.179688, 25.165173 ], [ 118.828125, 25.165173 ], [ 118.828125, 24.846565 ], [ 118.476562, 24.846565 ], [ 118.476562, 24.527135 ], [ 118.125000, 24.527135 ], [ 118.125000, 24.206890 ], [ 117.421875, 24.206890 ], [ 117.421875, 23.885838 ], [ 117.070312, 23.885838 ], [ 117.070312, 23.563987 ], [ 116.718750, 23.563987 ], [ 116.718750, 23.241346 ], [ 116.015625, 23.241346 ], [ 116.015625, 22.917923 ], [ 114.609375, 22.917923 ], [ 114.609375, 22.593726 ], [ 114.257812, 22.593726 ], [ 114.257812, 22.268764 ], [ 113.203125, 22.268764 ], [ 113.203125, 21.943046 ], [ 112.500000, 21.943046 ], [ 112.500000, 21.616579 ], [ 110.742188, 21.616579 ], [ 110.742188, 20.961440 ], [ 110.390625, 20.961440 ], [ 110.390625, 20.303418 ], [ 110.742188, 20.303418 ], [ 110.742188, 19.642588 ], [ 110.390625, 19.642588 ], [ 110.390625, 18.979026 ], [ 110.039062, 18.979026 ], [ 110.039062, 18.646245 ], [ 109.687500, 18.646245 ], [ 109.687500, 18.312811 ], [ 108.632812, 18.312811 ], [ 108.632812, 18.979026 ], [ 108.281250, 18.979026 ], [ 108.281250, 19.642588 ], [ 108.984375, 19.642588 ], [ 108.984375, 19.973349 ], [ 109.687500, 19.973349 ], [ 109.687500, 20.303418 ], [ 109.687500, 20.632784 ], [ 109.335938, 20.632784 ], [ 109.335938, 21.289374 ], [ 109.687500, 21.289374 ], [ 109.687500, 21.616579 ], [ 108.632812, 21.616579 ], [ 108.632812, 21.943046 ], [ 108.281250, 21.943046 ], [ 108.281250, 21.616579 ], [ 107.226562, 21.616579 ], [ 107.226562, 21.943046 ], [ 106.523438, 21.943046 ], [ 106.523438, 22.917923 ], [ 105.820312, 22.917923 ], [ 105.820312, 23.241346 ], [ 104.765625, 23.241346 ], [ 104.765625, 22.917923 ], [ 102.656250, 22.917923 ], [ 102.656250, 22.593726 ], [ 101.601562, 22.593726 ], [ 101.601562, 21.289374 ], [ 100.898438, 21.289374 ], [ 100.898438, 21.616579 ], [ 99.843750, 21.616579 ], [ 99.843750, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 22.593726 ], [ 99.492188, 22.593726 ], [ 99.492188, 23.241346 ], [ 98.789062, 23.241346 ], [ 98.789062, 23.563987 ], [ 98.437500, 23.563987 ], [ 98.437500, 24.206890 ], [ 97.382812, 24.206890 ], [ 97.382812, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 25.482951 ], [ 98.085938, 25.482951 ], [ 98.085938, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 27.683528 ], [ 98.085938, 27.683528 ], [ 98.085938, 28.304381 ], [ 96.328125, 28.304381 ], [ 96.328125, 29.228890 ], [ 94.570312, 29.228890 ], [ 94.570312, 29.535230 ], [ 94.218750, 29.535230 ], [ 94.218750, 29.228890 ], [ 93.515625, 29.228890 ], [ 93.515625, 28.921631 ], [ 93.164062, 28.921631 ], [ 93.164062, 28.613459 ], [ 92.812500, 28.613459 ], [ 92.812500, 27.994401 ], [ 91.054688, 27.994401 ], [ 91.054688, 28.304381 ], [ 89.296875, 28.304381 ], [ 89.296875, 27.994401 ], [ 88.945312, 27.994401 ], [ 88.945312, 27.371767 ], [ 88.593750, 27.371767 ], [ 88.593750, 27.994401 ], [ 88.242188, 27.994401 ], [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 46.316584 ], [ 90.351562, 46.316584 ], [ 90.351562, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 92.460938, 45.336702 ], [ 92.460938, 45.089036 ], [ 93.164062, 45.089036 ], [ 93.164062, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.590467 ], [ 94.570312, 44.590467 ], [ 94.570312, 44.339565 ], [ 95.273438, 44.339565 ], [ 95.273438, 43.834527 ], [ 95.625000, 43.834527 ], [ 95.625000, 43.068888 ], [ 95.976562, 43.068888 ], [ 95.976562, 42.811522 ], [ 98.085938, 42.811522 ], [ 98.085938, 42.553080 ], [ 100.195312, 42.553080 ], [ 100.195312, 42.811522 ], [ 100.898438, 42.811522 ], [ 100.898438, 42.553080 ], [ 101.601562, 42.553080 ], [ 101.601562, 42.293564 ], [ 102.304688, 42.293564 ], [ 102.304688, 42.032974 ], [ 104.414062, 42.032974 ], [ 104.414062, 41.771312 ], [ 105.117188, 41.771312 ], [ 105.117188, 42.032974 ], [ 105.820312, 42.032974 ], [ 105.820312, 42.293564 ], [ 106.875000, 42.293564 ], [ 106.875000, 42.553080 ], [ 109.687500, 42.553080 ], [ 109.687500, 42.811522 ], [ 110.390625, 42.811522 ], [ 110.390625, 43.068888 ], [ 110.742188, 43.068888 ], [ 110.742188, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 43.834527 ], [ 111.445312, 43.834527 ], [ 111.445312, 44.339565 ], [ 111.093750, 44.339565 ], [ 111.093750, 44.590467 ], [ 111.445312, 44.590467 ], [ 111.445312, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 44.840291 ], [ 113.554688, 44.840291 ], [ 113.554688, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 45.336702 ], [ 114.257812, 45.336702 ], [ 114.257812, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.828799 ], [ 116.015625, 45.828799 ], [ 116.015625, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.800059 ], [ 118.476562, 46.800059 ], [ 118.476562, 47.040182 ], [ 118.828125, 47.040182 ], [ 118.828125, 46.800059 ], [ 119.531250, 46.800059 ], [ 119.531250, 47.279229 ], [ 119.179688, 47.279229 ], [ 119.179688, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.754098 ], [ 118.476562, 47.754098 ], [ 118.476562, 47.989922 ], [ 117.421875, 47.989922 ], [ 117.421875, 47.754098 ], [ 116.367188, 47.754098 ], [ 116.367188, 47.989922 ], [ 116.015625, 47.989922 ], [ 116.015625, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.989922 ], [ 115.312500, 47.989922 ], [ 115.312500, 48.458352 ], [ 115.664062, 48.458352 ], [ 115.664062, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 49.610710 ], [ 116.367188, 49.610710 ], [ 116.367188, 49.837982 ], [ 117.070312, 49.837982 ], [ 117.070312, 49.610710 ], [ 118.125000, 49.610710 ], [ 118.125000, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 50.064192 ], [ 119.179688, 50.064192 ], [ 119.179688, 50.958427 ], [ 119.531250, 50.958427 ], [ 119.531250, 51.399206 ], [ 119.882812, 51.399206 ], [ 119.882812, 51.835778 ], [ 120.585938, 51.835778 ], [ 120.585938, 52.696361 ], [ 119.882812, 52.696361 ], [ 119.882812, 52.908902 ], [ 120.234375, 52.908902 ], [ 120.234375, 53.120405 ], [ 120.937500, 53.120405 ], [ 120.937500, 53.330873 ], [ 121.640625, 53.330873 ], [ 121.640625, 53.540307 ], [ 123.750000, 53.540307 ] ] ], [ [ [ 135.000000, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 48.690960 ], [ 135.000000, 48.690960 ], [ 135.000000, 48.458352 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.085938, 28.304381 ], [ 98.085938, 27.371767 ], [ 98.789062, 27.371767 ], [ 98.789062, 25.482951 ], [ 98.085938, 25.482951 ], [ 98.085938, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 23.885838 ], [ 98.437500, 23.885838 ], [ 98.437500, 24.206890 ], [ 98.789062, 24.206890 ], [ 98.789062, 22.917923 ], [ 99.492188, 22.917923 ], [ 99.492188, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.492188, 21.943046 ], [ 99.492188, 21.616579 ], [ 101.250000, 21.616579 ], [ 101.250000, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.303418 ], [ 99.492188, 20.303418 ], [ 99.492188, 19.973349 ], [ 99.140625, 19.973349 ], [ 99.140625, 19.642588 ], [ 98.085938, 19.642588 ], [ 98.085938, 18.979026 ], [ 97.734375, 18.979026 ], [ 97.734375, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 17.308688 ], [ 98.085938, 17.308688 ], [ 98.085938, 16.972741 ], [ 98.437500, 16.972741 ], [ 98.437500, 16.636192 ], [ 98.789062, 16.636192 ], [ 98.789062, 15.623037 ], [ 98.437500, 15.623037 ], [ 98.437500, 15.284185 ], [ 98.085938, 15.284185 ], [ 98.085938, 14.944785 ], [ 98.437500, 14.944785 ], [ 98.437500, 14.264383 ], [ 98.789062, 14.264383 ], [ 98.789062, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 10.487812 ], [ 98.789062, 10.487812 ], [ 98.789062, 9.795678 ], [ 98.437500, 9.795678 ], [ 98.437500, 11.178402 ], [ 98.789062, 11.178402 ], [ 98.789062, 11.523088 ], [ 98.437500, 11.523088 ], [ 98.437500, 13.239945 ], [ 98.085938, 13.239945 ], [ 98.085938, 14.264383 ], [ 97.734375, 14.264383 ], [ 97.734375, 15.961329 ], [ 97.382812, 15.961329 ], [ 97.382812, 16.636192 ], [ 96.679688, 16.636192 ], [ 96.679688, 15.961329 ], [ 95.976562, 15.961329 ], [ 95.976562, 15.623037 ], [ 94.921875, 15.623037 ], [ 94.921875, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 16.636192 ], [ 94.570312, 16.636192 ], [ 94.570312, 17.644022 ], [ 94.218750, 17.644022 ], [ 94.218750, 18.312811 ], [ 93.867188, 18.312811 ], [ 93.867188, 18.979026 ], [ 93.515625, 18.979026 ], [ 93.515625, 19.642588 ], [ 93.164062, 19.642588 ], [ 93.164062, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.303418 ], [ 92.460938, 20.303418 ], [ 92.460938, 21.289374 ], [ 92.812500, 21.289374 ], [ 92.812500, 21.943046 ], [ 93.164062, 21.943046 ], [ 93.164062, 24.206890 ], [ 93.515625, 24.206890 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.206890 ], [ 94.570312, 24.206890 ], [ 94.570312, 25.165173 ], [ 94.921875, 25.165173 ], [ 94.921875, 25.799891 ], [ 95.273438, 25.799891 ], [ 95.273438, 26.431228 ], [ 95.625000, 26.431228 ], [ 95.625000, 26.745610 ], [ 95.976562, 26.745610 ], [ 95.976562, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.683528 ], [ 97.382812, 28.304381 ], [ 98.085938, 28.304381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.085938, 28.304381 ], [ 98.085938, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 25.799891 ], [ 98.085938, 25.799891 ], [ 98.085938, 25.482951 ], [ 97.734375, 25.482951 ], [ 97.734375, 25.165173 ], [ 97.382812, 25.165173 ], [ 97.382812, 24.206890 ], [ 98.437500, 24.206890 ], [ 98.437500, 23.563987 ], [ 98.789062, 23.563987 ], [ 98.789062, 23.241346 ], [ 99.492188, 23.241346 ], [ 99.492188, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 21.616579 ], [ 100.898438, 21.616579 ], [ 100.898438, 21.289374 ], [ 100.546875, 21.289374 ], [ 100.546875, 20.961440 ], [ 100.195312, 20.961440 ], [ 100.195312, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 20.303418 ], [ 99.492188, 20.303418 ], [ 99.492188, 19.973349 ], [ 98.085938, 19.973349 ], [ 98.085938, 19.311143 ], [ 97.734375, 19.311143 ], [ 97.734375, 18.646245 ], [ 97.031250, 18.646245 ], [ 97.031250, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 17.644022 ], [ 97.734375, 17.644022 ], [ 97.734375, 17.308688 ], [ 98.085938, 17.308688 ], [ 98.085938, 16.972741 ], [ 98.437500, 16.972741 ], [ 98.437500, 16.636192 ], [ 98.789062, 16.636192 ], [ 98.789062, 15.961329 ], [ 98.437500, 15.961329 ], [ 98.437500, 15.284185 ], [ 98.085938, 15.284185 ], [ 98.085938, 14.604847 ], [ 98.437500, 14.604847 ], [ 98.437500, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 13.581921 ], [ 99.140625, 13.581921 ], [ 99.140625, 12.554564 ], [ 99.492188, 12.554564 ], [ 99.492188, 11.867351 ], [ 99.140625, 11.867351 ], [ 99.140625, 11.178402 ], [ 98.789062, 11.178402 ], [ 98.789062, 10.487812 ], [ 98.437500, 10.487812 ], [ 98.437500, 11.867351 ], [ 98.085938, 11.867351 ], [ 98.085938, 12.554564 ], [ 98.437500, 12.554564 ], [ 98.437500, 13.581921 ], [ 98.085938, 13.581921 ], [ 98.085938, 14.264383 ], [ 97.734375, 14.264383 ], [ 97.734375, 15.623037 ], [ 97.382812, 15.623037 ], [ 97.382812, 16.636192 ], [ 96.328125, 16.636192 ], [ 96.328125, 16.299051 ], [ 95.625000, 16.299051 ], [ 95.625000, 15.961329 ], [ 93.867188, 15.961329 ], [ 93.867188, 16.636192 ], [ 94.218750, 16.636192 ], [ 94.218750, 18.646245 ], [ 93.867188, 18.646245 ], [ 93.867188, 19.311143 ], [ 93.515625, 19.311143 ], [ 93.515625, 19.973349 ], [ 92.460938, 19.973349 ], [ 92.460938, 20.632784 ], [ 92.109375, 20.632784 ], [ 92.109375, 21.616579 ], [ 92.460938, 21.616579 ], [ 92.460938, 22.268764 ], [ 93.164062, 22.268764 ], [ 93.164062, 22.593726 ], [ 92.812500, 22.593726 ], [ 92.812500, 22.917923 ], [ 93.164062, 22.917923 ], [ 93.164062, 23.885838 ], [ 93.867188, 23.885838 ], [ 93.867188, 24.206890 ], [ 94.218750, 24.206890 ], [ 94.218750, 24.846565 ], [ 94.570312, 24.846565 ], [ 94.570312, 25.482951 ], [ 94.921875, 25.482951 ], [ 94.921875, 26.745610 ], [ 95.625000, 26.745610 ], [ 95.625000, 27.059126 ], [ 96.328125, 27.059126 ], [ 96.328125, 27.371767 ], [ 97.031250, 27.371767 ], [ 97.031250, 28.304381 ], [ 98.085938, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.304688, 22.268764 ], [ 102.304688, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.632784 ], [ 104.414062, 20.632784 ], [ 104.414062, 20.303418 ], [ 104.765625, 20.303418 ], [ 104.765625, 19.642588 ], [ 104.062500, 19.642588 ], [ 104.062500, 18.979026 ], [ 104.765625, 18.979026 ], [ 104.765625, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.312811 ], [ 105.468750, 18.312811 ], [ 105.468750, 17.644022 ], [ 105.820312, 17.644022 ], [ 105.820312, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.623037 ], [ 107.578125, 15.623037 ], [ 107.578125, 14.604847 ], [ 107.226562, 14.604847 ], [ 107.226562, 14.264383 ], [ 106.171875, 14.264383 ], [ 106.171875, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.623037 ], [ 105.117188, 15.623037 ], [ 105.117188, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.414062, 17.308688 ], [ 104.414062, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.312811 ], [ 103.359375, 18.312811 ], [ 103.359375, 17.978733 ], [ 101.601562, 17.978733 ], [ 101.601562, 17.644022 ], [ 100.898438, 17.644022 ], [ 100.898438, 18.646245 ], [ 101.250000, 18.646245 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 100.195312, 19.973349 ], [ 100.195312, 20.632784 ], [ 100.546875, 20.632784 ], [ 100.546875, 20.961440 ], [ 101.250000, 20.961440 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.616579 ], [ 101.601562, 21.616579 ], [ 101.601562, 22.268764 ], [ 102.304688, 22.268764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.953125, 22.593726 ], [ 101.953125, 22.268764 ], [ 102.304688, 22.268764 ], [ 102.304688, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.961440 ], [ 104.414062, 20.961440 ], [ 104.414062, 20.303418 ], [ 104.765625, 20.303418 ], [ 104.765625, 19.642588 ], [ 104.062500, 19.642588 ], [ 104.062500, 18.979026 ], [ 104.765625, 18.979026 ], [ 104.765625, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.312811 ], [ 105.468750, 18.312811 ], [ 105.468750, 17.644022 ], [ 105.820312, 17.644022 ], [ 105.820312, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 14.264383 ], [ 106.523438, 14.264383 ], [ 106.523438, 14.604847 ], [ 106.171875, 14.604847 ], [ 106.171875, 14.264383 ], [ 105.820312, 14.264383 ], [ 105.820312, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 14.264383 ], [ 105.117188, 14.264383 ], [ 105.117188, 14.604847 ], [ 105.468750, 14.604847 ], [ 105.468750, 15.623037 ], [ 105.117188, 15.623037 ], [ 105.117188, 16.299051 ], [ 104.765625, 16.299051 ], [ 104.765625, 16.972741 ], [ 104.414062, 16.972741 ], [ 104.414062, 17.644022 ], [ 104.062500, 17.644022 ], [ 104.062500, 17.978733 ], [ 103.710938, 17.978733 ], [ 103.710938, 18.312811 ], [ 103.007812, 18.312811 ], [ 103.007812, 17.978733 ], [ 101.250000, 17.978733 ], [ 101.250000, 17.644022 ], [ 100.898438, 17.644022 ], [ 100.898438, 18.979026 ], [ 101.250000, 18.979026 ], [ 101.250000, 19.642588 ], [ 100.546875, 19.642588 ], [ 100.546875, 20.303418 ], [ 99.843750, 20.303418 ], [ 99.843750, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 21.289374 ], [ 101.601562, 21.289374 ], [ 101.601562, 22.593726 ], [ 101.953125, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.492188, 11.178402 ], [ 99.492188, 10.141932 ], [ 99.140625, 10.141932 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ], [ 99.843750, 8.754795 ], [ 100.195312, 8.754795 ], [ 100.195312, 7.710992 ], [ 100.546875, 7.710992 ], [ 100.546875, 7.013668 ], [ 100.898438, 7.013668 ], [ 100.898438, 6.664608 ], [ 101.601562, 6.664608 ], [ 101.601562, 6.315299 ], [ 102.304688, 6.315299 ], [ 102.304688, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 5.615986 ], [ 101.250000, 5.615986 ], [ 101.250000, 6.315299 ], [ 100.546875, 6.315299 ], [ 100.546875, 6.664608 ], [ 99.843750, 6.664608 ], [ 99.843750, 7.013668 ], [ 99.492188, 7.013668 ], [ 99.492188, 7.710992 ], [ 99.140625, 7.710992 ], [ 99.140625, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 9.449062 ], [ 98.437500, 9.449062 ], [ 98.437500, 9.795678 ], [ 98.789062, 9.795678 ], [ 98.789062, 10.487812 ], [ 99.140625, 10.487812 ], [ 99.140625, 11.178402 ], [ 99.492188, 11.178402 ] ] ], [ [ [ 100.195312, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 18.646245 ], [ 100.898438, 18.646245 ], [ 100.898438, 17.644022 ], [ 101.601562, 17.644022 ], [ 101.601562, 17.978733 ], [ 103.359375, 17.978733 ], [ 103.359375, 18.312811 ], [ 104.062500, 18.312811 ], [ 104.062500, 17.978733 ], [ 104.414062, 17.978733 ], [ 104.414062, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.117188, 15.961329 ], [ 105.117188, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 14.264383 ], [ 103.007812, 14.264383 ], [ 103.007812, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 13.239945 ], [ 102.304688, 13.239945 ], [ 102.304688, 12.554564 ], [ 102.656250, 12.554564 ], [ 102.656250, 12.211180 ], [ 101.953125, 12.211180 ], [ 101.953125, 12.554564 ], [ 100.898438, 12.554564 ], [ 100.898438, 13.239945 ], [ 100.195312, 13.239945 ], [ 100.195312, 12.554564 ], [ 99.843750, 12.554564 ], [ 99.843750, 11.523088 ], [ 99.492188, 11.523088 ], [ 99.492188, 12.211180 ], [ 99.140625, 12.211180 ], [ 99.140625, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 14.264383 ], [ 98.437500, 14.264383 ], [ 98.437500, 14.944785 ], [ 98.085938, 14.944785 ], [ 98.085938, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 15.623037 ], [ 98.789062, 15.623037 ], [ 98.789062, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 16.972741 ], [ 98.085938, 16.972741 ], [ 98.085938, 17.308688 ], [ 97.734375, 17.308688 ], [ 97.734375, 17.978733 ], [ 97.382812, 17.978733 ], [ 97.382812, 18.312811 ], [ 97.734375, 18.312811 ], [ 97.734375, 18.979026 ], [ 98.085938, 18.979026 ], [ 98.085938, 19.642588 ], [ 99.140625, 19.642588 ], [ 99.140625, 19.973349 ], [ 99.492188, 19.973349 ], [ 99.492188, 20.303418 ], [ 100.195312, 20.303418 ], [ 100.195312, 19.973349 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.140625, 11.178402 ], [ 99.140625, 9.449062 ], [ 99.843750, 9.449062 ], [ 99.843750, 8.754795 ], [ 100.195312, 8.754795 ], [ 100.195312, 7.362467 ], [ 100.546875, 7.362467 ], [ 100.546875, 7.013668 ], [ 101.601562, 7.013668 ], [ 101.601562, 6.664608 ], [ 101.953125, 6.664608 ], [ 101.953125, 5.965754 ], [ 100.898438, 5.965754 ], [ 100.898438, 6.315299 ], [ 100.195312, 6.315299 ], [ 100.195312, 6.664608 ], [ 99.492188, 6.664608 ], [ 99.492188, 7.362467 ], [ 99.140625, 7.362467 ], [ 99.140625, 7.710992 ], [ 98.789062, 7.710992 ], [ 98.789062, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 9.449062 ], [ 98.437500, 9.449062 ], [ 98.437500, 10.487812 ], [ 98.789062, 10.487812 ], [ 98.789062, 11.178402 ], [ 99.140625, 11.178402 ] ] ], [ [ [ 99.492188, 11.523088 ], [ 99.140625, 11.523088 ], [ 99.140625, 11.867351 ], [ 99.492188, 11.867351 ], [ 99.492188, 11.523088 ] ] ], [ [ [ 100.546875, 19.642588 ], [ 101.250000, 19.642588 ], [ 101.250000, 18.979026 ], [ 100.898438, 18.979026 ], [ 100.898438, 17.644022 ], [ 101.250000, 17.644022 ], [ 101.250000, 17.978733 ], [ 103.007812, 17.978733 ], [ 103.007812, 18.312811 ], [ 103.710938, 18.312811 ], [ 103.710938, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 17.644022 ], [ 104.414062, 17.644022 ], [ 104.414062, 16.972741 ], [ 104.765625, 16.972741 ], [ 104.765625, 16.299051 ], [ 105.117188, 16.299051 ], [ 105.117188, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 14.604847 ], [ 103.710938, 14.604847 ], [ 103.710938, 14.264383 ], [ 102.656250, 14.264383 ], [ 102.656250, 13.923404 ], [ 102.304688, 13.923404 ], [ 102.304688, 12.211180 ], [ 101.953125, 12.211180 ], [ 101.953125, 12.554564 ], [ 101.601562, 12.554564 ], [ 101.601562, 12.897489 ], [ 100.546875, 12.897489 ], [ 100.546875, 13.239945 ], [ 100.898438, 13.239945 ], [ 100.898438, 13.581921 ], [ 99.843750, 13.581921 ], [ 99.843750, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 12.554564 ], [ 99.140625, 12.554564 ], [ 99.140625, 13.581921 ], [ 98.789062, 13.581921 ], [ 98.789062, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 14.604847 ], [ 98.085938, 14.604847 ], [ 98.085938, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 15.961329 ], [ 98.789062, 15.961329 ], [ 98.789062, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 16.972741 ], [ 98.085938, 16.972741 ], [ 98.085938, 17.308688 ], [ 97.734375, 17.308688 ], [ 97.734375, 17.644022 ], [ 97.382812, 17.644022 ], [ 97.382812, 18.312811 ], [ 97.031250, 18.312811 ], [ 97.031250, 18.646245 ], [ 97.734375, 18.646245 ], [ 97.734375, 19.311143 ], [ 98.085938, 19.311143 ], [ 98.085938, 19.973349 ], [ 99.492188, 19.973349 ], [ 99.492188, 20.303418 ], [ 100.546875, 20.303418 ], [ 100.546875, 19.642588 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 23.241346 ], [ 105.468750, 22.917923 ], [ 106.875000, 22.917923 ], [ 106.875000, 22.593726 ], [ 106.523438, 22.593726 ], [ 106.523438, 21.943046 ], [ 107.226562, 21.943046 ], [ 107.226562, 21.616579 ], [ 107.929688, 21.616579 ], [ 107.929688, 21.289374 ], [ 107.578125, 21.289374 ], [ 107.578125, 20.961440 ], [ 107.226562, 20.961440 ], [ 107.226562, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 20.303418 ], [ 106.523438, 20.303418 ], [ 106.523438, 19.973349 ], [ 106.171875, 19.973349 ], [ 106.171875, 19.642588 ], [ 105.820312, 19.642588 ], [ 105.820312, 18.646245 ], [ 106.171875, 18.646245 ], [ 106.171875, 17.978733 ], [ 106.523438, 17.978733 ], [ 106.523438, 17.644022 ], [ 106.875000, 17.644022 ], [ 106.875000, 16.972741 ], [ 107.226562, 16.972741 ], [ 107.226562, 16.299051 ], [ 107.929688, 16.299051 ], [ 107.929688, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 15.623037 ], [ 108.632812, 15.623037 ], [ 108.632812, 15.284185 ], [ 108.984375, 15.284185 ], [ 108.984375, 14.264383 ], [ 109.335938, 14.264383 ], [ 109.335938, 11.523088 ], [ 108.984375, 11.523088 ], [ 108.984375, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.833306 ], [ 107.578125, 10.833306 ], [ 107.578125, 10.487812 ], [ 107.226562, 10.487812 ], [ 107.226562, 10.141932 ], [ 106.875000, 10.141932 ], [ 106.875000, 9.449062 ], [ 106.523438, 9.449062 ], [ 106.523438, 9.102097 ], [ 105.820312, 9.102097 ], [ 105.820312, 8.754795 ], [ 104.765625, 8.754795 ], [ 104.765625, 9.449062 ], [ 105.117188, 9.449062 ], [ 105.117188, 9.795678 ], [ 104.765625, 9.795678 ], [ 104.765625, 10.141932 ], [ 104.414062, 10.141932 ], [ 104.414062, 10.487812 ], [ 105.117188, 10.487812 ], [ 105.117188, 10.833306 ], [ 106.171875, 10.833306 ], [ 106.171875, 11.178402 ], [ 105.820312, 11.178402 ], [ 105.820312, 11.523088 ], [ 106.523438, 11.523088 ], [ 106.523438, 11.867351 ], [ 107.226562, 11.867351 ], [ 107.226562, 12.211180 ], [ 107.578125, 12.211180 ], [ 107.578125, 13.923404 ], [ 107.226562, 13.923404 ], [ 107.226562, 14.604847 ], [ 107.578125, 14.604847 ], [ 107.578125, 15.623037 ], [ 107.226562, 15.623037 ], [ 107.226562, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 16.299051 ], [ 106.523438, 16.299051 ], [ 106.523438, 16.636192 ], [ 106.171875, 16.636192 ], [ 106.171875, 17.308688 ], [ 105.820312, 17.308688 ], [ 105.820312, 17.644022 ], [ 105.468750, 17.644022 ], [ 105.468750, 18.312811 ], [ 105.117188, 18.312811 ], [ 105.117188, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 18.979026 ], [ 104.062500, 18.979026 ], [ 104.062500, 19.642588 ], [ 104.765625, 19.642588 ], [ 104.765625, 20.303418 ], [ 104.414062, 20.303418 ], [ 104.414062, 20.632784 ], [ 103.007812, 20.632784 ], [ 103.007812, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 102.304688, 21.943046 ], [ 102.304688, 22.593726 ], [ 104.062500, 22.593726 ], [ 104.062500, 22.917923 ], [ 105.117188, 22.917923 ], [ 105.117188, 23.241346 ], [ 105.468750, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.820312, 23.241346 ], [ 105.820312, 22.917923 ], [ 106.523438, 22.917923 ], [ 106.523438, 21.943046 ], [ 107.226562, 21.943046 ], [ 107.226562, 21.616579 ], [ 107.929688, 21.616579 ], [ 107.929688, 21.289374 ], [ 107.226562, 21.289374 ], [ 107.226562, 20.961440 ], [ 106.523438, 20.961440 ], [ 106.523438, 20.632784 ], [ 106.171875, 20.632784 ], [ 106.171875, 19.973349 ], [ 105.820312, 19.973349 ], [ 105.820312, 19.642588 ], [ 105.468750, 19.642588 ], [ 105.468750, 18.979026 ], [ 105.820312, 18.979026 ], [ 105.820312, 18.312811 ], [ 106.171875, 18.312811 ], [ 106.171875, 17.978733 ], [ 106.523438, 17.978733 ], [ 106.523438, 17.644022 ], [ 106.875000, 17.644022 ], [ 106.875000, 16.972741 ], [ 107.226562, 16.972741 ], [ 107.226562, 16.636192 ], [ 107.578125, 16.636192 ], [ 107.578125, 16.299051 ], [ 107.929688, 16.299051 ], [ 107.929688, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 15.284185 ], [ 108.632812, 15.284185 ], [ 108.632812, 14.604847 ], [ 108.984375, 14.604847 ], [ 108.984375, 13.923404 ], [ 109.335938, 13.923404 ], [ 109.335938, 12.554564 ], [ 108.984375, 12.554564 ], [ 108.984375, 11.523088 ], [ 108.632812, 11.523088 ], [ 108.632812, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.833306 ], [ 107.578125, 10.833306 ], [ 107.578125, 10.487812 ], [ 106.875000, 10.487812 ], [ 106.875000, 10.141932 ], [ 106.523438, 10.141932 ], [ 106.523438, 9.795678 ], [ 106.171875, 9.795678 ], [ 106.171875, 9.449062 ], [ 105.820312, 9.449062 ], [ 105.820312, 9.102097 ], [ 105.468750, 9.102097 ], [ 105.468750, 8.754795 ], [ 105.117188, 8.754795 ], [ 105.117188, 9.102097 ], [ 104.765625, 9.102097 ], [ 104.765625, 10.141932 ], [ 104.062500, 10.141932 ], [ 104.062500, 10.487812 ], [ 104.414062, 10.487812 ], [ 104.414062, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 11.178402 ], [ 105.820312, 11.178402 ], [ 105.820312, 11.523088 ], [ 105.468750, 11.523088 ], [ 105.468750, 11.867351 ], [ 106.171875, 11.867351 ], [ 106.171875, 12.211180 ], [ 106.875000, 12.211180 ], [ 106.875000, 12.554564 ], [ 107.226562, 12.554564 ], [ 107.226562, 12.897489 ], [ 107.578125, 12.897489 ], [ 107.578125, 13.923404 ], [ 107.226562, 13.923404 ], [ 107.226562, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 16.299051 ], [ 106.523438, 16.299051 ], [ 106.523438, 16.636192 ], [ 106.171875, 16.636192 ], [ 106.171875, 17.308688 ], [ 105.820312, 17.308688 ], [ 105.820312, 17.644022 ], [ 105.468750, 17.644022 ], [ 105.468750, 18.312811 ], [ 105.117188, 18.312811 ], [ 105.117188, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 18.979026 ], [ 104.062500, 18.979026 ], [ 104.062500, 19.642588 ], [ 104.765625, 19.642588 ], [ 104.765625, 20.303418 ], [ 104.414062, 20.303418 ], [ 104.414062, 20.961440 ], [ 103.007812, 20.961440 ], [ 103.007812, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 102.304688, 21.943046 ], [ 102.304688, 22.268764 ], [ 101.953125, 22.268764 ], [ 101.953125, 22.593726 ], [ 102.656250, 22.593726 ], [ 102.656250, 22.917923 ], [ 104.765625, 22.917923 ], [ 104.765625, 23.241346 ], [ 105.820312, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.226562, 14.264383 ], [ 107.226562, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.211180 ], [ 107.226562, 12.211180 ], [ 107.226562, 11.867351 ], [ 106.523438, 11.867351 ], [ 106.523438, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.178402 ], [ 106.171875, 11.178402 ], [ 106.171875, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 10.833306 ], [ 103.007812, 10.833306 ], [ 103.007812, 11.523088 ], [ 102.656250, 11.523088 ], [ 102.656250, 12.554564 ], [ 102.304688, 12.554564 ], [ 102.304688, 13.239945 ], [ 102.656250, 13.239945 ], [ 102.656250, 13.923404 ], [ 103.007812, 13.923404 ], [ 103.007812, 14.264383 ], [ 105.468750, 14.264383 ], [ 105.468750, 13.923404 ], [ 106.171875, 13.923404 ], [ 106.171875, 14.264383 ], [ 107.226562, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.523438, 14.604847 ], [ 106.523438, 14.264383 ], [ 107.226562, 14.264383 ], [ 107.226562, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.897489 ], [ 107.226562, 12.897489 ], [ 107.226562, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 12.211180 ], [ 106.171875, 12.211180 ], [ 106.171875, 11.867351 ], [ 105.468750, 11.867351 ], [ 105.468750, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.178402 ], [ 105.117188, 11.178402 ], [ 105.117188, 10.833306 ], [ 104.414062, 10.833306 ], [ 104.414062, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 10.833306 ], [ 103.007812, 10.833306 ], [ 103.007812, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 11.867351 ], [ 102.304688, 11.867351 ], [ 102.304688, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 14.264383 ], [ 103.710938, 14.264383 ], [ 103.710938, 14.604847 ], [ 105.117188, 14.604847 ], [ 105.117188, 14.264383 ], [ 105.468750, 14.264383 ], [ 105.468750, 13.923404 ], [ 105.820312, 13.923404 ], [ 105.820312, 14.264383 ], [ 106.171875, 14.264383 ], [ 106.171875, 14.604847 ], [ 106.523438, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.070312, 7.013668 ], [ 117.070312, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 6.315299 ], [ 117.773438, 6.315299 ], [ 117.773438, 5.615986 ], [ 118.476562, 5.615986 ], [ 118.476562, 5.266008 ], [ 119.179688, 5.266008 ], [ 119.179688, 4.915833 ], [ 118.476562, 4.915833 ], [ 118.476562, 4.214943 ], [ 116.015625, 4.214943 ], [ 116.015625, 3.513421 ], [ 115.664062, 3.513421 ], [ 115.664062, 2.811371 ], [ 114.960938, 2.811371 ], [ 114.960938, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.054628 ], [ 113.203125, 1.054628 ], [ 113.203125, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.703107 ], [ 110.039062, 0.703107 ], [ 110.039062, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ], [ 111.093750, 1.757537 ], [ 111.093750, 2.108899 ], [ 111.445312, 2.108899 ], [ 111.445312, 2.811371 ], [ 112.500000, 2.811371 ], [ 112.500000, 3.162456 ], [ 113.203125, 3.162456 ], [ 113.203125, 3.513421 ], [ 113.554688, 3.513421 ], [ 113.554688, 3.864255 ], [ 113.906250, 3.864255 ], [ 113.906250, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 3.864255 ], [ 114.960938, 3.864255 ], [ 114.960938, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 115.664062, 5.615986 ], [ 115.664062, 5.965754 ], [ 116.367188, 5.965754 ], [ 116.367188, 6.664608 ], [ 116.718750, 6.664608 ], [ 116.718750, 7.013668 ], [ 117.070312, 7.013668 ] ] ], [ [ [ 100.546875, 6.664608 ], [ 100.546875, 6.315299 ], [ 101.250000, 6.315299 ], [ 101.250000, 5.615986 ], [ 101.953125, 5.615986 ], [ 101.953125, 5.965754 ], [ 102.304688, 5.965754 ], [ 102.304688, 5.615986 ], [ 103.007812, 5.615986 ], [ 103.007812, 5.266008 ], [ 103.359375, 5.266008 ], [ 103.359375, 2.460181 ], [ 103.710938, 2.460181 ], [ 103.710938, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.757537 ], [ 104.414062, 1.757537 ], [ 104.414062, 1.406109 ], [ 104.062500, 1.406109 ], [ 104.062500, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 1.757537 ], [ 102.656250, 1.757537 ], [ 102.656250, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 2.460181 ], [ 101.250000, 2.460181 ], [ 101.250000, 3.162456 ], [ 100.898438, 3.162456 ], [ 100.898438, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 4.915833 ], [ 100.195312, 4.915833 ], [ 100.195312, 6.664608 ], [ 100.546875, 6.664608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.687500, 1.757537 ], [ 111.093750, 1.757537 ], [ 111.093750, 2.811371 ], [ 111.796875, 2.811371 ], [ 111.796875, 3.162456 ], [ 113.203125, 3.162456 ], [ 113.203125, 3.864255 ], [ 113.554688, 3.864255 ], [ 113.554688, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.565474 ], [ 115.312500, 4.565474 ], [ 115.312500, 5.615986 ], [ 115.664062, 5.615986 ], [ 115.664062, 5.965754 ], [ 116.015625, 5.965754 ], [ 116.015625, 6.315299 ], [ 116.367188, 6.315299 ], [ 116.367188, 6.664608 ], [ 116.718750, 6.664608 ], [ 116.718750, 7.013668 ], [ 117.070312, 7.013668 ], [ 117.070312, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 5.965754 ], [ 118.476562, 5.965754 ], [ 118.476562, 5.615986 ], [ 119.179688, 5.615986 ], [ 119.179688, 5.266008 ], [ 118.125000, 5.266008 ], [ 118.125000, 4.915833 ], [ 118.476562, 4.915833 ], [ 118.476562, 4.214943 ], [ 117.070312, 4.214943 ], [ 117.070312, 4.565474 ], [ 115.664062, 4.565474 ], [ 115.664062, 3.864255 ], [ 115.312500, 3.864255 ], [ 115.312500, 3.162456 ], [ 114.960938, 3.162456 ], [ 114.960938, 2.460181 ], [ 114.609375, 2.460181 ], [ 114.609375, 1.757537 ], [ 114.257812, 1.757537 ], [ 114.257812, 1.406109 ], [ 112.851562, 1.406109 ], [ 112.851562, 1.757537 ], [ 112.148438, 1.757537 ], [ 112.148438, 1.406109 ], [ 111.796875, 1.406109 ], [ 111.796875, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ] ] ], [ [ [ 100.195312, 6.315299 ], [ 100.898438, 6.315299 ], [ 100.898438, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 6.315299 ], [ 102.304688, 6.315299 ], [ 102.304688, 5.965754 ], [ 102.656250, 5.965754 ], [ 102.656250, 5.266008 ], [ 103.007812, 5.266008 ], [ 103.007812, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 3.864255 ], [ 103.007812, 3.864255 ], [ 103.007812, 3.513421 ], [ 103.359375, 3.513421 ], [ 103.359375, 2.811371 ], [ 103.710938, 2.811371 ], [ 103.710938, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.406109 ], [ 103.007812, 1.406109 ], [ 103.007812, 1.757537 ], [ 102.304688, 1.757537 ], [ 102.304688, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 2.460181 ], [ 101.250000, 2.460181 ], [ 101.250000, 3.513421 ], [ 100.898438, 3.513421 ], [ 100.898438, 3.864255 ], [ 100.546875, 3.864255 ], [ 100.546875, 5.266008 ], [ 100.195312, 5.266008 ], [ 100.195312, 6.315299 ] ] ], [ [ [ 109.687500, 1.757537 ], [ 109.335938, 1.757537 ], [ 109.335938, 2.108899 ], [ 109.687500, 2.108899 ], [ 109.687500, 1.757537 ] ] ], [ [ [ 100.195312, 6.315299 ], [ 99.843750, 6.315299 ], [ 99.843750, 6.664608 ], [ 100.195312, 6.664608 ], [ 100.195312, 6.315299 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.992188, 24.846565 ], [ 121.992188, 24.527135 ], [ 121.640625, 24.527135 ], [ 121.640625, 23.563987 ], [ 121.289062, 23.563987 ], [ 121.289062, 22.593726 ], [ 120.937500, 22.593726 ], [ 120.937500, 21.943046 ], [ 120.585938, 21.943046 ], [ 120.585938, 22.268764 ], [ 120.234375, 22.268764 ], [ 120.234375, 23.885838 ], [ 120.585938, 23.885838 ], [ 120.585938, 24.527135 ], [ 120.937500, 24.527135 ], [ 120.937500, 24.846565 ], [ 121.992188, 24.846565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.640625, 25.165173 ], [ 121.640625, 23.885838 ], [ 121.289062, 23.885838 ], [ 121.289062, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 22.593726 ], [ 120.585938, 22.593726 ], [ 120.585938, 22.268764 ], [ 120.234375, 22.268764 ], [ 120.234375, 22.593726 ], [ 119.882812, 22.593726 ], [ 119.882812, 23.885838 ], [ 120.234375, 23.885838 ], [ 120.234375, 24.527135 ], [ 120.585938, 24.527135 ], [ 120.585938, 24.846565 ], [ 120.937500, 24.846565 ], [ 120.937500, 25.165173 ], [ 121.640625, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.429688, 42.811522 ], [ 130.429688, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.771312 ], [ 129.726562, 41.771312 ], [ 129.726562, 40.713956 ], [ 129.023438, 40.713956 ], [ 129.023438, 40.178873 ], [ 128.671875, 40.178873 ], [ 128.671875, 39.909736 ], [ 127.968750, 39.909736 ], [ 127.968750, 39.639538 ], [ 127.617188, 39.639538 ], [ 127.617188, 38.822591 ], [ 127.968750, 38.822591 ], [ 127.968750, 38.548165 ], [ 128.320312, 38.548165 ], [ 128.320312, 38.272689 ], [ 126.914062, 38.272689 ], [ 126.914062, 37.996163 ], [ 126.562500, 37.996163 ], [ 126.562500, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.996163 ], [ 124.804688, 37.996163 ], [ 124.804688, 38.272689 ], [ 125.156250, 38.272689 ], [ 125.156250, 39.095963 ], [ 125.507812, 39.095963 ], [ 125.507812, 39.368279 ], [ 125.156250, 39.368279 ], [ 125.156250, 39.639538 ], [ 124.101562, 39.639538 ], [ 124.101562, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 40.178873 ], [ 125.156250, 40.178873 ], [ 125.156250, 40.446947 ], [ 125.507812, 40.446947 ], [ 125.507812, 40.713956 ], [ 126.210938, 40.713956 ], [ 126.210938, 40.979898 ], [ 126.562500, 40.979898 ], [ 126.562500, 41.508577 ], [ 128.320312, 41.508577 ], [ 128.320312, 41.771312 ], [ 127.968750, 41.771312 ], [ 127.968750, 42.032974 ], [ 128.671875, 42.032974 ], [ 128.671875, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.553080 ], [ 129.726562, 42.553080 ], [ 129.726562, 42.811522 ], [ 130.429688, 42.811522 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.078125, 42.811522 ], [ 130.078125, 42.553080 ], [ 130.429688, 42.553080 ], [ 130.429688, 42.293564 ], [ 130.078125, 42.293564 ], [ 130.078125, 42.032974 ], [ 129.726562, 42.032974 ], [ 129.726562, 41.771312 ], [ 129.375000, 41.771312 ], [ 129.375000, 40.713956 ], [ 128.671875, 40.713956 ], [ 128.671875, 40.446947 ], [ 128.320312, 40.446947 ], [ 128.320312, 40.178873 ], [ 127.968750, 40.178873 ], [ 127.968750, 39.909736 ], [ 127.265625, 39.909736 ], [ 127.265625, 39.095963 ], [ 127.617188, 39.095963 ], [ 127.617188, 38.822591 ], [ 128.320312, 38.822591 ], [ 128.320312, 38.548165 ], [ 127.617188, 38.548165 ], [ 127.617188, 38.272689 ], [ 126.914062, 38.272689 ], [ 126.914062, 37.996163 ], [ 125.507812, 37.996163 ], [ 125.507812, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.996163 ], [ 124.453125, 37.996163 ], [ 124.453125, 38.272689 ], [ 124.804688, 38.272689 ], [ 124.804688, 38.548165 ], [ 125.156250, 38.548165 ], [ 125.156250, 38.822591 ], [ 124.804688, 38.822591 ], [ 124.804688, 39.368279 ], [ 125.156250, 39.368279 ], [ 125.156250, 39.639538 ], [ 124.453125, 39.639538 ], [ 124.453125, 39.909736 ], [ 124.101562, 39.909736 ], [ 124.101562, 40.178873 ], [ 124.453125, 40.178873 ], [ 124.453125, 40.446947 ], [ 124.804688, 40.446947 ], [ 124.804688, 40.713956 ], [ 125.156250, 40.713956 ], [ 125.156250, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 41.244772 ], [ 126.210938, 41.244772 ], [ 126.210938, 41.771312 ], [ 126.914062, 41.771312 ], [ 126.914062, 41.508577 ], [ 127.968750, 41.508577 ], [ 127.968750, 42.032974 ], [ 128.671875, 42.032974 ], [ 128.671875, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.811522 ], [ 130.078125, 42.811522 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.671875, 38.272689 ], [ 128.671875, 37.996163 ], [ 129.023438, 37.996163 ], [ 129.023438, 37.439974 ], [ 129.375000, 37.439974 ], [ 129.375000, 35.460670 ], [ 129.023438, 35.460670 ], [ 129.023438, 34.885931 ], [ 127.968750, 34.885931 ], [ 127.968750, 34.597042 ], [ 127.265625, 34.597042 ], [ 127.265625, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 34.597042 ], [ 126.210938, 34.597042 ], [ 126.210938, 35.173808 ], [ 126.562500, 35.173808 ], [ 126.562500, 36.031332 ], [ 126.210938, 36.031332 ], [ 126.210938, 36.597889 ], [ 126.914062, 36.597889 ], [ 126.914062, 36.879621 ], [ 126.562500, 36.879621 ], [ 126.562500, 37.439974 ], [ 126.210938, 37.439974 ], [ 126.210938, 37.718590 ], [ 126.562500, 37.718590 ], [ 126.562500, 37.996163 ], [ 126.914062, 37.996163 ], [ 126.914062, 38.272689 ], [ 128.671875, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.548165 ], [ 128.320312, 38.272689 ], [ 128.671875, 38.272689 ], [ 128.671875, 37.718590 ], [ 129.023438, 37.718590 ], [ 129.023438, 37.160317 ], [ 129.375000, 37.160317 ], [ 129.375000, 35.460670 ], [ 129.023438, 35.460670 ], [ 129.023438, 35.173808 ], [ 127.968750, 35.173808 ], [ 127.968750, 34.885931 ], [ 127.617188, 34.885931 ], [ 127.617188, 34.597042 ], [ 126.210938, 34.597042 ], [ 126.210938, 36.315125 ], [ 125.859375, 36.315125 ], [ 125.859375, 36.879621 ], [ 126.562500, 36.879621 ], [ 126.562500, 37.160317 ], [ 126.210938, 37.160317 ], [ 126.210938, 37.718590 ], [ 125.859375, 37.718590 ], [ 125.859375, 37.996163 ], [ 126.914062, 37.996163 ], [ 126.914062, 38.272689 ], [ 127.617188, 38.272689 ], [ 127.617188, 38.548165 ], [ 128.320312, 38.548165 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.449062 ], [ 126.210938, 8.059230 ], [ 126.562500, 8.059230 ], [ 126.562500, 6.664608 ], [ 125.859375, 6.664608 ], [ 125.859375, 7.013668 ], [ 125.507812, 7.013668 ], [ 125.507812, 5.615986 ], [ 124.804688, 5.615986 ], [ 124.804688, 5.965754 ], [ 124.101562, 5.965754 ], [ 124.101562, 7.362467 ], [ 122.695312, 7.362467 ], [ 122.695312, 7.013668 ], [ 121.992188, 7.013668 ], [ 121.992188, 7.710992 ], [ 122.343750, 7.710992 ], [ 122.343750, 8.059230 ], [ 123.046875, 8.059230 ], [ 123.046875, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 8.754795 ], [ 124.804688, 8.754795 ], [ 124.804688, 9.102097 ], [ 125.507812, 9.102097 ], [ 125.507812, 9.449062 ], [ 126.210938, 9.449062 ] ] ], [ [ [ 120.585938, 13.581921 ], [ 120.585938, 14.264383 ], [ 120.937500, 14.264383 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.944785 ], [ 119.882812, 14.944785 ], [ 119.882812, 15.961329 ], [ 120.234375, 15.961329 ], [ 120.234375, 17.978733 ], [ 120.585938, 17.978733 ], [ 120.585938, 18.646245 ], [ 121.289062, 18.646245 ], [ 121.289062, 18.312811 ], [ 122.343750, 18.312811 ], [ 122.343750, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 14.264383 ], [ 123.046875, 14.264383 ], [ 123.046875, 13.923404 ], [ 124.101562, 13.923404 ], [ 124.101562, 13.581921 ], [ 123.750000, 13.581921 ], [ 123.750000, 12.897489 ], [ 124.101562, 12.897489 ], [ 124.101562, 12.554564 ], [ 123.398438, 12.554564 ], [ 123.398438, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.581921 ], [ 121.289062, 13.581921 ], [ 121.289062, 13.239945 ], [ 121.640625, 13.239945 ], [ 121.640625, 12.554564 ], [ 121.289062, 12.554564 ], [ 121.289062, 12.211180 ], [ 120.937500, 12.211180 ], [ 120.937500, 12.554564 ], [ 120.585938, 12.554564 ], [ 120.585938, 13.239945 ], [ 120.234375, 13.239945 ], [ 120.234375, 13.581921 ], [ 120.585938, 13.581921 ] ] ], [ [ [ 123.046875, 10.833306 ], [ 122.695312, 10.833306 ], [ 122.695312, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.523088 ], [ 123.046875, 11.523088 ], [ 123.046875, 10.833306 ] ] ], [ [ [ 118.125000, 9.102097 ], [ 118.125000, 8.754795 ], [ 117.773438, 8.754795 ], [ 117.773438, 9.102097 ], [ 118.125000, 9.102097 ] ] ], [ [ [ 124.101562, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 12.211180 ], [ 125.507812, 12.211180 ], [ 125.507812, 11.523088 ], [ 125.859375, 11.523088 ], [ 125.859375, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 10.141932 ], [ 124.804688, 10.141932 ], [ 124.804688, 10.833306 ], [ 124.453125, 10.833306 ], [ 124.453125, 11.523088 ], [ 124.804688, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.453125, 11.867351 ], [ 124.453125, 12.211180 ], [ 124.101562, 12.211180 ], [ 124.101562, 12.554564 ] ] ], [ [ [ 118.476562, 9.449062 ], [ 118.476562, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 9.449062 ], [ 118.476562, 9.449062 ] ] ], [ [ [ 119.531250, 10.141932 ], [ 119.179688, 10.141932 ], [ 119.179688, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 9.449062 ], [ 118.476562, 9.449062 ], [ 118.476562, 10.141932 ], [ 118.828125, 10.141932 ], [ 118.828125, 10.487812 ], [ 119.179688, 10.487812 ], [ 119.179688, 11.178402 ], [ 119.531250, 11.178402 ], [ 119.531250, 10.141932 ] ] ], [ [ [ 123.046875, 10.833306 ], [ 123.398438, 10.833306 ], [ 123.398438, 10.141932 ], [ 123.750000, 10.141932 ], [ 123.750000, 10.833306 ], [ 124.101562, 10.833306 ], [ 124.101562, 9.795678 ], [ 123.750000, 9.795678 ], [ 123.750000, 9.449062 ], [ 123.398438, 9.449062 ], [ 123.398438, 9.102097 ], [ 122.695312, 9.102097 ], [ 122.695312, 9.449062 ], [ 122.343750, 9.449062 ], [ 122.343750, 9.795678 ], [ 122.695312, 9.795678 ], [ 122.695312, 10.487812 ], [ 123.046875, 10.487812 ], [ 123.046875, 10.833306 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.507812, 6.664608 ], [ 125.507812, 5.965754 ], [ 125.156250, 5.965754 ], [ 125.156250, 5.615986 ], [ 124.804688, 5.615986 ], [ 124.804688, 5.965754 ], [ 124.101562, 5.965754 ], [ 124.101562, 6.664608 ], [ 123.750000, 6.664608 ], [ 123.750000, 7.013668 ], [ 124.101562, 7.013668 ], [ 124.101562, 7.362467 ], [ 123.750000, 7.362467 ], [ 123.750000, 7.710992 ], [ 122.695312, 7.710992 ], [ 122.695312, 7.362467 ], [ 122.343750, 7.362467 ], [ 122.343750, 7.013668 ], [ 121.640625, 7.013668 ], [ 121.640625, 7.710992 ], [ 121.992188, 7.710992 ], [ 121.992188, 8.059230 ], [ 122.695312, 8.059230 ], [ 122.695312, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 9.102097 ], [ 125.156250, 9.102097 ], [ 125.156250, 9.795678 ], [ 125.507812, 9.795678 ], [ 125.507812, 9.449062 ], [ 126.210938, 9.449062 ], [ 126.210938, 6.664608 ], [ 125.507812, 6.664608 ] ], [ [ 125.507812, 6.664608 ], [ 125.507812, 7.013668 ], [ 125.156250, 7.013668 ], [ 125.156250, 6.664608 ], [ 125.507812, 6.664608 ] ] ], [ [ [ 124.101562, 12.897489 ], [ 123.750000, 12.897489 ], [ 123.750000, 12.554564 ], [ 123.398438, 12.554564 ], [ 123.398438, 12.897489 ], [ 123.046875, 12.897489 ], [ 123.046875, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.581921 ], [ 121.992188, 13.581921 ], [ 121.992188, 13.923404 ], [ 120.585938, 13.923404 ], [ 120.585938, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.944785 ], [ 119.882812, 14.944785 ], [ 119.882812, 16.299051 ], [ 120.234375, 16.299051 ], [ 120.234375, 17.978733 ], [ 120.585938, 17.978733 ], [ 120.585938, 18.646245 ], [ 121.289062, 18.646245 ], [ 121.289062, 18.312811 ], [ 121.992188, 18.312811 ], [ 121.992188, 17.644022 ], [ 122.343750, 17.644022 ], [ 122.343750, 16.636192 ], [ 121.992188, 16.636192 ], [ 121.992188, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 15.623037 ], [ 121.289062, 15.623037 ], [ 121.289062, 14.944785 ], [ 121.640625, 14.944785 ], [ 121.640625, 14.264383 ], [ 123.398438, 14.264383 ], [ 123.398438, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ], [ 124.101562, 13.239945 ], [ 124.101562, 12.897489 ] ] ], [ [ [ 123.046875, 11.867351 ], [ 123.046875, 11.178402 ], [ 123.398438, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 10.141932 ], [ 123.398438, 10.141932 ], [ 123.398438, 9.795678 ], [ 123.046875, 9.795678 ], [ 123.046875, 9.102097 ], [ 122.695312, 9.102097 ], [ 122.695312, 9.449062 ], [ 122.343750, 9.449062 ], [ 122.343750, 10.141932 ], [ 122.695312, 10.141932 ], [ 122.695312, 10.833306 ], [ 122.343750, 10.833306 ], [ 122.343750, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 10.833306 ], [ 121.640625, 10.833306 ], [ 121.640625, 11.178402 ], [ 121.992188, 11.178402 ], [ 121.992188, 11.867351 ], [ 123.046875, 11.867351 ] ], [ [ 123.398438, 10.833306 ], [ 123.046875, 10.833306 ], [ 123.046875, 10.487812 ], [ 123.398438, 10.487812 ], [ 123.398438, 10.833306 ] ] ], [ [ [ 117.421875, 8.754795 ], [ 117.421875, 8.407168 ], [ 117.070312, 8.407168 ], [ 117.070312, 8.754795 ], [ 117.421875, 8.754795 ] ] ], [ [ [ 118.476562, 9.795678 ], [ 118.476562, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 8.754795 ], [ 117.421875, 8.754795 ], [ 117.421875, 9.102097 ], [ 117.773438, 9.102097 ], [ 117.773438, 9.449062 ], [ 118.125000, 9.449062 ], [ 118.125000, 9.795678 ], [ 118.476562, 9.795678 ] ] ], [ [ [ 124.453125, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 11.523088 ], [ 125.507812, 11.523088 ], [ 125.507812, 11.178402 ], [ 124.804688, 11.178402 ], [ 124.804688, 10.833306 ], [ 125.156250, 10.833306 ], [ 125.156250, 10.141932 ], [ 124.453125, 10.141932 ], [ 124.453125, 11.178402 ], [ 124.101562, 11.178402 ], [ 124.101562, 11.523088 ], [ 124.804688, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.453125, 11.867351 ], [ 124.453125, 12.554564 ] ] ], [ [ [ 118.828125, 10.141932 ], [ 118.828125, 9.795678 ], [ 118.476562, 9.795678 ], [ 118.476562, 10.141932 ], [ 118.828125, 10.141932 ] ] ], [ [ [ 120.937500, 13.581921 ], [ 120.937500, 13.239945 ], [ 121.289062, 13.239945 ], [ 121.289062, 12.554564 ], [ 120.585938, 12.554564 ], [ 120.585938, 13.239945 ], [ 120.234375, 13.239945 ], [ 120.234375, 13.581921 ], [ 120.937500, 13.581921 ] ] ], [ [ [ 119.531250, 10.487812 ], [ 119.179688, 10.487812 ], [ 119.179688, 10.141932 ], [ 118.828125, 10.141932 ], [ 118.828125, 10.833306 ], [ 119.179688, 10.833306 ], [ 119.179688, 11.178402 ], [ 119.531250, 11.178402 ], [ 119.531250, 10.487812 ] ] ], [ [ [ 124.101562, 12.897489 ], [ 124.453125, 12.897489 ], [ 124.453125, 12.554564 ], [ 124.101562, 12.554564 ], [ 124.101562, 12.897489 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 5.266008 ], [ 115.312500, 4.214943 ], [ 114.960938, 4.214943 ], [ 114.960938, 3.864255 ], [ 114.609375, 3.864255 ], [ 114.609375, 4.214943 ], [ 114.257812, 4.214943 ], [ 114.257812, 4.565474 ], [ 114.609375, 4.565474 ], [ 114.609375, 4.915833 ], [ 114.960938, 4.915833 ], [ 114.960938, 5.266008 ], [ 115.312500, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 5.266008 ], [ 115.312500, 4.565474 ], [ 114.609375, 4.565474 ], [ 114.609375, 4.214943 ], [ 113.906250, 4.214943 ], [ 113.906250, 4.565474 ], [ 114.257812, 4.565474 ], [ 114.257812, 4.915833 ], [ 114.609375, 4.915833 ], [ 114.609375, 5.266008 ], [ 115.312500, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, 41.508577 ], [ 141.328125, 41.508577 ], [ 141.328125, 40.979898 ], [ 141.679688, 40.979898 ], [ 141.679688, 40.178873 ], [ 142.031250, 40.178873 ], [ 142.031250, 38.822591 ], [ 141.679688, 38.822591 ], [ 141.679688, 38.548165 ], [ 141.328125, 38.548165 ], [ 141.328125, 38.272689 ], [ 140.976562, 38.272689 ], [ 140.976562, 36.597889 ], [ 140.625000, 36.597889 ], [ 140.625000, 35.460670 ], [ 140.273438, 35.460670 ], [ 140.273438, 34.885931 ], [ 139.570312, 34.885931 ], [ 139.570312, 34.597042 ], [ 137.109375, 34.597042 ], [ 137.109375, 34.307144 ], [ 136.757812, 34.307144 ], [ 136.757812, 34.016242 ], [ 136.406250, 34.016242 ], [ 136.406250, 33.724340 ], [ 136.054688, 33.724340 ], [ 136.054688, 33.431441 ], [ 135.000000, 33.431441 ], [ 135.000000, 34.597042 ], [ 134.296875, 34.597042 ], [ 134.296875, 34.307144 ], [ 132.890625, 34.307144 ], [ 132.890625, 34.016242 ], [ 131.132812, 34.016242 ], [ 131.132812, 33.724340 ], [ 131.484375, 33.724340 ], [ 131.484375, 33.137551 ], [ 131.835938, 33.137551 ], [ 131.835938, 32.249974 ], [ 131.484375, 32.249974 ], [ 131.484375, 31.052934 ], [ 130.078125, 31.052934 ], [ 130.078125, 31.653381 ], [ 130.429688, 31.653381 ], [ 130.429688, 32.249974 ], [ 129.726562, 32.249974 ], [ 129.726562, 32.842674 ], [ 129.375000, 32.842674 ], [ 129.375000, 33.431441 ], [ 130.078125, 33.431441 ], [ 130.078125, 33.724340 ], [ 130.429688, 33.724340 ], [ 130.429688, 34.016242 ], [ 130.781250, 34.016242 ], [ 130.781250, 34.307144 ], [ 131.132812, 34.307144 ], [ 131.132812, 34.597042 ], [ 131.835938, 34.597042 ], [ 131.835938, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.173808 ], [ 132.539062, 35.173808 ], [ 132.539062, 35.460670 ], [ 133.945312, 35.460670 ], [ 133.945312, 35.746512 ], [ 135.000000, 35.746512 ], [ 135.000000, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.746512 ], [ 136.054688, 35.746512 ], [ 136.054688, 36.315125 ], [ 136.406250, 36.315125 ], [ 136.406250, 36.879621 ], [ 136.757812, 36.879621 ], [ 136.757812, 37.160317 ], [ 137.109375, 37.160317 ], [ 137.109375, 36.879621 ], [ 137.812500, 36.879621 ], [ 137.812500, 37.160317 ], [ 138.515625, 37.160317 ], [ 138.515625, 37.439974 ], [ 138.867188, 37.439974 ], [ 138.867188, 37.718590 ], [ 139.218750, 37.718590 ], [ 139.218750, 37.996163 ], [ 139.570312, 37.996163 ], [ 139.570312, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.713956 ], [ 140.273438, 40.713956 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.508577 ] ] ], [ [ [ 140.976562, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.811522 ], [ 140.273438, 42.811522 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 141.328125, 44.087585 ], [ 141.679688, 44.087585 ], [ 141.679688, 45.089036 ], [ 142.031250, 45.089036 ], [ 142.031250, 45.336702 ], [ 142.382812, 45.336702 ], [ 142.382812, 45.089036 ], [ 142.734375, 45.089036 ], [ 142.734375, 44.590467 ], [ 143.085938, 44.590467 ], [ 143.085938, 44.339565 ], [ 143.437500, 44.339565 ], [ 143.437500, 44.087585 ], [ 143.789062, 44.087585 ], [ 143.789062, 43.834527 ], [ 144.843750, 43.834527 ], [ 144.843750, 44.087585 ], [ 145.195312, 44.087585 ], [ 145.195312, 43.834527 ], [ 145.546875, 43.834527 ], [ 145.546875, 43.325178 ], [ 145.195312, 43.325178 ], [ 145.195312, 43.068888 ], [ 144.140625, 43.068888 ], [ 144.140625, 42.811522 ], [ 143.789062, 42.811522 ], [ 143.789062, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.032974 ], [ 142.382812, 42.032974 ], [ 142.382812, 42.293564 ], [ 141.328125, 42.293564 ], [ 141.328125, 41.771312 ], [ 140.976562, 41.771312 ], [ 140.976562, 41.508577 ] ] ], [ [ [ 132.890625, 34.016242 ], [ 134.648438, 34.016242 ], [ 134.648438, 33.431441 ], [ 134.296875, 33.431441 ], [ 134.296875, 33.137551 ], [ 133.945312, 33.137551 ], [ 133.945312, 33.431441 ], [ 133.242188, 33.431441 ], [ 133.242188, 33.137551 ], [ 132.890625, 33.137551 ], [ 132.890625, 32.842674 ], [ 132.187500, 32.842674 ], [ 132.187500, 33.137551 ], [ 132.539062, 33.137551 ], [ 132.539062, 33.724340 ], [ 132.890625, 33.724340 ], [ 132.890625, 34.016242 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, 34.016242 ], [ 130.781250, 33.724340 ], [ 131.484375, 33.724340 ], [ 131.484375, 33.431441 ], [ 131.835938, 33.431441 ], [ 131.835938, 32.842674 ], [ 131.484375, 32.842674 ], [ 131.484375, 31.952162 ], [ 131.132812, 31.952162 ], [ 131.132812, 31.353637 ], [ 130.781250, 31.353637 ], [ 130.781250, 31.052934 ], [ 130.429688, 31.052934 ], [ 130.429688, 31.353637 ], [ 130.078125, 31.353637 ], [ 130.078125, 31.952162 ], [ 130.429688, 31.952162 ], [ 130.429688, 32.546813 ], [ 129.726562, 32.546813 ], [ 129.726562, 33.137551 ], [ 129.375000, 33.137551 ], [ 129.375000, 33.431441 ], [ 130.078125, 33.431441 ], [ 130.078125, 33.724340 ], [ 130.429688, 33.724340 ], [ 130.429688, 34.016242 ], [ 130.781250, 34.016242 ] ] ], [ [ [ 133.242188, 34.307144 ], [ 132.539062, 34.307144 ], [ 132.539062, 34.016242 ], [ 130.781250, 34.016242 ], [ 130.781250, 34.307144 ], [ 131.132812, 34.307144 ], [ 131.132812, 34.597042 ], [ 131.835938, 34.597042 ], [ 131.835938, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.173808 ], [ 132.539062, 35.173808 ], [ 132.539062, 35.460670 ], [ 133.593750, 35.460670 ], [ 133.593750, 35.746512 ], [ 135.351562, 35.746512 ], [ 135.351562, 36.031332 ], [ 135.703125, 36.031332 ], [ 135.703125, 36.597889 ], [ 136.054688, 36.597889 ], [ 136.054688, 37.160317 ], [ 136.757812, 37.160317 ], [ 136.757812, 36.879621 ], [ 137.460938, 36.879621 ], [ 137.460938, 37.160317 ], [ 137.812500, 37.160317 ], [ 137.812500, 37.439974 ], [ 138.164062, 37.439974 ], [ 138.164062, 37.718590 ], [ 138.515625, 37.718590 ], [ 138.515625, 37.996163 ], [ 139.218750, 37.996163 ], [ 139.218750, 38.548165 ], [ 139.570312, 38.548165 ], [ 139.570312, 39.095963 ], [ 139.921875, 39.095963 ], [ 139.921875, 40.178873 ], [ 139.570312, 40.178873 ], [ 139.570312, 40.713956 ], [ 139.921875, 40.713956 ], [ 139.921875, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.508577 ], [ 141.328125, 41.508577 ], [ 141.328125, 40.713956 ], [ 141.679688, 40.713956 ], [ 141.679688, 39.095963 ], [ 141.328125, 39.095963 ], [ 141.328125, 38.822591 ], [ 140.976562, 38.822591 ], [ 140.976562, 38.272689 ], [ 140.625000, 38.272689 ], [ 140.625000, 37.718590 ], [ 140.976562, 37.718590 ], [ 140.976562, 36.879621 ], [ 140.625000, 36.879621 ], [ 140.625000, 36.597889 ], [ 140.273438, 36.597889 ], [ 140.273438, 36.315125 ], [ 140.625000, 36.315125 ], [ 140.625000, 35.746512 ], [ 140.273438, 35.746512 ], [ 140.273438, 35.173808 ], [ 139.570312, 35.173808 ], [ 139.570312, 34.885931 ], [ 137.109375, 34.885931 ], [ 137.109375, 34.597042 ], [ 136.757812, 34.597042 ], [ 136.757812, 34.307144 ], [ 136.406250, 34.307144 ], [ 136.406250, 34.016242 ], [ 136.054688, 34.016242 ], [ 136.054688, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.597042 ], [ 133.242188, 34.597042 ], [ 133.242188, 34.307144 ] ] ], [ [ [ 142.031250, 45.336702 ], [ 142.031250, 45.089036 ], [ 142.382812, 45.089036 ], [ 142.382812, 44.840291 ], [ 142.734375, 44.840291 ], [ 142.734375, 44.590467 ], [ 143.085938, 44.590467 ], [ 143.085938, 44.339565 ], [ 143.789062, 44.339565 ], [ 143.789062, 44.087585 ], [ 144.843750, 44.087585 ], [ 144.843750, 44.339565 ], [ 145.195312, 44.339565 ], [ 145.195312, 43.325178 ], [ 144.843750, 43.325178 ], [ 144.843750, 43.068888 ], [ 143.789062, 43.068888 ], [ 143.789062, 42.811522 ], [ 143.437500, 42.811522 ], [ 143.437500, 42.293564 ], [ 143.085938, 42.293564 ], [ 143.085938, 42.032974 ], [ 142.734375, 42.032974 ], [ 142.734375, 42.293564 ], [ 142.031250, 42.293564 ], [ 142.031250, 42.553080 ], [ 141.328125, 42.553080 ], [ 141.328125, 42.293564 ], [ 140.976562, 42.293564 ], [ 140.976562, 41.771312 ], [ 139.921875, 41.771312 ], [ 139.921875, 42.293564 ], [ 139.570312, 42.293564 ], [ 139.570312, 42.811522 ], [ 139.921875, 42.811522 ], [ 139.921875, 43.325178 ], [ 140.273438, 43.325178 ], [ 140.273438, 43.580391 ], [ 141.328125, 43.580391 ], [ 141.328125, 45.089036 ], [ 141.679688, 45.089036 ], [ 141.679688, 45.336702 ], [ 142.031250, 45.336702 ] ] ], [ [ [ 133.242188, 34.307144 ], [ 134.296875, 34.307144 ], [ 134.296875, 34.016242 ], [ 134.648438, 34.016242 ], [ 134.648438, 33.724340 ], [ 134.296875, 33.724340 ], [ 134.296875, 33.431441 ], [ 133.242188, 33.431441 ], [ 133.242188, 33.137551 ], [ 132.890625, 33.137551 ], [ 132.890625, 32.842674 ], [ 132.187500, 32.842674 ], [ 132.187500, 33.724340 ], [ 132.539062, 33.724340 ], [ 132.539062, 34.016242 ], [ 133.242188, 34.016242 ], [ 133.242188, 34.307144 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.054628 ], [ 134.296875, -1.054628 ], [ 134.296875, -1.757537 ], [ 131.132812, -1.757537 ], [ 131.132812, -1.406109 ], [ 130.429688, -1.406109 ], [ 130.429688, -1.054628 ], [ 131.484375, -1.054628 ], [ 131.484375, -0.703107 ], [ 132.539062, -0.703107 ], [ 132.539062, -0.351560 ], [ 132.890625, -0.351560 ] ] ], [ [ [ 119.882812, -0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -1.757537 ], [ 119.179688, -1.757537 ], [ 119.179688, -1.054628 ], [ 119.531250, -1.054628 ], [ 119.531250, -0.351560 ], [ 119.882812, -0.351560 ] ] ], [ [ [ 117.773438, 4.214943 ], [ 117.773438, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 117.773438, 2.811371 ], [ 117.773438, 2.460181 ], [ 118.125000, 2.460181 ], [ 118.125000, 2.108899 ], [ 117.773438, 2.108899 ], [ 117.773438, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -1.054628 ], [ 117.070312, -1.054628 ], [ 117.070312, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -1.757537 ], [ 109.687500, -1.757537 ], [ 109.687500, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 1.406109 ], [ 109.335938, 1.406109 ], [ 109.335938, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 0.703107 ], [ 111.093750, 0.703107 ], [ 111.093750, 1.054628 ], [ 112.500000, 1.054628 ], [ 112.500000, 1.406109 ], [ 113.203125, 1.406109 ], [ 113.203125, 1.054628 ], [ 114.609375, 1.054628 ], [ 114.609375, 2.108899 ], [ 114.960938, 2.108899 ], [ 114.960938, 2.811371 ], [ 115.664062, 2.811371 ], [ 115.664062, 3.513421 ], [ 116.015625, 3.513421 ], [ 116.015625, 4.214943 ], [ 117.773438, 4.214943 ] ] ], [ [ [ 97.382812, 5.266008 ], [ 97.382812, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.565474 ], [ 98.085938, 4.565474 ], [ 98.085938, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 3.864255 ], [ 98.789062, 3.864255 ], [ 98.789062, 3.513421 ], [ 99.140625, 3.513421 ], [ 99.140625, 3.162456 ], [ 99.843750, 3.162456 ], [ 99.843750, 2.811371 ], [ 100.195312, 2.811371 ], [ 100.195312, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.757537 ], [ 102.304688, 1.757537 ], [ 102.304688, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 0.351560 ], [ 103.359375, 0.351560 ], [ 103.359375, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 1.054628 ], [ 98.789062, 1.054628 ], [ 98.789062, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 1.757537 ], [ 98.085938, 1.757537 ], [ 98.085938, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.460181 ], [ 97.382812, 2.460181 ], [ 97.382812, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.162456 ], [ 96.679688, 3.162456 ], [ 96.679688, 3.513421 ], [ 96.328125, 3.513421 ], [ 96.328125, 3.864255 ], [ 95.976562, 3.864255 ], [ 95.976562, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 4.565474 ], [ 95.273438, 4.565474 ], [ 95.273438, 5.266008 ], [ 97.382812, 5.266008 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 127.617188, -0.703107 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 1.406109 ], [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.703107 ] ] ], [ [ [ 123.398438, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -1.054628 ] ] ], [ [ [ 125.156250, 1.054628 ], [ 124.804688, 1.054628 ], [ 124.804688, 0.351560 ], [ 120.234375, 0.351560 ], [ 120.234375, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 1.054628 ], [ 121.992188, 1.054628 ], [ 121.992188, 0.703107 ], [ 123.750000, 0.703107 ], [ 123.750000, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 1.054628 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -1.054628 ], [ 127.968750, -1.054628 ], [ 127.968750, -0.703107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.757537 ], [ 131.835938, -1.757537 ], [ 131.835938, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -1.054628 ], [ 130.429688, -1.054628 ], [ 130.429688, -0.703107 ], [ 131.484375, -0.703107 ], [ 131.484375, -0.351560 ], [ 132.890625, -0.351560 ] ] ], [ [ [ 119.882812, 0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -1.054628 ], [ 121.289062, -1.054628 ], [ 121.289062, -0.703107 ], [ 122.343750, -0.703107 ], [ 122.343750, -0.351560 ], [ 123.046875, -0.351560 ], [ 123.046875, -1.054628 ], [ 122.343750, -1.054628 ], [ 122.343750, -1.757537 ], [ 119.179688, -1.757537 ], [ 119.179688, -0.351560 ], [ 119.531250, -0.351560 ], [ 119.531250, 0.351560 ], [ 119.882812, 0.351560 ] ] ], [ [ [ 117.070312, 4.565474 ], [ 117.070312, 4.214943 ], [ 117.773438, 4.214943 ], [ 117.773438, 3.864255 ], [ 117.421875, 3.864255 ], [ 117.421875, 3.513421 ], [ 117.070312, 3.513421 ], [ 117.070312, 3.162456 ], [ 117.421875, 3.162456 ], [ 117.421875, 2.460181 ], [ 117.773438, 2.460181 ], [ 117.773438, 1.757537 ], [ 118.125000, 1.757537 ], [ 118.125000, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 1.054628 ], [ 117.773438, 1.054628 ], [ 117.773438, 0.703107 ], [ 117.421875, 0.703107 ], [ 117.421875, -1.054628 ], [ 116.718750, -1.054628 ], [ 116.718750, -1.406109 ], [ 116.367188, -1.406109 ], [ 116.367188, -1.757537 ], [ 110.039062, -1.757537 ], [ 110.039062, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 0.000000 ], [ 108.632812, 0.000000 ], [ 108.632812, 1.054628 ], [ 108.984375, 1.054628 ], [ 108.984375, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 111.796875, 1.054628 ], [ 111.796875, 1.406109 ], [ 112.148438, 1.406109 ], [ 112.148438, 1.757537 ], [ 112.851562, 1.757537 ], [ 112.851562, 1.406109 ], [ 114.257812, 1.406109 ], [ 114.257812, 1.757537 ], [ 114.609375, 1.757537 ], [ 114.609375, 2.460181 ], [ 114.960938, 2.460181 ], [ 114.960938, 3.162456 ], [ 115.312500, 3.162456 ], [ 115.312500, 3.864255 ], [ 115.664062, 3.864255 ], [ 115.664062, 4.565474 ], [ 117.070312, 4.565474 ] ] ], [ [ [ 96.328125, 5.615986 ], [ 96.328125, 5.266008 ], [ 97.382812, 5.266008 ], [ 97.382812, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.565474 ], [ 98.085938, 4.565474 ], [ 98.085938, 4.214943 ], [ 98.789062, 4.214943 ], [ 98.789062, 3.864255 ], [ 99.140625, 3.864255 ], [ 99.140625, 3.513421 ], [ 99.492188, 3.513421 ], [ 99.492188, 3.162456 ], [ 99.843750, 3.162456 ], [ 99.843750, 2.811371 ], [ 100.195312, 2.811371 ], [ 100.195312, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.757537 ], [ 101.953125, 1.757537 ], [ 101.953125, 1.406109 ], [ 102.304688, 1.406109 ], [ 102.304688, 1.054628 ], [ 102.656250, 1.054628 ], [ 102.656250, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.351560 ], [ 103.710938, 0.351560 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.062500, -1.054628 ], [ 104.062500, -1.406109 ], [ 104.414062, -1.406109 ], [ 104.414062, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.406109 ], [ 100.195312, -1.406109 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 0.703107 ], [ 98.789062, 0.703107 ], [ 98.789062, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.460181 ], [ 97.382812, 2.460181 ], [ 97.382812, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 96.679688, 3.513421 ], [ 96.679688, 3.864255 ], [ 96.328125, 3.864255 ], [ 96.328125, 4.214943 ], [ 95.976562, 4.214943 ], [ 95.976562, 4.565474 ], [ 95.625000, 4.565474 ], [ 95.625000, 4.915833 ], [ 95.273438, 4.915833 ], [ 95.273438, 5.615986 ], [ 96.328125, 5.615986 ] ] ], [ [ [ 137.109375, -1.757537 ], [ 137.109375, -1.406109 ], [ 138.164062, -1.406109 ], [ 138.164062, -1.757537 ], [ 137.109375, -1.757537 ] ] ], [ [ [ 127.968750, -0.351560 ], [ 127.617188, -0.351560 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ], [ 127.968750, 1.757537 ], [ 128.320312, 1.757537 ], [ 128.320312, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.703107 ], [ 128.320312, 0.703107 ], [ 128.320312, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.351560 ] ] ], [ [ [ 124.804688, 1.406109 ], [ 124.804688, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 0.703107 ], [ 124.101562, 0.703107 ], [ 124.101562, 0.351560 ], [ 122.695312, 0.351560 ], [ 122.695312, 0.703107 ], [ 120.585938, 0.703107 ], [ 120.585938, 0.351560 ], [ 119.882812, 0.351560 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 1.054628 ], [ 120.585938, 1.054628 ], [ 120.585938, 1.406109 ], [ 120.937500, 1.406109 ], [ 120.937500, 1.054628 ], [ 124.101562, 1.054628 ], [ 124.101562, 1.406109 ], [ 124.804688, 1.406109 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 124.804688, 1.406109 ], [ 124.804688, 1.757537 ], [ 125.156250, 1.757537 ], [ 125.156250, 1.406109 ] ] ], [ [ [ 127.968750, -0.351560 ], [ 128.320312, -0.351560 ], [ 128.320312, -0.703107 ], [ 127.968750, -0.703107 ], [ 127.968750, -0.351560 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.765625, 77.617709 ], [ 104.765625, 77.542096 ], [ 105.468750, 77.542096 ], [ 105.468750, 77.466028 ], [ 105.820312, 77.466028 ], [ 105.820312, 77.389504 ], [ 106.171875, 77.389504 ], [ 106.171875, 77.312520 ], [ 105.820312, 77.312520 ], [ 105.820312, 77.235074 ], [ 105.117188, 77.235074 ], [ 105.117188, 77.078784 ], [ 106.171875, 77.078784 ], [ 106.171875, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.760541 ], [ 107.226562, 76.760541 ], [ 107.226562, 76.516819 ], [ 107.578125, 76.516819 ], [ 107.578125, 76.598545 ], [ 107.929688, 76.598545 ], [ 107.929688, 76.679785 ], [ 108.281250, 76.679785 ], [ 108.281250, 76.760541 ], [ 109.335938, 76.760541 ], [ 109.335938, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.598545 ], [ 111.445312, 76.598545 ], [ 111.445312, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.434604 ], [ 112.148438, 76.434604 ], [ 112.148438, 76.351896 ], [ 112.500000, 76.351896 ], [ 112.500000, 76.268695 ], [ 112.851562, 76.268695 ], [ 112.851562, 76.184995 ], [ 113.203125, 76.184995 ], [ 113.203125, 76.100796 ], [ 113.554688, 76.100796 ], [ 113.554688, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.845169 ], [ 114.257812, 75.845169 ], [ 114.257812, 75.584937 ], [ 113.906250, 75.584937 ], [ 113.906250, 75.230667 ], [ 113.554688, 75.230667 ], [ 113.554688, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 75.050354 ], [ 112.851562, 75.050354 ], [ 112.851562, 74.959392 ], [ 112.500000, 74.959392 ], [ 112.500000, 74.867889 ], [ 111.796875, 74.867889 ], [ 111.796875, 74.775843 ], [ 111.445312, 74.775843 ], [ 111.445312, 74.683250 ], [ 111.093750, 74.683250 ], [ 111.093750, 74.590108 ], [ 110.390625, 74.590108 ], [ 110.390625, 74.496413 ], [ 110.039062, 74.496413 ], [ 110.039062, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.211983 ], [ 109.335938, 74.211983 ], [ 109.335938, 74.116047 ], [ 110.039062, 74.116047 ], [ 110.039062, 74.019543 ], [ 110.742188, 74.019543 ], [ 110.742188, 73.922469 ], [ 111.445312, 73.922469 ], [ 111.445312, 73.824820 ], [ 112.500000, 73.824820 ], [ 112.500000, 73.922469 ], [ 112.851562, 73.922469 ], [ 112.851562, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 114.960938, 73.627789 ], [ 114.960938, 73.726595 ], [ 117.070312, 73.726595 ], [ 117.070312, 73.627789 ], [ 118.828125, 73.627789 ], [ 118.828125, 73.327858 ], [ 119.179688, 73.327858 ], [ 119.179688, 73.124945 ], [ 120.937500, 73.124945 ], [ 120.937500, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.327858 ], [ 123.398438, 73.327858 ], [ 123.398438, 73.726595 ], [ 123.750000, 73.726595 ], [ 123.750000, 73.627789 ], [ 124.804688, 73.627789 ], [ 124.804688, 73.528399 ], [ 126.914062, 73.528399 ], [ 126.914062, 73.428424 ], [ 127.265625, 73.428424 ], [ 127.265625, 73.327858 ], [ 127.617188, 73.327858 ], [ 127.617188, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.711903 ], [ 129.023438, 72.711903 ], [ 129.023438, 72.289067 ], [ 128.671875, 72.289067 ], [ 128.671875, 72.073911 ], [ 128.320312, 72.073911 ], [ 128.320312, 71.856229 ], [ 128.671875, 71.856229 ], [ 128.671875, 71.635993 ], [ 129.023438, 71.635993 ], [ 129.023438, 71.413177 ], [ 129.375000, 71.413177 ], [ 129.375000, 71.187754 ], [ 129.726562, 71.187754 ], [ 129.726562, 71.074056 ], [ 130.078125, 71.074056 ], [ 130.078125, 70.959697 ], [ 130.781250, 70.959697 ], [ 130.781250, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.959697 ], [ 131.484375, 70.959697 ], [ 131.484375, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.635993 ], [ 132.187500, 71.635993 ], [ 132.187500, 71.746432 ], [ 132.539062, 71.746432 ], [ 132.539062, 71.635993 ], [ 133.242188, 71.635993 ], [ 133.242188, 71.524909 ], [ 133.593750, 71.524909 ], [ 133.593750, 71.413177 ], [ 134.648438, 71.413177 ], [ 134.648438, 71.524909 ], [ 135.351562, 71.524909 ], [ 135.351562, 71.635993 ], [ 135.703125, 71.635993 ], [ 135.703125, 71.524909 ], [ 136.406250, 71.524909 ], [ 136.406250, 71.413177 ], [ 137.109375, 71.413177 ], [ 137.109375, 71.300793 ], [ 137.812500, 71.300793 ], [ 137.812500, 71.524909 ], [ 138.164062, 71.524909 ], [ 138.164062, 71.635993 ], [ 138.867188, 71.635993 ], [ 138.867188, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.746432 ], [ 139.570312, 71.746432 ], [ 139.570312, 72.181804 ], [ 139.218750, 72.181804 ], [ 139.218750, 72.395706 ], [ 139.570312, 72.395706 ], [ 139.570312, 72.501722 ], [ 139.921875, 72.501722 ], [ 139.921875, 72.607120 ], [ 140.273438, 72.607120 ], [ 140.273438, 72.711903 ], [ 140.625000, 72.711903 ], [ 140.625000, 72.816074 ], [ 141.328125, 72.816074 ], [ 141.328125, 72.711903 ], [ 142.734375, 72.711903 ], [ 142.734375, 72.607120 ], [ 144.140625, 72.607120 ], [ 144.140625, 72.501722 ], [ 145.546875, 72.501722 ], [ 145.546875, 72.395706 ], [ 146.953125, 72.395706 ], [ 146.953125, 72.289067 ], [ 148.359375, 72.289067 ], [ 148.359375, 72.181804 ], [ 149.414062, 72.181804 ], [ 149.414062, 72.073911 ], [ 149.765625, 72.073911 ], [ 149.765625, 71.856229 ], [ 150.117188, 71.856229 ], [ 150.117188, 71.635993 ], [ 150.468750, 71.635993 ], [ 150.468750, 71.524909 ], [ 150.820312, 71.524909 ], [ 150.820312, 71.413177 ], [ 151.171875, 71.413177 ], [ 151.171875, 71.300793 ], [ 151.523438, 71.300793 ], [ 151.523438, 71.187754 ], [ 151.875000, 71.187754 ], [ 151.875000, 71.074056 ], [ 152.226562, 71.074056 ], [ 152.226562, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.844673 ], [ 154.335938, 70.844673 ], [ 154.335938, 70.959697 ], [ 156.445312, 70.959697 ], [ 156.445312, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.959697 ], [ 158.203125, 70.959697 ], [ 158.203125, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.728979 ], [ 159.257812, 70.728979 ], [ 159.257812, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 70.495574 ], [ 159.960938, 70.495574 ], [ 159.960938, 70.140364 ], [ 159.609375, 70.140364 ], [ 159.609375, 69.657086 ], [ 159.960938, 69.657086 ], [ 159.960938, 69.534518 ], [ 160.664062, 69.534518 ], [ 160.664062, 69.411242 ], [ 161.718750, 69.411242 ], [ 161.718750, 69.534518 ], [ 162.421875, 69.534518 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.534518 ], [ 165.234375, 69.534518 ], [ 165.234375, 69.411242 ], [ 166.992188, 69.411242 ], [ 166.992188, 69.534518 ], [ 167.695312, 69.534518 ], [ 167.695312, 69.411242 ], [ 168.046875, 69.411242 ], [ 168.046875, 69.162558 ], [ 168.398438, 69.162558 ], [ 168.398438, 69.037142 ], [ 168.750000, 69.037142 ], [ 168.750000, 68.911005 ], [ 169.101562, 68.911005 ], [ 169.101562, 68.656555 ], [ 169.804688, 68.656555 ], [ 169.804688, 68.784144 ], [ 170.507812, 68.784144 ], [ 170.507812, 68.911005 ], [ 170.859375, 68.911005 ], [ 170.859375, 69.162558 ], [ 170.507812, 69.162558 ], [ 170.507812, 69.411242 ], [ 170.156250, 69.411242 ], [ 170.156250, 69.900118 ], [ 170.507812, 69.900118 ], [ 170.507812, 70.140364 ], [ 170.859375, 70.140364 ], [ 170.859375, 70.020587 ], [ 171.914062, 70.020587 ], [ 171.914062, 69.900118 ], [ 172.968750, 69.900118 ], [ 172.968750, 69.778952 ], [ 175.078125, 69.778952 ], [ 175.078125, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 69.037142 ], [ 179.648438, 69.037142 ], [ 179.648438, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 68.784144 ], [ 180.351562, 68.784144 ], [ 180.351562, 68.656555 ], [ 181.054688, 68.656555 ], [ 181.054688, 68.528235 ], [ 181.406250, 68.528235 ], [ 181.406250, 68.399180 ], [ 181.757812, 68.399180 ], [ 181.757812, 65.802776 ], [ 181.054688, 65.802776 ], [ 181.054688, 65.946472 ], [ 180.703125, 65.946472 ], [ 180.703125, 65.802776 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.140778 ], [ 88.593750, 75.140778 ], [ 88.593750, 75.230667 ], [ 88.945312, 75.230667 ], [ 88.945312, 75.320025 ], [ 89.296875, 75.320025 ], [ 89.296875, 75.408854 ], [ 89.648438, 75.408854 ], [ 89.648438, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.584937 ], [ 90.351562, 75.584937 ], [ 90.351562, 75.672197 ], [ 91.757812, 75.672197 ], [ 91.757812, 75.758940 ], [ 92.812500, 75.758940 ], [ 92.812500, 75.845169 ], [ 93.164062, 75.845169 ], [ 93.164062, 76.016094 ], [ 94.921875, 76.016094 ], [ 94.921875, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.930885 ], [ 97.031250, 75.930885 ], [ 97.031250, 76.016094 ], [ 97.382812, 76.016094 ], [ 97.382812, 76.100796 ], [ 97.734375, 76.100796 ], [ 97.734375, 76.184995 ], [ 98.085938, 76.184995 ], [ 98.085938, 76.268695 ], [ 98.437500, 76.268695 ], [ 98.437500, 76.351896 ], [ 98.789062, 76.351896 ], [ 98.789062, 76.434604 ], [ 100.898438, 76.434604 ], [ 100.898438, 76.920614 ], [ 101.250000, 76.920614 ], [ 101.250000, 77.078784 ], [ 101.601562, 77.078784 ], [ 101.601562, 77.235074 ], [ 101.953125, 77.235074 ], [ 101.953125, 77.312520 ], [ 102.304688, 77.312520 ], [ 102.304688, 77.389504 ], [ 103.007812, 77.389504 ], [ 103.007812, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.542096 ], [ 103.710938, 77.542096 ], [ 103.710938, 77.617709 ], [ 104.765625, 77.617709 ] ] ], [ [ [ 96.328125, 81.201420 ], [ 96.328125, 81.093214 ], [ 96.679688, 81.093214 ], [ 96.679688, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.872827 ], [ 97.382812, 80.872827 ], [ 97.382812, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.647035 ], [ 98.085938, 80.647035 ], [ 98.085938, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.356995 ], [ 98.789062, 80.356995 ], [ 98.789062, 80.238501 ], [ 99.140625, 80.238501 ], [ 99.140625, 80.118564 ], [ 99.492188, 80.118564 ], [ 99.492188, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 79.812302 ], [ 100.195312, 79.812302 ], [ 100.195312, 79.302640 ], [ 99.843750, 79.302640 ], [ 99.843750, 78.903929 ], [ 99.492188, 78.903929 ], [ 99.492188, 78.836065 ], [ 98.437500, 78.836065 ], [ 98.437500, 78.767792 ], [ 97.031250, 78.767792 ], [ 97.031250, 78.836065 ], [ 96.328125, 78.836065 ], [ 96.328125, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 78.971386 ], [ 94.921875, 78.971386 ], [ 94.921875, 79.038437 ], [ 94.570312, 79.038437 ], [ 94.570312, 79.105086 ], [ 94.218750, 79.105086 ], [ 94.218750, 79.237185 ], [ 93.867188, 79.237185 ], [ 93.867188, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 79.367701 ], [ 93.164062, 79.367701 ], [ 93.164062, 79.560546 ], [ 92.812500, 79.560546 ], [ 92.812500, 79.935918 ], [ 92.460938, 79.935918 ], [ 92.460938, 80.118564 ], [ 92.109375, 80.118564 ], [ 92.109375, 80.178713 ], [ 91.757812, 80.178713 ], [ 91.757812, 80.238501 ], [ 91.406250, 80.238501 ], [ 91.406250, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.474065 ], [ 91.757812, 80.474065 ], [ 91.757812, 80.532071 ], [ 92.109375, 80.532071 ], [ 92.109375, 80.647035 ], [ 92.460938, 80.647035 ], [ 92.460938, 80.703997 ], [ 92.812500, 80.703997 ], [ 92.812500, 80.816891 ], [ 93.164062, 80.816891 ], [ 93.164062, 80.872827 ], [ 93.515625, 80.872827 ], [ 93.515625, 80.983688 ], [ 93.867188, 80.983688 ], [ 93.867188, 81.038617 ], [ 94.218750, 81.038617 ], [ 94.218750, 81.093214 ], [ 94.921875, 81.093214 ], [ 94.921875, 81.147481 ], [ 95.273438, 81.147481 ], [ 95.273438, 81.201420 ], [ 96.328125, 81.201420 ] ] ], [ [ [ 141.328125, 76.100796 ], [ 141.328125, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.930885 ], [ 142.734375, 75.930885 ], [ 142.734375, 75.845169 ], [ 143.437500, 75.845169 ], [ 143.437500, 75.758940 ], [ 144.140625, 75.758940 ], [ 144.140625, 75.672197 ], [ 144.843750, 75.672197 ], [ 144.843750, 75.584937 ], [ 145.195312, 75.584937 ], [ 145.195312, 75.408854 ], [ 144.843750, 75.408854 ], [ 144.843750, 75.140778 ], [ 144.492188, 75.140778 ], [ 144.492188, 74.867889 ], [ 144.140625, 74.867889 ], [ 144.140625, 74.775843 ], [ 142.031250, 74.775843 ], [ 142.031250, 74.867889 ], [ 140.625000, 74.867889 ], [ 140.625000, 74.775843 ], [ 139.921875, 74.775843 ], [ 139.921875, 74.683250 ], [ 139.218750, 74.683250 ], [ 139.218750, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.775843 ], [ 138.164062, 74.775843 ], [ 138.164062, 74.867889 ], [ 137.812500, 74.867889 ], [ 137.812500, 74.959392 ], [ 137.460938, 74.959392 ], [ 137.460938, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.584937 ], [ 137.460938, 75.584937 ], [ 137.460938, 75.930885 ], [ 138.164062, 75.930885 ], [ 138.164062, 76.016094 ], [ 138.867188, 76.016094 ], [ 138.867188, 76.100796 ], [ 141.328125, 76.100796 ] ] ], [ [ [ 181.054688, 71.524909 ], [ 181.054688, 71.413177 ], [ 181.757812, 71.413177 ], [ 181.757812, 70.844673 ], [ 180.000000, 70.844673 ], [ 179.648438, 70.844673 ], [ 179.648438, 70.728979 ], [ 178.945312, 70.728979 ], [ 178.945312, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 178.945312, 71.074056 ], [ 178.945312, 71.187754 ], [ 179.296875, 71.187754 ], [ 179.296875, 71.300793 ], [ 179.648438, 71.300793 ], [ 179.648438, 71.413177 ], [ 180.000000, 71.413177 ], [ 180.000000, 71.524909 ], [ 181.054688, 71.524909 ] ] ], [ [ [ 102.304688, 79.367701 ], [ 102.304688, 79.302640 ], [ 103.007812, 79.302640 ], [ 103.007812, 79.237185 ], [ 103.359375, 79.237185 ], [ 103.359375, 79.171335 ], [ 103.710938, 79.171335 ], [ 103.710938, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.971386 ], [ 104.414062, 78.971386 ], [ 104.414062, 78.903929 ], [ 104.765625, 78.903929 ], [ 104.765625, 78.767792 ], [ 105.117188, 78.767792 ], [ 105.117188, 78.699106 ], [ 105.468750, 78.699106 ], [ 105.468750, 78.490552 ], [ 105.117188, 78.490552 ], [ 105.117188, 78.278201 ], [ 104.765625, 78.278201 ], [ 104.765625, 78.206563 ], [ 103.710938, 78.206563 ], [ 103.710938, 78.134493 ], [ 102.656250, 78.134493 ], [ 102.656250, 78.061989 ], [ 101.250000, 78.061989 ], [ 101.250000, 77.989049 ], [ 100.195312, 77.989049 ], [ 100.195312, 77.915669 ], [ 99.492188, 77.915669 ], [ 99.492188, 77.989049 ], [ 99.843750, 77.989049 ], [ 99.843750, 78.278201 ], [ 100.195312, 78.278201 ], [ 100.195312, 78.560488 ], [ 100.546875, 78.560488 ], [ 100.546875, 78.836065 ], [ 100.898438, 78.836065 ], [ 100.898438, 79.105086 ], [ 101.250000, 79.105086 ], [ 101.250000, 79.237185 ], [ 101.601562, 79.237185 ], [ 101.601562, 79.302640 ], [ 101.953125, 79.302640 ], [ 101.953125, 79.367701 ], [ 102.304688, 79.367701 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 142.031250, 73.726595 ], [ 142.382812, 73.726595 ], [ 142.382812, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.528399 ], [ 143.085938, 73.528399 ], [ 143.085938, 73.428424 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.327858 ], [ 140.273438, 73.327858 ], [ 140.273438, 73.528399 ], [ 140.625000, 73.528399 ], [ 140.625000, 73.627789 ], [ 140.976562, 73.627789 ], [ 140.976562, 73.726595 ], [ 141.679688, 73.726595 ], [ 141.679688, 73.824820 ], [ 142.031250, 73.824820 ] ] ], [ [ [ 146.601562, 75.497157 ], [ 146.601562, 75.408854 ], [ 147.656250, 75.408854 ], [ 147.656250, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.230667 ], [ 149.414062, 75.230667 ], [ 149.414062, 75.140778 ], [ 150.117188, 75.140778 ], [ 150.117188, 75.050354 ], [ 150.820312, 75.050354 ], [ 150.820312, 74.959392 ], [ 150.468750, 74.959392 ], [ 150.468750, 74.867889 ], [ 150.117188, 74.867889 ], [ 150.117188, 74.775843 ], [ 149.765625, 74.775843 ], [ 149.765625, 74.683250 ], [ 148.359375, 74.683250 ], [ 148.359375, 74.775843 ], [ 147.656250, 74.775843 ], [ 147.656250, 74.867889 ], [ 147.304688, 74.867889 ], [ 147.304688, 74.959392 ], [ 146.601562, 74.959392 ], [ 146.601562, 75.050354 ], [ 146.250000, 75.050354 ], [ 146.250000, 75.497157 ], [ 146.601562, 75.497157 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 65.946472 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.230667 ], [ 88.593750, 75.230667 ], [ 88.593750, 75.320025 ], [ 88.945312, 75.320025 ], [ 88.945312, 75.408854 ], [ 89.296875, 75.408854 ], [ 89.296875, 75.497157 ], [ 89.648438, 75.497157 ], [ 89.648438, 75.584937 ], [ 90.000000, 75.584937 ], [ 90.000000, 75.672197 ], [ 91.054688, 75.672197 ], [ 91.054688, 75.758940 ], [ 92.460938, 75.758940 ], [ 92.460938, 75.845169 ], [ 92.812500, 75.845169 ], [ 92.812500, 75.930885 ], [ 93.164062, 75.930885 ], [ 93.164062, 76.100796 ], [ 94.570312, 76.100796 ], [ 94.570312, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.930885 ], [ 97.031250, 75.930885 ], [ 97.031250, 76.016094 ], [ 97.382812, 76.016094 ], [ 97.382812, 76.100796 ], [ 97.734375, 76.100796 ], [ 97.734375, 76.268695 ], [ 98.085938, 76.268695 ], [ 98.085938, 76.351896 ], [ 98.437500, 76.351896 ], [ 98.437500, 76.434604 ], [ 98.789062, 76.434604 ], [ 98.789062, 76.516819 ], [ 99.492188, 76.516819 ], [ 99.492188, 76.434604 ], [ 100.546875, 76.434604 ], [ 100.546875, 76.679785 ], [ 100.898438, 76.679785 ], [ 100.898438, 76.920614 ], [ 101.250000, 76.920614 ], [ 101.250000, 77.078784 ], [ 101.601562, 77.078784 ], [ 101.601562, 77.235074 ], [ 101.953125, 77.235074 ], [ 101.953125, 77.312520 ], [ 102.304688, 77.312520 ], [ 102.304688, 77.389504 ], [ 102.656250, 77.389504 ], [ 102.656250, 77.466028 ], [ 103.007812, 77.466028 ], [ 103.007812, 77.542096 ], [ 103.359375, 77.542096 ], [ 103.359375, 77.617709 ], [ 103.710938, 77.617709 ], [ 103.710938, 77.692870 ], [ 104.414062, 77.692870 ], [ 104.414062, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.542096 ], [ 105.117188, 77.542096 ], [ 105.117188, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.389504 ], [ 105.820312, 77.389504 ], [ 105.820312, 77.312520 ], [ 105.468750, 77.312520 ], [ 105.468750, 77.235074 ], [ 104.765625, 77.235074 ], [ 104.765625, 77.078784 ], [ 106.171875, 77.078784 ], [ 106.171875, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.760541 ], [ 107.226562, 76.760541 ], [ 107.226562, 76.516819 ], [ 107.578125, 76.516819 ], [ 107.578125, 76.679785 ], [ 107.929688, 76.679785 ], [ 107.929688, 76.760541 ], [ 110.742188, 76.760541 ], [ 110.742188, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.598545 ], [ 111.445312, 76.598545 ], [ 111.445312, 76.516819 ], [ 112.148438, 76.516819 ], [ 112.148438, 76.434604 ], [ 112.500000, 76.434604 ], [ 112.500000, 76.351896 ], [ 112.851562, 76.351896 ], [ 112.851562, 76.268695 ], [ 113.203125, 76.268695 ], [ 113.203125, 76.184995 ], [ 113.554688, 76.184995 ], [ 113.554688, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.672197 ], [ 113.554688, 75.672197 ], [ 113.554688, 75.320025 ], [ 113.203125, 75.320025 ], [ 113.203125, 75.230667 ], [ 112.851562, 75.230667 ], [ 112.851562, 75.050354 ], [ 112.500000, 75.050354 ], [ 112.500000, 74.959392 ], [ 112.148438, 74.959392 ], [ 112.148438, 74.867889 ], [ 111.796875, 74.867889 ], [ 111.796875, 74.775843 ], [ 111.093750, 74.775843 ], [ 111.093750, 74.683250 ], [ 110.742188, 74.683250 ], [ 110.742188, 74.590108 ], [ 110.390625, 74.590108 ], [ 110.390625, 74.496413 ], [ 110.039062, 74.496413 ], [ 110.039062, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.116047 ], [ 110.390625, 74.116047 ], [ 110.390625, 74.019543 ], [ 110.742188, 74.019543 ], [ 110.742188, 73.922469 ], [ 111.445312, 73.922469 ], [ 111.445312, 73.824820 ], [ 112.148438, 73.824820 ], [ 112.148438, 73.922469 ], [ 112.851562, 73.922469 ], [ 112.851562, 73.726595 ], [ 113.203125, 73.726595 ], [ 113.203125, 73.428424 ], [ 113.554688, 73.428424 ], [ 113.554688, 73.528399 ], [ 113.906250, 73.528399 ], [ 113.906250, 73.627789 ], [ 114.609375, 73.627789 ], [ 114.609375, 73.726595 ], [ 115.312500, 73.726595 ], [ 115.312500, 73.824820 ], [ 116.015625, 73.824820 ], [ 116.015625, 73.726595 ], [ 117.421875, 73.726595 ], [ 117.421875, 73.627789 ], [ 118.476562, 73.627789 ], [ 118.476562, 73.327858 ], [ 118.828125, 73.327858 ], [ 118.828125, 73.124945 ], [ 120.585938, 73.124945 ], [ 120.585938, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 123.398438, 73.824820 ], [ 123.398438, 73.726595 ], [ 124.453125, 73.726595 ], [ 124.453125, 73.627789 ], [ 126.914062, 73.627789 ], [ 126.914062, 73.528399 ], [ 127.265625, 73.528399 ], [ 127.265625, 73.428424 ], [ 127.617188, 73.428424 ], [ 127.617188, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 72.919635 ], [ 128.671875, 72.919635 ], [ 128.671875, 72.607120 ], [ 129.023438, 72.607120 ], [ 129.023438, 72.395706 ], [ 128.671875, 72.395706 ], [ 128.671875, 72.181804 ], [ 128.320312, 72.181804 ], [ 128.320312, 71.856229 ], [ 128.671875, 71.856229 ], [ 128.671875, 71.635993 ], [ 129.023438, 71.635993 ], [ 129.023438, 71.413177 ], [ 129.375000, 71.413177 ], [ 129.375000, 71.187754 ], [ 129.726562, 71.187754 ], [ 129.726562, 71.074056 ], [ 130.429688, 71.074056 ], [ 130.429688, 70.959697 ], [ 130.781250, 70.959697 ], [ 130.781250, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.959697 ], [ 131.484375, 70.959697 ], [ 131.484375, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.635993 ], [ 132.187500, 71.635993 ], [ 132.187500, 71.746432 ], [ 132.539062, 71.746432 ], [ 132.539062, 71.635993 ], [ 132.890625, 71.635993 ], [ 132.890625, 71.524909 ], [ 133.242188, 71.524909 ], [ 133.242188, 71.413177 ], [ 133.945312, 71.413177 ], [ 133.945312, 71.524909 ], [ 134.648438, 71.524909 ], [ 134.648438, 71.635993 ], [ 136.054688, 71.635993 ], [ 136.054688, 71.524909 ], [ 136.757812, 71.524909 ], [ 136.757812, 71.413177 ], [ 137.812500, 71.413177 ], [ 137.812500, 71.524909 ], [ 138.164062, 71.524909 ], [ 138.164062, 71.635993 ], [ 138.515625, 71.635993 ], [ 138.515625, 71.524909 ], [ 139.570312, 71.524909 ], [ 139.570312, 71.746432 ], [ 139.218750, 71.746432 ], [ 139.218750, 72.181804 ], [ 138.867188, 72.181804 ], [ 138.867188, 72.501722 ], [ 139.218750, 72.501722 ], [ 139.218750, 72.607120 ], [ 139.570312, 72.607120 ], [ 139.570312, 72.711903 ], [ 139.921875, 72.711903 ], [ 139.921875, 72.816074 ], [ 140.273438, 72.816074 ], [ 140.273438, 72.919635 ], [ 140.976562, 72.919635 ], [ 140.976562, 72.816074 ], [ 142.382812, 72.816074 ], [ 142.382812, 72.711903 ], [ 143.789062, 72.711903 ], [ 143.789062, 72.607120 ], [ 145.546875, 72.607120 ], [ 145.546875, 72.501722 ], [ 146.953125, 72.501722 ], [ 146.953125, 72.395706 ], [ 148.359375, 72.395706 ], [ 148.359375, 72.289067 ], [ 149.414062, 72.289067 ], [ 149.414062, 72.073911 ], [ 149.765625, 72.073911 ], [ 149.765625, 71.746432 ], [ 150.117188, 71.746432 ], [ 150.117188, 71.524909 ], [ 150.468750, 71.524909 ], [ 150.468750, 71.413177 ], [ 150.820312, 71.413177 ], [ 150.820312, 71.300793 ], [ 151.171875, 71.300793 ], [ 151.171875, 71.187754 ], [ 151.875000, 71.187754 ], [ 151.875000, 71.074056 ], [ 152.226562, 71.074056 ], [ 152.226562, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.844673 ], [ 153.984375, 70.844673 ], [ 153.984375, 70.959697 ], [ 156.093750, 70.959697 ], [ 156.093750, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.959697 ], [ 158.906250, 70.959697 ], [ 158.906250, 70.844673 ], [ 159.257812, 70.844673 ], [ 159.257812, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 69.657086 ], [ 160.312500, 69.657086 ], [ 160.312500, 69.534518 ], [ 161.718750, 69.534518 ], [ 161.718750, 69.657086 ], [ 163.125000, 69.657086 ], [ 163.125000, 69.778952 ], [ 164.179688, 69.778952 ], [ 164.179688, 69.657086 ], [ 165.234375, 69.657086 ], [ 165.234375, 69.534518 ], [ 166.992188, 69.534518 ], [ 166.992188, 69.657086 ], [ 167.695312, 69.657086 ], [ 167.695312, 69.534518 ], [ 168.046875, 69.534518 ], [ 168.046875, 69.287257 ], [ 168.398438, 69.287257 ], [ 168.398438, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 69.037142 ], [ 169.101562, 69.037142 ], [ 169.101562, 68.784144 ], [ 169.804688, 68.784144 ], [ 169.804688, 68.911005 ], [ 170.507812, 68.911005 ], [ 170.507812, 69.162558 ], [ 170.156250, 69.162558 ], [ 170.156250, 69.411242 ], [ 169.804688, 69.411242 ], [ 169.804688, 69.900118 ], [ 170.156250, 69.900118 ], [ 170.156250, 70.140364 ], [ 170.859375, 70.140364 ], [ 170.859375, 70.020587 ], [ 172.265625, 70.020587 ], [ 172.265625, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.162558 ], [ 179.648438, 69.162558 ], [ 179.648438, 69.037142 ], [ 180.000000, 69.037142 ], [ 180.000000, 68.911005 ], [ 180.351562, 68.911005 ], [ 180.351562, 68.784144 ], [ 181.054688, 68.784144 ], [ 181.054688, 68.656555 ], [ 181.406250, 68.656555 ], [ 181.406250, 68.528235 ], [ 181.757812, 68.528235 ], [ 181.757812, 65.802776 ], [ 181.054688, 65.802776 ], [ 181.054688, 66.089364 ], [ 180.351562, 66.089364 ], [ 180.351562, 65.946472 ], [ 180.000000, 65.946472 ] ] ], [ [ [ 95.976562, 81.201420 ], [ 95.976562, 81.093214 ], [ 96.328125, 81.093214 ], [ 96.328125, 81.038617 ], [ 96.679688, 81.038617 ], [ 96.679688, 80.928426 ], [ 97.031250, 80.928426 ], [ 97.031250, 80.872827 ], [ 97.382812, 80.872827 ], [ 97.382812, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.647035 ], [ 98.085938, 80.647035 ], [ 98.085938, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.356995 ], [ 98.789062, 80.356995 ], [ 98.789062, 80.178713 ], [ 99.140625, 80.178713 ], [ 99.140625, 80.058050 ], [ 99.492188, 80.058050 ], [ 99.492188, 79.874297 ], [ 99.843750, 79.874297 ], [ 99.843750, 78.903929 ], [ 99.492188, 78.903929 ], [ 99.492188, 78.836065 ], [ 98.437500, 78.836065 ], [ 98.437500, 78.767792 ], [ 97.382812, 78.767792 ], [ 97.382812, 78.836065 ], [ 96.679688, 78.836065 ], [ 96.679688, 78.903929 ], [ 95.976562, 78.903929 ], [ 95.976562, 78.971386 ], [ 95.625000, 78.971386 ], [ 95.625000, 79.038437 ], [ 94.921875, 79.038437 ], [ 94.921875, 79.105086 ], [ 94.570312, 79.105086 ], [ 94.570312, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.237185 ], [ 93.867188, 79.237185 ], [ 93.867188, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 79.367701 ], [ 93.164062, 79.367701 ], [ 93.164062, 79.624056 ], [ 92.812500, 79.624056 ], [ 92.812500, 79.997168 ], [ 92.460938, 79.997168 ], [ 92.460938, 80.178713 ], [ 92.109375, 80.178713 ], [ 92.109375, 80.238501 ], [ 91.406250, 80.238501 ], [ 91.406250, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.474065 ], [ 91.757812, 80.474065 ], [ 91.757812, 80.589727 ], [ 92.109375, 80.589727 ], [ 92.109375, 80.703997 ], [ 92.460938, 80.703997 ], [ 92.460938, 80.760615 ], [ 92.812500, 80.760615 ], [ 92.812500, 80.872827 ], [ 93.164062, 80.872827 ], [ 93.164062, 80.983688 ], [ 93.515625, 80.983688 ], [ 93.515625, 81.038617 ], [ 93.867188, 81.038617 ], [ 93.867188, 81.093214 ], [ 94.570312, 81.093214 ], [ 94.570312, 81.147481 ], [ 94.921875, 81.147481 ], [ 94.921875, 81.201420 ], [ 95.976562, 81.201420 ] ] ], [ [ [ 139.570312, 76.184995 ], [ 139.570312, 76.100796 ], [ 141.328125, 76.100796 ], [ 141.328125, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.930885 ], [ 142.734375, 75.930885 ], [ 142.734375, 75.845169 ], [ 143.085938, 75.845169 ], [ 143.085938, 75.758940 ], [ 143.789062, 75.758940 ], [ 143.789062, 75.672197 ], [ 144.492188, 75.672197 ], [ 144.492188, 75.584937 ], [ 144.843750, 75.584937 ], [ 144.843750, 75.408854 ], [ 144.492188, 75.408854 ], [ 144.492188, 75.050354 ], [ 144.140625, 75.050354 ], [ 144.140625, 74.867889 ], [ 140.273438, 74.867889 ], [ 140.273438, 74.775843 ], [ 139.570312, 74.775843 ], [ 139.570312, 74.683250 ], [ 138.515625, 74.683250 ], [ 138.515625, 74.775843 ], [ 138.164062, 74.775843 ], [ 138.164062, 74.867889 ], [ 137.812500, 74.867889 ], [ 137.812500, 75.050354 ], [ 137.460938, 75.050354 ], [ 137.460938, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.230667 ], [ 136.757812, 75.230667 ], [ 136.757812, 75.497157 ], [ 137.109375, 75.497157 ], [ 137.109375, 75.845169 ], [ 137.460938, 75.845169 ], [ 137.460938, 76.016094 ], [ 137.812500, 76.016094 ], [ 137.812500, 76.100796 ], [ 138.515625, 76.100796 ], [ 138.515625, 76.184995 ], [ 139.570312, 76.184995 ] ] ], [ [ [ 180.703125, 71.635993 ], [ 180.703125, 71.524909 ], [ 181.406250, 71.524909 ], [ 181.406250, 71.413177 ], [ 181.757812, 71.413177 ], [ 181.757812, 70.959697 ], [ 180.703125, 70.959697 ], [ 180.703125, 70.844673 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.187754 ], [ 178.945312, 71.187754 ], [ 178.945312, 71.300793 ], [ 179.648438, 71.300793 ], [ 179.648438, 71.413177 ], [ 180.000000, 71.413177 ], [ 180.000000, 71.635993 ], [ 180.703125, 71.635993 ] ] ], [ [ [ 102.656250, 79.302640 ], [ 102.656250, 79.237185 ], [ 103.007812, 79.237185 ], [ 103.007812, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.105086 ], [ 103.710938, 79.105086 ], [ 103.710938, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.903929 ], [ 104.414062, 78.903929 ], [ 104.414062, 78.836065 ], [ 104.765625, 78.836065 ], [ 104.765625, 78.767792 ], [ 105.117188, 78.767792 ], [ 105.117188, 78.560488 ], [ 104.765625, 78.560488 ], [ 104.765625, 78.349411 ], [ 104.414062, 78.349411 ], [ 104.414062, 78.278201 ], [ 103.359375, 78.278201 ], [ 103.359375, 78.206563 ], [ 102.304688, 78.206563 ], [ 102.304688, 78.134493 ], [ 100.898438, 78.134493 ], [ 100.898438, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 77.989049 ], [ 99.140625, 77.989049 ], [ 99.140625, 78.061989 ], [ 99.492188, 78.061989 ], [ 99.492188, 78.278201 ], [ 99.843750, 78.278201 ], [ 99.843750, 78.490552 ], [ 100.195312, 78.490552 ], [ 100.195312, 78.699106 ], [ 100.546875, 78.699106 ], [ 100.546875, 78.903929 ], [ 100.898438, 78.903929 ], [ 100.898438, 79.105086 ], [ 101.250000, 79.105086 ], [ 101.250000, 79.237185 ], [ 101.601562, 79.237185 ], [ 101.601562, 79.302640 ], [ 102.656250, 79.302640 ] ] ], [ [ [ 142.031250, 73.922469 ], [ 142.031250, 73.824820 ], [ 142.382812, 73.824820 ], [ 142.382812, 73.726595 ], [ 142.734375, 73.726595 ], [ 142.734375, 73.627789 ], [ 143.085938, 73.627789 ], [ 143.085938, 73.528399 ], [ 143.437500, 73.528399 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.327858 ], [ 139.570312, 73.327858 ], [ 139.570312, 73.428424 ], [ 139.921875, 73.428424 ], [ 139.921875, 73.627789 ], [ 140.273438, 73.627789 ], [ 140.273438, 73.726595 ], [ 140.625000, 73.726595 ], [ 140.625000, 73.824820 ], [ 141.679688, 73.824820 ], [ 141.679688, 73.922469 ], [ 142.031250, 73.922469 ] ] ], [ [ [ 146.953125, 75.497157 ], [ 146.953125, 75.408854 ], [ 148.359375, 75.408854 ], [ 148.359375, 75.320025 ], [ 149.062500, 75.320025 ], [ 149.062500, 75.230667 ], [ 149.765625, 75.230667 ], [ 149.765625, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 75.050354 ], [ 150.117188, 75.050354 ], [ 150.117188, 74.959392 ], [ 149.765625, 74.959392 ], [ 149.765625, 74.775843 ], [ 148.359375, 74.775843 ], [ 148.359375, 74.867889 ], [ 147.304688, 74.867889 ], [ 147.304688, 74.959392 ], [ 146.953125, 74.959392 ], [ 146.953125, 75.050354 ], [ 146.250000, 75.050354 ], [ 146.250000, 75.140778 ], [ 145.898438, 75.140778 ], [ 145.898438, 75.320025 ], [ 146.250000, 75.320025 ], [ 146.250000, 75.497157 ], [ 146.953125, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -143.789062, -85.126373 ], [ -143.789062, -85.111416 ], [ -143.613281, -85.111416 ], [ -143.613281, -85.081364 ], [ -143.437500, -85.081364 ], [ -143.437500, -85.066270 ], [ -143.261719, -85.066270 ], [ -143.261719, -85.051129 ], [ -143.085938, -85.051129 ], [ -143.085938, -84.818373 ], [ -142.910156, -84.818373 ], [ -142.910156, -84.574702 ], [ -143.613281, -84.574702 ], [ -143.613281, -84.558057 ], [ -145.019531, -84.558057 ], [ -145.019531, -84.541361 ], [ -146.250000, -84.541361 ], [ -146.250000, -84.524614 ], [ -146.953125, -84.524614 ], [ -146.953125, -84.507816 ], [ -147.304688, -84.507816 ], [ -147.304688, -84.490966 ], [ -147.480469, -84.490966 ], [ -147.480469, -84.474065 ], [ -147.832031, -84.474065 ], [ -147.832031, -84.457112 ], [ -148.007812, -84.457112 ], [ -148.007812, -84.440107 ], [ -148.359375, -84.440107 ], [ -148.359375, -84.423050 ], [ -148.535156, -84.423050 ], [ -148.535156, -84.405941 ], [ -148.710938, -84.405941 ], [ -148.710938, -84.388780 ], [ -149.062500, -84.388780 ], [ -149.062500, -84.371566 ], [ -149.238281, -84.371566 ], [ -149.238281, -84.354300 ], [ -149.589844, -84.354300 ], [ -149.589844, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.319608 ], [ -150.117188, -84.319608 ], [ -150.117188, -84.267172 ], [ -150.292969, -84.267172 ], [ -150.292969, -84.160849 ], [ -150.468750, -84.160849 ], [ -150.468750, -84.070747 ], [ -150.644531, -84.070747 ], [ -150.644531, -83.960794 ], [ -150.820312, -83.960794 ], [ -150.820312, -83.905058 ], [ -150.996094, -83.905058 ], [ -150.996094, -83.886366 ], [ -151.347656, -83.886366 ], [ -151.347656, -83.867616 ], [ -151.523438, -83.867616 ], [ -151.523438, -83.848810 ], [ -151.875000, -83.848810 ], [ -151.875000, -83.829945 ], [ -152.050781, -83.829945 ], [ -152.050781, -83.811024 ], [ -152.402344, -83.811024 ], [ -152.402344, -83.792044 ], [ -152.578125, -83.792044 ], [ -152.578125, -83.773007 ], [ -152.753906, -83.773007 ], [ -152.753906, -83.753911 ], [ -153.105469, -83.753911 ], [ -153.105469, -83.734757 ], [ -153.281250, -83.734757 ], [ -153.281250, -83.715544 ], [ -153.632812, -83.715544 ], [ -153.632812, -83.480366 ], [ -153.457031, -83.480366 ], [ -153.457031, -83.153111 ], [ -153.281250, -83.153111 ], [ -153.281250, -82.940327 ], [ -153.105469, -82.940327 ], [ -153.105469, -82.787476 ], [ -152.929688, -82.787476 ], [ -152.929688, -82.653843 ], [ -152.753906, -82.653843 ], [ -152.753906, -82.517749 ], [ -152.578125, -82.517749 ], [ -152.578125, -82.355800 ], [ -152.753906, -82.355800 ], [ -152.753906, -82.166446 ], [ -152.929688, -82.166446 ], [ -152.929688, -82.045740 ], [ -153.105469, -82.045740 ], [ -153.105469, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.972431 ], [ -153.457031, -81.972431 ], [ -153.457031, -81.947846 ], [ -153.632812, -81.947846 ], [ -153.632812, -81.923186 ], [ -153.808594, -81.923186 ], [ -153.808594, -81.898451 ], [ -153.984375, -81.898451 ], [ -153.984375, -81.873641 ], [ -154.160156, -81.873641 ], [ -154.160156, -81.823794 ], [ -154.335938, -81.823794 ], [ -154.335938, -81.798757 ], [ -154.511719, -81.798757 ], [ -154.511719, -81.748454 ], [ -154.687500, -81.748454 ], [ -154.687500, -81.646927 ], [ -154.863281, -81.646927 ], [ -154.863281, -81.569968 ], [ -155.039062, -81.569968 ], [ -155.039062, -81.466261 ], [ -155.214844, -81.466261 ], [ -155.214844, -81.413933 ], [ -155.390625, -81.413933 ], [ -155.390625, -81.361287 ], [ -155.566406, -81.361287 ], [ -155.566406, -81.334844 ], [ -155.742188, -81.334844 ], [ -155.742188, -81.308321 ], [ -155.917969, -81.308321 ], [ -155.917969, -81.255032 ], [ -156.093750, -81.255032 ], [ -156.093750, -81.228267 ], [ -156.269531, -81.228267 ], [ -156.269531, -81.201420 ], [ -156.445312, -81.201420 ], [ -156.445312, -81.147481 ], [ -156.621094, -81.147481 ], [ -156.621094, -81.120388 ], [ -156.796875, -81.120388 ], [ -156.796875, -81.093214 ], [ -156.269531, -81.093214 ], [ -156.269531, -81.120388 ], [ -155.039062, -81.120388 ], [ -155.039062, -81.147481 ], [ -153.984375, -81.147481 ], [ -153.984375, -81.120388 ], [ -153.632812, -81.120388 ], [ -153.632812, -81.093214 ], [ -153.105469, -81.093214 ], [ -153.105469, -81.065957 ], [ -152.578125, -81.065957 ], [ -152.578125, -81.038617 ], [ -152.226562, -81.038617 ], [ -152.226562, -81.011194 ], [ -152.050781, -81.011194 ], [ -152.050781, -81.038617 ], [ -151.875000, -81.038617 ], [ -151.875000, -81.093214 ], [ -151.699219, -81.093214 ], [ -151.699219, -81.120388 ], [ -151.523438, -81.120388 ], [ -151.523438, -81.174491 ], [ -151.347656, -81.174491 ], [ -151.347656, -81.201420 ], [ -151.171875, -81.201420 ], [ -151.171875, -81.255032 ], [ -150.996094, -81.255032 ], [ -150.996094, -81.281717 ], [ -150.820312, -81.281717 ], [ -150.820312, -81.334844 ], [ -150.468750, -81.334844 ], [ -150.468750, -81.308321 ], [ -150.292969, -81.308321 ], [ -150.292969, -81.281717 ], [ -150.117188, -81.281717 ], [ -150.117188, -81.255032 ], [ -149.941406, -81.255032 ], [ -149.941406, -81.228267 ], [ -149.765625, -81.228267 ], [ -149.765625, -81.174491 ], [ -149.589844, -81.174491 ], [ -149.589844, -81.147481 ], [ -149.414062, -81.147481 ], [ -149.414062, -81.120388 ], [ -149.238281, -81.120388 ], [ -149.238281, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -81.065957 ], [ -148.886719, -81.065957 ], [ -148.886719, -81.038617 ], [ -148.710938, -81.038617 ], [ -148.710938, -80.983688 ], [ -148.535156, -80.983688 ], [ -148.535156, -80.956099 ], [ -148.359375, -80.956099 ], [ -148.359375, -80.900669 ], [ -148.183594, -80.900669 ], [ -148.183594, -80.872827 ], [ -148.007812, -80.872827 ], [ -148.007812, -80.844901 ], [ -147.832031, -80.844901 ], [ -147.832031, -80.788795 ], [ -147.656250, -80.788795 ], [ -147.656250, -80.760615 ], [ -147.480469, -80.760615 ], [ -147.480469, -80.703997 ], [ -147.304688, -80.703997 ], [ -147.304688, -80.647035 ], [ -147.128906, -80.647035 ], [ -147.128906, -80.589727 ], [ -146.953125, -80.589727 ], [ -146.953125, -80.503112 ], [ -146.777344, -80.503112 ], [ -146.777344, -80.444931 ], [ -146.601562, -80.444931 ], [ -146.601562, -80.386396 ], [ -146.425781, -80.386396 ], [ -146.425781, -80.238501 ], [ -146.601562, -80.238501 ], [ -146.601562, -80.058050 ], [ -146.777344, -80.058050 ], [ -146.777344, -79.935918 ], [ -146.953125, -79.935918 ], [ -146.953125, -79.905154 ], [ -147.128906, -79.905154 ], [ -147.128906, -79.843346 ], [ -147.304688, -79.843346 ], [ -147.304688, -79.812302 ], [ -147.480469, -79.812302 ], [ -147.480469, -79.781164 ], [ -147.656250, -79.781164 ], [ -147.656250, -79.718605 ], [ -147.832031, -79.718605 ], [ -147.832031, -79.687184 ], [ -148.007812, -79.687184 ], [ -148.007812, -79.655668 ], [ -148.183594, -79.655668 ], [ -148.183594, -79.624056 ], [ -148.359375, -79.624056 ], [ -148.359375, -79.592349 ], [ -148.535156, -79.592349 ], [ -148.535156, -79.560546 ], [ -148.710938, -79.560546 ], [ -148.710938, -79.528647 ], [ -148.886719, -79.528647 ], [ -148.886719, -79.496652 ], [ -149.062500, -79.496652 ], [ -149.062500, -79.464560 ], [ -149.238281, -79.464560 ], [ -149.238281, -79.432371 ], [ -149.414062, -79.432371 ], [ -149.414062, -79.400085 ], [ -149.589844, -79.400085 ], [ -149.589844, -79.367701 ], [ -150.117188, -79.367701 ], [ -150.117188, -79.335219 ], [ -151.171875, -79.335219 ], [ -151.171875, -79.302640 ], [ -151.875000, -79.302640 ], [ -151.875000, -79.269962 ], [ -152.402344, -79.269962 ], [ -152.402344, -79.237185 ], [ -152.753906, -79.237185 ], [ -152.753906, -79.204309 ], [ -153.281250, -79.204309 ], [ -153.281250, -79.171335 ], [ -153.808594, -79.171335 ], [ -153.808594, -79.138260 ], [ -154.511719, -79.138260 ], [ -154.511719, -79.105086 ], [ -155.214844, -79.105086 ], [ -155.214844, -79.071812 ], [ -155.390625, -79.071812 ], [ -155.390625, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.789062, -85.126373 ] ] ], [ [ [ -169.980469, -83.905058 ], [ -169.980469, -83.923693 ], [ -169.804688, -83.923693 ], [ -169.804688, -83.960794 ], [ -169.628906, -83.960794 ], [ -169.628906, -83.997669 ], [ -169.453125, -83.997669 ], [ -169.453125, -84.034319 ], [ -169.277344, -84.034319 ], [ -169.277344, -84.070747 ], [ -169.101562, -84.070747 ], [ -169.101562, -84.106953 ], [ -168.925781, -84.106953 ], [ -168.925781, -84.160849 ], [ -168.750000, -84.160849 ], [ -168.750000, -84.214254 ], [ -168.574219, -84.214254 ], [ -168.574219, -84.267172 ], [ -168.398438, -84.267172 ], [ -168.398438, -84.302183 ], [ -168.222656, -84.302183 ], [ -168.222656, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.371566 ], [ -167.871094, -84.371566 ], [ -167.871094, -84.405941 ], [ -167.695312, -84.405941 ], [ -167.695312, -84.457112 ], [ -167.519531, -84.457112 ], [ -167.519531, -84.490966 ], [ -167.343750, -84.490966 ], [ -167.343750, -84.524614 ], [ -167.167969, -84.524614 ], [ -167.167969, -84.558057 ], [ -166.992188, -84.558057 ], [ -166.992188, -84.591297 ], [ -166.816406, -84.591297 ], [ -166.816406, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.624334 ], [ -166.464844, -84.624334 ], [ -166.464844, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.657170 ], [ -166.113281, -84.657170 ], [ -166.113281, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.689806 ], [ -165.761719, -84.689806 ], [ -165.761719, -84.706049 ], [ -165.410156, -84.706049 ], [ -165.410156, -84.722243 ], [ -165.234375, -84.722243 ], [ -165.234375, -84.738387 ], [ -165.058594, -84.738387 ], [ -165.058594, -84.754482 ], [ -164.882812, -84.754482 ], [ -164.882812, -84.770528 ], [ -164.707031, -84.770528 ], [ -164.707031, -84.786525 ], [ -164.531250, -84.786525 ], [ -164.531250, -84.802474 ], [ -164.355469, -84.802474 ], [ -164.355469, -84.818373 ], [ -164.179688, -84.818373 ], [ -164.179688, -84.834225 ], [ -164.003906, -84.834225 ], [ -164.003906, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.897147 ], [ -163.652344, -84.897147 ], [ -163.652344, -84.912758 ], [ -163.476562, -84.912758 ], [ -163.476562, -84.943837 ], [ -163.300781, -84.943837 ], [ -163.300781, -84.974726 ], [ -163.125000, -84.974726 ], [ -163.125000, -84.990100 ], [ -162.949219, -84.990100 ], [ -162.949219, -85.020708 ], [ -162.773438, -85.020708 ], [ -162.773438, -85.051129 ], [ -162.597656, -85.051129 ], [ -162.597656, -85.066270 ], [ -162.421875, -85.066270 ], [ -162.421875, -85.096413 ], [ -162.246094, -85.096413 ], [ -162.246094, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.878906, -85.126373 ], [ -180.878906, -84.607840 ], [ -180.703125, -84.607840 ], [ -180.703125, -84.640777 ], [ -180.527344, -84.640777 ], [ -180.527344, -84.657170 ], [ -180.351562, -84.657170 ], [ -180.351562, -84.673513 ], [ -180.175781, -84.673513 ], [ -180.175781, -84.706049 ], [ -180.000000, -84.706049 ], [ -180.000000, -84.673513 ], [ -179.824219, -84.673513 ], [ -179.824219, -84.558057 ], [ -179.648438, -84.558057 ], [ -179.648438, -84.440107 ], [ -179.472656, -84.440107 ], [ -179.472656, -84.336980 ], [ -179.296875, -84.336980 ], [ -179.296875, -84.214254 ], [ -179.121094, -84.214254 ], [ -179.121094, -84.160849 ], [ -178.945312, -84.160849 ], [ -178.945312, -84.196507 ], [ -178.769531, -84.196507 ], [ -178.769531, -84.231947 ], [ -178.593750, -84.231947 ], [ -178.593750, -84.249587 ], [ -178.417969, -84.249587 ], [ -178.417969, -84.284704 ], [ -178.242188, -84.284704 ], [ -178.242188, -84.302183 ], [ -178.066406, -84.302183 ], [ -178.066406, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.371566 ], [ -177.714844, -84.371566 ], [ -177.714844, -84.388780 ], [ -177.539062, -84.388780 ], [ -177.539062, -84.423050 ], [ -177.363281, -84.423050 ], [ -177.363281, -84.457112 ], [ -177.187500, -84.457112 ], [ -177.187500, -84.405941 ], [ -177.011719, -84.405941 ], [ -177.011719, -84.354300 ], [ -176.835938, -84.354300 ], [ -176.835938, -84.302183 ], [ -176.660156, -84.302183 ], [ -176.660156, -84.249587 ], [ -176.484375, -84.249587 ], [ -176.484375, -84.196507 ], [ -176.308594, -84.196507 ], [ -176.308594, -84.142939 ], [ -176.132812, -84.142939 ], [ -176.132812, -84.106953 ], [ -175.957031, -84.106953 ], [ -175.957031, -84.124973 ], [ -175.781250, -84.124973 ], [ -175.781250, -84.160849 ], [ -175.605469, -84.160849 ], [ -175.605469, -84.214254 ], [ -175.429688, -84.214254 ], [ -175.429688, -84.267172 ], [ -175.253906, -84.267172 ], [ -175.253906, -84.319608 ], [ -175.078125, -84.319608 ], [ -175.078125, -84.371566 ], [ -174.902344, -84.371566 ], [ -174.902344, -84.423050 ], [ -174.726562, -84.423050 ], [ -174.726562, -84.474065 ], [ -174.550781, -84.474065 ], [ -174.550781, -84.524614 ], [ -174.199219, -84.524614 ], [ -174.199219, -84.457112 ], [ -174.023438, -84.457112 ], [ -174.023438, -84.405941 ], [ -173.847656, -84.405941 ], [ -173.847656, -84.336980 ], [ -173.671875, -84.336980 ], [ -173.671875, -84.284704 ], [ -173.496094, -84.284704 ], [ -173.496094, -84.231947 ], [ -173.320312, -84.231947 ], [ -173.320312, -84.160849 ], [ -173.144531, -84.160849 ], [ -173.144531, -84.088878 ], [ -172.968750, -84.088878 ], [ -172.968750, -84.052561 ], [ -172.792969, -84.052561 ], [ -172.792969, -84.034319 ], [ -172.441406, -84.034319 ], [ -172.441406, -84.016022 ], [ -172.089844, -84.016022 ], [ -172.089844, -83.997669 ], [ -171.738281, -83.997669 ], [ -171.738281, -83.979259 ], [ -171.386719, -83.979259 ], [ -171.386719, -83.960794 ], [ -171.035156, -83.960794 ], [ -171.035156, -83.942272 ], [ -170.683594, -83.942272 ], [ -170.683594, -83.923693 ], [ -170.332031, -83.923693 ], [ -170.332031, -83.905058 ], [ -169.980469, -83.905058 ] ] ], [ [ [ -155.390625, -85.126373 ], [ -155.390625, -85.111416 ], [ -154.863281, -85.111416 ], [ -154.863281, -85.126373 ], [ -155.390625, -85.126373 ] ] ], [ [ [ -159.609375, -79.004962 ], [ -159.609375, -79.038437 ], [ -159.433594, -79.038437 ], [ -159.433594, -79.269962 ], [ -159.257812, -79.269962 ], [ -159.257812, -79.496652 ], [ -159.433594, -79.496652 ], [ -159.433594, -79.528647 ], [ -159.960938, -79.528647 ], [ -159.960938, -79.560546 ], [ -160.312500, -79.560546 ], [ -160.312500, -79.592349 ], [ -160.839844, -79.592349 ], [ -160.839844, -79.624056 ], [ -161.367188, -79.624056 ], [ -161.367188, -79.560546 ], [ -161.542969, -79.560546 ], [ -161.542969, -79.528647 ], [ -161.718750, -79.528647 ], [ -161.718750, -79.464560 ], [ -161.894531, -79.464560 ], [ -161.894531, -79.400085 ], [ -162.070312, -79.400085 ], [ -162.070312, -79.367701 ], [ -162.246094, -79.367701 ], [ -162.246094, -79.302640 ], [ -162.421875, -79.302640 ], [ -162.421875, -79.237185 ], [ -162.597656, -79.237185 ], [ -162.597656, -79.138260 ], [ -162.773438, -79.138260 ], [ -162.773438, -79.071812 ], [ -162.949219, -79.071812 ], [ -162.949219, -79.004962 ], [ -159.609375, -79.004962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -143.789062, -85.126373 ], [ -143.789062, -85.096413 ], [ -143.613281, -85.096413 ], [ -143.613281, -85.081364 ], [ -143.437500, -85.081364 ], [ -143.437500, -85.051129 ], [ -143.261719, -85.051129 ], [ -143.261719, -84.928321 ], [ -143.085938, -84.928321 ], [ -143.085938, -84.689806 ], [ -142.910156, -84.689806 ], [ -142.910156, -84.558057 ], [ -143.964844, -84.558057 ], [ -143.964844, -84.541361 ], [ -146.074219, -84.541361 ], [ -146.074219, -84.524614 ], [ -147.128906, -84.524614 ], [ -147.128906, -84.507816 ], [ -147.304688, -84.507816 ], [ -147.304688, -84.490966 ], [ -147.656250, -84.490966 ], [ -147.656250, -84.474065 ], [ -147.832031, -84.474065 ], [ -147.832031, -84.457112 ], [ -148.007812, -84.457112 ], [ -148.007812, -84.440107 ], [ -148.359375, -84.440107 ], [ -148.359375, -84.423050 ], [ -148.535156, -84.423050 ], [ -148.535156, -84.405941 ], [ -148.710938, -84.405941 ], [ -148.710938, -84.388780 ], [ -148.886719, -84.388780 ], [ -148.886719, -84.371566 ], [ -149.238281, -84.371566 ], [ -149.238281, -84.354300 ], [ -149.414062, -84.354300 ], [ -149.414062, -84.336980 ], [ -149.589844, -84.336980 ], [ -149.589844, -84.319608 ], [ -149.941406, -84.319608 ], [ -149.941406, -84.302183 ], [ -150.117188, -84.302183 ], [ -150.117188, -84.249587 ], [ -150.292969, -84.249587 ], [ -150.292969, -84.178705 ], [ -150.468750, -84.178705 ], [ -150.468750, -84.088878 ], [ -150.644531, -84.088878 ], [ -150.644531, -84.016022 ], [ -150.820312, -84.016022 ], [ -150.820312, -83.942272 ], [ -150.996094, -83.942272 ], [ -150.996094, -83.886366 ], [ -151.171875, -83.886366 ], [ -151.171875, -83.867616 ], [ -151.523438, -83.867616 ], [ -151.523438, -83.848810 ], [ -151.699219, -83.848810 ], [ -151.699219, -83.829945 ], [ -151.875000, -83.829945 ], [ -151.875000, -83.811024 ], [ -152.226562, -83.811024 ], [ -152.226562, -83.792044 ], [ -152.402344, -83.792044 ], [ -152.402344, -83.773007 ], [ -152.578125, -83.773007 ], [ -152.578125, -83.753911 ], [ -152.929688, -83.753911 ], [ -152.929688, -83.734757 ], [ -153.105469, -83.734757 ], [ -153.105469, -83.715544 ], [ -153.281250, -83.715544 ], [ -153.281250, -83.696273 ], [ -153.632812, -83.696273 ], [ -153.632812, -83.460377 ], [ -153.457031, -83.460377 ], [ -153.457031, -83.132123 ], [ -153.281250, -83.132123 ], [ -153.281250, -82.918690 ], [ -153.105469, -82.918690 ], [ -153.105469, -82.720964 ], [ -152.929688, -82.720964 ], [ -152.929688, -82.540604 ], [ -152.753906, -82.540604 ], [ -152.753906, -82.237994 ], [ -152.929688, -82.237994 ], [ -152.929688, -82.021378 ], [ -153.105469, -82.021378 ], [ -153.105469, -81.996942 ], [ -153.281250, -81.996942 ], [ -153.281250, -81.972431 ], [ -153.457031, -81.972431 ], [ -153.457031, -81.947846 ], [ -153.632812, -81.947846 ], [ -153.632812, -81.923186 ], [ -153.808594, -81.923186 ], [ -153.808594, -81.873641 ], [ -153.984375, -81.873641 ], [ -153.984375, -81.848756 ], [ -154.160156, -81.848756 ], [ -154.160156, -81.823794 ], [ -154.335938, -81.823794 ], [ -154.335938, -81.798757 ], [ -154.511719, -81.798757 ], [ -154.511719, -81.773644 ], [ -154.687500, -81.773644 ], [ -154.687500, -81.723188 ], [ -154.863281, -81.723188 ], [ -154.863281, -81.646927 ], [ -155.039062, -81.646927 ], [ -155.039062, -81.544159 ], [ -155.214844, -81.544159 ], [ -155.214844, -81.466261 ], [ -155.390625, -81.466261 ], [ -155.390625, -81.413933 ], [ -155.566406, -81.413933 ], [ -155.566406, -81.361287 ], [ -155.742188, -81.361287 ], [ -155.742188, -81.334844 ], [ -155.917969, -81.334844 ], [ -155.917969, -81.308321 ], [ -156.093750, -81.308321 ], [ -156.093750, -81.255032 ], [ -156.269531, -81.255032 ], [ -156.269531, -81.228267 ], [ -156.445312, -81.228267 ], [ -156.445312, -81.201420 ], [ -156.621094, -81.201420 ], [ -156.621094, -81.147481 ], [ -156.796875, -81.147481 ], [ -156.796875, -81.120388 ], [ -156.972656, -81.120388 ], [ -156.972656, -81.093214 ], [ -156.445312, -81.093214 ], [ -156.445312, -81.120388 ], [ -155.214844, -81.120388 ], [ -155.214844, -81.147481 ], [ -154.160156, -81.147481 ], [ -154.160156, -81.120388 ], [ -153.808594, -81.120388 ], [ -153.808594, -81.093214 ], [ -153.457031, -81.093214 ], [ -153.457031, -81.065957 ], [ -153.105469, -81.065957 ], [ -153.105469, -81.038617 ], [ -152.753906, -81.038617 ], [ -152.753906, -81.011194 ], [ -152.402344, -81.011194 ], [ -152.402344, -80.983688 ], [ -152.226562, -80.983688 ], [ -152.226562, -81.011194 ], [ -152.050781, -81.011194 ], [ -152.050781, -81.065957 ], [ -151.875000, -81.065957 ], [ -151.875000, -81.120388 ], [ -151.699219, -81.120388 ], [ -151.699219, -81.147481 ], [ -151.523438, -81.147481 ], [ -151.523438, -81.201420 ], [ -151.347656, -81.201420 ], [ -151.347656, -81.228267 ], [ -151.171875, -81.228267 ], [ -151.171875, -81.281717 ], [ -150.996094, -81.281717 ], [ -150.996094, -81.334844 ], [ -150.644531, -81.334844 ], [ -150.644531, -81.308321 ], [ -150.468750, -81.308321 ], [ -150.468750, -81.281717 ], [ -150.292969, -81.281717 ], [ -150.292969, -81.255032 ], [ -150.117188, -81.255032 ], [ -150.117188, -81.228267 ], [ -149.941406, -81.228267 ], [ -149.941406, -81.201420 ], [ -149.765625, -81.201420 ], [ -149.765625, -81.174491 ], [ -149.589844, -81.174491 ], [ -149.589844, -81.147481 ], [ -149.414062, -81.147481 ], [ -149.414062, -81.120388 ], [ -149.238281, -81.120388 ], [ -149.238281, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -81.065957 ], [ -148.886719, -81.065957 ], [ -148.886719, -81.038617 ], [ -148.710938, -81.038617 ], [ -148.710938, -80.983688 ], [ -148.535156, -80.983688 ], [ -148.535156, -80.956099 ], [ -148.359375, -80.956099 ], [ -148.359375, -80.900669 ], [ -148.183594, -80.900669 ], [ -148.183594, -80.844901 ], [ -148.007812, -80.844901 ], [ -148.007812, -80.816891 ], [ -147.832031, -80.816891 ], [ -147.832031, -80.760615 ], [ -147.656250, -80.760615 ], [ -147.656250, -80.732349 ], [ -147.480469, -80.732349 ], [ -147.480469, -80.675559 ], [ -147.304688, -80.675559 ], [ -147.304688, -80.618424 ], [ -147.128906, -80.618424 ], [ -147.128906, -80.560943 ], [ -146.953125, -80.560943 ], [ -146.953125, -80.503112 ], [ -146.777344, -80.503112 ], [ -146.777344, -80.444931 ], [ -146.601562, -80.444931 ], [ -146.601562, -80.386396 ], [ -146.425781, -80.386396 ], [ -146.425781, -80.238501 ], [ -146.601562, -80.238501 ], [ -146.601562, -80.027655 ], [ -146.777344, -80.027655 ], [ -146.777344, -79.905154 ], [ -146.953125, -79.905154 ], [ -146.953125, -79.874297 ], [ -147.128906, -79.874297 ], [ -147.128906, -79.843346 ], [ -147.304688, -79.843346 ], [ -147.304688, -79.812302 ], [ -147.480469, -79.812302 ], [ -147.480469, -79.749932 ], [ -147.656250, -79.749932 ], [ -147.656250, -79.718605 ], [ -147.832031, -79.718605 ], [ -147.832031, -79.687184 ], [ -148.007812, -79.687184 ], [ -148.007812, -79.655668 ], [ -148.183594, -79.655668 ], [ -148.183594, -79.624056 ], [ -148.359375, -79.624056 ], [ -148.359375, -79.592349 ], [ -148.535156, -79.592349 ], [ -148.535156, -79.560546 ], [ -148.710938, -79.560546 ], [ -148.710938, -79.528647 ], [ -148.886719, -79.528647 ], [ -148.886719, -79.464560 ], [ -149.062500, -79.464560 ], [ -149.062500, -79.432371 ], [ -149.238281, -79.432371 ], [ -149.238281, -79.400085 ], [ -149.414062, -79.400085 ], [ -149.414062, -79.367701 ], [ -149.589844, -79.367701 ], [ -149.589844, -79.335219 ], [ -150.292969, -79.335219 ], [ -150.292969, -79.302640 ], [ -151.347656, -79.302640 ], [ -151.347656, -79.269962 ], [ -152.050781, -79.269962 ], [ -152.050781, -79.237185 ], [ -152.402344, -79.237185 ], [ -152.402344, -79.204309 ], [ -152.929688, -79.204309 ], [ -152.929688, -79.171335 ], [ -153.281250, -79.171335 ], [ -153.281250, -79.138260 ], [ -153.808594, -79.138260 ], [ -153.808594, -79.105086 ], [ -154.511719, -79.105086 ], [ -154.511719, -79.071812 ], [ -155.214844, -79.071812 ], [ -155.214844, -79.038437 ], [ -155.566406, -79.038437 ], [ -155.566406, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.789062, -85.126373 ] ] ], [ [ [ -169.980469, -83.886366 ], [ -169.980469, -83.905058 ], [ -169.804688, -83.905058 ], [ -169.804688, -83.942272 ], [ -169.628906, -83.942272 ], [ -169.628906, -83.997669 ], [ -169.453125, -83.997669 ], [ -169.453125, -84.052561 ], [ -169.277344, -84.052561 ], [ -169.277344, -84.088878 ], [ -169.101562, -84.088878 ], [ -169.101562, -84.142939 ], [ -168.925781, -84.142939 ], [ -168.925781, -84.178705 ], [ -168.750000, -84.178705 ], [ -168.750000, -84.214254 ], [ -168.574219, -84.214254 ], [ -168.574219, -84.267172 ], [ -168.398438, -84.267172 ], [ -168.398438, -84.302183 ], [ -168.222656, -84.302183 ], [ -168.222656, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.388780 ], [ -167.871094, -84.388780 ], [ -167.871094, -84.423050 ], [ -167.695312, -84.423050 ], [ -167.695312, -84.474065 ], [ -167.519531, -84.474065 ], [ -167.519531, -84.507816 ], [ -167.343750, -84.507816 ], [ -167.343750, -84.541361 ], [ -167.167969, -84.541361 ], [ -167.167969, -84.574702 ], [ -166.992188, -84.574702 ], [ -166.992188, -84.591297 ], [ -166.816406, -84.591297 ], [ -166.816406, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.624334 ], [ -166.464844, -84.624334 ], [ -166.464844, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.657170 ], [ -166.113281, -84.657170 ], [ -166.113281, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.689806 ], [ -165.585938, -84.689806 ], [ -165.585938, -84.706049 ], [ -165.410156, -84.706049 ], [ -165.410156, -84.722243 ], [ -165.234375, -84.722243 ], [ -165.234375, -84.738387 ], [ -165.058594, -84.738387 ], [ -165.058594, -84.754482 ], [ -164.882812, -84.754482 ], [ -164.882812, -84.770528 ], [ -164.707031, -84.770528 ], [ -164.707031, -84.786525 ], [ -164.531250, -84.786525 ], [ -164.531250, -84.802474 ], [ -164.355469, -84.802474 ], [ -164.355469, -84.818373 ], [ -164.179688, -84.818373 ], [ -164.179688, -84.834225 ], [ -164.003906, -84.834225 ], [ -164.003906, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.897147 ], [ -163.652344, -84.897147 ], [ -163.652344, -84.912758 ], [ -163.476562, -84.912758 ], [ -163.476562, -84.943837 ], [ -163.300781, -84.943837 ], [ -163.300781, -84.974726 ], [ -163.125000, -84.974726 ], [ -163.125000, -84.990100 ], [ -162.949219, -84.990100 ], [ -162.949219, -85.020708 ], [ -162.773438, -85.020708 ], [ -162.773438, -85.051129 ], [ -162.597656, -85.051129 ], [ -162.597656, -85.066270 ], [ -162.421875, -85.066270 ], [ -162.421875, -85.096413 ], [ -162.246094, -85.096413 ], [ -162.246094, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.878906, -85.126373 ], [ -180.878906, -84.607840 ], [ -180.703125, -84.607840 ], [ -180.703125, -84.640777 ], [ -180.527344, -84.640777 ], [ -180.527344, -84.657170 ], [ -180.351562, -84.657170 ], [ -180.351562, -84.673513 ], [ -180.175781, -84.673513 ], [ -180.175781, -84.706049 ], [ -180.000000, -84.706049 ], [ -180.000000, -84.657170 ], [ -179.824219, -84.657170 ], [ -179.824219, -84.541361 ], [ -179.648438, -84.541361 ], [ -179.648438, -84.423050 ], [ -179.472656, -84.423050 ], [ -179.472656, -84.319608 ], [ -179.296875, -84.319608 ], [ -179.296875, -84.196507 ], [ -179.121094, -84.196507 ], [ -179.121094, -84.142939 ], [ -178.945312, -84.142939 ], [ -178.945312, -84.178705 ], [ -178.769531, -84.178705 ], [ -178.769531, -84.214254 ], [ -178.593750, -84.214254 ], [ -178.593750, -84.249587 ], [ -178.417969, -84.249587 ], [ -178.417969, -84.284704 ], [ -178.242188, -84.284704 ], [ -178.242188, -84.302183 ], [ -178.066406, -84.302183 ], [ -178.066406, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.371566 ], [ -177.714844, -84.371566 ], [ -177.714844, -84.405941 ], [ -177.539062, -84.405941 ], [ -177.539062, -84.440107 ], [ -177.363281, -84.440107 ], [ -177.363281, -84.423050 ], [ -177.187500, -84.423050 ], [ -177.187500, -84.388780 ], [ -177.011719, -84.388780 ], [ -177.011719, -84.336980 ], [ -176.835938, -84.336980 ], [ -176.835938, -84.284704 ], [ -176.660156, -84.284704 ], [ -176.660156, -84.231947 ], [ -176.484375, -84.231947 ], [ -176.484375, -84.178705 ], [ -176.308594, -84.178705 ], [ -176.308594, -84.124973 ], [ -176.132812, -84.124973 ], [ -176.132812, -84.106953 ], [ -175.957031, -84.106953 ], [ -175.957031, -84.142939 ], [ -175.781250, -84.142939 ], [ -175.781250, -84.196507 ], [ -175.605469, -84.196507 ], [ -175.605469, -84.249587 ], [ -175.429688, -84.249587 ], [ -175.429688, -84.302183 ], [ -175.253906, -84.302183 ], [ -175.253906, -84.354300 ], [ -175.078125, -84.354300 ], [ -175.078125, -84.405941 ], [ -174.902344, -84.405941 ], [ -174.902344, -84.457112 ], [ -174.726562, -84.457112 ], [ -174.726562, -84.507816 ], [ -174.375000, -84.507816 ], [ -174.375000, -84.457112 ], [ -174.199219, -84.457112 ], [ -174.199219, -84.405941 ], [ -174.023438, -84.405941 ], [ -174.023438, -84.354300 ], [ -173.847656, -84.354300 ], [ -173.847656, -84.302183 ], [ -173.671875, -84.302183 ], [ -173.671875, -84.249587 ], [ -173.496094, -84.249587 ], [ -173.496094, -84.196507 ], [ -173.320312, -84.196507 ], [ -173.320312, -84.142939 ], [ -173.144531, -84.142939 ], [ -173.144531, -84.088878 ], [ -172.968750, -84.088878 ], [ -172.968750, -84.052561 ], [ -172.792969, -84.052561 ], [ -172.792969, -84.034319 ], [ -172.441406, -84.034319 ], [ -172.441406, -84.016022 ], [ -172.089844, -84.016022 ], [ -172.089844, -83.997669 ], [ -171.914062, -83.997669 ], [ -171.914062, -83.979259 ], [ -171.562500, -83.979259 ], [ -171.562500, -83.960794 ], [ -171.210938, -83.960794 ], [ -171.210938, -83.942272 ], [ -170.859375, -83.942272 ], [ -170.859375, -83.923693 ], [ -170.683594, -83.923693 ], [ -170.683594, -83.905058 ], [ -170.332031, -83.905058 ], [ -170.332031, -83.886366 ], [ -169.980469, -83.886366 ] ] ], [ [ [ -155.390625, -85.126373 ], [ -155.390625, -85.111416 ], [ -154.863281, -85.111416 ], [ -154.863281, -85.126373 ], [ -155.390625, -85.126373 ] ] ], [ [ [ -159.609375, -79.004962 ], [ -159.609375, -79.171335 ], [ -159.433594, -79.171335 ], [ -159.433594, -79.400085 ], [ -159.257812, -79.400085 ], [ -159.257812, -79.496652 ], [ -159.433594, -79.496652 ], [ -159.433594, -79.528647 ], [ -159.960938, -79.528647 ], [ -159.960938, -79.560546 ], [ -160.312500, -79.560546 ], [ -160.312500, -79.592349 ], [ -160.839844, -79.592349 ], [ -160.839844, -79.624056 ], [ -161.367188, -79.624056 ], [ -161.367188, -79.560546 ], [ -161.542969, -79.560546 ], [ -161.542969, -79.528647 ], [ -161.718750, -79.528647 ], [ -161.718750, -79.496652 ], [ -161.894531, -79.496652 ], [ -161.894531, -79.432371 ], [ -162.070312, -79.432371 ], [ -162.070312, -79.400085 ], [ -162.246094, -79.400085 ], [ -162.246094, -79.367701 ], [ -162.421875, -79.367701 ], [ -162.421875, -79.302640 ], [ -162.597656, -79.302640 ], [ -162.597656, -79.204309 ], [ -162.773438, -79.204309 ], [ -162.773438, -79.071812 ], [ -162.949219, -79.071812 ], [ -162.949219, -79.004962 ], [ -159.609375, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -162.949219, -78.206563 ], [ -162.949219, -78.242436 ], [ -162.597656, -78.242436 ], [ -162.597656, -78.278201 ], [ -162.246094, -78.278201 ], [ -162.246094, -78.313860 ], [ -161.894531, -78.313860 ], [ -161.894531, -78.349411 ], [ -161.542969, -78.349411 ], [ -161.542969, -78.384855 ], [ -161.191406, -78.384855 ], [ -161.191406, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.490552 ], [ -160.839844, -78.490552 ], [ -160.839844, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.630006 ], [ -160.488281, -78.630006 ], [ -160.488281, -78.699106 ], [ -160.312500, -78.699106 ], [ -160.312500, -78.733501 ], [ -160.136719, -78.733501 ], [ -160.136719, -78.801980 ], [ -159.960938, -78.801980 ], [ -159.960938, -78.870048 ], [ -159.785156, -78.870048 ], [ -159.785156, -78.937708 ], [ -159.609375, -78.937708 ], [ -159.609375, -79.004962 ], [ -159.433594, -79.004962 ], [ -159.433594, -79.204309 ], [ -159.257812, -79.204309 ], [ -159.257812, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.246094, -79.302640 ], [ -162.421875, -79.302640 ], [ -162.421875, -79.237185 ], [ -162.597656, -79.237185 ], [ -162.597656, -79.105086 ], [ -162.773438, -79.105086 ], [ -162.773438, -79.004962 ], [ -162.949219, -79.004962 ], [ -162.949219, -78.903929 ], [ -163.125000, -78.903929 ], [ -163.125000, -78.836065 ], [ -163.300781, -78.836065 ], [ -163.300781, -78.733501 ], [ -163.476562, -78.733501 ], [ -163.476562, -78.664608 ], [ -163.652344, -78.664608 ], [ -163.652344, -78.560488 ], [ -163.476562, -78.560488 ], [ -163.476562, -78.420193 ], [ -163.300781, -78.420193 ], [ -163.300781, -78.278201 ], [ -163.125000, -78.278201 ], [ -163.125000, -78.206563 ], [ -162.949219, -78.206563 ] ] ], [ [ [ -135.000000, -74.307353 ], [ -135.000000, -74.354828 ], [ -134.472656, -74.354828 ], [ -134.472656, -74.402163 ], [ -134.121094, -74.402163 ], [ -134.121094, -79.335219 ], [ -150.996094, -79.335219 ], [ -150.996094, -79.302640 ], [ -151.875000, -79.302640 ], [ -151.875000, -79.269962 ], [ -152.402344, -79.269962 ], [ -152.402344, -79.237185 ], [ -152.753906, -79.237185 ], [ -152.753906, -79.204309 ], [ -153.281250, -79.204309 ], [ -153.281250, -79.171335 ], [ -153.808594, -79.171335 ], [ -153.808594, -79.138260 ], [ -154.511719, -79.138260 ], [ -154.511719, -79.105086 ], [ -155.214844, -79.105086 ], [ -155.214844, -79.071812 ], [ -155.390625, -79.071812 ], [ -155.390625, -79.038437 ], [ -155.566406, -79.038437 ], [ -155.566406, -78.903929 ], [ -155.742188, -78.903929 ], [ -155.742188, -78.767792 ], [ -155.917969, -78.767792 ], [ -155.917969, -78.699106 ], [ -156.093750, -78.699106 ], [ -156.093750, -78.664608 ], [ -156.269531, -78.664608 ], [ -156.269531, -78.630006 ], [ -156.445312, -78.630006 ], [ -156.445312, -78.595299 ], [ -156.621094, -78.595299 ], [ -156.621094, -78.525573 ], [ -156.796875, -78.525573 ], [ -156.796875, -78.490552 ], [ -156.972656, -78.490552 ], [ -156.972656, -78.455425 ], [ -157.148438, -78.455425 ], [ -157.148438, -78.420193 ], [ -157.324219, -78.420193 ], [ -157.324219, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.278201 ], [ -157.675781, -78.278201 ], [ -157.675781, -78.170582 ], [ -157.851562, -78.170582 ], [ -157.851562, -78.098296 ], [ -158.027344, -78.098296 ], [ -158.027344, -77.767582 ], [ -158.203125, -77.767582 ], [ -158.203125, -77.196176 ], [ -158.378906, -77.196176 ], [ -158.378906, -76.920614 ], [ -158.203125, -76.920614 ], [ -158.203125, -76.960334 ], [ -158.027344, -76.960334 ], [ -158.027344, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.039418 ], [ -157.675781, -77.039418 ], [ -157.675781, -77.118032 ], [ -157.500000, -77.118032 ], [ -157.500000, -77.157163 ], [ -157.324219, -77.157163 ], [ -157.324219, -77.235074 ], [ -157.148438, -77.235074 ], [ -157.148438, -77.312520 ], [ -156.621094, -77.312520 ], [ -156.621094, -77.273855 ], [ -156.093750, -77.273855 ], [ -156.093750, -77.235074 ], [ -155.566406, -77.235074 ], [ -155.566406, -77.196176 ], [ -155.039062, -77.196176 ], [ -155.039062, -77.157163 ], [ -154.511719, -77.157163 ], [ -154.511719, -77.118032 ], [ -153.984375, -77.118032 ], [ -153.984375, -77.078784 ], [ -153.808594, -77.078784 ], [ -153.808594, -77.157163 ], [ -153.632812, -77.157163 ], [ -153.632812, -77.235074 ], [ -153.457031, -77.235074 ], [ -153.457031, -77.312520 ], [ -153.281250, -77.312520 ], [ -153.281250, -77.389504 ], [ -153.105469, -77.389504 ], [ -153.105469, -77.466028 ], [ -152.929688, -77.466028 ], [ -152.929688, -77.504119 ], [ -152.578125, -77.504119 ], [ -152.578125, -77.466028 ], [ -152.050781, -77.466028 ], [ -152.050781, -77.427824 ], [ -151.523438, -77.427824 ], [ -151.523438, -77.389504 ], [ -151.171875, -77.389504 ], [ -151.171875, -77.351070 ], [ -150.820312, -77.351070 ], [ -150.820312, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.273855 ], [ -150.292969, -77.273855 ], [ -150.292969, -77.235074 ], [ -149.941406, -77.235074 ], [ -149.941406, -77.196176 ], [ -149.765625, -77.196176 ], [ -149.765625, -77.157163 ], [ -149.589844, -77.157163 ], [ -149.589844, -77.118032 ], [ -149.414062, -77.118032 ], [ -149.414062, -77.078784 ], [ -149.238281, -77.078784 ], [ -149.238281, -77.039418 ], [ -149.062500, -77.039418 ], [ -149.062500, -76.999935 ], [ -148.886719, -76.999935 ], [ -148.886719, -76.960334 ], [ -148.710938, -76.960334 ], [ -148.710938, -76.920614 ], [ -148.535156, -76.920614 ], [ -148.535156, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.800739 ], [ -148.183594, -76.800739 ], [ -148.183594, -76.720223 ], [ -148.007812, -76.720223 ], [ -148.007812, -76.679785 ], [ -147.832031, -76.679785 ], [ -147.832031, -76.598545 ], [ -147.656250, -76.598545 ], [ -147.656250, -76.557743 ], [ -147.128906, -76.557743 ], [ -147.128906, -76.516819 ], [ -146.425781, -76.516819 ], [ -146.425781, -76.475773 ], [ -146.074219, -76.475773 ], [ -146.074219, -76.016094 ], [ -146.250000, -76.016094 ], [ -146.250000, -75.845169 ], [ -146.425781, -75.845169 ], [ -146.425781, -75.541113 ], [ -146.250000, -75.541113 ], [ -146.250000, -75.364506 ], [ -145.898438, -75.364506 ], [ -145.898438, -75.320025 ], [ -145.546875, -75.320025 ], [ -145.546875, -75.275413 ], [ -145.195312, -75.275413 ], [ -145.195312, -75.230667 ], [ -144.843750, -75.230667 ], [ -144.843750, -75.275413 ], [ -144.667969, -75.275413 ], [ -144.667969, -75.364506 ], [ -144.492188, -75.364506 ], [ -144.492188, -75.497157 ], [ -144.316406, -75.497157 ], [ -144.316406, -75.541113 ], [ -144.140625, -75.541113 ], [ -144.140625, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.453071 ], [ -143.437500, -75.453071 ], [ -143.437500, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.364506 ], [ -142.734375, -75.364506 ], [ -142.734375, -75.320025 ], [ -142.558594, -75.320025 ], [ -142.558594, -75.275413 ], [ -142.382812, -75.275413 ], [ -142.382812, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.185789 ], [ -141.855469, -75.185789 ], [ -141.855469, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.095633 ], [ -140.800781, -75.095633 ], [ -140.800781, -75.050354 ], [ -139.746094, -75.050354 ], [ -139.746094, -75.004940 ], [ -139.042969, -75.004940 ], [ -139.042969, -74.959392 ], [ -138.691406, -74.959392 ], [ -138.691406, -74.913708 ], [ -138.339844, -74.913708 ], [ -138.339844, -74.867889 ], [ -137.988281, -74.867889 ], [ -137.988281, -74.821934 ], [ -137.812500, -74.821934 ], [ -137.812500, -74.775843 ], [ -137.460938, -74.775843 ], [ -137.460938, -74.729615 ], [ -137.285156, -74.729615 ], [ -137.285156, -74.683250 ], [ -137.109375, -74.683250 ], [ -137.109375, -74.636748 ], [ -136.757812, -74.636748 ], [ -136.757812, -74.590108 ], [ -136.582031, -74.590108 ], [ -136.582031, -74.543330 ], [ -136.406250, -74.543330 ], [ -136.406250, -74.496413 ], [ -136.230469, -74.496413 ], [ -136.230469, -74.449358 ], [ -135.878906, -74.449358 ], [ -135.878906, -74.402163 ], [ -135.527344, -74.402163 ], [ -135.527344, -74.354828 ], [ -135.175781, -74.354828 ], [ -135.175781, -74.307353 ], [ -135.000000, -74.307353 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -162.949219, -78.206563 ], [ -162.949219, -78.242436 ], [ -162.597656, -78.242436 ], [ -162.597656, -78.278201 ], [ -162.070312, -78.278201 ], [ -162.070312, -78.313860 ], [ -161.718750, -78.313860 ], [ -161.718750, -78.349411 ], [ -161.367188, -78.349411 ], [ -161.367188, -78.384855 ], [ -161.191406, -78.384855 ], [ -161.191406, -78.455425 ], [ -161.015625, -78.455425 ], [ -161.015625, -78.490552 ], [ -160.839844, -78.490552 ], [ -160.839844, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.595299 ], [ -160.488281, -78.595299 ], [ -160.488281, -78.664608 ], [ -160.312500, -78.664608 ], [ -160.312500, -78.733501 ], [ -160.136719, -78.733501 ], [ -160.136719, -78.836065 ], [ -159.960938, -78.836065 ], [ -159.960938, -78.903929 ], [ -159.785156, -78.903929 ], [ -159.785156, -79.004962 ], [ -159.609375, -79.004962 ], [ -159.609375, -79.204309 ], [ -159.433594, -79.204309 ], [ -159.433594, -79.335219 ], [ -162.421875, -79.335219 ], [ -162.421875, -79.302640 ], [ -162.597656, -79.302640 ], [ -162.597656, -79.237185 ], [ -162.773438, -79.237185 ], [ -162.773438, -79.105086 ], [ -162.949219, -79.105086 ], [ -162.949219, -78.971386 ], [ -163.125000, -78.971386 ], [ -163.125000, -78.836065 ], [ -163.300781, -78.836065 ], [ -163.300781, -78.767792 ], [ -163.476562, -78.767792 ], [ -163.476562, -78.699106 ], [ -163.652344, -78.699106 ], [ -163.652344, -78.630006 ], [ -163.828125, -78.630006 ], [ -163.828125, -78.560488 ], [ -163.652344, -78.560488 ], [ -163.652344, -78.455425 ], [ -163.476562, -78.455425 ], [ -163.476562, -78.384855 ], [ -163.300781, -78.384855 ], [ -163.300781, -78.278201 ], [ -163.125000, -78.278201 ], [ -163.125000, -78.206563 ], [ -162.949219, -78.206563 ] ] ], [ [ [ -135.175781, -74.259738 ], [ -135.175781, -74.307353 ], [ -134.824219, -74.307353 ], [ -134.824219, -74.354828 ], [ -134.121094, -74.354828 ], [ -134.121094, -79.335219 ], [ -150.820312, -79.335219 ], [ -150.820312, -79.302640 ], [ -151.523438, -79.302640 ], [ -151.523438, -79.269962 ], [ -152.050781, -79.269962 ], [ -152.050781, -79.237185 ], [ -152.402344, -79.237185 ], [ -152.402344, -79.204309 ], [ -152.929688, -79.204309 ], [ -152.929688, -79.171335 ], [ -153.281250, -79.171335 ], [ -153.281250, -79.138260 ], [ -153.808594, -79.138260 ], [ -153.808594, -79.105086 ], [ -154.511719, -79.105086 ], [ -154.511719, -79.071812 ], [ -155.214844, -79.071812 ], [ -155.214844, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -79.004962 ], [ -155.566406, -79.004962 ], [ -155.566406, -78.903929 ], [ -155.742188, -78.903929 ], [ -155.742188, -78.836065 ], [ -155.917969, -78.836065 ], [ -155.917969, -78.733501 ], [ -156.093750, -78.733501 ], [ -156.093750, -78.664608 ], [ -156.269531, -78.664608 ], [ -156.269531, -78.630006 ], [ -156.445312, -78.630006 ], [ -156.445312, -78.560488 ], [ -156.621094, -78.560488 ], [ -156.621094, -78.525573 ], [ -156.796875, -78.525573 ], [ -156.796875, -78.490552 ], [ -156.972656, -78.490552 ], [ -156.972656, -78.420193 ], [ -157.148438, -78.420193 ], [ -157.148438, -78.384855 ], [ -157.324219, -78.384855 ], [ -157.324219, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.278201 ], [ -157.675781, -78.278201 ], [ -157.675781, -78.206563 ], [ -157.851562, -78.206563 ], [ -157.851562, -78.134493 ], [ -158.027344, -78.134493 ], [ -158.027344, -78.061989 ], [ -158.203125, -78.061989 ], [ -158.203125, -77.466028 ], [ -158.378906, -77.466028 ], [ -158.378906, -76.920614 ], [ -158.203125, -76.920614 ], [ -158.203125, -76.960334 ], [ -158.027344, -76.960334 ], [ -158.027344, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.039418 ], [ -157.675781, -77.039418 ], [ -157.675781, -77.118032 ], [ -157.500000, -77.118032 ], [ -157.500000, -77.157163 ], [ -157.324219, -77.157163 ], [ -157.324219, -77.196176 ], [ -157.148438, -77.196176 ], [ -157.148438, -77.273855 ], [ -156.445312, -77.273855 ], [ -156.445312, -77.235074 ], [ -155.742188, -77.235074 ], [ -155.742188, -77.196176 ], [ -155.039062, -77.196176 ], [ -155.039062, -77.157163 ], [ -154.687500, -77.157163 ], [ -154.687500, -77.118032 ], [ -154.335938, -77.118032 ], [ -154.335938, -77.078784 ], [ -153.984375, -77.078784 ], [ -153.984375, -77.039418 ], [ -153.808594, -77.039418 ], [ -153.808594, -77.118032 ], [ -153.632812, -77.118032 ], [ -153.632812, -77.196176 ], [ -153.457031, -77.196176 ], [ -153.457031, -77.273855 ], [ -153.281250, -77.273855 ], [ -153.281250, -77.351070 ], [ -153.105469, -77.351070 ], [ -153.105469, -77.427824 ], [ -152.929688, -77.427824 ], [ -152.929688, -77.466028 ], [ -152.402344, -77.466028 ], [ -152.402344, -77.427824 ], [ -151.699219, -77.427824 ], [ -151.699219, -77.389504 ], [ -151.171875, -77.389504 ], [ -151.171875, -77.351070 ], [ -150.996094, -77.351070 ], [ -150.996094, -77.312520 ], [ -150.820312, -77.312520 ], [ -150.820312, -77.273855 ], [ -150.468750, -77.273855 ], [ -150.468750, -77.235074 ], [ -150.292969, -77.235074 ], [ -150.292969, -77.196176 ], [ -150.117188, -77.196176 ], [ -150.117188, -77.157163 ], [ -149.941406, -77.157163 ], [ -149.941406, -77.118032 ], [ -149.765625, -77.118032 ], [ -149.765625, -77.078784 ], [ -149.589844, -77.078784 ], [ -149.589844, -77.039418 ], [ -149.414062, -77.039418 ], [ -149.414062, -76.999935 ], [ -149.238281, -76.999935 ], [ -149.238281, -76.960334 ], [ -149.062500, -76.960334 ], [ -149.062500, -76.920614 ], [ -148.886719, -76.920614 ], [ -148.886719, -76.880775 ], [ -148.710938, -76.880775 ], [ -148.710938, -76.840816 ], [ -148.535156, -76.840816 ], [ -148.535156, -76.800739 ], [ -148.359375, -76.800739 ], [ -148.359375, -76.720223 ], [ -148.183594, -76.720223 ], [ -148.183594, -76.679785 ], [ -148.007812, -76.679785 ], [ -148.007812, -76.639226 ], [ -147.832031, -76.639226 ], [ -147.832031, -76.598545 ], [ -147.656250, -76.598545 ], [ -147.656250, -76.557743 ], [ -147.128906, -76.557743 ], [ -147.128906, -76.516819 ], [ -146.425781, -76.516819 ], [ -146.425781, -76.475773 ], [ -146.250000, -76.475773 ], [ -146.250000, -76.016094 ], [ -146.425781, -76.016094 ], [ -146.425781, -75.845169 ], [ -146.601562, -75.845169 ], [ -146.601562, -75.628632 ], [ -146.425781, -75.628632 ], [ -146.425781, -75.453071 ], [ -146.250000, -75.453071 ], [ -146.250000, -75.364506 ], [ -146.074219, -75.364506 ], [ -146.074219, -75.320025 ], [ -145.722656, -75.320025 ], [ -145.722656, -75.275413 ], [ -145.371094, -75.275413 ], [ -145.371094, -75.230667 ], [ -145.019531, -75.230667 ], [ -145.019531, -75.275413 ], [ -144.843750, -75.275413 ], [ -144.843750, -75.364506 ], [ -144.667969, -75.364506 ], [ -144.667969, -75.453071 ], [ -144.492188, -75.453071 ], [ -144.492188, -75.497157 ], [ -144.140625, -75.497157 ], [ -144.140625, -75.453071 ], [ -143.789062, -75.453071 ], [ -143.789062, -75.408854 ], [ -143.437500, -75.408854 ], [ -143.437500, -75.364506 ], [ -143.085938, -75.364506 ], [ -143.085938, -75.320025 ], [ -142.734375, -75.320025 ], [ -142.734375, -75.275413 ], [ -142.558594, -75.275413 ], [ -142.558594, -75.230667 ], [ -142.382812, -75.230667 ], [ -142.382812, -75.185789 ], [ -142.031250, -75.185789 ], [ -142.031250, -75.140778 ], [ -141.855469, -75.140778 ], [ -141.855469, -75.095633 ], [ -141.679688, -75.095633 ], [ -141.679688, -75.050354 ], [ -139.746094, -75.050354 ], [ -139.746094, -75.004940 ], [ -139.042969, -75.004940 ], [ -139.042969, -74.959392 ], [ -138.691406, -74.959392 ], [ -138.691406, -74.913708 ], [ -138.339844, -74.913708 ], [ -138.339844, -74.867889 ], [ -138.164062, -74.867889 ], [ -138.164062, -74.821934 ], [ -137.988281, -74.821934 ], [ -137.988281, -74.775843 ], [ -137.636719, -74.775843 ], [ -137.636719, -74.729615 ], [ -137.460938, -74.729615 ], [ -137.460938, -74.683250 ], [ -137.285156, -74.683250 ], [ -137.285156, -74.636748 ], [ -136.933594, -74.636748 ], [ -136.933594, -74.590108 ], [ -136.757812, -74.590108 ], [ -136.757812, -74.543330 ], [ -136.582031, -74.543330 ], [ -136.582031, -74.496413 ], [ -136.406250, -74.496413 ], [ -136.406250, -74.449358 ], [ -136.054688, -74.449358 ], [ -136.054688, -74.402163 ], [ -135.878906, -74.402163 ], [ -135.878906, -74.354828 ], [ -135.703125, -74.354828 ], [ -135.703125, -74.307353 ], [ -135.351562, -74.307353 ], [ -135.351562, -74.259738 ], [ -135.175781, -74.259738 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, -16.299051 ], [ -180.000000, -16.636192 ], [ -180.175781, -16.636192 ], [ -180.175781, -16.804541 ], [ -180.878906, -16.804541 ], [ -180.878906, -16.467695 ], [ -180.527344, -16.467695 ], [ -180.527344, -16.299051 ], [ -180.175781, -16.299051 ], [ -180.175781, -16.130262 ], [ -180.000000, -16.130262 ], [ -179.824219, -16.130262 ], [ -179.824219, -16.299051 ], [ -180.000000, -16.299051 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, -16.299051 ], [ -180.000000, -16.467695 ], [ -180.175781, -16.467695 ], [ -180.175781, -16.636192 ], [ -180.703125, -16.636192 ], [ -180.703125, -16.804541 ], [ -180.878906, -16.804541 ], [ -180.878906, -16.299051 ], [ -180.351562, -16.299051 ], [ -180.351562, -16.130262 ], [ -180.000000, -16.130262 ], [ -180.000000, -15.961329 ], [ -179.824219, -15.961329 ], [ -179.824219, -16.299051 ], [ -180.000000, -16.299051 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.742188, 20.303418 ], [ -155.742188, 20.138470 ], [ -155.390625, 20.138470 ], [ -155.390625, 19.973349 ], [ -155.214844, 19.973349 ], [ -155.214844, 19.808054 ], [ -155.039062, 19.808054 ], [ -155.039062, 19.642588 ], [ -154.863281, 19.642588 ], [ -154.863281, 19.311143 ], [ -155.214844, 19.311143 ], [ -155.214844, 19.145168 ], [ -155.566406, 19.145168 ], [ -155.566406, 18.979026 ], [ -155.917969, 18.979026 ], [ -155.917969, 19.476950 ], [ -156.093750, 19.476950 ], [ -156.093750, 19.808054 ], [ -155.917969, 19.808054 ], [ -155.917969, 20.303418 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.269531, 20.797201 ], [ -155.917969, 20.797201 ], [ -155.917969, 20.632784 ], [ -156.621094, 20.632784 ], [ -156.621094, 20.797201 ], [ -156.796875, 20.797201 ], [ -156.796875, 20.961440 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -157.148438, 21.289374 ], [ -157.148438, 21.125498 ], [ -157.324219, 21.125498 ], [ -157.324219, 21.289374 ], [ -157.148438, 21.289374 ] ] ], [ [ [ -158.027344, 21.616579 ], [ -158.027344, 21.453069 ], [ -157.851562, 21.453069 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -158.027344, 21.616579 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.433594, 22.105999 ], [ -159.257812, 22.105999 ], [ -159.257812, 21.943046 ], [ -159.785156, 21.943046 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.390625, 20.138470 ], [ -155.390625, 19.973349 ], [ -155.214844, 19.973349 ], [ -155.214844, 19.808054 ], [ -155.039062, 19.808054 ], [ -155.039062, 19.642588 ], [ -154.863281, 19.642588 ], [ -154.863281, 19.476950 ], [ -155.039062, 19.476950 ], [ -155.039062, 19.311143 ], [ -155.390625, 19.311143 ], [ -155.390625, 19.145168 ], [ -155.566406, 19.145168 ], [ -155.566406, 18.979026 ], [ -156.093750, 18.979026 ], [ -156.093750, 19.311143 ], [ -155.917969, 19.311143 ], [ -155.917969, 19.642588 ], [ -156.093750, 19.642588 ], [ -156.093750, 19.973349 ], [ -155.917969, 19.973349 ], [ -155.917969, 20.138470 ], [ -155.390625, 20.138470 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.269531, 20.797201 ], [ -156.093750, 20.797201 ], [ -156.093750, 20.632784 ], [ -156.621094, 20.632784 ], [ -156.621094, 20.797201 ], [ -156.796875, 20.797201 ], [ -156.796875, 20.961440 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -156.796875, 21.289374 ], [ -156.796875, 21.125498 ], [ -157.324219, 21.125498 ], [ -157.324219, 21.289374 ], [ -156.796875, 21.289374 ] ] ], [ [ [ -157.851562, 21.616579 ], [ -157.851562, 21.453069 ], [ -157.675781, 21.453069 ], [ -157.675781, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.453069 ], [ -158.378906, 21.453069 ], [ -158.378906, 21.616579 ], [ -157.851562, 21.616579 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.433594, 21.943046 ], [ -159.960938, 21.943046 ], [ -159.960938, 22.105999 ], [ -159.785156, 22.105999 ], [ -159.785156, 22.268764 ], [ -159.433594, 22.268764 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.085739 ], [ -134.824219, 59.085739 ], [ -134.824219, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.623325 ], [ -136.054688, 59.623325 ], [ -136.054688, 59.534318 ], [ -136.230469, 59.534318 ], [ -136.230469, 59.445075 ], [ -136.406250, 59.445075 ], [ -136.406250, 59.355596 ], [ -136.582031, 59.355596 ], [ -136.582031, 59.265881 ], [ -136.757812, 59.265881 ], [ -136.757812, 59.175928 ], [ -136.933594, 59.175928 ], [ -136.933594, 59.085739 ], [ -137.109375, 59.085739 ], [ -137.109375, 58.995311 ], [ -137.285156, 58.995311 ], [ -137.285156, 58.904646 ], [ -137.636719, 58.904646 ], [ -137.636719, 59.085739 ], [ -137.812500, 59.085739 ], [ -137.812500, 59.175928 ], [ -137.988281, 59.175928 ], [ -137.988281, 59.265881 ], [ -138.164062, 59.265881 ], [ -138.164062, 59.445075 ], [ -138.339844, 59.445075 ], [ -138.339844, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.623325 ], [ -138.691406, 59.623325 ], [ -138.691406, 59.800634 ], [ -138.867188, 59.800634 ], [ -138.867188, 59.888937 ], [ -139.042969, 59.888937 ], [ -139.042969, 59.977005 ], [ -139.394531, 59.977005 ], [ -139.394531, 60.064840 ], [ -139.746094, 60.064840 ], [ -139.746094, 60.152442 ], [ -140.097656, 60.152442 ], [ -140.097656, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 60.326948 ], [ -140.976562, 60.326948 ], [ -140.976562, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.265881 ], [ -135.000000, 59.265881 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.878906, 59.712097 ], [ -135.878906, 59.623325 ], [ -136.230469, 59.623325 ], [ -136.230469, 59.534318 ], [ -136.582031, 59.534318 ], [ -136.582031, 59.445075 ], [ -136.757812, 59.445075 ], [ -136.757812, 59.265881 ], [ -136.933594, 59.265881 ], [ -136.933594, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 59.085739 ], [ -137.285156, 59.085739 ], [ -137.285156, 58.904646 ], [ -137.636719, 58.904646 ], [ -137.636719, 59.085739 ], [ -137.812500, 59.085739 ], [ -137.812500, 59.265881 ], [ -137.988281, 59.265881 ], [ -137.988281, 59.355596 ], [ -138.164062, 59.355596 ], [ -138.164062, 59.534318 ], [ -138.339844, 59.534318 ], [ -138.339844, 59.623325 ], [ -138.515625, 59.623325 ], [ -138.515625, 59.712097 ], [ -138.691406, 59.712097 ], [ -138.691406, 59.888937 ], [ -138.867188, 59.888937 ], [ -138.867188, 59.977005 ], [ -139.042969, 59.977005 ], [ -139.042969, 60.064840 ], [ -139.394531, 60.064840 ], [ -139.394531, 60.152442 ], [ -139.746094, 60.152442 ], [ -139.746094, 60.239811 ], [ -140.097656, 60.239811 ], [ -140.097656, 60.326948 ], [ -141.152344, 60.326948 ], [ -141.152344, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.976562, 66.861082 ], [ -140.976562, 60.326948 ], [ -140.625000, 60.326948 ], [ -140.625000, 60.239811 ], [ -140.097656, 60.239811 ], [ -140.097656, 60.152442 ], [ -139.746094, 60.152442 ], [ -139.746094, 60.064840 ], [ -139.394531, 60.064840 ], [ -139.394531, 59.977005 ], [ -139.042969, 59.977005 ], [ -139.042969, 59.888937 ], [ -138.867188, 59.888937 ], [ -138.867188, 59.800634 ], [ -138.691406, 59.800634 ], [ -138.691406, 59.623325 ], [ -138.515625, 59.623325 ], [ -138.515625, 59.534318 ], [ -138.339844, 59.534318 ], [ -138.339844, 59.445075 ], [ -138.164062, 59.445075 ], [ -138.164062, 59.265881 ], [ -137.988281, 59.265881 ], [ -137.988281, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 59.085739 ], [ -137.636719, 59.085739 ], [ -137.636719, 58.904646 ], [ -137.285156, 58.904646 ], [ -137.285156, 58.995311 ], [ -137.109375, 58.995311 ], [ -137.109375, 59.085739 ], [ -136.933594, 59.085739 ], [ -136.933594, 59.175928 ], [ -136.757812, 59.175928 ], [ -136.757812, 59.265881 ], [ -136.582031, 59.265881 ], [ -136.582031, 59.355596 ], [ -136.406250, 59.355596 ], [ -136.406250, 59.445075 ], [ -136.230469, 59.445075 ], [ -136.230469, 59.534318 ], [ -136.054688, 59.534318 ], [ -136.054688, 59.623325 ], [ -135.703125, 59.623325 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.085739 ], [ -134.648438, 59.085739 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.170702 ], [ -136.757812, 58.170702 ], [ -136.757812, 58.263287 ], [ -137.109375, 58.263287 ], [ -137.109375, 58.355630 ], [ -137.460938, 58.355630 ], [ -137.460938, 58.447733 ], [ -137.812500, 58.447733 ], [ -137.812500, 58.539595 ], [ -137.988281, 58.539595 ], [ -137.988281, 58.631217 ], [ -138.164062, 58.631217 ], [ -138.164062, 58.722599 ], [ -138.339844, 58.722599 ], [ -138.339844, 58.813742 ], [ -138.515625, 58.813742 ], [ -138.515625, 58.904646 ], [ -138.691406, 58.904646 ], [ -138.691406, 58.995311 ], [ -139.042969, 58.995311 ], [ -139.042969, 59.085739 ], [ -139.218750, 59.085739 ], [ -139.218750, 59.175928 ], [ -139.394531, 59.175928 ], [ -139.394531, 59.265881 ], [ -139.570312, 59.265881 ], [ -139.570312, 59.355596 ], [ -139.746094, 59.355596 ], [ -139.746094, 59.445075 ], [ -139.921875, 59.445075 ], [ -139.921875, 59.534318 ], [ -140.273438, 59.534318 ], [ -140.273438, 59.623325 ], [ -140.625000, 59.623325 ], [ -140.625000, 59.712097 ], [ -141.152344, 59.712097 ], [ -141.152344, 59.800634 ], [ -141.503906, 59.800634 ], [ -141.503906, 59.888937 ], [ -142.031250, 59.888937 ], [ -142.031250, 59.977005 ], [ -142.382812, 59.977005 ], [ -142.382812, 60.064840 ], [ -143.085938, 60.064840 ], [ -143.085938, 59.977005 ], [ -144.140625, 59.977005 ], [ -144.140625, 60.064840 ], [ -144.492188, 60.064840 ], [ -144.492188, 60.152442 ], [ -144.843750, 60.152442 ], [ -144.843750, 60.239811 ], [ -145.195312, 60.239811 ], [ -145.195312, 60.326948 ], [ -145.546875, 60.326948 ], [ -145.546875, 60.413852 ], [ -145.898438, 60.413852 ], [ -145.898438, 60.500525 ], [ -146.074219, 60.500525 ], [ -146.074219, 60.586967 ], [ -146.425781, 60.586967 ], [ -146.425781, 60.673179 ], [ -146.777344, 60.673179 ], [ -146.777344, 60.759160 ], [ -147.128906, 60.759160 ], [ -147.128906, 60.844911 ], [ -147.304688, 60.844911 ], [ -147.304688, 60.759160 ], [ -147.832031, 60.759160 ], [ -147.832031, 60.673179 ], [ -148.183594, 60.673179 ], [ -148.183594, 60.326948 ], [ -148.007812, 60.326948 ], [ -148.007812, 59.977005 ], [ -148.183594, 59.977005 ], [ -148.183594, 59.888937 ], [ -148.710938, 59.888937 ], [ -148.710938, 59.800634 ], [ -149.414062, 59.800634 ], [ -149.414062, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.623325 ], [ -149.941406, 59.623325 ], [ -149.941406, 59.534318 ], [ -150.292969, 59.534318 ], [ -150.292969, 59.445075 ], [ -150.468750, 59.445075 ], [ -150.468750, 59.355596 ], [ -150.820312, 59.355596 ], [ -150.820312, 59.265881 ], [ -151.347656, 59.265881 ], [ -151.347656, 59.175928 ], [ -151.699219, 59.175928 ], [ -151.699219, 59.445075 ], [ -151.875000, 59.445075 ], [ -151.875000, 59.888937 ], [ -151.699219, 59.888937 ], [ -151.699219, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.586967 ], [ -151.347656, 60.586967 ], [ -151.347656, 60.759160 ], [ -150.996094, 60.759160 ], [ -150.996094, 60.844911 ], [ -150.644531, 60.844911 ], [ -150.644531, 60.930432 ], [ -150.292969, 60.930432 ], [ -150.292969, 61.015725 ], [ -150.468750, 61.015725 ], [ -150.468750, 61.185625 ], [ -150.820312, 61.185625 ], [ -150.820312, 61.100789 ], [ -150.996094, 61.100789 ], [ -150.996094, 61.015725 ], [ -151.347656, 61.015725 ], [ -151.347656, 60.930432 ], [ -151.523438, 60.930432 ], [ -151.523438, 60.844911 ], [ -151.699219, 60.844911 ], [ -151.699219, 60.759160 ], [ -151.875000, 60.759160 ], [ -151.875000, 60.673179 ], [ -152.050781, 60.673179 ], [ -152.050781, 60.500525 ], [ -152.226562, 60.500525 ], [ -152.226562, 60.326948 ], [ -152.402344, 60.326948 ], [ -152.402344, 60.152442 ], [ -152.578125, 60.152442 ], [ -152.578125, 59.977005 ], [ -152.753906, 59.977005 ], [ -152.753906, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.800634 ], [ -153.105469, 59.800634 ], [ -153.105469, 59.712097 ], [ -153.281250, 59.712097 ], [ -153.281250, 59.623325 ], [ -153.457031, 59.623325 ], [ -153.457031, 59.534318 ], [ -153.632812, 59.534318 ], [ -153.632812, 59.445075 ], [ -153.808594, 59.445075 ], [ -153.808594, 59.355596 ], [ -153.984375, 59.355596 ], [ -153.984375, 59.265881 ], [ -153.808594, 59.265881 ], [ -153.808594, 59.175928 ], [ -153.632812, 59.175928 ], [ -153.632812, 58.995311 ], [ -153.457031, 58.995311 ], [ -153.457031, 58.904646 ], [ -153.281250, 58.904646 ], [ -153.281250, 58.813742 ], [ -153.457031, 58.813742 ], [ -153.457031, 58.631217 ], [ -153.632812, 58.631217 ], [ -153.632812, 58.539595 ], [ -153.808594, 58.539595 ], [ -153.808594, 58.355630 ], [ -153.984375, 58.355630 ], [ -153.984375, 58.170702 ], [ -154.160156, 58.170702 ], [ -154.160156, 58.077876 ], [ -154.511719, 58.077876 ], [ -154.511719, 57.984808 ], [ -154.687500, 57.984808 ], [ -154.687500, 57.891497 ], [ -154.863281, 57.891497 ], [ -154.863281, 57.797944 ], [ -155.214844, 57.797944 ], [ -155.214844, 57.704147 ], [ -155.390625, 57.704147 ], [ -155.390625, 57.610107 ], [ -155.742188, 57.610107 ], [ -155.742188, 57.515823 ], [ -156.093750, 57.515823 ], [ -156.093750, 57.421294 ], [ -156.269531, 57.421294 ], [ -156.269531, 57.231503 ], [ -156.445312, 57.231503 ], [ -156.445312, 57.040730 ], [ -156.621094, 57.040730 ], [ -156.621094, 56.848972 ], [ -156.972656, 56.848972 ], [ -156.972656, 56.752723 ], [ -157.324219, 56.752723 ], [ -157.324219, 56.656226 ], [ -157.675781, 56.656226 ], [ -157.675781, 56.559482 ], [ -158.027344, 56.559482 ], [ -158.027344, 56.462490 ], [ -158.203125, 56.462490 ], [ -158.203125, 56.170023 ], [ -158.378906, 56.170023 ], [ -158.378906, 55.875311 ], [ -158.730469, 55.875311 ], [ -158.730469, 55.776573 ], [ -159.082031, 55.776573 ], [ -159.082031, 55.677584 ], [ -159.433594, 55.677584 ], [ -159.433594, 55.578345 ], [ -160.136719, 55.578345 ], [ -160.136719, 55.677584 ], [ -160.312500, 55.677584 ], [ -160.312500, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.478853 ], [ -161.015625, 55.478853 ], [ -161.015625, 55.379110 ], [ -161.191406, 55.379110 ], [ -161.191406, 55.279115 ], [ -161.542969, 55.279115 ], [ -161.542969, 55.178868 ], [ -161.718750, 55.178868 ], [ -161.718750, 55.078367 ], [ -162.070312, 55.078367 ], [ -162.070312, 54.977614 ], [ -162.246094, 54.977614 ], [ -162.246094, 54.876607 ], [ -162.597656, 54.876607 ], [ -162.597656, 54.775346 ], [ -162.949219, 54.775346 ], [ -162.949219, 54.673831 ], [ -163.300781, 54.673831 ], [ -163.300781, 54.572062 ], [ -163.828125, 54.572062 ], [ -163.828125, 54.470038 ], [ -164.355469, 54.470038 ], [ -164.355469, 54.367759 ], [ -164.707031, 54.367759 ], [ -164.707031, 54.470038 ], [ -164.882812, 54.470038 ], [ -164.882812, 54.572062 ], [ -164.707031, 54.572062 ], [ -164.707031, 54.673831 ], [ -164.531250, 54.673831 ], [ -164.531250, 54.775346 ], [ -164.179688, 54.775346 ], [ -164.179688, 54.876607 ], [ -164.003906, 54.876607 ], [ -164.003906, 54.977614 ], [ -163.828125, 54.977614 ], [ -163.828125, 55.078367 ], [ -163.652344, 55.078367 ], [ -163.652344, 55.178868 ], [ -163.300781, 55.178868 ], [ -163.300781, 55.279115 ], [ -162.949219, 55.279115 ], [ -162.949219, 55.379110 ], [ -162.773438, 55.379110 ], [ -162.773438, 55.478853 ], [ -162.421875, 55.478853 ], [ -162.421875, 55.578345 ], [ -162.246094, 55.578345 ], [ -162.246094, 55.677584 ], [ -162.070312, 55.677584 ], [ -162.070312, 55.776573 ], [ -161.718750, 55.776573 ], [ -161.718750, 55.875311 ], [ -161.015625, 55.875311 ], [ -161.015625, 55.973798 ], [ -160.488281, 55.973798 ], [ -160.488281, 56.072035 ], [ -160.312500, 56.072035 ], [ -160.312500, 56.267761 ], [ -160.136719, 56.267761 ], [ -160.136719, 56.462490 ], [ -159.960938, 56.462490 ], [ -159.960938, 56.559482 ], [ -159.609375, 56.559482 ], [ -159.609375, 56.656226 ], [ -159.433594, 56.656226 ], [ -159.433594, 56.752723 ], [ -159.257812, 56.752723 ], [ -159.257812, 56.848972 ], [ -158.906250, 56.848972 ], [ -158.906250, 56.944974 ], [ -158.730469, 56.944974 ], [ -158.730469, 57.040730 ], [ -158.554688, 57.040730 ], [ -158.554688, 57.136239 ], [ -158.378906, 57.136239 ], [ -158.378906, 57.231503 ], [ -158.203125, 57.231503 ], [ -158.203125, 57.326521 ], [ -158.027344, 57.326521 ], [ -158.027344, 57.421294 ], [ -157.851562, 57.421294 ], [ -157.851562, 57.515823 ], [ -157.675781, 57.515823 ], [ -157.675781, 57.984808 ], [ -157.500000, 57.984808 ], [ -157.500000, 58.447733 ], [ -157.324219, 58.447733 ], [ -157.324219, 58.631217 ], [ -157.148438, 58.631217 ], [ -157.148438, 58.813742 ], [ -157.500000, 58.813742 ], [ -157.500000, 58.722599 ], [ -157.851562, 58.722599 ], [ -157.851562, 58.631217 ], [ -158.378906, 58.631217 ], [ -158.378906, 58.722599 ], [ -158.730469, 58.722599 ], [ -158.730469, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.539595 ], [ -159.433594, 58.539595 ], [ -159.433594, 58.722599 ], [ -159.609375, 58.722599 ], [ -159.609375, 58.813742 ], [ -159.785156, 58.813742 ], [ -159.785156, 58.722599 ], [ -159.960938, 58.722599 ], [ -159.960938, 58.631217 ], [ -160.136719, 58.631217 ], [ -160.136719, 58.904646 ], [ -160.312500, 58.904646 ], [ -160.312500, 58.995311 ], [ -160.488281, 58.995311 ], [ -160.488281, 58.904646 ], [ -160.664062, 58.904646 ], [ -160.664062, 58.813742 ], [ -161.015625, 58.813742 ], [ -161.015625, 58.722599 ], [ -161.191406, 58.722599 ], [ -161.191406, 58.631217 ], [ -161.894531, 58.631217 ], [ -161.894531, 58.904646 ], [ -162.070312, 58.904646 ], [ -162.070312, 59.445075 ], [ -161.894531, 59.445075 ], [ -161.894531, 59.623325 ], [ -162.070312, 59.623325 ], [ -162.070312, 59.712097 ], [ -162.246094, 59.712097 ], [ -162.246094, 59.800634 ], [ -162.421875, 59.800634 ], [ -162.421875, 59.888937 ], [ -162.597656, 59.888937 ], [ -162.597656, 59.977005 ], [ -162.773438, 59.977005 ], [ -162.773438, 59.888937 ], [ -163.476562, 59.888937 ], [ -163.476562, 59.800634 ], [ -164.003906, 59.800634 ], [ -164.003906, 59.888937 ], [ -164.179688, 59.888937 ], [ -164.179688, 59.977005 ], [ -164.355469, 59.977005 ], [ -164.355469, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.152442 ], [ -164.707031, 60.152442 ], [ -164.707031, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.326948 ], [ -165.234375, 60.326948 ], [ -165.234375, 60.413852 ], [ -165.410156, 60.413852 ], [ -165.410156, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.185625 ], [ -165.761719, 61.185625 ], [ -165.761719, 61.354614 ], [ -165.937500, 61.354614 ], [ -165.937500, 61.438767 ], [ -166.113281, 61.438767 ], [ -166.113281, 61.606396 ], [ -165.937500, 61.606396 ], [ -165.937500, 61.938950 ], [ -165.761719, 61.938950 ], [ -165.761719, 62.103883 ], [ -165.585938, 62.103883 ], [ -165.585938, 62.186014 ], [ -165.410156, 62.186014 ], [ -165.410156, 62.349609 ], [ -165.234375, 62.349609 ], [ -165.234375, 62.431074 ], [ -165.058594, 62.431074 ], [ -165.058594, 62.512318 ], [ -164.882812, 62.512318 ], [ -164.882812, 62.674143 ], [ -164.707031, 62.674143 ], [ -164.707031, 62.995158 ], [ -164.531250, 62.995158 ], [ -164.531250, 63.154355 ], [ -164.003906, 63.154355 ], [ -164.003906, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 63.154355 ], [ -163.476562, 63.154355 ], [ -163.476562, 63.074866 ], [ -162.949219, 63.074866 ], [ -162.949219, 63.154355 ], [ -162.773438, 63.154355 ], [ -162.773438, 63.312683 ], [ -162.597656, 63.312683 ], [ -162.597656, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.470145 ], [ -162.246094, 63.470145 ], [ -162.246094, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.470145 ], [ -161.367188, 63.470145 ], [ -161.367188, 63.548552 ], [ -161.191406, 63.548552 ], [ -161.191406, 63.626745 ], [ -161.015625, 63.626745 ], [ -161.015625, 63.704722 ], [ -160.839844, 63.704722 ], [ -160.839844, 64.014496 ], [ -161.015625, 64.014496 ], [ -161.015625, 64.244595 ], [ -161.191406, 64.244595 ], [ -161.191406, 64.320872 ], [ -161.542969, 64.320872 ], [ -161.542969, 64.396938 ], [ -161.367188, 64.396938 ], [ -161.367188, 64.472794 ], [ -161.191406, 64.472794 ], [ -161.191406, 64.623877 ], [ -161.015625, 64.623877 ], [ -161.015625, 64.699105 ], [ -160.839844, 64.699105 ], [ -160.839844, 64.774125 ], [ -161.367188, 64.774125 ], [ -161.367188, 64.699105 ], [ -161.718750, 64.699105 ], [ -161.718750, 64.623877 ], [ -162.070312, 64.623877 ], [ -162.070312, 64.548440 ], [ -162.421875, 64.548440 ], [ -162.421875, 64.472794 ], [ -162.597656, 64.472794 ], [ -162.597656, 64.320872 ], [ -162.949219, 64.320872 ], [ -162.949219, 64.396938 ], [ -163.300781, 64.396938 ], [ -163.300781, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.548440 ], [ -164.003906, 64.548440 ], [ -164.003906, 64.472794 ], [ -165.234375, 64.472794 ], [ -165.234375, 64.548440 ], [ -165.761719, 64.548440 ], [ -165.761719, 64.623877 ], [ -166.289062, 64.623877 ], [ -166.289062, 64.699105 ], [ -166.464844, 64.699105 ], [ -166.464844, 64.774125 ], [ -166.640625, 64.774125 ], [ -166.640625, 64.923542 ], [ -166.816406, 64.923542 ], [ -166.816406, 65.072130 ], [ -166.992188, 65.072130 ], [ -166.992188, 65.146115 ], [ -167.167969, 65.146115 ], [ -167.167969, 65.219894 ], [ -167.343750, 65.219894 ], [ -167.343750, 65.366837 ], [ -167.519531, 65.366837 ], [ -167.519531, 65.440002 ], [ -167.695312, 65.440002 ], [ -167.695312, 65.512963 ], [ -167.871094, 65.512963 ], [ -167.871094, 65.585720 ], [ -168.046875, 65.585720 ], [ -168.046875, 65.658275 ], [ -167.871094, 65.658275 ], [ -167.871094, 65.730626 ], [ -167.519531, 65.730626 ], [ -167.519531, 65.802776 ], [ -167.343750, 65.802776 ], [ -167.343750, 65.874725 ], [ -167.167969, 65.874725 ], [ -167.167969, 65.946472 ], [ -166.816406, 65.946472 ], [ -166.816406, 66.018018 ], [ -166.640625, 66.018018 ], [ -166.640625, 66.089364 ], [ -166.464844, 66.089364 ], [ -166.464844, 66.160511 ], [ -166.113281, 66.160511 ], [ -166.113281, 66.231457 ], [ -165.761719, 66.231457 ], [ -165.761719, 66.302205 ], [ -165.410156, 66.302205 ], [ -165.410156, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.652344, 66.302205 ], [ -163.828125, 66.302205 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.160511 ], [ -161.894531, 66.160511 ], [ -161.894531, 66.302205 ], [ -162.070312, 66.302205 ], [ -162.070312, 66.443107 ], [ -162.246094, 66.443107 ], [ -162.246094, 66.583217 ], [ -162.421875, 66.583217 ], [ -162.421875, 66.722541 ], [ -162.597656, 66.722541 ], [ -162.597656, 66.791909 ], [ -162.949219, 66.791909 ], [ -162.949219, 66.861082 ], [ -140.976562, 66.861082 ] ], [ [ -157.148438, 58.904646 ], [ -157.148438, 58.813742 ], [ -156.972656, 58.813742 ], [ -156.972656, 58.904646 ], [ -157.148438, 58.904646 ] ] ], [ [ [ -153.105469, 57.984808 ], [ -153.105469, 57.891497 ], [ -152.578125, 57.891497 ], [ -152.578125, 57.797944 ], [ -152.402344, 57.797944 ], [ -152.402344, 57.610107 ], [ -152.226562, 57.610107 ], [ -152.226562, 57.515823 ], [ -152.402344, 57.515823 ], [ -152.402344, 57.421294 ], [ -152.578125, 57.421294 ], [ -152.578125, 57.231503 ], [ -152.753906, 57.231503 ], [ -152.753906, 57.136239 ], [ -152.929688, 57.136239 ], [ -152.929688, 57.040730 ], [ -153.281250, 57.040730 ], [ -153.281250, 56.944974 ], [ -153.457031, 56.944974 ], [ -153.457031, 56.848972 ], [ -153.808594, 56.848972 ], [ -153.808594, 56.752723 ], [ -154.160156, 56.752723 ], [ -154.160156, 56.848972 ], [ -154.511719, 56.848972 ], [ -154.511719, 57.136239 ], [ -154.687500, 57.136239 ], [ -154.687500, 57.421294 ], [ -154.511719, 57.421294 ], [ -154.511719, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.610107 ], [ -153.984375, 57.610107 ], [ -153.984375, 57.704147 ], [ -153.808594, 57.704147 ], [ -153.808594, 57.797944 ], [ -153.632812, 57.797944 ], [ -153.632812, 57.891497 ], [ -153.281250, 57.891497 ], [ -153.281250, 57.984808 ], [ -153.105469, 57.984808 ] ] ], [ [ [ -170.507812, 63.704722 ], [ -170.507812, 63.626745 ], [ -170.156250, 63.626745 ], [ -170.156250, 63.548552 ], [ -169.804688, 63.548552 ], [ -169.804688, 63.470145 ], [ -169.453125, 63.470145 ], [ -169.453125, 63.391522 ], [ -169.101562, 63.391522 ], [ -169.101562, 63.312683 ], [ -168.750000, 63.312683 ], [ -168.750000, 63.074866 ], [ -169.101562, 63.074866 ], [ -169.101562, 62.995158 ], [ -169.628906, 62.995158 ], [ -169.628906, 63.074866 ], [ -169.980469, 63.074866 ], [ -169.980469, 63.154355 ], [ -170.332031, 63.154355 ], [ -170.332031, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.312683 ], [ -170.683594, 63.312683 ], [ -170.683594, 63.391522 ], [ -171.035156, 63.391522 ], [ -171.035156, 63.312683 ], [ -171.738281, 63.312683 ], [ -171.738281, 63.704722 ], [ -171.386719, 63.704722 ], [ -171.386719, 63.626745 ], [ -170.683594, 63.626745 ], [ -170.683594, 63.704722 ], [ -170.507812, 63.704722 ] ] ], [ [ [ -166.289062, 60.413852 ], [ -166.289062, 60.326948 ], [ -165.761719, 60.326948 ], [ -165.761719, 60.064840 ], [ -165.585938, 60.064840 ], [ -165.585938, 59.800634 ], [ -165.937500, 59.800634 ], [ -165.937500, 59.712097 ], [ -166.289062, 59.712097 ], [ -166.289062, 59.800634 ], [ -166.640625, 59.800634 ], [ -166.640625, 59.888937 ], [ -166.816406, 59.888937 ], [ -166.816406, 59.977005 ], [ -166.992188, 59.977005 ], [ -166.992188, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.152442 ], [ -167.519531, 60.152442 ], [ -167.519531, 60.239811 ], [ -167.167969, 60.239811 ], [ -167.167969, 60.326948 ], [ -166.640625, 60.326948 ], [ -166.640625, 60.413852 ], [ -166.289062, 60.413852 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -141.152344, 66.861082 ], [ -141.152344, 60.326948 ], [ -140.097656, 60.326948 ], [ -140.097656, 60.239811 ], [ -139.746094, 60.239811 ], [ -139.746094, 60.152442 ], [ -139.394531, 60.152442 ], [ -139.394531, 60.064840 ], [ -139.042969, 60.064840 ], [ -139.042969, 59.977005 ], [ -138.867188, 59.977005 ], [ -138.867188, 59.888937 ], [ -138.691406, 59.888937 ], [ -138.691406, 59.712097 ], [ -138.515625, 59.712097 ], [ -138.515625, 59.623325 ], [ -138.339844, 59.623325 ], [ -138.339844, 59.534318 ], [ -138.164062, 59.534318 ], [ -138.164062, 59.355596 ], [ -137.988281, 59.355596 ], [ -137.988281, 59.265881 ], [ -137.812500, 59.265881 ], [ -137.812500, 59.085739 ], [ -137.636719, 59.085739 ], [ -137.636719, 58.904646 ], [ -137.285156, 58.904646 ], [ -137.285156, 59.085739 ], [ -137.109375, 59.085739 ], [ -137.109375, 59.175928 ], [ -136.933594, 59.175928 ], [ -136.933594, 59.265881 ], [ -136.757812, 59.265881 ], [ -136.757812, 59.445075 ], [ -136.582031, 59.445075 ], [ -136.582031, 59.534318 ], [ -136.230469, 59.534318 ], [ -136.230469, 59.623325 ], [ -135.878906, 59.623325 ], [ -135.878906, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.265881 ], [ -134.824219, 59.265881 ], [ -134.824219, 59.175928 ], [ -134.648438, 59.175928 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.170702 ], [ -134.824219, 58.170702 ], [ -134.824219, 58.263287 ], [ -137.109375, 58.263287 ], [ -137.109375, 58.355630 ], [ -137.460938, 58.355630 ], [ -137.460938, 58.447733 ], [ -137.812500, 58.447733 ], [ -137.812500, 58.539595 ], [ -137.988281, 58.539595 ], [ -137.988281, 58.631217 ], [ -138.164062, 58.631217 ], [ -138.164062, 58.722599 ], [ -138.339844, 58.722599 ], [ -138.339844, 58.813742 ], [ -138.515625, 58.813742 ], [ -138.515625, 58.904646 ], [ -138.691406, 58.904646 ], [ -138.691406, 58.995311 ], [ -138.867188, 58.995311 ], [ -138.867188, 59.085739 ], [ -139.042969, 59.085739 ], [ -139.042969, 59.175928 ], [ -139.218750, 59.175928 ], [ -139.218750, 59.265881 ], [ -139.394531, 59.265881 ], [ -139.394531, 59.355596 ], [ -139.570312, 59.355596 ], [ -139.570312, 59.445075 ], [ -139.746094, 59.445075 ], [ -139.746094, 59.534318 ], [ -139.921875, 59.534318 ], [ -139.921875, 59.623325 ], [ -140.273438, 59.623325 ], [ -140.273438, 59.712097 ], [ -140.800781, 59.712097 ], [ -140.800781, 59.800634 ], [ -141.328125, 59.800634 ], [ -141.328125, 59.888937 ], [ -141.679688, 59.888937 ], [ -141.679688, 59.977005 ], [ -142.207031, 59.977005 ], [ -142.207031, 60.064840 ], [ -142.558594, 60.064840 ], [ -142.558594, 60.152442 ], [ -143.261719, 60.152442 ], [ -143.261719, 60.064840 ], [ -144.316406, 60.064840 ], [ -144.316406, 60.152442 ], [ -144.667969, 60.152442 ], [ -144.667969, 60.239811 ], [ -145.195312, 60.239811 ], [ -145.195312, 60.326948 ], [ -145.546875, 60.326948 ], [ -145.546875, 60.413852 ], [ -145.898438, 60.413852 ], [ -145.898438, 60.500525 ], [ -146.250000, 60.500525 ], [ -146.250000, 60.586967 ], [ -146.425781, 60.586967 ], [ -146.425781, 60.673179 ], [ -146.777344, 60.673179 ], [ -146.777344, 60.759160 ], [ -146.953125, 60.759160 ], [ -146.953125, 60.844911 ], [ -147.128906, 60.844911 ], [ -147.128906, 60.930432 ], [ -147.304688, 60.930432 ], [ -147.304688, 60.844911 ], [ -147.656250, 60.844911 ], [ -147.656250, 60.759160 ], [ -148.007812, 60.759160 ], [ -148.007812, 60.673179 ], [ -148.359375, 60.673179 ], [ -148.359375, 60.326948 ], [ -148.183594, 60.326948 ], [ -148.183594, 59.977005 ], [ -148.710938, 59.977005 ], [ -148.710938, 59.888937 ], [ -149.062500, 59.888937 ], [ -149.062500, 59.800634 ], [ -149.414062, 59.800634 ], [ -149.414062, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.623325 ], [ -150.117188, 59.623325 ], [ -150.117188, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 59.445075 ], [ -150.820312, 59.445075 ], [ -150.820312, 59.355596 ], [ -151.171875, 59.355596 ], [ -151.171875, 59.265881 ], [ -151.523438, 59.265881 ], [ -151.523438, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 59.977005 ], [ -151.699219, 59.977005 ], [ -151.699219, 60.500525 ], [ -151.523438, 60.500525 ], [ -151.523438, 60.759160 ], [ -151.347656, 60.759160 ], [ -151.347656, 60.844911 ], [ -150.996094, 60.844911 ], [ -150.996094, 60.930432 ], [ -150.820312, 60.930432 ], [ -150.820312, 61.015725 ], [ -150.468750, 61.015725 ], [ -150.468750, 61.185625 ], [ -150.644531, 61.185625 ], [ -150.644531, 61.270233 ], [ -150.820312, 61.270233 ], [ -150.820312, 61.185625 ], [ -150.996094, 61.185625 ], [ -150.996094, 61.100789 ], [ -151.171875, 61.100789 ], [ -151.171875, 61.015725 ], [ -151.523438, 61.015725 ], [ -151.523438, 60.930432 ], [ -151.699219, 60.930432 ], [ -151.699219, 60.844911 ], [ -151.875000, 60.844911 ], [ -151.875000, 60.759160 ], [ -152.050781, 60.759160 ], [ -152.050781, 60.586967 ], [ -152.226562, 60.586967 ], [ -152.226562, 60.413852 ], [ -152.402344, 60.413852 ], [ -152.402344, 60.152442 ], [ -152.578125, 60.152442 ], [ -152.578125, 59.977005 ], [ -152.753906, 59.977005 ], [ -152.753906, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.800634 ], [ -153.105469, 59.800634 ], [ -153.105469, 59.712097 ], [ -153.457031, 59.712097 ], [ -153.457031, 59.623325 ], [ -153.632812, 59.623325 ], [ -153.632812, 59.534318 ], [ -153.808594, 59.534318 ], [ -153.808594, 59.445075 ], [ -153.984375, 59.445075 ], [ -153.984375, 59.355596 ], [ -154.160156, 59.355596 ], [ -154.160156, 59.265881 ], [ -153.984375, 59.265881 ], [ -153.984375, 59.175928 ], [ -153.808594, 59.175928 ], [ -153.808594, 58.995311 ], [ -153.632812, 58.995311 ], [ -153.632812, 58.904646 ], [ -153.457031, 58.904646 ], [ -153.457031, 58.813742 ], [ -153.632812, 58.813742 ], [ -153.632812, 58.631217 ], [ -153.808594, 58.631217 ], [ -153.808594, 58.539595 ], [ -153.984375, 58.539595 ], [ -153.984375, 58.355630 ], [ -154.160156, 58.355630 ], [ -154.160156, 58.170702 ], [ -154.335938, 58.170702 ], [ -154.335938, 58.077876 ], [ -154.687500, 58.077876 ], [ -154.687500, 57.984808 ], [ -154.863281, 57.984808 ], [ -154.863281, 57.891497 ], [ -155.214844, 57.891497 ], [ -155.214844, 57.797944 ], [ -155.390625, 57.797944 ], [ -155.390625, 57.704147 ], [ -155.742188, 57.704147 ], [ -155.742188, 57.610107 ], [ -156.093750, 57.610107 ], [ -156.093750, 57.515823 ], [ -156.445312, 57.515823 ], [ -156.445312, 57.231503 ], [ -156.621094, 57.231503 ], [ -156.621094, 56.944974 ], [ -156.972656, 56.944974 ], [ -156.972656, 56.848972 ], [ -157.148438, 56.848972 ], [ -157.148438, 56.752723 ], [ -157.500000, 56.752723 ], [ -157.500000, 56.656226 ], [ -157.675781, 56.656226 ], [ -157.675781, 56.559482 ], [ -158.027344, 56.559482 ], [ -158.027344, 56.462490 ], [ -158.203125, 56.462490 ], [ -158.203125, 56.365250 ], [ -158.378906, 56.365250 ], [ -158.378906, 56.170023 ], [ -158.554688, 56.170023 ], [ -158.554688, 55.973798 ], [ -158.730469, 55.973798 ], [ -158.730469, 55.875311 ], [ -158.906250, 55.875311 ], [ -158.906250, 55.776573 ], [ -159.257812, 55.776573 ], [ -159.257812, 55.677584 ], [ -159.433594, 55.677584 ], [ -159.433594, 55.578345 ], [ -160.136719, 55.578345 ], [ -160.136719, 55.677584 ], [ -160.312500, 55.677584 ], [ -160.312500, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.478853 ], [ -161.015625, 55.478853 ], [ -161.015625, 55.379110 ], [ -161.367188, 55.379110 ], [ -161.367188, 55.279115 ], [ -161.718750, 55.279115 ], [ -161.718750, 55.178868 ], [ -162.070312, 55.178868 ], [ -162.070312, 55.078367 ], [ -162.246094, 55.078367 ], [ -162.246094, 54.977614 ], [ -162.597656, 54.977614 ], [ -162.597656, 54.876607 ], [ -162.949219, 54.876607 ], [ -162.949219, 54.775346 ], [ -163.300781, 54.775346 ], [ -163.300781, 54.673831 ], [ -163.828125, 54.673831 ], [ -163.828125, 54.572062 ], [ -164.531250, 54.572062 ], [ -164.531250, 54.470038 ], [ -165.058594, 54.470038 ], [ -165.058594, 54.572062 ], [ -164.882812, 54.572062 ], [ -164.882812, 54.673831 ], [ -164.707031, 54.673831 ], [ -164.707031, 54.775346 ], [ -164.355469, 54.775346 ], [ -164.355469, 54.876607 ], [ -164.179688, 54.876607 ], [ -164.179688, 54.977614 ], [ -164.003906, 54.977614 ], [ -164.003906, 55.078367 ], [ -163.652344, 55.078367 ], [ -163.652344, 55.178868 ], [ -163.300781, 55.178868 ], [ -163.300781, 55.279115 ], [ -162.949219, 55.279115 ], [ -162.949219, 55.379110 ], [ -162.773438, 55.379110 ], [ -162.773438, 55.478853 ], [ -162.597656, 55.478853 ], [ -162.597656, 55.578345 ], [ -162.421875, 55.578345 ], [ -162.421875, 55.677584 ], [ -162.246094, 55.677584 ], [ -162.246094, 55.776573 ], [ -162.070312, 55.776573 ], [ -162.070312, 55.875311 ], [ -161.894531, 55.875311 ], [ -161.894531, 55.973798 ], [ -161.191406, 55.973798 ], [ -161.191406, 56.072035 ], [ -160.488281, 56.072035 ], [ -160.488281, 56.267761 ], [ -160.312500, 56.267761 ], [ -160.312500, 56.365250 ], [ -160.136719, 56.365250 ], [ -160.136719, 56.462490 ], [ -159.960938, 56.462490 ], [ -159.960938, 56.559482 ], [ -159.609375, 56.559482 ], [ -159.609375, 56.656226 ], [ -159.433594, 56.656226 ], [ -159.433594, 56.752723 ], [ -159.257812, 56.752723 ], [ -159.257812, 56.848972 ], [ -158.906250, 56.848972 ], [ -158.906250, 56.944974 ], [ -158.730469, 56.944974 ], [ -158.730469, 57.136239 ], [ -158.554688, 57.136239 ], [ -158.554688, 57.231503 ], [ -158.378906, 57.231503 ], [ -158.378906, 57.326521 ], [ -158.203125, 57.326521 ], [ -158.203125, 57.421294 ], [ -158.027344, 57.421294 ], [ -158.027344, 57.515823 ], [ -157.851562, 57.515823 ], [ -157.851562, 57.984808 ], [ -157.675781, 57.984808 ], [ -157.675781, 58.447733 ], [ -157.500000, 58.447733 ], [ -157.500000, 58.631217 ], [ -157.324219, 58.631217 ], [ -157.324219, 58.813742 ], [ -157.148438, 58.813742 ], [ -157.148438, 58.904646 ], [ -157.500000, 58.904646 ], [ -157.500000, 58.813742 ], [ -157.675781, 58.813742 ], [ -157.675781, 58.722599 ], [ -158.027344, 58.722599 ], [ -158.027344, 58.631217 ], [ -158.378906, 58.631217 ], [ -158.378906, 58.722599 ], [ -158.730469, 58.722599 ], [ -158.730469, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.631217 ], [ -159.433594, 58.631217 ], [ -159.433594, 58.722599 ], [ -159.609375, 58.722599 ], [ -159.609375, 58.904646 ], [ -159.960938, 58.904646 ], [ -159.960938, 58.722599 ], [ -160.312500, 58.722599 ], [ -160.312500, 58.904646 ], [ -160.488281, 58.904646 ], [ -160.488281, 58.995311 ], [ -160.664062, 58.995311 ], [ -160.664062, 58.904646 ], [ -161.015625, 58.904646 ], [ -161.015625, 58.813742 ], [ -161.191406, 58.813742 ], [ -161.191406, 58.722599 ], [ -162.070312, 58.722599 ], [ -162.070312, 59.445075 ], [ -161.894531, 59.445075 ], [ -161.894531, 59.712097 ], [ -162.070312, 59.712097 ], [ -162.070312, 59.800634 ], [ -162.246094, 59.800634 ], [ -162.246094, 59.888937 ], [ -162.421875, 59.888937 ], [ -162.421875, 59.977005 ], [ -162.597656, 59.977005 ], [ -162.597656, 60.064840 ], [ -162.773438, 60.064840 ], [ -162.773438, 59.977005 ], [ -163.125000, 59.977005 ], [ -163.125000, 59.888937 ], [ -163.476562, 59.888937 ], [ -163.476562, 59.800634 ], [ -164.003906, 59.800634 ], [ -164.003906, 59.888937 ], [ -164.179688, 59.888937 ], [ -164.179688, 60.064840 ], [ -164.355469, 60.064840 ], [ -164.355469, 60.152442 ], [ -164.531250, 60.152442 ], [ -164.531250, 60.239811 ], [ -164.707031, 60.239811 ], [ -164.707031, 60.326948 ], [ -164.882812, 60.326948 ], [ -164.882812, 60.413852 ], [ -165.234375, 60.413852 ], [ -165.234375, 60.500525 ], [ -165.410156, 60.500525 ], [ -165.410156, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.185625 ], [ -165.761719, 61.185625 ], [ -165.761719, 61.270233 ], [ -165.937500, 61.270233 ], [ -165.937500, 61.354614 ], [ -166.113281, 61.354614 ], [ -166.113281, 61.438767 ], [ -166.289062, 61.438767 ], [ -166.289062, 61.606396 ], [ -166.113281, 61.606396 ], [ -166.113281, 61.773123 ], [ -165.937500, 61.773123 ], [ -165.937500, 61.938950 ], [ -165.761719, 61.938950 ], [ -165.761719, 62.103883 ], [ -165.585938, 62.103883 ], [ -165.585938, 62.267923 ], [ -165.410156, 62.267923 ], [ -165.410156, 62.431074 ], [ -165.234375, 62.431074 ], [ -165.234375, 62.593341 ], [ -165.058594, 62.593341 ], [ -165.058594, 62.754726 ], [ -164.882812, 62.754726 ], [ -164.882812, 62.995158 ], [ -164.707031, 62.995158 ], [ -164.707031, 63.154355 ], [ -164.179688, 63.154355 ], [ -164.179688, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 63.154355 ], [ -163.476562, 63.154355 ], [ -163.476562, 63.074866 ], [ -162.949219, 63.074866 ], [ -162.949219, 63.233627 ], [ -162.773438, 63.233627 ], [ -162.773438, 63.312683 ], [ -162.597656, 63.312683 ], [ -162.597656, 63.470145 ], [ -162.421875, 63.470145 ], [ -162.421875, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.470145 ], [ -161.367188, 63.470145 ], [ -161.367188, 63.548552 ], [ -161.191406, 63.548552 ], [ -161.191406, 63.626745 ], [ -161.015625, 63.626745 ], [ -161.015625, 63.704722 ], [ -160.839844, 63.704722 ], [ -160.839844, 64.014496 ], [ -161.015625, 64.014496 ], [ -161.015625, 64.244595 ], [ -161.191406, 64.244595 ], [ -161.191406, 64.320872 ], [ -161.367188, 64.320872 ], [ -161.367188, 64.396938 ], [ -161.542969, 64.396938 ], [ -161.542969, 64.472794 ], [ -161.367188, 64.472794 ], [ -161.367188, 64.548440 ], [ -161.191406, 64.548440 ], [ -161.191406, 64.699105 ], [ -161.015625, 64.699105 ], [ -161.015625, 64.774125 ], [ -160.839844, 64.774125 ], [ -160.839844, 64.848937 ], [ -161.542969, 64.848937 ], [ -161.542969, 64.774125 ], [ -161.894531, 64.774125 ], [ -161.894531, 64.699105 ], [ -162.246094, 64.699105 ], [ -162.246094, 64.623877 ], [ -162.597656, 64.623877 ], [ -162.597656, 64.472794 ], [ -162.773438, 64.472794 ], [ -162.773438, 64.396938 ], [ -162.949219, 64.396938 ], [ -162.949219, 64.472794 ], [ -163.300781, 64.472794 ], [ -163.300781, 64.548440 ], [ -163.652344, 64.548440 ], [ -163.652344, 64.623877 ], [ -163.828125, 64.623877 ], [ -163.828125, 64.548440 ], [ -164.531250, 64.548440 ], [ -164.531250, 64.472794 ], [ -165.410156, 64.472794 ], [ -165.410156, 64.548440 ], [ -165.937500, 64.548440 ], [ -165.937500, 64.623877 ], [ -166.289062, 64.623877 ], [ -166.289062, 64.699105 ], [ -166.464844, 64.699105 ], [ -166.464844, 64.774125 ], [ -166.640625, 64.774125 ], [ -166.640625, 64.923542 ], [ -166.816406, 64.923542 ], [ -166.816406, 65.072130 ], [ -166.992188, 65.072130 ], [ -166.992188, 65.146115 ], [ -167.167969, 65.146115 ], [ -167.167969, 65.219894 ], [ -167.343750, 65.219894 ], [ -167.343750, 65.293468 ], [ -167.519531, 65.293468 ], [ -167.519531, 65.440002 ], [ -167.695312, 65.440002 ], [ -167.695312, 65.512963 ], [ -167.871094, 65.512963 ], [ -167.871094, 65.585720 ], [ -168.046875, 65.585720 ], [ -168.046875, 65.658275 ], [ -168.222656, 65.658275 ], [ -168.222656, 65.730626 ], [ -168.046875, 65.730626 ], [ -168.046875, 65.802776 ], [ -167.695312, 65.802776 ], [ -167.695312, 65.874725 ], [ -167.343750, 65.874725 ], [ -167.343750, 65.946472 ], [ -167.167969, 65.946472 ], [ -167.167969, 66.018018 ], [ -166.816406, 66.018018 ], [ -166.816406, 66.089364 ], [ -166.640625, 66.089364 ], [ -166.640625, 66.160511 ], [ -166.289062, 66.160511 ], [ -166.289062, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.302205 ], [ -165.585938, 66.302205 ], [ -165.585938, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.652344, 66.302205 ], [ -163.828125, 66.302205 ], [ -163.828125, 66.089364 ], [ -162.597656, 66.089364 ], [ -162.597656, 66.160511 ], [ -161.894531, 66.160511 ], [ -161.894531, 66.302205 ], [ -162.070312, 66.302205 ], [ -162.070312, 66.443107 ], [ -162.246094, 66.443107 ], [ -162.246094, 66.583217 ], [ -162.421875, 66.583217 ], [ -162.421875, 66.722541 ], [ -162.597656, 66.722541 ], [ -162.597656, 66.791909 ], [ -162.949219, 66.791909 ], [ -162.949219, 66.861082 ], [ -141.152344, 66.861082 ] ] ], [ [ [ -152.578125, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.402344, 57.891497 ], [ -152.402344, 57.704147 ], [ -152.226562, 57.704147 ], [ -152.226562, 57.515823 ], [ -152.402344, 57.515823 ], [ -152.402344, 57.421294 ], [ -152.578125, 57.421294 ], [ -152.578125, 57.326521 ], [ -152.753906, 57.326521 ], [ -152.753906, 57.231503 ], [ -152.929688, 57.231503 ], [ -152.929688, 57.136239 ], [ -153.105469, 57.136239 ], [ -153.105469, 57.040730 ], [ -153.457031, 57.040730 ], [ -153.457031, 56.944974 ], [ -153.632812, 56.944974 ], [ -153.632812, 56.848972 ], [ -153.984375, 56.848972 ], [ -153.984375, 56.752723 ], [ -154.335938, 56.752723 ], [ -154.335938, 56.848972 ], [ -154.511719, 56.848972 ], [ -154.511719, 56.944974 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.515823 ], [ -154.511719, 57.515823 ], [ -154.511719, 57.610107 ], [ -154.335938, 57.610107 ], [ -154.335938, 57.704147 ], [ -153.984375, 57.704147 ], [ -153.984375, 57.797944 ], [ -153.808594, 57.797944 ], [ -153.808594, 57.891497 ], [ -153.457031, 57.891497 ], [ -153.457031, 57.984808 ], [ -152.578125, 57.984808 ] ] ], [ [ [ -170.507812, 63.704722 ], [ -170.507812, 63.626745 ], [ -170.332031, 63.626745 ], [ -170.332031, 63.548552 ], [ -169.980469, 63.548552 ], [ -169.980469, 63.470145 ], [ -169.628906, 63.470145 ], [ -169.628906, 63.391522 ], [ -169.101562, 63.391522 ], [ -169.101562, 63.312683 ], [ -168.750000, 63.312683 ], [ -168.750000, 63.233627 ], [ -168.925781, 63.233627 ], [ -168.925781, 63.154355 ], [ -169.101562, 63.154355 ], [ -169.101562, 63.074866 ], [ -169.453125, 63.074866 ], [ -169.453125, 62.995158 ], [ -169.804688, 62.995158 ], [ -169.804688, 63.074866 ], [ -170.156250, 63.074866 ], [ -170.156250, 63.154355 ], [ -170.332031, 63.154355 ], [ -170.332031, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.312683 ], [ -170.683594, 63.312683 ], [ -170.683594, 63.391522 ], [ -171.914062, 63.391522 ], [ -171.914062, 63.626745 ], [ -171.738281, 63.626745 ], [ -171.738281, 63.704722 ], [ -171.386719, 63.704722 ], [ -171.386719, 63.626745 ], [ -170.683594, 63.626745 ], [ -170.683594, 63.704722 ], [ -170.507812, 63.704722 ] ] ], [ [ [ -166.289062, 60.413852 ], [ -166.289062, 60.326948 ], [ -165.761719, 60.326948 ], [ -165.761719, 60.152442 ], [ -165.585938, 60.152442 ], [ -165.585938, 59.888937 ], [ -165.937500, 59.888937 ], [ -165.937500, 59.800634 ], [ -166.640625, 59.800634 ], [ -166.640625, 59.888937 ], [ -166.992188, 59.888937 ], [ -166.992188, 59.977005 ], [ -167.167969, 59.977005 ], [ -167.167969, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.152442 ], [ -167.519531, 60.152442 ], [ -167.519531, 60.239811 ], [ -167.167969, 60.239811 ], [ -167.167969, 60.326948 ], [ -166.816406, 60.326948 ], [ -166.816406, 60.413852 ], [ -166.289062, 60.413852 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.878906, 63.074866 ], [ -180.703125, 63.074866 ], [ -180.703125, 62.754726 ], [ -180.527344, 62.754726 ], [ -180.527344, 62.431074 ], [ -180.703125, 62.431074 ], [ -180.703125, 62.267923 ], [ -180.878906, 62.267923 ], [ -180.878906, 63.074866 ] ] ], [ [ [ -180.000000, 65.072130 ], [ -180.000000, 64.923542 ], [ -180.175781, 64.923542 ], [ -180.175781, 64.848937 ], [ -180.527344, 64.848937 ], [ -180.527344, 64.774125 ], [ -180.703125, 64.774125 ], [ -180.703125, 64.699105 ], [ -180.878906, 64.699105 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ], [ -174.902344, 66.861082 ], [ -174.902344, 66.722541 ], [ -175.078125, 66.722541 ], [ -175.078125, 66.513260 ], [ -174.902344, 66.513260 ], [ -174.902344, 66.443107 ], [ -174.726562, 66.443107 ], [ -174.726562, 66.372755 ], [ -174.550781, 66.372755 ], [ -174.550781, 66.302205 ], [ -174.375000, 66.302205 ], [ -174.375000, 66.583217 ], [ -174.550781, 66.583217 ], [ -174.550781, 66.861082 ], [ -171.738281, 66.861082 ], [ -171.738281, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.722541 ], [ -171.386719, 66.722541 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.302205 ], [ -170.683594, 66.302205 ], [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -170.332031, 66.160511 ], [ -170.332031, 66.018018 ], [ -170.156250, 66.018018 ], [ -170.156250, 65.946472 ], [ -169.980469, 65.946472 ], [ -169.980469, 65.874725 ], [ -170.156250, 65.874725 ], [ -170.156250, 65.802776 ], [ -170.332031, 65.802776 ], [ -170.332031, 65.730626 ], [ -170.507812, 65.730626 ], [ -170.507812, 65.585720 ], [ -170.683594, 65.585720 ], [ -170.683594, 65.512963 ], [ -171.562500, 65.512963 ], [ -171.562500, 65.440002 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.396938 ], [ -172.792969, 64.396938 ], [ -172.792969, 64.244595 ], [ -174.023438, 64.244595 ], [ -174.023438, 64.320872 ], [ -174.199219, 64.320872 ], [ -174.199219, 64.396938 ], [ -174.375000, 64.396938 ], [ -174.375000, 64.472794 ], [ -174.550781, 64.472794 ], [ -174.550781, 64.548440 ], [ -174.726562, 64.548440 ], [ -174.726562, 64.623877 ], [ -174.902344, 64.623877 ], [ -174.902344, 64.699105 ], [ -175.253906, 64.699105 ], [ -175.253906, 64.774125 ], [ -175.605469, 64.774125 ], [ -175.605469, 64.848937 ], [ -175.957031, 64.848937 ], [ -175.957031, 65.146115 ], [ -176.132812, 65.146115 ], [ -176.132812, 65.366837 ], [ -176.484375, 65.366837 ], [ -176.484375, 65.440002 ], [ -177.011719, 65.440002 ], [ -177.011719, 65.512963 ], [ -177.363281, 65.512963 ], [ -177.363281, 65.440002 ], [ -178.066406, 65.440002 ], [ -178.066406, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.512963 ], [ -178.769531, 65.512963 ], [ -178.769531, 65.658275 ], [ -178.945312, 65.658275 ], [ -178.945312, 65.874725 ], [ -178.769531, 65.874725 ], [ -178.769531, 66.018018 ], [ -179.121094, 66.018018 ], [ -179.121094, 65.946472 ], [ -179.472656, 65.946472 ], [ -179.472656, 65.874725 ], [ -179.824219, 65.874725 ], [ -179.824219, 65.730626 ], [ -179.648438, 65.730626 ], [ -179.648438, 65.512963 ], [ -179.472656, 65.512963 ], [ -179.472656, 65.366837 ], [ -179.648438, 65.366837 ], [ -179.648438, 65.219894 ], [ -179.824219, 65.219894 ], [ -179.824219, 65.072130 ], [ -180.000000, 65.072130 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.878906, 63.074866 ], [ -180.703125, 63.074866 ], [ -180.703125, 62.754726 ], [ -180.527344, 62.754726 ], [ -180.527344, 62.512318 ], [ -180.703125, 62.512318 ], [ -180.703125, 62.349609 ], [ -180.878906, 62.349609 ], [ -180.878906, 63.074866 ] ] ], [ [ [ -180.000000, 66.861082 ], [ -175.078125, 66.861082 ], [ -175.078125, 66.583217 ], [ -174.902344, 66.583217 ], [ -174.902344, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.443107 ], [ -174.550781, 66.443107 ], [ -174.550781, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.583217 ], [ -174.550781, 66.583217 ], [ -174.550781, 66.861082 ], [ -171.914062, 66.861082 ], [ -171.914062, 66.791909 ], [ -171.738281, 66.791909 ], [ -171.738281, 66.722541 ], [ -171.562500, 66.722541 ], [ -171.562500, 66.652977 ], [ -171.386719, 66.652977 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.302205 ], [ -170.683594, 66.302205 ], [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -170.332031, 66.160511 ], [ -170.332031, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 66.018018 ], [ -169.980469, 66.018018 ], [ -169.980469, 65.946472 ], [ -170.156250, 65.946472 ], [ -170.156250, 65.874725 ], [ -170.332031, 65.874725 ], [ -170.332031, 65.802776 ], [ -170.507812, 65.802776 ], [ -170.507812, 65.730626 ], [ -170.683594, 65.730626 ], [ -170.683594, 65.658275 ], [ -170.859375, 65.658275 ], [ -170.859375, 65.585720 ], [ -171.386719, 65.585720 ], [ -171.386719, 65.512963 ], [ -172.089844, 65.512963 ], [ -172.089844, 65.440002 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.396938 ], [ -172.792969, 64.396938 ], [ -172.792969, 64.320872 ], [ -174.199219, 64.320872 ], [ -174.199219, 64.396938 ], [ -174.375000, 64.396938 ], [ -174.375000, 64.548440 ], [ -174.550781, 64.548440 ], [ -174.550781, 64.623877 ], [ -174.726562, 64.623877 ], [ -174.726562, 64.699105 ], [ -175.078125, 64.699105 ], [ -175.078125, 64.774125 ], [ -175.605469, 64.774125 ], [ -175.605469, 64.848937 ], [ -175.957031, 64.848937 ], [ -175.957031, 64.923542 ], [ -176.132812, 64.923542 ], [ -176.132812, 65.146115 ], [ -176.308594, 65.146115 ], [ -176.308594, 65.366837 ], [ -176.660156, 65.366837 ], [ -176.660156, 65.440002 ], [ -177.011719, 65.440002 ], [ -177.011719, 65.512963 ], [ -177.363281, 65.512963 ], [ -177.363281, 65.585720 ], [ -177.539062, 65.585720 ], [ -177.539062, 65.512963 ], [ -178.066406, 65.512963 ], [ -178.066406, 65.440002 ], [ -178.593750, 65.440002 ], [ -178.593750, 65.585720 ], [ -178.769531, 65.585720 ], [ -178.769531, 65.730626 ], [ -178.945312, 65.730626 ], [ -178.945312, 65.946472 ], [ -178.769531, 65.946472 ], [ -178.769531, 66.089364 ], [ -179.121094, 66.089364 ], [ -179.121094, 66.018018 ], [ -179.472656, 66.018018 ], [ -179.472656, 65.946472 ], [ -179.824219, 65.946472 ], [ -179.824219, 65.874725 ], [ -180.000000, 65.874725 ], [ -180.000000, 65.802776 ], [ -179.824219, 65.802776 ], [ -179.824219, 65.658275 ], [ -179.648438, 65.658275 ], [ -179.648438, 65.512963 ], [ -179.472656, 65.512963 ], [ -179.472656, 65.366837 ], [ -179.648438, 65.366837 ], [ -179.648438, 65.219894 ], [ -179.824219, 65.219894 ], [ -179.824219, 65.072130 ], [ -180.000000, 65.072130 ], [ -180.000000, 64.997939 ], [ -180.175781, 64.997939 ], [ -180.175781, 64.923542 ], [ -180.351562, 64.923542 ], [ -180.351562, 64.848937 ], [ -180.527344, 64.848937 ], [ -180.527344, 64.774125 ], [ -180.703125, 64.774125 ], [ -180.703125, 64.699105 ], [ -180.878906, 64.699105 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.800781, 69.718107 ], [ -140.800781, 69.657086 ], [ -140.273438, 69.657086 ], [ -140.273438, 69.595890 ], [ -139.921875, 69.595890 ], [ -139.921875, 69.534518 ], [ -139.394531, 69.534518 ], [ -139.394531, 69.472969 ], [ -139.042969, 69.472969 ], [ -139.042969, 69.411242 ], [ -138.867188, 69.411242 ], [ -138.867188, 69.349339 ], [ -138.691406, 69.349339 ], [ -138.691406, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.224997 ], [ -138.164062, 69.224997 ], [ -138.164062, 69.162558 ], [ -137.988281, 69.162558 ], [ -137.988281, 69.099940 ], [ -137.812500, 69.099940 ], [ -137.812500, 69.037142 ], [ -137.636719, 69.037142 ], [ -137.636719, 68.974164 ], [ -137.109375, 68.974164 ], [ -137.109375, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 68.974164 ], [ -136.230469, 68.974164 ], [ -136.230469, 69.099940 ], [ -136.054688, 69.099940 ], [ -136.054688, 69.162558 ], [ -135.878906, 69.162558 ], [ -135.878906, 69.224997 ], [ -135.703125, 69.224997 ], [ -135.703125, 69.287257 ], [ -135.527344, 69.287257 ], [ -135.527344, 69.349339 ], [ -135.351562, 69.349339 ], [ -135.351562, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -134.824219, 69.472969 ], [ -134.824219, 69.534518 ], [ -134.648438, 69.534518 ], [ -134.648438, 69.595890 ], [ -134.121094, 69.595890 ], [ -134.121094, 66.160511 ], [ -140.976562, 66.160511 ], [ -140.976562, 69.718107 ], [ -140.800781, 69.718107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.976562, 69.718107 ], [ -140.976562, 69.657086 ], [ -140.449219, 69.657086 ], [ -140.449219, 69.595890 ], [ -140.097656, 69.595890 ], [ -140.097656, 69.534518 ], [ -139.570312, 69.534518 ], [ -139.570312, 69.472969 ], [ -139.218750, 69.472969 ], [ -139.218750, 69.411242 ], [ -139.042969, 69.411242 ], [ -139.042969, 69.349339 ], [ -138.691406, 69.349339 ], [ -138.691406, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.224997 ], [ -138.339844, 69.224997 ], [ -138.339844, 69.162558 ], [ -137.988281, 69.162558 ], [ -137.988281, 69.099940 ], [ -137.812500, 69.099940 ], [ -137.812500, 69.037142 ], [ -137.460938, 69.037142 ], [ -137.460938, 68.974164 ], [ -136.933594, 68.974164 ], [ -136.933594, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 69.037142 ], [ -136.230469, 69.037142 ], [ -136.230469, 69.099940 ], [ -136.054688, 69.099940 ], [ -136.054688, 69.162558 ], [ -135.878906, 69.162558 ], [ -135.878906, 69.287257 ], [ -135.703125, 69.287257 ], [ -135.703125, 69.349339 ], [ -135.527344, 69.349339 ], [ -135.527344, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -135.000000, 69.472969 ], [ -135.000000, 69.534518 ], [ -134.824219, 69.534518 ], [ -134.824219, 69.595890 ], [ -134.472656, 69.595890 ], [ -134.472656, 69.657086 ], [ -134.121094, 69.657086 ], [ -134.121094, 66.160511 ], [ -141.152344, 66.160511 ], [ -141.152344, 69.718107 ], [ -140.976562, 69.718107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.583217 ], [ -163.652344, 66.372755 ], [ -163.828125, 66.372755 ], [ -163.828125, 66.160511 ], [ -166.289062, 66.160511 ], [ -166.289062, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.302205 ], [ -165.585938, 66.302205 ], [ -165.585938, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ] ] ], [ [ [ -161.718750, 66.160511 ], [ -161.718750, 66.231457 ], [ -161.894531, 66.231457 ], [ -161.894531, 66.372755 ], [ -162.070312, 66.372755 ], [ -162.070312, 66.513260 ], [ -162.246094, 66.513260 ], [ -162.246094, 66.652977 ], [ -162.421875, 66.652977 ], [ -162.421875, 66.722541 ], [ -162.597656, 66.722541 ], [ -162.597656, 66.791909 ], [ -162.773438, 66.791909 ], [ -162.773438, 66.861082 ], [ -162.949219, 66.861082 ], [ -162.949219, 66.930060 ], [ -163.300781, 66.930060 ], [ -163.300781, 66.998844 ], [ -163.476562, 66.998844 ], [ -163.476562, 67.067433 ], [ -163.652344, 67.067433 ], [ -163.652344, 67.135829 ], [ -163.828125, 67.135829 ], [ -163.828125, 67.272043 ], [ -164.003906, 67.272043 ], [ -164.003906, 67.407487 ], [ -164.179688, 67.407487 ], [ -164.179688, 67.542167 ], [ -164.355469, 67.542167 ], [ -164.355469, 67.609221 ], [ -164.531250, 67.609221 ], [ -164.531250, 67.676085 ], [ -164.707031, 67.676085 ], [ -164.707031, 67.742759 ], [ -164.882812, 67.742759 ], [ -164.882812, 67.875541 ], [ -165.058594, 67.875541 ], [ -165.058594, 67.941650 ], [ -165.234375, 67.941650 ], [ -165.234375, 68.007571 ], [ -165.410156, 68.007571 ], [ -165.410156, 68.073305 ], [ -165.761719, 68.073305 ], [ -165.761719, 68.138852 ], [ -166.113281, 68.138852 ], [ -166.113281, 68.204212 ], [ -166.464844, 68.204212 ], [ -166.464844, 68.269387 ], [ -166.816406, 68.269387 ], [ -166.816406, 68.399180 ], [ -166.640625, 68.399180 ], [ -166.640625, 68.592487 ], [ -166.464844, 68.592487 ], [ -166.464844, 68.784144 ], [ -166.289062, 68.784144 ], [ -166.289062, 68.911005 ], [ -164.179688, 68.911005 ], [ -164.179688, 68.974164 ], [ -164.003906, 68.974164 ], [ -164.003906, 69.037142 ], [ -163.828125, 69.037142 ], [ -163.828125, 69.099940 ], [ -163.652344, 69.099940 ], [ -163.652344, 69.162558 ], [ -163.476562, 69.162558 ], [ -163.476562, 69.224997 ], [ -163.300781, 69.224997 ], [ -163.300781, 69.287257 ], [ -163.125000, 69.287257 ], [ -163.125000, 69.595890 ], [ -162.949219, 69.595890 ], [ -162.949219, 69.839622 ], [ -162.773438, 69.839622 ], [ -162.773438, 69.960439 ], [ -162.597656, 69.960439 ], [ -162.597656, 70.020587 ], [ -162.421875, 70.020587 ], [ -162.421875, 70.080562 ], [ -162.246094, 70.080562 ], [ -162.246094, 70.199994 ], [ -162.070312, 70.199994 ], [ -162.070312, 70.259452 ], [ -161.894531, 70.259452 ], [ -161.894531, 70.318738 ], [ -161.542969, 70.318738 ], [ -161.542969, 70.377854 ], [ -161.191406, 70.377854 ], [ -161.191406, 70.436799 ], [ -160.839844, 70.436799 ], [ -160.839844, 70.495574 ], [ -160.488281, 70.495574 ], [ -160.488281, 70.554179 ], [ -160.312500, 70.554179 ], [ -160.312500, 70.612614 ], [ -160.136719, 70.612614 ], [ -160.136719, 70.670881 ], [ -159.785156, 70.670881 ], [ -159.785156, 70.728979 ], [ -159.609375, 70.728979 ], [ -159.609375, 70.786910 ], [ -159.433594, 70.786910 ], [ -159.433594, 70.844673 ], [ -159.082031, 70.844673 ], [ -159.082031, 70.902268 ], [ -158.730469, 70.902268 ], [ -158.730469, 70.844673 ], [ -158.027344, 70.844673 ], [ -158.027344, 70.902268 ], [ -157.851562, 70.902268 ], [ -157.851562, 70.959697 ], [ -157.675781, 70.959697 ], [ -157.675781, 71.016960 ], [ -157.500000, 71.016960 ], [ -157.500000, 71.074056 ], [ -157.324219, 71.074056 ], [ -157.324219, 71.130988 ], [ -157.148438, 71.130988 ], [ -157.148438, 71.187754 ], [ -156.972656, 71.187754 ], [ -156.972656, 71.244356 ], [ -156.796875, 71.244356 ], [ -156.796875, 71.300793 ], [ -156.621094, 71.300793 ], [ -156.621094, 71.357067 ], [ -156.445312, 71.357067 ], [ -156.445312, 71.300793 ], [ -156.093750, 71.300793 ], [ -156.093750, 71.244356 ], [ -155.742188, 71.244356 ], [ -155.742188, 71.187754 ], [ -155.390625, 71.187754 ], [ -155.390625, 71.130988 ], [ -155.039062, 71.130988 ], [ -155.039062, 71.074056 ], [ -154.863281, 71.074056 ], [ -154.863281, 70.959697 ], [ -154.687500, 70.959697 ], [ -154.687500, 70.844673 ], [ -154.511719, 70.844673 ], [ -154.511719, 70.728979 ], [ -154.160156, 70.728979 ], [ -154.160156, 70.844673 ], [ -153.984375, 70.844673 ], [ -153.984375, 70.902268 ], [ -153.281250, 70.902268 ], [ -153.281250, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.612614 ], [ -152.050781, 70.612614 ], [ -152.050781, 70.554179 ], [ -151.699219, 70.554179 ], [ -151.699219, 70.495574 ], [ -151.171875, 70.495574 ], [ -151.171875, 70.436799 ], [ -150.468750, 70.436799 ], [ -150.468750, 70.495574 ], [ -149.941406, 70.495574 ], [ -149.941406, 70.554179 ], [ -149.765625, 70.554179 ], [ -149.765625, 70.495574 ], [ -149.414062, 70.495574 ], [ -149.414062, 70.436799 ], [ -149.062500, 70.436799 ], [ -149.062500, 70.377854 ], [ -148.710938, 70.377854 ], [ -148.710938, 70.318738 ], [ -148.359375, 70.318738 ], [ -148.359375, 70.259452 ], [ -148.007812, 70.259452 ], [ -148.007812, 70.199994 ], [ -146.777344, 70.199994 ], [ -146.777344, 70.140364 ], [ -145.722656, 70.140364 ], [ -145.722656, 70.080562 ], [ -145.371094, 70.080562 ], [ -145.371094, 70.020587 ], [ -145.019531, 70.020587 ], [ -145.019531, 69.960439 ], [ -144.492188, 69.960439 ], [ -144.492188, 70.020587 ], [ -144.140625, 70.020587 ], [ -144.140625, 70.080562 ], [ -143.789062, 70.080562 ], [ -143.789062, 70.140364 ], [ -143.613281, 70.140364 ], [ -143.613281, 70.080562 ], [ -143.261719, 70.080562 ], [ -143.261719, 70.020587 ], [ -142.910156, 70.020587 ], [ -142.910156, 69.960439 ], [ -142.558594, 69.960439 ], [ -142.558594, 69.900118 ], [ -142.207031, 69.900118 ], [ -142.207031, 69.839622 ], [ -141.855469, 69.839622 ], [ -141.855469, 69.778952 ], [ -141.328125, 69.778952 ], [ -141.328125, 69.718107 ], [ -140.976562, 69.718107 ], [ -140.976562, 66.160511 ], [ -161.718750, 66.160511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.583217 ], [ -163.652344, 66.372755 ], [ -163.828125, 66.372755 ], [ -163.828125, 66.160511 ], [ -166.289062, 66.160511 ], [ -166.289062, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.302205 ], [ -165.585938, 66.302205 ], [ -165.585938, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ] ] ], [ [ [ -161.894531, 66.160511 ], [ -161.894531, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.372755 ], [ -162.246094, 66.372755 ], [ -162.246094, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.652977 ], [ -162.597656, 66.652977 ], [ -162.597656, 66.791909 ], [ -162.773438, 66.791909 ], [ -162.773438, 66.861082 ], [ -163.125000, 66.861082 ], [ -163.125000, 66.930060 ], [ -163.300781, 66.930060 ], [ -163.300781, 66.998844 ], [ -163.476562, 66.998844 ], [ -163.476562, 67.067433 ], [ -163.828125, 67.067433 ], [ -163.828125, 67.204032 ], [ -164.003906, 67.204032 ], [ -164.003906, 67.339861 ], [ -164.179688, 67.339861 ], [ -164.179688, 67.474922 ], [ -164.355469, 67.474922 ], [ -164.355469, 67.609221 ], [ -164.531250, 67.609221 ], [ -164.531250, 67.676085 ], [ -164.707031, 67.676085 ], [ -164.707031, 67.742759 ], [ -164.882812, 67.742759 ], [ -164.882812, 67.875541 ], [ -165.058594, 67.875541 ], [ -165.058594, 67.941650 ], [ -165.234375, 67.941650 ], [ -165.234375, 68.007571 ], [ -165.410156, 68.007571 ], [ -165.410156, 68.073305 ], [ -165.585938, 68.073305 ], [ -165.585938, 68.138852 ], [ -165.937500, 68.138852 ], [ -165.937500, 68.204212 ], [ -166.289062, 68.204212 ], [ -166.289062, 68.269387 ], [ -166.464844, 68.269387 ], [ -166.464844, 68.334376 ], [ -166.816406, 68.334376 ], [ -166.816406, 68.463800 ], [ -166.640625, 68.463800 ], [ -166.640625, 68.656555 ], [ -166.464844, 68.656555 ], [ -166.464844, 68.784144 ], [ -166.289062, 68.784144 ], [ -166.289062, 68.911005 ], [ -165.234375, 68.911005 ], [ -165.234375, 68.974164 ], [ -164.355469, 68.974164 ], [ -164.355469, 69.037142 ], [ -164.179688, 69.037142 ], [ -164.179688, 69.099940 ], [ -164.003906, 69.099940 ], [ -164.003906, 69.162558 ], [ -163.828125, 69.162558 ], [ -163.828125, 69.224997 ], [ -163.652344, 69.224997 ], [ -163.652344, 69.287257 ], [ -163.476562, 69.287257 ], [ -163.476562, 69.349339 ], [ -163.300781, 69.349339 ], [ -163.300781, 69.534518 ], [ -163.125000, 69.534518 ], [ -163.125000, 69.778952 ], [ -162.949219, 69.778952 ], [ -162.949219, 69.900118 ], [ -162.773438, 69.900118 ], [ -162.773438, 70.020587 ], [ -162.597656, 70.020587 ], [ -162.597656, 70.140364 ], [ -162.421875, 70.140364 ], [ -162.421875, 70.199994 ], [ -162.246094, 70.199994 ], [ -162.246094, 70.318738 ], [ -162.070312, 70.318738 ], [ -162.070312, 70.377854 ], [ -161.718750, 70.377854 ], [ -161.718750, 70.436799 ], [ -161.191406, 70.436799 ], [ -161.191406, 70.495574 ], [ -160.839844, 70.495574 ], [ -160.839844, 70.554179 ], [ -160.488281, 70.554179 ], [ -160.488281, 70.612614 ], [ -160.312500, 70.612614 ], [ -160.312500, 70.670881 ], [ -159.960938, 70.670881 ], [ -159.960938, 70.728979 ], [ -159.609375, 70.728979 ], [ -159.609375, 70.786910 ], [ -159.433594, 70.786910 ], [ -159.433594, 70.844673 ], [ -159.082031, 70.844673 ], [ -159.082031, 70.902268 ], [ -158.730469, 70.902268 ], [ -158.730469, 70.844673 ], [ -158.027344, 70.844673 ], [ -158.027344, 70.902268 ], [ -157.851562, 70.902268 ], [ -157.851562, 70.959697 ], [ -157.675781, 70.959697 ], [ -157.675781, 71.016960 ], [ -157.500000, 71.016960 ], [ -157.500000, 71.074056 ], [ -157.324219, 71.074056 ], [ -157.324219, 71.130988 ], [ -157.148438, 71.130988 ], [ -157.148438, 71.187754 ], [ -156.972656, 71.187754 ], [ -156.972656, 71.244356 ], [ -156.796875, 71.244356 ], [ -156.796875, 71.300793 ], [ -156.621094, 71.300793 ], [ -156.621094, 71.357067 ], [ -156.445312, 71.357067 ], [ -156.445312, 71.300793 ], [ -156.093750, 71.300793 ], [ -156.093750, 71.244356 ], [ -155.566406, 71.244356 ], [ -155.566406, 71.187754 ], [ -155.214844, 71.187754 ], [ -155.214844, 71.130988 ], [ -155.039062, 71.130988 ], [ -155.039062, 71.016960 ], [ -154.863281, 71.016960 ], [ -154.863281, 70.902268 ], [ -154.687500, 70.902268 ], [ -154.687500, 70.786910 ], [ -154.511719, 70.786910 ], [ -154.511719, 70.728979 ], [ -154.335938, 70.728979 ], [ -154.335938, 70.786910 ], [ -154.160156, 70.786910 ], [ -154.160156, 70.844673 ], [ -153.984375, 70.844673 ], [ -153.984375, 70.902268 ], [ -153.281250, 70.902268 ], [ -153.281250, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.728979 ], [ -152.402344, 70.728979 ], [ -152.402344, 70.612614 ], [ -152.226562, 70.612614 ], [ -152.226562, 70.554179 ], [ -151.699219, 70.554179 ], [ -151.699219, 70.495574 ], [ -151.171875, 70.495574 ], [ -151.171875, 70.436799 ], [ -150.468750, 70.436799 ], [ -150.468750, 70.495574 ], [ -149.941406, 70.495574 ], [ -149.941406, 70.554179 ], [ -149.589844, 70.554179 ], [ -149.589844, 70.495574 ], [ -149.238281, 70.495574 ], [ -149.238281, 70.436799 ], [ -148.886719, 70.436799 ], [ -148.886719, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.318738 ], [ -148.007812, 70.318738 ], [ -148.007812, 70.259452 ], [ -147.304688, 70.259452 ], [ -147.304688, 70.199994 ], [ -146.250000, 70.199994 ], [ -146.250000, 70.140364 ], [ -145.722656, 70.140364 ], [ -145.722656, 70.080562 ], [ -145.371094, 70.080562 ], [ -145.371094, 70.020587 ], [ -144.667969, 70.020587 ], [ -144.667969, 70.080562 ], [ -144.140625, 70.080562 ], [ -144.140625, 70.140364 ], [ -143.789062, 70.140364 ], [ -143.789062, 70.199994 ], [ -143.613281, 70.199994 ], [ -143.613281, 70.140364 ], [ -143.261719, 70.140364 ], [ -143.261719, 70.080562 ], [ -143.085938, 70.080562 ], [ -143.085938, 70.020587 ], [ -142.734375, 70.020587 ], [ -142.734375, 69.960439 ], [ -142.382812, 69.960439 ], [ -142.382812, 69.900118 ], [ -142.207031, 69.900118 ], [ -142.207031, 69.839622 ], [ -141.855469, 69.839622 ], [ -141.855469, 69.778952 ], [ -141.503906, 69.778952 ], [ -141.503906, 69.718107 ], [ -141.152344, 69.718107 ], [ -141.152344, 66.160511 ], [ -161.894531, 66.160511 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.703125, 69.162558 ], [ -180.703125, 69.099940 ], [ -180.351562, 69.099940 ], [ -180.351562, 69.037142 ], [ -180.175781, 69.037142 ], [ -180.175781, 68.974164 ], [ -180.000000, 68.974164 ], [ -180.000000, 68.911005 ], [ -179.824219, 68.911005 ], [ -179.824219, 68.847665 ], [ -179.648438, 68.847665 ], [ -179.648438, 68.784144 ], [ -179.296875, 68.784144 ], [ -179.296875, 68.720441 ], [ -179.121094, 68.720441 ], [ -179.121094, 68.656555 ], [ -178.945312, 68.656555 ], [ -178.945312, 68.592487 ], [ -178.769531, 68.592487 ], [ -178.769531, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.463800 ], [ -178.417969, 68.463800 ], [ -178.417969, 68.399180 ], [ -178.066406, 68.399180 ], [ -178.066406, 68.334376 ], [ -177.890625, 68.334376 ], [ -177.890625, 68.269387 ], [ -177.714844, 68.269387 ], [ -177.714844, 68.204212 ], [ -177.539062, 68.204212 ], [ -177.539062, 68.138852 ], [ -177.363281, 68.138852 ], [ -177.363281, 68.073305 ], [ -177.187500, 68.073305 ], [ -177.187500, 68.007571 ], [ -177.011719, 68.007571 ], [ -177.011719, 67.941650 ], [ -176.835938, 67.941650 ], [ -176.835938, 67.875541 ], [ -176.660156, 67.875541 ], [ -176.660156, 67.809245 ], [ -176.484375, 67.809245 ], [ -176.484375, 67.742759 ], [ -176.308594, 67.742759 ], [ -176.308594, 67.676085 ], [ -176.132812, 67.676085 ], [ -176.132812, 67.609221 ], [ -175.957031, 67.609221 ], [ -175.957031, 67.542167 ], [ -175.781250, 67.542167 ], [ -175.781250, 67.474922 ], [ -175.605469, 67.474922 ], [ -175.605469, 67.407487 ], [ -175.429688, 67.407487 ], [ -175.429688, 67.339861 ], [ -175.253906, 67.339861 ], [ -175.253906, 67.272043 ], [ -175.078125, 67.272043 ], [ -175.078125, 67.204032 ], [ -174.902344, 67.204032 ], [ -174.902344, 66.861082 ], [ -175.078125, 66.861082 ], [ -175.078125, 66.513260 ], [ -174.902344, 66.513260 ], [ -174.902344, 66.443107 ], [ -174.726562, 66.443107 ], [ -174.726562, 66.372755 ], [ -174.550781, 66.372755 ], [ -174.550781, 66.302205 ], [ -174.375000, 66.302205 ], [ -174.375000, 66.652977 ], [ -174.550781, 66.652977 ], [ -174.550781, 67.067433 ], [ -174.023438, 67.067433 ], [ -174.023438, 66.998844 ], [ -172.617188, 66.998844 ], [ -172.617188, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.861082 ], [ -171.738281, 66.861082 ], [ -171.738281, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.386719, 66.652977 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.372755 ], [ -170.683594, 66.372755 ], [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.878906, 66.160511 ], [ -180.878906, 69.162558 ], [ -180.703125, 69.162558 ] ] ], [ [ [ -178.945312, 71.580532 ], [ -178.945312, 71.524909 ], [ -178.769531, 71.524909 ], [ -178.769531, 71.469124 ], [ -178.417969, 71.469124 ], [ -178.417969, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.357067 ], [ -178.066406, 71.357067 ], [ -178.066406, 71.300793 ], [ -177.714844, 71.300793 ], [ -177.714844, 71.244356 ], [ -177.539062, 71.244356 ], [ -177.539062, 71.187754 ], [ -177.714844, 71.187754 ], [ -177.714844, 71.074056 ], [ -178.066406, 71.074056 ], [ -178.066406, 71.016960 ], [ -178.242188, 71.016960 ], [ -178.242188, 70.959697 ], [ -178.593750, 70.959697 ], [ -178.593750, 70.902268 ], [ -179.296875, 70.902268 ], [ -179.296875, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.351562, 70.844673 ], [ -180.351562, 70.786910 ], [ -180.878906, 70.786910 ], [ -180.878906, 71.244356 ], [ -180.703125, 71.244356 ], [ -180.703125, 71.300793 ], [ -180.527344, 71.300793 ], [ -180.527344, 71.357067 ], [ -180.351562, 71.357067 ], [ -180.351562, 71.413177 ], [ -180.175781, 71.413177 ], [ -180.175781, 71.469124 ], [ -180.000000, 71.469124 ], [ -180.000000, 71.524909 ], [ -179.824219, 71.524909 ], [ -179.824219, 71.580532 ], [ -178.945312, 71.580532 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.703125, 69.224997 ], [ -180.703125, 69.162558 ], [ -180.527344, 69.162558 ], [ -180.527344, 69.099940 ], [ -180.351562, 69.099940 ], [ -180.351562, 69.037142 ], [ -180.175781, 69.037142 ], [ -180.175781, 68.974164 ], [ -180.000000, 68.974164 ], [ -180.000000, 68.911005 ], [ -179.824219, 68.911005 ], [ -179.824219, 68.847665 ], [ -179.648438, 68.847665 ], [ -179.648438, 68.784144 ], [ -179.472656, 68.784144 ], [ -179.472656, 68.720441 ], [ -179.296875, 68.720441 ], [ -179.296875, 68.656555 ], [ -179.121094, 68.656555 ], [ -179.121094, 68.592487 ], [ -178.769531, 68.592487 ], [ -178.769531, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.463800 ], [ -178.417969, 68.463800 ], [ -178.417969, 68.399180 ], [ -178.242188, 68.399180 ], [ -178.242188, 68.334376 ], [ -178.066406, 68.334376 ], [ -178.066406, 68.269387 ], [ -177.890625, 68.269387 ], [ -177.890625, 68.204212 ], [ -177.714844, 68.204212 ], [ -177.714844, 68.138852 ], [ -177.539062, 68.138852 ], [ -177.539062, 68.073305 ], [ -177.363281, 68.073305 ], [ -177.363281, 68.007571 ], [ -177.187500, 68.007571 ], [ -177.187500, 67.941650 ], [ -177.011719, 67.941650 ], [ -177.011719, 67.875541 ], [ -176.835938, 67.875541 ], [ -176.835938, 67.809245 ], [ -176.660156, 67.809245 ], [ -176.660156, 67.742759 ], [ -176.308594, 67.742759 ], [ -176.308594, 67.676085 ], [ -176.132812, 67.676085 ], [ -176.132812, 67.609221 ], [ -175.957031, 67.609221 ], [ -175.957031, 67.542167 ], [ -175.781250, 67.542167 ], [ -175.781250, 67.474922 ], [ -175.605469, 67.474922 ], [ -175.605469, 67.407487 ], [ -175.429688, 67.407487 ], [ -175.429688, 67.339861 ], [ -175.253906, 67.339861 ], [ -175.253906, 67.272043 ], [ -175.078125, 67.272043 ], [ -175.078125, 66.583217 ], [ -174.902344, 66.583217 ], [ -174.902344, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.443107 ], [ -174.550781, 66.443107 ], [ -174.550781, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.513260 ], [ -174.550781, 66.513260 ], [ -174.550781, 66.861082 ], [ -174.726562, 66.861082 ], [ -174.726562, 67.067433 ], [ -174.199219, 67.067433 ], [ -174.199219, 66.998844 ], [ -172.792969, 66.998844 ], [ -172.792969, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.861082 ], [ -171.738281, 66.861082 ], [ -171.738281, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.386719, 66.652977 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.372755 ], [ -170.683594, 66.372755 ], [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.878906, 66.160511 ], [ -180.878906, 69.224997 ], [ -180.703125, 69.224997 ] ] ], [ [ [ -179.121094, 71.580532 ], [ -179.121094, 71.524909 ], [ -178.769531, 71.524909 ], [ -178.769531, 71.469124 ], [ -178.593750, 71.469124 ], [ -178.593750, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.357067 ], [ -177.890625, 71.357067 ], [ -177.890625, 71.300793 ], [ -177.714844, 71.300793 ], [ -177.714844, 71.130988 ], [ -177.890625, 71.130988 ], [ -177.890625, 71.074056 ], [ -178.066406, 71.074056 ], [ -178.066406, 71.016960 ], [ -178.417969, 71.016960 ], [ -178.417969, 70.959697 ], [ -178.593750, 70.959697 ], [ -178.593750, 70.902268 ], [ -179.296875, 70.902268 ], [ -179.296875, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.878906, 70.844673 ], [ -180.878906, 71.244356 ], [ -180.703125, 71.244356 ], [ -180.703125, 71.300793 ], [ -180.527344, 71.300793 ], [ -180.527344, 71.357067 ], [ -180.351562, 71.357067 ], [ -180.351562, 71.413177 ], [ -180.175781, 71.413177 ], [ -180.175781, 71.469124 ], [ -180.000000, 71.469124 ], [ -180.000000, 71.580532 ], [ -179.121094, 71.580532 ] ] ] ] } } ] } ] } , @@ -1388,261 +1381,259 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.607120 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.402163 ], [ -135.527344, -74.402163 ], [ -135.527344, -74.354828 ], [ -135.175781, -74.354828 ], [ -135.175781, -74.307353 ], [ -135.000000, -74.307353 ], [ -135.000000, -74.354828 ], [ -134.472656, -74.354828 ], [ -134.472656, -74.402163 ], [ -134.121094, -74.402163 ], [ -134.121094, -74.449358 ], [ -133.417969, -74.449358 ], [ -133.417969, -74.402163 ], [ -132.890625, -74.402163 ], [ -132.890625, -74.354828 ], [ -132.363281, -74.354828 ], [ -132.363281, -74.307353 ], [ -132.187500, -74.307353 ], [ -132.187500, -74.354828 ], [ -131.835938, -74.354828 ], [ -131.835938, -74.402163 ], [ -131.484375, -74.402163 ], [ -131.484375, -74.449358 ], [ -131.132812, -74.449358 ], [ -131.132812, -74.496413 ], [ -130.078125, -74.496413 ], [ -130.078125, -74.449358 ], [ -129.199219, -74.449358 ], [ -129.199219, -74.402163 ], [ -128.847656, -74.402163 ], [ -128.847656, -74.354828 ], [ -128.496094, -74.354828 ], [ -128.496094, -74.307353 ], [ -128.144531, -74.307353 ], [ -128.144531, -74.354828 ], [ -127.441406, -74.354828 ], [ -127.441406, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.449358 ], [ -125.859375, -74.449358 ], [ -125.859375, -74.496413 ], [ -119.531250, -74.496413 ], [ -119.531250, -74.449358 ], [ -119.355469, -74.449358 ], [ -119.355469, -74.402163 ], [ -119.179688, -74.402163 ], [ -119.179688, -74.307353 ], [ -119.003906, -74.307353 ], [ -119.003906, -74.259738 ], [ -118.828125, -74.259738 ], [ -118.828125, -74.211983 ], [ -118.652344, -74.211983 ], [ -118.652344, -74.164085 ], [ -118.300781, -74.164085 ], [ -118.300781, -74.116047 ], [ -117.949219, -74.116047 ], [ -117.949219, -74.067866 ], [ -117.597656, -74.067866 ], [ -117.597656, -74.019543 ], [ -117.421875, -74.019543 ], [ -117.421875, -74.067866 ], [ -117.070312, -74.067866 ], [ -117.070312, -74.116047 ], [ -116.894531, -74.116047 ], [ -116.894531, -74.164085 ], [ -116.718750, -74.164085 ], [ -116.718750, -74.211983 ], [ -116.367188, -74.211983 ], [ -116.367188, -74.259738 ], [ -116.015625, -74.259738 ], [ -116.015625, -74.211983 ], [ -115.664062, -74.211983 ], [ -115.664062, -74.164085 ], [ -115.312500, -74.164085 ], [ -115.312500, -74.116047 ], [ -114.960938, -74.116047 ], [ -114.960938, -74.067866 ], [ -114.785156, -74.067866 ], [ -114.785156, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.971078 ], [ -114.433594, -73.971078 ], [ -114.433594, -73.873717 ], [ -114.257812, -73.873717 ], [ -114.257812, -73.824820 ], [ -114.082031, -73.824820 ], [ -114.082031, -73.775780 ], [ -113.730469, -73.775780 ], [ -113.730469, -73.873717 ], [ -113.554688, -73.873717 ], [ -113.554688, -73.971078 ], [ -113.378906, -73.971078 ], [ -113.378906, -74.116047 ], [ -113.203125, -74.116047 ], [ -113.203125, -74.307353 ], [ -113.027344, -74.307353 ], [ -113.027344, -74.449358 ], [ -112.851562, -74.449358 ], [ -112.851562, -74.543330 ], [ -112.675781, -74.543330 ], [ -112.675781, -74.636748 ], [ -112.500000, -74.636748 ], [ -112.500000, -74.729615 ], [ -112.148438, -74.729615 ], [ -112.148438, -74.683250 ], [ -111.972656, -74.683250 ], [ -111.972656, -74.636748 ], [ -111.796875, -74.636748 ], [ -111.796875, -74.543330 ], [ -111.621094, -74.543330 ], [ -111.621094, -74.496413 ], [ -111.445312, -74.496413 ], [ -111.445312, -74.449358 ], [ -111.093750, -74.449358 ], [ -111.093750, -74.496413 ], [ -110.917969, -74.496413 ], [ -110.917969, -74.543330 ], [ -110.742188, -74.543330 ], [ -110.742188, -74.590108 ], [ -110.566406, -74.590108 ], [ -110.566406, -74.683250 ], [ -110.390625, -74.683250 ], [ -110.390625, -74.729615 ], [ -110.214844, -74.729615 ], [ -110.214844, -74.775843 ], [ -109.863281, -74.775843 ], [ -109.863281, -74.821934 ], [ -109.511719, -74.821934 ], [ -109.511719, -74.867889 ], [ -108.984375, -74.867889 ], [ -108.984375, -74.913708 ], [ -108.632812, -74.913708 ], [ -108.632812, -74.959392 ], [ -108.457031, -74.959392 ], [ -108.457031, -75.004940 ], [ -108.281250, -75.004940 ], [ -108.281250, -75.050354 ], [ -108.105469, -75.050354 ], [ -108.105469, -75.095633 ], [ -107.929688, -75.095633 ], [ -107.929688, -75.140778 ], [ -107.753906, -75.140778 ], [ -107.753906, -75.185789 ], [ -106.699219, -75.185789 ], [ -106.699219, -75.140778 ], [ -105.996094, -75.140778 ], [ -105.996094, -75.095633 ], [ -105.644531, -75.095633 ], [ -105.644531, -75.050354 ], [ -105.292969, -75.050354 ], [ -105.292969, -75.004940 ], [ -104.941406, -75.004940 ], [ -104.941406, -74.959392 ], [ -104.238281, -74.959392 ], [ -104.238281, -75.004940 ], [ -103.183594, -75.004940 ], [ -103.183594, -75.050354 ], [ -102.832031, -75.050354 ], [ -102.832031, -75.095633 ], [ -102.304688, -75.095633 ], [ -102.304688, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.185789 ], [ -101.601562, -75.185789 ], [ -101.601562, -75.230667 ], [ -101.250000, -75.230667 ], [ -101.250000, -75.275413 ], [ -100.898438, -75.275413 ], [ -100.898438, -75.320025 ], [ -100.722656, -75.320025 ], [ -100.722656, -75.275413 ], [ -100.546875, -75.275413 ], [ -100.546875, -75.095633 ], [ -100.371094, -75.095633 ], [ -100.371094, -74.959392 ], [ -100.195312, -74.959392 ], [ -100.195312, -74.821934 ], [ -100.371094, -74.821934 ], [ -100.371094, -74.729615 ], [ -100.546875, -74.729615 ], [ -100.546875, -74.636748 ], [ -100.722656, -74.636748 ], [ -100.722656, -74.496413 ], [ -100.898438, -74.496413 ], [ -100.898438, -74.354828 ], [ -101.074219, -74.354828 ], [ -101.074219, -74.259738 ], [ -101.250000, -74.259738 ], [ -101.250000, -74.164085 ], [ -101.953125, -74.164085 ], [ -101.953125, -74.116047 ], [ -102.480469, -74.116047 ], [ -102.480469, -74.067866 ], [ -102.656250, -74.067866 ], [ -102.656250, -73.971078 ], [ -102.832031, -73.971078 ], [ -102.832031, -73.873717 ], [ -103.007812, -73.873717 ], [ -103.007812, -73.775780 ], [ -103.183594, -73.775780 ], [ -103.183594, -73.578167 ], [ -103.359375, -73.578167 ], [ -103.359375, -73.226700 ], [ -103.535156, -73.226700 ], [ -103.535156, -72.816074 ], [ -103.710938, -72.816074 ], [ -103.710938, -72.659588 ], [ -103.359375, -72.659588 ], [ -103.359375, -72.711903 ], [ -103.007812, -72.711903 ], [ -103.007812, -72.764065 ], [ -102.304688, -72.764065 ], [ -102.304688, -72.816074 ], [ -100.898438, -72.816074 ], [ -100.898438, -72.764065 ], [ -100.195312, -72.764065 ], [ -100.195312, -72.816074 ], [ -99.843750, -72.816074 ], [ -99.843750, -72.867930 ], [ -99.492188, -72.867930 ], [ -99.492188, -72.919635 ], [ -99.140625, -72.919635 ], [ -99.140625, -72.971189 ], [ -98.964844, -72.971189 ], [ -98.964844, -73.022592 ], [ -98.789062, -73.022592 ], [ -98.789062, -73.073844 ], [ -98.613281, -73.073844 ], [ -98.613281, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.175897 ], [ -98.261719, -73.175897 ], [ -98.261719, -73.226700 ], [ -98.085938, -73.226700 ], [ -98.085938, -73.327858 ], [ -97.910156, -73.327858 ], [ -97.910156, -73.528399 ], [ -97.734375, -73.528399 ], [ -97.734375, -73.578167 ], [ -97.207031, -73.578167 ], [ -97.207031, -73.627789 ], [ -95.976562, -73.627789 ], [ -95.976562, -73.578167 ], [ -95.625000, -73.578167 ], [ -95.625000, -73.528399 ], [ -95.273438, -73.528399 ], [ -95.273438, -73.478485 ], [ -94.746094, -73.478485 ], [ -94.746094, -73.428424 ], [ -94.394531, -73.428424 ], [ -94.394531, -73.378215 ], [ -94.042969, -73.378215 ], [ -94.042969, -73.327858 ], [ -93.691406, -73.327858 ], [ -93.691406, -73.277353 ], [ -93.339844, -73.277353 ], [ -93.339844, -73.226700 ], [ -92.636719, -73.226700 ], [ -92.636719, -73.175897 ], [ -92.460938, -73.175897 ], [ -92.460938, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.277353 ], [ -91.933594, -73.277353 ], [ -91.933594, -73.327858 ], [ -91.582031, -73.327858 ], [ -91.582031, -73.378215 ], [ -90.703125, -73.378215 ], [ -90.703125, -73.327858 ], [ -90.175781, -73.327858 ], [ -90.175781, -73.277353 ], [ -90.000000, -73.277353 ], [ -90.000000, -73.124945 ], [ -89.824219, -73.124945 ], [ -89.824219, -72.971189 ], [ -89.648438, -72.971189 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ] ] ], [ [ [ -121.992188, -73.378215 ], [ -121.992188, -73.428424 ], [ -121.640625, -73.428424 ], [ -121.640625, -73.478485 ], [ -121.289062, -73.478485 ], [ -121.289062, -73.528399 ], [ -120.937500, -73.528399 ], [ -120.937500, -73.578167 ], [ -120.585938, -73.578167 ], [ -120.585938, -73.627789 ], [ -120.234375, -73.627789 ], [ -120.234375, -73.677264 ], [ -119.707031, -73.677264 ], [ -119.707031, -73.627789 ], [ -119.355469, -73.627789 ], [ -119.355469, -73.578167 ], [ -119.003906, -73.578167 ], [ -119.003906, -73.528399 ], [ -118.828125, -73.528399 ], [ -118.828125, -73.627789 ], [ -119.003906, -73.627789 ], [ -119.003906, -73.726595 ], [ -119.179688, -73.726595 ], [ -119.179688, -73.824820 ], [ -119.355469, -73.824820 ], [ -119.355469, -73.873717 ], [ -119.531250, -73.873717 ], [ -119.531250, -73.922469 ], [ -119.707031, -73.922469 ], [ -119.707031, -73.971078 ], [ -119.882812, -73.971078 ], [ -119.882812, -74.019543 ], [ -120.058594, -74.019543 ], [ -120.058594, -74.067866 ], [ -121.113281, -74.067866 ], [ -121.113281, -74.019543 ], [ -121.816406, -74.019543 ], [ -121.816406, -73.971078 ], [ -121.992188, -73.971078 ], [ -121.992188, -73.922469 ], [ -122.167969, -73.922469 ], [ -122.167969, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.775780 ], [ -122.519531, -73.775780 ], [ -122.519531, -73.726595 ], [ -122.695312, -73.726595 ], [ -122.695312, -73.627789 ], [ -122.519531, -73.627789 ], [ -122.519531, -73.428424 ], [ -122.343750, -73.428424 ], [ -122.343750, -73.378215 ], [ -121.992188, -73.378215 ] ] ], [ [ [ -124.453125, -73.824820 ], [ -124.980469, -73.824820 ], [ -124.980469, -73.775780 ], [ -125.683594, -73.775780 ], [ -125.683594, -73.726595 ], [ -126.035156, -73.726595 ], [ -126.035156, -73.677264 ], [ -126.386719, -73.677264 ], [ -126.386719, -73.627789 ], [ -126.738281, -73.627789 ], [ -126.738281, -73.578167 ], [ -126.914062, -73.578167 ], [ -126.914062, -73.528399 ], [ -127.265625, -73.528399 ], [ -127.265625, -73.478485 ], [ -127.089844, -73.478485 ], [ -127.089844, -73.428424 ], [ -126.914062, -73.428424 ], [ -126.914062, -73.327858 ], [ -126.738281, -73.327858 ], [ -126.738281, -73.277353 ], [ -126.386719, -73.277353 ], [ -126.386719, -73.327858 ], [ -126.210938, -73.327858 ], [ -126.210938, -73.378215 ], [ -125.859375, -73.378215 ], [ -125.859375, -73.428424 ], [ -125.683594, -73.428424 ], [ -125.683594, -73.478485 ], [ -125.507812, -73.478485 ], [ -125.507812, -73.528399 ], [ -125.332031, -73.528399 ], [ -125.332031, -73.578167 ], [ -125.156250, -73.578167 ], [ -125.156250, -73.627789 ], [ -124.980469, -73.627789 ], [ -124.980469, -73.677264 ], [ -124.804688, -73.677264 ], [ -124.804688, -73.726595 ], [ -124.628906, -73.726595 ], [ -124.628906, -73.775780 ], [ -124.453125, -73.775780 ], [ -124.453125, -73.824820 ] ] ], [ [ [ -101.601562, -71.691293 ], [ -101.601562, -71.746432 ], [ -101.250000, -71.746432 ], [ -101.250000, -71.801410 ], [ -100.722656, -71.801410 ], [ -100.722656, -71.856229 ], [ -99.843750, -71.856229 ], [ -99.843750, -71.910888 ], [ -98.964844, -71.910888 ], [ -98.964844, -71.965388 ], [ -98.613281, -71.965388 ], [ -98.613281, -72.019729 ], [ -98.261719, -72.019729 ], [ -98.261719, -72.073911 ], [ -97.558594, -72.073911 ], [ -97.558594, -72.019729 ], [ -97.031250, -72.019729 ], [ -97.031250, -71.965388 ], [ -96.855469, -71.965388 ], [ -96.855469, -72.073911 ], [ -96.679688, -72.073911 ], [ -96.679688, -72.181804 ], [ -96.503906, -72.181804 ], [ -96.503906, -72.342464 ], [ -96.328125, -72.342464 ], [ -96.328125, -72.448792 ], [ -96.152344, -72.448792 ], [ -96.152344, -72.501722 ], [ -96.679688, -72.501722 ], [ -96.679688, -72.448792 ], [ -97.558594, -72.448792 ], [ -97.558594, -72.501722 ], [ -98.964844, -72.501722 ], [ -98.964844, -72.448792 ], [ -100.019531, -72.448792 ], [ -100.019531, -72.501722 ], [ -100.898438, -72.501722 ], [ -100.898438, -72.448792 ], [ -101.250000, -72.448792 ], [ -101.250000, -72.395706 ], [ -101.425781, -72.395706 ], [ -101.425781, -72.342464 ], [ -101.777344, -72.342464 ], [ -101.777344, -72.235514 ], [ -101.953125, -72.235514 ], [ -101.953125, -72.127936 ], [ -102.128906, -72.127936 ], [ -102.128906, -72.019729 ], [ -102.304688, -72.019729 ], [ -102.304688, -71.910888 ], [ -102.128906, -71.910888 ], [ -102.128906, -71.801410 ], [ -101.953125, -71.801410 ], [ -101.953125, -71.746432 ], [ -101.777344, -71.746432 ], [ -101.777344, -71.691293 ], [ -101.601562, -71.691293 ] ] ], [ [ [ -124.453125, -73.824820 ], [ -124.277344, -73.824820 ], [ -124.277344, -73.873717 ], [ -124.453125, -73.873717 ], [ -124.453125, -73.824820 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.607120 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.402163 ], [ -135.703125, -74.402163 ], [ -135.703125, -74.354828 ], [ -135.527344, -74.354828 ], [ -135.527344, -74.307353 ], [ -135.351562, -74.307353 ], [ -135.351562, -74.259738 ], [ -135.175781, -74.259738 ], [ -135.175781, -74.307353 ], [ -134.824219, -74.307353 ], [ -134.824219, -74.354828 ], [ -134.296875, -74.354828 ], [ -134.296875, -74.402163 ], [ -133.417969, -74.402163 ], [ -133.417969, -74.354828 ], [ -132.890625, -74.354828 ], [ -132.890625, -74.307353 ], [ -132.539062, -74.307353 ], [ -132.539062, -74.259738 ], [ -132.363281, -74.259738 ], [ -132.363281, -74.307353 ], [ -132.011719, -74.307353 ], [ -132.011719, -74.354828 ], [ -131.660156, -74.354828 ], [ -131.660156, -74.402163 ], [ -131.308594, -74.402163 ], [ -131.308594, -74.449358 ], [ -129.375000, -74.449358 ], [ -129.375000, -74.402163 ], [ -128.847656, -74.402163 ], [ -128.847656, -74.354828 ], [ -128.496094, -74.354828 ], [ -128.496094, -74.307353 ], [ -128.144531, -74.307353 ], [ -128.144531, -74.354828 ], [ -127.441406, -74.354828 ], [ -127.441406, -74.402163 ], [ -126.738281, -74.402163 ], [ -126.738281, -74.449358 ], [ -126.035156, -74.449358 ], [ -126.035156, -74.496413 ], [ -124.628906, -74.496413 ], [ -124.628906, -74.449358 ], [ -123.574219, -74.449358 ], [ -123.574219, -74.496413 ], [ -120.234375, -74.496413 ], [ -120.234375, -74.449358 ], [ -119.531250, -74.449358 ], [ -119.531250, -74.402163 ], [ -119.355469, -74.402163 ], [ -119.355469, -74.307353 ], [ -119.179688, -74.307353 ], [ -119.179688, -74.259738 ], [ -119.003906, -74.259738 ], [ -119.003906, -74.211983 ], [ -118.828125, -74.211983 ], [ -118.828125, -74.164085 ], [ -118.476562, -74.164085 ], [ -118.476562, -74.116047 ], [ -118.125000, -74.116047 ], [ -118.125000, -74.067866 ], [ -117.773438, -74.067866 ], [ -117.773438, -74.019543 ], [ -117.597656, -74.019543 ], [ -117.597656, -74.067866 ], [ -117.246094, -74.067866 ], [ -117.246094, -74.116047 ], [ -116.894531, -74.116047 ], [ -116.894531, -74.164085 ], [ -116.542969, -74.164085 ], [ -116.542969, -74.211983 ], [ -116.015625, -74.211983 ], [ -116.015625, -74.164085 ], [ -115.664062, -74.164085 ], [ -115.664062, -74.116047 ], [ -115.312500, -74.116047 ], [ -115.312500, -74.067866 ], [ -114.960938, -74.067866 ], [ -114.960938, -73.971078 ], [ -114.785156, -73.971078 ], [ -114.785156, -73.922469 ], [ -114.609375, -73.922469 ], [ -114.609375, -73.873717 ], [ -114.433594, -73.873717 ], [ -114.433594, -73.775780 ], [ -114.257812, -73.775780 ], [ -114.257812, -73.726595 ], [ -113.906250, -73.726595 ], [ -113.906250, -73.824820 ], [ -113.730469, -73.824820 ], [ -113.730469, -73.922469 ], [ -113.554688, -73.922469 ], [ -113.554688, -74.019543 ], [ -113.378906, -74.019543 ], [ -113.378906, -74.116047 ], [ -113.203125, -74.116047 ], [ -113.203125, -74.307353 ], [ -113.027344, -74.307353 ], [ -113.027344, -74.402163 ], [ -112.851562, -74.402163 ], [ -112.851562, -74.496413 ], [ -112.675781, -74.496413 ], [ -112.675781, -74.590108 ], [ -112.500000, -74.590108 ], [ -112.500000, -74.683250 ], [ -112.148438, -74.683250 ], [ -112.148438, -74.636748 ], [ -111.972656, -74.636748 ], [ -111.972656, -74.590108 ], [ -111.796875, -74.590108 ], [ -111.796875, -74.543330 ], [ -111.621094, -74.543330 ], [ -111.621094, -74.496413 ], [ -111.445312, -74.496413 ], [ -111.445312, -74.449358 ], [ -111.093750, -74.449358 ], [ -111.093750, -74.496413 ], [ -110.917969, -74.496413 ], [ -110.917969, -74.590108 ], [ -110.742188, -74.590108 ], [ -110.742188, -74.636748 ], [ -110.566406, -74.636748 ], [ -110.566406, -74.683250 ], [ -110.390625, -74.683250 ], [ -110.390625, -74.775843 ], [ -110.039062, -74.775843 ], [ -110.039062, -74.821934 ], [ -109.335938, -74.821934 ], [ -109.335938, -74.867889 ], [ -108.808594, -74.867889 ], [ -108.808594, -74.913708 ], [ -108.632812, -74.913708 ], [ -108.632812, -74.959392 ], [ -108.457031, -74.959392 ], [ -108.457031, -75.004940 ], [ -108.105469, -75.004940 ], [ -108.105469, -75.050354 ], [ -107.929688, -75.050354 ], [ -107.929688, -75.095633 ], [ -107.753906, -75.095633 ], [ -107.753906, -75.140778 ], [ -106.699219, -75.140778 ], [ -106.699219, -75.095633 ], [ -105.996094, -75.095633 ], [ -105.996094, -75.050354 ], [ -105.644531, -75.050354 ], [ -105.644531, -75.004940 ], [ -105.292969, -75.004940 ], [ -105.292969, -74.959392 ], [ -104.941406, -74.959392 ], [ -104.941406, -74.913708 ], [ -104.414062, -74.913708 ], [ -104.414062, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.004940 ], [ -103.007812, -75.004940 ], [ -103.007812, -75.050354 ], [ -102.480469, -75.050354 ], [ -102.480469, -75.095633 ], [ -102.128906, -75.095633 ], [ -102.128906, -75.140778 ], [ -101.777344, -75.140778 ], [ -101.777344, -75.185789 ], [ -101.425781, -75.185789 ], [ -101.425781, -75.230667 ], [ -101.074219, -75.230667 ], [ -101.074219, -75.275413 ], [ -100.722656, -75.275413 ], [ -100.722656, -75.230667 ], [ -100.546875, -75.230667 ], [ -100.546875, -75.095633 ], [ -100.371094, -75.095633 ], [ -100.371094, -74.959392 ], [ -100.195312, -74.959392 ], [ -100.195312, -74.821934 ], [ -100.371094, -74.821934 ], [ -100.371094, -74.729615 ], [ -100.546875, -74.729615 ], [ -100.546875, -74.636748 ], [ -100.722656, -74.636748 ], [ -100.722656, -74.543330 ], [ -100.898438, -74.543330 ], [ -100.898438, -74.449358 ], [ -101.074219, -74.449358 ], [ -101.074219, -74.259738 ], [ -101.250000, -74.259738 ], [ -101.250000, -74.164085 ], [ -101.777344, -74.164085 ], [ -101.777344, -74.116047 ], [ -102.480469, -74.116047 ], [ -102.480469, -74.067866 ], [ -102.656250, -74.067866 ], [ -102.656250, -74.019543 ], [ -102.832031, -74.019543 ], [ -102.832031, -73.922469 ], [ -103.007812, -73.922469 ], [ -103.007812, -73.824820 ], [ -103.183594, -73.824820 ], [ -103.183594, -73.528399 ], [ -103.359375, -73.528399 ], [ -103.359375, -73.175897 ], [ -103.535156, -73.175897 ], [ -103.535156, -72.816074 ], [ -103.710938, -72.816074 ], [ -103.710938, -72.659588 ], [ -103.359375, -72.659588 ], [ -103.359375, -72.711903 ], [ -102.480469, -72.711903 ], [ -102.480469, -72.764065 ], [ -100.898438, -72.764065 ], [ -100.898438, -72.711903 ], [ -100.195312, -72.711903 ], [ -100.195312, -72.764065 ], [ -99.843750, -72.764065 ], [ -99.843750, -72.816074 ], [ -99.492188, -72.816074 ], [ -99.492188, -72.867930 ], [ -99.140625, -72.867930 ], [ -99.140625, -72.919635 ], [ -98.964844, -72.919635 ], [ -98.964844, -72.971189 ], [ -98.789062, -72.971189 ], [ -98.789062, -73.022592 ], [ -98.613281, -73.022592 ], [ -98.613281, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.175897 ], [ -98.261719, -73.175897 ], [ -98.261719, -73.277353 ], [ -98.085938, -73.277353 ], [ -98.085938, -73.378215 ], [ -97.910156, -73.378215 ], [ -97.910156, -73.478485 ], [ -97.734375, -73.478485 ], [ -97.734375, -73.528399 ], [ -97.207031, -73.528399 ], [ -97.207031, -73.578167 ], [ -95.976562, -73.578167 ], [ -95.976562, -73.528399 ], [ -95.273438, -73.528399 ], [ -95.273438, -73.478485 ], [ -94.746094, -73.478485 ], [ -94.746094, -73.428424 ], [ -94.394531, -73.428424 ], [ -94.394531, -73.378215 ], [ -94.042969, -73.378215 ], [ -94.042969, -73.327858 ], [ -93.691406, -73.327858 ], [ -93.691406, -73.277353 ], [ -93.339844, -73.277353 ], [ -93.339844, -73.226700 ], [ -92.988281, -73.226700 ], [ -92.988281, -73.175897 ], [ -92.636719, -73.175897 ], [ -92.636719, -73.124945 ], [ -92.460938, -73.124945 ], [ -92.460938, -73.175897 ], [ -92.285156, -73.175897 ], [ -92.285156, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.277353 ], [ -91.933594, -73.277353 ], [ -91.933594, -73.327858 ], [ -91.757812, -73.327858 ], [ -91.757812, -73.378215 ], [ -91.054688, -73.378215 ], [ -91.054688, -73.327858 ], [ -90.351562, -73.327858 ], [ -90.351562, -73.277353 ], [ -90.175781, -73.277353 ], [ -90.175781, -73.226700 ], [ -90.000000, -73.226700 ], [ -90.000000, -73.073844 ], [ -89.824219, -73.073844 ], [ -89.824219, -72.919635 ], [ -89.648438, -72.919635 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ] ] ], [ [ [ -122.167969, -73.327858 ], [ -122.167969, -73.378215 ], [ -121.816406, -73.378215 ], [ -121.816406, -73.428424 ], [ -121.464844, -73.428424 ], [ -121.464844, -73.478485 ], [ -121.113281, -73.478485 ], [ -121.113281, -73.528399 ], [ -120.761719, -73.528399 ], [ -120.761719, -73.578167 ], [ -120.410156, -73.578167 ], [ -120.410156, -73.627789 ], [ -119.707031, -73.627789 ], [ -119.707031, -73.578167 ], [ -119.355469, -73.578167 ], [ -119.355469, -73.528399 ], [ -119.003906, -73.528399 ], [ -119.003906, -73.478485 ], [ -118.828125, -73.478485 ], [ -118.828125, -73.578167 ], [ -119.003906, -73.578167 ], [ -119.003906, -73.677264 ], [ -119.179688, -73.677264 ], [ -119.179688, -73.775780 ], [ -119.355469, -73.775780 ], [ -119.355469, -73.873717 ], [ -119.531250, -73.873717 ], [ -119.531250, -73.922469 ], [ -119.707031, -73.922469 ], [ -119.707031, -73.971078 ], [ -119.882812, -73.971078 ], [ -119.882812, -74.019543 ], [ -120.058594, -74.019543 ], [ -120.058594, -74.067866 ], [ -120.761719, -74.067866 ], [ -120.761719, -74.019543 ], [ -121.464844, -74.019543 ], [ -121.464844, -73.971078 ], [ -121.816406, -73.971078 ], [ -121.816406, -73.922469 ], [ -121.992188, -73.922469 ], [ -121.992188, -73.873717 ], [ -122.167969, -73.873717 ], [ -122.167969, -73.775780 ], [ -122.343750, -73.775780 ], [ -122.343750, -73.726595 ], [ -122.519531, -73.726595 ], [ -122.519531, -73.677264 ], [ -122.695312, -73.677264 ], [ -122.695312, -73.478485 ], [ -122.519531, -73.478485 ], [ -122.519531, -73.327858 ], [ -122.167969, -73.327858 ] ] ], [ [ [ -124.453125, -73.824820 ], [ -125.156250, -73.824820 ], [ -125.156250, -73.775780 ], [ -125.859375, -73.775780 ], [ -125.859375, -73.726595 ], [ -126.210938, -73.726595 ], [ -126.210938, -73.677264 ], [ -126.562500, -73.677264 ], [ -126.562500, -73.627789 ], [ -126.738281, -73.627789 ], [ -126.738281, -73.578167 ], [ -126.914062, -73.578167 ], [ -126.914062, -73.528399 ], [ -127.265625, -73.528399 ], [ -127.265625, -73.478485 ], [ -127.441406, -73.478485 ], [ -127.441406, -73.428424 ], [ -127.265625, -73.428424 ], [ -127.265625, -73.378215 ], [ -127.089844, -73.378215 ], [ -127.089844, -73.327858 ], [ -126.738281, -73.327858 ], [ -126.738281, -73.277353 ], [ -126.386719, -73.277353 ], [ -126.386719, -73.327858 ], [ -126.210938, -73.327858 ], [ -126.210938, -73.378215 ], [ -126.035156, -73.378215 ], [ -126.035156, -73.428424 ], [ -125.859375, -73.428424 ], [ -125.859375, -73.478485 ], [ -125.683594, -73.478485 ], [ -125.683594, -73.528399 ], [ -125.507812, -73.528399 ], [ -125.507812, -73.578167 ], [ -125.332031, -73.578167 ], [ -125.332031, -73.627789 ], [ -125.156250, -73.627789 ], [ -125.156250, -73.677264 ], [ -124.804688, -73.677264 ], [ -124.804688, -73.726595 ], [ -124.628906, -73.726595 ], [ -124.628906, -73.775780 ], [ -124.453125, -73.775780 ], [ -124.453125, -73.824820 ] ] ], [ [ [ -101.601562, -71.691293 ], [ -101.601562, -71.746432 ], [ -100.898438, -71.746432 ], [ -100.898438, -71.801410 ], [ -100.371094, -71.801410 ], [ -100.371094, -71.856229 ], [ -99.667969, -71.856229 ], [ -99.667969, -71.910888 ], [ -98.964844, -71.910888 ], [ -98.964844, -71.965388 ], [ -98.261719, -71.965388 ], [ -98.261719, -72.019729 ], [ -97.558594, -72.019729 ], [ -97.558594, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -71.910888 ], [ -96.855469, -71.910888 ], [ -96.855469, -72.019729 ], [ -96.679688, -72.019729 ], [ -96.679688, -72.235514 ], [ -96.503906, -72.235514 ], [ -96.503906, -72.448792 ], [ -96.328125, -72.448792 ], [ -96.328125, -72.501722 ], [ -96.679688, -72.501722 ], [ -96.679688, -72.448792 ], [ -97.031250, -72.448792 ], [ -97.031250, -72.395706 ], [ -97.558594, -72.395706 ], [ -97.558594, -72.448792 ], [ -98.964844, -72.448792 ], [ -98.964844, -72.395706 ], [ -99.667969, -72.395706 ], [ -99.667969, -72.448792 ], [ -100.371094, -72.448792 ], [ -100.371094, -72.501722 ], [ -101.074219, -72.501722 ], [ -101.074219, -72.448792 ], [ -101.425781, -72.448792 ], [ -101.425781, -72.395706 ], [ -101.601562, -72.395706 ], [ -101.601562, -72.342464 ], [ -101.953125, -72.342464 ], [ -101.953125, -72.235514 ], [ -102.128906, -72.235514 ], [ -102.128906, -72.073911 ], [ -102.304688, -72.073911 ], [ -102.304688, -71.965388 ], [ -102.480469, -71.965388 ], [ -102.480469, -71.856229 ], [ -102.304688, -71.856229 ], [ -102.304688, -71.801410 ], [ -101.953125, -71.801410 ], [ -101.953125, -71.746432 ], [ -101.777344, -71.746432 ], [ -101.777344, -71.691293 ], [ -101.601562, -71.691293 ] ] ], [ [ [ -124.453125, -73.824820 ], [ -124.277344, -73.824820 ], [ -124.277344, -73.873717 ], [ -124.453125, -73.873717 ], [ -124.453125, -73.824820 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.297018 ], [ -89.296875, 30.297018 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.993002 ], [ -89.472656, 29.993002 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.000000, 29.228890 ], [ -90.000000, 29.075375 ], [ -91.054688, 29.075375 ], [ -91.054688, 29.228890 ], [ -91.230469, 29.228890 ], [ -91.230469, 29.382175 ], [ -91.406250, 29.382175 ], [ -91.406250, 29.535230 ], [ -91.582031, 29.535230 ], [ -91.582031, 29.688053 ], [ -91.933594, 29.688053 ], [ -91.933594, 29.535230 ], [ -92.812500, 29.535230 ], [ -92.812500, 29.688053 ], [ -93.164062, 29.688053 ], [ -93.164062, 29.840644 ], [ -93.339844, 29.840644 ], [ -93.339844, 29.688053 ], [ -94.218750, 29.688053 ], [ -94.218750, 29.535230 ], [ -94.746094, 29.535230 ], [ -94.746094, 29.382175 ], [ -94.921875, 29.382175 ], [ -94.921875, 29.228890 ], [ -95.097656, 29.228890 ], [ -95.097656, 29.075375 ], [ -95.273438, 29.075375 ], [ -95.273438, 28.921631 ], [ -95.449219, 28.921631 ], [ -95.449219, 28.767659 ], [ -95.625000, 28.767659 ], [ -95.625000, 28.613459 ], [ -95.976562, 28.613459 ], [ -95.976562, 28.459033 ], [ -96.328125, 28.459033 ], [ -96.328125, 28.304381 ], [ -96.679688, 28.304381 ], [ -96.679688, 28.149503 ], [ -96.855469, 28.149503 ], [ -96.855469, 27.994401 ], [ -97.031250, 27.994401 ], [ -97.031250, 27.839076 ], [ -97.207031, 27.839076 ], [ -97.207031, 27.527758 ], [ -97.382812, 27.527758 ], [ -97.382812, 25.958045 ], [ -97.207031, 25.958045 ], [ -97.207031, 25.799891 ], [ -97.910156, 25.799891 ], [ -97.910156, 25.958045 ], [ -98.261719, 25.958045 ], [ -98.261719, 26.115986 ], [ -98.613281, 26.115986 ], [ -98.613281, 26.273714 ], [ -98.964844, 26.273714 ], [ -98.964844, 26.431228 ], [ -99.140625, 26.431228 ], [ -99.140625, 26.745610 ], [ -99.316406, 26.745610 ], [ -99.316406, 27.215556 ], [ -99.492188, 27.215556 ], [ -99.492188, 27.527758 ], [ -99.667969, 27.527758 ], [ -99.667969, 27.683528 ], [ -99.843750, 27.683528 ], [ -99.843750, 27.839076 ], [ -100.019531, 27.839076 ], [ -100.019531, 27.994401 ], [ -100.195312, 27.994401 ], [ -100.195312, 28.459033 ], [ -100.371094, 28.459033 ], [ -100.371094, 28.767659 ], [ -100.546875, 28.767659 ], [ -100.546875, 29.075375 ], [ -100.722656, 29.075375 ], [ -100.722656, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 29.382175 ], [ -101.074219, 29.382175 ], [ -101.074219, 29.535230 ], [ -101.425781, 29.535230 ], [ -101.425781, 29.688053 ], [ -101.601562, 29.688053 ], [ -101.601562, 29.840644 ], [ -101.953125, 29.840644 ], [ -101.953125, 29.688053 ], [ -102.480469, 29.688053 ], [ -102.480469, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 29.382175 ], [ -102.832031, 29.382175 ], [ -102.832031, 29.075375 ], [ -103.007812, 29.075375 ], [ -103.007812, 28.921631 ], [ -103.535156, 28.921631 ], [ -103.535156, 29.075375 ], [ -103.886719, 29.075375 ], [ -103.886719, 29.228890 ], [ -104.062500, 29.228890 ], [ -104.062500, 29.382175 ], [ -104.414062, 29.382175 ], [ -104.414062, 29.688053 ], [ -104.589844, 29.688053 ], [ -104.589844, 29.993002 ], [ -104.765625, 29.993002 ], [ -104.765625, 30.145127 ], [ -104.941406, 30.145127 ], [ -104.941406, 30.448674 ], [ -105.117188, 30.448674 ], [ -105.117188, 30.600094 ], [ -105.292969, 30.600094 ], [ -105.292969, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 30.902225 ], [ -105.644531, 30.902225 ], [ -105.644531, 31.052934 ], [ -105.820312, 31.052934 ], [ -105.820312, 31.203405 ], [ -106.171875, 31.203405 ], [ -106.171875, 31.353637 ], [ -106.347656, 31.353637 ], [ -106.347656, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.445312, 31.353637 ], [ -111.445312, 31.503629 ], [ -111.796875, 31.503629 ], [ -111.796875, 31.653381 ], [ -112.324219, 31.653381 ], [ -112.324219, 31.802893 ], [ -112.851562, 31.802893 ], [ -112.851562, 31.952162 ], [ -113.203125, 31.952162 ], [ -113.203125, 32.101190 ], [ -113.730469, 32.101190 ], [ -113.730469, 32.249974 ], [ -114.257812, 32.249974 ], [ -114.257812, 32.398516 ], [ -114.609375, 32.398516 ], [ -114.609375, 32.546813 ], [ -114.785156, 32.546813 ], [ -114.785156, 32.694866 ], [ -115.312500, 32.694866 ], [ -115.312500, 32.546813 ], [ -117.070312, 32.546813 ], [ -117.070312, 32.694866 ], [ -117.246094, 32.694866 ], [ -117.246094, 32.990236 ], [ -117.421875, 32.990236 ], [ -117.421875, 33.137551 ], [ -117.597656, 33.137551 ], [ -117.597656, 33.284620 ], [ -117.773438, 33.284620 ], [ -117.773438, 33.431441 ], [ -117.949219, 33.431441 ], [ -117.949219, 33.578015 ], [ -118.300781, 33.578015 ], [ -118.300781, 33.724340 ], [ -118.476562, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.179688, 34.016242 ], [ -119.179688, 34.161818 ], [ -119.355469, 34.161818 ], [ -119.355469, 34.307144 ], [ -120.058594, 34.307144 ], [ -120.058594, 34.452218 ], [ -120.585938, 34.452218 ], [ -120.585938, 34.885931 ], [ -120.761719, 34.885931 ], [ -120.761719, 35.173808 ], [ -120.937500, 35.173808 ], [ -120.937500, 35.460670 ], [ -121.113281, 35.460670 ], [ -121.113281, 35.603719 ], [ -121.289062, 35.603719 ], [ -121.289062, 35.746512 ], [ -121.464844, 35.746512 ], [ -121.464844, 36.031332 ], [ -121.640625, 36.031332 ], [ -121.640625, 36.315125 ], [ -121.816406, 36.315125 ], [ -121.816406, 36.597889 ], [ -121.992188, 36.597889 ], [ -121.992188, 36.879621 ], [ -122.167969, 36.879621 ], [ -122.167969, 37.160317 ], [ -122.343750, 37.160317 ], [ -122.343750, 37.439974 ], [ -122.519531, 37.439974 ], [ -122.519531, 37.718590 ], [ -122.695312, 37.718590 ], [ -122.695312, 37.996163 ], [ -122.871094, 37.996163 ], [ -122.871094, 38.134557 ], [ -123.046875, 38.134557 ], [ -123.046875, 38.272689 ], [ -123.222656, 38.272689 ], [ -123.222656, 38.548165 ], [ -123.398438, 38.548165 ], [ -123.398438, 38.685510 ], [ -123.574219, 38.685510 ], [ -123.574219, 38.822591 ], [ -123.750000, 38.822591 ], [ -123.750000, 39.368279 ], [ -123.925781, 39.368279 ], [ -123.925781, 39.774769 ], [ -124.101562, 39.774769 ], [ -124.101562, 40.044438 ], [ -124.277344, 40.044438 ], [ -124.277344, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 40.446947 ], [ -124.277344, 40.446947 ], [ -124.277344, 40.847060 ], [ -124.101562, 40.847060 ], [ -124.101562, 41.376809 ], [ -124.277344, 41.376809 ], [ -124.277344, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.297018 ], [ -89.648438, 30.297018 ], [ -89.648438, 30.145127 ], [ -89.472656, 30.145127 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -91.054688, 29.228890 ], [ -91.054688, 29.382175 ], [ -91.406250, 29.382175 ], [ -91.406250, 29.535230 ], [ -91.757812, 29.535230 ], [ -91.757812, 29.688053 ], [ -93.164062, 29.688053 ], [ -93.164062, 29.840644 ], [ -94.042969, 29.840644 ], [ -94.042969, 29.688053 ], [ -94.394531, 29.688053 ], [ -94.394531, 29.535230 ], [ -94.746094, 29.535230 ], [ -94.746094, 29.382175 ], [ -94.921875, 29.382175 ], [ -94.921875, 29.228890 ], [ -95.097656, 29.228890 ], [ -95.097656, 29.075375 ], [ -95.273438, 29.075375 ], [ -95.273438, 28.921631 ], [ -95.449219, 28.921631 ], [ -95.449219, 28.767659 ], [ -95.800781, 28.767659 ], [ -95.800781, 28.613459 ], [ -96.328125, 28.613459 ], [ -96.328125, 28.459033 ], [ -96.679688, 28.459033 ], [ -96.679688, 28.304381 ], [ -96.855469, 28.304381 ], [ -96.855469, 28.149503 ], [ -97.031250, 28.149503 ], [ -97.031250, 27.839076 ], [ -97.207031, 27.839076 ], [ -97.207031, 27.683528 ], [ -97.382812, 27.683528 ], [ -97.382812, 26.115986 ], [ -97.207031, 26.115986 ], [ -97.207031, 25.958045 ], [ -98.085938, 25.958045 ], [ -98.085938, 26.115986 ], [ -98.613281, 26.115986 ], [ -98.613281, 26.273714 ], [ -98.964844, 26.273714 ], [ -98.964844, 26.431228 ], [ -99.140625, 26.431228 ], [ -99.140625, 26.588527 ], [ -99.316406, 26.588527 ], [ -99.316406, 27.059126 ], [ -99.492188, 27.059126 ], [ -99.492188, 27.371767 ], [ -99.667969, 27.371767 ], [ -99.667969, 27.683528 ], [ -99.843750, 27.683528 ], [ -99.843750, 27.839076 ], [ -100.019531, 27.839076 ], [ -100.019531, 27.994401 ], [ -100.195312, 27.994401 ], [ -100.195312, 28.304381 ], [ -100.371094, 28.304381 ], [ -100.371094, 28.613459 ], [ -100.546875, 28.613459 ], [ -100.546875, 28.767659 ], [ -100.722656, 28.767659 ], [ -100.722656, 29.075375 ], [ -100.898438, 29.075375 ], [ -100.898438, 29.228890 ], [ -101.074219, 29.228890 ], [ -101.074219, 29.382175 ], [ -101.250000, 29.382175 ], [ -101.250000, 29.535230 ], [ -101.601562, 29.535230 ], [ -101.601562, 29.688053 ], [ -101.777344, 29.688053 ], [ -101.777344, 29.840644 ], [ -102.480469, 29.840644 ], [ -102.480469, 29.688053 ], [ -102.656250, 29.688053 ], [ -102.656250, 29.535230 ], [ -102.832031, 29.535230 ], [ -102.832031, 29.228890 ], [ -103.007812, 29.228890 ], [ -103.007812, 29.075375 ], [ -103.535156, 29.075375 ], [ -103.535156, 29.228890 ], [ -103.886719, 29.228890 ], [ -103.886719, 29.382175 ], [ -104.238281, 29.382175 ], [ -104.238281, 29.535230 ], [ -104.589844, 29.535230 ], [ -104.589844, 29.840644 ], [ -104.765625, 29.840644 ], [ -104.765625, 30.297018 ], [ -104.941406, 30.297018 ], [ -104.941406, 30.600094 ], [ -105.117188, 30.600094 ], [ -105.117188, 30.751278 ], [ -105.292969, 30.751278 ], [ -105.292969, 30.902225 ], [ -105.468750, 30.902225 ], [ -105.468750, 31.052934 ], [ -105.644531, 31.052934 ], [ -105.644531, 31.203405 ], [ -105.820312, 31.203405 ], [ -105.820312, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.503629 ], [ -106.347656, 31.503629 ], [ -106.347656, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.445312, 31.353637 ], [ -111.445312, 31.503629 ], [ -111.796875, 31.503629 ], [ -111.796875, 31.653381 ], [ -112.324219, 31.653381 ], [ -112.324219, 31.802893 ], [ -112.851562, 31.802893 ], [ -112.851562, 31.952162 ], [ -113.203125, 31.952162 ], [ -113.203125, 32.101190 ], [ -113.730469, 32.101190 ], [ -113.730469, 32.249974 ], [ -114.257812, 32.249974 ], [ -114.257812, 32.398516 ], [ -114.785156, 32.398516 ], [ -114.785156, 32.546813 ], [ -114.960938, 32.546813 ], [ -114.960938, 32.694866 ], [ -114.785156, 32.694866 ], [ -114.785156, 32.842674 ], [ -115.312500, 32.842674 ], [ -115.312500, 32.694866 ], [ -116.542969, 32.694866 ], [ -116.542969, 32.546813 ], [ -117.246094, 32.546813 ], [ -117.246094, 32.842674 ], [ -117.421875, 32.842674 ], [ -117.421875, 33.137551 ], [ -117.597656, 33.137551 ], [ -117.597656, 33.431441 ], [ -117.773438, 33.431441 ], [ -117.773438, 33.578015 ], [ -117.949219, 33.578015 ], [ -117.949219, 33.724340 ], [ -118.300781, 33.724340 ], [ -118.300781, 33.870416 ], [ -118.476562, 33.870416 ], [ -118.476562, 34.016242 ], [ -118.652344, 34.016242 ], [ -118.652344, 34.161818 ], [ -119.355469, 34.161818 ], [ -119.355469, 34.307144 ], [ -119.531250, 34.307144 ], [ -119.531250, 34.452218 ], [ -120.585938, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 34.597042 ], [ -120.761719, 35.173808 ], [ -120.937500, 35.173808 ], [ -120.937500, 35.317366 ], [ -121.113281, 35.317366 ], [ -121.113281, 35.460670 ], [ -121.289062, 35.460670 ], [ -121.289062, 35.746512 ], [ -121.464844, 35.746512 ], [ -121.464844, 35.889050 ], [ -121.640625, 35.889050 ], [ -121.640625, 36.031332 ], [ -121.816406, 36.031332 ], [ -121.816406, 36.315125 ], [ -121.992188, 36.315125 ], [ -121.992188, 36.597889 ], [ -122.167969, 36.597889 ], [ -122.167969, 36.879621 ], [ -122.343750, 36.879621 ], [ -122.343750, 37.160317 ], [ -122.519531, 37.160317 ], [ -122.519531, 37.439974 ], [ -122.695312, 37.439974 ], [ -122.695312, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.857507 ], [ -122.695312, 37.857507 ], [ -122.695312, 37.996163 ], [ -123.046875, 37.996163 ], [ -123.046875, 38.134557 ], [ -123.222656, 38.134557 ], [ -123.222656, 38.410558 ], [ -123.398438, 38.410558 ], [ -123.398438, 38.548165 ], [ -123.574219, 38.548165 ], [ -123.574219, 38.822591 ], [ -123.750000, 38.822591 ], [ -123.750000, 39.368279 ], [ -123.925781, 39.368279 ], [ -123.925781, 39.774769 ], [ -124.101562, 39.774769 ], [ -124.101562, 40.044438 ], [ -124.277344, 40.044438 ], [ -124.277344, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 40.713956 ], [ -124.277344, 40.713956 ], [ -124.277344, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.785156, 32.694866 ], [ -114.785156, 32.546813 ], [ -114.609375, 32.546813 ], [ -114.609375, 32.398516 ], [ -114.257812, 32.398516 ], [ -114.257812, 32.249974 ], [ -113.730469, 32.249974 ], [ -113.730469, 32.101190 ], [ -113.203125, 32.101190 ], [ -113.203125, 31.952162 ], [ -112.851562, 31.952162 ], [ -112.851562, 31.802893 ], [ -112.324219, 31.802893 ], [ -112.324219, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.503629 ], [ -111.445312, 31.503629 ], [ -111.445312, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -106.523438, 31.653381 ], [ -106.347656, 31.653381 ], [ -106.347656, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.203405 ], [ -105.820312, 31.203405 ], [ -105.820312, 31.052934 ], [ -105.644531, 31.052934 ], [ -105.644531, 30.902225 ], [ -105.468750, 30.902225 ], [ -105.468750, 30.751278 ], [ -105.292969, 30.751278 ], [ -105.292969, 30.600094 ], [ -105.117188, 30.600094 ], [ -105.117188, 30.448674 ], [ -104.941406, 30.448674 ], [ -104.941406, 30.145127 ], [ -104.765625, 30.145127 ], [ -104.765625, 29.993002 ], [ -104.589844, 29.993002 ], [ -104.589844, 29.688053 ], [ -104.414062, 29.688053 ], [ -104.414062, 29.382175 ], [ -104.062500, 29.382175 ], [ -104.062500, 29.228890 ], [ -103.886719, 29.228890 ], [ -103.886719, 29.075375 ], [ -103.535156, 29.075375 ], [ -103.535156, 28.921631 ], [ -103.007812, 28.921631 ], [ -103.007812, 29.075375 ], [ -102.832031, 29.075375 ], [ -102.832031, 29.382175 ], [ -102.656250, 29.382175 ], [ -102.656250, 29.535230 ], [ -102.480469, 29.535230 ], [ -102.480469, 29.688053 ], [ -101.953125, 29.688053 ], [ -101.953125, 29.840644 ], [ -101.601562, 29.840644 ], [ -101.601562, 29.688053 ], [ -101.425781, 29.688053 ], [ -101.425781, 29.535230 ], [ -101.074219, 29.535230 ], [ -101.074219, 29.382175 ], [ -100.898438, 29.382175 ], [ -100.898438, 29.228890 ], [ -100.722656, 29.228890 ], [ -100.722656, 29.075375 ], [ -100.546875, 29.075375 ], [ -100.546875, 28.767659 ], [ -100.371094, 28.767659 ], [ -100.371094, 28.459033 ], [ -100.195312, 28.459033 ], [ -100.195312, 27.994401 ], [ -100.019531, 27.994401 ], [ -100.019531, 27.839076 ], [ -99.843750, 27.839076 ], [ -99.843750, 27.683528 ], [ -99.667969, 27.683528 ], [ -99.667969, 27.527758 ], [ -99.492188, 27.527758 ], [ -99.492188, 27.215556 ], [ -99.316406, 27.215556 ], [ -99.316406, 26.745610 ], [ -99.140625, 26.745610 ], [ -99.140625, 26.431228 ], [ -98.964844, 26.431228 ], [ -98.964844, 26.273714 ], [ -98.613281, 26.273714 ], [ -98.613281, 26.115986 ], [ -98.261719, 26.115986 ], [ -98.261719, 25.958045 ], [ -97.910156, 25.958045 ], [ -97.910156, 25.799891 ], [ -97.207031, 25.799891 ], [ -97.207031, 25.482951 ], [ -97.382812, 25.482951 ], [ -97.382812, 25.165173 ], [ -97.558594, 25.165173 ], [ -97.558594, 24.527135 ], [ -97.734375, 24.527135 ], [ -97.734375, 22.593726 ], [ -97.910156, 22.593726 ], [ -97.910156, 22.105999 ], [ -97.734375, 22.105999 ], [ -97.734375, 21.779905 ], [ -97.558594, 21.779905 ], [ -97.558594, 21.453069 ], [ -97.382812, 21.453069 ], [ -97.382812, 20.961440 ], [ -97.207031, 20.961440 ], [ -97.207031, 20.468189 ], [ -97.031250, 20.468189 ], [ -97.031250, 20.303418 ], [ -96.855469, 20.303418 ], [ -96.855469, 20.138470 ], [ -96.679688, 20.138470 ], [ -96.679688, 19.973349 ], [ -96.503906, 19.973349 ], [ -96.503906, 19.642588 ], [ -96.328125, 19.642588 ], [ -96.328125, 19.145168 ], [ -96.152344, 19.145168 ], [ -96.152344, 18.812718 ], [ -95.800781, 18.812718 ], [ -95.800781, 18.646245 ], [ -95.273438, 18.646245 ], [ -95.273438, 18.479609 ], [ -94.921875, 18.479609 ], [ -94.921875, 18.312811 ], [ -94.570312, 18.312811 ], [ -94.570312, 18.145852 ], [ -94.042969, 18.145852 ], [ -94.042969, 18.312811 ], [ -93.691406, 18.312811 ], [ -93.691406, 18.479609 ], [ -92.285156, 18.479609 ], [ -92.285156, 18.646245 ], [ -91.582031, 18.646245 ], [ -91.582031, 18.812718 ], [ -91.230469, 18.812718 ], [ -91.230469, 18.979026 ], [ -90.878906, 18.979026 ], [ -90.878906, 19.145168 ], [ -90.703125, 19.145168 ], [ -90.703125, 19.476950 ], [ -90.527344, 19.476950 ], [ -90.527344, 20.797201 ], [ -90.351562, 20.797201 ], [ -90.351562, 20.961440 ], [ -90.000000, 20.961440 ], [ -90.000000, 21.125498 ], [ -89.648438, 21.125498 ], [ -89.648438, 21.289374 ], [ -89.121094, 21.289374 ], [ -89.121094, 17.811456 ], [ -91.054688, 17.811456 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 17.140790 ], [ -91.230469, 17.140790 ], [ -91.230469, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.804541 ], [ -90.878906, 16.804541 ], [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.351562, 16.467695 ], [ -90.351562, 16.299051 ], [ -90.527344, 16.299051 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -91.757812, 15.961329 ], [ -91.933594, 15.961329 ], [ -91.933594, 15.623037 ], [ -92.109375, 15.623037 ], [ -92.109375, 15.284185 ], [ -92.285156, 15.284185 ], [ -92.285156, 15.114553 ], [ -92.109375, 15.114553 ], [ -92.109375, 14.944785 ], [ -92.285156, 14.944785 ], [ -92.285156, 14.604847 ], [ -92.460938, 14.604847 ], [ -92.460938, 14.774883 ], [ -92.636719, 14.774883 ], [ -92.636719, 14.944785 ], [ -92.812500, 14.944785 ], [ -92.812500, 15.114553 ], [ -92.988281, 15.114553 ], [ -92.988281, 15.284185 ], [ -93.164062, 15.284185 ], [ -93.164062, 15.453680 ], [ -93.339844, 15.453680 ], [ -93.339844, 15.623037 ], [ -93.515625, 15.623037 ], [ -93.515625, 15.792254 ], [ -93.867188, 15.792254 ], [ -93.867188, 15.961329 ], [ -94.394531, 15.961329 ], [ -94.394531, 16.130262 ], [ -95.273438, 16.130262 ], [ -95.273438, 15.961329 ], [ -95.625000, 15.961329 ], [ -95.625000, 15.792254 ], [ -96.152344, 15.792254 ], [ -96.152344, 15.623037 ], [ -96.855469, 15.623037 ], [ -96.855469, 15.792254 ], [ -97.207031, 15.792254 ], [ -97.207031, 15.961329 ], [ -97.734375, 15.961329 ], [ -97.734375, 16.130262 ], [ -98.261719, 16.130262 ], [ -98.261719, 16.299051 ], [ -98.613281, 16.299051 ], [ -98.613281, 16.467695 ], [ -98.964844, 16.467695 ], [ -98.964844, 16.636192 ], [ -100.019531, 16.636192 ], [ -100.019531, 16.804541 ], [ -100.371094, 16.804541 ], [ -100.371094, 16.972741 ], [ -100.722656, 16.972741 ], [ -100.722656, 17.140790 ], [ -101.074219, 17.140790 ], [ -101.074219, 17.308688 ], [ -101.425781, 17.308688 ], [ -101.425781, 17.476432 ], [ -101.601562, 17.476432 ], [ -101.601562, 17.644022 ], [ -101.777344, 17.644022 ], [ -101.777344, 17.811456 ], [ -101.953125, 17.811456 ], [ -101.953125, 17.978733 ], [ -102.832031, 17.978733 ], [ -102.832031, 18.145852 ], [ -103.359375, 18.145852 ], [ -103.359375, 18.312811 ], [ -103.710938, 18.312811 ], [ -103.710938, 18.646245 ], [ -103.886719, 18.646245 ], [ -103.886719, 18.812718 ], [ -104.238281, 18.812718 ], [ -104.238281, 18.979026 ], [ -104.589844, 18.979026 ], [ -104.589844, 19.145168 ], [ -104.941406, 19.145168 ], [ -104.941406, 19.311143 ], [ -105.117188, 19.311143 ], [ -105.117188, 19.642588 ], [ -105.292969, 19.642588 ], [ -105.292969, 19.808054 ], [ -105.468750, 19.808054 ], [ -105.468750, 20.138470 ], [ -105.644531, 20.138470 ], [ -105.644531, 20.468189 ], [ -105.468750, 20.468189 ], [ -105.468750, 20.961440 ], [ -105.292969, 20.961440 ], [ -105.292969, 21.453069 ], [ -105.468750, 21.453069 ], [ -105.468750, 21.779905 ], [ -105.644531, 21.779905 ], [ -105.644531, 22.268764 ], [ -105.820312, 22.268764 ], [ -105.820312, 22.593726 ], [ -105.996094, 22.593726 ], [ -105.996094, 22.755921 ], [ -106.171875, 22.755921 ], [ -106.171875, 22.917923 ], [ -106.347656, 22.917923 ], [ -106.347656, 23.241346 ], [ -106.523438, 23.241346 ], [ -106.523438, 23.402765 ], [ -106.699219, 23.402765 ], [ -106.699219, 23.563987 ], [ -106.875000, 23.563987 ], [ -106.875000, 23.725012 ], [ -107.050781, 23.725012 ], [ -107.050781, 23.885838 ], [ -107.226562, 23.885838 ], [ -107.226562, 24.046464 ], [ -107.578125, 24.046464 ], [ -107.578125, 24.206890 ], [ -107.753906, 24.206890 ], [ -107.753906, 24.367114 ], [ -107.929688, 24.367114 ], [ -107.929688, 24.527135 ], [ -108.105469, 24.527135 ], [ -108.105469, 24.846565 ], [ -108.281250, 24.846565 ], [ -108.281250, 25.005973 ], [ -108.457031, 25.005973 ], [ -108.457031, 25.165173 ], [ -108.632812, 25.165173 ], [ -108.632812, 25.324167 ], [ -108.984375, 25.324167 ], [ -108.984375, 25.482951 ], [ -109.335938, 25.482951 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.641526 ], [ -109.511719, 26.115986 ], [ -109.335938, 26.115986 ], [ -109.335938, 26.431228 ], [ -109.511719, 26.431228 ], [ -109.511719, 26.588527 ], [ -109.863281, 26.588527 ], [ -109.863281, 26.745610 ], [ -110.039062, 26.745610 ], [ -110.039062, 26.902477 ], [ -110.214844, 26.902477 ], [ -110.214844, 27.059126 ], [ -110.390625, 27.059126 ], [ -110.390625, 27.527758 ], [ -110.566406, 27.527758 ], [ -110.566406, 27.839076 ], [ -110.917969, 27.839076 ], [ -110.917969, 27.994401 ], [ -111.269531, 27.994401 ], [ -111.269531, 28.149503 ], [ -111.621094, 28.149503 ], [ -111.621094, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.459033 ], [ -111.972656, 28.459033 ], [ -111.972656, 28.767659 ], [ -112.148438, 28.767659 ], [ -112.148438, 29.075375 ], [ -112.324219, 29.075375 ], [ -112.324219, 29.228890 ], [ -112.500000, 29.228890 ], [ -112.500000, 29.535230 ], [ -112.675781, 29.535230 ], [ -112.675781, 29.840644 ], [ -112.851562, 29.840644 ], [ -112.851562, 30.145127 ], [ -113.027344, 30.145127 ], [ -113.027344, 30.448674 ], [ -113.203125, 30.448674 ], [ -113.203125, 31.203405 ], [ -113.554688, 31.203405 ], [ -113.554688, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.503629 ], [ -114.433594, 31.503629 ], [ -114.433594, 31.653381 ], [ -114.785156, 31.653381 ], [ -114.785156, 31.503629 ], [ -114.960938, 31.503629 ], [ -114.960938, 31.052934 ], [ -114.785156, 31.052934 ], [ -114.785156, 30.448674 ], [ -114.609375, 30.448674 ], [ -114.609375, 29.993002 ], [ -114.433594, 29.993002 ], [ -114.433594, 29.688053 ], [ -114.257812, 29.688053 ], [ -114.257812, 29.535230 ], [ -114.082031, 29.535230 ], [ -114.082031, 29.382175 ], [ -113.906250, 29.382175 ], [ -113.906250, 29.228890 ], [ -113.730469, 29.228890 ], [ -113.730469, 29.075375 ], [ -113.554688, 29.075375 ], [ -113.554688, 28.921631 ], [ -113.378906, 28.921631 ], [ -113.378906, 28.767659 ], [ -113.203125, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -113.027344, 28.304381 ], [ -112.851562, 28.304381 ], [ -112.851562, 27.994401 ], [ -112.675781, 27.994401 ], [ -112.675781, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 27.371767 ], [ -112.324219, 27.371767 ], [ -112.324219, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.902477 ], [ -111.972656, 26.902477 ], [ -111.972656, 26.745610 ], [ -111.796875, 26.745610 ], [ -111.796875, 26.588527 ], [ -111.621094, 26.588527 ], [ -111.621094, 26.273714 ], [ -111.445312, 26.273714 ], [ -111.445312, 25.958045 ], [ -111.269531, 25.958045 ], [ -111.269531, 25.641526 ], [ -111.093750, 25.641526 ], [ -111.093750, 25.324167 ], [ -110.917969, 25.324167 ], [ -110.917969, 25.005973 ], [ -110.742188, 25.005973 ], [ -110.742188, 24.367114 ], [ -110.566406, 24.367114 ], [ -110.566406, 24.206890 ], [ -110.214844, 24.206890 ], [ -110.214844, 24.046464 ], [ -109.863281, 24.046464 ], [ -109.863281, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 23.725012 ], [ -109.511719, 23.725012 ], [ -109.511719, 23.402765 ], [ -109.335938, 23.402765 ], [ -109.335938, 23.241346 ], [ -109.511719, 23.241346 ], [ -109.511719, 23.079732 ], [ -109.687500, 23.079732 ], [ -109.687500, 22.755921 ], [ -110.039062, 22.755921 ], [ -110.039062, 23.079732 ], [ -110.214844, 23.079732 ], [ -110.214844, 23.402765 ], [ -110.390625, 23.402765 ], [ -110.390625, 23.563987 ], [ -110.566406, 23.563987 ], [ -110.566406, 23.725012 ], [ -110.742188, 23.725012 ], [ -110.742188, 23.885838 ], [ -110.917969, 23.885838 ], [ -110.917969, 24.046464 ], [ -111.093750, 24.046464 ], [ -111.093750, 24.206890 ], [ -111.445312, 24.206890 ], [ -111.445312, 24.367114 ], [ -111.621094, 24.367114 ], [ -111.621094, 24.527135 ], [ -111.972656, 24.527135 ], [ -111.972656, 24.686952 ], [ -112.148438, 24.686952 ], [ -112.148438, 25.641526 ], [ -112.324219, 25.641526 ], [ -112.324219, 25.958045 ], [ -112.500000, 25.958045 ], [ -112.500000, 26.115986 ], [ -112.851562, 26.115986 ], [ -112.851562, 26.273714 ], [ -113.027344, 26.273714 ], [ -113.027344, 26.431228 ], [ -113.203125, 26.431228 ], [ -113.203125, 26.588527 ], [ -113.730469, 26.588527 ], [ -113.730469, 26.745610 ], [ -113.906250, 26.745610 ], [ -113.906250, 26.902477 ], [ -114.082031, 26.902477 ], [ -114.082031, 27.059126 ], [ -114.433594, 27.059126 ], [ -114.433594, 27.215556 ], [ -114.609375, 27.215556 ], [ -114.609375, 27.371767 ], [ -114.960938, 27.371767 ], [ -114.960938, 27.527758 ], [ -115.136719, 27.527758 ], [ -115.136719, 27.683528 ], [ -114.433594, 27.683528 ], [ -114.433594, 27.994401 ], [ -114.257812, 27.994401 ], [ -114.257812, 28.304381 ], [ -114.082031, 28.304381 ], [ -114.082031, 28.613459 ], [ -114.257812, 28.613459 ], [ -114.257812, 28.767659 ], [ -114.433594, 28.767659 ], [ -114.433594, 28.921631 ], [ -114.785156, 28.921631 ], [ -114.785156, 29.075375 ], [ -114.960938, 29.075375 ], [ -114.960938, 29.228890 ], [ -115.136719, 29.228890 ], [ -115.136719, 29.382175 ], [ -115.488281, 29.382175 ], [ -115.488281, 29.688053 ], [ -115.664062, 29.688053 ], [ -115.664062, 29.993002 ], [ -115.839844, 29.993002 ], [ -115.839844, 30.297018 ], [ -116.015625, 30.297018 ], [ -116.015625, 30.600094 ], [ -116.191406, 30.600094 ], [ -116.191406, 30.902225 ], [ -116.367188, 30.902225 ], [ -116.367188, 31.203405 ], [ -116.542969, 31.203405 ], [ -116.542969, 31.503629 ], [ -116.718750, 31.503629 ], [ -116.718750, 31.802893 ], [ -116.894531, 31.802893 ], [ -116.894531, 32.249974 ], [ -117.070312, 32.249974 ], [ -117.070312, 32.546813 ], [ -115.312500, 32.546813 ], [ -115.312500, 32.694866 ], [ -114.785156, 32.694866 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.785156, 32.842674 ], [ -114.785156, 32.694866 ], [ -114.960938, 32.694866 ], [ -114.960938, 32.546813 ], [ -114.785156, 32.546813 ], [ -114.785156, 32.398516 ], [ -114.257812, 32.398516 ], [ -114.257812, 32.249974 ], [ -113.730469, 32.249974 ], [ -113.730469, 32.101190 ], [ -113.203125, 32.101190 ], [ -113.203125, 31.952162 ], [ -112.851562, 31.952162 ], [ -112.851562, 31.802893 ], [ -112.324219, 31.802893 ], [ -112.324219, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.503629 ], [ -111.445312, 31.503629 ], [ -111.445312, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -106.523438, 31.653381 ], [ -106.347656, 31.653381 ], [ -106.347656, 31.503629 ], [ -106.171875, 31.503629 ], [ -106.171875, 31.353637 ], [ -105.820312, 31.353637 ], [ -105.820312, 31.203405 ], [ -105.644531, 31.203405 ], [ -105.644531, 31.052934 ], [ -105.468750, 31.052934 ], [ -105.468750, 30.902225 ], [ -105.292969, 30.902225 ], [ -105.292969, 30.751278 ], [ -105.117188, 30.751278 ], [ -105.117188, 30.600094 ], [ -104.941406, 30.600094 ], [ -104.941406, 30.297018 ], [ -104.765625, 30.297018 ], [ -104.765625, 29.840644 ], [ -104.589844, 29.840644 ], [ -104.589844, 29.535230 ], [ -104.238281, 29.535230 ], [ -104.238281, 29.382175 ], [ -103.886719, 29.382175 ], [ -103.886719, 29.228890 ], [ -103.535156, 29.228890 ], [ -103.535156, 29.075375 ], [ -103.007812, 29.075375 ], [ -103.007812, 29.228890 ], [ -102.832031, 29.228890 ], [ -102.832031, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 29.688053 ], [ -102.480469, 29.688053 ], [ -102.480469, 29.840644 ], [ -101.777344, 29.840644 ], [ -101.777344, 29.688053 ], [ -101.601562, 29.688053 ], [ -101.601562, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 29.382175 ], [ -101.074219, 29.382175 ], [ -101.074219, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 29.075375 ], [ -100.722656, 29.075375 ], [ -100.722656, 28.767659 ], [ -100.546875, 28.767659 ], [ -100.546875, 28.613459 ], [ -100.371094, 28.613459 ], [ -100.371094, 28.304381 ], [ -100.195312, 28.304381 ], [ -100.195312, 27.994401 ], [ -100.019531, 27.994401 ], [ -100.019531, 27.839076 ], [ -99.843750, 27.839076 ], [ -99.843750, 27.683528 ], [ -99.667969, 27.683528 ], [ -99.667969, 27.371767 ], [ -99.492188, 27.371767 ], [ -99.492188, 27.059126 ], [ -99.316406, 27.059126 ], [ -99.316406, 26.588527 ], [ -99.140625, 26.588527 ], [ -99.140625, 26.431228 ], [ -98.964844, 26.431228 ], [ -98.964844, 26.273714 ], [ -98.613281, 26.273714 ], [ -98.613281, 26.115986 ], [ -98.085938, 26.115986 ], [ -98.085938, 25.958045 ], [ -97.207031, 25.958045 ], [ -97.207031, 25.641526 ], [ -97.382812, 25.641526 ], [ -97.382812, 25.165173 ], [ -97.558594, 25.165173 ], [ -97.558594, 24.686952 ], [ -97.734375, 24.686952 ], [ -97.734375, 23.725012 ], [ -97.910156, 23.725012 ], [ -97.910156, 22.268764 ], [ -97.734375, 22.268764 ], [ -97.734375, 21.616579 ], [ -97.558594, 21.616579 ], [ -97.558594, 21.289374 ], [ -97.382812, 21.289374 ], [ -97.382812, 20.961440 ], [ -97.207031, 20.961440 ], [ -97.207031, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 20.303418 ], [ -96.855469, 20.303418 ], [ -96.855469, 19.973349 ], [ -96.679688, 19.973349 ], [ -96.679688, 19.808054 ], [ -96.503906, 19.808054 ], [ -96.503906, 19.476950 ], [ -96.328125, 19.476950 ], [ -96.328125, 19.311143 ], [ -96.152344, 19.311143 ], [ -96.152344, 18.979026 ], [ -95.800781, 18.979026 ], [ -95.800781, 18.812718 ], [ -95.273438, 18.812718 ], [ -95.273438, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 18.479609 ], [ -94.746094, 18.479609 ], [ -94.746094, 18.145852 ], [ -94.218750, 18.145852 ], [ -94.218750, 18.312811 ], [ -93.867188, 18.312811 ], [ -93.867188, 18.479609 ], [ -93.164062, 18.479609 ], [ -93.164062, 18.646245 ], [ -92.285156, 18.646245 ], [ -92.285156, 18.812718 ], [ -91.582031, 18.812718 ], [ -91.582031, 18.979026 ], [ -91.230469, 18.979026 ], [ -91.230469, 19.145168 ], [ -90.878906, 19.145168 ], [ -90.878906, 19.642588 ], [ -90.703125, 19.642588 ], [ -90.703125, 20.303418 ], [ -90.527344, 20.303418 ], [ -90.527344, 20.961440 ], [ -90.351562, 20.961440 ], [ -90.351562, 21.125498 ], [ -89.824219, 21.125498 ], [ -89.824219, 21.289374 ], [ -89.296875, 21.289374 ], [ -89.296875, 21.453069 ], [ -89.121094, 21.453069 ], [ -89.121094, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.811456 ], [ -89.824219, 17.811456 ], [ -89.824219, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.582031, 17.308688 ], [ -91.582031, 17.140790 ], [ -91.406250, 17.140790 ], [ -91.406250, 16.972741 ], [ -91.230469, 16.972741 ], [ -91.230469, 16.804541 ], [ -90.878906, 16.804541 ], [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.527344, 16.467695 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -91.757812, 15.961329 ], [ -91.933594, 15.961329 ], [ -91.933594, 15.623037 ], [ -92.109375, 15.623037 ], [ -92.109375, 15.284185 ], [ -92.285156, 15.284185 ], [ -92.285156, 15.114553 ], [ -92.109375, 15.114553 ], [ -92.109375, 14.944785 ], [ -92.285156, 14.944785 ], [ -92.285156, 14.604847 ], [ -92.460938, 14.604847 ], [ -92.460938, 14.774883 ], [ -92.636719, 14.774883 ], [ -92.636719, 14.944785 ], [ -92.812500, 14.944785 ], [ -92.812500, 15.114553 ], [ -93.164062, 15.114553 ], [ -93.164062, 15.284185 ], [ -93.339844, 15.284185 ], [ -93.339844, 15.453680 ], [ -93.515625, 15.453680 ], [ -93.515625, 15.623037 ], [ -93.691406, 15.623037 ], [ -93.691406, 15.792254 ], [ -94.042969, 15.792254 ], [ -94.042969, 15.961329 ], [ -94.394531, 15.961329 ], [ -94.394531, 16.130262 ], [ -94.746094, 16.130262 ], [ -94.746094, 16.299051 ], [ -94.921875, 16.299051 ], [ -94.921875, 16.130262 ], [ -95.449219, 16.130262 ], [ -95.449219, 15.961329 ], [ -95.800781, 15.961329 ], [ -95.800781, 15.792254 ], [ -97.207031, 15.792254 ], [ -97.207031, 15.961329 ], [ -97.910156, 15.961329 ], [ -97.910156, 16.130262 ], [ -98.261719, 16.130262 ], [ -98.261719, 16.299051 ], [ -98.613281, 16.299051 ], [ -98.613281, 16.467695 ], [ -98.964844, 16.467695 ], [ -98.964844, 16.636192 ], [ -99.492188, 16.636192 ], [ -99.492188, 16.804541 ], [ -100.195312, 16.804541 ], [ -100.195312, 16.972741 ], [ -100.546875, 16.972741 ], [ -100.546875, 17.140790 ], [ -100.898438, 17.140790 ], [ -100.898438, 17.308688 ], [ -101.074219, 17.308688 ], [ -101.074219, 17.476432 ], [ -101.425781, 17.476432 ], [ -101.425781, 17.644022 ], [ -101.777344, 17.644022 ], [ -101.777344, 17.811456 ], [ -101.953125, 17.811456 ], [ -101.953125, 17.978733 ], [ -102.832031, 17.978733 ], [ -102.832031, 18.145852 ], [ -103.359375, 18.145852 ], [ -103.359375, 18.312811 ], [ -103.710938, 18.312811 ], [ -103.710938, 18.479609 ], [ -103.886719, 18.479609 ], [ -103.886719, 18.646245 ], [ -104.062500, 18.646245 ], [ -104.062500, 18.812718 ], [ -104.238281, 18.812718 ], [ -104.238281, 18.979026 ], [ -104.589844, 18.979026 ], [ -104.589844, 19.145168 ], [ -104.765625, 19.145168 ], [ -104.765625, 19.311143 ], [ -105.117188, 19.311143 ], [ -105.117188, 19.476950 ], [ -105.292969, 19.476950 ], [ -105.292969, 19.642588 ], [ -105.468750, 19.642588 ], [ -105.468750, 19.808054 ], [ -105.644531, 19.808054 ], [ -105.644531, 20.138470 ], [ -105.820312, 20.138470 ], [ -105.820312, 20.468189 ], [ -105.468750, 20.468189 ], [ -105.468750, 20.797201 ], [ -105.644531, 20.797201 ], [ -105.644531, 20.961440 ], [ -105.292969, 20.961440 ], [ -105.292969, 21.453069 ], [ -105.468750, 21.453069 ], [ -105.468750, 21.779905 ], [ -105.644531, 21.779905 ], [ -105.644531, 22.105999 ], [ -105.820312, 22.105999 ], [ -105.820312, 22.431340 ], [ -105.996094, 22.431340 ], [ -105.996094, 22.755921 ], [ -106.171875, 22.755921 ], [ -106.171875, 22.917923 ], [ -106.347656, 22.917923 ], [ -106.347656, 23.079732 ], [ -106.523438, 23.079732 ], [ -106.523438, 23.402765 ], [ -106.699219, 23.402765 ], [ -106.699219, 23.563987 ], [ -106.875000, 23.563987 ], [ -106.875000, 23.725012 ], [ -107.050781, 23.725012 ], [ -107.050781, 23.885838 ], [ -107.226562, 23.885838 ], [ -107.226562, 24.046464 ], [ -107.402344, 24.046464 ], [ -107.402344, 24.206890 ], [ -107.578125, 24.206890 ], [ -107.578125, 24.367114 ], [ -107.753906, 24.367114 ], [ -107.753906, 24.527135 ], [ -107.929688, 24.527135 ], [ -107.929688, 24.686952 ], [ -108.105469, 24.686952 ], [ -108.105469, 25.005973 ], [ -108.281250, 25.005973 ], [ -108.281250, 25.165173 ], [ -108.457031, 25.165173 ], [ -108.457031, 25.324167 ], [ -108.808594, 25.324167 ], [ -108.808594, 25.482951 ], [ -109.160156, 25.482951 ], [ -109.160156, 25.641526 ], [ -109.335938, 25.641526 ], [ -109.335938, 25.799891 ], [ -109.511719, 25.799891 ], [ -109.511719, 26.273714 ], [ -109.335938, 26.273714 ], [ -109.335938, 26.588527 ], [ -109.687500, 26.588527 ], [ -109.687500, 26.745610 ], [ -110.039062, 26.745610 ], [ -110.039062, 26.902477 ], [ -110.214844, 26.902477 ], [ -110.214844, 27.059126 ], [ -110.390625, 27.059126 ], [ -110.390625, 27.371767 ], [ -110.566406, 27.371767 ], [ -110.566406, 27.683528 ], [ -110.742188, 27.683528 ], [ -110.742188, 27.994401 ], [ -111.445312, 27.994401 ], [ -111.445312, 28.304381 ], [ -111.621094, 28.304381 ], [ -111.621094, 28.459033 ], [ -111.796875, 28.459033 ], [ -111.796875, 28.613459 ], [ -111.972656, 28.613459 ], [ -111.972656, 28.767659 ], [ -112.148438, 28.767659 ], [ -112.148438, 28.921631 ], [ -112.324219, 28.921631 ], [ -112.324219, 29.382175 ], [ -112.500000, 29.382175 ], [ -112.500000, 29.688053 ], [ -112.675781, 29.688053 ], [ -112.675781, 29.993002 ], [ -112.851562, 29.993002 ], [ -112.851562, 30.297018 ], [ -113.027344, 30.297018 ], [ -113.027344, 30.600094 ], [ -113.203125, 30.600094 ], [ -113.203125, 31.203405 ], [ -113.378906, 31.203405 ], [ -113.378906, 31.353637 ], [ -113.730469, 31.353637 ], [ -113.730469, 31.503629 ], [ -113.906250, 31.503629 ], [ -113.906250, 31.653381 ], [ -114.609375, 31.653381 ], [ -114.609375, 31.802893 ], [ -114.785156, 31.802893 ], [ -114.785156, 31.653381 ], [ -114.960938, 31.653381 ], [ -114.960938, 31.203405 ], [ -114.785156, 31.203405 ], [ -114.785156, 30.145127 ], [ -114.609375, 30.145127 ], [ -114.609375, 29.840644 ], [ -114.433594, 29.840644 ], [ -114.433594, 29.688053 ], [ -114.257812, 29.688053 ], [ -114.257812, 29.535230 ], [ -114.082031, 29.535230 ], [ -114.082031, 29.228890 ], [ -113.906250, 29.228890 ], [ -113.906250, 29.075375 ], [ -113.730469, 29.075375 ], [ -113.730469, 28.921631 ], [ -113.554688, 28.921631 ], [ -113.554688, 28.767659 ], [ -113.378906, 28.767659 ], [ -113.378906, 28.613459 ], [ -113.203125, 28.613459 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -113.027344, 28.149503 ], [ -112.851562, 28.149503 ], [ -112.851562, 27.683528 ], [ -112.675781, 27.683528 ], [ -112.675781, 27.527758 ], [ -112.500000, 27.527758 ], [ -112.500000, 27.371767 ], [ -112.324219, 27.371767 ], [ -112.324219, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.902477 ], [ -111.796875, 26.902477 ], [ -111.796875, 26.745610 ], [ -111.621094, 26.745610 ], [ -111.621094, 26.273714 ], [ -111.445312, 26.273714 ], [ -111.445312, 25.641526 ], [ -111.269531, 25.641526 ], [ -111.269531, 25.324167 ], [ -111.093750, 25.324167 ], [ -111.093750, 25.165173 ], [ -110.917969, 25.165173 ], [ -110.917969, 24.846565 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.367114 ], [ -110.214844, 24.206890 ], [ -110.039062, 24.206890 ], [ -110.039062, 23.885838 ], [ -109.863281, 23.885838 ], [ -109.863281, 23.725012 ], [ -109.687500, 23.725012 ], [ -109.687500, 23.402765 ], [ -109.511719, 23.402765 ], [ -109.511719, 23.079732 ], [ -109.687500, 23.079732 ], [ -109.687500, 22.917923 ], [ -110.039062, 22.917923 ], [ -110.039062, 23.079732 ], [ -110.214844, 23.079732 ], [ -110.214844, 23.402765 ], [ -110.390625, 23.402765 ], [ -110.390625, 23.563987 ], [ -110.566406, 23.563987 ], [ -110.566406, 23.725012 ], [ -110.917969, 23.725012 ], [ -110.917969, 23.885838 ], [ -111.093750, 23.885838 ], [ -111.093750, 24.046464 ], [ -111.269531, 24.046464 ], [ -111.269531, 24.206890 ], [ -111.621094, 24.206890 ], [ -111.621094, 24.367114 ], [ -111.796875, 24.367114 ], [ -111.796875, 24.527135 ], [ -111.972656, 24.527135 ], [ -111.972656, 24.686952 ], [ -112.324219, 24.686952 ], [ -112.324219, 25.165173 ], [ -112.148438, 25.165173 ], [ -112.148438, 25.799891 ], [ -112.324219, 25.799891 ], [ -112.324219, 26.115986 ], [ -112.500000, 26.115986 ], [ -112.500000, 26.273714 ], [ -112.851562, 26.273714 ], [ -112.851562, 26.431228 ], [ -113.027344, 26.431228 ], [ -113.027344, 26.588527 ], [ -113.378906, 26.588527 ], [ -113.378906, 26.745610 ], [ -113.906250, 26.745610 ], [ -113.906250, 26.902477 ], [ -114.257812, 26.902477 ], [ -114.257812, 27.059126 ], [ -114.609375, 27.059126 ], [ -114.609375, 27.215556 ], [ -114.785156, 27.215556 ], [ -114.785156, 27.527758 ], [ -114.960938, 27.527758 ], [ -114.960938, 27.683528 ], [ -115.136719, 27.683528 ], [ -115.136719, 27.839076 ], [ -114.433594, 27.839076 ], [ -114.433594, 27.994401 ], [ -114.257812, 27.994401 ], [ -114.257812, 28.613459 ], [ -114.433594, 28.613459 ], [ -114.433594, 28.767659 ], [ -114.609375, 28.767659 ], [ -114.609375, 29.075375 ], [ -114.785156, 29.075375 ], [ -114.785156, 29.228890 ], [ -114.960938, 29.228890 ], [ -114.960938, 29.382175 ], [ -115.312500, 29.382175 ], [ -115.312500, 29.535230 ], [ -115.664062, 29.535230 ], [ -115.664062, 29.840644 ], [ -115.839844, 29.840644 ], [ -115.839844, 30.145127 ], [ -116.015625, 30.145127 ], [ -116.015625, 30.448674 ], [ -116.191406, 30.448674 ], [ -116.191406, 30.751278 ], [ -116.367188, 30.751278 ], [ -116.367188, 30.902225 ], [ -116.542969, 30.902225 ], [ -116.542969, 31.203405 ], [ -116.718750, 31.203405 ], [ -116.718750, 31.503629 ], [ -116.894531, 31.503629 ], [ -116.894531, 31.802893 ], [ -117.070312, 31.802893 ], [ -117.070312, 32.249974 ], [ -117.246094, 32.249974 ], [ -117.246094, 32.546813 ], [ -116.542969, 32.546813 ], [ -116.542969, 32.694866 ], [ -115.312500, 32.694866 ], [ -115.312500, 32.842674 ], [ -114.785156, 32.842674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.811456 ], [ -89.121094, 16.467695 ], [ -89.296875, 16.467695 ], [ -89.296875, 15.961329 ], [ -89.121094, 15.961329 ], [ -89.121094, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.774883 ], [ -89.121094, 14.774883 ], [ -89.121094, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.472656, 14.264383 ], [ -89.472656, 14.093957 ], [ -89.648438, 14.093957 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -91.582031, 13.923404 ], [ -91.582031, 14.093957 ], [ -91.933594, 14.093957 ], [ -91.933594, 14.264383 ], [ -92.109375, 14.264383 ], [ -92.109375, 14.434680 ], [ -92.285156, 14.434680 ], [ -92.285156, 14.944785 ], [ -92.109375, 14.944785 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.114553 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.284185 ], [ -92.109375, 15.623037 ], [ -91.933594, 15.623037 ], [ -91.933594, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 16.804541 ], [ -91.054688, 16.804541 ], [ -91.054688, 16.972741 ], [ -91.230469, 16.972741 ], [ -91.230469, 17.140790 ], [ -91.406250, 17.140790 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.811456 ], [ -89.121094, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.824219, 17.978733 ], [ -89.824219, 17.811456 ], [ -89.296875, 17.811456 ], [ -89.296875, 15.961329 ], [ -89.121094, 15.961329 ], [ -89.121094, 15.114553 ], [ -89.296875, 15.114553 ], [ -89.296875, 14.604847 ], [ -89.472656, 14.604847 ], [ -89.472656, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.824219, 14.264383 ], [ -89.824219, 14.093957 ], [ -90.000000, 14.093957 ], [ -90.000000, 13.923404 ], [ -90.175781, 13.923404 ], [ -90.175781, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -91.054688, 13.923404 ], [ -91.054688, 14.093957 ], [ -91.582031, 14.093957 ], [ -91.582031, 14.264383 ], [ -91.933594, 14.264383 ], [ -91.933594, 14.434680 ], [ -92.285156, 14.434680 ], [ -92.285156, 14.944785 ], [ -92.109375, 14.944785 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.114553 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.284185 ], [ -92.109375, 15.623037 ], [ -91.933594, 15.623037 ], [ -91.933594, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 16.804541 ], [ -91.230469, 16.804541 ], [ -91.230469, 16.972741 ], [ -91.406250, 16.972741 ], [ -91.406250, 17.140790 ], [ -91.582031, 17.140790 ], [ -91.582031, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -89.824219, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 16.467695 ], [ -89.121094, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 16.467695 ], [ -89.121094, 16.467695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.978733 ], [ -89.121094, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -89.121094, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.434680 ], [ -89.121094, 13.410994 ], [ -89.648438, 13.410994 ], [ -89.648438, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.000000, 13.752725 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.093957 ], [ -89.472656, 14.093957 ], [ -89.472656, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.121094, 14.434680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.434680 ], [ -89.121094, 13.410994 ], [ -89.296875, 13.410994 ], [ -89.296875, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 14.093957 ], [ -89.824219, 14.093957 ], [ -89.824219, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.121094, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.944785 ], [ -89.121094, 14.774883 ], [ -89.296875, 14.774883 ], [ -89.296875, 14.944785 ], [ -89.121094, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.114553 ], [ -89.121094, 14.434680 ], [ -89.472656, 14.434680 ], [ -89.472656, 14.604847 ], [ -89.296875, 14.604847 ], [ -89.296875, 15.114553 ], [ -89.121094, 15.114553 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.091408 ], [ -89.472656, 64.091408 ], [ -89.472656, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.937372 ], [ -90.175781, 63.937372 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.704722 ], [ -90.527344, 63.704722 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 62.995158 ], [ -90.878906, 62.995158 ], [ -90.878906, 62.915233 ], [ -91.582031, 62.915233 ], [ -91.582031, 62.835089 ], [ -91.933594, 62.835089 ], [ -91.933594, 62.754726 ], [ -92.109375, 62.754726 ], [ -92.109375, 62.593341 ], [ -92.285156, 62.593341 ], [ -92.285156, 62.512318 ], [ -92.460938, 62.512318 ], [ -92.460938, 62.431074 ], [ -92.636719, 62.431074 ], [ -92.636719, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 62.186014 ], [ -92.988281, 62.186014 ], [ -92.988281, 62.021528 ], [ -93.164062, 62.021528 ], [ -93.164062, 61.856149 ], [ -93.339844, 61.856149 ], [ -93.339844, 61.689872 ], [ -93.515625, 61.689872 ], [ -93.515625, 61.522695 ], [ -93.691406, 61.522695 ], [ -93.691406, 61.354614 ], [ -93.867188, 61.354614 ], [ -93.867188, 61.185625 ], [ -94.042969, 61.185625 ], [ -94.042969, 61.015725 ], [ -94.218750, 61.015725 ], [ -94.218750, 60.673179 ], [ -94.394531, 60.673179 ], [ -94.394531, 60.326948 ], [ -94.570312, 60.326948 ], [ -94.570312, 59.534318 ], [ -94.746094, 59.534318 ], [ -94.746094, 58.904646 ], [ -94.042969, 58.904646 ], [ -94.042969, 58.813742 ], [ -93.164062, 58.813742 ], [ -93.164062, 58.539595 ], [ -92.988281, 58.539595 ], [ -92.988281, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.704147 ], [ -92.636719, 57.704147 ], [ -92.636719, 57.421294 ], [ -92.460938, 57.421294 ], [ -92.460938, 57.136239 ], [ -92.285156, 57.136239 ], [ -92.285156, 57.040730 ], [ -91.933594, 57.040730 ], [ -91.933594, 57.136239 ], [ -91.406250, 57.136239 ], [ -91.406250, 57.231503 ], [ -91.054688, 57.231503 ], [ -91.054688, 57.326521 ], [ -90.878906, 57.326521 ], [ -90.878906, 57.231503 ], [ -90.527344, 57.231503 ], [ -90.527344, 57.136239 ], [ -90.175781, 57.136239 ], [ -90.175781, 57.040730 ], [ -89.824219, 57.040730 ], [ -89.824219, 56.944974 ], [ -89.472656, 56.944974 ], [ -89.472656, 56.848972 ], [ -89.121094, 56.848972 ], [ -89.121094, 47.989922 ], [ -90.000000, 47.989922 ], [ -90.000000, 48.107431 ], [ -90.703125, 48.107431 ], [ -90.703125, 48.224673 ], [ -91.054688, 48.224673 ], [ -91.054688, 48.107431 ], [ -91.933594, 48.107431 ], [ -91.933594, 48.224673 ], [ -92.285156, 48.224673 ], [ -92.285156, 48.341646 ], [ -92.636719, 48.341646 ], [ -92.636719, 48.458352 ], [ -93.339844, 48.458352 ], [ -93.339844, 48.574790 ], [ -94.218750, 48.574790 ], [ -94.218750, 48.690960 ], [ -94.570312, 48.690960 ], [ -94.570312, 49.037868 ], [ -94.746094, 49.037868 ], [ -94.746094, 49.382373 ], [ -95.097656, 49.382373 ], [ -95.097656, 49.037868 ], [ -123.222656, 49.037868 ], [ -123.222656, 49.152970 ], [ -123.574219, 49.152970 ], [ -123.574219, 49.267805 ], [ -123.750000, 49.267805 ], [ -123.750000, 49.382373 ], [ -123.925781, 49.382373 ], [ -123.925781, 49.496675 ], [ -124.277344, 49.496675 ], [ -124.277344, 49.610710 ], [ -124.453125, 49.610710 ], [ -124.453125, 49.724479 ], [ -124.628906, 49.724479 ], [ -124.628906, 49.837982 ], [ -124.980469, 49.837982 ], [ -124.980469, 49.951220 ], [ -125.156250, 49.951220 ], [ -125.156250, 50.064192 ], [ -125.332031, 50.064192 ], [ -125.332031, 50.176898 ], [ -125.507812, 50.176898 ], [ -125.507812, 50.289339 ], [ -125.683594, 50.289339 ], [ -125.683594, 50.401515 ], [ -126.035156, 50.401515 ], [ -126.035156, 50.513427 ], [ -126.386719, 50.513427 ], [ -126.386719, 50.625073 ], [ -126.914062, 50.625073 ], [ -126.914062, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.847573 ], [ -127.441406, 50.847573 ], [ -127.441406, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.289406 ], [ -127.792969, 51.289406 ], [ -127.792969, 51.508742 ], [ -127.968750, 51.508742 ], [ -127.968750, 52.052490 ], [ -127.792969, 52.052490 ], [ -127.792969, 52.375599 ], [ -128.144531, 52.375599 ], [ -128.144531, 52.482780 ], [ -128.496094, 52.482780 ], [ -128.496094, 52.589701 ], [ -128.847656, 52.589701 ], [ -128.847656, 52.696361 ], [ -129.199219, 52.696361 ], [ -129.199219, 53.120405 ], [ -129.375000, 53.120405 ], [ -129.375000, 53.540307 ], [ -129.550781, 53.540307 ], [ -129.550781, 53.644638 ], [ -129.726562, 53.644638 ], [ -129.726562, 53.748711 ], [ -129.902344, 53.748711 ], [ -129.902344, 53.956086 ], [ -130.078125, 53.956086 ], [ -130.078125, 54.059388 ], [ -130.253906, 54.059388 ], [ -130.253906, 54.162434 ], [ -130.429688, 54.162434 ], [ -130.429688, 54.470038 ], [ -130.605469, 54.470038 ], [ -130.605469, 54.775346 ], [ -130.429688, 54.775346 ], [ -130.429688, 54.876607 ], [ -130.253906, 54.876607 ], [ -130.253906, 55.078367 ], [ -130.078125, 55.078367 ], [ -130.078125, 55.178868 ], [ -129.902344, 55.178868 ], [ -129.902344, 55.578345 ], [ -130.078125, 55.578345 ], [ -130.078125, 55.875311 ], [ -130.253906, 55.875311 ], [ -130.253906, 55.973798 ], [ -130.429688, 55.973798 ], [ -130.429688, 56.072035 ], [ -130.781250, 56.072035 ], [ -130.781250, 56.170023 ], [ -130.957031, 56.170023 ], [ -130.957031, 56.267761 ], [ -131.132812, 56.267761 ], [ -131.132812, 56.365250 ], [ -131.484375, 56.365250 ], [ -131.484375, 56.462490 ], [ -131.660156, 56.462490 ], [ -131.660156, 56.656226 ], [ -131.835938, 56.656226 ], [ -131.835938, 56.848972 ], [ -132.011719, 56.848972 ], [ -132.011719, 57.040730 ], [ -132.187500, 57.040730 ], [ -132.187500, 57.231503 ], [ -132.363281, 57.231503 ], [ -132.363281, 57.421294 ], [ -132.539062, 57.421294 ], [ -132.539062, 57.610107 ], [ -132.714844, 57.610107 ], [ -132.714844, 57.797944 ], [ -132.890625, 57.797944 ], [ -132.890625, 57.984808 ], [ -133.066406, 57.984808 ], [ -133.066406, 58.170702 ], [ -133.242188, 58.170702 ], [ -133.242188, 58.355630 ], [ -133.417969, 58.355630 ], [ -133.417969, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.539595 ], [ -133.769531, 58.539595 ], [ -133.769531, 58.631217 ], [ -133.945312, 58.631217 ], [ -133.945312, 58.722599 ], [ -134.121094, 58.722599 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.085739 ], [ -134.824219, 59.085739 ], [ -134.824219, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.623325 ], [ -135.878906, 59.623325 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.144531, 50.736455 ], [ -128.144531, 50.625073 ], [ -127.617188, 50.625073 ], [ -127.617188, 50.513427 ], [ -127.089844, 50.513427 ], [ -127.089844, 50.401515 ], [ -126.386719, 50.401515 ], [ -126.386719, 50.289339 ], [ -125.683594, 50.289339 ], [ -125.683594, 50.176898 ], [ -125.507812, 50.176898 ], [ -125.507812, 49.951220 ], [ -125.332031, 49.951220 ], [ -125.332031, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 49.610710 ], [ -124.980469, 49.610710 ], [ -124.980469, 49.382373 ], [ -124.628906, 49.382373 ], [ -124.628906, 49.267805 ], [ -124.453125, 49.267805 ], [ -124.453125, 49.152970 ], [ -124.101562, 49.152970 ], [ -124.101562, 49.037868 ], [ -123.925781, 49.037868 ], [ -123.925781, 48.806863 ], [ -123.750000, 48.806863 ], [ -123.750000, 48.574790 ], [ -123.574219, 48.574790 ], [ -123.574219, 48.341646 ], [ -124.277344, 48.341646 ], [ -124.277344, 48.458352 ], [ -124.628906, 48.458352 ], [ -124.628906, 48.574790 ], [ -125.156250, 48.574790 ], [ -125.156250, 48.690960 ], [ -125.507812, 48.690960 ], [ -125.507812, 48.806863 ], [ -125.859375, 48.806863 ], [ -125.859375, 49.037868 ], [ -126.035156, 49.037868 ], [ -126.035156, 49.152970 ], [ -126.210938, 49.152970 ], [ -126.210938, 49.267805 ], [ -126.562500, 49.267805 ], [ -126.562500, 49.382373 ], [ -126.914062, 49.382373 ], [ -126.914062, 49.610710 ], [ -127.089844, 49.610710 ], [ -127.089844, 49.837982 ], [ -127.792969, 49.837982 ], [ -127.792969, 49.951220 ], [ -128.144531, 49.951220 ], [ -128.144531, 50.064192 ], [ -128.320312, 50.064192 ], [ -128.320312, 50.289339 ], [ -128.496094, 50.289339 ], [ -128.496094, 50.625073 ], [ -128.320312, 50.625073 ], [ -128.320312, 50.736455 ], [ -128.144531, 50.736455 ] ] ], [ [ [ -131.835938, 54.162434 ], [ -131.835938, 53.540307 ], [ -132.011719, 53.540307 ], [ -132.011719, 52.908902 ], [ -131.835938, 52.908902 ], [ -131.835938, 52.696361 ], [ -131.660156, 52.696361 ], [ -131.660156, 52.589701 ], [ -131.484375, 52.589701 ], [ -131.484375, 52.375599 ], [ -131.308594, 52.375599 ], [ -131.308594, 52.160455 ], [ -131.835938, 52.160455 ], [ -131.835938, 52.375599 ], [ -132.011719, 52.375599 ], [ -132.011719, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.696361 ], [ -132.363281, 52.696361 ], [ -132.363281, 52.908902 ], [ -132.539062, 52.908902 ], [ -132.539062, 53.120405 ], [ -132.714844, 53.120405 ], [ -132.714844, 53.225768 ], [ -132.890625, 53.225768 ], [ -132.890625, 53.330873 ], [ -133.066406, 53.330873 ], [ -133.066406, 53.644638 ], [ -133.242188, 53.644638 ], [ -133.242188, 54.162434 ], [ -133.066406, 54.162434 ], [ -133.066406, 54.059388 ], [ -132.187500, 54.059388 ], [ -132.187500, 54.162434 ], [ -131.835938, 54.162434 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.091408 ], [ -90.000000, 64.091408 ], [ -90.000000, 64.014496 ], [ -90.175781, 64.014496 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.782486 ], [ -90.527344, 63.782486 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 63.312683 ], [ -90.878906, 63.312683 ], [ -90.878906, 62.995158 ], [ -91.054688, 62.995158 ], [ -91.054688, 62.915233 ], [ -91.582031, 62.915233 ], [ -91.582031, 62.835089 ], [ -91.933594, 62.835089 ], [ -91.933594, 62.754726 ], [ -92.109375, 62.754726 ], [ -92.109375, 62.674143 ], [ -92.285156, 62.674143 ], [ -92.285156, 62.512318 ], [ -92.460938, 62.512318 ], [ -92.460938, 62.431074 ], [ -92.636719, 62.431074 ], [ -92.636719, 62.349609 ], [ -92.812500, 62.349609 ], [ -92.812500, 62.186014 ], [ -92.988281, 62.186014 ], [ -92.988281, 62.103883 ], [ -93.164062, 62.103883 ], [ -93.164062, 62.021528 ], [ -93.339844, 62.021528 ], [ -93.339844, 61.856149 ], [ -93.515625, 61.856149 ], [ -93.515625, 61.689872 ], [ -93.691406, 61.689872 ], [ -93.691406, 61.522695 ], [ -93.867188, 61.522695 ], [ -93.867188, 61.354614 ], [ -94.042969, 61.354614 ], [ -94.042969, 61.185625 ], [ -94.218750, 61.185625 ], [ -94.218750, 61.015725 ], [ -94.394531, 61.015725 ], [ -94.394531, 60.673179 ], [ -94.570312, 60.673179 ], [ -94.570312, 60.326948 ], [ -94.746094, 60.326948 ], [ -94.746094, 58.995311 ], [ -94.570312, 58.995311 ], [ -94.570312, 58.904646 ], [ -93.867188, 58.904646 ], [ -93.867188, 58.813742 ], [ -93.339844, 58.813742 ], [ -93.339844, 58.631217 ], [ -93.164062, 58.631217 ], [ -93.164062, 58.355630 ], [ -92.988281, 58.355630 ], [ -92.988281, 57.984808 ], [ -92.812500, 57.984808 ], [ -92.812500, 57.704147 ], [ -92.636719, 57.704147 ], [ -92.636719, 57.326521 ], [ -92.460938, 57.326521 ], [ -92.460938, 57.136239 ], [ -91.933594, 57.136239 ], [ -91.933594, 57.231503 ], [ -91.230469, 57.231503 ], [ -91.230469, 57.326521 ], [ -90.878906, 57.326521 ], [ -90.878906, 57.231503 ], [ -90.351562, 57.231503 ], [ -90.351562, 57.136239 ], [ -90.000000, 57.136239 ], [ -90.000000, 57.040730 ], [ -89.472656, 57.040730 ], [ -89.472656, 56.944974 ], [ -89.121094, 56.944974 ], [ -89.121094, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.341646 ], [ -91.230469, 48.341646 ], [ -91.230469, 48.224673 ], [ -92.109375, 48.224673 ], [ -92.109375, 48.341646 ], [ -92.460938, 48.341646 ], [ -92.460938, 48.458352 ], [ -92.988281, 48.458352 ], [ -92.988281, 48.574790 ], [ -93.515625, 48.574790 ], [ -93.515625, 48.690960 ], [ -94.570312, 48.690960 ], [ -94.570312, 48.806863 ], [ -94.746094, 48.806863 ], [ -94.746094, 49.152970 ], [ -94.921875, 49.152970 ], [ -94.921875, 49.496675 ], [ -95.273438, 49.496675 ], [ -95.273438, 49.037868 ], [ -123.222656, 49.037868 ], [ -123.222656, 49.152970 ], [ -123.398438, 49.152970 ], [ -123.398438, 49.267805 ], [ -123.750000, 49.267805 ], [ -123.750000, 49.382373 ], [ -123.925781, 49.382373 ], [ -123.925781, 49.496675 ], [ -124.101562, 49.496675 ], [ -124.101562, 49.610710 ], [ -124.277344, 49.610710 ], [ -124.277344, 49.724479 ], [ -124.453125, 49.724479 ], [ -124.453125, 49.837982 ], [ -124.804688, 49.837982 ], [ -124.804688, 49.951220 ], [ -124.980469, 49.951220 ], [ -124.980469, 50.064192 ], [ -125.156250, 50.064192 ], [ -125.156250, 50.176898 ], [ -125.332031, 50.176898 ], [ -125.332031, 50.289339 ], [ -125.507812, 50.289339 ], [ -125.507812, 50.401515 ], [ -125.683594, 50.401515 ], [ -125.683594, 50.513427 ], [ -126.035156, 50.513427 ], [ -126.035156, 50.625073 ], [ -126.738281, 50.625073 ], [ -126.738281, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.847573 ], [ -127.441406, 50.847573 ], [ -127.441406, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.179343 ], [ -127.792969, 51.179343 ], [ -127.792969, 51.399206 ], [ -127.968750, 51.399206 ], [ -127.968750, 51.618017 ], [ -128.144531, 51.618017 ], [ -128.144531, 52.052490 ], [ -127.968750, 52.052490 ], [ -127.968750, 52.375599 ], [ -128.144531, 52.375599 ], [ -128.144531, 52.482780 ], [ -128.496094, 52.482780 ], [ -128.496094, 52.589701 ], [ -128.847656, 52.589701 ], [ -128.847656, 52.696361 ], [ -129.199219, 52.696361 ], [ -129.199219, 53.225768 ], [ -129.375000, 53.225768 ], [ -129.375000, 53.644638 ], [ -129.550781, 53.644638 ], [ -129.550781, 53.748711 ], [ -129.726562, 53.748711 ], [ -129.726562, 53.852527 ], [ -129.902344, 53.852527 ], [ -129.902344, 53.956086 ], [ -130.078125, 53.956086 ], [ -130.078125, 54.059388 ], [ -130.253906, 54.059388 ], [ -130.253906, 54.162434 ], [ -130.429688, 54.162434 ], [ -130.429688, 54.265224 ], [ -130.605469, 54.265224 ], [ -130.605469, 54.876607 ], [ -130.429688, 54.876607 ], [ -130.429688, 55.078367 ], [ -130.253906, 55.078367 ], [ -130.253906, 55.279115 ], [ -130.078125, 55.279115 ], [ -130.078125, 55.973798 ], [ -130.253906, 55.973798 ], [ -130.253906, 56.072035 ], [ -130.605469, 56.072035 ], [ -130.605469, 56.170023 ], [ -130.957031, 56.170023 ], [ -130.957031, 56.267761 ], [ -131.132812, 56.267761 ], [ -131.132812, 56.365250 ], [ -131.484375, 56.365250 ], [ -131.484375, 56.462490 ], [ -131.835938, 56.462490 ], [ -131.835938, 56.656226 ], [ -132.011719, 56.656226 ], [ -132.011719, 56.848972 ], [ -132.187500, 56.848972 ], [ -132.187500, 57.040730 ], [ -132.363281, 57.040730 ], [ -132.363281, 57.231503 ], [ -132.539062, 57.231503 ], [ -132.539062, 57.421294 ], [ -132.714844, 57.421294 ], [ -132.714844, 57.610107 ], [ -132.890625, 57.610107 ], [ -132.890625, 57.797944 ], [ -133.066406, 57.797944 ], [ -133.066406, 58.077876 ], [ -133.242188, 58.077876 ], [ -133.242188, 58.263287 ], [ -133.417969, 58.263287 ], [ -133.417969, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.539595 ], [ -133.769531, 58.539595 ], [ -133.769531, 58.631217 ], [ -133.945312, 58.631217 ], [ -133.945312, 58.722599 ], [ -134.121094, 58.722599 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.265881 ], [ -135.000000, 59.265881 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.878906, 59.712097 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.320312, 50.847573 ], [ -128.320312, 50.736455 ], [ -127.792969, 50.736455 ], [ -127.792969, 50.625073 ], [ -127.441406, 50.625073 ], [ -127.441406, 50.513427 ], [ -127.089844, 50.513427 ], [ -127.089844, 50.401515 ], [ -125.859375, 50.401515 ], [ -125.859375, 50.289339 ], [ -125.683594, 50.289339 ], [ -125.683594, 50.064192 ], [ -125.507812, 50.064192 ], [ -125.507812, 49.837982 ], [ -125.332031, 49.837982 ], [ -125.332031, 49.724479 ], [ -125.156250, 49.724479 ], [ -125.156250, 49.496675 ], [ -124.980469, 49.496675 ], [ -124.980469, 49.382373 ], [ -124.628906, 49.382373 ], [ -124.628906, 49.267805 ], [ -124.277344, 49.267805 ], [ -124.277344, 49.152970 ], [ -123.925781, 49.152970 ], [ -123.925781, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 48.690960 ], [ -123.574219, 48.690960 ], [ -123.574219, 48.574790 ], [ -123.750000, 48.574790 ], [ -123.750000, 48.458352 ], [ -124.453125, 48.458352 ], [ -124.453125, 48.574790 ], [ -124.804688, 48.574790 ], [ -124.804688, 48.690960 ], [ -125.156250, 48.690960 ], [ -125.156250, 48.806863 ], [ -125.507812, 48.806863 ], [ -125.507812, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.152970 ], [ -126.035156, 49.152970 ], [ -126.035156, 49.267805 ], [ -126.210938, 49.267805 ], [ -126.210938, 49.382373 ], [ -126.562500, 49.382373 ], [ -126.562500, 49.496675 ], [ -126.914062, 49.496675 ], [ -126.914062, 49.724479 ], [ -127.089844, 49.724479 ], [ -127.089844, 49.837982 ], [ -127.441406, 49.837982 ], [ -127.441406, 49.951220 ], [ -127.968750, 49.951220 ], [ -127.968750, 50.064192 ], [ -128.144531, 50.064192 ], [ -128.144531, 50.176898 ], [ -128.320312, 50.176898 ], [ -128.320312, 50.401515 ], [ -128.496094, 50.401515 ], [ -128.496094, 50.847573 ], [ -128.320312, 50.847573 ] ] ], [ [ [ -131.835938, 54.162434 ], [ -131.835938, 53.852527 ], [ -132.011719, 53.852527 ], [ -132.011719, 53.225768 ], [ -132.187500, 53.225768 ], [ -132.187500, 52.908902 ], [ -132.011719, 52.908902 ], [ -132.011719, 52.696361 ], [ -131.835938, 52.696361 ], [ -131.835938, 52.589701 ], [ -131.660156, 52.589701 ], [ -131.660156, 52.482780 ], [ -131.484375, 52.482780 ], [ -131.484375, 52.268157 ], [ -131.835938, 52.268157 ], [ -131.835938, 52.482780 ], [ -132.011719, 52.482780 ], [ -132.011719, 52.589701 ], [ -132.187500, 52.589701 ], [ -132.187500, 52.696361 ], [ -132.363281, 52.696361 ], [ -132.363281, 52.908902 ], [ -132.539062, 52.908902 ], [ -132.539062, 53.014783 ], [ -132.714844, 53.014783 ], [ -132.714844, 53.120405 ], [ -132.890625, 53.120405 ], [ -132.890625, 53.330873 ], [ -133.066406, 53.330873 ], [ -133.066406, 53.644638 ], [ -133.242188, 53.644638 ], [ -133.242188, 54.162434 ], [ -132.890625, 54.162434 ], [ -132.890625, 54.059388 ], [ -132.187500, 54.059388 ], [ -132.187500, 54.162434 ], [ -131.835938, 54.162434 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.746094, 49.382373 ], [ -94.746094, 49.037868 ], [ -94.570312, 49.037868 ], [ -94.570312, 48.690960 ], [ -94.218750, 48.690960 ], [ -94.218750, 48.574790 ], [ -93.339844, 48.574790 ], [ -93.339844, 48.458352 ], [ -92.636719, 48.458352 ], [ -92.636719, 48.341646 ], [ -92.285156, 48.341646 ], [ -92.285156, 48.224673 ], [ -91.933594, 48.224673 ], [ -91.933594, 48.107431 ], [ -91.054688, 48.107431 ], [ -91.054688, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 47.989922 ], [ -89.121094, 47.989922 ], [ -89.121094, 40.313043 ], [ -124.453125, 40.313043 ], [ -124.453125, 40.446947 ], [ -124.277344, 40.446947 ], [ -124.277344, 40.847060 ], [ -124.101562, 40.847060 ], [ -124.101562, 41.508577 ], [ -124.277344, 41.508577 ], [ -124.277344, 42.423457 ], [ -124.453125, 42.423457 ], [ -124.453125, 42.940339 ], [ -124.277344, 42.940339 ], [ -124.277344, 43.452919 ], [ -124.101562, 43.452919 ], [ -124.101562, 45.089036 ], [ -123.925781, 45.089036 ], [ -123.925781, 46.195042 ], [ -124.101562, 46.195042 ], [ -124.101562, 47.040182 ], [ -124.277344, 47.040182 ], [ -124.277344, 47.517201 ], [ -124.453125, 47.517201 ], [ -124.453125, 47.989922 ], [ -124.628906, 47.989922 ], [ -124.628906, 48.341646 ], [ -124.453125, 48.341646 ], [ -124.453125, 48.224673 ], [ -123.925781, 48.224673 ], [ -123.925781, 48.107431 ], [ -123.398438, 48.107431 ], [ -123.398438, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.754098 ], [ -122.871094, 47.754098 ], [ -122.871094, 47.517201 ], [ -122.695312, 47.517201 ], [ -122.695312, 47.159840 ], [ -122.343750, 47.159840 ], [ -122.343750, 47.754098 ], [ -122.519531, 47.754098 ], [ -122.519531, 48.341646 ], [ -122.695312, 48.341646 ], [ -122.695312, 48.806863 ], [ -122.871094, 48.806863 ], [ -122.871094, 49.037868 ], [ -95.097656, 49.037868 ], [ -95.097656, 49.382373 ], [ -94.746094, 49.382373 ] ] ], [ [ [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.085739 ], [ -134.648438, 59.085739 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.722599 ], [ -133.945312, 58.722599 ], [ -133.945312, 58.631217 ], [ -133.769531, 58.631217 ], [ -133.769531, 58.539595 ], [ -133.593750, 58.539595 ], [ -133.593750, 58.447733 ], [ -133.417969, 58.447733 ], [ -133.417969, 58.355630 ], [ -133.242188, 58.355630 ], [ -133.242188, 58.170702 ], [ -133.066406, 58.170702 ], [ -133.066406, 57.984808 ], [ -132.890625, 57.984808 ], [ -132.890625, 57.797944 ], [ -132.714844, 57.797944 ], [ -132.714844, 57.610107 ], [ -132.539062, 57.610107 ], [ -132.539062, 57.421294 ], [ -132.363281, 57.421294 ], [ -132.363281, 57.231503 ], [ -132.187500, 57.231503 ], [ -132.187500, 57.040730 ], [ -132.011719, 57.040730 ], [ -132.011719, 56.848972 ], [ -131.835938, 56.848972 ], [ -131.835938, 56.656226 ], [ -131.660156, 56.656226 ], [ -131.660156, 56.462490 ], [ -131.484375, 56.462490 ], [ -131.484375, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.267761 ], [ -130.957031, 56.267761 ], [ -130.957031, 56.170023 ], [ -130.781250, 56.170023 ], [ -130.781250, 56.072035 ], [ -130.429688, 56.072035 ], [ -130.429688, 55.973798 ], [ -130.253906, 55.973798 ], [ -130.253906, 55.875311 ], [ -130.078125, 55.875311 ], [ -130.078125, 55.578345 ], [ -129.902344, 55.578345 ], [ -129.902344, 55.178868 ], [ -130.078125, 55.178868 ], [ -130.078125, 55.078367 ], [ -130.253906, 55.078367 ], [ -130.253906, 54.876607 ], [ -130.429688, 54.876607 ], [ -130.429688, 54.775346 ], [ -130.781250, 54.775346 ], [ -130.781250, 54.977614 ], [ -130.957031, 54.977614 ], [ -130.957031, 55.078367 ], [ -131.132812, 55.078367 ], [ -131.132812, 55.178868 ], [ -131.308594, 55.178868 ], [ -131.308594, 55.279115 ], [ -131.660156, 55.279115 ], [ -131.660156, 55.379110 ], [ -132.011719, 55.379110 ], [ -132.011719, 55.875311 ], [ -132.187500, 55.875311 ], [ -132.187500, 56.365250 ], [ -132.363281, 56.365250 ], [ -132.363281, 56.462490 ], [ -132.539062, 56.462490 ], [ -132.539062, 56.559482 ], [ -132.714844, 56.559482 ], [ -132.714844, 56.656226 ], [ -132.890625, 56.656226 ], [ -132.890625, 56.752723 ], [ -133.066406, 56.752723 ], [ -133.066406, 56.848972 ], [ -133.242188, 56.848972 ], [ -133.242188, 56.944974 ], [ -133.417969, 56.944974 ], [ -133.417969, 57.040730 ], [ -133.593750, 57.040730 ], [ -133.593750, 57.231503 ], [ -133.769531, 57.231503 ], [ -133.769531, 57.610107 ], [ -133.945312, 57.610107 ], [ -133.945312, 57.891497 ], [ -134.121094, 57.891497 ], [ -134.121094, 58.077876 ], [ -134.648438, 58.077876 ], [ -134.648438, 58.170702 ], [ -135.878906, 58.170702 ], [ -135.878906, 59.623325 ], [ -135.703125, 59.623325 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.921875, 49.496675 ], [ -94.921875, 49.152970 ], [ -94.746094, 49.152970 ], [ -94.746094, 48.806863 ], [ -94.570312, 48.806863 ], [ -94.570312, 48.690960 ], [ -93.515625, 48.690960 ], [ -93.515625, 48.574790 ], [ -92.988281, 48.574790 ], [ -92.988281, 48.458352 ], [ -92.460938, 48.458352 ], [ -92.460938, 48.341646 ], [ -92.109375, 48.341646 ], [ -92.109375, 48.224673 ], [ -91.230469, 48.224673 ], [ -91.230469, 48.341646 ], [ -90.703125, 48.341646 ], [ -90.703125, 48.224673 ], [ -90.000000, 48.224673 ], [ -90.000000, 48.107431 ], [ -89.121094, 48.107431 ], [ -89.121094, 40.313043 ], [ -124.453125, 40.313043 ], [ -124.453125, 40.713956 ], [ -124.277344, 40.713956 ], [ -124.277344, 42.163403 ], [ -124.453125, 42.163403 ], [ -124.453125, 42.553080 ], [ -124.628906, 42.553080 ], [ -124.628906, 42.940339 ], [ -124.453125, 42.940339 ], [ -124.453125, 43.452919 ], [ -124.277344, 43.452919 ], [ -124.277344, 44.213710 ], [ -124.101562, 44.213710 ], [ -124.101562, 45.089036 ], [ -123.925781, 45.089036 ], [ -123.925781, 46.195042 ], [ -124.101562, 46.195042 ], [ -124.101562, 47.040182 ], [ -124.277344, 47.040182 ], [ -124.277344, 47.517201 ], [ -124.453125, 47.517201 ], [ -124.453125, 47.872144 ], [ -124.628906, 47.872144 ], [ -124.628906, 48.107431 ], [ -124.804688, 48.107431 ], [ -124.804688, 48.341646 ], [ -124.628906, 48.341646 ], [ -124.628906, 48.458352 ], [ -124.453125, 48.458352 ], [ -124.453125, 48.341646 ], [ -124.101562, 48.341646 ], [ -124.101562, 48.224673 ], [ -123.574219, 48.224673 ], [ -123.574219, 48.107431 ], [ -123.222656, 48.107431 ], [ -123.222656, 47.872144 ], [ -123.046875, 47.872144 ], [ -123.046875, 47.635784 ], [ -122.871094, 47.635784 ], [ -122.871094, 47.279229 ], [ -122.695312, 47.279229 ], [ -122.695312, 47.159840 ], [ -122.519531, 47.159840 ], [ -122.519531, 47.279229 ], [ -122.343750, 47.279229 ], [ -122.343750, 47.754098 ], [ -122.519531, 47.754098 ], [ -122.519531, 48.341646 ], [ -122.695312, 48.341646 ], [ -122.695312, 48.806863 ], [ -122.871094, 48.806863 ], [ -122.871094, 49.037868 ], [ -95.273438, 49.037868 ], [ -95.273438, 49.496675 ], [ -94.921875, 49.496675 ] ] ], [ [ [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.265881 ], [ -134.824219, 59.265881 ], [ -134.824219, 59.175928 ], [ -134.648438, 59.175928 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.722599 ], [ -133.945312, 58.722599 ], [ -133.945312, 58.631217 ], [ -133.769531, 58.631217 ], [ -133.769531, 58.539595 ], [ -133.593750, 58.539595 ], [ -133.593750, 58.447733 ], [ -133.417969, 58.447733 ], [ -133.417969, 58.263287 ], [ -133.242188, 58.263287 ], [ -133.242188, 58.077876 ], [ -133.066406, 58.077876 ], [ -133.066406, 57.797944 ], [ -132.890625, 57.797944 ], [ -132.890625, 57.610107 ], [ -132.714844, 57.610107 ], [ -132.714844, 57.421294 ], [ -132.539062, 57.421294 ], [ -132.539062, 57.231503 ], [ -132.363281, 57.231503 ], [ -132.363281, 57.040730 ], [ -132.187500, 57.040730 ], [ -132.187500, 56.848972 ], [ -132.011719, 56.848972 ], [ -132.011719, 56.656226 ], [ -131.835938, 56.656226 ], [ -131.835938, 56.462490 ], [ -131.484375, 56.462490 ], [ -131.484375, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.267761 ], [ -130.957031, 56.267761 ], [ -130.957031, 56.170023 ], [ -130.605469, 56.170023 ], [ -130.605469, 56.072035 ], [ -130.253906, 56.072035 ], [ -130.253906, 55.973798 ], [ -130.078125, 55.973798 ], [ -130.078125, 55.279115 ], [ -130.253906, 55.279115 ], [ -130.253906, 55.078367 ], [ -130.429688, 55.078367 ], [ -130.429688, 54.876607 ], [ -130.781250, 54.876607 ], [ -130.781250, 54.977614 ], [ -130.957031, 54.977614 ], [ -130.957031, 55.078367 ], [ -131.132812, 55.078367 ], [ -131.132812, 55.178868 ], [ -131.308594, 55.178868 ], [ -131.308594, 55.279115 ], [ -131.484375, 55.279115 ], [ -131.484375, 55.379110 ], [ -131.835938, 55.379110 ], [ -131.835938, 55.478853 ], [ -132.011719, 55.478853 ], [ -132.011719, 55.776573 ], [ -132.187500, 55.776573 ], [ -132.187500, 56.170023 ], [ -132.363281, 56.170023 ], [ -132.363281, 56.462490 ], [ -132.539062, 56.462490 ], [ -132.539062, 56.559482 ], [ -132.714844, 56.559482 ], [ -132.714844, 56.656226 ], [ -132.890625, 56.656226 ], [ -132.890625, 56.848972 ], [ -133.066406, 56.848972 ], [ -133.066406, 56.944974 ], [ -133.242188, 56.944974 ], [ -133.242188, 57.040730 ], [ -133.417969, 57.040730 ], [ -133.417969, 57.136239 ], [ -133.593750, 57.136239 ], [ -133.593750, 57.326521 ], [ -133.769531, 57.326521 ], [ -133.769531, 57.704147 ], [ -133.945312, 57.704147 ], [ -133.945312, 57.984808 ], [ -134.121094, 57.984808 ], [ -134.121094, 58.170702 ], [ -134.824219, 58.170702 ], [ -134.824219, 58.263287 ], [ -135.878906, 58.263287 ], [ -135.878906, 59.712097 ], [ -135.351562, 59.712097 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.097656, 71.910888 ], [ -95.097656, 71.856229 ], [ -94.746094, 71.856229 ], [ -94.746094, 71.801410 ], [ -94.218750, 71.801410 ], [ -94.218750, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.691293 ], [ -93.691406, 71.691293 ], [ -93.691406, 71.635993 ], [ -93.515625, 71.635993 ], [ -93.515625, 71.524909 ], [ -93.339844, 71.524909 ], [ -93.339844, 71.469124 ], [ -93.164062, 71.469124 ], [ -93.164062, 71.413177 ], [ -92.988281, 71.413177 ], [ -92.988281, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 71.187754 ], [ -92.636719, 71.187754 ], [ -92.636719, 71.016960 ], [ -92.460938, 71.016960 ], [ -92.460938, 70.902268 ], [ -92.285156, 70.902268 ], [ -92.285156, 70.728979 ], [ -92.109375, 70.728979 ], [ -92.109375, 70.554179 ], [ -91.933594, 70.554179 ], [ -91.933594, 70.436799 ], [ -91.757812, 70.436799 ], [ -91.757812, 70.259452 ], [ -91.582031, 70.259452 ], [ -91.582031, 70.140364 ], [ -91.757812, 70.140364 ], [ -91.757812, 70.020587 ], [ -91.933594, 70.020587 ], [ -91.933594, 69.960439 ], [ -92.109375, 69.960439 ], [ -92.109375, 69.839622 ], [ -92.285156, 69.839622 ], [ -92.285156, 69.657086 ], [ -91.757812, 69.657086 ], [ -91.757812, 69.595890 ], [ -91.406250, 69.595890 ], [ -91.406250, 69.534518 ], [ -90.878906, 69.534518 ], [ -90.878906, 69.472969 ], [ -90.527344, 69.472969 ], [ -90.527344, 68.463800 ], [ -90.351562, 68.463800 ], [ -90.351562, 68.592487 ], [ -90.175781, 68.592487 ], [ -90.175781, 68.720441 ], [ -90.000000, 68.720441 ], [ -90.000000, 68.847665 ], [ -89.824219, 68.847665 ], [ -89.824219, 68.974164 ], [ -89.648438, 68.974164 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.224997 ], [ -135.703125, 69.224997 ], [ -135.703125, 69.287257 ], [ -135.527344, 69.287257 ], [ -135.527344, 69.349339 ], [ -135.351562, 69.349339 ], [ -135.351562, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -134.824219, 69.472969 ], [ -134.824219, 69.534518 ], [ -134.648438, 69.534518 ], [ -134.648438, 69.595890 ], [ -134.472656, 69.595890 ], [ -134.472656, 69.657086 ], [ -134.121094, 69.657086 ], [ -134.121094, 69.595890 ], [ -133.417969, 69.595890 ], [ -133.417969, 69.534518 ], [ -132.714844, 69.534518 ], [ -132.714844, 69.595890 ], [ -132.539062, 69.595890 ], [ -132.539062, 69.657086 ], [ -132.363281, 69.657086 ], [ -132.363281, 69.718107 ], [ -132.011719, 69.718107 ], [ -132.011719, 69.778952 ], [ -131.835938, 69.778952 ], [ -131.835938, 69.839622 ], [ -131.660156, 69.839622 ], [ -131.660156, 69.900118 ], [ -131.484375, 69.900118 ], [ -131.484375, 69.960439 ], [ -131.132812, 69.960439 ], [ -131.132812, 70.020587 ], [ -130.781250, 70.020587 ], [ -130.781250, 70.080562 ], [ -130.253906, 70.080562 ], [ -130.253906, 70.140364 ], [ -129.902344, 70.140364 ], [ -129.902344, 70.199994 ], [ -129.726562, 70.199994 ], [ -129.726562, 70.140364 ], [ -129.550781, 70.140364 ], [ -129.550781, 70.020587 ], [ -129.375000, 70.020587 ], [ -129.375000, 69.900118 ], [ -129.199219, 69.900118 ], [ -129.199219, 69.778952 ], [ -128.847656, 69.778952 ], [ -128.847656, 69.839622 ], [ -128.671875, 69.839622 ], [ -128.671875, 69.900118 ], [ -128.496094, 69.900118 ], [ -128.496094, 69.960439 ], [ -128.320312, 69.960439 ], [ -128.320312, 70.259452 ], [ -128.144531, 70.259452 ], [ -128.144531, 70.436799 ], [ -127.792969, 70.436799 ], [ -127.792969, 70.377854 ], [ -127.441406, 70.377854 ], [ -127.441406, 70.318738 ], [ -127.265625, 70.318738 ], [ -127.265625, 70.199994 ], [ -127.089844, 70.199994 ], [ -127.089844, 70.140364 ], [ -126.914062, 70.140364 ], [ -126.914062, 70.020587 ], [ -126.738281, 70.020587 ], [ -126.738281, 69.960439 ], [ -126.562500, 69.960439 ], [ -126.562500, 69.839622 ], [ -126.386719, 69.839622 ], [ -126.386719, 69.778952 ], [ -126.210938, 69.778952 ], [ -126.210938, 69.657086 ], [ -126.035156, 69.657086 ], [ -126.035156, 69.595890 ], [ -125.859375, 69.595890 ], [ -125.859375, 69.472969 ], [ -125.507812, 69.472969 ], [ -125.507812, 69.595890 ], [ -125.332031, 69.595890 ], [ -125.332031, 69.657086 ], [ -125.156250, 69.657086 ], [ -125.156250, 69.778952 ], [ -124.980469, 69.778952 ], [ -124.980469, 69.900118 ], [ -124.804688, 69.900118 ], [ -124.804688, 69.960439 ], [ -124.628906, 69.960439 ], [ -124.628906, 70.080562 ], [ -124.453125, 70.080562 ], [ -124.453125, 69.778952 ], [ -124.277344, 69.778952 ], [ -124.277344, 69.411242 ], [ -123.925781, 69.411242 ], [ -123.925781, 69.472969 ], [ -123.222656, 69.472969 ], [ -123.222656, 69.534518 ], [ -123.046875, 69.534518 ], [ -123.046875, 69.595890 ], [ -122.871094, 69.595890 ], [ -122.871094, 69.718107 ], [ -122.695312, 69.718107 ], [ -122.695312, 69.839622 ], [ -122.167969, 69.839622 ], [ -122.167969, 69.778952 ], [ -121.464844, 69.778952 ], [ -121.464844, 69.718107 ], [ -121.289062, 69.718107 ], [ -121.289062, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.595890 ], [ -120.761719, 69.595890 ], [ -120.761719, 69.534518 ], [ -120.585938, 69.534518 ], [ -120.585938, 69.472969 ], [ -120.234375, 69.472969 ], [ -120.234375, 69.411242 ], [ -120.058594, 69.411242 ], [ -120.058594, 69.349339 ], [ -119.707031, 69.349339 ], [ -119.707031, 69.287257 ], [ -119.355469, 69.287257 ], [ -119.355469, 69.224997 ], [ -118.828125, 69.224997 ], [ -118.828125, 69.162558 ], [ -118.300781, 69.162558 ], [ -118.300781, 69.099940 ], [ -117.949219, 69.099940 ], [ -117.949219, 69.037142 ], [ -117.421875, 69.037142 ], [ -117.421875, 68.974164 ], [ -117.070312, 68.974164 ], [ -117.070312, 68.911005 ], [ -116.542969, 68.911005 ], [ -116.542969, 68.847665 ], [ -115.664062, 68.847665 ], [ -115.664062, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.847665 ], [ -115.136719, 68.847665 ], [ -115.136719, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.720441 ], [ -114.785156, 68.720441 ], [ -114.785156, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.592487 ], [ -114.433594, 68.592487 ], [ -114.433594, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.463800 ], [ -114.082031, 68.463800 ], [ -114.082031, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.334376 ], [ -114.082031, 68.334376 ], [ -114.082031, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.204212 ], [ -114.433594, 68.204212 ], [ -114.433594, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 68.073305 ], [ -114.785156, 68.073305 ], [ -114.785156, 68.007571 ], [ -114.960938, 68.007571 ], [ -114.960938, 67.941650 ], [ -115.136719, 67.941650 ], [ -115.136719, 67.809245 ], [ -114.609375, 67.809245 ], [ -114.609375, 67.742759 ], [ -113.906250, 67.742759 ], [ -113.906250, 67.676085 ], [ -112.675781, 67.676085 ], [ -112.675781, 67.742759 ], [ -111.269531, 67.742759 ], [ -111.269531, 67.809245 ], [ -110.566406, 67.809245 ], [ -110.566406, 67.875541 ], [ -110.214844, 67.875541 ], [ -110.214844, 67.941650 ], [ -109.687500, 67.941650 ], [ -109.687500, 67.809245 ], [ -109.511719, 67.809245 ], [ -109.511719, 67.742759 ], [ -109.335938, 67.742759 ], [ -109.335938, 67.609221 ], [ -109.160156, 67.609221 ], [ -109.160156, 67.542167 ], [ -108.984375, 67.542167 ], [ -108.984375, 67.407487 ], [ -108.632812, 67.407487 ], [ -108.632812, 67.474922 ], [ -108.457031, 67.474922 ], [ -108.457031, 67.542167 ], [ -108.281250, 67.542167 ], [ -108.281250, 67.676085 ], [ -108.105469, 67.676085 ], [ -108.105469, 67.742759 ], [ -107.929688, 67.742759 ], [ -107.929688, 67.809245 ], [ -107.753906, 67.809245 ], [ -107.753906, 67.875541 ], [ -107.929688, 67.875541 ], [ -107.929688, 67.941650 ], [ -108.105469, 67.941650 ], [ -108.105469, 68.007571 ], [ -108.281250, 68.007571 ], [ -108.281250, 68.138852 ], [ -108.457031, 68.138852 ], [ -108.457031, 68.204212 ], [ -108.632812, 68.204212 ], [ -108.632812, 68.269387 ], [ -108.808594, 68.269387 ], [ -108.808594, 68.334376 ], [ -108.632812, 68.334376 ], [ -108.632812, 68.399180 ], [ -108.457031, 68.399180 ], [ -108.457031, 68.528235 ], [ -108.281250, 68.528235 ], [ -108.281250, 68.592487 ], [ -108.105469, 68.592487 ], [ -108.105469, 68.656555 ], [ -107.402344, 68.656555 ], [ -107.402344, 68.720441 ], [ -106.347656, 68.720441 ], [ -106.347656, 68.784144 ], [ -106.171875, 68.784144 ], [ -106.171875, 68.720441 ], [ -105.820312, 68.720441 ], [ -105.820312, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.592487 ], [ -105.292969, 68.592487 ], [ -105.292969, 68.528235 ], [ -105.117188, 68.528235 ], [ -105.117188, 68.399180 ], [ -104.941406, 68.399180 ], [ -104.941406, 68.269387 ], [ -104.765625, 68.269387 ], [ -104.765625, 68.138852 ], [ -104.589844, 68.138852 ], [ -104.589844, 68.007571 ], [ -103.710938, 68.007571 ], [ -103.710938, 68.073305 ], [ -103.183594, 68.073305 ], [ -103.183594, 68.007571 ], [ -102.832031, 68.007571 ], [ -102.832031, 67.941650 ], [ -102.480469, 67.941650 ], [ -102.480469, 67.875541 ], [ -102.304688, 67.875541 ], [ -102.304688, 67.809245 ], [ -101.953125, 67.809245 ], [ -101.953125, 67.742759 ], [ -101.601562, 67.742759 ], [ -101.601562, 67.676085 ], [ -100.898438, 67.676085 ], [ -100.898438, 67.742759 ], [ -100.195312, 67.742759 ], [ -100.195312, 67.809245 ], [ -98.437500, 67.809245 ], [ -98.437500, 68.073305 ], [ -98.613281, 68.073305 ], [ -98.613281, 68.399180 ], [ -98.437500, 68.399180 ], [ -98.437500, 68.463800 ], [ -98.085938, 68.463800 ], [ -98.085938, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.463800 ], [ -97.031250, 68.463800 ], [ -97.031250, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.334376 ], [ -96.328125, 68.334376 ], [ -96.328125, 68.269387 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.339861 ], [ -95.976562, 67.339861 ], [ -95.976562, 67.542167 ], [ -95.800781, 67.542167 ], [ -95.800781, 67.742759 ], [ -95.625000, 67.742759 ], [ -95.625000, 67.941650 ], [ -95.449219, 67.941650 ], [ -95.449219, 68.073305 ], [ -94.746094, 68.073305 ], [ -94.746094, 68.204212 ], [ -94.570312, 68.204212 ], [ -94.570312, 68.592487 ], [ -94.394531, 68.592487 ], [ -94.394531, 68.911005 ], [ -94.218750, 68.911005 ], [ -94.218750, 69.099940 ], [ -94.394531, 69.099940 ], [ -94.394531, 69.224997 ], [ -94.570312, 69.224997 ], [ -94.570312, 69.287257 ], [ -94.746094, 69.287257 ], [ -94.746094, 69.411242 ], [ -94.921875, 69.411242 ], [ -94.921875, 69.472969 ], [ -95.097656, 69.472969 ], [ -95.097656, 69.595890 ], [ -95.273438, 69.595890 ], [ -95.273438, 69.657086 ], [ -95.449219, 69.657086 ], [ -95.449219, 69.718107 ], [ -95.625000, 69.718107 ], [ -95.625000, 69.778952 ], [ -95.800781, 69.778952 ], [ -95.800781, 69.839622 ], [ -95.976562, 69.839622 ], [ -95.976562, 69.900118 ], [ -96.152344, 69.900118 ], [ -96.152344, 69.960439 ], [ -96.328125, 69.960439 ], [ -96.328125, 70.020587 ], [ -96.503906, 70.020587 ], [ -96.503906, 70.612614 ], [ -96.328125, 70.612614 ], [ -96.328125, 71.244356 ], [ -96.152344, 71.244356 ], [ -96.152344, 71.357067 ], [ -95.976562, 71.357067 ], [ -95.976562, 71.469124 ], [ -95.800781, 71.469124 ], [ -95.800781, 71.580532 ], [ -95.625000, 71.580532 ], [ -95.625000, 71.691293 ], [ -95.449219, 71.691293 ], [ -95.449219, 71.801410 ], [ -95.273438, 71.801410 ], [ -95.273438, 71.910888 ], [ -95.097656, 71.910888 ] ] ], [ [ [ -98.085938, 70.080562 ], [ -98.085938, 70.020587 ], [ -97.910156, 70.020587 ], [ -97.910156, 69.960439 ], [ -97.558594, 69.960439 ], [ -97.558594, 69.900118 ], [ -97.382812, 69.900118 ], [ -97.382812, 69.839622 ], [ -97.207031, 69.839622 ], [ -97.207031, 69.778952 ], [ -97.031250, 69.778952 ], [ -97.031250, 69.718107 ], [ -96.679688, 69.718107 ], [ -96.679688, 69.657086 ], [ -96.503906, 69.657086 ], [ -96.503906, 69.534518 ], [ -96.328125, 69.534518 ], [ -96.328125, 69.411242 ], [ -96.152344, 69.411242 ], [ -96.152344, 69.287257 ], [ -95.976562, 69.287257 ], [ -95.976562, 69.224997 ], [ -95.800781, 69.224997 ], [ -95.800781, 69.099940 ], [ -95.625000, 69.099940 ], [ -95.625000, 69.037142 ], [ -95.800781, 69.037142 ], [ -95.800781, 68.974164 ], [ -95.976562, 68.974164 ], [ -95.976562, 68.847665 ], [ -96.152344, 68.847665 ], [ -96.152344, 68.784144 ], [ -96.503906, 68.784144 ], [ -96.503906, 68.847665 ], [ -96.855469, 68.847665 ], [ -96.855469, 68.911005 ], [ -97.207031, 68.911005 ], [ -97.207031, 68.974164 ], [ -97.558594, 68.974164 ], [ -97.558594, 69.037142 ], [ -97.910156, 69.037142 ], [ -97.910156, 68.974164 ], [ -98.613281, 68.974164 ], [ -98.613281, 69.037142 ], [ -98.789062, 69.037142 ], [ -98.789062, 69.099940 ], [ -98.964844, 69.099940 ], [ -98.964844, 69.162558 ], [ -99.316406, 69.162558 ], [ -99.316406, 69.224997 ], [ -99.492188, 69.224997 ], [ -99.492188, 69.287257 ], [ -99.667969, 69.287257 ], [ -99.667969, 69.349339 ], [ -99.843750, 69.349339 ], [ -99.843750, 69.411242 ], [ -99.667969, 69.411242 ], [ -99.667969, 69.472969 ], [ -99.492188, 69.472969 ], [ -99.492188, 69.534518 ], [ -99.316406, 69.534518 ], [ -99.316406, 69.595890 ], [ -99.140625, 69.595890 ], [ -99.140625, 69.657086 ], [ -98.964844, 69.657086 ], [ -98.964844, 69.718107 ], [ -98.789062, 69.718107 ], [ -98.789062, 69.839622 ], [ -98.613281, 69.839622 ], [ -98.613281, 69.960439 ], [ -98.437500, 69.960439 ], [ -98.437500, 70.080562 ], [ -98.085938, 70.080562 ] ] ], [ [ [ -114.785156, 73.277353 ], [ -114.785156, 73.226700 ], [ -114.609375, 73.226700 ], [ -114.609375, 73.175897 ], [ -114.257812, 73.175897 ], [ -114.257812, 73.124945 ], [ -114.082031, 73.124945 ], [ -114.082031, 73.022592 ], [ -114.257812, 73.022592 ], [ -114.257812, 72.867930 ], [ -114.433594, 72.867930 ], [ -114.433594, 72.711903 ], [ -114.609375, 72.711903 ], [ -114.609375, 72.659588 ], [ -114.257812, 72.659588 ], [ -114.257812, 72.711903 ], [ -113.906250, 72.711903 ], [ -113.906250, 72.764065 ], [ -113.554688, 72.764065 ], [ -113.554688, 72.816074 ], [ -113.203125, 72.816074 ], [ -113.203125, 72.867930 ], [ -112.851562, 72.867930 ], [ -112.851562, 72.919635 ], [ -112.324219, 72.919635 ], [ -112.324219, 72.867930 ], [ -112.148438, 72.867930 ], [ -112.148438, 72.764065 ], [ -111.972656, 72.764065 ], [ -111.972656, 72.711903 ], [ -111.796875, 72.711903 ], [ -111.796875, 72.659588 ], [ -111.621094, 72.659588 ], [ -111.621094, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.501722 ], [ -111.269531, 72.501722 ], [ -111.269531, 72.448792 ], [ -110.917969, 72.448792 ], [ -110.917969, 72.554498 ], [ -110.742188, 72.554498 ], [ -110.742188, 72.607120 ], [ -110.566406, 72.607120 ], [ -110.566406, 72.711903 ], [ -110.390625, 72.711903 ], [ -110.390625, 72.764065 ], [ -110.214844, 72.764065 ], [ -110.214844, 72.816074 ], [ -110.039062, 72.816074 ], [ -110.039062, 72.919635 ], [ -109.687500, 72.919635 ], [ -109.687500, 72.816074 ], [ -109.511719, 72.816074 ], [ -109.511719, 72.764065 ], [ -109.335938, 72.764065 ], [ -109.335938, 72.711903 ], [ -109.160156, 72.711903 ], [ -109.160156, 72.607120 ], [ -108.984375, 72.607120 ], [ -108.984375, 72.501722 ], [ -108.808594, 72.501722 ], [ -108.808594, 72.289067 ], [ -108.632812, 72.289067 ], [ -108.632812, 72.127936 ], [ -108.457031, 72.127936 ], [ -108.457031, 71.910888 ], [ -108.281250, 71.910888 ], [ -108.281250, 71.691293 ], [ -108.105469, 71.691293 ], [ -108.105469, 71.746432 ], [ -107.929688, 71.746432 ], [ -107.929688, 71.965388 ], [ -107.753906, 71.965388 ], [ -107.753906, 72.181804 ], [ -107.929688, 72.181804 ], [ -107.929688, 72.448792 ], [ -108.105469, 72.448792 ], [ -108.105469, 72.659588 ], [ -108.281250, 72.659588 ], [ -108.281250, 72.919635 ], [ -108.457031, 72.919635 ], [ -108.457031, 73.073844 ], [ -108.281250, 73.073844 ], [ -108.281250, 73.124945 ], [ -107.929688, 73.124945 ], [ -107.929688, 73.175897 ], [ -107.226562, 73.175897 ], [ -107.226562, 73.124945 ], [ -106.875000, 73.124945 ], [ -106.875000, 73.073844 ], [ -106.523438, 73.073844 ], [ -106.523438, 73.022592 ], [ -106.347656, 73.022592 ], [ -106.347656, 72.971189 ], [ -106.171875, 72.971189 ], [ -106.171875, 72.867930 ], [ -105.996094, 72.867930 ], [ -105.996094, 72.816074 ], [ -105.820312, 72.816074 ], [ -105.820312, 72.764065 ], [ -105.644531, 72.764065 ], [ -105.644531, 72.659588 ], [ -105.468750, 72.659588 ], [ -105.468750, 72.501722 ], [ -105.292969, 72.501722 ], [ -105.292969, 72.289067 ], [ -105.117188, 72.289067 ], [ -105.117188, 72.019729 ], [ -104.941406, 72.019729 ], [ -104.941406, 71.801410 ], [ -104.765625, 71.801410 ], [ -104.765625, 71.524909 ], [ -104.589844, 71.524909 ], [ -104.589844, 71.187754 ], [ -104.414062, 71.187754 ], [ -104.414062, 70.959697 ], [ -104.238281, 70.959697 ], [ -104.238281, 70.902268 ], [ -104.062500, 70.902268 ], [ -104.062500, 70.844673 ], [ -103.886719, 70.844673 ], [ -103.886719, 70.786910 ], [ -103.710938, 70.786910 ], [ -103.710938, 70.728979 ], [ -103.535156, 70.728979 ], [ -103.535156, 70.670881 ], [ -103.359375, 70.670881 ], [ -103.359375, 70.612614 ], [ -103.183594, 70.612614 ], [ -103.183594, 70.554179 ], [ -103.007812, 70.554179 ], [ -103.007812, 70.495574 ], [ -102.832031, 70.495574 ], [ -102.832031, 70.436799 ], [ -102.480469, 70.436799 ], [ -102.480469, 70.377854 ], [ -102.304688, 70.377854 ], [ -102.304688, 70.318738 ], [ -102.128906, 70.318738 ], [ -102.128906, 70.259452 ], [ -101.777344, 70.259452 ], [ -101.777344, 70.199994 ], [ -101.601562, 70.199994 ], [ -101.601562, 70.140364 ], [ -101.425781, 70.140364 ], [ -101.425781, 70.080562 ], [ -101.074219, 70.080562 ], [ -101.074219, 70.020587 ], [ -100.898438, 70.020587 ], [ -100.898438, 69.778952 ], [ -101.074219, 69.778952 ], [ -101.074219, 69.595890 ], [ -101.777344, 69.595890 ], [ -101.777344, 69.534518 ], [ -102.656250, 69.534518 ], [ -102.656250, 69.411242 ], [ -102.480469, 69.411242 ], [ -102.480469, 69.287257 ], [ -102.304688, 69.287257 ], [ -102.304688, 69.162558 ], [ -102.128906, 69.162558 ], [ -102.128906, 68.974164 ], [ -102.304688, 68.974164 ], [ -102.304688, 68.847665 ], [ -102.480469, 68.847665 ], [ -102.480469, 68.784144 ], [ -103.007812, 68.784144 ], [ -103.007812, 68.847665 ], [ -103.886719, 68.847665 ], [ -103.886719, 68.911005 ], [ -104.589844, 68.911005 ], [ -104.589844, 68.974164 ], [ -104.941406, 68.974164 ], [ -104.941406, 69.037142 ], [ -105.468750, 69.037142 ], [ -105.468750, 69.099940 ], [ -105.820312, 69.099940 ], [ -105.820312, 69.162558 ], [ -106.347656, 69.162558 ], [ -106.347656, 69.099940 ], [ -107.226562, 69.099940 ], [ -107.226562, 69.037142 ], [ -107.578125, 69.037142 ], [ -107.578125, 68.974164 ], [ -107.929688, 68.974164 ], [ -107.929688, 68.911005 ], [ -108.281250, 68.911005 ], [ -108.281250, 68.847665 ], [ -108.632812, 68.847665 ], [ -108.632812, 68.784144 ], [ -109.511719, 68.784144 ], [ -109.511719, 68.720441 ], [ -110.917969, 68.720441 ], [ -110.917969, 68.656555 ], [ -111.972656, 68.656555 ], [ -111.972656, 68.592487 ], [ -112.851562, 68.592487 ], [ -112.851562, 68.528235 ], [ -113.378906, 68.528235 ], [ -113.378906, 68.592487 ], [ -113.554688, 68.592487 ], [ -113.554688, 68.784144 ], [ -113.730469, 68.784144 ], [ -113.730469, 68.911005 ], [ -113.906250, 68.911005 ], [ -113.906250, 69.037142 ], [ -114.082031, 69.037142 ], [ -114.082031, 69.099940 ], [ -114.433594, 69.099940 ], [ -114.433594, 69.162558 ], [ -114.785156, 69.162558 ], [ -114.785156, 69.224997 ], [ -115.136719, 69.224997 ], [ -115.136719, 69.287257 ], [ -115.312500, 69.287257 ], [ -115.312500, 69.224997 ], [ -115.839844, 69.224997 ], [ -115.839844, 69.162558 ], [ -116.367188, 69.162558 ], [ -116.367188, 69.287257 ], [ -116.542969, 69.287257 ], [ -116.542969, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.534518 ], [ -116.894531, 69.534518 ], [ -116.894531, 69.657086 ], [ -117.070312, 69.657086 ], [ -117.070312, 69.778952 ], [ -117.246094, 69.778952 ], [ -117.246094, 69.900118 ], [ -117.421875, 69.900118 ], [ -117.421875, 69.960439 ], [ -117.070312, 69.960439 ], [ -117.070312, 70.020587 ], [ -116.718750, 70.020587 ], [ -116.718750, 70.080562 ], [ -116.367188, 70.080562 ], [ -116.367188, 70.140364 ], [ -115.839844, 70.140364 ], [ -115.839844, 70.199994 ], [ -115.312500, 70.199994 ], [ -115.312500, 70.259452 ], [ -114.609375, 70.259452 ], [ -114.609375, 70.199994 ], [ -113.378906, 70.199994 ], [ -113.378906, 70.259452 ], [ -113.027344, 70.259452 ], [ -113.027344, 70.318738 ], [ -112.675781, 70.318738 ], [ -112.675781, 70.377854 ], [ -112.851562, 70.377854 ], [ -112.851562, 70.436799 ], [ -113.378906, 70.436799 ], [ -113.378906, 70.495574 ], [ -113.730469, 70.495574 ], [ -113.730469, 70.554179 ], [ -114.257812, 70.554179 ], [ -114.257812, 70.612614 ], [ -114.785156, 70.612614 ], [ -114.785156, 70.554179 ], [ -115.839844, 70.554179 ], [ -115.839844, 70.495574 ], [ -117.421875, 70.495574 ], [ -117.421875, 70.554179 ], [ -117.949219, 70.554179 ], [ -117.949219, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.728979 ], [ -118.300781, 70.728979 ], [ -118.300781, 70.844673 ], [ -118.476562, 70.844673 ], [ -118.476562, 70.902268 ], [ -118.300781, 70.902268 ], [ -118.300781, 70.959697 ], [ -117.949219, 70.959697 ], [ -117.949219, 71.016960 ], [ -117.597656, 71.016960 ], [ -117.597656, 71.074056 ], [ -117.246094, 71.074056 ], [ -117.246094, 71.130988 ], [ -116.894531, 71.130988 ], [ -116.894531, 71.187754 ], [ -116.542969, 71.187754 ], [ -116.542969, 71.244356 ], [ -116.191406, 71.244356 ], [ -116.191406, 71.300793 ], [ -117.949219, 71.300793 ], [ -117.949219, 71.357067 ], [ -118.300781, 71.357067 ], [ -118.300781, 71.413177 ], [ -118.652344, 71.413177 ], [ -118.652344, 71.469124 ], [ -119.003906, 71.469124 ], [ -119.003906, 71.524909 ], [ -119.355469, 71.524909 ], [ -119.355469, 71.635993 ], [ -119.179688, 71.635993 ], [ -119.179688, 71.746432 ], [ -119.003906, 71.746432 ], [ -119.003906, 71.910888 ], [ -118.828125, 71.910888 ], [ -118.828125, 72.073911 ], [ -118.652344, 72.073911 ], [ -118.652344, 72.181804 ], [ -118.476562, 72.181804 ], [ -118.476562, 72.342464 ], [ -118.300781, 72.342464 ], [ -118.300781, 72.501722 ], [ -118.125000, 72.501722 ], [ -118.125000, 72.607120 ], [ -117.949219, 72.607120 ], [ -117.949219, 72.711903 ], [ -117.773438, 72.711903 ], [ -117.773438, 72.764065 ], [ -117.421875, 72.764065 ], [ -117.421875, 72.816074 ], [ -117.246094, 72.816074 ], [ -117.246094, 72.867930 ], [ -117.070312, 72.867930 ], [ -117.070312, 72.919635 ], [ -116.718750, 72.919635 ], [ -116.718750, 72.971189 ], [ -116.542969, 72.971189 ], [ -116.542969, 73.022592 ], [ -116.367188, 73.022592 ], [ -116.367188, 73.073844 ], [ -116.015625, 73.073844 ], [ -116.015625, 73.124945 ], [ -115.839844, 73.124945 ], [ -115.839844, 73.175897 ], [ -115.664062, 73.175897 ], [ -115.664062, 73.226700 ], [ -115.312500, 73.226700 ], [ -115.312500, 73.277353 ], [ -114.785156, 73.277353 ] ] ], [ [ [ -121.464844, 74.449358 ], [ -121.464844, 74.402163 ], [ -121.113281, 74.402163 ], [ -121.113281, 74.354828 ], [ -120.761719, 74.354828 ], [ -120.761719, 74.307353 ], [ -120.410156, 74.307353 ], [ -120.410156, 74.259738 ], [ -119.531250, 74.259738 ], [ -119.531250, 74.211983 ], [ -118.300781, 74.211983 ], [ -118.300781, 74.164085 ], [ -117.597656, 74.164085 ], [ -117.597656, 74.116047 ], [ -117.421875, 74.116047 ], [ -117.421875, 74.067866 ], [ -117.246094, 74.067866 ], [ -117.246094, 74.019543 ], [ -117.070312, 74.019543 ], [ -117.070312, 73.971078 ], [ -116.894531, 73.971078 ], [ -116.894531, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.873717 ], [ -116.542969, 73.873717 ], [ -116.542969, 73.824820 ], [ -116.367188, 73.824820 ], [ -116.367188, 73.775780 ], [ -116.191406, 73.775780 ], [ -116.191406, 73.677264 ], [ -116.015625, 73.677264 ], [ -116.015625, 73.627789 ], [ -115.839844, 73.627789 ], [ -115.839844, 73.578167 ], [ -115.664062, 73.578167 ], [ -115.664062, 73.478485 ], [ -115.488281, 73.478485 ], [ -115.488281, 73.428424 ], [ -115.839844, 73.428424 ], [ -115.839844, 73.378215 ], [ -116.015625, 73.378215 ], [ -116.015625, 73.327858 ], [ -116.191406, 73.327858 ], [ -116.191406, 73.277353 ], [ -116.542969, 73.277353 ], [ -116.542969, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.175897 ], [ -116.894531, 73.175897 ], [ -116.894531, 73.124945 ], [ -117.070312, 73.124945 ], [ -117.070312, 73.073844 ], [ -117.246094, 73.073844 ], [ -117.246094, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.971189 ], [ -117.597656, 72.971189 ], [ -117.597656, 72.919635 ], [ -117.773438, 72.919635 ], [ -117.773438, 72.867930 ], [ -117.949219, 72.867930 ], [ -117.949219, 72.816074 ], [ -118.125000, 72.816074 ], [ -118.125000, 72.764065 ], [ -118.300781, 72.764065 ], [ -118.300781, 72.711903 ], [ -118.476562, 72.711903 ], [ -118.476562, 72.659588 ], [ -118.652344, 72.659588 ], [ -118.652344, 72.607120 ], [ -118.828125, 72.607120 ], [ -118.828125, 72.554498 ], [ -119.003906, 72.554498 ], [ -119.003906, 72.501722 ], [ -119.179688, 72.501722 ], [ -119.179688, 72.448792 ], [ -119.355469, 72.448792 ], [ -119.355469, 72.342464 ], [ -119.531250, 72.342464 ], [ -119.531250, 72.235514 ], [ -119.707031, 72.235514 ], [ -119.707031, 72.127936 ], [ -119.882812, 72.127936 ], [ -119.882812, 72.019729 ], [ -120.058594, 72.019729 ], [ -120.058594, 71.910888 ], [ -120.234375, 71.910888 ], [ -120.234375, 71.801410 ], [ -120.410156, 71.801410 ], [ -120.410156, 71.300793 ], [ -120.761719, 71.300793 ], [ -120.761719, 71.244356 ], [ -121.113281, 71.244356 ], [ -121.113281, 71.187754 ], [ -121.464844, 71.187754 ], [ -121.464844, 71.130988 ], [ -121.816406, 71.130988 ], [ -121.816406, 71.074056 ], [ -122.167969, 71.074056 ], [ -122.167969, 71.016960 ], [ -122.519531, 71.016960 ], [ -122.519531, 70.959697 ], [ -122.871094, 70.959697 ], [ -122.871094, 70.902268 ], [ -123.046875, 70.902268 ], [ -123.046875, 70.959697 ], [ -123.222656, 70.959697 ], [ -123.222656, 71.130988 ], [ -123.398438, 71.130988 ], [ -123.398438, 71.244356 ], [ -123.574219, 71.244356 ], [ -123.574219, 71.357067 ], [ -123.750000, 71.357067 ], [ -123.750000, 71.413177 ], [ -124.101562, 71.413177 ], [ -124.101562, 71.469124 ], [ -124.277344, 71.469124 ], [ -124.277344, 71.524909 ], [ -124.628906, 71.524909 ], [ -124.628906, 71.580532 ], [ -124.804688, 71.580532 ], [ -124.804688, 71.635993 ], [ -124.980469, 71.635993 ], [ -124.980469, 71.691293 ], [ -125.332031, 71.691293 ], [ -125.332031, 71.746432 ], [ -125.507812, 71.746432 ], [ -125.507812, 71.801410 ], [ -125.859375, 71.801410 ], [ -125.859375, 71.965388 ], [ -125.683594, 71.965388 ], [ -125.683594, 72.181804 ], [ -125.507812, 72.181804 ], [ -125.507812, 72.342464 ], [ -125.332031, 72.342464 ], [ -125.332031, 72.554498 ], [ -125.156250, 72.554498 ], [ -125.156250, 72.711903 ], [ -124.980469, 72.711903 ], [ -124.980469, 72.919635 ], [ -124.804688, 72.919635 ], [ -124.804688, 73.073844 ], [ -124.628906, 73.073844 ], [ -124.628906, 73.175897 ], [ -124.453125, 73.175897 ], [ -124.453125, 73.327858 ], [ -124.277344, 73.327858 ], [ -124.277344, 73.478485 ], [ -124.101562, 73.478485 ], [ -124.101562, 73.578167 ], [ -123.925781, 73.578167 ], [ -123.925781, 73.726595 ], [ -124.101562, 73.726595 ], [ -124.101562, 73.824820 ], [ -124.277344, 73.824820 ], [ -124.277344, 73.922469 ], [ -124.453125, 73.922469 ], [ -124.453125, 74.019543 ], [ -124.628906, 74.019543 ], [ -124.628906, 74.116047 ], [ -124.804688, 74.116047 ], [ -124.804688, 74.211983 ], [ -124.980469, 74.211983 ], [ -124.980469, 74.307353 ], [ -124.277344, 74.307353 ], [ -124.277344, 74.354828 ], [ -123.046875, 74.354828 ], [ -123.046875, 74.402163 ], [ -121.992188, 74.402163 ], [ -121.992188, 74.449358 ], [ -121.464844, 74.449358 ] ] ], [ [ [ -89.121094, 70.902268 ], [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.728979 ], [ -89.472656, 70.728979 ], [ -89.472656, 70.786910 ], [ -89.296875, 70.786910 ], [ -89.296875, 70.902268 ], [ -89.121094, 70.902268 ] ] ], [ [ [ -109.160156, 76.760541 ], [ -109.160156, 76.720223 ], [ -108.808594, 76.720223 ], [ -108.808594, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.557743 ], [ -108.457031, 76.557743 ], [ -108.457031, 76.310358 ], [ -108.281250, 76.310358 ], [ -108.281250, 76.100796 ], [ -108.105469, 76.100796 ], [ -108.105469, 76.016094 ], [ -107.929688, 76.016094 ], [ -107.929688, 75.888091 ], [ -107.753906, 75.888091 ], [ -107.753906, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 75.888091 ], [ -107.402344, 75.888091 ], [ -107.402344, 75.930885 ], [ -107.050781, 75.930885 ], [ -107.050781, 75.973553 ], [ -106.875000, 75.973553 ], [ -106.875000, 76.016094 ], [ -106.523438, 76.016094 ], [ -106.523438, 75.973553 ], [ -105.820312, 75.973553 ], [ -105.820312, 75.715633 ], [ -105.644531, 75.715633 ], [ -105.644531, 75.408854 ], [ -105.820312, 75.408854 ], [ -105.820312, 75.275413 ], [ -105.996094, 75.275413 ], [ -105.996094, 75.185789 ], [ -106.171875, 75.185789 ], [ -106.171875, 75.050354 ], [ -106.347656, 75.050354 ], [ -106.347656, 75.004940 ], [ -106.875000, 75.004940 ], [ -106.875000, 74.959392 ], [ -107.929688, 74.959392 ], [ -107.929688, 74.913708 ], [ -108.984375, 74.913708 ], [ -108.984375, 74.867889 ], [ -109.687500, 74.867889 ], [ -109.687500, 74.821934 ], [ -110.039062, 74.821934 ], [ -110.039062, 74.775843 ], [ -110.214844, 74.775843 ], [ -110.214844, 74.729615 ], [ -110.390625, 74.729615 ], [ -110.390625, 74.683250 ], [ -110.742188, 74.683250 ], [ -110.742188, 74.636748 ], [ -110.917969, 74.636748 ], [ -110.917969, 74.590108 ], [ -111.269531, 74.590108 ], [ -111.269531, 74.543330 ], [ -111.445312, 74.543330 ], [ -111.445312, 74.496413 ], [ -111.621094, 74.496413 ], [ -111.621094, 74.449358 ], [ -111.972656, 74.449358 ], [ -111.972656, 74.402163 ], [ -113.730469, 74.402163 ], [ -113.730469, 74.543330 ], [ -113.906250, 74.543330 ], [ -113.906250, 74.729615 ], [ -113.730469, 74.729615 ], [ -113.730469, 74.775843 ], [ -113.378906, 74.775843 ], [ -113.378906, 74.821934 ], [ -113.203125, 74.821934 ], [ -113.203125, 74.867889 ], [ -113.027344, 74.867889 ], [ -113.027344, 74.913708 ], [ -112.675781, 74.913708 ], [ -112.675781, 74.959392 ], [ -112.500000, 74.959392 ], [ -112.500000, 75.004940 ], [ -112.324219, 75.004940 ], [ -112.324219, 75.050354 ], [ -111.972656, 75.050354 ], [ -111.972656, 75.095633 ], [ -111.796875, 75.095633 ], [ -111.796875, 75.140778 ], [ -112.851562, 75.140778 ], [ -112.851562, 75.095633 ], [ -115.136719, 75.095633 ], [ -115.136719, 75.050354 ], [ -116.718750, 75.050354 ], [ -116.718750, 75.095633 ], [ -117.070312, 75.095633 ], [ -117.070312, 75.140778 ], [ -117.421875, 75.140778 ], [ -117.421875, 75.185789 ], [ -117.773438, 75.185789 ], [ -117.773438, 75.275413 ], [ -117.597656, 75.275413 ], [ -117.597656, 75.408854 ], [ -117.421875, 75.408854 ], [ -117.421875, 75.497157 ], [ -117.246094, 75.497157 ], [ -117.246094, 75.628632 ], [ -117.070312, 75.628632 ], [ -117.070312, 75.758940 ], [ -116.894531, 75.758940 ], [ -116.894531, 75.888091 ], [ -116.718750, 75.888091 ], [ -116.718750, 75.973553 ], [ -116.542969, 75.973553 ], [ -116.542969, 76.100796 ], [ -116.367188, 76.100796 ], [ -116.367188, 76.184995 ], [ -116.191406, 76.184995 ], [ -116.191406, 76.268695 ], [ -116.015625, 76.268695 ], [ -116.015625, 76.310358 ], [ -115.839844, 76.310358 ], [ -115.839844, 76.351896 ], [ -115.664062, 76.351896 ], [ -115.664062, 76.434604 ], [ -115.136719, 76.434604 ], [ -115.136719, 76.393312 ], [ -114.785156, 76.393312 ], [ -114.785156, 76.351896 ], [ -114.433594, 76.351896 ], [ -114.433594, 76.310358 ], [ -114.082031, 76.310358 ], [ -114.082031, 76.268695 ], [ -113.730469, 76.268695 ], [ -113.730469, 76.226907 ], [ -113.378906, 76.226907 ], [ -113.378906, 76.184995 ], [ -113.027344, 76.184995 ], [ -113.027344, 76.142958 ], [ -112.675781, 76.142958 ], [ -112.675781, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 76.058508 ], [ -112.324219, 76.058508 ], [ -112.324219, 75.973553 ], [ -112.148438, 75.973553 ], [ -112.148438, 75.930885 ], [ -111.972656, 75.930885 ], [ -111.972656, 75.888091 ], [ -111.796875, 75.888091 ], [ -111.796875, 75.845169 ], [ -111.621094, 75.845169 ], [ -111.621094, 75.758940 ], [ -111.445312, 75.758940 ], [ -111.445312, 75.715633 ], [ -111.269531, 75.715633 ], [ -111.269531, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.584937 ], [ -110.917969, 75.584937 ], [ -110.917969, 75.541113 ], [ -110.390625, 75.541113 ], [ -110.390625, 75.497157 ], [ -109.511719, 75.497157 ], [ -109.511719, 75.453071 ], [ -108.984375, 75.453071 ], [ -108.984375, 75.497157 ], [ -109.160156, 75.497157 ], [ -109.160156, 75.584937 ], [ -109.335938, 75.584937 ], [ -109.335938, 75.715633 ], [ -109.511719, 75.715633 ], [ -109.511719, 75.802118 ], [ -109.687500, 75.802118 ], [ -109.687500, 75.930885 ], [ -109.863281, 75.930885 ], [ -109.863281, 76.058508 ], [ -110.039062, 76.058508 ], [ -110.039062, 76.142958 ], [ -110.214844, 76.142958 ], [ -110.214844, 76.268695 ], [ -110.390625, 76.268695 ], [ -110.390625, 76.351896 ], [ -110.566406, 76.351896 ], [ -110.566406, 76.434604 ], [ -110.390625, 76.434604 ], [ -110.390625, 76.516819 ], [ -110.214844, 76.516819 ], [ -110.214844, 76.557743 ], [ -110.039062, 76.557743 ], [ -110.039062, 76.639226 ], [ -109.863281, 76.639226 ], [ -109.863281, 76.679785 ], [ -109.687500, 76.679785 ], [ -109.687500, 76.760541 ], [ -109.160156, 76.760541 ] ] ], [ [ [ -89.121094, 71.244356 ], [ -89.824219, 71.244356 ], [ -89.824219, 71.469124 ], [ -90.000000, 71.469124 ], [ -90.000000, 71.965388 ], [ -90.175781, 71.965388 ], [ -90.175781, 72.342464 ], [ -90.000000, 72.342464 ], [ -90.000000, 72.554498 ], [ -89.824219, 72.554498 ], [ -89.824219, 72.764065 ], [ -89.648438, 72.764065 ], [ -89.648438, 72.971189 ], [ -89.472656, 72.971189 ], [ -89.472656, 73.124945 ], [ -89.296875, 73.124945 ], [ -89.296875, 73.226700 ], [ -89.121094, 73.226700 ], [ -89.121094, 71.244356 ] ] ], [ [ [ -97.382812, 73.775780 ], [ -97.382812, 73.627789 ], [ -97.207031, 73.627789 ], [ -97.207031, 73.428424 ], [ -97.382812, 73.428424 ], [ -97.382812, 73.327858 ], [ -97.558594, 73.327858 ], [ -97.558594, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 73.124945 ], [ -97.910156, 73.124945 ], [ -97.910156, 73.022592 ], [ -98.085938, 73.022592 ], [ -98.085938, 72.919635 ], [ -97.910156, 72.919635 ], [ -97.910156, 72.867930 ], [ -97.734375, 72.867930 ], [ -97.734375, 72.816074 ], [ -97.558594, 72.816074 ], [ -97.558594, 72.764065 ], [ -97.207031, 72.764065 ], [ -97.207031, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.659588 ], [ -96.855469, 72.659588 ], [ -96.855469, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 72.554498 ], [ -96.503906, 72.554498 ], [ -96.503906, 72.073911 ], [ -96.679688, 72.073911 ], [ -96.679688, 71.580532 ], [ -97.031250, 71.580532 ], [ -97.031250, 71.524909 ], [ -97.382812, 71.524909 ], [ -97.382812, 71.469124 ], [ -97.558594, 71.469124 ], [ -97.558594, 71.413177 ], [ -97.910156, 71.413177 ], [ -97.910156, 71.357067 ], [ -98.261719, 71.357067 ], [ -98.261719, 71.300793 ], [ -98.964844, 71.300793 ], [ -98.964844, 71.357067 ], [ -99.492188, 71.357067 ], [ -99.492188, 71.469124 ], [ -99.667969, 71.469124 ], [ -99.667969, 71.580532 ], [ -99.843750, 71.580532 ], [ -99.843750, 71.691293 ], [ -100.019531, 71.691293 ], [ -100.019531, 71.746432 ], [ -100.195312, 71.746432 ], [ -100.195312, 71.801410 ], [ -100.371094, 71.801410 ], [ -100.371094, 71.856229 ], [ -100.546875, 71.856229 ], [ -100.546875, 71.910888 ], [ -100.722656, 71.910888 ], [ -100.722656, 71.965388 ], [ -100.898438, 71.965388 ], [ -100.898438, 72.019729 ], [ -101.074219, 72.019729 ], [ -101.074219, 72.073911 ], [ -101.250000, 72.073911 ], [ -101.250000, 72.127936 ], [ -101.425781, 72.127936 ], [ -101.425781, 72.181804 ], [ -101.601562, 72.181804 ], [ -101.601562, 72.235514 ], [ -101.777344, 72.235514 ], [ -101.777344, 72.289067 ], [ -101.953125, 72.289067 ], [ -101.953125, 72.342464 ], [ -102.128906, 72.342464 ], [ -102.128906, 72.395706 ], [ -102.304688, 72.395706 ], [ -102.304688, 72.448792 ], [ -102.480469, 72.448792 ], [ -102.480469, 72.816074 ], [ -102.128906, 72.816074 ], [ -102.128906, 72.764065 ], [ -101.074219, 72.764065 ], [ -101.074219, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.816074 ], [ -100.722656, 72.816074 ], [ -100.722656, 72.919635 ], [ -100.898438, 72.919635 ], [ -100.898438, 73.022592 ], [ -101.074219, 73.022592 ], [ -101.074219, 73.124945 ], [ -101.250000, 73.124945 ], [ -101.250000, 73.226700 ], [ -101.425781, 73.226700 ], [ -101.425781, 73.327858 ], [ -101.601562, 73.327858 ], [ -101.601562, 73.378215 ], [ -101.425781, 73.378215 ], [ -101.425781, 73.428424 ], [ -101.250000, 73.428424 ], [ -101.250000, 73.528399 ], [ -101.074219, 73.528399 ], [ -101.074219, 73.578167 ], [ -100.898438, 73.578167 ], [ -100.898438, 73.627789 ], [ -100.722656, 73.627789 ], [ -100.722656, 73.726595 ], [ -100.546875, 73.726595 ], [ -100.546875, 73.775780 ], [ -100.019531, 73.775780 ], [ -100.019531, 73.726595 ], [ -99.667969, 73.726595 ], [ -99.667969, 73.677264 ], [ -99.316406, 73.677264 ], [ -99.316406, 73.627789 ], [ -98.789062, 73.627789 ], [ -98.789062, 73.677264 ], [ -98.085938, 73.677264 ], [ -98.085938, 73.726595 ], [ -97.558594, 73.726595 ], [ -97.558594, 73.775780 ], [ -97.382812, 73.775780 ] ] ], [ [ [ -92.285156, 74.116047 ], [ -92.285156, 74.067866 ], [ -91.933594, 74.067866 ], [ -91.933594, 74.019543 ], [ -91.582031, 74.019543 ], [ -91.582031, 73.971078 ], [ -91.230469, 73.971078 ], [ -91.230469, 73.922469 ], [ -90.878906, 73.922469 ], [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ], [ -90.527344, 73.775780 ], [ -90.703125, 73.775780 ], [ -90.703125, 73.677264 ], [ -90.878906, 73.677264 ], [ -90.878906, 73.578167 ], [ -91.054688, 73.578167 ], [ -91.054688, 73.478485 ], [ -91.230469, 73.478485 ], [ -91.230469, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.226700 ], [ -91.582031, 73.226700 ], [ -91.582031, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 73.022592 ], [ -91.933594, 73.022592 ], [ -91.933594, 72.919635 ], [ -92.285156, 72.919635 ], [ -92.285156, 72.867930 ], [ -92.636719, 72.867930 ], [ -92.636719, 72.816074 ], [ -92.988281, 72.816074 ], [ -92.988281, 72.764065 ], [ -93.164062, 72.764065 ], [ -93.164062, 72.659588 ], [ -93.339844, 72.659588 ], [ -93.339844, 72.554498 ], [ -93.515625, 72.554498 ], [ -93.515625, 72.448792 ], [ -93.691406, 72.448792 ], [ -93.691406, 72.289067 ], [ -93.867188, 72.289067 ], [ -93.867188, 72.181804 ], [ -94.042969, 72.181804 ], [ -94.042969, 72.073911 ], [ -94.218750, 72.073911 ], [ -94.218750, 72.019729 ], [ -94.921875, 72.019729 ], [ -94.921875, 72.073911 ], [ -95.449219, 72.073911 ], [ -95.449219, 72.181804 ], [ -95.625000, 72.181804 ], [ -95.625000, 72.501722 ], [ -95.800781, 72.501722 ], [ -95.800781, 72.764065 ], [ -95.976562, 72.764065 ], [ -95.976562, 73.478485 ], [ -95.800781, 73.478485 ], [ -95.800781, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.775780 ], [ -95.449219, 73.775780 ], [ -95.449219, 73.873717 ], [ -95.273438, 73.873717 ], [ -95.273438, 73.922469 ], [ -95.097656, 73.922469 ], [ -95.097656, 73.971078 ], [ -94.921875, 73.971078 ], [ -94.921875, 74.019543 ], [ -94.746094, 74.019543 ], [ -94.746094, 74.067866 ], [ -94.570312, 74.067866 ], [ -94.570312, 74.116047 ], [ -92.285156, 74.116047 ] ] ], [ [ [ -105.292969, 73.627789 ], [ -105.292969, 73.578167 ], [ -105.117188, 73.578167 ], [ -105.117188, 73.528399 ], [ -104.765625, 73.528399 ], [ -104.765625, 73.478485 ], [ -104.589844, 73.478485 ], [ -104.589844, 73.428424 ], [ -104.414062, 73.428424 ], [ -104.414062, 73.327858 ], [ -104.589844, 73.327858 ], [ -104.589844, 73.226700 ], [ -104.765625, 73.226700 ], [ -104.765625, 73.073844 ], [ -104.941406, 73.073844 ], [ -104.941406, 72.919635 ], [ -105.117188, 72.919635 ], [ -105.117188, 72.816074 ], [ -105.292969, 72.816074 ], [ -105.292969, 72.764065 ], [ -105.468750, 72.764065 ], [ -105.468750, 72.867930 ], [ -105.644531, 72.867930 ], [ -105.644531, 72.919635 ], [ -105.820312, 72.919635 ], [ -105.820312, 73.022592 ], [ -105.996094, 73.022592 ], [ -105.996094, 73.124945 ], [ -106.171875, 73.124945 ], [ -106.171875, 73.175897 ], [ -106.347656, 73.175897 ], [ -106.347656, 73.277353 ], [ -106.523438, 73.277353 ], [ -106.523438, 73.327858 ], [ -106.699219, 73.327858 ], [ -106.699219, 73.428424 ], [ -106.875000, 73.428424 ], [ -106.875000, 73.478485 ], [ -106.699219, 73.478485 ], [ -106.699219, 73.528399 ], [ -106.523438, 73.528399 ], [ -106.523438, 73.578167 ], [ -105.820312, 73.578167 ], [ -105.820312, 73.627789 ], [ -105.292969, 73.627789 ] ] ], [ [ [ -96.328125, 77.157163 ], [ -96.328125, 77.118032 ], [ -95.273438, 77.118032 ], [ -95.273438, 77.078784 ], [ -94.746094, 77.078784 ], [ -94.746094, 77.039418 ], [ -94.570312, 77.039418 ], [ -94.570312, 76.999935 ], [ -94.394531, 76.999935 ], [ -94.394531, 76.960334 ], [ -94.218750, 76.960334 ], [ -94.218750, 76.920614 ], [ -94.042969, 76.920614 ], [ -94.042969, 76.840816 ], [ -93.867188, 76.840816 ], [ -93.867188, 76.800739 ], [ -93.691406, 76.800739 ], [ -93.691406, 76.760541 ], [ -91.582031, 76.760541 ], [ -91.582031, 76.720223 ], [ -91.406250, 76.720223 ], [ -91.406250, 76.639226 ], [ -91.230469, 76.639226 ], [ -91.230469, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.516819 ], [ -90.878906, 76.516819 ], [ -90.878906, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.310358 ], [ -90.878906, 76.310358 ], [ -90.878906, 76.142958 ], [ -91.054688, 76.142958 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.973553 ], [ -90.527344, 75.973553 ], [ -90.527344, 75.930885 ], [ -90.351562, 75.930885 ], [ -90.351562, 75.888091 ], [ -90.000000, 75.888091 ], [ -90.000000, 75.845169 ], [ -89.824219, 75.845169 ], [ -89.824219, 75.802118 ], [ -89.648438, 75.802118 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -89.121094, 75.628632 ], [ -89.121094, 74.449358 ], [ -89.648438, 74.449358 ], [ -89.648438, 74.496413 ], [ -90.175781, 74.496413 ], [ -90.175781, 74.543330 ], [ -90.527344, 74.543330 ], [ -90.527344, 74.590108 ], [ -90.878906, 74.590108 ], [ -90.878906, 74.636748 ], [ -91.230469, 74.636748 ], [ -91.230469, 74.683250 ], [ -91.582031, 74.683250 ], [ -91.582031, 74.729615 ], [ -91.933594, 74.729615 ], [ -91.933594, 74.775843 ], [ -92.285156, 74.775843 ], [ -92.285156, 74.821934 ], [ -92.460938, 74.821934 ], [ -92.460938, 74.959392 ], [ -92.636719, 74.959392 ], [ -92.636719, 75.230667 ], [ -92.812500, 75.230667 ], [ -92.812500, 75.888091 ], [ -92.988281, 75.888091 ], [ -92.988281, 75.973553 ], [ -93.164062, 75.973553 ], [ -93.164062, 76.058508 ], [ -93.339844, 76.058508 ], [ -93.339844, 76.100796 ], [ -93.515625, 76.100796 ], [ -93.515625, 76.184995 ], [ -93.691406, 76.184995 ], [ -93.691406, 76.268695 ], [ -93.867188, 76.268695 ], [ -93.867188, 76.310358 ], [ -94.394531, 76.310358 ], [ -94.394531, 76.351896 ], [ -95.097656, 76.351896 ], [ -95.097656, 76.393312 ], [ -95.800781, 76.393312 ], [ -95.800781, 76.434604 ], [ -96.152344, 76.434604 ], [ -96.152344, 76.475773 ], [ -96.328125, 76.475773 ], [ -96.328125, 76.516819 ], [ -96.503906, 76.516819 ], [ -96.503906, 76.598545 ], [ -96.679688, 76.598545 ], [ -96.679688, 76.639226 ], [ -96.855469, 76.639226 ], [ -96.855469, 76.679785 ], [ -97.031250, 76.679785 ], [ -97.031250, 76.720223 ], [ -97.207031, 76.720223 ], [ -97.207031, 76.800739 ], [ -97.031250, 76.800739 ], [ -97.031250, 76.960334 ], [ -96.855469, 76.960334 ], [ -96.855469, 77.078784 ], [ -96.679688, 77.078784 ], [ -96.679688, 77.157163 ], [ -96.328125, 77.157163 ] ] ], [ [ [ -116.191406, 77.617709 ], [ -116.191406, 77.273855 ], [ -116.367188, 77.273855 ], [ -116.367188, 76.800739 ], [ -116.542969, 76.800739 ], [ -116.542969, 76.720223 ], [ -116.718750, 76.720223 ], [ -116.718750, 76.639226 ], [ -116.894531, 76.639226 ], [ -116.894531, 76.557743 ], [ -117.070312, 76.557743 ], [ -117.070312, 76.516819 ], [ -117.421875, 76.516819 ], [ -117.421875, 76.475773 ], [ -118.125000, 76.475773 ], [ -118.125000, 76.434604 ], [ -118.300781, 76.434604 ], [ -118.300781, 76.393312 ], [ -118.476562, 76.393312 ], [ -118.476562, 76.351896 ], [ -118.652344, 76.351896 ], [ -118.652344, 76.310358 ], [ -118.828125, 76.310358 ], [ -118.828125, 76.268695 ], [ -119.003906, 76.268695 ], [ -119.003906, 76.226907 ], [ -119.179688, 76.226907 ], [ -119.179688, 76.184995 ], [ -119.355469, 76.184995 ], [ -119.355469, 76.142958 ], [ -119.531250, 76.142958 ], [ -119.531250, 76.100796 ], [ -119.707031, 76.100796 ], [ -119.707031, 76.058508 ], [ -120.058594, 76.058508 ], [ -120.058594, 76.016094 ], [ -120.410156, 76.016094 ], [ -120.410156, 75.973553 ], [ -120.761719, 75.973553 ], [ -120.761719, 75.930885 ], [ -121.113281, 75.930885 ], [ -121.113281, 75.888091 ], [ -121.640625, 75.888091 ], [ -121.640625, 75.930885 ], [ -121.992188, 75.930885 ], [ -121.992188, 75.973553 ], [ -122.343750, 75.973553 ], [ -122.343750, 76.016094 ], [ -122.519531, 76.016094 ], [ -122.519531, 76.058508 ], [ -122.871094, 76.058508 ], [ -122.871094, 76.100796 ], [ -122.695312, 76.100796 ], [ -122.695312, 76.184995 ], [ -122.519531, 76.184995 ], [ -122.519531, 76.268695 ], [ -122.343750, 76.268695 ], [ -122.343750, 76.351896 ], [ -122.167969, 76.351896 ], [ -122.167969, 76.434604 ], [ -121.992188, 76.434604 ], [ -121.992188, 76.516819 ], [ -121.816406, 76.516819 ], [ -121.816406, 76.598545 ], [ -121.640625, 76.598545 ], [ -121.640625, 76.679785 ], [ -121.464844, 76.679785 ], [ -121.464844, 76.760541 ], [ -121.289062, 76.760541 ], [ -121.289062, 76.840816 ], [ -121.113281, 76.840816 ], [ -121.113281, 76.880775 ], [ -120.937500, 76.880775 ], [ -120.937500, 76.960334 ], [ -120.761719, 76.960334 ], [ -120.761719, 76.999935 ], [ -120.585938, 76.999935 ], [ -120.585938, 77.078784 ], [ -120.410156, 77.078784 ], [ -120.410156, 77.118032 ], [ -120.234375, 77.118032 ], [ -120.234375, 77.196176 ], [ -120.058594, 77.196176 ], [ -120.058594, 77.235074 ], [ -119.882812, 77.235074 ], [ -119.882812, 77.273855 ], [ -119.707031, 77.273855 ], [ -119.707031, 77.351070 ], [ -119.531250, 77.351070 ], [ -119.531250, 77.389504 ], [ -119.355469, 77.389504 ], [ -119.355469, 77.466028 ], [ -119.179688, 77.466028 ], [ -119.179688, 77.504119 ], [ -117.246094, 77.504119 ], [ -117.246094, 77.542096 ], [ -116.894531, 77.542096 ], [ -116.894531, 77.579959 ], [ -116.542969, 77.579959 ], [ -116.542969, 77.617709 ], [ -116.191406, 77.617709 ] ] ], [ [ [ -94.746094, 75.584937 ], [ -94.746094, 75.497157 ], [ -94.570312, 75.497157 ], [ -94.570312, 75.453071 ], [ -94.394531, 75.453071 ], [ -94.394531, 75.364506 ], [ -94.218750, 75.364506 ], [ -94.218750, 75.275413 ], [ -94.042969, 75.275413 ], [ -94.042969, 75.185789 ], [ -93.867188, 75.185789 ], [ -93.867188, 75.004940 ], [ -93.691406, 75.004940 ], [ -93.691406, 74.867889 ], [ -93.867188, 74.867889 ], [ -93.867188, 74.775843 ], [ -94.042969, 74.775843 ], [ -94.042969, 74.636748 ], [ -94.218750, 74.636748 ], [ -94.218750, 74.590108 ], [ -94.746094, 74.590108 ], [ -94.746094, 74.636748 ], [ -95.449219, 74.636748 ], [ -95.449219, 74.683250 ], [ -95.800781, 74.683250 ], [ -95.800781, 74.729615 ], [ -96.152344, 74.729615 ], [ -96.152344, 74.775843 ], [ -96.328125, 74.775843 ], [ -96.328125, 74.821934 ], [ -96.503906, 74.821934 ], [ -96.503906, 74.867889 ], [ -96.855469, 74.867889 ], [ -96.855469, 74.959392 ], [ -96.679688, 74.959392 ], [ -96.679688, 75.140778 ], [ -96.503906, 75.140778 ], [ -96.503906, 75.275413 ], [ -96.328125, 75.275413 ], [ -96.328125, 75.364506 ], [ -96.152344, 75.364506 ], [ -96.152344, 75.408854 ], [ -95.800781, 75.408854 ], [ -95.800781, 75.453071 ], [ -95.625000, 75.453071 ], [ -95.625000, 75.497157 ], [ -95.449219, 75.497157 ], [ -95.449219, 75.541113 ], [ -95.097656, 75.541113 ], [ -95.097656, 75.584937 ], [ -94.746094, 75.584937 ] ] ], [ [ [ -98.261719, 76.639226 ], [ -98.261719, 76.516819 ], [ -98.085938, 76.516819 ], [ -98.085938, 76.434604 ], [ -97.910156, 76.434604 ], [ -97.910156, 76.310358 ], [ -97.734375, 76.310358 ], [ -97.734375, 75.541113 ], [ -97.910156, 75.541113 ], [ -97.910156, 75.185789 ], [ -98.085938, 75.185789 ], [ -98.085938, 75.004940 ], [ -98.437500, 75.004940 ], [ -98.437500, 74.959392 ], [ -99.316406, 74.959392 ], [ -99.316406, 74.913708 ], [ -100.195312, 74.913708 ], [ -100.195312, 74.959392 ], [ -100.546875, 74.959392 ], [ -100.546875, 75.004940 ], [ -100.898438, 75.004940 ], [ -100.898438, 75.628632 ], [ -101.601562, 75.628632 ], [ -101.601562, 75.584937 ], [ -102.480469, 75.584937 ], [ -102.480469, 76.351896 ], [ -102.128906, 76.351896 ], [ -102.128906, 76.310358 ], [ -101.250000, 76.310358 ], [ -101.250000, 76.351896 ], [ -101.074219, 76.351896 ], [ -101.074219, 76.393312 ], [ -100.898438, 76.393312 ], [ -100.898438, 76.434604 ], [ -100.722656, 76.434604 ], [ -100.722656, 76.475773 ], [ -100.546875, 76.475773 ], [ -100.546875, 76.516819 ], [ -100.371094, 76.516819 ], [ -100.371094, 76.557743 ], [ -100.195312, 76.557743 ], [ -100.195312, 76.598545 ], [ -100.019531, 76.598545 ], [ -100.019531, 76.639226 ], [ -99.492188, 76.639226 ], [ -99.492188, 76.598545 ], [ -98.613281, 76.598545 ], [ -98.613281, 76.639226 ], [ -98.261719, 76.639226 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.278201 ], [ -89.472656, 78.278201 ], [ -89.472656, 78.242436 ], [ -90.351562, 78.242436 ], [ -90.351562, 78.206563 ], [ -91.230469, 78.206563 ], [ -91.230469, 78.242436 ], [ -91.757812, 78.242436 ], [ -91.757812, 78.278201 ], [ -92.109375, 78.278201 ], [ -92.109375, 78.313860 ], [ -92.636719, 78.313860 ], [ -92.636719, 78.349411 ], [ -92.812500, 78.349411 ], [ -92.812500, 78.384855 ], [ -92.988281, 78.384855 ], [ -92.988281, 78.455425 ], [ -93.164062, 78.455425 ], [ -93.164062, 78.525573 ], [ -93.339844, 78.525573 ], [ -93.339844, 78.595299 ], [ -93.515625, 78.595299 ], [ -93.515625, 78.664608 ], [ -93.691406, 78.664608 ], [ -93.691406, 78.733501 ], [ -93.867188, 78.733501 ], [ -93.867188, 79.138260 ], [ -93.691406, 79.138260 ], [ -93.691406, 79.204309 ], [ -93.515625, 79.204309 ], [ -93.515625, 79.269962 ], [ -93.339844, 79.269962 ], [ -93.339844, 79.335219 ], [ -89.121094, 79.335219 ] ] ], [ [ [ -105.292969, 79.302640 ], [ -105.292969, 79.269962 ], [ -104.765625, 79.269962 ], [ -104.765625, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.183594, 79.138260 ], [ -103.183594, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.480469, 79.038437 ], [ -102.480469, 79.004962 ], [ -102.304688, 79.004962 ], [ -102.304688, 78.971386 ], [ -102.128906, 78.971386 ], [ -102.128906, 78.937708 ], [ -101.777344, 78.937708 ], [ -101.777344, 78.903929 ], [ -101.601562, 78.903929 ], [ -101.601562, 78.870048 ], [ -101.425781, 78.870048 ], [ -101.425781, 78.836065 ], [ -101.074219, 78.836065 ], [ -101.074219, 78.801980 ], [ -100.898438, 78.801980 ], [ -100.898438, 78.733501 ], [ -100.722656, 78.733501 ], [ -100.722656, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.560488 ], [ -100.371094, 78.560488 ], [ -100.371094, 78.455425 ], [ -100.195312, 78.455425 ], [ -100.195312, 78.349411 ], [ -100.019531, 78.349411 ], [ -100.019531, 78.206563 ], [ -99.843750, 78.206563 ], [ -99.843750, 77.989049 ], [ -99.667969, 77.989049 ], [ -99.667969, 77.915669 ], [ -100.019531, 77.915669 ], [ -100.019531, 77.952414 ], [ -100.546875, 77.952414 ], [ -100.546875, 77.989049 ], [ -101.074219, 77.989049 ], [ -101.074219, 78.025574 ], [ -101.425781, 78.025574 ], [ -101.425781, 78.061989 ], [ -101.601562, 78.061989 ], [ -101.601562, 78.098296 ], [ -101.777344, 78.098296 ], [ -101.777344, 78.134493 ], [ -101.953125, 78.134493 ], [ -101.953125, 78.170582 ], [ -102.304688, 78.170582 ], [ -102.304688, 78.206563 ], [ -102.480469, 78.206563 ], [ -102.480469, 78.242436 ], [ -102.656250, 78.242436 ], [ -102.656250, 78.278201 ], [ -102.832031, 78.278201 ], [ -102.832031, 78.313860 ], [ -103.007812, 78.313860 ], [ -103.007812, 78.349411 ], [ -104.238281, 78.349411 ], [ -104.238281, 78.384855 ], [ -104.941406, 78.384855 ], [ -104.941406, 78.455425 ], [ -104.765625, 78.455425 ], [ -104.765625, 78.525573 ], [ -104.589844, 78.525573 ], [ -104.589844, 78.560488 ], [ -104.414062, 78.560488 ], [ -104.414062, 78.630006 ], [ -104.238281, 78.630006 ], [ -104.238281, 78.664608 ], [ -104.414062, 78.664608 ], [ -104.414062, 78.699106 ], [ -104.589844, 78.699106 ], [ -104.589844, 78.733501 ], [ -104.765625, 78.733501 ], [ -104.765625, 78.767792 ], [ -104.941406, 78.767792 ], [ -104.941406, 78.801980 ], [ -105.117188, 78.801980 ], [ -105.117188, 78.836065 ], [ -105.292969, 78.836065 ], [ -105.292969, 78.870048 ], [ -105.468750, 78.870048 ], [ -105.468750, 79.302640 ], [ -105.292969, 79.302640 ] ] ], [ [ [ -98.085938, 78.870048 ], [ -98.085938, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.801980 ], [ -97.031250, 78.801980 ], [ -97.031250, 78.767792 ], [ -96.679688, 78.767792 ], [ -96.679688, 78.733501 ], [ -96.503906, 78.733501 ], [ -96.503906, 78.664608 ], [ -96.328125, 78.664608 ], [ -96.328125, 78.595299 ], [ -96.152344, 78.595299 ], [ -96.152344, 78.560488 ], [ -95.976562, 78.560488 ], [ -95.976562, 78.490552 ], [ -95.800781, 78.490552 ], [ -95.800781, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.242436 ], [ -95.800781, 78.242436 ], [ -95.800781, 78.025574 ], [ -96.152344, 78.025574 ], [ -96.152344, 77.989049 ], [ -96.328125, 77.989049 ], [ -96.328125, 77.952414 ], [ -96.679688, 77.952414 ], [ -96.679688, 77.915669 ], [ -96.855469, 77.915669 ], [ -96.855469, 77.878814 ], [ -97.207031, 77.878814 ], [ -97.207031, 77.841848 ], [ -97.558594, 77.841848 ], [ -97.558594, 77.915669 ], [ -97.734375, 77.915669 ], [ -97.734375, 77.989049 ], [ -97.910156, 77.989049 ], [ -97.910156, 78.061989 ], [ -98.085938, 78.061989 ], [ -98.085938, 78.134493 ], [ -98.261719, 78.134493 ], [ -98.261719, 78.278201 ], [ -98.437500, 78.278201 ], [ -98.437500, 78.384855 ], [ -98.613281, 78.384855 ], [ -98.613281, 78.870048 ], [ -98.085938, 78.870048 ] ] ], [ [ [ -89.121094, 76.999935 ], [ -89.121094, 76.475773 ], [ -89.472656, 76.475773 ], [ -89.472656, 76.720223 ], [ -89.648438, 76.720223 ], [ -89.648438, 76.960334 ], [ -89.296875, 76.960334 ], [ -89.296875, 76.999935 ], [ -89.121094, 76.999935 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -111.269531, 78.134493 ], [ -110.917969, 78.134493 ], [ -110.917969, 78.098296 ], [ -110.742188, 78.098296 ], [ -110.742188, 78.061989 ], [ -110.390625, 78.061989 ], [ -110.390625, 78.025574 ], [ -110.039062, 78.025574 ], [ -110.039062, 77.989049 ], [ -109.863281, 77.989049 ], [ -109.863281, 77.915669 ], [ -110.039062, 77.915669 ], [ -110.039062, 77.767582 ], [ -110.214844, 77.767582 ], [ -110.214844, 77.655346 ], [ -110.566406, 77.655346 ], [ -110.566406, 77.617709 ], [ -110.742188, 77.617709 ], [ -110.742188, 77.579959 ], [ -110.917969, 77.579959 ], [ -110.917969, 77.542096 ], [ -111.269531, 77.542096 ], [ -111.269531, 77.504119 ], [ -111.445312, 77.504119 ], [ -111.445312, 77.466028 ], [ -111.796875, 77.466028 ], [ -111.796875, 77.427824 ], [ -112.148438, 77.427824 ], [ -112.148438, 77.466028 ], [ -112.324219, 77.466028 ], [ -112.324219, 77.504119 ], [ -112.500000, 77.504119 ], [ -112.500000, 77.542096 ], [ -112.675781, 77.542096 ], [ -112.675781, 77.579959 ], [ -113.027344, 77.579959 ], [ -113.027344, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.655346 ], [ -113.378906, 77.655346 ], [ -113.378906, 77.692870 ], [ -113.554688, 77.692870 ], [ -113.554688, 77.730282 ], [ -113.378906, 77.730282 ], [ -113.378906, 77.804771 ], [ -113.203125, 77.804771 ], [ -113.203125, 77.878814 ], [ -113.027344, 77.878814 ], [ -113.027344, 77.952414 ], [ -112.851562, 77.952414 ], [ -112.851562, 78.025574 ], [ -112.675781, 78.025574 ], [ -112.675781, 78.061989 ], [ -112.324219, 78.061989 ], [ -112.324219, 78.098296 ], [ -111.796875, 78.098296 ], [ -111.796875, 78.134493 ], [ -111.445312, 78.134493 ], [ -111.445312, 78.170582 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -95.625000, 77.841848 ], [ -95.625000, 77.804771 ], [ -94.394531, 77.804771 ], [ -94.394531, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.730282 ], [ -94.042969, 77.730282 ], [ -94.042969, 77.655346 ], [ -93.867188, 77.655346 ], [ -93.867188, 77.617709 ], [ -93.691406, 77.617709 ], [ -93.691406, 77.542096 ], [ -93.867188, 77.542096 ], [ -93.867188, 77.504119 ], [ -95.273438, 77.504119 ], [ -95.273438, 77.542096 ], [ -96.152344, 77.542096 ], [ -96.152344, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -96.503906, 77.767582 ], [ -96.503906, 77.841848 ], [ -95.625000, 77.841848 ] ] ], [ [ [ -111.269531, 78.836065 ], [ -111.269531, 78.801980 ], [ -110.917969, 78.801980 ], [ -110.917969, 78.767792 ], [ -110.742188, 78.767792 ], [ -110.742188, 78.733501 ], [ -110.566406, 78.733501 ], [ -110.566406, 78.699106 ], [ -110.214844, 78.699106 ], [ -110.214844, 78.664608 ], [ -110.039062, 78.664608 ], [ -110.039062, 78.630006 ], [ -109.863281, 78.630006 ], [ -109.863281, 78.595299 ], [ -109.687500, 78.595299 ], [ -109.687500, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.525573 ], [ -110.214844, 78.525573 ], [ -110.214844, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.455425 ], [ -110.742188, 78.455425 ], [ -110.742188, 78.420193 ], [ -112.500000, 78.420193 ], [ -112.500000, 78.560488 ], [ -112.324219, 78.560488 ], [ -112.324219, 78.630006 ], [ -112.148438, 78.630006 ], [ -112.148438, 78.664608 ], [ -111.972656, 78.664608 ], [ -111.972656, 78.699106 ], [ -111.796875, 78.699106 ], [ -111.796875, 78.767792 ], [ -111.621094, 78.767792 ], [ -111.621094, 78.801980 ], [ -111.445312, 78.801980 ], [ -111.445312, 78.836065 ], [ -111.269531, 78.836065 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.097656, 71.965388 ], [ -95.097656, 71.910888 ], [ -94.746094, 71.910888 ], [ -94.746094, 71.856229 ], [ -94.394531, 71.856229 ], [ -94.394531, 71.801410 ], [ -94.042969, 71.801410 ], [ -94.042969, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.691293 ], [ -93.691406, 71.691293 ], [ -93.691406, 71.580532 ], [ -93.515625, 71.580532 ], [ -93.515625, 71.524909 ], [ -93.339844, 71.524909 ], [ -93.339844, 71.469124 ], [ -93.164062, 71.469124 ], [ -93.164062, 71.357067 ], [ -92.988281, 71.357067 ], [ -92.988281, 71.244356 ], [ -92.812500, 71.244356 ], [ -92.812500, 71.130988 ], [ -92.636719, 71.130988 ], [ -92.636719, 70.959697 ], [ -92.460938, 70.959697 ], [ -92.460938, 70.844673 ], [ -92.285156, 70.844673 ], [ -92.285156, 70.670881 ], [ -92.109375, 70.670881 ], [ -92.109375, 70.554179 ], [ -91.933594, 70.554179 ], [ -91.933594, 70.377854 ], [ -91.757812, 70.377854 ], [ -91.757812, 70.259452 ], [ -91.582031, 70.259452 ], [ -91.582031, 70.140364 ], [ -91.757812, 70.140364 ], [ -91.757812, 70.020587 ], [ -91.933594, 70.020587 ], [ -91.933594, 69.960439 ], [ -92.109375, 69.960439 ], [ -92.109375, 69.839622 ], [ -92.285156, 69.839622 ], [ -92.285156, 69.657086 ], [ -91.757812, 69.657086 ], [ -91.757812, 69.595890 ], [ -91.054688, 69.595890 ], [ -91.054688, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.527344, 68.528235 ], [ -90.527344, 68.656555 ], [ -90.351562, 68.656555 ], [ -90.351562, 68.720441 ], [ -90.175781, 68.720441 ], [ -90.175781, 68.847665 ], [ -90.000000, 68.847665 ], [ -90.000000, 68.911005 ], [ -89.824219, 68.911005 ], [ -89.824219, 69.037142 ], [ -89.648438, 69.037142 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.287257 ], [ -135.703125, 69.287257 ], [ -135.703125, 69.349339 ], [ -135.527344, 69.349339 ], [ -135.527344, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -135.000000, 69.472969 ], [ -135.000000, 69.534518 ], [ -134.824219, 69.534518 ], [ -134.824219, 69.595890 ], [ -134.472656, 69.595890 ], [ -134.472656, 69.657086 ], [ -134.296875, 69.657086 ], [ -134.296875, 69.595890 ], [ -133.593750, 69.595890 ], [ -133.593750, 69.534518 ], [ -132.890625, 69.534518 ], [ -132.890625, 69.595890 ], [ -132.714844, 69.595890 ], [ -132.714844, 69.657086 ], [ -132.363281, 69.657086 ], [ -132.363281, 69.718107 ], [ -132.187500, 69.718107 ], [ -132.187500, 69.778952 ], [ -132.011719, 69.778952 ], [ -132.011719, 69.839622 ], [ -131.660156, 69.839622 ], [ -131.660156, 69.900118 ], [ -131.484375, 69.900118 ], [ -131.484375, 69.960439 ], [ -131.132812, 69.960439 ], [ -131.132812, 70.020587 ], [ -130.781250, 70.020587 ], [ -130.781250, 70.080562 ], [ -130.429688, 70.080562 ], [ -130.429688, 70.140364 ], [ -130.078125, 70.140364 ], [ -130.078125, 70.199994 ], [ -129.902344, 70.199994 ], [ -129.902344, 70.140364 ], [ -129.726562, 70.140364 ], [ -129.726562, 70.020587 ], [ -129.550781, 70.020587 ], [ -129.550781, 69.900118 ], [ -129.375000, 69.900118 ], [ -129.375000, 69.778952 ], [ -129.023438, 69.778952 ], [ -129.023438, 69.839622 ], [ -128.847656, 69.839622 ], [ -128.847656, 69.900118 ], [ -128.671875, 69.900118 ], [ -128.671875, 69.960439 ], [ -128.496094, 69.960439 ], [ -128.496094, 70.140364 ], [ -128.320312, 70.140364 ], [ -128.320312, 70.377854 ], [ -128.144531, 70.377854 ], [ -128.144531, 70.436799 ], [ -127.792969, 70.436799 ], [ -127.792969, 70.377854 ], [ -127.617188, 70.377854 ], [ -127.617188, 70.318738 ], [ -127.441406, 70.318738 ], [ -127.441406, 70.199994 ], [ -127.265625, 70.199994 ], [ -127.265625, 70.140364 ], [ -127.089844, 70.140364 ], [ -127.089844, 70.080562 ], [ -126.914062, 70.080562 ], [ -126.914062, 69.960439 ], [ -126.738281, 69.960439 ], [ -126.738281, 69.900118 ], [ -126.562500, 69.900118 ], [ -126.562500, 69.778952 ], [ -126.386719, 69.778952 ], [ -126.386719, 69.718107 ], [ -126.210938, 69.718107 ], [ -126.210938, 69.657086 ], [ -126.035156, 69.657086 ], [ -126.035156, 69.534518 ], [ -125.683594, 69.534518 ], [ -125.683594, 69.657086 ], [ -125.507812, 69.657086 ], [ -125.507812, 69.718107 ], [ -125.332031, 69.718107 ], [ -125.332031, 69.778952 ], [ -125.156250, 69.778952 ], [ -125.156250, 69.900118 ], [ -124.980469, 69.900118 ], [ -124.980469, 69.960439 ], [ -124.804688, 69.960439 ], [ -124.804688, 70.020587 ], [ -124.628906, 70.020587 ], [ -124.628906, 70.140364 ], [ -124.453125, 70.140364 ], [ -124.453125, 69.411242 ], [ -124.101562, 69.411242 ], [ -124.101562, 69.472969 ], [ -123.750000, 69.472969 ], [ -123.750000, 69.534518 ], [ -123.398438, 69.534518 ], [ -123.398438, 69.595890 ], [ -123.046875, 69.595890 ], [ -123.046875, 69.718107 ], [ -122.871094, 69.718107 ], [ -122.871094, 69.839622 ], [ -122.695312, 69.839622 ], [ -122.695312, 69.900118 ], [ -122.343750, 69.900118 ], [ -122.343750, 69.839622 ], [ -121.640625, 69.839622 ], [ -121.640625, 69.778952 ], [ -121.464844, 69.778952 ], [ -121.464844, 69.718107 ], [ -121.113281, 69.718107 ], [ -121.113281, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.595890 ], [ -120.761719, 69.595890 ], [ -120.761719, 69.534518 ], [ -120.410156, 69.534518 ], [ -120.410156, 69.472969 ], [ -120.234375, 69.472969 ], [ -120.234375, 69.411242 ], [ -119.882812, 69.411242 ], [ -119.882812, 69.349339 ], [ -119.531250, 69.349339 ], [ -119.531250, 69.287257 ], [ -119.179688, 69.287257 ], [ -119.179688, 69.224997 ], [ -118.828125, 69.224997 ], [ -118.828125, 69.162558 ], [ -118.476562, 69.162558 ], [ -118.476562, 69.099940 ], [ -118.125000, 69.099940 ], [ -118.125000, 69.037142 ], [ -117.597656, 69.037142 ], [ -117.597656, 68.974164 ], [ -117.246094, 68.974164 ], [ -117.246094, 68.911005 ], [ -116.718750, 68.911005 ], [ -116.718750, 68.847665 ], [ -115.664062, 68.847665 ], [ -115.664062, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.847665 ], [ -115.136719, 68.847665 ], [ -115.136719, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.720441 ], [ -114.785156, 68.720441 ], [ -114.785156, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.592487 ], [ -114.433594, 68.592487 ], [ -114.433594, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.463800 ], [ -114.082031, 68.463800 ], [ -114.082031, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.334376 ], [ -114.082031, 68.334376 ], [ -114.082031, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.204212 ], [ -114.433594, 68.204212 ], [ -114.433594, 68.138852 ], [ -114.785156, 68.138852 ], [ -114.785156, 68.073305 ], [ -114.960938, 68.073305 ], [ -114.960938, 68.007571 ], [ -115.136719, 68.007571 ], [ -115.136719, 67.875541 ], [ -114.609375, 67.875541 ], [ -114.609375, 67.809245 ], [ -113.906250, 67.809245 ], [ -113.906250, 67.742759 ], [ -112.148438, 67.742759 ], [ -112.148438, 67.809245 ], [ -110.742188, 67.809245 ], [ -110.742188, 67.875541 ], [ -110.390625, 67.875541 ], [ -110.390625, 67.941650 ], [ -109.863281, 67.941650 ], [ -109.863281, 67.809245 ], [ -109.687500, 67.809245 ], [ -109.687500, 67.742759 ], [ -109.511719, 67.742759 ], [ -109.511719, 67.609221 ], [ -109.335938, 67.609221 ], [ -109.335938, 67.542167 ], [ -109.160156, 67.542167 ], [ -109.160156, 67.407487 ], [ -108.808594, 67.407487 ], [ -108.808594, 67.542167 ], [ -108.632812, 67.542167 ], [ -108.632812, 67.609221 ], [ -108.457031, 67.609221 ], [ -108.457031, 67.676085 ], [ -108.281250, 67.676085 ], [ -108.281250, 67.809245 ], [ -108.105469, 67.809245 ], [ -108.105469, 67.875541 ], [ -107.929688, 67.875541 ], [ -107.929688, 67.941650 ], [ -108.105469, 67.941650 ], [ -108.105469, 68.007571 ], [ -108.281250, 68.007571 ], [ -108.281250, 68.073305 ], [ -108.457031, 68.073305 ], [ -108.457031, 68.138852 ], [ -108.632812, 68.138852 ], [ -108.632812, 68.204212 ], [ -108.808594, 68.204212 ], [ -108.808594, 68.269387 ], [ -108.984375, 68.269387 ], [ -108.984375, 68.334376 ], [ -108.808594, 68.334376 ], [ -108.808594, 68.399180 ], [ -108.632812, 68.399180 ], [ -108.632812, 68.528235 ], [ -108.457031, 68.528235 ], [ -108.457031, 68.592487 ], [ -108.281250, 68.592487 ], [ -108.281250, 68.656555 ], [ -107.578125, 68.656555 ], [ -107.578125, 68.720441 ], [ -106.699219, 68.720441 ], [ -106.699219, 68.784144 ], [ -106.347656, 68.784144 ], [ -106.347656, 68.847665 ], [ -106.171875, 68.847665 ], [ -106.171875, 68.784144 ], [ -105.996094, 68.784144 ], [ -105.996094, 68.720441 ], [ -105.820312, 68.720441 ], [ -105.820312, 68.656555 ], [ -105.644531, 68.656555 ], [ -105.644531, 68.592487 ], [ -105.468750, 68.592487 ], [ -105.468750, 68.528235 ], [ -105.292969, 68.528235 ], [ -105.292969, 68.463800 ], [ -105.117188, 68.463800 ], [ -105.117188, 68.334376 ], [ -104.941406, 68.334376 ], [ -104.941406, 68.269387 ], [ -104.765625, 68.269387 ], [ -104.765625, 68.204212 ], [ -104.589844, 68.204212 ], [ -104.589844, 68.073305 ], [ -103.710938, 68.073305 ], [ -103.710938, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 68.073305 ], [ -103.007812, 68.073305 ], [ -103.007812, 68.007571 ], [ -102.832031, 68.007571 ], [ -102.832031, 67.941650 ], [ -102.656250, 67.941650 ], [ -102.656250, 67.875541 ], [ -102.304688, 67.875541 ], [ -102.304688, 67.809245 ], [ -102.128906, 67.809245 ], [ -102.128906, 67.742759 ], [ -101.777344, 67.742759 ], [ -101.777344, 67.676085 ], [ -101.074219, 67.676085 ], [ -101.074219, 67.742759 ], [ -100.371094, 67.742759 ], [ -100.371094, 67.809245 ], [ -98.613281, 67.809245 ], [ -98.613281, 68.463800 ], [ -98.261719, 68.463800 ], [ -98.261719, 68.528235 ], [ -97.910156, 68.528235 ], [ -97.910156, 68.592487 ], [ -97.734375, 68.592487 ], [ -97.734375, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.463800 ], [ -97.031250, 68.463800 ], [ -97.031250, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.334376 ], [ -96.328125, 68.334376 ], [ -96.328125, 68.269387 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.474922 ], [ -95.976562, 67.474922 ], [ -95.976562, 67.742759 ], [ -95.800781, 67.742759 ], [ -95.800781, 68.007571 ], [ -95.625000, 68.007571 ], [ -95.625000, 68.138852 ], [ -95.273438, 68.138852 ], [ -95.273438, 68.073305 ], [ -94.746094, 68.073305 ], [ -94.746094, 68.334376 ], [ -94.570312, 68.334376 ], [ -94.570312, 68.847665 ], [ -94.394531, 68.847665 ], [ -94.394531, 69.099940 ], [ -94.570312, 69.099940 ], [ -94.570312, 69.224997 ], [ -94.746094, 69.224997 ], [ -94.746094, 69.349339 ], [ -94.921875, 69.349339 ], [ -94.921875, 69.411242 ], [ -95.097656, 69.411242 ], [ -95.097656, 69.534518 ], [ -95.273438, 69.534518 ], [ -95.273438, 69.657086 ], [ -95.449219, 69.657086 ], [ -95.449219, 69.718107 ], [ -95.625000, 69.718107 ], [ -95.625000, 69.778952 ], [ -95.800781, 69.778952 ], [ -95.800781, 69.839622 ], [ -95.976562, 69.839622 ], [ -95.976562, 69.960439 ], [ -96.152344, 69.960439 ], [ -96.152344, 70.020587 ], [ -96.328125, 70.020587 ], [ -96.328125, 70.080562 ], [ -96.503906, 70.080562 ], [ -96.503906, 71.244356 ], [ -96.328125, 71.244356 ], [ -96.328125, 71.357067 ], [ -96.152344, 71.357067 ], [ -96.152344, 71.469124 ], [ -95.976562, 71.469124 ], [ -95.976562, 71.580532 ], [ -95.800781, 71.580532 ], [ -95.800781, 71.691293 ], [ -95.625000, 71.691293 ], [ -95.625000, 71.801410 ], [ -95.449219, 71.801410 ], [ -95.449219, 71.910888 ], [ -95.273438, 71.910888 ], [ -95.273438, 71.965388 ], [ -95.097656, 71.965388 ] ] ], [ [ [ -106.171875, 73.022592 ], [ -106.171875, 73.124945 ], [ -106.347656, 73.124945 ], [ -106.347656, 73.175897 ], [ -106.523438, 73.175897 ], [ -106.523438, 73.277353 ], [ -106.699219, 73.277353 ], [ -106.699219, 73.327858 ], [ -106.875000, 73.327858 ], [ -106.875000, 73.428424 ], [ -107.050781, 73.428424 ], [ -107.050781, 73.478485 ], [ -106.875000, 73.478485 ], [ -106.875000, 73.578167 ], [ -106.699219, 73.578167 ], [ -106.699219, 73.627789 ], [ -105.820312, 73.627789 ], [ -105.820312, 73.677264 ], [ -105.292969, 73.677264 ], [ -105.292969, 73.627789 ], [ -105.117188, 73.627789 ], [ -105.117188, 73.578167 ], [ -104.941406, 73.578167 ], [ -104.941406, 73.478485 ], [ -104.765625, 73.478485 ], [ -104.765625, 73.428424 ], [ -104.589844, 73.428424 ], [ -104.589844, 73.327858 ], [ -104.765625, 73.327858 ], [ -104.765625, 73.226700 ], [ -104.941406, 73.226700 ], [ -104.941406, 73.073844 ], [ -105.117188, 73.073844 ], [ -105.117188, 72.919635 ], [ -105.292969, 72.919635 ], [ -105.292969, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 72.764065 ], [ -105.644531, 72.764065 ], [ -105.644531, 72.711903 ], [ -105.468750, 72.711903 ], [ -105.468750, 72.554498 ], [ -105.292969, 72.554498 ], [ -105.292969, 72.235514 ], [ -105.117188, 72.235514 ], [ -105.117188, 71.910888 ], [ -104.941406, 71.910888 ], [ -104.941406, 71.524909 ], [ -104.765625, 71.524909 ], [ -104.765625, 71.187754 ], [ -104.589844, 71.187754 ], [ -104.589844, 70.959697 ], [ -104.414062, 70.959697 ], [ -104.414062, 70.902268 ], [ -104.062500, 70.902268 ], [ -104.062500, 70.844673 ], [ -103.886719, 70.844673 ], [ -103.886719, 70.786910 ], [ -103.710938, 70.786910 ], [ -103.710938, 70.728979 ], [ -103.535156, 70.728979 ], [ -103.535156, 70.670881 ], [ -103.183594, 70.670881 ], [ -103.183594, 70.612614 ], [ -103.007812, 70.612614 ], [ -103.007812, 70.554179 ], [ -102.832031, 70.554179 ], [ -102.832031, 70.495574 ], [ -102.656250, 70.495574 ], [ -102.656250, 70.436799 ], [ -102.304688, 70.436799 ], [ -102.304688, 70.377854 ], [ -102.128906, 70.377854 ], [ -102.128906, 70.318738 ], [ -101.953125, 70.318738 ], [ -101.953125, 70.259452 ], [ -101.777344, 70.259452 ], [ -101.777344, 70.199994 ], [ -101.425781, 70.199994 ], [ -101.425781, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 70.080562 ], [ -101.074219, 70.080562 ], [ -101.074219, 69.839622 ], [ -101.250000, 69.839622 ], [ -101.250000, 69.595890 ], [ -101.953125, 69.595890 ], [ -101.953125, 69.534518 ], [ -102.832031, 69.534518 ], [ -102.832031, 69.472969 ], [ -102.656250, 69.472969 ], [ -102.656250, 69.349339 ], [ -102.480469, 69.349339 ], [ -102.480469, 69.287257 ], [ -102.304688, 69.287257 ], [ -102.304688, 69.162558 ], [ -102.128906, 69.162558 ], [ -102.128906, 69.037142 ], [ -102.304688, 69.037142 ], [ -102.304688, 68.847665 ], [ -102.480469, 68.847665 ], [ -102.480469, 68.784144 ], [ -103.007812, 68.784144 ], [ -103.007812, 68.847665 ], [ -103.886719, 68.847665 ], [ -103.886719, 68.911005 ], [ -104.589844, 68.911005 ], [ -104.589844, 68.974164 ], [ -104.941406, 68.974164 ], [ -104.941406, 69.037142 ], [ -105.292969, 69.037142 ], [ -105.292969, 69.099940 ], [ -105.644531, 69.099940 ], [ -105.644531, 69.162558 ], [ -105.996094, 69.162558 ], [ -105.996094, 69.224997 ], [ -106.523438, 69.224997 ], [ -106.523438, 69.162558 ], [ -107.226562, 69.162558 ], [ -107.226562, 69.099940 ], [ -107.578125, 69.099940 ], [ -107.578125, 69.037142 ], [ -107.929688, 69.037142 ], [ -107.929688, 68.974164 ], [ -108.281250, 68.974164 ], [ -108.281250, 68.911005 ], [ -108.632812, 68.911005 ], [ -108.632812, 68.847665 ], [ -108.984375, 68.847665 ], [ -108.984375, 68.784144 ], [ -109.687500, 68.784144 ], [ -109.687500, 68.720441 ], [ -110.917969, 68.720441 ], [ -110.917969, 68.656555 ], [ -112.324219, 68.656555 ], [ -112.324219, 68.592487 ], [ -113.378906, 68.592487 ], [ -113.378906, 68.656555 ], [ -113.554688, 68.656555 ], [ -113.554688, 68.784144 ], [ -113.730469, 68.784144 ], [ -113.730469, 68.911005 ], [ -113.906250, 68.911005 ], [ -113.906250, 69.037142 ], [ -114.257812, 69.037142 ], [ -114.257812, 69.099940 ], [ -114.609375, 69.099940 ], [ -114.609375, 69.162558 ], [ -114.960938, 69.162558 ], [ -114.960938, 69.224997 ], [ -115.312500, 69.224997 ], [ -115.312500, 69.287257 ], [ -115.664062, 69.287257 ], [ -115.664062, 69.224997 ], [ -116.367188, 69.224997 ], [ -116.367188, 69.349339 ], [ -116.542969, 69.349339 ], [ -116.542969, 69.472969 ], [ -116.718750, 69.472969 ], [ -116.718750, 69.595890 ], [ -116.894531, 69.595890 ], [ -116.894531, 69.657086 ], [ -117.070312, 69.657086 ], [ -117.070312, 69.778952 ], [ -117.246094, 69.778952 ], [ -117.246094, 69.900118 ], [ -117.421875, 69.900118 ], [ -117.421875, 69.960439 ], [ -117.070312, 69.960439 ], [ -117.070312, 70.020587 ], [ -116.718750, 70.020587 ], [ -116.718750, 70.080562 ], [ -116.367188, 70.080562 ], [ -116.367188, 70.140364 ], [ -115.839844, 70.140364 ], [ -115.839844, 70.199994 ], [ -115.312500, 70.199994 ], [ -115.312500, 70.259452 ], [ -114.609375, 70.259452 ], [ -114.609375, 70.199994 ], [ -113.378906, 70.199994 ], [ -113.378906, 70.259452 ], [ -113.027344, 70.259452 ], [ -113.027344, 70.318738 ], [ -112.675781, 70.318738 ], [ -112.675781, 70.377854 ], [ -112.851562, 70.377854 ], [ -112.851562, 70.436799 ], [ -113.378906, 70.436799 ], [ -113.378906, 70.495574 ], [ -113.730469, 70.495574 ], [ -113.730469, 70.554179 ], [ -114.257812, 70.554179 ], [ -114.257812, 70.612614 ], [ -115.312500, 70.612614 ], [ -115.312500, 70.554179 ], [ -117.949219, 70.554179 ], [ -117.949219, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.728979 ], [ -118.300781, 70.728979 ], [ -118.300781, 70.844673 ], [ -118.476562, 70.844673 ], [ -118.476562, 70.959697 ], [ -118.300781, 70.959697 ], [ -118.300781, 71.016960 ], [ -117.949219, 71.016960 ], [ -117.949219, 71.074056 ], [ -117.597656, 71.074056 ], [ -117.597656, 71.130988 ], [ -117.246094, 71.130988 ], [ -117.246094, 71.187754 ], [ -116.894531, 71.187754 ], [ -116.894531, 71.244356 ], [ -116.542969, 71.244356 ], [ -116.542969, 71.300793 ], [ -116.191406, 71.300793 ], [ -116.191406, 71.357067 ], [ -116.894531, 71.357067 ], [ -116.894531, 71.300793 ], [ -118.125000, 71.300793 ], [ -118.125000, 71.357067 ], [ -118.476562, 71.357067 ], [ -118.476562, 71.413177 ], [ -118.828125, 71.413177 ], [ -118.828125, 71.469124 ], [ -119.179688, 71.469124 ], [ -119.179688, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.635993 ], [ -119.355469, 71.635993 ], [ -119.355469, 71.801410 ], [ -119.179688, 71.801410 ], [ -119.179688, 71.965388 ], [ -119.003906, 71.965388 ], [ -119.003906, 72.073911 ], [ -118.828125, 72.073911 ], [ -118.828125, 72.235514 ], [ -118.652344, 72.235514 ], [ -118.652344, 72.342464 ], [ -118.476562, 72.342464 ], [ -118.476562, 72.448792 ], [ -118.300781, 72.448792 ], [ -118.300781, 72.554498 ], [ -118.125000, 72.554498 ], [ -118.125000, 72.659588 ], [ -117.949219, 72.659588 ], [ -117.949219, 72.711903 ], [ -117.773438, 72.711903 ], [ -117.773438, 72.764065 ], [ -117.597656, 72.764065 ], [ -117.597656, 72.816074 ], [ -117.246094, 72.816074 ], [ -117.246094, 72.867930 ], [ -117.070312, 72.867930 ], [ -117.070312, 72.919635 ], [ -116.894531, 72.919635 ], [ -116.894531, 72.971189 ], [ -116.718750, 72.971189 ], [ -116.718750, 73.022592 ], [ -116.367188, 73.022592 ], [ -116.367188, 73.073844 ], [ -116.191406, 73.073844 ], [ -116.191406, 73.124945 ], [ -116.015625, 73.124945 ], [ -116.015625, 73.175897 ], [ -115.839844, 73.175897 ], [ -115.839844, 73.226700 ], [ -115.488281, 73.226700 ], [ -115.488281, 73.277353 ], [ -114.960938, 73.277353 ], [ -114.960938, 73.226700 ], [ -114.785156, 73.226700 ], [ -114.785156, 73.175897 ], [ -114.433594, 73.175897 ], [ -114.433594, 73.124945 ], [ -114.257812, 73.124945 ], [ -114.257812, 73.022592 ], [ -114.433594, 73.022592 ], [ -114.433594, 72.867930 ], [ -114.609375, 72.867930 ], [ -114.609375, 72.711903 ], [ -114.785156, 72.711903 ], [ -114.785156, 72.659588 ], [ -114.433594, 72.659588 ], [ -114.433594, 72.711903 ], [ -114.082031, 72.711903 ], [ -114.082031, 72.764065 ], [ -113.730469, 72.764065 ], [ -113.730469, 72.816074 ], [ -113.378906, 72.816074 ], [ -113.378906, 72.867930 ], [ -113.027344, 72.867930 ], [ -113.027344, 72.919635 ], [ -112.675781, 72.919635 ], [ -112.675781, 72.971189 ], [ -112.500000, 72.971189 ], [ -112.500000, 72.919635 ], [ -112.324219, 72.919635 ], [ -112.324219, 72.867930 ], [ -112.148438, 72.867930 ], [ -112.148438, 72.816074 ], [ -111.972656, 72.816074 ], [ -111.972656, 72.764065 ], [ -111.796875, 72.764065 ], [ -111.796875, 72.659588 ], [ -111.621094, 72.659588 ], [ -111.621094, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.554498 ], [ -111.269531, 72.554498 ], [ -111.269531, 72.501722 ], [ -110.917969, 72.501722 ], [ -110.917969, 72.607120 ], [ -110.742188, 72.607120 ], [ -110.742188, 72.659588 ], [ -110.566406, 72.659588 ], [ -110.566406, 72.764065 ], [ -110.390625, 72.764065 ], [ -110.390625, 72.816074 ], [ -110.214844, 72.816074 ], [ -110.214844, 72.919635 ], [ -109.863281, 72.919635 ], [ -109.863281, 72.867930 ], [ -109.687500, 72.867930 ], [ -109.687500, 72.816074 ], [ -109.511719, 72.816074 ], [ -109.511719, 72.711903 ], [ -109.335938, 72.711903 ], [ -109.335938, 72.659588 ], [ -109.160156, 72.659588 ], [ -109.160156, 72.554498 ], [ -108.984375, 72.554498 ], [ -108.984375, 72.342464 ], [ -108.808594, 72.342464 ], [ -108.808594, 72.181804 ], [ -108.632812, 72.181804 ], [ -108.632812, 71.965388 ], [ -108.457031, 71.965388 ], [ -108.457031, 71.746432 ], [ -108.105469, 71.746432 ], [ -108.105469, 71.856229 ], [ -107.929688, 71.856229 ], [ -107.929688, 71.965388 ], [ -107.753906, 71.965388 ], [ -107.753906, 72.181804 ], [ -107.929688, 72.181804 ], [ -107.929688, 72.448792 ], [ -108.105469, 72.448792 ], [ -108.105469, 72.711903 ], [ -108.281250, 72.711903 ], [ -108.281250, 72.971189 ], [ -108.457031, 72.971189 ], [ -108.457031, 73.124945 ], [ -108.281250, 73.124945 ], [ -108.281250, 73.175897 ], [ -107.929688, 73.175897 ], [ -107.929688, 73.226700 ], [ -107.226562, 73.226700 ], [ -107.226562, 73.175897 ], [ -106.875000, 73.175897 ], [ -106.875000, 73.124945 ], [ -106.523438, 73.124945 ], [ -106.523438, 73.073844 ], [ -106.347656, 73.073844 ], [ -106.347656, 73.022592 ], [ -106.171875, 73.022592 ] ], [ [ -106.171875, 73.022592 ], [ -106.171875, 72.919635 ], [ -105.996094, 72.919635 ], [ -105.996094, 73.022592 ], [ -106.171875, 73.022592 ] ], [ [ -105.820312, 72.867930 ], [ -105.820312, 72.816074 ], [ -105.644531, 72.816074 ], [ -105.644531, 72.867930 ], [ -105.820312, 72.867930 ] ], [ [ -105.996094, 72.919635 ], [ -105.996094, 72.867930 ], [ -105.820312, 72.867930 ], [ -105.820312, 72.919635 ], [ -105.996094, 72.919635 ] ] ], [ [ [ -98.085938, 70.140364 ], [ -98.085938, 70.080562 ], [ -97.910156, 70.080562 ], [ -97.910156, 70.020587 ], [ -97.558594, 70.020587 ], [ -97.558594, 69.960439 ], [ -97.382812, 69.960439 ], [ -97.382812, 69.900118 ], [ -97.207031, 69.900118 ], [ -97.207031, 69.839622 ], [ -97.031250, 69.839622 ], [ -97.031250, 69.778952 ], [ -96.855469, 69.778952 ], [ -96.855469, 69.718107 ], [ -96.679688, 69.718107 ], [ -96.679688, 69.657086 ], [ -96.503906, 69.657086 ], [ -96.503906, 69.534518 ], [ -96.328125, 69.534518 ], [ -96.328125, 69.472969 ], [ -96.152344, 69.472969 ], [ -96.152344, 69.349339 ], [ -95.976562, 69.349339 ], [ -95.976562, 69.224997 ], [ -95.800781, 69.224997 ], [ -95.800781, 69.099940 ], [ -95.976562, 69.099940 ], [ -95.976562, 68.974164 ], [ -96.152344, 68.974164 ], [ -96.152344, 68.847665 ], [ -96.328125, 68.847665 ], [ -96.328125, 68.784144 ], [ -96.503906, 68.784144 ], [ -96.503906, 68.847665 ], [ -96.855469, 68.847665 ], [ -96.855469, 68.911005 ], [ -97.207031, 68.911005 ], [ -97.207031, 68.974164 ], [ -97.382812, 68.974164 ], [ -97.382812, 69.037142 ], [ -98.085938, 69.037142 ], [ -98.085938, 68.974164 ], [ -98.613281, 68.974164 ], [ -98.613281, 69.037142 ], [ -98.789062, 69.037142 ], [ -98.789062, 69.099940 ], [ -98.964844, 69.099940 ], [ -98.964844, 69.162558 ], [ -99.316406, 69.162558 ], [ -99.316406, 69.224997 ], [ -99.492188, 69.224997 ], [ -99.492188, 69.287257 ], [ -99.667969, 69.287257 ], [ -99.667969, 69.349339 ], [ -99.843750, 69.349339 ], [ -99.843750, 69.411242 ], [ -99.667969, 69.411242 ], [ -99.667969, 69.472969 ], [ -99.492188, 69.472969 ], [ -99.492188, 69.534518 ], [ -99.316406, 69.534518 ], [ -99.316406, 69.595890 ], [ -99.140625, 69.595890 ], [ -99.140625, 69.657086 ], [ -98.964844, 69.657086 ], [ -98.964844, 69.778952 ], [ -98.789062, 69.778952 ], [ -98.789062, 69.900118 ], [ -98.613281, 69.900118 ], [ -98.613281, 70.020587 ], [ -98.437500, 70.020587 ], [ -98.437500, 70.140364 ], [ -98.085938, 70.140364 ] ] ], [ [ [ -121.640625, 74.449358 ], [ -121.640625, 74.402163 ], [ -121.289062, 74.402163 ], [ -121.289062, 74.354828 ], [ -120.937500, 74.354828 ], [ -120.937500, 74.307353 ], [ -120.585938, 74.307353 ], [ -120.585938, 74.259738 ], [ -119.003906, 74.259738 ], [ -119.003906, 74.211983 ], [ -117.597656, 74.211983 ], [ -117.597656, 74.164085 ], [ -117.421875, 74.164085 ], [ -117.421875, 74.116047 ], [ -117.246094, 74.116047 ], [ -117.246094, 74.067866 ], [ -117.070312, 74.067866 ], [ -117.070312, 73.971078 ], [ -116.894531, 73.971078 ], [ -116.894531, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.873717 ], [ -116.542969, 73.873717 ], [ -116.542969, 73.775780 ], [ -116.367188, 73.775780 ], [ -116.367188, 73.726595 ], [ -116.191406, 73.726595 ], [ -116.191406, 73.627789 ], [ -116.015625, 73.627789 ], [ -116.015625, 73.578167 ], [ -115.839844, 73.578167 ], [ -115.839844, 73.478485 ], [ -115.664062, 73.478485 ], [ -115.664062, 73.428424 ], [ -116.015625, 73.428424 ], [ -116.015625, 73.378215 ], [ -116.191406, 73.378215 ], [ -116.191406, 73.327858 ], [ -116.367188, 73.327858 ], [ -116.367188, 73.277353 ], [ -116.718750, 73.277353 ], [ -116.718750, 73.226700 ], [ -116.894531, 73.226700 ], [ -116.894531, 73.175897 ], [ -117.070312, 73.175897 ], [ -117.070312, 73.124945 ], [ -117.246094, 73.124945 ], [ -117.246094, 73.073844 ], [ -117.421875, 73.073844 ], [ -117.421875, 73.022592 ], [ -117.597656, 73.022592 ], [ -117.597656, 72.971189 ], [ -117.773438, 72.971189 ], [ -117.773438, 72.919635 ], [ -117.949219, 72.919635 ], [ -117.949219, 72.867930 ], [ -118.300781, 72.867930 ], [ -118.300781, 72.816074 ], [ -118.476562, 72.816074 ], [ -118.476562, 72.764065 ], [ -118.652344, 72.764065 ], [ -118.652344, 72.711903 ], [ -118.828125, 72.711903 ], [ -118.828125, 72.659588 ], [ -119.003906, 72.659588 ], [ -119.003906, 72.607120 ], [ -119.179688, 72.607120 ], [ -119.179688, 72.554498 ], [ -119.355469, 72.554498 ], [ -119.355469, 72.501722 ], [ -119.531250, 72.501722 ], [ -119.531250, 72.395706 ], [ -119.707031, 72.395706 ], [ -119.707031, 72.289067 ], [ -119.882812, 72.289067 ], [ -119.882812, 72.181804 ], [ -120.058594, 72.181804 ], [ -120.058594, 72.073911 ], [ -120.234375, 72.073911 ], [ -120.234375, 71.965388 ], [ -120.410156, 71.965388 ], [ -120.410156, 71.856229 ], [ -120.585938, 71.856229 ], [ -120.585938, 71.357067 ], [ -120.937500, 71.357067 ], [ -120.937500, 71.300793 ], [ -121.289062, 71.300793 ], [ -121.289062, 71.244356 ], [ -121.464844, 71.244356 ], [ -121.464844, 71.187754 ], [ -121.816406, 71.187754 ], [ -121.816406, 71.130988 ], [ -122.167969, 71.130988 ], [ -122.167969, 71.074056 ], [ -122.343750, 71.074056 ], [ -122.343750, 71.016960 ], [ -122.695312, 71.016960 ], [ -122.695312, 70.959697 ], [ -123.046875, 70.959697 ], [ -123.046875, 70.902268 ], [ -123.222656, 70.902268 ], [ -123.222656, 70.959697 ], [ -123.398438, 70.959697 ], [ -123.398438, 71.130988 ], [ -123.574219, 71.130988 ], [ -123.574219, 71.244356 ], [ -123.750000, 71.244356 ], [ -123.750000, 71.357067 ], [ -123.925781, 71.357067 ], [ -123.925781, 71.413177 ], [ -124.101562, 71.413177 ], [ -124.101562, 71.469124 ], [ -124.453125, 71.469124 ], [ -124.453125, 71.524909 ], [ -124.628906, 71.524909 ], [ -124.628906, 71.580532 ], [ -124.804688, 71.580532 ], [ -124.804688, 71.635993 ], [ -125.156250, 71.635993 ], [ -125.156250, 71.691293 ], [ -125.332031, 71.691293 ], [ -125.332031, 71.746432 ], [ -125.507812, 71.746432 ], [ -125.507812, 71.801410 ], [ -125.859375, 71.801410 ], [ -125.859375, 71.856229 ], [ -126.035156, 71.856229 ], [ -126.035156, 71.965388 ], [ -125.859375, 71.965388 ], [ -125.859375, 72.127936 ], [ -125.683594, 72.127936 ], [ -125.683594, 72.235514 ], [ -125.507812, 72.235514 ], [ -125.507812, 72.395706 ], [ -125.332031, 72.395706 ], [ -125.332031, 72.554498 ], [ -125.156250, 72.554498 ], [ -125.156250, 72.764065 ], [ -124.980469, 72.764065 ], [ -124.980469, 72.919635 ], [ -124.804688, 72.919635 ], [ -124.804688, 73.073844 ], [ -124.628906, 73.073844 ], [ -124.628906, 73.277353 ], [ -124.453125, 73.277353 ], [ -124.453125, 73.428424 ], [ -124.277344, 73.428424 ], [ -124.277344, 73.627789 ], [ -124.101562, 73.627789 ], [ -124.101562, 73.775780 ], [ -124.277344, 73.775780 ], [ -124.277344, 73.873717 ], [ -124.453125, 73.873717 ], [ -124.453125, 74.019543 ], [ -124.628906, 74.019543 ], [ -124.628906, 74.116047 ], [ -124.804688, 74.116047 ], [ -124.804688, 74.211983 ], [ -124.980469, 74.211983 ], [ -124.980469, 74.307353 ], [ -124.277344, 74.307353 ], [ -124.277344, 74.354828 ], [ -123.222656, 74.354828 ], [ -123.222656, 74.402163 ], [ -122.167969, 74.402163 ], [ -122.167969, 74.449358 ], [ -121.640625, 74.449358 ] ] ], [ [ [ -89.121094, 70.902268 ], [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.670881 ], [ -89.472656, 70.670881 ], [ -89.472656, 70.728979 ], [ -89.648438, 70.728979 ], [ -89.648438, 70.786910 ], [ -89.472656, 70.786910 ], [ -89.472656, 70.844673 ], [ -89.296875, 70.844673 ], [ -89.296875, 70.902268 ], [ -89.121094, 70.902268 ] ] ], [ [ [ -109.335938, 76.760541 ], [ -109.335938, 76.720223 ], [ -108.984375, 76.720223 ], [ -108.984375, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.557743 ], [ -108.457031, 76.557743 ], [ -108.457031, 76.310358 ], [ -108.281250, 76.310358 ], [ -108.281250, 76.100796 ], [ -108.105469, 76.100796 ], [ -108.105469, 75.930885 ], [ -107.929688, 75.930885 ], [ -107.929688, 75.845169 ], [ -107.753906, 75.845169 ], [ -107.753906, 75.888091 ], [ -107.578125, 75.888091 ], [ -107.578125, 75.930885 ], [ -107.226562, 75.930885 ], [ -107.226562, 75.973553 ], [ -107.050781, 75.973553 ], [ -107.050781, 76.016094 ], [ -106.699219, 76.016094 ], [ -106.699219, 75.973553 ], [ -105.996094, 75.973553 ], [ -105.996094, 75.715633 ], [ -105.820312, 75.715633 ], [ -105.820312, 75.408854 ], [ -105.996094, 75.408854 ], [ -105.996094, 75.230667 ], [ -106.171875, 75.230667 ], [ -106.171875, 75.050354 ], [ -106.347656, 75.050354 ], [ -106.347656, 75.004940 ], [ -106.875000, 75.004940 ], [ -106.875000, 74.959392 ], [ -107.929688, 74.959392 ], [ -107.929688, 74.913708 ], [ -109.160156, 74.913708 ], [ -109.160156, 74.867889 ], [ -109.863281, 74.867889 ], [ -109.863281, 74.821934 ], [ -110.214844, 74.821934 ], [ -110.214844, 74.775843 ], [ -110.390625, 74.775843 ], [ -110.390625, 74.729615 ], [ -110.742188, 74.729615 ], [ -110.742188, 74.683250 ], [ -110.917969, 74.683250 ], [ -110.917969, 74.636748 ], [ -111.269531, 74.636748 ], [ -111.269531, 74.590108 ], [ -111.621094, 74.590108 ], [ -111.621094, 74.543330 ], [ -111.796875, 74.543330 ], [ -111.796875, 74.496413 ], [ -112.148438, 74.496413 ], [ -112.148438, 74.449358 ], [ -113.027344, 74.449358 ], [ -113.027344, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.729615 ], [ -113.730469, 74.729615 ], [ -113.730469, 74.775843 ], [ -113.554688, 74.775843 ], [ -113.554688, 74.821934 ], [ -113.203125, 74.821934 ], [ -113.203125, 74.867889 ], [ -113.027344, 74.867889 ], [ -113.027344, 74.913708 ], [ -112.851562, 74.913708 ], [ -112.851562, 74.959392 ], [ -112.675781, 74.959392 ], [ -112.675781, 75.004940 ], [ -112.500000, 75.004940 ], [ -112.500000, 75.050354 ], [ -112.148438, 75.050354 ], [ -112.148438, 75.095633 ], [ -111.972656, 75.095633 ], [ -111.972656, 75.140778 ], [ -111.796875, 75.140778 ], [ -111.796875, 75.185789 ], [ -112.500000, 75.185789 ], [ -112.500000, 75.140778 ], [ -113.906250, 75.140778 ], [ -113.906250, 75.095633 ], [ -115.488281, 75.095633 ], [ -115.488281, 75.050354 ], [ -116.718750, 75.050354 ], [ -116.718750, 75.095633 ], [ -117.070312, 75.095633 ], [ -117.070312, 75.140778 ], [ -117.421875, 75.140778 ], [ -117.421875, 75.185789 ], [ -117.773438, 75.185789 ], [ -117.773438, 75.275413 ], [ -117.597656, 75.275413 ], [ -117.597656, 75.408854 ], [ -117.421875, 75.408854 ], [ -117.421875, 75.541113 ], [ -117.246094, 75.541113 ], [ -117.246094, 75.672197 ], [ -117.070312, 75.672197 ], [ -117.070312, 75.758940 ], [ -116.894531, 75.758940 ], [ -116.894531, 75.888091 ], [ -116.718750, 75.888091 ], [ -116.718750, 76.016094 ], [ -116.542969, 76.016094 ], [ -116.542969, 76.142958 ], [ -116.367188, 76.142958 ], [ -116.367188, 76.226907 ], [ -116.191406, 76.226907 ], [ -116.191406, 76.310358 ], [ -116.015625, 76.310358 ], [ -116.015625, 76.351896 ], [ -115.839844, 76.351896 ], [ -115.839844, 76.393312 ], [ -115.664062, 76.393312 ], [ -115.664062, 76.475773 ], [ -115.136719, 76.475773 ], [ -115.136719, 76.434604 ], [ -114.785156, 76.434604 ], [ -114.785156, 76.393312 ], [ -114.433594, 76.393312 ], [ -114.433594, 76.351896 ], [ -114.257812, 76.351896 ], [ -114.257812, 76.310358 ], [ -113.906250, 76.310358 ], [ -113.906250, 76.268695 ], [ -113.554688, 76.268695 ], [ -113.554688, 76.226907 ], [ -113.203125, 76.226907 ], [ -113.203125, 76.184995 ], [ -112.851562, 76.184995 ], [ -112.851562, 76.142958 ], [ -112.675781, 76.142958 ], [ -112.675781, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 76.058508 ], [ -112.324219, 76.058508 ], [ -112.324219, 75.973553 ], [ -112.148438, 75.973553 ], [ -112.148438, 75.930885 ], [ -111.972656, 75.930885 ], [ -111.972656, 75.888091 ], [ -111.796875, 75.888091 ], [ -111.796875, 75.802118 ], [ -111.621094, 75.802118 ], [ -111.621094, 75.758940 ], [ -111.445312, 75.758940 ], [ -111.445312, 75.715633 ], [ -111.269531, 75.715633 ], [ -111.269531, 75.628632 ], [ -111.093750, 75.628632 ], [ -111.093750, 75.584937 ], [ -110.566406, 75.584937 ], [ -110.566406, 75.541113 ], [ -109.687500, 75.541113 ], [ -109.687500, 75.497157 ], [ -109.160156, 75.497157 ], [ -109.160156, 75.541113 ], [ -109.335938, 75.541113 ], [ -109.335938, 75.672197 ], [ -109.511719, 75.672197 ], [ -109.511719, 75.758940 ], [ -109.687500, 75.758940 ], [ -109.687500, 75.888091 ], [ -109.863281, 75.888091 ], [ -109.863281, 76.016094 ], [ -110.039062, 76.016094 ], [ -110.039062, 76.142958 ], [ -110.214844, 76.142958 ], [ -110.214844, 76.226907 ], [ -110.390625, 76.226907 ], [ -110.390625, 76.351896 ], [ -110.566406, 76.351896 ], [ -110.566406, 76.434604 ], [ -110.390625, 76.434604 ], [ -110.390625, 76.516819 ], [ -110.214844, 76.516819 ], [ -110.214844, 76.598545 ], [ -110.039062, 76.598545 ], [ -110.039062, 76.679785 ], [ -109.863281, 76.679785 ], [ -109.863281, 76.760541 ], [ -109.335938, 76.760541 ] ] ], [ [ [ -89.121094, 71.244356 ], [ -90.000000, 71.244356 ], [ -90.000000, 71.469124 ], [ -90.175781, 71.469124 ], [ -90.175781, 71.965388 ], [ -90.351562, 71.965388 ], [ -90.351562, 72.289067 ], [ -90.175781, 72.289067 ], [ -90.175781, 72.501722 ], [ -90.000000, 72.501722 ], [ -90.000000, 72.711903 ], [ -89.824219, 72.711903 ], [ -89.824219, 72.867930 ], [ -89.648438, 72.867930 ], [ -89.648438, 73.073844 ], [ -89.472656, 73.073844 ], [ -89.472656, 73.175897 ], [ -89.296875, 73.175897 ], [ -89.296875, 73.226700 ], [ -89.121094, 73.226700 ], [ -89.121094, 71.244356 ] ] ], [ [ [ -96.503906, 77.196176 ], [ -96.503906, 77.157163 ], [ -95.449219, 77.157163 ], [ -95.449219, 77.118032 ], [ -94.746094, 77.118032 ], [ -94.746094, 77.078784 ], [ -94.570312, 77.078784 ], [ -94.570312, 77.039418 ], [ -94.394531, 77.039418 ], [ -94.394531, 76.960334 ], [ -94.218750, 76.960334 ], [ -94.218750, 76.920614 ], [ -94.042969, 76.920614 ], [ -94.042969, 76.880775 ], [ -93.867188, 76.880775 ], [ -93.867188, 76.800739 ], [ -91.757812, 76.800739 ], [ -91.757812, 76.760541 ], [ -91.582031, 76.760541 ], [ -91.582031, 76.679785 ], [ -91.406250, 76.679785 ], [ -91.406250, 76.639226 ], [ -91.230469, 76.639226 ], [ -91.230469, 76.557743 ], [ -91.054688, 76.557743 ], [ -91.054688, 76.475773 ], [ -90.878906, 76.475773 ], [ -90.878906, 76.268695 ], [ -91.054688, 76.268695 ], [ -91.054688, 76.058508 ], [ -90.703125, 76.058508 ], [ -90.703125, 76.016094 ], [ -90.527344, 76.016094 ], [ -90.527344, 75.973553 ], [ -90.351562, 75.973553 ], [ -90.351562, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.888091 ], [ -89.824219, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -89.121094, 75.628632 ], [ -89.121094, 74.496413 ], [ -89.648438, 74.496413 ], [ -89.648438, 74.543330 ], [ -90.175781, 74.543330 ], [ -90.175781, 74.590108 ], [ -90.527344, 74.590108 ], [ -90.527344, 74.636748 ], [ -90.878906, 74.636748 ], [ -90.878906, 74.683250 ], [ -91.230469, 74.683250 ], [ -91.230469, 74.729615 ], [ -91.582031, 74.729615 ], [ -91.582031, 74.775843 ], [ -91.933594, 74.775843 ], [ -91.933594, 74.821934 ], [ -92.285156, 74.821934 ], [ -92.285156, 74.867889 ], [ -92.460938, 74.867889 ], [ -92.460938, 75.004940 ], [ -92.636719, 75.004940 ], [ -92.636719, 75.275413 ], [ -92.812500, 75.275413 ], [ -92.812500, 75.628632 ], [ -92.988281, 75.628632 ], [ -92.988281, 75.888091 ], [ -93.164062, 75.888091 ], [ -93.164062, 75.973553 ], [ -93.339844, 75.973553 ], [ -93.339844, 76.058508 ], [ -93.515625, 76.058508 ], [ -93.515625, 76.142958 ], [ -93.691406, 76.142958 ], [ -93.691406, 76.226907 ], [ -93.867188, 76.226907 ], [ -93.867188, 76.310358 ], [ -94.042969, 76.310358 ], [ -94.042969, 76.351896 ], [ -94.394531, 76.351896 ], [ -94.394531, 76.393312 ], [ -95.097656, 76.393312 ], [ -95.097656, 76.434604 ], [ -95.800781, 76.434604 ], [ -95.800781, 76.475773 ], [ -96.152344, 76.475773 ], [ -96.152344, 76.516819 ], [ -96.328125, 76.516819 ], [ -96.328125, 76.557743 ], [ -96.503906, 76.557743 ], [ -96.503906, 76.598545 ], [ -96.679688, 76.598545 ], [ -96.679688, 76.639226 ], [ -96.855469, 76.639226 ], [ -96.855469, 76.679785 ], [ -97.031250, 76.679785 ], [ -97.031250, 76.720223 ], [ -97.207031, 76.720223 ], [ -97.207031, 76.840816 ], [ -97.031250, 76.840816 ], [ -97.031250, 77.078784 ], [ -96.855469, 77.078784 ], [ -96.855469, 77.196176 ], [ -96.503906, 77.196176 ] ] ], [ [ [ -100.019531, 73.824820 ], [ -100.019531, 73.775780 ], [ -99.843750, 73.775780 ], [ -99.843750, 73.726595 ], [ -99.492188, 73.726595 ], [ -99.492188, 73.677264 ], [ -98.789062, 73.677264 ], [ -98.789062, 73.726595 ], [ -97.734375, 73.726595 ], [ -97.734375, 73.775780 ], [ -97.382812, 73.775780 ], [ -97.382812, 73.627789 ], [ -97.207031, 73.627789 ], [ -97.207031, 73.428424 ], [ -97.382812, 73.428424 ], [ -97.382812, 73.327858 ], [ -97.558594, 73.327858 ], [ -97.558594, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 73.124945 ], [ -97.910156, 73.124945 ], [ -97.910156, 73.022592 ], [ -98.085938, 73.022592 ], [ -98.085938, 72.971189 ], [ -97.910156, 72.971189 ], [ -97.910156, 72.919635 ], [ -97.734375, 72.919635 ], [ -97.734375, 72.867930 ], [ -97.558594, 72.867930 ], [ -97.558594, 72.816074 ], [ -97.382812, 72.816074 ], [ -97.382812, 72.764065 ], [ -97.207031, 72.764065 ], [ -97.207031, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.659588 ], [ -96.855469, 72.659588 ], [ -96.855469, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 72.127936 ], [ -96.855469, 72.127936 ], [ -96.855469, 71.635993 ], [ -97.031250, 71.635993 ], [ -97.031250, 71.580532 ], [ -97.382812, 71.580532 ], [ -97.382812, 71.524909 ], [ -97.558594, 71.524909 ], [ -97.558594, 71.469124 ], [ -97.734375, 71.469124 ], [ -97.734375, 71.413177 ], [ -98.085938, 71.413177 ], [ -98.085938, 71.357067 ], [ -98.261719, 71.357067 ], [ -98.261719, 71.300793 ], [ -99.140625, 71.300793 ], [ -99.140625, 71.357067 ], [ -99.492188, 71.357067 ], [ -99.492188, 71.413177 ], [ -99.667969, 71.413177 ], [ -99.667969, 71.524909 ], [ -99.843750, 71.524909 ], [ -99.843750, 71.635993 ], [ -100.019531, 71.635993 ], [ -100.019531, 71.746432 ], [ -100.195312, 71.746432 ], [ -100.195312, 71.801410 ], [ -100.371094, 71.801410 ], [ -100.371094, 71.856229 ], [ -100.546875, 71.856229 ], [ -100.546875, 71.910888 ], [ -100.722656, 71.910888 ], [ -100.722656, 71.965388 ], [ -100.898438, 71.965388 ], [ -100.898438, 72.019729 ], [ -101.074219, 72.019729 ], [ -101.074219, 72.073911 ], [ -101.250000, 72.073911 ], [ -101.250000, 72.127936 ], [ -101.425781, 72.127936 ], [ -101.425781, 72.181804 ], [ -101.601562, 72.181804 ], [ -101.601562, 72.235514 ], [ -101.777344, 72.235514 ], [ -101.777344, 72.289067 ], [ -101.953125, 72.289067 ], [ -101.953125, 72.342464 ], [ -102.128906, 72.342464 ], [ -102.128906, 72.395706 ], [ -102.304688, 72.395706 ], [ -102.304688, 72.448792 ], [ -102.480469, 72.448792 ], [ -102.480469, 72.501722 ], [ -102.656250, 72.501722 ], [ -102.656250, 72.711903 ], [ -102.480469, 72.711903 ], [ -102.480469, 72.867930 ], [ -102.304688, 72.867930 ], [ -102.304688, 72.816074 ], [ -101.601562, 72.816074 ], [ -101.601562, 72.764065 ], [ -100.898438, 72.764065 ], [ -100.898438, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.764065 ], [ -100.722656, 72.764065 ], [ -100.722656, 72.867930 ], [ -100.898438, 72.867930 ], [ -100.898438, 72.971189 ], [ -101.074219, 72.971189 ], [ -101.074219, 73.073844 ], [ -101.250000, 73.073844 ], [ -101.250000, 73.175897 ], [ -101.425781, 73.175897 ], [ -101.425781, 73.277353 ], [ -101.601562, 73.277353 ], [ -101.601562, 73.378215 ], [ -101.425781, 73.378215 ], [ -101.425781, 73.478485 ], [ -101.250000, 73.478485 ], [ -101.250000, 73.528399 ], [ -101.074219, 73.528399 ], [ -101.074219, 73.627789 ], [ -100.898438, 73.627789 ], [ -100.898438, 73.677264 ], [ -100.722656, 73.677264 ], [ -100.722656, 73.726595 ], [ -100.546875, 73.726595 ], [ -100.546875, 73.824820 ], [ -100.019531, 73.824820 ] ] ], [ [ [ -93.691406, 74.164085 ], [ -93.691406, 74.116047 ], [ -92.285156, 74.116047 ], [ -92.285156, 74.067866 ], [ -91.933594, 74.067866 ], [ -91.933594, 74.019543 ], [ -91.582031, 74.019543 ], [ -91.582031, 73.971078 ], [ -91.230469, 73.971078 ], [ -91.230469, 73.922469 ], [ -90.878906, 73.922469 ], [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ], [ -90.527344, 73.824820 ], [ -90.703125, 73.824820 ], [ -90.703125, 73.726595 ], [ -90.878906, 73.726595 ], [ -90.878906, 73.627789 ], [ -91.054688, 73.627789 ], [ -91.054688, 73.528399 ], [ -91.230469, 73.528399 ], [ -91.230469, 73.428424 ], [ -91.406250, 73.428424 ], [ -91.406250, 73.327858 ], [ -91.582031, 73.327858 ], [ -91.582031, 73.226700 ], [ -91.757812, 73.226700 ], [ -91.757812, 73.124945 ], [ -91.933594, 73.124945 ], [ -91.933594, 73.022592 ], [ -92.109375, 73.022592 ], [ -92.109375, 72.971189 ], [ -92.285156, 72.971189 ], [ -92.285156, 72.919635 ], [ -92.636719, 72.919635 ], [ -92.636719, 72.867930 ], [ -92.988281, 72.867930 ], [ -92.988281, 72.816074 ], [ -93.339844, 72.816074 ], [ -93.339844, 72.711903 ], [ -93.515625, 72.711903 ], [ -93.515625, 72.607120 ], [ -93.691406, 72.607120 ], [ -93.691406, 72.501722 ], [ -93.867188, 72.501722 ], [ -93.867188, 72.342464 ], [ -94.042969, 72.342464 ], [ -94.042969, 72.235514 ], [ -94.218750, 72.235514 ], [ -94.218750, 72.127936 ], [ -94.394531, 72.127936 ], [ -94.394531, 72.073911 ], [ -95.449219, 72.073911 ], [ -95.449219, 72.181804 ], [ -95.625000, 72.181804 ], [ -95.625000, 72.395706 ], [ -95.800781, 72.395706 ], [ -95.800781, 72.607120 ], [ -95.976562, 72.607120 ], [ -95.976562, 72.816074 ], [ -96.152344, 72.816074 ], [ -96.152344, 73.528399 ], [ -95.976562, 73.528399 ], [ -95.976562, 73.677264 ], [ -95.800781, 73.677264 ], [ -95.800781, 73.775780 ], [ -95.625000, 73.775780 ], [ -95.625000, 73.873717 ], [ -95.449219, 73.873717 ], [ -95.449219, 73.922469 ], [ -95.273438, 73.922469 ], [ -95.273438, 73.971078 ], [ -95.097656, 73.971078 ], [ -95.097656, 74.019543 ], [ -94.921875, 74.019543 ], [ -94.921875, 74.067866 ], [ -94.746094, 74.067866 ], [ -94.746094, 74.116047 ], [ -94.570312, 74.116047 ], [ -94.570312, 74.164085 ], [ -93.691406, 74.164085 ] ] ], [ [ [ -116.367188, 77.617709 ], [ -116.367188, 76.840816 ], [ -116.542969, 76.840816 ], [ -116.542969, 76.760541 ], [ -116.718750, 76.760541 ], [ -116.718750, 76.720223 ], [ -116.894531, 76.720223 ], [ -116.894531, 76.639226 ], [ -117.070312, 76.639226 ], [ -117.070312, 76.557743 ], [ -117.597656, 76.557743 ], [ -117.597656, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.475773 ], [ -118.300781, 76.475773 ], [ -118.300781, 76.434604 ], [ -118.476562, 76.434604 ], [ -118.476562, 76.393312 ], [ -118.652344, 76.393312 ], [ -118.652344, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.310358 ], [ -119.003906, 76.310358 ], [ -119.003906, 76.268695 ], [ -119.179688, 76.268695 ], [ -119.179688, 76.226907 ], [ -119.355469, 76.226907 ], [ -119.355469, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 76.142958 ], [ -119.707031, 76.142958 ], [ -119.707031, 76.100796 ], [ -119.882812, 76.100796 ], [ -119.882812, 76.058508 ], [ -120.234375, 76.058508 ], [ -120.234375, 76.016094 ], [ -120.761719, 76.016094 ], [ -120.761719, 75.973553 ], [ -121.289062, 75.973553 ], [ -121.289062, 75.930885 ], [ -121.816406, 75.930885 ], [ -121.816406, 75.973553 ], [ -122.167969, 75.973553 ], [ -122.167969, 76.016094 ], [ -122.343750, 76.016094 ], [ -122.343750, 76.058508 ], [ -122.519531, 76.058508 ], [ -122.519531, 76.100796 ], [ -122.871094, 76.100796 ], [ -122.871094, 76.184995 ], [ -122.695312, 76.184995 ], [ -122.695312, 76.268695 ], [ -122.519531, 76.268695 ], [ -122.519531, 76.351896 ], [ -122.343750, 76.351896 ], [ -122.343750, 76.434604 ], [ -122.167969, 76.434604 ], [ -122.167969, 76.516819 ], [ -121.992188, 76.516819 ], [ -121.992188, 76.598545 ], [ -121.816406, 76.598545 ], [ -121.816406, 76.679785 ], [ -121.640625, 76.679785 ], [ -121.640625, 76.760541 ], [ -121.464844, 76.760541 ], [ -121.464844, 76.840816 ], [ -121.289062, 76.840816 ], [ -121.289062, 76.880775 ], [ -121.113281, 76.880775 ], [ -121.113281, 76.960334 ], [ -120.937500, 76.960334 ], [ -120.937500, 76.999935 ], [ -120.761719, 76.999935 ], [ -120.761719, 77.039418 ], [ -120.585938, 77.039418 ], [ -120.585938, 77.118032 ], [ -120.410156, 77.118032 ], [ -120.410156, 77.157163 ], [ -120.234375, 77.157163 ], [ -120.234375, 77.235074 ], [ -120.058594, 77.235074 ], [ -120.058594, 77.273855 ], [ -119.882812, 77.273855 ], [ -119.882812, 77.351070 ], [ -119.707031, 77.351070 ], [ -119.707031, 77.389504 ], [ -119.531250, 77.389504 ], [ -119.531250, 77.427824 ], [ -119.355469, 77.427824 ], [ -119.355469, 77.504119 ], [ -119.179688, 77.504119 ], [ -119.179688, 77.542096 ], [ -118.476562, 77.542096 ], [ -118.476562, 77.504119 ], [ -117.421875, 77.504119 ], [ -117.421875, 77.542096 ], [ -117.070312, 77.542096 ], [ -117.070312, 77.579959 ], [ -116.718750, 77.579959 ], [ -116.718750, 77.617709 ], [ -116.367188, 77.617709 ] ] ], [ [ [ -99.843750, 76.679785 ], [ -99.843750, 76.639226 ], [ -99.140625, 76.639226 ], [ -99.140625, 76.598545 ], [ -98.613281, 76.598545 ], [ -98.613281, 76.639226 ], [ -98.437500, 76.639226 ], [ -98.437500, 76.557743 ], [ -98.261719, 76.557743 ], [ -98.261719, 76.475773 ], [ -98.085938, 76.475773 ], [ -98.085938, 76.393312 ], [ -97.910156, 76.393312 ], [ -97.910156, 76.310358 ], [ -97.734375, 76.310358 ], [ -97.734375, 75.628632 ], [ -97.910156, 75.628632 ], [ -97.910156, 75.364506 ], [ -98.085938, 75.364506 ], [ -98.085938, 75.095633 ], [ -98.261719, 75.095633 ], [ -98.261719, 75.004940 ], [ -98.613281, 75.004940 ], [ -98.613281, 74.959392 ], [ -99.316406, 74.959392 ], [ -99.316406, 74.913708 ], [ -100.019531, 74.913708 ], [ -100.019531, 74.959392 ], [ -100.371094, 74.959392 ], [ -100.371094, 75.004940 ], [ -100.546875, 75.004940 ], [ -100.546875, 75.050354 ], [ -100.898438, 75.050354 ], [ -100.898438, 75.672197 ], [ -101.250000, 75.672197 ], [ -101.250000, 75.628632 ], [ -102.128906, 75.628632 ], [ -102.128906, 75.584937 ], [ -102.656250, 75.584937 ], [ -102.656250, 76.351896 ], [ -102.304688, 76.351896 ], [ -102.304688, 76.310358 ], [ -101.425781, 76.310358 ], [ -101.425781, 76.351896 ], [ -101.250000, 76.351896 ], [ -101.250000, 76.393312 ], [ -101.074219, 76.393312 ], [ -101.074219, 76.434604 ], [ -100.898438, 76.434604 ], [ -100.898438, 76.475773 ], [ -100.722656, 76.475773 ], [ -100.722656, 76.516819 ], [ -100.546875, 76.516819 ], [ -100.546875, 76.557743 ], [ -100.371094, 76.557743 ], [ -100.371094, 76.598545 ], [ -100.195312, 76.598545 ], [ -100.195312, 76.639226 ], [ -100.019531, 76.639226 ], [ -100.019531, 76.679785 ], [ -99.843750, 76.679785 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.313860 ], [ -89.472656, 78.313860 ], [ -89.472656, 78.278201 ], [ -90.351562, 78.278201 ], [ -90.351562, 78.242436 ], [ -91.406250, 78.242436 ], [ -91.406250, 78.278201 ], [ -92.109375, 78.278201 ], [ -92.109375, 78.313860 ], [ -92.812500, 78.313860 ], [ -92.812500, 78.349411 ], [ -92.988281, 78.349411 ], [ -92.988281, 78.384855 ], [ -93.164062, 78.384855 ], [ -93.164062, 78.455425 ], [ -93.339844, 78.455425 ], [ -93.339844, 78.525573 ], [ -93.515625, 78.525573 ], [ -93.515625, 78.595299 ], [ -93.691406, 78.595299 ], [ -93.691406, 78.664608 ], [ -93.867188, 78.664608 ], [ -93.867188, 78.733501 ], [ -94.042969, 78.733501 ], [ -94.042969, 79.138260 ], [ -93.867188, 79.138260 ], [ -93.867188, 79.204309 ], [ -93.691406, 79.204309 ], [ -93.691406, 79.237185 ], [ -93.515625, 79.237185 ], [ -93.515625, 79.302640 ], [ -93.339844, 79.302640 ], [ -93.339844, 79.335219 ], [ -89.121094, 79.335219 ] ] ], [ [ [ -94.746094, 75.628632 ], [ -94.746094, 75.541113 ], [ -94.570312, 75.541113 ], [ -94.570312, 75.497157 ], [ -94.394531, 75.497157 ], [ -94.394531, 75.408854 ], [ -94.218750, 75.408854 ], [ -94.218750, 75.320025 ], [ -94.042969, 75.320025 ], [ -94.042969, 75.230667 ], [ -93.867188, 75.230667 ], [ -93.867188, 75.050354 ], [ -93.691406, 75.050354 ], [ -93.691406, 74.913708 ], [ -93.867188, 74.913708 ], [ -93.867188, 74.821934 ], [ -94.042969, 74.821934 ], [ -94.042969, 74.683250 ], [ -94.218750, 74.683250 ], [ -94.218750, 74.636748 ], [ -95.097656, 74.636748 ], [ -95.097656, 74.683250 ], [ -95.800781, 74.683250 ], [ -95.800781, 74.729615 ], [ -95.976562, 74.729615 ], [ -95.976562, 74.775843 ], [ -96.152344, 74.775843 ], [ -96.152344, 74.821934 ], [ -96.503906, 74.821934 ], [ -96.503906, 74.867889 ], [ -96.679688, 74.867889 ], [ -96.679688, 74.913708 ], [ -96.855469, 74.913708 ], [ -96.855469, 75.004940 ], [ -96.679688, 75.004940 ], [ -96.679688, 75.185789 ], [ -96.503906, 75.185789 ], [ -96.503906, 75.320025 ], [ -96.328125, 75.320025 ], [ -96.328125, 75.408854 ], [ -96.152344, 75.408854 ], [ -96.152344, 75.453071 ], [ -95.800781, 75.453071 ], [ -95.800781, 75.497157 ], [ -95.625000, 75.497157 ], [ -95.625000, 75.541113 ], [ -95.449219, 75.541113 ], [ -95.449219, 75.584937 ], [ -95.097656, 75.584937 ], [ -95.097656, 75.628632 ], [ -94.746094, 75.628632 ] ] ], [ [ [ -105.468750, 79.302640 ], [ -105.468750, 79.269962 ], [ -104.941406, 79.269962 ], [ -104.941406, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.183594, 79.138260 ], [ -103.183594, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.480469, 79.038437 ], [ -102.480469, 79.004962 ], [ -102.304688, 79.004962 ], [ -102.304688, 78.971386 ], [ -102.128906, 78.971386 ], [ -102.128906, 78.937708 ], [ -101.777344, 78.937708 ], [ -101.777344, 78.903929 ], [ -101.601562, 78.903929 ], [ -101.601562, 78.870048 ], [ -101.425781, 78.870048 ], [ -101.425781, 78.836065 ], [ -101.074219, 78.836065 ], [ -101.074219, 78.801980 ], [ -100.898438, 78.801980 ], [ -100.898438, 78.733501 ], [ -100.722656, 78.733501 ], [ -100.722656, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.490552 ], [ -100.371094, 78.490552 ], [ -100.371094, 78.384855 ], [ -100.195312, 78.384855 ], [ -100.195312, 78.242436 ], [ -100.019531, 78.242436 ], [ -100.019531, 78.025574 ], [ -99.843750, 78.025574 ], [ -99.843750, 77.915669 ], [ -100.195312, 77.915669 ], [ -100.195312, 77.952414 ], [ -100.722656, 77.952414 ], [ -100.722656, 77.989049 ], [ -101.250000, 77.989049 ], [ -101.250000, 78.025574 ], [ -101.601562, 78.025574 ], [ -101.601562, 78.061989 ], [ -101.777344, 78.061989 ], [ -101.777344, 78.098296 ], [ -101.953125, 78.098296 ], [ -101.953125, 78.134493 ], [ -102.128906, 78.134493 ], [ -102.128906, 78.170582 ], [ -102.304688, 78.170582 ], [ -102.304688, 78.206563 ], [ -102.480469, 78.206563 ], [ -102.480469, 78.242436 ], [ -102.656250, 78.242436 ], [ -102.656250, 78.278201 ], [ -102.832031, 78.278201 ], [ -102.832031, 78.313860 ], [ -103.007812, 78.313860 ], [ -103.007812, 78.349411 ], [ -104.238281, 78.349411 ], [ -104.238281, 78.384855 ], [ -105.117188, 78.384855 ], [ -105.117188, 78.455425 ], [ -104.941406, 78.455425 ], [ -104.941406, 78.490552 ], [ -104.765625, 78.490552 ], [ -104.765625, 78.560488 ], [ -104.589844, 78.560488 ], [ -104.589844, 78.595299 ], [ -104.414062, 78.595299 ], [ -104.414062, 78.664608 ], [ -104.238281, 78.664608 ], [ -104.238281, 78.699106 ], [ -104.414062, 78.699106 ], [ -104.414062, 78.733501 ], [ -104.589844, 78.733501 ], [ -104.589844, 78.767792 ], [ -104.765625, 78.767792 ], [ -104.765625, 78.801980 ], [ -104.941406, 78.801980 ], [ -104.941406, 78.836065 ], [ -105.117188, 78.836065 ], [ -105.117188, 78.870048 ], [ -105.292969, 78.870048 ], [ -105.292969, 78.903929 ], [ -105.468750, 78.903929 ], [ -105.468750, 79.105086 ], [ -105.644531, 79.105086 ], [ -105.644531, 79.302640 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -98.613281, 78.903929 ], [ -98.613281, 78.870048 ], [ -97.910156, 78.870048 ], [ -97.910156, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.801980 ], [ -97.031250, 78.801980 ], [ -97.031250, 78.767792 ], [ -96.855469, 78.767792 ], [ -96.855469, 78.733501 ], [ -96.679688, 78.733501 ], [ -96.679688, 78.664608 ], [ -96.503906, 78.664608 ], [ -96.503906, 78.630006 ], [ -96.328125, 78.630006 ], [ -96.328125, 78.595299 ], [ -96.152344, 78.595299 ], [ -96.152344, 78.525573 ], [ -95.976562, 78.525573 ], [ -95.976562, 78.490552 ], [ -95.800781, 78.490552 ], [ -95.800781, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.313860 ], [ -95.800781, 78.313860 ], [ -95.800781, 78.134493 ], [ -95.976562, 78.134493 ], [ -95.976562, 78.025574 ], [ -96.328125, 78.025574 ], [ -96.328125, 77.989049 ], [ -96.503906, 77.989049 ], [ -96.503906, 77.952414 ], [ -96.855469, 77.952414 ], [ -96.855469, 77.915669 ], [ -97.207031, 77.915669 ], [ -97.207031, 77.878814 ], [ -97.558594, 77.878814 ], [ -97.558594, 77.915669 ], [ -97.734375, 77.915669 ], [ -97.734375, 77.989049 ], [ -97.910156, 77.989049 ], [ -97.910156, 78.025574 ], [ -98.085938, 78.025574 ], [ -98.085938, 78.061989 ], [ -98.261719, 78.061989 ], [ -98.261719, 78.170582 ], [ -98.437500, 78.170582 ], [ -98.437500, 78.384855 ], [ -98.613281, 78.384855 ], [ -98.613281, 78.699106 ], [ -98.789062, 78.699106 ], [ -98.789062, 78.903929 ], [ -98.613281, 78.903929 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -111.269531, 78.134493 ], [ -110.917969, 78.134493 ], [ -110.917969, 78.098296 ], [ -110.566406, 78.098296 ], [ -110.566406, 78.061989 ], [ -110.214844, 78.061989 ], [ -110.214844, 78.025574 ], [ -109.863281, 78.025574 ], [ -109.863281, 77.952414 ], [ -110.039062, 77.952414 ], [ -110.039062, 77.804771 ], [ -110.214844, 77.804771 ], [ -110.214844, 77.692870 ], [ -110.566406, 77.692870 ], [ -110.566406, 77.655346 ], [ -110.742188, 77.655346 ], [ -110.742188, 77.617709 ], [ -110.917969, 77.617709 ], [ -110.917969, 77.579959 ], [ -111.269531, 77.579959 ], [ -111.269531, 77.542096 ], [ -111.445312, 77.542096 ], [ -111.445312, 77.504119 ], [ -111.621094, 77.504119 ], [ -111.621094, 77.466028 ], [ -111.972656, 77.466028 ], [ -111.972656, 77.427824 ], [ -112.324219, 77.427824 ], [ -112.324219, 77.466028 ], [ -112.500000, 77.466028 ], [ -112.500000, 77.504119 ], [ -112.675781, 77.504119 ], [ -112.675781, 77.542096 ], [ -112.851562, 77.542096 ], [ -112.851562, 77.617709 ], [ -113.027344, 77.617709 ], [ -113.027344, 77.655346 ], [ -113.203125, 77.655346 ], [ -113.203125, 77.692870 ], [ -113.378906, 77.692870 ], [ -113.378906, 77.730282 ], [ -113.554688, 77.730282 ], [ -113.554688, 77.804771 ], [ -113.378906, 77.804771 ], [ -113.378906, 77.878814 ], [ -113.203125, 77.878814 ], [ -113.203125, 77.952414 ], [ -113.027344, 77.952414 ], [ -113.027344, 78.025574 ], [ -112.851562, 78.025574 ], [ -112.851562, 78.061989 ], [ -112.500000, 78.061989 ], [ -112.500000, 78.098296 ], [ -111.972656, 78.098296 ], [ -111.972656, 78.134493 ], [ -111.445312, 78.134493 ], [ -111.445312, 78.170582 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -111.445312, 78.870048 ], [ -111.445312, 78.836065 ], [ -111.093750, 78.836065 ], [ -111.093750, 78.801980 ], [ -110.917969, 78.801980 ], [ -110.917969, 78.767792 ], [ -110.566406, 78.767792 ], [ -110.566406, 78.733501 ], [ -110.390625, 78.733501 ], [ -110.390625, 78.699106 ], [ -110.214844, 78.699106 ], [ -110.214844, 78.664608 ], [ -109.863281, 78.664608 ], [ -109.863281, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.595299 ], [ -109.863281, 78.595299 ], [ -109.863281, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.525573 ], [ -110.390625, 78.525573 ], [ -110.390625, 78.490552 ], [ -110.566406, 78.490552 ], [ -110.566406, 78.455425 ], [ -110.742188, 78.455425 ], [ -110.742188, 78.420193 ], [ -112.675781, 78.420193 ], [ -112.675781, 78.560488 ], [ -112.500000, 78.560488 ], [ -112.500000, 78.630006 ], [ -112.324219, 78.630006 ], [ -112.324219, 78.664608 ], [ -112.148438, 78.664608 ], [ -112.148438, 78.733501 ], [ -111.972656, 78.733501 ], [ -111.972656, 78.767792 ], [ -111.796875, 78.767792 ], [ -111.796875, 78.836065 ], [ -111.621094, 78.836065 ], [ -111.621094, 78.870048 ], [ -111.445312, 78.870048 ] ] ], [ [ [ -89.121094, 76.999935 ], [ -89.121094, 76.475773 ], [ -89.648438, 76.475773 ], [ -89.648438, 76.960334 ], [ -89.472656, 76.960334 ], [ -89.472656, 76.999935 ], [ -89.121094, 76.999935 ] ] ], [ [ [ -94.570312, 77.841848 ], [ -94.570312, 77.804771 ], [ -94.394531, 77.804771 ], [ -94.394531, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.692870 ], [ -94.042969, 77.692870 ], [ -94.042969, 77.655346 ], [ -93.867188, 77.655346 ], [ -93.867188, 77.542096 ], [ -94.042969, 77.542096 ], [ -94.042969, 77.504119 ], [ -94.921875, 77.504119 ], [ -94.921875, 77.542096 ], [ -95.976562, 77.542096 ], [ -95.976562, 77.579959 ], [ -96.328125, 77.579959 ], [ -96.328125, 77.692870 ], [ -96.503906, 77.692870 ], [ -96.503906, 77.841848 ], [ -94.570312, 77.841848 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.292969, 79.302640 ], [ -105.292969, 79.269962 ], [ -104.765625, 79.269962 ], [ -104.765625, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.183594, 79.138260 ], [ -103.183594, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.480469, 79.038437 ], [ -102.480469, 79.004962 ], [ -105.468750, 79.004962 ], [ -105.468750, 79.302640 ], [ -105.292969, 79.302640 ] ] ], [ [ [ -92.460938, 81.255032 ], [ -92.460938, 81.201420 ], [ -92.285156, 81.201420 ], [ -92.285156, 81.147481 ], [ -92.109375, 81.147481 ], [ -92.109375, 81.093214 ], [ -91.933594, 81.093214 ], [ -91.933594, 81.011194 ], [ -91.757812, 81.011194 ], [ -91.757812, 80.956099 ], [ -91.582031, 80.956099 ], [ -91.582031, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.816891 ], [ -91.230469, 80.816891 ], [ -91.230469, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.703997 ], [ -90.878906, 80.703997 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ], [ -90.527344, 80.647035 ], [ -90.527344, 80.618424 ], [ -90.175781, 80.618424 ], [ -90.175781, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.824219, 80.560943 ], [ -89.824219, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.503112 ], [ -89.472656, 80.503112 ], [ -89.472656, 80.474065 ], [ -89.121094, 80.474065 ], [ -89.121094, 79.004962 ], [ -93.867188, 79.004962 ], [ -93.867188, 79.138260 ], [ -93.691406, 79.138260 ], [ -93.691406, 79.204309 ], [ -93.515625, 79.204309 ], [ -93.515625, 79.269962 ], [ -93.339844, 79.269962 ], [ -93.339844, 79.335219 ], [ -93.164062, 79.335219 ], [ -93.164062, 79.367701 ], [ -95.097656, 79.367701 ], [ -95.097656, 79.432371 ], [ -95.273438, 79.432371 ], [ -95.273438, 79.464560 ], [ -95.449219, 79.464560 ], [ -95.449219, 79.528647 ], [ -95.625000, 79.528647 ], [ -95.625000, 79.592349 ], [ -95.800781, 79.592349 ], [ -95.800781, 79.624056 ], [ -95.976562, 79.624056 ], [ -95.976562, 79.687184 ], [ -96.152344, 79.687184 ], [ -96.152344, 79.781164 ], [ -96.328125, 79.781164 ], [ -96.328125, 79.935918 ], [ -96.503906, 79.935918 ], [ -96.503906, 80.058050 ], [ -96.679688, 80.058050 ], [ -96.679688, 80.178713 ], [ -96.503906, 80.178713 ], [ -96.503906, 80.297927 ], [ -96.328125, 80.297927 ], [ -96.328125, 80.415707 ], [ -96.152344, 80.415707 ], [ -96.152344, 80.532071 ], [ -95.976562, 80.532071 ], [ -95.976562, 80.618424 ], [ -95.800781, 80.618424 ], [ -95.800781, 80.703997 ], [ -95.625000, 80.703997 ], [ -95.625000, 80.760615 ], [ -95.449219, 80.760615 ], [ -95.449219, 80.844901 ], [ -95.273438, 80.844901 ], [ -95.273438, 80.900669 ], [ -94.921875, 80.900669 ], [ -94.921875, 80.928426 ], [ -94.570312, 80.928426 ], [ -94.570312, 80.956099 ], [ -94.218750, 80.956099 ], [ -94.218750, 81.011194 ], [ -94.394531, 81.011194 ], [ -94.394531, 81.093214 ], [ -94.570312, 81.093214 ], [ -94.570312, 81.147481 ], [ -94.746094, 81.147481 ], [ -94.746094, 81.201420 ], [ -94.042969, 81.201420 ], [ -94.042969, 81.228267 ], [ -92.988281, 81.228267 ], [ -92.988281, 81.255032 ], [ -92.460938, 81.255032 ] ] ], [ [ [ -89.121094, 82.118384 ], [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.872827 ], [ -89.472656, 80.872827 ], [ -89.472656, 80.956099 ], [ -89.648438, 80.956099 ], [ -89.648438, 81.038617 ], [ -89.824219, 81.038617 ], [ -89.824219, 81.120388 ], [ -90.000000, 81.120388 ], [ -90.000000, 81.201420 ], [ -90.175781, 81.201420 ], [ -90.175781, 81.255032 ], [ -90.351562, 81.255032 ], [ -90.351562, 81.308321 ], [ -90.527344, 81.308321 ], [ -90.527344, 81.334844 ], [ -90.703125, 81.334844 ], [ -90.703125, 81.387650 ], [ -90.878906, 81.387650 ], [ -90.878906, 81.440137 ], [ -91.054688, 81.440137 ], [ -91.054688, 81.466261 ], [ -91.230469, 81.466261 ], [ -91.230469, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.582031, 81.723188 ], [ -91.582031, 81.898451 ], [ -91.406250, 81.898451 ], [ -91.406250, 81.923186 ], [ -91.230469, 81.923186 ], [ -91.230469, 81.947846 ], [ -91.054688, 81.947846 ], [ -91.054688, 81.972431 ], [ -90.878906, 81.972431 ], [ -90.878906, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -89.121094, 82.118384 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.468750, 79.302640 ], [ -105.468750, 79.269962 ], [ -104.941406, 79.269962 ], [ -104.941406, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.359375, 79.138260 ], [ -103.359375, 79.105086 ], [ -103.183594, 79.105086 ], [ -103.183594, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 79.004962 ], [ -105.468750, 79.004962 ], [ -105.468750, 79.138260 ], [ -105.644531, 79.138260 ], [ -105.644531, 79.302640 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -92.460938, 81.281717 ], [ -92.460938, 81.228267 ], [ -92.285156, 81.228267 ], [ -92.285156, 81.147481 ], [ -92.109375, 81.147481 ], [ -92.109375, 81.065957 ], [ -91.933594, 81.065957 ], [ -91.933594, 81.011194 ], [ -91.757812, 81.011194 ], [ -91.757812, 80.928426 ], [ -91.582031, 80.928426 ], [ -91.582031, 80.844901 ], [ -91.406250, 80.844901 ], [ -91.406250, 80.760615 ], [ -91.230469, 80.760615 ], [ -91.230469, 80.703997 ], [ -90.878906, 80.703997 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ], [ -90.527344, 80.647035 ], [ -90.527344, 80.618424 ], [ -90.175781, 80.618424 ], [ -90.175781, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.648438, 80.560943 ], [ -89.648438, 80.532071 ], [ -89.472656, 80.532071 ], [ -89.472656, 80.503112 ], [ -89.296875, 80.503112 ], [ -89.296875, 80.474065 ], [ -89.121094, 80.474065 ], [ -89.121094, 79.004962 ], [ -94.042969, 79.004962 ], [ -94.042969, 79.138260 ], [ -93.867188, 79.138260 ], [ -93.867188, 79.204309 ], [ -93.691406, 79.204309 ], [ -93.691406, 79.269962 ], [ -93.515625, 79.269962 ], [ -93.515625, 79.302640 ], [ -93.339844, 79.302640 ], [ -93.339844, 79.367701 ], [ -93.164062, 79.367701 ], [ -93.164062, 79.400085 ], [ -95.273438, 79.400085 ], [ -95.273438, 79.464560 ], [ -95.449219, 79.464560 ], [ -95.449219, 79.528647 ], [ -95.625000, 79.528647 ], [ -95.625000, 79.560546 ], [ -95.800781, 79.560546 ], [ -95.800781, 79.624056 ], [ -95.976562, 79.624056 ], [ -95.976562, 79.687184 ], [ -96.152344, 79.687184 ], [ -96.152344, 79.749932 ], [ -96.328125, 79.749932 ], [ -96.328125, 79.874297 ], [ -96.503906, 79.874297 ], [ -96.503906, 79.997168 ], [ -96.679688, 79.997168 ], [ -96.679688, 80.118564 ], [ -96.855469, 80.118564 ], [ -96.855469, 80.208652 ], [ -96.679688, 80.208652 ], [ -96.679688, 80.327506 ], [ -96.503906, 80.327506 ], [ -96.503906, 80.444931 ], [ -96.328125, 80.444931 ], [ -96.328125, 80.560943 ], [ -96.152344, 80.560943 ], [ -96.152344, 80.647035 ], [ -95.976562, 80.647035 ], [ -95.976562, 80.732349 ], [ -95.800781, 80.732349 ], [ -95.800781, 80.788795 ], [ -95.625000, 80.788795 ], [ -95.625000, 80.872827 ], [ -95.449219, 80.872827 ], [ -95.449219, 80.928426 ], [ -95.097656, 80.928426 ], [ -95.097656, 80.956099 ], [ -94.570312, 80.956099 ], [ -94.570312, 80.983688 ], [ -94.394531, 80.983688 ], [ -94.394531, 81.038617 ], [ -94.570312, 81.038617 ], [ -94.570312, 81.147481 ], [ -94.746094, 81.147481 ], [ -94.746094, 81.228267 ], [ -94.042969, 81.228267 ], [ -94.042969, 81.255032 ], [ -92.988281, 81.255032 ], [ -92.988281, 81.281717 ], [ -92.460938, 81.281717 ] ] ], [ [ [ -89.121094, 82.118384 ], [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.844901 ], [ -89.472656, 80.844901 ], [ -89.472656, 80.900669 ], [ -89.648438, 80.900669 ], [ -89.648438, 80.983688 ], [ -89.824219, 80.983688 ], [ -89.824219, 81.065957 ], [ -90.000000, 81.065957 ], [ -90.000000, 81.147481 ], [ -90.175781, 81.147481 ], [ -90.175781, 81.228267 ], [ -90.351562, 81.228267 ], [ -90.351562, 81.281717 ], [ -90.527344, 81.281717 ], [ -90.527344, 81.334844 ], [ -90.703125, 81.334844 ], [ -90.703125, 81.387650 ], [ -90.878906, 81.387650 ], [ -90.878906, 81.440137 ], [ -91.054688, 81.440137 ], [ -91.054688, 81.492306 ], [ -91.230469, 81.492306 ], [ -91.230469, 81.544159 ], [ -91.406250, 81.544159 ], [ -91.406250, 81.646927 ], [ -91.582031, 81.646927 ], [ -91.582031, 81.798757 ], [ -91.757812, 81.798757 ], [ -91.757812, 81.898451 ], [ -91.582031, 81.898451 ], [ -91.582031, 81.923186 ], [ -91.406250, 81.923186 ], [ -91.406250, 81.947846 ], [ -91.230469, 81.947846 ], [ -91.230469, 81.972431 ], [ -91.054688, 81.972431 ], [ -91.054688, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -89.121094, 82.118384 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, -79.004962 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.302640 ], [ -77.519531, -79.302640 ], [ -77.519531, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.432371 ], [ -77.167969, -79.432371 ], [ -77.167969, -79.464560 ], [ -76.992188, -79.464560 ], [ -76.992188, -79.528647 ], [ -76.816406, -79.528647 ], [ -76.816406, -79.718605 ], [ -76.640625, -79.718605 ], [ -76.640625, -79.905154 ], [ -76.464844, -79.905154 ], [ -76.464844, -79.966590 ], [ -76.289062, -79.966590 ], [ -76.289062, -80.027655 ], [ -76.113281, -80.027655 ], [ -76.113281, -80.088352 ], [ -75.937500, -80.088352 ], [ -75.937500, -80.148684 ], [ -75.761719, -80.148684 ], [ -75.761719, -80.208652 ], [ -75.585938, -80.208652 ], [ -75.585938, -80.268259 ], [ -75.234375, -80.268259 ], [ -75.234375, -80.297927 ], [ -74.882812, -80.297927 ], [ -74.882812, -80.327506 ], [ -74.531250, -80.327506 ], [ -74.531250, -80.356995 ], [ -74.003906, -80.356995 ], [ -74.003906, -80.386396 ], [ -73.652344, -80.386396 ], [ -73.652344, -80.415707 ], [ -73.300781, -80.415707 ], [ -73.300781, -80.444931 ], [ -73.125000, -80.444931 ], [ -73.125000, -80.474065 ], [ -72.949219, -80.474065 ], [ -72.949219, -80.503112 ], [ -72.773438, -80.503112 ], [ -72.773438, -80.532071 ], [ -72.597656, -80.532071 ], [ -72.597656, -80.560943 ], [ -72.246094, -80.560943 ], [ -72.246094, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.618424 ], [ -71.894531, -80.618424 ], [ -71.894531, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.675559 ], [ -71.542969, -80.675559 ], [ -71.542969, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.732349 ], [ -71.191406, -80.732349 ], [ -71.191406, -80.788795 ], [ -71.015625, -80.788795 ], [ -71.015625, -80.816891 ], [ -70.839844, -80.816891 ], [ -70.839844, -80.844901 ], [ -70.664062, -80.844901 ], [ -70.664062, -80.900669 ], [ -70.488281, -80.900669 ], [ -70.488281, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.956099 ], [ -70.136719, -80.956099 ], [ -70.136719, -81.011194 ], [ -69.960938, -81.011194 ], [ -69.960938, -81.038617 ], [ -69.785156, -81.038617 ], [ -69.785156, -81.065957 ], [ -69.609375, -81.065957 ], [ -69.609375, -81.093214 ], [ -69.433594, -81.093214 ], [ -69.433594, -81.120388 ], [ -69.257812, -81.120388 ], [ -69.257812, -81.147481 ], [ -69.082031, -81.147481 ], [ -69.082031, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.228267 ], [ -68.730469, -81.228267 ], [ -68.730469, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.281717 ], [ -68.378906, -81.281717 ], [ -68.378906, -81.308321 ], [ -68.027344, -81.308321 ], [ -68.027344, -81.334844 ], [ -67.675781, -81.334844 ], [ -67.675781, -81.361287 ], [ -67.324219, -81.361287 ], [ -67.324219, -81.387650 ], [ -66.796875, -81.387650 ], [ -66.796875, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.440137 ], [ -66.093750, -81.440137 ], [ -66.093750, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.492306 ], [ -65.566406, -81.492306 ], [ -65.566406, -81.518272 ], [ -65.214844, -81.518272 ], [ -65.214844, -81.544159 ], [ -65.039062, -81.544159 ], [ -65.039062, -81.569968 ], [ -64.863281, -81.569968 ], [ -64.863281, -81.595699 ], [ -64.687500, -81.595699 ], [ -64.687500, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.646927 ], [ -64.160156, -81.646927 ], [ -64.160156, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.697844 ], [ -63.632812, -81.697844 ], [ -63.632812, -81.723188 ], [ -63.457031, -81.723188 ], [ -63.457031, -81.748454 ], [ -63.281250, -81.748454 ], [ -63.281250, -81.773644 ], [ -63.105469, -81.773644 ], [ -63.105469, -81.798757 ], [ -62.929688, -81.798757 ], [ -62.929688, -81.823794 ], [ -62.753906, -81.823794 ], [ -62.753906, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.898451 ], [ -62.402344, -81.898451 ], [ -62.402344, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.947846 ], [ -62.050781, -81.947846 ], [ -62.050781, -81.972431 ], [ -61.875000, -81.972431 ], [ -61.875000, -82.021378 ], [ -61.699219, -82.021378 ], [ -61.699219, -82.045740 ], [ -61.523438, -82.045740 ], [ -61.523438, -82.070028 ], [ -61.347656, -82.070028 ], [ -61.347656, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.142451 ], [ -60.996094, -82.142451 ], [ -60.996094, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.214217 ], [ -60.644531, -82.214217 ], [ -60.644531, -82.237994 ], [ -60.468750, -82.237994 ], [ -60.468750, -82.285331 ], [ -60.292969, -82.285331 ], [ -60.292969, -82.308893 ], [ -60.117188, -82.308893 ], [ -60.117188, -82.332382 ], [ -59.941406, -82.332382 ], [ -59.941406, -82.379147 ], [ -59.765625, -82.379147 ], [ -59.765625, -82.425629 ], [ -59.589844, -82.425629 ], [ -59.589844, -82.517749 ], [ -59.414062, -82.517749 ], [ -59.414062, -82.586106 ], [ -59.238281, -82.586106 ], [ -59.238281, -82.676285 ], [ -59.062500, -82.676285 ], [ -59.062500, -82.743202 ], [ -58.886719, -82.743202 ], [ -58.886719, -82.831480 ], [ -58.710938, -82.831480 ], [ -58.710938, -82.918690 ], [ -58.535156, -82.918690 ], [ -58.535156, -83.047529 ], [ -58.359375, -83.047529 ], [ -58.359375, -83.174035 ], [ -58.183594, -83.174035 ], [ -58.183594, -83.194896 ], [ -58.007812, -83.194896 ], [ -58.007812, -83.153111 ], [ -57.832031, -83.153111 ], [ -57.832031, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -83.047529 ], [ -57.480469, -83.047529 ], [ -57.480469, -83.004844 ], [ -57.304688, -83.004844 ], [ -57.304688, -82.961898 ], [ -57.128906, -82.961898 ], [ -57.128906, -82.918690 ], [ -56.953125, -82.918690 ], [ -56.953125, -82.875218 ], [ -56.777344, -82.875218 ], [ -56.777344, -82.831480 ], [ -56.601562, -82.831480 ], [ -56.601562, -82.809511 ], [ -56.425781, -82.809511 ], [ -56.425781, -82.765373 ], [ -56.250000, -82.765373 ], [ -56.250000, -82.720964 ], [ -56.074219, -82.720964 ], [ -56.074219, -82.698659 ], [ -55.898438, -82.698659 ], [ -55.898438, -82.653843 ], [ -55.722656, -82.653843 ], [ -55.722656, -82.631333 ], [ -55.546875, -82.631333 ], [ -55.546875, -82.586106 ], [ -55.371094, -82.586106 ], [ -55.371094, -82.563390 ], [ -55.195312, -82.563390 ], [ -55.195312, -82.540604 ], [ -55.019531, -82.540604 ], [ -55.019531, -82.494824 ], [ -54.843750, -82.494824 ], [ -54.843750, -82.471829 ], [ -54.667969, -82.471829 ], [ -54.667969, -82.448764 ], [ -54.492188, -82.448764 ], [ -54.492188, -82.402423 ], [ -54.316406, -82.402423 ], [ -54.316406, -82.379147 ], [ -54.140625, -82.379147 ], [ -54.140625, -82.355800 ], [ -53.964844, -82.355800 ], [ -53.964844, -82.308893 ], [ -53.789062, -82.308893 ], [ -53.789062, -82.285331 ], [ -53.613281, -82.285331 ], [ -53.613281, -82.261699 ], [ -53.437500, -82.261699 ], [ -53.437500, -82.237994 ], [ -53.261719, -82.237994 ], [ -53.261719, -82.214217 ], [ -53.085938, -82.214217 ], [ -53.085938, -82.190368 ], [ -52.910156, -82.190368 ], [ -52.910156, -82.166446 ], [ -52.734375, -82.166446 ], [ -52.734375, -82.142451 ], [ -52.382812, -82.142451 ], [ -52.382812, -82.118384 ], [ -52.207031, -82.118384 ], [ -52.207031, -82.094243 ], [ -52.031250, -82.094243 ], [ -52.031250, -82.070028 ], [ -51.855469, -82.070028 ], [ -51.855469, -82.045740 ], [ -51.679688, -82.045740 ], [ -51.679688, -82.021378 ], [ -51.503906, -82.021378 ], [ -51.503906, -81.996942 ], [ -51.328125, -81.996942 ], [ -51.328125, -81.972431 ], [ -51.152344, -81.972431 ], [ -51.152344, -81.947846 ], [ -50.976562, -81.947846 ], [ -50.976562, -81.923186 ], [ -50.800781, -81.923186 ], [ -50.800781, -81.898451 ], [ -50.625000, -81.898451 ], [ -50.625000, -81.848756 ], [ -50.449219, -81.848756 ], [ -50.449219, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.798757 ], [ -50.097656, -81.798757 ], [ -50.097656, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.748454 ], [ -49.746094, -81.748454 ], [ -49.746094, -81.723188 ], [ -48.339844, -81.723188 ], [ -48.339844, -81.697844 ], [ -47.109375, -81.697844 ], [ -47.109375, -81.723188 ], [ -46.757812, -81.723188 ], [ -46.757812, -81.748454 ], [ -46.406250, -81.748454 ], [ -46.406250, -81.773644 ], [ -45.878906, -81.773644 ], [ -45.878906, -81.798757 ], [ -45.527344, -81.798757 ], [ -45.527344, -81.823794 ], [ -45.175781, -81.823794 ], [ -45.175781, -81.848756 ], [ -44.824219, -81.848756 ], [ -44.824219, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.046875, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.327506 ], [ -44.824219, -80.327506 ], [ -44.824219, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.386396 ], [ -45.175781, -80.386396 ], [ -45.175781, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.444931 ], [ -45.527344, -80.444931 ], [ -45.527344, -80.474065 ], [ -45.878906, -80.474065 ], [ -45.878906, -80.503112 ], [ -46.054688, -80.503112 ], [ -46.054688, -80.532071 ], [ -46.230469, -80.532071 ], [ -46.230469, -80.560943 ], [ -46.406250, -80.560943 ], [ -46.406250, -80.589727 ], [ -46.582031, -80.589727 ], [ -46.582031, -80.618424 ], [ -46.757812, -80.618424 ], [ -46.757812, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.675559 ], [ -47.285156, -80.675559 ], [ -47.285156, -80.703997 ], [ -47.460938, -80.703997 ], [ -47.460938, -80.732349 ], [ -47.636719, -80.732349 ], [ -47.636719, -80.760615 ], [ -47.988281, -80.760615 ], [ -47.988281, -80.788795 ], [ -48.164062, -80.788795 ], [ -48.164062, -80.816891 ], [ -48.339844, -80.816891 ], [ -48.339844, -80.844901 ], [ -48.691406, -80.844901 ], [ -48.691406, -80.872827 ], [ -48.867188, -80.872827 ], [ -48.867188, -80.900669 ], [ -49.218750, -80.900669 ], [ -49.218750, -80.928426 ], [ -49.394531, -80.928426 ], [ -49.394531, -80.956099 ], [ -49.746094, -80.956099 ], [ -49.746094, -80.983688 ], [ -49.921875, -80.983688 ], [ -49.921875, -81.011194 ], [ -50.273438, -81.011194 ], [ -50.273438, -81.038617 ], [ -50.976562, -81.038617 ], [ -50.976562, -81.011194 ], [ -51.855469, -81.011194 ], [ -51.855469, -80.983688 ], [ -52.558594, -80.983688 ], [ -52.558594, -80.956099 ], [ -53.085938, -80.956099 ], [ -53.085938, -80.900669 ], [ -53.261719, -80.900669 ], [ -53.261719, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.613281, -80.816891 ], [ -53.613281, -80.760615 ], [ -53.789062, -80.760615 ], [ -53.789062, -80.732349 ], [ -53.964844, -80.732349 ], [ -53.964844, -80.675559 ], [ -54.140625, -80.675559 ], [ -54.140625, -80.444931 ], [ -53.964844, -80.444931 ], [ -53.964844, -80.208652 ], [ -53.789062, -80.208652 ], [ -53.789062, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.148684 ], [ -53.261719, -80.148684 ], [ -53.261719, -80.118564 ], [ -53.085938, -80.118564 ], [ -53.085938, -80.088352 ], [ -52.734375, -80.088352 ], [ -52.734375, -80.058050 ], [ -52.558594, -80.058050 ], [ -52.558594, -80.027655 ], [ -52.382812, -80.027655 ], [ -52.382812, -79.997168 ], [ -52.031250, -79.997168 ], [ -52.031250, -79.966590 ], [ -51.855469, -79.966590 ], [ -51.855469, -79.905154 ], [ -51.679688, -79.905154 ], [ -51.679688, -79.843346 ], [ -51.503906, -79.843346 ], [ -51.503906, -79.781164 ], [ -51.328125, -79.781164 ], [ -51.328125, -79.718605 ], [ -51.152344, -79.718605 ], [ -51.152344, -79.655668 ], [ -50.976562, -79.655668 ], [ -50.976562, -79.560546 ], [ -50.800781, -79.560546 ], [ -50.800781, -79.400085 ], [ -50.625000, -79.400085 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.071812 ], [ -50.097656, -79.071812 ], [ -50.097656, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.468750, -79.687184 ], [ -60.468750, -79.749932 ], [ -60.292969, -79.749932 ], [ -60.292969, -79.812302 ], [ -60.117188, -79.812302 ], [ -60.117188, -79.874297 ], [ -59.941406, -79.874297 ], [ -59.941406, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -79.997168 ], [ -59.589844, -79.997168 ], [ -59.589844, -80.178713 ], [ -59.765625, -80.178713 ], [ -59.765625, -80.444931 ], [ -59.941406, -80.444931 ], [ -59.941406, -80.788795 ], [ -60.117188, -80.788795 ], [ -60.117188, -81.011194 ], [ -60.468750, -81.011194 ], [ -60.468750, -80.983688 ], [ -60.820312, -80.983688 ], [ -60.820312, -80.956099 ], [ -61.347656, -80.956099 ], [ -61.347656, -80.928426 ], [ -61.699219, -80.928426 ], [ -61.699219, -80.900669 ], [ -62.050781, -80.900669 ], [ -62.050781, -80.872827 ], [ -62.753906, -80.872827 ], [ -62.753906, -80.900669 ], [ -63.808594, -80.900669 ], [ -63.808594, -80.928426 ], [ -64.687500, -80.928426 ], [ -64.687500, -80.872827 ], [ -64.863281, -80.872827 ], [ -64.863281, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.760615 ], [ -65.214844, -80.760615 ], [ -65.214844, -80.732349 ], [ -65.390625, -80.732349 ], [ -65.390625, -80.675559 ], [ -65.566406, -80.675559 ], [ -65.566406, -80.618424 ], [ -65.742188, -80.618424 ], [ -65.742188, -80.532071 ], [ -65.917969, -80.532071 ], [ -65.917969, -80.415707 ], [ -66.093750, -80.415707 ], [ -66.093750, -80.327506 ], [ -66.269531, -80.327506 ], [ -66.269531, -80.268259 ], [ -65.214844, -80.268259 ], [ -65.214844, -80.297927 ], [ -63.808594, -80.297927 ], [ -63.808594, -80.327506 ], [ -63.105469, -80.327506 ], [ -63.105469, -80.356995 ], [ -62.402344, -80.356995 ], [ -62.402344, -80.386396 ], [ -61.875000, -80.386396 ], [ -61.875000, -80.356995 ], [ -61.699219, -80.356995 ], [ -61.699219, -80.238501 ], [ -61.523438, -80.238501 ], [ -61.523438, -80.148684 ], [ -61.347656, -80.148684 ], [ -61.347656, -80.027655 ], [ -61.171875, -80.027655 ], [ -61.171875, -79.935918 ], [ -60.996094, -79.935918 ], [ -60.996094, -79.812302 ], [ -60.820312, -79.812302 ], [ -60.820312, -79.687184 ], [ -60.468750, -79.687184 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, -79.004962 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.335219 ], [ -77.519531, -79.335219 ], [ -77.519531, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.432371 ], [ -77.167969, -79.432371 ], [ -77.167969, -79.496652 ], [ -76.992188, -79.496652 ], [ -76.992188, -79.592349 ], [ -76.816406, -79.592349 ], [ -76.816406, -79.781164 ], [ -76.640625, -79.781164 ], [ -76.640625, -79.905154 ], [ -76.464844, -79.905154 ], [ -76.464844, -79.966590 ], [ -76.289062, -79.966590 ], [ -76.289062, -80.027655 ], [ -76.113281, -80.027655 ], [ -76.113281, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.118564 ], [ -75.761719, -80.118564 ], [ -75.761719, -80.178713 ], [ -75.585938, -80.178713 ], [ -75.585938, -80.238501 ], [ -75.410156, -80.238501 ], [ -75.410156, -80.268259 ], [ -75.058594, -80.268259 ], [ -75.058594, -80.297927 ], [ -74.707031, -80.297927 ], [ -74.707031, -80.327506 ], [ -74.355469, -80.327506 ], [ -74.355469, -80.356995 ], [ -74.003906, -80.356995 ], [ -74.003906, -80.386396 ], [ -73.652344, -80.386396 ], [ -73.652344, -80.415707 ], [ -73.300781, -80.415707 ], [ -73.300781, -80.444931 ], [ -73.125000, -80.444931 ], [ -73.125000, -80.474065 ], [ -72.949219, -80.474065 ], [ -72.949219, -80.503112 ], [ -72.773438, -80.503112 ], [ -72.773438, -80.532071 ], [ -72.597656, -80.532071 ], [ -72.597656, -80.560943 ], [ -72.246094, -80.560943 ], [ -72.246094, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.618424 ], [ -71.894531, -80.618424 ], [ -71.894531, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.675559 ], [ -71.542969, -80.675559 ], [ -71.542969, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.760615 ], [ -71.191406, -80.760615 ], [ -71.191406, -80.788795 ], [ -71.015625, -80.788795 ], [ -71.015625, -80.816891 ], [ -70.839844, -80.816891 ], [ -70.839844, -80.872827 ], [ -70.664062, -80.872827 ], [ -70.664062, -80.900669 ], [ -70.488281, -80.900669 ], [ -70.488281, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.983688 ], [ -70.136719, -80.983688 ], [ -70.136719, -81.011194 ], [ -69.960938, -81.011194 ], [ -69.960938, -81.038617 ], [ -69.785156, -81.038617 ], [ -69.785156, -81.065957 ], [ -69.609375, -81.065957 ], [ -69.609375, -81.093214 ], [ -69.433594, -81.093214 ], [ -69.433594, -81.120388 ], [ -69.257812, -81.120388 ], [ -69.257812, -81.147481 ], [ -69.082031, -81.147481 ], [ -69.082031, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.228267 ], [ -68.730469, -81.228267 ], [ -68.730469, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.281717 ], [ -68.378906, -81.281717 ], [ -68.378906, -81.308321 ], [ -68.027344, -81.308321 ], [ -68.027344, -81.334844 ], [ -67.675781, -81.334844 ], [ -67.675781, -81.361287 ], [ -67.324219, -81.361287 ], [ -67.324219, -81.387650 ], [ -66.796875, -81.387650 ], [ -66.796875, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.440137 ], [ -66.093750, -81.440137 ], [ -66.093750, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.492306 ], [ -65.566406, -81.492306 ], [ -65.566406, -81.518272 ], [ -65.214844, -81.518272 ], [ -65.214844, -81.544159 ], [ -65.039062, -81.544159 ], [ -65.039062, -81.569968 ], [ -64.863281, -81.569968 ], [ -64.863281, -81.595699 ], [ -64.687500, -81.595699 ], [ -64.687500, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.646927 ], [ -64.160156, -81.646927 ], [ -64.160156, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.697844 ], [ -63.632812, -81.697844 ], [ -63.632812, -81.723188 ], [ -63.457031, -81.723188 ], [ -63.457031, -81.748454 ], [ -63.281250, -81.748454 ], [ -63.281250, -81.773644 ], [ -63.105469, -81.773644 ], [ -63.105469, -81.798757 ], [ -62.929688, -81.798757 ], [ -62.929688, -81.848756 ], [ -62.753906, -81.848756 ], [ -62.753906, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.898451 ], [ -62.402344, -81.898451 ], [ -62.402344, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.947846 ], [ -62.050781, -81.947846 ], [ -62.050781, -81.996942 ], [ -61.875000, -81.996942 ], [ -61.875000, -82.021378 ], [ -61.699219, -82.021378 ], [ -61.699219, -82.045740 ], [ -61.523438, -82.045740 ], [ -61.523438, -82.070028 ], [ -61.347656, -82.070028 ], [ -61.347656, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.142451 ], [ -60.996094, -82.142451 ], [ -60.996094, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.190368 ], [ -60.644531, -82.190368 ], [ -60.644531, -82.237994 ], [ -60.468750, -82.237994 ], [ -60.468750, -82.261699 ], [ -60.292969, -82.261699 ], [ -60.292969, -82.285331 ], [ -60.117188, -82.285331 ], [ -60.117188, -82.332382 ], [ -59.941406, -82.332382 ], [ -59.941406, -82.355800 ], [ -59.765625, -82.355800 ], [ -59.765625, -82.402423 ], [ -59.589844, -82.402423 ], [ -59.589844, -82.494824 ], [ -59.414062, -82.494824 ], [ -59.414062, -82.563390 ], [ -59.238281, -82.563390 ], [ -59.238281, -82.653843 ], [ -59.062500, -82.653843 ], [ -59.062500, -82.720964 ], [ -58.886719, -82.720964 ], [ -58.886719, -82.809511 ], [ -58.710938, -82.809511 ], [ -58.710938, -82.940327 ], [ -58.535156, -82.940327 ], [ -58.535156, -83.132123 ], [ -58.359375, -83.132123 ], [ -58.359375, -83.194896 ], [ -58.183594, -83.194896 ], [ -58.183594, -83.153111 ], [ -58.007812, -83.153111 ], [ -58.007812, -83.089955 ], [ -57.832031, -83.089955 ], [ -57.832031, -83.047529 ], [ -57.656250, -83.047529 ], [ -57.656250, -83.004844 ], [ -57.480469, -83.004844 ], [ -57.480469, -82.940327 ], [ -57.304688, -82.940327 ], [ -57.304688, -82.896987 ], [ -57.128906, -82.896987 ], [ -57.128906, -82.853382 ], [ -56.953125, -82.853382 ], [ -56.953125, -82.831480 ], [ -56.777344, -82.831480 ], [ -56.777344, -82.787476 ], [ -56.601562, -82.787476 ], [ -56.601562, -82.765373 ], [ -56.425781, -82.765373 ], [ -56.425781, -82.743202 ], [ -56.250000, -82.743202 ], [ -56.250000, -82.698659 ], [ -56.074219, -82.698659 ], [ -56.074219, -82.676285 ], [ -55.898438, -82.676285 ], [ -55.898438, -82.653843 ], [ -55.722656, -82.653843 ], [ -55.722656, -82.608754 ], [ -55.546875, -82.608754 ], [ -55.546875, -82.586106 ], [ -55.371094, -82.586106 ], [ -55.371094, -82.563390 ], [ -55.195312, -82.563390 ], [ -55.195312, -82.517749 ], [ -55.019531, -82.517749 ], [ -55.019531, -82.494824 ], [ -54.843750, -82.494824 ], [ -54.843750, -82.448764 ], [ -54.667969, -82.448764 ], [ -54.667969, -82.402423 ], [ -54.492188, -82.402423 ], [ -54.492188, -82.379147 ], [ -54.316406, -82.379147 ], [ -54.316406, -82.332382 ], [ -54.140625, -82.332382 ], [ -54.140625, -82.308893 ], [ -53.964844, -82.308893 ], [ -53.964844, -82.261699 ], [ -53.789062, -82.261699 ], [ -53.789062, -82.237994 ], [ -53.613281, -82.237994 ], [ -53.613281, -82.214217 ], [ -53.437500, -82.214217 ], [ -53.437500, -82.190368 ], [ -53.085938, -82.190368 ], [ -53.085938, -82.166446 ], [ -52.910156, -82.166446 ], [ -52.910156, -82.142451 ], [ -52.734375, -82.142451 ], [ -52.734375, -82.118384 ], [ -52.558594, -82.118384 ], [ -52.558594, -82.094243 ], [ -52.382812, -82.094243 ], [ -52.382812, -82.070028 ], [ -52.031250, -82.070028 ], [ -52.031250, -82.045740 ], [ -51.855469, -82.045740 ], [ -51.855469, -82.021378 ], [ -51.679688, -82.021378 ], [ -51.679688, -81.996942 ], [ -51.503906, -81.996942 ], [ -51.503906, -81.972431 ], [ -51.328125, -81.972431 ], [ -51.328125, -81.947846 ], [ -51.152344, -81.947846 ], [ -51.152344, -81.923186 ], [ -50.976562, -81.923186 ], [ -50.976562, -81.898451 ], [ -50.800781, -81.898451 ], [ -50.800781, -81.848756 ], [ -50.625000, -81.848756 ], [ -50.625000, -81.823794 ], [ -50.449219, -81.823794 ], [ -50.449219, -81.798757 ], [ -50.273438, -81.798757 ], [ -50.273438, -81.773644 ], [ -50.097656, -81.773644 ], [ -50.097656, -81.748454 ], [ -49.921875, -81.748454 ], [ -49.921875, -81.723188 ], [ -48.515625, -81.723188 ], [ -48.515625, -81.697844 ], [ -47.109375, -81.697844 ], [ -47.109375, -81.723188 ], [ -46.582031, -81.723188 ], [ -46.582031, -81.748454 ], [ -46.230469, -81.748454 ], [ -46.230469, -81.773644 ], [ -45.703125, -81.773644 ], [ -45.703125, -81.798757 ], [ -45.175781, -81.798757 ], [ -45.175781, -81.823794 ], [ -44.824219, -81.823794 ], [ -44.824219, -81.848756 ], [ -44.648438, -81.848756 ], [ -44.648438, -81.873641 ], [ -44.472656, -81.873641 ], [ -44.472656, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.046875, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.268259 ], [ -44.648438, -80.268259 ], [ -44.648438, -80.297927 ], [ -44.824219, -80.297927 ], [ -44.824219, -80.327506 ], [ -45.000000, -80.327506 ], [ -45.000000, -80.356995 ], [ -45.175781, -80.356995 ], [ -45.175781, -80.386396 ], [ -45.351562, -80.386396 ], [ -45.351562, -80.415707 ], [ -45.527344, -80.415707 ], [ -45.527344, -80.444931 ], [ -45.703125, -80.444931 ], [ -45.703125, -80.474065 ], [ -45.878906, -80.474065 ], [ -45.878906, -80.503112 ], [ -46.054688, -80.503112 ], [ -46.054688, -80.532071 ], [ -46.230469, -80.532071 ], [ -46.230469, -80.560943 ], [ -46.406250, -80.560943 ], [ -46.406250, -80.589727 ], [ -46.582031, -80.589727 ], [ -46.582031, -80.618424 ], [ -46.933594, -80.618424 ], [ -46.933594, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.675559 ], [ -47.285156, -80.675559 ], [ -47.285156, -80.703997 ], [ -47.636719, -80.703997 ], [ -47.636719, -80.732349 ], [ -47.812500, -80.732349 ], [ -47.812500, -80.760615 ], [ -47.988281, -80.760615 ], [ -47.988281, -80.788795 ], [ -48.339844, -80.788795 ], [ -48.339844, -80.816891 ], [ -48.515625, -80.816891 ], [ -48.515625, -80.844901 ], [ -48.867188, -80.844901 ], [ -48.867188, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.900669 ], [ -49.394531, -80.900669 ], [ -49.394531, -80.928426 ], [ -49.746094, -80.928426 ], [ -49.746094, -80.956099 ], [ -50.097656, -80.956099 ], [ -50.097656, -80.983688 ], [ -50.449219, -80.983688 ], [ -50.449219, -81.011194 ], [ -51.328125, -81.011194 ], [ -51.328125, -80.983688 ], [ -52.382812, -80.983688 ], [ -52.382812, -80.956099 ], [ -53.085938, -80.956099 ], [ -53.085938, -80.900669 ], [ -53.261719, -80.900669 ], [ -53.261719, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.613281, -80.816891 ], [ -53.613281, -80.788795 ], [ -53.789062, -80.788795 ], [ -53.789062, -80.732349 ], [ -53.964844, -80.732349 ], [ -53.964844, -80.703997 ], [ -54.140625, -80.703997 ], [ -54.140625, -80.647035 ], [ -54.316406, -80.647035 ], [ -54.316406, -80.415707 ], [ -54.140625, -80.415707 ], [ -54.140625, -80.208652 ], [ -53.964844, -80.208652 ], [ -53.964844, -80.178713 ], [ -53.613281, -80.178713 ], [ -53.613281, -80.148684 ], [ -53.437500, -80.148684 ], [ -53.437500, -80.118564 ], [ -53.085938, -80.118564 ], [ -53.085938, -80.088352 ], [ -52.910156, -80.088352 ], [ -52.910156, -80.058050 ], [ -52.734375, -80.058050 ], [ -52.734375, -80.027655 ], [ -52.382812, -80.027655 ], [ -52.382812, -79.997168 ], [ -52.207031, -79.997168 ], [ -52.207031, -79.966590 ], [ -51.855469, -79.966590 ], [ -51.855469, -79.905154 ], [ -51.679688, -79.905154 ], [ -51.679688, -79.812302 ], [ -51.503906, -79.812302 ], [ -51.503906, -79.749932 ], [ -51.328125, -79.749932 ], [ -51.328125, -79.655668 ], [ -51.152344, -79.655668 ], [ -51.152344, -79.560546 ], [ -50.976562, -79.560546 ], [ -50.976562, -79.464560 ], [ -50.800781, -79.464560 ], [ -50.800781, -79.335219 ], [ -50.625000, -79.335219 ], [ -50.625000, -79.237185 ], [ -50.449219, -79.237185 ], [ -50.449219, -79.105086 ], [ -50.273438, -79.105086 ], [ -50.273438, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.468750, -79.687184 ], [ -60.468750, -79.749932 ], [ -60.292969, -79.749932 ], [ -60.292969, -79.812302 ], [ -60.117188, -79.812302 ], [ -60.117188, -79.874297 ], [ -59.941406, -79.874297 ], [ -59.941406, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -79.997168 ], [ -59.589844, -79.997168 ], [ -59.589844, -80.178713 ], [ -59.765625, -80.178713 ], [ -59.765625, -80.415707 ], [ -59.941406, -80.415707 ], [ -59.941406, -80.647035 ], [ -60.117188, -80.647035 ], [ -60.117188, -80.872827 ], [ -60.292969, -80.872827 ], [ -60.292969, -80.983688 ], [ -60.644531, -80.983688 ], [ -60.644531, -80.956099 ], [ -60.996094, -80.956099 ], [ -60.996094, -80.928426 ], [ -61.523438, -80.928426 ], [ -61.523438, -80.900669 ], [ -61.875000, -80.900669 ], [ -61.875000, -80.872827 ], [ -62.226562, -80.872827 ], [ -62.226562, -80.844901 ], [ -62.753906, -80.844901 ], [ -62.753906, -80.872827 ], [ -63.808594, -80.872827 ], [ -63.808594, -80.900669 ], [ -64.687500, -80.900669 ], [ -64.687500, -80.844901 ], [ -64.863281, -80.844901 ], [ -64.863281, -80.788795 ], [ -65.039062, -80.788795 ], [ -65.039062, -80.732349 ], [ -65.214844, -80.732349 ], [ -65.214844, -80.703997 ], [ -65.390625, -80.703997 ], [ -65.390625, -80.647035 ], [ -65.566406, -80.647035 ], [ -65.566406, -80.589727 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.503112 ], [ -65.917969, -80.503112 ], [ -65.917969, -80.444931 ], [ -66.093750, -80.444931 ], [ -66.093750, -80.356995 ], [ -66.269531, -80.356995 ], [ -66.269531, -80.297927 ], [ -66.445312, -80.297927 ], [ -66.445312, -80.238501 ], [ -65.390625, -80.238501 ], [ -65.390625, -80.268259 ], [ -63.984375, -80.268259 ], [ -63.984375, -80.297927 ], [ -63.457031, -80.297927 ], [ -63.457031, -80.327506 ], [ -62.929688, -80.327506 ], [ -62.929688, -80.356995 ], [ -62.402344, -80.356995 ], [ -62.402344, -80.386396 ], [ -62.050781, -80.386396 ], [ -62.050781, -80.356995 ], [ -61.875000, -80.356995 ], [ -61.875000, -80.268259 ], [ -61.699219, -80.268259 ], [ -61.699219, -80.178713 ], [ -61.523438, -80.178713 ], [ -61.523438, -80.118564 ], [ -61.347656, -80.118564 ], [ -61.347656, -80.027655 ], [ -61.171875, -80.027655 ], [ -61.171875, -79.935918 ], [ -60.996094, -79.935918 ], [ -60.996094, -79.812302 ], [ -60.820312, -79.812302 ], [ -60.820312, -79.687184 ], [ -60.468750, -79.687184 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.406250, -77.878814 ], [ -46.406250, -77.915669 ], [ -46.054688, -77.915669 ], [ -46.054688, -77.952414 ], [ -45.878906, -77.952414 ], [ -45.878906, -77.989049 ], [ -45.703125, -77.989049 ], [ -45.703125, -78.025574 ], [ -45.351562, -78.025574 ], [ -45.351562, -78.061989 ], [ -45.175781, -78.061989 ], [ -45.175781, -78.098296 ], [ -45.000000, -78.098296 ], [ -45.000000, -78.170582 ], [ -44.824219, -78.170582 ], [ -44.824219, -78.242436 ], [ -44.648438, -78.242436 ], [ -44.648438, -78.278201 ], [ -44.472656, -78.278201 ], [ -44.472656, -78.349411 ], [ -44.296875, -78.349411 ], [ -44.296875, -78.420193 ], [ -44.121094, -78.420193 ], [ -44.121094, -79.335219 ], [ -50.625000, -79.335219 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.004962 ], [ -50.097656, -79.004962 ], [ -50.097656, -78.870048 ], [ -49.921875, -78.870048 ], [ -49.921875, -78.767792 ], [ -49.746094, -78.767792 ], [ -49.746094, -78.630006 ], [ -49.570312, -78.630006 ], [ -49.570312, -78.525573 ], [ -49.394531, -78.525573 ], [ -49.394531, -78.420193 ], [ -49.218750, -78.420193 ], [ -49.218750, -78.313860 ], [ -49.042969, -78.313860 ], [ -49.042969, -78.242436 ], [ -48.867188, -78.242436 ], [ -48.867188, -78.134493 ], [ -48.691406, -78.134493 ], [ -48.691406, -78.061989 ], [ -47.988281, -78.061989 ], [ -47.988281, -78.025574 ], [ -47.636719, -78.025574 ], [ -47.636719, -77.989049 ], [ -47.460938, -77.989049 ], [ -47.460938, -77.952414 ], [ -47.109375, -77.952414 ], [ -47.109375, -77.915669 ], [ -46.933594, -77.915669 ], [ -46.933594, -77.878814 ], [ -46.406250, -77.878814 ] ] ], [ [ [ -62.050781, -66.160511 ], [ -62.050781, -66.231457 ], [ -62.226562, -66.231457 ], [ -62.226562, -66.302205 ], [ -62.402344, -66.302205 ], [ -62.402344, -66.372755 ], [ -62.578125, -66.372755 ], [ -62.578125, -66.443107 ], [ -63.105469, -66.443107 ], [ -63.105469, -66.513260 ], [ -63.808594, -66.513260 ], [ -63.808594, -66.583217 ], [ -63.984375, -66.583217 ], [ -63.984375, -66.722541 ], [ -64.160156, -66.722541 ], [ -64.160156, -66.861082 ], [ -64.335938, -66.861082 ], [ -64.335938, -66.930060 ], [ -64.511719, -66.930060 ], [ -64.511719, -66.998844 ], [ -64.687500, -66.998844 ], [ -64.687500, -67.135829 ], [ -64.863281, -67.135829 ], [ -64.863281, -67.204032 ], [ -65.039062, -67.204032 ], [ -65.039062, -67.339861 ], [ -65.214844, -67.339861 ], [ -65.214844, -67.474922 ], [ -65.390625, -67.474922 ], [ -65.390625, -67.609221 ], [ -65.566406, -67.609221 ], [ -65.566406, -67.809245 ], [ -65.742188, -67.809245 ], [ -65.742188, -68.073305 ], [ -65.566406, -68.073305 ], [ -65.566406, -68.269387 ], [ -65.390625, -68.269387 ], [ -65.390625, -68.399180 ], [ -65.214844, -68.399180 ], [ -65.214844, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.656555 ], [ -64.863281, -68.656555 ], [ -64.863281, -68.720441 ], [ -64.687500, -68.720441 ], [ -64.687500, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.847665 ], [ -64.160156, -68.847665 ], [ -64.160156, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -68.974164 ], [ -63.808594, -68.974164 ], [ -63.808594, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.162558 ], [ -63.457031, -69.162558 ], [ -63.457031, -69.224997 ], [ -63.281250, -69.224997 ], [ -63.281250, -69.287257 ], [ -63.105469, -69.287257 ], [ -63.105469, -69.411242 ], [ -62.929688, -69.411242 ], [ -62.929688, -69.534518 ], [ -62.753906, -69.534518 ], [ -62.753906, -69.839622 ], [ -62.578125, -69.839622 ], [ -62.578125, -70.140364 ], [ -62.402344, -70.140364 ], [ -62.402344, -70.318738 ], [ -62.226562, -70.318738 ], [ -62.226562, -70.495574 ], [ -62.050781, -70.495574 ], [ -62.050781, -70.670881 ], [ -61.875000, -70.670881 ], [ -61.875000, -70.844673 ], [ -61.699219, -70.844673 ], [ -61.699219, -71.016960 ], [ -61.523438, -71.016960 ], [ -61.523438, -71.580532 ], [ -61.347656, -71.580532 ], [ -61.347656, -72.127936 ], [ -61.171875, -72.127936 ], [ -61.171875, -72.342464 ], [ -60.996094, -72.342464 ], [ -60.996094, -72.867930 ], [ -60.820312, -72.867930 ], [ -60.820312, -73.073844 ], [ -60.644531, -73.073844 ], [ -60.644531, -73.428424 ], [ -60.820312, -73.428424 ], [ -60.820312, -73.775780 ], [ -60.996094, -73.775780 ], [ -60.996094, -73.922469 ], [ -61.171875, -73.922469 ], [ -61.171875, -74.067866 ], [ -61.347656, -74.067866 ], [ -61.347656, -74.164085 ], [ -61.523438, -74.164085 ], [ -61.523438, -74.259738 ], [ -61.699219, -74.259738 ], [ -61.699219, -74.354828 ], [ -61.875000, -74.354828 ], [ -61.875000, -74.449358 ], [ -62.226562, -74.449358 ], [ -62.226562, -74.496413 ], [ -62.578125, -74.496413 ], [ -62.578125, -74.543330 ], [ -62.929688, -74.543330 ], [ -62.929688, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.683250 ], [ -63.457031, -74.683250 ], [ -63.457031, -74.775843 ], [ -63.632812, -74.775843 ], [ -63.632812, -74.867889 ], [ -63.808594, -74.867889 ], [ -63.808594, -75.004940 ], [ -63.984375, -75.004940 ], [ -63.984375, -75.095633 ], [ -64.160156, -75.095633 ], [ -64.160156, -75.230667 ], [ -64.335938, -75.230667 ], [ -64.335938, -75.320025 ], [ -64.511719, -75.320025 ], [ -64.511719, -75.364506 ], [ -64.687500, -75.364506 ], [ -64.687500, -75.408854 ], [ -64.863281, -75.408854 ], [ -64.863281, -75.453071 ], [ -65.214844, -75.453071 ], [ -65.214844, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.541113 ], [ -65.566406, -75.541113 ], [ -65.566406, -75.584937 ], [ -65.742188, -75.584937 ], [ -65.742188, -75.628632 ], [ -65.917969, -75.628632 ], [ -65.917969, -75.672197 ], [ -66.269531, -75.672197 ], [ -66.269531, -75.715633 ], [ -66.621094, -75.715633 ], [ -66.621094, -75.758940 ], [ -66.972656, -75.758940 ], [ -66.972656, -75.802118 ], [ -67.148438, -75.802118 ], [ -67.148438, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -75.888091 ], [ -67.675781, -75.888091 ], [ -67.675781, -75.930885 ], [ -67.851562, -75.930885 ], [ -67.851562, -75.973553 ], [ -68.203125, -75.973553 ], [ -68.203125, -76.016094 ], [ -68.378906, -76.016094 ], [ -68.378906, -76.058508 ], [ -68.730469, -76.058508 ], [ -68.730469, -76.100796 ], [ -68.906250, -76.100796 ], [ -68.906250, -76.142958 ], [ -69.257812, -76.142958 ], [ -69.257812, -76.184995 ], [ -69.609375, -76.184995 ], [ -69.609375, -76.226907 ], [ -69.785156, -76.226907 ], [ -69.785156, -76.268695 ], [ -69.960938, -76.268695 ], [ -69.960938, -76.351896 ], [ -70.136719, -76.351896 ], [ -70.136719, -76.434604 ], [ -70.312500, -76.434604 ], [ -70.312500, -76.516819 ], [ -70.488281, -76.516819 ], [ -70.488281, -76.598545 ], [ -70.664062, -76.598545 ], [ -70.664062, -76.639226 ], [ -71.367188, -76.639226 ], [ -71.367188, -76.679785 ], [ -73.300781, -76.679785 ], [ -73.300781, -76.639226 ], [ -74.355469, -76.639226 ], [ -74.355469, -76.679785 ], [ -75.058594, -76.679785 ], [ -75.058594, -76.720223 ], [ -77.167969, -76.720223 ], [ -77.167969, -76.920614 ], [ -76.992188, -76.920614 ], [ -76.992188, -77.118032 ], [ -76.816406, -77.118032 ], [ -76.816406, -77.157163 ], [ -76.464844, -77.157163 ], [ -76.464844, -77.196176 ], [ -76.113281, -77.196176 ], [ -76.113281, -77.235074 ], [ -75.761719, -77.235074 ], [ -75.761719, -77.273855 ], [ -75.410156, -77.273855 ], [ -75.410156, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.351070 ], [ -75.058594, -77.351070 ], [ -75.058594, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.466028 ], [ -74.707031, -77.466028 ], [ -74.707031, -77.504119 ], [ -74.531250, -77.504119 ], [ -74.531250, -77.542096 ], [ -74.355469, -77.542096 ], [ -74.355469, -77.617709 ], [ -74.179688, -77.617709 ], [ -74.179688, -77.692870 ], [ -74.003906, -77.692870 ], [ -74.003906, -77.804771 ], [ -73.828125, -77.804771 ], [ -73.828125, -77.878814 ], [ -73.652344, -77.878814 ], [ -73.652344, -77.952414 ], [ -73.828125, -77.952414 ], [ -73.828125, -77.989049 ], [ -74.003906, -77.989049 ], [ -74.003906, -78.061989 ], [ -74.179688, -78.061989 ], [ -74.179688, -78.098296 ], [ -74.355469, -78.098296 ], [ -74.355469, -78.134493 ], [ -74.531250, -78.134493 ], [ -74.531250, -78.206563 ], [ -75.234375, -78.206563 ], [ -75.234375, -78.170582 ], [ -76.113281, -78.170582 ], [ -76.113281, -78.134493 ], [ -76.464844, -78.134493 ], [ -76.464844, -78.170582 ], [ -76.640625, -78.170582 ], [ -76.640625, -78.206563 ], [ -76.816406, -78.206563 ], [ -76.816406, -78.242436 ], [ -76.992188, -78.242436 ], [ -76.992188, -78.278201 ], [ -77.343750, -78.278201 ], [ -77.343750, -78.313860 ], [ -77.519531, -78.313860 ], [ -77.519531, -78.349411 ], [ -77.695312, -78.349411 ], [ -77.695312, -78.384855 ], [ -77.871094, -78.384855 ], [ -77.871094, -78.595299 ], [ -78.046875, -78.595299 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.378215 ], [ -90.351562, -73.378215 ], [ -90.351562, -73.327858 ], [ -90.175781, -73.327858 ], [ -90.175781, -73.277353 ], [ -90.000000, -73.277353 ], [ -90.000000, -73.124945 ], [ -89.824219, -73.124945 ], [ -89.824219, -72.971189 ], [ -89.648438, -72.971189 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ], [ -89.121094, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.816074 ], [ -88.769531, -72.816074 ], [ -88.769531, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -73.073844 ], [ -87.890625, -73.073844 ], [ -87.890625, -73.124945 ], [ -87.539062, -73.124945 ], [ -87.539062, -73.175897 ], [ -86.835938, -73.175897 ], [ -86.835938, -73.124945 ], [ -86.132812, -73.124945 ], [ -86.132812, -73.073844 ], [ -85.957031, -73.073844 ], [ -85.957031, -73.124945 ], [ -85.781250, -73.124945 ], [ -85.781250, -73.226700 ], [ -85.605469, -73.226700 ], [ -85.605469, -73.327858 ], [ -85.429688, -73.327858 ], [ -85.429688, -73.428424 ], [ -85.253906, -73.428424 ], [ -85.253906, -73.478485 ], [ -84.726562, -73.478485 ], [ -84.726562, -73.528399 ], [ -83.671875, -73.528399 ], [ -83.671875, -73.578167 ], [ -82.968750, -73.578167 ], [ -82.968750, -73.627789 ], [ -82.617188, -73.627789 ], [ -82.617188, -73.677264 ], [ -82.265625, -73.677264 ], [ -82.265625, -73.726595 ], [ -82.089844, -73.726595 ], [ -82.089844, -73.775780 ], [ -81.914062, -73.775780 ], [ -81.914062, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.873717 ], [ -81.386719, -73.873717 ], [ -81.386719, -73.824820 ], [ -81.210938, -73.824820 ], [ -81.210938, -73.726595 ], [ -81.035156, -73.726595 ], [ -81.035156, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.528399 ], [ -80.683594, -73.528399 ], [ -80.683594, -73.428424 ], [ -80.507812, -73.428424 ], [ -80.507812, -73.226700 ], [ -80.332031, -73.226700 ], [ -80.332031, -73.175897 ], [ -80.156250, -73.175897 ], [ -80.156250, -73.226700 ], [ -79.980469, -73.226700 ], [ -79.980469, -73.327858 ], [ -79.804688, -73.327858 ], [ -79.804688, -73.378215 ], [ -79.628906, -73.378215 ], [ -79.628906, -73.428424 ], [ -79.453125, -73.428424 ], [ -79.453125, -73.528399 ], [ -78.750000, -73.528399 ], [ -78.750000, -73.478485 ], [ -78.046875, -73.478485 ], [ -78.046875, -73.428424 ], [ -77.871094, -73.428424 ], [ -77.871094, -73.478485 ], [ -77.695312, -73.478485 ], [ -77.695312, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.578167 ], [ -77.167969, -73.578167 ], [ -77.167969, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.677264 ], [ -76.816406, -73.677264 ], [ -76.816406, -73.775780 ], [ -76.640625, -73.775780 ], [ -76.640625, -73.873717 ], [ -76.464844, -73.873717 ], [ -76.464844, -73.971078 ], [ -75.761719, -73.971078 ], [ -75.761719, -73.922469 ], [ -75.058594, -73.922469 ], [ -75.058594, -73.873717 ], [ -74.707031, -73.873717 ], [ -74.707031, -73.824820 ], [ -74.355469, -73.824820 ], [ -74.355469, -73.775780 ], [ -74.179688, -73.775780 ], [ -74.179688, -73.726595 ], [ -73.828125, -73.726595 ], [ -73.828125, -73.677264 ], [ -73.652344, -73.677264 ], [ -73.652344, -73.627789 ], [ -73.476562, -73.627789 ], [ -73.476562, -73.578167 ], [ -73.300781, -73.578167 ], [ -73.300781, -73.528399 ], [ -73.125000, -73.528399 ], [ -73.125000, -73.478485 ], [ -72.949219, -73.478485 ], [ -72.949219, -73.428424 ], [ -72.773438, -73.428424 ], [ -72.773438, -73.378215 ], [ -72.421875, -73.378215 ], [ -72.421875, -73.327858 ], [ -71.718750, -73.327858 ], [ -71.718750, -73.277353 ], [ -71.191406, -73.277353 ], [ -71.191406, -73.226700 ], [ -70.664062, -73.226700 ], [ -70.664062, -73.175897 ], [ -70.312500, -73.175897 ], [ -70.312500, -73.124945 ], [ -69.785156, -73.124945 ], [ -69.785156, -73.073844 ], [ -69.082031, -73.073844 ], [ -69.082031, -73.022592 ], [ -68.730469, -73.022592 ], [ -68.730469, -72.971189 ], [ -68.554688, -72.971189 ], [ -68.554688, -72.919635 ], [ -68.203125, -72.919635 ], [ -68.203125, -72.867930 ], [ -68.027344, -72.867930 ], [ -68.027344, -72.816074 ], [ -67.851562, -72.816074 ], [ -67.851562, -72.711903 ], [ -67.675781, -72.711903 ], [ -67.675781, -72.659588 ], [ -67.500000, -72.659588 ], [ -67.500000, -72.554498 ], [ -67.324219, -72.554498 ], [ -67.324219, -72.289067 ], [ -67.148438, -72.289067 ], [ -67.148438, -71.856229 ], [ -67.324219, -71.856229 ], [ -67.324219, -71.469124 ], [ -67.500000, -71.469124 ], [ -67.500000, -71.187754 ], [ -67.675781, -71.187754 ], [ -67.675781, -70.959697 ], [ -67.851562, -70.959697 ], [ -67.851562, -70.786910 ], [ -68.027344, -70.786910 ], [ -68.027344, -70.554179 ], [ -68.203125, -70.554179 ], [ -68.203125, -70.377854 ], [ -68.378906, -70.377854 ], [ -68.378906, -70.199994 ], [ -68.554688, -70.199994 ], [ -68.554688, -69.534518 ], [ -68.378906, -69.534518 ], [ -68.378906, -69.287257 ], [ -68.203125, -69.287257 ], [ -68.203125, -69.099940 ], [ -68.027344, -69.099940 ], [ -68.027344, -68.911005 ], [ -67.851562, -68.911005 ], [ -67.851562, -68.784144 ], [ -67.675781, -68.784144 ], [ -67.675781, -68.656555 ], [ -67.500000, -68.656555 ], [ -67.500000, -67.941650 ], [ -67.675781, -67.941650 ], [ -67.675781, -67.272043 ], [ -67.500000, -67.272043 ], [ -67.500000, -66.998844 ], [ -67.324219, -66.998844 ], [ -67.324219, -66.861082 ], [ -67.148438, -66.861082 ], [ -67.148438, -66.791909 ], [ -66.972656, -66.791909 ], [ -66.972656, -66.722541 ], [ -66.796875, -66.722541 ], [ -66.796875, -66.652977 ], [ -66.621094, -66.652977 ], [ -66.621094, -66.583217 ], [ -66.445312, -66.583217 ], [ -66.445312, -66.443107 ], [ -66.269531, -66.443107 ], [ -66.269531, -66.302205 ], [ -66.093750, -66.302205 ], [ -66.093750, -66.231457 ], [ -65.917969, -66.231457 ], [ -65.917969, -66.160511 ], [ -62.050781, -66.160511 ] ] ], [ [ [ -70.136719, -68.911005 ], [ -70.136719, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.162558 ], [ -69.785156, -69.162558 ], [ -69.785156, -69.349339 ], [ -69.609375, -69.349339 ], [ -69.609375, -69.534518 ], [ -69.433594, -69.534518 ], [ -69.433594, -69.718107 ], [ -69.257812, -69.718107 ], [ -69.257812, -69.960439 ], [ -69.082031, -69.960439 ], [ -69.082031, -70.199994 ], [ -68.906250, -70.199994 ], [ -68.906250, -70.436799 ], [ -68.730469, -70.436799 ], [ -68.730469, -70.612614 ], [ -68.554688, -70.612614 ], [ -68.554688, -70.844673 ], [ -68.378906, -70.844673 ], [ -68.378906, -71.635993 ], [ -68.554688, -71.635993 ], [ -68.554688, -72.019729 ], [ -68.730469, -72.019729 ], [ -68.730469, -72.181804 ], [ -68.906250, -72.181804 ], [ -68.906250, -72.235514 ], [ -69.609375, -72.235514 ], [ -69.609375, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.342464 ], [ -70.312500, -72.342464 ], [ -70.312500, -72.395706 ], [ -70.488281, -72.395706 ], [ -70.488281, -72.448792 ], [ -70.839844, -72.448792 ], [ -70.839844, -72.501722 ], [ -72.421875, -72.501722 ], [ -72.421875, -72.448792 ], [ -72.246094, -72.448792 ], [ -72.246094, -72.289067 ], [ -72.070312, -72.289067 ], [ -72.070312, -72.181804 ], [ -71.894531, -72.181804 ], [ -71.894531, -72.073911 ], [ -72.070312, -72.073911 ], [ -72.070312, -72.127936 ], [ -72.421875, -72.127936 ], [ -72.421875, -72.181804 ], [ -72.773438, -72.181804 ], [ -72.773438, -72.235514 ], [ -73.300781, -72.235514 ], [ -73.300781, -72.289067 ], [ -73.828125, -72.289067 ], [ -73.828125, -72.342464 ], [ -74.355469, -72.342464 ], [ -74.355469, -72.289067 ], [ -74.531250, -72.289067 ], [ -74.531250, -72.181804 ], [ -74.707031, -72.181804 ], [ -74.707031, -72.127936 ], [ -74.882812, -72.127936 ], [ -74.882812, -71.856229 ], [ -75.058594, -71.856229 ], [ -75.058594, -71.635993 ], [ -74.882812, -71.635993 ], [ -74.882812, -71.580532 ], [ -74.707031, -71.580532 ], [ -74.707031, -71.524909 ], [ -74.531250, -71.524909 ], [ -74.531250, -71.469124 ], [ -74.355469, -71.469124 ], [ -74.355469, -71.413177 ], [ -74.179688, -71.413177 ], [ -74.179688, -71.357067 ], [ -74.003906, -71.357067 ], [ -74.003906, -71.300793 ], [ -73.828125, -71.300793 ], [ -73.828125, -71.244356 ], [ -73.652344, -71.244356 ], [ -73.652344, -71.187754 ], [ -73.300781, -71.187754 ], [ -73.300781, -71.130988 ], [ -72.773438, -71.130988 ], [ -72.773438, -71.187754 ], [ -72.070312, -71.187754 ], [ -72.070312, -71.074056 ], [ -71.894531, -71.074056 ], [ -71.894531, -70.844673 ], [ -71.718750, -70.844673 ], [ -71.718750, -69.472969 ], [ -71.542969, -69.472969 ], [ -71.542969, -69.287257 ], [ -71.367188, -69.287257 ], [ -71.367188, -69.162558 ], [ -71.191406, -69.162558 ], [ -71.191406, -69.037142 ], [ -71.015625, -69.037142 ], [ -71.015625, -68.974164 ], [ -70.664062, -68.974164 ], [ -70.664062, -68.911005 ], [ -70.136719, -68.911005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.406250, -77.841848 ], [ -46.406250, -77.878814 ], [ -46.230469, -77.878814 ], [ -46.230469, -77.915669 ], [ -45.878906, -77.915669 ], [ -45.878906, -77.952414 ], [ -45.703125, -77.952414 ], [ -45.703125, -77.989049 ], [ -45.351562, -77.989049 ], [ -45.351562, -78.025574 ], [ -45.175781, -78.025574 ], [ -45.175781, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.134493 ], [ -44.824219, -78.134493 ], [ -44.824219, -78.206563 ], [ -44.648438, -78.206563 ], [ -44.648438, -78.242436 ], [ -44.472656, -78.242436 ], [ -44.472656, -78.313860 ], [ -44.296875, -78.313860 ], [ -44.296875, -78.384855 ], [ -44.121094, -78.384855 ], [ -44.121094, -79.335219 ], [ -50.625000, -79.335219 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.004962 ], [ -50.097656, -79.004962 ], [ -50.097656, -78.870048 ], [ -49.921875, -78.870048 ], [ -49.921875, -78.767792 ], [ -49.746094, -78.767792 ], [ -49.746094, -78.630006 ], [ -49.570312, -78.630006 ], [ -49.570312, -78.525573 ], [ -49.394531, -78.525573 ], [ -49.394531, -78.420193 ], [ -49.218750, -78.420193 ], [ -49.218750, -78.313860 ], [ -49.042969, -78.313860 ], [ -49.042969, -78.206563 ], [ -48.867188, -78.206563 ], [ -48.867188, -78.098296 ], [ -48.691406, -78.098296 ], [ -48.691406, -78.025574 ], [ -47.988281, -78.025574 ], [ -47.988281, -77.989049 ], [ -47.636719, -77.989049 ], [ -47.636719, -77.952414 ], [ -47.460938, -77.952414 ], [ -47.460938, -77.915669 ], [ -47.285156, -77.915669 ], [ -47.285156, -77.878814 ], [ -46.933594, -77.878814 ], [ -46.933594, -77.841848 ], [ -46.406250, -77.841848 ] ] ], [ [ [ -62.226562, -66.160511 ], [ -62.226562, -66.231457 ], [ -62.402344, -66.231457 ], [ -62.402344, -66.302205 ], [ -62.753906, -66.302205 ], [ -62.753906, -66.372755 ], [ -63.281250, -66.372755 ], [ -63.281250, -66.443107 ], [ -63.808594, -66.443107 ], [ -63.808594, -66.513260 ], [ -63.984375, -66.513260 ], [ -63.984375, -66.652977 ], [ -64.160156, -66.652977 ], [ -64.160156, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.861082 ], [ -64.511719, -66.861082 ], [ -64.511719, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.067433 ], [ -64.863281, -67.067433 ], [ -64.863281, -67.135829 ], [ -65.039062, -67.135829 ], [ -65.039062, -67.204032 ], [ -65.214844, -67.204032 ], [ -65.214844, -67.339861 ], [ -65.390625, -67.339861 ], [ -65.390625, -67.474922 ], [ -65.566406, -67.474922 ], [ -65.566406, -67.742759 ], [ -65.742188, -67.742759 ], [ -65.742188, -68.073305 ], [ -65.566406, -68.073305 ], [ -65.566406, -68.269387 ], [ -65.390625, -68.269387 ], [ -65.390625, -68.399180 ], [ -65.214844, -68.399180 ], [ -65.214844, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.656555 ], [ -64.863281, -68.656555 ], [ -64.863281, -68.720441 ], [ -64.687500, -68.720441 ], [ -64.687500, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.847665 ], [ -64.160156, -68.847665 ], [ -64.160156, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -68.974164 ], [ -63.808594, -68.974164 ], [ -63.808594, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.162558 ], [ -63.457031, -69.162558 ], [ -63.457031, -69.224997 ], [ -63.281250, -69.224997 ], [ -63.281250, -69.349339 ], [ -63.105469, -69.349339 ], [ -63.105469, -69.534518 ], [ -62.929688, -69.534518 ], [ -62.929688, -69.718107 ], [ -62.753906, -69.718107 ], [ -62.753906, -69.900118 ], [ -62.578125, -69.900118 ], [ -62.578125, -70.199994 ], [ -62.402344, -70.199994 ], [ -62.402344, -70.436799 ], [ -62.226562, -70.436799 ], [ -62.226562, -70.554179 ], [ -62.050781, -70.554179 ], [ -62.050781, -70.670881 ], [ -61.875000, -70.670881 ], [ -61.875000, -70.786910 ], [ -61.699219, -70.786910 ], [ -61.699219, -71.016960 ], [ -61.523438, -71.016960 ], [ -61.523438, -72.073911 ], [ -61.347656, -72.073911 ], [ -61.347656, -72.289067 ], [ -61.171875, -72.289067 ], [ -61.171875, -72.867930 ], [ -60.996094, -72.867930 ], [ -60.996094, -73.073844 ], [ -60.820312, -73.073844 ], [ -60.820312, -73.428424 ], [ -60.996094, -73.428424 ], [ -60.996094, -73.775780 ], [ -61.171875, -73.775780 ], [ -61.171875, -73.873717 ], [ -61.347656, -73.873717 ], [ -61.347656, -74.019543 ], [ -61.523438, -74.019543 ], [ -61.523438, -74.164085 ], [ -61.699219, -74.164085 ], [ -61.699219, -74.259738 ], [ -61.875000, -74.259738 ], [ -61.875000, -74.354828 ], [ -62.050781, -74.354828 ], [ -62.050781, -74.402163 ], [ -62.226562, -74.402163 ], [ -62.226562, -74.449358 ], [ -62.578125, -74.449358 ], [ -62.578125, -74.496413 ], [ -63.105469, -74.496413 ], [ -63.105469, -74.543330 ], [ -63.457031, -74.543330 ], [ -63.457031, -74.636748 ], [ -63.632812, -74.636748 ], [ -63.632812, -74.821934 ], [ -63.808594, -74.821934 ], [ -63.808594, -74.959392 ], [ -63.984375, -74.959392 ], [ -63.984375, -75.050354 ], [ -64.160156, -75.050354 ], [ -64.160156, -75.140778 ], [ -64.335938, -75.140778 ], [ -64.335938, -75.230667 ], [ -64.511719, -75.230667 ], [ -64.511719, -75.275413 ], [ -64.687500, -75.275413 ], [ -64.687500, -75.320025 ], [ -64.863281, -75.320025 ], [ -64.863281, -75.364506 ], [ -65.039062, -75.364506 ], [ -65.039062, -75.408854 ], [ -65.214844, -75.408854 ], [ -65.214844, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.541113 ], [ -65.566406, -75.541113 ], [ -65.566406, -75.584937 ], [ -65.742188, -75.584937 ], [ -65.742188, -75.628632 ], [ -66.093750, -75.628632 ], [ -66.093750, -75.672197 ], [ -66.445312, -75.672197 ], [ -66.445312, -75.715633 ], [ -66.972656, -75.715633 ], [ -66.972656, -75.758940 ], [ -67.324219, -75.758940 ], [ -67.324219, -75.802118 ], [ -67.675781, -75.802118 ], [ -67.675781, -75.845169 ], [ -67.851562, -75.845169 ], [ -67.851562, -75.888091 ], [ -68.027344, -75.888091 ], [ -68.027344, -75.930885 ], [ -68.378906, -75.930885 ], [ -68.378906, -75.973553 ], [ -68.554688, -75.973553 ], [ -68.554688, -76.016094 ], [ -68.906250, -76.016094 ], [ -68.906250, -76.058508 ], [ -69.082031, -76.058508 ], [ -69.082031, -76.100796 ], [ -69.433594, -76.100796 ], [ -69.433594, -76.142958 ], [ -69.785156, -76.142958 ], [ -69.785156, -76.184995 ], [ -69.960938, -76.184995 ], [ -69.960938, -76.268695 ], [ -70.136719, -76.268695 ], [ -70.136719, -76.351896 ], [ -70.312500, -76.351896 ], [ -70.312500, -76.475773 ], [ -70.488281, -76.475773 ], [ -70.488281, -76.557743 ], [ -70.664062, -76.557743 ], [ -70.664062, -76.598545 ], [ -71.367188, -76.598545 ], [ -71.367188, -76.639226 ], [ -73.300781, -76.639226 ], [ -73.300781, -76.598545 ], [ -74.355469, -76.598545 ], [ -74.355469, -76.639226 ], [ -75.058594, -76.639226 ], [ -75.058594, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.800739 ], [ -77.167969, -76.800739 ], [ -77.167969, -76.999935 ], [ -76.992188, -76.999935 ], [ -76.992188, -77.118032 ], [ -76.640625, -77.118032 ], [ -76.640625, -77.157163 ], [ -76.289062, -77.157163 ], [ -76.289062, -77.196176 ], [ -75.937500, -77.196176 ], [ -75.937500, -77.235074 ], [ -75.585938, -77.235074 ], [ -75.585938, -77.273855 ], [ -75.410156, -77.273855 ], [ -75.410156, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.351070 ], [ -75.058594, -77.351070 ], [ -75.058594, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.466028 ], [ -74.707031, -77.466028 ], [ -74.707031, -77.504119 ], [ -74.531250, -77.504119 ], [ -74.531250, -77.542096 ], [ -74.355469, -77.542096 ], [ -74.355469, -77.617709 ], [ -74.179688, -77.617709 ], [ -74.179688, -77.730282 ], [ -74.003906, -77.730282 ], [ -74.003906, -77.841848 ], [ -73.828125, -77.841848 ], [ -73.828125, -77.915669 ], [ -74.003906, -77.915669 ], [ -74.003906, -77.989049 ], [ -74.179688, -77.989049 ], [ -74.179688, -78.025574 ], [ -74.355469, -78.025574 ], [ -74.355469, -78.098296 ], [ -74.531250, -78.098296 ], [ -74.531250, -78.134493 ], [ -74.707031, -78.134493 ], [ -74.707031, -78.206563 ], [ -75.234375, -78.206563 ], [ -75.234375, -78.170582 ], [ -75.937500, -78.170582 ], [ -75.937500, -78.134493 ], [ -76.464844, -78.134493 ], [ -76.464844, -78.098296 ], [ -76.640625, -78.098296 ], [ -76.640625, -78.134493 ], [ -76.816406, -78.134493 ], [ -76.816406, -78.170582 ], [ -76.992188, -78.170582 ], [ -76.992188, -78.206563 ], [ -77.167969, -78.206563 ], [ -77.167969, -78.242436 ], [ -77.519531, -78.242436 ], [ -77.519531, -78.278201 ], [ -77.695312, -78.278201 ], [ -77.695312, -78.313860 ], [ -77.871094, -78.313860 ], [ -77.871094, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.327858 ], [ -90.351562, -73.327858 ], [ -90.351562, -73.277353 ], [ -90.175781, -73.277353 ], [ -90.175781, -73.226700 ], [ -90.000000, -73.226700 ], [ -90.000000, -73.073844 ], [ -89.824219, -73.073844 ], [ -89.824219, -72.919635 ], [ -89.648438, -72.919635 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ], [ -89.121094, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.816074 ], [ -88.769531, -72.816074 ], [ -88.769531, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -73.073844 ], [ -87.890625, -73.073844 ], [ -87.890625, -73.124945 ], [ -87.539062, -73.124945 ], [ -87.539062, -73.175897 ], [ -87.011719, -73.175897 ], [ -87.011719, -73.124945 ], [ -86.308594, -73.124945 ], [ -86.308594, -73.073844 ], [ -86.132812, -73.073844 ], [ -86.132812, -73.124945 ], [ -85.957031, -73.124945 ], [ -85.957031, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.277353 ], [ -85.605469, -73.277353 ], [ -85.605469, -73.378215 ], [ -85.429688, -73.378215 ], [ -85.429688, -73.478485 ], [ -83.847656, -73.478485 ], [ -83.847656, -73.528399 ], [ -83.496094, -73.528399 ], [ -83.496094, -73.578167 ], [ -83.144531, -73.578167 ], [ -83.144531, -73.627789 ], [ -82.792969, -73.627789 ], [ -82.792969, -73.677264 ], [ -82.441406, -73.677264 ], [ -82.441406, -73.726595 ], [ -82.089844, -73.726595 ], [ -82.089844, -73.775780 ], [ -81.738281, -73.775780 ], [ -81.738281, -73.824820 ], [ -81.386719, -73.824820 ], [ -81.386719, -73.726595 ], [ -81.210938, -73.726595 ], [ -81.210938, -73.627789 ], [ -81.035156, -73.627789 ], [ -81.035156, -73.528399 ], [ -80.859375, -73.528399 ], [ -80.859375, -73.428424 ], [ -80.683594, -73.428424 ], [ -80.683594, -73.327858 ], [ -80.507812, -73.327858 ], [ -80.507812, -73.226700 ], [ -80.332031, -73.226700 ], [ -80.332031, -73.175897 ], [ -80.156250, -73.175897 ], [ -80.156250, -73.277353 ], [ -79.980469, -73.277353 ], [ -79.980469, -73.327858 ], [ -79.804688, -73.327858 ], [ -79.804688, -73.378215 ], [ -79.628906, -73.378215 ], [ -79.628906, -73.478485 ], [ -78.925781, -73.478485 ], [ -78.925781, -73.428424 ], [ -78.222656, -73.428424 ], [ -78.222656, -73.378215 ], [ -78.046875, -73.378215 ], [ -78.046875, -73.428424 ], [ -77.871094, -73.428424 ], [ -77.871094, -73.478485 ], [ -77.695312, -73.478485 ], [ -77.695312, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.578167 ], [ -77.167969, -73.578167 ], [ -77.167969, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.677264 ], [ -76.816406, -73.677264 ], [ -76.816406, -73.775780 ], [ -76.640625, -73.775780 ], [ -76.640625, -73.824820 ], [ -76.464844, -73.824820 ], [ -76.464844, -73.922469 ], [ -75.937500, -73.922469 ], [ -75.937500, -73.873717 ], [ -75.234375, -73.873717 ], [ -75.234375, -73.824820 ], [ -74.882812, -73.824820 ], [ -74.882812, -73.775780 ], [ -74.531250, -73.775780 ], [ -74.531250, -73.726595 ], [ -74.355469, -73.726595 ], [ -74.355469, -73.677264 ], [ -74.003906, -73.677264 ], [ -74.003906, -73.627789 ], [ -73.828125, -73.627789 ], [ -73.828125, -73.578167 ], [ -73.652344, -73.578167 ], [ -73.652344, -73.528399 ], [ -73.300781, -73.528399 ], [ -73.300781, -73.478485 ], [ -73.125000, -73.478485 ], [ -73.125000, -73.428424 ], [ -72.949219, -73.428424 ], [ -72.949219, -73.378215 ], [ -72.597656, -73.378215 ], [ -72.597656, -73.327858 ], [ -72.246094, -73.327858 ], [ -72.246094, -73.277353 ], [ -71.894531, -73.277353 ], [ -71.894531, -73.226700 ], [ -71.191406, -73.226700 ], [ -71.191406, -73.175897 ], [ -70.488281, -73.175897 ], [ -70.488281, -73.124945 ], [ -69.960938, -73.124945 ], [ -69.960938, -73.073844 ], [ -69.609375, -73.073844 ], [ -69.609375, -73.022592 ], [ -69.257812, -73.022592 ], [ -69.257812, -72.971189 ], [ -68.906250, -72.971189 ], [ -68.906250, -72.919635 ], [ -68.554688, -72.919635 ], [ -68.554688, -72.867930 ], [ -68.378906, -72.867930 ], [ -68.378906, -72.816074 ], [ -68.027344, -72.816074 ], [ -68.027344, -72.711903 ], [ -67.851562, -72.711903 ], [ -67.851562, -72.607120 ], [ -67.675781, -72.607120 ], [ -67.675781, -72.501722 ], [ -67.500000, -72.501722 ], [ -67.500000, -72.342464 ], [ -67.324219, -72.342464 ], [ -67.324219, -72.127936 ], [ -67.148438, -72.127936 ], [ -67.148438, -71.856229 ], [ -67.324219, -71.856229 ], [ -67.324219, -71.580532 ], [ -67.500000, -71.580532 ], [ -67.500000, -71.357067 ], [ -67.675781, -71.357067 ], [ -67.675781, -71.187754 ], [ -67.851562, -71.187754 ], [ -67.851562, -70.959697 ], [ -68.027344, -70.959697 ], [ -68.027344, -70.786910 ], [ -68.203125, -70.786910 ], [ -68.203125, -70.554179 ], [ -68.378906, -70.554179 ], [ -68.378906, -70.259452 ], [ -68.554688, -70.259452 ], [ -68.554688, -69.224997 ], [ -68.378906, -69.224997 ], [ -68.378906, -69.099940 ], [ -68.203125, -69.099940 ], [ -68.203125, -68.974164 ], [ -68.027344, -68.974164 ], [ -68.027344, -68.847665 ], [ -67.851562, -68.847665 ], [ -67.851562, -68.656555 ], [ -67.675781, -68.656555 ], [ -67.675781, -68.334376 ], [ -67.500000, -68.334376 ], [ -67.500000, -67.941650 ], [ -67.675781, -67.941650 ], [ -67.675781, -67.474922 ], [ -67.851562, -67.474922 ], [ -67.851562, -67.204032 ], [ -67.675781, -67.204032 ], [ -67.675781, -67.067433 ], [ -67.500000, -67.067433 ], [ -67.500000, -66.930060 ], [ -67.324219, -66.930060 ], [ -67.324219, -66.861082 ], [ -67.148438, -66.861082 ], [ -67.148438, -66.722541 ], [ -66.972656, -66.722541 ], [ -66.972656, -66.652977 ], [ -66.796875, -66.652977 ], [ -66.796875, -66.583217 ], [ -66.621094, -66.583217 ], [ -66.621094, -66.443107 ], [ -66.445312, -66.443107 ], [ -66.445312, -66.372755 ], [ -66.269531, -66.372755 ], [ -66.269531, -66.231457 ], [ -66.093750, -66.231457 ], [ -66.093750, -66.160511 ], [ -62.226562, -66.160511 ] ] ], [ [ [ -70.312500, -68.847665 ], [ -70.312500, -68.911005 ], [ -70.136719, -68.911005 ], [ -70.136719, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.162558 ], [ -69.785156, -69.162558 ], [ -69.785156, -69.411242 ], [ -69.609375, -69.411242 ], [ -69.609375, -69.718107 ], [ -69.433594, -69.718107 ], [ -69.433594, -69.839622 ], [ -69.257812, -69.839622 ], [ -69.257812, -69.960439 ], [ -69.082031, -69.960439 ], [ -69.082031, -70.140364 ], [ -68.906250, -70.140364 ], [ -68.906250, -70.377854 ], [ -68.730469, -70.377854 ], [ -68.730469, -70.728979 ], [ -68.554688, -70.728979 ], [ -68.554688, -71.130988 ], [ -68.378906, -71.130988 ], [ -68.378906, -71.580532 ], [ -68.554688, -71.580532 ], [ -68.554688, -71.856229 ], [ -68.730469, -71.856229 ], [ -68.730469, -72.073911 ], [ -68.906250, -72.073911 ], [ -68.906250, -72.181804 ], [ -69.257812, -72.181804 ], [ -69.257812, -72.235514 ], [ -69.609375, -72.235514 ], [ -69.609375, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.342464 ], [ -70.312500, -72.342464 ], [ -70.312500, -72.395706 ], [ -70.664062, -72.395706 ], [ -70.664062, -72.448792 ], [ -71.015625, -72.448792 ], [ -71.015625, -72.501722 ], [ -71.894531, -72.501722 ], [ -71.894531, -72.448792 ], [ -72.421875, -72.448792 ], [ -72.421875, -72.395706 ], [ -72.246094, -72.395706 ], [ -72.246094, -72.181804 ], [ -72.070312, -72.181804 ], [ -72.070312, -72.073911 ], [ -72.246094, -72.073911 ], [ -72.246094, -72.127936 ], [ -72.773438, -72.127936 ], [ -72.773438, -72.181804 ], [ -73.300781, -72.181804 ], [ -73.300781, -72.235514 ], [ -73.652344, -72.235514 ], [ -73.652344, -72.289067 ], [ -74.003906, -72.289067 ], [ -74.003906, -72.342464 ], [ -74.531250, -72.342464 ], [ -74.531250, -72.235514 ], [ -74.707031, -72.235514 ], [ -74.707031, -72.181804 ], [ -74.882812, -72.181804 ], [ -74.882812, -72.073911 ], [ -75.058594, -72.073911 ], [ -75.058594, -71.635993 ], [ -74.882812, -71.635993 ], [ -74.882812, -71.580532 ], [ -74.707031, -71.580532 ], [ -74.707031, -71.524909 ], [ -74.531250, -71.524909 ], [ -74.531250, -71.413177 ], [ -74.355469, -71.413177 ], [ -74.355469, -71.357067 ], [ -74.179688, -71.357067 ], [ -74.179688, -71.300793 ], [ -74.003906, -71.300793 ], [ -74.003906, -71.244356 ], [ -73.652344, -71.244356 ], [ -73.652344, -71.187754 ], [ -73.300781, -71.187754 ], [ -73.300781, -71.130988 ], [ -72.949219, -71.130988 ], [ -72.949219, -71.187754 ], [ -72.246094, -71.187754 ], [ -72.246094, -71.074056 ], [ -72.070312, -71.074056 ], [ -72.070312, -70.844673 ], [ -71.894531, -70.844673 ], [ -71.894531, -69.411242 ], [ -71.718750, -69.411242 ], [ -71.718750, -69.287257 ], [ -71.542969, -69.287257 ], [ -71.542969, -69.162558 ], [ -71.367188, -69.162558 ], [ -71.367188, -69.037142 ], [ -71.191406, -69.037142 ], [ -71.191406, -68.974164 ], [ -70.839844, -68.974164 ], [ -70.839844, -68.911005 ], [ -70.488281, -68.911005 ], [ -70.488281, -68.847665 ], [ -70.312500, -68.847665 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.015625, -53.852527 ], [ -71.718750, -53.852527 ], [ -71.718750, -53.748711 ], [ -72.070312, -53.748711 ], [ -72.070312, -53.644638 ], [ -72.421875, -53.644638 ], [ -72.421875, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.435719 ], [ -72.949219, -53.435719 ], [ -72.949219, -53.330873 ], [ -73.125000, -53.330873 ], [ -73.125000, -53.120405 ], [ -73.300781, -53.120405 ], [ -73.300781, -53.014783 ], [ -73.476562, -53.014783 ], [ -73.476562, -52.908902 ], [ -73.652344, -52.908902 ], [ -73.652344, -52.802761 ], [ -73.828125, -52.802761 ], [ -73.828125, -52.696361 ], [ -74.179688, -52.696361 ], [ -74.179688, -52.589701 ], [ -74.355469, -52.589701 ], [ -74.355469, -52.482780 ], [ -74.531250, -52.482780 ], [ -74.531250, -52.375599 ], [ -74.882812, -52.375599 ], [ -74.882812, -52.160455 ], [ -75.058594, -52.160455 ], [ -75.058594, -51.835778 ], [ -75.234375, -51.835778 ], [ -75.234375, -51.399206 ], [ -75.058594, -51.399206 ], [ -75.058594, -50.958427 ], [ -75.234375, -50.958427 ], [ -75.234375, -50.625073 ], [ -75.410156, -50.625073 ], [ -75.410156, -49.610710 ], [ -75.585938, -49.610710 ], [ -75.585938, -48.458352 ], [ -75.410156, -48.458352 ], [ -75.410156, -47.989922 ], [ -75.234375, -47.989922 ], [ -75.234375, -47.754098 ], [ -75.058594, -47.754098 ], [ -75.058594, -47.635784 ], [ -74.882812, -47.635784 ], [ -74.882812, -47.517201 ], [ -74.707031, -47.517201 ], [ -74.707031, -47.279229 ], [ -74.531250, -47.279229 ], [ -74.531250, -47.159840 ], [ -74.355469, -47.159840 ], [ -74.355469, -47.040182 ], [ -74.179688, -47.040182 ], [ -74.179688, -46.920255 ], [ -74.707031, -46.920255 ], [ -74.707031, -46.800059 ], [ -75.410156, -46.800059 ], [ -75.410156, -46.437857 ], [ -75.234375, -46.437857 ], [ -75.234375, -46.195042 ], [ -75.058594, -46.195042 ], [ -75.058594, -46.073231 ], [ -74.882812, -46.073231 ], [ -74.882812, -45.828799 ], [ -74.707031, -45.828799 ], [ -74.707031, -45.336702 ], [ -74.531250, -45.336702 ], [ -74.531250, -44.590467 ], [ -74.355469, -44.590467 ], [ -74.355469, -44.213710 ], [ -74.003906, -44.213710 ], [ -74.003906, -44.339565 ], [ -73.652344, -44.339565 ], [ -73.652344, -44.465151 ], [ -73.300781, -44.465151 ], [ -73.300781, -44.213710 ], [ -73.125000, -44.213710 ], [ -73.125000, -43.452919 ], [ -72.949219, -43.452919 ], [ -72.949219, -42.811522 ], [ -72.773438, -42.811522 ], [ -72.773438, -42.423457 ], [ -73.125000, -42.423457 ], [ -73.125000, -42.293564 ], [ -73.476562, -42.293564 ], [ -73.476562, -42.811522 ], [ -73.652344, -42.811522 ], [ -73.652344, -43.325178 ], [ -74.179688, -43.325178 ], [ -74.179688, -43.197167 ], [ -74.355469, -43.197167 ], [ -74.355469, -42.940339 ], [ -74.179688, -42.940339 ], [ -74.179688, -42.163403 ], [ -74.003906, -42.163403 ], [ -74.003906, -41.112469 ], [ -73.828125, -41.112469 ], [ -73.828125, -40.313043 ], [ -71.718750, -40.313043 ], [ -71.718750, -40.580585 ], [ -71.894531, -40.580585 ], [ -71.894531, -41.508577 ], [ -71.718750, -41.508577 ], [ -71.718750, -42.163403 ], [ -71.894531, -42.163403 ], [ -71.894531, -42.293564 ], [ -72.070312, -42.293564 ], [ -72.070312, -42.940339 ], [ -71.894531, -42.940339 ], [ -71.894531, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.834527 ], [ -71.542969, -43.834527 ], [ -71.542969, -44.087585 ], [ -71.718750, -44.087585 ], [ -71.718750, -44.339565 ], [ -71.542969, -44.339565 ], [ -71.542969, -44.465151 ], [ -71.367188, -44.465151 ], [ -71.367188, -44.715514 ], [ -71.191406, -44.715514 ], [ -71.191406, -44.840291 ], [ -71.367188, -44.840291 ], [ -71.367188, -44.964798 ], [ -71.718750, -44.964798 ], [ -71.718750, -45.336702 ], [ -71.542969, -45.336702 ], [ -71.542969, -45.951150 ], [ -71.718750, -45.951150 ], [ -71.718750, -46.679594 ], [ -71.894531, -46.679594 ], [ -71.894531, -47.159840 ], [ -72.070312, -47.159840 ], [ -72.070312, -47.398349 ], [ -72.246094, -47.398349 ], [ -72.246094, -47.635784 ], [ -72.421875, -47.635784 ], [ -72.421875, -47.989922 ], [ -72.246094, -47.989922 ], [ -72.246094, -48.458352 ], [ -72.421875, -48.458352 ], [ -72.421875, -48.806863 ], [ -72.597656, -48.806863 ], [ -72.597656, -49.037868 ], [ -72.949219, -49.037868 ], [ -72.949219, -49.152970 ], [ -73.300781, -49.152970 ], [ -73.300781, -49.267805 ], [ -73.476562, -49.267805 ], [ -73.476562, -49.837982 ], [ -73.300781, -49.837982 ], [ -73.300781, -50.513427 ], [ -73.125000, -50.513427 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -50.625073 ], [ -72.246094, -50.625073 ], [ -72.246094, -51.618017 ], [ -72.070312, -51.618017 ], [ -72.070312, -51.944265 ], [ -71.894531, -51.944265 ], [ -71.894531, -52.052490 ], [ -70.839844, -52.052490 ], [ -70.839844, -52.160455 ], [ -69.082031, -52.160455 ], [ -69.082031, -52.268157 ], [ -69.433594, -52.268157 ], [ -69.433594, -52.375599 ], [ -69.609375, -52.375599 ], [ -69.609375, -52.482780 ], [ -69.785156, -52.482780 ], [ -69.785156, -52.589701 ], [ -69.960938, -52.589701 ], [ -69.960938, -52.696361 ], [ -70.312500, -52.696361 ], [ -70.312500, -52.802761 ], [ -70.664062, -52.802761 ], [ -70.664062, -52.908902 ], [ -70.839844, -52.908902 ], [ -70.839844, -53.435719 ], [ -71.015625, -53.435719 ], [ -71.015625, -53.852527 ] ] ], [ [ [ -74.531250, -52.908902 ], [ -74.179688, -52.908902 ], [ -74.179688, -53.014783 ], [ -73.828125, -53.014783 ], [ -73.828125, -53.120405 ], [ -73.652344, -53.120405 ], [ -73.652344, -53.225768 ], [ -73.476562, -53.225768 ], [ -73.476562, -53.330873 ], [ -73.300781, -53.330873 ], [ -73.300781, -53.435719 ], [ -72.949219, -53.435719 ], [ -72.949219, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.644638 ], [ -72.597656, -53.644638 ], [ -72.597656, -53.748711 ], [ -72.246094, -53.748711 ], [ -72.246094, -53.852527 ], [ -71.894531, -53.852527 ], [ -71.894531, -53.956086 ], [ -71.542969, -53.956086 ], [ -71.542969, -54.059388 ], [ -71.015625, -54.059388 ], [ -71.015625, -53.852527 ], [ -70.839844, -53.852527 ], [ -70.839844, -53.748711 ], [ -70.664062, -53.748711 ], [ -70.664062, -53.540307 ], [ -70.488281, -53.540307 ], [ -70.488281, -53.120405 ], [ -70.312500, -53.120405 ], [ -70.312500, -52.908902 ], [ -70.136719, -52.908902 ], [ -70.136719, -52.802761 ], [ -69.785156, -52.802761 ], [ -69.785156, -52.696361 ], [ -69.609375, -52.696361 ], [ -69.609375, -52.589701 ], [ -69.257812, -52.589701 ], [ -69.257812, -52.482780 ], [ -69.082031, -52.482780 ], [ -69.082031, -52.589701 ], [ -68.554688, -52.589701 ], [ -68.554688, -54.876607 ], [ -66.972656, -54.876607 ], [ -66.972656, -54.977614 ], [ -67.148438, -54.977614 ], [ -67.148438, -55.178868 ], [ -67.324219, -55.178868 ], [ -67.324219, -55.379110 ], [ -67.675781, -55.379110 ], [ -67.675781, -55.478853 ], [ -68.027344, -55.478853 ], [ -68.027344, -55.578345 ], [ -69.082031, -55.578345 ], [ -69.082031, -55.478853 ], [ -69.433594, -55.478853 ], [ -69.433594, -55.379110 ], [ -69.785156, -55.379110 ], [ -69.785156, -55.279115 ], [ -69.960938, -55.279115 ], [ -69.960938, -55.178868 ], [ -70.664062, -55.178868 ], [ -70.664062, -55.078367 ], [ -71.191406, -55.078367 ], [ -71.191406, -54.977614 ], [ -71.367188, -54.977614 ], [ -71.367188, -54.876607 ], [ -71.542969, -54.876607 ], [ -71.542969, -54.775346 ], [ -71.894531, -54.775346 ], [ -71.894531, -54.673831 ], [ -72.070312, -54.673831 ], [ -72.070312, -54.572062 ], [ -72.246094, -54.572062 ], [ -72.246094, -54.470038 ], [ -72.421875, -54.470038 ], [ -72.421875, -54.367759 ], [ -72.597656, -54.367759 ], [ -72.597656, -54.265224 ], [ -72.949219, -54.265224 ], [ -72.949219, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -54.059388 ], [ -73.300781, -54.059388 ], [ -73.300781, -53.956086 ], [ -73.476562, -53.956086 ], [ -73.476562, -53.748711 ], [ -73.652344, -53.748711 ], [ -73.652344, -53.644638 ], [ -73.828125, -53.644638 ], [ -73.828125, -53.540307 ], [ -74.003906, -53.540307 ], [ -74.003906, -53.330873 ], [ -74.179688, -53.330873 ], [ -74.179688, -53.225768 ], [ -74.355469, -53.225768 ], [ -74.355469, -53.120405 ], [ -74.531250, -53.120405 ], [ -74.531250, -52.908902 ] ] ], [ [ [ -74.531250, -52.908902 ], [ -74.707031, -52.908902 ], [ -74.707031, -52.802761 ], [ -74.531250, -52.802761 ], [ -74.531250, -52.908902 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.257812, -52.482780 ], [ -69.257812, -52.589701 ], [ -68.730469, -52.589701 ], [ -68.730469, -54.775346 ], [ -67.500000, -54.775346 ], [ -67.500000, -54.876607 ], [ -66.972656, -54.876607 ], [ -66.972656, -54.977614 ], [ -67.148438, -54.977614 ], [ -67.148438, -55.178868 ], [ -67.324219, -55.178868 ], [ -67.324219, -55.379110 ], [ -67.675781, -55.379110 ], [ -67.675781, -55.478853 ], [ -68.027344, -55.478853 ], [ -68.027344, -55.578345 ], [ -69.082031, -55.578345 ], [ -69.082031, -55.478853 ], [ -69.433594, -55.478853 ], [ -69.433594, -55.379110 ], [ -69.785156, -55.379110 ], [ -69.785156, -55.279115 ], [ -69.960938, -55.279115 ], [ -69.960938, -55.178868 ], [ -70.312500, -55.178868 ], [ -70.312500, -55.078367 ], [ -70.839844, -55.078367 ], [ -70.839844, -54.977614 ], [ -71.191406, -54.977614 ], [ -71.191406, -54.876607 ], [ -71.542969, -54.876607 ], [ -71.542969, -54.775346 ], [ -71.894531, -54.775346 ], [ -71.894531, -54.673831 ], [ -72.070312, -54.673831 ], [ -72.070312, -54.572062 ], [ -72.421875, -54.572062 ], [ -72.421875, -54.470038 ], [ -72.597656, -54.470038 ], [ -72.597656, -54.367759 ], [ -72.773438, -54.367759 ], [ -72.773438, -54.265224 ], [ -72.949219, -54.265224 ], [ -72.949219, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -54.059388 ], [ -73.300781, -54.059388 ], [ -73.300781, -53.956086 ], [ -73.476562, -53.956086 ], [ -73.476562, -53.748711 ], [ -73.652344, -53.748711 ], [ -73.652344, -53.644638 ], [ -73.828125, -53.644638 ], [ -73.828125, -53.540307 ], [ -74.003906, -53.540307 ], [ -74.003906, -53.330873 ], [ -74.179688, -53.330873 ], [ -74.179688, -53.225768 ], [ -74.355469, -53.225768 ], [ -74.355469, -53.120405 ], [ -74.531250, -53.120405 ], [ -74.531250, -52.908902 ], [ -74.355469, -52.908902 ], [ -74.355469, -53.014783 ], [ -74.003906, -53.014783 ], [ -74.003906, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -53.225768 ], [ -73.476562, -53.225768 ], [ -73.476562, -53.330873 ], [ -73.300781, -53.330873 ], [ -73.300781, -53.435719 ], [ -73.125000, -53.435719 ], [ -73.125000, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.644638 ], [ -72.597656, -53.644638 ], [ -72.597656, -53.748711 ], [ -72.246094, -53.748711 ], [ -72.246094, -53.852527 ], [ -71.894531, -53.852527 ], [ -71.894531, -53.956086 ], [ -71.542969, -53.956086 ], [ -71.542969, -54.059388 ], [ -71.015625, -54.059388 ], [ -71.015625, -53.852527 ], [ -70.839844, -53.852527 ], [ -70.839844, -53.644638 ], [ -70.664062, -53.644638 ], [ -70.664062, -53.435719 ], [ -70.488281, -53.435719 ], [ -70.488281, -53.120405 ], [ -70.312500, -53.120405 ], [ -70.312500, -52.908902 ], [ -70.136719, -52.908902 ], [ -70.136719, -52.802761 ], [ -69.960938, -52.802761 ], [ -69.960938, -52.696361 ], [ -69.609375, -52.696361 ], [ -69.609375, -52.589701 ], [ -69.433594, -52.589701 ], [ -69.433594, -52.482780 ], [ -69.257812, -52.482780 ] ] ], [ [ [ -71.894531, -40.313043 ], [ -71.894531, -40.580585 ], [ -72.070312, -40.580585 ], [ -72.070312, -41.376809 ], [ -71.894531, -41.376809 ], [ -71.894531, -42.163403 ], [ -72.246094, -42.163403 ], [ -72.246094, -42.811522 ], [ -72.070312, -42.811522 ], [ -72.070312, -43.452919 ], [ -71.894531, -43.452919 ], [ -71.894531, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.707594 ], [ -71.542969, -43.707594 ], [ -71.542969, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -44.087585 ], [ -71.894531, -44.087585 ], [ -71.894531, -44.213710 ], [ -71.542969, -44.213710 ], [ -71.542969, -44.339565 ], [ -71.367188, -44.339565 ], [ -71.367188, -44.840291 ], [ -71.542969, -44.840291 ], [ -71.542969, -44.964798 ], [ -71.718750, -44.964798 ], [ -71.718750, -45.828799 ], [ -71.894531, -45.828799 ], [ -71.894531, -46.558860 ], [ -72.070312, -46.558860 ], [ -72.070312, -47.040182 ], [ -72.246094, -47.040182 ], [ -72.246094, -47.279229 ], [ -72.421875, -47.279229 ], [ -72.421875, -47.517201 ], [ -72.597656, -47.517201 ], [ -72.597656, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -48.458352 ], [ -72.597656, -48.458352 ], [ -72.597656, -48.690960 ], [ -72.773438, -48.690960 ], [ -72.773438, -48.922499 ], [ -72.949219, -48.922499 ], [ -72.949219, -49.037868 ], [ -73.125000, -49.037868 ], [ -73.125000, -49.152970 ], [ -73.300781, -49.152970 ], [ -73.300781, -49.267805 ], [ -73.476562, -49.267805 ], [ -73.476562, -50.401515 ], [ -73.300781, -50.401515 ], [ -73.300781, -50.625073 ], [ -73.125000, -50.625073 ], [ -73.125000, -50.736455 ], [ -72.597656, -50.736455 ], [ -72.597656, -50.625073 ], [ -72.421875, -50.625073 ], [ -72.421875, -51.618017 ], [ -72.246094, -51.618017 ], [ -72.246094, -51.835778 ], [ -72.070312, -51.835778 ], [ -72.070312, -51.944265 ], [ -71.015625, -51.944265 ], [ -71.015625, -52.052490 ], [ -69.433594, -52.052490 ], [ -69.433594, -52.160455 ], [ -69.082031, -52.160455 ], [ -69.082031, -52.268157 ], [ -69.609375, -52.268157 ], [ -69.609375, -52.375599 ], [ -69.785156, -52.375599 ], [ -69.785156, -52.482780 ], [ -69.960938, -52.482780 ], [ -69.960938, -52.589701 ], [ -70.312500, -52.589701 ], [ -70.312500, -52.696361 ], [ -70.664062, -52.696361 ], [ -70.664062, -52.802761 ], [ -71.015625, -52.802761 ], [ -71.015625, -53.748711 ], [ -71.191406, -53.748711 ], [ -71.191406, -53.852527 ], [ -71.718750, -53.852527 ], [ -71.718750, -53.748711 ], [ -72.070312, -53.748711 ], [ -72.070312, -53.644638 ], [ -72.246094, -53.644638 ], [ -72.246094, -53.540307 ], [ -72.597656, -53.540307 ], [ -72.597656, -53.435719 ], [ -72.773438, -53.435719 ], [ -72.773438, -53.330873 ], [ -72.949219, -53.330873 ], [ -72.949219, -53.225768 ], [ -73.125000, -53.225768 ], [ -73.125000, -53.120405 ], [ -73.476562, -53.120405 ], [ -73.476562, -53.014783 ], [ -73.652344, -53.014783 ], [ -73.652344, -52.908902 ], [ -73.828125, -52.908902 ], [ -73.828125, -52.802761 ], [ -74.003906, -52.802761 ], [ -74.003906, -52.696361 ], [ -74.179688, -52.696361 ], [ -74.179688, -52.589701 ], [ -74.355469, -52.589701 ], [ -74.355469, -52.482780 ], [ -74.707031, -52.482780 ], [ -74.707031, -52.375599 ], [ -74.882812, -52.375599 ], [ -74.882812, -52.268157 ], [ -75.058594, -52.268157 ], [ -75.058594, -52.052490 ], [ -75.234375, -52.052490 ], [ -75.234375, -51.835778 ], [ -75.410156, -51.835778 ], [ -75.410156, -51.508742 ], [ -75.234375, -51.508742 ], [ -75.234375, -51.179343 ], [ -75.058594, -51.179343 ], [ -75.058594, -50.847573 ], [ -75.234375, -50.847573 ], [ -75.234375, -50.625073 ], [ -75.410156, -50.625073 ], [ -75.410156, -50.401515 ], [ -75.585938, -50.401515 ], [ -75.585938, -49.496675 ], [ -75.761719, -49.496675 ], [ -75.761719, -48.458352 ], [ -75.585938, -48.458352 ], [ -75.585938, -48.107431 ], [ -75.410156, -48.107431 ], [ -75.410156, -47.872144 ], [ -75.234375, -47.872144 ], [ -75.234375, -47.635784 ], [ -75.058594, -47.635784 ], [ -75.058594, -47.517201 ], [ -74.882812, -47.517201 ], [ -74.882812, -47.398349 ], [ -74.707031, -47.398349 ], [ -74.707031, -47.279229 ], [ -74.531250, -47.279229 ], [ -74.531250, -47.159840 ], [ -74.355469, -47.159840 ], [ -74.355469, -47.040182 ], [ -74.179688, -47.040182 ], [ -74.179688, -46.920255 ], [ -74.531250, -46.920255 ], [ -74.531250, -46.800059 ], [ -75.058594, -46.800059 ], [ -75.058594, -46.679594 ], [ -75.585938, -46.679594 ], [ -75.585938, -46.437857 ], [ -75.410156, -46.437857 ], [ -75.410156, -46.316584 ], [ -75.234375, -46.316584 ], [ -75.234375, -46.073231 ], [ -75.058594, -46.073231 ], [ -75.058594, -45.951150 ], [ -74.882812, -45.951150 ], [ -74.882812, -45.828799 ], [ -74.707031, -45.828799 ], [ -74.707031, -45.336702 ], [ -74.531250, -45.336702 ], [ -74.531250, -44.590467 ], [ -74.355469, -44.590467 ], [ -74.355469, -44.087585 ], [ -74.179688, -44.087585 ], [ -74.179688, -44.213710 ], [ -73.652344, -44.213710 ], [ -73.652344, -44.339565 ], [ -73.300781, -44.339565 ], [ -73.300781, -44.087585 ], [ -73.125000, -44.087585 ], [ -73.125000, -43.325178 ], [ -72.949219, -43.325178 ], [ -72.949219, -42.682435 ], [ -72.773438, -42.682435 ], [ -72.773438, -42.293564 ], [ -73.125000, -42.293564 ], [ -73.125000, -42.163403 ], [ -73.476562, -42.163403 ], [ -73.476562, -42.423457 ], [ -73.652344, -42.423457 ], [ -73.652344, -43.068888 ], [ -73.828125, -43.068888 ], [ -73.828125, -43.325178 ], [ -74.179688, -43.325178 ], [ -74.179688, -43.197167 ], [ -74.355469, -43.197167 ], [ -74.355469, -42.553080 ], [ -74.179688, -42.553080 ], [ -74.179688, -41.508577 ], [ -74.003906, -41.508577 ], [ -74.003906, -40.713956 ], [ -73.828125, -40.713956 ], [ -73.828125, -40.313043 ], [ -71.894531, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.378906, -52.802761 ], [ -68.378906, -53.014783 ], [ -68.203125, -53.014783 ], [ -68.203125, -53.330873 ], [ -68.027344, -53.330873 ], [ -68.027344, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.748711 ], [ -67.675781, -53.748711 ], [ -67.675781, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.059388 ], [ -67.324219, -54.059388 ], [ -67.324219, -54.162434 ], [ -66.972656, -54.162434 ], [ -66.972656, -54.265224 ], [ -66.796875, -54.265224 ], [ -66.796875, -54.367759 ], [ -66.621094, -54.367759 ], [ -66.621094, -54.470038 ], [ -66.269531, -54.470038 ], [ -66.269531, -54.572062 ], [ -65.566406, -54.572062 ], [ -65.566406, -54.673831 ], [ -65.039062, -54.673831 ], [ -65.039062, -54.775346 ], [ -65.214844, -54.775346 ], [ -65.214844, -54.977614 ], [ -65.390625, -54.977614 ], [ -65.390625, -55.178868 ], [ -65.917969, -55.178868 ], [ -65.917969, -55.279115 ], [ -66.621094, -55.279115 ], [ -66.621094, -55.078367 ], [ -66.796875, -55.078367 ], [ -66.796875, -54.977614 ], [ -66.972656, -54.977614 ], [ -66.972656, -54.876607 ], [ -68.554688, -54.876607 ], [ -68.554688, -52.802761 ], [ -68.378906, -52.802761 ] ] ], [ [ [ -62.226562, -40.313043 ], [ -62.226562, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -64.687500, -40.847060 ], [ -64.687500, -40.979898 ], [ -64.863281, -40.979898 ], [ -64.863281, -41.112469 ], [ -65.039062, -41.112469 ], [ -65.039062, -42.163403 ], [ -64.863281, -42.163403 ], [ -64.863281, -42.293564 ], [ -64.511719, -42.293564 ], [ -64.511719, -42.423457 ], [ -64.160156, -42.423457 ], [ -64.160156, -42.293564 ], [ -63.984375, -42.293564 ], [ -63.984375, -42.163403 ], [ -63.632812, -42.163403 ], [ -63.632812, -42.423457 ], [ -63.457031, -42.423457 ], [ -63.457031, -42.553080 ], [ -63.632812, -42.553080 ], [ -63.632812, -42.682435 ], [ -63.984375, -42.682435 ], [ -63.984375, -42.811522 ], [ -64.335938, -42.811522 ], [ -64.335938, -42.940339 ], [ -64.511719, -42.940339 ], [ -64.511719, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.197167 ], [ -64.863281, -43.197167 ], [ -64.863281, -43.325178 ], [ -65.039062, -43.325178 ], [ -65.039062, -43.452919 ], [ -65.214844, -43.452919 ], [ -65.214844, -43.961191 ], [ -65.390625, -43.961191 ], [ -65.390625, -44.840291 ], [ -65.566406, -44.840291 ], [ -65.566406, -45.089036 ], [ -66.445312, -45.089036 ], [ -66.445312, -45.213004 ], [ -66.621094, -45.213004 ], [ -66.621094, -45.336702 ], [ -66.972656, -45.336702 ], [ -66.972656, -45.460131 ], [ -67.148438, -45.460131 ], [ -67.148438, -45.583290 ], [ -67.324219, -45.583290 ], [ -67.324219, -45.951150 ], [ -67.500000, -45.951150 ], [ -67.500000, -46.437857 ], [ -67.324219, -46.437857 ], [ -67.324219, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.679594 ], [ -66.972656, -46.679594 ], [ -66.972656, -46.920255 ], [ -66.796875, -46.920255 ], [ -66.796875, -47.040182 ], [ -66.445312, -47.040182 ], [ -66.445312, -47.159840 ], [ -65.917969, -47.159840 ], [ -65.917969, -47.279229 ], [ -65.566406, -47.279229 ], [ -65.566406, -47.517201 ], [ -65.742188, -47.517201 ], [ -65.742188, -47.989922 ], [ -65.917969, -47.989922 ], [ -65.917969, -48.224673 ], [ -66.269531, -48.224673 ], [ -66.269531, -48.341646 ], [ -66.445312, -48.341646 ], [ -66.445312, -48.458352 ], [ -66.621094, -48.458352 ], [ -66.621094, -48.574790 ], [ -66.972656, -48.574790 ], [ -66.972656, -48.690960 ], [ -67.148438, -48.690960 ], [ -67.148438, -48.922499 ], [ -67.324219, -48.922499 ], [ -67.324219, -49.152970 ], [ -67.500000, -49.152970 ], [ -67.500000, -49.496675 ], [ -67.675781, -49.496675 ], [ -67.675781, -49.724479 ], [ -67.851562, -49.724479 ], [ -67.851562, -49.951220 ], [ -68.027344, -49.951220 ], [ -68.027344, -50.064192 ], [ -68.378906, -50.064192 ], [ -68.378906, -50.176898 ], [ -68.554688, -50.176898 ], [ -68.554688, -50.289339 ], [ -68.730469, -50.289339 ], [ -68.730469, -50.401515 ], [ -68.906250, -50.401515 ], [ -68.906250, -50.625073 ], [ -69.082031, -50.625073 ], [ -69.082031, -51.069017 ], [ -68.906250, -51.069017 ], [ -68.906250, -51.508742 ], [ -68.730469, -51.508742 ], [ -68.730469, -51.835778 ], [ -68.554688, -51.835778 ], [ -68.554688, -52.052490 ], [ -68.378906, -52.052490 ], [ -68.378906, -52.268157 ], [ -68.203125, -52.268157 ], [ -68.203125, -52.375599 ], [ -68.554688, -52.375599 ], [ -68.554688, -52.268157 ], [ -69.082031, -52.268157 ], [ -69.082031, -52.160455 ], [ -70.839844, -52.160455 ], [ -70.839844, -52.052490 ], [ -71.894531, -52.052490 ], [ -71.894531, -51.944265 ], [ -72.070312, -51.944265 ], [ -72.070312, -51.618017 ], [ -72.246094, -51.618017 ], [ -72.246094, -50.625073 ], [ -72.421875, -50.625073 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.300781, -50.513427 ], [ -73.300781, -49.837982 ], [ -73.476562, -49.837982 ], [ -73.476562, -49.267805 ], [ -73.300781, -49.267805 ], [ -73.300781, -49.152970 ], [ -72.949219, -49.152970 ], [ -72.949219, -49.037868 ], [ -72.597656, -49.037868 ], [ -72.597656, -48.806863 ], [ -72.421875, -48.806863 ], [ -72.421875, -48.458352 ], [ -72.246094, -48.458352 ], [ -72.246094, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -47.635784 ], [ -72.246094, -47.635784 ], [ -72.246094, -47.398349 ], [ -72.070312, -47.398349 ], [ -72.070312, -47.159840 ], [ -71.894531, -47.159840 ], [ -71.894531, -46.679594 ], [ -71.718750, -46.679594 ], [ -71.718750, -45.951150 ], [ -71.542969, -45.951150 ], [ -71.542969, -45.336702 ], [ -71.718750, -45.336702 ], [ -71.718750, -44.964798 ], [ -71.367188, -44.964798 ], [ -71.367188, -44.840291 ], [ -71.191406, -44.840291 ], [ -71.191406, -44.715514 ], [ -71.367188, -44.715514 ], [ -71.367188, -44.465151 ], [ -71.542969, -44.465151 ], [ -71.542969, -44.339565 ], [ -71.718750, -44.339565 ], [ -71.718750, -44.087585 ], [ -71.542969, -44.087585 ], [ -71.542969, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -71.894531, -43.580391 ], [ -71.894531, -42.940339 ], [ -72.070312, -42.940339 ], [ -72.070312, -42.293564 ], [ -71.894531, -42.293564 ], [ -71.894531, -42.163403 ], [ -71.718750, -42.163403 ], [ -71.718750, -41.508577 ], [ -71.894531, -41.508577 ], [ -71.894531, -40.580585 ], [ -71.718750, -40.580585 ], [ -71.718750, -40.313043 ], [ -62.226562, -40.313043 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.554688, -52.696361 ], [ -68.554688, -52.908902 ], [ -68.378906, -52.908902 ], [ -68.378906, -53.225768 ], [ -68.203125, -53.225768 ], [ -68.203125, -53.435719 ], [ -68.027344, -53.435719 ], [ -68.027344, -53.644638 ], [ -67.851562, -53.644638 ], [ -67.851562, -53.852527 ], [ -67.675781, -53.852527 ], [ -67.675781, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.059388 ], [ -67.148438, -54.059388 ], [ -67.148438, -54.162434 ], [ -66.972656, -54.162434 ], [ -66.972656, -54.265224 ], [ -66.796875, -54.265224 ], [ -66.796875, -54.367759 ], [ -66.445312, -54.367759 ], [ -66.445312, -54.470038 ], [ -66.093750, -54.470038 ], [ -66.093750, -54.572062 ], [ -65.566406, -54.572062 ], [ -65.566406, -54.673831 ], [ -65.214844, -54.673831 ], [ -65.214844, -54.876607 ], [ -65.390625, -54.876607 ], [ -65.390625, -55.078367 ], [ -65.566406, -55.078367 ], [ -65.566406, -55.178868 ], [ -66.796875, -55.178868 ], [ -66.796875, -54.977614 ], [ -66.972656, -54.977614 ], [ -66.972656, -54.876607 ], [ -67.500000, -54.876607 ], [ -67.500000, -54.775346 ], [ -68.730469, -54.775346 ], [ -68.730469, -52.696361 ], [ -68.554688, -52.696361 ] ] ], [ [ [ -62.402344, -40.313043 ], [ -62.402344, -40.446947 ], [ -62.226562, -40.446947 ], [ -62.226562, -40.713956 ], [ -62.402344, -40.713956 ], [ -62.402344, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -65.039062, -40.847060 ], [ -65.039062, -40.979898 ], [ -65.214844, -40.979898 ], [ -65.214844, -41.508577 ], [ -65.039062, -41.508577 ], [ -65.039062, -42.163403 ], [ -64.687500, -42.163403 ], [ -64.687500, -42.293564 ], [ -64.160156, -42.293564 ], [ -64.160156, -42.163403 ], [ -63.632812, -42.163403 ], [ -63.632812, -42.423457 ], [ -63.457031, -42.423457 ], [ -63.457031, -42.553080 ], [ -63.632812, -42.553080 ], [ -63.632812, -42.682435 ], [ -64.160156, -42.682435 ], [ -64.160156, -42.811522 ], [ -64.511719, -42.811522 ], [ -64.511719, -42.940339 ], [ -64.687500, -42.940339 ], [ -64.687500, -43.068888 ], [ -64.863281, -43.068888 ], [ -64.863281, -43.325178 ], [ -65.039062, -43.325178 ], [ -65.039062, -43.452919 ], [ -65.214844, -43.452919 ], [ -65.214844, -43.961191 ], [ -65.390625, -43.961191 ], [ -65.390625, -44.715514 ], [ -65.566406, -44.715514 ], [ -65.566406, -44.964798 ], [ -66.621094, -44.964798 ], [ -66.621094, -45.089036 ], [ -66.796875, -45.089036 ], [ -66.796875, -45.213004 ], [ -66.972656, -45.213004 ], [ -66.972656, -45.336702 ], [ -67.148438, -45.336702 ], [ -67.148438, -45.460131 ], [ -67.324219, -45.460131 ], [ -67.324219, -45.706179 ], [ -67.500000, -45.706179 ], [ -67.500000, -46.073231 ], [ -67.675781, -46.073231 ], [ -67.675781, -46.316584 ], [ -67.500000, -46.316584 ], [ -67.500000, -46.437857 ], [ -67.324219, -46.437857 ], [ -67.324219, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.679594 ], [ -66.972656, -46.679594 ], [ -66.972656, -46.800059 ], [ -66.796875, -46.800059 ], [ -66.796875, -46.920255 ], [ -66.445312, -46.920255 ], [ -66.445312, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -47.159840 ], [ -65.742188, -47.159840 ], [ -65.742188, -47.398349 ], [ -65.917969, -47.398349 ], [ -65.917969, -47.872144 ], [ -66.093750, -47.872144 ], [ -66.093750, -48.224673 ], [ -66.445312, -48.224673 ], [ -66.445312, -48.341646 ], [ -66.621094, -48.341646 ], [ -66.621094, -48.458352 ], [ -66.796875, -48.458352 ], [ -66.796875, -48.574790 ], [ -67.148438, -48.574790 ], [ -67.148438, -48.690960 ], [ -67.324219, -48.690960 ], [ -67.324219, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -49.267805 ], [ -67.675781, -49.267805 ], [ -67.675781, -49.724479 ], [ -67.851562, -49.724479 ], [ -67.851562, -49.951220 ], [ -68.203125, -49.951220 ], [ -68.203125, -50.064192 ], [ -68.554688, -50.064192 ], [ -68.554688, -50.176898 ], [ -68.730469, -50.176898 ], [ -68.730469, -50.289339 ], [ -68.906250, -50.289339 ], [ -68.906250, -50.401515 ], [ -69.082031, -50.401515 ], [ -69.082031, -50.625073 ], [ -69.257812, -50.625073 ], [ -69.257812, -50.958427 ], [ -69.082031, -50.958427 ], [ -69.082031, -51.508742 ], [ -68.906250, -51.508742 ], [ -68.906250, -51.835778 ], [ -68.730469, -51.835778 ], [ -68.730469, -51.944265 ], [ -68.554688, -51.944265 ], [ -68.554688, -52.160455 ], [ -68.378906, -52.160455 ], [ -68.378906, -52.268157 ], [ -69.082031, -52.268157 ], [ -69.082031, -52.160455 ], [ -69.433594, -52.160455 ], [ -69.433594, -52.052490 ], [ -71.015625, -52.052490 ], [ -71.015625, -51.944265 ], [ -72.070312, -51.944265 ], [ -72.070312, -51.835778 ], [ -72.246094, -51.835778 ], [ -72.246094, -51.618017 ], [ -72.421875, -51.618017 ], [ -72.421875, -50.625073 ], [ -72.597656, -50.625073 ], [ -72.597656, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.625073 ], [ -73.300781, -50.625073 ], [ -73.300781, -50.401515 ], [ -73.476562, -50.401515 ], [ -73.476562, -49.267805 ], [ -73.300781, -49.267805 ], [ -73.300781, -49.152970 ], [ -73.125000, -49.152970 ], [ -73.125000, -49.037868 ], [ -72.949219, -49.037868 ], [ -72.949219, -48.922499 ], [ -72.773438, -48.922499 ], [ -72.773438, -48.690960 ], [ -72.597656, -48.690960 ], [ -72.597656, -48.458352 ], [ -72.421875, -48.458352 ], [ -72.421875, -47.989922 ], [ -72.597656, -47.989922 ], [ -72.597656, -47.517201 ], [ -72.421875, -47.517201 ], [ -72.421875, -47.279229 ], [ -72.246094, -47.279229 ], [ -72.246094, -47.040182 ], [ -72.070312, -47.040182 ], [ -72.070312, -46.558860 ], [ -71.894531, -46.558860 ], [ -71.894531, -45.828799 ], [ -71.718750, -45.828799 ], [ -71.718750, -44.964798 ], [ -71.542969, -44.964798 ], [ -71.542969, -44.840291 ], [ -71.367188, -44.840291 ], [ -71.367188, -44.339565 ], [ -71.542969, -44.339565 ], [ -71.542969, -44.213710 ], [ -71.894531, -44.213710 ], [ -71.894531, -44.087585 ], [ -71.718750, -44.087585 ], [ -71.718750, -43.834527 ], [ -71.542969, -43.834527 ], [ -71.542969, -43.707594 ], [ -71.718750, -43.707594 ], [ -71.718750, -43.580391 ], [ -71.894531, -43.580391 ], [ -71.894531, -43.452919 ], [ -72.070312, -43.452919 ], [ -72.070312, -42.811522 ], [ -72.246094, -42.811522 ], [ -72.246094, -42.163403 ], [ -71.894531, -42.163403 ], [ -71.894531, -41.376809 ], [ -72.070312, -41.376809 ], [ -72.070312, -40.580585 ], [ -71.894531, -40.580585 ], [ -71.894531, -40.313043 ], [ -62.402344, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -51.179343 ], [ -58.359375, -51.289406 ], [ -58.183594, -51.289406 ], [ -58.183594, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.508742 ], [ -57.832031, -51.508742 ], [ -57.832031, -51.727028 ], [ -58.007812, -51.727028 ], [ -58.007812, -51.944265 ], [ -58.183594, -51.944265 ], [ -58.183594, -52.052490 ], [ -58.886719, -52.052490 ], [ -58.886719, -52.160455 ], [ -59.589844, -52.160455 ], [ -59.589844, -51.944265 ], [ -59.941406, -51.944265 ], [ -59.941406, -52.052490 ], [ -60.292969, -52.052490 ], [ -60.292969, -52.160455 ], [ -60.468750, -52.160455 ], [ -60.468750, -52.268157 ], [ -60.820312, -52.268157 ], [ -60.820312, -52.052490 ], [ -60.996094, -52.052490 ], [ -60.996094, -51.944265 ], [ -61.171875, -51.944265 ], [ -61.171875, -51.835778 ], [ -60.996094, -51.835778 ], [ -60.996094, -51.727028 ], [ -60.644531, -51.727028 ], [ -60.644531, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.508742 ], [ -60.292969, -51.508742 ], [ -60.292969, -51.399206 ], [ -59.941406, -51.399206 ], [ -59.941406, -51.289406 ], [ -59.765625, -51.289406 ], [ -59.765625, -51.399206 ], [ -59.414062, -51.399206 ], [ -59.414062, -51.508742 ], [ -58.886719, -51.508742 ], [ -58.886719, -51.289406 ], [ -58.710938, -51.289406 ], [ -58.710938, -51.179343 ], [ -58.359375, -51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.535156, -51.179343 ], [ -58.535156, -51.289406 ], [ -58.183594, -51.289406 ], [ -58.183594, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.508742 ], [ -57.832031, -51.508742 ], [ -57.832031, -51.618017 ], [ -58.007812, -51.618017 ], [ -58.007812, -51.835778 ], [ -58.359375, -51.835778 ], [ -58.359375, -51.944265 ], [ -58.710938, -51.944265 ], [ -58.710938, -52.052490 ], [ -59.062500, -52.052490 ], [ -59.062500, -52.160455 ], [ -59.589844, -52.160455 ], [ -59.589844, -52.052490 ], [ -59.765625, -52.052490 ], [ -59.765625, -51.944265 ], [ -60.117188, -51.944265 ], [ -60.117188, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -52.160455 ], [ -60.644531, -52.160455 ], [ -60.644531, -52.268157 ], [ -60.996094, -52.268157 ], [ -60.996094, -52.052490 ], [ -61.171875, -52.052490 ], [ -61.171875, -51.944265 ], [ -61.347656, -51.944265 ], [ -61.347656, -51.835778 ], [ -61.171875, -51.835778 ], [ -61.171875, -51.727028 ], [ -60.996094, -51.727028 ], [ -60.996094, -51.618017 ], [ -60.820312, -51.618017 ], [ -60.820312, -51.508742 ], [ -60.468750, -51.508742 ], [ -60.468750, -51.399206 ], [ -60.292969, -51.399206 ], [ -60.292969, -51.289406 ], [ -60.117188, -51.289406 ], [ -60.117188, -51.179343 ], [ -59.941406, -51.179343 ], [ -59.941406, -51.289406 ], [ -59.589844, -51.289406 ], [ -59.589844, -51.399206 ], [ -59.062500, -51.399206 ], [ -59.062500, -51.289406 ], [ -58.886719, -51.289406 ], [ -58.886719, -51.179343 ], [ -58.535156, -51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -63.312683 ], [ -57.656250, -63.391522 ], [ -57.480469, -63.391522 ], [ -57.480469, -63.548552 ], [ -57.304688, -63.548552 ], [ -57.304688, -63.626745 ], [ -57.480469, -63.626745 ], [ -57.480469, -63.782486 ], [ -57.656250, -63.782486 ], [ -57.656250, -63.937372 ], [ -57.832031, -63.937372 ], [ -57.832031, -64.014496 ], [ -58.183594, -64.014496 ], [ -58.183594, -64.091408 ], [ -58.359375, -64.091408 ], [ -58.359375, -64.168107 ], [ -58.535156, -64.168107 ], [ -58.535156, -64.244595 ], [ -58.710938, -64.244595 ], [ -58.710938, -64.320872 ], [ -58.886719, -64.320872 ], [ -58.886719, -64.396938 ], [ -59.414062, -64.396938 ], [ -59.414062, -64.320872 ], [ -59.765625, -64.320872 ], [ -59.765625, -64.244595 ], [ -60.117188, -64.244595 ], [ -60.117188, -64.320872 ], [ -60.644531, -64.320872 ], [ -60.644531, -64.396938 ], [ -60.820312, -64.396938 ], [ -60.820312, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.548440 ], [ -61.347656, -64.548440 ], [ -61.347656, -64.623877 ], [ -61.523438, -64.623877 ], [ -61.523438, -64.699105 ], [ -61.875000, -64.699105 ], [ -61.875000, -64.774125 ], [ -62.050781, -64.774125 ], [ -62.050781, -64.848937 ], [ -62.226562, -64.848937 ], [ -62.226562, -64.923542 ], [ -62.402344, -64.923542 ], [ -62.402344, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -65.946472 ], [ -62.402344, -65.946472 ], [ -62.402344, -66.018018 ], [ -62.226562, -66.018018 ], [ -62.226562, -66.160511 ], [ -62.050781, -66.160511 ], [ -62.050781, -66.231457 ], [ -62.226562, -66.231457 ], [ -62.226562, -66.302205 ], [ -62.402344, -66.302205 ], [ -62.402344, -66.372755 ], [ -62.578125, -66.372755 ], [ -62.578125, -66.443107 ], [ -63.105469, -66.443107 ], [ -63.105469, -66.513260 ], [ -63.808594, -66.513260 ], [ -63.808594, -66.583217 ], [ -63.984375, -66.583217 ], [ -63.984375, -66.722541 ], [ -64.160156, -66.722541 ], [ -64.160156, -66.861082 ], [ -66.972656, -66.861082 ], [ -66.972656, -66.722541 ], [ -66.796875, -66.722541 ], [ -66.796875, -66.652977 ], [ -66.621094, -66.652977 ], [ -66.621094, -66.583217 ], [ -66.445312, -66.583217 ], [ -66.445312, -66.443107 ], [ -66.269531, -66.443107 ], [ -66.269531, -66.302205 ], [ -66.093750, -66.302205 ], [ -66.093750, -66.231457 ], [ -65.917969, -66.231457 ], [ -65.917969, -66.160511 ], [ -65.742188, -66.160511 ], [ -65.742188, -66.018018 ], [ -65.566406, -66.018018 ], [ -65.566406, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.874725 ], [ -65.214844, -65.874725 ], [ -65.214844, -65.802776 ], [ -65.039062, -65.802776 ], [ -65.039062, -65.730626 ], [ -64.687500, -65.730626 ], [ -64.687500, -65.658275 ], [ -64.511719, -65.658275 ], [ -64.511719, -65.512963 ], [ -64.335938, -65.512963 ], [ -64.335938, -65.293468 ], [ -64.160156, -65.293468 ], [ -64.160156, -65.146115 ], [ -63.984375, -65.146115 ], [ -63.984375, -65.072130 ], [ -63.808594, -65.072130 ], [ -63.808594, -64.997939 ], [ -63.632812, -64.997939 ], [ -63.632812, -64.923542 ], [ -63.457031, -64.923542 ], [ -63.457031, -64.848937 ], [ -63.281250, -64.848937 ], [ -63.281250, -64.774125 ], [ -63.105469, -64.774125 ], [ -63.105469, -64.699105 ], [ -62.929688, -64.699105 ], [ -62.929688, -64.623877 ], [ -62.402344, -64.623877 ], [ -62.402344, -64.548440 ], [ -61.875000, -64.548440 ], [ -61.875000, -64.472794 ], [ -61.699219, -64.472794 ], [ -61.699219, -64.396938 ], [ -61.523438, -64.396938 ], [ -61.523438, -64.320872 ], [ -61.347656, -64.320872 ], [ -61.347656, -64.244595 ], [ -60.996094, -64.244595 ], [ -60.996094, -64.168107 ], [ -60.644531, -64.168107 ], [ -60.644531, -64.091408 ], [ -60.292969, -64.091408 ], [ -60.292969, -64.014496 ], [ -59.941406, -64.014496 ], [ -59.941406, -63.937372 ], [ -59.765625, -63.937372 ], [ -59.765625, -63.860036 ], [ -59.414062, -63.860036 ], [ -59.414062, -63.782486 ], [ -59.238281, -63.782486 ], [ -59.238281, -63.704722 ], [ -59.062500, -63.704722 ], [ -59.062500, -63.626745 ], [ -58.886719, -63.626745 ], [ -58.886719, -63.548552 ], [ -58.710938, -63.548552 ], [ -58.710938, -63.470145 ], [ -58.535156, -63.470145 ], [ -58.535156, -63.391522 ], [ -58.183594, -63.391522 ], [ -58.183594, -63.312683 ], [ -57.656250, -63.312683 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -63.233627 ], [ -57.832031, -63.312683 ], [ -57.656250, -63.312683 ], [ -57.656250, -63.391522 ], [ -57.480469, -63.391522 ], [ -57.480469, -63.470145 ], [ -57.304688, -63.470145 ], [ -57.304688, -63.548552 ], [ -57.480469, -63.548552 ], [ -57.480469, -63.704722 ], [ -57.656250, -63.704722 ], [ -57.656250, -63.860036 ], [ -58.007812, -63.860036 ], [ -58.007812, -63.937372 ], [ -58.183594, -63.937372 ], [ -58.183594, -64.014496 ], [ -58.535156, -64.014496 ], [ -58.535156, -64.091408 ], [ -58.710938, -64.091408 ], [ -58.710938, -64.168107 ], [ -58.886719, -64.168107 ], [ -58.886719, -64.320872 ], [ -59.414062, -64.320872 ], [ -59.414062, -64.244595 ], [ -59.765625, -64.244595 ], [ -59.765625, -64.168107 ], [ -60.117188, -64.168107 ], [ -60.117188, -64.244595 ], [ -60.644531, -64.244595 ], [ -60.644531, -64.320872 ], [ -60.820312, -64.320872 ], [ -60.820312, -64.396938 ], [ -61.171875, -64.396938 ], [ -61.171875, -64.472794 ], [ -61.347656, -64.472794 ], [ -61.347656, -64.548440 ], [ -61.523438, -64.548440 ], [ -61.523438, -64.623877 ], [ -61.699219, -64.623877 ], [ -61.699219, -64.699105 ], [ -61.875000, -64.699105 ], [ -61.875000, -64.774125 ], [ -62.050781, -64.774125 ], [ -62.050781, -64.848937 ], [ -62.226562, -64.848937 ], [ -62.226562, -64.923542 ], [ -62.402344, -64.923542 ], [ -62.402344, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -65.293468 ], [ -62.753906, -65.293468 ], [ -62.753906, -65.874725 ], [ -62.578125, -65.874725 ], [ -62.578125, -66.018018 ], [ -62.402344, -66.018018 ], [ -62.402344, -66.160511 ], [ -62.226562, -66.160511 ], [ -62.226562, -66.231457 ], [ -62.402344, -66.231457 ], [ -62.402344, -66.302205 ], [ -62.753906, -66.302205 ], [ -62.753906, -66.372755 ], [ -63.281250, -66.372755 ], [ -63.281250, -66.443107 ], [ -63.808594, -66.443107 ], [ -63.808594, -66.513260 ], [ -63.984375, -66.513260 ], [ -63.984375, -66.652977 ], [ -64.160156, -66.652977 ], [ -64.160156, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.861082 ], [ -67.148438, -66.861082 ], [ -67.148438, -66.722541 ], [ -66.972656, -66.722541 ], [ -66.972656, -66.652977 ], [ -66.796875, -66.652977 ], [ -66.796875, -66.583217 ], [ -66.621094, -66.583217 ], [ -66.621094, -66.443107 ], [ -66.445312, -66.443107 ], [ -66.445312, -66.372755 ], [ -66.269531, -66.372755 ], [ -66.269531, -66.231457 ], [ -66.093750, -66.231457 ], [ -66.093750, -66.160511 ], [ -65.917969, -66.160511 ], [ -65.917969, -66.089364 ], [ -65.742188, -66.089364 ], [ -65.742188, -66.018018 ], [ -65.566406, -66.018018 ], [ -65.566406, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.874725 ], [ -65.214844, -65.874725 ], [ -65.214844, -65.802776 ], [ -65.039062, -65.802776 ], [ -65.039062, -65.730626 ], [ -64.863281, -65.730626 ], [ -64.863281, -65.658275 ], [ -64.687500, -65.658275 ], [ -64.687500, -65.512963 ], [ -64.511719, -65.512963 ], [ -64.511719, -65.293468 ], [ -64.335938, -65.293468 ], [ -64.335938, -65.146115 ], [ -64.160156, -65.146115 ], [ -64.160156, -65.072130 ], [ -63.984375, -65.072130 ], [ -63.984375, -64.997939 ], [ -63.808594, -64.997939 ], [ -63.808594, -64.923542 ], [ -63.632812, -64.923542 ], [ -63.632812, -64.848937 ], [ -63.457031, -64.848937 ], [ -63.457031, -64.774125 ], [ -63.281250, -64.774125 ], [ -63.281250, -64.699105 ], [ -63.105469, -64.699105 ], [ -63.105469, -64.623877 ], [ -62.402344, -64.623877 ], [ -62.402344, -64.548440 ], [ -61.875000, -64.548440 ], [ -61.875000, -64.396938 ], [ -61.699219, -64.396938 ], [ -61.699219, -64.320872 ], [ -61.523438, -64.320872 ], [ -61.523438, -64.244595 ], [ -61.347656, -64.244595 ], [ -61.347656, -64.168107 ], [ -60.996094, -64.168107 ], [ -60.996094, -64.091408 ], [ -60.820312, -64.091408 ], [ -60.820312, -64.014496 ], [ -60.292969, -64.014496 ], [ -60.292969, -63.937372 ], [ -59.765625, -63.937372 ], [ -59.765625, -63.860036 ], [ -59.589844, -63.860036 ], [ -59.589844, -63.782486 ], [ -59.414062, -63.782486 ], [ -59.414062, -63.704722 ], [ -59.238281, -63.704722 ], [ -59.238281, -63.626745 ], [ -59.062500, -63.626745 ], [ -59.062500, -63.470145 ], [ -58.886719, -63.470145 ], [ -58.886719, -63.391522 ], [ -58.710938, -63.391522 ], [ -58.710938, -63.312683 ], [ -58.183594, -63.312683 ], [ -58.183594, -63.233627 ], [ -57.832031, -63.233627 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.257812, 0.878872 ], [ -69.257812, 0.527336 ], [ -69.433594, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.527336 ], [ -69.960938, 0.527336 ], [ -69.960938, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.878872 ], [ -69.433594, -0.878872 ], [ -69.433594, -2.108899 ], [ -69.609375, -2.108899 ], [ -69.609375, -2.986927 ], [ -69.785156, -2.986927 ], [ -69.785156, -3.864255 ], [ -69.960938, -3.864255 ], [ -69.960938, -4.214943 ], [ -70.136719, -4.214943 ], [ -70.136719, -3.864255 ], [ -70.312500, -3.864255 ], [ -70.312500, -3.688855 ], [ -70.488281, -3.688855 ], [ -70.488281, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -3.162456 ], [ -70.136719, -3.162456 ], [ -70.136719, -2.986927 ], [ -69.960938, -2.986927 ], [ -69.960938, -2.811371 ], [ -70.136719, -2.811371 ], [ -70.136719, -2.635789 ], [ -70.488281, -2.635789 ], [ -70.488281, -2.460181 ], [ -70.839844, -2.460181 ], [ -70.839844, -2.284551 ], [ -72.070312, -2.284551 ], [ -72.070312, -2.460181 ], [ -72.773438, -2.460181 ], [ -72.773438, -2.284551 ], [ -73.125000, -2.284551 ], [ -73.125000, -2.108899 ], [ -73.300781, -2.108899 ], [ -73.300781, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -1.406109 ], [ -73.652344, -1.406109 ], [ -73.652344, -1.230374 ], [ -74.003906, -1.230374 ], [ -74.003906, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -0.878872 ], [ -74.355469, -0.878872 ], [ -74.355469, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.351560 ], [ -74.882812, -0.351560 ], [ -74.882812, -0.175781 ], [ -75.585938, -0.175781 ], [ -75.585938, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, 0.175781 ], [ -76.113281, 0.175781 ], [ -76.113281, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.175781 ], [ -77.167969, 0.175781 ], [ -77.167969, 0.351560 ], [ -77.519531, 0.351560 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -69.257812, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 0.878872 ], [ -69.785156, 0.703107 ], [ -70.136719, 0.703107 ], [ -70.136719, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.878872 ], [ -69.433594, -0.878872 ], [ -69.433594, -1.230374 ], [ -69.609375, -1.230374 ], [ -69.609375, -2.108899 ], [ -69.785156, -2.108899 ], [ -69.785156, -3.513421 ], [ -69.960938, -3.513421 ], [ -69.960938, -4.214943 ], [ -70.136719, -4.214943 ], [ -70.136719, -4.039618 ], [ -70.312500, -4.039618 ], [ -70.312500, -3.864255 ], [ -70.488281, -3.864255 ], [ -70.488281, -3.688855 ], [ -70.664062, -3.688855 ], [ -70.664062, -3.337954 ], [ -70.488281, -3.337954 ], [ -70.488281, -3.162456 ], [ -70.312500, -3.162456 ], [ -70.312500, -2.811371 ], [ -70.136719, -2.811371 ], [ -70.136719, -2.635789 ], [ -70.312500, -2.635789 ], [ -70.312500, -2.460181 ], [ -70.664062, -2.460181 ], [ -70.664062, -2.284551 ], [ -70.839844, -2.284551 ], [ -70.839844, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.284551 ], [ -71.894531, -2.284551 ], [ -71.894531, -2.108899 ], [ -72.070312, -2.108899 ], [ -72.070312, -2.284551 ], [ -73.300781, -2.284551 ], [ -73.300781, -1.933227 ], [ -73.476562, -1.933227 ], [ -73.476562, -1.757537 ], [ -73.652344, -1.757537 ], [ -73.652344, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.230374 ], [ -74.003906, -1.230374 ], [ -74.003906, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -0.878872 ], [ -74.355469, -0.878872 ], [ -74.355469, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -0.527336 ], [ -74.707031, -0.527336 ], [ -74.707031, -0.351560 ], [ -75.058594, -0.351560 ], [ -75.058594, -0.175781 ], [ -75.234375, -0.175781 ], [ -75.234375, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, 0.175781 ], [ -76.113281, 0.175781 ], [ -76.113281, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.527336 ], [ -77.519531, 0.527336 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -69.785156, 0.878872 ] ] ], [ [ [ -69.257812, 0.878872 ], [ -69.257812, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.878872 ], [ -69.257812, 0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.742188, 0.878872 ], [ -65.742188, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 0.878872 ], [ -65.742188, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.527336 ], [ -77.167969, 0.527336 ], [ -77.167969, 0.351560 ], [ -76.113281, 0.351560 ], [ -76.113281, 0.175781 ], [ -75.761719, 0.175781 ], [ -75.761719, 0.000000 ], [ -75.410156, 0.000000 ], [ -75.410156, -0.527336 ], [ -75.234375, -0.527336 ], [ -75.234375, -1.054628 ], [ -75.410156, -1.054628 ], [ -75.410156, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.581830 ], [ -75.761719, -1.581830 ], [ -75.761719, -1.757537 ], [ -75.937500, -1.757537 ], [ -75.937500, -1.933227 ], [ -76.113281, -1.933227 ], [ -76.113281, -2.108899 ], [ -76.289062, -2.108899 ], [ -76.289062, -2.284551 ], [ -76.464844, -2.284551 ], [ -76.464844, -2.460181 ], [ -76.816406, -2.460181 ], [ -76.816406, -2.635789 ], [ -77.167969, -2.635789 ], [ -77.167969, -2.811371 ], [ -77.519531, -2.811371 ], [ -77.519531, -2.986927 ], [ -77.871094, -2.986927 ], [ -77.871094, -3.162456 ], [ -78.046875, -3.162456 ], [ -78.046875, -3.337954 ], [ -78.222656, -3.337954 ], [ -78.222656, -3.688855 ], [ -78.398438, -3.688855 ], [ -78.398438, -3.864255 ], [ -78.574219, -3.864255 ], [ -78.574219, -4.214943 ], [ -78.750000, -4.214943 ], [ -78.750000, -4.565474 ], [ -78.925781, -4.565474 ], [ -78.925781, -4.740675 ], [ -79.101562, -4.740675 ], [ -79.101562, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -79.628906, -4.565474 ], [ -79.628906, -4.390229 ], [ -79.980469, -4.390229 ], [ -79.980469, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -4.390229 ], [ -80.507812, -4.390229 ], [ -80.507812, -3.864255 ], [ -80.332031, -3.864255 ], [ -80.332031, -3.337954 ], [ -80.156250, -3.337954 ], [ -80.156250, -2.986927 ], [ -79.980469, -2.986927 ], [ -79.980469, -2.811371 ], [ -79.804688, -2.811371 ], [ -79.804688, -2.635789 ], [ -79.980469, -2.635789 ], [ -79.980469, -2.284551 ], [ -80.332031, -2.284551 ], [ -80.332031, -2.635789 ], [ -80.683594, -2.635789 ], [ -80.683594, -2.460181 ], [ -80.859375, -2.460181 ], [ -80.859375, -2.284551 ], [ -81.035156, -2.284551 ], [ -81.035156, -2.108899 ], [ -80.859375, -2.108899 ], [ -80.859375, -1.581830 ], [ -81.035156, -1.581830 ], [ -81.035156, -1.054628 ], [ -80.683594, -1.054628 ], [ -80.683594, -0.527336 ], [ -80.507812, -0.527336 ], [ -80.507812, 0.000000 ], [ -80.332031, 0.000000 ], [ -80.332031, 0.351560 ], [ -80.156250, 0.351560 ], [ -80.156250, 0.878872 ], [ -77.695312, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.175781 ], [ -76.289062, 0.175781 ], [ -76.289062, 0.351560 ], [ -76.113281, 0.351560 ], [ -76.113281, 0.175781 ], [ -75.761719, 0.175781 ], [ -75.761719, 0.000000 ], [ -75.585938, 0.000000 ], [ -75.585938, -0.175781 ], [ -75.410156, -0.175781 ], [ -75.410156, -0.527336 ], [ -75.234375, -0.527336 ], [ -75.234375, -1.054628 ], [ -75.410156, -1.054628 ], [ -75.410156, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.761719, -1.933227 ], [ -75.937500, -1.933227 ], [ -75.937500, -2.108899 ], [ -76.113281, -2.108899 ], [ -76.113281, -2.284551 ], [ -76.289062, -2.284551 ], [ -76.289062, -2.460181 ], [ -76.464844, -2.460181 ], [ -76.464844, -2.635789 ], [ -76.816406, -2.635789 ], [ -76.816406, -2.811371 ], [ -77.519531, -2.811371 ], [ -77.519531, -2.986927 ], [ -77.871094, -2.986927 ], [ -77.871094, -3.162456 ], [ -78.046875, -3.162456 ], [ -78.046875, -3.513421 ], [ -78.222656, -3.513421 ], [ -78.222656, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -4.214943 ], [ -78.574219, -4.214943 ], [ -78.574219, -4.740675 ], [ -78.925781, -4.740675 ], [ -78.925781, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -79.628906, -4.565474 ], [ -79.628906, -4.390229 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.156250, -4.039618 ], [ -80.156250, -3.688855 ], [ -80.332031, -3.688855 ], [ -80.332031, -3.337954 ], [ -80.156250, -3.337954 ], [ -80.156250, -2.986927 ], [ -79.980469, -2.986927 ], [ -79.980469, -2.811371 ], [ -79.804688, -2.811371 ], [ -79.804688, -2.460181 ], [ -80.156250, -2.460181 ], [ -80.156250, -2.635789 ], [ -80.683594, -2.635789 ], [ -80.683594, -2.460181 ], [ -81.035156, -2.460181 ], [ -81.035156, -2.284551 ], [ -80.859375, -2.284551 ], [ -80.859375, -2.108899 ], [ -80.683594, -2.108899 ], [ -80.683594, -1.581830 ], [ -80.859375, -1.581830 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, -0.703107 ], [ -80.332031, -0.703107 ], [ -80.332031, -0.175781 ], [ -80.156250, -0.175781 ], [ -80.156250, 0.175781 ], [ -79.980469, 0.175781 ], [ -79.980469, 0.527336 ], [ -80.156250, 0.527336 ], [ -80.156250, 0.703107 ], [ -79.804688, 0.703107 ], [ -79.804688, 0.878872 ], [ -77.695312, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.234375, 0.000000 ], [ -75.234375, -0.175781 ], [ -75.058594, -0.175781 ], [ -75.058594, -0.351560 ], [ -74.707031, -0.351560 ], [ -74.707031, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.703107 ], [ -74.355469, -0.703107 ], [ -74.355469, -0.878872 ], [ -74.179688, -0.878872 ], [ -74.179688, -1.054628 ], [ -74.003906, -1.054628 ], [ -74.003906, -1.230374 ], [ -73.828125, -1.230374 ], [ -73.828125, -1.406109 ], [ -73.652344, -1.406109 ], [ -73.652344, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -1.933227 ], [ -73.300781, -1.933227 ], [ -73.300781, -2.284551 ], [ -72.070312, -2.284551 ], [ -72.070312, -2.108899 ], [ -71.894531, -2.108899 ], [ -71.894531, -2.284551 ], [ -71.015625, -2.284551 ], [ -71.015625, -2.108899 ], [ -70.839844, -2.108899 ], [ -70.839844, -2.284551 ], [ -70.664062, -2.284551 ], [ -70.664062, -2.460181 ], [ -70.312500, -2.460181 ], [ -70.312500, -2.635789 ], [ -70.136719, -2.635789 ], [ -70.136719, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -3.162456 ], [ -70.488281, -3.162456 ], [ -70.488281, -3.337954 ], [ -70.664062, -3.337954 ], [ -70.664062, -3.688855 ], [ -70.488281, -3.688855 ], [ -70.488281, -3.864255 ], [ -70.312500, -3.864255 ], [ -70.312500, -4.039618 ], [ -70.136719, -4.039618 ], [ -70.136719, -4.214943 ], [ -70.839844, -4.214943 ], [ -70.839844, -4.390229 ], [ -71.367188, -4.390229 ], [ -71.367188, -4.565474 ], [ -71.894531, -4.565474 ], [ -71.894531, -4.740675 ], [ -72.246094, -4.740675 ], [ -72.246094, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -5.090944 ], [ -72.773438, -5.090944 ], [ -72.773438, -5.266008 ], [ -72.949219, -5.266008 ], [ -72.949219, -5.441022 ], [ -73.125000, -5.441022 ], [ -73.125000, -5.790897 ], [ -73.300781, -5.790897 ], [ -73.300781, -6.315299 ], [ -73.125000, -6.315299 ], [ -73.125000, -6.664608 ], [ -73.476562, -6.664608 ], [ -73.476562, -6.839170 ], [ -73.828125, -6.839170 ], [ -73.828125, -7.362467 ], [ -74.003906, -7.362467 ], [ -74.003906, -7.710992 ], [ -73.828125, -7.710992 ], [ -73.828125, -8.233237 ], [ -73.652344, -8.233237 ], [ -73.652344, -8.581021 ], [ -73.476562, -8.581021 ], [ -73.476562, -8.754795 ], [ -73.300781, -8.754795 ], [ -73.300781, -8.928487 ], [ -73.125000, -8.928487 ], [ -73.125000, -9.275622 ], [ -73.300781, -9.275622 ], [ -73.300781, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.597656, -9.622414 ], [ -72.421875, -9.622414 ], [ -72.421875, -9.968851 ], [ -71.191406, -9.968851 ], [ -71.191406, -9.795678 ], [ -70.839844, -9.795678 ], [ -70.839844, -9.622414 ], [ -70.488281, -9.622414 ], [ -70.488281, -10.314919 ], [ -70.664062, -10.314919 ], [ -70.664062, -11.005904 ], [ -69.785156, -11.005904 ], [ -69.785156, -10.833306 ], [ -69.609375, -10.833306 ], [ -69.609375, -11.005904 ], [ -69.433594, -11.005904 ], [ -69.433594, -11.350797 ], [ -69.257812, -11.350797 ], [ -69.257812, -11.695273 ], [ -69.082031, -11.695273 ], [ -69.082031, -12.039321 ], [ -68.906250, -12.039321 ], [ -68.906250, -12.382928 ], [ -68.730469, -12.382928 ], [ -68.730469, -12.726084 ], [ -68.906250, -12.726084 ], [ -68.906250, -13.239945 ], [ -69.082031, -13.239945 ], [ -69.082031, -14.604847 ], [ -69.257812, -14.604847 ], [ -69.257812, -14.944785 ], [ -69.433594, -14.944785 ], [ -69.433594, -15.114553 ], [ -69.257812, -15.114553 ], [ -69.257812, -15.453680 ], [ -69.433594, -15.453680 ], [ -69.433594, -15.961329 ], [ -69.257812, -15.961329 ], [ -69.257812, -16.299051 ], [ -69.082031, -16.299051 ], [ -69.082031, -16.636192 ], [ -69.257812, -16.636192 ], [ -69.257812, -16.972741 ], [ -69.433594, -16.972741 ], [ -69.433594, -17.308688 ], [ -69.609375, -17.308688 ], [ -69.609375, -17.644022 ], [ -69.785156, -17.644022 ], [ -69.785156, -17.978733 ], [ -69.960938, -17.978733 ], [ -69.960938, -18.145852 ], [ -70.312500, -18.145852 ], [ -70.312500, -18.312811 ], [ -70.664062, -18.312811 ], [ -70.664062, -18.145852 ], [ -71.015625, -18.145852 ], [ -71.015625, -17.978733 ], [ -71.191406, -17.978733 ], [ -71.191406, -17.811456 ], [ -71.542969, -17.811456 ], [ -71.542969, -17.308688 ], [ -71.718750, -17.308688 ], [ -71.718750, -17.140790 ], [ -72.070312, -17.140790 ], [ -72.070312, -16.972741 ], [ -72.421875, -16.972741 ], [ -72.421875, -16.804541 ], [ -72.773438, -16.804541 ], [ -72.773438, -16.636192 ], [ -73.125000, -16.636192 ], [ -73.125000, -16.467695 ], [ -73.476562, -16.467695 ], [ -73.476562, -16.299051 ], [ -73.652344, -16.299051 ], [ -73.652344, -16.130262 ], [ -74.003906, -16.130262 ], [ -74.003906, -15.961329 ], [ -74.179688, -15.961329 ], [ -74.179688, -15.792254 ], [ -74.531250, -15.792254 ], [ -74.531250, -15.623037 ], [ -74.882812, -15.623037 ], [ -74.882812, -15.453680 ], [ -75.058594, -15.453680 ], [ -75.058594, -15.284185 ], [ -75.410156, -15.284185 ], [ -75.410156, -15.114553 ], [ -75.585938, -15.114553 ], [ -75.585938, -14.944785 ], [ -75.937500, -14.944785 ], [ -75.937500, -14.774883 ], [ -76.113281, -14.774883 ], [ -76.113281, -14.434680 ], [ -76.289062, -14.434680 ], [ -76.289062, -14.093957 ], [ -76.464844, -14.093957 ], [ -76.464844, -13.581921 ], [ -76.289062, -13.581921 ], [ -76.289062, -13.410994 ], [ -76.464844, -13.410994 ], [ -76.464844, -13.068777 ], [ -76.640625, -13.068777 ], [ -76.640625, -12.897489 ], [ -76.816406, -12.897489 ], [ -76.816406, -12.726084 ], [ -76.992188, -12.726084 ], [ -76.992188, -12.382928 ], [ -77.167969, -12.382928 ], [ -77.167969, -12.211180 ], [ -77.343750, -12.211180 ], [ -77.343750, -11.867351 ], [ -77.519531, -11.867351 ], [ -77.519531, -11.523088 ], [ -77.695312, -11.523088 ], [ -77.695312, -11.178402 ], [ -77.871094, -11.178402 ], [ -77.871094, -10.833306 ], [ -78.046875, -10.833306 ], [ -78.046875, -10.487812 ], [ -78.222656, -10.487812 ], [ -78.222656, -10.141932 ], [ -78.398438, -10.141932 ], [ -78.398438, -9.795678 ], [ -78.574219, -9.795678 ], [ -78.574219, -9.275622 ], [ -78.750000, -9.275622 ], [ -78.750000, -8.928487 ], [ -78.925781, -8.928487 ], [ -78.925781, -8.581021 ], [ -79.101562, -8.581021 ], [ -79.101562, -8.233237 ], [ -79.277344, -8.233237 ], [ -79.277344, -8.059230 ], [ -79.453125, -8.059230 ], [ -79.453125, -7.710992 ], [ -79.628906, -7.710992 ], [ -79.628906, -7.362467 ], [ -79.804688, -7.362467 ], [ -79.804688, -7.188101 ], [ -79.980469, -7.188101 ], [ -79.980469, -7.013668 ], [ -80.156250, -7.013668 ], [ -80.156250, -6.839170 ], [ -80.507812, -6.839170 ], [ -80.507812, -6.664608 ], [ -80.683594, -6.664608 ], [ -80.683594, -6.489983 ], [ -80.859375, -6.489983 ], [ -80.859375, -6.315299 ], [ -81.210938, -6.315299 ], [ -81.210938, -6.140555 ], [ -81.386719, -6.140555 ], [ -81.386719, -5.965754 ], [ -81.210938, -5.965754 ], [ -81.210938, -5.790897 ], [ -81.035156, -5.790897 ], [ -81.035156, -5.441022 ], [ -81.210938, -5.441022 ], [ -81.210938, -5.090944 ], [ -81.386719, -5.090944 ], [ -81.386719, -4.740675 ], [ -81.562500, -4.740675 ], [ -81.562500, -4.390229 ], [ -81.386719, -4.390229 ], [ -81.386719, -4.039618 ], [ -81.210938, -4.039618 ], [ -81.210938, -3.864255 ], [ -81.035156, -3.864255 ], [ -81.035156, -3.688855 ], [ -80.683594, -3.688855 ], [ -80.683594, -3.513421 ], [ -80.332031, -3.513421 ], [ -80.332031, -3.864255 ], [ -80.507812, -3.864255 ], [ -80.507812, -4.390229 ], [ -80.156250, -4.390229 ], [ -80.156250, -4.214943 ], [ -79.980469, -4.214943 ], [ -79.980469, -4.390229 ], [ -79.628906, -4.390229 ], [ -79.628906, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -79.101562, -4.915833 ], [ -79.101562, -4.740675 ], [ -78.925781, -4.740675 ], [ -78.925781, -4.565474 ], [ -78.750000, -4.565474 ], [ -78.750000, -4.214943 ], [ -78.574219, -4.214943 ], [ -78.574219, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -3.688855 ], [ -78.222656, -3.688855 ], [ -78.222656, -3.337954 ], [ -78.046875, -3.337954 ], [ -78.046875, -3.162456 ], [ -77.871094, -3.162456 ], [ -77.871094, -2.986927 ], [ -77.519531, -2.986927 ], [ -77.519531, -2.811371 ], [ -77.167969, -2.811371 ], [ -77.167969, -2.635789 ], [ -76.816406, -2.635789 ], [ -76.816406, -2.460181 ], [ -76.464844, -2.460181 ], [ -76.464844, -2.284551 ], [ -76.289062, -2.284551 ], [ -76.289062, -2.108899 ], [ -76.113281, -2.108899 ], [ -76.113281, -1.933227 ], [ -75.937500, -1.933227 ], [ -75.937500, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.761719, -1.581830 ], [ -75.585938, -1.581830 ], [ -75.585938, -1.406109 ], [ -75.410156, -1.406109 ], [ -75.410156, -1.054628 ], [ -75.234375, -1.054628 ], [ -75.234375, -0.527336 ], [ -75.410156, -0.527336 ], [ -75.410156, 0.000000 ], [ -75.234375, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.175781 ], [ -74.882812, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.527336 ], [ -74.355469, -0.527336 ], [ -74.355469, -0.878872 ], [ -74.179688, -0.878872 ], [ -74.179688, -1.054628 ], [ -74.003906, -1.054628 ], [ -74.003906, -1.230374 ], [ -73.652344, -1.230374 ], [ -73.652344, -1.406109 ], [ -73.476562, -1.406109 ], [ -73.476562, -1.757537 ], [ -73.300781, -1.757537 ], [ -73.300781, -2.108899 ], [ -73.125000, -2.108899 ], [ -73.125000, -2.284551 ], [ -72.773438, -2.284551 ], [ -72.773438, -2.460181 ], [ -72.070312, -2.460181 ], [ -72.070312, -2.284551 ], [ -70.839844, -2.284551 ], [ -70.839844, -2.460181 ], [ -70.488281, -2.460181 ], [ -70.488281, -2.635789 ], [ -70.136719, -2.635789 ], [ -70.136719, -2.811371 ], [ -69.960938, -2.811371 ], [ -69.960938, -2.986927 ], [ -70.136719, -2.986927 ], [ -70.136719, -3.162456 ], [ -70.312500, -3.162456 ], [ -70.312500, -3.513421 ], [ -70.488281, -3.513421 ], [ -70.488281, -3.688855 ], [ -70.312500, -3.688855 ], [ -70.312500, -3.864255 ], [ -70.136719, -3.864255 ], [ -70.136719, -4.214943 ], [ -70.839844, -4.214943 ], [ -70.839844, -4.390229 ], [ -71.191406, -4.390229 ], [ -71.191406, -4.565474 ], [ -71.718750, -4.565474 ], [ -71.718750, -4.740675 ], [ -72.070312, -4.740675 ], [ -72.070312, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -5.090944 ], [ -72.773438, -5.090944 ], [ -72.773438, -5.266008 ], [ -72.949219, -5.266008 ], [ -72.949219, -5.965754 ], [ -73.125000, -5.965754 ], [ -73.125000, -6.140555 ], [ -73.300781, -6.140555 ], [ -73.300781, -6.489983 ], [ -73.125000, -6.489983 ], [ -73.125000, -6.664608 ], [ -73.300781, -6.664608 ], [ -73.300781, -6.839170 ], [ -73.652344, -6.839170 ], [ -73.652344, -7.536764 ], [ -74.003906, -7.536764 ], [ -74.003906, -7.885147 ], [ -73.828125, -7.885147 ], [ -73.828125, -8.233237 ], [ -73.652344, -8.233237 ], [ -73.652344, -8.581021 ], [ -73.476562, -8.581021 ], [ -73.476562, -8.754795 ], [ -73.300781, -8.754795 ], [ -73.300781, -8.928487 ], [ -73.125000, -8.928487 ], [ -73.125000, -9.102097 ], [ -72.949219, -9.102097 ], [ -72.949219, -9.275622 ], [ -73.125000, -9.275622 ], [ -73.125000, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.597656, -9.622414 ], [ -72.421875, -9.622414 ], [ -72.421875, -9.968851 ], [ -71.894531, -9.968851 ], [ -71.894531, -10.141932 ], [ -71.191406, -10.141932 ], [ -71.191406, -9.968851 ], [ -71.015625, -9.968851 ], [ -71.015625, -9.795678 ], [ -70.664062, -9.795678 ], [ -70.664062, -9.622414 ], [ -70.488281, -9.622414 ], [ -70.488281, -11.178402 ], [ -69.785156, -11.178402 ], [ -69.785156, -11.005904 ], [ -69.609375, -11.005904 ], [ -69.609375, -11.178402 ], [ -69.433594, -11.178402 ], [ -69.433594, -11.523088 ], [ -69.257812, -11.523088 ], [ -69.257812, -11.867351 ], [ -69.082031, -11.867351 ], [ -69.082031, -12.211180 ], [ -68.906250, -12.211180 ], [ -68.906250, -12.554564 ], [ -68.730469, -12.554564 ], [ -68.730469, -12.726084 ], [ -68.906250, -12.726084 ], [ -68.906250, -14.604847 ], [ -69.082031, -14.604847 ], [ -69.082031, -14.944785 ], [ -69.257812, -14.944785 ], [ -69.257812, -15.114553 ], [ -69.082031, -15.114553 ], [ -69.082031, -15.453680 ], [ -69.257812, -15.453680 ], [ -69.257812, -15.623037 ], [ -69.433594, -15.623037 ], [ -69.433594, -15.792254 ], [ -69.257812, -15.792254 ], [ -69.257812, -16.130262 ], [ -69.082031, -16.130262 ], [ -69.082031, -16.467695 ], [ -68.906250, -16.467695 ], [ -68.906250, -16.636192 ], [ -69.082031, -16.636192 ], [ -69.082031, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -17.308688 ], [ -69.433594, -17.308688 ], [ -69.433594, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -17.978733 ], [ -69.785156, -17.978733 ], [ -69.785156, -18.145852 ], [ -69.960938, -18.145852 ], [ -69.960938, -18.312811 ], [ -70.664062, -18.312811 ], [ -70.664062, -18.145852 ], [ -71.015625, -18.145852 ], [ -71.015625, -17.978733 ], [ -71.367188, -17.978733 ], [ -71.367188, -17.644022 ], [ -71.542969, -17.644022 ], [ -71.542969, -17.308688 ], [ -71.718750, -17.308688 ], [ -71.718750, -17.140790 ], [ -72.070312, -17.140790 ], [ -72.070312, -16.972741 ], [ -72.421875, -16.972741 ], [ -72.421875, -16.804541 ], [ -72.773438, -16.804541 ], [ -72.773438, -16.636192 ], [ -73.125000, -16.636192 ], [ -73.125000, -16.467695 ], [ -73.476562, -16.467695 ], [ -73.476562, -16.299051 ], [ -73.652344, -16.299051 ], [ -73.652344, -16.130262 ], [ -74.003906, -16.130262 ], [ -74.003906, -15.961329 ], [ -74.355469, -15.961329 ], [ -74.355469, -15.792254 ], [ -74.531250, -15.792254 ], [ -74.531250, -15.623037 ], [ -74.882812, -15.623037 ], [ -74.882812, -15.453680 ], [ -75.234375, -15.453680 ], [ -75.234375, -15.284185 ], [ -75.410156, -15.284185 ], [ -75.410156, -15.114553 ], [ -75.585938, -15.114553 ], [ -75.585938, -14.944785 ], [ -75.761719, -14.944785 ], [ -75.761719, -14.774883 ], [ -75.937500, -14.774883 ], [ -75.937500, -14.604847 ], [ -76.113281, -14.604847 ], [ -76.113281, -14.264383 ], [ -76.289062, -14.264383 ], [ -76.289062, -13.923404 ], [ -76.464844, -13.923404 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.752725 ], [ -76.289062, -13.581921 ], [ -76.464844, -13.581921 ], [ -76.464844, -13.239945 ], [ -76.640625, -13.239945 ], [ -76.640625, -12.897489 ], [ -76.816406, -12.897489 ], [ -76.816406, -12.726084 ], [ -76.992188, -12.726084 ], [ -76.992188, -12.382928 ], [ -77.167969, -12.382928 ], [ -77.167969, -12.039321 ], [ -77.343750, -12.039321 ], [ -77.343750, -11.695273 ], [ -77.519531, -11.695273 ], [ -77.519531, -11.350797 ], [ -77.695312, -11.350797 ], [ -77.695312, -11.005904 ], [ -77.871094, -11.005904 ], [ -77.871094, -10.660608 ], [ -78.046875, -10.660608 ], [ -78.046875, -10.314919 ], [ -78.222656, -10.314919 ], [ -78.222656, -9.968851 ], [ -78.398438, -9.968851 ], [ -78.398438, -9.622414 ], [ -78.574219, -9.622414 ], [ -78.574219, -9.275622 ], [ -78.750000, -9.275622 ], [ -78.750000, -8.928487 ], [ -78.925781, -8.928487 ], [ -78.925781, -8.581021 ], [ -79.101562, -8.581021 ], [ -79.101562, -8.407168 ], [ -79.277344, -8.407168 ], [ -79.277344, -8.059230 ], [ -79.453125, -8.059230 ], [ -79.453125, -7.710992 ], [ -79.628906, -7.710992 ], [ -79.628906, -7.362467 ], [ -79.804688, -7.362467 ], [ -79.804688, -7.188101 ], [ -79.980469, -7.188101 ], [ -79.980469, -7.013668 ], [ -80.156250, -7.013668 ], [ -80.156250, -6.839170 ], [ -80.332031, -6.839170 ], [ -80.332031, -6.664608 ], [ -80.507812, -6.664608 ], [ -80.507812, -6.489983 ], [ -80.859375, -6.489983 ], [ -80.859375, -6.315299 ], [ -81.210938, -6.315299 ], [ -81.210938, -6.140555 ], [ -81.035156, -6.140555 ], [ -81.035156, -5.790897 ], [ -80.859375, -5.790897 ], [ -80.859375, -5.615986 ], [ -81.035156, -5.615986 ], [ -81.035156, -5.266008 ], [ -81.210938, -5.266008 ], [ -81.210938, -4.915833 ], [ -81.386719, -4.915833 ], [ -81.386719, -4.565474 ], [ -81.210938, -4.565474 ], [ -81.210938, -4.214943 ], [ -81.035156, -4.214943 ], [ -81.035156, -4.039618 ], [ -80.859375, -4.039618 ], [ -80.859375, -3.864255 ], [ -80.683594, -3.864255 ], [ -80.683594, -3.688855 ], [ -80.507812, -3.688855 ], [ -80.507812, -3.513421 ], [ -80.332031, -3.513421 ], [ -80.332031, -3.688855 ], [ -80.156250, -3.688855 ], [ -80.156250, -4.039618 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -79.628906, -4.390229 ], [ -79.628906, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -78.925781, -4.915833 ], [ -78.925781, -4.740675 ], [ -78.574219, -4.740675 ], [ -78.574219, -4.214943 ], [ -78.398438, -4.214943 ], [ -78.398438, -3.864255 ], [ -78.222656, -3.864255 ], [ -78.222656, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -3.162456 ], [ -77.871094, -3.162456 ], [ -77.871094, -2.986927 ], [ -77.519531, -2.986927 ], [ -77.519531, -2.811371 ], [ -76.816406, -2.811371 ], [ -76.816406, -2.635789 ], [ -76.464844, -2.635789 ], [ -76.464844, -2.460181 ], [ -76.289062, -2.460181 ], [ -76.289062, -2.284551 ], [ -76.113281, -2.284551 ], [ -76.113281, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.933227 ], [ -75.761719, -1.933227 ], [ -75.761719, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.410156, -1.406109 ], [ -75.410156, -1.054628 ], [ -75.234375, -1.054628 ], [ -75.234375, -0.527336 ], [ -75.410156, -0.527336 ], [ -75.410156, -0.175781 ], [ -74.882812, -0.175781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.433594, -17.644022 ], [ -69.433594, -17.978733 ], [ -69.257812, -17.978733 ], [ -69.257812, -18.646245 ], [ -69.082031, -18.646245 ], [ -69.082031, -19.145168 ], [ -68.730469, -19.145168 ], [ -68.730469, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.642588 ], [ -68.730469, -19.642588 ], [ -68.730469, -20.138470 ], [ -68.906250, -20.138470 ], [ -68.906250, -20.632784 ], [ -68.730469, -20.632784 ], [ -68.730469, -20.961440 ], [ -68.554688, -20.961440 ], [ -68.554688, -21.289374 ], [ -68.378906, -21.289374 ], [ -68.378906, -21.779905 ], [ -68.203125, -21.779905 ], [ -68.203125, -22.105999 ], [ -68.027344, -22.105999 ], [ -68.027344, -22.593726 ], [ -67.851562, -22.593726 ], [ -67.851562, -22.755921 ], [ -67.324219, -22.755921 ], [ -67.324219, -22.593726 ], [ -67.148438, -22.593726 ], [ -67.148438, -23.241346 ], [ -67.324219, -23.241346 ], [ -67.324219, -23.725012 ], [ -67.500000, -23.725012 ], [ -67.500000, -24.046464 ], [ -67.851562, -24.046464 ], [ -67.851562, -24.206890 ], [ -68.203125, -24.206890 ], [ -68.203125, -24.367114 ], [ -68.554688, -24.367114 ], [ -68.554688, -26.273714 ], [ -68.730469, -26.273714 ], [ -68.730469, -26.588527 ], [ -68.554688, -26.588527 ], [ -68.554688, -26.745610 ], [ -68.378906, -26.745610 ], [ -68.378906, -26.902477 ], [ -68.554688, -26.902477 ], [ -68.554688, -27.059126 ], [ -68.730469, -27.059126 ], [ -68.730469, -27.215556 ], [ -68.906250, -27.215556 ], [ -68.906250, -27.371767 ], [ -69.082031, -27.371767 ], [ -69.082031, -27.527758 ], [ -69.257812, -27.527758 ], [ -69.257812, -27.839076 ], [ -69.433594, -27.839076 ], [ -69.433594, -28.149503 ], [ -69.609375, -28.149503 ], [ -69.609375, -28.459033 ], [ -69.785156, -28.459033 ], [ -69.785156, -28.767659 ], [ -69.960938, -28.767659 ], [ -69.960938, -29.075375 ], [ -70.136719, -29.075375 ], [ -70.136719, -29.840644 ], [ -69.960938, -29.840644 ], [ -69.960938, -30.448674 ], [ -70.136719, -30.448674 ], [ -70.136719, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -31.052934 ], [ -70.488281, -31.052934 ], [ -70.488281, -31.353637 ], [ -70.664062, -31.353637 ], [ -70.664062, -31.653381 ], [ -70.488281, -31.653381 ], [ -70.488281, -32.249974 ], [ -70.312500, -32.249974 ], [ -70.312500, -32.842674 ], [ -70.136719, -32.842674 ], [ -70.136719, -33.137551 ], [ -69.960938, -33.137551 ], [ -69.960938, -34.307144 ], [ -70.136719, -34.307144 ], [ -70.136719, -34.597042 ], [ -70.312500, -34.597042 ], [ -70.312500, -34.885931 ], [ -70.488281, -34.885931 ], [ -70.488281, -36.031332 ], [ -70.664062, -36.031332 ], [ -70.664062, -36.173357 ], [ -70.839844, -36.173357 ], [ -70.839844, -36.456636 ], [ -71.015625, -36.456636 ], [ -71.015625, -36.597889 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.718590 ], [ -71.015625, -37.718590 ], [ -71.015625, -38.272689 ], [ -70.839844, -38.272689 ], [ -70.839844, -38.685510 ], [ -71.191406, -38.685510 ], [ -71.191406, -38.822591 ], [ -71.542969, -38.822591 ], [ -71.542969, -39.368279 ], [ -71.718750, -39.368279 ], [ -71.718750, -40.044438 ], [ -71.894531, -40.044438 ], [ -71.894531, -40.580585 ], [ -72.070312, -40.580585 ], [ -72.070312, -41.244772 ], [ -71.894531, -41.244772 ], [ -71.894531, -41.640078 ], [ -74.003906, -41.640078 ], [ -74.003906, -40.847060 ], [ -73.828125, -40.847060 ], [ -73.828125, -39.909736 ], [ -73.652344, -39.909736 ], [ -73.652344, -39.639538 ], [ -73.476562, -39.639538 ], [ -73.476562, -39.368279 ], [ -73.300781, -39.368279 ], [ -73.300781, -39.095963 ], [ -73.476562, -39.095963 ], [ -73.476562, -38.548165 ], [ -73.652344, -38.548165 ], [ -73.652344, -37.020098 ], [ -73.300781, -37.020098 ], [ -73.300781, -36.879621 ], [ -73.125000, -36.879621 ], [ -73.125000, -36.456636 ], [ -72.949219, -36.456636 ], [ -72.949219, -36.173357 ], [ -72.773438, -36.173357 ], [ -72.773438, -35.746512 ], [ -72.597656, -35.746512 ], [ -72.597656, -35.317366 ], [ -72.421875, -35.317366 ], [ -72.421875, -34.885931 ], [ -72.246094, -34.885931 ], [ -72.246094, -34.597042 ], [ -72.070312, -34.597042 ], [ -72.070312, -34.161818 ], [ -71.894531, -34.161818 ], [ -71.894531, -33.578015 ], [ -71.718750, -33.578015 ], [ -71.718750, -32.842674 ], [ -71.542969, -32.842674 ], [ -71.542969, -31.653381 ], [ -71.718750, -31.653381 ], [ -71.718750, -30.448674 ], [ -71.542969, -30.448674 ], [ -71.542969, -28.613459 ], [ -71.367188, -28.613459 ], [ -71.367188, -28.149503 ], [ -71.191406, -28.149503 ], [ -71.191406, -27.839076 ], [ -71.015625, -27.839076 ], [ -71.015625, -26.588527 ], [ -70.839844, -26.588527 ], [ -70.839844, -25.165173 ], [ -70.664062, -25.165173 ], [ -70.664062, -24.206890 ], [ -70.488281, -24.206890 ], [ -70.488281, -23.079732 ], [ -70.312500, -23.079732 ], [ -70.312500, -21.943046 ], [ -70.136719, -21.943046 ], [ -70.136719, -20.468189 ], [ -70.312500, -20.468189 ], [ -70.312500, -18.979026 ], [ -70.488281, -18.979026 ], [ -70.488281, -18.312811 ], [ -70.312500, -18.312811 ], [ -70.312500, -18.145852 ], [ -69.960938, -18.145852 ], [ -69.960938, -17.978733 ], [ -69.785156, -17.978733 ], [ -69.785156, -17.644022 ], [ -69.433594, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.433594, -17.811456 ], [ -69.433594, -17.978733 ], [ -69.257812, -17.978733 ], [ -69.257812, -18.312811 ], [ -69.082031, -18.312811 ], [ -69.082031, -18.646245 ], [ -68.906250, -18.646245 ], [ -68.906250, -19.145168 ], [ -68.730469, -19.145168 ], [ -68.730469, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.476950 ], [ -68.378906, -19.476950 ], [ -68.378906, -19.808054 ], [ -68.554688, -19.808054 ], [ -68.554688, -20.138470 ], [ -68.730469, -20.138470 ], [ -68.730469, -20.632784 ], [ -68.554688, -20.632784 ], [ -68.554688, -20.961440 ], [ -68.378906, -20.961440 ], [ -68.378906, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -21.943046 ], [ -68.027344, -21.943046 ], [ -68.027344, -22.593726 ], [ -67.851562, -22.593726 ], [ -67.851562, -22.917923 ], [ -67.324219, -22.917923 ], [ -67.324219, -22.755921 ], [ -67.148438, -22.755921 ], [ -67.148438, -22.917923 ], [ -66.972656, -22.917923 ], [ -66.972656, -23.241346 ], [ -67.148438, -23.241346 ], [ -67.148438, -23.885838 ], [ -67.324219, -23.885838 ], [ -67.324219, -24.206890 ], [ -67.675781, -24.206890 ], [ -67.675781, -24.367114 ], [ -68.027344, -24.367114 ], [ -68.027344, -24.527135 ], [ -68.378906, -24.527135 ], [ -68.378906, -26.273714 ], [ -68.554688, -26.273714 ], [ -68.554688, -26.745610 ], [ -68.378906, -26.745610 ], [ -68.378906, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -27.215556 ], [ -68.730469, -27.215556 ], [ -68.730469, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.527758 ], [ -69.082031, -27.527758 ], [ -69.082031, -27.683528 ], [ -69.257812, -27.683528 ], [ -69.257812, -27.994401 ], [ -69.433594, -27.994401 ], [ -69.433594, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.767659 ], [ -69.785156, -28.767659 ], [ -69.785156, -29.228890 ], [ -69.960938, -29.228890 ], [ -69.960938, -30.600094 ], [ -70.136719, -30.600094 ], [ -70.136719, -30.902225 ], [ -70.312500, -30.902225 ], [ -70.312500, -31.203405 ], [ -70.488281, -31.203405 ], [ -70.488281, -31.802893 ], [ -70.312500, -31.802893 ], [ -70.312500, -32.694866 ], [ -70.136719, -32.694866 ], [ -70.136719, -33.284620 ], [ -69.785156, -33.284620 ], [ -69.785156, -34.452218 ], [ -69.960938, -34.452218 ], [ -69.960938, -34.741612 ], [ -70.136719, -34.741612 ], [ -70.136719, -35.029996 ], [ -70.312500, -35.029996 ], [ -70.312500, -36.173357 ], [ -70.488281, -36.173357 ], [ -70.488281, -36.315125 ], [ -70.839844, -36.315125 ], [ -70.839844, -36.456636 ], [ -71.015625, -36.456636 ], [ -71.015625, -36.597889 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.857507 ], [ -71.015625, -37.857507 ], [ -71.015625, -38.410558 ], [ -70.839844, -38.410558 ], [ -70.839844, -38.685510 ], [ -71.015625, -38.685510 ], [ -71.015625, -38.822591 ], [ -71.191406, -38.822591 ], [ -71.191406, -38.959409 ], [ -71.367188, -38.959409 ], [ -71.367188, -39.232253 ], [ -71.542969, -39.232253 ], [ -71.542969, -39.639538 ], [ -71.718750, -39.639538 ], [ -71.718750, -40.313043 ], [ -71.894531, -40.313043 ], [ -71.894531, -41.640078 ], [ -74.003906, -41.640078 ], [ -74.003906, -41.244772 ], [ -73.828125, -41.244772 ], [ -73.828125, -40.446947 ], [ -73.652344, -40.446947 ], [ -73.652344, -39.774769 ], [ -73.476562, -39.774769 ], [ -73.476562, -39.504041 ], [ -73.300781, -39.504041 ], [ -73.300781, -38.822591 ], [ -73.476562, -38.822591 ], [ -73.476562, -37.718590 ], [ -73.652344, -37.718590 ], [ -73.652344, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.879621 ], [ -72.949219, -36.879621 ], [ -72.949219, -36.315125 ], [ -72.773438, -36.315125 ], [ -72.773438, -35.746512 ], [ -72.597656, -35.746512 ], [ -72.597656, -35.317366 ], [ -72.421875, -35.317366 ], [ -72.421875, -34.885931 ], [ -72.246094, -34.885931 ], [ -72.246094, -34.597042 ], [ -72.070312, -34.597042 ], [ -72.070312, -34.161818 ], [ -71.894531, -34.161818 ], [ -71.894531, -33.724340 ], [ -71.718750, -33.724340 ], [ -71.718750, -33.137551 ], [ -71.542969, -33.137551 ], [ -71.542969, -32.694866 ], [ -71.367188, -32.694866 ], [ -71.367188, -32.101190 ], [ -71.542969, -32.101190 ], [ -71.542969, -31.353637 ], [ -71.718750, -31.353637 ], [ -71.718750, -30.751278 ], [ -71.542969, -30.751278 ], [ -71.542969, -30.448674 ], [ -71.367188, -30.448674 ], [ -71.367188, -29.535230 ], [ -71.542969, -29.535230 ], [ -71.542969, -28.767659 ], [ -71.367188, -28.767659 ], [ -71.367188, -28.459033 ], [ -71.191406, -28.459033 ], [ -71.191406, -28.149503 ], [ -71.015625, -28.149503 ], [ -71.015625, -27.839076 ], [ -70.839844, -27.839076 ], [ -70.839844, -26.745610 ], [ -70.664062, -26.745610 ], [ -70.664062, -24.686952 ], [ -70.488281, -24.686952 ], [ -70.488281, -23.079732 ], [ -70.312500, -23.079732 ], [ -70.312500, -22.105999 ], [ -70.136719, -22.105999 ], [ -70.136719, -19.145168 ], [ -70.312500, -19.145168 ], [ -70.312500, -18.312811 ], [ -69.960938, -18.312811 ], [ -69.960938, -18.145852 ], [ -69.785156, -18.145852 ], [ -69.785156, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.811456 ], [ -69.433594, -17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.433594, -11.005904 ], [ -68.378906, -11.005904 ], [ -68.378906, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -10.660608 ], [ -68.027344, -10.660608 ], [ -68.027344, -10.487812 ], [ -67.675781, -10.487812 ], [ -67.675781, -10.314919 ], [ -67.324219, -10.314919 ], [ -67.324219, -10.141932 ], [ -67.148438, -10.141932 ], [ -67.148438, -9.968851 ], [ -66.796875, -9.968851 ], [ -66.796875, -9.795678 ], [ -65.917969, -9.795678 ], [ -65.917969, -9.622414 ], [ -65.390625, -9.622414 ], [ -65.390625, -10.141932 ], [ -65.566406, -10.141932 ], [ -65.566406, -10.660608 ], [ -65.390625, -10.660608 ], [ -65.390625, -11.178402 ], [ -65.566406, -11.178402 ], [ -65.566406, -11.695273 ], [ -65.214844, -11.695273 ], [ -65.214844, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.039321 ], [ -64.863281, -12.039321 ], [ -64.863281, -12.211180 ], [ -64.511719, -12.211180 ], [ -64.511719, -12.382928 ], [ -63.984375, -12.382928 ], [ -63.984375, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.726084 ], [ -63.105469, -12.726084 ], [ -63.105469, -12.897489 ], [ -62.753906, -12.897489 ], [ -62.753906, -13.068777 ], [ -62.226562, -13.068777 ], [ -62.226562, -13.239945 ], [ -62.050781, -13.239945 ], [ -62.050781, -13.410994 ], [ -61.171875, -13.410994 ], [ -61.171875, -13.581921 ], [ -60.820312, -13.581921 ], [ -60.820312, -13.752725 ], [ -60.644531, -13.752725 ], [ -60.644531, -14.093957 ], [ -60.468750, -14.093957 ], [ -60.468750, -14.434680 ], [ -60.292969, -14.434680 ], [ -60.292969, -14.944785 ], [ -60.644531, -14.944785 ], [ -60.644531, -15.284185 ], [ -60.468750, -15.284185 ], [ -60.468750, -15.961329 ], [ -60.292969, -15.961329 ], [ -60.292969, -16.130262 ], [ -59.414062, -16.130262 ], [ -59.414062, -16.299051 ], [ -58.359375, -16.299051 ], [ -58.359375, -16.636192 ], [ -58.535156, -16.636192 ], [ -58.535156, -16.972741 ], [ -58.359375, -16.972741 ], [ -58.359375, -17.308688 ], [ -58.007812, -17.308688 ], [ -58.007812, -17.476432 ], [ -57.832031, -17.476432 ], [ -57.832031, -17.811456 ], [ -57.656250, -17.811456 ], [ -57.656250, -18.479609 ], [ -57.832031, -18.479609 ], [ -57.832031, -19.145168 ], [ -58.007812, -19.145168 ], [ -58.007812, -19.973349 ], [ -58.183594, -19.973349 ], [ -58.183594, -19.808054 ], [ -58.535156, -19.808054 ], [ -58.535156, -19.642588 ], [ -58.886719, -19.642588 ], [ -58.886719, -19.476950 ], [ -59.238281, -19.476950 ], [ -59.238281, -19.311143 ], [ -60.820312, -19.311143 ], [ -60.820312, -19.476950 ], [ -61.875000, -19.476950 ], [ -61.875000, -19.642588 ], [ -62.050781, -19.642588 ], [ -62.050781, -19.973349 ], [ -62.226562, -19.973349 ], [ -62.226562, -20.303418 ], [ -62.402344, -20.303418 ], [ -62.402344, -21.289374 ], [ -62.578125, -21.289374 ], [ -62.578125, -21.943046 ], [ -62.753906, -21.943046 ], [ -62.753906, -22.105999 ], [ -62.929688, -22.105999 ], [ -62.929688, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.105999 ], [ -64.160156, -22.105999 ], [ -64.160156, -22.431340 ], [ -64.335938, -22.431340 ], [ -64.335938, -22.755921 ], [ -64.687500, -22.755921 ], [ -64.687500, -22.431340 ], [ -64.863281, -22.431340 ], [ -64.863281, -22.105999 ], [ -65.039062, -22.105999 ], [ -65.039062, -21.943046 ], [ -65.917969, -21.943046 ], [ -65.917969, -21.779905 ], [ -66.445312, -21.779905 ], [ -66.445312, -21.943046 ], [ -66.621094, -21.943046 ], [ -66.621094, -22.105999 ], [ -66.796875, -22.105999 ], [ -66.796875, -22.431340 ], [ -66.972656, -22.431340 ], [ -66.972656, -22.593726 ], [ -67.324219, -22.593726 ], [ -67.324219, -22.755921 ], [ -67.851562, -22.755921 ], [ -67.851562, -22.593726 ], [ -68.027344, -22.593726 ], [ -68.027344, -22.105999 ], [ -68.203125, -22.105999 ], [ -68.203125, -21.779905 ], [ -68.378906, -21.779905 ], [ -68.378906, -21.289374 ], [ -68.554688, -21.289374 ], [ -68.554688, -20.961440 ], [ -68.730469, -20.961440 ], [ -68.730469, -20.632784 ], [ -68.906250, -20.632784 ], [ -68.906250, -20.138470 ], [ -68.730469, -20.138470 ], [ -68.730469, -19.642588 ], [ -68.554688, -19.642588 ], [ -68.554688, -19.311143 ], [ -68.730469, -19.311143 ], [ -68.730469, -19.145168 ], [ -69.082031, -19.145168 ], [ -69.082031, -18.646245 ], [ -69.257812, -18.646245 ], [ -69.257812, -17.978733 ], [ -69.433594, -17.978733 ], [ -69.433594, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -17.308688 ], [ -69.433594, -17.308688 ], [ -69.433594, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -16.636192 ], [ -69.082031, -16.636192 ], [ -69.082031, -16.299051 ], [ -69.257812, -16.299051 ], [ -69.257812, -15.961329 ], [ -69.433594, -15.961329 ], [ -69.433594, -15.453680 ], [ -69.257812, -15.453680 ], [ -69.257812, -15.114553 ], [ -69.433594, -15.114553 ], [ -69.433594, -14.944785 ], [ -69.257812, -14.944785 ], [ -69.257812, -14.604847 ], [ -69.082031, -14.604847 ], [ -69.082031, -13.239945 ], [ -68.906250, -13.239945 ], [ -68.906250, -12.726084 ], [ -68.730469, -12.726084 ], [ -68.730469, -12.382928 ], [ -68.906250, -12.382928 ], [ -68.906250, -12.039321 ], [ -69.082031, -12.039321 ], [ -69.082031, -11.695273 ], [ -69.257812, -11.695273 ], [ -69.257812, -11.350797 ], [ -69.433594, -11.350797 ], [ -69.433594, -11.005904 ] ] ], [ [ [ -69.433594, -11.005904 ], [ -69.609375, -11.005904 ], [ -69.609375, -10.833306 ], [ -69.433594, -10.833306 ], [ -69.433594, -11.005904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.795678 ], [ -65.390625, -11.695273 ], [ -65.214844, -11.695273 ], [ -65.214844, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.039321 ], [ -64.687500, -12.039321 ], [ -64.687500, -12.211180 ], [ -64.511719, -12.211180 ], [ -64.511719, -12.382928 ], [ -63.984375, -12.382928 ], [ -63.984375, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.726084 ], [ -63.105469, -12.726084 ], [ -63.105469, -12.897489 ], [ -62.929688, -12.897489 ], [ -62.929688, -13.068777 ], [ -62.578125, -13.068777 ], [ -62.578125, -13.239945 ], [ -62.050781, -13.239945 ], [ -62.050781, -13.410994 ], [ -61.171875, -13.410994 ], [ -61.171875, -13.581921 ], [ -60.820312, -13.581921 ], [ -60.820312, -13.752725 ], [ -60.468750, -13.752725 ], [ -60.468750, -14.604847 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.114553 ], [ -60.468750, -15.114553 ], [ -60.468750, -15.453680 ], [ -60.292969, -15.453680 ], [ -60.292969, -16.130262 ], [ -60.117188, -16.130262 ], [ -60.117188, -16.299051 ], [ -58.183594, -16.299051 ], [ -58.183594, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -17.308688 ], [ -58.183594, -17.308688 ], [ -58.183594, -17.476432 ], [ -57.656250, -17.476432 ], [ -57.656250, -17.811456 ], [ -57.480469, -17.811456 ], [ -57.480469, -18.646245 ], [ -57.656250, -18.646245 ], [ -57.656250, -19.145168 ], [ -57.832031, -19.145168 ], [ -57.832031, -19.476950 ], [ -58.007812, -19.476950 ], [ -58.007812, -19.808054 ], [ -57.832031, -19.808054 ], [ -57.832031, -20.138470 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -58.359375, -19.808054 ], [ -58.359375, -19.642588 ], [ -58.710938, -19.642588 ], [ -58.710938, -19.476950 ], [ -59.062500, -19.476950 ], [ -59.062500, -19.311143 ], [ -60.468750, -19.311143 ], [ -60.468750, -19.476950 ], [ -61.171875, -19.476950 ], [ -61.171875, -19.642588 ], [ -61.699219, -19.642588 ], [ -61.699219, -19.808054 ], [ -61.875000, -19.808054 ], [ -61.875000, -20.138470 ], [ -62.050781, -20.138470 ], [ -62.050781, -20.468189 ], [ -62.226562, -20.468189 ], [ -62.226562, -21.453069 ], [ -62.402344, -21.453069 ], [ -62.402344, -21.779905 ], [ -62.578125, -21.779905 ], [ -62.578125, -22.105999 ], [ -62.753906, -22.105999 ], [ -62.753906, -22.268764 ], [ -62.929688, -22.268764 ], [ -62.929688, -22.105999 ], [ -63.632812, -22.105999 ], [ -63.632812, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.268764 ], [ -64.160156, -22.268764 ], [ -64.160156, -22.593726 ], [ -64.335938, -22.593726 ], [ -64.335938, -22.755921 ], [ -64.511719, -22.755921 ], [ -64.511719, -22.593726 ], [ -64.687500, -22.593726 ], [ -64.687500, -22.431340 ], [ -64.863281, -22.431340 ], [ -64.863281, -22.268764 ], [ -65.039062, -22.268764 ], [ -65.039062, -22.105999 ], [ -65.390625, -22.105999 ], [ -65.390625, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -21.779905 ], [ -66.269531, -21.779905 ], [ -66.269531, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -22.105999 ], [ -66.621094, -22.105999 ], [ -66.621094, -22.268764 ], [ -66.796875, -22.268764 ], [ -66.796875, -22.593726 ], [ -66.972656, -22.593726 ], [ -66.972656, -22.755921 ], [ -67.324219, -22.755921 ], [ -67.324219, -22.917923 ], [ -67.851562, -22.917923 ], [ -67.851562, -22.593726 ], [ -68.027344, -22.593726 ], [ -68.027344, -21.943046 ], [ -68.203125, -21.943046 ], [ -68.203125, -21.289374 ], [ -68.378906, -21.289374 ], [ -68.378906, -20.961440 ], [ -68.554688, -20.961440 ], [ -68.554688, -20.632784 ], [ -68.730469, -20.632784 ], [ -68.730469, -20.138470 ], [ -68.554688, -20.138470 ], [ -68.554688, -19.808054 ], [ -68.378906, -19.808054 ], [ -68.378906, -19.476950 ], [ -68.554688, -19.476950 ], [ -68.554688, -19.311143 ], [ -68.730469, -19.311143 ], [ -68.730469, -19.145168 ], [ -68.906250, -19.145168 ], [ -68.906250, -18.646245 ], [ -69.082031, -18.646245 ], [ -69.082031, -18.312811 ], [ -69.257812, -18.312811 ], [ -69.257812, -17.978733 ], [ -69.433594, -17.978733 ], [ -69.433594, -17.811456 ], [ -69.609375, -17.811456 ], [ -69.609375, -17.644022 ], [ -69.433594, -17.644022 ], [ -69.433594, -17.308688 ], [ -69.257812, -17.308688 ], [ -69.257812, -16.972741 ], [ -69.082031, -16.972741 ], [ -69.082031, -16.636192 ], [ -68.906250, -16.636192 ], [ -68.906250, -16.467695 ], [ -69.082031, -16.467695 ], [ -69.082031, -16.130262 ], [ -69.257812, -16.130262 ], [ -69.257812, -15.792254 ], [ -69.433594, -15.792254 ], [ -69.433594, -15.623037 ], [ -69.257812, -15.623037 ], [ -69.257812, -15.453680 ], [ -69.082031, -15.453680 ], [ -69.082031, -15.114553 ], [ -69.257812, -15.114553 ], [ -69.257812, -14.944785 ], [ -69.082031, -14.944785 ], [ -69.082031, -14.604847 ], [ -68.906250, -14.604847 ], [ -68.906250, -12.726084 ], [ -68.730469, -12.726084 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.554564 ], [ -68.906250, -12.211180 ], [ -69.082031, -12.211180 ], [ -69.082031, -11.867351 ], [ -69.257812, -11.867351 ], [ -69.257812, -11.523088 ], [ -69.433594, -11.523088 ], [ -69.433594, -11.178402 ], [ -69.609375, -11.178402 ], [ -69.609375, -11.005904 ], [ -68.203125, -11.005904 ], [ -68.203125, -10.833306 ], [ -68.027344, -10.833306 ], [ -68.027344, -10.660608 ], [ -67.675781, -10.660608 ], [ -67.675781, -10.487812 ], [ -67.324219, -10.487812 ], [ -67.324219, -10.314919 ], [ -66.972656, -10.314919 ], [ -66.972656, -10.141932 ], [ -66.621094, -10.141932 ], [ -66.621094, -9.968851 ], [ -65.917969, -9.968851 ], [ -65.917969, -9.795678 ], [ -65.390625, -9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.273438, 0.878872 ], [ -50.273438, 0.703107 ], [ -50.449219, 0.703107 ], [ -50.449219, 0.527336 ], [ -50.625000, 0.527336 ], [ -50.625000, 0.351560 ], [ -50.800781, 0.351560 ], [ -50.800781, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -1.230374 ], [ -48.515625, -1.230374 ], [ -48.515625, -1.054628 ], [ -48.339844, -1.054628 ], [ -48.339844, -0.878872 ], [ -48.164062, -0.878872 ], [ -48.164062, -0.703107 ], [ -47.988281, -0.703107 ], [ -47.988281, -0.527336 ], [ -47.812500, -0.527336 ], [ -47.812500, -0.703107 ], [ -47.109375, -0.703107 ], [ -47.109375, -0.878872 ], [ -46.406250, -0.878872 ], [ -46.406250, -1.054628 ], [ -45.878906, -1.054628 ], [ -45.878906, -1.230374 ], [ -45.351562, -1.230374 ], [ -45.351562, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -44.296875, -2.635789 ], [ -44.296875, -2.460181 ], [ -44.121094, -2.460181 ], [ -44.121094, -23.079732 ], [ -44.296875, -23.079732 ], [ -44.296875, -23.241346 ], [ -44.648438, -23.241346 ], [ -44.648438, -23.402765 ], [ -44.824219, -23.402765 ], [ -44.824219, -23.563987 ], [ -45.175781, -23.563987 ], [ -45.175781, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -46.230469, -23.885838 ], [ -46.230469, -24.046464 ], [ -46.582031, -24.046464 ], [ -46.582031, -24.206890 ], [ -46.933594, -24.206890 ], [ -46.933594, -24.367114 ], [ -47.109375, -24.367114 ], [ -47.109375, -24.527135 ], [ -47.285156, -24.527135 ], [ -47.285156, -24.686952 ], [ -47.636719, -24.686952 ], [ -47.636719, -24.846565 ], [ -47.812500, -24.846565 ], [ -47.812500, -25.005973 ], [ -47.988281, -25.005973 ], [ -47.988281, -25.324167 ], [ -48.164062, -25.324167 ], [ -48.164062, -25.482951 ], [ -48.339844, -25.482951 ], [ -48.339844, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -26.273714 ], [ -48.691406, -26.273714 ], [ -48.691406, -26.902477 ], [ -48.515625, -26.902477 ], [ -48.515625, -27.683528 ], [ -48.691406, -27.683528 ], [ -48.691406, -28.304381 ], [ -48.867188, -28.304381 ], [ -48.867188, -28.613459 ], [ -49.042969, -28.613459 ], [ -49.042969, -28.767659 ], [ -49.218750, -28.767659 ], [ -49.218750, -28.921631 ], [ -49.570312, -28.921631 ], [ -49.570312, -29.075375 ], [ -49.746094, -29.075375 ], [ -49.746094, -29.228890 ], [ -49.921875, -29.228890 ], [ -49.921875, -29.535230 ], [ -50.097656, -29.535230 ], [ -50.097656, -29.840644 ], [ -50.273438, -29.840644 ], [ -50.273438, -30.145127 ], [ -50.449219, -30.145127 ], [ -50.449219, -30.448674 ], [ -50.625000, -30.448674 ], [ -50.625000, -30.751278 ], [ -50.800781, -30.751278 ], [ -50.800781, -31.052934 ], [ -50.976562, -31.052934 ], [ -50.976562, -31.203405 ], [ -51.152344, -31.203405 ], [ -51.152344, -31.353637 ], [ -51.328125, -31.353637 ], [ -51.328125, -31.503629 ], [ -51.503906, -31.503629 ], [ -51.503906, -31.653381 ], [ -51.679688, -31.653381 ], [ -51.679688, -31.802893 ], [ -51.855469, -31.802893 ], [ -51.855469, -31.952162 ], [ -52.207031, -31.952162 ], [ -52.207031, -32.101190 ], [ -52.382812, -32.101190 ], [ -52.382812, -32.398516 ], [ -52.558594, -32.398516 ], [ -52.558594, -32.990236 ], [ -52.734375, -32.990236 ], [ -52.734375, -33.284620 ], [ -52.910156, -33.284620 ], [ -52.910156, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.578015 ], [ -53.261719, -33.578015 ], [ -53.261719, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.578015 ], [ -53.613281, -33.578015 ], [ -53.613281, -33.284620 ], [ -53.789062, -33.284620 ], [ -53.789062, -33.137551 ], [ -53.613281, -33.137551 ], [ -53.613281, -32.990236 ], [ -53.437500, -32.990236 ], [ -53.437500, -32.842674 ], [ -53.261719, -32.842674 ], [ -53.261719, -32.694866 ], [ -53.437500, -32.694866 ], [ -53.437500, -32.398516 ], [ -53.613281, -32.398516 ], [ -53.613281, -32.101190 ], [ -53.789062, -32.101190 ], [ -53.789062, -31.952162 ], [ -53.964844, -31.952162 ], [ -53.964844, -31.802893 ], [ -54.140625, -31.802893 ], [ -54.140625, -31.653381 ], [ -54.492188, -31.653381 ], [ -54.492188, -31.503629 ], [ -54.667969, -31.503629 ], [ -54.667969, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.203405 ], [ -55.195312, -31.203405 ], [ -55.195312, -31.052934 ], [ -55.371094, -31.052934 ], [ -55.371094, -30.902225 ], [ -55.722656, -30.902225 ], [ -55.722656, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -30.600094 ], [ -56.425781, -30.600094 ], [ -56.425781, -30.448674 ], [ -56.777344, -30.448674 ], [ -56.777344, -30.297018 ], [ -56.953125, -30.297018 ], [ -56.953125, -30.145127 ], [ -57.128906, -30.145127 ], [ -57.128906, -29.993002 ], [ -57.304688, -29.993002 ], [ -57.304688, -29.688053 ], [ -57.128906, -29.688053 ], [ -57.128906, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -29.382175 ], [ -56.777344, -29.382175 ], [ -56.777344, -29.075375 ], [ -56.601562, -29.075375 ], [ -56.601562, -28.921631 ], [ -56.425781, -28.921631 ], [ -56.425781, -28.767659 ], [ -56.250000, -28.767659 ], [ -56.250000, -28.613459 ], [ -56.074219, -28.613459 ], [ -56.074219, -28.459033 ], [ -55.898438, -28.459033 ], [ -55.898438, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.149503 ], [ -55.371094, -28.149503 ], [ -55.371094, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -27.839076 ], [ -55.019531, -27.839076 ], [ -55.019531, -27.683528 ], [ -54.667969, -27.683528 ], [ -54.667969, -27.527758 ], [ -54.492188, -27.527758 ], [ -54.492188, -27.371767 ], [ -54.316406, -27.371767 ], [ -54.316406, -27.215556 ], [ -53.964844, -27.215556 ], [ -53.964844, -27.059126 ], [ -53.789062, -27.059126 ], [ -53.789062, -25.958045 ], [ -53.964844, -25.958045 ], [ -53.964844, -25.641526 ], [ -54.140625, -25.641526 ], [ -54.140625, -25.482951 ], [ -54.316406, -25.482951 ], [ -54.316406, -25.641526 ], [ -54.667969, -25.641526 ], [ -54.667969, -25.324167 ], [ -54.492188, -25.324167 ], [ -54.492188, -24.846565 ], [ -54.316406, -24.846565 ], [ -54.316406, -23.885838 ], [ -54.667969, -23.885838 ], [ -54.667969, -23.725012 ], [ -54.843750, -23.725012 ], [ -54.843750, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -23.079732 ], [ -55.722656, -23.079732 ], [ -55.722656, -22.431340 ], [ -55.898438, -22.431340 ], [ -55.898438, -22.268764 ], [ -56.250000, -22.268764 ], [ -56.250000, -22.105999 ], [ -56.777344, -22.105999 ], [ -56.777344, -22.268764 ], [ -57.304688, -22.268764 ], [ -57.304688, -22.105999 ], [ -57.832031, -22.105999 ], [ -57.832031, -21.943046 ], [ -58.007812, -21.943046 ], [ -58.007812, -20.468189 ], [ -58.183594, -20.468189 ], [ -58.183594, -19.973349 ], [ -58.007812, -19.973349 ], [ -58.007812, -19.145168 ], [ -57.832031, -19.145168 ], [ -57.832031, -18.479609 ], [ -57.656250, -18.479609 ], [ -57.656250, -17.811456 ], [ -57.832031, -17.811456 ], [ -57.832031, -17.476432 ], [ -58.007812, -17.476432 ], [ -58.007812, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.972741 ], [ -58.535156, -16.972741 ], [ -58.535156, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -16.299051 ], [ -59.414062, -16.299051 ], [ -59.414062, -16.130262 ], [ -60.292969, -16.130262 ], [ -60.292969, -15.961329 ], [ -60.468750, -15.961329 ], [ -60.468750, -15.284185 ], [ -60.644531, -15.284185 ], [ -60.644531, -14.944785 ], [ -60.292969, -14.944785 ], [ -60.292969, -14.434680 ], [ -60.468750, -14.434680 ], [ -60.468750, -14.093957 ], [ -60.644531, -14.093957 ], [ -60.644531, -13.752725 ], [ -60.820312, -13.752725 ], [ -60.820312, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.410994 ], [ -62.050781, -13.410994 ], [ -62.050781, -13.239945 ], [ -62.226562, -13.239945 ], [ -62.226562, -13.068777 ], [ -62.753906, -13.068777 ], [ -62.753906, -12.897489 ], [ -63.105469, -12.897489 ], [ -63.105469, -12.726084 ], [ -63.281250, -12.726084 ], [ -63.281250, -12.554564 ], [ -63.984375, -12.554564 ], [ -63.984375, -12.382928 ], [ -64.511719, -12.382928 ], [ -64.511719, -12.211180 ], [ -64.863281, -12.211180 ], [ -64.863281, -12.039321 ], [ -65.039062, -12.039321 ], [ -65.039062, -11.867351 ], [ -65.214844, -11.867351 ], [ -65.214844, -11.695273 ], [ -65.566406, -11.695273 ], [ -65.566406, -11.178402 ], [ -65.390625, -11.178402 ], [ -65.390625, -10.660608 ], [ -65.566406, -10.660608 ], [ -65.566406, -10.141932 ], [ -65.390625, -10.141932 ], [ -65.390625, -9.622414 ], [ -65.917969, -9.622414 ], [ -65.917969, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -9.968851 ], [ -67.148438, -9.968851 ], [ -67.148438, -10.141932 ], [ -67.324219, -10.141932 ], [ -67.324219, -10.314919 ], [ -67.675781, -10.314919 ], [ -67.675781, -10.487812 ], [ -68.027344, -10.487812 ], [ -68.027344, -10.660608 ], [ -68.203125, -10.660608 ], [ -68.203125, -10.833306 ], [ -68.378906, -10.833306 ], [ -68.378906, -11.005904 ], [ -69.433594, -11.005904 ], [ -69.433594, -10.833306 ], [ -69.785156, -10.833306 ], [ -69.785156, -11.005904 ], [ -70.664062, -11.005904 ], [ -70.664062, -10.314919 ], [ -70.488281, -10.314919 ], [ -70.488281, -9.622414 ], [ -70.839844, -9.622414 ], [ -70.839844, -9.795678 ], [ -71.191406, -9.795678 ], [ -71.191406, -9.968851 ], [ -72.421875, -9.968851 ], [ -72.421875, -9.622414 ], [ -72.597656, -9.622414 ], [ -72.597656, -9.449062 ], [ -73.300781, -9.449062 ], [ -73.300781, -9.275622 ], [ -73.125000, -9.275622 ], [ -73.125000, -8.928487 ], [ -73.300781, -8.928487 ], [ -73.300781, -8.754795 ], [ -73.476562, -8.754795 ], [ -73.476562, -8.581021 ], [ -73.652344, -8.581021 ], [ -73.652344, -8.233237 ], [ -73.828125, -8.233237 ], [ -73.828125, -7.710992 ], [ -74.003906, -7.710992 ], [ -74.003906, -7.362467 ], [ -73.828125, -7.362467 ], [ -73.828125, -6.839170 ], [ -73.476562, -6.839170 ], [ -73.476562, -6.664608 ], [ -73.125000, -6.664608 ], [ -73.125000, -6.315299 ], [ -73.300781, -6.315299 ], [ -73.300781, -5.790897 ], [ -73.125000, -5.790897 ], [ -73.125000, -5.441022 ], [ -72.949219, -5.441022 ], [ -72.949219, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -5.090944 ], [ -72.421875, -5.090944 ], [ -72.421875, -4.915833 ], [ -72.246094, -4.915833 ], [ -72.246094, -4.740675 ], [ -71.894531, -4.740675 ], [ -71.894531, -4.565474 ], [ -71.367188, -4.565474 ], [ -71.367188, -4.390229 ], [ -70.839844, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.785156, -2.108899 ], [ -69.609375, -2.108899 ], [ -69.609375, -1.230374 ], [ -69.433594, -1.230374 ], [ -69.433594, -0.878872 ], [ -69.609375, -0.878872 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -70.136719, -0.351560 ], [ -70.136719, 0.703107 ], [ -69.785156, 0.703107 ], [ -69.785156, 0.878872 ], [ -69.609375, 0.878872 ], [ -69.609375, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 0.878872 ], [ -50.273438, 0.878872 ] ] ], [ [ [ -57.304688, -29.993002 ], [ -57.304688, -30.145127 ], [ -57.480469, -30.145127 ], [ -57.480469, -29.993002 ], [ -57.304688, -29.993002 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.097656, 0.878872 ], [ -50.097656, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.527336 ], [ -50.449219, 0.527336 ], [ -50.449219, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -0.703107 ], [ -48.515625, -0.703107 ], [ -48.515625, -1.230374 ], [ -48.339844, -1.230374 ], [ -48.339844, -1.054628 ], [ -48.164062, -1.054628 ], [ -48.164062, -0.878872 ], [ -47.988281, -0.878872 ], [ -47.988281, -0.703107 ], [ -47.812500, -0.703107 ], [ -47.812500, -0.527336 ], [ -47.636719, -0.527336 ], [ -47.636719, -0.703107 ], [ -46.933594, -0.703107 ], [ -46.933594, -0.878872 ], [ -46.406250, -0.878872 ], [ -46.406250, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.230374 ], [ -45.527344, -1.230374 ], [ -45.527344, -1.406109 ], [ -45.175781, -1.406109 ], [ -45.175781, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -44.121094, -2.635789 ], [ -44.121094, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.402765 ], [ -44.648438, -23.402765 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -46.054688, -23.885838 ], [ -46.054688, -24.046464 ], [ -46.406250, -24.046464 ], [ -46.406250, -24.206890 ], [ -46.757812, -24.206890 ], [ -46.757812, -24.367114 ], [ -46.933594, -24.367114 ], [ -46.933594, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -24.686952 ], [ -47.460938, -24.686952 ], [ -47.460938, -24.846565 ], [ -47.636719, -24.846565 ], [ -47.636719, -25.005973 ], [ -47.812500, -25.005973 ], [ -47.812500, -25.165173 ], [ -47.988281, -25.165173 ], [ -47.988281, -25.324167 ], [ -48.164062, -25.324167 ], [ -48.164062, -25.641526 ], [ -48.339844, -25.641526 ], [ -48.339844, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -26.273714 ], [ -48.691406, -26.273714 ], [ -48.691406, -26.902477 ], [ -48.515625, -26.902477 ], [ -48.515625, -27.683528 ], [ -48.691406, -27.683528 ], [ -48.691406, -28.459033 ], [ -48.867188, -28.459033 ], [ -48.867188, -28.767659 ], [ -49.042969, -28.767659 ], [ -49.042969, -28.921631 ], [ -49.218750, -28.921631 ], [ -49.218750, -29.075375 ], [ -49.394531, -29.075375 ], [ -49.394531, -29.228890 ], [ -49.570312, -29.228890 ], [ -49.570312, -29.382175 ], [ -49.746094, -29.382175 ], [ -49.746094, -29.688053 ], [ -49.921875, -29.688053 ], [ -49.921875, -29.993002 ], [ -50.097656, -29.993002 ], [ -50.097656, -30.297018 ], [ -50.273438, -30.297018 ], [ -50.273438, -30.600094 ], [ -50.449219, -30.600094 ], [ -50.449219, -30.902225 ], [ -50.625000, -30.902225 ], [ -50.625000, -31.203405 ], [ -50.800781, -31.203405 ], [ -50.800781, -31.353637 ], [ -50.976562, -31.353637 ], [ -50.976562, -31.503629 ], [ -51.152344, -31.503629 ], [ -51.152344, -31.653381 ], [ -51.328125, -31.653381 ], [ -51.328125, -31.802893 ], [ -51.503906, -31.802893 ], [ -51.503906, -31.952162 ], [ -51.679688, -31.952162 ], [ -51.679688, -32.101190 ], [ -52.031250, -32.101190 ], [ -52.031250, -32.249974 ], [ -52.207031, -32.249974 ], [ -52.207031, -32.398516 ], [ -52.382812, -32.398516 ], [ -52.382812, -32.694866 ], [ -52.558594, -32.694866 ], [ -52.558594, -32.990236 ], [ -52.734375, -32.990236 ], [ -52.734375, -33.284620 ], [ -52.910156, -33.284620 ], [ -52.910156, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.578015 ], [ -53.261719, -33.578015 ], [ -53.261719, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.431441 ], [ -53.613281, -33.431441 ], [ -53.613281, -33.137551 ], [ -53.437500, -33.137551 ], [ -53.437500, -32.842674 ], [ -53.261719, -32.842674 ], [ -53.261719, -32.694866 ], [ -53.437500, -32.694866 ], [ -53.437500, -32.398516 ], [ -53.613281, -32.398516 ], [ -53.613281, -32.249974 ], [ -53.789062, -32.249974 ], [ -53.789062, -32.101190 ], [ -53.964844, -32.101190 ], [ -53.964844, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -31.802893 ], [ -54.316406, -31.802893 ], [ -54.316406, -31.653381 ], [ -54.492188, -31.653381 ], [ -54.492188, -31.503629 ], [ -54.667969, -31.503629 ], [ -54.667969, -31.353637 ], [ -55.019531, -31.353637 ], [ -55.019531, -31.203405 ], [ -55.195312, -31.203405 ], [ -55.195312, -31.052934 ], [ -55.546875, -31.052934 ], [ -55.546875, -30.902225 ], [ -56.074219, -30.902225 ], [ -56.074219, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -30.600094 ], [ -56.601562, -30.600094 ], [ -56.601562, -30.448674 ], [ -56.777344, -30.448674 ], [ -56.777344, -30.297018 ], [ -56.953125, -30.297018 ], [ -56.953125, -30.145127 ], [ -57.480469, -30.145127 ], [ -57.480469, -29.993002 ], [ -57.304688, -29.993002 ], [ -57.304688, -29.840644 ], [ -57.128906, -29.840644 ], [ -57.128906, -29.688053 ], [ -56.953125, -29.688053 ], [ -56.953125, -29.535230 ], [ -56.777344, -29.535230 ], [ -56.777344, -29.382175 ], [ -56.601562, -29.382175 ], [ -56.601562, -29.228890 ], [ -56.425781, -29.228890 ], [ -56.425781, -29.075375 ], [ -56.250000, -29.075375 ], [ -56.250000, -28.921631 ], [ -56.074219, -28.921631 ], [ -56.074219, -28.767659 ], [ -55.898438, -28.767659 ], [ -55.898438, -28.613459 ], [ -55.722656, -28.613459 ], [ -55.722656, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.149503 ], [ -55.371094, -28.149503 ], [ -55.371094, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -27.839076 ], [ -54.843750, -27.839076 ], [ -54.843750, -27.683528 ], [ -54.492188, -27.683528 ], [ -54.492188, -27.527758 ], [ -54.316406, -27.527758 ], [ -54.316406, -27.371767 ], [ -54.140625, -27.371767 ], [ -54.140625, -27.215556 ], [ -53.789062, -27.215556 ], [ -53.789062, -27.059126 ], [ -53.613281, -27.059126 ], [ -53.613281, -26.115986 ], [ -53.789062, -26.115986 ], [ -53.789062, -25.799891 ], [ -53.964844, -25.799891 ], [ -53.964844, -25.641526 ], [ -54.492188, -25.641526 ], [ -54.492188, -25.799891 ], [ -54.667969, -25.799891 ], [ -54.667969, -25.482951 ], [ -54.492188, -25.482951 ], [ -54.492188, -24.846565 ], [ -54.316406, -24.846565 ], [ -54.316406, -24.046464 ], [ -55.371094, -24.046464 ], [ -55.371094, -23.725012 ], [ -55.546875, -23.725012 ], [ -55.546875, -22.593726 ], [ -55.722656, -22.593726 ], [ -55.722656, -22.431340 ], [ -56.074219, -22.431340 ], [ -56.074219, -22.268764 ], [ -56.425781, -22.268764 ], [ -56.425781, -22.105999 ], [ -56.601562, -22.105999 ], [ -56.601562, -22.268764 ], [ -57.656250, -22.268764 ], [ -57.656250, -22.105999 ], [ -58.007812, -22.105999 ], [ -58.007812, -21.453069 ], [ -57.832031, -21.453069 ], [ -57.832031, -20.632784 ], [ -58.007812, -20.632784 ], [ -58.007812, -20.303418 ], [ -58.183594, -20.303418 ], [ -58.183594, -20.138470 ], [ -57.832031, -20.138470 ], [ -57.832031, -19.808054 ], [ -58.007812, -19.808054 ], [ -58.007812, -19.476950 ], [ -57.832031, -19.476950 ], [ -57.832031, -19.145168 ], [ -57.656250, -19.145168 ], [ -57.656250, -18.646245 ], [ -57.480469, -18.646245 ], [ -57.480469, -17.811456 ], [ -57.656250, -17.811456 ], [ -57.656250, -17.476432 ], [ -58.183594, -17.476432 ], [ -58.183594, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.636192 ], [ -58.183594, -16.636192 ], [ -58.183594, -16.299051 ], [ -60.117188, -16.299051 ], [ -60.117188, -16.130262 ], [ -60.292969, -16.130262 ], [ -60.292969, -15.453680 ], [ -60.468750, -15.453680 ], [ -60.468750, -15.114553 ], [ -60.292969, -15.114553 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.604847 ], [ -60.468750, -13.752725 ], [ -60.820312, -13.752725 ], [ -60.820312, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.410994 ], [ -62.050781, -13.410994 ], [ -62.050781, -13.239945 ], [ -62.578125, -13.239945 ], [ -62.578125, -13.068777 ], [ -62.929688, -13.068777 ], [ -62.929688, -12.897489 ], [ -63.105469, -12.897489 ], [ -63.105469, -12.726084 ], [ -63.281250, -12.726084 ], [ -63.281250, -12.554564 ], [ -63.984375, -12.554564 ], [ -63.984375, -12.382928 ], [ -64.511719, -12.382928 ], [ -64.511719, -12.211180 ], [ -64.687500, -12.211180 ], [ -64.687500, -12.039321 ], [ -65.039062, -12.039321 ], [ -65.039062, -11.867351 ], [ -65.214844, -11.867351 ], [ -65.214844, -11.695273 ], [ -65.390625, -11.695273 ], [ -65.390625, -9.795678 ], [ -65.917969, -9.795678 ], [ -65.917969, -9.968851 ], [ -66.621094, -9.968851 ], [ -66.621094, -10.141932 ], [ -66.972656, -10.141932 ], [ -66.972656, -10.314919 ], [ -67.324219, -10.314919 ], [ -67.324219, -10.487812 ], [ -67.675781, -10.487812 ], [ -67.675781, -10.660608 ], [ -68.027344, -10.660608 ], [ -68.027344, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -11.005904 ], [ -69.785156, -11.005904 ], [ -69.785156, -11.178402 ], [ -70.488281, -11.178402 ], [ -70.488281, -9.622414 ], [ -70.664062, -9.622414 ], [ -70.664062, -9.795678 ], [ -71.015625, -9.795678 ], [ -71.015625, -9.968851 ], [ -71.191406, -9.968851 ], [ -71.191406, -10.141932 ], [ -71.894531, -10.141932 ], [ -71.894531, -9.968851 ], [ -72.421875, -9.968851 ], [ -72.421875, -9.622414 ], [ -72.597656, -9.622414 ], [ -72.597656, -9.449062 ], [ -73.125000, -9.449062 ], [ -73.125000, -9.275622 ], [ -72.949219, -9.275622 ], [ -72.949219, -9.102097 ], [ -73.125000, -9.102097 ], [ -73.125000, -8.928487 ], [ -73.300781, -8.928487 ], [ -73.300781, -8.754795 ], [ -73.476562, -8.754795 ], [ -73.476562, -8.581021 ], [ -73.652344, -8.581021 ], [ -73.652344, -8.233237 ], [ -73.828125, -8.233237 ], [ -73.828125, -7.885147 ], [ -74.003906, -7.885147 ], [ -74.003906, -7.536764 ], [ -73.652344, -7.536764 ], [ -73.652344, -6.839170 ], [ -73.300781, -6.839170 ], [ -73.300781, -6.664608 ], [ -73.125000, -6.664608 ], [ -73.125000, -6.489983 ], [ -73.300781, -6.489983 ], [ -73.300781, -6.140555 ], [ -73.125000, -6.140555 ], [ -73.125000, -5.965754 ], [ -72.949219, -5.965754 ], [ -72.949219, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -5.090944 ], [ -72.421875, -5.090944 ], [ -72.421875, -4.915833 ], [ -72.070312, -4.915833 ], [ -72.070312, -4.740675 ], [ -71.718750, -4.740675 ], [ -71.718750, -4.565474 ], [ -71.191406, -4.565474 ], [ -71.191406, -4.390229 ], [ -70.839844, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -3.864255 ], [ -69.785156, -3.864255 ], [ -69.785156, -2.986927 ], [ -69.609375, -2.986927 ], [ -69.609375, -2.108899 ], [ -69.433594, -2.108899 ], [ -69.433594, -0.878872 ], [ -69.609375, -0.878872 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -69.960938, -0.351560 ], [ -69.960938, 0.527336 ], [ -69.609375, 0.527336 ], [ -69.609375, 0.703107 ], [ -69.433594, 0.703107 ], [ -69.433594, 0.527336 ], [ -69.257812, 0.527336 ], [ -69.257812, 0.878872 ], [ -66.445312, 0.878872 ], [ -66.445312, 0.703107 ], [ -65.742188, 0.703107 ], [ -65.742188, 0.878872 ], [ -50.097656, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.238281, -19.311143 ], [ -59.238281, -19.476950 ], [ -58.886719, -19.476950 ], [ -58.886719, -19.642588 ], [ -58.535156, -19.642588 ], [ -58.535156, -19.808054 ], [ -58.183594, -19.808054 ], [ -58.183594, -20.468189 ], [ -58.007812, -20.468189 ], [ -58.007812, -21.943046 ], [ -57.832031, -21.943046 ], [ -57.832031, -22.105999 ], [ -57.304688, -22.105999 ], [ -57.304688, -22.268764 ], [ -56.777344, -22.268764 ], [ -56.777344, -22.105999 ], [ -56.250000, -22.105999 ], [ -56.250000, -22.268764 ], [ -55.898438, -22.268764 ], [ -55.898438, -22.431340 ], [ -55.722656, -22.431340 ], [ -55.722656, -23.079732 ], [ -55.546875, -23.079732 ], [ -55.546875, -23.885838 ], [ -54.843750, -23.885838 ], [ -54.843750, -23.725012 ], [ -54.667969, -23.725012 ], [ -54.667969, -23.885838 ], [ -54.316406, -23.885838 ], [ -54.316406, -24.846565 ], [ -54.492188, -24.846565 ], [ -54.492188, -25.324167 ], [ -54.667969, -25.324167 ], [ -54.667969, -26.115986 ], [ -54.843750, -26.115986 ], [ -54.843750, -26.745610 ], [ -55.019531, -26.745610 ], [ -55.019531, -26.902477 ], [ -55.195312, -26.902477 ], [ -55.195312, -27.059126 ], [ -55.371094, -27.059126 ], [ -55.371094, -27.215556 ], [ -55.546875, -27.215556 ], [ -55.546875, -27.371767 ], [ -56.074219, -27.371767 ], [ -56.074219, -27.527758 ], [ -57.304688, -27.527758 ], [ -57.304688, -27.371767 ], [ -58.007812, -27.371767 ], [ -58.007812, -27.215556 ], [ -58.535156, -27.215556 ], [ -58.535156, -26.745610 ], [ -58.359375, -26.745610 ], [ -58.359375, -26.431228 ], [ -58.183594, -26.431228 ], [ -58.183594, -26.273714 ], [ -58.007812, -26.273714 ], [ -58.007812, -25.958045 ], [ -57.832031, -25.958045 ], [ -57.832031, -25.641526 ], [ -57.656250, -25.641526 ], [ -57.656250, -25.324167 ], [ -57.832031, -25.324167 ], [ -57.832031, -25.005973 ], [ -58.183594, -25.005973 ], [ -58.183594, -24.846565 ], [ -58.710938, -24.846565 ], [ -58.710938, -24.686952 ], [ -59.062500, -24.686952 ], [ -59.062500, -24.527135 ], [ -59.414062, -24.527135 ], [ -59.414062, -24.367114 ], [ -59.589844, -24.367114 ], [ -59.589844, -24.206890 ], [ -59.765625, -24.206890 ], [ -59.765625, -24.046464 ], [ -60.117188, -24.046464 ], [ -60.117188, -23.885838 ], [ -60.644531, -23.885838 ], [ -60.644531, -23.725012 ], [ -61.171875, -23.725012 ], [ -61.171875, -23.563987 ], [ -61.347656, -23.563987 ], [ -61.347656, -23.402765 ], [ -61.523438, -23.402765 ], [ -61.523438, -23.241346 ], [ -61.699219, -23.241346 ], [ -61.699219, -23.079732 ], [ -61.875000, -23.079732 ], [ -61.875000, -22.917923 ], [ -62.050781, -22.917923 ], [ -62.050781, -22.755921 ], [ -62.226562, -22.755921 ], [ -62.226562, -22.593726 ], [ -62.402344, -22.593726 ], [ -62.402344, -22.431340 ], [ -62.578125, -22.431340 ], [ -62.578125, -22.268764 ], [ -62.753906, -22.268764 ], [ -62.753906, -21.943046 ], [ -62.578125, -21.943046 ], [ -62.578125, -21.289374 ], [ -62.402344, -21.289374 ], [ -62.402344, -20.303418 ], [ -62.226562, -20.303418 ], [ -62.226562, -19.973349 ], [ -62.050781, -19.973349 ], [ -62.050781, -19.642588 ], [ -61.875000, -19.642588 ], [ -61.875000, -19.476950 ], [ -60.820312, -19.476950 ], [ -60.820312, -19.311143 ], [ -59.238281, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -19.476950 ], [ -58.710938, -19.476950 ], [ -58.710938, -19.642588 ], [ -58.359375, -19.642588 ], [ -58.359375, -19.808054 ], [ -58.183594, -19.808054 ], [ -58.183594, -20.303418 ], [ -58.007812, -20.303418 ], [ -58.007812, -20.632784 ], [ -57.832031, -20.632784 ], [ -57.832031, -21.453069 ], [ -58.007812, -21.453069 ], [ -58.007812, -22.105999 ], [ -57.656250, -22.105999 ], [ -57.656250, -22.268764 ], [ -56.601562, -22.268764 ], [ -56.601562, -22.105999 ], [ -56.425781, -22.105999 ], [ -56.425781, -22.268764 ], [ -56.074219, -22.268764 ], [ -56.074219, -22.431340 ], [ -55.722656, -22.431340 ], [ -55.722656, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.725012 ], [ -55.371094, -23.725012 ], [ -55.371094, -24.046464 ], [ -54.316406, -24.046464 ], [ -54.316406, -24.846565 ], [ -54.492188, -24.846565 ], [ -54.492188, -25.482951 ], [ -54.667969, -25.482951 ], [ -54.667969, -26.273714 ], [ -54.843750, -26.273714 ], [ -54.843750, -26.745610 ], [ -55.019531, -26.745610 ], [ -55.019531, -26.902477 ], [ -55.195312, -26.902477 ], [ -55.195312, -27.059126 ], [ -55.371094, -27.059126 ], [ -55.371094, -27.215556 ], [ -55.546875, -27.215556 ], [ -55.546875, -27.371767 ], [ -55.898438, -27.371767 ], [ -55.898438, -27.527758 ], [ -57.128906, -27.527758 ], [ -57.128906, -27.371767 ], [ -58.007812, -27.371767 ], [ -58.007812, -27.215556 ], [ -58.359375, -27.215556 ], [ -58.359375, -26.745610 ], [ -58.183594, -26.745610 ], [ -58.183594, -26.431228 ], [ -58.007812, -26.431228 ], [ -58.007812, -26.115986 ], [ -57.832031, -26.115986 ], [ -57.832031, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.482951 ], [ -57.832031, -25.482951 ], [ -57.832031, -25.165173 ], [ -58.183594, -25.165173 ], [ -58.183594, -25.005973 ], [ -58.710938, -25.005973 ], [ -58.710938, -24.846565 ], [ -59.062500, -24.846565 ], [ -59.062500, -24.686952 ], [ -59.238281, -24.686952 ], [ -59.238281, -24.527135 ], [ -59.589844, -24.527135 ], [ -59.589844, -24.367114 ], [ -59.765625, -24.367114 ], [ -59.765625, -24.206890 ], [ -59.941406, -24.206890 ], [ -59.941406, -24.046464 ], [ -60.468750, -24.046464 ], [ -60.468750, -23.885838 ], [ -60.996094, -23.885838 ], [ -60.996094, -23.725012 ], [ -61.171875, -23.725012 ], [ -61.171875, -23.563987 ], [ -61.347656, -23.563987 ], [ -61.347656, -23.402765 ], [ -61.523438, -23.402765 ], [ -61.523438, -23.241346 ], [ -61.699219, -23.241346 ], [ -61.699219, -23.079732 ], [ -62.050781, -23.079732 ], [ -62.050781, -22.917923 ], [ -62.226562, -22.917923 ], [ -62.226562, -22.755921 ], [ -62.402344, -22.755921 ], [ -62.402344, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -22.431340 ], [ -62.753906, -22.431340 ], [ -62.753906, -22.105999 ], [ -62.578125, -22.105999 ], [ -62.578125, -21.779905 ], [ -62.402344, -21.779905 ], [ -62.402344, -21.453069 ], [ -62.226562, -21.453069 ], [ -62.226562, -20.468189 ], [ -62.050781, -20.468189 ], [ -62.050781, -20.138470 ], [ -61.875000, -20.138470 ], [ -61.875000, -19.808054 ], [ -61.699219, -19.808054 ], [ -61.699219, -19.642588 ], [ -61.171875, -19.642588 ], [ -61.171875, -19.476950 ], [ -60.468750, -19.476950 ], [ -60.468750, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.917969, -21.779905 ], [ -65.917969, -21.943046 ], [ -65.039062, -21.943046 ], [ -65.039062, -22.105999 ], [ -64.863281, -22.105999 ], [ -64.863281, -22.431340 ], [ -64.687500, -22.431340 ], [ -64.687500, -22.755921 ], [ -64.335938, -22.755921 ], [ -64.335938, -22.431340 ], [ -64.160156, -22.431340 ], [ -64.160156, -22.105999 ], [ -63.984375, -22.105999 ], [ -63.984375, -21.943046 ], [ -62.929688, -21.943046 ], [ -62.929688, -22.105999 ], [ -62.753906, -22.105999 ], [ -62.753906, -22.268764 ], [ -62.578125, -22.268764 ], [ -62.578125, -22.431340 ], [ -62.402344, -22.431340 ], [ -62.402344, -22.593726 ], [ -62.226562, -22.593726 ], [ -62.226562, -22.755921 ], [ -62.050781, -22.755921 ], [ -62.050781, -22.917923 ], [ -61.875000, -22.917923 ], [ -61.875000, -23.079732 ], [ -61.699219, -23.079732 ], [ -61.699219, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.402765 ], [ -61.347656, -23.402765 ], [ -61.347656, -23.563987 ], [ -61.171875, -23.563987 ], [ -61.171875, -23.725012 ], [ -60.644531, -23.725012 ], [ -60.644531, -23.885838 ], [ -60.117188, -23.885838 ], [ -60.117188, -24.046464 ], [ -59.765625, -24.046464 ], [ -59.765625, -24.206890 ], [ -59.589844, -24.206890 ], [ -59.589844, -24.367114 ], [ -59.414062, -24.367114 ], [ -59.414062, -24.527135 ], [ -59.062500, -24.527135 ], [ -59.062500, -24.686952 ], [ -58.710938, -24.686952 ], [ -58.710938, -24.846565 ], [ -58.183594, -24.846565 ], [ -58.183594, -25.005973 ], [ -57.832031, -25.005973 ], [ -57.832031, -25.324167 ], [ -57.656250, -25.324167 ], [ -57.656250, -25.641526 ], [ -57.832031, -25.641526 ], [ -57.832031, -25.958045 ], [ -58.007812, -25.958045 ], [ -58.007812, -26.273714 ], [ -58.183594, -26.273714 ], [ -58.183594, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -26.745610 ], [ -58.535156, -26.745610 ], [ -58.535156, -27.215556 ], [ -58.007812, -27.215556 ], [ -58.007812, -27.371767 ], [ -57.304688, -27.371767 ], [ -57.304688, -27.527758 ], [ -56.074219, -27.527758 ], [ -56.074219, -27.371767 ], [ -55.546875, -27.371767 ], [ -55.546875, -27.215556 ], [ -55.371094, -27.215556 ], [ -55.371094, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -26.902477 ], [ -55.019531, -26.902477 ], [ -55.019531, -26.745610 ], [ -54.843750, -26.745610 ], [ -54.843750, -26.115986 ], [ -54.667969, -26.115986 ], [ -54.667969, -25.641526 ], [ -54.316406, -25.641526 ], [ -54.316406, -25.482951 ], [ -54.140625, -25.482951 ], [ -54.140625, -25.641526 ], [ -53.964844, -25.641526 ], [ -53.964844, -25.958045 ], [ -53.789062, -25.958045 ], [ -53.789062, -27.059126 ], [ -53.964844, -27.059126 ], [ -53.964844, -27.215556 ], [ -54.316406, -27.215556 ], [ -54.316406, -27.371767 ], [ -54.492188, -27.371767 ], [ -54.492188, -27.527758 ], [ -54.667969, -27.527758 ], [ -54.667969, -27.683528 ], [ -55.019531, -27.683528 ], [ -55.019531, -27.839076 ], [ -55.195312, -27.839076 ], [ -55.195312, -27.994401 ], [ -55.371094, -27.994401 ], [ -55.371094, -28.149503 ], [ -55.546875, -28.149503 ], [ -55.546875, -28.304381 ], [ -55.898438, -28.304381 ], [ -55.898438, -28.459033 ], [ -56.074219, -28.459033 ], [ -56.074219, -28.613459 ], [ -56.250000, -28.613459 ], [ -56.250000, -28.767659 ], [ -56.425781, -28.767659 ], [ -56.425781, -28.921631 ], [ -56.601562, -28.921631 ], [ -56.601562, -29.075375 ], [ -56.777344, -29.075375 ], [ -56.777344, -29.382175 ], [ -56.953125, -29.382175 ], [ -56.953125, -29.535230 ], [ -57.128906, -29.535230 ], [ -57.128906, -29.688053 ], [ -57.304688, -29.688053 ], [ -57.304688, -29.993002 ], [ -57.480469, -29.993002 ], [ -57.480469, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.448674 ], [ -57.832031, -30.448674 ], [ -57.832031, -30.751278 ], [ -58.007812, -30.751278 ], [ -58.007812, -31.503629 ], [ -58.183594, -31.503629 ], [ -58.183594, -33.137551 ], [ -58.359375, -33.137551 ], [ -58.359375, -33.578015 ], [ -58.535156, -33.578015 ], [ -58.535156, -34.452218 ], [ -58.359375, -34.452218 ], [ -58.359375, -34.597042 ], [ -58.183594, -34.597042 ], [ -58.183594, -34.741612 ], [ -57.832031, -34.741612 ], [ -57.832031, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.029996 ], [ -57.480469, -35.029996 ], [ -57.480469, -35.173808 ], [ -57.304688, -35.173808 ], [ -57.304688, -35.603719 ], [ -57.480469, -35.603719 ], [ -57.480469, -36.031332 ], [ -57.304688, -36.031332 ], [ -57.304688, -36.173357 ], [ -56.953125, -36.173357 ], [ -56.953125, -36.315125 ], [ -56.777344, -36.315125 ], [ -56.777344, -36.597889 ], [ -56.953125, -36.597889 ], [ -56.953125, -37.020098 ], [ -57.128906, -37.020098 ], [ -57.128906, -37.300275 ], [ -57.304688, -37.300275 ], [ -57.304688, -37.579413 ], [ -57.480469, -37.579413 ], [ -57.480469, -37.857507 ], [ -57.656250, -37.857507 ], [ -57.656250, -38.134557 ], [ -57.832031, -38.134557 ], [ -57.832031, -38.272689 ], [ -58.183594, -38.272689 ], [ -58.183594, -38.410558 ], [ -58.535156, -38.410558 ], [ -58.535156, -38.548165 ], [ -58.886719, -38.548165 ], [ -58.886719, -38.685510 ], [ -60.117188, -38.685510 ], [ -60.117188, -38.822591 ], [ -62.402344, -38.822591 ], [ -62.402344, -39.095963 ], [ -62.226562, -39.095963 ], [ -62.226562, -39.774769 ], [ -62.402344, -39.774769 ], [ -62.402344, -40.313043 ], [ -62.226562, -40.313043 ], [ -62.226562, -40.713956 ], [ -62.402344, -40.713956 ], [ -62.402344, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -65.039062, -40.847060 ], [ -65.039062, -40.979898 ], [ -65.214844, -40.979898 ], [ -65.214844, -41.376809 ], [ -65.039062, -41.376809 ], [ -65.039062, -41.640078 ], [ -71.894531, -41.640078 ], [ -71.894531, -41.244772 ], [ -72.070312, -41.244772 ], [ -72.070312, -40.580585 ], [ -71.894531, -40.580585 ], [ -71.894531, -40.044438 ], [ -71.718750, -40.044438 ], [ -71.718750, -39.368279 ], [ -71.542969, -39.368279 ], [ -71.542969, -38.822591 ], [ -71.191406, -38.822591 ], [ -71.191406, -38.685510 ], [ -70.839844, -38.685510 ], [ -70.839844, -38.272689 ], [ -71.015625, -38.272689 ], [ -71.015625, -37.718590 ], [ -71.191406, -37.718590 ], [ -71.191406, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -36.456636 ], [ -70.839844, -36.456636 ], [ -70.839844, -36.173357 ], [ -70.664062, -36.173357 ], [ -70.664062, -36.031332 ], [ -70.488281, -36.031332 ], [ -70.488281, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -34.597042 ], [ -70.136719, -34.597042 ], [ -70.136719, -34.307144 ], [ -69.960938, -34.307144 ], [ -69.960938, -33.137551 ], [ -70.136719, -33.137551 ], [ -70.136719, -32.842674 ], [ -70.312500, -32.842674 ], [ -70.312500, -32.249974 ], [ -70.488281, -32.249974 ], [ -70.488281, -31.653381 ], [ -70.664062, -31.653381 ], [ -70.664062, -31.353637 ], [ -70.488281, -31.353637 ], [ -70.488281, -31.052934 ], [ -70.312500, -31.052934 ], [ -70.312500, -30.751278 ], [ -70.136719, -30.751278 ], [ -70.136719, -30.448674 ], [ -69.960938, -30.448674 ], [ -69.960938, -29.840644 ], [ -70.136719, -29.840644 ], [ -70.136719, -29.075375 ], [ -69.960938, -29.075375 ], [ -69.960938, -28.767659 ], [ -69.785156, -28.767659 ], [ -69.785156, -28.459033 ], [ -69.609375, -28.459033 ], [ -69.609375, -28.149503 ], [ -69.433594, -28.149503 ], [ -69.433594, -27.839076 ], [ -69.257812, -27.839076 ], [ -69.257812, -27.527758 ], [ -69.082031, -27.527758 ], [ -69.082031, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.215556 ], [ -68.730469, -27.215556 ], [ -68.730469, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -26.902477 ], [ -68.378906, -26.902477 ], [ -68.378906, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -26.588527 ], [ -68.730469, -26.588527 ], [ -68.730469, -26.273714 ], [ -68.554688, -26.273714 ], [ -68.554688, -24.367114 ], [ -68.203125, -24.367114 ], [ -68.203125, -24.206890 ], [ -67.851562, -24.206890 ], [ -67.851562, -24.046464 ], [ -67.500000, -24.046464 ], [ -67.500000, -23.725012 ], [ -67.324219, -23.725012 ], [ -67.324219, -23.241346 ], [ -67.148438, -23.241346 ], [ -67.148438, -22.593726 ], [ -66.972656, -22.593726 ], [ -66.972656, -22.431340 ], [ -66.796875, -22.431340 ], [ -66.796875, -22.105999 ], [ -66.621094, -22.105999 ], [ -66.621094, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -21.779905 ], [ -65.917969, -21.779905 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, -21.779905 ], [ -66.093750, -21.943046 ], [ -65.390625, -21.943046 ], [ -65.390625, -22.105999 ], [ -65.039062, -22.105999 ], [ -65.039062, -22.268764 ], [ -64.863281, -22.268764 ], [ -64.863281, -22.431340 ], [ -64.687500, -22.431340 ], [ -64.687500, -22.593726 ], [ -64.511719, -22.593726 ], [ -64.511719, -22.755921 ], [ -64.335938, -22.755921 ], [ -64.335938, -22.593726 ], [ -64.160156, -22.593726 ], [ -64.160156, -22.268764 ], [ -63.984375, -22.268764 ], [ -63.984375, -21.943046 ], [ -63.632812, -21.943046 ], [ -63.632812, -22.105999 ], [ -62.929688, -22.105999 ], [ -62.929688, -22.268764 ], [ -62.753906, -22.268764 ], [ -62.753906, -22.431340 ], [ -62.578125, -22.431340 ], [ -62.578125, -22.593726 ], [ -62.402344, -22.593726 ], [ -62.402344, -22.755921 ], [ -62.226562, -22.755921 ], [ -62.226562, -22.917923 ], [ -62.050781, -22.917923 ], [ -62.050781, -23.079732 ], [ -61.699219, -23.079732 ], [ -61.699219, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.402765 ], [ -61.347656, -23.402765 ], [ -61.347656, -23.563987 ], [ -61.171875, -23.563987 ], [ -61.171875, -23.725012 ], [ -60.996094, -23.725012 ], [ -60.996094, -23.885838 ], [ -60.468750, -23.885838 ], [ -60.468750, -24.046464 ], [ -59.941406, -24.046464 ], [ -59.941406, -24.206890 ], [ -59.765625, -24.206890 ], [ -59.765625, -24.367114 ], [ -59.589844, -24.367114 ], [ -59.589844, -24.527135 ], [ -59.238281, -24.527135 ], [ -59.238281, -24.686952 ], [ -59.062500, -24.686952 ], [ -59.062500, -24.846565 ], [ -58.710938, -24.846565 ], [ -58.710938, -25.005973 ], [ -58.183594, -25.005973 ], [ -58.183594, -25.165173 ], [ -57.832031, -25.165173 ], [ -57.832031, -25.482951 ], [ -57.656250, -25.482951 ], [ -57.656250, -25.799891 ], [ -57.832031, -25.799891 ], [ -57.832031, -26.115986 ], [ -58.007812, -26.115986 ], [ -58.007812, -26.431228 ], [ -58.183594, -26.431228 ], [ -58.183594, -26.745610 ], [ -58.359375, -26.745610 ], [ -58.359375, -27.215556 ], [ -58.007812, -27.215556 ], [ -58.007812, -27.371767 ], [ -57.128906, -27.371767 ], [ -57.128906, -27.527758 ], [ -55.898438, -27.527758 ], [ -55.898438, -27.371767 ], [ -55.546875, -27.371767 ], [ -55.546875, -27.215556 ], [ -55.371094, -27.215556 ], [ -55.371094, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -26.902477 ], [ -55.019531, -26.902477 ], [ -55.019531, -26.745610 ], [ -54.843750, -26.745610 ], [ -54.843750, -26.273714 ], [ -54.667969, -26.273714 ], [ -54.667969, -25.799891 ], [ -54.492188, -25.799891 ], [ -54.492188, -25.641526 ], [ -53.964844, -25.641526 ], [ -53.964844, -25.799891 ], [ -53.789062, -25.799891 ], [ -53.789062, -26.115986 ], [ -53.613281, -26.115986 ], [ -53.613281, -27.059126 ], [ -53.789062, -27.059126 ], [ -53.789062, -27.215556 ], [ -54.140625, -27.215556 ], [ -54.140625, -27.371767 ], [ -54.316406, -27.371767 ], [ -54.316406, -27.527758 ], [ -54.492188, -27.527758 ], [ -54.492188, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -27.839076 ], [ -55.195312, -27.839076 ], [ -55.195312, -27.994401 ], [ -55.371094, -27.994401 ], [ -55.371094, -28.149503 ], [ -55.546875, -28.149503 ], [ -55.546875, -28.304381 ], [ -55.722656, -28.304381 ], [ -55.722656, -28.613459 ], [ -55.898438, -28.613459 ], [ -55.898438, -28.767659 ], [ -56.074219, -28.767659 ], [ -56.074219, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.075375 ], [ -56.425781, -29.075375 ], [ -56.425781, -29.228890 ], [ -56.601562, -29.228890 ], [ -56.601562, -29.382175 ], [ -56.777344, -29.382175 ], [ -56.777344, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -29.688053 ], [ -57.128906, -29.688053 ], [ -57.128906, -29.840644 ], [ -57.304688, -29.840644 ], [ -57.304688, -29.993002 ], [ -57.480469, -29.993002 ], [ -57.480469, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.600094 ], [ -57.832031, -30.600094 ], [ -57.832031, -31.353637 ], [ -58.007812, -31.353637 ], [ -58.007812, -31.952162 ], [ -58.183594, -31.952162 ], [ -58.183594, -33.137551 ], [ -58.359375, -33.137551 ], [ -58.359375, -34.161818 ], [ -58.535156, -34.161818 ], [ -58.535156, -34.597042 ], [ -58.359375, -34.597042 ], [ -58.359375, -34.741612 ], [ -58.183594, -34.741612 ], [ -58.183594, -34.885931 ], [ -57.832031, -34.885931 ], [ -57.832031, -35.029996 ], [ -57.656250, -35.029996 ], [ -57.656250, -35.173808 ], [ -57.480469, -35.173808 ], [ -57.480469, -35.317366 ], [ -57.304688, -35.317366 ], [ -57.304688, -36.173357 ], [ -57.128906, -36.173357 ], [ -57.128906, -36.315125 ], [ -56.953125, -36.315125 ], [ -56.953125, -36.456636 ], [ -56.777344, -36.456636 ], [ -56.777344, -37.020098 ], [ -56.953125, -37.020098 ], [ -56.953125, -37.300275 ], [ -57.128906, -37.300275 ], [ -57.128906, -37.439974 ], [ -57.304688, -37.439974 ], [ -57.304688, -37.718590 ], [ -57.480469, -37.718590 ], [ -57.480469, -37.857507 ], [ -57.656250, -37.857507 ], [ -57.656250, -38.134557 ], [ -57.832031, -38.134557 ], [ -57.832031, -38.272689 ], [ -58.183594, -38.272689 ], [ -58.183594, -38.410558 ], [ -58.535156, -38.410558 ], [ -58.535156, -38.548165 ], [ -58.886719, -38.548165 ], [ -58.886719, -38.685510 ], [ -59.589844, -38.685510 ], [ -59.589844, -38.822591 ], [ -60.644531, -38.822591 ], [ -60.644531, -38.959409 ], [ -61.875000, -38.959409 ], [ -61.875000, -38.822591 ], [ -62.402344, -38.822591 ], [ -62.402344, -38.959409 ], [ -62.226562, -38.959409 ], [ -62.226562, -39.232253 ], [ -62.050781, -39.232253 ], [ -62.050781, -39.639538 ], [ -62.226562, -39.639538 ], [ -62.226562, -40.044438 ], [ -62.402344, -40.044438 ], [ -62.402344, -40.446947 ], [ -62.226562, -40.446947 ], [ -62.226562, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -64.687500, -40.847060 ], [ -64.687500, -40.979898 ], [ -64.863281, -40.979898 ], [ -64.863281, -41.112469 ], [ -65.039062, -41.112469 ], [ -65.039062, -41.640078 ], [ -71.894531, -41.640078 ], [ -71.894531, -40.313043 ], [ -71.718750, -40.313043 ], [ -71.718750, -39.639538 ], [ -71.542969, -39.639538 ], [ -71.542969, -39.232253 ], [ -71.367188, -39.232253 ], [ -71.367188, -38.959409 ], [ -71.191406, -38.959409 ], [ -71.191406, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -38.685510 ], [ -70.839844, -38.685510 ], [ -70.839844, -38.410558 ], [ -71.015625, -38.410558 ], [ -71.015625, -37.857507 ], [ -71.191406, -37.857507 ], [ -71.191406, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -36.456636 ], [ -70.839844, -36.456636 ], [ -70.839844, -36.315125 ], [ -70.488281, -36.315125 ], [ -70.488281, -36.173357 ], [ -70.312500, -36.173357 ], [ -70.312500, -35.029996 ], [ -70.136719, -35.029996 ], [ -70.136719, -34.741612 ], [ -69.960938, -34.741612 ], [ -69.960938, -34.452218 ], [ -69.785156, -34.452218 ], [ -69.785156, -33.284620 ], [ -70.136719, -33.284620 ], [ -70.136719, -32.694866 ], [ -70.312500, -32.694866 ], [ -70.312500, -31.802893 ], [ -70.488281, -31.802893 ], [ -70.488281, -31.203405 ], [ -70.312500, -31.203405 ], [ -70.312500, -30.902225 ], [ -70.136719, -30.902225 ], [ -70.136719, -30.600094 ], [ -69.960938, -30.600094 ], [ -69.960938, -29.228890 ], [ -69.785156, -29.228890 ], [ -69.785156, -28.767659 ], [ -69.609375, -28.767659 ], [ -69.609375, -28.304381 ], [ -69.433594, -28.304381 ], [ -69.433594, -27.994401 ], [ -69.257812, -27.994401 ], [ -69.257812, -27.683528 ], [ -69.082031, -27.683528 ], [ -69.082031, -27.527758 ], [ -68.906250, -27.527758 ], [ -68.906250, -27.371767 ], [ -68.730469, -27.371767 ], [ -68.730469, -27.215556 ], [ -68.554688, -27.215556 ], [ -68.554688, -27.059126 ], [ -68.378906, -27.059126 ], [ -68.378906, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -26.273714 ], [ -68.378906, -26.273714 ], [ -68.378906, -24.527135 ], [ -68.027344, -24.527135 ], [ -68.027344, -24.367114 ], [ -67.675781, -24.367114 ], [ -67.675781, -24.206890 ], [ -67.324219, -24.206890 ], [ -67.324219, -23.885838 ], [ -67.148438, -23.885838 ], [ -67.148438, -23.241346 ], [ -66.972656, -23.241346 ], [ -66.972656, -22.917923 ], [ -67.148438, -22.917923 ], [ -67.148438, -22.755921 ], [ -66.972656, -22.755921 ], [ -66.972656, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -22.268764 ], [ -66.621094, -22.268764 ], [ -66.621094, -22.105999 ], [ -66.445312, -22.105999 ], [ -66.445312, -21.943046 ], [ -66.269531, -21.943046 ], [ -66.269531, -21.779905 ], [ -66.093750, -21.779905 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.297018 ], [ -56.777344, -30.297018 ], [ -56.777344, -30.448674 ], [ -56.601562, -30.448674 ], [ -56.601562, -30.600094 ], [ -56.250000, -30.600094 ], [ -56.250000, -30.751278 ], [ -56.074219, -30.751278 ], [ -56.074219, -30.902225 ], [ -55.546875, -30.902225 ], [ -55.546875, -31.052934 ], [ -55.195312, -31.052934 ], [ -55.195312, -31.203405 ], [ -55.019531, -31.203405 ], [ -55.019531, -31.353637 ], [ -54.667969, -31.353637 ], [ -54.667969, -31.503629 ], [ -54.492188, -31.503629 ], [ -54.492188, -31.653381 ], [ -54.316406, -31.653381 ], [ -54.316406, -31.802893 ], [ -54.140625, -31.802893 ], [ -54.140625, -31.952162 ], [ -53.964844, -31.952162 ], [ -53.964844, -32.101190 ], [ -53.789062, -32.101190 ], [ -53.789062, -32.249974 ], [ -53.613281, -32.249974 ], [ -53.613281, -32.398516 ], [ -53.437500, -32.398516 ], [ -53.437500, -32.694866 ], [ -53.261719, -32.694866 ], [ -53.261719, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -33.137551 ], [ -53.613281, -33.137551 ], [ -53.613281, -33.431441 ], [ -53.437500, -33.431441 ], [ -53.437500, -34.016242 ], [ -53.613281, -34.016242 ], [ -53.613281, -34.307144 ], [ -53.789062, -34.307144 ], [ -53.789062, -34.452218 ], [ -53.964844, -34.452218 ], [ -53.964844, -34.597042 ], [ -54.316406, -34.597042 ], [ -54.316406, -34.741612 ], [ -54.667969, -34.741612 ], [ -54.667969, -34.885931 ], [ -55.546875, -34.885931 ], [ -55.546875, -34.741612 ], [ -55.898438, -34.741612 ], [ -55.898438, -34.885931 ], [ -56.425781, -34.885931 ], [ -56.425781, -34.741612 ], [ -56.777344, -34.741612 ], [ -56.777344, -34.597042 ], [ -57.128906, -34.597042 ], [ -57.128906, -34.452218 ], [ -58.007812, -34.452218 ], [ -58.007812, -34.161818 ], [ -58.183594, -34.161818 ], [ -58.183594, -34.016242 ], [ -58.359375, -34.016242 ], [ -58.359375, -33.137551 ], [ -58.183594, -33.137551 ], [ -58.183594, -31.952162 ], [ -58.007812, -31.952162 ], [ -58.007812, -31.353637 ], [ -57.832031, -31.353637 ], [ -57.832031, -30.600094 ], [ -57.656250, -30.600094 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.128906, -29.993002 ], [ -57.128906, -30.145127 ], [ -56.953125, -30.145127 ], [ -56.953125, -30.297018 ], [ -56.777344, -30.297018 ], [ -56.777344, -30.448674 ], [ -56.425781, -30.448674 ], [ -56.425781, -30.600094 ], [ -56.250000, -30.600094 ], [ -56.250000, -30.751278 ], [ -55.722656, -30.751278 ], [ -55.722656, -30.902225 ], [ -55.371094, -30.902225 ], [ -55.371094, -31.052934 ], [ -55.195312, -31.052934 ], [ -55.195312, -31.203405 ], [ -54.843750, -31.203405 ], [ -54.843750, -31.353637 ], [ -54.667969, -31.353637 ], [ -54.667969, -31.503629 ], [ -54.492188, -31.503629 ], [ -54.492188, -31.653381 ], [ -54.140625, -31.653381 ], [ -54.140625, -31.802893 ], [ -53.964844, -31.802893 ], [ -53.964844, -31.952162 ], [ -53.789062, -31.952162 ], [ -53.789062, -32.101190 ], [ -53.613281, -32.101190 ], [ -53.613281, -32.398516 ], [ -53.437500, -32.398516 ], [ -53.437500, -32.694866 ], [ -53.261719, -32.694866 ], [ -53.261719, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -32.990236 ], [ -53.613281, -32.990236 ], [ -53.613281, -33.137551 ], [ -53.789062, -33.137551 ], [ -53.789062, -33.284620 ], [ -53.613281, -33.284620 ], [ -53.613281, -33.578015 ], [ -53.437500, -33.578015 ], [ -53.437500, -33.870416 ], [ -53.613281, -33.870416 ], [ -53.613281, -34.016242 ], [ -53.789062, -34.016242 ], [ -53.789062, -34.307144 ], [ -53.964844, -34.307144 ], [ -53.964844, -34.452218 ], [ -54.316406, -34.452218 ], [ -54.316406, -34.597042 ], [ -54.492188, -34.597042 ], [ -54.492188, -34.741612 ], [ -54.843750, -34.741612 ], [ -54.843750, -34.885931 ], [ -55.546875, -34.885931 ], [ -55.546875, -34.741612 ], [ -56.601562, -34.741612 ], [ -56.601562, -34.597042 ], [ -56.953125, -34.597042 ], [ -56.953125, -34.452218 ], [ -57.304688, -34.452218 ], [ -57.304688, -34.307144 ], [ -57.480469, -34.307144 ], [ -57.480469, -34.452218 ], [ -58.007812, -34.452218 ], [ -58.007812, -34.307144 ], [ -58.183594, -34.307144 ], [ -58.183594, -34.161818 ], [ -58.359375, -34.161818 ], [ -58.359375, -34.016242 ], [ -58.535156, -34.016242 ], [ -58.535156, -33.578015 ], [ -58.359375, -33.578015 ], [ -58.359375, -33.137551 ], [ -58.183594, -33.137551 ], [ -58.183594, -31.503629 ], [ -58.007812, -31.503629 ], [ -58.007812, -30.751278 ], [ -57.832031, -30.751278 ], [ -57.832031, -30.448674 ], [ -57.656250, -30.448674 ], [ -57.656250, -30.145127 ], [ -57.304688, -30.145127 ], [ -57.304688, -29.993002 ], [ -57.128906, -29.993002 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.816406, 38.134557 ], [ -76.816406, 37.996163 ], [ -76.464844, 37.996163 ], [ -76.464844, 37.857507 ], [ -76.289062, 37.857507 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 36.031332 ], [ -75.761719, 36.031332 ], [ -75.761719, 35.460670 ], [ -75.937500, 35.460670 ], [ -75.937500, 35.173808 ], [ -76.113281, 35.173808 ], [ -76.113281, 34.885931 ], [ -76.289062, 34.885931 ], [ -76.289062, 34.741612 ], [ -76.464844, 34.741612 ], [ -76.464844, 34.597042 ], [ -76.992188, 34.597042 ], [ -76.992188, 34.452218 ], [ -77.343750, 34.452218 ], [ -77.343750, 34.307144 ], [ -77.519531, 34.307144 ], [ -77.519531, 34.161818 ], [ -77.695312, 34.161818 ], [ -77.695312, 34.016242 ], [ -77.871094, 34.016242 ], [ -77.871094, 33.870416 ], [ -78.574219, 33.870416 ], [ -78.574219, 33.724340 ], [ -78.750000, 33.724340 ], [ -78.750000, 33.578015 ], [ -78.925781, 33.578015 ], [ -78.925781, 33.431441 ], [ -79.101562, 33.431441 ], [ -79.101562, 33.284620 ], [ -79.277344, 33.284620 ], [ -79.277344, 32.990236 ], [ -79.628906, 32.990236 ], [ -79.628906, 32.842674 ], [ -79.804688, 32.842674 ], [ -79.804688, 32.694866 ], [ -80.156250, 32.694866 ], [ -80.156250, 32.546813 ], [ -80.332031, 32.546813 ], [ -80.332031, 32.398516 ], [ -80.507812, 32.398516 ], [ -80.507812, 32.249974 ], [ -80.683594, 32.249974 ], [ -80.683594, 32.101190 ], [ -80.859375, 32.101190 ], [ -80.859375, 31.952162 ], [ -81.035156, 31.952162 ], [ -81.035156, 31.802893 ], [ -81.210938, 31.802893 ], [ -81.210938, 31.503629 ], [ -81.386719, 31.503629 ], [ -81.386719, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.297018 ], [ -81.386719, 30.297018 ], [ -81.386719, 29.688053 ], [ -81.210938, 29.688053 ], [ -81.210938, 29.382175 ], [ -81.035156, 29.382175 ], [ -81.035156, 29.075375 ], [ -80.859375, 29.075375 ], [ -80.859375, 28.767659 ], [ -80.683594, 28.767659 ], [ -80.683594, 28.459033 ], [ -80.507812, 28.459033 ], [ -80.507812, 27.683528 ], [ -80.332031, 27.683528 ], [ -80.332031, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 27.059126 ], [ -79.980469, 27.059126 ], [ -79.980469, 26.588527 ], [ -80.156250, 26.588527 ], [ -80.156250, 25.482951 ], [ -80.332031, 25.482951 ], [ -80.332031, 25.005973 ], [ -81.035156, 25.005973 ], [ -81.035156, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.324167 ], [ -81.386719, 25.324167 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.641526 ], [ -81.738281, 25.958045 ], [ -81.914062, 25.958045 ], [ -81.914062, 26.273714 ], [ -82.089844, 26.273714 ], [ -82.089844, 26.588527 ], [ -82.265625, 26.588527 ], [ -82.265625, 26.745610 ], [ -82.441406, 26.745610 ], [ -82.441406, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.371767 ], [ -82.792969, 27.371767 ], [ -82.792969, 28.149503 ], [ -82.617188, 28.149503 ], [ -82.617188, 28.613459 ], [ -82.792969, 28.613459 ], [ -82.792969, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.075375 ], [ -83.144531, 29.075375 ], [ -83.144531, 29.382175 ], [ -83.320312, 29.382175 ], [ -83.320312, 29.535230 ], [ -83.496094, 29.535230 ], [ -83.496094, 29.840644 ], [ -83.671875, 29.840644 ], [ -83.671875, 29.993002 ], [ -84.375000, 29.993002 ], [ -84.375000, 29.840644 ], [ -84.726562, 29.840644 ], [ -84.726562, 29.688053 ], [ -85.429688, 29.688053 ], [ -85.429688, 29.840644 ], [ -85.605469, 29.840644 ], [ -85.605469, 29.993002 ], [ -85.781250, 29.993002 ], [ -85.781250, 30.145127 ], [ -86.132812, 30.145127 ], [ -86.132812, 30.297018 ], [ -86.484375, 30.297018 ], [ -86.484375, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.297018 ], [ -88.066406, 30.297018 ], [ -88.066406, 30.448674 ], [ -88.593750, 30.448674 ], [ -88.593750, 30.297018 ], [ -89.296875, 30.297018 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.993002 ], [ -89.472656, 29.993002 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.000000, 29.228890 ], [ -90.000000, 29.075375 ], [ -90.878906, 29.075375 ], [ -90.878906, 41.640078 ], [ -70.136719, 41.640078 ], [ -70.136719, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -71.894531, 41.376809 ], [ -71.894531, 41.244772 ], [ -72.949219, 41.244772 ], [ -72.949219, 41.112469 ], [ -73.300781, 41.112469 ], [ -73.300781, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.112469 ], [ -72.246094, 41.112469 ], [ -72.246094, 40.979898 ], [ -72.070312, 40.979898 ], [ -72.070312, 40.847060 ], [ -72.421875, 40.847060 ], [ -72.421875, 40.713956 ], [ -72.949219, 40.713956 ], [ -72.949219, 40.580585 ], [ -74.179688, 40.580585 ], [ -74.179688, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.044438 ], [ -74.179688, 40.044438 ], [ -74.179688, 39.639538 ], [ -74.355469, 39.639538 ], [ -74.355469, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 39.232253 ], [ -74.707031, 39.232253 ], [ -74.707031, 38.959409 ], [ -74.882812, 38.959409 ], [ -74.882812, 39.095963 ], [ -75.058594, 39.095963 ], [ -75.058594, 39.232253 ], [ -75.410156, 39.232253 ], [ -75.410156, 39.095963 ], [ -75.234375, 39.095963 ], [ -75.234375, 38.822591 ], [ -75.058594, 38.822591 ], [ -75.058594, 38.272689 ], [ -75.234375, 38.272689 ], [ -75.234375, 37.996163 ], [ -75.410156, 37.996163 ], [ -75.410156, 37.857507 ], [ -75.585938, 37.857507 ], [ -75.585938, 37.579413 ], [ -75.761719, 37.579413 ], [ -75.761719, 37.300275 ], [ -75.937500, 37.300275 ], [ -75.937500, 37.160317 ], [ -76.113281, 37.160317 ], [ -76.113281, 37.439974 ], [ -75.937500, 37.439974 ], [ -75.937500, 37.718590 ], [ -75.761719, 37.718590 ], [ -75.761719, 37.996163 ], [ -75.937500, 37.996163 ], [ -75.937500, 38.134557 ], [ -76.289062, 38.134557 ], [ -76.816406, 38.134557 ] ], [ [ -76.464844, 38.822591 ], [ -76.464844, 38.410558 ], [ -76.289062, 38.410558 ], [ -76.289062, 38.822591 ], [ -76.464844, 38.822591 ] ], [ [ -76.816406, 38.134557 ], [ -76.816406, 38.272689 ], [ -76.992188, 38.272689 ], [ -76.992188, 38.134557 ], [ -76.816406, 38.134557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, 41.640078 ], [ -70.312500, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -72.597656, 41.376809 ], [ -72.597656, 41.244772 ], [ -72.246094, 41.244772 ], [ -72.246094, 41.112469 ], [ -72.070312, 41.112469 ], [ -72.070312, 40.979898 ], [ -72.246094, 40.979898 ], [ -72.246094, 40.847060 ], [ -72.949219, 40.847060 ], [ -72.949219, 40.713956 ], [ -74.179688, 40.713956 ], [ -74.179688, 40.580585 ], [ -74.355469, 40.580585 ], [ -74.355469, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.044438 ], [ -74.179688, 40.044438 ], [ -74.179688, 39.639538 ], [ -74.355469, 39.639538 ], [ -74.355469, 39.504041 ], [ -74.531250, 39.504041 ], [ -74.531250, 39.368279 ], [ -74.707031, 39.368279 ], [ -74.707031, 39.095963 ], [ -74.882812, 39.095963 ], [ -74.882812, 38.959409 ], [ -75.058594, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.234375, 39.232253 ], [ -75.234375, 39.368279 ], [ -75.585938, 39.368279 ], [ -75.585938, 39.232253 ], [ -75.410156, 39.232253 ], [ -75.410156, 38.822591 ], [ -75.234375, 38.822591 ], [ -75.234375, 38.548165 ], [ -75.058594, 38.548165 ], [ -75.058594, 38.272689 ], [ -75.234375, 38.272689 ], [ -75.234375, 38.134557 ], [ -75.410156, 38.134557 ], [ -75.410156, 37.996163 ], [ -75.585938, 37.996163 ], [ -75.585938, 37.718590 ], [ -75.761719, 37.718590 ], [ -75.761719, 37.996163 ], [ -75.937500, 37.996163 ], [ -75.937500, 38.134557 ], [ -76.113281, 38.134557 ], [ -76.113281, 38.272689 ], [ -76.289062, 38.272689 ], [ -76.289062, 38.822591 ], [ -76.464844, 38.822591 ], [ -76.464844, 38.959409 ], [ -76.640625, 38.959409 ], [ -76.640625, 38.410558 ], [ -76.464844, 38.410558 ], [ -76.464844, 38.134557 ], [ -76.640625, 38.134557 ], [ -76.640625, 37.996163 ], [ -76.464844, 37.996163 ], [ -76.464844, 37.439974 ], [ -76.289062, 37.439974 ], [ -76.289062, 37.020098 ], [ -76.113281, 37.020098 ], [ -76.113281, 36.738884 ], [ -75.937500, 36.738884 ], [ -75.937500, 36.031332 ], [ -75.761719, 36.031332 ], [ -75.761719, 35.460670 ], [ -75.937500, 35.460670 ], [ -75.937500, 35.317366 ], [ -76.113281, 35.317366 ], [ -76.113281, 35.029996 ], [ -76.289062, 35.029996 ], [ -76.289062, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.741612 ], [ -77.167969, 34.741612 ], [ -77.167969, 34.597042 ], [ -77.519531, 34.597042 ], [ -77.519531, 34.452218 ], [ -77.695312, 34.452218 ], [ -77.695312, 34.307144 ], [ -77.871094, 34.307144 ], [ -77.871094, 34.161818 ], [ -78.046875, 34.161818 ], [ -78.046875, 34.016242 ], [ -78.222656, 34.016242 ], [ -78.222656, 33.870416 ], [ -78.574219, 33.870416 ], [ -78.574219, 33.724340 ], [ -78.925781, 33.724340 ], [ -78.925781, 33.578015 ], [ -79.101562, 33.578015 ], [ -79.101562, 33.431441 ], [ -79.277344, 33.431441 ], [ -79.277344, 33.137551 ], [ -79.453125, 33.137551 ], [ -79.453125, 32.990236 ], [ -79.628906, 32.990236 ], [ -79.628906, 32.842674 ], [ -79.980469, 32.842674 ], [ -79.980469, 32.694866 ], [ -80.156250, 32.694866 ], [ -80.156250, 32.546813 ], [ -80.332031, 32.546813 ], [ -80.332031, 32.398516 ], [ -80.507812, 32.398516 ], [ -80.507812, 32.249974 ], [ -80.859375, 32.249974 ], [ -80.859375, 32.101190 ], [ -81.035156, 32.101190 ], [ -81.035156, 31.952162 ], [ -81.210938, 31.952162 ], [ -81.210938, 31.653381 ], [ -81.386719, 31.653381 ], [ -81.386719, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.448674 ], [ -81.386719, 30.448674 ], [ -81.386719, 29.840644 ], [ -81.210938, 29.840644 ], [ -81.210938, 29.382175 ], [ -81.035156, 29.382175 ], [ -81.035156, 29.075375 ], [ -80.859375, 29.075375 ], [ -80.859375, 28.767659 ], [ -80.683594, 28.767659 ], [ -80.683594, 27.839076 ], [ -80.507812, 27.839076 ], [ -80.507812, 27.527758 ], [ -80.332031, 27.527758 ], [ -80.332031, 27.059126 ], [ -80.156250, 27.059126 ], [ -80.156250, 25.799891 ], [ -80.332031, 25.799891 ], [ -80.332031, 25.482951 ], [ -80.507812, 25.482951 ], [ -80.507812, 25.165173 ], [ -81.035156, 25.165173 ], [ -81.035156, 25.324167 ], [ -81.210938, 25.324167 ], [ -81.210938, 25.482951 ], [ -81.386719, 25.482951 ], [ -81.386719, 25.641526 ], [ -81.562500, 25.641526 ], [ -81.562500, 25.799891 ], [ -81.738281, 25.799891 ], [ -81.738281, 25.958045 ], [ -81.914062, 25.958045 ], [ -81.914062, 26.273714 ], [ -82.089844, 26.273714 ], [ -82.089844, 26.588527 ], [ -82.265625, 26.588527 ], [ -82.265625, 26.745610 ], [ -82.441406, 26.745610 ], [ -82.441406, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.371767 ], [ -82.792969, 27.371767 ], [ -82.792969, 27.683528 ], [ -82.968750, 27.683528 ], [ -82.968750, 28.304381 ], [ -82.792969, 28.304381 ], [ -82.792969, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.228890 ], [ -83.144531, 29.228890 ], [ -83.144531, 29.382175 ], [ -83.320312, 29.382175 ], [ -83.320312, 29.535230 ], [ -83.496094, 29.535230 ], [ -83.496094, 29.688053 ], [ -83.671875, 29.688053 ], [ -83.671875, 29.840644 ], [ -83.847656, 29.840644 ], [ -83.847656, 29.993002 ], [ -84.550781, 29.993002 ], [ -84.550781, 29.840644 ], [ -84.902344, 29.840644 ], [ -84.902344, 29.688053 ], [ -85.429688, 29.688053 ], [ -85.429688, 29.840644 ], [ -85.605469, 29.840644 ], [ -85.605469, 30.145127 ], [ -85.781250, 30.145127 ], [ -85.781250, 30.297018 ], [ -86.308594, 30.297018 ], [ -86.308594, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.297018 ], [ -88.066406, 30.297018 ], [ -88.066406, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.297018 ], [ -89.648438, 30.297018 ], [ -89.648438, 30.145127 ], [ -89.472656, 30.145127 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.878906, 29.228890 ], [ -90.878906, 41.640078 ], [ -70.312500, 41.640078 ] ], [ [ -76.992188, 38.272689 ], [ -76.992188, 38.134557 ], [ -76.816406, 38.134557 ], [ -76.816406, 38.272689 ], [ -76.992188, 38.272689 ] ], [ [ -73.300781, 41.112469 ], [ -73.476562, 41.112469 ], [ -73.476562, 40.979898 ], [ -73.300781, 40.979898 ], [ -73.300781, 41.112469 ] ], [ [ -72.597656, 41.244772 ], [ -73.125000, 41.244772 ], [ -73.125000, 41.112469 ], [ -72.597656, 41.112469 ], [ -72.597656, 41.244772 ] ] ], [ [ [ -75.761719, 37.718590 ], [ -75.761719, 37.439974 ], [ -75.937500, 37.439974 ], [ -75.937500, 37.718590 ], [ -75.761719, 37.718590 ] ] ], [ [ [ -75.937500, 37.439974 ], [ -75.937500, 37.300275 ], [ -76.113281, 37.300275 ], [ -76.113281, 37.439974 ], [ -75.937500, 37.439974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.527344, 16.467695 ], [ -90.527344, 16.130262 ], [ -90.878906, 16.130262 ], [ -90.878906, 16.636192 ] ] ], [ [ [ -87.011719, 21.453069 ], [ -86.835938, 21.453069 ], [ -86.835938, 20.632784 ], [ -87.011719, 20.632784 ], [ -87.011719, 20.468189 ], [ -87.187500, 20.468189 ], [ -87.187500, 20.303418 ], [ -87.363281, 20.303418 ], [ -87.363281, 19.973349 ], [ -87.539062, 19.973349 ], [ -87.539062, 19.476950 ], [ -87.363281, 19.476950 ], [ -87.363281, 19.145168 ], [ -87.539062, 19.145168 ], [ -87.539062, 18.812718 ], [ -87.714844, 18.812718 ], [ -87.714844, 18.479609 ], [ -87.890625, 18.479609 ], [ -87.890625, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.066406, 18.479609 ], [ -88.417969, 18.479609 ], [ -88.417969, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 17.978733 ], [ -88.769531, 17.978733 ], [ -88.769531, 17.811456 ], [ -88.945312, 17.811456 ], [ -88.945312, 17.978733 ], [ -89.121094, 17.978733 ], [ -89.121094, 17.811456 ], [ -90.878906, 17.811456 ], [ -90.878906, 19.145168 ], [ -90.703125, 19.145168 ], [ -90.703125, 19.476950 ], [ -90.527344, 19.476950 ], [ -90.527344, 20.797201 ], [ -90.351562, 20.797201 ], [ -90.351562, 20.961440 ], [ -90.000000, 20.961440 ], [ -90.000000, 21.125498 ], [ -89.648438, 21.125498 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.453069 ], [ -87.187500, 21.453069 ], [ -87.187500, 21.616579 ], [ -87.011719, 21.616579 ], [ -87.011719, 21.453069 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.527344, 16.467695 ], [ -90.527344, 16.130262 ], [ -90.878906, 16.130262 ], [ -90.878906, 16.636192 ] ] ], [ [ [ -87.187500, 21.616579 ], [ -87.187500, 21.453069 ], [ -86.835938, 21.453069 ], [ -86.835938, 21.125498 ], [ -87.011719, 21.125498 ], [ -87.011719, 20.797201 ], [ -87.187500, 20.797201 ], [ -87.187500, 20.632784 ], [ -87.363281, 20.632784 ], [ -87.363281, 20.303418 ], [ -87.539062, 20.303418 ], [ -87.539062, 19.973349 ], [ -87.714844, 19.973349 ], [ -87.714844, 19.642588 ], [ -87.539062, 19.642588 ], [ -87.539062, 19.311143 ], [ -87.714844, 19.311143 ], [ -87.714844, 18.646245 ], [ -87.890625, 18.646245 ], [ -87.890625, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.066406, 18.479609 ], [ -88.242188, 18.479609 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.479609 ], [ -88.769531, 18.479609 ], [ -88.769531, 18.145852 ], [ -88.945312, 18.145852 ], [ -88.945312, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.811456 ], [ -89.824219, 17.811456 ], [ -89.824219, 17.978733 ], [ -90.878906, 17.978733 ], [ -90.878906, 19.642588 ], [ -90.703125, 19.642588 ], [ -90.703125, 20.303418 ], [ -90.527344, 20.303418 ], [ -90.527344, 20.961440 ], [ -90.351562, 20.961440 ], [ -90.351562, 21.125498 ], [ -89.824219, 21.125498 ], [ -89.824219, 21.289374 ], [ -89.296875, 21.289374 ], [ -89.296875, 21.453069 ], [ -88.769531, 21.453069 ], [ -88.769531, 21.616579 ], [ -87.187500, 21.616579 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.811456 ], [ -89.121094, 16.467695 ], [ -89.296875, 16.467695 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.792254 ], [ -88.769531, 15.792254 ], [ -88.769531, 15.623037 ], [ -88.593750, 15.623037 ], [ -88.593750, 15.792254 ], [ -88.242188, 15.792254 ], [ -88.242188, 15.623037 ], [ -88.417969, 15.623037 ], [ -88.417969, 15.284185 ], [ -88.769531, 15.284185 ], [ -88.769531, 15.114553 ], [ -89.121094, 15.114553 ], [ -89.121094, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.774883 ], [ -89.121094, 14.774883 ], [ -89.121094, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.472656, 14.264383 ], [ -89.472656, 14.093957 ], [ -89.648438, 14.093957 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 17.811456 ], [ -89.121094, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.824219, 17.978733 ], [ -89.824219, 17.811456 ], [ -89.296875, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.792254 ], [ -88.242188, 15.792254 ], [ -88.242188, 15.623037 ], [ -88.593750, 15.623037 ], [ -88.593750, 15.453680 ], [ -88.769531, 15.453680 ], [ -88.769531, 15.284185 ], [ -89.121094, 15.284185 ], [ -89.121094, 15.114553 ], [ -89.296875, 15.114553 ], [ -89.296875, 14.604847 ], [ -89.472656, 14.604847 ], [ -89.472656, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.824219, 14.264383 ], [ -89.824219, 14.093957 ], [ -90.000000, 14.093957 ], [ -90.000000, 13.923404 ], [ -90.175781, 13.923404 ], [ -90.175781, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 17.978733 ], [ -89.824219, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.871094, 25.165173 ], [ -77.871094, 24.846565 ], [ -77.695312, 24.846565 ], [ -77.695312, 24.527135 ], [ -77.519531, 24.527135 ], [ -77.519531, 23.725012 ], [ -77.871094, 23.725012 ], [ -77.871094, 24.046464 ], [ -78.046875, 24.046464 ], [ -78.046875, 24.206890 ], [ -78.222656, 24.206890 ], [ -78.222656, 24.367114 ], [ -78.398438, 24.367114 ], [ -78.398438, 24.846565 ], [ -78.222656, 24.846565 ], [ -78.222656, 25.165173 ], [ -77.871094, 25.165173 ] ] ], [ [ [ -77.519531, 26.745610 ], [ -77.871094, 26.745610 ], [ -77.871094, 26.588527 ], [ -78.222656, 26.588527 ], [ -78.222656, 26.431228 ], [ -78.925781, 26.431228 ], [ -78.925781, 26.745610 ], [ -78.574219, 26.745610 ], [ -78.574219, 26.902477 ], [ -77.871094, 26.902477 ], [ -77.519531, 26.902477 ], [ -77.519531, 26.745610 ] ] ], [ [ [ -77.519531, 26.745610 ], [ -77.167969, 26.745610 ], [ -77.167969, 26.588527 ], [ -76.992188, 26.588527 ], [ -76.992188, 26.273714 ], [ -77.167969, 26.273714 ], [ -77.167969, 25.958045 ], [ -77.343750, 25.958045 ], [ -77.343750, 26.588527 ], [ -77.519531, 26.588527 ], [ -77.519531, 26.745610 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 25.324167 ], [ -78.046875, 25.005973 ], [ -77.871094, 25.005973 ], [ -77.871094, 24.527135 ], [ -77.695312, 24.527135 ], [ -77.695312, 23.725012 ], [ -77.871094, 23.725012 ], [ -77.871094, 24.046464 ], [ -78.046875, 24.046464 ], [ -78.046875, 24.367114 ], [ -78.222656, 24.367114 ], [ -78.222656, 24.527135 ], [ -78.574219, 24.527135 ], [ -78.574219, 24.846565 ], [ -78.398438, 24.846565 ], [ -78.398438, 25.165173 ], [ -78.222656, 25.165173 ], [ -78.222656, 25.324167 ], [ -78.046875, 25.324167 ] ] ], [ [ [ -77.343750, 26.273714 ], [ -77.343750, 25.958045 ], [ -77.519531, 25.958045 ], [ -77.519531, 26.273714 ], [ -77.343750, 26.273714 ] ] ], [ [ [ -77.343750, 26.588527 ], [ -77.167969, 26.588527 ], [ -77.167969, 26.273714 ], [ -77.343750, 26.273714 ], [ -77.343750, 26.588527 ] ] ], [ [ [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ], [ -78.222656, 26.588527 ], [ -78.222656, 26.431228 ], [ -78.925781, 26.431228 ], [ -78.925781, 26.588527 ], [ -79.101562, 26.588527 ], [ -79.101562, 26.902477 ], [ -77.871094, 26.902477 ] ] ], [ [ [ -77.343750, 26.588527 ], [ -77.519531, 26.588527 ], [ -77.519531, 26.745610 ], [ -77.343750, 26.745610 ], [ -77.343750, 26.588527 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.479609 ], [ -88.242188, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.066406, 17.811456 ], [ -88.242188, 17.811456 ], [ -88.242188, 16.636192 ], [ -88.417969, 16.636192 ], [ -88.417969, 16.299051 ], [ -88.769531, 16.299051 ], [ -88.769531, 16.130262 ], [ -88.945312, 16.130262 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 16.467695 ], [ -89.121094, 16.467695 ], [ -89.121094, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 17.811456 ], [ -88.769531, 17.811456 ], [ -88.769531, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 18.312811 ], [ -88.417969, 18.312811 ], [ -88.417969, 18.479609 ], [ -88.242188, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.417969, 18.646245 ], [ -88.417969, 18.479609 ], [ -88.242188, 18.479609 ], [ -88.242188, 17.811456 ], [ -88.417969, 17.811456 ], [ -88.417969, 17.644022 ], [ -88.242188, 17.644022 ], [ -88.242188, 17.308688 ], [ -88.417969, 17.308688 ], [ -88.417969, 17.140790 ], [ -88.242188, 17.140790 ], [ -88.242188, 16.804541 ], [ -88.417969, 16.804541 ], [ -88.417969, 16.467695 ], [ -88.593750, 16.467695 ], [ -88.593750, 16.299051 ], [ -88.769531, 16.299051 ], [ -88.769531, 16.130262 ], [ -88.945312, 16.130262 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.145852 ], [ -88.769531, 18.145852 ], [ -88.769531, 18.479609 ], [ -88.593750, 18.479609 ], [ -88.593750, 18.646245 ], [ -88.417969, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 14.434680 ], [ -89.296875, 14.264383 ], [ -89.121094, 14.264383 ], [ -89.121094, 14.093957 ], [ -88.769531, 14.093957 ], [ -88.769531, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.752725 ], [ -87.714844, 13.752725 ], [ -87.714844, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.068777 ], [ -88.242188, 13.068777 ], [ -88.242188, 13.239945 ], [ -89.121094, 13.239945 ], [ -89.121094, 13.410994 ], [ -89.648438, 13.410994 ], [ -89.648438, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.000000, 13.752725 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.093957 ], [ -89.472656, 14.093957 ], [ -89.472656, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.296875, 14.434680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.434680 ], [ -89.121094, 14.264383 ], [ -88.945312, 14.264383 ], [ -88.945312, 14.093957 ], [ -88.593750, 14.093957 ], [ -88.593750, 13.923404 ], [ -88.242188, 13.923404 ], [ -88.242188, 14.093957 ], [ -88.066406, 14.093957 ], [ -88.066406, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -88.945312, 13.239945 ], [ -88.945312, 13.410994 ], [ -89.296875, 13.410994 ], [ -89.296875, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 14.093957 ], [ -89.824219, 14.093957 ], [ -89.824219, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.121094, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.902344, 15.961329 ], [ -84.902344, 15.792254 ], [ -84.375000, 15.792254 ], [ -84.375000, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.453680 ], [ -83.847656, 15.453680 ], [ -83.847656, 15.284185 ], [ -83.496094, 15.284185 ], [ -83.496094, 15.114553 ], [ -83.320312, 15.114553 ], [ -83.320312, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 14.774883 ], [ -84.199219, 14.774883 ], [ -84.199219, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 14.264383 ], [ -85.253906, 14.264383 ], [ -85.253906, 14.093957 ], [ -85.429688, 14.093957 ], [ -85.429688, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 13.752725 ], [ -85.957031, 13.752725 ], [ -85.957031, 13.923404 ], [ -86.308594, 13.923404 ], [ -86.308594, 13.752725 ], [ -86.835938, 13.752725 ], [ -86.835938, 13.410994 ], [ -86.660156, 13.410994 ], [ -86.660156, 13.239945 ], [ -86.835938, 13.239945 ], [ -86.835938, 13.068777 ], [ -87.539062, 13.068777 ], [ -87.539062, 13.239945 ], [ -87.714844, 13.239945 ], [ -87.714844, 13.752725 ], [ -87.890625, 13.752725 ], [ -87.890625, 13.923404 ], [ -88.769531, 13.923404 ], [ -88.769531, 14.093957 ], [ -89.121094, 14.093957 ], [ -89.121094, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.434680 ], [ -89.121094, 14.434680 ], [ -89.121094, 14.774883 ], [ -89.296875, 14.774883 ], [ -89.296875, 14.944785 ], [ -89.121094, 14.944785 ], [ -89.121094, 15.114553 ], [ -88.769531, 15.114553 ], [ -88.769531, 15.284185 ], [ -88.417969, 15.284185 ], [ -88.417969, 15.623037 ], [ -87.890625, 15.623037 ], [ -87.890625, 15.792254 ], [ -86.132812, 15.792254 ], [ -86.132812, 15.961329 ], [ -84.902344, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.902344, 16.130262 ], [ -84.902344, 15.961329 ], [ -84.375000, 15.961329 ], [ -84.375000, 15.792254 ], [ -84.199219, 15.792254 ], [ -84.199219, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.453680 ], [ -83.847656, 15.453680 ], [ -83.847656, 15.284185 ], [ -83.496094, 15.284185 ], [ -83.496094, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 14.774883 ], [ -84.902344, 14.774883 ], [ -84.902344, 14.944785 ], [ -85.078125, 14.944785 ], [ -85.078125, 14.604847 ], [ -85.253906, 14.604847 ], [ -85.253906, 14.264383 ], [ -85.429688, 14.264383 ], [ -85.429688, 14.093957 ], [ -85.781250, 14.093957 ], [ -85.781250, 13.923404 ], [ -86.660156, 13.923404 ], [ -86.660156, 13.752725 ], [ -86.835938, 13.752725 ], [ -86.835938, 13.410994 ], [ -87.011719, 13.410994 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.363281, 13.239945 ], [ -87.539062, 13.239945 ], [ -87.539062, 13.410994 ], [ -87.890625, 13.410994 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.923404 ], [ -88.066406, 14.093957 ], [ -88.242188, 14.093957 ], [ -88.242188, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 14.093957 ], [ -88.945312, 14.093957 ], [ -88.945312, 14.264383 ], [ -89.121094, 14.264383 ], [ -89.121094, 14.434680 ], [ -89.472656, 14.434680 ], [ -89.472656, 14.604847 ], [ -89.296875, 14.604847 ], [ -89.296875, 15.114553 ], [ -89.121094, 15.114553 ], [ -89.121094, 15.284185 ], [ -88.769531, 15.284185 ], [ -88.769531, 15.453680 ], [ -88.593750, 15.453680 ], [ -88.593750, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.792254 ], [ -88.066406, 15.792254 ], [ -88.066406, 15.961329 ], [ -87.363281, 15.961329 ], [ -87.363281, 15.792254 ], [ -86.132812, 15.792254 ], [ -86.132812, 15.961329 ], [ -85.078125, 15.961329 ], [ -85.078125, 16.130262 ], [ -84.902344, 16.130262 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.944785 ], [ -83.320312, 14.434680 ], [ -83.144531, 14.434680 ], [ -83.144531, 14.093957 ], [ -83.320312, 14.093957 ], [ -83.320312, 13.923404 ], [ -83.496094, 13.923404 ], [ -83.496094, 12.382928 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.523088 ], [ -83.847656, 11.523088 ], [ -83.847656, 11.005904 ], [ -83.671875, 11.005904 ], [ -83.671875, 10.833306 ], [ -83.847656, 10.833306 ], [ -83.847656, 10.660608 ], [ -84.199219, 10.660608 ], [ -84.199219, 10.833306 ], [ -84.375000, 10.833306 ], [ -84.375000, 11.005904 ], [ -85.429688, 11.005904 ], [ -85.429688, 11.178402 ], [ -85.605469, 11.178402 ], [ -85.605469, 11.005904 ], [ -85.957031, 11.005904 ], [ -85.957031, 11.178402 ], [ -86.132812, 11.178402 ], [ -86.132812, 11.350797 ], [ -86.308594, 11.350797 ], [ -86.308594, 11.695273 ], [ -86.484375, 11.695273 ], [ -86.484375, 12.039321 ], [ -86.660156, 12.039321 ], [ -86.660156, 12.211180 ], [ -87.011719, 12.211180 ], [ -87.011719, 12.382928 ], [ -87.363281, 12.382928 ], [ -87.363281, 12.554564 ], [ -87.539062, 12.554564 ], [ -87.539062, 12.726084 ], [ -87.714844, 12.726084 ], [ -87.714844, 12.897489 ], [ -87.363281, 12.897489 ], [ -87.363281, 13.068777 ], [ -86.835938, 13.068777 ], [ -86.835938, 13.239945 ], [ -86.660156, 13.239945 ], [ -86.660156, 13.410994 ], [ -86.835938, 13.410994 ], [ -86.835938, 13.752725 ], [ -86.308594, 13.752725 ], [ -86.308594, 13.923404 ], [ -85.957031, 13.923404 ], [ -85.957031, 13.752725 ], [ -85.781250, 13.752725 ], [ -85.781250, 13.923404 ], [ -85.429688, 13.923404 ], [ -85.429688, 14.093957 ], [ -85.253906, 14.093957 ], [ -85.253906, 14.264383 ], [ -85.078125, 14.264383 ], [ -85.078125, 14.604847 ], [ -84.199219, 14.604847 ], [ -84.199219, 14.774883 ], [ -83.671875, 14.774883 ], [ -83.671875, 14.944785 ], [ -83.320312, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.144531, 15.114553 ], [ -83.144531, 14.944785 ], [ -83.320312, 14.944785 ], [ -83.320312, 14.264383 ], [ -83.496094, 14.264383 ], [ -83.496094, 13.752725 ], [ -83.671875, 13.752725 ], [ -83.671875, 13.068777 ], [ -83.496094, 13.068777 ], [ -83.496094, 12.382928 ], [ -83.671875, 12.382928 ], [ -83.671875, 12.211180 ], [ -83.847656, 12.211180 ], [ -83.847656, 11.867351 ], [ -83.671875, 11.867351 ], [ -83.671875, 11.523088 ], [ -84.023438, 11.523088 ], [ -84.023438, 11.350797 ], [ -83.847656, 11.350797 ], [ -83.847656, 11.005904 ], [ -83.671875, 11.005904 ], [ -83.671875, 10.833306 ], [ -84.375000, 10.833306 ], [ -84.375000, 11.005904 ], [ -85.253906, 11.005904 ], [ -85.253906, 11.178402 ], [ -85.957031, 11.178402 ], [ -85.957031, 11.350797 ], [ -86.132812, 11.350797 ], [ -86.132812, 11.523088 ], [ -86.308594, 11.523088 ], [ -86.308594, 11.695273 ], [ -86.660156, 11.695273 ], [ -86.660156, 12.039321 ], [ -86.835938, 12.039321 ], [ -86.835938, 12.211180 ], [ -87.011719, 12.211180 ], [ -87.011719, 12.382928 ], [ -87.187500, 12.382928 ], [ -87.187500, 12.554564 ], [ -87.363281, 12.554564 ], [ -87.363281, 12.726084 ], [ -87.539062, 12.726084 ], [ -87.539062, 12.897489 ], [ -87.714844, 12.897489 ], [ -87.714844, 13.068777 ], [ -87.011719, 13.068777 ], [ -87.011719, 13.410994 ], [ -86.835938, 13.410994 ], [ -86.835938, 13.752725 ], [ -86.660156, 13.752725 ], [ -86.660156, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 14.093957 ], [ -85.429688, 14.093957 ], [ -85.429688, 14.264383 ], [ -85.253906, 14.264383 ], [ -85.253906, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 14.944785 ], [ -84.902344, 14.944785 ], [ -84.902344, 14.774883 ], [ -83.671875, 14.774883 ], [ -83.671875, 14.944785 ], [ -83.496094, 14.944785 ], [ -83.496094, 15.114553 ], [ -83.144531, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.914062, 23.241346 ], [ -81.914062, 23.079732 ], [ -80.507812, 23.079732 ], [ -80.507812, 22.917923 ], [ -79.980469, 22.917923 ], [ -79.980469, 22.755921 ], [ -79.628906, 22.755921 ], [ -79.628906, 22.593726 ], [ -79.453125, 22.593726 ], [ -79.453125, 22.431340 ], [ -78.398438, 22.431340 ], [ -78.398438, 22.268764 ], [ -78.046875, 22.268764 ], [ -78.046875, 22.105999 ], [ -77.871094, 22.105999 ], [ -77.871094, 21.943046 ], [ -77.519531, 21.943046 ], [ -77.519531, 21.779905 ], [ -77.343750, 21.779905 ], [ -77.343750, 21.616579 ], [ -77.167969, 21.616579 ], [ -77.167969, 21.453069 ], [ -76.992188, 21.453069 ], [ -76.992188, 21.289374 ], [ -76.640625, 21.289374 ], [ -76.640625, 21.125498 ], [ -75.761719, 21.125498 ], [ -75.761719, 20.961440 ], [ -75.585938, 20.961440 ], [ -75.585938, 20.797201 ], [ -75.410156, 20.797201 ], [ -75.410156, 20.632784 ], [ -74.882812, 20.632784 ], [ -74.882812, 20.468189 ], [ -74.531250, 20.468189 ], [ -74.531250, 20.303418 ], [ -74.179688, 20.303418 ], [ -74.179688, 20.138470 ], [ -74.355469, 20.138470 ], [ -74.355469, 19.973349 ], [ -75.058594, 19.973349 ], [ -75.058594, 19.808054 ], [ -76.113281, 19.808054 ], [ -76.113281, 19.973349 ], [ -76.816406, 19.973349 ], [ -76.816406, 19.808054 ], [ -77.519531, 19.808054 ], [ -77.519531, 20.138470 ], [ -77.343750, 20.138470 ], [ -77.343750, 20.303418 ], [ -77.167969, 20.303418 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.468189 ], [ -77.519531, 20.632784 ], [ -78.046875, 20.632784 ], [ -78.046875, 20.797201 ], [ -78.398438, 20.797201 ], [ -78.398438, 21.125498 ], [ -78.574219, 21.125498 ], [ -78.574219, 21.453069 ], [ -78.750000, 21.453069 ], [ -78.750000, 21.616579 ], [ -79.804688, 21.616579 ], [ -79.804688, 21.779905 ], [ -80.332031, 21.779905 ], [ -80.332031, 21.943046 ], [ -80.507812, 21.943046 ], [ -80.507812, 22.105999 ], [ -81.210938, 22.105999 ], [ -81.210938, 22.268764 ], [ -82.089844, 22.268764 ], [ -82.089844, 22.431340 ], [ -81.738281, 22.431340 ], [ -81.738281, 22.593726 ], [ -82.441406, 22.593726 ], [ -82.441406, 22.755921 ], [ -82.792969, 22.755921 ], [ -82.792969, 22.593726 ], [ -82.968750, 22.593726 ], [ -82.968750, 22.431340 ], [ -83.144531, 22.431340 ], [ -83.144531, 22.268764 ], [ -83.320312, 22.268764 ], [ -83.320312, 22.105999 ], [ -83.847656, 22.105999 ], [ -83.847656, 21.943046 ], [ -84.199219, 21.943046 ], [ -84.199219, 21.779905 ], [ -84.902344, 21.779905 ], [ -84.902344, 21.943046 ], [ -84.726562, 21.943046 ], [ -84.726562, 22.105999 ], [ -84.375000, 22.105999 ], [ -84.375000, 22.431340 ], [ -84.199219, 22.431340 ], [ -84.199219, 22.593726 ], [ -83.847656, 22.593726 ], [ -83.847656, 22.755921 ], [ -83.496094, 22.755921 ], [ -83.496094, 22.917923 ], [ -82.792969, 22.917923 ], [ -82.792969, 23.079732 ], [ -82.265625, 23.079732 ], [ -82.265625, 23.241346 ], [ -81.914062, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.507812, 23.241346 ], [ -80.507812, 23.079732 ], [ -80.156250, 23.079732 ], [ -80.156250, 22.917923 ], [ -79.804688, 22.917923 ], [ -79.804688, 22.755921 ], [ -79.628906, 22.755921 ], [ -79.628906, 22.431340 ], [ -78.750000, 22.431340 ], [ -78.750000, 22.593726 ], [ -78.398438, 22.593726 ], [ -78.398438, 22.431340 ], [ -78.046875, 22.431340 ], [ -78.046875, 22.268764 ], [ -77.871094, 22.268764 ], [ -77.871094, 22.105999 ], [ -77.519531, 22.105999 ], [ -77.519531, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.779905 ], [ -77.167969, 21.779905 ], [ -77.167969, 21.616579 ], [ -76.992188, 21.616579 ], [ -76.992188, 21.453069 ], [ -76.816406, 21.453069 ], [ -76.816406, 21.289374 ], [ -76.113281, 21.289374 ], [ -76.113281, 21.125498 ], [ -75.761719, 21.125498 ], [ -75.761719, 20.797201 ], [ -75.058594, 20.797201 ], [ -75.058594, 20.632784 ], [ -74.707031, 20.632784 ], [ -74.707031, 20.468189 ], [ -74.355469, 20.468189 ], [ -74.355469, 20.303418 ], [ -74.179688, 20.303418 ], [ -74.179688, 20.138470 ], [ -74.531250, 20.138470 ], [ -74.531250, 19.973349 ], [ -77.695312, 19.973349 ], [ -77.695312, 20.138470 ], [ -77.343750, 20.138470 ], [ -77.343750, 20.303418 ], [ -77.167969, 20.303418 ], [ -77.167969, 20.468189 ], [ -77.343750, 20.468189 ], [ -77.343750, 20.632784 ], [ -77.519531, 20.632784 ], [ -77.519531, 20.797201 ], [ -78.398438, 20.797201 ], [ -78.398438, 20.961440 ], [ -78.574219, 20.961440 ], [ -78.574219, 21.289374 ], [ -78.750000, 21.289374 ], [ -78.750000, 21.616579 ], [ -79.804688, 21.616579 ], [ -79.804688, 21.779905 ], [ -80.156250, 21.779905 ], [ -80.156250, 21.943046 ], [ -80.683594, 21.943046 ], [ -80.683594, 22.105999 ], [ -81.386719, 22.105999 ], [ -81.386719, 22.268764 ], [ -82.265625, 22.268764 ], [ -82.265625, 22.431340 ], [ -82.089844, 22.431340 ], [ -82.089844, 22.593726 ], [ -81.914062, 22.593726 ], [ -81.914062, 22.755921 ], [ -82.792969, 22.755921 ], [ -82.792969, 22.593726 ], [ -82.968750, 22.593726 ], [ -82.968750, 22.431340 ], [ -83.320312, 22.431340 ], [ -83.320312, 22.268764 ], [ -84.023438, 22.268764 ], [ -84.023438, 22.105999 ], [ -84.199219, 22.105999 ], [ -84.199219, 21.943046 ], [ -84.902344, 21.943046 ], [ -84.902344, 22.105999 ], [ -84.550781, 22.105999 ], [ -84.550781, 22.431340 ], [ -84.375000, 22.431340 ], [ -84.375000, 22.593726 ], [ -84.199219, 22.593726 ], [ -84.199219, 22.755921 ], [ -83.847656, 22.755921 ], [ -83.847656, 22.917923 ], [ -83.496094, 22.917923 ], [ -83.496094, 23.079732 ], [ -82.265625, 23.079732 ], [ -82.265625, 23.241346 ], [ -80.507812, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.429688, 11.178402 ], [ -85.429688, 11.005904 ], [ -84.375000, 11.005904 ], [ -84.375000, 10.833306 ], [ -84.199219, 10.833306 ], [ -84.199219, 10.660608 ], [ -83.847656, 10.660608 ], [ -83.847656, 10.833306 ], [ -83.496094, 10.833306 ], [ -83.496094, 10.487812 ], [ -83.320312, 10.487812 ], [ -83.320312, 10.141932 ], [ -83.144531, 10.141932 ], [ -83.144531, 9.968851 ], [ -82.968750, 9.968851 ], [ -82.968750, 9.795678 ], [ -82.792969, 9.795678 ], [ -82.792969, 9.622414 ], [ -82.617188, 9.622414 ], [ -82.617188, 9.449062 ], [ -82.968750, 9.449062 ], [ -82.968750, 8.928487 ], [ -82.792969, 8.928487 ], [ -82.792969, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 8.233237 ], [ -83.320312, 8.233237 ], [ -83.320312, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -83.847656, 9.102097 ], [ -83.847656, 9.275622 ], [ -84.199219, 9.275622 ], [ -84.199219, 9.449062 ], [ -84.726562, 9.449062 ], [ -84.726562, 9.968851 ], [ -84.902344, 9.968851 ], [ -84.902344, 9.622414 ], [ -85.253906, 9.622414 ], [ -85.253906, 9.795678 ], [ -85.605469, 9.795678 ], [ -85.605469, 9.968851 ], [ -85.781250, 9.968851 ], [ -85.781250, 10.660608 ], [ -85.605469, 10.660608 ], [ -85.605469, 10.833306 ], [ -85.781250, 10.833306 ], [ -85.781250, 11.005904 ], [ -85.605469, 11.005904 ], [ -85.605469, 11.178402 ], [ -85.429688, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.253906, 11.178402 ], [ -85.253906, 11.005904 ], [ -84.375000, 11.005904 ], [ -84.375000, 10.833306 ], [ -83.671875, 10.833306 ], [ -83.671875, 10.660608 ], [ -83.496094, 10.660608 ], [ -83.496094, 10.314919 ], [ -83.320312, 10.314919 ], [ -83.320312, 10.141932 ], [ -83.144531, 10.141932 ], [ -83.144531, 9.968851 ], [ -82.968750, 9.968851 ], [ -82.968750, 9.795678 ], [ -82.792969, 9.795678 ], [ -82.792969, 9.622414 ], [ -82.968750, 9.622414 ], [ -82.968750, 8.233237 ], [ -83.320312, 8.233237 ], [ -83.320312, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 8.581021 ], [ -83.847656, 8.581021 ], [ -83.847656, 8.754795 ], [ -83.671875, 8.754795 ], [ -83.671875, 9.102097 ], [ -83.847656, 9.102097 ], [ -83.847656, 9.275622 ], [ -84.023438, 9.275622 ], [ -84.023438, 9.449062 ], [ -84.375000, 9.449062 ], [ -84.375000, 9.622414 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -85.078125, 9.968851 ], [ -85.078125, 9.622414 ], [ -85.253906, 9.622414 ], [ -85.253906, 9.795678 ], [ -85.429688, 9.795678 ], [ -85.429688, 9.968851 ], [ -85.957031, 9.968851 ], [ -85.957031, 10.660608 ], [ -85.781250, 10.660608 ], [ -85.781250, 10.833306 ], [ -85.957031, 10.833306 ], [ -85.957031, 11.005904 ], [ -85.781250, 11.005904 ], [ -85.781250, 11.178402 ], [ -85.253906, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.101562, 9.622414 ], [ -79.101562, 9.449062 ], [ -78.398438, 9.449062 ], [ -78.398438, 9.275622 ], [ -78.046875, 9.275622 ], [ -78.046875, 9.102097 ], [ -77.871094, 9.102097 ], [ -77.871094, 8.928487 ], [ -77.695312, 8.928487 ], [ -77.695312, 8.754795 ], [ -77.343750, 8.754795 ], [ -77.343750, 8.581021 ], [ -77.519531, 8.581021 ], [ -77.519531, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 8.059230 ], [ -77.167969, 8.059230 ], [ -77.167969, 7.710992 ], [ -77.695312, 7.710992 ], [ -77.695312, 7.362467 ], [ -77.871094, 7.362467 ], [ -77.871094, 7.188101 ], [ -78.046875, 7.188101 ], [ -78.046875, 7.362467 ], [ -78.222656, 7.362467 ], [ -78.222656, 7.710992 ], [ -78.398438, 7.710992 ], [ -78.398438, 8.059230 ], [ -78.222656, 8.059230 ], [ -78.222656, 8.233237 ], [ -78.398438, 8.233237 ], [ -78.398438, 8.581021 ], [ -78.574219, 8.581021 ], [ -78.574219, 8.754795 ], [ -78.925781, 8.754795 ], [ -78.925781, 8.928487 ], [ -79.628906, 8.928487 ], [ -79.628906, 8.754795 ], [ -79.804688, 8.754795 ], [ -79.804688, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 8.233237 ], [ -80.332031, 8.233237 ], [ -80.332031, 8.059230 ], [ -80.507812, 8.059230 ], [ -80.507812, 7.885147 ], [ -80.332031, 7.885147 ], [ -80.332031, 7.710992 ], [ -80.156250, 7.710992 ], [ -80.156250, 7.536764 ], [ -79.980469, 7.536764 ], [ -79.980469, 7.362467 ], [ -80.332031, 7.362467 ], [ -80.332031, 7.188101 ], [ -80.859375, 7.188101 ], [ -80.859375, 7.536764 ], [ -81.035156, 7.536764 ], [ -81.035156, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 7.885147 ], [ -81.738281, 7.885147 ], [ -81.738281, 8.059230 ], [ -82.089844, 8.059230 ], [ -82.089844, 8.233237 ], [ -82.792969, 8.233237 ], [ -82.792969, 8.059230 ], [ -82.968750, 8.059230 ], [ -82.968750, 8.407168 ], [ -82.792969, 8.407168 ], [ -82.792969, 8.928487 ], [ -82.968750, 8.928487 ], [ -82.968750, 9.449062 ], [ -82.441406, 9.449062 ], [ -82.441406, 9.275622 ], [ -82.265625, 9.275622 ], [ -82.265625, 8.928487 ], [ -81.562500, 8.928487 ], [ -81.562500, 8.754795 ], [ -81.035156, 8.754795 ], [ -81.035156, 8.928487 ], [ -80.683594, 8.928487 ], [ -80.683594, 9.102097 ], [ -80.156250, 9.102097 ], [ -80.156250, 9.275622 ], [ -79.804688, 9.275622 ], [ -79.804688, 9.449062 ], [ -79.628906, 9.449062 ], [ -79.628906, 9.622414 ], [ -79.101562, 9.622414 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.925781, 9.622414 ], [ -78.925781, 9.449062 ], [ -78.574219, 9.449062 ], [ -78.574219, 9.275622 ], [ -78.222656, 9.275622 ], [ -78.222656, 9.102097 ], [ -77.871094, 9.102097 ], [ -77.871094, 8.928487 ], [ -77.695312, 8.928487 ], [ -77.695312, 8.754795 ], [ -77.519531, 8.754795 ], [ -77.519531, 8.233237 ], [ -77.343750, 8.233237 ], [ -77.343750, 7.885147 ], [ -77.519531, 7.885147 ], [ -77.519531, 7.710992 ], [ -77.871094, 7.710992 ], [ -77.871094, 7.536764 ], [ -78.046875, 7.536764 ], [ -78.046875, 7.362467 ], [ -78.222656, 7.362467 ], [ -78.222656, 7.536764 ], [ -78.398438, 7.536764 ], [ -78.398438, 7.885147 ], [ -78.574219, 7.885147 ], [ -78.574219, 8.059230 ], [ -78.398438, 8.059230 ], [ -78.398438, 8.233237 ], [ -78.222656, 8.233237 ], [ -78.222656, 8.407168 ], [ -78.574219, 8.407168 ], [ -78.574219, 8.581021 ], [ -78.750000, 8.581021 ], [ -78.750000, 8.754795 ], [ -78.925781, 8.754795 ], [ -78.925781, 8.928487 ], [ -79.277344, 8.928487 ], [ -79.277344, 9.102097 ], [ -79.628906, 9.102097 ], [ -79.628906, 8.928487 ], [ -79.804688, 8.928487 ], [ -79.804688, 8.581021 ], [ -80.156250, 8.581021 ], [ -80.156250, 8.407168 ], [ -80.507812, 8.407168 ], [ -80.507812, 8.059230 ], [ -80.332031, 8.059230 ], [ -80.332031, 7.710992 ], [ -80.156250, 7.710992 ], [ -80.156250, 7.536764 ], [ -80.332031, 7.536764 ], [ -80.332031, 7.362467 ], [ -81.035156, 7.362467 ], [ -81.035156, 7.536764 ], [ -81.210938, 7.536764 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 7.885147 ], [ -81.738281, 7.885147 ], [ -81.738281, 8.233237 ], [ -82.441406, 8.233237 ], [ -82.441406, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.622414 ], [ -82.617188, 9.622414 ], [ -82.617188, 9.449062 ], [ -82.441406, 9.449062 ], [ -82.441406, 9.275622 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.102097 ], [ -81.738281, 9.102097 ], [ -81.738281, 8.928487 ], [ -80.859375, 8.928487 ], [ -80.859375, 9.102097 ], [ -80.683594, 9.102097 ], [ -80.683594, 9.275622 ], [ -80.156250, 9.275622 ], [ -80.156250, 9.449062 ], [ -79.628906, 9.449062 ], [ -79.628906, 9.622414 ], [ -78.925781, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.816406, 18.479609 ], [ -76.816406, 18.312811 ], [ -76.464844, 18.312811 ], [ -76.464844, 18.145852 ], [ -76.289062, 18.145852 ], [ -76.289062, 17.978733 ], [ -76.113281, 17.978733 ], [ -76.113281, 17.811456 ], [ -76.816406, 17.811456 ], [ -76.816406, 17.644022 ], [ -77.519531, 17.644022 ], [ -77.519531, 17.811456 ], [ -78.046875, 17.811456 ], [ -78.046875, 17.978733 ], [ -78.398438, 17.978733 ], [ -78.398438, 18.312811 ], [ -78.222656, 18.312811 ], [ -78.222656, 18.479609 ], [ -76.816406, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.519531, 18.646245 ], [ -77.519531, 18.479609 ], [ -76.816406, 18.479609 ], [ -76.816406, 18.312811 ], [ -76.464844, 18.312811 ], [ -76.464844, 18.145852 ], [ -76.289062, 18.145852 ], [ -76.289062, 17.978733 ], [ -76.992188, 17.978733 ], [ -76.992188, 17.811456 ], [ -77.695312, 17.811456 ], [ -77.695312, 17.978733 ], [ -78.046875, 17.978733 ], [ -78.046875, 18.145852 ], [ -78.398438, 18.145852 ], [ -78.398438, 18.312811 ], [ -78.222656, 18.312811 ], [ -78.222656, 18.479609 ], [ -77.871094, 18.479609 ], [ -77.871094, 18.646245 ], [ -77.519531, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.949219, 19.973349 ], [ -72.949219, 19.808054 ], [ -72.246094, 19.808054 ], [ -72.246094, 19.642588 ], [ -71.718750, 19.642588 ], [ -71.718750, 19.311143 ], [ -71.542969, 19.311143 ], [ -71.542969, 18.979026 ], [ -71.718750, 18.979026 ], [ -71.718750, 18.646245 ], [ -71.894531, 18.646245 ], [ -71.894531, 18.479609 ], [ -71.718750, 18.479609 ], [ -71.718750, 17.978733 ], [ -72.246094, 17.978733 ], [ -72.246094, 18.145852 ], [ -73.652344, 18.145852 ], [ -73.652344, 17.978733 ], [ -74.179688, 17.978733 ], [ -74.179688, 18.145852 ], [ -74.531250, 18.145852 ], [ -74.531250, 18.479609 ], [ -74.355469, 18.479609 ], [ -74.355469, 18.646245 ], [ -74.003906, 18.646245 ], [ -74.003906, 18.479609 ], [ -72.421875, 18.479609 ], [ -72.421875, 18.646245 ], [ -72.597656, 18.646245 ], [ -72.597656, 18.979026 ], [ -72.773438, 18.979026 ], [ -72.773438, 19.476950 ], [ -73.300781, 19.476950 ], [ -73.300781, 19.808054 ], [ -73.125000, 19.808054 ], [ -73.125000, 19.973349 ], [ -72.949219, 19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.246094, 19.973349 ], [ -72.246094, 19.808054 ], [ -71.718750, 19.808054 ], [ -71.718750, 18.646245 ], [ -72.070312, 18.646245 ], [ -72.070312, 18.479609 ], [ -71.718750, 18.479609 ], [ -71.718750, 18.145852 ], [ -72.246094, 18.145852 ], [ -72.246094, 18.312811 ], [ -72.597656, 18.312811 ], [ -72.597656, 18.145852 ], [ -73.300781, 18.145852 ], [ -73.300781, 18.312811 ], [ -73.652344, 18.312811 ], [ -73.652344, 18.145852 ], [ -74.179688, 18.145852 ], [ -74.179688, 18.312811 ], [ -74.531250, 18.312811 ], [ -74.531250, 18.812718 ], [ -74.179688, 18.812718 ], [ -74.179688, 18.646245 ], [ -73.300781, 18.646245 ], [ -73.300781, 18.479609 ], [ -72.597656, 18.479609 ], [ -72.597656, 18.646245 ], [ -72.421875, 18.646245 ], [ -72.421875, 18.812718 ], [ -72.597656, 18.812718 ], [ -72.597656, 18.979026 ], [ -72.949219, 18.979026 ], [ -72.949219, 19.642588 ], [ -73.476562, 19.642588 ], [ -73.476562, 19.808054 ], [ -73.300781, 19.808054 ], [ -73.300781, 19.973349 ], [ -72.246094, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.664062, 19.808054 ], [ -70.664062, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.476950 ], [ -69.785156, 19.476950 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.730469, 18.979026 ], [ -68.730469, 18.812718 ], [ -68.554688, 18.812718 ], [ -68.554688, 18.646245 ], [ -68.378906, 18.646245 ], [ -68.378906, 18.479609 ], [ -68.554688, 18.479609 ], [ -68.554688, 18.145852 ], [ -68.906250, 18.145852 ], [ -68.906250, 18.312811 ], [ -69.082031, 18.312811 ], [ -69.082031, 18.479609 ], [ -69.257812, 18.479609 ], [ -69.257812, 18.312811 ], [ -70.136719, 18.312811 ], [ -70.136719, 18.145852 ], [ -70.488281, 18.145852 ], [ -70.488281, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 18.145852 ], [ -71.191406, 18.145852 ], [ -71.191406, 17.811456 ], [ -71.367188, 17.811456 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 18.479609 ], [ -71.894531, 18.479609 ], [ -71.894531, 18.646245 ], [ -71.718750, 18.646245 ], [ -71.718750, 18.979026 ], [ -71.542969, 18.979026 ], [ -71.542969, 19.311143 ], [ -71.718750, 19.311143 ], [ -71.718750, 19.642588 ], [ -71.542969, 19.642588 ], [ -71.542969, 19.808054 ], [ -70.664062, 19.808054 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.973349 ], [ -70.839844, 19.808054 ], [ -70.488281, 19.808054 ], [ -70.488281, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.476950 ], [ -69.785156, 19.476950 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.906250, 18.979026 ], [ -68.906250, 18.812718 ], [ -68.554688, 18.812718 ], [ -68.554688, 18.646245 ], [ -68.378906, 18.646245 ], [ -68.378906, 18.479609 ], [ -68.554688, 18.479609 ], [ -68.554688, 18.312811 ], [ -69.082031, 18.312811 ], [ -69.082031, 18.479609 ], [ -69.960938, 18.479609 ], [ -69.960938, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 18.145852 ], [ -71.191406, 18.145852 ], [ -71.191406, 17.978733 ], [ -71.367188, 17.978733 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 18.479609 ], [ -72.070312, 18.479609 ], [ -72.070312, 18.646245 ], [ -71.718750, 18.646245 ], [ -71.718750, 19.973349 ], [ -70.839844, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.367188, 12.382928 ], [ -71.367188, 12.211180 ], [ -71.191406, 12.211180 ], [ -71.191406, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.695273 ], [ -71.542969, 11.695273 ], [ -71.542969, 11.523088 ], [ -71.894531, 11.523088 ], [ -71.894531, 11.350797 ], [ -72.070312, 11.350797 ], [ -72.070312, 11.178402 ], [ -72.246094, 11.178402 ], [ -72.246094, 11.005904 ], [ -72.421875, 11.005904 ], [ -72.421875, 10.833306 ], [ -72.597656, 10.833306 ], [ -72.597656, 10.660608 ], [ -72.773438, 10.660608 ], [ -72.773438, 10.487812 ], [ -72.949219, 10.487812 ], [ -72.949219, 9.622414 ], [ -73.125000, 9.622414 ], [ -73.125000, 9.275622 ], [ -73.300781, 9.275622 ], [ -73.300781, 9.102097 ], [ -72.773438, 9.102097 ], [ -72.773438, 8.754795 ], [ -72.597656, 8.754795 ], [ -72.597656, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.362467 ], [ -72.246094, 7.362467 ], [ -72.246094, 7.188101 ], [ -72.070312, 7.188101 ], [ -72.070312, 7.013668 ], [ -70.136719, 7.013668 ], [ -70.136719, 6.839170 ], [ -69.960938, 6.839170 ], [ -69.960938, 6.664608 ], [ -69.785156, 6.664608 ], [ -69.785156, 6.315299 ], [ -69.609375, 6.315299 ], [ -69.609375, 6.140555 ], [ -67.851562, 6.140555 ], [ -67.851562, 6.315299 ], [ -67.675781, 6.315299 ], [ -67.675781, 6.140555 ], [ -67.324219, 6.140555 ], [ -67.324219, 5.790897 ], [ -67.500000, 5.790897 ], [ -67.500000, 5.441022 ], [ -67.675781, 5.441022 ], [ -67.675781, 4.915833 ], [ -67.851562, 4.915833 ], [ -67.851562, 4.214943 ], [ -67.675781, 4.214943 ], [ -67.675781, 3.688855 ], [ -67.500000, 3.688855 ], [ -67.500000, 3.513421 ], [ -67.324219, 3.513421 ], [ -67.324219, 3.162456 ], [ -67.500000, 3.162456 ], [ -67.500000, 2.986927 ], [ -67.675781, 2.986927 ], [ -67.675781, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 2.635789 ], [ -67.500000, 2.635789 ], [ -67.500000, 2.460181 ], [ -67.324219, 2.460181 ], [ -67.324219, 2.284551 ], [ -67.148438, 2.284551 ], [ -67.148438, 1.933227 ], [ -66.972656, 1.933227 ], [ -66.972656, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.406109 ], [ -67.324219, 1.406109 ], [ -67.324219, 1.933227 ], [ -67.675781, 1.933227 ], [ -67.675781, 1.757537 ], [ -69.785156, 1.757537 ], [ -69.785156, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.527336 ], [ -69.433594, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.527336 ], [ -69.960938, 0.527336 ], [ -69.960938, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.703107 ], [ -69.433594, -0.703107 ], [ -69.433594, -0.878872 ], [ -74.179688, -0.878872 ], [ -74.179688, -0.703107 ], [ -74.355469, -0.703107 ], [ -74.355469, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.351560 ], [ -74.882812, -0.351560 ], [ -74.882812, -0.175781 ], [ -75.761719, -0.175781 ], [ -75.761719, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.175781 ], [ -77.167969, 0.175781 ], [ -77.167969, 0.351560 ], [ -77.519531, 0.351560 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -78.222656, 0.878872 ], [ -78.222656, 1.054628 ], [ -78.574219, 1.054628 ], [ -78.574219, 1.230374 ], [ -78.925781, 1.230374 ], [ -78.925781, 1.757537 ], [ -78.574219, 1.757537 ], [ -78.574219, 1.933227 ], [ -78.750000, 1.933227 ], [ -78.750000, 2.284551 ], [ -78.574219, 2.284551 ], [ -78.574219, 2.460181 ], [ -78.398438, 2.460181 ], [ -78.398438, 2.635789 ], [ -77.871094, 2.635789 ], [ -77.871094, 2.811371 ], [ -77.695312, 2.811371 ], [ -77.695312, 3.162456 ], [ -77.519531, 3.162456 ], [ -77.519531, 3.337954 ], [ -77.343750, 3.337954 ], [ -77.343750, 3.688855 ], [ -77.167969, 3.688855 ], [ -77.167969, 3.864255 ], [ -77.519531, 3.864255 ], [ -77.519531, 4.390229 ], [ -77.343750, 4.390229 ], [ -77.343750, 5.090944 ], [ -77.519531, 5.090944 ], [ -77.519531, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.140555 ], [ -77.519531, 6.140555 ], [ -77.519531, 6.664608 ], [ -77.695312, 6.664608 ], [ -77.695312, 7.013668 ], [ -77.871094, 7.013668 ], [ -77.871094, 7.362467 ], [ -77.695312, 7.362467 ], [ -77.695312, 7.710992 ], [ -77.167969, 7.710992 ], [ -77.167969, 8.059230 ], [ -77.343750, 8.059230 ], [ -77.343750, 8.407168 ], [ -77.519531, 8.407168 ], [ -77.519531, 8.581021 ], [ -77.343750, 8.581021 ], [ -77.343750, 8.754795 ], [ -77.167969, 8.754795 ], [ -77.167969, 8.581021 ], [ -76.640625, 8.581021 ], [ -76.640625, 8.754795 ], [ -76.464844, 8.754795 ], [ -76.464844, 8.928487 ], [ -76.289062, 8.928487 ], [ -76.289062, 9.102097 ], [ -76.113281, 9.102097 ], [ -76.113281, 9.275622 ], [ -75.761719, 9.275622 ], [ -75.761719, 9.622414 ], [ -75.585938, 9.622414 ], [ -75.585938, 10.141932 ], [ -75.410156, 10.141932 ], [ -75.410156, 10.660608 ], [ -75.234375, 10.660608 ], [ -75.234375, 10.833306 ], [ -74.882812, 10.833306 ], [ -74.882812, 11.005904 ], [ -74.531250, 11.005904 ], [ -74.531250, 11.178402 ], [ -74.179688, 11.178402 ], [ -74.179688, 11.350797 ], [ -74.003906, 11.350797 ], [ -74.003906, 11.178402 ], [ -73.300781, 11.178402 ], [ -73.300781, 11.350797 ], [ -72.949219, 11.350797 ], [ -72.949219, 11.523088 ], [ -72.597656, 11.523088 ], [ -72.597656, 11.695273 ], [ -72.421875, 11.695273 ], [ -72.421875, 11.867351 ], [ -72.246094, 11.867351 ], [ -72.246094, 12.039321 ], [ -72.070312, 12.039321 ], [ -72.070312, 12.211180 ], [ -71.718750, 12.211180 ], [ -71.718750, 12.382928 ], [ -71.367188, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.542969, 12.382928 ], [ -71.542969, 12.211180 ], [ -71.191406, 12.211180 ], [ -71.191406, 12.039321 ], [ -71.367188, 12.039321 ], [ -71.367188, 11.867351 ], [ -71.542969, 11.867351 ], [ -71.542969, 11.695273 ], [ -72.070312, 11.695273 ], [ -72.070312, 11.350797 ], [ -72.246094, 11.350797 ], [ -72.246094, 11.005904 ], [ -72.597656, 11.005904 ], [ -72.597656, 10.833306 ], [ -72.773438, 10.833306 ], [ -72.773438, 10.660608 ], [ -72.949219, 10.660608 ], [ -72.949219, 10.141932 ], [ -73.125000, 10.141932 ], [ -73.125000, 9.622414 ], [ -73.300781, 9.622414 ], [ -73.300781, 9.102097 ], [ -72.949219, 9.102097 ], [ -72.949219, 8.928487 ], [ -72.773438, 8.928487 ], [ -72.773438, 8.581021 ], [ -72.597656, 8.581021 ], [ -72.597656, 8.233237 ], [ -72.421875, 8.233237 ], [ -72.421875, 7.885147 ], [ -72.597656, 7.885147 ], [ -72.597656, 7.362467 ], [ -72.246094, 7.362467 ], [ -72.246094, 7.188101 ], [ -72.070312, 7.188101 ], [ -72.070312, 7.013668 ], [ -71.367188, 7.013668 ], [ -71.367188, 7.188101 ], [ -70.664062, 7.188101 ], [ -70.664062, 7.013668 ], [ -70.136719, 7.013668 ], [ -70.136719, 6.839170 ], [ -69.960938, 6.839170 ], [ -69.960938, 6.664608 ], [ -69.785156, 6.664608 ], [ -69.785156, 6.315299 ], [ -69.609375, 6.315299 ], [ -69.609375, 6.140555 ], [ -69.082031, 6.140555 ], [ -69.082031, 6.315299 ], [ -67.851562, 6.315299 ], [ -67.851562, 6.140555 ], [ -67.500000, 6.140555 ], [ -67.500000, 5.790897 ], [ -67.675781, 5.790897 ], [ -67.675781, 5.441022 ], [ -67.851562, 5.441022 ], [ -67.851562, 4.214943 ], [ -67.675781, 4.214943 ], [ -67.675781, 3.688855 ], [ -67.500000, 3.688855 ], [ -67.500000, 3.513421 ], [ -67.324219, 3.513421 ], [ -67.324219, 3.162456 ], [ -67.675781, 3.162456 ], [ -67.675781, 2.986927 ], [ -67.851562, 2.986927 ], [ -67.851562, 2.811371 ], [ -67.675781, 2.811371 ], [ -67.675781, 2.635789 ], [ -67.500000, 2.635789 ], [ -67.500000, 2.460181 ], [ -67.324219, 2.460181 ], [ -67.324219, 1.933227 ], [ -67.148438, 1.933227 ], [ -67.148438, 1.581830 ], [ -66.972656, 1.581830 ], [ -66.972656, 1.230374 ], [ -67.148438, 1.230374 ], [ -67.148438, 1.406109 ], [ -67.324219, 1.406109 ], [ -67.324219, 1.757537 ], [ -67.500000, 1.757537 ], [ -67.500000, 1.933227 ], [ -67.851562, 1.933227 ], [ -67.851562, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.230374 ], [ -69.785156, 1.230374 ], [ -69.785156, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.878872 ], [ -69.785156, 0.878872 ], [ -69.785156, 0.703107 ], [ -70.136719, 0.703107 ], [ -70.136719, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.878872 ], [ -74.355469, -0.878872 ], [ -74.355469, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -0.527336 ], [ -74.707031, -0.527336 ], [ -74.707031, -0.351560 ], [ -75.058594, -0.351560 ], [ -75.058594, -0.175781 ], [ -75.234375, -0.175781 ], [ -75.234375, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, 0.175781 ], [ -76.113281, 0.175781 ], [ -76.113281, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.527336 ], [ -77.519531, 0.527336 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -78.222656, 0.878872 ], [ -78.222656, 1.054628 ], [ -78.574219, 1.054628 ], [ -78.574219, 1.230374 ], [ -78.925781, 1.230374 ], [ -78.925781, 1.581830 ], [ -79.101562, 1.581830 ], [ -79.101562, 1.757537 ], [ -78.750000, 1.757537 ], [ -78.750000, 2.460181 ], [ -78.574219, 2.460181 ], [ -78.574219, 2.635789 ], [ -78.222656, 2.635789 ], [ -78.222656, 2.811371 ], [ -77.871094, 2.811371 ], [ -77.871094, 2.986927 ], [ -77.695312, 2.986927 ], [ -77.695312, 3.162456 ], [ -77.519531, 3.162456 ], [ -77.519531, 3.337954 ], [ -77.343750, 3.337954 ], [ -77.343750, 3.688855 ], [ -77.167969, 3.688855 ], [ -77.167969, 3.864255 ], [ -77.343750, 3.864255 ], [ -77.343750, 4.039618 ], [ -77.519531, 4.039618 ], [ -77.519531, 4.390229 ], [ -77.343750, 4.390229 ], [ -77.343750, 4.915833 ], [ -77.519531, 4.915833 ], [ -77.519531, 5.266008 ], [ -77.695312, 5.266008 ], [ -77.695312, 5.615986 ], [ -77.519531, 5.615986 ], [ -77.519531, 5.790897 ], [ -77.343750, 5.790897 ], [ -77.343750, 6.315299 ], [ -77.519531, 6.315299 ], [ -77.519531, 6.839170 ], [ -77.695312, 6.839170 ], [ -77.695312, 7.013668 ], [ -77.871094, 7.013668 ], [ -77.871094, 7.188101 ], [ -78.046875, 7.188101 ], [ -78.046875, 7.536764 ], [ -77.871094, 7.536764 ], [ -77.871094, 7.710992 ], [ -77.519531, 7.710992 ], [ -77.519531, 7.885147 ], [ -77.343750, 7.885147 ], [ -77.343750, 8.233237 ], [ -77.519531, 8.233237 ], [ -77.519531, 8.754795 ], [ -76.816406, 8.754795 ], [ -76.816406, 8.928487 ], [ -76.640625, 8.928487 ], [ -76.640625, 9.102097 ], [ -76.289062, 9.102097 ], [ -76.289062, 9.275622 ], [ -76.113281, 9.275622 ], [ -76.113281, 9.449062 ], [ -75.761719, 9.449062 ], [ -75.761719, 10.141932 ], [ -75.585938, 10.141932 ], [ -75.585938, 10.660608 ], [ -75.410156, 10.660608 ], [ -75.410156, 10.833306 ], [ -75.234375, 10.833306 ], [ -75.234375, 11.005904 ], [ -75.058594, 11.005904 ], [ -75.058594, 11.178402 ], [ -74.355469, 11.178402 ], [ -74.355469, 11.350797 ], [ -73.300781, 11.350797 ], [ -73.300781, 11.523088 ], [ -72.949219, 11.523088 ], [ -72.949219, 11.695273 ], [ -72.773438, 11.695273 ], [ -72.773438, 11.867351 ], [ -72.421875, 11.867351 ], [ -72.421875, 12.039321 ], [ -72.070312, 12.039321 ], [ -72.070312, 12.382928 ], [ -71.542969, 12.382928 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.742188, 18.479609 ], [ -65.742188, 18.312811 ], [ -65.566406, 18.312811 ], [ -65.566406, 17.978733 ], [ -67.148438, 17.978733 ], [ -67.148438, 18.145852 ], [ -67.324219, 18.145852 ], [ -67.324219, 18.312811 ], [ -67.148438, 18.312811 ], [ -67.148438, 18.479609 ], [ -65.742188, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.269531, 18.646245 ], [ -66.269531, 18.479609 ], [ -65.917969, 18.479609 ], [ -65.917969, 18.312811 ], [ -65.742188, 18.312811 ], [ -65.742188, 18.145852 ], [ -65.917969, 18.145852 ], [ -65.917969, 17.978733 ], [ -66.445312, 17.978733 ], [ -66.445312, 18.145852 ], [ -66.796875, 18.145852 ], [ -66.796875, 17.978733 ], [ -67.324219, 17.978733 ], [ -67.324219, 18.479609 ], [ -67.148438, 18.479609 ], [ -67.148438, 18.646245 ], [ -66.269531, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 12.039321 ], [ -69.785156, 11.695273 ], [ -69.609375, 11.695273 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.350797 ], [ -68.730469, 11.350797 ], [ -68.730469, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 11.005904 ], [ -68.378906, 11.005904 ], [ -68.378906, 10.833306 ], [ -68.203125, 10.833306 ], [ -68.203125, 10.487812 ], [ -66.621094, 10.487812 ], [ -66.621094, 10.660608 ], [ -66.269531, 10.660608 ], [ -66.269531, 10.487812 ], [ -66.093750, 10.487812 ], [ -66.093750, 10.314919 ], [ -65.917969, 10.314919 ], [ -65.917969, 10.141932 ], [ -64.511719, 10.141932 ], [ -64.511719, 10.314919 ], [ -64.335938, 10.314919 ], [ -64.335938, 10.660608 ], [ -62.226562, 10.660608 ], [ -62.226562, 10.487812 ], [ -62.753906, 10.487812 ], [ -62.753906, 10.314919 ], [ -62.578125, 10.314919 ], [ -62.578125, 9.968851 ], [ -62.050781, 9.968851 ], [ -62.050781, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.622414 ], [ -61.171875, 9.622414 ], [ -61.171875, 9.449062 ], [ -60.820312, 9.449062 ], [ -60.820312, 8.928487 ], [ -60.644531, 8.928487 ], [ -60.644531, 8.581021 ], [ -60.117188, 8.581021 ], [ -60.117188, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 8.233237 ], [ -59.941406, 8.233237 ], [ -59.941406, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 7.885147 ], [ -60.292969, 7.885147 ], [ -60.292969, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 7.536764 ], [ -60.644531, 7.536764 ], [ -60.644531, 7.188101 ], [ -60.468750, 7.188101 ], [ -60.468750, 7.013668 ], [ -60.292969, 7.013668 ], [ -60.292969, 6.839170 ], [ -60.644531, 6.839170 ], [ -60.644531, 6.664608 ], [ -61.171875, 6.664608 ], [ -61.171875, 6.140555 ], [ -61.347656, 6.140555 ], [ -61.347656, 5.790897 ], [ -61.171875, 5.790897 ], [ -61.171875, 5.615986 ], [ -60.996094, 5.615986 ], [ -60.996094, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 5.090944 ], [ -60.644531, 5.090944 ], [ -60.644531, 4.740675 ], [ -60.820312, 4.740675 ], [ -60.820312, 4.565474 ], [ -61.171875, 4.565474 ], [ -61.171875, 4.390229 ], [ -61.699219, 4.390229 ], [ -61.699219, 4.214943 ], [ -62.226562, 4.214943 ], [ -62.226562, 4.039618 ], [ -62.753906, 4.039618 ], [ -62.753906, 3.864255 ], [ -62.929688, 3.864255 ], [ -62.929688, 3.688855 ], [ -63.457031, 3.688855 ], [ -63.457031, 3.864255 ], [ -63.808594, 3.864255 ], [ -63.808594, 4.039618 ], [ -64.335938, 4.039618 ], [ -64.335938, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 3.864255 ], [ -64.335938, 3.864255 ], [ -64.335938, 2.460181 ], [ -63.457031, 2.460181 ], [ -63.457031, 2.108899 ], [ -63.808594, 2.108899 ], [ -63.808594, 1.933227 ], [ -64.160156, 1.933227 ], [ -64.160156, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.230374 ], [ -65.039062, 1.230374 ], [ -65.039062, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.878872 ], [ -65.566406, 0.878872 ], [ -65.566406, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 0.878872 ], [ -66.621094, 0.878872 ], [ -66.621094, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.406109 ], [ -66.972656, 1.406109 ], [ -66.972656, 1.933227 ], [ -67.148438, 1.933227 ], [ -67.148438, 2.284551 ], [ -67.324219, 2.284551 ], [ -67.324219, 2.460181 ], [ -67.500000, 2.460181 ], [ -67.500000, 2.635789 ], [ -67.851562, 2.635789 ], [ -67.851562, 2.811371 ], [ -67.675781, 2.811371 ], [ -67.675781, 2.986927 ], [ -67.500000, 2.986927 ], [ -67.500000, 3.162456 ], [ -67.324219, 3.162456 ], [ -67.324219, 3.513421 ], [ -67.500000, 3.513421 ], [ -67.500000, 3.688855 ], [ -67.675781, 3.688855 ], [ -67.675781, 4.214943 ], [ -67.851562, 4.214943 ], [ -67.851562, 4.915833 ], [ -67.675781, 4.915833 ], [ -67.675781, 5.441022 ], [ -67.500000, 5.441022 ], [ -67.500000, 5.790897 ], [ -67.324219, 5.790897 ], [ -67.324219, 6.140555 ], [ -67.675781, 6.140555 ], [ -67.675781, 6.315299 ], [ -67.851562, 6.315299 ], [ -67.851562, 6.140555 ], [ -69.609375, 6.140555 ], [ -69.609375, 6.315299 ], [ -69.785156, 6.315299 ], [ -69.785156, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 6.839170 ], [ -70.136719, 6.839170 ], [ -70.136719, 7.013668 ], [ -72.070312, 7.013668 ], [ -72.070312, 7.188101 ], [ -72.246094, 7.188101 ], [ -72.246094, 7.362467 ], [ -72.421875, 7.362467 ], [ -72.421875, 8.407168 ], [ -72.597656, 8.407168 ], [ -72.597656, 8.754795 ], [ -72.773438, 8.754795 ], [ -72.773438, 9.102097 ], [ -73.300781, 9.102097 ], [ -73.300781, 9.275622 ], [ -73.125000, 9.275622 ], [ -73.125000, 9.622414 ], [ -72.949219, 9.622414 ], [ -72.949219, 10.487812 ], [ -72.773438, 10.487812 ], [ -72.773438, 10.660608 ], [ -72.597656, 10.660608 ], [ -72.597656, 10.833306 ], [ -72.421875, 10.833306 ], [ -72.421875, 11.005904 ], [ -72.246094, 11.005904 ], [ -72.246094, 11.178402 ], [ -72.070312, 11.178402 ], [ -72.070312, 11.350797 ], [ -71.894531, 11.350797 ], [ -71.894531, 11.178402 ], [ -71.718750, 11.178402 ], [ -71.718750, 11.005904 ], [ -71.542969, 11.005904 ], [ -71.542969, 10.660608 ], [ -71.718750, 10.660608 ], [ -71.718750, 10.314919 ], [ -71.894531, 10.314919 ], [ -71.894531, 9.968851 ], [ -72.070312, 9.968851 ], [ -72.070312, 9.622414 ], [ -71.894531, 9.622414 ], [ -71.894531, 9.275622 ], [ -71.718750, 9.275622 ], [ -71.718750, 9.102097 ], [ -71.191406, 9.102097 ], [ -71.191406, 9.449062 ], [ -71.015625, 9.449062 ], [ -71.015625, 9.795678 ], [ -71.191406, 9.795678 ], [ -71.191406, 9.968851 ], [ -71.367188, 9.968851 ], [ -71.367188, 11.005904 ], [ -71.015625, 11.005904 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.350797 ], [ -70.136719, 11.350797 ], [ -70.136719, 11.523088 ], [ -70.312500, 11.523088 ], [ -70.312500, 11.867351 ], [ -70.136719, 11.867351 ], [ -70.136719, 12.039321 ], [ -69.785156, 12.039321 ] ] ], [ [ [ -71.542969, 11.523088 ], [ -71.542969, 11.350797 ], [ -71.894531, 11.350797 ], [ -71.894531, 11.523088 ], [ -71.542969, 11.523088 ] ] ], [ [ [ -71.367188, 11.523088 ], [ -71.542969, 11.523088 ], [ -71.542969, 11.695273 ], [ -71.367188, 11.695273 ], [ -71.367188, 11.523088 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 12.039321 ], [ -69.785156, 11.695273 ], [ -69.609375, 11.695273 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.350797 ], [ -68.730469, 11.350797 ], [ -68.730469, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 11.005904 ], [ -68.378906, 11.005904 ], [ -68.378906, 10.833306 ], [ -68.203125, 10.833306 ], [ -68.203125, 10.660608 ], [ -66.269531, 10.660608 ], [ -66.269531, 10.487812 ], [ -65.917969, 10.487812 ], [ -65.917969, 10.314919 ], [ -65.566406, 10.314919 ], [ -65.566406, 10.141932 ], [ -64.687500, 10.141932 ], [ -64.687500, 10.314919 ], [ -64.335938, 10.314919 ], [ -64.335938, 10.660608 ], [ -63.632812, 10.660608 ], [ -63.632812, 10.833306 ], [ -62.050781, 10.833306 ], [ -62.050781, 10.660608 ], [ -62.402344, 10.660608 ], [ -62.402344, 10.487812 ], [ -62.753906, 10.487812 ], [ -62.753906, 10.314919 ], [ -62.578125, 10.314919 ], [ -62.578125, 9.968851 ], [ -61.699219, 9.968851 ], [ -61.699219, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.622414 ], [ -61.171875, 9.622414 ], [ -61.171875, 9.449062 ], [ -60.996094, 9.449062 ], [ -60.996094, 8.928487 ], [ -60.820312, 8.928487 ], [ -60.820312, 8.581021 ], [ -60.468750, 8.581021 ], [ -60.468750, 8.754795 ], [ -60.292969, 8.754795 ], [ -60.292969, 8.581021 ], [ -59.941406, 8.581021 ], [ -59.941406, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 8.233237 ], [ -60.117188, 8.233237 ], [ -60.117188, 8.059230 ], [ -60.468750, 8.059230 ], [ -60.468750, 7.885147 ], [ -60.644531, 7.885147 ], [ -60.644531, 7.362467 ], [ -60.468750, 7.362467 ], [ -60.468750, 7.188101 ], [ -60.292969, 7.188101 ], [ -60.292969, 7.013668 ], [ -60.820312, 7.013668 ], [ -60.820312, 6.839170 ], [ -61.171875, 6.839170 ], [ -61.171875, 6.140555 ], [ -61.347656, 6.140555 ], [ -61.347656, 5.965754 ], [ -61.523438, 5.965754 ], [ -61.523438, 5.790897 ], [ -61.347656, 5.790897 ], [ -61.347656, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.441022 ], [ -60.996094, 5.441022 ], [ -60.996094, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 5.090944 ], [ -60.644531, 5.090944 ], [ -60.644531, 4.740675 ], [ -60.820312, 4.740675 ], [ -60.820312, 4.565474 ], [ -61.171875, 4.565474 ], [ -61.171875, 4.390229 ], [ -61.875000, 4.390229 ], [ -61.875000, 4.214943 ], [ -62.402344, 4.214943 ], [ -62.402344, 4.039618 ], [ -62.929688, 4.039618 ], [ -62.929688, 3.864255 ], [ -63.632812, 3.864255 ], [ -63.632812, 4.039618 ], [ -64.511719, 4.039618 ], [ -64.511719, 4.214943 ], [ -64.863281, 4.214943 ], [ -64.863281, 4.039618 ], [ -64.687500, 4.039618 ], [ -64.687500, 3.864255 ], [ -64.511719, 3.864255 ], [ -64.511719, 2.811371 ], [ -64.335938, 2.811371 ], [ -64.335938, 2.635789 ], [ -63.984375, 2.635789 ], [ -63.984375, 2.460181 ], [ -63.457031, 2.460181 ], [ -63.457031, 2.108899 ], [ -63.808594, 2.108899 ], [ -63.808594, 1.933227 ], [ -64.160156, 1.933227 ], [ -64.160156, 1.757537 ], [ -64.335938, 1.757537 ], [ -64.335938, 1.406109 ], [ -64.863281, 1.406109 ], [ -64.863281, 1.230374 ], [ -65.390625, 1.230374 ], [ -65.390625, 1.054628 ], [ -65.566406, 1.054628 ], [ -65.566406, 0.878872 ], [ -66.621094, 0.878872 ], [ -66.621094, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.230374 ], [ -66.972656, 1.230374 ], [ -66.972656, 1.581830 ], [ -67.148438, 1.581830 ], [ -67.148438, 1.933227 ], [ -67.324219, 1.933227 ], [ -67.324219, 2.460181 ], [ -67.500000, 2.460181 ], [ -67.500000, 2.635789 ], [ -67.675781, 2.635789 ], [ -67.675781, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 2.986927 ], [ -67.675781, 2.986927 ], [ -67.675781, 3.162456 ], [ -67.324219, 3.162456 ], [ -67.324219, 3.513421 ], [ -67.500000, 3.513421 ], [ -67.500000, 3.688855 ], [ -67.675781, 3.688855 ], [ -67.675781, 4.214943 ], [ -67.851562, 4.214943 ], [ -67.851562, 5.441022 ], [ -67.675781, 5.441022 ], [ -67.675781, 5.790897 ], [ -67.500000, 5.790897 ], [ -67.500000, 6.140555 ], [ -67.851562, 6.140555 ], [ -67.851562, 6.315299 ], [ -69.082031, 6.315299 ], [ -69.082031, 6.140555 ], [ -69.609375, 6.140555 ], [ -69.609375, 6.315299 ], [ -69.785156, 6.315299 ], [ -69.785156, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 6.839170 ], [ -70.136719, 6.839170 ], [ -70.136719, 7.013668 ], [ -70.664062, 7.013668 ], [ -70.664062, 7.188101 ], [ -71.367188, 7.188101 ], [ -71.367188, 7.013668 ], [ -72.070312, 7.013668 ], [ -72.070312, 7.188101 ], [ -72.246094, 7.188101 ], [ -72.246094, 7.362467 ], [ -72.597656, 7.362467 ], [ -72.597656, 7.885147 ], [ -72.421875, 7.885147 ], [ -72.421875, 8.233237 ], [ -72.597656, 8.233237 ], [ -72.597656, 8.581021 ], [ -72.773438, 8.581021 ], [ -72.773438, 8.928487 ], [ -72.949219, 8.928487 ], [ -72.949219, 9.102097 ], [ -73.300781, 9.102097 ], [ -73.300781, 9.622414 ], [ -73.125000, 9.622414 ], [ -73.125000, 10.141932 ], [ -72.949219, 10.141932 ], [ -72.949219, 10.660608 ], [ -72.773438, 10.660608 ], [ -72.773438, 10.833306 ], [ -72.597656, 10.833306 ], [ -72.597656, 11.005904 ], [ -72.246094, 11.005904 ], [ -72.246094, 11.350797 ], [ -72.070312, 11.350797 ], [ -71.894531, 11.350797 ], [ -71.894531, 11.005904 ], [ -71.718750, 11.005904 ], [ -71.718750, 10.314919 ], [ -71.894531, 10.314919 ], [ -71.894531, 10.141932 ], [ -72.070312, 10.141932 ], [ -72.070312, 9.968851 ], [ -72.246094, 9.968851 ], [ -72.246094, 9.795678 ], [ -72.070312, 9.795678 ], [ -72.070312, 9.449062 ], [ -71.894531, 9.449062 ], [ -71.894531, 9.102097 ], [ -71.367188, 9.102097 ], [ -71.367188, 9.622414 ], [ -71.191406, 9.622414 ], [ -71.191406, 10.141932 ], [ -71.367188, 10.141932 ], [ -71.367188, 10.660608 ], [ -71.542969, 10.660608 ], [ -71.542969, 11.005904 ], [ -71.191406, 11.005904 ], [ -71.191406, 11.178402 ], [ -70.839844, 11.178402 ], [ -70.839844, 11.350797 ], [ -70.488281, 11.350797 ], [ -70.488281, 11.523088 ], [ -70.312500, 11.523088 ], [ -70.312500, 11.867351 ], [ -70.136719, 11.867351 ], [ -70.136719, 12.039321 ], [ -69.785156, 12.039321 ] ] ], [ [ [ -71.542969, 11.695273 ], [ -71.542969, 11.523088 ], [ -72.070312, 11.523088 ], [ -72.070312, 11.695273 ], [ -71.542969, 11.695273 ] ] ], [ [ [ -71.367188, 11.695273 ], [ -71.542969, 11.695273 ], [ -71.542969, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.695273 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.820312, 10.833306 ], [ -60.820312, 10.487812 ], [ -60.996094, 10.487812 ], [ -60.996094, 10.141932 ], [ -61.171875, 10.141932 ], [ -61.171875, 9.968851 ], [ -61.875000, 9.968851 ], [ -61.875000, 10.141932 ], [ -61.699219, 10.141932 ], [ -61.699219, 10.833306 ], [ -60.820312, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.996094, 11.005904 ], [ -60.996094, 10.141932 ], [ -61.875000, 10.141932 ], [ -61.875000, 10.314919 ], [ -61.699219, 10.314919 ], [ -61.699219, 10.833306 ], [ -61.347656, 10.833306 ], [ -61.347656, 11.005904 ], [ -60.996094, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.414062, 8.233237 ], [ -59.414062, 8.059230 ], [ -59.062500, 8.059230 ], [ -59.062500, 7.885147 ], [ -58.886719, 7.885147 ], [ -58.886719, 7.710992 ], [ -58.710938, 7.710992 ], [ -58.710938, 7.362467 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.007812, 6.839170 ], [ -58.007812, 6.664608 ], [ -57.832031, 6.664608 ], [ -57.832031, 6.489983 ], [ -57.656250, 6.489983 ], [ -57.656250, 6.315299 ], [ -57.480469, 6.315299 ], [ -57.480469, 6.140555 ], [ -57.304688, 6.140555 ], [ -57.304688, 5.965754 ], [ -57.128906, 5.965754 ], [ -57.128906, 5.441022 ], [ -57.304688, 5.441022 ], [ -57.304688, 4.915833 ], [ -57.656250, 4.915833 ], [ -57.656250, 4.740675 ], [ -57.832031, 4.740675 ], [ -57.832031, 4.214943 ], [ -58.007812, 4.214943 ], [ -58.007812, 3.864255 ], [ -57.832031, 3.864255 ], [ -57.832031, 3.513421 ], [ -57.656250, 3.513421 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.304688, 2.986927 ], [ -57.128906, 2.986927 ], [ -57.128906, 2.635789 ], [ -56.953125, 2.635789 ], [ -56.953125, 2.284551 ], [ -56.777344, 2.284551 ], [ -56.777344, 1.933227 ], [ -57.304688, 1.933227 ], [ -57.304688, 1.757537 ], [ -57.832031, 1.757537 ], [ -57.832031, 1.581830 ], [ -58.183594, 1.581830 ], [ -58.183594, 1.406109 ], [ -58.359375, 1.406109 ], [ -58.359375, 1.230374 ], [ -59.238281, 1.230374 ], [ -59.238281, 1.406109 ], [ -59.414062, 1.406109 ], [ -59.414062, 1.581830 ], [ -59.589844, 1.581830 ], [ -59.589844, 1.933227 ], [ -59.765625, 1.933227 ], [ -59.765625, 2.460181 ], [ -59.941406, 2.460181 ], [ -59.941406, 3.162456 ], [ -59.765625, 3.162456 ], [ -59.765625, 3.864255 ], [ -59.589844, 3.864255 ], [ -59.589844, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.390229 ], [ -60.117188, 4.390229 ], [ -60.117188, 4.740675 ], [ -59.941406, 4.740675 ], [ -59.941406, 5.090944 ], [ -60.292969, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.996094, 5.266008 ], [ -60.996094, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.790897 ], [ -61.347656, 5.790897 ], [ -61.347656, 6.140555 ], [ -61.171875, 6.140555 ], [ -61.171875, 6.664608 ], [ -60.644531, 6.664608 ], [ -60.644531, 6.839170 ], [ -60.292969, 6.839170 ], [ -60.292969, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.188101 ], [ -60.644531, 7.188101 ], [ -60.644531, 7.536764 ], [ -60.468750, 7.536764 ], [ -60.468750, 7.710992 ], [ -60.292969, 7.710992 ], [ -60.292969, 7.885147 ], [ -60.117188, 7.885147 ], [ -60.117188, 8.059230 ], [ -59.941406, 8.059230 ], [ -59.941406, 8.233237 ], [ -59.414062, 8.233237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.414062, 8.233237 ], [ -59.414062, 8.059230 ], [ -59.238281, 8.059230 ], [ -59.238281, 7.885147 ], [ -59.062500, 7.885147 ], [ -59.062500, 7.710992 ], [ -58.886719, 7.710992 ], [ -58.886719, 7.536764 ], [ -58.710938, 7.536764 ], [ -58.710938, 7.362467 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.183594, 6.839170 ], [ -58.183594, 6.664608 ], [ -57.832031, 6.664608 ], [ -57.832031, 6.489983 ], [ -57.656250, 6.489983 ], [ -57.656250, 6.315299 ], [ -57.480469, 6.315299 ], [ -57.480469, 6.140555 ], [ -57.304688, 6.140555 ], [ -57.304688, 5.090944 ], [ -57.480469, 5.090944 ], [ -57.480469, 4.915833 ], [ -58.007812, 4.915833 ], [ -58.007812, 4.390229 ], [ -58.183594, 4.390229 ], [ -58.183594, 4.039618 ], [ -58.007812, 4.039618 ], [ -58.007812, 3.688855 ], [ -57.832031, 3.688855 ], [ -57.832031, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.304688, 2.635789 ], [ -57.128906, 2.635789 ], [ -57.128906, 2.460181 ], [ -56.953125, 2.460181 ], [ -56.953125, 2.108899 ], [ -56.777344, 2.108899 ], [ -56.777344, 1.933227 ], [ -57.304688, 1.933227 ], [ -57.304688, 2.108899 ], [ -57.480469, 2.108899 ], [ -57.480469, 1.933227 ], [ -57.656250, 1.933227 ], [ -57.656250, 1.757537 ], [ -57.832031, 1.757537 ], [ -57.832031, 1.581830 ], [ -58.535156, 1.581830 ], [ -58.535156, 1.406109 ], [ -59.238281, 1.406109 ], [ -59.238281, 1.581830 ], [ -59.589844, 1.581830 ], [ -59.589844, 1.757537 ], [ -59.765625, 1.757537 ], [ -59.765625, 2.284551 ], [ -59.941406, 2.284551 ], [ -59.941406, 2.635789 ], [ -60.117188, 2.635789 ], [ -60.117188, 3.162456 ], [ -59.941406, 3.162456 ], [ -59.941406, 3.688855 ], [ -59.765625, 3.688855 ], [ -59.765625, 3.864255 ], [ -59.589844, 3.864255 ], [ -59.589844, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.565474 ], [ -60.117188, 4.565474 ], [ -60.117188, 5.090944 ], [ -60.292969, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.996094, 5.266008 ], [ -60.996094, 5.441022 ], [ -61.171875, 5.441022 ], [ -61.171875, 5.615986 ], [ -61.347656, 5.615986 ], [ -61.347656, 5.790897 ], [ -61.523438, 5.790897 ], [ -61.523438, 5.965754 ], [ -61.347656, 5.965754 ], [ -61.347656, 6.140555 ], [ -61.171875, 6.140555 ], [ -61.171875, 6.839170 ], [ -60.820312, 6.839170 ], [ -60.820312, 7.013668 ], [ -60.292969, 7.013668 ], [ -60.292969, 7.188101 ], [ -60.468750, 7.188101 ], [ -60.468750, 7.362467 ], [ -60.644531, 7.362467 ], [ -60.644531, 7.885147 ], [ -60.468750, 7.885147 ], [ -60.468750, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 8.233237 ], [ -59.414062, 8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.667969, 5.965754 ], [ -54.667969, 5.790897 ], [ -53.964844, 5.790897 ], [ -53.964844, 5.615986 ], [ -54.140625, 5.615986 ], [ -54.140625, 5.266008 ], [ -54.316406, 5.266008 ], [ -54.316406, 4.915833 ], [ -54.492188, 4.915833 ], [ -54.492188, 4.565474 ], [ -54.316406, 4.565474 ], [ -54.316406, 4.039618 ], [ -54.140625, 4.039618 ], [ -54.140625, 3.688855 ], [ -53.964844, 3.688855 ], [ -53.964844, 3.337954 ], [ -54.140625, 3.337954 ], [ -54.140625, 2.986927 ], [ -54.316406, 2.986927 ], [ -54.316406, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 2.284551 ], [ -54.843750, 2.284551 ], [ -54.843750, 2.460181 ], [ -55.898438, 2.460181 ], [ -55.898438, 2.284551 ], [ -56.074219, 2.284551 ], [ -56.074219, 2.108899 ], [ -55.898438, 2.108899 ], [ -55.898438, 1.933227 ], [ -56.074219, 1.933227 ], [ -56.074219, 1.757537 ], [ -56.425781, 1.757537 ], [ -56.425781, 1.933227 ], [ -56.777344, 1.933227 ], [ -56.777344, 2.284551 ], [ -56.953125, 2.284551 ], [ -56.953125, 2.635789 ], [ -57.128906, 2.635789 ], [ -57.128906, 2.986927 ], [ -57.304688, 2.986927 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -57.656250, 3.513421 ], [ -57.832031, 3.513421 ], [ -57.832031, 3.864255 ], [ -58.007812, 3.864255 ], [ -58.007812, 4.214943 ], [ -57.832031, 4.214943 ], [ -57.832031, 4.740675 ], [ -57.656250, 4.740675 ], [ -57.656250, 4.915833 ], [ -57.304688, 4.915833 ], [ -57.304688, 5.441022 ], [ -57.128906, 5.441022 ], [ -57.128906, 5.965754 ], [ -56.601562, 5.965754 ], [ -56.601562, 5.790897 ], [ -55.898438, 5.790897 ], [ -55.898438, 5.965754 ], [ -54.667969, 5.965754 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.019531, 6.140555 ], [ -55.019531, 5.965754 ], [ -54.316406, 5.965754 ], [ -54.316406, 5.790897 ], [ -53.964844, 5.790897 ], [ -53.964844, 5.615986 ], [ -54.140625, 5.615986 ], [ -54.140625, 5.266008 ], [ -54.316406, 5.266008 ], [ -54.316406, 4.915833 ], [ -54.492188, 4.915833 ], [ -54.492188, 4.039618 ], [ -54.316406, 4.039618 ], [ -54.316406, 3.688855 ], [ -54.140625, 3.688855 ], [ -54.140625, 3.513421 ], [ -54.316406, 3.513421 ], [ -54.316406, 2.635789 ], [ -54.492188, 2.635789 ], [ -54.492188, 2.460181 ], [ -55.019531, 2.460181 ], [ -55.019531, 2.635789 ], [ -55.371094, 2.635789 ], [ -55.371094, 2.460181 ], [ -56.074219, 2.460181 ], [ -56.074219, 1.933227 ], [ -56.777344, 1.933227 ], [ -56.777344, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 2.460181 ], [ -57.128906, 2.460181 ], [ -57.128906, 2.635789 ], [ -57.304688, 2.635789 ], [ -57.304688, 3.337954 ], [ -57.832031, 3.337954 ], [ -57.832031, 3.688855 ], [ -58.007812, 3.688855 ], [ -58.007812, 4.039618 ], [ -58.183594, 4.039618 ], [ -58.183594, 4.390229 ], [ -58.007812, 4.390229 ], [ -58.007812, 4.915833 ], [ -57.480469, 4.915833 ], [ -57.480469, 5.090944 ], [ -57.304688, 5.090944 ], [ -57.304688, 6.140555 ], [ -57.128906, 6.140555 ], [ -57.128906, 5.965754 ], [ -56.425781, 5.965754 ], [ -56.425781, 5.790897 ], [ -55.898438, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.371094, 5.965754 ], [ -55.371094, 6.140555 ], [ -55.019531, 6.140555 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.437500, 5.615986 ], [ -53.437500, 5.441022 ], [ -52.910156, 5.441022 ], [ -52.910156, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 5.090944 ], [ -52.558594, 5.090944 ], [ -52.558594, 4.915833 ], [ -52.207031, 4.915833 ], [ -52.207031, 4.740675 ], [ -52.031250, 4.740675 ], [ -52.031250, 4.565474 ], [ -51.855469, 4.565474 ], [ -51.855469, 4.390229 ], [ -51.679688, 4.390229 ], [ -51.679688, 4.039618 ], [ -51.855469, 4.039618 ], [ -51.855469, 3.688855 ], [ -52.031250, 3.688855 ], [ -52.031250, 3.337954 ], [ -52.207031, 3.337954 ], [ -52.207031, 2.986927 ], [ -52.382812, 2.986927 ], [ -52.382812, 2.635789 ], [ -52.558594, 2.635789 ], [ -52.558594, 2.284551 ], [ -52.734375, 2.284551 ], [ -52.734375, 2.108899 ], [ -53.613281, 2.108899 ], [ -53.613281, 2.284551 ], [ -53.964844, 2.284551 ], [ -53.964844, 2.108899 ], [ -54.492188, 2.108899 ], [ -54.492188, 2.460181 ], [ -54.316406, 2.460181 ], [ -54.316406, 2.986927 ], [ -54.140625, 2.986927 ], [ -54.140625, 3.337954 ], [ -53.964844, 3.337954 ], [ -53.964844, 3.688855 ], [ -54.140625, 3.688855 ], [ -54.140625, 4.039618 ], [ -54.316406, 4.039618 ], [ -54.316406, 4.565474 ], [ -54.492188, 4.565474 ], [ -54.492188, 4.915833 ], [ -54.316406, 4.915833 ], [ -54.316406, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 5.615986 ], [ -53.437500, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.613281, 5.790897 ], [ -53.613281, 5.615986 ], [ -53.261719, 5.615986 ], [ -53.261719, 5.441022 ], [ -52.910156, 5.441022 ], [ -52.910156, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 5.090944 ], [ -52.558594, 5.090944 ], [ -52.558594, 4.915833 ], [ -52.207031, 4.915833 ], [ -52.207031, 4.740675 ], [ -52.031250, 4.740675 ], [ -52.031250, 4.565474 ], [ -51.855469, 4.565474 ], [ -51.855469, 4.390229 ], [ -51.679688, 4.390229 ], [ -51.679688, 4.039618 ], [ -51.855469, 4.039618 ], [ -51.855469, 3.864255 ], [ -52.031250, 3.864255 ], [ -52.031250, 3.513421 ], [ -52.207031, 3.513421 ], [ -52.207031, 3.337954 ], [ -52.382812, 3.337954 ], [ -52.382812, 2.986927 ], [ -52.558594, 2.986927 ], [ -52.558594, 2.460181 ], [ -52.910156, 2.460181 ], [ -52.910156, 2.284551 ], [ -53.085938, 2.284551 ], [ -53.085938, 2.108899 ], [ -53.437500, 2.108899 ], [ -53.437500, 2.284551 ], [ -53.613281, 2.284551 ], [ -53.613281, 2.460181 ], [ -53.789062, 2.460181 ], [ -53.789062, 2.284551 ], [ -53.964844, 2.284551 ], [ -53.964844, 2.108899 ], [ -54.316406, 2.108899 ], [ -54.316406, 2.284551 ], [ -54.667969, 2.284551 ], [ -54.667969, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 2.635789 ], [ -54.316406, 2.635789 ], [ -54.316406, 3.513421 ], [ -54.140625, 3.513421 ], [ -54.140625, 3.688855 ], [ -54.316406, 3.688855 ], [ -54.316406, 4.039618 ], [ -54.492188, 4.039618 ], [ -54.492188, 4.915833 ], [ -54.316406, 4.915833 ], [ -54.316406, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 5.615986 ], [ -53.964844, 5.615986 ], [ -53.964844, 5.790897 ], [ -53.613281, 5.790897 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.574219, 1.230374 ], [ -78.574219, 1.054628 ], [ -78.222656, 1.054628 ], [ -78.222656, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.175781 ], [ -75.937500, 0.175781 ], [ -75.937500, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, -0.175781 ], [ -75.410156, -0.175781 ], [ -75.410156, -0.527336 ], [ -75.234375, -0.527336 ], [ -75.234375, -0.878872 ], [ -80.507812, -0.878872 ], [ -80.507812, -0.703107 ], [ -80.332031, -0.703107 ], [ -80.332031, -0.175781 ], [ -80.156250, -0.175781 ], [ -80.156250, 0.175781 ], [ -79.980469, 0.175781 ], [ -79.980469, 0.527336 ], [ -80.156250, 0.527336 ], [ -80.156250, 0.703107 ], [ -79.980469, 0.703107 ], [ -79.980469, 0.878872 ], [ -79.628906, 0.878872 ], [ -79.628906, 1.054628 ], [ -79.277344, 1.054628 ], [ -79.277344, 1.230374 ], [ -78.574219, 1.230374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.574219, 1.230374 ], [ -78.574219, 1.054628 ], [ -78.222656, 1.054628 ], [ -78.222656, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.527336 ], [ -77.167969, 0.527336 ], [ -77.167969, 0.351560 ], [ -76.113281, 0.351560 ], [ -76.113281, 0.175781 ], [ -75.761719, 0.175781 ], [ -75.761719, 0.000000 ], [ -75.410156, 0.000000 ], [ -75.410156, -0.878872 ], [ -80.683594, -0.878872 ], [ -80.683594, -0.527336 ], [ -80.507812, -0.527336 ], [ -80.507812, 0.000000 ], [ -80.332031, 0.000000 ], [ -80.332031, 0.351560 ], [ -80.156250, 0.351560 ], [ -80.156250, 0.878872 ], [ -79.804688, 0.878872 ], [ -79.804688, 1.054628 ], [ -79.277344, 1.054628 ], [ -79.277344, 1.230374 ], [ -78.574219, 1.230374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.175781 ], [ -74.882812, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.527336 ], [ -74.355469, -0.527336 ], [ -74.355469, -0.703107 ], [ -74.179688, -0.703107 ], [ -74.179688, -0.878872 ], [ -75.234375, -0.878872 ], [ -75.234375, -0.527336 ], [ -75.410156, -0.527336 ], [ -75.410156, -0.175781 ], [ -74.882812, -0.175781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.234375, 0.000000 ], [ -75.234375, -0.175781 ], [ -75.058594, -0.175781 ], [ -75.058594, -0.351560 ], [ -74.707031, -0.351560 ], [ -74.707031, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.703107 ], [ -74.355469, -0.703107 ], [ -74.355469, -0.878872 ], [ -75.410156, -0.878872 ], [ -75.410156, 0.000000 ], [ -75.234375, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.292969, 5.266008 ], [ -60.292969, 5.090944 ], [ -59.941406, 5.090944 ], [ -59.941406, 4.740675 ], [ -60.117188, 4.740675 ], [ -60.117188, 4.390229 ], [ -59.765625, 4.390229 ], [ -59.765625, 4.214943 ], [ -59.589844, 4.214943 ], [ -59.589844, 3.864255 ], [ -59.765625, 3.864255 ], [ -59.765625, 3.162456 ], [ -59.941406, 3.162456 ], [ -59.941406, 2.460181 ], [ -59.765625, 2.460181 ], [ -59.765625, 1.933227 ], [ -59.589844, 1.933227 ], [ -59.589844, 1.581830 ], [ -59.414062, 1.581830 ], [ -59.414062, 1.406109 ], [ -59.238281, 1.406109 ], [ -59.238281, 1.230374 ], [ -58.359375, 1.230374 ], [ -58.359375, 1.406109 ], [ -58.183594, 1.406109 ], [ -58.183594, 1.581830 ], [ -57.832031, 1.581830 ], [ -57.832031, 1.757537 ], [ -57.304688, 1.757537 ], [ -57.304688, 1.933227 ], [ -56.425781, 1.933227 ], [ -56.425781, 1.757537 ], [ -56.074219, 1.757537 ], [ -56.074219, 1.933227 ], [ -55.898438, 1.933227 ], [ -55.898438, 2.108899 ], [ -56.074219, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.898438, 2.284551 ], [ -55.898438, 2.460181 ], [ -54.843750, 2.460181 ], [ -54.843750, 2.284551 ], [ -54.492188, 2.284551 ], [ -54.492188, 2.108899 ], [ -53.964844, 2.108899 ], [ -53.964844, 2.284551 ], [ -53.613281, 2.284551 ], [ -53.613281, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.284551 ], [ -52.558594, 2.284551 ], [ -52.558594, 2.635789 ], [ -52.382812, 2.635789 ], [ -52.382812, 2.986927 ], [ -52.207031, 2.986927 ], [ -52.207031, 3.337954 ], [ -52.031250, 3.337954 ], [ -52.031250, 3.688855 ], [ -51.855469, 3.688855 ], [ -51.855469, 4.039618 ], [ -51.679688, 4.039618 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.864255 ], [ -51.152344, 3.864255 ], [ -51.152344, 3.337954 ], [ -50.976562, 3.337954 ], [ -50.976562, 2.986927 ], [ -50.800781, 2.986927 ], [ -50.800781, 2.460181 ], [ -50.625000, 2.460181 ], [ -50.625000, 2.108899 ], [ -50.449219, 2.108899 ], [ -50.449219, 1.933227 ], [ -50.273438, 1.933227 ], [ -50.273438, 1.757537 ], [ -49.921875, 1.757537 ], [ -49.921875, 0.878872 ], [ -50.097656, 0.878872 ], [ -50.097656, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.449219, 0.351560 ], [ -50.449219, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -0.527336 ], [ -48.515625, -0.527336 ], [ -48.515625, -0.878872 ], [ -69.433594, -0.878872 ], [ -69.433594, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -69.960938, -0.351560 ], [ -69.960938, 0.527336 ], [ -69.609375, 0.527336 ], [ -69.609375, 0.703107 ], [ -69.433594, 0.703107 ], [ -69.433594, 0.527336 ], [ -69.257812, 0.527336 ], [ -69.257812, 1.054628 ], [ -69.785156, 1.054628 ], [ -69.785156, 1.757537 ], [ -67.675781, 1.757537 ], [ -67.675781, 1.933227 ], [ -67.324219, 1.933227 ], [ -67.324219, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.054628 ], [ -66.621094, 1.054628 ], [ -66.621094, 0.878872 ], [ -66.445312, 0.878872 ], [ -66.445312, 0.703107 ], [ -65.566406, 0.703107 ], [ -65.566406, 0.878872 ], [ -65.390625, 0.878872 ], [ -65.390625, 1.054628 ], [ -65.039062, 1.054628 ], [ -65.039062, 1.230374 ], [ -64.687500, 1.230374 ], [ -64.687500, 1.406109 ], [ -64.160156, 1.406109 ], [ -64.160156, 1.933227 ], [ -63.808594, 1.933227 ], [ -63.808594, 2.108899 ], [ -63.457031, 2.108899 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.460181 ], [ -64.335938, 3.864255 ], [ -64.687500, 3.864255 ], [ -64.687500, 4.214943 ], [ -64.335938, 4.214943 ], [ -64.335938, 4.039618 ], [ -63.808594, 4.039618 ], [ -63.808594, 3.864255 ], [ -63.457031, 3.864255 ], [ -63.457031, 3.688855 ], [ -62.929688, 3.688855 ], [ -62.929688, 3.864255 ], [ -62.753906, 3.864255 ], [ -62.753906, 4.039618 ], [ -62.226562, 4.039618 ], [ -62.226562, 4.214943 ], [ -61.699219, 4.214943 ], [ -61.699219, 4.390229 ], [ -61.171875, 4.390229 ], [ -61.171875, 4.565474 ], [ -60.820312, 4.565474 ], [ -60.820312, 4.740675 ], [ -60.644531, 4.740675 ], [ -60.644531, 5.090944 ], [ -60.820312, 5.090944 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ] ] ], [ [ [ -47.988281, -0.878872 ], [ -47.988281, -0.703107 ], [ -47.812500, -0.703107 ], [ -47.812500, -0.527336 ], [ -47.636719, -0.527336 ], [ -47.636719, -0.703107 ], [ -47.109375, -0.703107 ], [ -47.109375, -0.878872 ], [ -47.988281, -0.878872 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.292969, 5.266008 ], [ -60.292969, 5.090944 ], [ -60.117188, 5.090944 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.565474 ], [ -59.765625, 4.214943 ], [ -59.589844, 4.214943 ], [ -59.589844, 3.864255 ], [ -59.765625, 3.864255 ], [ -59.765625, 3.688855 ], [ -59.941406, 3.688855 ], [ -59.941406, 3.162456 ], [ -60.117188, 3.162456 ], [ -60.117188, 2.635789 ], [ -59.941406, 2.635789 ], [ -59.941406, 2.284551 ], [ -59.765625, 2.284551 ], [ -59.765625, 1.757537 ], [ -59.589844, 1.757537 ], [ -59.589844, 1.581830 ], [ -59.238281, 1.581830 ], [ -59.238281, 1.406109 ], [ -58.535156, 1.406109 ], [ -58.535156, 1.581830 ], [ -57.832031, 1.581830 ], [ -57.832031, 1.757537 ], [ -57.656250, 1.757537 ], [ -57.656250, 1.933227 ], [ -57.480469, 1.933227 ], [ -57.480469, 2.108899 ], [ -57.304688, 2.108899 ], [ -57.304688, 1.933227 ], [ -56.074219, 1.933227 ], [ -56.074219, 2.460181 ], [ -55.371094, 2.460181 ], [ -55.371094, 2.635789 ], [ -55.019531, 2.635789 ], [ -55.019531, 2.460181 ], [ -54.667969, 2.460181 ], [ -54.667969, 2.284551 ], [ -54.316406, 2.284551 ], [ -54.316406, 2.108899 ], [ -53.964844, 2.108899 ], [ -53.964844, 2.284551 ], [ -53.789062, 2.284551 ], [ -53.789062, 2.460181 ], [ -53.613281, 2.460181 ], [ -53.613281, 2.284551 ], [ -53.437500, 2.284551 ], [ -53.437500, 2.108899 ], [ -53.085938, 2.108899 ], [ -53.085938, 2.284551 ], [ -52.910156, 2.284551 ], [ -52.910156, 2.460181 ], [ -52.558594, 2.460181 ], [ -52.558594, 2.986927 ], [ -52.382812, 2.986927 ], [ -52.382812, 3.337954 ], [ -52.207031, 3.337954 ], [ -52.207031, 3.513421 ], [ -52.031250, 3.513421 ], [ -52.031250, 3.864255 ], [ -51.855469, 3.864255 ], [ -51.855469, 4.039618 ], [ -51.679688, 4.039618 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.864255 ], [ -51.152344, 3.864255 ], [ -51.152344, 3.337954 ], [ -50.976562, 3.337954 ], [ -50.976562, 2.811371 ], [ -50.800781, 2.811371 ], [ -50.800781, 2.108899 ], [ -50.625000, 2.108899 ], [ -50.625000, 1.933227 ], [ -50.449219, 1.933227 ], [ -50.449219, 1.757537 ], [ -50.097656, 1.757537 ], [ -50.097656, 0.878872 ], [ -50.273438, 0.878872 ], [ -50.273438, 0.703107 ], [ -50.449219, 0.703107 ], [ -50.449219, 0.527336 ], [ -50.625000, 0.527336 ], [ -50.625000, 0.351560 ], [ -50.800781, 0.351560 ], [ -50.800781, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -0.878872 ], [ -69.609375, -0.878872 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -70.136719, -0.351560 ], [ -70.136719, 0.703107 ], [ -69.785156, 0.703107 ], [ -69.785156, 0.878872 ], [ -69.609375, 0.878872 ], [ -69.609375, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.785156, 1.054628 ], [ -69.785156, 1.230374 ], [ -69.960938, 1.230374 ], [ -69.960938, 1.757537 ], [ -67.851562, 1.757537 ], [ -67.851562, 1.933227 ], [ -67.500000, 1.933227 ], [ -67.500000, 1.757537 ], [ -67.324219, 1.757537 ], [ -67.324219, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.230374 ], [ -66.796875, 1.230374 ], [ -66.796875, 1.054628 ], [ -66.621094, 1.054628 ], [ -66.621094, 0.878872 ], [ -65.566406, 0.878872 ], [ -65.566406, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 1.230374 ], [ -64.863281, 1.230374 ], [ -64.863281, 1.406109 ], [ -64.335938, 1.406109 ], [ -64.335938, 1.757537 ], [ -64.160156, 1.757537 ], [ -64.160156, 1.933227 ], [ -63.808594, 1.933227 ], [ -63.808594, 2.108899 ], [ -63.457031, 2.108899 ], [ -63.457031, 2.460181 ], [ -63.984375, 2.460181 ], [ -63.984375, 2.635789 ], [ -64.335938, 2.635789 ], [ -64.335938, 2.811371 ], [ -64.511719, 2.811371 ], [ -64.511719, 3.864255 ], [ -64.687500, 3.864255 ], [ -64.687500, 4.039618 ], [ -64.863281, 4.039618 ], [ -64.863281, 4.214943 ], [ -64.511719, 4.214943 ], [ -64.511719, 4.039618 ], [ -63.632812, 4.039618 ], [ -63.632812, 3.864255 ], [ -62.929688, 3.864255 ], [ -62.929688, 4.039618 ], [ -62.402344, 4.039618 ], [ -62.402344, 4.214943 ], [ -61.875000, 4.214943 ], [ -61.875000, 4.390229 ], [ -61.171875, 4.390229 ], [ -61.171875, 4.565474 ], [ -60.820312, 4.565474 ], [ -60.820312, 4.740675 ], [ -60.644531, 4.740675 ], [ -60.644531, 5.090944 ], [ -60.820312, 5.090944 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ] ] ], [ [ [ -48.164062, -0.878872 ], [ -48.164062, -0.703107 ], [ -47.988281, -0.703107 ], [ -47.988281, -0.527336 ], [ -47.812500, -0.527336 ], [ -47.812500, -0.703107 ], [ -47.285156, -0.703107 ], [ -47.285156, -0.878872 ], [ -48.164062, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.167969, 62.512318 ], [ -77.167969, 62.431074 ], [ -76.640625, 62.431074 ], [ -76.640625, 62.349609 ], [ -76.113281, 62.349609 ], [ -76.113281, 62.267923 ], [ -75.410156, 62.267923 ], [ -75.410156, 62.186014 ], [ -74.531250, 62.186014 ], [ -74.531250, 62.267923 ], [ -74.179688, 62.267923 ], [ -74.179688, 62.349609 ], [ -73.652344, 62.349609 ], [ -73.652344, 62.267923 ], [ -73.300781, 62.267923 ], [ -73.300781, 62.186014 ], [ -73.125000, 62.186014 ], [ -73.125000, 62.103883 ], [ -72.949219, 62.103883 ], [ -72.949219, 62.021528 ], [ -72.773438, 62.021528 ], [ -72.773438, 61.938950 ], [ -72.597656, 61.938950 ], [ -72.597656, 61.856149 ], [ -72.421875, 61.856149 ], [ -72.421875, 61.773123 ], [ -72.246094, 61.773123 ], [ -72.246094, 61.689872 ], [ -72.070312, 61.689872 ], [ -72.070312, 61.606396 ], [ -71.894531, 61.606396 ], [ -71.894531, 61.522695 ], [ -71.718750, 61.522695 ], [ -71.718750, 61.354614 ], [ -71.542969, 61.354614 ], [ -71.542969, 61.185625 ], [ -71.367188, 61.185625 ], [ -71.367188, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 59.888937 ], [ -69.433594, 59.888937 ], [ -69.433594, 59.265881 ], [ -69.257812, 59.265881 ], [ -69.257812, 58.995311 ], [ -69.082031, 58.995311 ], [ -69.082031, 58.904646 ], [ -68.730469, 58.904646 ], [ -68.730469, 58.813742 ], [ -68.378906, 58.813742 ], [ -68.378906, 58.722599 ], [ -68.203125, 58.722599 ], [ -68.203125, 58.539595 ], [ -68.027344, 58.539595 ], [ -68.027344, 58.355630 ], [ -67.851562, 58.355630 ], [ -67.851562, 58.170702 ], [ -67.500000, 58.170702 ], [ -67.500000, 58.263287 ], [ -67.148438, 58.263287 ], [ -67.148438, 58.355630 ], [ -66.972656, 58.355630 ], [ -66.972656, 58.447733 ], [ -66.796875, 58.447733 ], [ -66.796875, 58.539595 ], [ -66.445312, 58.539595 ], [ -66.445312, 58.631217 ], [ -66.269531, 58.631217 ], [ -66.269531, 58.813742 ], [ -66.093750, 58.813742 ], [ -66.093750, 58.995311 ], [ -65.917969, 58.995311 ], [ -65.917969, 59.175928 ], [ -65.742188, 59.175928 ], [ -65.742188, 59.355596 ], [ -65.566406, 59.355596 ], [ -65.566406, 59.534318 ], [ -65.390625, 59.534318 ], [ -65.390625, 59.712097 ], [ -65.214844, 59.712097 ], [ -65.214844, 59.888937 ], [ -65.039062, 59.888937 ], [ -65.039062, 59.977005 ], [ -64.863281, 59.977005 ], [ -64.863281, 60.152442 ], [ -64.687500, 60.152442 ], [ -64.687500, 60.239811 ], [ -64.511719, 60.239811 ], [ -64.511719, 60.152442 ], [ -64.335938, 60.152442 ], [ -64.335938, 59.977005 ], [ -64.160156, 59.977005 ], [ -64.160156, 59.712097 ], [ -63.984375, 59.712097 ], [ -63.984375, 59.534318 ], [ -63.808594, 59.534318 ], [ -63.808594, 59.355596 ], [ -63.632812, 59.355596 ], [ -63.632812, 59.175928 ], [ -63.457031, 59.175928 ], [ -63.457031, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.813742 ], [ -63.105469, 58.813742 ], [ -63.105469, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.447733 ], [ -62.753906, 58.447733 ], [ -62.753906, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 58.077876 ], [ -62.402344, 58.077876 ], [ -62.402344, 57.891497 ], [ -62.226562, 57.891497 ], [ -62.226562, 57.704147 ], [ -62.050781, 57.704147 ], [ -62.050781, 57.515823 ], [ -61.875000, 57.515823 ], [ -61.875000, 57.326521 ], [ -61.699219, 57.326521 ], [ -61.699219, 57.136239 ], [ -61.523438, 57.136239 ], [ -61.523438, 56.944974 ], [ -61.347656, 56.944974 ], [ -61.347656, 56.848972 ], [ -61.523438, 56.848972 ], [ -61.523438, 56.656226 ], [ -61.699219, 56.656226 ], [ -61.699219, 56.462490 ], [ -61.875000, 56.462490 ], [ -61.875000, 56.267761 ], [ -61.699219, 56.267761 ], [ -61.699219, 56.170023 ], [ -61.347656, 56.170023 ], [ -61.347656, 56.072035 ], [ -61.171875, 56.072035 ], [ -61.171875, 55.973798 ], [ -60.996094, 55.973798 ], [ -60.996094, 55.875311 ], [ -60.644531, 55.875311 ], [ -60.644531, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.677584 ], [ -60.292969, 55.677584 ], [ -60.292969, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.478853 ], [ -59.941406, 55.478853 ], [ -59.941406, 55.279115 ], [ -59.765625, 55.279115 ], [ -59.765625, 55.178868 ], [ -59.238281, 55.178868 ], [ -59.238281, 55.078367 ], [ -58.535156, 55.078367 ], [ -58.535156, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.876607 ], [ -57.832031, 54.876607 ], [ -57.832031, 54.775346 ], [ -57.480469, 54.775346 ], [ -57.480469, 54.673831 ], [ -57.304688, 54.673831 ], [ -57.304688, 54.367759 ], [ -57.128906, 54.367759 ], [ -57.128906, 53.956086 ], [ -56.953125, 53.956086 ], [ -56.953125, 53.748711 ], [ -56.601562, 53.748711 ], [ -56.601562, 53.644638 ], [ -56.074219, 53.644638 ], [ -56.074219, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 53.330873 ], [ -55.722656, 53.330873 ], [ -55.722656, 52.052490 ], [ -55.898438, 52.052490 ], [ -55.898438, 51.944265 ], [ -56.074219, 51.944265 ], [ -56.074219, 51.835778 ], [ -56.250000, 51.835778 ], [ -56.250000, 51.727028 ], [ -56.425781, 51.727028 ], [ -56.425781, 51.618017 ], [ -56.601562, 51.618017 ], [ -56.601562, 51.508742 ], [ -56.953125, 51.508742 ], [ -56.953125, 51.399206 ], [ -57.304688, 51.399206 ], [ -57.304688, 51.289406 ], [ -57.832031, 51.289406 ], [ -57.832031, 51.179343 ], [ -58.359375, 51.179343 ], [ -58.359375, 51.069017 ], [ -58.710938, 51.069017 ], [ -58.710938, 50.958427 ], [ -58.886719, 50.958427 ], [ -58.886719, 50.847573 ], [ -59.062500, 50.847573 ], [ -59.062500, 50.736455 ], [ -59.238281, 50.736455 ], [ -59.238281, 50.625073 ], [ -59.589844, 50.625073 ], [ -59.589844, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.401515 ], [ -59.941406, 50.401515 ], [ -59.941406, 50.289339 ], [ -60.468750, 50.289339 ], [ -60.468750, 50.176898 ], [ -61.171875, 50.176898 ], [ -61.171875, 50.064192 ], [ -62.402344, 50.064192 ], [ -62.402344, 50.176898 ], [ -63.457031, 50.176898 ], [ -63.457031, 50.289339 ], [ -65.742188, 50.289339 ], [ -65.742188, 50.176898 ], [ -66.445312, 50.176898 ], [ -66.445312, 50.064192 ], [ -66.621094, 50.064192 ], [ -66.621094, 49.837982 ], [ -66.796875, 49.837982 ], [ -66.796875, 49.724479 ], [ -66.972656, 49.724479 ], [ -66.972656, 49.496675 ], [ -67.148438, 49.496675 ], [ -67.148438, 49.382373 ], [ -67.500000, 49.382373 ], [ -67.500000, 49.267805 ], [ -67.851562, 49.267805 ], [ -67.851562, 49.152970 ], [ -68.203125, 49.152970 ], [ -68.203125, 49.037868 ], [ -68.554688, 49.037868 ], [ -68.554688, 48.922499 ], [ -68.730469, 48.922499 ], [ -68.730469, 48.690960 ], [ -68.906250, 48.690960 ], [ -68.906250, 48.574790 ], [ -69.082031, 48.574790 ], [ -69.082031, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.433594, 48.224673 ], [ -69.433594, 48.107431 ], [ -69.609375, 48.107431 ], [ -69.609375, 47.989922 ], [ -69.785156, 47.989922 ], [ -69.785156, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.635784 ], [ -70.136719, 47.635784 ], [ -70.136719, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.398349 ], [ -70.488281, 47.398349 ], [ -70.488281, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 47.040182 ], [ -70.839844, 47.040182 ], [ -70.839844, 46.920255 ], [ -70.488281, 46.920255 ], [ -70.488281, 47.040182 ], [ -70.136719, 47.040182 ], [ -70.136719, 47.159840 ], [ -69.960938, 47.159840 ], [ -69.960938, 47.398349 ], [ -69.785156, 47.398349 ], [ -69.785156, 47.517201 ], [ -69.609375, 47.517201 ], [ -69.609375, 47.635784 ], [ -69.433594, 47.635784 ], [ -69.433594, 47.754098 ], [ -69.257812, 47.754098 ], [ -69.257812, 47.872144 ], [ -69.082031, 47.872144 ], [ -69.082031, 48.107431 ], [ -68.906250, 48.107431 ], [ -68.906250, 48.224673 ], [ -68.730469, 48.224673 ], [ -68.730469, 48.341646 ], [ -68.554688, 48.341646 ], [ -68.554688, 48.458352 ], [ -68.203125, 48.458352 ], [ -68.203125, 48.574790 ], [ -67.851562, 48.574790 ], [ -67.851562, 48.690960 ], [ -67.500000, 48.690960 ], [ -67.500000, 48.806863 ], [ -67.324219, 48.806863 ], [ -67.324219, 48.922499 ], [ -66.972656, 48.922499 ], [ -66.972656, 49.037868 ], [ -66.621094, 49.037868 ], [ -66.621094, 49.152970 ], [ -65.742188, 49.152970 ], [ -65.742188, 49.267805 ], [ -65.039062, 49.267805 ], [ -65.039062, 49.152970 ], [ -64.863281, 49.152970 ], [ -64.863281, 49.037868 ], [ -64.687500, 49.037868 ], [ -64.687500, 48.922499 ], [ -64.511719, 48.922499 ], [ -64.511719, 48.806863 ], [ -64.335938, 48.806863 ], [ -64.335938, 48.690960 ], [ -64.160156, 48.690960 ], [ -64.160156, 48.574790 ], [ -64.335938, 48.574790 ], [ -64.335938, 48.458352 ], [ -64.511719, 48.458352 ], [ -64.511719, 48.341646 ], [ -64.687500, 48.341646 ], [ -64.687500, 48.224673 ], [ -64.863281, 48.224673 ], [ -64.863281, 48.107431 ], [ -65.039062, 48.107431 ], [ -65.039062, 47.517201 ], [ -64.863281, 47.517201 ], [ -64.863281, 46.800059 ], [ -64.687500, 46.800059 ], [ -64.687500, 46.316584 ], [ -64.511719, 46.316584 ], [ -64.511719, 46.073231 ], [ -64.160156, 46.073231 ], [ -64.160156, 45.951150 ], [ -63.808594, 45.951150 ], [ -63.808594, 45.828799 ], [ -63.457031, 45.828799 ], [ -63.457031, 45.706179 ], [ -62.226562, 45.706179 ], [ -62.226562, 45.828799 ], [ -61.347656, 45.828799 ], [ -61.347656, 46.073231 ], [ -61.171875, 46.073231 ], [ -61.171875, 46.316584 ], [ -60.996094, 46.316584 ], [ -60.996094, 46.437857 ], [ -60.820312, 46.437857 ], [ -60.820312, 46.679594 ], [ -60.644531, 46.679594 ], [ -60.644531, 46.920255 ], [ -60.468750, 46.920255 ], [ -60.468750, 46.195042 ], [ -60.292969, 46.195042 ], [ -60.292969, 46.073231 ], [ -59.941406, 46.073231 ], [ -59.941406, 45.951150 ], [ -59.765625, 45.951150 ], [ -59.765625, 45.828799 ], [ -59.941406, 45.828799 ], [ -59.941406, 45.706179 ], [ -60.117188, 45.706179 ], [ -60.117188, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.460131 ], [ -60.644531, 45.460131 ], [ -60.644531, 45.336702 ], [ -60.820312, 45.336702 ], [ -60.820312, 45.213004 ], [ -61.171875, 45.213004 ], [ -61.171875, 45.089036 ], [ -61.699219, 45.089036 ], [ -61.699219, 44.964798 ], [ -62.402344, 44.964798 ], [ -62.402344, 44.840291 ], [ -62.929688, 44.840291 ], [ -62.929688, 44.715514 ], [ -63.281250, 44.715514 ], [ -63.281250, 44.590467 ], [ -63.457031, 44.590467 ], [ -63.457031, 44.465151 ], [ -63.808594, 44.465151 ], [ -63.808594, 44.339565 ], [ -63.984375, 44.339565 ], [ -63.984375, 44.213710 ], [ -64.160156, 44.213710 ], [ -64.160156, 44.087585 ], [ -64.511719, 44.087585 ], [ -64.511719, 43.961191 ], [ -64.687500, 43.961191 ], [ -64.687500, 43.834527 ], [ -64.863281, 43.834527 ], [ -64.863281, 43.707594 ], [ -65.214844, 43.707594 ], [ -65.214844, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.465151 ], [ -65.917969, 44.465151 ], [ -65.917969, 44.590467 ], [ -65.742188, 44.590467 ], [ -65.742188, 44.715514 ], [ -65.390625, 44.715514 ], [ -65.390625, 44.840291 ], [ -65.214844, 44.840291 ], [ -65.214844, 44.964798 ], [ -65.039062, 44.964798 ], [ -65.039062, 45.089036 ], [ -64.687500, 45.089036 ], [ -64.687500, 45.213004 ], [ -64.511719, 45.213004 ], [ -64.511719, 45.336702 ], [ -65.214844, 45.336702 ], [ -65.214844, 45.213004 ], [ -66.445312, 45.213004 ], [ -66.445312, 45.089036 ], [ -67.324219, 45.089036 ], [ -67.324219, 45.213004 ], [ -67.500000, 45.213004 ], [ -67.500000, 45.460131 ], [ -67.675781, 45.460131 ], [ -67.675781, 45.583290 ], [ -67.851562, 45.583290 ], [ -67.851562, 47.040182 ], [ -68.027344, 47.040182 ], [ -68.027344, 47.279229 ], [ -68.554688, 47.279229 ], [ -68.554688, 47.159840 ], [ -69.082031, 47.159840 ], [ -69.082031, 47.279229 ], [ -69.433594, 47.279229 ], [ -69.433594, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 46.920255 ], [ -69.785156, 46.920255 ], [ -69.785156, 46.679594 ], [ -69.960938, 46.679594 ], [ -69.960938, 46.437857 ], [ -70.136719, 46.437857 ], [ -70.136719, 46.073231 ], [ -70.312500, 46.073231 ], [ -70.312500, 45.828799 ], [ -70.488281, 45.828799 ], [ -70.488281, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.336702 ], [ -71.015625, 45.336702 ], [ -71.015625, 45.213004 ], [ -71.367188, 45.213004 ], [ -71.367188, 45.089036 ], [ -71.542969, 45.089036 ], [ -71.542969, 44.964798 ], [ -74.882812, 44.964798 ], [ -74.882812, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.715514 ], [ -75.410156, 44.715514 ], [ -75.410156, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.465151 ], [ -75.761719, 44.465151 ], [ -75.761719, 44.339565 ], [ -75.937500, 44.339565 ], [ -75.937500, 44.213710 ], [ -76.113281, 44.213710 ], [ -76.113281, 44.087585 ], [ -76.289062, 44.087585 ], [ -76.289062, 43.961191 ], [ -76.464844, 43.961191 ], [ -76.464844, 43.834527 ], [ -76.640625, 43.834527 ], [ -76.640625, 43.580391 ], [ -78.750000, 43.580391 ], [ -78.750000, 43.452919 ], [ -79.101562, 43.452919 ], [ -79.101562, 43.325178 ], [ -78.925781, 43.325178 ], [ -78.925781, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.682435 ], [ -79.453125, 42.682435 ], [ -79.453125, 42.553080 ], [ -79.980469, 42.553080 ], [ -79.980469, 42.423457 ], [ -80.507812, 42.423457 ], [ -80.507812, 42.293564 ], [ -80.859375, 42.293564 ], [ -80.859375, 42.163403 ], [ -81.210938, 42.163403 ], [ -81.210938, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 41.902277 ], [ -81.914062, 41.902277 ], [ -81.914062, 41.771312 ], [ -82.265625, 41.771312 ], [ -82.265625, 41.640078 ], [ -82.968750, 41.640078 ], [ -82.968750, 41.902277 ], [ -83.144531, 41.902277 ], [ -83.144531, 42.163403 ], [ -82.968750, 42.163403 ], [ -82.968750, 42.423457 ], [ -82.792969, 42.423457 ], [ -82.792969, 42.682435 ], [ -82.617188, 42.682435 ], [ -82.617188, 42.811522 ], [ -82.441406, 42.811522 ], [ -82.441406, 43.068888 ], [ -82.265625, 43.068888 ], [ -82.265625, 43.325178 ], [ -82.089844, 43.325178 ], [ -82.089844, 43.961191 ], [ -82.265625, 43.961191 ], [ -82.265625, 44.590467 ], [ -82.441406, 44.590467 ], [ -82.441406, 45.089036 ], [ -82.617188, 45.089036 ], [ -82.617188, 45.336702 ], [ -82.792969, 45.336702 ], [ -82.792969, 45.460131 ], [ -83.144531, 45.460131 ], [ -83.144531, 45.583290 ], [ -83.320312, 45.583290 ], [ -83.320312, 45.706179 ], [ -83.671875, 45.706179 ], [ -83.671875, 45.828799 ], [ -83.496094, 45.828799 ], [ -83.496094, 45.951150 ], [ -83.671875, 45.951150 ], [ -83.671875, 46.073231 ], [ -83.847656, 46.073231 ], [ -83.847656, 46.195042 ], [ -84.023438, 46.195042 ], [ -84.023438, 46.437857 ], [ -84.550781, 46.437857 ], [ -84.550781, 46.558860 ], [ -84.726562, 46.558860 ], [ -84.726562, 46.800059 ], [ -84.902344, 46.800059 ], [ -84.902344, 46.920255 ], [ -85.078125, 46.920255 ], [ -85.078125, 47.040182 ], [ -85.429688, 47.040182 ], [ -85.429688, 47.159840 ], [ -85.605469, 47.159840 ], [ -85.605469, 47.279229 ], [ -85.957031, 47.279229 ], [ -85.957031, 47.398349 ], [ -86.308594, 47.398349 ], [ -86.308594, 47.517201 ], [ -86.660156, 47.517201 ], [ -86.660156, 47.635784 ], [ -86.835938, 47.635784 ], [ -86.835938, 47.754098 ], [ -87.187500, 47.754098 ], [ -87.187500, 47.872144 ], [ -87.363281, 47.872144 ], [ -87.363281, 47.989922 ], [ -87.714844, 47.989922 ], [ -87.714844, 48.107431 ], [ -88.066406, 48.107431 ], [ -88.066406, 48.224673 ], [ -88.769531, 48.224673 ], [ -88.769531, 48.107431 ], [ -89.121094, 48.107431 ], [ -89.121094, 47.989922 ], [ -90.000000, 47.989922 ], [ -90.000000, 48.107431 ], [ -90.703125, 48.107431 ], [ -90.703125, 48.224673 ], [ -90.878906, 48.224673 ], [ -90.878906, 57.231503 ], [ -90.527344, 57.231503 ], [ -90.527344, 57.136239 ], [ -90.175781, 57.136239 ], [ -90.175781, 57.040730 ], [ -89.824219, 57.040730 ], [ -89.824219, 56.944974 ], [ -89.472656, 56.944974 ], [ -89.472656, 56.848972 ], [ -89.121094, 56.848972 ], [ -89.121094, 56.752723 ], [ -88.769531, 56.752723 ], [ -88.769531, 56.656226 ], [ -88.593750, 56.656226 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 56.462490 ], [ -88.066406, 56.462490 ], [ -88.066406, 56.365250 ], [ -87.890625, 56.365250 ], [ -87.890625, 56.267761 ], [ -87.714844, 56.267761 ], [ -87.714844, 56.072035 ], [ -87.539062, 56.072035 ], [ -87.539062, 55.973798 ], [ -87.187500, 55.973798 ], [ -87.187500, 55.875311 ], [ -86.835938, 55.875311 ], [ -86.835938, 55.776573 ], [ -86.484375, 55.776573 ], [ -86.484375, 55.677584 ], [ -86.132812, 55.677584 ], [ -86.132812, 55.578345 ], [ -85.781250, 55.578345 ], [ -85.781250, 55.478853 ], [ -85.605469, 55.478853 ], [ -85.605469, 55.379110 ], [ -85.253906, 55.379110 ], [ -85.253906, 55.279115 ], [ -82.968750, 55.279115 ], [ -82.968750, 55.178868 ], [ -82.265625, 55.178868 ], [ -82.265625, 54.673831 ], [ -82.441406, 54.673831 ], [ -82.441406, 53.956086 ], [ -82.265625, 53.956086 ], [ -82.265625, 53.435719 ], [ -82.089844, 53.435719 ], [ -82.089844, 53.014783 ], [ -81.914062, 53.014783 ], [ -81.914062, 52.802761 ], [ -81.738281, 52.802761 ], [ -81.738281, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 52.268157 ], [ -81.386719, 52.268157 ], [ -81.386719, 52.052490 ], [ -81.210938, 52.052490 ], [ -81.210938, 51.944265 ], [ -81.035156, 51.944265 ], [ -81.035156, 51.835778 ], [ -80.859375, 51.835778 ], [ -80.859375, 51.727028 ], [ -80.683594, 51.727028 ], [ -80.683594, 51.508742 ], [ -80.507812, 51.508742 ], [ -80.507812, 51.399206 ], [ -80.332031, 51.399206 ], [ -80.332031, 51.289406 ], [ -80.156250, 51.289406 ], [ -80.156250, 51.179343 ], [ -79.804688, 51.179343 ], [ -79.804688, 51.289406 ], [ -79.453125, 51.289406 ], [ -79.453125, 51.399206 ], [ -79.101562, 51.399206 ], [ -79.101562, 51.618017 ], [ -78.925781, 51.618017 ], [ -78.925781, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 52.375599 ], [ -78.574219, 52.375599 ], [ -78.574219, 52.802761 ], [ -78.750000, 52.802761 ], [ -78.750000, 53.330873 ], [ -78.925781, 53.330873 ], [ -78.925781, 53.852527 ], [ -79.101562, 53.852527 ], [ -79.101562, 54.162434 ], [ -79.277344, 54.162434 ], [ -79.277344, 54.265224 ], [ -79.453125, 54.265224 ], [ -79.453125, 54.470038 ], [ -79.628906, 54.470038 ], [ -79.628906, 54.572062 ], [ -79.804688, 54.572062 ], [ -79.804688, 54.673831 ], [ -79.628906, 54.673831 ], [ -79.628906, 54.775346 ], [ -79.277344, 54.775346 ], [ -79.277344, 54.876607 ], [ -78.925781, 54.876607 ], [ -78.925781, 54.977614 ], [ -78.574219, 54.977614 ], [ -78.574219, 55.078367 ], [ -78.222656, 55.078367 ], [ -78.222656, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.279115 ], [ -77.871094, 55.279115 ], [ -77.871094, 55.379110 ], [ -77.695312, 55.379110 ], [ -77.695312, 55.578345 ], [ -77.519531, 55.578345 ], [ -77.519531, 55.677584 ], [ -77.343750, 55.677584 ], [ -77.343750, 55.776573 ], [ -77.167969, 55.776573 ], [ -77.167969, 55.875311 ], [ -76.992188, 55.875311 ], [ -76.992188, 56.072035 ], [ -76.816406, 56.072035 ], [ -76.816406, 56.267761 ], [ -76.640625, 56.267761 ], [ -76.640625, 56.462490 ], [ -76.464844, 56.462490 ], [ -76.464844, 56.848972 ], [ -76.640625, 56.848972 ], [ -76.640625, 57.326521 ], [ -76.816406, 57.326521 ], [ -76.816406, 57.515823 ], [ -76.992188, 57.515823 ], [ -76.992188, 57.704147 ], [ -77.167969, 57.704147 ], [ -77.167969, 57.891497 ], [ -77.343750, 57.891497 ], [ -77.343750, 58.077876 ], [ -77.519531, 58.077876 ], [ -77.519531, 58.170702 ], [ -77.695312, 58.170702 ], [ -77.695312, 58.263287 ], [ -77.871094, 58.263287 ], [ -77.871094, 58.447733 ], [ -78.046875, 58.447733 ], [ -78.046875, 58.539595 ], [ -78.222656, 58.539595 ], [ -78.222656, 58.631217 ], [ -78.398438, 58.631217 ], [ -78.398438, 58.722599 ], [ -78.574219, 58.722599 ], [ -78.574219, 58.813742 ], [ -78.398438, 58.813742 ], [ -78.398438, 58.995311 ], [ -78.222656, 58.995311 ], [ -78.222656, 59.175928 ], [ -78.046875, 59.175928 ], [ -78.046875, 59.355596 ], [ -77.871094, 59.355596 ], [ -77.871094, 59.445075 ], [ -77.695312, 59.445075 ], [ -77.695312, 59.623325 ], [ -77.519531, 59.623325 ], [ -77.519531, 59.800634 ], [ -77.343750, 59.800634 ], [ -77.343750, 60.064840 ], [ -77.519531, 60.064840 ], [ -77.519531, 60.500525 ], [ -77.695312, 60.500525 ], [ -77.695312, 61.100789 ], [ -77.871094, 61.100789 ], [ -77.871094, 61.938950 ], [ -78.046875, 61.938950 ], [ -78.046875, 62.349609 ], [ -77.695312, 62.349609 ], [ -77.695312, 62.431074 ], [ -77.343750, 62.431074 ], [ -77.343750, 62.512318 ], [ -77.167969, 62.512318 ] ], [ [ -70.839844, 46.920255 ], [ -71.015625, 46.920255 ], [ -71.015625, 46.800059 ], [ -70.839844, 46.800059 ], [ -70.839844, 46.920255 ] ] ], [ [ [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.089364 ], [ -62.402344, 66.089364 ], [ -62.402344, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.874725 ], [ -62.753906, 65.874725 ], [ -62.753906, 65.730626 ], [ -62.929688, 65.730626 ], [ -62.929688, 65.585720 ], [ -63.105469, 65.585720 ], [ -63.105469, 65.512963 ], [ -63.281250, 65.512963 ], [ -63.281250, 65.366837 ], [ -63.457031, 65.366837 ], [ -63.457031, 65.293468 ], [ -63.632812, 65.293468 ], [ -63.632812, 65.146115 ], [ -63.808594, 65.146115 ], [ -63.808594, 64.997939 ], [ -64.160156, 64.997939 ], [ -64.160156, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.146115 ], [ -64.511719, 65.146115 ], [ -64.511719, 65.219894 ], [ -64.863281, 65.219894 ], [ -64.863281, 65.293468 ], [ -65.039062, 65.293468 ], [ -65.039062, 65.366837 ], [ -65.214844, 65.366837 ], [ -65.214844, 65.440002 ], [ -65.390625, 65.440002 ], [ -65.390625, 65.585720 ], [ -65.566406, 65.585720 ], [ -65.566406, 65.658275 ], [ -65.742188, 65.658275 ], [ -65.742188, 65.802776 ], [ -65.917969, 65.802776 ], [ -65.917969, 65.874725 ], [ -66.093750, 65.874725 ], [ -66.093750, 65.946472 ], [ -66.269531, 65.946472 ], [ -66.269531, 66.089364 ], [ -66.445312, 66.089364 ], [ -66.445312, 66.160511 ], [ -66.621094, 66.160511 ], [ -66.621094, 66.302205 ], [ -66.796875, 66.302205 ], [ -66.796875, 66.372755 ], [ -66.972656, 66.372755 ], [ -66.972656, 66.302205 ], [ -67.675781, 66.302205 ], [ -67.675781, 66.231457 ], [ -68.027344, 66.231457 ], [ -68.027344, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.585720 ], [ -68.027344, 65.585720 ], [ -68.027344, 65.512963 ], [ -67.851562, 65.512963 ], [ -67.851562, 65.366837 ], [ -67.675781, 65.366837 ], [ -67.675781, 65.293468 ], [ -67.500000, 65.293468 ], [ -67.500000, 65.219894 ], [ -67.324219, 65.219894 ], [ -67.324219, 65.072130 ], [ -67.148438, 65.072130 ], [ -67.148438, 64.997939 ], [ -66.972656, 64.997939 ], [ -66.972656, 64.923542 ], [ -66.621094, 64.923542 ], [ -66.621094, 64.848937 ], [ -66.445312, 64.848937 ], [ -66.445312, 64.774125 ], [ -66.269531, 64.774125 ], [ -66.269531, 64.699105 ], [ -65.917969, 64.699105 ], [ -65.917969, 64.623877 ], [ -65.742188, 64.623877 ], [ -65.742188, 64.548440 ], [ -65.566406, 64.548440 ], [ -65.566406, 64.396938 ], [ -65.390625, 64.396938 ], [ -65.390625, 64.244595 ], [ -65.214844, 64.244595 ], [ -65.214844, 64.014496 ], [ -65.039062, 64.014496 ], [ -65.039062, 63.704722 ], [ -64.863281, 63.704722 ], [ -64.863281, 63.470145 ], [ -64.687500, 63.470145 ], [ -64.687500, 63.154355 ], [ -64.863281, 63.154355 ], [ -64.863281, 62.835089 ], [ -65.039062, 62.835089 ], [ -65.039062, 62.674143 ], [ -65.390625, 62.674143 ], [ -65.390625, 62.754726 ], [ -65.742188, 62.754726 ], [ -65.742188, 62.835089 ], [ -66.093750, 62.835089 ], [ -66.093750, 62.915233 ], [ -66.445312, 62.915233 ], [ -66.445312, 62.995158 ], [ -66.621094, 62.995158 ], [ -66.621094, 63.074866 ], [ -66.972656, 63.074866 ], [ -66.972656, 63.154355 ], [ -67.148438, 63.154355 ], [ -67.148438, 63.233627 ], [ -67.324219, 63.233627 ], [ -67.324219, 63.312683 ], [ -67.675781, 63.312683 ], [ -67.675781, 63.391522 ], [ -67.851562, 63.391522 ], [ -67.851562, 63.470145 ], [ -68.027344, 63.470145 ], [ -68.027344, 63.548552 ], [ -68.203125, 63.548552 ], [ -68.203125, 63.626745 ], [ -68.554688, 63.626745 ], [ -68.554688, 63.548552 ], [ -68.378906, 63.548552 ], [ -68.378906, 63.470145 ], [ -68.203125, 63.470145 ], [ -68.203125, 63.391522 ], [ -68.027344, 63.391522 ], [ -68.027344, 63.233627 ], [ -67.851562, 63.233627 ], [ -67.851562, 63.154355 ], [ -67.675781, 63.154355 ], [ -67.675781, 63.074866 ], [ -67.500000, 63.074866 ], [ -67.500000, 62.915233 ], [ -67.324219, 62.915233 ], [ -67.324219, 62.835089 ], [ -67.148438, 62.835089 ], [ -67.148438, 62.754726 ], [ -66.972656, 62.754726 ], [ -66.972656, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.512318 ], [ -66.621094, 62.512318 ], [ -66.621094, 62.431074 ], [ -66.445312, 62.431074 ], [ -66.445312, 62.267923 ], [ -66.269531, 62.267923 ], [ -66.269531, 62.103883 ], [ -66.093750, 62.103883 ], [ -66.093750, 61.938950 ], [ -66.445312, 61.938950 ], [ -66.445312, 62.021528 ], [ -66.972656, 62.021528 ], [ -66.972656, 62.103883 ], [ -67.675781, 62.103883 ], [ -67.675781, 62.186014 ], [ -68.203125, 62.186014 ], [ -68.203125, 62.267923 ], [ -68.730469, 62.267923 ], [ -68.730469, 62.349609 ], [ -69.082031, 62.349609 ], [ -69.082031, 62.431074 ], [ -69.433594, 62.431074 ], [ -69.433594, 62.512318 ], [ -69.785156, 62.512318 ], [ -69.785156, 62.593341 ], [ -70.136719, 62.593341 ], [ -70.136719, 62.674143 ], [ -70.312500, 62.674143 ], [ -70.312500, 62.754726 ], [ -70.664062, 62.754726 ], [ -70.664062, 62.835089 ], [ -71.015625, 62.835089 ], [ -71.015625, 62.915233 ], [ -71.191406, 62.915233 ], [ -71.191406, 62.995158 ], [ -71.367188, 62.995158 ], [ -71.367188, 63.074866 ], [ -71.542969, 63.074866 ], [ -71.542969, 63.154355 ], [ -71.894531, 63.154355 ], [ -71.894531, 63.233627 ], [ -72.070312, 63.233627 ], [ -72.070312, 63.312683 ], [ -72.246094, 63.312683 ], [ -72.246094, 63.470145 ], [ -72.070312, 63.470145 ], [ -72.070312, 63.626745 ], [ -71.894531, 63.626745 ], [ -71.894531, 63.704722 ], [ -72.070312, 63.704722 ], [ -72.070312, 63.782486 ], [ -72.421875, 63.782486 ], [ -72.421875, 63.860036 ], [ -72.597656, 63.860036 ], [ -72.597656, 63.937372 ], [ -72.773438, 63.937372 ], [ -72.773438, 64.014496 ], [ -73.125000, 64.014496 ], [ -73.125000, 64.091408 ], [ -73.300781, 64.091408 ], [ -73.300781, 64.168107 ], [ -73.476562, 64.168107 ], [ -73.476562, 64.244595 ], [ -73.652344, 64.244595 ], [ -73.652344, 64.320872 ], [ -74.003906, 64.320872 ], [ -74.003906, 64.396938 ], [ -74.179688, 64.396938 ], [ -74.179688, 64.472794 ], [ -74.355469, 64.472794 ], [ -74.355469, 64.548440 ], [ -74.707031, 64.548440 ], [ -74.707031, 64.623877 ], [ -74.882812, 64.623877 ], [ -74.882812, 64.396938 ], [ -75.410156, 64.396938 ], [ -75.410156, 64.320872 ], [ -76.816406, 64.320872 ], [ -76.816406, 64.244595 ], [ -77.871094, 64.244595 ], [ -77.871094, 64.320872 ], [ -78.046875, 64.320872 ], [ -78.046875, 64.396938 ], [ -78.398438, 64.396938 ], [ -78.398438, 64.472794 ], [ -78.574219, 64.472794 ], [ -78.574219, 64.623877 ], [ -78.398438, 64.623877 ], [ -78.398438, 64.774125 ], [ -78.222656, 64.774125 ], [ -78.222656, 64.997939 ], [ -78.046875, 64.997939 ], [ -78.046875, 65.146115 ], [ -77.871094, 65.146115 ], [ -77.871094, 65.293468 ], [ -75.410156, 65.293468 ], [ -75.410156, 65.366837 ], [ -74.355469, 65.366837 ], [ -74.355469, 65.440002 ], [ -74.003906, 65.440002 ], [ -74.003906, 65.512963 ], [ -74.179688, 65.512963 ], [ -74.179688, 65.658275 ], [ -74.355469, 65.658275 ], [ -74.355469, 65.874725 ], [ -74.179688, 65.874725 ], [ -74.179688, 66.160511 ], [ -74.003906, 66.160511 ], [ -74.003906, 66.372755 ], [ -73.828125, 66.372755 ], [ -73.828125, 66.513260 ], [ -73.652344, 66.513260 ], [ -73.652344, 66.652977 ], [ -73.476562, 66.652977 ], [ -73.476562, 66.791909 ], [ -73.300781, 66.791909 ], [ -73.300781, 66.861082 ], [ -61.875000, 66.861082 ] ] ], [ [ [ -63.808594, 46.920255 ], [ -63.808594, 46.679594 ], [ -63.632812, 46.679594 ], [ -63.632812, 46.558860 ], [ -63.457031, 46.558860 ], [ -63.457031, 46.437857 ], [ -62.050781, 46.437857 ], [ -62.050781, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.195042 ], [ -62.402344, 46.195042 ], [ -62.402344, 46.073231 ], [ -62.578125, 46.073231 ], [ -62.578125, 45.951150 ], [ -63.105469, 45.951150 ], [ -63.105469, 46.073231 ], [ -63.457031, 46.073231 ], [ -63.457031, 46.195042 ], [ -63.808594, 46.195042 ], [ -63.808594, 46.316584 ], [ -64.160156, 46.316584 ], [ -64.160156, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.679594 ], [ -64.160156, 46.679594 ], [ -64.160156, 46.920255 ], [ -63.808594, 46.920255 ] ] ], [ [ [ -55.371094, 51.618017 ], [ -55.371094, 51.399206 ], [ -55.546875, 51.399206 ], [ -55.546875, 51.179343 ], [ -55.722656, 51.179343 ], [ -55.722656, 50.958427 ], [ -55.898438, 50.958427 ], [ -55.898438, 50.736455 ], [ -56.074219, 50.736455 ], [ -56.074219, 50.625073 ], [ -56.250000, 50.625073 ], [ -56.250000, 50.401515 ], [ -56.425781, 50.401515 ], [ -56.425781, 50.176898 ], [ -56.601562, 50.176898 ], [ -56.601562, 49.951220 ], [ -56.250000, 49.951220 ], [ -56.250000, 50.064192 ], [ -55.722656, 50.064192 ], [ -55.722656, 49.951220 ], [ -55.546875, 49.951220 ], [ -55.546875, 49.837982 ], [ -55.722656, 49.837982 ], [ -55.722656, 49.610710 ], [ -55.898438, 49.610710 ], [ -55.898438, 49.496675 ], [ -55.546875, 49.496675 ], [ -55.546875, 49.382373 ], [ -55.195312, 49.382373 ], [ -55.195312, 49.267805 ], [ -54.843750, 49.267805 ], [ -54.843750, 49.382373 ], [ -54.667969, 49.382373 ], [ -54.667969, 49.496675 ], [ -54.140625, 49.496675 ], [ -54.140625, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.267805 ], [ -53.437500, 49.267805 ], [ -53.437500, 49.037868 ], [ -53.613281, 49.037868 ], [ -53.613281, 48.690960 ], [ -53.789062, 48.690960 ], [ -53.789062, 48.574790 ], [ -53.261719, 48.574790 ], [ -53.261719, 48.690960 ], [ -53.085938, 48.690960 ], [ -53.085938, 48.341646 ], [ -52.910156, 48.341646 ], [ -52.910156, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.279229 ], [ -52.910156, 47.279229 ], [ -52.910156, 46.800059 ], [ -53.085938, 46.800059 ], [ -53.085938, 46.558860 ], [ -53.789062, 46.558860 ], [ -53.789062, 46.679594 ], [ -54.140625, 46.679594 ], [ -54.140625, 47.159840 ], [ -53.964844, 47.159840 ], [ -53.964844, 47.635784 ], [ -54.492188, 47.635784 ], [ -54.492188, 47.517201 ], [ -54.667969, 47.517201 ], [ -54.667969, 47.398349 ], [ -54.843750, 47.398349 ], [ -54.843750, 47.159840 ], [ -55.019531, 47.159840 ], [ -55.019531, 47.040182 ], [ -55.195312, 47.040182 ], [ -55.195312, 46.920255 ], [ -55.898438, 46.920255 ], [ -55.898438, 47.040182 ], [ -55.722656, 47.040182 ], [ -55.722656, 47.159840 ], [ -55.546875, 47.159840 ], [ -55.546875, 47.279229 ], [ -55.371094, 47.279229 ], [ -55.371094, 47.398349 ], [ -55.722656, 47.398349 ], [ -55.722656, 47.517201 ], [ -56.074219, 47.517201 ], [ -56.074219, 47.635784 ], [ -56.601562, 47.635784 ], [ -56.601562, 47.517201 ], [ -58.359375, 47.517201 ], [ -58.359375, 47.635784 ], [ -59.238281, 47.635784 ], [ -59.238281, 47.754098 ], [ -59.414062, 47.754098 ], [ -59.414062, 47.872144 ], [ -59.238281, 47.872144 ], [ -59.238281, 47.989922 ], [ -58.886719, 47.989922 ], [ -58.886719, 48.107431 ], [ -58.710938, 48.107431 ], [ -58.710938, 48.224673 ], [ -58.886719, 48.224673 ], [ -58.886719, 48.341646 ], [ -59.062500, 48.341646 ], [ -59.062500, 48.458352 ], [ -59.238281, 48.458352 ], [ -59.238281, 48.574790 ], [ -59.062500, 48.574790 ], [ -59.062500, 48.690960 ], [ -58.886719, 48.690960 ], [ -58.886719, 48.806863 ], [ -58.710938, 48.806863 ], [ -58.710938, 48.922499 ], [ -58.535156, 48.922499 ], [ -58.535156, 49.037868 ], [ -58.359375, 49.037868 ], [ -58.359375, 49.267805 ], [ -58.183594, 49.267805 ], [ -58.183594, 49.496675 ], [ -58.007812, 49.496675 ], [ -58.007812, 49.724479 ], [ -57.832031, 49.724479 ], [ -57.832031, 50.064192 ], [ -57.656250, 50.064192 ], [ -57.656250, 50.289339 ], [ -57.480469, 50.289339 ], [ -57.480469, 50.513427 ], [ -57.304688, 50.513427 ], [ -57.304688, 50.736455 ], [ -57.128906, 50.736455 ], [ -57.128906, 50.958427 ], [ -56.953125, 50.958427 ], [ -56.953125, 51.179343 ], [ -56.777344, 51.179343 ], [ -56.777344, 51.289406 ], [ -56.601562, 51.289406 ], [ -56.601562, 51.399206 ], [ -56.250000, 51.399206 ], [ -56.250000, 51.508742 ], [ -55.898438, 51.508742 ], [ -55.898438, 51.618017 ], [ -55.371094, 51.618017 ] ], [ [ -56.601562, 49.951220 ], [ -56.777344, 49.951220 ], [ -56.777344, 49.837982 ], [ -56.601562, 49.837982 ], [ -56.601562, 49.951220 ] ] ], [ [ [ -82.089844, 66.791909 ], [ -82.265625, 66.791909 ], [ -82.265625, 66.722541 ], [ -82.441406, 66.722541 ], [ -82.441406, 66.652977 ], [ -82.792969, 66.652977 ], [ -82.792969, 66.583217 ], [ -82.968750, 66.583217 ], [ -82.968750, 66.513260 ], [ -83.144531, 66.513260 ], [ -83.144531, 66.443107 ], [ -83.496094, 66.443107 ], [ -83.496094, 66.372755 ], [ -83.847656, 66.372755 ], [ -83.847656, 66.302205 ], [ -84.375000, 66.302205 ], [ -84.375000, 66.231457 ], [ -84.902344, 66.231457 ], [ -84.902344, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.443107 ], [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.443107 ], [ -85.957031, 66.443107 ], [ -85.957031, 66.160511 ], [ -86.132812, 66.160511 ], [ -86.132812, 65.946472 ], [ -86.308594, 65.946472 ], [ -86.308594, 65.802776 ], [ -86.484375, 65.802776 ], [ -86.484375, 65.658275 ], [ -86.660156, 65.658275 ], [ -86.660156, 65.440002 ], [ -86.835938, 65.440002 ], [ -86.835938, 65.293468 ], [ -87.011719, 65.293468 ], [ -87.011719, 65.072130 ], [ -87.187500, 65.072130 ], [ -87.187500, 64.848937 ], [ -87.363281, 64.848937 ], [ -87.363281, 64.699105 ], [ -87.539062, 64.699105 ], [ -87.539062, 64.548440 ], [ -87.714844, 64.548440 ], [ -87.714844, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.320872 ], [ -88.066406, 64.320872 ], [ -88.066406, 64.244595 ], [ -88.242188, 64.244595 ], [ -88.242188, 64.091408 ], [ -89.121094, 64.091408 ], [ -89.121094, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.937372 ], [ -90.175781, 63.937372 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.704722 ], [ -90.527344, 63.704722 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 62.915233 ], [ -90.878906, 62.915233 ], [ -90.878906, 66.861082 ], [ -82.089844, 66.861082 ], [ -82.089844, 66.791909 ] ] ], [ [ [ -85.605469, 65.730626 ], [ -85.605469, 65.658275 ], [ -85.078125, 65.658275 ], [ -85.078125, 65.440002 ], [ -84.902344, 65.440002 ], [ -84.902344, 65.219894 ], [ -84.726562, 65.219894 ], [ -84.726562, 65.293468 ], [ -84.375000, 65.293468 ], [ -84.375000, 65.219894 ], [ -84.023438, 65.219894 ], [ -84.023438, 65.146115 ], [ -83.847656, 65.146115 ], [ -83.847656, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.997939 ], [ -83.496094, 64.997939 ], [ -83.496094, 64.923542 ], [ -83.144531, 64.923542 ], [ -83.144531, 64.848937 ], [ -82.968750, 64.848937 ], [ -82.968750, 64.774125 ], [ -82.792969, 64.774125 ], [ -82.792969, 64.699105 ], [ -82.441406, 64.699105 ], [ -82.441406, 64.623877 ], [ -82.089844, 64.623877 ], [ -82.089844, 64.548440 ], [ -81.738281, 64.548440 ], [ -81.738281, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 64.014496 ], [ -81.035156, 64.014496 ], [ -81.035156, 64.091408 ], [ -80.859375, 64.091408 ], [ -80.859375, 64.014496 ], [ -80.683594, 64.014496 ], [ -80.683594, 63.937372 ], [ -80.507812, 63.937372 ], [ -80.507812, 63.782486 ], [ -80.332031, 63.782486 ], [ -80.332031, 63.704722 ], [ -80.156250, 63.704722 ], [ -80.156250, 63.626745 ], [ -80.332031, 63.626745 ], [ -80.332031, 63.548552 ], [ -80.683594, 63.548552 ], [ -80.683594, 63.470145 ], [ -80.859375, 63.470145 ], [ -80.859375, 63.391522 ], [ -81.386719, 63.391522 ], [ -81.386719, 63.470145 ], [ -81.914062, 63.470145 ], [ -81.914062, 63.548552 ], [ -82.441406, 63.548552 ], [ -82.441406, 63.626745 ], [ -82.617188, 63.626745 ], [ -82.617188, 63.704722 ], [ -82.792969, 63.704722 ], [ -82.792969, 63.860036 ], [ -82.968750, 63.860036 ], [ -82.968750, 64.014496 ], [ -83.320312, 64.014496 ], [ -83.320312, 63.860036 ], [ -83.496094, 63.860036 ], [ -83.496094, 63.782486 ], [ -83.671875, 63.782486 ], [ -83.671875, 63.704722 ], [ -83.847656, 63.704722 ], [ -83.847656, 63.548552 ], [ -84.023438, 63.548552 ], [ -84.023438, 63.470145 ], [ -84.375000, 63.470145 ], [ -84.375000, 63.391522 ], [ -84.550781, 63.391522 ], [ -84.550781, 63.312683 ], [ -84.902344, 63.312683 ], [ -84.902344, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 63.154355 ], [ -85.429688, 63.154355 ], [ -85.429688, 63.074866 ], [ -85.605469, 63.074866 ], [ -85.605469, 63.312683 ], [ -85.781250, 63.312683 ], [ -85.781250, 63.626745 ], [ -86.308594, 63.626745 ], [ -86.308594, 63.548552 ], [ -87.011719, 63.548552 ], [ -87.011719, 63.626745 ], [ -86.835938, 63.626745 ], [ -86.835938, 63.782486 ], [ -86.660156, 63.782486 ], [ -86.660156, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 63.937372 ], [ -86.308594, 63.937372 ], [ -86.308594, 65.072130 ], [ -86.132812, 65.072130 ], [ -86.132812, 65.512963 ], [ -85.957031, 65.512963 ], [ -85.957031, 65.730626 ], [ -85.605469, 65.730626 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.593341 ], [ -82.089844, 62.593341 ], [ -82.089844, 62.512318 ], [ -82.265625, 62.512318 ], [ -82.265625, 62.431074 ], [ -82.617188, 62.431074 ], [ -82.617188, 62.349609 ], [ -82.792969, 62.349609 ], [ -82.792969, 62.267923 ], [ -82.968750, 62.267923 ], [ -82.968750, 62.186014 ], [ -83.847656, 62.186014 ], [ -83.847656, 62.267923 ], [ -84.023438, 62.267923 ], [ -84.023438, 62.431074 ], [ -83.847656, 62.431074 ], [ -83.847656, 62.593341 ], [ -83.671875, 62.593341 ], [ -83.671875, 62.674143 ], [ -83.496094, 62.674143 ], [ -83.496094, 62.835089 ], [ -83.320312, 62.835089 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -63.984375, 49.951220 ], [ -63.984375, 49.837982 ], [ -63.281250, 49.837982 ], [ -63.281250, 49.724479 ], [ -62.929688, 49.724479 ], [ -62.929688, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.496675 ], [ -62.402344, 49.496675 ], [ -62.402344, 49.382373 ], [ -62.050781, 49.382373 ], [ -62.050781, 49.267805 ], [ -61.875000, 49.267805 ], [ -61.875000, 49.037868 ], [ -62.578125, 49.037868 ], [ -62.578125, 49.152970 ], [ -63.105469, 49.152970 ], [ -63.105469, 49.267805 ], [ -63.457031, 49.267805 ], [ -63.457031, 49.382373 ], [ -63.808594, 49.382373 ], [ -63.808594, 49.496675 ], [ -63.984375, 49.496675 ], [ -63.984375, 49.610710 ], [ -64.335938, 49.610710 ], [ -64.335938, 49.724479 ], [ -64.511719, 49.724479 ], [ -64.511719, 49.837982 ], [ -64.160156, 49.837982 ], [ -64.160156, 49.951220 ], [ -63.984375, 49.951220 ] ] ], [ [ [ -79.453125, 62.349609 ], [ -79.453125, 62.267923 ], [ -79.277344, 62.267923 ], [ -79.277344, 62.021528 ], [ -79.453125, 62.021528 ], [ -79.453125, 61.689872 ], [ -79.628906, 61.689872 ], [ -79.628906, 61.606396 ], [ -79.980469, 61.606396 ], [ -79.980469, 61.689872 ], [ -80.156250, 61.689872 ], [ -80.156250, 61.856149 ], [ -80.332031, 61.856149 ], [ -80.332031, 62.103883 ], [ -80.156250, 62.103883 ], [ -80.156250, 62.267923 ], [ -79.980469, 62.267923 ], [ -79.980469, 62.349609 ], [ -79.453125, 62.349609 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.343750, 62.593341 ], [ -77.343750, 62.512318 ], [ -76.816406, 62.512318 ], [ -76.816406, 62.431074 ], [ -76.113281, 62.431074 ], [ -76.113281, 62.349609 ], [ -75.585938, 62.349609 ], [ -75.585938, 62.267923 ], [ -75.058594, 62.267923 ], [ -75.058594, 62.186014 ], [ -74.531250, 62.186014 ], [ -74.531250, 62.267923 ], [ -74.355469, 62.267923 ], [ -74.355469, 62.349609 ], [ -74.179688, 62.349609 ], [ -74.179688, 62.431074 ], [ -73.828125, 62.431074 ], [ -73.828125, 62.349609 ], [ -73.652344, 62.349609 ], [ -73.652344, 62.267923 ], [ -73.300781, 62.267923 ], [ -73.300781, 62.186014 ], [ -73.125000, 62.186014 ], [ -73.125000, 62.103883 ], [ -72.949219, 62.103883 ], [ -72.949219, 62.021528 ], [ -72.773438, 62.021528 ], [ -72.773438, 61.938950 ], [ -72.597656, 61.938950 ], [ -72.597656, 61.856149 ], [ -72.246094, 61.856149 ], [ -72.246094, 61.773123 ], [ -72.070312, 61.773123 ], [ -72.070312, 61.689872 ], [ -71.894531, 61.689872 ], [ -71.894531, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.354614 ], [ -71.542969, 61.354614 ], [ -71.542969, 61.185625 ], [ -70.664062, 61.185625 ], [ -70.664062, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 60.673179 ], [ -69.785156, 60.673179 ], [ -69.785156, 59.888937 ], [ -69.609375, 59.888937 ], [ -69.609375, 59.265881 ], [ -69.433594, 59.265881 ], [ -69.433594, 58.995311 ], [ -69.257812, 58.995311 ], [ -69.257812, 58.904646 ], [ -68.730469, 58.904646 ], [ -68.730469, 58.813742 ], [ -68.378906, 58.813742 ], [ -68.378906, 58.722599 ], [ -68.203125, 58.722599 ], [ -68.203125, 58.539595 ], [ -68.027344, 58.539595 ], [ -68.027344, 58.447733 ], [ -67.851562, 58.447733 ], [ -67.851562, 58.263287 ], [ -67.500000, 58.263287 ], [ -67.500000, 58.355630 ], [ -67.148438, 58.355630 ], [ -67.148438, 58.447733 ], [ -66.972656, 58.447733 ], [ -66.972656, 58.539595 ], [ -66.796875, 58.539595 ], [ -66.796875, 58.631217 ], [ -66.445312, 58.631217 ], [ -66.445312, 58.722599 ], [ -66.269531, 58.722599 ], [ -66.269531, 58.904646 ], [ -66.093750, 58.904646 ], [ -66.093750, 59.085739 ], [ -65.917969, 59.085739 ], [ -65.917969, 59.355596 ], [ -65.742188, 59.355596 ], [ -65.742188, 59.534318 ], [ -65.566406, 59.534318 ], [ -65.566406, 59.712097 ], [ -65.390625, 59.712097 ], [ -65.390625, 59.888937 ], [ -65.214844, 59.888937 ], [ -65.214844, 60.064840 ], [ -65.039062, 60.064840 ], [ -65.039062, 60.152442 ], [ -64.863281, 60.152442 ], [ -64.863281, 60.326948 ], [ -64.687500, 60.326948 ], [ -64.687500, 60.239811 ], [ -64.511719, 60.239811 ], [ -64.511719, 60.064840 ], [ -64.335938, 60.064840 ], [ -64.335938, 59.888937 ], [ -64.160156, 59.888937 ], [ -64.160156, 59.712097 ], [ -63.984375, 59.712097 ], [ -63.984375, 59.534318 ], [ -63.808594, 59.534318 ], [ -63.808594, 59.355596 ], [ -63.632812, 59.355596 ], [ -63.632812, 59.175928 ], [ -63.457031, 59.175928 ], [ -63.457031, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.813742 ], [ -63.105469, 58.813742 ], [ -63.105469, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.447733 ], [ -62.753906, 58.447733 ], [ -62.753906, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 58.077876 ], [ -62.402344, 58.077876 ], [ -62.402344, 57.891497 ], [ -62.226562, 57.891497 ], [ -62.226562, 57.704147 ], [ -62.050781, 57.704147 ], [ -62.050781, 57.515823 ], [ -61.875000, 57.515823 ], [ -61.875000, 57.326521 ], [ -61.699219, 57.326521 ], [ -61.699219, 57.136239 ], [ -61.523438, 57.136239 ], [ -61.523438, 56.848972 ], [ -61.699219, 56.848972 ], [ -61.699219, 56.462490 ], [ -61.875000, 56.462490 ], [ -61.875000, 56.267761 ], [ -61.699219, 56.267761 ], [ -61.699219, 56.170023 ], [ -61.347656, 56.170023 ], [ -61.347656, 56.072035 ], [ -61.171875, 56.072035 ], [ -61.171875, 55.973798 ], [ -60.996094, 55.973798 ], [ -60.996094, 55.875311 ], [ -60.644531, 55.875311 ], [ -60.644531, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.677584 ], [ -60.292969, 55.677584 ], [ -60.292969, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.478853 ], [ -59.941406, 55.478853 ], [ -59.941406, 55.379110 ], [ -59.765625, 55.379110 ], [ -59.765625, 55.279115 ], [ -59.414062, 55.279115 ], [ -59.414062, 55.178868 ], [ -58.886719, 55.178868 ], [ -58.886719, 55.078367 ], [ -58.359375, 55.078367 ], [ -58.359375, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.876607 ], [ -57.832031, 54.876607 ], [ -57.832031, 54.775346 ], [ -57.656250, 54.775346 ], [ -57.656250, 54.673831 ], [ -57.480469, 54.673831 ], [ -57.480469, 54.470038 ], [ -57.304688, 54.470038 ], [ -57.304688, 54.265224 ], [ -57.128906, 54.265224 ], [ -57.128906, 53.956086 ], [ -56.953125, 53.956086 ], [ -56.953125, 53.852527 ], [ -56.777344, 53.852527 ], [ -56.777344, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.644638 ], [ -56.074219, 53.644638 ], [ -56.074219, 53.435719 ], [ -55.898438, 53.435719 ], [ -55.898438, 52.696361 ], [ -55.722656, 52.696361 ], [ -55.722656, 52.052490 ], [ -55.898438, 52.052490 ], [ -55.898438, 51.944265 ], [ -56.250000, 51.944265 ], [ -56.250000, 51.835778 ], [ -56.425781, 51.835778 ], [ -56.425781, 51.727028 ], [ -56.601562, 51.727028 ], [ -56.601562, 51.618017 ], [ -56.953125, 51.618017 ], [ -56.953125, 51.508742 ], [ -57.304688, 51.508742 ], [ -57.304688, 51.399206 ], [ -57.656250, 51.399206 ], [ -57.656250, 51.289406 ], [ -58.183594, 51.289406 ], [ -58.183594, 51.179343 ], [ -58.535156, 51.179343 ], [ -58.535156, 51.069017 ], [ -58.886719, 51.069017 ], [ -58.886719, 50.958427 ], [ -59.062500, 50.958427 ], [ -59.062500, 50.847573 ], [ -59.238281, 50.847573 ], [ -59.238281, 50.736455 ], [ -59.414062, 50.736455 ], [ -59.414062, 50.625073 ], [ -59.589844, 50.625073 ], [ -59.589844, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.401515 ], [ -59.941406, 50.401515 ], [ -59.941406, 50.289339 ], [ -60.820312, 50.289339 ], [ -60.820312, 50.176898 ], [ -63.105469, 50.176898 ], [ -63.105469, 50.289339 ], [ -64.863281, 50.289339 ], [ -64.863281, 50.401515 ], [ -65.742188, 50.401515 ], [ -65.742188, 50.289339 ], [ -66.445312, 50.289339 ], [ -66.445312, 50.176898 ], [ -66.621094, 50.176898 ], [ -66.621094, 50.064192 ], [ -66.796875, 50.064192 ], [ -66.796875, 49.951220 ], [ -66.972656, 49.951220 ], [ -66.972656, 49.724479 ], [ -67.148438, 49.724479 ], [ -67.148438, 49.610710 ], [ -67.324219, 49.610710 ], [ -67.324219, 49.496675 ], [ -67.675781, 49.496675 ], [ -67.675781, 49.382373 ], [ -68.027344, 49.382373 ], [ -68.027344, 49.267805 ], [ -68.378906, 49.267805 ], [ -68.378906, 49.152970 ], [ -68.554688, 49.152970 ], [ -68.554688, 49.037868 ], [ -68.730469, 49.037868 ], [ -68.730469, 48.806863 ], [ -68.906250, 48.806863 ], [ -68.906250, 48.690960 ], [ -69.082031, 48.690960 ], [ -69.082031, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.341646 ], [ -69.433594, 48.341646 ], [ -69.433594, 48.107431 ], [ -69.609375, 48.107431 ], [ -69.609375, 47.989922 ], [ -69.785156, 47.989922 ], [ -69.785156, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.635784 ], [ -70.136719, 47.635784 ], [ -70.136719, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.398349 ], [ -70.488281, 47.398349 ], [ -70.488281, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 47.159840 ], [ -70.839844, 47.159840 ], [ -70.839844, 47.040182 ], [ -71.015625, 47.040182 ], [ -71.015625, 46.920255 ], [ -70.664062, 46.920255 ], [ -70.664062, 47.040182 ], [ -70.136719, 47.040182 ], [ -70.136719, 47.159840 ], [ -69.960938, 47.159840 ], [ -69.960938, 47.398349 ], [ -69.785156, 47.398349 ], [ -69.785156, 47.517201 ], [ -69.609375, 47.517201 ], [ -69.609375, 47.635784 ], [ -69.433594, 47.635784 ], [ -69.433594, 47.754098 ], [ -69.257812, 47.754098 ], [ -69.257812, 47.872144 ], [ -69.082031, 47.872144 ], [ -69.082031, 48.107431 ], [ -68.906250, 48.107431 ], [ -68.906250, 48.224673 ], [ -68.730469, 48.224673 ], [ -68.730469, 48.341646 ], [ -68.554688, 48.341646 ], [ -68.554688, 48.458352 ], [ -68.203125, 48.458352 ], [ -68.203125, 48.574790 ], [ -67.851562, 48.574790 ], [ -67.851562, 48.690960 ], [ -67.500000, 48.690960 ], [ -67.500000, 48.806863 ], [ -67.324219, 48.806863 ], [ -67.324219, 48.922499 ], [ -66.972656, 48.922499 ], [ -66.972656, 49.037868 ], [ -66.621094, 49.037868 ], [ -66.621094, 49.152970 ], [ -65.742188, 49.152970 ], [ -65.742188, 49.267805 ], [ -65.214844, 49.267805 ], [ -65.214844, 49.152970 ], [ -65.039062, 49.152970 ], [ -65.039062, 49.037868 ], [ -64.687500, 49.037868 ], [ -64.687500, 48.922499 ], [ -64.511719, 48.922499 ], [ -64.511719, 48.806863 ], [ -64.335938, 48.806863 ], [ -64.335938, 48.690960 ], [ -64.511719, 48.690960 ], [ -64.511719, 48.574790 ], [ -64.687500, 48.574790 ], [ -64.687500, 48.458352 ], [ -64.863281, 48.458352 ], [ -64.863281, 48.224673 ], [ -65.039062, 48.224673 ], [ -65.039062, 48.107431 ], [ -65.214844, 48.107431 ], [ -65.214844, 47.754098 ], [ -65.039062, 47.754098 ], [ -65.039062, 47.279229 ], [ -64.863281, 47.279229 ], [ -64.863281, 46.800059 ], [ -64.687500, 46.800059 ], [ -64.687500, 46.437857 ], [ -64.511719, 46.437857 ], [ -64.511719, 46.195042 ], [ -64.160156, 46.195042 ], [ -64.160156, 46.073231 ], [ -63.808594, 46.073231 ], [ -63.808594, 45.951150 ], [ -63.457031, 45.951150 ], [ -63.457031, 45.828799 ], [ -62.226562, 45.828799 ], [ -62.226562, 45.951150 ], [ -61.347656, 45.951150 ], [ -61.347656, 46.195042 ], [ -61.171875, 46.195042 ], [ -61.171875, 46.437857 ], [ -60.996094, 46.437857 ], [ -60.996094, 46.679594 ], [ -60.820312, 46.679594 ], [ -60.820312, 46.920255 ], [ -60.644531, 46.920255 ], [ -60.644531, 46.679594 ], [ -60.468750, 46.679594 ], [ -60.468750, 46.195042 ], [ -60.292969, 46.195042 ], [ -60.292969, 46.073231 ], [ -60.117188, 46.073231 ], [ -60.117188, 45.951150 ], [ -59.941406, 45.951150 ], [ -59.941406, 45.828799 ], [ -60.292969, 45.828799 ], [ -60.292969, 45.706179 ], [ -60.468750, 45.706179 ], [ -60.468750, 45.583290 ], [ -60.644531, 45.583290 ], [ -60.644531, 45.460131 ], [ -60.996094, 45.460131 ], [ -60.996094, 45.336702 ], [ -61.347656, 45.336702 ], [ -61.347656, 45.213004 ], [ -61.699219, 45.213004 ], [ -61.699219, 45.089036 ], [ -62.050781, 45.089036 ], [ -62.050781, 44.964798 ], [ -62.578125, 44.964798 ], [ -62.578125, 44.840291 ], [ -62.929688, 44.840291 ], [ -62.929688, 44.715514 ], [ -63.281250, 44.715514 ], [ -63.281250, 44.590467 ], [ -63.632812, 44.590467 ], [ -63.632812, 44.465151 ], [ -63.984375, 44.465151 ], [ -63.984375, 44.339565 ], [ -64.335938, 44.339565 ], [ -64.335938, 44.213710 ], [ -64.511719, 44.213710 ], [ -64.511719, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 43.961191 ], [ -64.863281, 43.961191 ], [ -64.863281, 43.834527 ], [ -65.039062, 43.834527 ], [ -65.039062, 43.707594 ], [ -65.214844, 43.707594 ], [ -65.214844, 43.580391 ], [ -65.917969, 43.580391 ], [ -65.917969, 43.707594 ], [ -66.269531, 43.707594 ], [ -66.269531, 44.465151 ], [ -66.093750, 44.465151 ], [ -66.093750, 44.590467 ], [ -65.742188, 44.590467 ], [ -65.742188, 44.715514 ], [ -65.566406, 44.715514 ], [ -65.566406, 44.840291 ], [ -65.214844, 44.840291 ], [ -65.214844, 44.964798 ], [ -65.039062, 44.964798 ], [ -65.039062, 45.089036 ], [ -64.863281, 45.089036 ], [ -64.863281, 45.213004 ], [ -64.511719, 45.213004 ], [ -64.511719, 45.336702 ], [ -66.445312, 45.336702 ], [ -66.445312, 45.213004 ], [ -67.324219, 45.213004 ], [ -67.324219, 45.336702 ], [ -67.500000, 45.336702 ], [ -67.500000, 45.460131 ], [ -67.675781, 45.460131 ], [ -67.675781, 45.583290 ], [ -67.851562, 45.583290 ], [ -67.851562, 47.159840 ], [ -68.027344, 47.159840 ], [ -68.027344, 47.279229 ], [ -68.378906, 47.279229 ], [ -68.378906, 47.398349 ], [ -68.554688, 47.398349 ], [ -68.554688, 47.279229 ], [ -69.082031, 47.279229 ], [ -69.082031, 47.398349 ], [ -69.433594, 47.398349 ], [ -69.433594, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 47.159840 ], [ -69.785156, 47.159840 ], [ -69.785156, 46.920255 ], [ -69.960938, 46.920255 ], [ -69.960938, 46.800059 ], [ -70.136719, 46.800059 ], [ -70.136719, 46.316584 ], [ -70.312500, 46.316584 ], [ -70.312500, 45.828799 ], [ -70.488281, 45.828799 ], [ -70.488281, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.460131 ], [ -70.839844, 45.460131 ], [ -70.839844, 45.336702 ], [ -71.542969, 45.336702 ], [ -71.542969, 45.089036 ], [ -74.882812, 45.089036 ], [ -74.882812, 44.964798 ], [ -75.234375, 44.964798 ], [ -75.234375, 44.840291 ], [ -75.410156, 44.840291 ], [ -75.410156, 44.715514 ], [ -75.585938, 44.715514 ], [ -75.585938, 44.590467 ], [ -75.761719, 44.590467 ], [ -75.761719, 44.465151 ], [ -76.113281, 44.465151 ], [ -76.113281, 44.339565 ], [ -76.289062, 44.339565 ], [ -76.289062, 44.213710 ], [ -76.464844, 44.213710 ], [ -76.464844, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.961191 ], [ -76.816406, 43.961191 ], [ -76.816406, 43.707594 ], [ -78.925781, 43.707594 ], [ -78.925781, 43.580391 ], [ -79.277344, 43.580391 ], [ -79.277344, 43.452919 ], [ -79.101562, 43.452919 ], [ -79.101562, 43.197167 ], [ -78.925781, 43.197167 ], [ -78.925781, 42.940339 ], [ -79.101562, 42.940339 ], [ -79.101562, 42.811522 ], [ -79.453125, 42.811522 ], [ -79.453125, 42.682435 ], [ -79.804688, 42.682435 ], [ -79.804688, 42.553080 ], [ -80.156250, 42.553080 ], [ -80.156250, 42.423457 ], [ -80.683594, 42.423457 ], [ -80.683594, 42.293564 ], [ -81.386719, 42.293564 ], [ -81.386719, 42.163403 ], [ -81.738281, 42.163403 ], [ -81.738281, 42.032974 ], [ -81.914062, 42.032974 ], [ -81.914062, 41.902277 ], [ -82.265625, 41.902277 ], [ -82.265625, 41.771312 ], [ -83.144531, 41.771312 ], [ -83.144531, 42.293564 ], [ -82.968750, 42.293564 ], [ -82.968750, 42.553080 ], [ -82.792969, 42.553080 ], [ -82.792969, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 42.940339 ], [ -82.441406, 42.940339 ], [ -82.441406, 43.325178 ], [ -82.265625, 43.325178 ], [ -82.265625, 43.961191 ], [ -82.441406, 43.961191 ], [ -82.441406, 44.964798 ], [ -82.617188, 44.964798 ], [ -82.617188, 45.460131 ], [ -82.968750, 45.460131 ], [ -82.968750, 45.583290 ], [ -83.320312, 45.583290 ], [ -83.320312, 45.706179 ], [ -83.671875, 45.706179 ], [ -83.671875, 45.951150 ], [ -83.496094, 45.951150 ], [ -83.496094, 46.073231 ], [ -83.671875, 46.073231 ], [ -83.671875, 46.195042 ], [ -84.199219, 46.195042 ], [ -84.199219, 46.437857 ], [ -84.550781, 46.437857 ], [ -84.550781, 46.558860 ], [ -84.902344, 46.558860 ], [ -84.902344, 46.920255 ], [ -85.078125, 46.920255 ], [ -85.078125, 47.040182 ], [ -85.429688, 47.040182 ], [ -85.429688, 47.159840 ], [ -85.781250, 47.159840 ], [ -85.781250, 47.279229 ], [ -85.957031, 47.279229 ], [ -85.957031, 47.398349 ], [ -86.308594, 47.398349 ], [ -86.308594, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.635784 ], [ -86.835938, 47.635784 ], [ -86.835938, 47.754098 ], [ -87.187500, 47.754098 ], [ -87.187500, 47.872144 ], [ -87.539062, 47.872144 ], [ -87.539062, 47.989922 ], [ -87.714844, 47.989922 ], [ -87.714844, 48.107431 ], [ -88.066406, 48.107431 ], [ -88.066406, 48.224673 ], [ -88.417969, 48.224673 ], [ -88.417969, 48.341646 ], [ -88.593750, 48.341646 ], [ -88.593750, 48.224673 ], [ -88.945312, 48.224673 ], [ -88.945312, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.341646 ], [ -90.878906, 48.341646 ], [ -90.878906, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.231503 ], [ -90.351562, 57.231503 ], [ -90.351562, 57.136239 ], [ -89.824219, 57.136239 ], [ -89.824219, 57.040730 ], [ -89.472656, 57.040730 ], [ -89.472656, 56.944974 ], [ -89.121094, 56.944974 ], [ -89.121094, 56.848972 ], [ -88.769531, 56.848972 ], [ -88.769531, 56.752723 ], [ -88.593750, 56.752723 ], [ -88.593750, 56.656226 ], [ -88.242188, 56.656226 ], [ -88.242188, 56.559482 ], [ -88.066406, 56.559482 ], [ -88.066406, 56.462490 ], [ -87.890625, 56.462490 ], [ -87.890625, 56.365250 ], [ -87.714844, 56.365250 ], [ -87.714844, 56.170023 ], [ -87.539062, 56.170023 ], [ -87.539062, 56.072035 ], [ -87.187500, 56.072035 ], [ -87.187500, 55.973798 ], [ -86.835938, 55.973798 ], [ -86.835938, 55.875311 ], [ -86.484375, 55.875311 ], [ -86.484375, 55.776573 ], [ -86.132812, 55.776573 ], [ -86.132812, 55.677584 ], [ -85.781250, 55.677584 ], [ -85.781250, 55.578345 ], [ -85.605469, 55.578345 ], [ -85.605469, 55.478853 ], [ -85.253906, 55.478853 ], [ -85.253906, 55.379110 ], [ -84.375000, 55.379110 ], [ -84.375000, 55.279115 ], [ -83.144531, 55.279115 ], [ -83.144531, 55.178868 ], [ -82.441406, 55.178868 ], [ -82.441406, 53.852527 ], [ -82.265625, 53.852527 ], [ -82.265625, 53.120405 ], [ -82.089844, 53.120405 ], [ -82.089844, 52.802761 ], [ -81.914062, 52.802761 ], [ -81.914062, 52.589701 ], [ -81.738281, 52.589701 ], [ -81.738281, 52.268157 ], [ -81.562500, 52.268157 ], [ -81.562500, 52.052490 ], [ -81.386719, 52.052490 ], [ -81.386719, 51.944265 ], [ -81.210938, 51.944265 ], [ -81.210938, 51.835778 ], [ -81.035156, 51.835778 ], [ -81.035156, 51.727028 ], [ -80.683594, 51.727028 ], [ -80.683594, 51.618017 ], [ -80.507812, 51.618017 ], [ -80.507812, 51.508742 ], [ -80.332031, 51.508742 ], [ -80.332031, 51.399206 ], [ -80.156250, 51.399206 ], [ -80.156250, 51.289406 ], [ -79.804688, 51.289406 ], [ -79.804688, 51.399206 ], [ -79.453125, 51.399206 ], [ -79.453125, 51.508742 ], [ -79.277344, 51.508742 ], [ -79.277344, 51.727028 ], [ -79.101562, 51.727028 ], [ -79.101562, 52.052490 ], [ -78.925781, 52.052490 ], [ -78.925781, 52.375599 ], [ -78.750000, 52.375599 ], [ -78.750000, 52.802761 ], [ -78.925781, 52.802761 ], [ -78.925781, 53.330873 ], [ -79.101562, 53.330873 ], [ -79.101562, 53.852527 ], [ -79.277344, 53.852527 ], [ -79.277344, 54.162434 ], [ -79.453125, 54.162434 ], [ -79.453125, 54.265224 ], [ -79.628906, 54.265224 ], [ -79.628906, 54.470038 ], [ -79.804688, 54.470038 ], [ -79.804688, 54.572062 ], [ -79.980469, 54.572062 ], [ -79.980469, 54.673831 ], [ -79.804688, 54.673831 ], [ -79.804688, 54.775346 ], [ -79.453125, 54.775346 ], [ -79.453125, 54.876607 ], [ -79.101562, 54.876607 ], [ -79.101562, 54.977614 ], [ -78.750000, 54.977614 ], [ -78.750000, 55.078367 ], [ -78.398438, 55.078367 ], [ -78.398438, 55.178868 ], [ -78.222656, 55.178868 ], [ -78.222656, 55.279115 ], [ -78.046875, 55.279115 ], [ -78.046875, 55.379110 ], [ -77.871094, 55.379110 ], [ -77.871094, 55.478853 ], [ -77.695312, 55.478853 ], [ -77.695312, 55.578345 ], [ -77.519531, 55.578345 ], [ -77.519531, 55.677584 ], [ -77.343750, 55.677584 ], [ -77.343750, 55.776573 ], [ -77.167969, 55.776573 ], [ -77.167969, 55.973798 ], [ -76.992188, 55.973798 ], [ -76.992188, 56.170023 ], [ -76.816406, 56.170023 ], [ -76.816406, 56.365250 ], [ -76.640625, 56.365250 ], [ -76.640625, 57.326521 ], [ -76.816406, 57.326521 ], [ -76.816406, 57.515823 ], [ -76.992188, 57.515823 ], [ -76.992188, 57.704147 ], [ -77.167969, 57.704147 ], [ -77.167969, 57.891497 ], [ -77.343750, 57.891497 ], [ -77.343750, 58.077876 ], [ -77.519531, 58.077876 ], [ -77.519531, 58.170702 ], [ -77.695312, 58.170702 ], [ -77.695312, 58.263287 ], [ -77.871094, 58.263287 ], [ -77.871094, 58.447733 ], [ -78.046875, 58.447733 ], [ -78.046875, 58.539595 ], [ -78.222656, 58.539595 ], [ -78.222656, 58.631217 ], [ -78.398438, 58.631217 ], [ -78.398438, 58.722599 ], [ -78.574219, 58.722599 ], [ -78.574219, 58.813742 ], [ -78.398438, 58.813742 ], [ -78.398438, 58.995311 ], [ -78.222656, 58.995311 ], [ -78.222656, 59.175928 ], [ -78.046875, 59.175928 ], [ -78.046875, 59.355596 ], [ -77.871094, 59.355596 ], [ -77.871094, 59.445075 ], [ -77.695312, 59.445075 ], [ -77.695312, 59.623325 ], [ -77.519531, 59.623325 ], [ -77.519531, 59.800634 ], [ -77.343750, 59.800634 ], [ -77.343750, 59.977005 ], [ -77.519531, 59.977005 ], [ -77.519531, 60.326948 ], [ -77.695312, 60.326948 ], [ -77.695312, 60.586967 ], [ -77.871094, 60.586967 ], [ -77.871094, 61.100789 ], [ -78.046875, 61.100789 ], [ -78.046875, 61.938950 ], [ -78.222656, 61.938950 ], [ -78.222656, 62.349609 ], [ -78.046875, 62.349609 ], [ -78.046875, 62.431074 ], [ -77.695312, 62.431074 ], [ -77.695312, 62.512318 ], [ -77.519531, 62.512318 ], [ -77.519531, 62.593341 ], [ -77.343750, 62.593341 ] ] ], [ [ [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.089364 ], [ -62.402344, 66.089364 ], [ -62.402344, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.874725 ], [ -62.753906, 65.874725 ], [ -62.753906, 65.730626 ], [ -62.929688, 65.730626 ], [ -62.929688, 65.585720 ], [ -63.105469, 65.585720 ], [ -63.105469, 65.512963 ], [ -63.281250, 65.512963 ], [ -63.281250, 65.366837 ], [ -63.457031, 65.366837 ], [ -63.457031, 65.293468 ], [ -63.632812, 65.293468 ], [ -63.632812, 65.146115 ], [ -63.808594, 65.146115 ], [ -63.808594, 64.997939 ], [ -64.160156, 64.997939 ], [ -64.160156, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.146115 ], [ -64.511719, 65.146115 ], [ -64.511719, 65.219894 ], [ -64.863281, 65.219894 ], [ -64.863281, 65.293468 ], [ -65.039062, 65.293468 ], [ -65.039062, 65.366837 ], [ -65.214844, 65.366837 ], [ -65.214844, 65.440002 ], [ -65.390625, 65.440002 ], [ -65.390625, 65.585720 ], [ -65.566406, 65.585720 ], [ -65.566406, 65.658275 ], [ -65.742188, 65.658275 ], [ -65.742188, 65.802776 ], [ -65.917969, 65.802776 ], [ -65.917969, 65.946472 ], [ -66.093750, 65.946472 ], [ -66.093750, 66.018018 ], [ -66.269531, 66.018018 ], [ -66.269531, 66.160511 ], [ -66.445312, 66.160511 ], [ -66.445312, 66.231457 ], [ -66.621094, 66.231457 ], [ -66.621094, 66.372755 ], [ -66.796875, 66.372755 ], [ -66.796875, 66.443107 ], [ -66.972656, 66.443107 ], [ -66.972656, 66.372755 ], [ -67.675781, 66.372755 ], [ -67.675781, 66.302205 ], [ -68.027344, 66.302205 ], [ -68.027344, 66.018018 ], [ -68.203125, 66.018018 ], [ -68.203125, 65.658275 ], [ -68.027344, 65.658275 ], [ -68.027344, 65.585720 ], [ -67.851562, 65.585720 ], [ -67.851562, 65.440002 ], [ -67.675781, 65.440002 ], [ -67.675781, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.293468 ], [ -67.324219, 65.293468 ], [ -67.324219, 65.146115 ], [ -67.148438, 65.146115 ], [ -67.148438, 65.072130 ], [ -66.972656, 65.072130 ], [ -66.972656, 64.997939 ], [ -66.621094, 64.997939 ], [ -66.621094, 64.923542 ], [ -66.445312, 64.923542 ], [ -66.445312, 64.848937 ], [ -66.269531, 64.848937 ], [ -66.269531, 64.774125 ], [ -65.917969, 64.774125 ], [ -65.917969, 64.699105 ], [ -65.742188, 64.699105 ], [ -65.742188, 64.623877 ], [ -65.566406, 64.623877 ], [ -65.566406, 64.472794 ], [ -65.390625, 64.472794 ], [ -65.390625, 64.244595 ], [ -65.214844, 64.244595 ], [ -65.214844, 64.014496 ], [ -65.039062, 64.014496 ], [ -65.039062, 63.782486 ], [ -64.863281, 63.782486 ], [ -64.863281, 63.548552 ], [ -64.687500, 63.548552 ], [ -64.687500, 63.233627 ], [ -64.863281, 63.233627 ], [ -64.863281, 62.835089 ], [ -65.039062, 62.835089 ], [ -65.039062, 62.674143 ], [ -65.390625, 62.674143 ], [ -65.390625, 62.754726 ], [ -65.742188, 62.754726 ], [ -65.742188, 62.835089 ], [ -66.093750, 62.835089 ], [ -66.093750, 62.915233 ], [ -66.445312, 62.915233 ], [ -66.445312, 62.995158 ], [ -66.621094, 62.995158 ], [ -66.621094, 63.074866 ], [ -66.972656, 63.074866 ], [ -66.972656, 63.154355 ], [ -67.148438, 63.154355 ], [ -67.148438, 63.233627 ], [ -67.324219, 63.233627 ], [ -67.324219, 63.312683 ], [ -67.675781, 63.312683 ], [ -67.675781, 63.391522 ], [ -67.851562, 63.391522 ], [ -67.851562, 63.470145 ], [ -68.203125, 63.470145 ], [ -68.203125, 63.548552 ], [ -68.378906, 63.548552 ], [ -68.378906, 63.626745 ], [ -68.554688, 63.626745 ], [ -68.554688, 63.704722 ], [ -68.730469, 63.704722 ], [ -68.730469, 63.548552 ], [ -68.554688, 63.548552 ], [ -68.554688, 63.470145 ], [ -68.378906, 63.470145 ], [ -68.378906, 63.391522 ], [ -68.203125, 63.391522 ], [ -68.203125, 63.233627 ], [ -68.027344, 63.233627 ], [ -68.027344, 63.154355 ], [ -67.851562, 63.154355 ], [ -67.851562, 63.074866 ], [ -67.675781, 63.074866 ], [ -67.675781, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.835089 ], [ -67.324219, 62.835089 ], [ -67.324219, 62.754726 ], [ -67.148438, 62.754726 ], [ -67.148438, 62.674143 ], [ -66.972656, 62.674143 ], [ -66.972656, 62.512318 ], [ -66.796875, 62.512318 ], [ -66.796875, 62.431074 ], [ -66.621094, 62.431074 ], [ -66.621094, 62.349609 ], [ -66.445312, 62.349609 ], [ -66.445312, 62.103883 ], [ -66.269531, 62.103883 ], [ -66.269531, 61.938950 ], [ -66.621094, 61.938950 ], [ -66.621094, 62.021528 ], [ -67.148438, 62.021528 ], [ -67.148438, 62.103883 ], [ -67.675781, 62.103883 ], [ -67.675781, 62.186014 ], [ -68.203125, 62.186014 ], [ -68.203125, 62.267923 ], [ -68.730469, 62.267923 ], [ -68.730469, 62.349609 ], [ -69.082031, 62.349609 ], [ -69.082031, 62.431074 ], [ -69.433594, 62.431074 ], [ -69.433594, 62.512318 ], [ -69.785156, 62.512318 ], [ -69.785156, 62.593341 ], [ -70.136719, 62.593341 ], [ -70.136719, 62.674143 ], [ -70.488281, 62.674143 ], [ -70.488281, 62.754726 ], [ -70.839844, 62.754726 ], [ -70.839844, 62.835089 ], [ -71.191406, 62.835089 ], [ -71.191406, 62.915233 ], [ -71.367188, 62.915233 ], [ -71.367188, 62.995158 ], [ -71.542969, 62.995158 ], [ -71.542969, 63.074866 ], [ -71.718750, 63.074866 ], [ -71.718750, 63.233627 ], [ -71.894531, 63.233627 ], [ -71.894531, 63.312683 ], [ -72.070312, 63.312683 ], [ -72.070312, 63.391522 ], [ -72.246094, 63.391522 ], [ -72.246094, 63.470145 ], [ -72.070312, 63.470145 ], [ -72.070312, 63.626745 ], [ -71.894531, 63.626745 ], [ -71.894531, 63.704722 ], [ -72.070312, 63.704722 ], [ -72.070312, 63.782486 ], [ -72.246094, 63.782486 ], [ -72.246094, 63.860036 ], [ -72.597656, 63.860036 ], [ -72.597656, 63.937372 ], [ -72.773438, 63.937372 ], [ -72.773438, 64.014496 ], [ -72.949219, 64.014496 ], [ -72.949219, 64.091408 ], [ -73.300781, 64.091408 ], [ -73.300781, 64.168107 ], [ -73.476562, 64.168107 ], [ -73.476562, 64.244595 ], [ -73.652344, 64.244595 ], [ -73.652344, 64.320872 ], [ -74.003906, 64.320872 ], [ -74.003906, 64.396938 ], [ -74.179688, 64.396938 ], [ -74.179688, 64.472794 ], [ -74.355469, 64.472794 ], [ -74.355469, 64.548440 ], [ -74.707031, 64.548440 ], [ -74.707031, 64.623877 ], [ -74.882812, 64.623877 ], [ -74.882812, 64.396938 ], [ -75.585938, 64.396938 ], [ -75.585938, 64.320872 ], [ -76.992188, 64.320872 ], [ -76.992188, 64.244595 ], [ -78.046875, 64.244595 ], [ -78.046875, 64.320872 ], [ -78.222656, 64.320872 ], [ -78.222656, 64.472794 ], [ -78.398438, 64.472794 ], [ -78.398438, 64.548440 ], [ -78.574219, 64.548440 ], [ -78.574219, 64.699105 ], [ -78.398438, 64.699105 ], [ -78.398438, 64.997939 ], [ -78.222656, 64.997939 ], [ -78.222656, 65.219894 ], [ -78.046875, 65.219894 ], [ -78.046875, 65.366837 ], [ -75.410156, 65.366837 ], [ -75.410156, 65.440002 ], [ -74.355469, 65.440002 ], [ -74.355469, 65.512963 ], [ -74.003906, 65.512963 ], [ -74.003906, 65.585720 ], [ -74.179688, 65.585720 ], [ -74.179688, 65.730626 ], [ -74.355469, 65.730626 ], [ -74.355469, 65.946472 ], [ -74.179688, 65.946472 ], [ -74.179688, 66.231457 ], [ -74.003906, 66.231457 ], [ -74.003906, 66.372755 ], [ -73.828125, 66.372755 ], [ -73.828125, 66.513260 ], [ -73.652344, 66.513260 ], [ -73.652344, 66.652977 ], [ -73.476562, 66.652977 ], [ -73.476562, 66.791909 ], [ -73.300781, 66.791909 ], [ -73.300781, 66.861082 ], [ -61.875000, 66.861082 ] ] ], [ [ [ -63.984375, 46.920255 ], [ -63.984375, 46.679594 ], [ -63.808594, 46.679594 ], [ -63.808594, 46.558860 ], [ -63.632812, 46.558860 ], [ -63.632812, 46.437857 ], [ -62.402344, 46.437857 ], [ -62.402344, 46.558860 ], [ -62.050781, 46.558860 ], [ -62.050781, 46.437857 ], [ -62.226562, 46.437857 ], [ -62.226562, 46.316584 ], [ -62.402344, 46.316584 ], [ -62.402344, 46.073231 ], [ -63.281250, 46.073231 ], [ -63.281250, 46.195042 ], [ -63.632812, 46.195042 ], [ -63.632812, 46.316584 ], [ -63.984375, 46.316584 ], [ -63.984375, 46.437857 ], [ -64.335938, 46.437857 ], [ -64.335938, 46.679594 ], [ -64.511719, 46.679594 ], [ -64.511719, 46.800059 ], [ -64.335938, 46.800059 ], [ -64.335938, 46.920255 ], [ -63.984375, 46.920255 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -55.546875, 51.508742 ], [ -55.722656, 51.508742 ], [ -55.722656, 51.289406 ], [ -55.898438, 51.289406 ], [ -55.898438, 51.069017 ], [ -56.074219, 51.069017 ], [ -56.074219, 50.847573 ], [ -56.250000, 50.847573 ], [ -56.250000, 50.625073 ], [ -56.425781, 50.625073 ], [ -56.425781, 50.401515 ], [ -56.601562, 50.401515 ], [ -56.601562, 50.176898 ], [ -56.777344, 50.176898 ], [ -56.777344, 49.951220 ], [ -56.425781, 49.951220 ], [ -56.425781, 50.064192 ], [ -55.898438, 50.064192 ], [ -55.898438, 49.951220 ], [ -55.546875, 49.951220 ], [ -55.546875, 49.837982 ], [ -55.722656, 49.837982 ], [ -55.722656, 49.496675 ], [ -55.371094, 49.496675 ], [ -55.371094, 49.382373 ], [ -54.843750, 49.382373 ], [ -54.843750, 49.496675 ], [ -54.140625, 49.496675 ], [ -54.140625, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.267805 ], [ -53.613281, 49.267805 ], [ -53.613281, 48.922499 ], [ -53.789062, 48.922499 ], [ -53.789062, 48.574790 ], [ -53.261719, 48.574790 ], [ -53.261719, 48.690960 ], [ -53.085938, 48.690960 ], [ -53.085938, 47.989922 ], [ -52.910156, 47.989922 ], [ -52.910156, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.398349 ], [ -52.910156, 47.398349 ], [ -52.910156, 46.920255 ], [ -53.085938, 46.920255 ], [ -53.085938, 46.679594 ], [ -53.964844, 46.679594 ], [ -53.964844, 46.800059 ], [ -54.316406, 46.800059 ], [ -54.316406, 47.040182 ], [ -54.140625, 47.040182 ], [ -54.140625, 47.398349 ], [ -53.964844, 47.398349 ], [ -53.964844, 47.635784 ], [ -54.492188, 47.635784 ], [ -54.492188, 47.517201 ], [ -54.667969, 47.517201 ], [ -54.667969, 47.398349 ], [ -54.843750, 47.398349 ], [ -54.843750, 47.279229 ], [ -55.019531, 47.279229 ], [ -55.019531, 47.159840 ], [ -55.195312, 47.159840 ], [ -55.195312, 47.040182 ], [ -55.371094, 47.040182 ], [ -55.371094, 46.920255 ], [ -55.898438, 46.920255 ], [ -55.898438, 47.040182 ], [ -55.722656, 47.040182 ], [ -55.722656, 47.159840 ], [ -55.546875, 47.159840 ], [ -55.546875, 47.279229 ], [ -55.371094, 47.279229 ], [ -55.371094, 47.398349 ], [ -55.722656, 47.398349 ], [ -55.722656, 47.517201 ], [ -56.074219, 47.517201 ], [ -56.074219, 47.635784 ], [ -59.414062, 47.635784 ], [ -59.414062, 47.754098 ], [ -59.589844, 47.754098 ], [ -59.589844, 47.989922 ], [ -59.414062, 47.989922 ], [ -59.414062, 48.107431 ], [ -59.062500, 48.107431 ], [ -59.062500, 48.224673 ], [ -58.886719, 48.224673 ], [ -58.886719, 48.341646 ], [ -59.062500, 48.341646 ], [ -59.062500, 48.458352 ], [ -59.238281, 48.458352 ], [ -59.238281, 48.574790 ], [ -59.062500, 48.574790 ], [ -59.062500, 48.690960 ], [ -58.886719, 48.690960 ], [ -58.886719, 48.922499 ], [ -58.710938, 48.922499 ], [ -58.710938, 49.037868 ], [ -58.535156, 49.037868 ], [ -58.535156, 49.267805 ], [ -58.359375, 49.267805 ], [ -58.359375, 49.496675 ], [ -58.183594, 49.496675 ], [ -58.183594, 49.724479 ], [ -58.007812, 49.724479 ], [ -58.007812, 50.064192 ], [ -57.832031, 50.064192 ], [ -57.832031, 50.289339 ], [ -57.656250, 50.289339 ], [ -57.656250, 50.513427 ], [ -57.480469, 50.513427 ], [ -57.480469, 50.736455 ], [ -57.304688, 50.736455 ], [ -57.304688, 50.847573 ], [ -57.128906, 50.847573 ], [ -57.128906, 51.069017 ], [ -56.953125, 51.069017 ], [ -56.953125, 51.179343 ], [ -56.777344, 51.179343 ], [ -56.777344, 51.289406 ], [ -56.601562, 51.289406 ], [ -56.601562, 51.399206 ], [ -56.425781, 51.399206 ], [ -56.425781, 51.508742 ], [ -56.074219, 51.508742 ], [ -56.074219, 51.618017 ], [ -55.546875, 51.618017 ] ], [ [ -56.777344, 49.951220 ], [ -56.953125, 49.951220 ], [ -56.953125, 49.837982 ], [ -56.777344, 49.837982 ], [ -56.777344, 49.951220 ] ] ], [ [ [ -82.265625, 66.791909 ], [ -82.441406, 66.791909 ], [ -82.441406, 66.722541 ], [ -82.617188, 66.722541 ], [ -82.617188, 66.652977 ], [ -82.968750, 66.652977 ], [ -82.968750, 66.583217 ], [ -83.144531, 66.583217 ], [ -83.144531, 66.513260 ], [ -83.320312, 66.513260 ], [ -83.320312, 66.443107 ], [ -83.671875, 66.443107 ], [ -83.671875, 66.372755 ], [ -84.375000, 66.372755 ], [ -84.375000, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.253906, 66.372755 ], [ -85.253906, 66.443107 ], [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.443107 ], [ -85.957031, 66.443107 ], [ -85.957031, 66.160511 ], [ -86.132812, 66.160511 ], [ -86.132812, 66.018018 ], [ -86.308594, 66.018018 ], [ -86.308594, 65.874725 ], [ -86.484375, 65.874725 ], [ -86.484375, 65.730626 ], [ -86.660156, 65.730626 ], [ -86.660156, 65.585720 ], [ -86.835938, 65.585720 ], [ -86.835938, 65.440002 ], [ -87.011719, 65.440002 ], [ -87.011719, 65.293468 ], [ -87.187500, 65.293468 ], [ -87.187500, 64.997939 ], [ -87.363281, 64.997939 ], [ -87.363281, 64.774125 ], [ -87.539062, 64.774125 ], [ -87.539062, 64.699105 ], [ -87.714844, 64.699105 ], [ -87.714844, 64.548440 ], [ -87.890625, 64.548440 ], [ -87.890625, 64.472794 ], [ -88.066406, 64.472794 ], [ -88.066406, 64.396938 ], [ -88.242188, 64.396938 ], [ -88.242188, 64.244595 ], [ -88.417969, 64.244595 ], [ -88.417969, 64.168107 ], [ -89.121094, 64.168107 ], [ -89.121094, 64.091408 ], [ -90.000000, 64.091408 ], [ -90.000000, 64.014496 ], [ -90.175781, 64.014496 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.782486 ], [ -90.527344, 63.782486 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 63.312683 ], [ -90.878906, 63.312683 ], [ -90.878906, 66.861082 ], [ -82.265625, 66.861082 ], [ -82.265625, 66.791909 ] ] ], [ [ [ -85.605469, 65.730626 ], [ -85.605469, 65.658275 ], [ -85.253906, 65.658275 ], [ -85.253906, 65.440002 ], [ -85.078125, 65.440002 ], [ -85.078125, 65.219894 ], [ -84.902344, 65.219894 ], [ -84.902344, 65.293468 ], [ -84.726562, 65.293468 ], [ -84.726562, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 65.293468 ], [ -84.199219, 65.293468 ], [ -84.199219, 65.146115 ], [ -84.023438, 65.146115 ], [ -84.023438, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.997939 ], [ -83.496094, 64.997939 ], [ -83.496094, 64.923542 ], [ -83.320312, 64.923542 ], [ -83.320312, 64.848937 ], [ -82.968750, 64.848937 ], [ -82.968750, 64.774125 ], [ -82.792969, 64.774125 ], [ -82.792969, 64.699105 ], [ -82.441406, 64.699105 ], [ -82.441406, 64.623877 ], [ -82.265625, 64.623877 ], [ -82.265625, 64.548440 ], [ -81.914062, 64.548440 ], [ -81.914062, 64.472794 ], [ -81.738281, 64.472794 ], [ -81.738281, 64.244595 ], [ -81.562500, 64.244595 ], [ -81.562500, 64.014496 ], [ -81.035156, 64.014496 ], [ -81.035156, 64.091408 ], [ -80.859375, 64.091408 ], [ -80.859375, 64.014496 ], [ -80.683594, 64.014496 ], [ -80.683594, 63.937372 ], [ -80.507812, 63.937372 ], [ -80.507812, 63.860036 ], [ -80.332031, 63.860036 ], [ -80.332031, 63.782486 ], [ -80.156250, 63.782486 ], [ -80.156250, 63.704722 ], [ -80.332031, 63.704722 ], [ -80.332031, 63.626745 ], [ -80.683594, 63.626745 ], [ -80.683594, 63.548552 ], [ -80.859375, 63.548552 ], [ -80.859375, 63.470145 ], [ -81.386719, 63.470145 ], [ -81.386719, 63.548552 ], [ -81.914062, 63.548552 ], [ -81.914062, 63.626745 ], [ -82.441406, 63.626745 ], [ -82.441406, 63.704722 ], [ -82.617188, 63.704722 ], [ -82.617188, 63.782486 ], [ -82.792969, 63.782486 ], [ -82.792969, 63.937372 ], [ -82.968750, 63.937372 ], [ -82.968750, 64.091408 ], [ -83.320312, 64.091408 ], [ -83.320312, 64.014496 ], [ -83.496094, 64.014496 ], [ -83.496094, 63.937372 ], [ -83.671875, 63.937372 ], [ -83.671875, 63.782486 ], [ -83.847656, 63.782486 ], [ -83.847656, 63.704722 ], [ -84.023438, 63.704722 ], [ -84.023438, 63.626745 ], [ -84.199219, 63.626745 ], [ -84.199219, 63.548552 ], [ -84.375000, 63.548552 ], [ -84.375000, 63.470145 ], [ -84.550781, 63.470145 ], [ -84.550781, 63.391522 ], [ -84.726562, 63.391522 ], [ -84.726562, 63.312683 ], [ -85.078125, 63.312683 ], [ -85.078125, 63.233627 ], [ -85.253906, 63.233627 ], [ -85.253906, 63.154355 ], [ -85.429688, 63.154355 ], [ -85.429688, 63.074866 ], [ -85.605469, 63.074866 ], [ -85.605469, 63.233627 ], [ -85.781250, 63.233627 ], [ -85.781250, 63.548552 ], [ -85.957031, 63.548552 ], [ -85.957031, 63.704722 ], [ -86.132812, 63.704722 ], [ -86.132812, 63.626745 ], [ -86.835938, 63.626745 ], [ -86.835938, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 63.704722 ], [ -87.011719, 63.704722 ], [ -87.011719, 63.782486 ], [ -86.835938, 63.782486 ], [ -86.835938, 63.860036 ], [ -86.660156, 63.860036 ], [ -86.660156, 64.014496 ], [ -86.484375, 64.014496 ], [ -86.484375, 64.472794 ], [ -86.308594, 64.472794 ], [ -86.308594, 65.072130 ], [ -86.132812, 65.072130 ], [ -86.132812, 65.512963 ], [ -85.957031, 65.512963 ], [ -85.957031, 65.730626 ], [ -85.605469, 65.730626 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.674143 ], [ -82.089844, 62.674143 ], [ -82.089844, 62.593341 ], [ -82.265625, 62.593341 ], [ -82.265625, 62.512318 ], [ -82.441406, 62.512318 ], [ -82.441406, 62.431074 ], [ -82.617188, 62.431074 ], [ -82.617188, 62.349609 ], [ -82.792969, 62.349609 ], [ -82.792969, 62.267923 ], [ -82.968750, 62.267923 ], [ -82.968750, 62.186014 ], [ -83.847656, 62.186014 ], [ -83.847656, 62.349609 ], [ -84.023438, 62.349609 ], [ -84.023438, 62.512318 ], [ -83.847656, 62.512318 ], [ -83.847656, 62.593341 ], [ -83.671875, 62.593341 ], [ -83.671875, 62.754726 ], [ -83.496094, 62.754726 ], [ -83.496094, 62.835089 ], [ -83.320312, 62.835089 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -64.160156, 50.064192 ], [ -64.160156, 49.951220 ], [ -63.808594, 49.951220 ], [ -63.808594, 49.837982 ], [ -63.281250, 49.837982 ], [ -63.281250, 49.724479 ], [ -62.929688, 49.724479 ], [ -62.929688, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.496675 ], [ -62.226562, 49.496675 ], [ -62.226562, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 49.152970 ], [ -62.753906, 49.152970 ], [ -62.753906, 49.267805 ], [ -63.105469, 49.267805 ], [ -63.105469, 49.382373 ], [ -63.457031, 49.382373 ], [ -63.457031, 49.496675 ], [ -63.808594, 49.496675 ], [ -63.808594, 49.610710 ], [ -64.160156, 49.610710 ], [ -64.160156, 49.724479 ], [ -64.335938, 49.724479 ], [ -64.335938, 49.837982 ], [ -64.687500, 49.837982 ], [ -64.687500, 49.951220 ], [ -64.335938, 49.951220 ], [ -64.335938, 50.064192 ], [ -64.160156, 50.064192 ] ] ], [ [ [ -79.628906, 62.431074 ], [ -79.628906, 62.349609 ], [ -79.453125, 62.349609 ], [ -79.453125, 62.186014 ], [ -79.277344, 62.186014 ], [ -79.277344, 62.103883 ], [ -79.453125, 62.103883 ], [ -79.453125, 61.938950 ], [ -79.628906, 61.938950 ], [ -79.628906, 61.773123 ], [ -79.804688, 61.773123 ], [ -79.804688, 61.689872 ], [ -80.156250, 61.689872 ], [ -80.156250, 61.773123 ], [ -80.332031, 61.773123 ], [ -80.332031, 61.938950 ], [ -80.507812, 61.938950 ], [ -80.507812, 62.021528 ], [ -80.332031, 62.021528 ], [ -80.332031, 62.186014 ], [ -80.156250, 62.186014 ], [ -80.156250, 62.349609 ], [ -79.980469, 62.349609 ], [ -79.980469, 62.431074 ], [ -79.628906, 62.431074 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.066406, 48.224673 ], [ -88.066406, 48.107431 ], [ -87.714844, 48.107431 ], [ -87.714844, 47.989922 ], [ -87.363281, 47.989922 ], [ -87.363281, 47.872144 ], [ -87.187500, 47.872144 ], [ -87.187500, 47.754098 ], [ -86.835938, 47.754098 ], [ -86.835938, 47.635784 ], [ -86.660156, 47.635784 ], [ -86.660156, 47.517201 ], [ -86.308594, 47.517201 ], [ -86.308594, 47.398349 ], [ -85.957031, 47.398349 ], [ -85.957031, 47.279229 ], [ -85.605469, 47.279229 ], [ -85.605469, 47.159840 ], [ -85.429688, 47.159840 ], [ -85.429688, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.920255 ], [ -84.902344, 46.920255 ], [ -84.902344, 46.800059 ], [ -84.726562, 46.800059 ], [ -84.726562, 46.558860 ], [ -84.550781, 46.558860 ], [ -84.550781, 46.437857 ], [ -84.023438, 46.437857 ], [ -84.023438, 46.195042 ], [ -83.847656, 46.195042 ], [ -83.847656, 46.073231 ], [ -83.671875, 46.073231 ], [ -83.671875, 45.951150 ], [ -83.496094, 45.951150 ], [ -83.496094, 45.828799 ], [ -83.671875, 45.828799 ], [ -83.671875, 45.706179 ], [ -83.320312, 45.706179 ], [ -83.320312, 45.583290 ], [ -83.144531, 45.583290 ], [ -83.144531, 45.460131 ], [ -82.792969, 45.460131 ], [ -82.792969, 45.336702 ], [ -82.617188, 45.336702 ], [ -82.617188, 45.089036 ], [ -82.441406, 45.089036 ], [ -82.441406, 44.590467 ], [ -82.265625, 44.590467 ], [ -82.265625, 43.961191 ], [ -82.089844, 43.961191 ], [ -82.089844, 43.325178 ], [ -82.265625, 43.325178 ], [ -82.265625, 43.068888 ], [ -82.441406, 43.068888 ], [ -82.441406, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 42.682435 ], [ -82.792969, 42.682435 ], [ -82.792969, 42.423457 ], [ -82.968750, 42.423457 ], [ -82.968750, 42.163403 ], [ -83.144531, 42.163403 ], [ -83.144531, 41.902277 ], [ -82.968750, 41.902277 ], [ -82.968750, 41.640078 ], [ -82.265625, 41.640078 ], [ -82.265625, 41.771312 ], [ -81.914062, 41.771312 ], [ -81.914062, 41.902277 ], [ -81.562500, 41.902277 ], [ -81.562500, 42.032974 ], [ -81.210938, 42.032974 ], [ -81.210938, 42.163403 ], [ -80.859375, 42.163403 ], [ -80.859375, 42.293564 ], [ -80.507812, 42.293564 ], [ -80.507812, 42.423457 ], [ -79.980469, 42.423457 ], [ -79.980469, 42.553080 ], [ -79.453125, 42.553080 ], [ -79.453125, 42.682435 ], [ -79.101562, 42.682435 ], [ -79.101562, 42.811522 ], [ -78.925781, 42.811522 ], [ -78.925781, 43.325178 ], [ -79.101562, 43.325178 ], [ -79.101562, 43.452919 ], [ -78.750000, 43.452919 ], [ -78.750000, 43.580391 ], [ -76.640625, 43.580391 ], [ -76.640625, 43.834527 ], [ -76.464844, 43.834527 ], [ -76.464844, 43.961191 ], [ -76.289062, 43.961191 ], [ -76.289062, 44.087585 ], [ -76.113281, 44.087585 ], [ -76.113281, 44.213710 ], [ -75.937500, 44.213710 ], [ -75.937500, 44.339565 ], [ -75.761719, 44.339565 ], [ -75.761719, 44.465151 ], [ -75.585938, 44.465151 ], [ -75.585938, 44.590467 ], [ -75.410156, 44.590467 ], [ -75.410156, 44.715514 ], [ -75.234375, 44.715514 ], [ -75.234375, 44.840291 ], [ -74.882812, 44.840291 ], [ -74.882812, 44.964798 ], [ -71.542969, 44.964798 ], [ -71.542969, 45.089036 ], [ -71.367188, 45.089036 ], [ -71.367188, 45.213004 ], [ -71.015625, 45.213004 ], [ -71.015625, 45.336702 ], [ -70.664062, 45.336702 ], [ -70.664062, 45.583290 ], [ -70.488281, 45.583290 ], [ -70.488281, 45.828799 ], [ -70.312500, 45.828799 ], [ -70.312500, 46.073231 ], [ -70.136719, 46.073231 ], [ -70.136719, 46.437857 ], [ -69.960938, 46.437857 ], [ -69.960938, 46.679594 ], [ -69.785156, 46.679594 ], [ -69.785156, 46.920255 ], [ -69.609375, 46.920255 ], [ -69.609375, 47.040182 ], [ -69.433594, 47.040182 ], [ -69.433594, 47.279229 ], [ -69.082031, 47.279229 ], [ -69.082031, 47.159840 ], [ -68.554688, 47.159840 ], [ -68.554688, 47.279229 ], [ -68.027344, 47.279229 ], [ -68.027344, 47.040182 ], [ -67.851562, 47.040182 ], [ -67.851562, 45.583290 ], [ -67.675781, 45.583290 ], [ -67.675781, 45.460131 ], [ -67.500000, 45.460131 ], [ -67.500000, 45.213004 ], [ -67.324219, 45.213004 ], [ -67.324219, 45.089036 ], [ -67.148438, 45.089036 ], [ -67.148438, 44.964798 ], [ -66.972656, 44.964798 ], [ -66.972656, 44.715514 ], [ -67.324219, 44.715514 ], [ -67.324219, 44.590467 ], [ -67.500000, 44.590467 ], [ -67.500000, 44.465151 ], [ -67.851562, 44.465151 ], [ -67.851562, 44.339565 ], [ -68.027344, 44.339565 ], [ -68.027344, 44.213710 ], [ -68.378906, 44.213710 ], [ -68.378906, 44.087585 ], [ -68.730469, 44.087585 ], [ -68.730469, 43.961191 ], [ -69.257812, 43.961191 ], [ -69.257812, 43.834527 ], [ -69.785156, 43.834527 ], [ -69.785156, 43.707594 ], [ -70.136719, 43.707594 ], [ -70.136719, 43.580391 ], [ -70.312500, 43.580391 ], [ -70.312500, 43.325178 ], [ -70.488281, 43.325178 ], [ -70.488281, 43.068888 ], [ -70.664062, 43.068888 ], [ -70.664062, 42.940339 ], [ -70.839844, 42.940339 ], [ -70.839844, 42.163403 ], [ -70.664062, 42.163403 ], [ -70.664062, 41.902277 ], [ -70.488281, 41.902277 ], [ -70.488281, 41.771312 ], [ -70.136719, 41.771312 ], [ -70.136719, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.640078 ], [ -70.136719, 41.640078 ], [ -70.136719, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -71.894531, 41.376809 ], [ -71.894531, 41.244772 ], [ -72.949219, 41.244772 ], [ -72.949219, 41.112469 ], [ -73.300781, 41.112469 ], [ -73.300781, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.112469 ], [ -72.246094, 41.112469 ], [ -72.246094, 40.979898 ], [ -72.070312, 40.979898 ], [ -72.070312, 40.847060 ], [ -72.421875, 40.847060 ], [ -72.421875, 40.713956 ], [ -72.949219, 40.713956 ], [ -72.949219, 40.580585 ], [ -74.179688, 40.580585 ], [ -74.179688, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 47.989922 ], [ -89.121094, 47.989922 ], [ -89.121094, 48.107431 ], [ -88.769531, 48.107431 ], [ -88.769531, 48.224673 ], [ -88.066406, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.417969, 48.341646 ], [ -88.417969, 48.224673 ], [ -88.066406, 48.224673 ], [ -88.066406, 48.107431 ], [ -87.714844, 48.107431 ], [ -87.714844, 47.989922 ], [ -87.539062, 47.989922 ], [ -87.539062, 47.872144 ], [ -87.187500, 47.872144 ], [ -87.187500, 47.754098 ], [ -86.835938, 47.754098 ], [ -86.835938, 47.635784 ], [ -86.484375, 47.635784 ], [ -86.484375, 47.517201 ], [ -86.308594, 47.517201 ], [ -86.308594, 47.398349 ], [ -85.957031, 47.398349 ], [ -85.957031, 47.279229 ], [ -85.781250, 47.279229 ], [ -85.781250, 47.159840 ], [ -85.429688, 47.159840 ], [ -85.429688, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.920255 ], [ -84.902344, 46.920255 ], [ -84.902344, 46.558860 ], [ -84.550781, 46.558860 ], [ -84.550781, 46.437857 ], [ -84.199219, 46.437857 ], [ -84.199219, 46.195042 ], [ -83.671875, 46.195042 ], [ -83.671875, 46.073231 ], [ -83.496094, 46.073231 ], [ -83.496094, 45.951150 ], [ -83.671875, 45.951150 ], [ -83.671875, 45.706179 ], [ -83.320312, 45.706179 ], [ -83.320312, 45.583290 ], [ -82.968750, 45.583290 ], [ -82.968750, 45.460131 ], [ -82.617188, 45.460131 ], [ -82.617188, 44.964798 ], [ -82.441406, 44.964798 ], [ -82.441406, 43.961191 ], [ -82.265625, 43.961191 ], [ -82.265625, 43.325178 ], [ -82.441406, 43.325178 ], [ -82.441406, 42.940339 ], [ -82.617188, 42.940339 ], [ -82.617188, 42.811522 ], [ -82.792969, 42.811522 ], [ -82.792969, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 42.293564 ], [ -83.144531, 42.293564 ], [ -83.144531, 41.771312 ], [ -82.265625, 41.771312 ], [ -82.265625, 41.902277 ], [ -81.914062, 41.902277 ], [ -81.914062, 42.032974 ], [ -81.738281, 42.032974 ], [ -81.738281, 42.163403 ], [ -81.386719, 42.163403 ], [ -81.386719, 42.293564 ], [ -80.683594, 42.293564 ], [ -80.683594, 42.423457 ], [ -80.156250, 42.423457 ], [ -80.156250, 42.553080 ], [ -79.804688, 42.553080 ], [ -79.804688, 42.682435 ], [ -79.453125, 42.682435 ], [ -79.453125, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.940339 ], [ -78.925781, 42.940339 ], [ -78.925781, 43.197167 ], [ -79.101562, 43.197167 ], [ -79.101562, 43.452919 ], [ -79.277344, 43.452919 ], [ -79.277344, 43.580391 ], [ -78.925781, 43.580391 ], [ -78.925781, 43.707594 ], [ -76.816406, 43.707594 ], [ -76.816406, 43.961191 ], [ -76.640625, 43.961191 ], [ -76.640625, 44.087585 ], [ -76.464844, 44.087585 ], [ -76.464844, 44.213710 ], [ -76.289062, 44.213710 ], [ -76.289062, 44.339565 ], [ -76.113281, 44.339565 ], [ -76.113281, 44.465151 ], [ -75.761719, 44.465151 ], [ -75.761719, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.715514 ], [ -75.410156, 44.715514 ], [ -75.410156, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.964798 ], [ -74.882812, 44.964798 ], [ -74.882812, 45.089036 ], [ -71.542969, 45.089036 ], [ -71.542969, 45.336702 ], [ -70.839844, 45.336702 ], [ -70.839844, 45.460131 ], [ -70.664062, 45.460131 ], [ -70.664062, 45.583290 ], [ -70.488281, 45.583290 ], [ -70.488281, 45.828799 ], [ -70.312500, 45.828799 ], [ -70.312500, 46.316584 ], [ -70.136719, 46.316584 ], [ -70.136719, 46.800059 ], [ -69.960938, 46.800059 ], [ -69.960938, 46.920255 ], [ -69.785156, 46.920255 ], [ -69.785156, 47.159840 ], [ -69.609375, 47.159840 ], [ -69.609375, 47.279229 ], [ -69.433594, 47.279229 ], [ -69.433594, 47.398349 ], [ -69.082031, 47.398349 ], [ -69.082031, 47.279229 ], [ -68.554688, 47.279229 ], [ -68.554688, 47.398349 ], [ -68.378906, 47.398349 ], [ -68.378906, 47.279229 ], [ -68.027344, 47.279229 ], [ -68.027344, 47.159840 ], [ -67.851562, 47.159840 ], [ -67.851562, 45.583290 ], [ -67.675781, 45.583290 ], [ -67.675781, 45.460131 ], [ -67.500000, 45.460131 ], [ -67.500000, 45.336702 ], [ -67.324219, 45.336702 ], [ -67.324219, 45.213004 ], [ -67.148438, 45.213004 ], [ -67.148438, 44.964798 ], [ -66.972656, 44.964798 ], [ -66.972656, 44.715514 ], [ -67.324219, 44.715514 ], [ -67.324219, 44.590467 ], [ -67.675781, 44.590467 ], [ -67.675781, 44.465151 ], [ -68.027344, 44.465151 ], [ -68.027344, 44.339565 ], [ -68.378906, 44.339565 ], [ -68.378906, 44.213710 ], [ -68.730469, 44.213710 ], [ -68.730469, 44.087585 ], [ -69.082031, 44.087585 ], [ -69.082031, 43.961191 ], [ -69.433594, 43.961191 ], [ -69.433594, 43.834527 ], [ -69.785156, 43.834527 ], [ -69.785156, 43.707594 ], [ -70.136719, 43.707594 ], [ -70.136719, 43.580391 ], [ -70.312500, 43.580391 ], [ -70.312500, 43.452919 ], [ -70.488281, 43.452919 ], [ -70.488281, 43.197167 ], [ -70.664062, 43.197167 ], [ -70.664062, 43.068888 ], [ -70.839844, 43.068888 ], [ -70.839844, 42.163403 ], [ -70.664062, 42.163403 ], [ -70.664062, 41.902277 ], [ -70.136719, 41.902277 ], [ -70.136719, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.771312 ], [ -70.136719, 41.771312 ], [ -70.136719, 41.640078 ], [ -70.312500, 41.640078 ], [ -70.312500, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -72.597656, 41.376809 ], [ -72.597656, 41.244772 ], [ -72.246094, 41.244772 ], [ -72.246094, 41.112469 ], [ -72.070312, 41.112469 ], [ -72.070312, 40.979898 ], [ -72.246094, 40.979898 ], [ -72.246094, 40.847060 ], [ -72.949219, 40.847060 ], [ -72.949219, 40.713956 ], [ -74.179688, 40.713956 ], [ -74.179688, 40.580585 ], [ -74.355469, 40.580585 ], [ -74.355469, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.341646 ], [ -90.703125, 48.341646 ], [ -90.703125, 48.224673 ], [ -90.000000, 48.224673 ], [ -90.000000, 48.107431 ], [ -88.945312, 48.107431 ], [ -88.945312, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 48.341646 ], [ -88.417969, 48.341646 ] ], [ [ -73.300781, 41.112469 ], [ -73.476562, 41.112469 ], [ -73.476562, 40.979898 ], [ -73.300781, 40.979898 ], [ -73.300781, 41.112469 ] ], [ [ -72.597656, 41.244772 ], [ -73.125000, 41.244772 ], [ -73.125000, 41.112469 ], [ -72.597656, 41.112469 ], [ -72.597656, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.326948 ], [ -45.527344, 60.326948 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 60.673179 ], [ -46.054688, 60.673179 ], [ -46.054688, 60.759160 ], [ -46.230469, 60.759160 ], [ -46.230469, 60.844911 ], [ -48.515625, 60.844911 ], [ -48.515625, 61.015725 ], [ -48.691406, 61.015725 ], [ -48.691406, 61.100789 ], [ -48.867188, 61.100789 ], [ -48.867188, 61.185625 ], [ -49.042969, 61.185625 ], [ -49.042969, 61.354614 ], [ -49.218750, 61.354614 ], [ -49.218750, 61.522695 ], [ -49.394531, 61.522695 ], [ -49.394531, 61.773123 ], [ -49.570312, 61.773123 ], [ -49.570312, 61.938950 ], [ -49.746094, 61.938950 ], [ -49.746094, 62.186014 ], [ -49.921875, 62.186014 ], [ -49.921875, 62.349609 ], [ -50.097656, 62.349609 ], [ -50.097656, 62.512318 ], [ -50.273438, 62.512318 ], [ -50.273438, 62.674143 ], [ -50.449219, 62.674143 ], [ -50.449219, 62.754726 ], [ -50.625000, 62.754726 ], [ -50.625000, 62.915233 ], [ -50.800781, 62.915233 ], [ -50.800781, 62.995158 ], [ -50.976562, 62.995158 ], [ -50.976562, 63.154355 ], [ -51.152344, 63.154355 ], [ -51.152344, 63.312683 ], [ -51.328125, 63.312683 ], [ -51.328125, 63.391522 ], [ -51.503906, 63.391522 ], [ -51.503906, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 63.704722 ], [ -51.855469, 63.704722 ], [ -51.855469, 63.937372 ], [ -52.031250, 63.937372 ], [ -52.031250, 64.091408 ], [ -52.207031, 64.091408 ], [ -52.207031, 65.146115 ], [ -52.382812, 65.146115 ], [ -52.382812, 65.293468 ], [ -52.558594, 65.293468 ], [ -52.558594, 65.440002 ], [ -52.734375, 65.440002 ], [ -52.734375, 65.512963 ], [ -52.910156, 65.512963 ], [ -52.910156, 65.658275 ], [ -53.085938, 65.658275 ], [ -53.085938, 65.730626 ], [ -53.261719, 65.730626 ], [ -53.261719, 65.874725 ], [ -53.437500, 65.874725 ], [ -53.437500, 66.018018 ], [ -53.613281, 66.018018 ], [ -53.613281, 66.231457 ], [ -53.437500, 66.231457 ], [ -53.437500, 66.652977 ], [ -53.261719, 66.652977 ], [ -53.261719, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.152442 ], [ -44.296875, 60.152442 ], [ -44.296875, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.326948 ], [ -45.527344, 60.326948 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 60.673179 ], [ -46.054688, 60.673179 ], [ -46.054688, 60.759160 ], [ -46.230469, 60.759160 ], [ -46.230469, 60.844911 ], [ -46.406250, 60.844911 ], [ -46.406250, 60.930432 ], [ -48.515625, 60.930432 ], [ -48.515625, 61.015725 ], [ -48.691406, 61.015725 ], [ -48.691406, 61.100789 ], [ -48.867188, 61.100789 ], [ -48.867188, 61.185625 ], [ -49.042969, 61.185625 ], [ -49.042969, 61.270233 ], [ -49.218750, 61.270233 ], [ -49.218750, 61.354614 ], [ -49.394531, 61.354614 ], [ -49.394531, 61.606396 ], [ -49.570312, 61.606396 ], [ -49.570312, 61.938950 ], [ -49.746094, 61.938950 ], [ -49.746094, 62.267923 ], [ -49.921875, 62.267923 ], [ -49.921875, 62.431074 ], [ -50.097656, 62.431074 ], [ -50.097656, 62.593341 ], [ -50.273438, 62.593341 ], [ -50.273438, 62.674143 ], [ -50.449219, 62.674143 ], [ -50.449219, 62.835089 ], [ -50.625000, 62.835089 ], [ -50.625000, 62.915233 ], [ -50.800781, 62.915233 ], [ -50.800781, 63.074866 ], [ -50.976562, 63.074866 ], [ -50.976562, 63.154355 ], [ -51.152344, 63.154355 ], [ -51.152344, 63.312683 ], [ -51.328125, 63.312683 ], [ -51.328125, 63.391522 ], [ -51.503906, 63.391522 ], [ -51.503906, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 63.704722 ], [ -51.855469, 63.704722 ], [ -51.855469, 63.937372 ], [ -52.031250, 63.937372 ], [ -52.031250, 64.168107 ], [ -52.207031, 64.168107 ], [ -52.207031, 64.774125 ], [ -52.382812, 64.774125 ], [ -52.382812, 65.219894 ], [ -52.558594, 65.219894 ], [ -52.558594, 65.366837 ], [ -52.734375, 65.366837 ], [ -52.734375, 65.512963 ], [ -52.910156, 65.512963 ], [ -52.910156, 65.585720 ], [ -53.085938, 65.585720 ], [ -53.085938, 65.730626 ], [ -53.261719, 65.730626 ], [ -53.261719, 65.802776 ], [ -53.437500, 65.802776 ], [ -53.437500, 65.946472 ], [ -53.613281, 65.946472 ], [ -53.613281, 66.089364 ], [ -53.789062, 66.089364 ], [ -53.789062, 66.302205 ], [ -53.613281, 66.302205 ], [ -53.613281, 66.652977 ], [ -53.437500, 66.652977 ], [ -53.437500, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.253906, 69.900118 ], [ -85.253906, 69.839622 ], [ -84.550781, 69.839622 ], [ -84.550781, 69.778952 ], [ -83.847656, 69.778952 ], [ -83.847656, 69.718107 ], [ -83.144531, 69.718107 ], [ -83.144531, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.595890 ], [ -82.441406, 69.595890 ], [ -82.441406, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.472969 ], [ -82.089844, 69.472969 ], [ -82.089844, 69.411242 ], [ -81.914062, 69.411242 ], [ -81.914062, 69.349339 ], [ -81.738281, 69.349339 ], [ -81.738281, 69.287257 ], [ -81.562500, 69.287257 ], [ -81.562500, 69.224997 ], [ -81.386719, 69.224997 ], [ -81.386719, 69.162558 ], [ -81.210938, 69.162558 ], [ -81.210938, 68.592487 ], [ -81.386719, 68.592487 ], [ -81.386719, 68.463800 ], [ -81.562500, 68.463800 ], [ -81.562500, 68.334376 ], [ -81.738281, 68.334376 ], [ -81.738281, 68.204212 ], [ -81.914062, 68.204212 ], [ -81.914062, 68.073305 ], [ -81.738281, 68.073305 ], [ -81.738281, 67.941650 ], [ -81.562500, 67.941650 ], [ -81.562500, 67.809245 ], [ -81.386719, 67.809245 ], [ -81.386719, 67.676085 ], [ -81.210938, 67.676085 ], [ -81.210938, 67.339861 ], [ -81.386719, 67.339861 ], [ -81.386719, 67.067433 ], [ -81.562500, 67.067433 ], [ -81.562500, 66.998844 ], [ -81.738281, 66.998844 ], [ -81.738281, 66.930060 ], [ -81.914062, 66.930060 ], [ -81.914062, 66.861082 ], [ -82.089844, 66.861082 ], [ -82.089844, 66.791909 ], [ -82.441406, 66.791909 ], [ -82.441406, 66.722541 ], [ -82.617188, 66.722541 ], [ -82.617188, 66.652977 ], [ -82.792969, 66.652977 ], [ -82.792969, 66.583217 ], [ -82.968750, 66.583217 ], [ -82.968750, 66.513260 ], [ -83.144531, 66.513260 ], [ -83.144531, 66.443107 ], [ -83.496094, 66.443107 ], [ -83.496094, 66.372755 ], [ -83.847656, 66.372755 ], [ -83.847656, 66.302205 ], [ -84.375000, 66.302205 ], [ -84.375000, 66.231457 ], [ -84.902344, 66.231457 ], [ -84.902344, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.443107 ], [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.372755 ], [ -85.957031, 66.372755 ], [ -85.957031, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.472969 ], [ -90.527344, 69.472969 ], [ -90.527344, 68.463800 ], [ -90.351562, 68.463800 ], [ -90.351562, 68.592487 ], [ -90.175781, 68.592487 ], [ -90.175781, 68.720441 ], [ -90.000000, 68.720441 ], [ -90.000000, 68.847665 ], [ -89.824219, 68.847665 ], [ -89.824219, 68.974164 ], [ -89.648438, 68.974164 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 69.099940 ], [ -88.945312, 69.099940 ], [ -88.945312, 69.037142 ], [ -88.769531, 69.037142 ], [ -88.769531, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 68.784144 ], [ -88.417969, 68.784144 ], [ -88.417969, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.242188, 68.592487 ], [ -88.066406, 68.592487 ], [ -88.066406, 68.204212 ], [ -88.242188, 68.204212 ], [ -88.242188, 67.809245 ], [ -88.066406, 67.809245 ], [ -88.066406, 67.676085 ], [ -87.890625, 67.676085 ], [ -87.890625, 67.542167 ], [ -87.714844, 67.542167 ], [ -87.714844, 67.407487 ], [ -87.539062, 67.407487 ], [ -87.539062, 67.272043 ], [ -87.363281, 67.272043 ], [ -87.363281, 67.204032 ], [ -87.187500, 67.204032 ], [ -87.187500, 67.339861 ], [ -87.011719, 67.339861 ], [ -87.011719, 67.474922 ], [ -86.835938, 67.474922 ], [ -86.835938, 67.609221 ], [ -86.660156, 67.609221 ], [ -86.660156, 67.742759 ], [ -86.484375, 67.742759 ], [ -86.484375, 67.875541 ], [ -86.308594, 67.875541 ], [ -86.308594, 68.007571 ], [ -86.132812, 68.007571 ], [ -86.132812, 68.204212 ], [ -85.957031, 68.204212 ], [ -85.957031, 68.463800 ], [ -85.781250, 68.463800 ], [ -85.781250, 68.656555 ], [ -85.605469, 68.656555 ], [ -85.605469, 69.900118 ], [ -85.253906, 69.900118 ] ] ], [ [ [ -85.781250, 73.824820 ], [ -85.781250, 73.726595 ], [ -85.957031, 73.726595 ], [ -85.957031, 73.578167 ], [ -86.132812, 73.578167 ], [ -86.132812, 73.378215 ], [ -86.308594, 73.378215 ], [ -86.308594, 73.226700 ], [ -86.484375, 73.226700 ], [ -86.484375, 73.073844 ], [ -86.308594, 73.073844 ], [ -86.308594, 72.919635 ], [ -86.132812, 72.919635 ], [ -86.132812, 72.764065 ], [ -85.957031, 72.764065 ], [ -85.957031, 72.607120 ], [ -85.605469, 72.607120 ], [ -85.605469, 72.764065 ], [ -85.429688, 72.764065 ], [ -85.429688, 72.919635 ], [ -85.253906, 72.919635 ], [ -85.253906, 73.073844 ], [ -85.078125, 73.073844 ], [ -85.078125, 73.226700 ], [ -84.902344, 73.226700 ], [ -84.902344, 73.327858 ], [ -84.726562, 73.327858 ], [ -84.726562, 73.378215 ], [ -84.375000, 73.378215 ], [ -84.375000, 73.428424 ], [ -84.023438, 73.428424 ], [ -84.023438, 73.478485 ], [ -83.671875, 73.478485 ], [ -83.671875, 73.528399 ], [ -83.320312, 73.528399 ], [ -83.320312, 73.578167 ], [ -82.968750, 73.578167 ], [ -82.968750, 73.627789 ], [ -82.617188, 73.627789 ], [ -82.617188, 73.677264 ], [ -82.265625, 73.677264 ], [ -82.265625, 73.627789 ], [ -82.089844, 73.627789 ], [ -82.089844, 73.528399 ], [ -81.914062, 73.528399 ], [ -81.914062, 73.428424 ], [ -81.738281, 73.428424 ], [ -81.738281, 73.327858 ], [ -81.562500, 73.327858 ], [ -81.562500, 73.226700 ], [ -81.386719, 73.226700 ], [ -81.386719, 73.073844 ], [ -81.210938, 73.073844 ], [ -81.210938, 72.971189 ], [ -81.035156, 72.971189 ], [ -81.035156, 72.867930 ], [ -80.859375, 72.867930 ], [ -80.859375, 72.764065 ], [ -80.683594, 72.764065 ], [ -80.683594, 72.073911 ], [ -80.332031, 72.073911 ], [ -80.332031, 72.127936 ], [ -79.980469, 72.127936 ], [ -79.980469, 72.181804 ], [ -79.628906, 72.181804 ], [ -79.628906, 72.235514 ], [ -79.277344, 72.235514 ], [ -79.277344, 72.289067 ], [ -78.925781, 72.289067 ], [ -78.925781, 72.342464 ], [ -78.574219, 72.342464 ], [ -78.574219, 72.448792 ], [ -78.398438, 72.448792 ], [ -78.398438, 72.554498 ], [ -78.222656, 72.554498 ], [ -78.222656, 72.607120 ], [ -78.046875, 72.607120 ], [ -78.046875, 72.711903 ], [ -77.695312, 72.711903 ], [ -77.695312, 72.659588 ], [ -77.343750, 72.659588 ], [ -77.343750, 72.607120 ], [ -77.167969, 72.607120 ], [ -77.167969, 72.554498 ], [ -76.992188, 72.554498 ], [ -76.992188, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.448792 ], [ -76.464844, 72.448792 ], [ -76.464844, 72.395706 ], [ -76.289062, 72.395706 ], [ -76.289062, 72.342464 ], [ -75.937500, 72.342464 ], [ -75.937500, 72.289067 ], [ -75.761719, 72.289067 ], [ -75.761719, 72.235514 ], [ -75.585938, 72.235514 ], [ -75.585938, 72.181804 ], [ -75.410156, 72.181804 ], [ -75.410156, 72.127936 ], [ -75.234375, 72.127936 ], [ -75.234375, 72.073911 ], [ -75.058594, 72.073911 ], [ -75.058594, 72.019729 ], [ -74.882812, 72.019729 ], [ -74.882812, 71.910888 ], [ -74.707031, 71.910888 ], [ -74.707031, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.801410 ], [ -74.355469, 71.801410 ], [ -74.355469, 71.746432 ], [ -74.179688, 71.746432 ], [ -74.179688, 71.357067 ], [ -73.828125, 71.357067 ], [ -73.828125, 71.413177 ], [ -73.300781, 71.413177 ], [ -73.300781, 71.469124 ], [ -72.949219, 71.469124 ], [ -72.949219, 71.524909 ], [ -72.421875, 71.524909 ], [ -72.421875, 71.580532 ], [ -72.246094, 71.580532 ], [ -72.246094, 71.524909 ], [ -72.070312, 71.524909 ], [ -72.070312, 71.413177 ], [ -71.894531, 71.413177 ], [ -71.894531, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 71.187754 ], [ -71.542969, 71.187754 ], [ -71.542969, 71.074056 ], [ -71.367188, 71.074056 ], [ -71.367188, 70.959697 ], [ -71.191406, 70.959697 ], [ -71.191406, 70.902268 ], [ -71.015625, 70.902268 ], [ -71.015625, 70.844673 ], [ -70.664062, 70.844673 ], [ -70.664062, 70.786910 ], [ -70.312500, 70.786910 ], [ -70.312500, 70.728979 ], [ -69.785156, 70.728979 ], [ -69.785156, 70.670881 ], [ -69.433594, 70.670881 ], [ -69.433594, 70.612614 ], [ -69.082031, 70.612614 ], [ -69.082031, 70.554179 ], [ -68.730469, 70.554179 ], [ -68.730469, 70.495574 ], [ -68.554688, 70.495574 ], [ -68.554688, 70.377854 ], [ -68.378906, 70.377854 ], [ -68.378906, 70.318738 ], [ -68.203125, 70.318738 ], [ -68.203125, 70.259452 ], [ -68.027344, 70.259452 ], [ -68.027344, 70.140364 ], [ -67.851562, 70.140364 ], [ -67.851562, 70.020587 ], [ -67.675781, 70.020587 ], [ -67.675781, 69.839622 ], [ -67.500000, 69.839622 ], [ -67.500000, 69.657086 ], [ -67.324219, 69.657086 ], [ -67.324219, 69.411242 ], [ -67.148438, 69.411242 ], [ -67.148438, 69.224997 ], [ -66.972656, 69.224997 ], [ -66.972656, 69.099940 ], [ -67.324219, 69.099940 ], [ -67.324219, 69.037142 ], [ -67.500000, 69.037142 ], [ -67.500000, 68.974164 ], [ -67.675781, 68.974164 ], [ -67.675781, 68.911005 ], [ -68.027344, 68.911005 ], [ -68.027344, 68.847665 ], [ -68.203125, 68.847665 ], [ -68.203125, 68.784144 ], [ -68.554688, 68.784144 ], [ -68.554688, 68.720441 ], [ -68.730469, 68.720441 ], [ -68.730469, 68.656555 ], [ -68.554688, 68.656555 ], [ -68.554688, 68.592487 ], [ -68.203125, 68.592487 ], [ -68.203125, 68.528235 ], [ -68.027344, 68.528235 ], [ -68.027344, 68.463800 ], [ -67.851562, 68.463800 ], [ -67.851562, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.334376 ], [ -67.324219, 68.334376 ], [ -67.324219, 68.269387 ], [ -67.148438, 68.269387 ], [ -67.148438, 68.204212 ], [ -66.796875, 68.204212 ], [ -66.796875, 68.138852 ], [ -66.621094, 68.138852 ], [ -66.621094, 68.073305 ], [ -66.269531, 68.073305 ], [ -66.269531, 68.007571 ], [ -65.742188, 68.007571 ], [ -65.742188, 67.941650 ], [ -65.214844, 67.941650 ], [ -65.214844, 67.875541 ], [ -64.863281, 67.875541 ], [ -64.863281, 67.809245 ], [ -64.687500, 67.809245 ], [ -64.687500, 67.676085 ], [ -64.511719, 67.676085 ], [ -64.511719, 67.542167 ], [ -64.335938, 67.542167 ], [ -64.335938, 67.407487 ], [ -64.160156, 67.407487 ], [ -64.160156, 67.339861 ], [ -63.984375, 67.339861 ], [ -63.984375, 67.204032 ], [ -63.808594, 67.204032 ], [ -63.808594, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -62.753906, 66.930060 ], [ -62.753906, 66.861082 ], [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.160511 ], [ -66.445312, 66.160511 ], [ -66.445312, 66.231457 ], [ -66.621094, 66.231457 ], [ -66.621094, 66.302205 ], [ -66.796875, 66.302205 ], [ -66.796875, 66.372755 ], [ -66.972656, 66.372755 ], [ -66.972656, 66.302205 ], [ -67.675781, 66.302205 ], [ -67.675781, 66.231457 ], [ -68.027344, 66.231457 ], [ -68.027344, 66.160511 ], [ -74.003906, 66.160511 ], [ -74.003906, 66.302205 ], [ -73.828125, 66.302205 ], [ -73.828125, 66.443107 ], [ -73.652344, 66.443107 ], [ -73.652344, 66.583217 ], [ -73.476562, 66.583217 ], [ -73.476562, 66.722541 ], [ -73.300781, 66.722541 ], [ -73.300781, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 66.930060 ], [ -72.949219, 66.930060 ], [ -72.949219, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.204032 ], [ -72.597656, 67.204032 ], [ -72.597656, 67.339861 ], [ -72.773438, 67.339861 ], [ -72.773438, 67.609221 ], [ -72.949219, 67.609221 ], [ -72.949219, 67.809245 ], [ -73.125000, 67.809245 ], [ -73.125000, 67.941650 ], [ -73.300781, 67.941650 ], [ -73.300781, 68.073305 ], [ -73.476562, 68.073305 ], [ -73.476562, 68.138852 ], [ -73.652344, 68.138852 ], [ -73.652344, 68.204212 ], [ -74.003906, 68.204212 ], [ -74.003906, 68.269387 ], [ -74.179688, 68.269387 ], [ -74.179688, 68.334376 ], [ -74.355469, 68.334376 ], [ -74.355469, 68.399180 ], [ -74.707031, 68.399180 ], [ -74.707031, 68.463800 ], [ -74.882812, 68.463800 ], [ -74.882812, 68.528235 ], [ -75.058594, 68.528235 ], [ -75.058594, 68.592487 ], [ -75.410156, 68.592487 ], [ -75.410156, 68.656555 ], [ -75.761719, 68.656555 ], [ -75.761719, 68.720441 ], [ -76.113281, 68.720441 ], [ -76.113281, 68.784144 ], [ -76.464844, 68.784144 ], [ -76.464844, 68.847665 ], [ -76.816406, 68.847665 ], [ -76.816406, 68.911005 ], [ -76.640625, 68.911005 ], [ -76.640625, 69.037142 ], [ -76.464844, 69.037142 ], [ -76.464844, 69.099940 ], [ -76.289062, 69.099940 ], [ -76.289062, 69.162558 ], [ -76.464844, 69.162558 ], [ -76.464844, 69.287257 ], [ -76.640625, 69.287257 ], [ -76.640625, 69.411242 ], [ -76.816406, 69.411242 ], [ -76.816406, 69.472969 ], [ -76.992188, 69.472969 ], [ -76.992188, 69.595890 ], [ -77.167969, 69.595890 ], [ -77.167969, 69.718107 ], [ -77.343750, 69.718107 ], [ -77.343750, 69.778952 ], [ -77.871094, 69.778952 ], [ -77.871094, 69.839622 ], [ -78.398438, 69.839622 ], [ -78.398438, 69.900118 ], [ -78.574219, 69.900118 ], [ -78.574219, 70.020587 ], [ -78.750000, 70.020587 ], [ -78.750000, 70.080562 ], [ -79.101562, 70.080562 ], [ -79.101562, 70.020587 ], [ -79.277344, 70.020587 ], [ -79.277344, 69.900118 ], [ -79.628906, 69.900118 ], [ -79.628906, 69.839622 ], [ -80.332031, 69.839622 ], [ -80.332031, 69.778952 ], [ -81.035156, 69.778952 ], [ -81.035156, 69.718107 ], [ -81.914062, 69.718107 ], [ -81.914062, 69.778952 ], [ -82.792969, 69.778952 ], [ -82.792969, 69.839622 ], [ -83.671875, 69.839622 ], [ -83.671875, 69.900118 ], [ -84.550781, 69.900118 ], [ -84.550781, 69.960439 ], [ -85.253906, 69.960439 ], [ -85.253906, 70.020587 ], [ -85.605469, 70.020587 ], [ -85.605469, 70.080562 ], [ -86.132812, 70.080562 ], [ -86.132812, 70.140364 ], [ -86.484375, 70.140364 ], [ -86.484375, 70.199994 ], [ -86.835938, 70.199994 ], [ -86.835938, 70.259452 ], [ -87.363281, 70.259452 ], [ -87.363281, 70.318738 ], [ -88.066406, 70.318738 ], [ -88.066406, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.436799 ], [ -88.945312, 70.436799 ], [ -88.945312, 70.554179 ], [ -89.121094, 70.554179 ], [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.728979 ], [ -89.472656, 70.728979 ], [ -89.472656, 70.786910 ], [ -89.296875, 70.786910 ], [ -89.296875, 70.902268 ], [ -89.121094, 70.902268 ], [ -89.121094, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.016960 ], [ -88.769531, 71.016960 ], [ -88.769531, 71.130988 ], [ -88.593750, 71.130988 ], [ -88.593750, 71.187754 ], [ -88.417969, 71.187754 ], [ -88.417969, 71.244356 ], [ -89.824219, 71.244356 ], [ -89.824219, 71.469124 ], [ -90.000000, 71.469124 ], [ -90.000000, 71.965388 ], [ -90.175781, 71.965388 ], [ -90.175781, 72.342464 ], [ -90.000000, 72.342464 ], [ -90.000000, 72.554498 ], [ -89.824219, 72.554498 ], [ -89.824219, 72.764065 ], [ -89.648438, 72.764065 ], [ -89.648438, 72.971189 ], [ -89.472656, 72.971189 ], [ -89.472656, 73.124945 ], [ -89.296875, 73.124945 ], [ -89.296875, 73.226700 ], [ -89.121094, 73.226700 ], [ -89.121094, 73.277353 ], [ -88.945312, 73.277353 ], [ -88.945312, 73.327858 ], [ -88.769531, 73.327858 ], [ -88.769531, 73.428424 ], [ -88.593750, 73.428424 ], [ -88.593750, 73.478485 ], [ -88.417969, 73.478485 ], [ -88.417969, 73.528399 ], [ -88.066406, 73.528399 ], [ -88.066406, 73.578167 ], [ -87.714844, 73.578167 ], [ -87.714844, 73.627789 ], [ -87.187500, 73.627789 ], [ -87.187500, 73.677264 ], [ -86.835938, 73.677264 ], [ -86.835938, 73.726595 ], [ -86.308594, 73.726595 ], [ -86.308594, 73.775780 ], [ -85.957031, 73.775780 ], [ -85.957031, 73.824820 ], [ -85.781250, 73.824820 ] ] ], [ [ [ -85.078125, 77.579959 ], [ -85.078125, 77.655346 ], [ -85.253906, 77.655346 ], [ -85.253906, 77.730282 ], [ -85.429688, 77.730282 ], [ -85.429688, 77.804771 ], [ -85.605469, 77.804771 ], [ -85.605469, 77.878814 ], [ -85.781250, 77.878814 ], [ -85.781250, 77.952414 ], [ -85.957031, 77.952414 ], [ -85.957031, 78.025574 ], [ -86.132812, 78.025574 ], [ -86.132812, 78.098296 ], [ -86.308594, 78.098296 ], [ -86.308594, 78.170582 ], [ -86.484375, 78.170582 ], [ -86.484375, 78.206563 ], [ -86.835938, 78.206563 ], [ -86.835938, 78.242436 ], [ -87.011719, 78.242436 ], [ -87.011719, 78.278201 ], [ -87.363281, 78.278201 ], [ -87.363281, 78.313860 ], [ -87.539062, 78.313860 ], [ -87.539062, 78.349411 ], [ -87.890625, 78.349411 ], [ -87.890625, 78.420193 ], [ -87.714844, 78.420193 ], [ -87.714844, 78.525573 ], [ -87.539062, 78.525573 ], [ -87.539062, 78.595299 ], [ -87.363281, 78.595299 ], [ -87.363281, 78.699106 ], [ -87.187500, 78.699106 ], [ -87.187500, 78.767792 ], [ -87.011719, 78.767792 ], [ -87.011719, 78.801980 ], [ -86.660156, 78.801980 ], [ -86.660156, 78.836065 ], [ -86.484375, 78.836065 ], [ -86.484375, 78.870048 ], [ -86.132812, 78.870048 ], [ -86.132812, 78.903929 ], [ -85.957031, 78.903929 ], [ -85.957031, 78.937708 ], [ -85.781250, 78.937708 ], [ -85.781250, 78.971386 ], [ -85.429688, 78.971386 ], [ -85.429688, 79.071812 ], [ -85.253906, 79.071812 ], [ -85.253906, 79.237185 ], [ -85.078125, 79.237185 ], [ -85.078125, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.004962 ], [ -76.289062, 79.004962 ], [ -76.289062, 78.937708 ], [ -76.113281, 78.937708 ], [ -76.113281, 78.836065 ], [ -75.937500, 78.836065 ], [ -75.937500, 78.767792 ], [ -75.761719, 78.767792 ], [ -75.761719, 78.664608 ], [ -75.585938, 78.664608 ], [ -75.585938, 78.560488 ], [ -75.410156, 78.560488 ], [ -75.410156, 78.490552 ], [ -75.585938, 78.490552 ], [ -75.585938, 78.420193 ], [ -75.761719, 78.420193 ], [ -75.761719, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.278201 ], [ -76.113281, 78.278201 ], [ -76.113281, 78.206563 ], [ -76.289062, 78.206563 ], [ -76.289062, 78.134493 ], [ -76.464844, 78.134493 ], [ -76.464844, 78.098296 ], [ -76.816406, 78.098296 ], [ -76.816406, 78.061989 ], [ -76.992188, 78.061989 ], [ -76.992188, 78.025574 ], [ -77.167969, 78.025574 ], [ -77.167969, 77.989049 ], [ -77.519531, 77.989049 ], [ -77.519531, 77.952414 ], [ -77.695312, 77.952414 ], [ -77.695312, 77.915669 ], [ -77.871094, 77.915669 ], [ -77.871094, 77.841848 ], [ -78.046875, 77.841848 ], [ -78.046875, 77.692870 ], [ -78.222656, 77.692870 ], [ -78.222656, 77.542096 ], [ -78.398438, 77.542096 ], [ -78.398438, 77.466028 ], [ -78.574219, 77.466028 ], [ -78.574219, 77.427824 ], [ -78.750000, 77.427824 ], [ -78.750000, 77.389504 ], [ -78.925781, 77.389504 ], [ -78.925781, 77.351070 ], [ -79.101562, 77.351070 ], [ -79.101562, 77.312520 ], [ -79.277344, 77.312520 ], [ -79.277344, 77.273855 ], [ -79.453125, 77.273855 ], [ -79.453125, 77.235074 ], [ -79.628906, 77.235074 ], [ -79.628906, 77.196176 ], [ -79.804688, 77.196176 ], [ -79.804688, 77.078784 ], [ -79.628906, 77.078784 ], [ -79.628906, 76.999935 ], [ -78.574219, 76.999935 ], [ -78.574219, 77.039418 ], [ -77.871094, 77.039418 ], [ -77.871094, 76.720223 ], [ -78.046875, 76.720223 ], [ -78.046875, 76.679785 ], [ -78.222656, 76.679785 ], [ -78.222656, 76.639226 ], [ -78.398438, 76.639226 ], [ -78.398438, 76.598545 ], [ -78.574219, 76.598545 ], [ -78.574219, 76.557743 ], [ -78.750000, 76.557743 ], [ -78.750000, 76.516819 ], [ -78.925781, 76.516819 ], [ -78.925781, 76.475773 ], [ -79.277344, 76.475773 ], [ -79.277344, 76.434604 ], [ -79.453125, 76.434604 ], [ -79.453125, 76.393312 ], [ -79.628906, 76.393312 ], [ -79.628906, 76.351896 ], [ -79.804688, 76.351896 ], [ -79.804688, 76.310358 ], [ -79.980469, 76.310358 ], [ -79.980469, 76.268695 ], [ -80.156250, 76.268695 ], [ -80.156250, 76.226907 ], [ -80.332031, 76.226907 ], [ -80.332031, 76.184995 ], [ -80.859375, 76.184995 ], [ -80.859375, 76.226907 ], [ -81.210938, 76.226907 ], [ -81.210938, 76.268695 ], [ -81.738281, 76.268695 ], [ -81.738281, 76.310358 ], [ -82.089844, 76.310358 ], [ -82.089844, 76.351896 ], [ -82.617188, 76.351896 ], [ -82.617188, 76.393312 ], [ -82.968750, 76.393312 ], [ -82.968750, 76.434604 ], [ -83.496094, 76.434604 ], [ -83.496094, 76.393312 ], [ -84.550781, 76.393312 ], [ -84.550781, 76.351896 ], [ -85.605469, 76.351896 ], [ -85.605469, 76.310358 ], [ -86.484375, 76.310358 ], [ -86.484375, 76.351896 ], [ -87.011719, 76.351896 ], [ -87.011719, 76.393312 ], [ -87.363281, 76.393312 ], [ -87.363281, 76.434604 ], [ -88.593750, 76.434604 ], [ -88.593750, 76.475773 ], [ -89.472656, 76.475773 ], [ -89.472656, 76.720223 ], [ -89.648438, 76.720223 ], [ -89.648438, 76.960334 ], [ -89.472656, 76.960334 ], [ -89.472656, 76.999935 ], [ -89.121094, 76.999935 ], [ -89.121094, 77.039418 ], [ -88.769531, 77.039418 ], [ -88.769531, 77.078784 ], [ -88.417969, 77.078784 ], [ -88.417969, 77.118032 ], [ -88.066406, 77.118032 ], [ -88.066406, 77.157163 ], [ -87.714844, 77.157163 ], [ -87.714844, 77.312520 ], [ -87.890625, 77.312520 ], [ -87.890625, 77.542096 ], [ -88.066406, 77.542096 ], [ -88.066406, 77.767582 ], [ -88.242188, 77.767582 ], [ -88.242188, 77.915669 ], [ -87.890625, 77.915669 ], [ -87.890625, 77.952414 ], [ -87.714844, 77.952414 ], [ -87.714844, 77.915669 ], [ -87.363281, 77.915669 ], [ -87.363281, 77.878814 ], [ -87.187500, 77.878814 ], [ -87.187500, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.804771 ], [ -86.660156, 77.804771 ], [ -86.660156, 77.767582 ], [ -86.484375, 77.767582 ], [ -86.484375, 77.730282 ], [ -86.132812, 77.730282 ], [ -86.132812, 77.692870 ], [ -85.957031, 77.692870 ], [ -85.957031, 77.655346 ], [ -85.605469, 77.655346 ], [ -85.605469, 77.617709 ], [ -85.429688, 77.617709 ], [ -85.429688, 77.579959 ], [ -85.078125, 77.579959 ] ], [ [ -85.078125, 77.579959 ], [ -85.078125, 77.542096 ], [ -84.902344, 77.542096 ], [ -84.902344, 77.579959 ], [ -85.078125, 77.579959 ] ] ], [ [ [ -90.878906, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.973553 ], [ -90.527344, 75.973553 ], [ -90.527344, 75.930885 ], [ -90.175781, 75.930885 ], [ -90.175781, 75.888091 ], [ -90.000000, 75.888091 ], [ -90.000000, 75.845169 ], [ -89.824219, 75.845169 ], [ -89.824219, 75.802118 ], [ -89.648438, 75.802118 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -88.593750, 75.628632 ], [ -88.593750, 75.584937 ], [ -87.539062, 75.584937 ], [ -87.539062, 75.541113 ], [ -86.835938, 75.541113 ], [ -86.835938, 75.497157 ], [ -86.132812, 75.497157 ], [ -86.132812, 75.541113 ], [ -85.781250, 75.541113 ], [ -85.781250, 75.584937 ], [ -85.429688, 75.584937 ], [ -85.429688, 75.628632 ], [ -85.078125, 75.628632 ], [ -85.078125, 75.672197 ], [ -84.726562, 75.672197 ], [ -84.726562, 75.715633 ], [ -84.199219, 75.715633 ], [ -84.199219, 75.758940 ], [ -83.144531, 75.758940 ], [ -83.144531, 75.802118 ], [ -82.441406, 75.802118 ], [ -82.441406, 75.758940 ], [ -81.738281, 75.758940 ], [ -81.738281, 75.715633 ], [ -81.210938, 75.715633 ], [ -81.210938, 75.672197 ], [ -81.035156, 75.672197 ], [ -81.035156, 75.628632 ], [ -80.859375, 75.628632 ], [ -80.859375, 75.541113 ], [ -80.683594, 75.541113 ], [ -80.683594, 75.497157 ], [ -80.507812, 75.497157 ], [ -80.507812, 75.453071 ], [ -80.332031, 75.453071 ], [ -80.332031, 75.364506 ], [ -80.156250, 75.364506 ], [ -80.156250, 75.320025 ], [ -79.980469, 75.320025 ], [ -79.980469, 75.095633 ], [ -79.804688, 75.095633 ], [ -79.804688, 74.867889 ], [ -79.980469, 74.867889 ], [ -79.980469, 74.775843 ], [ -80.156250, 74.775843 ], [ -80.156250, 74.729615 ], [ -80.332031, 74.729615 ], [ -80.332031, 74.636748 ], [ -80.507812, 74.636748 ], [ -80.507812, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.543330 ], [ -81.210938, 74.543330 ], [ -81.210938, 74.496413 ], [ -81.562500, 74.496413 ], [ -81.562500, 74.449358 ], [ -82.265625, 74.449358 ], [ -82.265625, 74.496413 ], [ -82.968750, 74.496413 ], [ -82.968750, 74.543330 ], [ -83.496094, 74.543330 ], [ -83.496094, 74.496413 ], [ -84.550781, 74.496413 ], [ -84.550781, 74.449358 ], [ -85.605469, 74.449358 ], [ -85.605469, 74.402163 ], [ -88.593750, 74.402163 ], [ -88.593750, 74.449358 ], [ -89.472656, 74.449358 ], [ -89.472656, 74.496413 ], [ -90.175781, 74.496413 ], [ -90.175781, 74.543330 ], [ -90.527344, 74.543330 ], [ -90.527344, 74.590108 ], [ -90.878906, 74.590108 ], [ -90.878906, 76.016094 ] ] ], [ [ [ -75.937500, 68.269387 ], [ -75.937500, 68.204212 ], [ -75.761719, 68.204212 ], [ -75.761719, 68.138852 ], [ -75.410156, 68.138852 ], [ -75.410156, 68.073305 ], [ -75.234375, 68.073305 ], [ -75.234375, 68.007571 ], [ -75.058594, 68.007571 ], [ -75.058594, 67.542167 ], [ -75.234375, 67.542167 ], [ -75.234375, 67.407487 ], [ -75.410156, 67.407487 ], [ -75.410156, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.204032 ], [ -75.761719, 67.204032 ], [ -75.761719, 67.135829 ], [ -76.289062, 67.135829 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.339861 ], [ -77.167969, 67.339861 ], [ -77.167969, 67.742759 ], [ -76.992188, 67.742759 ], [ -76.992188, 68.007571 ], [ -76.816406, 68.007571 ], [ -76.816406, 68.138852 ], [ -76.464844, 68.138852 ], [ -76.464844, 68.204212 ], [ -76.113281, 68.204212 ], [ -76.113281, 68.269387 ], [ -75.937500, 68.269387 ] ] ], [ [ [ -85.781250, 79.335219 ], [ -85.781250, 79.302640 ], [ -85.957031, 79.302640 ], [ -85.957031, 79.269962 ], [ -86.132812, 79.269962 ], [ -86.132812, 79.237185 ], [ -86.308594, 79.237185 ], [ -86.308594, 79.204309 ], [ -86.484375, 79.204309 ], [ -86.484375, 79.138260 ], [ -86.660156, 79.138260 ], [ -86.660156, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.071812 ], [ -87.011719, 79.071812 ], [ -87.011719, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 79.004962 ], [ -87.363281, 79.004962 ], [ -87.363281, 78.937708 ], [ -87.539062, 78.937708 ], [ -87.539062, 78.870048 ], [ -87.714844, 78.870048 ], [ -87.714844, 78.801980 ], [ -87.890625, 78.801980 ], [ -87.890625, 78.733501 ], [ -88.066406, 78.733501 ], [ -88.066406, 78.664608 ], [ -88.242188, 78.664608 ], [ -88.242188, 78.595299 ], [ -88.417969, 78.595299 ], [ -88.417969, 78.525573 ], [ -88.593750, 78.525573 ], [ -88.593750, 78.455425 ], [ -88.769531, 78.455425 ], [ -88.769531, 78.384855 ], [ -88.945312, 78.384855 ], [ -88.945312, 78.313860 ], [ -89.121094, 78.313860 ], [ -89.121094, 78.278201 ], [ -89.472656, 78.278201 ], [ -89.472656, 78.242436 ], [ -90.351562, 78.242436 ], [ -90.351562, 78.206563 ], [ -90.878906, 78.206563 ], [ -90.878906, 79.335219 ], [ -85.781250, 79.335219 ] ] ], [ [ [ -79.980469, 73.775780 ], [ -79.980469, 73.726595 ], [ -79.277344, 73.726595 ], [ -79.277344, 73.677264 ], [ -78.574219, 73.677264 ], [ -78.574219, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.578167 ], [ -77.871094, 73.578167 ], [ -77.871094, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.478485 ], [ -77.519531, 73.478485 ], [ -77.519531, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.378215 ], [ -77.167969, 73.378215 ], [ -77.167969, 73.327858 ], [ -76.992188, 73.327858 ], [ -76.992188, 73.277353 ], [ -76.816406, 73.277353 ], [ -76.816406, 73.226700 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.175897 ], [ -76.464844, 73.175897 ], [ -76.464844, 73.124945 ], [ -76.289062, 73.124945 ], [ -76.289062, 72.816074 ], [ -76.992188, 72.816074 ], [ -76.992188, 72.867930 ], [ -78.574219, 72.867930 ], [ -78.574219, 72.816074 ], [ -79.101562, 72.816074 ], [ -79.101562, 72.764065 ], [ -79.804688, 72.764065 ], [ -79.804688, 72.816074 ], [ -79.980469, 72.816074 ], [ -79.980469, 72.919635 ], [ -80.156250, 72.919635 ], [ -80.156250, 73.022592 ], [ -80.332031, 73.022592 ], [ -80.332031, 73.073844 ], [ -80.507812, 73.073844 ], [ -80.507812, 73.175897 ], [ -80.683594, 73.175897 ], [ -80.683594, 73.277353 ], [ -80.859375, 73.277353 ], [ -80.859375, 73.677264 ], [ -80.683594, 73.677264 ], [ -80.683594, 73.726595 ], [ -80.332031, 73.726595 ], [ -80.332031, 73.775780 ], [ -79.980469, 73.775780 ] ] ], [ [ [ -90.527344, 73.873717 ], [ -90.527344, 73.775780 ], [ -90.703125, 73.775780 ], [ -90.703125, 73.677264 ], [ -90.878906, 73.677264 ], [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ] ] ], [ [ [ -90.703125, 76.310358 ], [ -90.878906, 76.310358 ], [ -90.878906, 76.475773 ], [ -90.703125, 76.475773 ], [ -90.703125, 76.310358 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.078125, 69.900118 ], [ -85.078125, 69.839622 ], [ -84.023438, 69.839622 ], [ -84.023438, 69.778952 ], [ -83.320312, 69.778952 ], [ -83.320312, 69.718107 ], [ -82.792969, 69.718107 ], [ -82.792969, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.595890 ], [ -82.441406, 69.595890 ], [ -82.441406, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.472969 ], [ -82.089844, 69.472969 ], [ -82.089844, 69.349339 ], [ -81.914062, 69.349339 ], [ -81.914062, 69.287257 ], [ -81.738281, 69.287257 ], [ -81.738281, 69.224997 ], [ -81.562500, 69.224997 ], [ -81.562500, 69.162558 ], [ -81.386719, 69.162558 ], [ -81.386719, 68.592487 ], [ -81.562500, 68.592487 ], [ -81.562500, 68.463800 ], [ -81.738281, 68.463800 ], [ -81.738281, 68.334376 ], [ -81.914062, 68.334376 ], [ -81.914062, 68.204212 ], [ -82.089844, 68.204212 ], [ -82.089844, 68.073305 ], [ -81.914062, 68.073305 ], [ -81.914062, 67.941650 ], [ -81.738281, 67.941650 ], [ -81.738281, 67.809245 ], [ -81.562500, 67.809245 ], [ -81.562500, 67.676085 ], [ -81.386719, 67.676085 ], [ -81.386719, 67.067433 ], [ -81.562500, 67.067433 ], [ -81.562500, 66.998844 ], [ -81.738281, 66.998844 ], [ -81.738281, 66.930060 ], [ -82.089844, 66.930060 ], [ -82.089844, 66.861082 ], [ -82.265625, 66.861082 ], [ -82.265625, 66.791909 ], [ -82.441406, 66.791909 ], [ -82.441406, 66.722541 ], [ -82.617188, 66.722541 ], [ -82.617188, 66.652977 ], [ -82.792969, 66.652977 ], [ -82.792969, 66.583217 ], [ -83.144531, 66.583217 ], [ -83.144531, 66.513260 ], [ -83.320312, 66.513260 ], [ -83.320312, 66.443107 ], [ -83.671875, 66.443107 ], [ -83.671875, 66.372755 ], [ -84.375000, 66.372755 ], [ -84.375000, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.253906, 66.372755 ], [ -85.253906, 66.443107 ], [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.443107 ], [ -85.957031, 66.443107 ], [ -85.957031, 66.231457 ], [ -86.132812, 66.231457 ], [ -86.132812, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.527344, 68.528235 ], [ -90.527344, 68.656555 ], [ -90.351562, 68.656555 ], [ -90.351562, 68.720441 ], [ -90.175781, 68.720441 ], [ -90.175781, 68.847665 ], [ -90.000000, 68.847665 ], [ -90.000000, 68.911005 ], [ -89.824219, 68.911005 ], [ -89.824219, 69.037142 ], [ -89.648438, 69.037142 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 69.099940 ], [ -88.945312, 69.099940 ], [ -88.945312, 69.037142 ], [ -88.769531, 69.037142 ], [ -88.769531, 68.974164 ], [ -88.593750, 68.974164 ], [ -88.593750, 68.847665 ], [ -88.417969, 68.847665 ], [ -88.417969, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 68.656555 ], [ -88.066406, 68.656555 ], [ -88.066406, 68.463800 ], [ -88.242188, 68.463800 ], [ -88.242188, 68.073305 ], [ -88.417969, 68.073305 ], [ -88.417969, 67.809245 ], [ -88.242188, 67.809245 ], [ -88.242188, 67.676085 ], [ -88.066406, 67.676085 ], [ -88.066406, 67.542167 ], [ -87.890625, 67.542167 ], [ -87.890625, 67.474922 ], [ -87.714844, 67.474922 ], [ -87.714844, 67.339861 ], [ -87.539062, 67.339861 ], [ -87.539062, 67.204032 ], [ -87.187500, 67.204032 ], [ -87.187500, 67.339861 ], [ -87.011719, 67.339861 ], [ -87.011719, 67.474922 ], [ -86.835938, 67.474922 ], [ -86.835938, 67.609221 ], [ -86.660156, 67.609221 ], [ -86.660156, 67.742759 ], [ -86.484375, 67.742759 ], [ -86.484375, 67.875541 ], [ -86.308594, 67.875541 ], [ -86.308594, 68.007571 ], [ -86.132812, 68.007571 ], [ -86.132812, 68.204212 ], [ -85.957031, 68.204212 ], [ -85.957031, 68.463800 ], [ -85.781250, 68.463800 ], [ -85.781250, 68.656555 ], [ -85.605469, 68.656555 ], [ -85.605469, 69.900118 ], [ -85.078125, 69.900118 ] ] ], [ [ [ -85.957031, 73.824820 ], [ -85.957031, 73.726595 ], [ -86.132812, 73.726595 ], [ -86.132812, 73.578167 ], [ -86.308594, 73.578167 ], [ -86.308594, 73.378215 ], [ -86.484375, 73.378215 ], [ -86.484375, 73.226700 ], [ -86.660156, 73.226700 ], [ -86.660156, 73.073844 ], [ -86.484375, 73.073844 ], [ -86.484375, 72.971189 ], [ -86.308594, 72.971189 ], [ -86.308594, 72.867930 ], [ -86.132812, 72.867930 ], [ -86.132812, 72.711903 ], [ -85.957031, 72.711903 ], [ -85.957031, 72.607120 ], [ -85.605469, 72.607120 ], [ -85.605469, 72.764065 ], [ -85.429688, 72.764065 ], [ -85.429688, 72.971189 ], [ -85.253906, 72.971189 ], [ -85.253906, 73.124945 ], [ -85.078125, 73.124945 ], [ -85.078125, 73.277353 ], [ -84.902344, 73.277353 ], [ -84.902344, 73.378215 ], [ -84.726562, 73.378215 ], [ -84.726562, 73.428424 ], [ -84.375000, 73.428424 ], [ -84.375000, 73.478485 ], [ -84.023438, 73.478485 ], [ -84.023438, 73.528399 ], [ -83.671875, 73.528399 ], [ -83.671875, 73.578167 ], [ -83.496094, 73.578167 ], [ -83.496094, 73.627789 ], [ -83.144531, 73.627789 ], [ -83.144531, 73.677264 ], [ -82.792969, 73.677264 ], [ -82.792969, 73.726595 ], [ -82.265625, 73.726595 ], [ -82.265625, 73.627789 ], [ -82.089844, 73.627789 ], [ -82.089844, 73.528399 ], [ -81.914062, 73.528399 ], [ -81.914062, 73.428424 ], [ -81.738281, 73.428424 ], [ -81.738281, 73.327858 ], [ -81.562500, 73.327858 ], [ -81.562500, 73.226700 ], [ -81.386719, 73.226700 ], [ -81.386719, 73.124945 ], [ -81.210938, 73.124945 ], [ -81.210938, 73.022592 ], [ -81.035156, 73.022592 ], [ -81.035156, 72.919635 ], [ -80.859375, 72.919635 ], [ -80.859375, 72.816074 ], [ -80.683594, 72.816074 ], [ -80.683594, 72.395706 ], [ -80.859375, 72.395706 ], [ -80.859375, 72.073911 ], [ -80.683594, 72.073911 ], [ -80.683594, 72.127936 ], [ -80.332031, 72.127936 ], [ -80.332031, 72.181804 ], [ -79.980469, 72.181804 ], [ -79.980469, 72.235514 ], [ -79.628906, 72.235514 ], [ -79.628906, 72.289067 ], [ -79.277344, 72.289067 ], [ -79.277344, 72.342464 ], [ -78.925781, 72.342464 ], [ -78.925781, 72.395706 ], [ -78.750000, 72.395706 ], [ -78.750000, 72.448792 ], [ -78.574219, 72.448792 ], [ -78.574219, 72.501722 ], [ -78.398438, 72.501722 ], [ -78.398438, 72.607120 ], [ -78.222656, 72.607120 ], [ -78.222656, 72.659588 ], [ -78.046875, 72.659588 ], [ -78.046875, 72.711903 ], [ -77.695312, 72.711903 ], [ -77.695312, 72.659588 ], [ -77.343750, 72.659588 ], [ -77.343750, 72.607120 ], [ -77.167969, 72.607120 ], [ -77.167969, 72.554498 ], [ -76.992188, 72.554498 ], [ -76.992188, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.448792 ], [ -76.464844, 72.448792 ], [ -76.464844, 72.395706 ], [ -76.289062, 72.395706 ], [ -76.289062, 72.342464 ], [ -75.937500, 72.342464 ], [ -75.937500, 72.289067 ], [ -75.761719, 72.289067 ], [ -75.761719, 72.235514 ], [ -75.585938, 72.235514 ], [ -75.585938, 72.181804 ], [ -75.410156, 72.181804 ], [ -75.410156, 72.127936 ], [ -75.234375, 72.127936 ], [ -75.234375, 72.073911 ], [ -75.058594, 72.073911 ], [ -75.058594, 71.965388 ], [ -74.882812, 71.965388 ], [ -74.882812, 71.910888 ], [ -74.707031, 71.910888 ], [ -74.707031, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.801410 ], [ -74.355469, 71.801410 ], [ -74.355469, 71.580532 ], [ -74.179688, 71.580532 ], [ -74.179688, 71.357067 ], [ -73.828125, 71.357067 ], [ -73.828125, 71.413177 ], [ -73.300781, 71.413177 ], [ -73.300781, 71.469124 ], [ -72.949219, 71.469124 ], [ -72.949219, 71.524909 ], [ -72.421875, 71.524909 ], [ -72.421875, 71.580532 ], [ -72.246094, 71.580532 ], [ -72.246094, 71.469124 ], [ -72.070312, 71.469124 ], [ -72.070312, 71.357067 ], [ -71.894531, 71.357067 ], [ -71.894531, 71.244356 ], [ -71.718750, 71.244356 ], [ -71.718750, 71.130988 ], [ -71.542969, 71.130988 ], [ -71.542969, 71.016960 ], [ -71.367188, 71.016960 ], [ -71.367188, 70.902268 ], [ -71.015625, 70.902268 ], [ -71.015625, 70.844673 ], [ -70.664062, 70.844673 ], [ -70.664062, 70.786910 ], [ -70.312500, 70.786910 ], [ -70.312500, 70.728979 ], [ -69.960938, 70.728979 ], [ -69.960938, 70.670881 ], [ -69.609375, 70.670881 ], [ -69.609375, 70.612614 ], [ -69.257812, 70.612614 ], [ -69.257812, 70.554179 ], [ -68.906250, 70.554179 ], [ -68.906250, 70.495574 ], [ -68.730469, 70.495574 ], [ -68.730469, 70.377854 ], [ -68.554688, 70.377854 ], [ -68.554688, 70.318738 ], [ -68.378906, 70.318738 ], [ -68.378906, 70.259452 ], [ -68.203125, 70.259452 ], [ -68.203125, 70.140364 ], [ -68.027344, 70.140364 ], [ -68.027344, 70.020587 ], [ -67.851562, 70.020587 ], [ -67.851562, 69.900118 ], [ -67.675781, 69.900118 ], [ -67.675781, 69.718107 ], [ -67.500000, 69.718107 ], [ -67.500000, 69.595890 ], [ -67.324219, 69.595890 ], [ -67.324219, 69.411242 ], [ -67.148438, 69.411242 ], [ -67.148438, 69.287257 ], [ -66.972656, 69.287257 ], [ -66.972656, 69.162558 ], [ -67.324219, 69.162558 ], [ -67.324219, 69.099940 ], [ -67.500000, 69.099940 ], [ -67.500000, 69.037142 ], [ -67.675781, 69.037142 ], [ -67.675781, 68.974164 ], [ -68.027344, 68.974164 ], [ -68.027344, 68.911005 ], [ -68.203125, 68.911005 ], [ -68.203125, 68.847665 ], [ -68.378906, 68.847665 ], [ -68.378906, 68.784144 ], [ -68.730469, 68.784144 ], [ -68.730469, 68.720441 ], [ -68.906250, 68.720441 ], [ -68.906250, 68.656555 ], [ -68.730469, 68.656555 ], [ -68.730469, 68.592487 ], [ -68.378906, 68.592487 ], [ -68.378906, 68.528235 ], [ -68.203125, 68.528235 ], [ -68.203125, 68.463800 ], [ -68.027344, 68.463800 ], [ -68.027344, 68.399180 ], [ -67.675781, 68.399180 ], [ -67.675781, 68.334376 ], [ -67.500000, 68.334376 ], [ -67.500000, 68.269387 ], [ -67.324219, 68.269387 ], [ -67.324219, 68.204212 ], [ -66.972656, 68.204212 ], [ -66.972656, 68.138852 ], [ -66.796875, 68.138852 ], [ -66.796875, 68.073305 ], [ -66.445312, 68.073305 ], [ -66.445312, 68.007571 ], [ -65.917969, 68.007571 ], [ -65.917969, 67.941650 ], [ -65.214844, 67.941650 ], [ -65.214844, 67.875541 ], [ -64.863281, 67.875541 ], [ -64.863281, 67.809245 ], [ -64.687500, 67.809245 ], [ -64.687500, 67.676085 ], [ -64.511719, 67.676085 ], [ -64.511719, 67.542167 ], [ -64.335938, 67.542167 ], [ -64.335938, 67.407487 ], [ -64.160156, 67.407487 ], [ -64.160156, 67.339861 ], [ -63.984375, 67.339861 ], [ -63.984375, 67.204032 ], [ -63.808594, 67.204032 ], [ -63.808594, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -62.753906, 66.930060 ], [ -62.753906, 66.861082 ], [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.160511 ], [ -66.445312, 66.160511 ], [ -66.445312, 66.231457 ], [ -66.621094, 66.231457 ], [ -66.621094, 66.372755 ], [ -66.796875, 66.372755 ], [ -66.796875, 66.443107 ], [ -66.972656, 66.443107 ], [ -66.972656, 66.372755 ], [ -67.675781, 66.372755 ], [ -67.675781, 66.302205 ], [ -68.027344, 66.302205 ], [ -68.027344, 66.231457 ], [ -68.203125, 66.231457 ], [ -68.203125, 66.160511 ], [ -74.179688, 66.160511 ], [ -74.179688, 66.231457 ], [ -74.003906, 66.231457 ], [ -74.003906, 66.443107 ], [ -73.828125, 66.443107 ], [ -73.828125, 66.583217 ], [ -73.652344, 66.583217 ], [ -73.652344, 66.722541 ], [ -73.476562, 66.722541 ], [ -73.476562, 66.861082 ], [ -73.300781, 66.861082 ], [ -73.300781, 66.998844 ], [ -73.125000, 66.998844 ], [ -73.125000, 67.135829 ], [ -72.949219, 67.135829 ], [ -72.949219, 67.272043 ], [ -72.773438, 67.272043 ], [ -72.773438, 67.542167 ], [ -72.949219, 67.542167 ], [ -72.949219, 67.742759 ], [ -73.125000, 67.742759 ], [ -73.125000, 67.875541 ], [ -73.300781, 67.875541 ], [ -73.300781, 68.007571 ], [ -73.476562, 68.007571 ], [ -73.476562, 68.073305 ], [ -73.652344, 68.073305 ], [ -73.652344, 68.138852 ], [ -73.828125, 68.138852 ], [ -73.828125, 68.204212 ], [ -74.003906, 68.204212 ], [ -74.003906, 68.269387 ], [ -74.179688, 68.269387 ], [ -74.179688, 68.334376 ], [ -74.355469, 68.334376 ], [ -74.355469, 68.399180 ], [ -74.531250, 68.399180 ], [ -74.531250, 68.463800 ], [ -74.707031, 68.463800 ], [ -74.707031, 68.528235 ], [ -74.882812, 68.528235 ], [ -74.882812, 68.592487 ], [ -75.234375, 68.592487 ], [ -75.234375, 68.656555 ], [ -75.585938, 68.656555 ], [ -75.585938, 68.720441 ], [ -76.113281, 68.720441 ], [ -76.113281, 68.784144 ], [ -76.464844, 68.784144 ], [ -76.464844, 68.847665 ], [ -76.816406, 68.847665 ], [ -76.816406, 68.974164 ], [ -76.640625, 68.974164 ], [ -76.640625, 69.037142 ], [ -76.464844, 69.037142 ], [ -76.464844, 69.099940 ], [ -76.289062, 69.099940 ], [ -76.289062, 69.162558 ], [ -76.464844, 69.162558 ], [ -76.464844, 69.287257 ], [ -76.640625, 69.287257 ], [ -76.640625, 69.411242 ], [ -76.816406, 69.411242 ], [ -76.816406, 69.472969 ], [ -76.992188, 69.472969 ], [ -76.992188, 69.595890 ], [ -77.167969, 69.595890 ], [ -77.167969, 69.718107 ], [ -77.343750, 69.718107 ], [ -77.343750, 69.778952 ], [ -77.871094, 69.778952 ], [ -77.871094, 69.839622 ], [ -78.398438, 69.839622 ], [ -78.398438, 69.900118 ], [ -78.574219, 69.900118 ], [ -78.574219, 70.020587 ], [ -78.750000, 70.020587 ], [ -78.750000, 70.080562 ], [ -78.925781, 70.080562 ], [ -78.925781, 70.140364 ], [ -79.277344, 70.140364 ], [ -79.277344, 70.020587 ], [ -79.453125, 70.020587 ], [ -79.453125, 69.900118 ], [ -79.980469, 69.900118 ], [ -79.980469, 69.839622 ], [ -80.859375, 69.839622 ], [ -80.859375, 69.778952 ], [ -81.914062, 69.778952 ], [ -81.914062, 69.839622 ], [ -82.792969, 69.839622 ], [ -82.792969, 69.900118 ], [ -83.847656, 69.900118 ], [ -83.847656, 69.960439 ], [ -84.726562, 69.960439 ], [ -84.726562, 70.020587 ], [ -85.429688, 70.020587 ], [ -85.429688, 70.080562 ], [ -85.957031, 70.080562 ], [ -85.957031, 70.140364 ], [ -86.484375, 70.140364 ], [ -86.484375, 70.199994 ], [ -87.011719, 70.199994 ], [ -87.011719, 70.259452 ], [ -87.539062, 70.259452 ], [ -87.539062, 70.318738 ], [ -88.066406, 70.318738 ], [ -88.066406, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.436799 ], [ -88.945312, 70.436799 ], [ -88.945312, 70.495574 ], [ -89.121094, 70.495574 ], [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.670881 ], [ -89.472656, 70.670881 ], [ -89.472656, 70.728979 ], [ -89.648438, 70.728979 ], [ -89.648438, 70.786910 ], [ -89.472656, 70.786910 ], [ -89.472656, 70.902268 ], [ -89.296875, 70.902268 ], [ -89.296875, 70.959697 ], [ -89.121094, 70.959697 ], [ -89.121094, 71.016960 ], [ -88.945312, 71.016960 ], [ -88.945312, 71.130988 ], [ -88.769531, 71.130988 ], [ -88.769531, 71.187754 ], [ -88.593750, 71.187754 ], [ -88.593750, 71.244356 ], [ -90.000000, 71.244356 ], [ -90.000000, 71.469124 ], [ -90.175781, 71.469124 ], [ -90.175781, 71.965388 ], [ -90.351562, 71.965388 ], [ -90.351562, 72.289067 ], [ -90.175781, 72.289067 ], [ -90.175781, 72.501722 ], [ -90.000000, 72.501722 ], [ -90.000000, 72.711903 ], [ -89.824219, 72.711903 ], [ -89.824219, 72.867930 ], [ -89.648438, 72.867930 ], [ -89.648438, 73.073844 ], [ -89.472656, 73.073844 ], [ -89.472656, 73.175897 ], [ -89.296875, 73.175897 ], [ -89.296875, 73.277353 ], [ -89.121094, 73.277353 ], [ -89.121094, 73.327858 ], [ -88.945312, 73.327858 ], [ -88.945312, 73.378215 ], [ -88.769531, 73.378215 ], [ -88.769531, 73.478485 ], [ -88.593750, 73.478485 ], [ -88.593750, 73.528399 ], [ -88.417969, 73.528399 ], [ -88.417969, 73.578167 ], [ -88.066406, 73.578167 ], [ -88.066406, 73.627789 ], [ -87.539062, 73.627789 ], [ -87.539062, 73.677264 ], [ -87.011719, 73.677264 ], [ -87.011719, 73.726595 ], [ -86.660156, 73.726595 ], [ -86.660156, 73.775780 ], [ -86.132812, 73.775780 ], [ -86.132812, 73.824820 ], [ -85.957031, 73.824820 ] ] ], [ [ [ -85.253906, 77.579959 ], [ -85.253906, 77.655346 ], [ -85.429688, 77.655346 ], [ -85.429688, 77.730282 ], [ -85.605469, 77.730282 ], [ -85.605469, 77.804771 ], [ -85.781250, 77.804771 ], [ -85.781250, 77.915669 ], [ -85.957031, 77.915669 ], [ -85.957031, 77.989049 ], [ -86.132812, 77.989049 ], [ -86.132812, 78.061989 ], [ -86.308594, 78.061989 ], [ -86.308594, 78.134493 ], [ -86.484375, 78.134493 ], [ -86.484375, 78.206563 ], [ -86.660156, 78.206563 ], [ -86.660156, 78.242436 ], [ -87.011719, 78.242436 ], [ -87.011719, 78.278201 ], [ -87.363281, 78.278201 ], [ -87.363281, 78.313860 ], [ -87.714844, 78.313860 ], [ -87.714844, 78.349411 ], [ -88.066406, 78.349411 ], [ -88.066406, 78.420193 ], [ -87.890625, 78.420193 ], [ -87.890625, 78.490552 ], [ -87.714844, 78.490552 ], [ -87.714844, 78.560488 ], [ -87.539062, 78.560488 ], [ -87.539062, 78.630006 ], [ -87.363281, 78.630006 ], [ -87.363281, 78.699106 ], [ -87.187500, 78.699106 ], [ -87.187500, 78.767792 ], [ -87.011719, 78.767792 ], [ -87.011719, 78.801980 ], [ -86.660156, 78.801980 ], [ -86.660156, 78.836065 ], [ -86.484375, 78.836065 ], [ -86.484375, 78.870048 ], [ -86.132812, 78.870048 ], [ -86.132812, 78.903929 ], [ -85.957031, 78.903929 ], [ -85.957031, 78.937708 ], [ -85.781250, 78.937708 ], [ -85.781250, 78.971386 ], [ -85.429688, 78.971386 ], [ -85.429688, 79.171335 ], [ -85.253906, 79.171335 ], [ -85.253906, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.138260 ], [ -75.937500, 79.138260 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.038437 ], [ -76.289062, 79.038437 ], [ -76.289062, 78.971386 ], [ -76.113281, 78.971386 ], [ -76.113281, 78.870048 ], [ -75.937500, 78.870048 ], [ -75.937500, 78.767792 ], [ -75.761719, 78.767792 ], [ -75.761719, 78.664608 ], [ -75.585938, 78.664608 ], [ -75.585938, 78.560488 ], [ -75.410156, 78.560488 ], [ -75.410156, 78.490552 ], [ -75.585938, 78.490552 ], [ -75.585938, 78.420193 ], [ -75.761719, 78.420193 ], [ -75.761719, 78.384855 ], [ -75.937500, 78.384855 ], [ -75.937500, 78.313860 ], [ -76.113281, 78.313860 ], [ -76.113281, 78.278201 ], [ -76.289062, 78.278201 ], [ -76.289062, 78.206563 ], [ -76.464844, 78.206563 ], [ -76.464844, 78.170582 ], [ -76.640625, 78.170582 ], [ -76.640625, 78.134493 ], [ -76.816406, 78.134493 ], [ -76.816406, 78.098296 ], [ -76.992188, 78.098296 ], [ -76.992188, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 78.025574 ], [ -77.519531, 78.025574 ], [ -77.519531, 77.989049 ], [ -77.695312, 77.989049 ], [ -77.695312, 77.952414 ], [ -77.871094, 77.952414 ], [ -77.871094, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.804771 ], [ -78.222656, 77.804771 ], [ -78.222656, 77.617709 ], [ -78.398438, 77.617709 ], [ -78.398438, 77.504119 ], [ -78.574219, 77.504119 ], [ -78.574219, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.427824 ], [ -78.925781, 77.427824 ], [ -78.925781, 77.389504 ], [ -79.101562, 77.389504 ], [ -79.101562, 77.351070 ], [ -79.277344, 77.351070 ], [ -79.277344, 77.312520 ], [ -79.453125, 77.312520 ], [ -79.453125, 77.273855 ], [ -79.628906, 77.273855 ], [ -79.628906, 77.235074 ], [ -79.804688, 77.235074 ], [ -79.804688, 77.118032 ], [ -79.628906, 77.118032 ], [ -79.628906, 76.999935 ], [ -78.750000, 76.999935 ], [ -78.750000, 77.039418 ], [ -78.046875, 77.039418 ], [ -78.046875, 76.760541 ], [ -78.222656, 76.760541 ], [ -78.222656, 76.720223 ], [ -78.398438, 76.720223 ], [ -78.398438, 76.679785 ], [ -78.574219, 76.679785 ], [ -78.574219, 76.639226 ], [ -78.750000, 76.639226 ], [ -78.750000, 76.598545 ], [ -78.925781, 76.598545 ], [ -78.925781, 76.557743 ], [ -79.101562, 76.557743 ], [ -79.101562, 76.516819 ], [ -79.277344, 76.516819 ], [ -79.277344, 76.475773 ], [ -79.453125, 76.475773 ], [ -79.453125, 76.434604 ], [ -79.628906, 76.434604 ], [ -79.628906, 76.393312 ], [ -79.804688, 76.393312 ], [ -79.804688, 76.351896 ], [ -79.980469, 76.351896 ], [ -79.980469, 76.310358 ], [ -80.156250, 76.310358 ], [ -80.156250, 76.268695 ], [ -80.332031, 76.268695 ], [ -80.332031, 76.226907 ], [ -80.507812, 76.226907 ], [ -80.507812, 76.184995 ], [ -81.035156, 76.184995 ], [ -81.035156, 76.226907 ], [ -81.386719, 76.226907 ], [ -81.386719, 76.268695 ], [ -81.738281, 76.268695 ], [ -81.738281, 76.310358 ], [ -82.089844, 76.310358 ], [ -82.089844, 76.351896 ], [ -82.441406, 76.351896 ], [ -82.441406, 76.393312 ], [ -82.792969, 76.393312 ], [ -82.792969, 76.434604 ], [ -83.144531, 76.434604 ], [ -83.144531, 76.475773 ], [ -83.496094, 76.475773 ], [ -83.496094, 76.434604 ], [ -84.199219, 76.434604 ], [ -84.199219, 76.393312 ], [ -84.902344, 76.393312 ], [ -84.902344, 76.351896 ], [ -85.605469, 76.351896 ], [ -85.605469, 76.310358 ], [ -86.484375, 76.310358 ], [ -86.484375, 76.351896 ], [ -87.011719, 76.351896 ], [ -87.011719, 76.393312 ], [ -87.539062, 76.393312 ], [ -87.539062, 76.434604 ], [ -88.769531, 76.434604 ], [ -88.769531, 76.475773 ], [ -89.648438, 76.475773 ], [ -89.648438, 76.960334 ], [ -89.472656, 76.960334 ], [ -89.472656, 76.999935 ], [ -89.121094, 76.999935 ], [ -89.121094, 77.039418 ], [ -88.769531, 77.039418 ], [ -88.769531, 77.078784 ], [ -88.593750, 77.078784 ], [ -88.593750, 77.118032 ], [ -88.242188, 77.118032 ], [ -88.242188, 77.157163 ], [ -87.890625, 77.157163 ], [ -87.890625, 77.312520 ], [ -88.066406, 77.312520 ], [ -88.066406, 77.542096 ], [ -88.242188, 77.542096 ], [ -88.242188, 77.767582 ], [ -88.417969, 77.767582 ], [ -88.417969, 77.915669 ], [ -88.066406, 77.915669 ], [ -88.066406, 77.952414 ], [ -87.539062, 77.952414 ], [ -87.539062, 77.915669 ], [ -87.187500, 77.915669 ], [ -87.187500, 77.878814 ], [ -87.011719, 77.878814 ], [ -87.011719, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.804771 ], [ -86.660156, 77.804771 ], [ -86.660156, 77.767582 ], [ -86.308594, 77.767582 ], [ -86.308594, 77.730282 ], [ -86.132812, 77.730282 ], [ -86.132812, 77.692870 ], [ -85.957031, 77.692870 ], [ -85.957031, 77.655346 ], [ -85.781250, 77.655346 ], [ -85.781250, 77.617709 ], [ -85.429688, 77.617709 ], [ -85.429688, 77.579959 ], [ -85.253906, 77.579959 ] ], [ [ -85.253906, 77.579959 ], [ -85.253906, 77.542096 ], [ -85.078125, 77.542096 ], [ -85.078125, 77.579959 ], [ -85.253906, 77.579959 ] ] ], [ [ [ -90.527344, 76.016094 ], [ -90.527344, 75.973553 ], [ -90.351562, 75.973553 ], [ -90.351562, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.888091 ], [ -89.824219, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -88.769531, 75.628632 ], [ -88.769531, 75.584937 ], [ -87.714844, 75.584937 ], [ -87.714844, 75.541113 ], [ -87.011719, 75.541113 ], [ -87.011719, 75.497157 ], [ -86.308594, 75.497157 ], [ -86.308594, 75.541113 ], [ -85.957031, 75.541113 ], [ -85.957031, 75.584937 ], [ -85.605469, 75.584937 ], [ -85.605469, 75.628632 ], [ -85.253906, 75.628632 ], [ -85.253906, 75.672197 ], [ -84.902344, 75.672197 ], [ -84.902344, 75.715633 ], [ -84.199219, 75.715633 ], [ -84.199219, 75.758940 ], [ -83.144531, 75.758940 ], [ -83.144531, 75.802118 ], [ -82.441406, 75.802118 ], [ -82.441406, 75.758940 ], [ -81.738281, 75.758940 ], [ -81.738281, 75.715633 ], [ -81.210938, 75.715633 ], [ -81.210938, 75.672197 ], [ -81.035156, 75.672197 ], [ -81.035156, 75.628632 ], [ -80.859375, 75.628632 ], [ -80.859375, 75.541113 ], [ -80.683594, 75.541113 ], [ -80.683594, 75.497157 ], [ -80.507812, 75.497157 ], [ -80.507812, 75.453071 ], [ -80.332031, 75.453071 ], [ -80.332031, 75.364506 ], [ -80.156250, 75.364506 ], [ -80.156250, 75.140778 ], [ -79.980469, 75.140778 ], [ -79.980469, 74.913708 ], [ -80.156250, 74.913708 ], [ -80.156250, 74.821934 ], [ -80.332031, 74.821934 ], [ -80.332031, 74.729615 ], [ -80.507812, 74.729615 ], [ -80.507812, 74.636748 ], [ -80.859375, 74.636748 ], [ -80.859375, 74.590108 ], [ -81.210938, 74.590108 ], [ -81.210938, 74.543330 ], [ -81.562500, 74.543330 ], [ -81.562500, 74.496413 ], [ -81.914062, 74.496413 ], [ -81.914062, 74.449358 ], [ -82.441406, 74.449358 ], [ -82.441406, 74.496413 ], [ -82.792969, 74.496413 ], [ -82.792969, 74.543330 ], [ -83.144531, 74.543330 ], [ -83.144531, 74.590108 ], [ -83.671875, 74.590108 ], [ -83.671875, 74.543330 ], [ -84.550781, 74.543330 ], [ -84.550781, 74.496413 ], [ -85.605469, 74.496413 ], [ -85.605469, 74.449358 ], [ -87.011719, 74.449358 ], [ -87.011719, 74.402163 ], [ -88.593750, 74.402163 ], [ -88.593750, 74.449358 ], [ -89.121094, 74.449358 ], [ -89.121094, 74.496413 ], [ -89.648438, 74.496413 ], [ -89.648438, 74.543330 ], [ -90.175781, 74.543330 ], [ -90.175781, 74.590108 ], [ -90.527344, 74.590108 ], [ -90.527344, 74.636748 ], [ -90.878906, 74.636748 ], [ -90.878906, 76.016094 ], [ -90.527344, 76.016094 ] ] ], [ [ [ -75.937500, 68.334376 ], [ -75.937500, 68.269387 ], [ -75.761719, 68.269387 ], [ -75.761719, 68.204212 ], [ -75.585938, 68.204212 ], [ -75.585938, 68.138852 ], [ -75.410156, 68.138852 ], [ -75.410156, 68.073305 ], [ -75.234375, 68.073305 ], [ -75.234375, 67.407487 ], [ -75.410156, 67.407487 ], [ -75.410156, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.272043 ], [ -75.761719, 67.272043 ], [ -75.761719, 67.204032 ], [ -76.289062, 67.204032 ], [ -76.289062, 67.135829 ], [ -76.992188, 67.135829 ], [ -76.992188, 67.204032 ], [ -77.167969, 67.204032 ], [ -77.167969, 67.474922 ], [ -77.343750, 67.474922 ], [ -77.343750, 67.676085 ], [ -77.167969, 67.676085 ], [ -77.167969, 67.875541 ], [ -76.992188, 67.875541 ], [ -76.992188, 68.073305 ], [ -76.816406, 68.073305 ], [ -76.816406, 68.204212 ], [ -76.464844, 68.204212 ], [ -76.464844, 68.269387 ], [ -76.113281, 68.269387 ], [ -76.113281, 68.334376 ], [ -75.937500, 68.334376 ] ] ], [ [ [ -85.957031, 79.335219 ], [ -85.957031, 79.302640 ], [ -86.132812, 79.302640 ], [ -86.132812, 79.269962 ], [ -86.308594, 79.269962 ], [ -86.308594, 79.237185 ], [ -86.484375, 79.237185 ], [ -86.484375, 79.204309 ], [ -86.660156, 79.204309 ], [ -86.660156, 79.138260 ], [ -86.835938, 79.138260 ], [ -86.835938, 79.105086 ], [ -87.011719, 79.105086 ], [ -87.011719, 79.071812 ], [ -87.187500, 79.071812 ], [ -87.187500, 79.038437 ], [ -87.363281, 79.038437 ], [ -87.363281, 78.971386 ], [ -87.539062, 78.971386 ], [ -87.539062, 78.903929 ], [ -87.714844, 78.903929 ], [ -87.714844, 78.836065 ], [ -87.890625, 78.836065 ], [ -87.890625, 78.767792 ], [ -88.066406, 78.767792 ], [ -88.066406, 78.699106 ], [ -88.242188, 78.699106 ], [ -88.242188, 78.630006 ], [ -88.417969, 78.630006 ], [ -88.417969, 78.560488 ], [ -88.593750, 78.560488 ], [ -88.593750, 78.490552 ], [ -88.769531, 78.490552 ], [ -88.769531, 78.420193 ], [ -88.945312, 78.420193 ], [ -88.945312, 78.349411 ], [ -89.121094, 78.349411 ], [ -89.121094, 78.313860 ], [ -89.472656, 78.313860 ], [ -89.472656, 78.278201 ], [ -90.351562, 78.278201 ], [ -90.351562, 78.242436 ], [ -90.878906, 78.242436 ], [ -90.878906, 79.335219 ], [ -85.957031, 79.335219 ] ] ], [ [ [ -79.980469, 73.775780 ], [ -79.980469, 73.726595 ], [ -78.925781, 73.726595 ], [ -78.925781, 73.677264 ], [ -78.222656, 73.677264 ], [ -78.222656, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.578167 ], [ -77.871094, 73.578167 ], [ -77.871094, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.478485 ], [ -77.519531, 73.478485 ], [ -77.519531, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.327858 ], [ -77.167969, 73.327858 ], [ -77.167969, 73.277353 ], [ -76.992188, 73.277353 ], [ -76.992188, 73.226700 ], [ -76.816406, 73.226700 ], [ -76.816406, 73.175897 ], [ -76.640625, 73.175897 ], [ -76.640625, 73.124945 ], [ -76.464844, 73.124945 ], [ -76.464844, 72.971189 ], [ -76.289062, 72.971189 ], [ -76.289062, 72.867930 ], [ -78.046875, 72.867930 ], [ -78.046875, 72.919635 ], [ -78.574219, 72.919635 ], [ -78.574219, 72.867930 ], [ -78.925781, 72.867930 ], [ -78.925781, 72.816074 ], [ -79.277344, 72.816074 ], [ -79.277344, 72.764065 ], [ -79.804688, 72.764065 ], [ -79.804688, 72.816074 ], [ -79.980469, 72.816074 ], [ -79.980469, 72.919635 ], [ -80.156250, 72.919635 ], [ -80.156250, 72.971189 ], [ -80.332031, 72.971189 ], [ -80.332031, 73.073844 ], [ -80.507812, 73.073844 ], [ -80.507812, 73.175897 ], [ -80.683594, 73.175897 ], [ -80.683594, 73.226700 ], [ -80.859375, 73.226700 ], [ -80.859375, 73.327858 ], [ -81.035156, 73.327858 ], [ -81.035156, 73.528399 ], [ -80.859375, 73.528399 ], [ -80.859375, 73.726595 ], [ -80.507812, 73.726595 ], [ -80.507812, 73.775780 ], [ -79.980469, 73.775780 ] ] ], [ [ [ -90.527344, 73.873717 ], [ -90.527344, 73.824820 ], [ -90.703125, 73.824820 ], [ -90.703125, 73.726595 ], [ -90.878906, 73.726595 ], [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.679688, 70.612614 ], [ -51.679688, 70.670881 ], [ -51.855469, 70.670881 ], [ -51.855469, 70.728979 ], [ -52.031250, 70.728979 ], [ -52.031250, 70.786910 ], [ -52.207031, 70.786910 ], [ -52.207031, 70.902268 ], [ -52.382812, 70.902268 ], [ -52.382812, 70.959697 ], [ -52.558594, 70.959697 ], [ -52.558594, 71.016960 ], [ -52.734375, 71.016960 ], [ -52.734375, 71.074056 ], [ -52.910156, 71.074056 ], [ -52.910156, 71.130988 ], [ -53.085938, 71.130988 ], [ -53.085938, 71.187754 ], [ -53.261719, 71.187754 ], [ -53.261719, 71.244356 ], [ -53.437500, 71.244356 ], [ -53.437500, 71.357067 ], [ -53.613281, 71.357067 ], [ -53.613281, 71.413177 ], [ -53.789062, 71.413177 ], [ -53.789062, 71.469124 ], [ -53.964844, 71.469124 ], [ -53.964844, 71.524909 ], [ -54.140625, 71.524909 ], [ -54.140625, 71.469124 ], [ -54.667969, 71.469124 ], [ -54.667969, 71.413177 ], [ -55.195312, 71.413177 ], [ -55.195312, 71.469124 ], [ -55.371094, 71.469124 ], [ -55.371094, 71.524909 ], [ -55.722656, 71.524909 ], [ -55.722656, 71.580532 ], [ -55.898438, 71.580532 ], [ -55.898438, 71.691293 ], [ -55.722656, 71.691293 ], [ -55.722656, 71.801410 ], [ -55.546875, 71.801410 ], [ -55.546875, 71.965388 ], [ -55.371094, 71.965388 ], [ -55.371094, 72.127936 ], [ -55.195312, 72.127936 ], [ -55.195312, 72.235514 ], [ -55.019531, 72.235514 ], [ -55.019531, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.501722 ], [ -54.667969, 72.501722 ], [ -54.667969, 72.607120 ], [ -54.843750, 72.607120 ], [ -54.843750, 72.711903 ], [ -55.019531, 72.711903 ], [ -55.019531, 72.816074 ], [ -55.195312, 72.816074 ], [ -55.195312, 72.919635 ], [ -55.371094, 72.919635 ], [ -55.371094, 73.022592 ], [ -55.546875, 73.022592 ], [ -55.546875, 73.175897 ], [ -55.722656, 73.175897 ], [ -55.722656, 73.378215 ], [ -55.898438, 73.378215 ], [ -55.898438, 73.528399 ], [ -56.074219, 73.528399 ], [ -56.074219, 73.677264 ], [ -56.250000, 73.677264 ], [ -56.250000, 73.824820 ], [ -56.425781, 73.824820 ], [ -56.425781, 74.019543 ], [ -56.601562, 74.019543 ], [ -56.601562, 74.164085 ], [ -56.777344, 74.164085 ], [ -56.777344, 74.307353 ], [ -56.953125, 74.307353 ], [ -56.953125, 74.496413 ], [ -57.128906, 74.496413 ], [ -57.128906, 74.636748 ], [ -57.304688, 74.636748 ], [ -57.304688, 74.729615 ], [ -57.480469, 74.729615 ], [ -57.480469, 74.775843 ], [ -57.656250, 74.775843 ], [ -57.656250, 74.821934 ], [ -57.832031, 74.821934 ], [ -57.832031, 74.913708 ], [ -58.007812, 74.913708 ], [ -58.007812, 74.959392 ], [ -58.183594, 74.959392 ], [ -58.183594, 75.004940 ], [ -58.359375, 75.004940 ], [ -58.359375, 75.050354 ], [ -58.535156, 75.050354 ], [ -58.535156, 75.497157 ], [ -58.710938, 75.497157 ], [ -58.710938, 75.541113 ], [ -58.886719, 75.541113 ], [ -58.886719, 75.584937 ], [ -59.062500, 75.584937 ], [ -59.062500, 75.628632 ], [ -59.414062, 75.628632 ], [ -59.414062, 75.672197 ], [ -59.589844, 75.672197 ], [ -59.589844, 75.715633 ], [ -59.765625, 75.715633 ], [ -59.765625, 75.758940 ], [ -59.941406, 75.758940 ], [ -59.941406, 75.802118 ], [ -60.117188, 75.802118 ], [ -60.117188, 75.845169 ], [ -60.292969, 75.845169 ], [ -60.292969, 75.888091 ], [ -60.468750, 75.888091 ], [ -60.468750, 75.930885 ], [ -60.820312, 75.930885 ], [ -60.820312, 75.973553 ], [ -60.996094, 75.973553 ], [ -60.996094, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.058508 ], [ -61.347656, 76.058508 ], [ -61.347656, 76.100796 ], [ -62.050781, 76.100796 ], [ -62.050781, 76.142958 ], [ -63.105469, 76.142958 ], [ -63.105469, 76.184995 ], [ -64.687500, 76.184995 ], [ -64.687500, 76.142958 ], [ -66.621094, 76.142958 ], [ -66.621094, 76.100796 ], [ -67.851562, 76.100796 ], [ -67.851562, 76.058508 ], [ -68.730469, 76.058508 ], [ -68.730469, 76.142958 ], [ -68.906250, 76.142958 ], [ -68.906250, 76.184995 ], [ -69.082031, 76.184995 ], [ -69.082031, 76.226907 ], [ -69.257812, 76.226907 ], [ -69.257812, 76.310358 ], [ -69.433594, 76.310358 ], [ -69.433594, 76.351896 ], [ -69.609375, 76.351896 ], [ -69.609375, 76.393312 ], [ -69.785156, 76.393312 ], [ -69.785156, 76.475773 ], [ -69.960938, 76.475773 ], [ -69.960938, 76.516819 ], [ -70.136719, 76.516819 ], [ -70.136719, 76.598545 ], [ -70.312500, 76.598545 ], [ -70.312500, 76.639226 ], [ -70.488281, 76.639226 ], [ -70.488281, 76.720223 ], [ -70.664062, 76.720223 ], [ -70.664062, 76.760541 ], [ -70.839844, 76.760541 ], [ -70.839844, 76.840816 ], [ -71.015625, 76.840816 ], [ -71.015625, 76.880775 ], [ -71.191406, 76.880775 ], [ -71.191406, 76.960334 ], [ -71.367188, 76.960334 ], [ -71.367188, 76.999935 ], [ -71.191406, 76.999935 ], [ -71.191406, 77.039418 ], [ -70.839844, 77.039418 ], [ -70.839844, 77.078784 ], [ -70.488281, 77.078784 ], [ -70.488281, 77.118032 ], [ -70.136719, 77.118032 ], [ -70.136719, 77.157163 ], [ -69.785156, 77.157163 ], [ -69.785156, 77.196176 ], [ -69.433594, 77.196176 ], [ -69.433594, 77.235074 ], [ -69.082031, 77.235074 ], [ -69.082031, 77.273855 ], [ -68.730469, 77.273855 ], [ -68.730469, 77.312520 ], [ -68.203125, 77.312520 ], [ -68.203125, 77.351070 ], [ -67.148438, 77.351070 ], [ -67.148438, 77.389504 ], [ -67.324219, 77.389504 ], [ -67.324219, 77.427824 ], [ -68.027344, 77.427824 ], [ -68.027344, 77.466028 ], [ -68.730469, 77.466028 ], [ -68.730469, 77.504119 ], [ -69.433594, 77.504119 ], [ -69.433594, 77.542096 ], [ -70.136719, 77.542096 ], [ -70.136719, 77.579959 ], [ -70.839844, 77.579959 ], [ -70.839844, 77.617709 ], [ -71.191406, 77.617709 ], [ -71.191406, 77.655346 ], [ -71.367188, 77.655346 ], [ -71.367188, 77.692870 ], [ -71.542969, 77.692870 ], [ -71.542969, 77.730282 ], [ -71.718750, 77.730282 ], [ -71.718750, 77.767582 ], [ -71.894531, 77.767582 ], [ -71.894531, 77.804771 ], [ -72.070312, 77.804771 ], [ -72.070312, 77.841848 ], [ -72.421875, 77.841848 ], [ -72.421875, 77.878814 ], [ -72.597656, 77.878814 ], [ -72.597656, 77.915669 ], [ -72.773438, 77.915669 ], [ -72.773438, 77.952414 ], [ -72.949219, 77.952414 ], [ -72.949219, 77.989049 ], [ -73.125000, 77.989049 ], [ -73.125000, 78.025574 ], [ -73.300781, 78.025574 ], [ -73.300781, 78.242436 ], [ -73.125000, 78.242436 ], [ -73.125000, 78.420193 ], [ -72.949219, 78.420193 ], [ -72.949219, 78.455425 ], [ -72.597656, 78.455425 ], [ -72.597656, 78.490552 ], [ -72.421875, 78.490552 ], [ -72.421875, 78.525573 ], [ -72.070312, 78.525573 ], [ -72.070312, 78.560488 ], [ -71.894531, 78.560488 ], [ -71.894531, 78.595299 ], [ -71.542969, 78.595299 ], [ -71.542969, 78.630006 ], [ -71.367188, 78.630006 ], [ -71.367188, 78.664608 ], [ -71.015625, 78.664608 ], [ -71.015625, 78.699106 ], [ -70.839844, 78.699106 ], [ -70.839844, 78.733501 ], [ -70.488281, 78.733501 ], [ -70.488281, 78.767792 ], [ -70.312500, 78.767792 ], [ -70.312500, 78.801980 ], [ -69.960938, 78.801980 ], [ -69.960938, 78.836065 ], [ -69.785156, 78.836065 ], [ -69.785156, 78.870048 ], [ -69.433594, 78.870048 ], [ -69.433594, 78.903929 ], [ -69.257812, 78.903929 ], [ -69.257812, 78.937708 ], [ -68.906250, 78.937708 ], [ -68.906250, 78.971386 ], [ -68.730469, 78.971386 ], [ -68.730469, 79.004962 ], [ -68.378906, 79.004962 ], [ -68.378906, 79.038437 ], [ -68.203125, 79.038437 ], [ -68.203125, 79.071812 ], [ -67.851562, 79.071812 ], [ -67.851562, 79.105086 ], [ -67.675781, 79.105086 ], [ -67.675781, 79.138260 ], [ -67.500000, 79.138260 ], [ -67.500000, 79.171335 ], [ -67.148438, 79.171335 ], [ -67.148438, 79.204309 ], [ -66.972656, 79.204309 ], [ -66.972656, 79.237185 ], [ -66.621094, 79.237185 ], [ -66.621094, 79.269962 ], [ -66.445312, 79.269962 ], [ -66.445312, 79.302640 ], [ -66.093750, 79.302640 ], [ -66.093750, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.613281, 66.160511 ], [ -53.613281, 66.302205 ], [ -53.437500, 66.302205 ], [ -53.437500, 66.652977 ], [ -53.261719, 66.652977 ], [ -53.261719, 66.861082 ], [ -53.437500, 66.861082 ], [ -53.437500, 66.930060 ], [ -53.613281, 66.930060 ], [ -53.613281, 67.067433 ], [ -53.789062, 67.067433 ], [ -53.789062, 67.135829 ], [ -53.964844, 67.135829 ], [ -53.964844, 67.272043 ], [ -53.789062, 67.272043 ], [ -53.789062, 67.474922 ], [ -53.613281, 67.474922 ], [ -53.613281, 67.676085 ], [ -53.437500, 67.676085 ], [ -53.437500, 67.809245 ], [ -53.261719, 67.809245 ], [ -53.261719, 68.007571 ], [ -53.085938, 68.007571 ], [ -53.085938, 68.204212 ], [ -52.910156, 68.204212 ], [ -52.910156, 68.334376 ], [ -52.734375, 68.334376 ], [ -52.734375, 68.399180 ], [ -52.382812, 68.399180 ], [ -52.382812, 68.463800 ], [ -52.207031, 68.463800 ], [ -52.207031, 68.528235 ], [ -52.031250, 68.528235 ], [ -52.031250, 68.592487 ], [ -51.679688, 68.592487 ], [ -51.679688, 68.656555 ], [ -51.503906, 68.656555 ], [ -51.503906, 68.784144 ], [ -51.328125, 68.784144 ], [ -51.328125, 69.037142 ], [ -51.152344, 69.037142 ], [ -51.152344, 69.349339 ], [ -50.976562, 69.349339 ], [ -50.976562, 69.718107 ], [ -50.800781, 69.718107 ], [ -50.800781, 69.839622 ], [ -51.152344, 69.839622 ], [ -51.152344, 69.778952 ], [ -51.328125, 69.778952 ], [ -51.328125, 69.718107 ], [ -51.503906, 69.718107 ], [ -51.503906, 69.657086 ], [ -51.855469, 69.657086 ], [ -51.855469, 69.595890 ], [ -52.031250, 69.595890 ], [ -52.031250, 69.534518 ], [ -52.207031, 69.534518 ], [ -52.207031, 69.472969 ], [ -52.382812, 69.472969 ], [ -52.382812, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.349339 ], [ -53.085938, 69.349339 ], [ -53.085938, 69.287257 ], [ -53.613281, 69.287257 ], [ -53.613281, 69.349339 ], [ -53.964844, 69.349339 ], [ -53.964844, 69.411242 ], [ -54.140625, 69.411242 ], [ -54.140625, 69.472969 ], [ -54.316406, 69.472969 ], [ -54.316406, 69.534518 ], [ -54.667969, 69.534518 ], [ -54.667969, 70.436799 ], [ -54.492188, 70.436799 ], [ -54.492188, 70.670881 ], [ -54.316406, 70.670881 ], [ -54.316406, 70.844673 ], [ -53.261719, 70.844673 ], [ -53.261719, 70.786910 ], [ -52.910156, 70.786910 ], [ -52.910156, 70.728979 ], [ -52.558594, 70.728979 ], [ -52.558594, 70.670881 ], [ -52.031250, 70.670881 ], [ -52.031250, 70.612614 ], [ -51.679688, 70.612614 ] ], [ [ -51.679688, 70.612614 ], [ -51.679688, 70.554179 ], [ -51.503906, 70.554179 ], [ -51.503906, 70.612614 ], [ -51.679688, 70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.855469, 70.670881 ], [ -51.855469, 70.728979 ], [ -52.031250, 70.728979 ], [ -52.031250, 70.786910 ], [ -52.207031, 70.786910 ], [ -52.207031, 70.844673 ], [ -52.382812, 70.844673 ], [ -52.382812, 70.959697 ], [ -52.558594, 70.959697 ], [ -52.558594, 71.016960 ], [ -52.734375, 71.016960 ], [ -52.734375, 71.074056 ], [ -52.910156, 71.074056 ], [ -52.910156, 71.130988 ], [ -53.085938, 71.130988 ], [ -53.085938, 71.187754 ], [ -53.261719, 71.187754 ], [ -53.261719, 71.244356 ], [ -53.437500, 71.244356 ], [ -53.437500, 71.300793 ], [ -53.613281, 71.300793 ], [ -53.613281, 71.413177 ], [ -53.789062, 71.413177 ], [ -53.789062, 71.469124 ], [ -53.964844, 71.469124 ], [ -53.964844, 71.524909 ], [ -54.492188, 71.524909 ], [ -54.492188, 71.469124 ], [ -54.843750, 71.469124 ], [ -54.843750, 71.413177 ], [ -55.195312, 71.413177 ], [ -55.195312, 71.469124 ], [ -55.371094, 71.469124 ], [ -55.371094, 71.524909 ], [ -55.546875, 71.524909 ], [ -55.546875, 71.580532 ], [ -55.722656, 71.580532 ], [ -55.722656, 71.635993 ], [ -55.898438, 71.635993 ], [ -55.898438, 71.746432 ], [ -55.722656, 71.746432 ], [ -55.722656, 71.910888 ], [ -55.546875, 71.910888 ], [ -55.546875, 72.073911 ], [ -55.371094, 72.073911 ], [ -55.371094, 72.181804 ], [ -55.195312, 72.181804 ], [ -55.195312, 72.342464 ], [ -55.019531, 72.342464 ], [ -55.019531, 72.501722 ], [ -54.843750, 72.501722 ], [ -54.843750, 72.659588 ], [ -55.019531, 72.659588 ], [ -55.019531, 72.764065 ], [ -55.195312, 72.764065 ], [ -55.195312, 72.867930 ], [ -55.371094, 72.867930 ], [ -55.371094, 73.022592 ], [ -55.546875, 73.022592 ], [ -55.546875, 73.175897 ], [ -55.722656, 73.175897 ], [ -55.722656, 73.327858 ], [ -55.898438, 73.327858 ], [ -55.898438, 73.428424 ], [ -56.074219, 73.428424 ], [ -56.074219, 73.578167 ], [ -56.250000, 73.578167 ], [ -56.250000, 73.726595 ], [ -56.425781, 73.726595 ], [ -56.425781, 73.873717 ], [ -56.601562, 73.873717 ], [ -56.601562, 74.019543 ], [ -56.777344, 74.019543 ], [ -56.777344, 74.211983 ], [ -56.953125, 74.211983 ], [ -56.953125, 74.354828 ], [ -57.128906, 74.354828 ], [ -57.128906, 74.496413 ], [ -57.304688, 74.496413 ], [ -57.304688, 74.636748 ], [ -57.480469, 74.636748 ], [ -57.480469, 74.729615 ], [ -57.656250, 74.729615 ], [ -57.656250, 74.775843 ], [ -57.832031, 74.775843 ], [ -57.832031, 74.867889 ], [ -58.007812, 74.867889 ], [ -58.007812, 74.913708 ], [ -58.183594, 74.913708 ], [ -58.183594, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.050354 ], [ -58.535156, 75.050354 ], [ -58.535156, 75.095633 ], [ -58.710938, 75.095633 ], [ -58.710938, 75.541113 ], [ -58.886719, 75.541113 ], [ -58.886719, 75.584937 ], [ -59.062500, 75.584937 ], [ -59.062500, 75.628632 ], [ -59.238281, 75.628632 ], [ -59.238281, 75.672197 ], [ -59.414062, 75.672197 ], [ -59.414062, 75.715633 ], [ -59.589844, 75.715633 ], [ -59.589844, 75.758940 ], [ -59.765625, 75.758940 ], [ -59.765625, 75.802118 ], [ -59.941406, 75.802118 ], [ -59.941406, 75.845169 ], [ -60.292969, 75.845169 ], [ -60.292969, 75.888091 ], [ -60.468750, 75.888091 ], [ -60.468750, 75.930885 ], [ -60.644531, 75.930885 ], [ -60.644531, 75.973553 ], [ -60.820312, 75.973553 ], [ -60.820312, 76.016094 ], [ -60.996094, 76.016094 ], [ -60.996094, 76.058508 ], [ -61.171875, 76.058508 ], [ -61.171875, 76.100796 ], [ -61.347656, 76.100796 ], [ -61.347656, 76.142958 ], [ -62.578125, 76.142958 ], [ -62.578125, 76.184995 ], [ -64.687500, 76.184995 ], [ -64.687500, 76.142958 ], [ -67.148438, 76.142958 ], [ -67.148438, 76.100796 ], [ -68.730469, 76.100796 ], [ -68.730469, 76.142958 ], [ -68.906250, 76.142958 ], [ -68.906250, 76.184995 ], [ -69.082031, 76.184995 ], [ -69.082031, 76.226907 ], [ -69.257812, 76.226907 ], [ -69.257812, 76.268695 ], [ -69.433594, 76.268695 ], [ -69.433594, 76.310358 ], [ -69.609375, 76.310358 ], [ -69.609375, 76.351896 ], [ -69.785156, 76.351896 ], [ -69.785156, 76.393312 ], [ -69.960938, 76.393312 ], [ -69.960938, 76.475773 ], [ -70.136719, 76.475773 ], [ -70.136719, 76.557743 ], [ -70.312500, 76.557743 ], [ -70.312500, 76.598545 ], [ -70.488281, 76.598545 ], [ -70.488281, 76.679785 ], [ -70.664062, 76.679785 ], [ -70.664062, 76.720223 ], [ -70.839844, 76.720223 ], [ -70.839844, 76.800739 ], [ -71.015625, 76.800739 ], [ -71.015625, 76.880775 ], [ -71.191406, 76.880775 ], [ -71.191406, 76.920614 ], [ -71.367188, 76.920614 ], [ -71.367188, 76.999935 ], [ -71.542969, 76.999935 ], [ -71.542969, 77.039418 ], [ -71.367188, 77.039418 ], [ -71.367188, 77.078784 ], [ -71.015625, 77.078784 ], [ -71.015625, 77.118032 ], [ -70.664062, 77.118032 ], [ -70.664062, 77.157163 ], [ -70.312500, 77.157163 ], [ -70.312500, 77.196176 ], [ -69.960938, 77.196176 ], [ -69.960938, 77.235074 ], [ -69.609375, 77.235074 ], [ -69.609375, 77.273855 ], [ -69.257812, 77.273855 ], [ -69.257812, 77.312520 ], [ -68.906250, 77.312520 ], [ -68.906250, 77.351070 ], [ -67.675781, 77.351070 ], [ -67.675781, 77.389504 ], [ -67.148438, 77.389504 ], [ -67.148438, 77.427824 ], [ -67.851562, 77.427824 ], [ -67.851562, 77.466028 ], [ -68.378906, 77.466028 ], [ -68.378906, 77.504119 ], [ -69.082031, 77.504119 ], [ -69.082031, 77.542096 ], [ -69.785156, 77.542096 ], [ -69.785156, 77.579959 ], [ -70.312500, 77.579959 ], [ -70.312500, 77.617709 ], [ -71.015625, 77.617709 ], [ -71.015625, 77.655346 ], [ -71.367188, 77.655346 ], [ -71.367188, 77.692870 ], [ -71.542969, 77.692870 ], [ -71.542969, 77.730282 ], [ -71.718750, 77.730282 ], [ -71.718750, 77.767582 ], [ -71.894531, 77.767582 ], [ -71.894531, 77.804771 ], [ -72.070312, 77.804771 ], [ -72.070312, 77.841848 ], [ -72.421875, 77.841848 ], [ -72.421875, 77.878814 ], [ -72.597656, 77.878814 ], [ -72.597656, 77.915669 ], [ -72.773438, 77.915669 ], [ -72.773438, 77.952414 ], [ -72.949219, 77.952414 ], [ -72.949219, 77.989049 ], [ -73.125000, 77.989049 ], [ -73.125000, 78.025574 ], [ -73.300781, 78.025574 ], [ -73.300781, 78.455425 ], [ -73.125000, 78.455425 ], [ -73.125000, 78.490552 ], [ -72.773438, 78.490552 ], [ -72.773438, 78.525573 ], [ -72.597656, 78.525573 ], [ -72.597656, 78.560488 ], [ -72.246094, 78.560488 ], [ -72.246094, 78.595299 ], [ -71.894531, 78.595299 ], [ -71.894531, 78.630006 ], [ -71.718750, 78.630006 ], [ -71.718750, 78.664608 ], [ -71.367188, 78.664608 ], [ -71.367188, 78.699106 ], [ -71.191406, 78.699106 ], [ -71.191406, 78.733501 ], [ -70.839844, 78.733501 ], [ -70.839844, 78.767792 ], [ -70.664062, 78.767792 ], [ -70.664062, 78.801980 ], [ -70.312500, 78.801980 ], [ -70.312500, 78.836065 ], [ -69.960938, 78.836065 ], [ -69.960938, 78.870048 ], [ -69.785156, 78.870048 ], [ -69.785156, 78.903929 ], [ -69.433594, 78.903929 ], [ -69.433594, 78.937708 ], [ -69.257812, 78.937708 ], [ -69.257812, 78.971386 ], [ -68.906250, 78.971386 ], [ -68.906250, 79.004962 ], [ -68.730469, 79.004962 ], [ -68.730469, 79.038437 ], [ -68.378906, 79.038437 ], [ -68.378906, 79.071812 ], [ -68.203125, 79.071812 ], [ -68.203125, 79.105086 ], [ -67.851562, 79.105086 ], [ -67.851562, 79.138260 ], [ -67.675781, 79.138260 ], [ -67.675781, 79.171335 ], [ -67.324219, 79.171335 ], [ -67.324219, 79.204309 ], [ -67.148438, 79.204309 ], [ -67.148438, 79.237185 ], [ -66.796875, 79.237185 ], [ -66.796875, 79.269962 ], [ -66.621094, 79.269962 ], [ -66.621094, 79.302640 ], [ -66.269531, 79.302640 ], [ -66.269531, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.789062, 66.160511 ], [ -53.789062, 66.302205 ], [ -53.613281, 66.302205 ], [ -53.613281, 66.652977 ], [ -53.437500, 66.652977 ], [ -53.437500, 66.861082 ], [ -53.613281, 66.861082 ], [ -53.613281, 66.930060 ], [ -53.789062, 66.930060 ], [ -53.789062, 67.067433 ], [ -53.964844, 67.067433 ], [ -53.964844, 67.135829 ], [ -54.140625, 67.135829 ], [ -54.140625, 67.272043 ], [ -53.964844, 67.272043 ], [ -53.964844, 67.474922 ], [ -53.789062, 67.474922 ], [ -53.789062, 67.676085 ], [ -53.613281, 67.676085 ], [ -53.613281, 67.875541 ], [ -53.437500, 67.875541 ], [ -53.437500, 68.073305 ], [ -53.261719, 68.073305 ], [ -53.261719, 68.269387 ], [ -53.085938, 68.269387 ], [ -53.085938, 68.399180 ], [ -52.910156, 68.399180 ], [ -52.910156, 68.463800 ], [ -52.558594, 68.463800 ], [ -52.558594, 68.528235 ], [ -52.382812, 68.528235 ], [ -52.382812, 68.592487 ], [ -52.031250, 68.592487 ], [ -52.031250, 68.656555 ], [ -51.855469, 68.656555 ], [ -51.855469, 68.720441 ], [ -51.503906, 68.720441 ], [ -51.503906, 68.847665 ], [ -51.328125, 68.847665 ], [ -51.328125, 69.037142 ], [ -51.152344, 69.037142 ], [ -51.152344, 69.534518 ], [ -50.976562, 69.534518 ], [ -50.976562, 69.900118 ], [ -51.152344, 69.900118 ], [ -51.152344, 69.839622 ], [ -51.328125, 69.839622 ], [ -51.328125, 69.778952 ], [ -51.503906, 69.778952 ], [ -51.503906, 69.718107 ], [ -51.679688, 69.718107 ], [ -51.679688, 69.657086 ], [ -51.855469, 69.657086 ], [ -51.855469, 69.595890 ], [ -52.031250, 69.595890 ], [ -52.031250, 69.534518 ], [ -52.382812, 69.534518 ], [ -52.382812, 69.472969 ], [ -52.558594, 69.472969 ], [ -52.558594, 69.411242 ], [ -52.910156, 69.411242 ], [ -52.910156, 69.349339 ], [ -53.261719, 69.349339 ], [ -53.261719, 69.287257 ], [ -53.789062, 69.287257 ], [ -53.789062, 69.349339 ], [ -53.964844, 69.349339 ], [ -53.964844, 69.411242 ], [ -54.140625, 69.411242 ], [ -54.140625, 69.472969 ], [ -54.492188, 69.472969 ], [ -54.492188, 69.534518 ], [ -54.667969, 69.534518 ], [ -54.667969, 69.595890 ], [ -54.843750, 69.595890 ], [ -54.843750, 70.436799 ], [ -54.667969, 70.436799 ], [ -54.667969, 70.670881 ], [ -54.492188, 70.670881 ], [ -54.492188, 70.844673 ], [ -53.261719, 70.844673 ], [ -53.261719, 70.786910 ], [ -52.734375, 70.786910 ], [ -52.734375, 70.728979 ], [ -52.382812, 70.728979 ], [ -52.382812, 70.670881 ], [ -51.855469, 70.670881 ] ], [ [ -51.855469, 70.670881 ], [ -51.855469, 70.612614 ], [ -51.679688, 70.612614 ], [ -51.679688, 70.670881 ], [ -51.855469, 70.670881 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ], [ -90.527344, 80.647035 ], [ -90.527344, 80.618424 ], [ -90.351562, 80.618424 ], [ -90.351562, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.824219, 80.560943 ], [ -89.824219, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.503112 ], [ -89.472656, 80.503112 ], [ -89.472656, 80.474065 ], [ -89.121094, 80.474065 ], [ -89.121094, 80.444931 ], [ -88.945312, 80.444931 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.386396 ], [ -88.417969, 80.386396 ], [ -88.417969, 80.356995 ], [ -88.066406, 80.356995 ], [ -88.066406, 80.327506 ], [ -87.890625, 80.327506 ], [ -87.890625, 80.238501 ], [ -87.714844, 80.238501 ], [ -87.714844, 80.118564 ], [ -87.539062, 80.118564 ], [ -87.539062, 79.997168 ], [ -87.363281, 79.997168 ], [ -87.363281, 79.843346 ], [ -87.187500, 79.843346 ], [ -87.187500, 79.718605 ], [ -87.011719, 79.718605 ], [ -87.011719, 79.624056 ], [ -86.835938, 79.624056 ], [ -86.835938, 79.560546 ], [ -86.660156, 79.560546 ], [ -86.660156, 79.528647 ], [ -86.484375, 79.528647 ], [ -86.484375, 79.496652 ], [ -86.308594, 79.496652 ], [ -86.308594, 79.432371 ], [ -86.132812, 79.432371 ], [ -86.132812, 79.400085 ], [ -85.957031, 79.400085 ], [ -85.957031, 79.335219 ], [ -85.781250, 79.335219 ], [ -85.781250, 79.302640 ], [ -85.957031, 79.302640 ], [ -85.957031, 79.269962 ], [ -86.132812, 79.269962 ], [ -86.132812, 79.237185 ], [ -86.308594, 79.237185 ], [ -86.308594, 79.204309 ], [ -86.484375, 79.204309 ], [ -86.484375, 79.138260 ], [ -86.660156, 79.138260 ], [ -86.660156, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.071812 ], [ -87.011719, 79.071812 ], [ -87.011719, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ] ] ], [ [ [ -72.597656, 83.236426 ], [ -72.597656, 83.215693 ], [ -71.894531, 83.215693 ], [ -71.894531, 83.194896 ], [ -71.191406, 83.194896 ], [ -71.191406, 83.174035 ], [ -70.488281, 83.174035 ], [ -70.488281, 83.153111 ], [ -69.785156, 83.153111 ], [ -69.785156, 83.132123 ], [ -69.082031, 83.132123 ], [ -69.082031, 83.111071 ], [ -68.378906, 83.111071 ], [ -68.378906, 83.089955 ], [ -67.675781, 83.089955 ], [ -67.675781, 83.068774 ], [ -66.972656, 83.068774 ], [ -66.972656, 83.047529 ], [ -66.269531, 83.047529 ], [ -66.269531, 83.026219 ], [ -65.742188, 83.026219 ], [ -65.742188, 83.004844 ], [ -65.390625, 83.004844 ], [ -65.390625, 82.983404 ], [ -65.039062, 82.983404 ], [ -65.039062, 82.961898 ], [ -64.687500, 82.961898 ], [ -64.687500, 82.940327 ], [ -64.335938, 82.940327 ], [ -64.335938, 82.918690 ], [ -63.984375, 82.918690 ], [ -63.984375, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.875218 ], [ -63.457031, 82.875218 ], [ -63.457031, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.831480 ], [ -63.105469, 82.831480 ], [ -63.105469, 82.787476 ], [ -62.929688, 82.787476 ], [ -62.929688, 82.765373 ], [ -62.753906, 82.765373 ], [ -62.753906, 82.743202 ], [ -62.578125, 82.743202 ], [ -62.578125, 82.720964 ], [ -62.402344, 82.720964 ], [ -62.402344, 82.698659 ], [ -62.226562, 82.698659 ], [ -62.226562, 82.653843 ], [ -62.050781, 82.653843 ], [ -62.050781, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.332382 ], [ -62.050781, 82.332382 ], [ -62.050781, 82.308893 ], [ -62.226562, 82.308893 ], [ -62.226562, 82.261699 ], [ -62.402344, 82.261699 ], [ -62.402344, 82.237994 ], [ -62.578125, 82.237994 ], [ -62.578125, 82.214217 ], [ -62.753906, 82.214217 ], [ -62.753906, 82.166446 ], [ -62.929688, 82.166446 ], [ -62.929688, 82.142451 ], [ -63.105469, 82.142451 ], [ -63.105469, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 82.094243 ], [ -63.457031, 82.094243 ], [ -63.457031, 82.045740 ], [ -63.632812, 82.045740 ], [ -63.632812, 82.021378 ], [ -63.808594, 82.021378 ], [ -63.808594, 81.996942 ], [ -63.984375, 81.996942 ], [ -63.984375, 81.947846 ], [ -64.160156, 81.947846 ], [ -64.160156, 81.923186 ], [ -64.335938, 81.923186 ], [ -64.335938, 81.898451 ], [ -64.687500, 81.898451 ], [ -64.687500, 81.873641 ], [ -65.039062, 81.873641 ], [ -65.039062, 81.848756 ], [ -65.390625, 81.848756 ], [ -65.390625, 81.823794 ], [ -65.566406, 81.823794 ], [ -65.566406, 81.798757 ], [ -65.917969, 81.798757 ], [ -65.917969, 81.773644 ], [ -66.269531, 81.773644 ], [ -66.269531, 81.748454 ], [ -66.621094, 81.748454 ], [ -66.621094, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.697844 ], [ -66.972656, 81.697844 ], [ -66.972656, 81.646927 ], [ -67.148438, 81.646927 ], [ -67.148438, 81.595699 ], [ -67.324219, 81.595699 ], [ -67.324219, 81.544159 ], [ -67.500000, 81.544159 ], [ -67.500000, 81.492306 ], [ -66.445312, 81.492306 ], [ -66.445312, 81.518272 ], [ -65.566406, 81.518272 ], [ -65.566406, 81.492306 ], [ -65.742188, 81.492306 ], [ -65.742188, 81.440137 ], [ -65.917969, 81.440137 ], [ -65.917969, 81.387650 ], [ -66.093750, 81.387650 ], [ -66.093750, 81.334844 ], [ -66.269531, 81.334844 ], [ -66.269531, 81.308321 ], [ -66.445312, 81.308321 ], [ -66.445312, 81.255032 ], [ -66.621094, 81.255032 ], [ -66.621094, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 81.147481 ], [ -66.972656, 81.147481 ], [ -66.972656, 81.093214 ], [ -67.148438, 81.093214 ], [ -67.148438, 81.065957 ], [ -67.324219, 81.065957 ], [ -67.324219, 81.011194 ], [ -67.500000, 81.011194 ], [ -67.500000, 80.956099 ], [ -67.675781, 80.956099 ], [ -67.675781, 80.900669 ], [ -67.851562, 80.900669 ], [ -67.851562, 80.872827 ], [ -68.027344, 80.872827 ], [ -68.027344, 80.844901 ], [ -68.203125, 80.844901 ], [ -68.203125, 80.816891 ], [ -68.378906, 80.816891 ], [ -68.378906, 80.788795 ], [ -68.554688, 80.788795 ], [ -68.554688, 80.760615 ], [ -68.730469, 80.760615 ], [ -68.730469, 80.703997 ], [ -68.906250, 80.703997 ], [ -68.906250, 80.675559 ], [ -69.082031, 80.675559 ], [ -69.082031, 80.647035 ], [ -69.257812, 80.647035 ], [ -69.257812, 80.618424 ], [ -69.433594, 80.618424 ], [ -69.433594, 80.560943 ], [ -69.609375, 80.560943 ], [ -69.609375, 80.474065 ], [ -69.785156, 80.474065 ], [ -69.785156, 80.415707 ], [ -69.960938, 80.415707 ], [ -69.960938, 80.327506 ], [ -70.136719, 80.327506 ], [ -70.136719, 80.238501 ], [ -70.312500, 80.238501 ], [ -70.312500, 80.178713 ], [ -70.488281, 80.178713 ], [ -70.488281, 80.088352 ], [ -70.664062, 80.088352 ], [ -70.664062, 79.997168 ], [ -70.839844, 79.997168 ], [ -70.839844, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.843346 ], [ -71.191406, 79.843346 ], [ -71.191406, 79.781164 ], [ -71.542969, 79.781164 ], [ -71.542969, 79.749932 ], [ -71.894531, 79.749932 ], [ -71.894531, 79.718605 ], [ -72.246094, 79.718605 ], [ -72.246094, 79.687184 ], [ -72.597656, 79.687184 ], [ -72.597656, 79.655668 ], [ -72.949219, 79.655668 ], [ -72.949219, 79.624056 ], [ -73.300781, 79.624056 ], [ -73.300781, 79.592349 ], [ -73.476562, 79.592349 ], [ -73.476562, 79.528647 ], [ -73.652344, 79.528647 ], [ -73.652344, 79.464560 ], [ -73.828125, 79.464560 ], [ -73.828125, 79.432371 ], [ -74.179688, 79.432371 ], [ -74.179688, 79.400085 ], [ -75.234375, 79.400085 ], [ -75.234375, 79.367701 ], [ -76.289062, 79.367701 ], [ -76.289062, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.004962 ], [ -85.429688, 79.004962 ], [ -85.429688, 79.071812 ], [ -85.253906, 79.071812 ], [ -85.253906, 79.237185 ], [ -85.078125, 79.237185 ], [ -85.078125, 79.335219 ], [ -85.253906, 79.335219 ], [ -85.253906, 79.400085 ], [ -85.429688, 79.400085 ], [ -85.429688, 79.464560 ], [ -85.605469, 79.464560 ], [ -85.605469, 79.496652 ], [ -85.781250, 79.496652 ], [ -85.781250, 79.560546 ], [ -85.957031, 79.560546 ], [ -85.957031, 79.592349 ], [ -86.132812, 79.592349 ], [ -86.132812, 79.655668 ], [ -86.308594, 79.655668 ], [ -86.308594, 79.718605 ], [ -86.484375, 79.718605 ], [ -86.484375, 79.812302 ], [ -86.660156, 79.812302 ], [ -86.660156, 79.997168 ], [ -86.835938, 79.997168 ], [ -86.835938, 80.148684 ], [ -87.011719, 80.148684 ], [ -87.011719, 80.238501 ], [ -85.781250, 80.238501 ], [ -85.781250, 80.208652 ], [ -84.199219, 80.208652 ], [ -84.199219, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.148684 ], [ -83.847656, 80.148684 ], [ -83.847656, 80.118564 ], [ -83.671875, 80.118564 ], [ -83.671875, 80.088352 ], [ -83.320312, 80.088352 ], [ -83.320312, 80.148684 ], [ -83.144531, 80.148684 ], [ -83.144531, 80.178713 ], [ -82.968750, 80.178713 ], [ -82.968750, 80.238501 ], [ -82.792969, 80.238501 ], [ -82.792969, 80.268259 ], [ -82.617188, 80.268259 ], [ -82.617188, 80.297927 ], [ -82.441406, 80.297927 ], [ -82.441406, 80.356995 ], [ -82.265625, 80.356995 ], [ -82.265625, 80.386396 ], [ -82.089844, 80.386396 ], [ -82.089844, 80.444931 ], [ -81.914062, 80.444931 ], [ -81.914062, 80.474065 ], [ -82.265625, 80.474065 ], [ -82.265625, 80.503112 ], [ -82.792969, 80.503112 ], [ -82.792969, 80.532071 ], [ -83.320312, 80.532071 ], [ -83.320312, 80.560943 ], [ -83.847656, 80.560943 ], [ -83.847656, 80.589727 ], [ -84.550781, 80.589727 ], [ -84.550781, 80.560943 ], [ -85.605469, 80.560943 ], [ -85.605469, 80.532071 ], [ -86.835938, 80.532071 ], [ -86.835938, 80.503112 ], [ -87.714844, 80.503112 ], [ -87.714844, 80.532071 ], [ -87.890625, 80.532071 ], [ -87.890625, 80.589727 ], [ -88.066406, 80.589727 ], [ -88.066406, 80.618424 ], [ -88.242188, 80.618424 ], [ -88.242188, 80.647035 ], [ -88.417969, 80.647035 ], [ -88.417969, 80.675559 ], [ -88.593750, 80.675559 ], [ -88.593750, 80.703997 ], [ -88.769531, 80.703997 ], [ -88.769531, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.788795 ], [ -89.121094, 80.788795 ], [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.872827 ], [ -89.472656, 80.872827 ], [ -89.472656, 80.956099 ], [ -89.648438, 80.956099 ], [ -89.648438, 81.038617 ], [ -89.824219, 81.038617 ], [ -89.824219, 81.120388 ], [ -90.000000, 81.120388 ], [ -90.000000, 81.201420 ], [ -90.175781, 81.201420 ], [ -90.175781, 81.255032 ], [ -90.351562, 81.255032 ], [ -90.351562, 81.308321 ], [ -90.527344, 81.308321 ], [ -90.527344, 81.361287 ], [ -90.703125, 81.361287 ], [ -90.703125, 81.413933 ], [ -90.878906, 81.413933 ], [ -90.878906, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -88.769531, 82.118384 ], [ -88.769531, 82.142451 ], [ -88.417969, 82.142451 ], [ -88.417969, 82.166446 ], [ -88.242188, 82.166446 ], [ -88.242188, 82.190368 ], [ -87.890625, 82.190368 ], [ -87.890625, 82.214217 ], [ -87.539062, 82.214217 ], [ -87.539062, 82.237994 ], [ -87.363281, 82.237994 ], [ -87.363281, 82.261699 ], [ -87.011719, 82.261699 ], [ -87.011719, 82.285331 ], [ -86.835938, 82.285331 ], [ -86.835938, 82.332382 ], [ -86.660156, 82.332382 ], [ -86.660156, 82.379147 ], [ -86.484375, 82.379147 ], [ -86.484375, 82.425629 ], [ -86.308594, 82.425629 ], [ -86.308594, 82.471829 ], [ -86.132812, 82.471829 ], [ -86.132812, 82.494824 ], [ -85.957031, 82.494824 ], [ -85.957031, 82.540604 ], [ -85.781250, 82.540604 ], [ -85.781250, 82.586106 ], [ -85.605469, 82.586106 ], [ -85.605469, 82.631333 ], [ -85.429688, 82.631333 ], [ -85.429688, 82.653843 ], [ -85.253906, 82.653843 ], [ -85.253906, 82.631333 ], [ -84.550781, 82.631333 ], [ -84.550781, 82.608754 ], [ -84.199219, 82.608754 ], [ -84.199219, 82.563390 ], [ -84.023438, 82.563390 ], [ -84.023438, 82.517749 ], [ -83.847656, 82.517749 ], [ -83.847656, 82.471829 ], [ -83.671875, 82.471829 ], [ -83.671875, 82.425629 ], [ -83.496094, 82.425629 ], [ -83.496094, 82.379147 ], [ -83.320312, 82.379147 ], [ -83.320312, 82.332382 ], [ -83.144531, 82.332382 ], [ -83.144531, 82.379147 ], [ -82.968750, 82.379147 ], [ -82.968750, 82.517749 ], [ -82.792969, 82.517749 ], [ -82.792969, 82.653843 ], [ -82.617188, 82.653843 ], [ -82.617188, 82.787476 ], [ -82.441406, 82.787476 ], [ -82.441406, 82.853382 ], [ -82.265625, 82.853382 ], [ -82.265625, 82.875218 ], [ -82.089844, 82.875218 ], [ -82.089844, 82.896987 ], [ -81.914062, 82.896987 ], [ -81.914062, 82.918690 ], [ -81.738281, 82.918690 ], [ -81.738281, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 82.961898 ], [ -81.386719, 82.961898 ], [ -81.386719, 82.983404 ], [ -81.210938, 82.983404 ], [ -81.210938, 83.004844 ], [ -81.035156, 83.004844 ], [ -81.035156, 83.026219 ], [ -80.683594, 83.026219 ], [ -80.683594, 83.047529 ], [ -80.332031, 83.047529 ], [ -80.332031, 83.068774 ], [ -79.980469, 83.068774 ], [ -79.980469, 83.089955 ], [ -79.628906, 83.089955 ], [ -79.628906, 83.111071 ], [ -79.277344, 83.111071 ], [ -79.277344, 83.132123 ], [ -78.398438, 83.132123 ], [ -78.398438, 83.153111 ], [ -76.992188, 83.153111 ], [ -76.992188, 83.174035 ], [ -76.289062, 83.174035 ], [ -76.289062, 83.153111 ], [ -76.113281, 83.153111 ], [ -76.113281, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -75.410156, 83.068774 ], [ -75.410156, 83.089955 ], [ -75.058594, 83.089955 ], [ -75.058594, 83.111071 ], [ -74.707031, 83.111071 ], [ -74.707031, 83.132123 ], [ -74.355469, 83.132123 ], [ -74.355469, 83.153111 ], [ -74.003906, 83.153111 ], [ -74.003906, 83.174035 ], [ -73.652344, 83.174035 ], [ -73.652344, 83.194896 ], [ -73.300781, 83.194896 ], [ -73.300781, 83.215693 ], [ -72.949219, 83.215693 ], [ -72.949219, 83.236426 ], [ -72.597656, 83.236426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.618424 ], [ -90.175781, 80.618424 ], [ -90.175781, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.648438, 80.560943 ], [ -89.648438, 80.532071 ], [ -89.472656, 80.532071 ], [ -89.472656, 80.503112 ], [ -89.296875, 80.503112 ], [ -89.296875, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.444931 ], [ -88.769531, 80.444931 ], [ -88.769531, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.386396 ], [ -88.242188, 80.386396 ], [ -88.242188, 80.356995 ], [ -88.066406, 80.356995 ], [ -88.066406, 80.327506 ], [ -87.890625, 80.327506 ], [ -87.890625, 80.238501 ], [ -87.714844, 80.238501 ], [ -87.714844, 80.088352 ], [ -87.539062, 80.088352 ], [ -87.539062, 79.905154 ], [ -87.363281, 79.905154 ], [ -87.363281, 79.749932 ], [ -87.187500, 79.749932 ], [ -87.187500, 79.655668 ], [ -87.011719, 79.655668 ], [ -87.011719, 79.592349 ], [ -86.835938, 79.592349 ], [ -86.835938, 79.560546 ], [ -86.660156, 79.560546 ], [ -86.660156, 79.528647 ], [ -86.484375, 79.528647 ], [ -86.484375, 79.464560 ], [ -86.308594, 79.464560 ], [ -86.308594, 79.432371 ], [ -86.132812, 79.432371 ], [ -86.132812, 79.367701 ], [ -85.957031, 79.367701 ], [ -85.957031, 79.335219 ], [ -86.132812, 79.335219 ], [ -86.132812, 79.302640 ], [ -86.308594, 79.302640 ], [ -86.308594, 79.237185 ], [ -86.484375, 79.237185 ], [ -86.484375, 79.204309 ], [ -86.660156, 79.204309 ], [ -86.660156, 79.171335 ], [ -86.835938, 79.171335 ], [ -86.835938, 79.105086 ], [ -87.011719, 79.105086 ], [ -87.011719, 79.071812 ], [ -87.187500, 79.071812 ], [ -87.187500, 79.038437 ], [ -87.363281, 79.038437 ], [ -87.363281, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ] ] ], [ [ [ -72.597656, 83.236426 ], [ -72.597656, 83.215693 ], [ -71.894531, 83.215693 ], [ -71.894531, 83.194896 ], [ -71.191406, 83.194896 ], [ -71.191406, 83.174035 ], [ -70.488281, 83.174035 ], [ -70.488281, 83.153111 ], [ -69.785156, 83.153111 ], [ -69.785156, 83.132123 ], [ -69.082031, 83.132123 ], [ -69.082031, 83.111071 ], [ -68.203125, 83.111071 ], [ -68.203125, 83.089955 ], [ -67.324219, 83.089955 ], [ -67.324219, 83.068774 ], [ -66.445312, 83.068774 ], [ -66.445312, 83.047529 ], [ -65.917969, 83.047529 ], [ -65.917969, 83.026219 ], [ -65.566406, 83.026219 ], [ -65.566406, 83.004844 ], [ -65.214844, 83.004844 ], [ -65.214844, 82.983404 ], [ -64.863281, 82.983404 ], [ -64.863281, 82.961898 ], [ -64.511719, 82.961898 ], [ -64.511719, 82.940327 ], [ -64.160156, 82.940327 ], [ -64.160156, 82.918690 ], [ -63.808594, 82.918690 ], [ -63.808594, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.875218 ], [ -63.457031, 82.875218 ], [ -63.457031, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.809511 ], [ -63.105469, 82.809511 ], [ -63.105469, 82.787476 ], [ -62.929688, 82.787476 ], [ -62.929688, 82.765373 ], [ -62.753906, 82.765373 ], [ -62.753906, 82.743202 ], [ -62.578125, 82.743202 ], [ -62.578125, 82.720964 ], [ -62.402344, 82.720964 ], [ -62.402344, 82.676285 ], [ -62.226562, 82.676285 ], [ -62.226562, 82.653843 ], [ -62.050781, 82.653843 ], [ -62.050781, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.494824 ], [ -62.050781, 82.494824 ], [ -62.050781, 82.355800 ], [ -62.226562, 82.355800 ], [ -62.226562, 82.308893 ], [ -62.402344, 82.308893 ], [ -62.402344, 82.285331 ], [ -62.578125, 82.285331 ], [ -62.578125, 82.261699 ], [ -62.753906, 82.261699 ], [ -62.753906, 82.214217 ], [ -62.929688, 82.214217 ], [ -62.929688, 82.190368 ], [ -63.105469, 82.190368 ], [ -63.105469, 82.166446 ], [ -63.281250, 82.166446 ], [ -63.281250, 82.118384 ], [ -63.457031, 82.118384 ], [ -63.457031, 82.094243 ], [ -63.632812, 82.094243 ], [ -63.632812, 82.045740 ], [ -63.808594, 82.045740 ], [ -63.808594, 82.021378 ], [ -63.984375, 82.021378 ], [ -63.984375, 81.996942 ], [ -64.160156, 81.996942 ], [ -64.160156, 81.947846 ], [ -64.335938, 81.947846 ], [ -64.335938, 81.923186 ], [ -64.687500, 81.923186 ], [ -64.687500, 81.898451 ], [ -65.039062, 81.898451 ], [ -65.039062, 81.873641 ], [ -65.390625, 81.873641 ], [ -65.390625, 81.848756 ], [ -65.566406, 81.848756 ], [ -65.566406, 81.823794 ], [ -65.917969, 81.823794 ], [ -65.917969, 81.798757 ], [ -66.269531, 81.798757 ], [ -66.269531, 81.773644 ], [ -66.621094, 81.773644 ], [ -66.621094, 81.748454 ], [ -66.796875, 81.748454 ], [ -66.796875, 81.723188 ], [ -66.972656, 81.723188 ], [ -66.972656, 81.672424 ], [ -67.148438, 81.672424 ], [ -67.148438, 81.621352 ], [ -67.324219, 81.621352 ], [ -67.324219, 81.569968 ], [ -67.500000, 81.569968 ], [ -67.500000, 81.518272 ], [ -65.566406, 81.518272 ], [ -65.566406, 81.492306 ], [ -65.742188, 81.492306 ], [ -65.742188, 81.440137 ], [ -65.917969, 81.440137 ], [ -65.917969, 81.387650 ], [ -66.093750, 81.387650 ], [ -66.093750, 81.334844 ], [ -66.269531, 81.334844 ], [ -66.269531, 81.308321 ], [ -66.445312, 81.308321 ], [ -66.445312, 81.255032 ], [ -66.621094, 81.255032 ], [ -66.621094, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 81.147481 ], [ -66.972656, 81.147481 ], [ -66.972656, 81.093214 ], [ -67.148438, 81.093214 ], [ -67.148438, 81.065957 ], [ -67.324219, 81.065957 ], [ -67.324219, 81.011194 ], [ -67.500000, 81.011194 ], [ -67.500000, 80.956099 ], [ -67.675781, 80.956099 ], [ -67.675781, 80.900669 ], [ -67.851562, 80.900669 ], [ -67.851562, 80.872827 ], [ -68.027344, 80.872827 ], [ -68.027344, 80.844901 ], [ -68.203125, 80.844901 ], [ -68.203125, 80.816891 ], [ -68.378906, 80.816891 ], [ -68.378906, 80.788795 ], [ -68.554688, 80.788795 ], [ -68.554688, 80.760615 ], [ -68.730469, 80.760615 ], [ -68.730469, 80.732349 ], [ -68.906250, 80.732349 ], [ -68.906250, 80.703997 ], [ -69.082031, 80.703997 ], [ -69.082031, 80.675559 ], [ -69.257812, 80.675559 ], [ -69.257812, 80.647035 ], [ -69.433594, 80.647035 ], [ -69.433594, 80.618424 ], [ -69.609375, 80.618424 ], [ -69.609375, 80.560943 ], [ -69.785156, 80.560943 ], [ -69.785156, 80.474065 ], [ -69.960938, 80.474065 ], [ -69.960938, 80.386396 ], [ -70.136719, 80.386396 ], [ -70.136719, 80.297927 ], [ -70.312500, 80.297927 ], [ -70.312500, 80.208652 ], [ -70.488281, 80.208652 ], [ -70.488281, 80.118564 ], [ -70.664062, 80.118564 ], [ -70.664062, 80.027655 ], [ -70.839844, 80.027655 ], [ -70.839844, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.843346 ], [ -71.191406, 79.843346 ], [ -71.191406, 79.812302 ], [ -71.367188, 79.812302 ], [ -71.367188, 79.781164 ], [ -71.718750, 79.781164 ], [ -71.718750, 79.749932 ], [ -72.070312, 79.749932 ], [ -72.070312, 79.718605 ], [ -72.597656, 79.718605 ], [ -72.597656, 79.687184 ], [ -72.949219, 79.687184 ], [ -72.949219, 79.655668 ], [ -73.300781, 79.655668 ], [ -73.300781, 79.624056 ], [ -73.476562, 79.624056 ], [ -73.476562, 79.560546 ], [ -73.652344, 79.560546 ], [ -73.652344, 79.496652 ], [ -73.828125, 79.496652 ], [ -73.828125, 79.432371 ], [ -74.355469, 79.432371 ], [ -74.355469, 79.400085 ], [ -75.410156, 79.400085 ], [ -75.410156, 79.367701 ], [ -76.464844, 79.367701 ], [ -76.464844, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.138260 ], [ -75.937500, 79.138260 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.038437 ], [ -76.289062, 79.038437 ], [ -76.289062, 79.004962 ], [ -85.429688, 79.004962 ], [ -85.429688, 79.171335 ], [ -85.253906, 79.171335 ], [ -85.253906, 79.367701 ], [ -85.429688, 79.367701 ], [ -85.429688, 79.432371 ], [ -85.605469, 79.432371 ], [ -85.605469, 79.464560 ], [ -85.781250, 79.464560 ], [ -85.781250, 79.528647 ], [ -85.957031, 79.528647 ], [ -85.957031, 79.560546 ], [ -86.132812, 79.560546 ], [ -86.132812, 79.624056 ], [ -86.308594, 79.624056 ], [ -86.308594, 79.655668 ], [ -86.484375, 79.655668 ], [ -86.484375, 79.718605 ], [ -86.660156, 79.718605 ], [ -86.660156, 79.874297 ], [ -86.835938, 79.874297 ], [ -86.835938, 80.118564 ], [ -87.011719, 80.118564 ], [ -87.011719, 80.268259 ], [ -86.484375, 80.268259 ], [ -86.484375, 80.238501 ], [ -85.078125, 80.238501 ], [ -85.078125, 80.208652 ], [ -84.199219, 80.208652 ], [ -84.199219, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.148684 ], [ -83.671875, 80.148684 ], [ -83.671875, 80.118564 ], [ -83.320312, 80.118564 ], [ -83.320312, 80.178713 ], [ -83.144531, 80.178713 ], [ -83.144531, 80.208652 ], [ -82.968750, 80.208652 ], [ -82.968750, 80.238501 ], [ -82.792969, 80.238501 ], [ -82.792969, 80.297927 ], [ -82.617188, 80.297927 ], [ -82.617188, 80.327506 ], [ -82.441406, 80.327506 ], [ -82.441406, 80.356995 ], [ -82.265625, 80.356995 ], [ -82.265625, 80.415707 ], [ -82.089844, 80.415707 ], [ -82.089844, 80.444931 ], [ -81.914062, 80.444931 ], [ -81.914062, 80.474065 ], [ -82.265625, 80.474065 ], [ -82.265625, 80.503112 ], [ -82.792969, 80.503112 ], [ -82.792969, 80.532071 ], [ -83.496094, 80.532071 ], [ -83.496094, 80.560943 ], [ -84.023438, 80.560943 ], [ -84.023438, 80.589727 ], [ -84.902344, 80.589727 ], [ -84.902344, 80.560943 ], [ -86.660156, 80.560943 ], [ -86.660156, 80.532071 ], [ -87.890625, 80.532071 ], [ -87.890625, 80.560943 ], [ -88.066406, 80.560943 ], [ -88.066406, 80.618424 ], [ -88.242188, 80.618424 ], [ -88.242188, 80.647035 ], [ -88.417969, 80.647035 ], [ -88.417969, 80.675559 ], [ -88.593750, 80.675559 ], [ -88.593750, 80.703997 ], [ -88.769531, 80.703997 ], [ -88.769531, 80.732349 ], [ -88.945312, 80.732349 ], [ -88.945312, 80.788795 ], [ -89.121094, 80.788795 ], [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.844901 ], [ -89.472656, 80.844901 ], [ -89.472656, 80.900669 ], [ -89.648438, 80.900669 ], [ -89.648438, 80.983688 ], [ -89.824219, 80.983688 ], [ -89.824219, 81.065957 ], [ -90.000000, 81.065957 ], [ -90.000000, 81.147481 ], [ -90.175781, 81.147481 ], [ -90.175781, 81.228267 ], [ -90.351562, 81.228267 ], [ -90.351562, 81.308321 ], [ -90.527344, 81.308321 ], [ -90.527344, 81.361287 ], [ -90.703125, 81.361287 ], [ -90.703125, 81.413933 ], [ -90.878906, 81.413933 ], [ -90.878906, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -88.769531, 82.118384 ], [ -88.769531, 82.142451 ], [ -88.417969, 82.142451 ], [ -88.417969, 82.166446 ], [ -88.242188, 82.166446 ], [ -88.242188, 82.190368 ], [ -87.890625, 82.190368 ], [ -87.890625, 82.214217 ], [ -87.539062, 82.214217 ], [ -87.539062, 82.237994 ], [ -87.363281, 82.237994 ], [ -87.363281, 82.261699 ], [ -87.011719, 82.261699 ], [ -87.011719, 82.308893 ], [ -86.835938, 82.308893 ], [ -86.835938, 82.355800 ], [ -86.660156, 82.355800 ], [ -86.660156, 82.402423 ], [ -86.484375, 82.402423 ], [ -86.484375, 82.448764 ], [ -86.308594, 82.448764 ], [ -86.308594, 82.494824 ], [ -86.132812, 82.494824 ], [ -86.132812, 82.540604 ], [ -85.957031, 82.540604 ], [ -85.957031, 82.586106 ], [ -85.781250, 82.586106 ], [ -85.781250, 82.631333 ], [ -85.605469, 82.631333 ], [ -85.605469, 82.653843 ], [ -85.429688, 82.653843 ], [ -85.429688, 82.631333 ], [ -84.726562, 82.631333 ], [ -84.726562, 82.608754 ], [ -84.375000, 82.608754 ], [ -84.375000, 82.586106 ], [ -84.199219, 82.586106 ], [ -84.199219, 82.540604 ], [ -84.023438, 82.540604 ], [ -84.023438, 82.494824 ], [ -83.847656, 82.494824 ], [ -83.847656, 82.448764 ], [ -83.671875, 82.448764 ], [ -83.671875, 82.402423 ], [ -83.496094, 82.402423 ], [ -83.496094, 82.355800 ], [ -83.320312, 82.355800 ], [ -83.320312, 82.379147 ], [ -83.144531, 82.379147 ], [ -83.144531, 82.494824 ], [ -82.968750, 82.494824 ], [ -82.968750, 82.608754 ], [ -82.792969, 82.608754 ], [ -82.792969, 82.698659 ], [ -82.617188, 82.698659 ], [ -82.617188, 82.809511 ], [ -82.441406, 82.809511 ], [ -82.441406, 82.875218 ], [ -82.265625, 82.875218 ], [ -82.265625, 82.896987 ], [ -82.089844, 82.896987 ], [ -82.089844, 82.918690 ], [ -81.914062, 82.918690 ], [ -81.914062, 82.940327 ], [ -81.738281, 82.940327 ], [ -81.738281, 82.961898 ], [ -81.562500, 82.961898 ], [ -81.562500, 82.983404 ], [ -81.386719, 82.983404 ], [ -81.386719, 83.004844 ], [ -81.210938, 83.004844 ], [ -81.210938, 83.026219 ], [ -80.859375, 83.026219 ], [ -80.859375, 83.047529 ], [ -80.507812, 83.047529 ], [ -80.507812, 83.068774 ], [ -80.156250, 83.068774 ], [ -80.156250, 83.089955 ], [ -79.804688, 83.089955 ], [ -79.804688, 83.111071 ], [ -79.453125, 83.111071 ], [ -79.453125, 83.132123 ], [ -78.574219, 83.132123 ], [ -78.574219, 83.153111 ], [ -76.992188, 83.153111 ], [ -76.992188, 83.174035 ], [ -76.289062, 83.174035 ], [ -76.289062, 83.153111 ], [ -76.113281, 83.153111 ], [ -76.113281, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -75.410156, 83.068774 ], [ -75.410156, 83.089955 ], [ -75.058594, 83.089955 ], [ -75.058594, 83.111071 ], [ -74.707031, 83.111071 ], [ -74.707031, 83.132123 ], [ -74.355469, 83.132123 ], [ -74.355469, 83.153111 ], [ -74.003906, 83.153111 ], [ -74.003906, 83.174035 ], [ -73.652344, 83.174035 ], [ -73.652344, 83.194896 ], [ -73.300781, 83.194896 ], [ -73.300781, 83.215693 ], [ -72.949219, 83.215693 ], [ -72.949219, 83.236426 ], [ -72.597656, 83.236426 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, 81.748454 ], [ -45.000000, 81.798757 ], [ -45.175781, 81.798757 ], [ -45.175781, 81.823794 ], [ -45.351562, 81.823794 ], [ -45.351562, 81.873641 ], [ -45.527344, 81.873641 ], [ -45.527344, 81.898451 ], [ -45.703125, 81.898451 ], [ -45.703125, 81.947846 ], [ -45.878906, 81.947846 ], [ -45.878906, 81.972431 ], [ -46.054688, 81.972431 ], [ -46.054688, 82.021378 ], [ -46.230469, 82.021378 ], [ -46.230469, 82.045740 ], [ -46.406250, 82.045740 ], [ -46.406250, 82.094243 ], [ -46.582031, 82.094243 ], [ -46.582031, 82.118384 ], [ -46.757812, 82.118384 ], [ -46.757812, 82.166446 ], [ -46.933594, 82.166446 ], [ -46.933594, 82.402423 ], [ -46.757812, 82.402423 ], [ -46.757812, 82.631333 ], [ -46.582031, 82.631333 ], [ -46.582031, 82.676285 ], [ -46.406250, 82.676285 ], [ -46.406250, 82.698659 ], [ -46.230469, 82.698659 ], [ -46.230469, 82.743202 ], [ -46.054688, 82.743202 ], [ -46.054688, 82.765373 ], [ -45.878906, 82.765373 ], [ -45.878906, 82.809511 ], [ -45.703125, 82.809511 ], [ -45.703125, 82.831480 ], [ -45.527344, 82.831480 ], [ -45.527344, 82.875218 ], [ -45.351562, 82.875218 ], [ -45.351562, 82.896987 ], [ -45.175781, 82.896987 ], [ -45.175781, 82.918690 ], [ -45.000000, 82.918690 ], [ -45.000000, 82.961898 ], [ -44.824219, 82.961898 ], [ -44.824219, 82.983404 ], [ -44.648438, 82.983404 ], [ -44.648438, 83.026219 ], [ -44.472656, 83.026219 ], [ -44.472656, 83.047529 ], [ -44.296875, 83.047529 ], [ -44.296875, 83.089955 ], [ -44.121094, 83.089955 ], [ -44.121094, 79.004962 ], [ -68.554688, 79.004962 ], [ -68.554688, 79.038437 ], [ -68.203125, 79.038437 ], [ -68.203125, 79.071812 ], [ -68.027344, 79.071812 ], [ -68.027344, 79.105086 ], [ -67.851562, 79.105086 ], [ -67.851562, 79.138260 ], [ -67.500000, 79.138260 ], [ -67.500000, 79.171335 ], [ -67.324219, 79.171335 ], [ -67.324219, 79.204309 ], [ -66.972656, 79.204309 ], [ -66.972656, 79.237185 ], [ -66.796875, 79.237185 ], [ -66.796875, 79.269962 ], [ -66.445312, 79.269962 ], [ -66.445312, 79.302640 ], [ -66.269531, 79.302640 ], [ -66.269531, 79.335219 ], [ -66.093750, 79.335219 ], [ -66.093750, 79.367701 ], [ -65.742188, 79.367701 ], [ -65.742188, 79.464560 ], [ -65.566406, 79.464560 ], [ -65.566406, 79.655668 ], [ -65.390625, 79.655668 ], [ -65.390625, 79.749932 ], [ -65.566406, 79.749932 ], [ -65.566406, 79.781164 ], [ -65.742188, 79.781164 ], [ -65.742188, 79.812302 ], [ -66.093750, 79.812302 ], [ -66.093750, 79.843346 ], [ -66.269531, 79.843346 ], [ -66.269531, 79.874297 ], [ -66.445312, 79.874297 ], [ -66.445312, 79.905154 ], [ -66.621094, 79.905154 ], [ -66.621094, 79.935918 ], [ -66.972656, 79.935918 ], [ -66.972656, 79.966590 ], [ -67.148438, 79.966590 ], [ -67.148438, 79.997168 ], [ -67.324219, 79.997168 ], [ -67.324219, 80.027655 ], [ -67.500000, 80.027655 ], [ -67.500000, 80.058050 ], [ -67.851562, 80.058050 ], [ -67.851562, 80.088352 ], [ -68.027344, 80.088352 ], [ -68.027344, 80.148684 ], [ -67.851562, 80.148684 ], [ -67.851562, 80.208652 ], [ -67.675781, 80.208652 ], [ -67.675781, 80.297927 ], [ -67.500000, 80.297927 ], [ -67.500000, 80.386396 ], [ -67.324219, 80.386396 ], [ -67.324219, 80.444931 ], [ -67.148438, 80.444931 ], [ -67.148438, 80.503112 ], [ -66.972656, 80.503112 ], [ -66.972656, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.589727 ], [ -66.621094, 80.589727 ], [ -66.621094, 80.618424 ], [ -66.445312, 80.618424 ], [ -66.445312, 80.647035 ], [ -66.269531, 80.647035 ], [ -66.269531, 80.675559 ], [ -66.093750, 80.675559 ], [ -66.093750, 80.732349 ], [ -65.917969, 80.732349 ], [ -65.917969, 80.760615 ], [ -65.742188, 80.760615 ], [ -65.742188, 80.788795 ], [ -65.566406, 80.788795 ], [ -65.566406, 80.816891 ], [ -65.390625, 80.816891 ], [ -65.390625, 80.872827 ], [ -65.214844, 80.872827 ], [ -65.214844, 80.900669 ], [ -65.039062, 80.900669 ], [ -65.039062, 80.928426 ], [ -64.863281, 80.928426 ], [ -64.863281, 80.956099 ], [ -64.687500, 80.956099 ], [ -64.687500, 81.011194 ], [ -64.511719, 81.011194 ], [ -64.511719, 81.038617 ], [ -64.335938, 81.038617 ], [ -64.335938, 81.065957 ], [ -64.160156, 81.065957 ], [ -64.160156, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.147481 ], [ -63.808594, 81.147481 ], [ -63.808594, 81.174491 ], [ -63.632812, 81.174491 ], [ -63.632812, 81.201420 ], [ -63.281250, 81.201420 ], [ -63.281250, 81.228267 ], [ -62.929688, 81.228267 ], [ -62.929688, 81.255032 ], [ -62.578125, 81.255032 ], [ -62.578125, 81.281717 ], [ -62.226562, 81.281717 ], [ -62.226562, 81.413933 ], [ -62.402344, 81.413933 ], [ -62.402344, 81.646927 ], [ -62.578125, 81.646927 ], [ -62.578125, 81.773644 ], [ -62.402344, 81.773644 ], [ -62.402344, 81.798757 ], [ -62.226562, 81.798757 ], [ -62.226562, 81.823794 ], [ -62.050781, 81.823794 ], [ -62.050781, 81.848756 ], [ -61.699219, 81.848756 ], [ -61.699219, 81.873641 ], [ -61.523438, 81.873641 ], [ -61.523438, 81.898451 ], [ -61.347656, 81.898451 ], [ -61.347656, 81.923186 ], [ -61.171875, 81.923186 ], [ -61.171875, 81.947846 ], [ -60.996094, 81.947846 ], [ -60.996094, 81.972431 ], [ -60.644531, 81.972431 ], [ -60.644531, 81.996942 ], [ -60.468750, 81.996942 ], [ -60.468750, 82.021378 ], [ -60.292969, 82.021378 ], [ -60.292969, 82.045740 ], [ -59.941406, 82.045740 ], [ -59.941406, 82.070028 ], [ -59.414062, 82.070028 ], [ -59.414062, 82.094243 ], [ -58.886719, 82.094243 ], [ -58.886719, 82.118384 ], [ -58.359375, 82.118384 ], [ -58.359375, 82.142451 ], [ -57.832031, 82.142451 ], [ -57.832031, 82.166446 ], [ -57.304688, 82.166446 ], [ -57.304688, 82.190368 ], [ -54.140625, 82.190368 ], [ -54.140625, 82.166446 ], [ -53.964844, 82.166446 ], [ -53.964844, 82.118384 ], [ -53.789062, 82.118384 ], [ -53.789062, 82.070028 ], [ -53.613281, 82.070028 ], [ -53.613281, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.972431 ], [ -53.261719, 81.972431 ], [ -53.261719, 81.923186 ], [ -53.085938, 81.923186 ], [ -53.085938, 81.898451 ], [ -52.910156, 81.898451 ], [ -52.910156, 81.947846 ], [ -52.734375, 81.947846 ], [ -52.734375, 81.972431 ], [ -52.558594, 81.972431 ], [ -52.558594, 82.021378 ], [ -52.382812, 82.021378 ], [ -52.382812, 82.045740 ], [ -52.207031, 82.045740 ], [ -52.207031, 82.094243 ], [ -52.031250, 82.094243 ], [ -52.031250, 82.118384 ], [ -51.855469, 82.118384 ], [ -51.855469, 82.166446 ], [ -51.679688, 82.166446 ], [ -51.679688, 82.214217 ], [ -51.503906, 82.214217 ], [ -51.503906, 82.237994 ], [ -51.328125, 82.237994 ], [ -51.328125, 82.285331 ], [ -51.152344, 82.285331 ], [ -51.152344, 82.308893 ], [ -50.976562, 82.308893 ], [ -50.976562, 82.355800 ], [ -50.800781, 82.355800 ], [ -50.800781, 82.379147 ], [ -50.625000, 82.379147 ], [ -50.625000, 82.425629 ], [ -50.273438, 82.425629 ], [ -50.273438, 82.402423 ], [ -50.097656, 82.402423 ], [ -50.097656, 82.379147 ], [ -49.921875, 82.379147 ], [ -49.921875, 82.355800 ], [ -49.746094, 82.355800 ], [ -49.746094, 82.308893 ], [ -49.570312, 82.308893 ], [ -49.570312, 82.285331 ], [ -49.394531, 82.285331 ], [ -49.394531, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.237994 ], [ -49.042969, 82.237994 ], [ -49.042969, 82.214217 ], [ -48.867188, 82.214217 ], [ -48.867188, 82.190368 ], [ -48.691406, 82.190368 ], [ -48.691406, 82.166446 ], [ -48.515625, 82.166446 ], [ -48.515625, 82.118384 ], [ -48.339844, 82.118384 ], [ -48.339844, 82.094243 ], [ -48.164062, 82.094243 ], [ -48.164062, 82.070028 ], [ -47.812500, 82.070028 ], [ -47.812500, 82.045740 ], [ -47.460938, 82.045740 ], [ -47.460938, 82.021378 ], [ -46.933594, 82.021378 ], [ -46.933594, 81.996942 ], [ -46.582031, 81.996942 ], [ -46.582031, 81.972431 ], [ -46.406250, 81.972431 ], [ -46.406250, 81.947846 ], [ -46.230469, 81.947846 ], [ -46.230469, 81.923186 ], [ -46.054688, 81.923186 ], [ -46.054688, 81.898451 ], [ -45.878906, 81.898451 ], [ -45.878906, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.848756 ], [ -45.527344, 81.848756 ], [ -45.527344, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.773644 ], [ -45.175781, 81.773644 ], [ -45.175781, 81.748454 ], [ -45.000000, 81.748454 ] ], [ [ -44.824219, 81.723188 ], [ -44.824219, 81.697844 ], [ -44.648438, 81.697844 ], [ -44.648438, 81.723188 ], [ -44.824219, 81.723188 ] ], [ [ -45.000000, 81.748454 ], [ -45.000000, 81.723188 ], [ -44.824219, 81.723188 ], [ -44.824219, 81.748454 ], [ -45.000000, 81.748454 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, 81.723188 ], [ -45.000000, 81.773644 ], [ -45.175781, 81.773644 ], [ -45.175781, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.848756 ], [ -45.527344, 81.848756 ], [ -45.527344, 81.898451 ], [ -45.703125, 81.898451 ], [ -45.703125, 81.947846 ], [ -45.878906, 81.947846 ], [ -45.878906, 81.972431 ], [ -46.054688, 81.972431 ], [ -46.054688, 82.021378 ], [ -46.230469, 82.021378 ], [ -46.230469, 82.070028 ], [ -46.406250, 82.070028 ], [ -46.406250, 82.094243 ], [ -46.582031, 82.094243 ], [ -46.582031, 82.142451 ], [ -46.757812, 82.142451 ], [ -46.757812, 82.190368 ], [ -46.933594, 82.190368 ], [ -46.933594, 82.631333 ], [ -46.757812, 82.631333 ], [ -46.757812, 82.676285 ], [ -46.582031, 82.676285 ], [ -46.582031, 82.698659 ], [ -46.406250, 82.698659 ], [ -46.406250, 82.720964 ], [ -46.230469, 82.720964 ], [ -46.230469, 82.765373 ], [ -46.054688, 82.765373 ], [ -46.054688, 82.787476 ], [ -45.878906, 82.787476 ], [ -45.878906, 82.809511 ], [ -45.703125, 82.809511 ], [ -45.703125, 82.853382 ], [ -45.527344, 82.853382 ], [ -45.527344, 82.875218 ], [ -45.351562, 82.875218 ], [ -45.351562, 82.918690 ], [ -45.175781, 82.918690 ], [ -45.175781, 82.940327 ], [ -45.000000, 82.940327 ], [ -45.000000, 82.961898 ], [ -44.824219, 82.961898 ], [ -44.824219, 83.004844 ], [ -44.648438, 83.004844 ], [ -44.648438, 83.026219 ], [ -44.472656, 83.026219 ], [ -44.472656, 83.047529 ], [ -44.296875, 83.047529 ], [ -44.296875, 83.089955 ], [ -44.121094, 83.089955 ], [ -44.121094, 79.004962 ], [ -68.554688, 79.004962 ], [ -68.554688, 79.038437 ], [ -68.203125, 79.038437 ], [ -68.203125, 79.071812 ], [ -68.027344, 79.071812 ], [ -68.027344, 79.105086 ], [ -67.851562, 79.105086 ], [ -67.851562, 79.138260 ], [ -67.500000, 79.138260 ], [ -67.500000, 79.171335 ], [ -67.324219, 79.171335 ], [ -67.324219, 79.204309 ], [ -66.972656, 79.204309 ], [ -66.972656, 79.237185 ], [ -66.796875, 79.237185 ], [ -66.796875, 79.269962 ], [ -66.445312, 79.269962 ], [ -66.445312, 79.302640 ], [ -66.269531, 79.302640 ], [ -66.269531, 79.335219 ], [ -66.093750, 79.335219 ], [ -66.093750, 79.367701 ], [ -65.742188, 79.367701 ], [ -65.742188, 79.496652 ], [ -65.566406, 79.496652 ], [ -65.566406, 79.687184 ], [ -65.390625, 79.687184 ], [ -65.390625, 79.781164 ], [ -65.566406, 79.781164 ], [ -65.566406, 79.812302 ], [ -65.917969, 79.812302 ], [ -65.917969, 79.843346 ], [ -66.093750, 79.843346 ], [ -66.093750, 79.874297 ], [ -66.269531, 79.874297 ], [ -66.269531, 79.905154 ], [ -66.621094, 79.905154 ], [ -66.621094, 79.935918 ], [ -66.796875, 79.935918 ], [ -66.796875, 79.966590 ], [ -66.972656, 79.966590 ], [ -66.972656, 79.997168 ], [ -67.324219, 79.997168 ], [ -67.324219, 80.027655 ], [ -67.500000, 80.027655 ], [ -67.500000, 80.058050 ], [ -67.675781, 80.058050 ], [ -67.675781, 80.088352 ], [ -68.027344, 80.088352 ], [ -68.027344, 80.148684 ], [ -67.851562, 80.148684 ], [ -67.851562, 80.268259 ], [ -67.675781, 80.268259 ], [ -67.675781, 80.356995 ], [ -67.500000, 80.356995 ], [ -67.500000, 80.474065 ], [ -67.324219, 80.474065 ], [ -67.324219, 80.532071 ], [ -67.148438, 80.532071 ], [ -67.148438, 80.560943 ], [ -66.972656, 80.560943 ], [ -66.972656, 80.618424 ], [ -66.796875, 80.618424 ], [ -66.796875, 80.647035 ], [ -66.621094, 80.647035 ], [ -66.621094, 80.675559 ], [ -66.445312, 80.675559 ], [ -66.445312, 80.703997 ], [ -66.269531, 80.703997 ], [ -66.269531, 80.760615 ], [ -66.093750, 80.760615 ], [ -66.093750, 80.788795 ], [ -65.917969, 80.788795 ], [ -65.917969, 80.816891 ], [ -65.742188, 80.816891 ], [ -65.742188, 80.844901 ], [ -65.566406, 80.844901 ], [ -65.566406, 80.900669 ], [ -65.390625, 80.900669 ], [ -65.390625, 80.928426 ], [ -65.214844, 80.928426 ], [ -65.214844, 80.956099 ], [ -65.039062, 80.956099 ], [ -65.039062, 80.983688 ], [ -64.863281, 80.983688 ], [ -64.863281, 81.038617 ], [ -64.687500, 81.038617 ], [ -64.687500, 81.065957 ], [ -64.511719, 81.065957 ], [ -64.511719, 81.093214 ], [ -64.335938, 81.093214 ], [ -64.335938, 81.120388 ], [ -64.160156, 81.120388 ], [ -64.160156, 81.174491 ], [ -63.984375, 81.174491 ], [ -63.984375, 81.201420 ], [ -63.808594, 81.201420 ], [ -63.808594, 81.228267 ], [ -63.457031, 81.228267 ], [ -63.457031, 81.255032 ], [ -63.105469, 81.255032 ], [ -63.105469, 81.281717 ], [ -62.753906, 81.281717 ], [ -62.753906, 81.308321 ], [ -62.402344, 81.308321 ], [ -62.402344, 81.440137 ], [ -62.578125, 81.440137 ], [ -62.578125, 81.646927 ], [ -62.753906, 81.646927 ], [ -62.753906, 81.773644 ], [ -62.578125, 81.773644 ], [ -62.578125, 81.798757 ], [ -62.402344, 81.798757 ], [ -62.402344, 81.823794 ], [ -62.050781, 81.823794 ], [ -62.050781, 81.848756 ], [ -61.875000, 81.848756 ], [ -61.875000, 81.873641 ], [ -61.699219, 81.873641 ], [ -61.699219, 81.898451 ], [ -61.347656, 81.898451 ], [ -61.347656, 81.923186 ], [ -61.171875, 81.923186 ], [ -61.171875, 81.947846 ], [ -60.996094, 81.947846 ], [ -60.996094, 81.972431 ], [ -60.820312, 81.972431 ], [ -60.820312, 81.996942 ], [ -60.468750, 81.996942 ], [ -60.468750, 82.021378 ], [ -60.292969, 82.021378 ], [ -60.292969, 82.045740 ], [ -59.941406, 82.045740 ], [ -59.941406, 82.070028 ], [ -59.414062, 82.070028 ], [ -59.414062, 82.094243 ], [ -58.886719, 82.094243 ], [ -58.886719, 82.118384 ], [ -58.535156, 82.118384 ], [ -58.535156, 82.142451 ], [ -58.007812, 82.142451 ], [ -58.007812, 82.166446 ], [ -57.480469, 82.166446 ], [ -57.480469, 82.190368 ], [ -55.546875, 82.190368 ], [ -55.546875, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.166446 ], [ -53.964844, 82.166446 ], [ -53.964844, 82.118384 ], [ -53.789062, 82.118384 ], [ -53.789062, 82.070028 ], [ -53.613281, 82.070028 ], [ -53.613281, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.972431 ], [ -53.261719, 81.972431 ], [ -53.261719, 81.923186 ], [ -53.085938, 81.923186 ], [ -53.085938, 81.898451 ], [ -52.910156, 81.898451 ], [ -52.910156, 81.947846 ], [ -52.734375, 81.947846 ], [ -52.734375, 81.972431 ], [ -52.558594, 81.972431 ], [ -52.558594, 82.021378 ], [ -52.382812, 82.021378 ], [ -52.382812, 82.045740 ], [ -52.207031, 82.045740 ], [ -52.207031, 82.094243 ], [ -52.031250, 82.094243 ], [ -52.031250, 82.118384 ], [ -51.855469, 82.118384 ], [ -51.855469, 82.166446 ], [ -51.679688, 82.166446 ], [ -51.679688, 82.214217 ], [ -51.503906, 82.214217 ], [ -51.503906, 82.237994 ], [ -51.328125, 82.237994 ], [ -51.328125, 82.285331 ], [ -51.152344, 82.285331 ], [ -51.152344, 82.308893 ], [ -50.976562, 82.308893 ], [ -50.976562, 82.355800 ], [ -50.800781, 82.355800 ], [ -50.800781, 82.379147 ], [ -50.625000, 82.379147 ], [ -50.625000, 82.425629 ], [ -50.273438, 82.425629 ], [ -50.273438, 82.402423 ], [ -50.097656, 82.402423 ], [ -50.097656, 82.355800 ], [ -49.921875, 82.355800 ], [ -49.921875, 82.332382 ], [ -49.746094, 82.332382 ], [ -49.746094, 82.308893 ], [ -49.570312, 82.308893 ], [ -49.570312, 82.285331 ], [ -49.394531, 82.285331 ], [ -49.394531, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.214217 ], [ -49.042969, 82.214217 ], [ -49.042969, 82.190368 ], [ -48.867188, 82.190368 ], [ -48.867188, 82.166446 ], [ -48.691406, 82.166446 ], [ -48.691406, 82.142451 ], [ -48.515625, 82.142451 ], [ -48.515625, 82.094243 ], [ -48.339844, 82.094243 ], [ -48.339844, 82.070028 ], [ -47.988281, 82.070028 ], [ -47.988281, 82.045740 ], [ -47.636719, 82.045740 ], [ -47.636719, 82.021378 ], [ -47.109375, 82.021378 ], [ -47.109375, 81.996942 ], [ -46.757812, 81.996942 ], [ -46.757812, 81.972431 ], [ -46.582031, 81.972431 ], [ -46.582031, 81.947846 ], [ -46.406250, 81.947846 ], [ -46.406250, 81.923186 ], [ -46.230469, 81.923186 ], [ -46.230469, 81.898451 ], [ -46.054688, 81.898451 ], [ -46.054688, 81.873641 ], [ -45.878906, 81.873641 ], [ -45.878906, 81.848756 ], [ -45.703125, 81.848756 ], [ -45.703125, 81.798757 ], [ -45.527344, 81.798757 ], [ -45.527344, 81.773644 ], [ -45.351562, 81.773644 ], [ -45.351562, 81.748454 ], [ -45.175781, 81.748454 ], [ -45.175781, 81.723188 ], [ -45.000000, 81.723188 ] ], [ [ -45.000000, 81.723188 ], [ -45.000000, 81.697844 ], [ -44.824219, 81.697844 ], [ -44.824219, 81.723188 ], [ -45.000000, 81.723188 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.798757 ], [ -45.703125, -81.798757 ], [ -45.703125, -81.823794 ], [ -45.175781, -81.823794 ], [ -45.175781, -81.848756 ], [ -44.824219, -81.848756 ], [ -44.824219, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -81.947846 ], [ -43.945312, -81.947846 ], [ -43.945312, -81.972431 ], [ -43.769531, -81.972431 ], [ -43.769531, -81.996942 ], [ -43.593750, -81.996942 ], [ -43.593750, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.045740 ], [ -43.066406, -82.045740 ], [ -43.066406, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -82.021378 ], [ -42.714844, -82.021378 ], [ -42.714844, -81.923186 ], [ -42.539062, -81.923186 ], [ -42.539062, -81.823794 ], [ -42.363281, -81.823794 ], [ -42.363281, -81.723188 ], [ -42.187500, -81.723188 ], [ -42.187500, -81.646927 ], [ -42.011719, -81.646927 ], [ -42.011719, -81.595699 ], [ -41.835938, -81.595699 ], [ -41.835938, -81.569968 ], [ -41.660156, -81.569968 ], [ -41.660156, -81.544159 ], [ -41.484375, -81.544159 ], [ -41.484375, -81.492306 ], [ -41.308594, -81.492306 ], [ -41.308594, -81.466261 ], [ -41.132812, -81.466261 ], [ -41.132812, -81.440137 ], [ -40.957031, -81.440137 ], [ -40.957031, -81.387650 ], [ -40.781250, -81.387650 ], [ -40.781250, -81.361287 ], [ -39.375000, -81.361287 ], [ -39.375000, -81.334844 ], [ -38.144531, -81.334844 ], [ -38.144531, -81.308321 ], [ -37.792969, -81.308321 ], [ -37.792969, -81.281717 ], [ -37.617188, -81.281717 ], [ -37.617188, -81.255032 ], [ -37.265625, -81.255032 ], [ -37.265625, -81.228267 ], [ -37.089844, -81.228267 ], [ -37.089844, -81.201420 ], [ -36.738281, -81.201420 ], [ -36.738281, -81.174491 ], [ -36.562500, -81.174491 ], [ -36.562500, -81.147481 ], [ -36.210938, -81.147481 ], [ -36.210938, -81.120388 ], [ -36.035156, -81.120388 ], [ -36.035156, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -81.065957 ], [ -35.507812, -81.065957 ], [ -35.507812, -81.038617 ], [ -35.332031, -81.038617 ], [ -35.332031, -81.011194 ], [ -35.156250, -81.011194 ], [ -35.156250, -80.983688 ], [ -34.980469, -80.983688 ], [ -34.980469, -80.956099 ], [ -34.628906, -80.956099 ], [ -34.628906, -80.928426 ], [ -34.453125, -80.928426 ], [ -34.453125, -80.900669 ], [ -34.101562, -80.900669 ], [ -34.101562, -80.872827 ], [ -33.750000, -80.872827 ], [ -33.750000, -80.844901 ], [ -33.222656, -80.844901 ], [ -33.222656, -80.816891 ], [ -32.871094, -80.816891 ], [ -32.871094, -80.788795 ], [ -32.519531, -80.788795 ], [ -32.519531, -80.760615 ], [ -31.992188, -80.760615 ], [ -31.992188, -80.732349 ], [ -31.640625, -80.732349 ], [ -31.640625, -80.703997 ], [ -31.289062, -80.703997 ], [ -31.289062, -80.675559 ], [ -30.937500, -80.675559 ], [ -30.937500, -80.647035 ], [ -30.585938, -80.647035 ], [ -30.585938, -80.618424 ], [ -30.234375, -80.618424 ], [ -30.234375, -80.589727 ], [ -29.882812, -80.589727 ], [ -29.882812, -80.560943 ], [ -29.707031, -80.560943 ], [ -29.707031, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.503112 ], [ -29.355469, -80.503112 ], [ -29.355469, -80.474065 ], [ -29.179688, -80.474065 ], [ -29.179688, -80.444931 ], [ -29.003906, -80.444931 ], [ -29.003906, -80.415707 ], [ -28.828125, -80.415707 ], [ -28.828125, -80.386396 ], [ -28.652344, -80.386396 ], [ -28.652344, -80.356995 ], [ -28.476562, -80.356995 ], [ -28.476562, -80.297927 ], [ -28.652344, -80.297927 ], [ -28.652344, -80.208652 ], [ -28.828125, -80.208652 ], [ -28.828125, -80.148684 ], [ -29.003906, -80.148684 ], [ -29.003906, -80.058050 ], [ -29.179688, -80.058050 ], [ -29.179688, -79.935918 ], [ -29.355469, -79.935918 ], [ -29.355469, -79.812302 ], [ -29.531250, -79.812302 ], [ -29.531250, -79.687184 ], [ -29.707031, -79.687184 ], [ -29.707031, -79.269962 ], [ -30.585938, -79.269962 ], [ -30.585938, -79.302640 ], [ -31.816406, -79.302640 ], [ -31.816406, -79.335219 ], [ -32.167969, -79.335219 ], [ -32.167969, -79.367701 ], [ -32.519531, -79.367701 ], [ -32.519531, -79.400085 ], [ -33.046875, -79.400085 ], [ -33.046875, -79.432371 ], [ -33.398438, -79.432371 ], [ -33.398438, -79.464560 ], [ -35.683594, -79.464560 ], [ -35.683594, -79.269962 ], [ -35.859375, -79.269962 ], [ -35.859375, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -43.593750, -79.004962 ], [ -43.593750, -79.038437 ], [ -43.417969, -79.038437 ], [ -43.417969, -80.058050 ], [ -43.593750, -80.058050 ], [ -43.593750, -80.088352 ], [ -43.769531, -80.088352 ], [ -43.769531, -80.148684 ], [ -43.945312, -80.148684 ], [ -43.945312, -80.178713 ], [ -44.121094, -80.178713 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.327506 ], [ -44.824219, -80.327506 ], [ -44.824219, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.386396 ], [ -45.175781, -80.386396 ], [ -45.175781, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.444931 ], [ -45.527344, -80.444931 ], [ -45.527344, -80.474065 ], [ -45.703125, -80.474065 ], [ -45.703125, -80.503112 ], [ -45.878906, -80.503112 ], [ -45.878906, -79.004962 ], [ -43.593750, -79.004962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.773644 ], [ -45.703125, -81.773644 ], [ -45.703125, -81.798757 ], [ -45.175781, -81.798757 ], [ -45.175781, -81.823794 ], [ -44.824219, -81.823794 ], [ -44.824219, -81.848756 ], [ -44.648438, -81.848756 ], [ -44.648438, -81.873641 ], [ -44.472656, -81.873641 ], [ -44.472656, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -81.947846 ], [ -43.769531, -81.947846 ], [ -43.769531, -81.972431 ], [ -43.593750, -81.972431 ], [ -43.593750, -81.996942 ], [ -43.417969, -81.996942 ], [ -43.417969, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.045740 ], [ -43.066406, -82.045740 ], [ -43.066406, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -82.021378 ], [ -42.714844, -82.021378 ], [ -42.714844, -81.923186 ], [ -42.539062, -81.923186 ], [ -42.539062, -81.823794 ], [ -42.363281, -81.823794 ], [ -42.363281, -81.723188 ], [ -42.187500, -81.723188 ], [ -42.187500, -81.646927 ], [ -42.011719, -81.646927 ], [ -42.011719, -81.595699 ], [ -41.835938, -81.595699 ], [ -41.835938, -81.569968 ], [ -41.660156, -81.569968 ], [ -41.660156, -81.518272 ], [ -41.484375, -81.518272 ], [ -41.484375, -81.492306 ], [ -41.308594, -81.492306 ], [ -41.308594, -81.440137 ], [ -41.132812, -81.440137 ], [ -41.132812, -81.413933 ], [ -40.957031, -81.413933 ], [ -40.957031, -81.361287 ], [ -40.781250, -81.361287 ], [ -40.781250, -81.334844 ], [ -38.144531, -81.334844 ], [ -38.144531, -81.308321 ], [ -37.792969, -81.308321 ], [ -37.792969, -81.281717 ], [ -37.617188, -81.281717 ], [ -37.617188, -81.255032 ], [ -37.441406, -81.255032 ], [ -37.441406, -81.228267 ], [ -37.089844, -81.228267 ], [ -37.089844, -81.201420 ], [ -36.914062, -81.201420 ], [ -36.914062, -81.174491 ], [ -36.738281, -81.174491 ], [ -36.738281, -81.147481 ], [ -36.386719, -81.147481 ], [ -36.386719, -81.120388 ], [ -36.210938, -81.120388 ], [ -36.210938, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -81.065957 ], [ -35.683594, -81.065957 ], [ -35.683594, -81.038617 ], [ -35.507812, -81.038617 ], [ -35.507812, -81.011194 ], [ -35.156250, -81.011194 ], [ -35.156250, -80.983688 ], [ -34.980469, -80.983688 ], [ -34.980469, -80.956099 ], [ -34.804688, -80.956099 ], [ -34.804688, -80.928426 ], [ -34.453125, -80.928426 ], [ -34.453125, -80.900669 ], [ -34.101562, -80.900669 ], [ -34.101562, -80.872827 ], [ -33.750000, -80.872827 ], [ -33.750000, -80.844901 ], [ -33.222656, -80.844901 ], [ -33.222656, -80.816891 ], [ -32.871094, -80.816891 ], [ -32.871094, -80.788795 ], [ -32.519531, -80.788795 ], [ -32.519531, -80.760615 ], [ -31.992188, -80.760615 ], [ -31.992188, -80.732349 ], [ -31.640625, -80.732349 ], [ -31.640625, -80.703997 ], [ -31.289062, -80.703997 ], [ -31.289062, -80.675559 ], [ -30.937500, -80.675559 ], [ -30.937500, -80.647035 ], [ -30.585938, -80.647035 ], [ -30.585938, -80.618424 ], [ -30.234375, -80.618424 ], [ -30.234375, -80.589727 ], [ -30.058594, -80.589727 ], [ -30.058594, -80.560943 ], [ -29.882812, -80.560943 ], [ -29.882812, -80.532071 ], [ -29.707031, -80.532071 ], [ -29.707031, -80.503112 ], [ -29.531250, -80.503112 ], [ -29.531250, -80.474065 ], [ -29.355469, -80.474065 ], [ -29.355469, -80.444931 ], [ -29.179688, -80.444931 ], [ -29.179688, -80.415707 ], [ -29.003906, -80.415707 ], [ -29.003906, -80.386396 ], [ -28.828125, -80.386396 ], [ -28.828125, -80.356995 ], [ -28.652344, -80.356995 ], [ -28.652344, -80.297927 ], [ -28.828125, -80.297927 ], [ -28.828125, -80.208652 ], [ -29.003906, -80.208652 ], [ -29.003906, -80.118564 ], [ -29.179688, -80.118564 ], [ -29.179688, -80.027655 ], [ -29.355469, -80.027655 ], [ -29.355469, -79.905154 ], [ -29.531250, -79.905154 ], [ -29.531250, -79.718605 ], [ -29.707031, -79.718605 ], [ -29.707031, -79.237185 ], [ -30.585938, -79.237185 ], [ -30.585938, -79.269962 ], [ -31.816406, -79.269962 ], [ -31.816406, -79.302640 ], [ -32.167969, -79.302640 ], [ -32.167969, -79.335219 ], [ -32.519531, -79.335219 ], [ -32.519531, -79.367701 ], [ -33.046875, -79.367701 ], [ -33.046875, -79.400085 ], [ -33.398438, -79.400085 ], [ -33.398438, -79.432371 ], [ -35.683594, -79.432371 ], [ -35.683594, -79.367701 ], [ -35.859375, -79.367701 ], [ -35.859375, -79.171335 ], [ -36.035156, -79.171335 ], [ -36.035156, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -43.593750, -79.004962 ], [ -43.593750, -79.302640 ], [ -43.417969, -79.302640 ], [ -43.417969, -80.027655 ], [ -43.593750, -80.027655 ], [ -43.593750, -80.058050 ], [ -43.769531, -80.058050 ], [ -43.769531, -80.118564 ], [ -43.945312, -80.118564 ], [ -43.945312, -80.148684 ], [ -44.121094, -80.148684 ], [ -44.121094, -80.178713 ], [ -44.296875, -80.178713 ], [ -44.296875, -80.208652 ], [ -44.472656, -80.208652 ], [ -44.472656, -80.238501 ], [ -44.648438, -80.238501 ], [ -44.648438, -80.297927 ], [ -44.824219, -80.297927 ], [ -44.824219, -80.327506 ], [ -45.000000, -80.327506 ], [ -45.000000, -80.356995 ], [ -45.175781, -80.356995 ], [ -45.175781, -80.386396 ], [ -45.351562, -80.386396 ], [ -45.351562, -80.415707 ], [ -45.527344, -80.415707 ], [ -45.527344, -80.444931 ], [ -45.703125, -80.444931 ], [ -45.703125, -80.474065 ], [ -45.878906, -80.474065 ], [ -45.878906, -79.004962 ], [ -43.593750, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.703125, -77.989049 ], [ -45.703125, -78.025574 ], [ -45.351562, -78.025574 ], [ -45.351562, -78.061989 ], [ -45.175781, -78.061989 ], [ -45.175781, -78.098296 ], [ -45.000000, -78.098296 ], [ -45.000000, -78.170582 ], [ -44.824219, -78.170582 ], [ -44.824219, -78.242436 ], [ -44.648438, -78.242436 ], [ -44.648438, -78.278201 ], [ -44.472656, -78.278201 ], [ -44.472656, -78.349411 ], [ -44.296875, -78.349411 ], [ -44.296875, -78.420193 ], [ -44.121094, -78.420193 ], [ -44.121094, -78.490552 ], [ -43.945312, -78.490552 ], [ -43.945312, -78.595299 ], [ -43.769531, -78.595299 ], [ -43.769531, -78.801980 ], [ -43.593750, -78.801980 ], [ -43.593750, -79.004962 ], [ -43.417969, -79.004962 ], [ -43.417969, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.989049 ], [ -45.703125, -77.989049 ] ] ], [ [ [ -6.503906, -70.959697 ], [ -6.503906, -71.016960 ], [ -5.800781, -71.016960 ], [ -5.800781, -71.130988 ], [ -5.625000, -71.130988 ], [ -5.625000, -71.357067 ], [ -5.449219, -71.357067 ], [ -5.449219, -71.413177 ], [ -5.097656, -71.413177 ], [ -5.097656, -71.469124 ], [ -4.042969, -71.469124 ], [ -4.042969, -71.413177 ], [ -3.515625, -71.413177 ], [ -3.515625, -71.357067 ], [ -3.164062, -71.357067 ], [ -3.164062, -71.300793 ], [ -2.636719, -71.300793 ], [ -2.636719, -71.244356 ], [ -1.933594, -71.244356 ], [ -1.933594, -71.187754 ], [ -1.406250, -71.187754 ], [ -1.406250, -71.244356 ], [ -0.703125, -71.244356 ], [ -0.703125, -71.357067 ], [ -0.527344, -71.357067 ], [ -0.527344, -71.469124 ], [ -0.351562, -71.469124 ], [ -0.351562, -71.580532 ], [ -0.175781, -71.580532 ], [ -0.175781, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.580532 ], [ 0.175781, -71.580532 ], [ 0.175781, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.469124 ], [ 0.527344, -71.469124 ], [ 0.527344, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.357067 ], [ 0.878906, -71.357067 ], [ 0.878906, -79.335219 ], [ -29.707031, -79.335219 ], [ -29.707031, -79.269962 ], [ -30.585938, -79.269962 ], [ -30.585938, -79.302640 ], [ -31.816406, -79.302640 ], [ -31.816406, -79.335219 ], [ -35.683594, -79.335219 ], [ -35.683594, -79.204309 ], [ -35.859375, -79.204309 ], [ -35.859375, -78.313860 ], [ -35.683594, -78.313860 ], [ -35.683594, -78.242436 ], [ -35.507812, -78.242436 ], [ -35.507812, -78.170582 ], [ -35.332031, -78.170582 ], [ -35.332031, -78.134493 ], [ -35.156250, -78.134493 ], [ -35.156250, -78.098296 ], [ -34.980469, -78.098296 ], [ -34.980469, -78.061989 ], [ -34.804688, -78.061989 ], [ -34.804688, -78.025574 ], [ -34.453125, -78.025574 ], [ -34.453125, -77.989049 ], [ -34.277344, -77.989049 ], [ -34.277344, -77.952414 ], [ -34.101562, -77.952414 ], [ -34.101562, -77.915669 ], [ -33.925781, -77.915669 ], [ -33.925781, -77.878814 ], [ -33.750000, -77.878814 ], [ -33.750000, -77.841848 ], [ -33.398438, -77.841848 ], [ -33.398438, -77.804771 ], [ -33.046875, -77.804771 ], [ -33.046875, -77.767582 ], [ -32.871094, -77.767582 ], [ -32.871094, -77.730282 ], [ -32.519531, -77.730282 ], [ -32.519531, -77.692870 ], [ -32.167969, -77.692870 ], [ -32.167969, -77.655346 ], [ -31.992188, -77.655346 ], [ -31.992188, -77.617709 ], [ -31.816406, -77.617709 ], [ -31.816406, -77.579959 ], [ -31.640625, -77.579959 ], [ -31.640625, -77.504119 ], [ -31.464844, -77.504119 ], [ -31.464844, -77.466028 ], [ -31.289062, -77.466028 ], [ -31.289062, -77.427824 ], [ -31.113281, -77.427824 ], [ -31.113281, -77.389504 ], [ -30.937500, -77.389504 ], [ -30.937500, -77.351070 ], [ -30.761719, -77.351070 ], [ -30.761719, -77.312520 ], [ -30.585938, -77.312520 ], [ -30.585938, -77.273855 ], [ -30.410156, -77.273855 ], [ -30.410156, -77.235074 ], [ -30.234375, -77.235074 ], [ -30.234375, -77.196176 ], [ -30.058594, -77.196176 ], [ -30.058594, -77.157163 ], [ -29.882812, -77.157163 ], [ -29.882812, -77.118032 ], [ -29.707031, -77.118032 ], [ -29.707031, -77.039418 ], [ -29.531250, -77.039418 ], [ -29.531250, -76.960334 ], [ -29.355469, -76.960334 ], [ -29.355469, -76.880775 ], [ -29.179688, -76.880775 ], [ -29.179688, -76.800739 ], [ -29.003906, -76.800739 ], [ -29.003906, -76.720223 ], [ -28.828125, -76.720223 ], [ -28.828125, -76.679785 ], [ -28.652344, -76.679785 ], [ -28.652344, -76.639226 ], [ -28.300781, -76.639226 ], [ -28.300781, -76.598545 ], [ -27.949219, -76.598545 ], [ -27.949219, -76.557743 ], [ -27.597656, -76.557743 ], [ -27.597656, -76.516819 ], [ -27.246094, -76.516819 ], [ -27.246094, -76.475773 ], [ -26.894531, -76.475773 ], [ -26.894531, -76.434604 ], [ -26.542969, -76.434604 ], [ -26.542969, -76.393312 ], [ -26.191406, -76.393312 ], [ -26.191406, -76.351896 ], [ -25.839844, -76.351896 ], [ -25.839844, -76.310358 ], [ -25.488281, -76.310358 ], [ -25.488281, -76.268695 ], [ -24.609375, -76.268695 ], [ -24.609375, -76.226907 ], [ -23.554688, -76.226907 ], [ -23.554688, -76.184995 ], [ -23.027344, -76.184995 ], [ -23.027344, -76.142958 ], [ -22.675781, -76.142958 ], [ -22.675781, -76.100796 ], [ -22.324219, -76.100796 ], [ -22.324219, -76.058508 ], [ -21.972656, -76.058508 ], [ -21.972656, -76.016094 ], [ -21.796875, -76.016094 ], [ -21.796875, -75.973553 ], [ -21.621094, -75.973553 ], [ -21.621094, -75.930885 ], [ -21.269531, -75.930885 ], [ -21.269531, -75.888091 ], [ -21.093750, -75.888091 ], [ -21.093750, -75.845169 ], [ -20.742188, -75.845169 ], [ -20.742188, -75.802118 ], [ -20.566406, -75.802118 ], [ -20.566406, -75.758940 ], [ -20.390625, -75.758940 ], [ -20.390625, -75.715633 ], [ -20.039062, -75.715633 ], [ -20.039062, -75.672197 ], [ -19.863281, -75.672197 ], [ -19.863281, -75.628632 ], [ -19.687500, -75.628632 ], [ -19.687500, -75.584937 ], [ -19.335938, -75.584937 ], [ -19.335938, -75.541113 ], [ -19.160156, -75.541113 ], [ -19.160156, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.453071 ], [ -18.808594, -75.453071 ], [ -18.808594, -75.408854 ], [ -18.632812, -75.408854 ], [ -18.632812, -75.364506 ], [ -18.457031, -75.364506 ], [ -18.457031, -75.320025 ], [ -18.105469, -75.320025 ], [ -18.105469, -75.275413 ], [ -17.929688, -75.275413 ], [ -17.929688, -75.230667 ], [ -17.753906, -75.230667 ], [ -17.753906, -75.185789 ], [ -17.578125, -75.185789 ], [ -17.578125, -75.140778 ], [ -17.402344, -75.140778 ], [ -17.402344, -75.050354 ], [ -17.226562, -75.050354 ], [ -17.226562, -74.959392 ], [ -17.050781, -74.959392 ], [ -17.050781, -74.913708 ], [ -16.875000, -74.913708 ], [ -16.875000, -74.821934 ], [ -16.699219, -74.821934 ], [ -16.699219, -74.775843 ], [ -16.523438, -74.775843 ], [ -16.523438, -74.729615 ], [ -16.347656, -74.729615 ], [ -16.347656, -74.683250 ], [ -16.171875, -74.683250 ], [ -16.171875, -74.636748 ], [ -15.996094, -74.636748 ], [ -15.996094, -74.590108 ], [ -15.820312, -74.590108 ], [ -15.820312, -74.543330 ], [ -15.644531, -74.543330 ], [ -15.644531, -74.307353 ], [ -15.468750, -74.307353 ], [ -15.468750, -74.116047 ], [ -15.644531, -74.116047 ], [ -15.644531, -74.067866 ], [ -15.820312, -74.067866 ], [ -15.820312, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.971078 ], [ -16.347656, -73.971078 ], [ -16.347656, -73.922469 ], [ -16.523438, -73.922469 ], [ -16.523438, -73.775780 ], [ -16.347656, -73.775780 ], [ -16.347656, -73.578167 ], [ -16.171875, -73.578167 ], [ -16.171875, -73.478485 ], [ -15.996094, -73.478485 ], [ -15.996094, -73.378215 ], [ -15.820312, -73.378215 ], [ -15.820312, -73.277353 ], [ -15.644531, -73.277353 ], [ -15.644531, -73.175897 ], [ -15.468750, -73.175897 ], [ -15.468750, -73.124945 ], [ -15.117188, -73.124945 ], [ -15.117188, -73.073844 ], [ -14.765625, -73.073844 ], [ -14.765625, -73.022592 ], [ -14.414062, -73.022592 ], [ -14.414062, -72.971189 ], [ -14.238281, -72.971189 ], [ -14.238281, -72.919635 ], [ -14.062500, -72.919635 ], [ -14.062500, -72.867930 ], [ -13.710938, -72.867930 ], [ -13.710938, -72.816074 ], [ -13.535156, -72.816074 ], [ -13.535156, -72.764065 ], [ -13.359375, -72.764065 ], [ -13.359375, -72.711903 ], [ -13.183594, -72.711903 ], [ -13.183594, -72.659588 ], [ -13.007812, -72.659588 ], [ -13.007812, -72.607120 ], [ -12.832031, -72.607120 ], [ -12.832031, -72.554498 ], [ -12.656250, -72.554498 ], [ -12.656250, -72.501722 ], [ -12.480469, -72.501722 ], [ -12.480469, -72.448792 ], [ -12.304688, -72.448792 ], [ -12.304688, -72.395706 ], [ -12.128906, -72.395706 ], [ -12.128906, -72.289067 ], [ -11.953125, -72.289067 ], [ -11.953125, -72.235514 ], [ -11.777344, -72.235514 ], [ -11.777344, -72.181804 ], [ -11.601562, -72.181804 ], [ -11.601562, -72.073911 ], [ -11.425781, -72.073911 ], [ -11.425781, -71.910888 ], [ -11.250000, -71.910888 ], [ -11.250000, -71.691293 ], [ -11.074219, -71.691293 ], [ -11.074219, -71.524909 ], [ -10.898438, -71.524909 ], [ -10.898438, -71.469124 ], [ -10.722656, -71.469124 ], [ -10.722656, -71.357067 ], [ -10.546875, -71.357067 ], [ -10.546875, -71.300793 ], [ -10.371094, -71.300793 ], [ -10.371094, -71.244356 ], [ -9.843750, -71.244356 ], [ -9.843750, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.357067 ], [ -8.964844, -71.357067 ], [ -8.964844, -71.469124 ], [ -8.789062, -71.469124 ], [ -8.789062, -71.580532 ], [ -8.613281, -71.580532 ], [ -8.613281, -71.635993 ], [ -8.085938, -71.635993 ], [ -8.085938, -71.691293 ], [ -7.382812, -71.691293 ], [ -7.382812, -71.244356 ], [ -7.207031, -71.244356 ], [ -7.207031, -71.130988 ], [ -7.031250, -71.130988 ], [ -7.031250, -71.016960 ], [ -6.855469, -71.016960 ], [ -6.855469, -70.959697 ], [ -6.503906, -70.959697 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.703125, -77.952414 ], [ -45.703125, -77.989049 ], [ -45.351562, -77.989049 ], [ -45.351562, -78.025574 ], [ -45.175781, -78.025574 ], [ -45.175781, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.134493 ], [ -44.824219, -78.134493 ], [ -44.824219, -78.206563 ], [ -44.648438, -78.206563 ], [ -44.648438, -78.242436 ], [ -44.472656, -78.242436 ], [ -44.472656, -78.313860 ], [ -44.296875, -78.313860 ], [ -44.296875, -78.384855 ], [ -44.121094, -78.384855 ], [ -44.121094, -78.455425 ], [ -43.945312, -78.455425 ], [ -43.945312, -78.630006 ], [ -43.769531, -78.630006 ], [ -43.769531, -78.937708 ], [ -43.593750, -78.937708 ], [ -43.593750, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.952414 ], [ -45.703125, -77.952414 ] ] ], [ [ [ -6.855469, -70.902268 ], [ -6.855469, -70.959697 ], [ -6.152344, -70.959697 ], [ -6.152344, -71.016960 ], [ -5.800781, -71.016960 ], [ -5.800781, -71.187754 ], [ -5.625000, -71.187754 ], [ -5.625000, -71.357067 ], [ -5.097656, -71.357067 ], [ -5.097656, -71.413177 ], [ -4.042969, -71.413177 ], [ -4.042969, -71.357067 ], [ -3.691406, -71.357067 ], [ -3.691406, -71.300793 ], [ -3.339844, -71.300793 ], [ -3.339844, -71.244356 ], [ -2.812500, -71.244356 ], [ -2.812500, -71.187754 ], [ -2.109375, -71.187754 ], [ -2.109375, -71.130988 ], [ -1.406250, -71.130988 ], [ -1.406250, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.300793 ], [ -0.527344, -71.300793 ], [ -0.527344, -71.524909 ], [ -0.351562, -71.524909 ], [ -0.351562, -71.635993 ], [ -0.175781, -71.635993 ], [ -0.175781, -71.580532 ], [ 0.000000, -71.580532 ], [ 0.000000, -71.524909 ], [ 0.175781, -71.524909 ], [ 0.175781, -71.469124 ], [ 0.351562, -71.469124 ], [ 0.351562, -71.413177 ], [ 0.527344, -71.413177 ], [ 0.527344, -71.357067 ], [ 0.703125, -71.357067 ], [ 0.703125, -71.300793 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.707031, -79.335219 ], [ -29.707031, -79.237185 ], [ -30.585938, -79.237185 ], [ -30.585938, -79.269962 ], [ -31.640625, -79.269962 ], [ -31.640625, -79.302640 ], [ -31.992188, -79.302640 ], [ -31.992188, -79.335219 ], [ -35.859375, -79.335219 ], [ -35.859375, -79.204309 ], [ -36.035156, -79.204309 ], [ -36.035156, -78.699106 ], [ -35.859375, -78.699106 ], [ -35.859375, -78.278201 ], [ -35.683594, -78.278201 ], [ -35.683594, -78.206563 ], [ -35.507812, -78.206563 ], [ -35.507812, -78.134493 ], [ -35.332031, -78.134493 ], [ -35.332031, -78.098296 ], [ -35.156250, -78.098296 ], [ -35.156250, -78.061989 ], [ -34.804688, -78.061989 ], [ -34.804688, -78.025574 ], [ -34.628906, -78.025574 ], [ -34.628906, -77.989049 ], [ -34.453125, -77.989049 ], [ -34.453125, -77.952414 ], [ -34.101562, -77.952414 ], [ -34.101562, -77.915669 ], [ -33.925781, -77.915669 ], [ -33.925781, -77.878814 ], [ -33.750000, -77.878814 ], [ -33.750000, -77.841848 ], [ -33.574219, -77.841848 ], [ -33.574219, -77.804771 ], [ -33.222656, -77.804771 ], [ -33.222656, -77.767582 ], [ -33.046875, -77.767582 ], [ -33.046875, -77.730282 ], [ -32.871094, -77.730282 ], [ -32.871094, -77.692870 ], [ -32.519531, -77.692870 ], [ -32.519531, -77.655346 ], [ -32.343750, -77.655346 ], [ -32.343750, -77.617709 ], [ -32.167969, -77.617709 ], [ -32.167969, -77.579959 ], [ -31.992188, -77.579959 ], [ -31.992188, -77.542096 ], [ -31.816406, -77.542096 ], [ -31.816406, -77.504119 ], [ -31.640625, -77.504119 ], [ -31.640625, -77.466028 ], [ -31.464844, -77.466028 ], [ -31.464844, -77.427824 ], [ -31.289062, -77.427824 ], [ -31.289062, -77.389504 ], [ -31.113281, -77.389504 ], [ -31.113281, -77.351070 ], [ -30.937500, -77.351070 ], [ -30.937500, -77.312520 ], [ -30.761719, -77.312520 ], [ -30.761719, -77.273855 ], [ -30.585938, -77.273855 ], [ -30.585938, -77.196176 ], [ -30.410156, -77.196176 ], [ -30.410156, -77.157163 ], [ -30.234375, -77.157163 ], [ -30.234375, -77.118032 ], [ -30.058594, -77.118032 ], [ -30.058594, -77.078784 ], [ -29.882812, -77.078784 ], [ -29.882812, -76.999935 ], [ -29.707031, -76.999935 ], [ -29.707031, -76.920614 ], [ -29.531250, -76.920614 ], [ -29.531250, -76.840816 ], [ -29.355469, -76.840816 ], [ -29.355469, -76.760541 ], [ -29.179688, -76.760541 ], [ -29.179688, -76.679785 ], [ -29.003906, -76.679785 ], [ -29.003906, -76.639226 ], [ -28.652344, -76.639226 ], [ -28.652344, -76.598545 ], [ -28.300781, -76.598545 ], [ -28.300781, -76.557743 ], [ -27.949219, -76.557743 ], [ -27.949219, -76.516819 ], [ -27.597656, -76.516819 ], [ -27.597656, -76.475773 ], [ -27.246094, -76.475773 ], [ -27.246094, -76.434604 ], [ -26.718750, -76.434604 ], [ -26.718750, -76.393312 ], [ -26.367188, -76.393312 ], [ -26.367188, -76.351896 ], [ -25.839844, -76.351896 ], [ -25.839844, -76.310358 ], [ -25.488281, -76.310358 ], [ -25.488281, -76.268695 ], [ -24.609375, -76.268695 ], [ -24.609375, -76.226907 ], [ -23.730469, -76.226907 ], [ -23.730469, -76.184995 ], [ -23.203125, -76.184995 ], [ -23.203125, -76.142958 ], [ -22.675781, -76.142958 ], [ -22.675781, -76.100796 ], [ -22.324219, -76.100796 ], [ -22.324219, -76.058508 ], [ -21.972656, -76.058508 ], [ -21.972656, -76.016094 ], [ -21.796875, -76.016094 ], [ -21.796875, -75.973553 ], [ -21.621094, -75.973553 ], [ -21.621094, -75.930885 ], [ -21.269531, -75.930885 ], [ -21.269531, -75.888091 ], [ -21.093750, -75.888091 ], [ -21.093750, -75.845169 ], [ -20.742188, -75.845169 ], [ -20.742188, -75.802118 ], [ -20.566406, -75.802118 ], [ -20.566406, -75.758940 ], [ -20.390625, -75.758940 ], [ -20.390625, -75.715633 ], [ -20.039062, -75.715633 ], [ -20.039062, -75.672197 ], [ -19.863281, -75.672197 ], [ -19.863281, -75.628632 ], [ -19.687500, -75.628632 ], [ -19.687500, -75.584937 ], [ -19.511719, -75.584937 ], [ -19.511719, -75.541113 ], [ -19.335938, -75.541113 ], [ -19.335938, -75.497157 ], [ -19.160156, -75.497157 ], [ -19.160156, -75.453071 ], [ -18.984375, -75.453071 ], [ -18.984375, -75.408854 ], [ -18.808594, -75.408854 ], [ -18.808594, -75.364506 ], [ -18.632812, -75.364506 ], [ -18.632812, -75.320025 ], [ -18.457031, -75.320025 ], [ -18.457031, -75.275413 ], [ -18.105469, -75.275413 ], [ -18.105469, -75.230667 ], [ -17.929688, -75.230667 ], [ -17.929688, -75.185789 ], [ -17.753906, -75.185789 ], [ -17.753906, -75.140778 ], [ -17.578125, -75.140778 ], [ -17.578125, -75.095633 ], [ -17.402344, -75.095633 ], [ -17.402344, -75.004940 ], [ -17.226562, -75.004940 ], [ -17.226562, -74.959392 ], [ -17.050781, -74.959392 ], [ -17.050781, -74.913708 ], [ -16.875000, -74.913708 ], [ -16.875000, -74.821934 ], [ -16.699219, -74.821934 ], [ -16.699219, -74.775843 ], [ -16.523438, -74.775843 ], [ -16.523438, -74.729615 ], [ -16.347656, -74.729615 ], [ -16.347656, -74.636748 ], [ -16.171875, -74.636748 ], [ -16.171875, -74.590108 ], [ -15.996094, -74.590108 ], [ -15.996094, -74.543330 ], [ -15.820312, -74.543330 ], [ -15.820312, -74.402163 ], [ -15.644531, -74.402163 ], [ -15.644531, -74.211983 ], [ -15.468750, -74.211983 ], [ -15.468750, -74.067866 ], [ -15.644531, -74.067866 ], [ -15.644531, -74.019543 ], [ -15.820312, -74.019543 ], [ -15.820312, -73.971078 ], [ -16.171875, -73.971078 ], [ -16.171875, -73.922469 ], [ -16.347656, -73.922469 ], [ -16.347656, -73.873717 ], [ -16.523438, -73.873717 ], [ -16.523438, -73.726595 ], [ -16.347656, -73.726595 ], [ -16.347656, -73.528399 ], [ -16.171875, -73.528399 ], [ -16.171875, -73.428424 ], [ -15.996094, -73.428424 ], [ -15.996094, -73.327858 ], [ -15.820312, -73.327858 ], [ -15.820312, -73.277353 ], [ -15.644531, -73.277353 ], [ -15.644531, -73.175897 ], [ -15.468750, -73.175897 ], [ -15.468750, -73.124945 ], [ -15.292969, -73.124945 ], [ -15.292969, -73.073844 ], [ -14.941406, -73.073844 ], [ -14.941406, -73.022592 ], [ -14.765625, -73.022592 ], [ -14.765625, -72.971189 ], [ -14.414062, -72.971189 ], [ -14.414062, -72.919635 ], [ -14.238281, -72.919635 ], [ -14.238281, -72.867930 ], [ -13.886719, -72.867930 ], [ -13.886719, -72.816074 ], [ -13.710938, -72.816074 ], [ -13.710938, -72.764065 ], [ -13.359375, -72.764065 ], [ -13.359375, -72.711903 ], [ -13.183594, -72.711903 ], [ -13.183594, -72.659588 ], [ -13.007812, -72.659588 ], [ -13.007812, -72.607120 ], [ -12.832031, -72.607120 ], [ -12.832031, -72.554498 ], [ -12.656250, -72.554498 ], [ -12.656250, -72.501722 ], [ -12.480469, -72.501722 ], [ -12.480469, -72.448792 ], [ -12.304688, -72.448792 ], [ -12.304688, -72.342464 ], [ -12.128906, -72.342464 ], [ -12.128906, -72.235514 ], [ -11.953125, -72.235514 ], [ -11.953125, -72.127936 ], [ -11.777344, -72.127936 ], [ -11.777344, -72.019729 ], [ -11.601562, -72.019729 ], [ -11.601562, -71.910888 ], [ -11.425781, -71.910888 ], [ -11.425781, -71.746432 ], [ -11.250000, -71.746432 ], [ -11.250000, -71.635993 ], [ -11.074219, -71.635993 ], [ -11.074219, -71.524909 ], [ -10.898438, -71.524909 ], [ -10.898438, -71.469124 ], [ -10.722656, -71.469124 ], [ -10.722656, -71.357067 ], [ -10.546875, -71.357067 ], [ -10.546875, -71.300793 ], [ -10.371094, -71.300793 ], [ -10.371094, -71.244356 ], [ -9.843750, -71.244356 ], [ -9.843750, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.357067 ], [ -8.964844, -71.357067 ], [ -8.964844, -71.469124 ], [ -8.789062, -71.469124 ], [ -8.789062, -71.580532 ], [ -8.613281, -71.580532 ], [ -8.613281, -71.635993 ], [ -8.261719, -71.635993 ], [ -8.261719, -71.691293 ], [ -7.558594, -71.691293 ], [ -7.558594, -71.524909 ], [ -7.382812, -71.524909 ], [ -7.382812, -71.244356 ], [ -7.207031, -71.244356 ], [ -7.207031, -71.016960 ], [ -7.031250, -71.016960 ], [ -7.031250, -70.902268 ], [ -6.855469, -70.902268 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.703125, -1.230374 ], [ -45.703125, -1.406109 ], [ -45.175781, -1.406109 ], [ -45.175781, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -43.945312, -2.635789 ], [ -43.945312, -2.460181 ], [ -43.242188, -2.460181 ], [ -43.242188, -2.635789 ], [ -42.539062, -2.635789 ], [ -42.539062, -2.811371 ], [ -41.835938, -2.811371 ], [ -41.835938, -2.986927 ], [ -40.605469, -2.986927 ], [ -40.605469, -2.811371 ], [ -39.902344, -2.811371 ], [ -39.902344, -2.986927 ], [ -39.550781, -2.986927 ], [ -39.550781, -3.162456 ], [ -39.375000, -3.162456 ], [ -39.375000, -3.337954 ], [ -39.023438, -3.337954 ], [ -39.023438, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -3.688855 ], [ -38.496094, -3.688855 ], [ -38.496094, -3.864255 ], [ -38.320312, -3.864255 ], [ -38.320312, -4.039618 ], [ -38.144531, -4.039618 ], [ -38.144531, -4.214943 ], [ -37.792969, -4.214943 ], [ -37.792969, -4.390229 ], [ -37.617188, -4.390229 ], [ -37.617188, -4.565474 ], [ -37.441406, -4.565474 ], [ -37.441406, -4.740675 ], [ -37.089844, -4.740675 ], [ -37.089844, -4.915833 ], [ -36.738281, -4.915833 ], [ -36.738281, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.683594, -5.266008 ], [ -35.332031, -5.266008 ], [ -35.332031, -5.441022 ], [ -35.156250, -5.441022 ], [ -35.156250, -6.140555 ], [ -34.980469, -6.140555 ], [ -34.980469, -7.013668 ], [ -34.804688, -7.013668 ], [ -34.804688, -7.885147 ], [ -34.980469, -7.885147 ], [ -34.980469, -8.581021 ], [ -35.156250, -8.581021 ], [ -35.156250, -9.102097 ], [ -35.332031, -9.102097 ], [ -35.332031, -9.275622 ], [ -35.507812, -9.275622 ], [ -35.507812, -9.622414 ], [ -35.683594, -9.622414 ], [ -35.683594, -9.795678 ], [ -35.859375, -9.795678 ], [ -35.859375, -9.968851 ], [ -36.035156, -9.968851 ], [ -36.035156, -10.141932 ], [ -36.210938, -10.141932 ], [ -36.210938, -10.314919 ], [ -36.386719, -10.314919 ], [ -36.386719, -10.487812 ], [ -36.562500, -10.487812 ], [ -36.562500, -10.660608 ], [ -36.738281, -10.660608 ], [ -36.738281, -10.833306 ], [ -36.914062, -10.833306 ], [ -36.914062, -11.005904 ], [ -37.089844, -11.005904 ], [ -37.089844, -11.350797 ], [ -37.265625, -11.350797 ], [ -37.265625, -11.695273 ], [ -37.441406, -11.695273 ], [ -37.441406, -12.039321 ], [ -37.617188, -12.039321 ], [ -37.617188, -12.382928 ], [ -37.792969, -12.382928 ], [ -37.792969, -12.554564 ], [ -37.968750, -12.554564 ], [ -37.968750, -12.726084 ], [ -38.144531, -12.726084 ], [ -38.144531, -12.897489 ], [ -38.320312, -12.897489 ], [ -38.320312, -13.068777 ], [ -38.671875, -13.068777 ], [ -38.671875, -13.239945 ], [ -38.847656, -13.239945 ], [ -38.847656, -13.581921 ], [ -39.023438, -13.581921 ], [ -39.023438, -14.774883 ], [ -38.847656, -14.774883 ], [ -38.847656, -16.130262 ], [ -39.023438, -16.130262 ], [ -39.023438, -16.804541 ], [ -39.199219, -16.804541 ], [ -39.199219, -17.978733 ], [ -39.375000, -17.978733 ], [ -39.375000, -18.312811 ], [ -39.550781, -18.312811 ], [ -39.550781, -18.979026 ], [ -39.726562, -18.979026 ], [ -39.726562, -19.808054 ], [ -39.902344, -19.808054 ], [ -39.902344, -19.973349 ], [ -40.078125, -19.973349 ], [ -40.078125, -20.303418 ], [ -40.253906, -20.303418 ], [ -40.253906, -20.468189 ], [ -40.429688, -20.468189 ], [ -40.429688, -20.632784 ], [ -40.605469, -20.632784 ], [ -40.605469, -20.961440 ], [ -40.781250, -20.961440 ], [ -40.781250, -21.453069 ], [ -40.957031, -21.453069 ], [ -40.957031, -22.105999 ], [ -41.308594, -22.105999 ], [ -41.308594, -22.268764 ], [ -41.660156, -22.268764 ], [ -41.660156, -22.431340 ], [ -41.835938, -22.431340 ], [ -41.835938, -22.755921 ], [ -42.011719, -22.755921 ], [ -42.011719, -22.917923 ], [ -43.242188, -22.917923 ], [ -43.242188, -23.079732 ], [ -43.769531, -23.079732 ], [ -43.769531, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.402765 ], [ -44.648438, -23.402765 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -45.878906, -23.885838 ], [ -45.878906, -1.230374 ], [ -45.703125, -1.230374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.703125, -1.054628 ], [ -45.703125, -1.230374 ], [ -45.351562, -1.230374 ], [ -45.351562, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -44.296875, -2.635789 ], [ -44.296875, -2.460181 ], [ -43.593750, -2.460181 ], [ -43.593750, -2.284551 ], [ -43.242188, -2.284551 ], [ -43.242188, -2.460181 ], [ -42.539062, -2.460181 ], [ -42.539062, -2.635789 ], [ -41.835938, -2.635789 ], [ -41.835938, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -2.986927 ], [ -39.726562, -2.986927 ], [ -39.726562, -3.162456 ], [ -39.550781, -3.162456 ], [ -39.550781, -3.337954 ], [ -39.199219, -3.337954 ], [ -39.199219, -3.513421 ], [ -38.847656, -3.513421 ], [ -38.847656, -3.688855 ], [ -38.671875, -3.688855 ], [ -38.671875, -3.864255 ], [ -38.496094, -3.864255 ], [ -38.496094, -4.039618 ], [ -38.144531, -4.039618 ], [ -38.144531, -4.214943 ], [ -37.968750, -4.214943 ], [ -37.968750, -4.390229 ], [ -37.792969, -4.390229 ], [ -37.792969, -4.565474 ], [ -37.441406, -4.565474 ], [ -37.441406, -4.740675 ], [ -37.265625, -4.740675 ], [ -37.265625, -4.915833 ], [ -36.914062, -4.915833 ], [ -36.914062, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.683594, -5.266008 ], [ -35.507812, -5.266008 ], [ -35.507812, -5.441022 ], [ -35.332031, -5.441022 ], [ -35.332031, -5.790897 ], [ -35.156250, -5.790897 ], [ -35.156250, -6.489983 ], [ -34.980469, -6.489983 ], [ -34.980469, -7.013668 ], [ -34.804688, -7.013668 ], [ -34.804688, -7.710992 ], [ -34.980469, -7.710992 ], [ -34.980469, -8.581021 ], [ -35.156250, -8.581021 ], [ -35.156250, -9.102097 ], [ -35.332031, -9.102097 ], [ -35.332031, -9.275622 ], [ -35.507812, -9.275622 ], [ -35.507812, -9.622414 ], [ -35.683594, -9.622414 ], [ -35.683594, -9.795678 ], [ -35.859375, -9.795678 ], [ -35.859375, -9.968851 ], [ -36.035156, -9.968851 ], [ -36.035156, -10.141932 ], [ -36.210938, -10.141932 ], [ -36.210938, -10.314919 ], [ -36.386719, -10.314919 ], [ -36.386719, -10.487812 ], [ -36.562500, -10.487812 ], [ -36.562500, -10.660608 ], [ -36.738281, -10.660608 ], [ -36.738281, -10.833306 ], [ -36.914062, -10.833306 ], [ -36.914062, -11.005904 ], [ -37.089844, -11.005904 ], [ -37.089844, -11.178402 ], [ -37.265625, -11.178402 ], [ -37.265625, -11.523088 ], [ -37.441406, -11.523088 ], [ -37.441406, -11.695273 ], [ -37.617188, -11.695273 ], [ -37.617188, -12.039321 ], [ -37.792969, -12.039321 ], [ -37.792969, -12.211180 ], [ -37.968750, -12.211180 ], [ -37.968750, -12.382928 ], [ -38.144531, -12.382928 ], [ -38.144531, -12.726084 ], [ -38.320312, -12.726084 ], [ -38.320312, -12.897489 ], [ -38.671875, -12.897489 ], [ -38.671875, -13.239945 ], [ -38.847656, -13.239945 ], [ -38.847656, -13.581921 ], [ -39.023438, -13.581921 ], [ -39.023438, -16.467695 ], [ -39.199219, -16.467695 ], [ -39.199219, -17.476432 ], [ -39.375000, -17.476432 ], [ -39.375000, -17.978733 ], [ -39.550781, -17.978733 ], [ -39.550781, -18.145852 ], [ -39.726562, -18.145852 ], [ -39.726562, -18.812718 ], [ -39.902344, -18.812718 ], [ -39.902344, -19.642588 ], [ -40.078125, -19.642588 ], [ -40.078125, -19.973349 ], [ -40.253906, -19.973349 ], [ -40.253906, -20.138470 ], [ -40.429688, -20.138470 ], [ -40.429688, -20.468189 ], [ -40.605469, -20.468189 ], [ -40.605469, -20.797201 ], [ -40.781250, -20.797201 ], [ -40.781250, -21.289374 ], [ -40.957031, -21.289374 ], [ -40.957031, -21.943046 ], [ -41.308594, -21.943046 ], [ -41.308594, -22.105999 ], [ -41.660156, -22.105999 ], [ -41.660156, -22.268764 ], [ -41.835938, -22.268764 ], [ -41.835938, -22.593726 ], [ -42.011719, -22.593726 ], [ -42.011719, -22.917923 ], [ -43.417969, -22.917923 ], [ -43.417969, -23.079732 ], [ -44.121094, -23.079732 ], [ -44.121094, -23.241346 ], [ -44.648438, -23.241346 ], [ -44.648438, -23.402765 ], [ -44.824219, -23.402765 ], [ -44.824219, -23.563987 ], [ -45.175781, -23.563987 ], [ -45.175781, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -45.878906, -23.885838 ], [ -45.878906, -1.054628 ], [ -45.703125, -1.054628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.641526 ], [ -11.953125, 23.402765 ], [ -12.304688, 23.402765 ], [ -12.304688, 23.241346 ], [ -12.832031, 23.241346 ], [ -12.832031, 23.079732 ], [ -13.007812, 23.079732 ], [ -13.007812, 22.755921 ], [ -13.183594, 22.755921 ], [ -13.183594, 21.943046 ], [ -13.007812, 21.943046 ], [ -13.007812, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.125498 ], [ -17.050781, 21.125498 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.453069 ], [ -14.765625, 21.616579 ], [ -14.589844, 21.616579 ], [ -14.589844, 21.779905 ], [ -14.414062, 21.779905 ], [ -14.414062, 22.105999 ], [ -14.238281, 22.105999 ], [ -14.238281, 22.593726 ], [ -14.062500, 22.593726 ], [ -14.062500, 23.241346 ], [ -13.886719, 23.241346 ], [ -13.886719, 23.725012 ], [ -13.710938, 23.725012 ], [ -13.710938, 23.885838 ], [ -13.535156, 23.885838 ], [ -13.535156, 24.046464 ], [ -13.359375, 24.046464 ], [ -13.359375, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.367114 ], [ -12.832031, 24.367114 ], [ -12.832031, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 24.686952 ], [ -12.480469, 24.686952 ], [ -12.480469, 25.005973 ], [ -12.304688, 25.005973 ], [ -12.304688, 25.324167 ], [ -12.128906, 25.324167 ], [ -12.128906, 25.641526 ], [ -11.953125, 25.641526 ] ] ], [ [ [ -11.777344, 25.958045 ], [ -11.777344, 26.273714 ], [ -11.601562, 26.273714 ], [ -11.601562, 26.588527 ], [ -11.425781, 26.588527 ], [ -11.425781, 26.902477 ], [ -10.898438, 26.902477 ], [ -10.898438, 27.059126 ], [ -10.546875, 27.059126 ], [ -10.546875, 26.902477 ], [ -9.492188, 26.902477 ], [ -9.492188, 27.059126 ], [ -8.789062, 27.059126 ], [ -8.789062, 27.683528 ], [ -8.613281, 27.683528 ], [ -8.613281, 25.958045 ], [ -11.777344, 25.958045 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -17.050781, 21.289374 ], [ -17.050781, 21.125498 ], [ -17.226562, 21.125498 ], [ -17.226562, 21.289374 ], [ -17.050781, 21.289374 ] ] ], [ [ [ -16.875000, 21.453069 ], [ -16.875000, 21.289374 ], [ -17.050781, 21.289374 ], [ -17.050781, 21.453069 ], [ -16.875000, 21.453069 ] ] ], [ [ [ -12.128906, 24.686952 ], [ -11.953125, 24.686952 ], [ -11.953125, 23.402765 ], [ -13.007812, 23.402765 ], [ -13.007812, 23.079732 ], [ -13.183594, 23.079732 ], [ -13.183594, 22.105999 ], [ -13.007812, 22.105999 ], [ -13.007812, 21.453069 ], [ -15.820312, 21.453069 ], [ -15.820312, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.943046 ], [ -14.589844, 21.943046 ], [ -14.589844, 22.105999 ], [ -14.414062, 22.105999 ], [ -14.414062, 22.268764 ], [ -14.238281, 22.268764 ], [ -14.238281, 23.079732 ], [ -14.062500, 23.079732 ], [ -14.062500, 23.725012 ], [ -13.886719, 23.725012 ], [ -13.886719, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 24.046464 ], [ -13.535156, 24.046464 ], [ -13.535156, 24.206890 ], [ -13.183594, 24.206890 ], [ -13.183594, 24.367114 ], [ -13.007812, 24.367114 ], [ -13.007812, 24.527135 ], [ -12.832031, 24.527135 ], [ -12.832031, 24.686952 ], [ -12.656250, 24.686952 ], [ -12.656250, 25.005973 ], [ -12.480469, 25.005973 ], [ -12.480469, 25.482951 ], [ -12.304688, 25.482951 ], [ -12.304688, 25.799891 ], [ -12.128906, 25.799891 ], [ -12.128906, 24.686952 ] ] ], [ [ [ -8.789062, 25.958045 ], [ -12.128906, 25.958045 ], [ -12.128906, 26.115986 ], [ -11.777344, 26.115986 ], [ -11.777344, 26.273714 ], [ -11.601562, 26.273714 ], [ -11.601562, 26.588527 ], [ -11.425781, 26.588527 ], [ -11.425781, 26.902477 ], [ -10.898438, 26.902477 ], [ -10.898438, 27.059126 ], [ -10.546875, 27.059126 ], [ -10.546875, 26.902477 ], [ -9.667969, 26.902477 ], [ -9.667969, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 27.215556 ], [ -8.964844, 27.215556 ], [ -8.964844, 27.683528 ], [ -8.789062, 27.683528 ], [ -8.789062, 25.958045 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.503906, 41.640078 ], [ -6.503906, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.178873 ], [ -7.031250, 40.178873 ], [ -7.031250, 39.774769 ], [ -7.207031, 39.774769 ], [ -7.207031, 39.639538 ], [ -7.558594, 39.639538 ], [ -7.558594, 39.504041 ], [ -7.382812, 39.504041 ], [ -7.382812, 39.368279 ], [ -7.207031, 39.368279 ], [ -7.207031, 39.095963 ], [ -7.031250, 39.095963 ], [ -7.031250, 38.822591 ], [ -7.207031, 38.822591 ], [ -7.207031, 38.548165 ], [ -7.382812, 38.548165 ], [ -7.382812, 38.272689 ], [ -7.207031, 38.272689 ], [ -7.207031, 38.134557 ], [ -7.031250, 38.134557 ], [ -7.031250, 37.996163 ], [ -7.207031, 37.996163 ], [ -7.207031, 37.718590 ], [ -7.382812, 37.718590 ], [ -7.382812, 37.439974 ], [ -7.558594, 37.439974 ], [ -7.558594, 37.300275 ], [ -7.382812, 37.300275 ], [ -7.382812, 37.020098 ], [ -7.734375, 37.020098 ], [ -7.734375, 36.879621 ], [ -8.261719, 36.879621 ], [ -8.261719, 37.020098 ], [ -8.613281, 37.020098 ], [ -8.613281, 36.879621 ], [ -8.964844, 36.879621 ], [ -8.964844, 37.300275 ], [ -8.789062, 37.300275 ], [ -8.789062, 38.272689 ], [ -9.140625, 38.272689 ], [ -9.140625, 38.410558 ], [ -9.316406, 38.410558 ], [ -9.316406, 38.548165 ], [ -9.492188, 38.548165 ], [ -9.492188, 39.368279 ], [ -9.316406, 39.368279 ], [ -9.316406, 39.504041 ], [ -9.140625, 39.504041 ], [ -9.140625, 39.639538 ], [ -8.964844, 39.639538 ], [ -8.964844, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.376809 ], [ -8.964844, 41.376809 ], [ -8.964844, 41.640078 ], [ -6.503906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.679688, 41.640078 ], [ -6.679688, 41.508577 ], [ -6.503906, 41.508577 ], [ -6.503906, 41.376809 ], [ -6.679688, 41.376809 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.713956 ], [ -7.031250, 40.713956 ], [ -7.031250, 40.044438 ], [ -7.207031, 40.044438 ], [ -7.207031, 39.639538 ], [ -7.558594, 39.639538 ], [ -7.558594, 39.504041 ], [ -7.382812, 39.504041 ], [ -7.382812, 39.232253 ], [ -7.207031, 39.232253 ], [ -7.207031, 38.685510 ], [ -7.382812, 38.685510 ], [ -7.382812, 38.272689 ], [ -7.207031, 38.272689 ], [ -7.207031, 38.134557 ], [ -7.031250, 38.134557 ], [ -7.031250, 37.996163 ], [ -7.207031, 37.996163 ], [ -7.207031, 37.718590 ], [ -7.382812, 37.718590 ], [ -7.382812, 37.439974 ], [ -7.558594, 37.439974 ], [ -7.558594, 37.020098 ], [ -7.734375, 37.020098 ], [ -7.734375, 36.879621 ], [ -8.261719, 36.879621 ], [ -8.261719, 37.020098 ], [ -8.613281, 37.020098 ], [ -8.613281, 36.879621 ], [ -8.964844, 36.879621 ], [ -8.964844, 37.300275 ], [ -8.789062, 37.300275 ], [ -8.789062, 37.996163 ], [ -8.964844, 37.996163 ], [ -8.964844, 38.272689 ], [ -9.316406, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.492188, 38.410558 ], [ -9.492188, 38.685510 ], [ -9.667969, 38.685510 ], [ -9.667969, 39.095963 ], [ -9.492188, 39.095963 ], [ -9.492188, 39.504041 ], [ -9.316406, 39.504041 ], [ -9.316406, 39.639538 ], [ -9.140625, 39.639538 ], [ -9.140625, 40.313043 ], [ -8.964844, 40.313043 ], [ -8.964844, 40.580585 ], [ -8.789062, 40.580585 ], [ -8.789062, 41.244772 ], [ -8.964844, 41.244772 ], [ -8.964844, 41.508577 ], [ -9.140625, 41.508577 ], [ -9.140625, 41.640078 ], [ -6.679688, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.175781, 40.178873 ], [ 0.175781, 40.044438 ], [ 0.000000, 40.044438 ], [ 0.000000, 39.774769 ], [ -0.175781, 39.774769 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ 0.175781, 38.685510 ], [ 0.175781, 38.548165 ], [ 0.000000, 38.548165 ], [ 0.000000, 38.410558 ], [ -0.351562, 38.410558 ], [ -0.351562, 38.272689 ], [ -0.527344, 38.272689 ], [ -0.527344, 37.857507 ], [ -0.703125, 37.857507 ], [ -0.703125, 37.579413 ], [ -0.878906, 37.579413 ], [ -0.878906, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.300275 ], [ -1.582031, 37.300275 ], [ -1.582031, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 36.879621 ], [ -1.933594, 36.879621 ], [ -1.933594, 36.738884 ], [ -2.636719, 36.738884 ], [ -2.636719, 36.597889 ], [ -4.042969, 36.597889 ], [ -4.042969, 36.738884 ], [ -4.394531, 36.738884 ], [ -4.394531, 36.597889 ], [ -4.570312, 36.597889 ], [ -4.570312, 36.456636 ], [ -4.746094, 36.456636 ], [ -4.746094, 36.315125 ], [ -4.921875, 36.315125 ], [ -4.921875, 36.173357 ], [ -5.097656, 36.173357 ], [ -5.097656, 36.031332 ], [ -5.273438, 36.031332 ], [ -5.273438, 35.889050 ], [ -5.800781, 35.889050 ], [ -5.800781, 36.031332 ], [ -5.976562, 36.031332 ], [ -5.976562, 36.173357 ], [ -6.152344, 36.173357 ], [ -6.152344, 36.456636 ], [ -6.328125, 36.456636 ], [ -6.328125, 36.738884 ], [ -6.503906, 36.738884 ], [ -6.503906, 36.879621 ], [ -6.855469, 36.879621 ], [ -6.855469, 37.020098 ], [ -7.207031, 37.020098 ], [ -7.207031, 37.160317 ], [ -7.382812, 37.160317 ], [ -7.382812, 37.300275 ], [ -7.558594, 37.300275 ], [ -7.558594, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 37.718590 ], [ -7.207031, 37.718590 ], [ -7.207031, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 38.134557 ], [ -7.207031, 38.134557 ], [ -7.207031, 38.272689 ], [ -7.382812, 38.272689 ], [ -7.382812, 38.548165 ], [ -7.207031, 38.548165 ], [ -7.207031, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 39.095963 ], [ -7.207031, 39.095963 ], [ -7.207031, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 39.504041 ], [ -7.558594, 39.504041 ], [ -7.558594, 39.639538 ], [ -7.207031, 39.639538 ], [ -7.207031, 39.774769 ], [ -7.031250, 39.774769 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.178873 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.503906, 41.508577 ], [ -6.503906, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.112469 ], [ 0.703125, 41.112469 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.313043 ], [ 0.175781, 40.313043 ], [ 0.175781, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.909736 ], [ -0.175781, 39.909736 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ -0.175781, 38.685510 ], [ -0.175781, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 38.410558 ], [ -0.527344, 38.410558 ], [ -0.527344, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.718590 ], [ -1.054688, 37.718590 ], [ -1.054688, 37.579413 ], [ -1.582031, 37.579413 ], [ -1.582031, 37.439974 ], [ -1.757812, 37.439974 ], [ -1.757812, 37.160317 ], [ -1.933594, 37.160317 ], [ -1.933594, 37.020098 ], [ -2.109375, 37.020098 ], [ -2.109375, 36.738884 ], [ -4.394531, 36.738884 ], [ -4.394531, 36.597889 ], [ -4.746094, 36.597889 ], [ -4.746094, 36.456636 ], [ -5.097656, 36.456636 ], [ -5.097656, 36.315125 ], [ -5.273438, 36.315125 ], [ -5.273438, 36.031332 ], [ -6.152344, 36.031332 ], [ -6.152344, 36.315125 ], [ -6.328125, 36.315125 ], [ -6.328125, 36.597889 ], [ -6.503906, 36.597889 ], [ -6.503906, 36.879621 ], [ -6.679688, 36.879621 ], [ -6.679688, 37.020098 ], [ -7.207031, 37.020098 ], [ -7.207031, 37.160317 ], [ -7.558594, 37.160317 ], [ -7.558594, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 37.718590 ], [ -7.207031, 37.718590 ], [ -7.207031, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 38.134557 ], [ -7.207031, 38.134557 ], [ -7.207031, 38.272689 ], [ -7.382812, 38.272689 ], [ -7.382812, 38.685510 ], [ -7.207031, 38.685510 ], [ -7.207031, 39.232253 ], [ -7.382812, 39.232253 ], [ -7.382812, 39.504041 ], [ -7.558594, 39.504041 ], [ -7.558594, 39.639538 ], [ -7.207031, 39.639538 ], [ -7.207031, 40.044438 ], [ -7.031250, 40.044438 ], [ -7.031250, 40.713956 ], [ -6.855469, 40.713956 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.376809 ], [ -6.503906, 41.376809 ], [ -6.503906, 41.508577 ], [ -6.679688, 41.508577 ], [ -6.679688, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.746512 ], [ -5.273438, 35.603719 ], [ -5.097656, 35.603719 ], [ -5.097656, 35.460670 ], [ -4.746094, 35.460670 ], [ -4.746094, 35.317366 ], [ -4.042969, 35.317366 ], [ -4.042969, 35.460670 ], [ -3.515625, 35.460670 ], [ -3.515625, 35.317366 ], [ -2.988281, 35.317366 ], [ -2.988281, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 35.029996 ], [ -1.933594, 35.029996 ], [ -1.933594, 34.741612 ], [ -1.757812, 34.741612 ], [ -1.757812, 33.578015 ], [ -1.582031, 33.578015 ], [ -1.582031, 32.990236 ], [ -1.406250, 32.990236 ], [ -1.406250, 32.694866 ], [ -1.054688, 32.694866 ], [ -1.054688, 32.398516 ], [ -1.230469, 32.398516 ], [ -1.230469, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 32.101190 ], [ -2.636719, 32.101190 ], [ -2.636719, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 31.653381 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -3.867188, 30.902225 ], [ -3.867188, 30.751278 ], [ -4.218750, 30.751278 ], [ -4.218750, 30.600094 ], [ -4.570312, 30.600094 ], [ -4.570312, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.297018 ], [ -5.097656, 30.297018 ], [ -5.097656, 29.993002 ], [ -5.273438, 29.993002 ], [ -5.273438, 29.840644 ], [ -5.625000, 29.840644 ], [ -5.625000, 29.688053 ], [ -6.328125, 29.688053 ], [ -6.328125, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 29.382175 ], [ -7.382812, 29.382175 ], [ -7.382812, 29.228890 ], [ -7.734375, 29.228890 ], [ -7.734375, 29.075375 ], [ -8.085938, 29.075375 ], [ -8.085938, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 28.767659 ], [ -8.613281, 28.767659 ], [ -8.613281, 27.683528 ], [ -8.789062, 27.683528 ], [ -8.789062, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 26.902477 ], [ -10.546875, 26.902477 ], [ -10.546875, 27.059126 ], [ -10.898438, 27.059126 ], [ -10.898438, 26.902477 ], [ -11.425781, 26.902477 ], [ -11.425781, 26.588527 ], [ -11.601562, 26.588527 ], [ -11.601562, 26.273714 ], [ -11.777344, 26.273714 ], [ -11.777344, 25.958045 ], [ -11.953125, 25.958045 ], [ -11.953125, 25.641526 ], [ -12.128906, 25.641526 ], [ -12.128906, 25.324167 ], [ -12.304688, 25.324167 ], [ -12.304688, 25.005973 ], [ -12.480469, 25.005973 ], [ -12.480469, 24.686952 ], [ -12.656250, 24.686952 ], [ -12.656250, 24.527135 ], [ -12.832031, 24.527135 ], [ -12.832031, 24.367114 ], [ -13.007812, 24.367114 ], [ -13.007812, 24.206890 ], [ -13.359375, 24.206890 ], [ -13.359375, 24.046464 ], [ -13.535156, 24.046464 ], [ -13.535156, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 23.725012 ], [ -13.886719, 23.725012 ], [ -13.886719, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 22.593726 ], [ -14.238281, 22.593726 ], [ -14.238281, 22.105999 ], [ -14.414062, 22.105999 ], [ -14.414062, 21.779905 ], [ -14.589844, 21.779905 ], [ -14.589844, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.453069 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.699219, 21.943046 ], [ -16.699219, 22.105999 ], [ -16.523438, 22.105999 ], [ -16.523438, 22.431340 ], [ -16.347656, 22.431340 ], [ -16.347656, 23.241346 ], [ -16.171875, 23.241346 ], [ -16.171875, 23.563987 ], [ -15.996094, 23.563987 ], [ -15.996094, 23.725012 ], [ -15.820312, 23.725012 ], [ -15.820312, 24.046464 ], [ -15.644531, 24.046464 ], [ -15.644531, 24.206890 ], [ -15.468750, 24.206890 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.367114 ], [ -15.117188, 24.686952 ], [ -14.941406, 24.686952 ], [ -14.941406, 25.005973 ], [ -14.765625, 25.005973 ], [ -14.765625, 25.799891 ], [ -14.589844, 25.799891 ], [ -14.589844, 26.115986 ], [ -14.414062, 26.115986 ], [ -14.414062, 26.273714 ], [ -14.062500, 26.273714 ], [ -14.062500, 26.431228 ], [ -13.710938, 26.431228 ], [ -13.710938, 26.745610 ], [ -13.535156, 26.745610 ], [ -13.535156, 27.059126 ], [ -13.359375, 27.059126 ], [ -13.359375, 27.371767 ], [ -13.183594, 27.371767 ], [ -13.183594, 27.683528 ], [ -13.007812, 27.683528 ], [ -13.007812, 27.839076 ], [ -12.656250, 27.839076 ], [ -12.656250, 27.994401 ], [ -11.953125, 27.994401 ], [ -11.953125, 28.149503 ], [ -11.425781, 28.149503 ], [ -11.425781, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 28.459033 ], [ -11.074219, 28.459033 ], [ -11.074219, 28.613459 ], [ -10.898438, 28.613459 ], [ -10.898438, 28.767659 ], [ -10.722656, 28.767659 ], [ -10.722656, 28.921631 ], [ -10.371094, 28.921631 ], [ -10.371094, 29.075375 ], [ -10.195312, 29.075375 ], [ -10.195312, 29.228890 ], [ -10.019531, 29.228890 ], [ -10.019531, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 29.688053 ], [ -9.667969, 29.688053 ], [ -9.667969, 29.840644 ], [ -9.492188, 29.840644 ], [ -9.492188, 30.297018 ], [ -9.667969, 30.297018 ], [ -9.667969, 30.902225 ], [ -9.843750, 30.902225 ], [ -9.843750, 31.353637 ], [ -9.667969, 31.353637 ], [ -9.667969, 31.802893 ], [ -9.492188, 31.802893 ], [ -9.492188, 32.249974 ], [ -9.316406, 32.249974 ], [ -9.316406, 32.546813 ], [ -9.140625, 32.546813 ], [ -9.140625, 32.694866 ], [ -8.964844, 32.694866 ], [ -8.964844, 32.990236 ], [ -8.789062, 32.990236 ], [ -8.789062, 33.137551 ], [ -8.613281, 33.137551 ], [ -8.613281, 33.284620 ], [ -8.437500, 33.284620 ], [ -8.437500, 33.431441 ], [ -8.085938, 33.431441 ], [ -8.085938, 33.578015 ], [ -7.734375, 33.578015 ], [ -7.734375, 33.724340 ], [ -7.558594, 33.724340 ], [ -7.558594, 33.870416 ], [ -7.207031, 33.870416 ], [ -7.207031, 34.016242 ], [ -6.855469, 34.016242 ], [ -6.855469, 34.307144 ], [ -6.679688, 34.307144 ], [ -6.679688, 34.597042 ], [ -6.503906, 34.597042 ], [ -6.503906, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 35.317366 ], [ -6.152344, 35.317366 ], [ -6.152344, 35.603719 ], [ -5.976562, 35.603719 ], [ -5.976562, 35.746512 ], [ -5.273438, 35.746512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.889050 ], [ -5.273438, 35.746512 ], [ -5.097656, 35.746512 ], [ -5.097656, 35.603719 ], [ -4.921875, 35.603719 ], [ -4.921875, 35.460670 ], [ -3.339844, 35.460670 ], [ -3.339844, 35.317366 ], [ -2.636719, 35.317366 ], [ -2.636719, 35.173808 ], [ -2.285156, 35.173808 ], [ -2.285156, 35.029996 ], [ -2.109375, 35.029996 ], [ -2.109375, 34.741612 ], [ -1.933594, 34.741612 ], [ -1.933594, 34.307144 ], [ -1.757812, 34.307144 ], [ -1.757812, 33.724340 ], [ -1.582031, 33.724340 ], [ -1.582031, 33.137551 ], [ -1.406250, 33.137551 ], [ -1.406250, 32.842674 ], [ -1.230469, 32.842674 ], [ -1.230469, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 32.398516 ], [ -1.582031, 32.398516 ], [ -1.582031, 32.249974 ], [ -2.285156, 32.249974 ], [ -2.285156, 32.101190 ], [ -2.636719, 32.101190 ], [ -2.636719, 31.952162 ], [ -2.988281, 31.952162 ], [ -2.988281, 31.802893 ], [ -3.339844, 31.802893 ], [ -3.339844, 31.653381 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -3.867188, 30.902225 ], [ -3.867188, 30.751278 ], [ -4.570312, 30.751278 ], [ -4.570312, 30.600094 ], [ -4.921875, 30.600094 ], [ -4.921875, 30.448674 ], [ -5.097656, 30.448674 ], [ -5.097656, 30.145127 ], [ -5.449219, 30.145127 ], [ -5.449219, 29.993002 ], [ -5.800781, 29.993002 ], [ -5.800781, 29.840644 ], [ -6.503906, 29.840644 ], [ -6.503906, 29.688053 ], [ -7.207031, 29.688053 ], [ -7.207031, 29.535230 ], [ -7.558594, 29.535230 ], [ -7.558594, 29.382175 ], [ -7.910156, 29.382175 ], [ -7.910156, 29.228890 ], [ -8.261719, 29.228890 ], [ -8.261719, 29.075375 ], [ -8.613281, 29.075375 ], [ -8.613281, 28.921631 ], [ -8.789062, 28.921631 ], [ -8.789062, 27.683528 ], [ -8.964844, 27.683528 ], [ -8.964844, 27.215556 ], [ -9.492188, 27.215556 ], [ -9.492188, 27.059126 ], [ -9.667969, 27.059126 ], [ -9.667969, 26.902477 ], [ -10.546875, 26.902477 ], [ -10.546875, 27.059126 ], [ -10.898438, 27.059126 ], [ -10.898438, 26.902477 ], [ -11.425781, 26.902477 ], [ -11.425781, 26.588527 ], [ -11.601562, 26.588527 ], [ -11.601562, 26.273714 ], [ -11.777344, 26.273714 ], [ -11.777344, 26.115986 ], [ -12.128906, 26.115986 ], [ -12.128906, 25.799891 ], [ -12.304688, 25.799891 ], [ -12.304688, 25.482951 ], [ -12.480469, 25.482951 ], [ -12.480469, 25.005973 ], [ -12.656250, 25.005973 ], [ -12.656250, 24.686952 ], [ -12.832031, 24.686952 ], [ -12.832031, 24.527135 ], [ -13.007812, 24.527135 ], [ -13.007812, 24.367114 ], [ -13.183594, 24.367114 ], [ -13.183594, 24.206890 ], [ -13.535156, 24.206890 ], [ -13.535156, 24.046464 ], [ -13.710938, 24.046464 ], [ -13.710938, 23.885838 ], [ -13.886719, 23.885838 ], [ -13.886719, 23.725012 ], [ -14.062500, 23.725012 ], [ -14.062500, 23.079732 ], [ -14.238281, 23.079732 ], [ -14.238281, 22.268764 ], [ -14.414062, 22.268764 ], [ -14.414062, 22.105999 ], [ -14.589844, 22.105999 ], [ -14.589844, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 21.616579 ], [ -15.820312, 21.616579 ], [ -15.820312, 21.453069 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 22.105999 ], [ -16.699219, 22.105999 ], [ -16.699219, 22.268764 ], [ -16.523438, 22.268764 ], [ -16.523438, 22.593726 ], [ -16.347656, 22.593726 ], [ -16.347656, 23.241346 ], [ -16.171875, 23.241346 ], [ -16.171875, 23.563987 ], [ -15.996094, 23.563987 ], [ -15.996094, 23.725012 ], [ -15.820312, 23.725012 ], [ -15.820312, 24.046464 ], [ -15.644531, 24.046464 ], [ -15.644531, 24.206890 ], [ -15.468750, 24.206890 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.367114 ], [ -15.117188, 24.846565 ], [ -14.941406, 24.846565 ], [ -14.941406, 25.799891 ], [ -14.765625, 25.799891 ], [ -14.765625, 26.115986 ], [ -14.589844, 26.115986 ], [ -14.589844, 26.273714 ], [ -14.414062, 26.273714 ], [ -14.414062, 26.431228 ], [ -14.062500, 26.431228 ], [ -14.062500, 26.588527 ], [ -13.886719, 26.588527 ], [ -13.886719, 26.745610 ], [ -13.710938, 26.745610 ], [ -13.710938, 27.059126 ], [ -13.535156, 27.059126 ], [ -13.535156, 27.215556 ], [ -13.359375, 27.215556 ], [ -13.359375, 27.527758 ], [ -13.183594, 27.527758 ], [ -13.183594, 27.683528 ], [ -13.007812, 27.683528 ], [ -13.007812, 27.839076 ], [ -12.832031, 27.839076 ], [ -12.832031, 27.994401 ], [ -12.656250, 27.994401 ], [ -12.656250, 28.149503 ], [ -11.601562, 28.149503 ], [ -11.601562, 28.304381 ], [ -11.425781, 28.304381 ], [ -11.425781, 28.459033 ], [ -11.250000, 28.459033 ], [ -11.250000, 28.613459 ], [ -11.074219, 28.613459 ], [ -11.074219, 28.767659 ], [ -10.898438, 28.767659 ], [ -10.898438, 28.921631 ], [ -10.722656, 28.921631 ], [ -10.722656, 29.075375 ], [ -10.546875, 29.075375 ], [ -10.546875, 29.228890 ], [ -10.371094, 29.228890 ], [ -10.371094, 29.382175 ], [ -10.195312, 29.382175 ], [ -10.195312, 29.535230 ], [ -10.019531, 29.535230 ], [ -10.019531, 29.688053 ], [ -9.843750, 29.688053 ], [ -9.843750, 29.840644 ], [ -9.667969, 29.840644 ], [ -9.667969, 30.600094 ], [ -9.843750, 30.600094 ], [ -9.843750, 31.353637 ], [ -9.667969, 31.353637 ], [ -9.667969, 31.802893 ], [ -9.492188, 31.802893 ], [ -9.492188, 32.398516 ], [ -9.316406, 32.398516 ], [ -9.316406, 32.694866 ], [ -9.140625, 32.694866 ], [ -9.140625, 32.990236 ], [ -8.964844, 32.990236 ], [ -8.964844, 33.137551 ], [ -8.789062, 33.137551 ], [ -8.789062, 33.284620 ], [ -8.437500, 33.284620 ], [ -8.437500, 33.431441 ], [ -8.085938, 33.431441 ], [ -8.085938, 33.578015 ], [ -7.734375, 33.578015 ], [ -7.734375, 33.724340 ], [ -7.558594, 33.724340 ], [ -7.558594, 33.870416 ], [ -7.207031, 33.870416 ], [ -7.207031, 34.016242 ], [ -7.031250, 34.016242 ], [ -7.031250, 34.161818 ], [ -6.855469, 34.161818 ], [ -6.855469, 34.452218 ], [ -6.679688, 34.452218 ], [ -6.679688, 34.741612 ], [ -6.503906, 34.741612 ], [ -6.503906, 35.029996 ], [ -6.328125, 35.029996 ], [ -6.328125, 35.317366 ], [ -6.152344, 35.317366 ], [ -6.152344, 35.603719 ], [ -5.976562, 35.603719 ], [ -5.976562, 35.889050 ], [ -5.273438, 35.889050 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -14.589844, 16.467695 ], [ -14.238281, 16.467695 ], [ -14.238281, 16.299051 ], [ -14.062500, 16.299051 ], [ -14.062500, 16.130262 ], [ -13.710938, 16.130262 ], [ -13.710938, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.792254 ], [ -13.183594, 15.792254 ], [ -13.183594, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.284185 ], [ -12.832031, 15.284185 ], [ -12.832031, 15.114553 ], [ -12.656250, 15.114553 ], [ -12.656250, 14.944785 ], [ -12.480469, 14.944785 ], [ -12.480469, 14.774883 ], [ -12.304688, 14.774883 ], [ -12.304688, 14.604847 ], [ -12.128906, 14.604847 ], [ -12.128906, 13.581921 ], [ -11.953125, 13.581921 ], [ -11.953125, 13.239945 ], [ -11.777344, 13.239945 ], [ -11.777344, 13.068777 ], [ -11.601562, 13.068777 ], [ -11.601562, 12.897489 ], [ -11.425781, 12.897489 ], [ -11.425781, 12.554564 ], [ -11.601562, 12.554564 ], [ -11.601562, 12.382928 ], [ -13.007812, 12.382928 ], [ -13.007812, 12.554564 ], [ -16.347656, 12.554564 ], [ -16.347656, 12.382928 ], [ -16.699219, 12.382928 ], [ -16.699219, 12.726084 ], [ -16.875000, 12.726084 ], [ -16.875000, 13.068777 ], [ -15.644531, 13.068777 ], [ -15.644531, 13.239945 ], [ -15.292969, 13.239945 ], [ -15.292969, 13.410994 ], [ -14.941406, 13.410994 ], [ -14.941406, 13.239945 ], [ -14.062500, 13.239945 ], [ -14.062500, 13.410994 ], [ -13.886719, 13.410994 ], [ -13.886719, 13.581921 ], [ -14.941406, 13.581921 ], [ -14.941406, 13.752725 ], [ -15.117188, 13.752725 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.468750, 13.752725 ], [ -15.644531, 13.752725 ], [ -15.644531, 13.581921 ], [ -16.699219, 13.581921 ], [ -16.699219, 13.752725 ], [ -16.875000, 13.752725 ], [ -16.875000, 14.093957 ], [ -17.050781, 14.093957 ], [ -17.050781, 14.434680 ], [ -17.226562, 14.434680 ], [ -17.226562, 14.604847 ], [ -17.578125, 14.604847 ], [ -17.578125, 14.774883 ], [ -17.226562, 14.774883 ], [ -17.226562, 14.944785 ], [ -17.050781, 14.944785 ], [ -17.050781, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.453680 ], [ -16.699219, 15.453680 ], [ -16.699219, 15.792254 ], [ -16.523438, 15.792254 ], [ -16.523438, 16.130262 ], [ -16.347656, 16.130262 ], [ -16.347656, 16.299051 ], [ -16.171875, 16.299051 ], [ -16.171875, 16.467695 ], [ -15.996094, 16.467695 ], [ -15.996094, 16.299051 ], [ -15.468750, 16.299051 ], [ -15.468750, 16.467695 ], [ -15.117188, 16.467695 ], [ -15.117188, 16.636192 ], [ -14.589844, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -14.589844, 16.467695 ], [ -14.238281, 16.467695 ], [ -14.238281, 16.299051 ], [ -13.886719, 16.299051 ], [ -13.886719, 16.130262 ], [ -13.535156, 16.130262 ], [ -13.535156, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.792254 ], [ -13.183594, 15.792254 ], [ -13.183594, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.453680 ], [ -12.832031, 15.453680 ], [ -12.832031, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 15.114553 ], [ -12.480469, 15.114553 ], [ -12.480469, 14.774883 ], [ -12.304688, 14.774883 ], [ -12.304688, 14.434680 ], [ -12.128906, 14.434680 ], [ -12.128906, 13.752725 ], [ -11.953125, 13.752725 ], [ -11.953125, 13.410994 ], [ -11.777344, 13.410994 ], [ -11.777344, 13.239945 ], [ -11.601562, 13.239945 ], [ -11.601562, 12.554564 ], [ -12.304688, 12.554564 ], [ -12.304688, 12.382928 ], [ -13.007812, 12.382928 ], [ -13.007812, 12.554564 ], [ -13.359375, 12.554564 ], [ -13.359375, 12.726084 ], [ -15.644531, 12.726084 ], [ -15.644531, 12.554564 ], [ -16.347656, 12.554564 ], [ -16.347656, 12.382928 ], [ -16.699219, 12.382928 ], [ -16.699219, 12.726084 ], [ -16.875000, 12.726084 ], [ -16.875000, 13.239945 ], [ -15.820312, 13.239945 ], [ -15.820312, 13.410994 ], [ -15.292969, 13.410994 ], [ -15.292969, 13.581921 ], [ -15.117188, 13.581921 ], [ -15.117188, 13.410994 ], [ -14.062500, 13.410994 ], [ -14.062500, 13.581921 ], [ -13.886719, 13.581921 ], [ -13.886719, 13.752725 ], [ -15.117188, 13.752725 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.468750, 13.752725 ], [ -16.875000, 13.752725 ], [ -16.875000, 13.923404 ], [ -17.050781, 13.923404 ], [ -17.050781, 14.264383 ], [ -17.226562, 14.264383 ], [ -17.226562, 14.434680 ], [ -17.402344, 14.434680 ], [ -17.402344, 14.604847 ], [ -17.753906, 14.604847 ], [ -17.753906, 14.774883 ], [ -17.402344, 14.774883 ], [ -17.402344, 14.944785 ], [ -17.050781, 14.944785 ], [ -17.050781, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.453680 ], [ -16.699219, 15.453680 ], [ -16.699219, 15.961329 ], [ -16.523438, 15.961329 ], [ -16.523438, 16.299051 ], [ -16.171875, 16.299051 ], [ -16.171875, 16.467695 ], [ -15.292969, 16.467695 ], [ -15.292969, 16.636192 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -15.117188, 13.752725 ], [ -14.941406, 13.752725 ], [ -14.941406, 13.581921 ], [ -13.886719, 13.581921 ], [ -13.886719, 13.410994 ], [ -14.062500, 13.410994 ], [ -14.062500, 13.239945 ], [ -14.941406, 13.239945 ], [ -14.941406, 13.410994 ], [ -15.292969, 13.410994 ], [ -15.292969, 13.239945 ], [ -15.644531, 13.239945 ], [ -15.644531, 13.068777 ], [ -16.875000, 13.068777 ], [ -16.875000, 13.239945 ], [ -16.699219, 13.239945 ], [ -16.699219, 13.581921 ], [ -15.644531, 13.581921 ], [ -15.644531, 13.752725 ], [ -15.468750, 13.752725 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -15.117188, 13.752725 ], [ -13.886719, 13.752725 ], [ -13.886719, 13.581921 ], [ -14.062500, 13.581921 ], [ -14.062500, 13.410994 ], [ -15.117188, 13.410994 ], [ -15.117188, 13.581921 ], [ -15.292969, 13.581921 ], [ -15.292969, 13.410994 ], [ -15.820312, 13.410994 ], [ -15.820312, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.752725 ], [ -15.468750, 13.752725 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.554564 ], [ -13.710938, 12.211180 ], [ -13.886719, 12.211180 ], [ -13.886719, 12.039321 ], [ -13.710938, 12.039321 ], [ -13.710938, 11.695273 ], [ -14.062500, 11.695273 ], [ -14.062500, 11.523088 ], [ -14.765625, 11.523088 ], [ -14.765625, 11.350797 ], [ -14.941406, 11.350797 ], [ -14.941406, 11.005904 ], [ -15.292969, 11.005904 ], [ -15.292969, 11.178402 ], [ -15.468750, 11.178402 ], [ -15.468750, 11.350797 ], [ -15.644531, 11.350797 ], [ -15.644531, 11.523088 ], [ -16.171875, 11.523088 ], [ -16.171875, 11.695273 ], [ -16.347656, 11.695273 ], [ -16.347656, 12.039321 ], [ -16.699219, 12.039321 ], [ -16.699219, 12.382928 ], [ -16.347656, 12.382928 ], [ -16.347656, 12.554564 ], [ -13.710938, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.726084 ], [ -13.710938, 12.554564 ], [ -13.886719, 12.554564 ], [ -13.886719, 11.695273 ], [ -14.238281, 11.695273 ], [ -14.238281, 11.523088 ], [ -14.941406, 11.523088 ], [ -14.941406, 11.350797 ], [ -15.117188, 11.350797 ], [ -15.117188, 11.178402 ], [ -15.468750, 11.178402 ], [ -15.468750, 11.350797 ], [ -15.820312, 11.350797 ], [ -15.820312, 11.523088 ], [ -16.171875, 11.523088 ], [ -16.171875, 11.695273 ], [ -16.347656, 11.695273 ], [ -16.347656, 12.039321 ], [ -16.699219, 12.039321 ], [ -16.699219, 12.382928 ], [ -16.347656, 12.382928 ], [ -16.347656, 12.554564 ], [ -15.644531, 12.554564 ], [ -15.644531, 12.726084 ], [ -13.710938, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.007812, 12.554564 ], [ -13.007812, 12.382928 ], [ -11.601562, 12.382928 ], [ -11.601562, 12.211180 ], [ -11.425781, 12.211180 ], [ -11.425781, 12.039321 ], [ -11.074219, 12.039321 ], [ -11.074219, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 12.039321 ], [ -10.722656, 12.039321 ], [ -10.722656, 11.867351 ], [ -9.843750, 11.867351 ], [ -9.843750, 12.039321 ], [ -9.492188, 12.039321 ], [ -9.492188, 12.211180 ], [ -9.316406, 12.211180 ], [ -9.316406, 12.382928 ], [ -9.140625, 12.382928 ], [ -9.140625, 12.211180 ], [ -8.964844, 12.211180 ], [ -8.964844, 11.867351 ], [ -8.789062, 11.867351 ], [ -8.789062, 11.695273 ], [ -8.613281, 11.695273 ], [ -8.613281, 11.350797 ], [ -8.437500, 11.350797 ], [ -8.437500, 11.178402 ], [ -8.613281, 11.178402 ], [ -8.613281, 10.833306 ], [ -8.261719, 10.833306 ], [ -8.261719, 10.314919 ], [ -8.085938, 10.314919 ], [ -8.085938, 10.141932 ], [ -8.261719, 10.141932 ], [ -8.261719, 9.622414 ], [ -8.085938, 9.622414 ], [ -8.085938, 8.928487 ], [ -7.910156, 8.928487 ], [ -7.910156, 8.407168 ], [ -8.261719, 8.407168 ], [ -8.261719, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.536764 ], [ -8.964844, 7.536764 ], [ -8.964844, 7.362467 ], [ -9.316406, 7.362467 ], [ -9.316406, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 8.754795 ], [ -10.722656, 8.754795 ], [ -10.722656, 9.102097 ], [ -10.546875, 9.102097 ], [ -10.546875, 9.275622 ], [ -10.722656, 9.275622 ], [ -10.722656, 9.449062 ], [ -10.898438, 9.449062 ], [ -10.898438, 9.795678 ], [ -11.074219, 9.795678 ], [ -11.074219, 9.968851 ], [ -11.953125, 9.968851 ], [ -11.953125, 9.795678 ], [ -12.480469, 9.795678 ], [ -12.480469, 9.622414 ], [ -12.656250, 9.622414 ], [ -12.656250, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 8.928487 ], [ -13.359375, 8.928487 ], [ -13.359375, 9.102097 ], [ -13.535156, 9.102097 ], [ -13.535156, 9.275622 ], [ -13.710938, 9.275622 ], [ -13.710938, 9.449062 ], [ -13.886719, 9.449062 ], [ -13.886719, 9.795678 ], [ -14.062500, 9.795678 ], [ -14.062500, 9.968851 ], [ -14.589844, 9.968851 ], [ -14.589844, 10.314919 ], [ -14.765625, 10.314919 ], [ -14.765625, 10.833306 ], [ -15.117188, 10.833306 ], [ -15.117188, 11.005904 ], [ -14.941406, 11.005904 ], [ -14.941406, 11.350797 ], [ -14.765625, 11.350797 ], [ -14.765625, 11.523088 ], [ -14.062500, 11.523088 ], [ -14.062500, 11.695273 ], [ -13.710938, 11.695273 ], [ -13.710938, 12.039321 ], [ -13.886719, 12.039321 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.211180 ], [ -13.710938, 12.554564 ], [ -13.007812, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.359375, 12.726084 ], [ -13.359375, 12.554564 ], [ -13.007812, 12.554564 ], [ -13.007812, 12.382928 ], [ -12.304688, 12.382928 ], [ -12.304688, 12.554564 ], [ -11.601562, 12.554564 ], [ -11.601562, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 12.039321 ], [ -10.546875, 12.039321 ], [ -10.546875, 11.867351 ], [ -10.195312, 11.867351 ], [ -10.195312, 12.039321 ], [ -10.019531, 12.039321 ], [ -10.019531, 12.211180 ], [ -9.492188, 12.211180 ], [ -9.492188, 12.382928 ], [ -9.140625, 12.382928 ], [ -9.140625, 12.211180 ], [ -8.964844, 12.211180 ], [ -8.964844, 12.039321 ], [ -8.789062, 12.039321 ], [ -8.789062, 11.695273 ], [ -8.613281, 11.695273 ], [ -8.613281, 11.523088 ], [ -8.437500, 11.523088 ], [ -8.437500, 11.350797 ], [ -8.613281, 11.350797 ], [ -8.613281, 11.005904 ], [ -8.789062, 11.005904 ], [ -8.789062, 10.833306 ], [ -8.437500, 10.833306 ], [ -8.437500, 10.487812 ], [ -8.261719, 10.487812 ], [ -8.261719, 10.314919 ], [ -8.085938, 10.314919 ], [ -8.085938, 10.141932 ], [ -8.261719, 10.141932 ], [ -8.261719, 9.968851 ], [ -8.437500, 9.968851 ], [ -8.437500, 9.622414 ], [ -8.261719, 9.622414 ], [ -8.261719, 9.449062 ], [ -8.085938, 9.449062 ], [ -8.085938, 8.928487 ], [ -7.910156, 8.928487 ], [ -7.910156, 8.581021 ], [ -8.261719, 8.581021 ], [ -8.261719, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 8.233237 ], [ -8.261719, 8.233237 ], [ -8.261719, 7.885147 ], [ -8.437500, 7.885147 ], [ -8.437500, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.536764 ], [ -8.964844, 7.536764 ], [ -8.964844, 7.362467 ], [ -9.492188, 7.362467 ], [ -9.492188, 8.059230 ], [ -9.667969, 8.059230 ], [ -9.667969, 8.407168 ], [ -9.843750, 8.407168 ], [ -9.843750, 8.581021 ], [ -10.019531, 8.581021 ], [ -10.019531, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 8.928487 ], [ -10.722656, 8.928487 ], [ -10.722656, 9.449062 ], [ -10.898438, 9.449062 ], [ -10.898438, 9.795678 ], [ -11.074219, 9.795678 ], [ -11.074219, 9.968851 ], [ -11.250000, 9.968851 ], [ -11.250000, 10.141932 ], [ -11.953125, 10.141932 ], [ -11.953125, 9.968851 ], [ -12.480469, 9.968851 ], [ -12.480469, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 9.449062 ], [ -12.832031, 9.449062 ], [ -12.832031, 9.275622 ], [ -13.007812, 9.275622 ], [ -13.007812, 9.102097 ], [ -13.183594, 9.102097 ], [ -13.183594, 8.928487 ], [ -13.359375, 8.928487 ], [ -13.359375, 9.102097 ], [ -13.535156, 9.102097 ], [ -13.535156, 9.449062 ], [ -13.710938, 9.449062 ], [ -13.710938, 9.622414 ], [ -13.886719, 9.622414 ], [ -13.886719, 9.795678 ], [ -14.238281, 9.795678 ], [ -14.238281, 9.968851 ], [ -14.414062, 9.968851 ], [ -14.414062, 10.141932 ], [ -14.589844, 10.141932 ], [ -14.589844, 10.487812 ], [ -14.765625, 10.487812 ], [ -14.765625, 10.833306 ], [ -14.941406, 10.833306 ], [ -14.941406, 11.005904 ], [ -15.292969, 11.005904 ], [ -15.292969, 11.178402 ], [ -15.117188, 11.178402 ], [ -15.117188, 11.350797 ], [ -14.941406, 11.350797 ], [ -14.941406, 11.523088 ], [ -14.238281, 11.523088 ], [ -14.238281, 11.695273 ], [ -13.886719, 11.695273 ], [ -13.886719, 12.554564 ], [ -13.710938, 12.554564 ], [ -13.710938, 12.726084 ], [ -13.359375, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.074219, 9.968851 ], [ -11.074219, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 9.449062 ], [ -10.722656, 9.449062 ], [ -10.722656, 9.275622 ], [ -10.546875, 9.275622 ], [ -10.546875, 9.102097 ], [ -10.722656, 9.102097 ], [ -10.722656, 8.754795 ], [ -10.546875, 8.754795 ], [ -10.546875, 8.407168 ], [ -10.195312, 8.407168 ], [ -10.195312, 8.233237 ], [ -10.371094, 8.233237 ], [ -10.371094, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 7.885147 ], [ -10.722656, 7.885147 ], [ -10.722656, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 7.362467 ], [ -11.074219, 7.362467 ], [ -11.074219, 7.188101 ], [ -11.250000, 7.188101 ], [ -11.250000, 7.013668 ], [ -11.425781, 7.013668 ], [ -11.425781, 6.839170 ], [ -12.128906, 6.839170 ], [ -12.128906, 7.013668 ], [ -12.480469, 7.013668 ], [ -12.480469, 7.188101 ], [ -12.656250, 7.188101 ], [ -12.656250, 7.536764 ], [ -12.832031, 7.536764 ], [ -12.832031, 7.710992 ], [ -13.007812, 7.710992 ], [ -13.007812, 8.059230 ], [ -13.183594, 8.059230 ], [ -13.183594, 8.928487 ], [ -13.007812, 8.928487 ], [ -13.007812, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.622414 ], [ -12.480469, 9.622414 ], [ -12.480469, 9.795678 ], [ -11.953125, 9.795678 ], [ -11.953125, 9.968851 ], [ -11.074219, 9.968851 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.141932 ], [ -11.250000, 9.968851 ], [ -11.074219, 9.968851 ], [ -11.074219, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 9.449062 ], [ -10.722656, 9.449062 ], [ -10.722656, 8.928487 ], [ -10.546875, 8.928487 ], [ -10.546875, 8.407168 ], [ -10.371094, 8.407168 ], [ -10.371094, 8.233237 ], [ -10.546875, 8.233237 ], [ -10.546875, 8.059230 ], [ -10.722656, 8.059230 ], [ -10.722656, 7.885147 ], [ -10.898438, 7.885147 ], [ -10.898438, 7.710992 ], [ -11.074219, 7.710992 ], [ -11.074219, 7.536764 ], [ -11.250000, 7.536764 ], [ -11.250000, 7.013668 ], [ -11.425781, 7.013668 ], [ -11.425781, 6.839170 ], [ -11.777344, 6.839170 ], [ -11.777344, 7.013668 ], [ -12.128906, 7.013668 ], [ -12.128906, 7.188101 ], [ -12.480469, 7.188101 ], [ -12.480469, 7.362467 ], [ -12.656250, 7.362467 ], [ -12.656250, 7.536764 ], [ -12.832031, 7.536764 ], [ -12.832031, 7.710992 ], [ -13.007812, 7.710992 ], [ -13.007812, 8.059230 ], [ -13.183594, 8.059230 ], [ -13.183594, 8.581021 ], [ -13.359375, 8.581021 ], [ -13.359375, 8.928487 ], [ -13.183594, 8.928487 ], [ -13.183594, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 9.275622 ], [ -12.832031, 9.275622 ], [ -12.832031, 9.449062 ], [ -12.656250, 9.449062 ], [ -12.656250, 9.795678 ], [ -12.480469, 9.795678 ], [ -12.480469, 9.968851 ], [ -11.953125, 9.968851 ], [ -11.953125, 10.141932 ], [ -11.250000, 10.141932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 27.215556 ], [ -8.261719, 27.059126 ], [ -8.085938, 27.059126 ], [ -8.085938, 26.902477 ], [ -7.910156, 26.902477 ], [ -7.910156, 26.745610 ], [ -7.558594, 26.745610 ], [ -7.558594, 26.588527 ], [ -7.382812, 26.588527 ], [ -7.382812, 26.431228 ], [ -7.031250, 26.431228 ], [ -7.031250, 26.273714 ], [ -6.855469, 26.273714 ], [ -6.855469, 26.115986 ], [ -6.679688, 26.115986 ], [ -6.679688, 25.958045 ], [ -6.328125, 25.958045 ], [ -6.328125, 25.799891 ], [ -6.152344, 25.799891 ], [ -6.152344, 25.641526 ], [ -5.800781, 25.641526 ], [ -5.800781, 25.482951 ], [ -5.625000, 25.482951 ], [ -5.625000, 25.324167 ], [ -5.449219, 25.324167 ], [ -5.449219, 25.165173 ], [ -5.097656, 25.165173 ], [ -5.097656, 25.005973 ], [ -6.503906, 25.005973 ], [ -6.503906, 24.206890 ], [ -6.328125, 24.206890 ], [ -6.328125, 22.755921 ], [ -6.152344, 22.755921 ], [ -6.152344, 21.289374 ], [ -5.976562, 21.289374 ], [ -5.976562, 19.808054 ], [ -5.800781, 19.808054 ], [ -5.800781, 18.479609 ], [ -5.625000, 18.479609 ], [ -5.625000, 16.972741 ], [ -5.449219, 16.972741 ], [ -5.449219, 16.130262 ], [ -5.273438, 16.130262 ], [ -5.273438, 15.961329 ], [ -5.449219, 15.961329 ], [ -5.449219, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 15.453680 ], [ -9.492188, 15.453680 ], [ -9.492188, 15.284185 ], [ -10.195312, 15.284185 ], [ -10.195312, 15.114553 ], [ -11.074219, 15.114553 ], [ -11.074219, 15.284185 ], [ -11.425781, 15.284185 ], [ -11.425781, 15.453680 ], [ -11.601562, 15.453680 ], [ -11.601562, 15.114553 ], [ -11.777344, 15.114553 ], [ -11.777344, 14.604847 ], [ -12.304688, 14.604847 ], [ -12.304688, 14.774883 ], [ -12.480469, 14.774883 ], [ -12.480469, 14.944785 ], [ -12.656250, 14.944785 ], [ -12.656250, 15.114553 ], [ -12.832031, 15.114553 ], [ -12.832031, 15.284185 ], [ -13.007812, 15.284185 ], [ -13.007812, 15.623037 ], [ -13.183594, 15.623037 ], [ -13.183594, 15.792254 ], [ -13.359375, 15.792254 ], [ -13.359375, 15.961329 ], [ -13.710938, 15.961329 ], [ -13.710938, 16.130262 ], [ -14.062500, 16.130262 ], [ -14.062500, 16.299051 ], [ -14.238281, 16.299051 ], [ -14.238281, 16.467695 ], [ -14.589844, 16.467695 ], [ -14.589844, 16.636192 ], [ -15.117188, 16.636192 ], [ -15.117188, 16.467695 ], [ -15.468750, 16.467695 ], [ -15.468750, 16.299051 ], [ -15.996094, 16.299051 ], [ -15.996094, 16.467695 ], [ -16.171875, 16.467695 ], [ -16.171875, 16.299051 ], [ -16.347656, 16.299051 ], [ -16.347656, 16.130262 ], [ -16.523438, 16.130262 ], [ -16.523438, 16.804541 ], [ -16.347656, 16.804541 ], [ -16.347656, 17.644022 ], [ -16.171875, 17.644022 ], [ -16.171875, 19.311143 ], [ -16.347656, 19.311143 ], [ -16.347656, 20.303418 ], [ -16.523438, 20.303418 ], [ -16.523438, 20.632784 ], [ -16.699219, 20.632784 ], [ -16.699219, 20.797201 ], [ -17.050781, 20.797201 ], [ -17.050781, 21.125498 ], [ -16.875000, 21.125498 ], [ -16.875000, 21.289374 ], [ -13.007812, 21.289374 ], [ -13.007812, 21.943046 ], [ -13.183594, 21.943046 ], [ -13.183594, 22.755921 ], [ -13.007812, 22.755921 ], [ -13.007812, 23.079732 ], [ -12.832031, 23.079732 ], [ -12.832031, 23.241346 ], [ -12.304688, 23.241346 ], [ -12.304688, 23.402765 ], [ -11.953125, 23.402765 ], [ -11.953125, 25.958045 ], [ -8.613281, 25.958045 ], [ -8.613281, 27.215556 ], [ -8.261719, 27.215556 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 27.371767 ], [ -8.437500, 27.215556 ], [ -8.261719, 27.215556 ], [ -8.261719, 27.059126 ], [ -8.085938, 27.059126 ], [ -8.085938, 26.902477 ], [ -7.734375, 26.902477 ], [ -7.734375, 26.745610 ], [ -7.558594, 26.745610 ], [ -7.558594, 26.588527 ], [ -7.382812, 26.588527 ], [ -7.382812, 26.431228 ], [ -7.031250, 26.431228 ], [ -7.031250, 26.273714 ], [ -6.855469, 26.273714 ], [ -6.855469, 26.115986 ], [ -6.503906, 26.115986 ], [ -6.503906, 25.958045 ], [ -6.328125, 25.958045 ], [ -6.328125, 25.799891 ], [ -6.152344, 25.799891 ], [ -6.152344, 25.641526 ], [ -5.800781, 25.641526 ], [ -5.800781, 25.482951 ], [ -5.625000, 25.482951 ], [ -5.625000, 25.324167 ], [ -5.449219, 25.324167 ], [ -5.449219, 25.165173 ], [ -5.097656, 25.165173 ], [ -5.097656, 25.005973 ], [ -6.503906, 25.005973 ], [ -6.503906, 24.206890 ], [ -6.328125, 24.206890 ], [ -6.328125, 22.917923 ], [ -6.152344, 22.917923 ], [ -6.152344, 21.453069 ], [ -5.976562, 21.453069 ], [ -5.976562, 19.642588 ], [ -5.800781, 19.642588 ], [ -5.800781, 17.476432 ], [ -5.625000, 17.476432 ], [ -5.625000, 16.299051 ], [ -5.449219, 16.299051 ], [ -5.449219, 15.961329 ], [ -5.625000, 15.961329 ], [ -5.625000, 15.623037 ], [ -9.667969, 15.623037 ], [ -9.667969, 15.453680 ], [ -9.843750, 15.453680 ], [ -9.843750, 15.284185 ], [ -10.195312, 15.284185 ], [ -10.195312, 15.453680 ], [ -10.371094, 15.453680 ], [ -10.371094, 15.284185 ], [ -11.250000, 15.284185 ], [ -11.250000, 15.453680 ], [ -11.777344, 15.453680 ], [ -11.777344, 15.114553 ], [ -11.953125, 15.114553 ], [ -11.953125, 14.774883 ], [ -12.480469, 14.774883 ], [ -12.480469, 15.114553 ], [ -12.656250, 15.114553 ], [ -12.656250, 15.284185 ], [ -12.832031, 15.284185 ], [ -12.832031, 15.453680 ], [ -13.007812, 15.453680 ], [ -13.007812, 15.623037 ], [ -13.183594, 15.623037 ], [ -13.183594, 15.792254 ], [ -13.359375, 15.792254 ], [ -13.359375, 15.961329 ], [ -13.535156, 15.961329 ], [ -13.535156, 16.130262 ], [ -13.886719, 16.130262 ], [ -13.886719, 16.299051 ], [ -14.238281, 16.299051 ], [ -14.238281, 16.467695 ], [ -14.589844, 16.467695 ], [ -14.589844, 16.636192 ], [ -15.292969, 16.636192 ], [ -15.292969, 16.467695 ], [ -16.171875, 16.467695 ], [ -16.171875, 16.299051 ], [ -16.523438, 16.299051 ], [ -16.523438, 16.467695 ], [ -16.699219, 16.467695 ], [ -16.699219, 16.804541 ], [ -16.523438, 16.804541 ], [ -16.523438, 17.140790 ], [ -16.347656, 17.140790 ], [ -16.347656, 17.644022 ], [ -16.171875, 17.644022 ], [ -16.171875, 18.646245 ], [ -16.347656, 18.646245 ], [ -16.347656, 19.311143 ], [ -16.523438, 19.311143 ], [ -16.523438, 19.808054 ], [ -16.347656, 19.808054 ], [ -16.347656, 20.138470 ], [ -16.523438, 20.138470 ], [ -16.523438, 20.468189 ], [ -16.699219, 20.468189 ], [ -16.699219, 20.632784 ], [ -16.875000, 20.632784 ], [ -16.875000, 20.797201 ], [ -17.050781, 20.797201 ], [ -17.050781, 20.961440 ], [ -17.226562, 20.961440 ], [ -17.226562, 21.125498 ], [ -17.050781, 21.125498 ], [ -17.050781, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.453069 ], [ -13.007812, 21.453069 ], [ -13.007812, 22.105999 ], [ -13.183594, 22.105999 ], [ -13.183594, 23.079732 ], [ -13.007812, 23.079732 ], [ -13.007812, 23.402765 ], [ -11.953125, 23.402765 ], [ -11.953125, 24.686952 ], [ -12.128906, 24.686952 ], [ -12.128906, 25.958045 ], [ -8.789062, 25.958045 ], [ -8.789062, 27.371767 ], [ -8.437500, 27.371767 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.005973 ], [ -4.921875, 24.846565 ], [ -4.570312, 24.846565 ], [ -4.570312, 24.686952 ], [ -4.394531, 24.686952 ], [ -4.394531, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 24.367114 ], [ -3.867188, 24.367114 ], [ -3.867188, 24.206890 ], [ -3.691406, 24.206890 ], [ -3.691406, 24.046464 ], [ -3.515625, 24.046464 ], [ -3.515625, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.725012 ], [ -2.988281, 23.725012 ], [ -2.988281, 23.563987 ], [ -2.812500, 23.563987 ], [ -2.812500, 23.402765 ], [ -2.460938, 23.402765 ], [ -2.460938, 23.241346 ], [ -2.285156, 23.241346 ], [ -2.285156, 23.079732 ], [ -2.109375, 23.079732 ], [ -2.109375, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 22.755921 ], [ -1.582031, 22.755921 ], [ -1.582031, 22.593726 ], [ -1.230469, 22.593726 ], [ -1.230469, 22.431340 ], [ -1.054688, 22.431340 ], [ -1.054688, 22.268764 ], [ -0.703125, 22.268764 ], [ -0.703125, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 21.943046 ], [ -0.175781, 21.943046 ], [ -0.175781, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.703125, 21.453069 ], [ 0.703125, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 14.944785 ], [ -0.527344, 14.944785 ], [ -0.527344, 15.114553 ], [ -0.703125, 15.114553 ], [ -0.703125, 14.944785 ], [ -1.230469, 14.944785 ], [ -1.230469, 14.774883 ], [ -1.582031, 14.774883 ], [ -1.582031, 14.604847 ], [ -1.933594, 14.604847 ], [ -1.933594, 14.434680 ], [ -2.109375, 14.434680 ], [ -2.109375, 14.093957 ], [ -2.460938, 14.093957 ], [ -2.460938, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.752725 ], [ -2.988281, 13.752725 ], [ -2.988281, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.410994 ], [ -4.042969, 13.410994 ], [ -4.042969, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 12.897489 ], [ -4.394531, 12.897489 ], [ -4.394531, 12.382928 ], [ -4.570312, 12.382928 ], [ -4.570312, 12.211180 ], [ -4.746094, 12.211180 ], [ -4.746094, 12.039321 ], [ -4.921875, 12.039321 ], [ -4.921875, 11.867351 ], [ -5.097656, 11.867351 ], [ -5.097656, 11.695273 ], [ -5.273438, 11.695273 ], [ -5.273438, 11.178402 ], [ -5.449219, 11.178402 ], [ -5.449219, 10.141932 ], [ -5.976562, 10.141932 ], [ -5.976562, 10.314919 ], [ -6.152344, 10.314919 ], [ -6.152344, 10.487812 ], [ -6.679688, 10.487812 ], [ -6.679688, 10.314919 ], [ -6.855469, 10.314919 ], [ -6.855469, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 10.314919 ], [ -8.261719, 10.314919 ], [ -8.261719, 10.833306 ], [ -8.613281, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.178402 ], [ -8.437500, 11.350797 ], [ -8.613281, 11.350797 ], [ -8.613281, 11.695273 ], [ -8.789062, 11.695273 ], [ -8.789062, 11.867351 ], [ -8.964844, 11.867351 ], [ -8.964844, 12.211180 ], [ -9.140625, 12.211180 ], [ -9.140625, 12.382928 ], [ -9.316406, 12.382928 ], [ -9.316406, 12.211180 ], [ -9.492188, 12.211180 ], [ -9.492188, 12.039321 ], [ -9.843750, 12.039321 ], [ -9.843750, 11.867351 ], [ -10.722656, 11.867351 ], [ -10.722656, 12.039321 ], [ -10.898438, 12.039321 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.211180 ], [ -11.074219, 12.039321 ], [ -11.425781, 12.039321 ], [ -11.425781, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 12.554564 ], [ -11.425781, 12.554564 ], [ -11.425781, 12.897489 ], [ -11.601562, 12.897489 ], [ -11.601562, 13.068777 ], [ -11.777344, 13.068777 ], [ -11.777344, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 13.581921 ], [ -12.128906, 13.581921 ], [ -12.128906, 14.604847 ], [ -11.777344, 14.604847 ], [ -11.777344, 15.114553 ], [ -11.601562, 15.114553 ], [ -11.601562, 15.453680 ], [ -11.425781, 15.453680 ], [ -11.425781, 15.284185 ], [ -11.074219, 15.284185 ], [ -11.074219, 15.114553 ], [ -10.195312, 15.114553 ], [ -10.195312, 15.284185 ], [ -9.492188, 15.284185 ], [ -9.492188, 15.453680 ], [ -5.625000, 15.453680 ], [ -5.625000, 15.623037 ], [ -5.449219, 15.623037 ], [ -5.449219, 15.961329 ], [ -5.273438, 15.961329 ], [ -5.273438, 16.130262 ], [ -5.449219, 16.130262 ], [ -5.449219, 16.972741 ], [ -5.625000, 16.972741 ], [ -5.625000, 18.479609 ], [ -5.800781, 18.479609 ], [ -5.800781, 19.808054 ], [ -5.976562, 19.808054 ], [ -5.976562, 21.289374 ], [ -6.152344, 21.289374 ], [ -6.152344, 22.755921 ], [ -6.328125, 22.755921 ], [ -6.328125, 24.206890 ], [ -6.503906, 24.206890 ], [ -6.503906, 25.005973 ], [ -4.921875, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.005973 ], [ -4.921875, 24.846565 ], [ -4.570312, 24.846565 ], [ -4.570312, 24.686952 ], [ -4.394531, 24.686952 ], [ -4.394531, 24.527135 ], [ -4.042969, 24.527135 ], [ -4.042969, 24.367114 ], [ -3.867188, 24.367114 ], [ -3.867188, 24.206890 ], [ -3.515625, 24.206890 ], [ -3.515625, 24.046464 ], [ -3.339844, 24.046464 ], [ -3.339844, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.725012 ], [ -2.812500, 23.725012 ], [ -2.812500, 23.563987 ], [ -2.636719, 23.563987 ], [ -2.636719, 23.402765 ], [ -2.285156, 23.402765 ], [ -2.285156, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 23.079732 ], [ -1.757812, 23.079732 ], [ -1.757812, 22.917923 ], [ -1.582031, 22.917923 ], [ -1.582031, 22.755921 ], [ -1.230469, 22.755921 ], [ -1.230469, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.431340 ], [ -0.878906, 22.431340 ], [ -0.878906, 22.268764 ], [ -0.527344, 22.268764 ], [ -0.527344, 22.105999 ], [ -0.351562, 22.105999 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.703125, 21.453069 ], [ 0.703125, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 15.114553 ], [ 0.703125, 15.114553 ], [ 0.703125, 14.944785 ], [ -0.527344, 14.944785 ], [ -0.527344, 15.114553 ], [ -1.230469, 15.114553 ], [ -1.230469, 14.944785 ], [ -1.582031, 14.944785 ], [ -1.582031, 14.774883 ], [ -1.933594, 14.774883 ], [ -1.933594, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 14.434680 ], [ -2.285156, 14.434680 ], [ -2.285156, 14.093957 ], [ -2.636719, 14.093957 ], [ -2.636719, 13.923404 ], [ -2.988281, 13.923404 ], [ -2.988281, 13.752725 ], [ -3.164062, 13.752725 ], [ -3.164062, 13.581921 ], [ -3.339844, 13.581921 ], [ -3.339844, 13.410994 ], [ -4.218750, 13.410994 ], [ -4.218750, 13.239945 ], [ -4.394531, 13.239945 ], [ -4.394531, 12.897489 ], [ -4.570312, 12.897489 ], [ -4.570312, 12.382928 ], [ -4.746094, 12.382928 ], [ -4.746094, 12.211180 ], [ -4.921875, 12.211180 ], [ -4.921875, 12.039321 ], [ -5.097656, 12.039321 ], [ -5.097656, 11.867351 ], [ -5.273438, 11.867351 ], [ -5.273438, 11.350797 ], [ -5.449219, 11.350797 ], [ -5.449219, 11.005904 ], [ -5.625000, 11.005904 ], [ -5.625000, 10.660608 ], [ -5.449219, 10.660608 ], [ -5.449219, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 10.314919 ], [ -5.976562, 10.314919 ], [ -5.976562, 10.141932 ], [ -6.152344, 10.141932 ], [ -6.152344, 10.314919 ], [ -6.328125, 10.314919 ], [ -6.328125, 10.487812 ], [ -6.679688, 10.487812 ], [ -6.679688, 10.314919 ], [ -6.855469, 10.314919 ], [ -6.855469, 10.141932 ], [ -7.382812, 10.141932 ], [ -7.382812, 10.314919 ], [ -8.261719, 10.314919 ], [ -8.261719, 10.487812 ], [ -8.437500, 10.487812 ], [ -8.437500, 10.833306 ], [ -8.789062, 10.833306 ], [ -8.789062, 11.005904 ], [ -8.613281, 11.005904 ], [ -8.613281, 11.350797 ], [ -8.437500, 11.350797 ], [ -8.437500, 11.523088 ], [ -8.613281, 11.523088 ], [ -8.613281, 11.695273 ], [ -8.789062, 11.695273 ], [ -8.789062, 12.039321 ], [ -8.964844, 12.039321 ], [ -8.964844, 12.211180 ], [ -9.140625, 12.211180 ], [ -9.140625, 12.382928 ], [ -9.492188, 12.382928 ], [ -9.492188, 12.211180 ], [ -10.019531, 12.211180 ], [ -10.019531, 12.039321 ], [ -10.195312, 12.039321 ], [ -10.195312, 11.867351 ], [ -10.546875, 11.867351 ], [ -10.546875, 12.039321 ], [ -10.898438, 12.039321 ], [ -10.898438, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 13.239945 ], [ -11.777344, 13.239945 ], [ -11.777344, 13.410994 ], [ -11.953125, 13.410994 ], [ -11.953125, 13.752725 ], [ -12.128906, 13.752725 ], [ -12.128906, 14.434680 ], [ -12.304688, 14.434680 ], [ -12.304688, 14.774883 ], [ -11.953125, 14.774883 ], [ -11.953125, 15.114553 ], [ -11.777344, 15.114553 ], [ -11.777344, 15.453680 ], [ -11.250000, 15.453680 ], [ -11.250000, 15.284185 ], [ -10.371094, 15.284185 ], [ -10.371094, 15.453680 ], [ -10.195312, 15.453680 ], [ -10.195312, 15.284185 ], [ -9.843750, 15.284185 ], [ -9.843750, 15.453680 ], [ -9.667969, 15.453680 ], [ -9.667969, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 15.961329 ], [ -5.449219, 15.961329 ], [ -5.449219, 16.299051 ], [ -5.625000, 16.299051 ], [ -5.625000, 17.476432 ], [ -5.800781, 17.476432 ], [ -5.800781, 19.642588 ], [ -5.976562, 19.642588 ], [ -5.976562, 21.453069 ], [ -6.152344, 21.453069 ], [ -6.152344, 22.917923 ], [ -6.328125, 22.917923 ], [ -6.328125, 24.206890 ], [ -6.503906, 24.206890 ], [ -6.503906, 25.005973 ], [ -4.921875, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.527344, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.410994 ], [ 0.878906, 13.410994 ], [ 0.878906, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.988281, 9.968851 ], [ -2.812500, 9.968851 ], [ -2.812500, 9.622414 ], [ -3.164062, 9.622414 ], [ -3.164062, 9.795678 ], [ -3.515625, 9.795678 ], [ -3.515625, 9.968851 ], [ -3.691406, 9.968851 ], [ -3.691406, 9.795678 ], [ -4.042969, 9.795678 ], [ -4.042969, 9.622414 ], [ -4.746094, 9.622414 ], [ -4.746094, 9.968851 ], [ -4.921875, 9.968851 ], [ -4.921875, 10.141932 ], [ -5.273438, 10.141932 ], [ -5.273438, 10.314919 ], [ -5.449219, 10.314919 ], [ -5.449219, 11.178402 ], [ -5.273438, 11.178402 ], [ -5.273438, 11.695273 ], [ -5.097656, 11.695273 ], [ -5.097656, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 12.039321 ], [ -4.746094, 12.039321 ], [ -4.746094, 12.211180 ], [ -4.570312, 12.211180 ], [ -4.570312, 12.382928 ], [ -4.394531, 12.382928 ], [ -4.394531, 12.897489 ], [ -4.218750, 12.897489 ], [ -4.218750, 13.239945 ], [ -4.042969, 13.239945 ], [ -4.042969, 13.410994 ], [ -3.164062, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.581921 ], [ -2.988281, 13.752725 ], [ -2.812500, 13.752725 ], [ -2.812500, 13.923404 ], [ -2.460938, 13.923404 ], [ -2.460938, 14.093957 ], [ -2.109375, 14.093957 ], [ -2.109375, 14.434680 ], [ -1.933594, 14.434680 ], [ -1.933594, 14.604847 ], [ -1.582031, 14.604847 ], [ -1.582031, 14.774883 ], [ -1.230469, 14.774883 ], [ -1.230469, 14.944785 ], [ -0.703125, 14.944785 ], [ -0.703125, 15.114553 ], [ -0.527344, 15.114553 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.527344, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 14.774883 ], [ 0.175781, 14.774883 ], [ 0.175781, 14.264383 ], [ 0.351562, 14.264383 ], [ 0.351562, 13.923404 ], [ 0.527344, 13.923404 ], [ 0.527344, 13.752725 ], [ 0.703125, 13.752725 ], [ 0.703125, 13.581921 ], [ 0.878906, 13.581921 ], [ 0.878906, 11.005904 ], [ 0.351562, 11.005904 ], [ 0.351562, 11.178402 ], [ -0.527344, 11.178402 ], [ -0.527344, 11.005904 ], [ -1.230469, 11.005904 ], [ -1.230469, 11.178402 ], [ -1.933594, 11.178402 ], [ -1.933594, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.988281, 9.795678 ], [ -3.339844, 9.795678 ], [ -3.339844, 9.968851 ], [ -4.042969, 9.968851 ], [ -4.042969, 9.795678 ], [ -4.218750, 9.795678 ], [ -4.218750, 9.622414 ], [ -4.570312, 9.622414 ], [ -4.570312, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.141932 ], [ -5.097656, 10.141932 ], [ -5.097656, 10.314919 ], [ -5.449219, 10.314919 ], [ -5.449219, 10.660608 ], [ -5.625000, 10.660608 ], [ -5.625000, 11.005904 ], [ -5.449219, 11.005904 ], [ -5.449219, 11.350797 ], [ -5.273438, 11.350797 ], [ -5.273438, 11.867351 ], [ -5.097656, 11.867351 ], [ -5.097656, 12.039321 ], [ -4.921875, 12.039321 ], [ -4.921875, 12.211180 ], [ -4.746094, 12.211180 ], [ -4.746094, 12.382928 ], [ -4.570312, 12.382928 ], [ -4.570312, 12.897489 ], [ -4.394531, 12.897489 ], [ -4.394531, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 13.410994 ], [ -3.339844, 13.410994 ], [ -3.339844, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.752725 ], [ -2.988281, 13.752725 ], [ -2.988281, 13.923404 ], [ -2.636719, 13.923404 ], [ -2.636719, 14.093957 ], [ -2.285156, 14.093957 ], [ -2.285156, 14.434680 ], [ -2.109375, 14.434680 ], [ -2.109375, 14.604847 ], [ -1.933594, 14.604847 ], [ -1.933594, 14.774883 ], [ -1.582031, 14.774883 ], [ -1.582031, 14.944785 ], [ -1.230469, 14.944785 ], [ -1.230469, 15.114553 ], [ -0.527344, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.492188, 8.407168 ], [ -9.492188, 8.059230 ], [ -9.316406, 8.059230 ], [ -9.316406, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.964844, 7.536764 ], [ -8.789062, 7.536764 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 6.664608 ], [ -8.613281, 6.664608 ], [ -8.613281, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 6.140555 ], [ -7.910156, 6.140555 ], [ -7.910156, 5.965754 ], [ -7.734375, 5.965754 ], [ -7.734375, 5.790897 ], [ -7.558594, 5.790897 ], [ -7.558594, 4.740675 ], [ -7.734375, 4.740675 ], [ -7.734375, 4.390229 ], [ -8.261719, 4.390229 ], [ -8.261719, 4.565474 ], [ -8.613281, 4.565474 ], [ -8.613281, 4.740675 ], [ -8.964844, 4.740675 ], [ -8.964844, 4.915833 ], [ -9.140625, 4.915833 ], [ -9.140625, 5.090944 ], [ -9.316406, 5.090944 ], [ -9.316406, 5.266008 ], [ -9.667969, 5.266008 ], [ -9.667969, 5.441022 ], [ -9.843750, 5.441022 ], [ -9.843750, 5.615986 ], [ -10.019531, 5.615986 ], [ -10.019531, 5.790897 ], [ -10.371094, 5.790897 ], [ -10.371094, 5.965754 ], [ -10.722656, 5.965754 ], [ -10.722656, 6.140555 ], [ -10.898438, 6.140555 ], [ -10.898438, 6.315299 ], [ -11.074219, 6.315299 ], [ -11.074219, 6.489983 ], [ -11.250000, 6.489983 ], [ -11.250000, 6.664608 ], [ -11.425781, 6.664608 ], [ -11.425781, 7.013668 ], [ -11.250000, 7.013668 ], [ -11.250000, 7.188101 ], [ -11.074219, 7.188101 ], [ -11.074219, 7.362467 ], [ -10.898438, 7.362467 ], [ -10.898438, 7.710992 ], [ -10.722656, 7.710992 ], [ -10.722656, 7.885147 ], [ -10.546875, 7.885147 ], [ -10.546875, 8.059230 ], [ -10.371094, 8.059230 ], [ -10.371094, 8.233237 ], [ -10.195312, 8.233237 ], [ -10.195312, 8.407168 ], [ -9.492188, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.581021 ], [ -9.843750, 8.407168 ], [ -9.667969, 8.407168 ], [ -9.667969, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.964844, 7.536764 ], [ -8.789062, 7.536764 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 7.536764 ], [ -8.613281, 7.536764 ], [ -8.613281, 7.188101 ], [ -8.437500, 7.188101 ], [ -8.437500, 6.664608 ], [ -8.613281, 6.664608 ], [ -8.613281, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 6.140555 ], [ -8.085938, 6.140555 ], [ -8.085938, 5.965754 ], [ -7.910156, 5.965754 ], [ -7.910156, 5.790897 ], [ -7.734375, 5.790897 ], [ -7.734375, 5.615986 ], [ -7.558594, 5.615986 ], [ -7.558594, 5.266008 ], [ -7.734375, 5.266008 ], [ -7.734375, 4.390229 ], [ -8.437500, 4.390229 ], [ -8.437500, 4.565474 ], [ -8.789062, 4.565474 ], [ -8.789062, 4.740675 ], [ -9.140625, 4.740675 ], [ -9.140625, 4.915833 ], [ -9.316406, 4.915833 ], [ -9.316406, 5.090944 ], [ -9.492188, 5.090944 ], [ -9.492188, 5.266008 ], [ -9.843750, 5.266008 ], [ -9.843750, 5.441022 ], [ -10.019531, 5.441022 ], [ -10.019531, 5.615986 ], [ -10.195312, 5.615986 ], [ -10.195312, 5.790897 ], [ -10.546875, 5.790897 ], [ -10.546875, 5.965754 ], [ -10.898438, 5.965754 ], [ -10.898438, 6.140555 ], [ -11.074219, 6.140555 ], [ -11.074219, 6.315299 ], [ -11.250000, 6.315299 ], [ -11.250000, 6.489983 ], [ -11.425781, 6.489983 ], [ -11.425781, 6.664608 ], [ -11.601562, 6.664608 ], [ -11.601562, 6.839170 ], [ -11.425781, 6.839170 ], [ -11.425781, 7.013668 ], [ -11.250000, 7.013668 ], [ -11.250000, 7.536764 ], [ -11.074219, 7.536764 ], [ -11.074219, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 7.885147 ], [ -10.722656, 7.885147 ], [ -10.722656, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 8.233237 ], [ -10.371094, 8.233237 ], [ -10.371094, 8.407168 ], [ -10.019531, 8.407168 ], [ -10.019531, 8.581021 ], [ -9.843750, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.152344, 10.487812 ], [ -6.152344, 10.314919 ], [ -5.976562, 10.314919 ], [ -5.976562, 10.141932 ], [ -5.449219, 10.141932 ], [ -5.449219, 10.314919 ], [ -5.273438, 10.314919 ], [ -5.273438, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.968851 ], [ -4.746094, 9.968851 ], [ -4.746094, 9.622414 ], [ -4.042969, 9.622414 ], [ -4.042969, 9.795678 ], [ -3.691406, 9.795678 ], [ -3.691406, 9.968851 ], [ -3.515625, 9.968851 ], [ -3.515625, 9.795678 ], [ -3.164062, 9.795678 ], [ -3.164062, 9.622414 ], [ -2.812500, 9.622414 ], [ -2.812500, 8.928487 ], [ -2.636719, 8.928487 ], [ -2.636719, 7.885147 ], [ -2.812500, 7.885147 ], [ -2.812500, 7.536764 ], [ -2.988281, 7.536764 ], [ -2.988281, 6.839170 ], [ -3.164062, 6.839170 ], [ -3.164062, 5.965754 ], [ -2.988281, 5.965754 ], [ -2.988281, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.691406, 4.915833 ], [ -3.691406, 5.090944 ], [ -4.042969, 5.090944 ], [ -4.042969, 5.266008 ], [ -4.218750, 5.266008 ], [ -4.218750, 5.090944 ], [ -5.097656, 5.090944 ], [ -5.097656, 4.915833 ], [ -5.976562, 4.915833 ], [ -5.976562, 4.740675 ], [ -6.679688, 4.740675 ], [ -6.679688, 4.565474 ], [ -7.207031, 4.565474 ], [ -7.207031, 4.390229 ], [ -7.734375, 4.390229 ], [ -7.734375, 4.740675 ], [ -7.558594, 4.740675 ], [ -7.558594, 5.790897 ], [ -7.734375, 5.790897 ], [ -7.734375, 5.965754 ], [ -7.910156, 5.965754 ], [ -7.910156, 6.140555 ], [ -8.437500, 6.140555 ], [ -8.437500, 6.315299 ], [ -8.613281, 6.315299 ], [ -8.613281, 6.664608 ], [ -8.437500, 6.664608 ], [ -8.437500, 7.710992 ], [ -8.261719, 7.710992 ], [ -8.261719, 8.407168 ], [ -7.910156, 8.407168 ], [ -7.910156, 8.928487 ], [ -8.085938, 8.928487 ], [ -8.085938, 9.622414 ], [ -8.261719, 9.622414 ], [ -8.261719, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.855469, 10.314919 ], [ -6.679688, 10.314919 ], [ -6.679688, 10.487812 ], [ -6.152344, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.449219, 10.487812 ], [ -5.449219, 10.314919 ], [ -5.097656, 10.314919 ], [ -5.097656, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.795678 ], [ -4.570312, 9.795678 ], [ -4.570312, 9.622414 ], [ -4.218750, 9.622414 ], [ -4.218750, 9.795678 ], [ -4.042969, 9.795678 ], [ -4.042969, 9.968851 ], [ -3.339844, 9.968851 ], [ -3.339844, 9.795678 ], [ -2.988281, 9.795678 ], [ -2.988281, 9.275622 ], [ -2.812500, 9.275622 ], [ -2.812500, 8.581021 ], [ -2.636719, 8.581021 ], [ -2.636719, 8.059230 ], [ -2.812500, 8.059230 ], [ -2.812500, 7.710992 ], [ -2.988281, 7.710992 ], [ -2.988281, 7.188101 ], [ -3.164062, 7.188101 ], [ -3.164062, 6.489983 ], [ -3.339844, 6.489983 ], [ -3.339844, 6.140555 ], [ -3.164062, 6.140555 ], [ -3.164062, 5.790897 ], [ -2.988281, 5.790897 ], [ -2.988281, 5.441022 ], [ -2.812500, 5.441022 ], [ -2.812500, 5.266008 ], [ -2.988281, 5.266008 ], [ -2.988281, 5.090944 ], [ -3.867188, 5.090944 ], [ -3.867188, 5.266008 ], [ -5.273438, 5.266008 ], [ -5.273438, 5.090944 ], [ -5.976562, 5.090944 ], [ -5.976562, 4.915833 ], [ -6.328125, 4.915833 ], [ -6.328125, 4.740675 ], [ -6.855469, 4.740675 ], [ -6.855469, 4.565474 ], [ -7.207031, 4.565474 ], [ -7.207031, 4.390229 ], [ -7.734375, 4.390229 ], [ -7.734375, 5.266008 ], [ -7.558594, 5.266008 ], [ -7.558594, 5.615986 ], [ -7.734375, 5.615986 ], [ -7.734375, 5.790897 ], [ -7.910156, 5.790897 ], [ -7.910156, 5.965754 ], [ -8.085938, 5.965754 ], [ -8.085938, 6.140555 ], [ -8.437500, 6.140555 ], [ -8.437500, 6.315299 ], [ -8.613281, 6.315299 ], [ -8.613281, 6.664608 ], [ -8.437500, 6.664608 ], [ -8.437500, 7.188101 ], [ -8.613281, 7.188101 ], [ -8.613281, 7.536764 ], [ -8.437500, 7.536764 ], [ -8.437500, 7.885147 ], [ -8.261719, 7.885147 ], [ -8.261719, 8.233237 ], [ -8.437500, 8.233237 ], [ -8.437500, 8.407168 ], [ -8.261719, 8.407168 ], [ -8.261719, 8.581021 ], [ -7.910156, 8.581021 ], [ -7.910156, 8.928487 ], [ -8.085938, 8.928487 ], [ -8.085938, 9.449062 ], [ -8.261719, 9.449062 ], [ -8.261719, 9.622414 ], [ -8.437500, 9.622414 ], [ -8.437500, 9.968851 ], [ -8.261719, 9.968851 ], [ -8.261719, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 10.314919 ], [ -7.382812, 10.314919 ], [ -7.382812, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.855469, 10.314919 ], [ -6.679688, 10.314919 ], [ -6.679688, 10.487812 ], [ -6.328125, 10.487812 ], [ -6.328125, 10.314919 ], [ -6.152344, 10.314919 ], [ -6.152344, 10.141932 ], [ -5.976562, 10.141932 ], [ -5.976562, 10.314919 ], [ -5.625000, 10.314919 ], [ -5.625000, 10.487812 ], [ -5.449219, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.005904 ], [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.141932 ], [ 0.351562, 10.141932 ], [ 0.351562, 9.102097 ], [ 0.527344, 9.102097 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.315299 ], [ 0.878906, 6.315299 ], [ 0.878906, 5.790897 ], [ 0.703125, 5.790897 ], [ 0.703125, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.441022 ], [ -0.175781, 5.441022 ], [ -0.175781, 5.266008 ], [ -0.527344, 5.266008 ], [ -0.527344, 5.090944 ], [ -0.878906, 5.090944 ], [ -0.878906, 4.915833 ], [ -1.406250, 4.915833 ], [ -1.406250, 4.740675 ], [ -2.460938, 4.740675 ], [ -2.460938, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -2.988281, 5.615986 ], [ -2.988281, 5.965754 ], [ -3.164062, 5.965754 ], [ -3.164062, 6.839170 ], [ -2.988281, 6.839170 ], [ -2.988281, 7.536764 ], [ -2.812500, 7.536764 ], [ -2.812500, 7.885147 ], [ -2.636719, 7.885147 ], [ -2.636719, 8.928487 ], [ -2.812500, 8.928487 ], [ -2.812500, 9.968851 ], [ -2.988281, 9.968851 ], [ -2.988281, 11.005904 ], [ 0.000000, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 11.005904 ], [ -0.175781, 11.005904 ], [ -0.175781, 10.660608 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.314919 ], [ 0.351562, 10.314919 ], [ 0.351562, 8.581021 ], [ 0.527344, 8.581021 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 8.059230 ], [ 0.527344, 8.059230 ], [ 0.527344, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.188101 ], [ 0.527344, 7.188101 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.315299 ], [ 0.878906, 6.315299 ], [ 0.878906, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 5.790897 ], [ 0.351562, 5.790897 ], [ 0.351562, 5.615986 ], [ -0.175781, 5.615986 ], [ -0.175781, 5.441022 ], [ -0.527344, 5.441022 ], [ -0.527344, 5.266008 ], [ -0.878906, 5.266008 ], [ -0.878906, 5.090944 ], [ -1.406250, 5.090944 ], [ -1.406250, 4.915833 ], [ -1.757812, 4.915833 ], [ -1.757812, 4.740675 ], [ -2.460938, 4.740675 ], [ -2.460938, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.090944 ], [ -2.988281, 5.090944 ], [ -2.988281, 5.266008 ], [ -2.812500, 5.266008 ], [ -2.812500, 5.441022 ], [ -2.988281, 5.441022 ], [ -2.988281, 5.790897 ], [ -3.164062, 5.790897 ], [ -3.164062, 6.140555 ], [ -3.339844, 6.140555 ], [ -3.339844, 6.489983 ], [ -3.164062, 6.489983 ], [ -3.164062, 7.188101 ], [ -2.988281, 7.188101 ], [ -2.988281, 7.710992 ], [ -2.812500, 7.710992 ], [ -2.812500, 8.059230 ], [ -2.636719, 8.059230 ], [ -2.636719, 8.581021 ], [ -2.812500, 8.581021 ], [ -2.812500, 9.275622 ], [ -2.988281, 9.275622 ], [ -2.988281, 11.005904 ], [ -1.933594, 11.005904 ], [ -1.933594, 11.178402 ], [ -1.230469, 11.178402 ], [ -1.230469, 11.005904 ], [ -0.527344, 11.005904 ], [ -0.527344, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.315125 ], [ 0.878906, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ -0.175781, 21.779905 ], [ -0.175781, 21.943046 ], [ -0.527344, 21.943046 ], [ -0.527344, 22.105999 ], [ -0.703125, 22.105999 ], [ -0.703125, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.431340 ], [ -1.230469, 22.431340 ], [ -1.230469, 22.593726 ], [ -1.582031, 22.593726 ], [ -1.582031, 22.755921 ], [ -1.757812, 22.755921 ], [ -1.757812, 22.917923 ], [ -2.109375, 22.917923 ], [ -2.109375, 23.079732 ], [ -2.285156, 23.079732 ], [ -2.285156, 23.241346 ], [ -2.460938, 23.241346 ], [ -2.460938, 23.402765 ], [ -2.812500, 23.402765 ], [ -2.812500, 23.563987 ], [ -2.988281, 23.563987 ], [ -2.988281, 23.725012 ], [ -3.164062, 23.725012 ], [ -3.164062, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 24.046464 ], [ -3.691406, 24.046464 ], [ -3.691406, 24.206890 ], [ -3.867188, 24.206890 ], [ -3.867188, 24.367114 ], [ -4.218750, 24.367114 ], [ -4.218750, 24.527135 ], [ -4.394531, 24.527135 ], [ -4.394531, 24.686952 ], [ -4.570312, 24.686952 ], [ -4.570312, 24.846565 ], [ -4.921875, 24.846565 ], [ -4.921875, 25.005973 ], [ -5.097656, 25.005973 ], [ -5.097656, 25.165173 ], [ -5.449219, 25.165173 ], [ -5.449219, 25.324167 ], [ -5.625000, 25.324167 ], [ -5.625000, 25.482951 ], [ -5.800781, 25.482951 ], [ -5.800781, 25.641526 ], [ -6.152344, 25.641526 ], [ -6.152344, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 25.958045 ], [ -6.679688, 25.958045 ], [ -6.679688, 26.115986 ], [ -6.855469, 26.115986 ], [ -6.855469, 26.273714 ], [ -7.031250, 26.273714 ], [ -7.031250, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.588527 ], [ -7.558594, 26.588527 ], [ -7.558594, 26.745610 ], [ -7.910156, 26.745610 ], [ -7.910156, 26.902477 ], [ -8.085938, 26.902477 ], [ -8.085938, 27.059126 ], [ -8.261719, 27.059126 ], [ -8.261719, 27.215556 ], [ -8.613281, 27.215556 ], [ -8.613281, 28.767659 ], [ -8.437500, 28.767659 ], [ -8.437500, 28.921631 ], [ -8.085938, 28.921631 ], [ -8.085938, 29.075375 ], [ -7.734375, 29.075375 ], [ -7.734375, 29.228890 ], [ -7.382812, 29.228890 ], [ -7.382812, 29.382175 ], [ -7.031250, 29.382175 ], [ -7.031250, 29.535230 ], [ -6.328125, 29.535230 ], [ -6.328125, 29.688053 ], [ -5.625000, 29.688053 ], [ -5.625000, 29.840644 ], [ -5.273438, 29.840644 ], [ -5.273438, 29.993002 ], [ -5.097656, 29.993002 ], [ -5.097656, 30.297018 ], [ -4.921875, 30.297018 ], [ -4.921875, 30.448674 ], [ -4.570312, 30.448674 ], [ -4.570312, 30.600094 ], [ -4.218750, 30.600094 ], [ -4.218750, 30.751278 ], [ -3.867188, 30.751278 ], [ -3.867188, 30.902225 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -2.812500, 31.653381 ], [ -2.812500, 31.952162 ], [ -2.636719, 31.952162 ], [ -2.636719, 32.101190 ], [ -1.757812, 32.101190 ], [ -1.757812, 32.249974 ], [ -1.230469, 32.249974 ], [ -1.230469, 32.398516 ], [ -1.054688, 32.398516 ], [ -1.054688, 32.694866 ], [ -1.406250, 32.694866 ], [ -1.406250, 32.990236 ], [ -1.582031, 32.990236 ], [ -1.582031, 33.578015 ], [ -1.757812, 33.578015 ], [ -1.757812, 34.741612 ], [ -1.933594, 34.741612 ], [ -1.933594, 35.029996 ], [ -2.109375, 35.029996 ], [ -2.109375, 35.173808 ], [ -1.933594, 35.173808 ], [ -1.933594, 35.317366 ], [ -1.757812, 35.317366 ], [ -1.757812, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 35.603719 ], [ -1.230469, 35.603719 ], [ -1.230469, 35.746512 ], [ -0.527344, 35.746512 ], [ -0.527344, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.173357 ], [ 0.527344, 36.173357 ], [ 0.527344, 36.315125 ], [ 0.878906, 36.315125 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.456636 ], [ 0.878906, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ 0.000000, 21.779905 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 22.268764 ], [ -0.878906, 22.268764 ], [ -0.878906, 22.431340 ], [ -1.054688, 22.431340 ], [ -1.054688, 22.593726 ], [ -1.230469, 22.593726 ], [ -1.230469, 22.755921 ], [ -1.582031, 22.755921 ], [ -1.582031, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 23.079732 ], [ -2.109375, 23.079732 ], [ -2.109375, 23.241346 ], [ -2.285156, 23.241346 ], [ -2.285156, 23.402765 ], [ -2.636719, 23.402765 ], [ -2.636719, 23.563987 ], [ -2.812500, 23.563987 ], [ -2.812500, 23.725012 ], [ -3.164062, 23.725012 ], [ -3.164062, 23.885838 ], [ -3.339844, 23.885838 ], [ -3.339844, 24.046464 ], [ -3.515625, 24.046464 ], [ -3.515625, 24.206890 ], [ -3.867188, 24.206890 ], [ -3.867188, 24.367114 ], [ -4.042969, 24.367114 ], [ -4.042969, 24.527135 ], [ -4.394531, 24.527135 ], [ -4.394531, 24.686952 ], [ -4.570312, 24.686952 ], [ -4.570312, 24.846565 ], [ -4.921875, 24.846565 ], [ -4.921875, 25.005973 ], [ -5.097656, 25.005973 ], [ -5.097656, 25.165173 ], [ -5.449219, 25.165173 ], [ -5.449219, 25.324167 ], [ -5.625000, 25.324167 ], [ -5.625000, 25.482951 ], [ -5.800781, 25.482951 ], [ -5.800781, 25.641526 ], [ -6.152344, 25.641526 ], [ -6.152344, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 25.958045 ], [ -6.503906, 25.958045 ], [ -6.503906, 26.115986 ], [ -6.855469, 26.115986 ], [ -6.855469, 26.273714 ], [ -7.031250, 26.273714 ], [ -7.031250, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.588527 ], [ -7.558594, 26.588527 ], [ -7.558594, 26.745610 ], [ -7.734375, 26.745610 ], [ -7.734375, 26.902477 ], [ -8.085938, 26.902477 ], [ -8.085938, 27.059126 ], [ -8.261719, 27.059126 ], [ -8.261719, 27.215556 ], [ -8.437500, 27.215556 ], [ -8.437500, 27.371767 ], [ -8.789062, 27.371767 ], [ -8.789062, 28.921631 ], [ -8.613281, 28.921631 ], [ -8.613281, 29.075375 ], [ -8.261719, 29.075375 ], [ -8.261719, 29.228890 ], [ -7.910156, 29.228890 ], [ -7.910156, 29.382175 ], [ -7.558594, 29.382175 ], [ -7.558594, 29.535230 ], [ -7.207031, 29.535230 ], [ -7.207031, 29.688053 ], [ -6.503906, 29.688053 ], [ -6.503906, 29.840644 ], [ -5.800781, 29.840644 ], [ -5.800781, 29.993002 ], [ -5.449219, 29.993002 ], [ -5.449219, 30.145127 ], [ -5.097656, 30.145127 ], [ -5.097656, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.600094 ], [ -4.570312, 30.600094 ], [ -4.570312, 30.751278 ], [ -3.867188, 30.751278 ], [ -3.867188, 30.902225 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.339844, 31.653381 ], [ -3.339844, 31.802893 ], [ -2.988281, 31.802893 ], [ -2.988281, 31.952162 ], [ -2.636719, 31.952162 ], [ -2.636719, 32.101190 ], [ -2.285156, 32.101190 ], [ -2.285156, 32.249974 ], [ -1.582031, 32.249974 ], [ -1.582031, 32.398516 ], [ -1.406250, 32.398516 ], [ -1.406250, 32.546813 ], [ -1.230469, 32.546813 ], [ -1.230469, 32.842674 ], [ -1.406250, 32.842674 ], [ -1.406250, 33.137551 ], [ -1.582031, 33.137551 ], [ -1.582031, 33.724340 ], [ -1.757812, 33.724340 ], [ -1.757812, 34.307144 ], [ -1.933594, 34.307144 ], [ -1.933594, 34.741612 ], [ -2.109375, 34.741612 ], [ -2.109375, 35.029996 ], [ -2.285156, 35.029996 ], [ -2.285156, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 35.317366 ], [ -1.757812, 35.317366 ], [ -1.757812, 35.460670 ], [ -1.582031, 35.460670 ], [ -1.582031, 35.603719 ], [ -1.230469, 35.603719 ], [ -1.230469, 35.746512 ], [ -0.527344, 35.746512 ], [ -0.527344, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.175781, 36.031332 ], [ 0.175781, 36.173357 ], [ 0.351562, 36.173357 ], [ 0.351562, 36.315125 ], [ 0.703125, 36.315125 ], [ 0.703125, 36.456636 ], [ 0.878906, 36.456636 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.944785 ], [ 0.878906, 13.410994 ], [ 0.703125, 13.410994 ], [ 0.703125, 13.581921 ], [ 0.527344, 13.581921 ], [ 0.527344, 13.752725 ], [ 0.351562, 13.752725 ], [ 0.351562, 14.944785 ], [ 0.878906, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 15.114553 ], [ 0.878906, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.923404 ], [ 0.351562, 13.923404 ], [ 0.351562, 14.264383 ], [ 0.175781, 14.264383 ], [ 0.175781, 14.774883 ], [ 0.351562, 14.774883 ], [ 0.351562, 14.944785 ], [ 0.703125, 14.944785 ], [ 0.703125, 15.114553 ], [ 0.878906, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.314919 ], [ 0.878906, 10.314919 ], [ 0.878906, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 9.102097 ], [ 0.351562, 9.102097 ], [ 0.351562, 10.141932 ], [ 0.175781, 10.141932 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 11.178402 ], [ 0.351562, 11.005904 ], [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.487812 ], [ 0.878906, 10.487812 ], [ 0.878906, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.188101 ], [ 0.351562, 7.188101 ], [ 0.351562, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 8.059230 ], [ 0.703125, 8.059230 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 8.581021 ], [ 0.351562, 8.581021 ], [ 0.351562, 10.314919 ], [ 0.175781, 10.314919 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 10.660608 ], [ -0.175781, 10.660608 ], [ -0.175781, 11.005904 ], [ 0.000000, 11.005904 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.660608 ], [ 0.878906, 10.314919 ], [ 0.703125, 10.314919 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.660608 ], [ 0.878906, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.925781, 66.861082 ], [ -33.925781, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.652977 ], [ -34.277344, 66.652977 ], [ -34.277344, 66.583217 ], [ -34.453125, 66.583217 ], [ -34.453125, 66.513260 ], [ -34.628906, 66.513260 ], [ -34.628906, 66.443107 ], [ -34.980469, 66.443107 ], [ -34.980469, 66.372755 ], [ -35.156250, 66.372755 ], [ -35.156250, 66.302205 ], [ -35.332031, 66.302205 ], [ -35.332031, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.160511 ], [ -35.683594, 66.160511 ], [ -35.683594, 66.089364 ], [ -36.035156, 66.089364 ], [ -36.035156, 66.018018 ], [ -36.210938, 66.018018 ], [ -36.210938, 65.946472 ], [ -37.089844, 65.946472 ], [ -37.089844, 65.874725 ], [ -37.441406, 65.874725 ], [ -37.441406, 65.802776 ], [ -37.792969, 65.802776 ], [ -37.792969, 65.730626 ], [ -38.144531, 65.730626 ], [ -38.144531, 65.658275 ], [ -38.496094, 65.658275 ], [ -38.496094, 65.585720 ], [ -38.847656, 65.585720 ], [ -38.847656, 65.512963 ], [ -39.375000, 65.512963 ], [ -39.375000, 65.440002 ], [ -39.726562, 65.440002 ], [ -39.726562, 65.366837 ], [ -39.902344, 65.366837 ], [ -39.902344, 65.219894 ], [ -40.078125, 65.219894 ], [ -40.078125, 65.146115 ], [ -40.253906, 65.146115 ], [ -40.253906, 64.997939 ], [ -40.429688, 64.997939 ], [ -40.429688, 64.848937 ], [ -40.605469, 64.848937 ], [ -40.605469, 64.014496 ], [ -40.781250, 64.014496 ], [ -40.781250, 63.782486 ], [ -40.957031, 63.782486 ], [ -40.957031, 63.548552 ], [ -41.132812, 63.548552 ], [ -41.132812, 63.391522 ], [ -41.308594, 63.391522 ], [ -41.308594, 63.312683 ], [ -41.484375, 63.312683 ], [ -41.484375, 63.233627 ], [ -41.660156, 63.233627 ], [ -41.660156, 63.154355 ], [ -41.835938, 63.154355 ], [ -41.835938, 63.074866 ], [ -42.011719, 63.074866 ], [ -42.011719, 62.995158 ], [ -42.187500, 62.995158 ], [ -42.187500, 62.915233 ], [ -42.363281, 62.915233 ], [ -42.363281, 62.835089 ], [ -42.539062, 62.835089 ], [ -42.539062, 62.754726 ], [ -42.714844, 62.754726 ], [ -42.714844, 62.674143 ], [ -42.890625, 62.674143 ], [ -42.890625, 62.512318 ], [ -42.714844, 62.512318 ], [ -42.714844, 62.267923 ], [ -42.539062, 62.267923 ], [ -42.539062, 62.021528 ], [ -42.363281, 62.021528 ], [ -42.363281, 61.773123 ], [ -42.539062, 61.773123 ], [ -42.539062, 61.522695 ], [ -42.714844, 61.522695 ], [ -42.714844, 61.185625 ], [ -42.890625, 61.185625 ], [ -42.890625, 60.930432 ], [ -43.066406, 60.930432 ], [ -43.066406, 60.586967 ], [ -43.242188, 60.586967 ], [ -43.242188, 60.239811 ], [ -43.417969, 60.239811 ], [ -43.417969, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.413852 ], [ -45.527344, 60.413852 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 66.861082 ], [ -33.925781, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.101562, 66.861082 ], [ -34.101562, 66.791909 ], [ -34.277344, 66.791909 ], [ -34.277344, 66.652977 ], [ -34.453125, 66.652977 ], [ -34.453125, 66.583217 ], [ -34.628906, 66.583217 ], [ -34.628906, 66.513260 ], [ -34.980469, 66.513260 ], [ -34.980469, 66.443107 ], [ -35.156250, 66.443107 ], [ -35.156250, 66.372755 ], [ -35.332031, 66.372755 ], [ -35.332031, 66.302205 ], [ -35.507812, 66.302205 ], [ -35.507812, 66.231457 ], [ -35.683594, 66.231457 ], [ -35.683594, 66.160511 ], [ -36.035156, 66.160511 ], [ -36.035156, 66.089364 ], [ -36.210938, 66.089364 ], [ -36.210938, 66.018018 ], [ -36.562500, 66.018018 ], [ -36.562500, 65.946472 ], [ -37.265625, 65.946472 ], [ -37.265625, 65.874725 ], [ -37.617188, 65.874725 ], [ -37.617188, 65.802776 ], [ -38.144531, 65.802776 ], [ -38.144531, 65.730626 ], [ -38.671875, 65.730626 ], [ -38.671875, 65.658275 ], [ -39.023438, 65.658275 ], [ -39.023438, 65.585720 ], [ -39.550781, 65.585720 ], [ -39.550781, 65.512963 ], [ -39.902344, 65.512963 ], [ -39.902344, 65.440002 ], [ -40.078125, 65.440002 ], [ -40.078125, 65.293468 ], [ -40.253906, 65.293468 ], [ -40.253906, 65.146115 ], [ -40.429688, 65.146115 ], [ -40.429688, 64.997939 ], [ -40.605469, 64.997939 ], [ -40.605469, 64.848937 ], [ -40.781250, 64.848937 ], [ -40.781250, 64.014496 ], [ -40.957031, 64.014496 ], [ -40.957031, 63.860036 ], [ -41.132812, 63.860036 ], [ -41.132812, 63.626745 ], [ -41.308594, 63.626745 ], [ -41.308594, 63.470145 ], [ -41.484375, 63.470145 ], [ -41.484375, 63.391522 ], [ -41.660156, 63.391522 ], [ -41.660156, 63.312683 ], [ -41.835938, 63.312683 ], [ -41.835938, 63.233627 ], [ -42.011719, 63.233627 ], [ -42.011719, 63.154355 ], [ -42.187500, 63.154355 ], [ -42.187500, 62.995158 ], [ -42.363281, 62.995158 ], [ -42.363281, 62.915233 ], [ -42.539062, 62.915233 ], [ -42.539062, 62.835089 ], [ -42.714844, 62.835089 ], [ -42.714844, 62.754726 ], [ -42.890625, 62.754726 ], [ -42.890625, 62.512318 ], [ -42.714844, 62.512318 ], [ -42.714844, 62.103883 ], [ -42.539062, 62.103883 ], [ -42.539062, 61.689872 ], [ -42.714844, 61.689872 ], [ -42.714844, 61.270233 ], [ -42.890625, 61.270233 ], [ -42.890625, 60.930432 ], [ -43.066406, 60.930432 ], [ -43.066406, 60.586967 ], [ -43.242188, 60.586967 ], [ -43.242188, 60.239811 ], [ -43.417969, 60.239811 ], [ -43.417969, 60.152442 ], [ -43.945312, 60.152442 ], [ -43.945312, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.413852 ], [ -45.527344, 60.413852 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 66.861082 ], [ -34.101562, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.468750, 66.513260 ], [ -15.468750, 66.443107 ], [ -14.589844, 66.443107 ], [ -14.589844, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.730626 ], [ -14.589844, 65.730626 ], [ -14.589844, 65.658275 ], [ -14.414062, 65.658275 ], [ -14.414062, 65.512963 ], [ -14.238281, 65.512963 ], [ -14.238281, 65.440002 ], [ -14.062500, 65.440002 ], [ -14.062500, 65.366837 ], [ -13.886719, 65.366837 ], [ -13.886719, 65.219894 ], [ -13.710938, 65.219894 ], [ -13.710938, 65.146115 ], [ -13.535156, 65.146115 ], [ -13.535156, 65.072130 ], [ -13.710938, 65.072130 ], [ -13.710938, 64.997939 ], [ -13.886719, 64.997939 ], [ -13.886719, 64.848937 ], [ -14.062500, 64.848937 ], [ -14.062500, 64.774125 ], [ -14.238281, 64.774125 ], [ -14.238281, 64.699105 ], [ -14.414062, 64.699105 ], [ -14.414062, 64.623877 ], [ -14.589844, 64.623877 ], [ -14.589844, 64.472794 ], [ -14.765625, 64.472794 ], [ -14.765625, 64.396938 ], [ -14.941406, 64.396938 ], [ -14.941406, 64.320872 ], [ -15.292969, 64.320872 ], [ -15.292969, 64.244595 ], [ -15.644531, 64.244595 ], [ -15.644531, 64.168107 ], [ -15.996094, 64.168107 ], [ -15.996094, 64.091408 ], [ -16.171875, 64.091408 ], [ -16.171875, 64.014496 ], [ -16.523438, 64.014496 ], [ -16.523438, 63.937372 ], [ -16.875000, 63.937372 ], [ -16.875000, 63.860036 ], [ -17.226562, 63.860036 ], [ -17.226562, 63.782486 ], [ -17.578125, 63.782486 ], [ -17.578125, 63.704722 ], [ -17.753906, 63.704722 ], [ -17.753906, 63.626745 ], [ -18.105469, 63.626745 ], [ -18.105469, 63.548552 ], [ -18.457031, 63.548552 ], [ -18.457031, 63.470145 ], [ -19.160156, 63.470145 ], [ -19.160156, 63.548552 ], [ -19.863281, 63.548552 ], [ -19.863281, 63.626745 ], [ -20.390625, 63.626745 ], [ -20.390625, 63.704722 ], [ -21.093750, 63.704722 ], [ -21.093750, 63.782486 ], [ -21.796875, 63.782486 ], [ -21.796875, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.014496 ], [ -22.324219, 64.014496 ], [ -22.324219, 64.168107 ], [ -22.148438, 64.168107 ], [ -22.148438, 64.244595 ], [ -21.972656, 64.244595 ], [ -21.972656, 64.320872 ], [ -21.796875, 64.320872 ], [ -21.796875, 64.396938 ], [ -21.972656, 64.396938 ], [ -21.972656, 64.472794 ], [ -22.324219, 64.472794 ], [ -22.324219, 64.548440 ], [ -22.675781, 64.548440 ], [ -22.675781, 64.623877 ], [ -23.027344, 64.623877 ], [ -23.027344, 64.699105 ], [ -23.203125, 64.699105 ], [ -23.203125, 64.774125 ], [ -23.554688, 64.774125 ], [ -23.554688, 64.848937 ], [ -23.906250, 64.848937 ], [ -23.906250, 64.923542 ], [ -23.378906, 64.923542 ], [ -23.378906, 64.997939 ], [ -22.500000, 64.997939 ], [ -22.500000, 65.072130 ], [ -22.148438, 65.072130 ], [ -22.148438, 65.366837 ], [ -22.675781, 65.366837 ], [ -22.675781, 65.440002 ], [ -23.378906, 65.440002 ], [ -23.378906, 65.512963 ], [ -24.082031, 65.512963 ], [ -24.082031, 65.585720 ], [ -24.257812, 65.585720 ], [ -24.257812, 65.658275 ], [ -24.082031, 65.658275 ], [ -24.082031, 65.874725 ], [ -23.906250, 65.874725 ], [ -23.906250, 66.089364 ], [ -23.730469, 66.089364 ], [ -23.730469, 66.231457 ], [ -23.378906, 66.231457 ], [ -23.378906, 66.302205 ], [ -22.851562, 66.302205 ], [ -22.851562, 66.372755 ], [ -22.324219, 66.372755 ], [ -22.324219, 66.443107 ], [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.231457 ], [ -21.621094, 66.231457 ], [ -21.621094, 66.160511 ], [ -21.445312, 66.160511 ], [ -21.445312, 66.089364 ], [ -21.269531, 66.089364 ], [ -21.269531, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.874725 ], [ -20.917969, 65.874725 ], [ -20.917969, 65.802776 ], [ -20.742188, 65.802776 ], [ -20.742188, 65.730626 ], [ -20.390625, 65.730626 ], [ -20.390625, 65.802776 ], [ -20.214844, 65.802776 ], [ -20.214844, 65.874725 ], [ -20.039062, 65.874725 ], [ -20.039062, 65.946472 ], [ -19.863281, 65.946472 ], [ -19.863281, 66.018018 ], [ -19.511719, 66.018018 ], [ -19.511719, 66.089364 ], [ -19.335938, 66.089364 ], [ -19.335938, 66.160511 ], [ -19.160156, 66.160511 ], [ -19.160156, 66.231457 ], [ -18.632812, 66.231457 ], [ -18.632812, 66.160511 ], [ -18.281250, 66.160511 ], [ -18.281250, 66.089364 ], [ -17.929688, 66.089364 ], [ -17.929688, 66.018018 ], [ -17.578125, 66.018018 ], [ -17.578125, 66.089364 ], [ -17.402344, 66.089364 ], [ -17.402344, 66.160511 ], [ -17.050781, 66.160511 ], [ -17.050781, 66.231457 ], [ -16.875000, 66.231457 ], [ -16.875000, 66.302205 ], [ -16.699219, 66.302205 ], [ -16.699219, 66.372755 ], [ -16.347656, 66.372755 ], [ -16.347656, 66.443107 ], [ -16.171875, 66.443107 ], [ -16.171875, 66.513260 ], [ -15.468750, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.468750, 66.583217 ], [ -15.468750, 66.513260 ], [ -14.589844, 66.513260 ], [ -14.589844, 66.160511 ], [ -14.765625, 66.160511 ], [ -14.765625, 65.802776 ], [ -14.589844, 65.802776 ], [ -14.589844, 65.658275 ], [ -14.414062, 65.658275 ], [ -14.414062, 65.512963 ], [ -14.238281, 65.512963 ], [ -14.238281, 65.440002 ], [ -14.062500, 65.440002 ], [ -14.062500, 65.293468 ], [ -13.886719, 65.293468 ], [ -13.886719, 65.146115 ], [ -13.710938, 65.146115 ], [ -13.710938, 65.072130 ], [ -13.886719, 65.072130 ], [ -13.886719, 64.923542 ], [ -14.062500, 64.923542 ], [ -14.062500, 64.848937 ], [ -14.238281, 64.848937 ], [ -14.238281, 64.774125 ], [ -14.414062, 64.774125 ], [ -14.414062, 64.623877 ], [ -14.589844, 64.623877 ], [ -14.589844, 64.548440 ], [ -14.765625, 64.548440 ], [ -14.765625, 64.396938 ], [ -14.941406, 64.396938 ], [ -14.941406, 64.320872 ], [ -15.292969, 64.320872 ], [ -15.292969, 64.244595 ], [ -15.644531, 64.244595 ], [ -15.644531, 64.168107 ], [ -15.996094, 64.168107 ], [ -15.996094, 64.091408 ], [ -16.347656, 64.091408 ], [ -16.347656, 64.014496 ], [ -16.699219, 64.014496 ], [ -16.699219, 63.937372 ], [ -17.050781, 63.937372 ], [ -17.050781, 63.860036 ], [ -17.402344, 63.860036 ], [ -17.402344, 63.782486 ], [ -17.753906, 63.782486 ], [ -17.753906, 63.704722 ], [ -18.105469, 63.704722 ], [ -18.105469, 63.626745 ], [ -18.457031, 63.626745 ], [ -18.457031, 63.548552 ], [ -19.160156, 63.548552 ], [ -19.160156, 63.626745 ], [ -19.863281, 63.626745 ], [ -19.863281, 63.704722 ], [ -20.566406, 63.704722 ], [ -20.566406, 63.782486 ], [ -21.269531, 63.782486 ], [ -21.269531, 63.860036 ], [ -21.972656, 63.860036 ], [ -21.972656, 63.937372 ], [ -22.675781, 63.937372 ], [ -22.675781, 64.091408 ], [ -22.500000, 64.091408 ], [ -22.500000, 64.168107 ], [ -22.324219, 64.168107 ], [ -22.324219, 64.244595 ], [ -22.148438, 64.244595 ], [ -22.148438, 64.320872 ], [ -21.972656, 64.320872 ], [ -21.972656, 64.396938 ], [ -21.796875, 64.396938 ], [ -21.796875, 64.472794 ], [ -22.148438, 64.472794 ], [ -22.148438, 64.548440 ], [ -22.500000, 64.548440 ], [ -22.500000, 64.623877 ], [ -22.851562, 64.623877 ], [ -22.851562, 64.699105 ], [ -23.203125, 64.699105 ], [ -23.203125, 64.774125 ], [ -23.554688, 64.774125 ], [ -23.554688, 64.848937 ], [ -23.906250, 64.848937 ], [ -23.906250, 64.923542 ], [ -23.730469, 64.923542 ], [ -23.730469, 64.997939 ], [ -23.027344, 64.997939 ], [ -23.027344, 65.072130 ], [ -22.500000, 65.072130 ], [ -22.500000, 65.146115 ], [ -22.324219, 65.146115 ], [ -22.324219, 65.440002 ], [ -22.851562, 65.440002 ], [ -22.851562, 65.512963 ], [ -23.554688, 65.512963 ], [ -23.554688, 65.585720 ], [ -24.257812, 65.585720 ], [ -24.257812, 65.658275 ], [ -24.433594, 65.658275 ], [ -24.433594, 65.730626 ], [ -24.257812, 65.730626 ], [ -24.257812, 65.874725 ], [ -24.082031, 65.874725 ], [ -24.082031, 66.018018 ], [ -23.906250, 66.018018 ], [ -23.906250, 66.160511 ], [ -23.730469, 66.160511 ], [ -23.730469, 66.302205 ], [ -23.203125, 66.302205 ], [ -23.203125, 66.372755 ], [ -22.500000, 66.372755 ], [ -22.500000, 66.443107 ], [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.231457 ], [ -21.621094, 66.231457 ], [ -21.621094, 66.160511 ], [ -21.445312, 66.160511 ], [ -21.445312, 66.018018 ], [ -21.269531, 66.018018 ], [ -21.269531, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.874725 ], [ -20.917969, 65.874725 ], [ -20.917969, 65.802776 ], [ -20.566406, 65.802776 ], [ -20.566406, 65.874725 ], [ -20.390625, 65.874725 ], [ -20.390625, 65.946472 ], [ -20.039062, 65.946472 ], [ -20.039062, 66.018018 ], [ -19.863281, 66.018018 ], [ -19.863281, 66.089364 ], [ -19.687500, 66.089364 ], [ -19.687500, 66.160511 ], [ -19.335938, 66.160511 ], [ -19.335938, 66.231457 ], [ -18.808594, 66.231457 ], [ -18.808594, 66.160511 ], [ -18.457031, 66.160511 ], [ -18.457031, 66.089364 ], [ -18.105469, 66.089364 ], [ -18.105469, 66.018018 ], [ -17.753906, 66.018018 ], [ -17.753906, 66.089364 ], [ -17.578125, 66.089364 ], [ -17.578125, 66.160511 ], [ -17.226562, 66.160511 ], [ -17.226562, 66.231457 ], [ -17.050781, 66.231457 ], [ -17.050781, 66.302205 ], [ -16.875000, 66.302205 ], [ -16.875000, 66.372755 ], [ -16.699219, 66.372755 ], [ -16.699219, 66.443107 ], [ -16.347656, 66.443107 ], [ -16.347656, 66.513260 ], [ -16.171875, 66.513260 ], [ -16.171875, 66.583217 ], [ -15.468750, 66.583217 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.558594, 55.078367 ], [ -7.558594, 54.876607 ], [ -7.382812, 54.876607 ], [ -7.382812, 54.265224 ], [ -7.558594, 54.265224 ], [ -7.558594, 54.059388 ], [ -6.855469, 54.059388 ], [ -6.855469, 53.956086 ], [ -6.503906, 53.956086 ], [ -6.503906, 53.852527 ], [ -6.152344, 53.852527 ], [ -6.152344, 53.435719 ], [ -5.976562, 53.435719 ], [ -5.976562, 53.014783 ], [ -6.152344, 53.014783 ], [ -6.152344, 52.802761 ], [ -6.328125, 52.802761 ], [ -6.328125, 52.696361 ], [ -6.503906, 52.696361 ], [ -6.503906, 52.482780 ], [ -6.679688, 52.482780 ], [ -6.679688, 52.268157 ], [ -6.855469, 52.268157 ], [ -6.855469, 52.160455 ], [ -7.207031, 52.160455 ], [ -7.207031, 52.052490 ], [ -7.558594, 52.052490 ], [ -7.558594, 51.944265 ], [ -7.734375, 51.944265 ], [ -7.734375, 51.835778 ], [ -8.085938, 51.835778 ], [ -8.085938, 51.727028 ], [ -8.437500, 51.727028 ], [ -8.437500, 51.618017 ], [ -9.140625, 51.618017 ], [ -9.140625, 51.727028 ], [ -9.843750, 51.727028 ], [ -9.843750, 51.835778 ], [ -10.019531, 51.835778 ], [ -10.019531, 51.944265 ], [ -9.843750, 51.944265 ], [ -9.843750, 52.160455 ], [ -9.667969, 52.160455 ], [ -9.667969, 52.375599 ], [ -9.492188, 52.375599 ], [ -9.492188, 52.589701 ], [ -9.316406, 52.589701 ], [ -9.316406, 52.802761 ], [ -9.140625, 52.802761 ], [ -9.140625, 53.014783 ], [ -9.316406, 53.014783 ], [ -9.316406, 53.330873 ], [ -9.492188, 53.330873 ], [ -9.492188, 53.644638 ], [ -9.667969, 53.644638 ], [ -9.667969, 53.852527 ], [ -9.492188, 53.852527 ], [ -9.492188, 53.956086 ], [ -9.316406, 53.956086 ], [ -9.316406, 54.059388 ], [ -9.140625, 54.059388 ], [ -9.140625, 54.162434 ], [ -8.964844, 54.162434 ], [ -8.964844, 54.265224 ], [ -8.789062, 54.265224 ], [ -8.789062, 54.367759 ], [ -8.613281, 54.367759 ], [ -8.613281, 54.470038 ], [ -8.437500, 54.470038 ], [ -8.437500, 54.572062 ], [ -8.261719, 54.572062 ], [ -8.261719, 54.673831 ], [ -8.085938, 54.673831 ], [ -8.085938, 54.775346 ], [ -7.910156, 54.775346 ], [ -7.910156, 54.977614 ], [ -7.734375, 54.977614 ], [ -7.734375, 55.078367 ], [ -7.558594, 55.078367 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 55.078367 ], [ -7.734375, 54.977614 ], [ -7.558594, 54.977614 ], [ -7.558594, 54.775346 ], [ -7.382812, 54.775346 ], [ -7.382812, 54.470038 ], [ -7.558594, 54.470038 ], [ -7.558594, 54.162434 ], [ -7.734375, 54.162434 ], [ -7.734375, 54.059388 ], [ -7.207031, 54.059388 ], [ -7.207031, 54.162434 ], [ -7.031250, 54.162434 ], [ -7.031250, 54.059388 ], [ -6.679688, 54.059388 ], [ -6.679688, 53.956086 ], [ -6.328125, 53.956086 ], [ -6.328125, 53.540307 ], [ -6.152344, 53.540307 ], [ -6.152344, 53.014783 ], [ -6.328125, 53.014783 ], [ -6.328125, 52.802761 ], [ -6.503906, 52.802761 ], [ -6.503906, 52.589701 ], [ -6.679688, 52.589701 ], [ -6.679688, 52.375599 ], [ -6.855469, 52.375599 ], [ -6.855469, 52.160455 ], [ -7.207031, 52.160455 ], [ -7.207031, 52.052490 ], [ -7.558594, 52.052490 ], [ -7.558594, 51.944265 ], [ -7.910156, 51.944265 ], [ -7.910156, 51.835778 ], [ -8.261719, 51.835778 ], [ -8.261719, 51.727028 ], [ -9.492188, 51.727028 ], [ -9.492188, 51.835778 ], [ -10.019531, 51.835778 ], [ -10.019531, 51.944265 ], [ -9.843750, 51.944265 ], [ -9.843750, 52.160455 ], [ -9.667969, 52.160455 ], [ -9.667969, 52.482780 ], [ -9.492188, 52.482780 ], [ -9.492188, 52.696361 ], [ -9.316406, 52.696361 ], [ -9.316406, 53.014783 ], [ -9.492188, 53.014783 ], [ -9.492188, 53.435719 ], [ -9.667969, 53.435719 ], [ -9.667969, 53.748711 ], [ -9.843750, 53.748711 ], [ -9.843750, 53.956086 ], [ -9.667969, 53.956086 ], [ -9.667969, 54.059388 ], [ -9.492188, 54.059388 ], [ -9.492188, 54.162434 ], [ -9.316406, 54.162434 ], [ -9.316406, 54.265224 ], [ -8.964844, 54.265224 ], [ -8.964844, 54.367759 ], [ -8.789062, 54.367759 ], [ -8.789062, 54.470038 ], [ -8.613281, 54.470038 ], [ -8.613281, 54.572062 ], [ -8.437500, 54.572062 ], [ -8.437500, 54.673831 ], [ -8.261719, 54.673831 ], [ -8.261719, 54.775346 ], [ -8.085938, 54.775346 ], [ -8.085938, 54.977614 ], [ -7.910156, 54.977614 ], [ -7.910156, 55.078367 ], [ -7.734375, 55.078367 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.988281, 58.631217 ], [ -2.988281, 58.539595 ], [ -3.164062, 58.539595 ], [ -3.164062, 58.355630 ], [ -3.339844, 58.355630 ], [ -3.339844, 58.170702 ], [ -3.515625, 58.170702 ], [ -3.515625, 57.984808 ], [ -3.691406, 57.984808 ], [ -3.691406, 57.797944 ], [ -3.867188, 57.797944 ], [ -3.867188, 57.610107 ], [ -4.042969, 57.610107 ], [ -4.042969, 57.515823 ], [ -3.691406, 57.515823 ], [ -3.691406, 57.610107 ], [ -3.164062, 57.610107 ], [ -3.164062, 57.704147 ], [ -1.933594, 57.704147 ], [ -1.933594, 57.421294 ], [ -2.109375, 57.421294 ], [ -2.109375, 57.040730 ], [ -2.285156, 57.040730 ], [ -2.285156, 56.752723 ], [ -2.460938, 56.752723 ], [ -2.460938, 56.559482 ], [ -2.636719, 56.559482 ], [ -2.636719, 56.365250 ], [ -2.812500, 56.365250 ], [ -2.812500, 56.170023 ], [ -2.988281, 56.170023 ], [ -2.988281, 55.973798 ], [ -2.812500, 55.973798 ], [ -2.812500, 55.875311 ], [ -2.109375, 55.875311 ], [ -2.109375, 55.776573 ], [ -1.933594, 55.776573 ], [ -1.933594, 55.578345 ], [ -1.757812, 55.578345 ], [ -1.757812, 55.379110 ], [ -1.582031, 55.379110 ], [ -1.582031, 55.178868 ], [ -1.406250, 55.178868 ], [ -1.406250, 54.977614 ], [ -1.230469, 54.977614 ], [ -1.230469, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 54.470038 ], [ -0.351562, 54.470038 ], [ -0.351562, 54.265224 ], [ -0.175781, 54.265224 ], [ -0.175781, 53.852527 ], [ 0.000000, 53.852527 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.225768 ], [ 0.351562, 53.225768 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 0.878906, 52.908902 ], [ 0.878906, 50.847573 ], [ 0.703125, 50.847573 ], [ 0.703125, 50.736455 ], [ -1.054688, 50.736455 ], [ -1.054688, 50.625073 ], [ -1.933594, 50.625073 ], [ -1.933594, 50.513427 ], [ -2.636719, 50.513427 ], [ -2.636719, 50.625073 ], [ -3.164062, 50.625073 ], [ -3.164062, 50.513427 ], [ -3.339844, 50.513427 ], [ -3.339844, 50.289339 ], [ -3.515625, 50.289339 ], [ -3.515625, 50.176898 ], [ -4.218750, 50.176898 ], [ -4.218750, 50.289339 ], [ -4.570312, 50.289339 ], [ -4.570312, 50.176898 ], [ -4.746094, 50.176898 ], [ -4.746094, 50.064192 ], [ -5.097656, 50.064192 ], [ -5.097656, 49.951220 ], [ -5.449219, 49.951220 ], [ -5.449219, 50.064192 ], [ -5.800781, 50.064192 ], [ -5.800781, 50.176898 ], [ -5.625000, 50.176898 ], [ -5.625000, 50.289339 ], [ -5.449219, 50.289339 ], [ -5.449219, 50.401515 ], [ -5.273438, 50.401515 ], [ -5.273438, 50.513427 ], [ -5.097656, 50.513427 ], [ -5.097656, 50.736455 ], [ -4.921875, 50.736455 ], [ -4.921875, 50.847573 ], [ -4.746094, 50.847573 ], [ -4.746094, 50.958427 ], [ -4.570312, 50.958427 ], [ -4.570312, 51.069017 ], [ -4.394531, 51.069017 ], [ -4.394531, 51.179343 ], [ -4.042969, 51.179343 ], [ -4.042969, 51.289406 ], [ -3.515625, 51.289406 ], [ -3.515625, 51.399206 ], [ -3.867188, 51.399206 ], [ -3.867188, 51.508742 ], [ -4.570312, 51.508742 ], [ -4.570312, 51.618017 ], [ -5.097656, 51.618017 ], [ -5.097656, 51.835778 ], [ -5.273438, 51.835778 ], [ -5.273438, 51.944265 ], [ -4.921875, 51.944265 ], [ -4.921875, 52.052490 ], [ -4.570312, 52.052490 ], [ -4.570312, 52.160455 ], [ -4.218750, 52.160455 ], [ -4.218750, 52.268157 ], [ -4.394531, 52.268157 ], [ -4.394531, 52.482780 ], [ -4.570312, 52.482780 ], [ -4.570312, 52.696361 ], [ -4.746094, 52.696361 ], [ -4.746094, 53.120405 ], [ -4.570312, 53.120405 ], [ -4.570312, 53.540307 ], [ -4.042969, 53.540307 ], [ -4.042969, 53.435719 ], [ -3.164062, 53.435719 ], [ -3.164062, 53.644638 ], [ -2.988281, 53.644638 ], [ -2.988281, 53.956086 ], [ -3.164062, 53.956086 ], [ -3.164062, 54.162434 ], [ -3.339844, 54.162434 ], [ -3.339844, 54.265224 ], [ -3.515625, 54.265224 ], [ -3.515625, 54.470038 ], [ -3.691406, 54.470038 ], [ -3.691406, 54.572062 ], [ -4.042969, 54.572062 ], [ -4.042969, 54.673831 ], [ -4.746094, 54.673831 ], [ -4.746094, 54.775346 ], [ -4.921875, 54.775346 ], [ -4.921875, 54.876607 ], [ -5.097656, 54.876607 ], [ -5.097656, 55.178868 ], [ -4.921875, 55.178868 ], [ -4.921875, 55.379110 ], [ -4.746094, 55.379110 ], [ -4.746094, 55.478853 ], [ -4.921875, 55.478853 ], [ -4.921875, 55.677584 ], [ -5.273438, 55.677584 ], [ -5.273438, 55.478853 ], [ -5.449219, 55.478853 ], [ -5.449219, 55.279115 ], [ -5.625000, 55.279115 ], [ -5.625000, 56.267761 ], [ -5.800781, 56.267761 ], [ -5.800781, 56.462490 ], [ -5.976562, 56.462490 ], [ -5.976562, 56.656226 ], [ -6.152344, 56.656226 ], [ -6.152344, 56.944974 ], [ -5.976562, 56.944974 ], [ -5.976562, 57.515823 ], [ -5.800781, 57.515823 ], [ -5.800781, 57.891497 ], [ -5.625000, 57.891497 ], [ -5.625000, 58.077876 ], [ -5.449219, 58.077876 ], [ -5.449219, 58.263287 ], [ -5.273438, 58.263287 ], [ -5.273438, 58.447733 ], [ -5.097656, 58.447733 ], [ -5.097656, 58.631217 ], [ -4.746094, 58.631217 ], [ -4.746094, 58.539595 ], [ -3.515625, 58.539595 ], [ -3.515625, 58.631217 ], [ -2.988281, 58.631217 ] ] ], [ [ [ -6.679688, 55.178868 ], [ -6.679688, 55.078367 ], [ -6.503906, 55.078367 ], [ -6.503906, 54.977614 ], [ -6.328125, 54.977614 ], [ -6.328125, 54.876607 ], [ -6.152344, 54.876607 ], [ -6.152344, 54.775346 ], [ -5.976562, 54.775346 ], [ -5.976562, 54.673831 ], [ -5.800781, 54.673831 ], [ -5.800781, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.367759 ], [ -5.800781, 54.367759 ], [ -5.800781, 54.162434 ], [ -5.976562, 54.162434 ], [ -5.976562, 53.956086 ], [ -6.152344, 53.956086 ], [ -6.152344, 53.852527 ], [ -6.503906, 53.852527 ], [ -6.503906, 53.956086 ], [ -6.855469, 53.956086 ], [ -6.855469, 54.059388 ], [ -7.558594, 54.059388 ], [ -7.558594, 54.265224 ], [ -7.382812, 54.265224 ], [ -7.382812, 54.876607 ], [ -7.558594, 54.876607 ], [ -7.558594, 55.178868 ], [ -6.679688, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.164062, 58.722599 ], [ -3.164062, 58.631217 ], [ -3.339844, 58.631217 ], [ -3.339844, 58.447733 ], [ -3.515625, 58.447733 ], [ -3.515625, 58.263287 ], [ -3.691406, 58.263287 ], [ -3.691406, 58.077876 ], [ -3.867188, 58.077876 ], [ -3.867188, 57.891497 ], [ -4.042969, 57.891497 ], [ -4.042969, 57.704147 ], [ -4.218750, 57.704147 ], [ -4.218750, 57.610107 ], [ -3.515625, 57.610107 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 57.326521 ], [ -2.285156, 57.326521 ], [ -2.285156, 56.848972 ], [ -2.460938, 56.848972 ], [ -2.460938, 56.656226 ], [ -2.636719, 56.656226 ], [ -2.636719, 56.462490 ], [ -2.812500, 56.462490 ], [ -2.812500, 56.267761 ], [ -2.988281, 56.267761 ], [ -2.988281, 56.072035 ], [ -3.164062, 56.072035 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.973798 ], [ -2.109375, 55.677584 ], [ -1.933594, 55.677584 ], [ -1.933594, 55.478853 ], [ -1.757812, 55.478853 ], [ -1.757812, 55.279115 ], [ -1.582031, 55.279115 ], [ -1.582031, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.775346 ], [ -1.230469, 54.775346 ], [ -1.230469, 54.572062 ], [ -0.878906, 54.572062 ], [ -0.878906, 54.470038 ], [ -0.527344, 54.470038 ], [ -0.527344, 54.265224 ], [ -0.351562, 54.265224 ], [ -0.351562, 53.956086 ], [ -0.175781, 53.956086 ], [ -0.175781, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.120405 ], [ 0.351562, 53.120405 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 0.878906, 52.908902 ], [ 0.878906, 50.847573 ], [ -1.054688, 50.847573 ], [ -1.054688, 50.736455 ], [ -1.582031, 50.736455 ], [ -1.582031, 50.625073 ], [ -2.285156, 50.625073 ], [ -2.285156, 50.513427 ], [ -2.812500, 50.513427 ], [ -2.812500, 50.625073 ], [ -3.164062, 50.625073 ], [ -3.164062, 50.513427 ], [ -3.339844, 50.513427 ], [ -3.339844, 50.401515 ], [ -3.515625, 50.401515 ], [ -3.515625, 50.289339 ], [ -4.218750, 50.289339 ], [ -4.218750, 50.401515 ], [ -4.570312, 50.401515 ], [ -4.570312, 50.289339 ], [ -4.746094, 50.289339 ], [ -4.746094, 50.176898 ], [ -5.097656, 50.176898 ], [ -5.097656, 50.064192 ], [ -5.625000, 50.064192 ], [ -5.625000, 50.289339 ], [ -5.449219, 50.289339 ], [ -5.449219, 50.513427 ], [ -5.273438, 50.513427 ], [ -5.273438, 50.625073 ], [ -5.097656, 50.625073 ], [ -5.097656, 50.736455 ], [ -4.921875, 50.736455 ], [ -4.921875, 50.847573 ], [ -4.746094, 50.847573 ], [ -4.746094, 51.069017 ], [ -4.570312, 51.069017 ], [ -4.570312, 51.179343 ], [ -4.394531, 51.179343 ], [ -4.394531, 51.289406 ], [ -4.042969, 51.289406 ], [ -4.042969, 51.399206 ], [ -3.691406, 51.399206 ], [ -3.691406, 51.508742 ], [ -4.394531, 51.508742 ], [ -4.394531, 51.618017 ], [ -5.097656, 51.618017 ], [ -5.097656, 51.835778 ], [ -5.273438, 51.835778 ], [ -5.273438, 52.052490 ], [ -5.097656, 52.052490 ], [ -5.097656, 52.160455 ], [ -4.746094, 52.160455 ], [ -4.746094, 52.268157 ], [ -4.394531, 52.268157 ], [ -4.394531, 52.375599 ], [ -4.570312, 52.375599 ], [ -4.570312, 52.589701 ], [ -4.746094, 52.589701 ], [ -4.746094, 52.802761 ], [ -4.921875, 52.802761 ], [ -4.921875, 53.225768 ], [ -4.746094, 53.225768 ], [ -4.746094, 53.540307 ], [ -4.042969, 53.540307 ], [ -4.042969, 53.435719 ], [ -3.164062, 53.435719 ], [ -3.164062, 53.748711 ], [ -2.988281, 53.748711 ], [ -2.988281, 54.059388 ], [ -3.164062, 54.059388 ], [ -3.164062, 54.265224 ], [ -3.339844, 54.265224 ], [ -3.339844, 54.367759 ], [ -3.515625, 54.367759 ], [ -3.515625, 54.572062 ], [ -3.691406, 54.572062 ], [ -3.691406, 54.673831 ], [ -4.042969, 54.673831 ], [ -4.042969, 54.775346 ], [ -4.746094, 54.775346 ], [ -4.746094, 54.876607 ], [ -4.921875, 54.876607 ], [ -4.921875, 54.977614 ], [ -5.097656, 54.977614 ], [ -5.097656, 55.178868 ], [ -4.921875, 55.178868 ], [ -4.921875, 55.379110 ], [ -4.746094, 55.379110 ], [ -4.746094, 55.578345 ], [ -4.921875, 55.578345 ], [ -4.921875, 55.776573 ], [ -5.273438, 55.776573 ], [ -5.273438, 55.578345 ], [ -5.449219, 55.578345 ], [ -5.449219, 55.379110 ], [ -5.625000, 55.379110 ], [ -5.625000, 55.875311 ], [ -5.800781, 55.875311 ], [ -5.800781, 56.462490 ], [ -5.976562, 56.462490 ], [ -5.976562, 56.656226 ], [ -6.152344, 56.656226 ], [ -6.152344, 57.040730 ], [ -5.976562, 57.040730 ], [ -5.976562, 57.610107 ], [ -5.800781, 57.610107 ], [ -5.800781, 57.984808 ], [ -5.625000, 57.984808 ], [ -5.625000, 58.170702 ], [ -5.449219, 58.170702 ], [ -5.449219, 58.355630 ], [ -5.273438, 58.355630 ], [ -5.273438, 58.539595 ], [ -5.097656, 58.539595 ], [ -5.097656, 58.631217 ], [ -3.515625, 58.631217 ], [ -3.515625, 58.722599 ], [ -3.164062, 58.722599 ] ] ], [ [ [ -6.855469, 55.178868 ], [ -6.855469, 55.078367 ], [ -6.679688, 55.078367 ], [ -6.679688, 54.977614 ], [ -6.503906, 54.977614 ], [ -6.503906, 54.876607 ], [ -6.328125, 54.876607 ], [ -6.328125, 54.775346 ], [ -6.152344, 54.775346 ], [ -6.152344, 54.673831 ], [ -5.976562, 54.673831 ], [ -5.976562, 54.572062 ], [ -5.800781, 54.572062 ], [ -5.800781, 54.470038 ], [ -5.976562, 54.470038 ], [ -5.976562, 54.265224 ], [ -6.152344, 54.265224 ], [ -6.152344, 54.059388 ], [ -6.328125, 54.059388 ], [ -6.328125, 53.956086 ], [ -6.679688, 53.956086 ], [ -6.679688, 54.059388 ], [ -7.031250, 54.059388 ], [ -7.031250, 54.162434 ], [ -7.207031, 54.162434 ], [ -7.207031, 54.059388 ], [ -7.734375, 54.059388 ], [ -7.734375, 54.162434 ], [ -7.558594, 54.162434 ], [ -7.558594, 54.470038 ], [ -7.382812, 54.470038 ], [ -7.382812, 54.775346 ], [ -7.558594, 54.775346 ], [ -7.558594, 54.977614 ], [ -7.734375, 54.977614 ], [ -7.734375, 55.178868 ], [ -6.855469, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.951220 ], [ 0.878906, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.553080 ], [ 0.000000, 42.553080 ], [ 0.000000, 42.682435 ], [ -0.527344, 42.682435 ], [ -0.527344, 42.811522 ], [ -0.878906, 42.811522 ], [ -0.878906, 42.940339 ], [ -1.406250, 42.940339 ], [ -1.406250, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.325178 ], [ -1.933594, 43.325178 ], [ -1.933594, 43.452919 ], [ -1.757812, 43.452919 ], [ -1.757812, 43.707594 ], [ -1.582031, 43.707594 ], [ -1.582031, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 44.964798 ], [ -1.230469, 44.964798 ], [ -1.230469, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.582031, 46.316584 ], [ -1.582031, 46.437857 ], [ -1.757812, 46.437857 ], [ -1.757812, 46.558860 ], [ -1.933594, 46.558860 ], [ -1.933594, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 46.920255 ], [ -2.285156, 46.920255 ], [ -2.285156, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.159840 ], [ -2.636719, 47.159840 ], [ -2.636719, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.398349 ], [ -2.988281, 47.398349 ], [ -2.988281, 47.517201 ], [ -3.339844, 47.517201 ], [ -3.339844, 47.635784 ], [ -3.691406, 47.635784 ], [ -3.691406, 47.754098 ], [ -4.042969, 47.754098 ], [ -4.042969, 47.872144 ], [ -4.394531, 47.872144 ], [ -4.394531, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -4.218750, 48.690960 ], [ -4.218750, 48.806863 ], [ -3.515625, 48.806863 ], [ -3.515625, 48.922499 ], [ -2.988281, 48.922499 ], [ -2.988281, 48.806863 ], [ -2.109375, 48.806863 ], [ -2.109375, 48.690960 ], [ -1.582031, 48.690960 ], [ -1.582031, 48.922499 ], [ -1.757812, 48.922499 ], [ -1.757812, 49.382373 ], [ -1.933594, 49.382373 ], [ -1.933594, 49.610710 ], [ -1.582031, 49.610710 ], [ -1.582031, 49.496675 ], [ -1.230469, 49.496675 ], [ -1.230469, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.496675 ], [ -0.351562, 49.496675 ], [ -0.351562, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.724479 ], [ 0.351562, 49.724479 ], [ 0.351562, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 49.951220 ], [ 0.878906, 49.951220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.951220 ], [ 0.878906, 42.811522 ], [ 0.527344, 42.811522 ], [ 0.527344, 42.682435 ], [ -0.175781, 42.682435 ], [ -0.175781, 42.811522 ], [ -0.878906, 42.811522 ], [ -0.878906, 42.940339 ], [ -1.406250, 42.940339 ], [ -1.406250, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.325178 ], [ -1.933594, 43.325178 ], [ -1.933594, 43.452919 ], [ -1.757812, 43.452919 ], [ -1.757812, 43.707594 ], [ -1.582031, 43.707594 ], [ -1.582031, 43.961191 ], [ -1.406250, 43.961191 ], [ -1.406250, 45.089036 ], [ -1.230469, 45.089036 ], [ -1.230469, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.582031, 46.316584 ], [ -1.582031, 46.437857 ], [ -1.757812, 46.437857 ], [ -1.757812, 46.679594 ], [ -1.933594, 46.679594 ], [ -1.933594, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 47.040182 ], [ -2.285156, 47.040182 ], [ -2.285156, 47.159840 ], [ -2.460938, 47.159840 ], [ -2.460938, 47.279229 ], [ -2.636719, 47.279229 ], [ -2.636719, 47.398349 ], [ -2.812500, 47.398349 ], [ -2.812500, 47.517201 ], [ -2.988281, 47.517201 ], [ -2.988281, 47.635784 ], [ -3.339844, 47.635784 ], [ -3.339844, 47.754098 ], [ -3.867188, 47.754098 ], [ -3.867188, 47.872144 ], [ -4.394531, 47.872144 ], [ -4.394531, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.341646 ], [ -4.746094, 48.341646 ], [ -4.746094, 48.690960 ], [ -4.218750, 48.690960 ], [ -4.218750, 48.806863 ], [ -3.515625, 48.806863 ], [ -3.515625, 48.922499 ], [ -2.988281, 48.922499 ], [ -2.988281, 48.806863 ], [ -2.285156, 48.806863 ], [ -2.285156, 48.690960 ], [ -1.757812, 48.690960 ], [ -1.757812, 49.267805 ], [ -1.933594, 49.267805 ], [ -1.933594, 49.724479 ], [ -1.757812, 49.724479 ], [ -1.757812, 49.610710 ], [ -1.406250, 49.610710 ], [ -1.406250, 49.496675 ], [ -1.230469, 49.496675 ], [ -1.230469, 49.382373 ], [ -0.878906, 49.382373 ], [ -0.878906, 49.496675 ], [ -0.527344, 49.496675 ], [ -0.527344, 49.610710 ], [ -0.175781, 49.610710 ], [ -0.175781, 49.724479 ], [ 0.175781, 49.724479 ], [ 0.175781, 49.837982 ], [ 0.527344, 49.837982 ], [ 0.527344, 49.951220 ], [ 0.878906, 49.951220 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.163403 ], [ -8.261719, 42.032974 ], [ -8.085938, 42.032974 ], [ -8.085938, 41.771312 ], [ -7.207031, 41.771312 ], [ -7.207031, 41.902277 ], [ -6.679688, 41.902277 ], [ -6.679688, 41.771312 ], [ -6.503906, 41.771312 ], [ -6.503906, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.313043 ], [ -8.964844, 40.313043 ], [ -8.964844, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.376809 ], [ -8.964844, 41.376809 ], [ -8.964844, 41.902277 ], [ -8.789062, 41.902277 ], [ -8.789062, 42.032974 ], [ -8.613281, 42.032974 ], [ -8.613281, 42.163403 ], [ -8.261719, 42.163403 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.293564 ], [ -8.261719, 42.032974 ], [ -8.085938, 42.032974 ], [ -8.085938, 41.902277 ], [ -7.382812, 41.902277 ], [ -7.382812, 42.032974 ], [ -7.207031, 42.032974 ], [ -7.207031, 41.902277 ], [ -6.679688, 41.902277 ], [ -6.679688, 41.640078 ], [ -6.503906, 41.640078 ], [ -6.503906, 41.376809 ], [ -6.679688, 41.376809 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.713956 ], [ -7.031250, 40.713956 ], [ -7.031250, 40.313043 ], [ -8.964844, 40.313043 ], [ -8.964844, 40.580585 ], [ -8.789062, 40.580585 ], [ -8.789062, 41.244772 ], [ -8.964844, 41.244772 ], [ -8.964844, 41.508577 ], [ -9.140625, 41.508577 ], [ -9.140625, 41.902277 ], [ -8.964844, 41.902277 ], [ -8.964844, 42.032974 ], [ -8.789062, 42.032974 ], [ -8.789062, 42.163403 ], [ -8.437500, 42.163403 ], [ -8.437500, 42.293564 ], [ -8.261719, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 43.707594 ], [ -7.382812, 43.580391 ], [ -5.097656, 43.580391 ], [ -5.097656, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.933594, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 42.811522 ], [ -0.527344, 42.811522 ], [ -0.527344, 42.682435 ], [ 0.000000, 42.682435 ], [ 0.000000, 42.553080 ], [ 0.527344, 42.553080 ], [ 0.527344, 42.682435 ], [ 0.878906, 42.682435 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.313043 ], [ -6.855469, 40.313043 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.503906, 41.508577 ], [ -6.503906, 41.771312 ], [ -6.679688, 41.771312 ], [ -6.679688, 41.902277 ], [ -7.207031, 41.902277 ], [ -7.207031, 41.771312 ], [ -8.085938, 41.771312 ], [ -8.085938, 42.032974 ], [ -8.261719, 42.032974 ], [ -8.261719, 42.163403 ], [ -8.613281, 42.163403 ], [ -8.613281, 42.032974 ], [ -8.789062, 42.032974 ], [ -8.789062, 41.902277 ], [ -8.964844, 41.902277 ], [ -8.964844, 42.682435 ], [ -9.140625, 42.682435 ], [ -9.140625, 42.940339 ], [ -9.316406, 42.940339 ], [ -9.316406, 43.068888 ], [ -9.140625, 43.068888 ], [ -9.140625, 43.197167 ], [ -8.789062, 43.197167 ], [ -8.789062, 43.325178 ], [ -8.437500, 43.325178 ], [ -8.437500, 43.452919 ], [ -8.261719, 43.452919 ], [ -8.261719, 43.580391 ], [ -7.910156, 43.580391 ], [ -7.910156, 43.707594 ], [ -7.382812, 43.707594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.910156, 43.834527 ], [ -7.910156, 43.707594 ], [ -7.207031, 43.707594 ], [ -7.207031, 43.580391 ], [ -5.097656, 43.580391 ], [ -5.097656, 43.452919 ], [ -3.867188, 43.452919 ], [ -3.867188, 43.580391 ], [ -2.812500, 43.580391 ], [ -2.812500, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.933594, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 42.811522 ], [ -0.175781, 42.811522 ], [ -0.175781, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.811522 ], [ 0.878906, 42.811522 ], [ 0.878906, 41.112469 ], [ 0.703125, 41.112469 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.313043 ], [ -7.031250, 40.313043 ], [ -7.031250, 40.713956 ], [ -6.855469, 40.713956 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.376809 ], [ -6.503906, 41.376809 ], [ -6.503906, 41.640078 ], [ -6.679688, 41.640078 ], [ -6.679688, 41.902277 ], [ -7.207031, 41.902277 ], [ -7.207031, 42.032974 ], [ -7.382812, 42.032974 ], [ -7.382812, 41.902277 ], [ -8.085938, 41.902277 ], [ -8.085938, 42.032974 ], [ -8.261719, 42.032974 ], [ -8.261719, 42.293564 ], [ -8.437500, 42.293564 ], [ -8.437500, 42.163403 ], [ -8.789062, 42.163403 ], [ -8.789062, 42.032974 ], [ -8.964844, 42.032974 ], [ -8.964844, 41.902277 ], [ -9.140625, 41.902277 ], [ -9.140625, 42.682435 ], [ -9.316406, 42.682435 ], [ -9.316406, 42.940339 ], [ -9.492188, 42.940339 ], [ -9.492188, 43.068888 ], [ -9.316406, 43.068888 ], [ -9.316406, 43.197167 ], [ -8.964844, 43.197167 ], [ -8.964844, 43.325178 ], [ -8.789062, 43.325178 ], [ -8.789062, 43.452919 ], [ -8.613281, 43.452919 ], [ -8.613281, 43.580391 ], [ -8.261719, 43.580391 ], [ -8.261719, 43.707594 ], [ -8.085938, 43.707594 ], [ -8.085938, 43.834527 ], [ -7.910156, 43.834527 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -25.312500, 71.244356 ], [ -25.312500, 70.902268 ], [ -25.136719, 70.902268 ], [ -25.136719, 70.670881 ], [ -25.312500, 70.670881 ], [ -25.312500, 70.612614 ], [ -25.488281, 70.612614 ], [ -25.488281, 70.495574 ], [ -25.664062, 70.495574 ], [ -25.664062, 70.436799 ], [ -25.839844, 70.436799 ], [ -25.839844, 70.377854 ], [ -26.015625, 70.377854 ], [ -26.015625, 70.259452 ], [ -26.191406, 70.259452 ], [ -26.191406, 70.199994 ], [ -23.203125, 70.199994 ], [ -23.203125, 70.140364 ], [ -22.324219, 70.140364 ], [ -22.324219, 70.080562 ], [ -22.500000, 70.080562 ], [ -22.500000, 70.020587 ], [ -22.675781, 70.020587 ], [ -22.675781, 69.960439 ], [ -22.851562, 69.960439 ], [ -22.851562, 69.900118 ], [ -23.027344, 69.900118 ], [ -23.027344, 69.839622 ], [ -23.203125, 69.839622 ], [ -23.203125, 69.778952 ], [ -23.378906, 69.778952 ], [ -23.378906, 69.718107 ], [ -23.730469, 69.718107 ], [ -23.730469, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.595890 ], [ -24.082031, 69.595890 ], [ -24.082031, 69.534518 ], [ -24.257812, 69.534518 ], [ -24.257812, 69.472969 ], [ -24.433594, 69.472969 ], [ -24.433594, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.349339 ], [ -24.785156, 69.349339 ], [ -24.785156, 69.287257 ], [ -24.960938, 69.287257 ], [ -24.960938, 69.224997 ], [ -25.136719, 69.224997 ], [ -25.136719, 69.162558 ], [ -25.488281, 69.162558 ], [ -25.488281, 69.099940 ], [ -25.664062, 69.099940 ], [ -25.664062, 69.037142 ], [ -25.839844, 69.037142 ], [ -25.839844, 68.974164 ], [ -26.015625, 68.974164 ], [ -26.015625, 68.911005 ], [ -26.191406, 68.911005 ], [ -26.191406, 68.847665 ], [ -26.542969, 68.847665 ], [ -26.542969, 68.784144 ], [ -26.718750, 68.784144 ], [ -26.718750, 68.720441 ], [ -26.894531, 68.720441 ], [ -26.894531, 68.656555 ], [ -27.070312, 68.656555 ], [ -27.070312, 68.592487 ], [ -27.421875, 68.592487 ], [ -27.421875, 68.528235 ], [ -27.597656, 68.528235 ], [ -27.597656, 68.463800 ], [ -27.949219, 68.463800 ], [ -27.949219, 68.399180 ], [ -28.476562, 68.399180 ], [ -28.476562, 68.334376 ], [ -29.003906, 68.334376 ], [ -29.003906, 68.269387 ], [ -29.707031, 68.269387 ], [ -29.707031, 68.204212 ], [ -30.234375, 68.204212 ], [ -30.234375, 68.138852 ], [ -31.816406, 68.138852 ], [ -31.816406, 68.073305 ], [ -31.992188, 68.073305 ], [ -31.992188, 68.007571 ], [ -32.167969, 68.007571 ], [ -32.167969, 67.941650 ], [ -32.343750, 67.941650 ], [ -32.343750, 67.875541 ], [ -32.519531, 67.875541 ], [ -32.519531, 67.809245 ], [ -32.695312, 67.809245 ], [ -32.695312, 67.742759 ], [ -32.871094, 67.742759 ], [ -32.871094, 67.676085 ], [ -33.046875, 67.676085 ], [ -33.046875, 67.542167 ], [ -33.222656, 67.542167 ], [ -33.222656, 67.407487 ], [ -33.398438, 67.407487 ], [ -33.398438, 67.272043 ], [ -33.574219, 67.272043 ], [ -33.574219, 67.135829 ], [ -33.750000, 67.135829 ], [ -33.750000, 66.998844 ], [ -33.925781, 66.998844 ], [ -33.925781, 66.861082 ], [ -34.101562, 66.861082 ], [ -34.101562, 66.722541 ], [ -34.277344, 66.722541 ], [ -34.277344, 66.583217 ], [ -34.453125, 66.583217 ], [ -34.453125, 66.513260 ], [ -34.804688, 66.513260 ], [ -34.804688, 66.443107 ], [ -34.980469, 66.443107 ], [ -34.980469, 66.372755 ], [ -35.156250, 66.372755 ], [ -35.156250, 66.302205 ], [ -35.507812, 66.302205 ], [ -35.507812, 66.231457 ], [ -35.683594, 66.231457 ], [ -35.683594, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.984375, 79.335219 ], [ -18.984375, 79.237185 ], [ -19.160156, 79.237185 ], [ -19.160156, 79.105086 ], [ -19.335938, 79.105086 ], [ -19.335938, 78.971386 ], [ -19.511719, 78.971386 ], [ -19.511719, 78.836065 ], [ -19.687500, 78.836065 ], [ -19.687500, 77.579959 ], [ -19.511719, 77.579959 ], [ -19.511719, 77.504119 ], [ -19.335938, 77.504119 ], [ -19.335938, 77.389504 ], [ -19.160156, 77.389504 ], [ -19.160156, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 77.235074 ], [ -18.808594, 77.235074 ], [ -18.808594, 77.118032 ], [ -18.632812, 77.118032 ], [ -18.632812, 77.039418 ], [ -18.457031, 77.039418 ], [ -18.457031, 76.999935 ], [ -19.160156, 76.999935 ], [ -19.160156, 76.960334 ], [ -20.039062, 76.960334 ], [ -20.039062, 76.920614 ], [ -20.214844, 76.920614 ], [ -20.214844, 76.880775 ], [ -20.390625, 76.880775 ], [ -20.390625, 76.840816 ], [ -20.566406, 76.840816 ], [ -20.566406, 76.800739 ], [ -20.917969, 76.800739 ], [ -20.917969, 76.760541 ], [ -21.093750, 76.760541 ], [ -21.093750, 76.720223 ], [ -21.269531, 76.720223 ], [ -21.269531, 76.679785 ], [ -21.445312, 76.679785 ], [ -21.445312, 76.639226 ], [ -21.621094, 76.639226 ], [ -21.621094, 76.598545 ], [ -21.445312, 76.598545 ], [ -21.445312, 76.557743 ], [ -21.269531, 76.557743 ], [ -21.269531, 76.475773 ], [ -21.093750, 76.475773 ], [ -21.093750, 76.434604 ], [ -20.917969, 76.434604 ], [ -20.917969, 76.393312 ], [ -20.742188, 76.393312 ], [ -20.742188, 76.310358 ], [ -20.566406, 76.310358 ], [ -20.566406, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.226907 ], [ -20.214844, 76.226907 ], [ -20.214844, 76.142958 ], [ -20.039062, 76.142958 ], [ -20.039062, 76.100796 ], [ -19.863281, 76.100796 ], [ -19.863281, 75.888091 ], [ -19.687500, 75.888091 ], [ -19.687500, 75.453071 ], [ -19.511719, 75.453071 ], [ -19.511719, 75.230667 ], [ -19.687500, 75.230667 ], [ -19.687500, 75.185789 ], [ -20.390625, 75.185789 ], [ -20.390625, 75.140778 ], [ -20.742188, 75.140778 ], [ -20.742188, 75.050354 ], [ -20.566406, 75.050354 ], [ -20.566406, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.867889 ], [ -20.214844, 74.867889 ], [ -20.214844, 74.775843 ], [ -20.039062, 74.775843 ], [ -20.039062, 74.636748 ], [ -19.863281, 74.636748 ], [ -19.863281, 74.543330 ], [ -19.687500, 74.543330 ], [ -19.687500, 74.449358 ], [ -19.511719, 74.449358 ], [ -19.511719, 74.354828 ], [ -19.335938, 74.354828 ], [ -19.335938, 74.307353 ], [ -19.863281, 74.307353 ], [ -19.863281, 74.259738 ], [ -20.917969, 74.259738 ], [ -20.917969, 74.211983 ], [ -21.621094, 74.211983 ], [ -21.621094, 74.164085 ], [ -21.445312, 74.164085 ], [ -21.445312, 74.116047 ], [ -21.269531, 74.116047 ], [ -21.269531, 74.067866 ], [ -21.093750, 74.067866 ], [ -21.093750, 74.019543 ], [ -20.917969, 74.019543 ], [ -20.917969, 73.922469 ], [ -20.742188, 73.922469 ], [ -20.742188, 73.873717 ], [ -20.566406, 73.873717 ], [ -20.566406, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.726595 ], [ -20.566406, 73.726595 ], [ -20.566406, 73.528399 ], [ -20.742188, 73.528399 ], [ -20.742188, 73.478485 ], [ -20.917969, 73.478485 ], [ -20.917969, 73.428424 ], [ -21.269531, 73.428424 ], [ -21.269531, 73.378215 ], [ -21.796875, 73.378215 ], [ -21.796875, 73.327858 ], [ -23.554688, 73.327858 ], [ -23.554688, 73.277353 ], [ -23.378906, 73.277353 ], [ -23.378906, 73.175897 ], [ -23.203125, 73.175897 ], [ -23.203125, 73.073844 ], [ -23.027344, 73.073844 ], [ -23.027344, 72.971189 ], [ -22.851562, 72.971189 ], [ -22.851562, 72.867930 ], [ -22.675781, 72.867930 ], [ -22.675781, 72.764065 ], [ -22.500000, 72.764065 ], [ -22.500000, 72.659588 ], [ -22.324219, 72.659588 ], [ -22.324219, 72.181804 ], [ -22.500000, 72.181804 ], [ -22.500000, 72.235514 ], [ -22.851562, 72.235514 ], [ -22.851562, 72.289067 ], [ -23.027344, 72.289067 ], [ -23.027344, 72.342464 ], [ -23.203125, 72.342464 ], [ -23.203125, 72.395706 ], [ -23.554688, 72.395706 ], [ -23.554688, 72.448792 ], [ -23.730469, 72.448792 ], [ -23.730469, 72.501722 ], [ -23.906250, 72.501722 ], [ -23.906250, 72.554498 ], [ -24.433594, 72.554498 ], [ -24.433594, 72.448792 ], [ -24.609375, 72.448792 ], [ -24.609375, 72.342464 ], [ -24.785156, 72.342464 ], [ -24.785156, 72.289067 ], [ -24.433594, 72.289067 ], [ -24.433594, 72.235514 ], [ -24.257812, 72.235514 ], [ -24.257812, 72.181804 ], [ -23.906250, 72.181804 ], [ -23.906250, 72.127936 ], [ -23.554688, 72.127936 ], [ -23.554688, 72.073911 ], [ -23.378906, 72.073911 ], [ -23.378906, 72.019729 ], [ -23.203125, 72.019729 ], [ -23.203125, 71.910888 ], [ -23.027344, 71.910888 ], [ -23.027344, 71.856229 ], [ -22.851562, 71.856229 ], [ -22.851562, 71.746432 ], [ -22.675781, 71.746432 ], [ -22.675781, 71.635993 ], [ -22.500000, 71.635993 ], [ -22.500000, 71.580532 ], [ -22.324219, 71.580532 ], [ -22.324219, 71.469124 ], [ -22.148438, 71.469124 ], [ -22.148438, 71.244356 ], [ -21.972656, 71.244356 ], [ -21.972656, 70.844673 ], [ -21.796875, 70.844673 ], [ -21.796875, 70.670881 ], [ -21.972656, 70.670881 ], [ -21.972656, 70.612614 ], [ -22.500000, 70.612614 ], [ -22.500000, 70.554179 ], [ -23.203125, 70.554179 ], [ -23.203125, 70.495574 ], [ -23.730469, 70.495574 ], [ -23.730469, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 70.670881 ], [ -24.082031, 70.670881 ], [ -24.082031, 70.786910 ], [ -24.257812, 70.786910 ], [ -24.257812, 70.844673 ], [ -24.433594, 70.844673 ], [ -24.433594, 70.959697 ], [ -24.609375, 70.959697 ], [ -24.609375, 71.016960 ], [ -24.785156, 71.016960 ], [ -24.785156, 71.130988 ], [ -24.960938, 71.130988 ], [ -24.960938, 71.187754 ], [ -25.136719, 71.187754 ], [ -25.136719, 71.244356 ], [ -25.312500, 71.244356 ] ], [ [ -25.312500, 71.244356 ], [ -25.312500, 71.357067 ], [ -25.488281, 71.357067 ], [ -25.488281, 71.244356 ], [ -25.312500, 71.244356 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -25.488281, 71.300793 ], [ -25.488281, 70.959697 ], [ -25.312500, 70.959697 ], [ -25.312500, 70.728979 ], [ -25.488281, 70.728979 ], [ -25.488281, 70.612614 ], [ -25.664062, 70.612614 ], [ -25.664062, 70.554179 ], [ -25.839844, 70.554179 ], [ -25.839844, 70.436799 ], [ -26.015625, 70.436799 ], [ -26.015625, 70.377854 ], [ -26.191406, 70.377854 ], [ -26.191406, 70.259452 ], [ -25.136719, 70.259452 ], [ -25.136719, 70.199994 ], [ -23.203125, 70.199994 ], [ -23.203125, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 70.080562 ], [ -22.675781, 70.080562 ], [ -22.675781, 70.020587 ], [ -22.851562, 70.020587 ], [ -22.851562, 69.960439 ], [ -23.027344, 69.960439 ], [ -23.027344, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.839622 ], [ -23.378906, 69.839622 ], [ -23.378906, 69.778952 ], [ -23.554688, 69.778952 ], [ -23.554688, 69.718107 ], [ -23.906250, 69.718107 ], [ -23.906250, 69.657086 ], [ -24.082031, 69.657086 ], [ -24.082031, 69.595890 ], [ -24.257812, 69.595890 ], [ -24.257812, 69.534518 ], [ -24.433594, 69.534518 ], [ -24.433594, 69.472969 ], [ -24.609375, 69.472969 ], [ -24.609375, 69.411242 ], [ -24.785156, 69.411242 ], [ -24.785156, 69.349339 ], [ -24.960938, 69.349339 ], [ -24.960938, 69.287257 ], [ -25.136719, 69.287257 ], [ -25.136719, 69.224997 ], [ -25.312500, 69.224997 ], [ -25.312500, 69.162558 ], [ -25.664062, 69.162558 ], [ -25.664062, 69.099940 ], [ -25.839844, 69.099940 ], [ -25.839844, 69.037142 ], [ -26.015625, 69.037142 ], [ -26.015625, 68.974164 ], [ -26.191406, 68.974164 ], [ -26.191406, 68.911005 ], [ -26.542969, 68.911005 ], [ -26.542969, 68.847665 ], [ -26.718750, 68.847665 ], [ -26.718750, 68.784144 ], [ -26.894531, 68.784144 ], [ -26.894531, 68.720441 ], [ -27.070312, 68.720441 ], [ -27.070312, 68.656555 ], [ -27.421875, 68.656555 ], [ -27.421875, 68.592487 ], [ -27.597656, 68.592487 ], [ -27.597656, 68.528235 ], [ -27.949219, 68.528235 ], [ -27.949219, 68.463800 ], [ -28.476562, 68.463800 ], [ -28.476562, 68.399180 ], [ -29.003906, 68.399180 ], [ -29.003906, 68.334376 ], [ -29.355469, 68.334376 ], [ -29.355469, 68.269387 ], [ -29.882812, 68.269387 ], [ -29.882812, 68.204212 ], [ -30.410156, 68.204212 ], [ -30.410156, 68.138852 ], [ -31.816406, 68.138852 ], [ -31.816406, 68.073305 ], [ -31.992188, 68.073305 ], [ -31.992188, 68.007571 ], [ -32.167969, 68.007571 ], [ -32.167969, 67.941650 ], [ -32.343750, 67.941650 ], [ -32.343750, 67.875541 ], [ -32.519531, 67.875541 ], [ -32.519531, 67.809245 ], [ -32.695312, 67.809245 ], [ -32.695312, 67.742759 ], [ -32.871094, 67.742759 ], [ -32.871094, 67.676085 ], [ -33.046875, 67.676085 ], [ -33.046875, 67.542167 ], [ -33.222656, 67.542167 ], [ -33.222656, 67.407487 ], [ -33.398438, 67.407487 ], [ -33.398438, 67.272043 ], [ -33.574219, 67.272043 ], [ -33.574219, 67.135829 ], [ -33.750000, 67.135829 ], [ -33.750000, 66.998844 ], [ -33.925781, 66.998844 ], [ -33.925781, 66.861082 ], [ -34.101562, 66.861082 ], [ -34.101562, 66.722541 ], [ -34.277344, 66.722541 ], [ -34.277344, 66.652977 ], [ -34.453125, 66.652977 ], [ -34.453125, 66.583217 ], [ -34.628906, 66.583217 ], [ -34.628906, 66.513260 ], [ -34.804688, 66.513260 ], [ -34.804688, 66.443107 ], [ -35.156250, 66.443107 ], [ -35.156250, 66.372755 ], [ -35.332031, 66.372755 ], [ -35.332031, 66.302205 ], [ -35.507812, 66.302205 ], [ -35.507812, 66.231457 ], [ -35.683594, 66.231457 ], [ -35.683594, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.984375, 79.335219 ], [ -18.984375, 79.269962 ], [ -19.160156, 79.269962 ], [ -19.160156, 79.138260 ], [ -19.335938, 79.138260 ], [ -19.335938, 79.038437 ], [ -19.511719, 79.038437 ], [ -19.511719, 78.937708 ], [ -19.687500, 78.937708 ], [ -19.687500, 78.801980 ], [ -19.863281, 78.801980 ], [ -19.863281, 78.206563 ], [ -19.687500, 78.206563 ], [ -19.687500, 77.579959 ], [ -19.511719, 77.579959 ], [ -19.511719, 77.466028 ], [ -19.335938, 77.466028 ], [ -19.335938, 77.351070 ], [ -19.160156, 77.351070 ], [ -19.160156, 77.273855 ], [ -18.984375, 77.273855 ], [ -18.984375, 77.157163 ], [ -18.808594, 77.157163 ], [ -18.808594, 77.039418 ], [ -18.632812, 77.039418 ], [ -18.632812, 76.999935 ], [ -19.160156, 76.999935 ], [ -19.160156, 76.960334 ], [ -20.039062, 76.960334 ], [ -20.039062, 76.920614 ], [ -20.214844, 76.920614 ], [ -20.214844, 76.880775 ], [ -20.566406, 76.880775 ], [ -20.566406, 76.840816 ], [ -20.742188, 76.840816 ], [ -20.742188, 76.800739 ], [ -20.917969, 76.800739 ], [ -20.917969, 76.760541 ], [ -21.093750, 76.760541 ], [ -21.093750, 76.720223 ], [ -21.445312, 76.720223 ], [ -21.445312, 76.679785 ], [ -21.621094, 76.679785 ], [ -21.621094, 76.639226 ], [ -21.796875, 76.639226 ], [ -21.796875, 76.598545 ], [ -21.621094, 76.598545 ], [ -21.621094, 76.557743 ], [ -21.445312, 76.557743 ], [ -21.445312, 76.516819 ], [ -21.269531, 76.516819 ], [ -21.269531, 76.434604 ], [ -21.093750, 76.434604 ], [ -21.093750, 76.393312 ], [ -20.917969, 76.393312 ], [ -20.917969, 76.351896 ], [ -20.742188, 76.351896 ], [ -20.742188, 76.310358 ], [ -20.566406, 76.310358 ], [ -20.566406, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.184995 ], [ -20.214844, 76.184995 ], [ -20.214844, 76.142958 ], [ -20.039062, 76.142958 ], [ -20.039062, 76.100796 ], [ -19.863281, 76.100796 ], [ -19.863281, 75.672197 ], [ -19.687500, 75.672197 ], [ -19.687500, 75.275413 ], [ -19.863281, 75.275413 ], [ -19.863281, 75.230667 ], [ -20.390625, 75.230667 ], [ -20.390625, 75.185789 ], [ -20.742188, 75.185789 ], [ -20.742188, 75.095633 ], [ -20.566406, 75.095633 ], [ -20.566406, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.867889 ], [ -20.214844, 74.867889 ], [ -20.214844, 74.729615 ], [ -20.039062, 74.729615 ], [ -20.039062, 74.590108 ], [ -19.863281, 74.590108 ], [ -19.863281, 74.496413 ], [ -19.687500, 74.496413 ], [ -19.687500, 74.354828 ], [ -19.511719, 74.354828 ], [ -19.511719, 74.307353 ], [ -20.390625, 74.307353 ], [ -20.390625, 74.259738 ], [ -21.621094, 74.259738 ], [ -21.621094, 74.211983 ], [ -21.445312, 74.211983 ], [ -21.445312, 74.116047 ], [ -21.269531, 74.116047 ], [ -21.269531, 74.067866 ], [ -21.093750, 74.067866 ], [ -21.093750, 73.971078 ], [ -20.917969, 73.971078 ], [ -20.917969, 73.922469 ], [ -20.742188, 73.922469 ], [ -20.742188, 73.824820 ], [ -20.566406, 73.824820 ], [ -20.566406, 73.726595 ], [ -20.742188, 73.726595 ], [ -20.742188, 73.528399 ], [ -20.917969, 73.528399 ], [ -20.917969, 73.478485 ], [ -21.093750, 73.478485 ], [ -21.093750, 73.428424 ], [ -21.445312, 73.428424 ], [ -21.445312, 73.378215 ], [ -21.972656, 73.378215 ], [ -21.972656, 73.327858 ], [ -23.730469, 73.327858 ], [ -23.730469, 73.277353 ], [ -23.554688, 73.277353 ], [ -23.554688, 73.175897 ], [ -23.378906, 73.175897 ], [ -23.378906, 73.073844 ], [ -23.203125, 73.073844 ], [ -23.203125, 73.022592 ], [ -23.027344, 73.022592 ], [ -23.027344, 72.919635 ], [ -22.851562, 72.919635 ], [ -22.851562, 72.867930 ], [ -22.675781, 72.867930 ], [ -22.675781, 72.764065 ], [ -22.500000, 72.764065 ], [ -22.500000, 72.659588 ], [ -22.324219, 72.659588 ], [ -22.324219, 72.235514 ], [ -22.500000, 72.235514 ], [ -22.500000, 72.289067 ], [ -22.851562, 72.289067 ], [ -22.851562, 72.342464 ], [ -23.203125, 72.342464 ], [ -23.203125, 72.395706 ], [ -23.554688, 72.395706 ], [ -23.554688, 72.448792 ], [ -23.730469, 72.448792 ], [ -23.730469, 72.501722 ], [ -24.082031, 72.501722 ], [ -24.082031, 72.554498 ], [ -24.609375, 72.554498 ], [ -24.609375, 72.448792 ], [ -24.785156, 72.448792 ], [ -24.785156, 72.342464 ], [ -24.960938, 72.342464 ], [ -24.960938, 72.289067 ], [ -24.609375, 72.289067 ], [ -24.609375, 72.235514 ], [ -24.257812, 72.235514 ], [ -24.257812, 72.181804 ], [ -23.906250, 72.181804 ], [ -23.906250, 72.127936 ], [ -23.554688, 72.127936 ], [ -23.554688, 72.073911 ], [ -23.378906, 72.073911 ], [ -23.378906, 71.965388 ], [ -23.203125, 71.965388 ], [ -23.203125, 71.910888 ], [ -23.027344, 71.910888 ], [ -23.027344, 71.801410 ], [ -22.851562, 71.801410 ], [ -22.851562, 71.746432 ], [ -22.675781, 71.746432 ], [ -22.675781, 71.635993 ], [ -22.500000, 71.635993 ], [ -22.500000, 71.580532 ], [ -22.324219, 71.580532 ], [ -22.324219, 71.469124 ], [ -22.148438, 71.469124 ], [ -22.148438, 71.244356 ], [ -21.972656, 71.244356 ], [ -21.972656, 70.844673 ], [ -21.796875, 70.844673 ], [ -21.796875, 70.670881 ], [ -21.972656, 70.670881 ], [ -21.972656, 70.612614 ], [ -22.500000, 70.612614 ], [ -22.500000, 70.554179 ], [ -23.203125, 70.554179 ], [ -23.203125, 70.495574 ], [ -23.730469, 70.495574 ], [ -23.730469, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 70.670881 ], [ -24.082031, 70.670881 ], [ -24.082031, 70.728979 ], [ -24.257812, 70.728979 ], [ -24.257812, 70.844673 ], [ -24.433594, 70.844673 ], [ -24.433594, 70.902268 ], [ -24.609375, 70.902268 ], [ -24.609375, 71.016960 ], [ -24.785156, 71.016960 ], [ -24.785156, 71.074056 ], [ -24.960938, 71.074056 ], [ -24.960938, 71.187754 ], [ -25.136719, 71.187754 ], [ -25.136719, 71.244356 ], [ -25.312500, 71.244356 ], [ -25.312500, 71.300793 ], [ -25.488281, 71.300793 ] ], [ [ -25.488281, 71.300793 ], [ -25.488281, 71.413177 ], [ -25.664062, 71.413177 ], [ -25.664062, 71.300793 ], [ -25.488281, 71.300793 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.160511 ], [ -23.730469, 66.160511 ], [ -23.730469, 66.231457 ], [ -23.378906, 66.231457 ], [ -23.378906, 66.302205 ], [ -22.851562, 66.302205 ], [ -22.851562, 66.372755 ], [ -22.324219, 66.372755 ], [ -22.324219, 66.443107 ], [ -22.148438, 66.443107 ] ] ], [ [ [ -19.160156, 66.160511 ], [ -19.160156, 66.231457 ], [ -18.632812, 66.231457 ], [ -18.632812, 66.160511 ], [ -19.160156, 66.160511 ] ] ], [ [ [ -17.050781, 66.160511 ], [ -17.050781, 66.231457 ], [ -16.875000, 66.231457 ], [ -16.875000, 66.302205 ], [ -16.523438, 66.302205 ], [ -16.523438, 66.372755 ], [ -16.347656, 66.372755 ], [ -16.347656, 66.443107 ], [ -16.171875, 66.443107 ], [ -16.171875, 66.513260 ], [ -15.468750, 66.513260 ], [ -15.468750, 66.443107 ], [ -14.589844, 66.443107 ], [ -14.589844, 66.160511 ], [ -17.050781, 66.160511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.160511 ], [ -23.906250, 66.160511 ], [ -23.906250, 66.231457 ], [ -23.730469, 66.231457 ], [ -23.730469, 66.302205 ], [ -23.203125, 66.302205 ], [ -23.203125, 66.372755 ], [ -22.500000, 66.372755 ], [ -22.500000, 66.443107 ], [ -22.148438, 66.443107 ] ] ], [ [ [ -19.335938, 66.160511 ], [ -19.335938, 66.231457 ], [ -18.808594, 66.231457 ], [ -18.808594, 66.160511 ], [ -19.335938, 66.160511 ] ] ], [ [ [ -17.226562, 66.160511 ], [ -17.226562, 66.231457 ], [ -17.050781, 66.231457 ], [ -17.050781, 66.302205 ], [ -16.875000, 66.302205 ], [ -16.875000, 66.372755 ], [ -16.523438, 66.372755 ], [ -16.523438, 66.443107 ], [ -16.347656, 66.443107 ], [ -16.347656, 66.513260 ], [ -16.171875, 66.513260 ], [ -16.171875, 66.583217 ], [ -15.468750, 66.583217 ], [ -15.468750, 66.513260 ], [ -14.589844, 66.513260 ], [ -14.589844, 66.302205 ], [ -14.765625, 66.302205 ], [ -14.765625, 66.160511 ], [ -17.226562, 66.160511 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, 81.748454 ], [ -45.000000, 81.798757 ], [ -45.175781, 81.798757 ], [ -45.175781, 81.823794 ], [ -45.351562, 81.823794 ], [ -45.351562, 81.873641 ], [ -45.527344, 81.873641 ], [ -45.527344, 81.898451 ], [ -45.703125, 81.898451 ], [ -45.703125, 81.947846 ], [ -45.878906, 81.947846 ], [ -45.878906, 82.787476 ], [ -45.703125, 82.787476 ], [ -45.703125, 82.831480 ], [ -45.527344, 82.831480 ], [ -45.527344, 82.853382 ], [ -45.351562, 82.853382 ], [ -45.351562, 82.896987 ], [ -45.175781, 82.896987 ], [ -45.175781, 82.918690 ], [ -45.000000, 82.918690 ], [ -45.000000, 82.940327 ], [ -44.824219, 82.940327 ], [ -44.824219, 82.983404 ], [ -44.648438, 82.983404 ], [ -44.648438, 83.004844 ], [ -44.472656, 83.004844 ], [ -44.472656, 83.047529 ], [ -44.296875, 83.047529 ], [ -44.296875, 83.068774 ], [ -44.121094, 83.068774 ], [ -44.121094, 83.111071 ], [ -43.945312, 83.111071 ], [ -43.945312, 83.132123 ], [ -43.769531, 83.132123 ], [ -43.769531, 83.153111 ], [ -43.593750, 83.153111 ], [ -43.593750, 83.194896 ], [ -43.417969, 83.194896 ], [ -43.417969, 83.215693 ], [ -42.714844, 83.215693 ], [ -42.714844, 83.194896 ], [ -40.957031, 83.194896 ], [ -40.957031, 83.174035 ], [ -39.902344, 83.174035 ], [ -39.902344, 83.194896 ], [ -39.726562, 83.194896 ], [ -39.726562, 83.236426 ], [ -39.550781, 83.236426 ], [ -39.550781, 83.298250 ], [ -39.375000, 83.298250 ], [ -39.375000, 83.359511 ], [ -39.199219, 83.359511 ], [ -39.199219, 83.400042 ], [ -39.023438, 83.400042 ], [ -39.023438, 83.460377 ], [ -38.847656, 83.460377 ], [ -38.847656, 83.500295 ], [ -38.671875, 83.500295 ], [ -38.671875, 83.539970 ], [ -38.144531, 83.539970 ], [ -38.144531, 83.559717 ], [ -37.441406, 83.559717 ], [ -37.441406, 83.579404 ], [ -36.738281, 83.579404 ], [ -36.738281, 83.599031 ], [ -36.035156, 83.599031 ], [ -36.035156, 83.618598 ], [ -35.332031, 83.618598 ], [ -35.332031, 83.638106 ], [ -34.628906, 83.638106 ], [ -34.628906, 83.618598 ], [ -33.222656, 83.618598 ], [ -33.222656, 83.599031 ], [ -31.816406, 83.599031 ], [ -31.816406, 83.579404 ], [ -30.585938, 83.579404 ], [ -30.585938, 83.559717 ], [ -29.179688, 83.559717 ], [ -29.179688, 83.539970 ], [ -27.773438, 83.539970 ], [ -27.773438, 83.520162 ], [ -27.070312, 83.520162 ], [ -27.070312, 83.500295 ], [ -26.894531, 83.500295 ], [ -26.894531, 83.480366 ], [ -26.718750, 83.480366 ], [ -26.718750, 83.460377 ], [ -26.542969, 83.460377 ], [ -26.542969, 83.440326 ], [ -26.367188, 83.440326 ], [ -26.367188, 83.420215 ], [ -26.191406, 83.420215 ], [ -26.191406, 83.400042 ], [ -26.015625, 83.400042 ], [ -26.015625, 83.359511 ], [ -25.839844, 83.359511 ], [ -25.839844, 83.339153 ], [ -25.664062, 83.339153 ], [ -25.664062, 83.318733 ], [ -25.488281, 83.318733 ], [ -25.488281, 83.298250 ], [ -25.312500, 83.298250 ], [ -25.312500, 83.277705 ], [ -25.136719, 83.277705 ], [ -25.136719, 83.257097 ], [ -24.960938, 83.257097 ], [ -24.960938, 83.236426 ], [ -24.785156, 83.236426 ], [ -24.785156, 83.215693 ], [ -24.609375, 83.215693 ], [ -24.609375, 83.194896 ], [ -24.433594, 83.194896 ], [ -24.433594, 83.174035 ], [ -24.257812, 83.174035 ], [ -24.257812, 83.153111 ], [ -24.082031, 83.153111 ], [ -24.082031, 83.132123 ], [ -23.906250, 83.132123 ], [ -23.906250, 83.089955 ], [ -23.730469, 83.089955 ], [ -23.730469, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.047529 ], [ -23.378906, 83.047529 ], [ -23.378906, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 83.004844 ], [ -23.027344, 83.004844 ], [ -23.027344, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.961898 ], [ -22.675781, 82.961898 ], [ -22.675781, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.918690 ], [ -22.324219, 82.918690 ], [ -22.324219, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.875218 ], [ -21.972656, 82.875218 ], [ -21.972656, 82.831480 ], [ -21.796875, 82.831480 ], [ -21.796875, 82.809511 ], [ -21.621094, 82.809511 ], [ -21.621094, 82.787476 ], [ -21.445312, 82.787476 ], [ -21.445312, 82.765373 ], [ -21.269531, 82.765373 ], [ -21.269531, 82.743202 ], [ -21.093750, 82.743202 ], [ -21.093750, 82.720964 ], [ -20.917969, 82.720964 ], [ -20.917969, 82.698659 ], [ -21.093750, 82.698659 ], [ -21.093750, 82.653843 ], [ -21.269531, 82.653843 ], [ -21.269531, 82.608754 ], [ -21.445312, 82.608754 ], [ -21.445312, 82.586106 ], [ -21.621094, 82.586106 ], [ -21.621094, 82.540604 ], [ -21.796875, 82.540604 ], [ -21.796875, 82.494824 ], [ -21.972656, 82.494824 ], [ -21.972656, 82.448764 ], [ -22.148438, 82.448764 ], [ -22.148438, 82.425629 ], [ -22.324219, 82.425629 ], [ -22.324219, 82.379147 ], [ -22.500000, 82.379147 ], [ -22.500000, 82.332382 ], [ -24.433594, 82.332382 ], [ -24.433594, 82.308893 ], [ -26.894531, 82.308893 ], [ -26.894531, 82.285331 ], [ -27.949219, 82.285331 ], [ -27.949219, 82.261699 ], [ -29.003906, 82.261699 ], [ -29.003906, 82.237994 ], [ -30.058594, 82.237994 ], [ -30.058594, 82.214217 ], [ -31.113281, 82.214217 ], [ -31.113281, 82.190368 ], [ -31.816406, 82.190368 ], [ -31.816406, 82.142451 ], [ -31.640625, 82.142451 ], [ -31.640625, 82.045740 ], [ -31.464844, 82.045740 ], [ -31.464844, 82.021378 ], [ -30.937500, 82.021378 ], [ -30.937500, 82.045740 ], [ -30.234375, 82.045740 ], [ -30.234375, 82.070028 ], [ -29.531250, 82.070028 ], [ -29.531250, 82.094243 ], [ -28.828125, 82.094243 ], [ -28.828125, 82.118384 ], [ -28.125000, 82.118384 ], [ -28.125000, 82.142451 ], [ -27.773438, 82.142451 ], [ -27.773438, 82.118384 ], [ -27.597656, 82.118384 ], [ -27.597656, 82.094243 ], [ -27.246094, 82.094243 ], [ -27.246094, 82.070028 ], [ -27.070312, 82.070028 ], [ -27.070312, 82.045740 ], [ -26.894531, 82.045740 ], [ -26.894531, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.996942 ], [ -26.542969, 81.996942 ], [ -26.542969, 81.972431 ], [ -26.191406, 81.972431 ], [ -26.191406, 81.947846 ], [ -26.015625, 81.947846 ], [ -26.015625, 81.923186 ], [ -25.839844, 81.923186 ], [ -25.839844, 81.898451 ], [ -25.664062, 81.898451 ], [ -25.664062, 81.873641 ], [ -25.488281, 81.873641 ], [ -25.488281, 81.848756 ], [ -25.136719, 81.848756 ], [ -25.136719, 81.823794 ], [ -24.960938, 81.823794 ], [ -24.960938, 81.798757 ], [ -24.609375, 81.798757 ], [ -24.609375, 81.823794 ], [ -24.433594, 81.823794 ], [ -24.433594, 81.848756 ], [ -24.257812, 81.848756 ], [ -24.257812, 81.873641 ], [ -24.082031, 81.873641 ], [ -24.082031, 81.898451 ], [ -23.906250, 81.898451 ], [ -23.906250, 81.947846 ], [ -23.730469, 81.947846 ], [ -23.730469, 81.972431 ], [ -23.554688, 81.972431 ], [ -23.554688, 81.996942 ], [ -23.378906, 81.996942 ], [ -23.378906, 82.021378 ], [ -23.203125, 82.021378 ], [ -23.203125, 82.045740 ], [ -23.027344, 82.045740 ], [ -23.027344, 82.070028 ], [ -22.851562, 82.070028 ], [ -22.851562, 82.045740 ], [ -22.675781, 82.045740 ], [ -22.675781, 81.947846 ], [ -22.500000, 81.947846 ], [ -22.500000, 81.848756 ], [ -22.324219, 81.848756 ], [ -22.324219, 81.748454 ], [ -22.148438, 81.748454 ], [ -22.148438, 81.672424 ], [ -22.324219, 81.672424 ], [ -22.324219, 81.569968 ], [ -22.500000, 81.569968 ], [ -22.500000, 81.466261 ], [ -22.675781, 81.466261 ], [ -22.675781, 81.387650 ], [ -22.851562, 81.387650 ], [ -22.851562, 81.281717 ], [ -23.027344, 81.281717 ], [ -23.027344, 81.174491 ], [ -22.851562, 81.174491 ], [ -22.851562, 81.201420 ], [ -22.675781, 81.201420 ], [ -22.675781, 81.228267 ], [ -22.500000, 81.228267 ], [ -22.500000, 81.255032 ], [ -22.324219, 81.255032 ], [ -22.324219, 81.281717 ], [ -22.148438, 81.281717 ], [ -22.148438, 81.308321 ], [ -21.972656, 81.308321 ], [ -21.972656, 81.334844 ], [ -21.621094, 81.334844 ], [ -21.621094, 81.361287 ], [ -21.445312, 81.361287 ], [ -21.445312, 81.387650 ], [ -21.269531, 81.387650 ], [ -21.269531, 81.413933 ], [ -21.093750, 81.413933 ], [ -21.093750, 81.440137 ], [ -20.917969, 81.440137 ], [ -20.917969, 81.466261 ], [ -20.742188, 81.466261 ], [ -20.742188, 81.492306 ], [ -20.566406, 81.492306 ], [ -20.566406, 81.518272 ], [ -20.390625, 81.518272 ], [ -20.390625, 81.544159 ], [ -20.039062, 81.544159 ], [ -20.039062, 81.569968 ], [ -19.687500, 81.569968 ], [ -19.687500, 81.595699 ], [ -19.511719, 81.595699 ], [ -19.511719, 81.621352 ], [ -19.160156, 81.621352 ], [ -19.160156, 81.646927 ], [ -18.808594, 81.646927 ], [ -18.808594, 81.672424 ], [ -18.632812, 81.672424 ], [ -18.632812, 81.697844 ], [ -18.281250, 81.697844 ], [ -18.281250, 81.723188 ], [ -17.929688, 81.723188 ], [ -17.929688, 81.748454 ], [ -17.578125, 81.748454 ], [ -17.578125, 81.773644 ], [ -17.402344, 81.773644 ], [ -17.402344, 81.798757 ], [ -17.050781, 81.798757 ], [ -17.050781, 81.823794 ], [ -16.699219, 81.823794 ], [ -16.699219, 81.848756 ], [ -16.523438, 81.848756 ], [ -16.523438, 81.873641 ], [ -16.171875, 81.873641 ], [ -16.171875, 81.898451 ], [ -15.820312, 81.898451 ], [ -15.820312, 81.923186 ], [ -15.644531, 81.923186 ], [ -15.644531, 81.898451 ], [ -15.292969, 81.898451 ], [ -15.292969, 81.873641 ], [ -14.941406, 81.873641 ], [ -14.941406, 81.848756 ], [ -14.589844, 81.848756 ], [ -14.589844, 81.823794 ], [ -14.238281, 81.823794 ], [ -14.238281, 81.798757 ], [ -13.886719, 81.798757 ], [ -13.886719, 81.773644 ], [ -13.535156, 81.773644 ], [ -13.535156, 81.748454 ], [ -13.183594, 81.748454 ], [ -13.183594, 81.723188 ], [ -12.832031, 81.723188 ], [ -12.832031, 81.646927 ], [ -12.656250, 81.646927 ], [ -12.656250, 81.544159 ], [ -12.480469, 81.544159 ], [ -12.480469, 81.440137 ], [ -12.304688, 81.440137 ], [ -12.304688, 81.334844 ], [ -12.128906, 81.334844 ], [ -12.128906, 81.255032 ], [ -12.304688, 81.255032 ], [ -12.304688, 81.228267 ], [ -12.480469, 81.228267 ], [ -12.480469, 81.201420 ], [ -12.656250, 81.201420 ], [ -12.656250, 81.174491 ], [ -12.832031, 81.174491 ], [ -12.832031, 81.147481 ], [ -13.007812, 81.147481 ], [ -13.007812, 81.120388 ], [ -13.183594, 81.120388 ], [ -13.183594, 81.093214 ], [ -13.359375, 81.093214 ], [ -13.359375, 81.065957 ], [ -13.535156, 81.065957 ], [ -13.535156, 81.038617 ], [ -13.710938, 81.038617 ], [ -13.710938, 81.011194 ], [ -13.886719, 81.011194 ], [ -13.886719, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.956099 ], [ -14.238281, 80.956099 ], [ -14.238281, 80.900669 ], [ -14.414062, 80.900669 ], [ -14.414062, 80.872827 ], [ -14.589844, 80.872827 ], [ -14.589844, 80.844901 ], [ -14.765625, 80.844901 ], [ -14.765625, 80.816891 ], [ -14.941406, 80.816891 ], [ -14.941406, 80.788795 ], [ -15.117188, 80.788795 ], [ -15.117188, 80.760615 ], [ -15.292969, 80.760615 ], [ -15.292969, 80.732349 ], [ -15.468750, 80.732349 ], [ -15.468750, 80.703997 ], [ -15.644531, 80.703997 ], [ -15.644531, 80.675559 ], [ -15.820312, 80.675559 ], [ -15.820312, 80.647035 ], [ -15.996094, 80.647035 ], [ -15.996094, 80.618424 ], [ -16.171875, 80.618424 ], [ -16.171875, 80.589727 ], [ -16.347656, 80.589727 ], [ -16.347656, 80.532071 ], [ -16.523438, 80.532071 ], [ -16.523438, 80.474065 ], [ -16.699219, 80.474065 ], [ -16.699219, 80.386396 ], [ -16.875000, 80.386396 ], [ -16.875000, 80.356995 ], [ -17.050781, 80.356995 ], [ -17.050781, 80.327506 ], [ -17.578125, 80.327506 ], [ -17.578125, 80.297927 ], [ -18.105469, 80.297927 ], [ -18.105469, 80.268259 ], [ -18.632812, 80.268259 ], [ -18.632812, 80.238501 ], [ -19.160156, 80.238501 ], [ -19.160156, 80.208652 ], [ -19.687500, 80.208652 ], [ -19.687500, 80.178713 ], [ -19.511719, 80.178713 ], [ -19.511719, 80.148684 ], [ -18.457031, 80.148684 ], [ -18.457031, 80.118564 ], [ -17.753906, 80.118564 ], [ -17.753906, 80.058050 ], [ -17.929688, 80.058050 ], [ -17.929688, 79.966590 ], [ -18.105469, 79.966590 ], [ -18.105469, 79.843346 ], [ -18.281250, 79.843346 ], [ -18.281250, 79.749932 ], [ -18.457031, 79.749932 ], [ -18.457031, 79.655668 ], [ -18.632812, 79.655668 ], [ -18.632812, 79.528647 ], [ -18.808594, 79.528647 ], [ -18.808594, 79.432371 ], [ -18.984375, 79.432371 ], [ -18.984375, 79.302640 ], [ -19.160156, 79.302640 ], [ -19.160156, 79.105086 ], [ -19.335938, 79.105086 ], [ -19.335938, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.848756 ], [ -45.703125, 81.848756 ], [ -45.703125, 81.823794 ], [ -45.527344, 81.823794 ], [ -45.527344, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.773644 ], [ -45.175781, 81.773644 ], [ -45.175781, 81.748454 ], [ -45.000000, 81.748454 ] ], [ [ -23.027344, 81.174491 ], [ -23.203125, 81.174491 ], [ -23.203125, 81.147481 ], [ -23.027344, 81.147481 ], [ -23.027344, 81.174491 ] ], [ [ -44.824219, 81.723188 ], [ -44.824219, 81.697844 ], [ -44.648438, 81.697844 ], [ -44.648438, 81.723188 ], [ -44.824219, 81.723188 ] ], [ [ -45.000000, 81.748454 ], [ -45.000000, 81.723188 ], [ -44.824219, 81.723188 ], [ -44.824219, 81.748454 ], [ -45.000000, 81.748454 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.175781, 81.773644 ], [ -45.175781, 81.823794 ], [ -45.351562, 81.823794 ], [ -45.351562, 81.873641 ], [ -45.527344, 81.873641 ], [ -45.527344, 81.923186 ], [ -45.703125, 81.923186 ], [ -45.703125, 81.972431 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.809511 ], [ -45.703125, 82.809511 ], [ -45.703125, 82.853382 ], [ -45.527344, 82.853382 ], [ -45.527344, 82.875218 ], [ -45.351562, 82.875218 ], [ -45.351562, 82.918690 ], [ -45.175781, 82.918690 ], [ -45.175781, 82.940327 ], [ -45.000000, 82.940327 ], [ -45.000000, 82.961898 ], [ -44.824219, 82.961898 ], [ -44.824219, 83.004844 ], [ -44.648438, 83.004844 ], [ -44.648438, 83.026219 ], [ -44.472656, 83.026219 ], [ -44.472656, 83.068774 ], [ -44.296875, 83.068774 ], [ -44.296875, 83.089955 ], [ -44.121094, 83.089955 ], [ -44.121094, 83.132123 ], [ -43.945312, 83.132123 ], [ -43.945312, 83.153111 ], [ -43.769531, 83.153111 ], [ -43.769531, 83.174035 ], [ -43.593750, 83.174035 ], [ -43.593750, 83.215693 ], [ -43.417969, 83.215693 ], [ -43.417969, 83.236426 ], [ -42.714844, 83.236426 ], [ -42.714844, 83.215693 ], [ -40.957031, 83.215693 ], [ -40.957031, 83.194896 ], [ -39.902344, 83.194896 ], [ -39.902344, 83.215693 ], [ -39.726562, 83.215693 ], [ -39.726562, 83.257097 ], [ -39.550781, 83.257097 ], [ -39.550781, 83.318733 ], [ -39.375000, 83.318733 ], [ -39.375000, 83.379808 ], [ -39.199219, 83.379808 ], [ -39.199219, 83.420215 ], [ -39.023438, 83.420215 ], [ -39.023438, 83.480366 ], [ -38.847656, 83.480366 ], [ -38.847656, 83.520162 ], [ -38.671875, 83.520162 ], [ -38.671875, 83.559717 ], [ -38.144531, 83.559717 ], [ -38.144531, 83.579404 ], [ -37.441406, 83.579404 ], [ -37.441406, 83.599031 ], [ -36.738281, 83.599031 ], [ -36.738281, 83.618598 ], [ -36.035156, 83.618598 ], [ -36.035156, 83.638106 ], [ -35.332031, 83.638106 ], [ -35.332031, 83.657554 ], [ -34.628906, 83.657554 ], [ -34.628906, 83.638106 ], [ -33.574219, 83.638106 ], [ -33.574219, 83.618598 ], [ -32.343750, 83.618598 ], [ -32.343750, 83.599031 ], [ -31.289062, 83.599031 ], [ -31.289062, 83.579404 ], [ -30.234375, 83.579404 ], [ -30.234375, 83.559717 ], [ -29.003906, 83.559717 ], [ -29.003906, 83.539970 ], [ -27.949219, 83.539970 ], [ -27.949219, 83.520162 ], [ -27.246094, 83.520162 ], [ -27.246094, 83.500295 ], [ -27.070312, 83.500295 ], [ -27.070312, 83.480366 ], [ -26.894531, 83.480366 ], [ -26.894531, 83.460377 ], [ -26.718750, 83.460377 ], [ -26.718750, 83.440326 ], [ -26.542969, 83.440326 ], [ -26.542969, 83.420215 ], [ -26.367188, 83.420215 ], [ -26.367188, 83.400042 ], [ -26.191406, 83.400042 ], [ -26.191406, 83.379808 ], [ -26.015625, 83.379808 ], [ -26.015625, 83.359511 ], [ -25.839844, 83.359511 ], [ -25.839844, 83.339153 ], [ -25.664062, 83.339153 ], [ -25.664062, 83.318733 ], [ -25.488281, 83.318733 ], [ -25.488281, 83.298250 ], [ -25.312500, 83.298250 ], [ -25.312500, 83.277705 ], [ -25.136719, 83.277705 ], [ -25.136719, 83.257097 ], [ -24.960938, 83.257097 ], [ -24.960938, 83.236426 ], [ -24.785156, 83.236426 ], [ -24.785156, 83.215693 ], [ -24.609375, 83.215693 ], [ -24.609375, 83.194896 ], [ -24.433594, 83.194896 ], [ -24.433594, 83.174035 ], [ -24.257812, 83.174035 ], [ -24.257812, 83.153111 ], [ -24.082031, 83.153111 ], [ -24.082031, 83.111071 ], [ -23.906250, 83.111071 ], [ -23.906250, 83.089955 ], [ -23.730469, 83.089955 ], [ -23.730469, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.047529 ], [ -23.378906, 83.047529 ], [ -23.378906, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 83.004844 ], [ -23.027344, 83.004844 ], [ -23.027344, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.961898 ], [ -22.675781, 82.961898 ], [ -22.675781, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.918690 ], [ -22.324219, 82.918690 ], [ -22.324219, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.875218 ], [ -21.972656, 82.875218 ], [ -21.972656, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.831480 ], [ -21.621094, 82.831480 ], [ -21.621094, 82.809511 ], [ -21.445312, 82.809511 ], [ -21.445312, 82.787476 ], [ -21.269531, 82.787476 ], [ -21.269531, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.743202 ], [ -20.917969, 82.743202 ], [ -20.917969, 82.720964 ], [ -21.093750, 82.720964 ], [ -21.093750, 82.676285 ], [ -21.269531, 82.676285 ], [ -21.269531, 82.653843 ], [ -21.445312, 82.653843 ], [ -21.445312, 82.608754 ], [ -21.621094, 82.608754 ], [ -21.621094, 82.586106 ], [ -21.796875, 82.586106 ], [ -21.796875, 82.540604 ], [ -21.972656, 82.540604 ], [ -21.972656, 82.494824 ], [ -22.148438, 82.494824 ], [ -22.148438, 82.471829 ], [ -22.324219, 82.471829 ], [ -22.324219, 82.425629 ], [ -22.500000, 82.425629 ], [ -22.500000, 82.402423 ], [ -22.675781, 82.402423 ], [ -22.675781, 82.355800 ], [ -23.730469, 82.355800 ], [ -23.730469, 82.332382 ], [ -25.488281, 82.332382 ], [ -25.488281, 82.308893 ], [ -27.070312, 82.308893 ], [ -27.070312, 82.285331 ], [ -28.476562, 82.285331 ], [ -28.476562, 82.261699 ], [ -29.882812, 82.261699 ], [ -29.882812, 82.237994 ], [ -31.289062, 82.237994 ], [ -31.289062, 82.214217 ], [ -31.992188, 82.214217 ], [ -31.992188, 82.166446 ], [ -31.816406, 82.166446 ], [ -31.816406, 82.118384 ], [ -31.640625, 82.118384 ], [ -31.640625, 82.045740 ], [ -31.464844, 82.045740 ], [ -31.464844, 82.021378 ], [ -30.937500, 82.021378 ], [ -30.937500, 82.045740 ], [ -30.234375, 82.045740 ], [ -30.234375, 82.070028 ], [ -29.531250, 82.070028 ], [ -29.531250, 82.094243 ], [ -28.828125, 82.094243 ], [ -28.828125, 82.118384 ], [ -28.125000, 82.118384 ], [ -28.125000, 82.142451 ], [ -27.949219, 82.142451 ], [ -27.949219, 82.118384 ], [ -27.773438, 82.118384 ], [ -27.773438, 82.094243 ], [ -27.421875, 82.094243 ], [ -27.421875, 82.070028 ], [ -27.246094, 82.070028 ], [ -27.246094, 82.045740 ], [ -27.070312, 82.045740 ], [ -27.070312, 82.021378 ], [ -26.894531, 82.021378 ], [ -26.894531, 81.996942 ], [ -26.718750, 81.996942 ], [ -26.718750, 81.972431 ], [ -26.367188, 81.972431 ], [ -26.367188, 81.947846 ], [ -26.191406, 81.947846 ], [ -26.191406, 81.923186 ], [ -26.015625, 81.923186 ], [ -26.015625, 81.898451 ], [ -25.839844, 81.898451 ], [ -25.839844, 81.873641 ], [ -25.664062, 81.873641 ], [ -25.664062, 81.848756 ], [ -25.312500, 81.848756 ], [ -25.312500, 81.823794 ], [ -25.136719, 81.823794 ], [ -25.136719, 81.798757 ], [ -24.785156, 81.798757 ], [ -24.785156, 81.823794 ], [ -24.609375, 81.823794 ], [ -24.609375, 81.848756 ], [ -24.433594, 81.848756 ], [ -24.433594, 81.873641 ], [ -24.257812, 81.873641 ], [ -24.257812, 81.898451 ], [ -24.082031, 81.898451 ], [ -24.082031, 81.947846 ], [ -23.906250, 81.947846 ], [ -23.906250, 81.972431 ], [ -23.730469, 81.972431 ], [ -23.730469, 81.996942 ], [ -23.554688, 81.996942 ], [ -23.554688, 82.021378 ], [ -23.378906, 82.021378 ], [ -23.378906, 82.045740 ], [ -23.203125, 82.045740 ], [ -23.203125, 82.070028 ], [ -23.027344, 82.070028 ], [ -23.027344, 82.045740 ], [ -22.851562, 82.045740 ], [ -22.851562, 81.972431 ], [ -22.675781, 81.972431 ], [ -22.675781, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.848756 ], [ -22.324219, 81.848756 ], [ -22.324219, 81.773644 ], [ -22.148438, 81.773644 ], [ -22.148438, 81.697844 ], [ -22.324219, 81.697844 ], [ -22.324219, 81.595699 ], [ -22.500000, 81.595699 ], [ -22.500000, 81.492306 ], [ -22.675781, 81.492306 ], [ -22.675781, 81.413933 ], [ -22.851562, 81.413933 ], [ -22.851562, 81.308321 ], [ -23.027344, 81.308321 ], [ -23.027344, 81.201420 ], [ -22.851562, 81.201420 ], [ -22.851562, 81.228267 ], [ -22.675781, 81.228267 ], [ -22.675781, 81.255032 ], [ -22.500000, 81.255032 ], [ -22.500000, 81.281717 ], [ -22.324219, 81.281717 ], [ -22.324219, 81.308321 ], [ -22.148438, 81.308321 ], [ -22.148438, 81.334844 ], [ -21.972656, 81.334844 ], [ -21.972656, 81.361287 ], [ -21.796875, 81.361287 ], [ -21.796875, 81.387650 ], [ -21.621094, 81.387650 ], [ -21.621094, 81.413933 ], [ -21.445312, 81.413933 ], [ -21.445312, 81.440137 ], [ -21.269531, 81.440137 ], [ -21.269531, 81.466261 ], [ -21.093750, 81.466261 ], [ -21.093750, 81.492306 ], [ -20.917969, 81.492306 ], [ -20.917969, 81.518272 ], [ -20.742188, 81.518272 ], [ -20.742188, 81.544159 ], [ -20.566406, 81.544159 ], [ -20.566406, 81.569968 ], [ -20.214844, 81.569968 ], [ -20.214844, 81.595699 ], [ -19.863281, 81.595699 ], [ -19.863281, 81.621352 ], [ -19.511719, 81.621352 ], [ -19.511719, 81.646927 ], [ -19.160156, 81.646927 ], [ -19.160156, 81.672424 ], [ -18.808594, 81.672424 ], [ -18.808594, 81.697844 ], [ -18.457031, 81.697844 ], [ -18.457031, 81.723188 ], [ -18.105469, 81.723188 ], [ -18.105469, 81.748454 ], [ -17.929688, 81.748454 ], [ -17.929688, 81.773644 ], [ -17.578125, 81.773644 ], [ -17.578125, 81.798757 ], [ -17.226562, 81.798757 ], [ -17.226562, 81.823794 ], [ -16.875000, 81.823794 ], [ -16.875000, 81.848756 ], [ -16.523438, 81.848756 ], [ -16.523438, 81.873641 ], [ -16.171875, 81.873641 ], [ -16.171875, 81.898451 ], [ -15.820312, 81.898451 ], [ -15.820312, 81.923186 ], [ -15.644531, 81.923186 ], [ -15.644531, 81.898451 ], [ -15.292969, 81.898451 ], [ -15.292969, 81.873641 ], [ -14.941406, 81.873641 ], [ -14.941406, 81.848756 ], [ -14.589844, 81.848756 ], [ -14.589844, 81.823794 ], [ -14.238281, 81.823794 ], [ -14.238281, 81.798757 ], [ -13.886719, 81.798757 ], [ -13.886719, 81.773644 ], [ -13.535156, 81.773644 ], [ -13.535156, 81.748454 ], [ -13.183594, 81.748454 ], [ -13.183594, 81.723188 ], [ -12.832031, 81.723188 ], [ -12.832031, 81.646927 ], [ -12.656250, 81.646927 ], [ -12.656250, 81.518272 ], [ -12.480469, 81.518272 ], [ -12.480469, 81.361287 ], [ -12.304688, 81.361287 ], [ -12.304688, 81.281717 ], [ -12.480469, 81.281717 ], [ -12.480469, 81.255032 ], [ -12.656250, 81.255032 ], [ -12.656250, 81.228267 ], [ -12.832031, 81.228267 ], [ -12.832031, 81.201420 ], [ -13.007812, 81.201420 ], [ -13.007812, 81.147481 ], [ -13.183594, 81.147481 ], [ -13.183594, 81.120388 ], [ -13.359375, 81.120388 ], [ -13.359375, 81.093214 ], [ -13.535156, 81.093214 ], [ -13.535156, 81.065957 ], [ -13.710938, 81.065957 ], [ -13.710938, 81.038617 ], [ -13.886719, 81.038617 ], [ -13.886719, 81.011194 ], [ -14.062500, 81.011194 ], [ -14.062500, 80.983688 ], [ -14.238281, 80.983688 ], [ -14.238281, 80.956099 ], [ -14.414062, 80.956099 ], [ -14.414062, 80.900669 ], [ -14.589844, 80.900669 ], [ -14.589844, 80.872827 ], [ -14.765625, 80.872827 ], [ -14.765625, 80.844901 ], [ -14.941406, 80.844901 ], [ -14.941406, 80.816891 ], [ -15.117188, 80.816891 ], [ -15.117188, 80.788795 ], [ -15.292969, 80.788795 ], [ -15.292969, 80.760615 ], [ -15.468750, 80.760615 ], [ -15.468750, 80.732349 ], [ -15.644531, 80.732349 ], [ -15.644531, 80.675559 ], [ -15.820312, 80.675559 ], [ -15.820312, 80.647035 ], [ -15.996094, 80.647035 ], [ -15.996094, 80.618424 ], [ -16.171875, 80.618424 ], [ -16.171875, 80.589727 ], [ -16.347656, 80.589727 ], [ -16.347656, 80.532071 ], [ -16.523438, 80.532071 ], [ -16.523438, 80.474065 ], [ -16.699219, 80.474065 ], [ -16.699219, 80.386396 ], [ -16.875000, 80.386396 ], [ -16.875000, 80.356995 ], [ -17.050781, 80.356995 ], [ -17.050781, 80.327506 ], [ -17.578125, 80.327506 ], [ -17.578125, 80.297927 ], [ -18.105469, 80.297927 ], [ -18.105469, 80.268259 ], [ -18.808594, 80.268259 ], [ -18.808594, 80.238501 ], [ -19.335938, 80.238501 ], [ -19.335938, 80.208652 ], [ -19.863281, 80.208652 ], [ -19.863281, 80.178713 ], [ -19.160156, 80.178713 ], [ -19.160156, 80.148684 ], [ -17.753906, 80.148684 ], [ -17.753906, 80.088352 ], [ -17.929688, 80.088352 ], [ -17.929688, 79.966590 ], [ -18.105469, 79.966590 ], [ -18.105469, 79.874297 ], [ -18.281250, 79.874297 ], [ -18.281250, 79.781164 ], [ -18.457031, 79.781164 ], [ -18.457031, 79.655668 ], [ -18.632812, 79.655668 ], [ -18.632812, 79.560546 ], [ -18.808594, 79.560546 ], [ -18.808594, 79.432371 ], [ -18.984375, 79.432371 ], [ -18.984375, 79.335219 ], [ -19.160156, 79.335219 ], [ -19.160156, 79.204309 ], [ -19.335938, 79.204309 ], [ -19.335938, 79.071812 ], [ -19.511719, 79.071812 ], [ -19.511719, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.848756 ], [ -45.527344, 81.848756 ], [ -45.527344, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.773644 ], [ -45.175781, 81.773644 ] ], [ [ -23.027344, 81.201420 ], [ -23.203125, 81.201420 ], [ -23.203125, 81.174491 ], [ -23.027344, 81.174491 ], [ -23.027344, 81.201420 ] ], [ [ -45.000000, 81.723188 ], [ -45.000000, 81.697844 ], [ -44.824219, 81.697844 ], [ -44.824219, 81.723188 ], [ -45.000000, 81.723188 ] ], [ [ -45.175781, 81.773644 ], [ -45.175781, 81.748454 ], [ -45.000000, 81.748454 ], [ -45.000000, 81.773644 ], [ -45.175781, 81.773644 ] ] ] } } ] } ] } , @@ -1654,257 +1645,257 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -67.809245 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.244356 ], [ -0.703125, -71.244356 ], [ -0.703125, -71.357067 ], [ -0.527344, -71.357067 ], [ -0.527344, -71.469124 ], [ -0.351562, -71.469124 ], [ -0.351562, -71.580532 ], [ -0.175781, -71.580532 ], [ -0.175781, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.580532 ], [ 0.175781, -71.580532 ], [ 0.175781, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.469124 ], [ 0.527344, -71.469124 ], [ 0.527344, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.357067 ], [ 0.878906, -71.357067 ], [ 0.878906, -71.300793 ], [ 1.230469, -71.300793 ], [ 1.230469, -71.244356 ], [ 1.582031, -71.244356 ], [ 1.582031, -71.187754 ], [ 1.933594, -71.187754 ], [ 1.933594, -71.130988 ], [ 2.285156, -71.130988 ], [ 2.285156, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -71.016960 ], [ 3.339844, -71.016960 ], [ 3.339844, -70.959697 ], [ 3.691406, -70.959697 ], [ 3.691406, -70.902268 ], [ 4.042969, -70.902268 ], [ 4.042969, -70.844673 ], [ 4.394531, -70.844673 ], [ 4.394531, -70.786910 ], [ 4.570312, -70.786910 ], [ 4.570312, -70.728979 ], [ 4.921875, -70.728979 ], [ 4.921875, -70.670881 ], [ 5.097656, -70.670881 ], [ 5.097656, -70.612614 ], [ 5.449219, -70.612614 ], [ 5.449219, -70.554179 ], [ 5.800781, -70.554179 ], [ 5.800781, -70.495574 ], [ 6.152344, -70.495574 ], [ 6.152344, -70.436799 ], [ 6.503906, -70.436799 ], [ 6.503906, -70.377854 ], [ 6.855469, -70.377854 ], [ 6.855469, -70.318738 ], [ 7.207031, -70.318738 ], [ 7.207031, -70.199994 ], [ 7.382812, -70.199994 ], [ 7.382812, -70.080562 ], [ 7.558594, -70.080562 ], [ 7.558594, -69.960439 ], [ 7.910156, -69.960439 ], [ 7.910156, -70.020587 ], [ 8.085938, -70.020587 ], [ 8.085938, -70.080562 ], [ 8.261719, -70.080562 ], [ 8.261719, -70.140364 ], [ 8.789062, -70.140364 ], [ 8.789062, -70.080562 ], [ 9.316406, -70.080562 ], [ 9.316406, -70.020587 ], [ 9.492188, -70.020587 ], [ 9.492188, -70.080562 ], [ 9.667969, -70.080562 ], [ 9.667969, -70.199994 ], [ 9.843750, -70.199994 ], [ 9.843750, -70.318738 ], [ 10.019531, -70.318738 ], [ 10.019531, -70.436799 ], [ 10.195312, -70.436799 ], [ 10.195312, -70.554179 ], [ 10.371094, -70.554179 ], [ 10.371094, -70.670881 ], [ 10.546875, -70.670881 ], [ 10.546875, -70.728979 ], [ 10.722656, -70.728979 ], [ 10.722656, -70.844673 ], [ 11.074219, -70.844673 ], [ 11.074219, -70.786910 ], [ 11.425781, -70.786910 ], [ 11.425781, -70.728979 ], [ 11.601562, -70.728979 ], [ 11.601562, -70.670881 ], [ 11.953125, -70.670881 ], [ 11.953125, -70.554179 ], [ 12.128906, -70.554179 ], [ 12.128906, -70.436799 ], [ 12.304688, -70.436799 ], [ 12.304688, -70.318738 ], [ 12.480469, -70.318738 ], [ 12.480469, -70.259452 ], [ 12.656250, -70.259452 ], [ 12.656250, -70.199994 ], [ 12.832031, -70.199994 ], [ 12.832031, -70.140364 ], [ 13.007812, -70.140364 ], [ 13.007812, -70.080562 ], [ 13.183594, -70.080562 ], [ 13.183594, -70.020587 ], [ 13.359375, -70.020587 ], [ 13.359375, -69.960439 ], [ 13.886719, -69.960439 ], [ 13.886719, -70.020587 ], [ 14.765625, -70.020587 ], [ 14.765625, -70.140364 ], [ 14.941406, -70.140364 ], [ 14.941406, -70.318738 ], [ 15.117188, -70.318738 ], [ 15.117188, -70.377854 ], [ 15.292969, -70.377854 ], [ 15.292969, -70.318738 ], [ 15.468750, -70.318738 ], [ 15.468750, -70.199994 ], [ 15.644531, -70.199994 ], [ 15.644531, -70.140364 ], [ 15.820312, -70.140364 ], [ 15.820312, -70.080562 ], [ 15.996094, -70.080562 ], [ 15.996094, -70.020587 ], [ 16.347656, -70.020587 ], [ 16.347656, -69.960439 ], [ 16.875000, -69.960439 ], [ 16.875000, -69.900118 ], [ 19.511719, -69.900118 ], [ 19.511719, -69.960439 ], [ 20.039062, -69.960439 ], [ 20.039062, -70.020587 ], [ 20.742188, -70.020587 ], [ 20.742188, -70.080562 ], [ 21.445312, -70.080562 ], [ 21.445312, -70.140364 ], [ 21.621094, -70.140364 ], [ 21.621094, -70.259452 ], [ 21.796875, -70.259452 ], [ 21.796875, -70.377854 ], [ 21.972656, -70.377854 ], [ 21.972656, -70.436799 ], [ 22.148438, -70.436799 ], [ 22.148438, -70.554179 ], [ 22.324219, -70.554179 ], [ 22.324219, -70.670881 ], [ 22.851562, -70.670881 ], [ 22.851562, -70.612614 ], [ 23.203125, -70.612614 ], [ 23.203125, -70.554179 ], [ 23.554688, -70.554179 ], [ 23.554688, -70.495574 ], [ 26.718750, -70.495574 ], [ 26.718750, -70.436799 ], [ 27.421875, -70.436799 ], [ 27.421875, -70.377854 ], [ 27.949219, -70.377854 ], [ 27.949219, -70.318738 ], [ 28.476562, -70.318738 ], [ 28.476562, -70.259452 ], [ 29.003906, -70.259452 ], [ 29.003906, -70.199994 ], [ 29.355469, -70.199994 ], [ 29.355469, -70.140364 ], [ 29.531250, -70.140364 ], [ 29.531250, -70.080562 ], [ 29.882812, -70.080562 ], [ 29.882812, -70.020587 ], [ 30.058594, -70.020587 ], [ 30.058594, -69.960439 ], [ 30.234375, -69.960439 ], [ 30.234375, -69.900118 ], [ 30.585938, -69.900118 ], [ 30.585938, -69.839622 ], [ 30.937500, -69.839622 ], [ 30.937500, -69.778952 ], [ 31.289062, -69.778952 ], [ 31.289062, -69.718107 ], [ 31.816406, -69.718107 ], [ 31.816406, -69.657086 ], [ 32.167969, -69.657086 ], [ 32.167969, -69.595890 ], [ 32.343750, -69.595890 ], [ 32.343750, -69.534518 ], [ 32.519531, -69.534518 ], [ 32.519531, -69.472969 ], [ 32.695312, -69.472969 ], [ 32.695312, -69.349339 ], [ 32.871094, -69.349339 ], [ 32.871094, -69.162558 ], [ 33.046875, -69.162558 ], [ 33.046875, -68.974164 ], [ 33.222656, -68.974164 ], [ 33.222656, -68.847665 ], [ 33.398438, -68.847665 ], [ 33.398438, -68.784144 ], [ 33.574219, -68.784144 ], [ 33.574219, -68.656555 ], [ 33.750000, -68.656555 ], [ 33.750000, -68.592487 ], [ 33.925781, -68.592487 ], [ 33.925781, -68.528235 ], [ 34.101562, -68.528235 ], [ 34.101562, -68.592487 ], [ 34.628906, -68.592487 ], [ 34.628906, -68.656555 ], [ 34.980469, -68.656555 ], [ 34.980469, -68.784144 ], [ 35.156250, -68.784144 ], [ 35.156250, -68.974164 ], [ 35.332031, -68.974164 ], [ 35.332031, -69.099940 ], [ 35.683594, -69.099940 ], [ 35.683594, -69.162558 ], [ 36.035156, -69.162558 ], [ 36.035156, -69.224997 ], [ 36.914062, -69.224997 ], [ 36.914062, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.224997 ], [ 37.441406, -69.224997 ], [ 37.441406, -69.349339 ], [ 37.617188, -69.349339 ], [ 37.617188, -69.411242 ], [ 37.792969, -69.411242 ], [ 37.792969, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.595890 ], [ 38.144531, -69.595890 ], [ 38.144531, -69.657086 ], [ 38.320312, -69.657086 ], [ 38.320312, -69.718107 ], [ 38.496094, -69.718107 ], [ 38.496094, -69.778952 ], [ 38.847656, -69.778952 ], [ 38.847656, -69.718107 ], [ 39.199219, -69.718107 ], [ 39.199219, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.595890 ], [ 39.726562, -69.595890 ], [ 39.726562, -69.472969 ], [ 39.902344, -69.472969 ], [ 39.902344, -69.224997 ], [ 40.078125, -69.224997 ], [ 40.078125, -69.099940 ], [ 40.253906, -69.099940 ], [ 40.253906, -69.037142 ], [ 40.605469, -69.037142 ], [ 40.605469, -68.974164 ], [ 40.957031, -68.974164 ], [ 40.957031, -68.911005 ], [ 41.132812, -68.911005 ], [ 41.132812, -68.847665 ], [ 41.308594, -68.847665 ], [ 41.308594, -68.784144 ], [ 41.660156, -68.784144 ], [ 41.660156, -68.720441 ], [ 41.835938, -68.720441 ], [ 41.835938, -68.656555 ], [ 42.011719, -68.656555 ], [ 42.011719, -68.592487 ], [ 42.363281, -68.592487 ], [ 42.363281, -68.528235 ], [ 42.714844, -68.528235 ], [ 42.714844, -68.463800 ], [ 43.242188, -68.463800 ], [ 43.242188, -68.399180 ], [ 43.593750, -68.399180 ], [ 43.593750, -68.334376 ], [ 43.945312, -68.334376 ], [ 43.945312, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.204212 ], [ 44.648438, -68.204212 ], [ 44.648438, -68.138852 ], [ 44.824219, -68.138852 ], [ 44.824219, -68.073305 ], [ 45.000000, -68.073305 ], [ 45.000000, -68.007571 ], [ 45.175781, -68.007571 ], [ 45.175781, -67.941650 ], [ 45.527344, -67.941650 ], [ 45.527344, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -67.809245 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.300793 ], [ -0.527344, -71.300793 ], [ -0.527344, -71.524909 ], [ -0.351562, -71.524909 ], [ -0.351562, -71.635993 ], [ -0.175781, -71.635993 ], [ -0.175781, -71.580532 ], [ 0.000000, -71.580532 ], [ 0.000000, -71.524909 ], [ 0.175781, -71.524909 ], [ 0.175781, -71.469124 ], [ 0.351562, -71.469124 ], [ 0.351562, -71.413177 ], [ 0.527344, -71.413177 ], [ 0.527344, -71.357067 ], [ 0.703125, -71.357067 ], [ 0.703125, -71.300793 ], [ 0.878906, -71.300793 ], [ 0.878906, -71.244356 ], [ 1.230469, -71.244356 ], [ 1.230469, -71.187754 ], [ 1.406250, -71.187754 ], [ 1.406250, -71.130988 ], [ 1.757812, -71.130988 ], [ 1.757812, -71.074056 ], [ 2.109375, -71.074056 ], [ 2.109375, -71.016960 ], [ 2.812500, -71.016960 ], [ 2.812500, -70.959697 ], [ 3.339844, -70.959697 ], [ 3.339844, -70.902268 ], [ 3.867188, -70.902268 ], [ 3.867188, -70.844673 ], [ 4.218750, -70.844673 ], [ 4.218750, -70.786910 ], [ 4.570312, -70.786910 ], [ 4.570312, -70.728979 ], [ 4.746094, -70.728979 ], [ 4.746094, -70.670881 ], [ 5.097656, -70.670881 ], [ 5.097656, -70.612614 ], [ 5.449219, -70.612614 ], [ 5.449219, -70.554179 ], [ 5.800781, -70.554179 ], [ 5.800781, -70.495574 ], [ 6.152344, -70.495574 ], [ 6.152344, -70.436799 ], [ 6.328125, -70.436799 ], [ 6.328125, -70.377854 ], [ 6.503906, -70.377854 ], [ 6.503906, -70.318738 ], [ 6.855469, -70.318738 ], [ 6.855469, -70.259452 ], [ 7.031250, -70.259452 ], [ 7.031250, -70.199994 ], [ 7.207031, -70.199994 ], [ 7.207031, -70.080562 ], [ 7.382812, -70.080562 ], [ 7.382812, -70.020587 ], [ 7.558594, -70.020587 ], [ 7.558594, -69.900118 ], [ 7.910156, -69.900118 ], [ 7.910156, -69.960439 ], [ 8.085938, -69.960439 ], [ 8.085938, -70.080562 ], [ 8.261719, -70.080562 ], [ 8.261719, -70.140364 ], [ 8.789062, -70.140364 ], [ 8.789062, -70.080562 ], [ 9.140625, -70.080562 ], [ 9.140625, -70.020587 ], [ 9.667969, -70.020587 ], [ 9.667969, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.259452 ], [ 10.019531, -70.259452 ], [ 10.019531, -70.377854 ], [ 10.195312, -70.377854 ], [ 10.195312, -70.495574 ], [ 10.371094, -70.495574 ], [ 10.371094, -70.612614 ], [ 10.546875, -70.612614 ], [ 10.546875, -70.728979 ], [ 10.722656, -70.728979 ], [ 10.722656, -70.786910 ], [ 11.074219, -70.786910 ], [ 11.074219, -70.728979 ], [ 11.425781, -70.728979 ], [ 11.425781, -70.670881 ], [ 11.777344, -70.670881 ], [ 11.777344, -70.612614 ], [ 11.953125, -70.612614 ], [ 11.953125, -70.554179 ], [ 12.128906, -70.554179 ], [ 12.128906, -70.318738 ], [ 12.304688, -70.318738 ], [ 12.304688, -70.199994 ], [ 12.480469, -70.199994 ], [ 12.480469, -70.140364 ], [ 12.832031, -70.140364 ], [ 12.832031, -70.080562 ], [ 13.007812, -70.080562 ], [ 13.007812, -70.020587 ], [ 13.359375, -70.020587 ], [ 13.359375, -69.960439 ], [ 13.886719, -69.960439 ], [ 13.886719, -70.020587 ], [ 14.589844, -70.020587 ], [ 14.589844, -70.080562 ], [ 14.765625, -70.080562 ], [ 14.765625, -70.199994 ], [ 14.941406, -70.199994 ], [ 14.941406, -70.318738 ], [ 15.117188, -70.318738 ], [ 15.117188, -70.377854 ], [ 15.292969, -70.377854 ], [ 15.292969, -70.259452 ], [ 15.468750, -70.259452 ], [ 15.468750, -70.199994 ], [ 15.644531, -70.199994 ], [ 15.644531, -70.080562 ], [ 15.820312, -70.080562 ], [ 15.820312, -70.020587 ], [ 16.171875, -70.020587 ], [ 16.171875, -69.960439 ], [ 16.699219, -69.960439 ], [ 16.699219, -69.900118 ], [ 17.578125, -69.900118 ], [ 17.578125, -69.839622 ], [ 19.335938, -69.839622 ], [ 19.335938, -69.900118 ], [ 19.863281, -69.900118 ], [ 19.863281, -69.960439 ], [ 20.742188, -69.960439 ], [ 20.742188, -70.020587 ], [ 21.445312, -70.020587 ], [ 21.445312, -70.140364 ], [ 21.621094, -70.140364 ], [ 21.621094, -70.318738 ], [ 21.796875, -70.318738 ], [ 21.796875, -70.436799 ], [ 21.972656, -70.436799 ], [ 21.972656, -70.495574 ], [ 22.148438, -70.495574 ], [ 22.148438, -70.612614 ], [ 22.324219, -70.612614 ], [ 22.324219, -70.670881 ], [ 22.851562, -70.670881 ], [ 22.851562, -70.612614 ], [ 23.203125, -70.612614 ], [ 23.203125, -70.554179 ], [ 23.554688, -70.554179 ], [ 23.554688, -70.495574 ], [ 24.257812, -70.495574 ], [ 24.257812, -70.436799 ], [ 27.421875, -70.436799 ], [ 27.421875, -70.377854 ], [ 27.773438, -70.377854 ], [ 27.773438, -70.318738 ], [ 28.300781, -70.318738 ], [ 28.300781, -70.259452 ], [ 28.828125, -70.259452 ], [ 28.828125, -70.199994 ], [ 29.179688, -70.199994 ], [ 29.179688, -70.140364 ], [ 29.355469, -70.140364 ], [ 29.355469, -70.080562 ], [ 29.531250, -70.080562 ], [ 29.531250, -70.020587 ], [ 29.707031, -70.020587 ], [ 29.707031, -69.960439 ], [ 29.882812, -69.960439 ], [ 29.882812, -69.900118 ], [ 30.234375, -69.900118 ], [ 30.234375, -69.839622 ], [ 30.585938, -69.839622 ], [ 30.585938, -69.778952 ], [ 30.937500, -69.778952 ], [ 30.937500, -69.718107 ], [ 31.640625, -69.718107 ], [ 31.640625, -69.657086 ], [ 32.167969, -69.657086 ], [ 32.167969, -69.595890 ], [ 32.343750, -69.595890 ], [ 32.343750, -69.472969 ], [ 32.519531, -69.472969 ], [ 32.519531, -69.411242 ], [ 32.695312, -69.411242 ], [ 32.695312, -69.287257 ], [ 32.871094, -69.287257 ], [ 32.871094, -69.099940 ], [ 33.046875, -69.099940 ], [ 33.046875, -68.911005 ], [ 33.222656, -68.911005 ], [ 33.222656, -68.784144 ], [ 33.398438, -68.784144 ], [ 33.398438, -68.656555 ], [ 33.574219, -68.656555 ], [ 33.574219, -68.528235 ], [ 34.101562, -68.528235 ], [ 34.101562, -68.592487 ], [ 34.453125, -68.592487 ], [ 34.453125, -68.656555 ], [ 34.804688, -68.656555 ], [ 34.804688, -68.784144 ], [ 34.980469, -68.784144 ], [ 34.980469, -68.911005 ], [ 35.156250, -68.911005 ], [ 35.156250, -69.037142 ], [ 35.332031, -69.037142 ], [ 35.332031, -69.099940 ], [ 35.683594, -69.099940 ], [ 35.683594, -69.162558 ], [ 35.859375, -69.162558 ], [ 35.859375, -69.224997 ], [ 36.738281, -69.224997 ], [ 36.738281, -69.162558 ], [ 37.089844, -69.162558 ], [ 37.089844, -69.224997 ], [ 37.265625, -69.224997 ], [ 37.265625, -69.287257 ], [ 37.441406, -69.287257 ], [ 37.441406, -69.411242 ], [ 37.617188, -69.411242 ], [ 37.617188, -69.472969 ], [ 37.792969, -69.472969 ], [ 37.792969, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.595890 ], [ 38.144531, -69.595890 ], [ 38.144531, -69.657086 ], [ 38.320312, -69.657086 ], [ 38.320312, -69.718107 ], [ 38.847656, -69.718107 ], [ 38.847656, -69.657086 ], [ 39.199219, -69.657086 ], [ 39.199219, -69.595890 ], [ 39.550781, -69.595890 ], [ 39.550781, -69.472969 ], [ 39.726562, -69.472969 ], [ 39.726562, -69.224997 ], [ 39.902344, -69.224997 ], [ 39.902344, -69.099940 ], [ 40.078125, -69.099940 ], [ 40.078125, -69.037142 ], [ 40.429688, -69.037142 ], [ 40.429688, -68.974164 ], [ 40.781250, -68.974164 ], [ 40.781250, -68.911005 ], [ 40.957031, -68.911005 ], [ 40.957031, -68.847665 ], [ 41.132812, -68.847665 ], [ 41.132812, -68.784144 ], [ 41.484375, -68.784144 ], [ 41.484375, -68.720441 ], [ 41.660156, -68.720441 ], [ 41.660156, -68.656555 ], [ 41.835938, -68.656555 ], [ 41.835938, -68.592487 ], [ 42.187500, -68.592487 ], [ 42.187500, -68.528235 ], [ 42.714844, -68.528235 ], [ 42.714844, -68.463800 ], [ 43.066406, -68.463800 ], [ 43.066406, -68.399180 ], [ 43.417969, -68.399180 ], [ 43.417969, -68.334376 ], [ 43.593750, -68.334376 ], [ 43.593750, -68.269387 ], [ 43.945312, -68.269387 ], [ 43.945312, -68.204212 ], [ 44.121094, -68.204212 ], [ 44.121094, -68.138852 ], [ 44.472656, -68.138852 ], [ 44.472656, -68.073305 ], [ 44.824219, -68.073305 ], [ 44.824219, -68.007571 ], [ 45.000000, -68.007571 ], [ 45.000000, -67.941650 ], [ 45.351562, -67.941650 ], [ 45.351562, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 0.878872 ], [ 34.453125, 0.703107 ], [ 34.277344, 0.703107 ], [ 34.277344, 0.527336 ], [ 34.101562, 0.527336 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, -0.878872 ], [ 33.046875, -0.878872 ], [ 33.046875, -1.054628 ], [ 30.410156, -1.054628 ], [ 30.410156, -1.230374 ], [ 30.058594, -1.230374 ], [ 30.058594, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.527336 ], [ 29.707031, -0.527336 ], [ 29.707031, -0.351560 ], [ 29.882812, -0.351560 ], [ 29.882812, 0.703107 ], [ 30.058594, 0.703107 ], [ 30.058594, 0.878872 ], [ 34.453125, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.277344, 0.878872 ], [ 34.277344, 0.703107 ], [ 34.101562, 0.703107 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, 0.175781 ], [ 33.750000, 0.175781 ], [ 33.750000, -0.878872 ], [ 30.761719, -0.878872 ], [ 30.761719, -1.054628 ], [ 30.410156, -1.054628 ], [ 30.410156, -1.230374 ], [ 30.058594, -1.230374 ], [ 30.058594, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, 0.878872 ], [ 34.277344, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.957031, 0.878872 ], [ 40.957031, -1.054628 ], [ 41.132812, -1.054628 ], [ 41.132812, -1.230374 ], [ 41.308594, -1.230374 ], [ 41.308594, -1.581830 ], [ 41.484375, -1.581830 ], [ 41.484375, -1.757537 ], [ 41.660156, -1.757537 ], [ 41.660156, -1.933227 ], [ 41.308594, -1.933227 ], [ 41.308594, -2.108899 ], [ 40.957031, -2.108899 ], [ 40.957031, -2.284551 ], [ 40.781250, -2.284551 ], [ 40.781250, -2.460181 ], [ 40.605469, -2.460181 ], [ 40.605469, -2.635789 ], [ 40.253906, -2.635789 ], [ 40.253906, -2.986927 ], [ 40.078125, -2.986927 ], [ 40.078125, -3.513421 ], [ 39.902344, -3.513421 ], [ 39.902344, -3.688855 ], [ 39.726562, -3.688855 ], [ 39.726562, -4.039618 ], [ 39.550781, -4.039618 ], [ 39.550781, -4.565474 ], [ 39.375000, -4.565474 ], [ 39.375000, -4.740675 ], [ 39.023438, -4.740675 ], [ 39.023438, -4.565474 ], [ 38.671875, -4.565474 ], [ 38.671875, -4.390229 ], [ 38.496094, -4.390229 ], [ 38.496094, -4.214943 ], [ 38.320312, -4.214943 ], [ 38.320312, -4.039618 ], [ 37.968750, -4.039618 ], [ 37.968750, -3.864255 ], [ 37.792969, -3.864255 ], [ 37.792969, -3.513421 ], [ 37.617188, -3.513421 ], [ 37.617188, -3.162456 ], [ 37.441406, -3.162456 ], [ 37.441406, -2.986927 ], [ 37.089844, -2.986927 ], [ 37.089844, -2.811371 ], [ 36.738281, -2.811371 ], [ 36.738281, -2.635789 ], [ 36.562500, -2.635789 ], [ 36.562500, -2.460181 ], [ 36.210938, -2.460181 ], [ 36.210938, -2.284551 ], [ 35.859375, -2.284551 ], [ 35.859375, -2.108899 ], [ 35.683594, -2.108899 ], [ 35.683594, -1.933227 ], [ 35.332031, -1.933227 ], [ 35.332031, -1.757537 ], [ 34.980469, -1.757537 ], [ 34.980469, -1.581830 ], [ 34.804688, -1.581830 ], [ 34.804688, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -1.230374 ], [ 34.101562, -1.230374 ], [ 34.101562, -1.054628 ], [ 33.925781, -1.054628 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.527336 ], [ 34.277344, 0.527336 ], [ 34.277344, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.878872 ], [ 40.957031, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.957031, 0.878872 ], [ 40.957031, -0.878872 ], [ 41.132812, -0.878872 ], [ 41.132812, -1.230374 ], [ 41.308594, -1.230374 ], [ 41.308594, -1.581830 ], [ 41.484375, -1.581830 ], [ 41.484375, -1.757537 ], [ 41.132812, -1.757537 ], [ 41.132812, -1.933227 ], [ 40.781250, -1.933227 ], [ 40.781250, -2.284551 ], [ 40.605469, -2.284551 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.460181 ], [ 40.253906, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.337954 ], [ 39.902344, -3.337954 ], [ 39.902344, -3.513421 ], [ 39.726562, -3.513421 ], [ 39.726562, -3.864255 ], [ 39.550781, -3.864255 ], [ 39.550781, -4.390229 ], [ 39.375000, -4.390229 ], [ 39.375000, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -4.390229 ], [ 38.671875, -4.390229 ], [ 38.671875, -4.214943 ], [ 38.496094, -4.214943 ], [ 38.496094, -4.039618 ], [ 38.144531, -4.039618 ], [ 38.144531, -3.864255 ], [ 37.968750, -3.864255 ], [ 37.968750, -3.688855 ], [ 37.617188, -3.688855 ], [ 37.617188, -2.986927 ], [ 37.441406, -2.986927 ], [ 37.441406, -2.811371 ], [ 37.089844, -2.811371 ], [ 37.089844, -2.635789 ], [ 36.738281, -2.635789 ], [ 36.738281, -2.460181 ], [ 36.386719, -2.460181 ], [ 36.386719, -2.284551 ], [ 36.035156, -2.284551 ], [ 36.035156, -2.108899 ], [ 35.683594, -2.108899 ], [ 35.683594, -1.933227 ], [ 35.332031, -1.933227 ], [ 35.332031, -1.757537 ], [ 34.980469, -1.757537 ], [ 34.980469, -1.581830 ], [ 34.628906, -1.581830 ], [ 34.628906, -1.406109 ], [ 34.277344, -1.406109 ], [ 34.277344, -1.230374 ], [ 33.925781, -1.230374 ], [ 33.925781, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.175781 ], [ 33.925781, 0.175781 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.703107 ], [ 34.277344, 0.703107 ], [ 34.277344, 0.878872 ], [ 40.957031, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 42.011719, -0.878872 ], [ 42.011719, -1.230374 ], [ 41.835938, -1.230374 ], [ 41.835938, -1.581830 ], [ 41.660156, -1.581830 ], [ 41.660156, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.581830 ], [ 41.308594, -1.581830 ], [ 41.308594, -1.230374 ], [ 41.132812, -1.230374 ], [ 41.132812, -1.054628 ], [ 40.957031, -1.054628 ], [ 40.957031, 0.878872 ], [ 43.769531, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 42.011719, -0.878872 ], [ 42.011719, -1.054628 ], [ 41.835938, -1.054628 ], [ 41.835938, -1.406109 ], [ 41.660156, -1.406109 ], [ 41.660156, -1.581830 ], [ 41.308594, -1.581830 ], [ 41.308594, -1.230374 ], [ 41.132812, -1.230374 ], [ 41.132812, -0.878872 ], [ 40.957031, -0.878872 ], [ 40.957031, 0.878872 ], [ 43.769531, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.238281, 0.878872 ], [ 14.238281, 0.527336 ], [ 14.062500, 0.527336 ], [ 14.062500, 0.175781 ], [ 13.886719, 0.175781 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -1.054628 ], [ 14.414062, -1.054628 ], [ 14.414062, -1.757537 ], [ 14.238281, -1.757537 ], [ 14.238281, -2.284551 ], [ 14.062500, -2.284551 ], [ 14.062500, -2.460181 ], [ 13.007812, -2.460181 ], [ 13.007812, -2.284551 ], [ 12.832031, -2.284551 ], [ 12.832031, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.284551 ], [ 12.480469, -2.284551 ], [ 12.480469, -2.460181 ], [ 11.777344, -2.460181 ], [ 11.777344, -2.635789 ], [ 11.601562, -2.635789 ], [ 11.601562, -2.811371 ], [ 11.425781, -2.811371 ], [ 11.425781, -2.986927 ], [ 11.601562, -2.986927 ], [ 11.601562, -3.337954 ], [ 11.777344, -3.337954 ], [ 11.777344, -3.688855 ], [ 11.601562, -3.688855 ], [ 11.601562, -3.864255 ], [ 11.250000, -3.864255 ], [ 11.250000, -4.039618 ], [ 10.898438, -4.039618 ], [ 10.898438, -3.864255 ], [ 10.722656, -3.864255 ], [ 10.722656, -3.688855 ], [ 10.546875, -3.688855 ], [ 10.546875, -3.513421 ], [ 10.371094, -3.513421 ], [ 10.371094, -3.337954 ], [ 10.195312, -3.337954 ], [ 10.195312, -3.162456 ], [ 10.019531, -3.162456 ], [ 10.019531, -2.986927 ], [ 9.843750, -2.986927 ], [ 9.843750, -2.635789 ], [ 9.667969, -2.635789 ], [ 9.667969, -2.284551 ], [ 9.492188, -2.284551 ], [ 9.492188, -2.108899 ], [ 9.316406, -2.108899 ], [ 9.316406, -1.757537 ], [ 9.140625, -1.757537 ], [ 9.140625, -1.581830 ], [ 8.964844, -1.581830 ], [ 8.964844, -1.230374 ], [ 8.789062, -1.230374 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.703107 ], [ 8.964844, -0.351560 ], [ 9.140625, -0.351560 ], [ 9.140625, 0.000000 ], [ 9.316406, 0.000000 ], [ 9.316406, 0.527336 ], [ 9.492188, 0.527336 ], [ 9.492188, 0.878872 ], [ 14.238281, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 0.878872 ], [ 14.062500, 0.703107 ], [ 13.886719, 0.703107 ], [ 13.886719, 0.351560 ], [ 13.710938, 0.351560 ], [ 13.710938, 0.000000 ], [ 13.886719, 0.000000 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -0.878872 ], [ 14.414062, -0.878872 ], [ 14.414062, -1.581830 ], [ 14.238281, -1.581830 ], [ 14.238281, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.460181 ], [ 13.359375, -2.460181 ], [ 13.359375, -2.284551 ], [ 12.832031, -2.284551 ], [ 12.832031, -2.108899 ], [ 12.480469, -2.108899 ], [ 12.480469, -2.284551 ], [ 12.304688, -2.284551 ], [ 12.304688, -2.460181 ], [ 11.777344, -2.460181 ], [ 11.777344, -2.635789 ], [ 11.425781, -2.635789 ], [ 11.425781, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -3.162456 ], [ 11.777344, -3.162456 ], [ 11.777344, -3.513421 ], [ 11.601562, -3.513421 ], [ 11.601562, -3.688855 ], [ 11.250000, -3.688855 ], [ 11.250000, -3.864255 ], [ 10.898438, -3.864255 ], [ 10.898438, -3.688855 ], [ 10.722656, -3.688855 ], [ 10.722656, -3.513421 ], [ 10.546875, -3.513421 ], [ 10.546875, -3.337954 ], [ 10.371094, -3.337954 ], [ 10.371094, -3.162456 ], [ 10.195312, -3.162456 ], [ 10.195312, -2.986927 ], [ 10.019531, -2.986927 ], [ 10.019531, -2.811371 ], [ 9.843750, -2.811371 ], [ 9.843750, -2.635789 ], [ 9.667969, -2.635789 ], [ 9.667969, -2.460181 ], [ 9.492188, -2.460181 ], [ 9.492188, -2.284551 ], [ 9.316406, -2.284551 ], [ 9.316406, -1.933227 ], [ 9.140625, -1.933227 ], [ 9.140625, -1.581830 ], [ 8.964844, -1.581830 ], [ 8.964844, -1.230374 ], [ 8.789062, -1.230374 ], [ 8.789062, -0.527336 ], [ 8.964844, -0.527336 ], [ 8.964844, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 0.527336 ], [ 9.316406, 0.527336 ], [ 9.316406, 0.878872 ], [ 14.062500, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.753906, 0.878872 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.878872 ], [ 17.402344, -0.878872 ], [ 17.402344, -1.054628 ], [ 17.050781, -1.054628 ], [ 17.050781, -1.230374 ], [ 16.875000, -1.230374 ], [ 16.875000, -1.406109 ], [ 16.699219, -1.406109 ], [ 16.699219, -1.581830 ], [ 16.523438, -1.581830 ], [ 16.523438, -1.757537 ], [ 16.347656, -1.757537 ], [ 16.347656, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -2.460181 ], [ 15.996094, -2.460181 ], [ 15.996094, -3.688855 ], [ 15.820312, -3.688855 ], [ 15.820312, -4.039618 ], [ 15.644531, -4.039618 ], [ 15.644531, -4.214943 ], [ 15.292969, -4.214943 ], [ 15.292969, -4.390229 ], [ 15.117188, -4.390229 ], [ 15.117188, -4.565474 ], [ 14.941406, -4.565474 ], [ 14.941406, -4.740675 ], [ 14.765625, -4.740675 ], [ 14.765625, -4.915833 ], [ 14.238281, -4.915833 ], [ 14.238281, -4.740675 ], [ 14.062500, -4.740675 ], [ 14.062500, -4.565474 ], [ 13.535156, -4.565474 ], [ 13.535156, -4.740675 ], [ 13.359375, -4.740675 ], [ 13.359375, -4.915833 ], [ 13.007812, -4.915833 ], [ 13.007812, -4.740675 ], [ 12.832031, -4.740675 ], [ 12.832031, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.740675 ], [ 12.128906, -4.740675 ], [ 12.128906, -5.090944 ], [ 11.777344, -5.090944 ], [ 11.777344, -4.915833 ], [ 11.601562, -4.915833 ], [ 11.601562, -4.565474 ], [ 11.425781, -4.565474 ], [ 11.425781, -4.390229 ], [ 11.250000, -4.390229 ], [ 11.250000, -4.214943 ], [ 11.074219, -4.214943 ], [ 11.074219, -4.039618 ], [ 11.250000, -4.039618 ], [ 11.250000, -3.864255 ], [ 11.601562, -3.864255 ], [ 11.601562, -3.688855 ], [ 11.777344, -3.688855 ], [ 11.777344, -3.337954 ], [ 11.601562, -3.337954 ], [ 11.601562, -2.986927 ], [ 11.425781, -2.986927 ], [ 11.425781, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -2.635789 ], [ 11.777344, -2.635789 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.460181 ], [ 12.480469, -2.284551 ], [ 12.656250, -2.284551 ], [ 12.656250, -2.108899 ], [ 12.832031, -2.108899 ], [ 12.832031, -2.284551 ], [ 13.007812, -2.284551 ], [ 13.007812, -2.460181 ], [ 14.062500, -2.460181 ], [ 14.062500, -2.284551 ], [ 14.238281, -2.284551 ], [ 14.238281, -1.757537 ], [ 14.414062, -1.757537 ], [ 14.414062, -1.054628 ], [ 14.238281, -1.054628 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.175781 ], [ 14.062500, 0.175781 ], [ 14.062500, 0.527336 ], [ 14.238281, 0.527336 ], [ 14.238281, 0.878872 ], [ 17.753906, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.753906, 0.878872 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.527336 ], [ 17.402344, -0.527336 ], [ 17.402344, -0.878872 ], [ 17.050781, -0.878872 ], [ 17.050781, -1.054628 ], [ 16.699219, -1.054628 ], [ 16.699219, -1.230374 ], [ 16.523438, -1.230374 ], [ 16.523438, -1.581830 ], [ 16.347656, -1.581830 ], [ 16.347656, -1.757537 ], [ 16.171875, -1.757537 ], [ 16.171875, -2.108899 ], [ 15.996094, -2.108899 ], [ 15.996094, -2.460181 ], [ 15.820312, -2.460181 ], [ 15.820312, -3.162456 ], [ 15.996094, -3.162456 ], [ 15.996094, -3.688855 ], [ 15.644531, -3.688855 ], [ 15.644531, -3.864255 ], [ 15.468750, -3.864255 ], [ 15.468750, -4.039618 ], [ 15.292969, -4.039618 ], [ 15.292969, -4.214943 ], [ 15.117188, -4.214943 ], [ 15.117188, -4.390229 ], [ 14.941406, -4.390229 ], [ 14.941406, -4.565474 ], [ 14.765625, -4.565474 ], [ 14.765625, -4.740675 ], [ 14.589844, -4.740675 ], [ 14.589844, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.390229 ], [ 13.535156, -4.390229 ], [ 13.535156, -4.565474 ], [ 13.359375, -4.565474 ], [ 13.359375, -4.740675 ], [ 12.656250, -4.740675 ], [ 12.656250, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.740675 ], [ 11.953125, -4.740675 ], [ 11.953125, -4.915833 ], [ 11.601562, -4.915833 ], [ 11.601562, -4.565474 ], [ 11.425781, -4.565474 ], [ 11.425781, -4.390229 ], [ 11.250000, -4.390229 ], [ 11.250000, -4.039618 ], [ 11.074219, -4.039618 ], [ 11.074219, -3.864255 ], [ 11.250000, -3.864255 ], [ 11.250000, -3.688855 ], [ 11.601562, -3.688855 ], [ 11.601562, -3.513421 ], [ 11.777344, -3.513421 ], [ 11.777344, -3.162456 ], [ 11.601562, -3.162456 ], [ 11.601562, -2.811371 ], [ 11.425781, -2.811371 ], [ 11.425781, -2.635789 ], [ 11.777344, -2.635789 ], [ 11.777344, -2.460181 ], [ 12.304688, -2.460181 ], [ 12.304688, -2.284551 ], [ 12.480469, -2.284551 ], [ 12.480469, -2.108899 ], [ 12.832031, -2.108899 ], [ 12.832031, -2.284551 ], [ 13.359375, -2.284551 ], [ 13.359375, -2.460181 ], [ 14.062500, -2.460181 ], [ 14.062500, -2.108899 ], [ 14.238281, -2.108899 ], [ 14.238281, -1.581830 ], [ 14.414062, -1.581830 ], [ 14.414062, -0.878872 ], [ 14.238281, -0.878872 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, 0.351560 ], [ 13.886719, 0.351560 ], [ 13.886719, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 0.878872 ], [ 17.753906, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.058594, 0.878872 ], [ 30.058594, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, -0.527336 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.581830 ], [ 29.355469, -1.581830 ], [ 29.355469, -1.933227 ], [ 29.179688, -1.933227 ], [ 29.179688, -2.635789 ], [ 29.003906, -2.635789 ], [ 29.003906, -2.986927 ], [ 29.179688, -2.986927 ], [ 29.179688, -3.337954 ], [ 29.355469, -3.337954 ], [ 29.355469, -5.090944 ], [ 29.531250, -5.090944 ], [ 29.531250, -5.790897 ], [ 29.355469, -5.790897 ], [ 29.355469, -6.140555 ], [ 29.531250, -6.140555 ], [ 29.531250, -6.489983 ], [ 29.707031, -6.489983 ], [ 29.707031, -6.664608 ], [ 29.882812, -6.664608 ], [ 29.882812, -6.839170 ], [ 30.058594, -6.839170 ], [ 30.058594, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.362467 ], [ 30.410156, -7.362467 ], [ 30.410156, -7.710992 ], [ 30.585938, -7.710992 ], [ 30.585938, -8.233237 ], [ 30.761719, -8.233237 ], [ 30.761719, -8.407168 ], [ 30.410156, -8.407168 ], [ 30.410156, -8.233237 ], [ 29.882812, -8.233237 ], [ 29.882812, -8.407168 ], [ 29.003906, -8.407168 ], [ 29.003906, -8.581021 ], [ 28.652344, -8.581021 ], [ 28.652344, -8.928487 ], [ 28.476562, -8.928487 ], [ 28.476562, -9.449062 ], [ 28.652344, -9.449062 ], [ 28.652344, -10.314919 ], [ 28.476562, -10.314919 ], [ 28.476562, -11.350797 ], [ 28.300781, -11.350797 ], [ 28.300781, -12.039321 ], [ 28.652344, -12.039321 ], [ 28.652344, -12.211180 ], [ 29.003906, -12.211180 ], [ 29.003906, -12.382928 ], [ 29.531250, -12.382928 ], [ 29.531250, -12.726084 ], [ 29.707031, -12.726084 ], [ 29.707031, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -13.068777 ], [ 28.652344, -13.068777 ], [ 28.652344, -12.897489 ], [ 28.476562, -12.897489 ], [ 28.476562, -12.726084 ], [ 28.300781, -12.726084 ], [ 28.300781, -12.382928 ], [ 28.125000, -12.382928 ], [ 28.125000, -12.211180 ], [ 27.421875, -12.211180 ], [ 27.421875, -11.867351 ], [ 27.246094, -11.867351 ], [ 27.246094, -11.695273 ], [ 26.894531, -11.695273 ], [ 26.894531, -11.867351 ], [ 25.664062, -11.867351 ], [ 25.664062, -11.523088 ], [ 25.488281, -11.523088 ], [ 25.488281, -11.350797 ], [ 24.960938, -11.350797 ], [ 24.960938, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -11.005904 ], [ 23.554688, -11.005904 ], [ 23.554688, -10.833306 ], [ 23.203125, -10.833306 ], [ 23.203125, -11.005904 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.968851 ], [ 21.972656, -9.968851 ], [ 21.972656, -9.622414 ], [ 21.796875, -9.622414 ], [ 21.796875, -8.581021 ], [ 21.972656, -8.581021 ], [ 21.972656, -8.059230 ], [ 21.796875, -8.059230 ], [ 21.796875, -7.362467 ], [ 20.566406, -7.362467 ], [ 20.566406, -7.013668 ], [ 20.039062, -7.013668 ], [ 20.039062, -7.188101 ], [ 19.335938, -7.188101 ], [ 19.335938, -7.536764 ], [ 19.160156, -7.536764 ], [ 19.160156, -7.885147 ], [ 18.984375, -7.885147 ], [ 18.984375, -8.059230 ], [ 18.632812, -8.059230 ], [ 18.632812, -7.885147 ], [ 18.457031, -7.885147 ], [ 18.457031, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 17.050781, -7.710992 ], [ 17.050781, -7.362467 ], [ 16.875000, -7.362467 ], [ 16.875000, -7.188101 ], [ 16.699219, -7.188101 ], [ 16.699219, -6.839170 ], [ 16.523438, -6.839170 ], [ 16.523438, -6.315299 ], [ 16.347656, -6.315299 ], [ 16.347656, -5.790897 ], [ 13.359375, -5.790897 ], [ 13.359375, -5.965754 ], [ 12.656250, -5.965754 ], [ 12.656250, -6.140555 ], [ 12.304688, -6.140555 ], [ 12.304688, -5.965754 ], [ 12.128906, -5.965754 ], [ 12.128906, -5.790897 ], [ 12.480469, -5.790897 ], [ 12.480469, -5.090944 ], [ 12.656250, -5.090944 ], [ 12.656250, -4.915833 ], [ 13.359375, -4.915833 ], [ 13.359375, -4.740675 ], [ 13.535156, -4.740675 ], [ 13.535156, -4.565474 ], [ 14.062500, -4.565474 ], [ 14.062500, -4.740675 ], [ 14.238281, -4.740675 ], [ 14.238281, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.740675 ], [ 14.941406, -4.740675 ], [ 14.941406, -4.565474 ], [ 15.117188, -4.565474 ], [ 15.117188, -4.390229 ], [ 15.292969, -4.390229 ], [ 15.292969, -4.214943 ], [ 15.644531, -4.214943 ], [ 15.644531, -4.039618 ], [ 15.820312, -4.039618 ], [ 15.820312, -3.688855 ], [ 15.996094, -3.688855 ], [ 15.996094, -2.460181 ], [ 16.171875, -2.460181 ], [ 16.171875, -2.108899 ], [ 16.347656, -2.108899 ], [ 16.347656, -1.757537 ], [ 16.523438, -1.757537 ], [ 16.523438, -1.581830 ], [ 16.699219, -1.581830 ], [ 16.699219, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.230374 ], [ 17.050781, -1.230374 ], [ 17.050781, -1.054628 ], [ 17.402344, -1.054628 ], [ 17.402344, -0.878872 ], [ 17.578125, -0.878872 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 0.878872 ], [ 30.058594, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.882812, 0.878872 ], [ 29.882812, 0.703107 ], [ 29.707031, 0.703107 ], [ 29.707031, -0.351560 ], [ 29.531250, -0.351560 ], [ 29.531250, -1.406109 ], [ 29.355469, -1.406109 ], [ 29.355469, -1.581830 ], [ 29.179688, -1.581830 ], [ 29.179688, -2.284551 ], [ 29.003906, -2.284551 ], [ 29.003906, -2.986927 ], [ 29.179688, -2.986927 ], [ 29.179688, -4.915833 ], [ 29.355469, -4.915833 ], [ 29.355469, -6.140555 ], [ 29.531250, -6.140555 ], [ 29.531250, -6.664608 ], [ 29.707031, -6.664608 ], [ 29.707031, -6.839170 ], [ 29.882812, -6.839170 ], [ 29.882812, -7.013668 ], [ 30.058594, -7.013668 ], [ 30.058594, -7.362467 ], [ 30.234375, -7.362467 ], [ 30.234375, -7.710992 ], [ 30.410156, -7.710992 ], [ 30.410156, -8.059230 ], [ 30.585938, -8.059230 ], [ 30.585938, -8.233237 ], [ 29.707031, -8.233237 ], [ 29.707031, -8.407168 ], [ 28.652344, -8.407168 ], [ 28.652344, -8.581021 ], [ 28.476562, -8.581021 ], [ 28.476562, -8.928487 ], [ 28.300781, -8.928487 ], [ 28.300781, -9.275622 ], [ 28.476562, -9.275622 ], [ 28.476562, -9.449062 ], [ 28.652344, -9.449062 ], [ 28.652344, -10.141932 ], [ 28.476562, -10.141932 ], [ 28.476562, -11.178402 ], [ 28.300781, -11.178402 ], [ 28.300781, -11.867351 ], [ 28.476562, -11.867351 ], [ 28.476562, -12.039321 ], [ 28.828125, -12.039321 ], [ 28.828125, -12.211180 ], [ 29.531250, -12.211180 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -13.068777 ], [ 28.652344, -13.068777 ], [ 28.652344, -12.726084 ], [ 28.476562, -12.726084 ], [ 28.476562, -12.554564 ], [ 28.300781, -12.554564 ], [ 28.300781, -12.382928 ], [ 28.125000, -12.382928 ], [ 28.125000, -12.211180 ], [ 27.597656, -12.211180 ], [ 27.597656, -12.039321 ], [ 27.246094, -12.039321 ], [ 27.246094, -11.867351 ], [ 27.070312, -11.867351 ], [ 27.070312, -11.695273 ], [ 26.718750, -11.695273 ], [ 26.718750, -11.867351 ], [ 26.015625, -11.867351 ], [ 26.015625, -11.695273 ], [ 25.488281, -11.695273 ], [ 25.488281, -11.350797 ], [ 25.312500, -11.350797 ], [ 25.312500, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -10.833306 ], [ 23.203125, -10.833306 ], [ 23.203125, -11.005904 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.795678 ], [ 21.972656, -9.795678 ], [ 21.972656, -9.622414 ], [ 21.796875, -9.622414 ], [ 21.796875, -8.059230 ], [ 21.621094, -8.059230 ], [ 21.621094, -7.188101 ], [ 20.390625, -7.188101 ], [ 20.390625, -7.013668 ], [ 20.566406, -7.013668 ], [ 20.566406, -6.839170 ], [ 20.039062, -6.839170 ], [ 20.039062, -7.013668 ], [ 19.335938, -7.013668 ], [ 19.335938, -7.362467 ], [ 19.160156, -7.362467 ], [ 19.160156, -7.885147 ], [ 18.632812, -7.885147 ], [ 18.632812, -7.710992 ], [ 18.457031, -7.710992 ], [ 18.457031, -7.885147 ], [ 17.929688, -7.885147 ], [ 17.929688, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 17.050781, -7.710992 ], [ 17.050781, -7.536764 ], [ 16.875000, -7.536764 ], [ 16.875000, -7.362467 ], [ 16.699219, -7.362467 ], [ 16.699219, -6.839170 ], [ 16.523438, -6.839170 ], [ 16.523438, -6.315299 ], [ 16.347656, -6.315299 ], [ 16.347656, -5.965754 ], [ 16.171875, -5.965754 ], [ 16.171875, -5.790897 ], [ 13.359375, -5.790897 ], [ 13.359375, -5.965754 ], [ 12.128906, -5.965754 ], [ 12.128906, -5.790897 ], [ 12.304688, -5.790897 ], [ 12.304688, -5.090944 ], [ 12.480469, -5.090944 ], [ 12.480469, -4.915833 ], [ 12.832031, -4.915833 ], [ 12.832031, -4.740675 ], [ 13.359375, -4.740675 ], [ 13.359375, -4.565474 ], [ 13.535156, -4.565474 ], [ 13.535156, -4.390229 ], [ 14.062500, -4.390229 ], [ 14.062500, -4.915833 ], [ 14.589844, -4.915833 ], [ 14.589844, -4.740675 ], [ 14.765625, -4.740675 ], [ 14.765625, -4.565474 ], [ 14.941406, -4.565474 ], [ 14.941406, -4.390229 ], [ 15.117188, -4.390229 ], [ 15.117188, -4.214943 ], [ 15.292969, -4.214943 ], [ 15.292969, -4.039618 ], [ 15.468750, -4.039618 ], [ 15.468750, -3.864255 ], [ 15.644531, -3.864255 ], [ 15.644531, -3.688855 ], [ 15.996094, -3.688855 ], [ 15.996094, -3.162456 ], [ 15.820312, -3.162456 ], [ 15.820312, -2.460181 ], [ 15.996094, -2.460181 ], [ 15.996094, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -1.757537 ], [ 16.347656, -1.757537 ], [ 16.347656, -1.581830 ], [ 16.523438, -1.581830 ], [ 16.523438, -1.230374 ], [ 16.699219, -1.230374 ], [ 16.699219, -1.054628 ], [ 17.050781, -1.054628 ], [ 17.050781, -0.878872 ], [ 17.402344, -0.878872 ], [ 17.402344, -0.527336 ], [ 17.578125, -0.527336 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 0.878872 ], [ 29.882812, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.347656, -5.790897 ], [ 16.347656, -6.315299 ], [ 16.523438, -6.315299 ], [ 16.523438, -6.839170 ], [ 16.699219, -6.839170 ], [ 16.699219, -7.188101 ], [ 16.875000, -7.188101 ], [ 16.875000, -7.362467 ], [ 17.050781, -7.362467 ], [ 17.050781, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 18.457031, -8.059230 ], [ 18.457031, -7.885147 ], [ 18.632812, -7.885147 ], [ 18.632812, -8.059230 ], [ 18.984375, -8.059230 ], [ 18.984375, -7.885147 ], [ 19.160156, -7.885147 ], [ 19.160156, -7.536764 ], [ 19.335938, -7.536764 ], [ 19.335938, -7.188101 ], [ 20.039062, -7.188101 ], [ 20.039062, -7.013668 ], [ 20.566406, -7.013668 ], [ 20.566406, -7.362467 ], [ 21.796875, -7.362467 ], [ 21.796875, -8.059230 ], [ 21.972656, -8.059230 ], [ 21.972656, -8.581021 ], [ 21.796875, -8.581021 ], [ 21.796875, -9.622414 ], [ 21.972656, -9.622414 ], [ 21.972656, -9.968851 ], [ 22.148438, -9.968851 ], [ 22.148438, -11.005904 ], [ 23.203125, -11.005904 ], [ 23.203125, -10.833306 ], [ 23.554688, -10.833306 ], [ 23.554688, -11.005904 ], [ 23.906250, -11.005904 ], [ 23.906250, -11.178402 ], [ 24.082031, -11.178402 ], [ 24.082031, -11.523088 ], [ 23.906250, -11.523088 ], [ 23.906250, -12.039321 ], [ 24.082031, -12.039321 ], [ 24.082031, -12.382928 ], [ 23.906250, -12.382928 ], [ 23.906250, -12.726084 ], [ 24.082031, -12.726084 ], [ 24.082031, -12.897489 ], [ 21.972656, -12.897489 ], [ 21.972656, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.636192 ], [ 22.324219, -16.636192 ], [ 22.324219, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -17.140790 ], [ 22.675781, -17.140790 ], [ 22.675781, -17.308688 ], [ 23.027344, -17.308688 ], [ 23.027344, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.811456 ], [ 21.796875, -17.811456 ], [ 21.796875, -17.978733 ], [ 20.039062, -17.978733 ], [ 20.039062, -17.811456 ], [ 18.808594, -17.811456 ], [ 18.808594, -17.644022 ], [ 18.457031, -17.644022 ], [ 18.457031, -17.476432 ], [ 18.281250, -17.476432 ], [ 18.281250, -17.308688 ], [ 14.238281, -17.308688 ], [ 14.238281, -17.476432 ], [ 13.886719, -17.476432 ], [ 13.886719, -17.308688 ], [ 13.710938, -17.308688 ], [ 13.710938, -17.140790 ], [ 13.535156, -17.140790 ], [ 13.535156, -16.972741 ], [ 12.656250, -16.972741 ], [ 12.656250, -17.140790 ], [ 12.128906, -17.140790 ], [ 12.128906, -17.308688 ], [ 11.777344, -17.308688 ], [ 11.777344, -16.972741 ], [ 11.601562, -16.972741 ], [ 11.601562, -16.299051 ], [ 11.777344, -16.299051 ], [ 11.777344, -15.623037 ], [ 11.953125, -15.623037 ], [ 11.953125, -15.284185 ], [ 12.128906, -15.284185 ], [ 12.128906, -14.264383 ], [ 12.304688, -14.264383 ], [ 12.304688, -13.923404 ], [ 12.480469, -13.923404 ], [ 12.480469, -13.410994 ], [ 12.656250, -13.410994 ], [ 12.656250, -13.068777 ], [ 12.832031, -13.068777 ], [ 12.832031, -12.897489 ], [ 13.183594, -12.897489 ], [ 13.183594, -12.726084 ], [ 13.359375, -12.726084 ], [ 13.359375, -12.554564 ], [ 13.535156, -12.554564 ], [ 13.535156, -12.211180 ], [ 13.710938, -12.211180 ], [ 13.710938, -10.660608 ], [ 13.535156, -10.660608 ], [ 13.535156, -10.487812 ], [ 13.359375, -10.487812 ], [ 13.359375, -10.141932 ], [ 13.183594, -10.141932 ], [ 13.183594, -9.622414 ], [ 13.007812, -9.622414 ], [ 13.007812, -9.275622 ], [ 12.832031, -9.275622 ], [ 12.832031, -9.102097 ], [ 13.007812, -9.102097 ], [ 13.007812, -8.754795 ], [ 13.183594, -8.754795 ], [ 13.183594, -8.059230 ], [ 13.007812, -8.059230 ], [ 13.007812, -7.536764 ], [ 12.832031, -7.536764 ], [ 12.832031, -7.188101 ], [ 12.656250, -7.188101 ], [ 12.656250, -6.839170 ], [ 12.480469, -6.839170 ], [ 12.480469, -6.489983 ], [ 12.304688, -6.489983 ], [ 12.304688, -6.140555 ], [ 12.656250, -6.140555 ], [ 12.656250, -5.965754 ], [ 13.359375, -5.965754 ], [ 13.359375, -5.790897 ], [ 16.347656, -5.790897 ] ] ], [ [ [ 12.832031, -4.565474 ], [ 12.832031, -4.740675 ], [ 13.007812, -4.740675 ], [ 13.007812, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -5.090944 ], [ 12.480469, -5.090944 ], [ 12.480469, -5.790897 ], [ 12.128906, -5.790897 ], [ 12.128906, -5.441022 ], [ 11.953125, -5.441022 ], [ 11.953125, -5.090944 ], [ 12.128906, -5.090944 ], [ 12.128906, -4.740675 ], [ 12.304688, -4.740675 ], [ 12.304688, -4.565474 ], [ 12.832031, -4.565474 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, -5.790897 ], [ 16.171875, -5.965754 ], [ 16.347656, -5.965754 ], [ 16.347656, -6.315299 ], [ 16.523438, -6.315299 ], [ 16.523438, -6.839170 ], [ 16.699219, -6.839170 ], [ 16.699219, -7.362467 ], [ 16.875000, -7.362467 ], [ 16.875000, -7.536764 ], [ 17.050781, -7.536764 ], [ 17.050781, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 17.929688, -8.059230 ], [ 17.929688, -7.885147 ], [ 18.457031, -7.885147 ], [ 18.457031, -7.710992 ], [ 18.632812, -7.710992 ], [ 18.632812, -7.885147 ], [ 19.160156, -7.885147 ], [ 19.160156, -7.362467 ], [ 19.335938, -7.362467 ], [ 19.335938, -7.013668 ], [ 20.039062, -7.013668 ], [ 20.039062, -6.839170 ], [ 20.566406, -6.839170 ], [ 20.566406, -7.013668 ], [ 20.390625, -7.013668 ], [ 20.390625, -7.188101 ], [ 21.621094, -7.188101 ], [ 21.621094, -8.059230 ], [ 21.796875, -8.059230 ], [ 21.796875, -9.622414 ], [ 21.972656, -9.622414 ], [ 21.972656, -9.795678 ], [ 22.148438, -9.795678 ], [ 22.148438, -11.005904 ], [ 23.203125, -11.005904 ], [ 23.203125, -10.833306 ], [ 23.906250, -10.833306 ], [ 23.906250, -11.867351 ], [ 24.082031, -11.867351 ], [ 24.082031, -12.382928 ], [ 23.906250, -12.382928 ], [ 23.906250, -12.897489 ], [ 21.796875, -12.897489 ], [ 21.796875, -16.130262 ], [ 21.972656, -16.130262 ], [ 21.972656, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.636192 ], [ 22.324219, -16.636192 ], [ 22.324219, -16.804541 ], [ 22.500000, -16.804541 ], [ 22.500000, -16.972741 ], [ 22.675781, -16.972741 ], [ 22.675781, -17.140790 ], [ 22.851562, -17.140790 ], [ 22.851562, -17.308688 ], [ 23.027344, -17.308688 ], [ 23.027344, -17.476432 ], [ 22.851562, -17.476432 ], [ 22.851562, -17.644022 ], [ 21.796875, -17.644022 ], [ 21.796875, -17.811456 ], [ 19.863281, -17.811456 ], [ 19.863281, -17.644022 ], [ 18.457031, -17.644022 ], [ 18.457031, -17.476432 ], [ 18.105469, -17.476432 ], [ 18.105469, -17.308688 ], [ 13.710938, -17.308688 ], [ 13.710938, -17.140790 ], [ 13.359375, -17.140790 ], [ 13.359375, -16.972741 ], [ 12.832031, -16.972741 ], [ 12.832031, -16.804541 ], [ 12.480469, -16.804541 ], [ 12.480469, -16.972741 ], [ 11.953125, -16.972741 ], [ 11.953125, -17.140790 ], [ 11.601562, -17.140790 ], [ 11.601562, -16.299051 ], [ 11.777344, -16.299051 ], [ 11.777344, -15.284185 ], [ 11.953125, -15.284185 ], [ 11.953125, -14.604847 ], [ 12.128906, -14.604847 ], [ 12.128906, -14.264383 ], [ 12.304688, -14.264383 ], [ 12.304688, -13.752725 ], [ 12.480469, -13.752725 ], [ 12.480469, -13.239945 ], [ 12.656250, -13.239945 ], [ 12.656250, -13.068777 ], [ 12.832031, -13.068777 ], [ 12.832031, -12.726084 ], [ 13.007812, -12.726084 ], [ 13.007812, -12.554564 ], [ 13.183594, -12.554564 ], [ 13.183594, -12.382928 ], [ 13.359375, -12.382928 ], [ 13.359375, -12.211180 ], [ 13.535156, -12.211180 ], [ 13.535156, -11.695273 ], [ 13.710938, -11.695273 ], [ 13.710938, -11.005904 ], [ 13.535156, -11.005904 ], [ 13.535156, -10.487812 ], [ 13.359375, -10.487812 ], [ 13.359375, -10.141932 ], [ 13.183594, -10.141932 ], [ 13.183594, -9.795678 ], [ 13.007812, -9.795678 ], [ 13.007812, -9.449062 ], [ 12.832031, -9.449062 ], [ 12.832031, -8.928487 ], [ 13.007812, -8.928487 ], [ 13.007812, -8.581021 ], [ 13.183594, -8.581021 ], [ 13.183594, -8.233237 ], [ 13.007812, -8.233237 ], [ 13.007812, -7.885147 ], [ 12.832031, -7.885147 ], [ 12.832031, -7.188101 ], [ 12.656250, -7.188101 ], [ 12.656250, -6.839170 ], [ 12.480469, -6.839170 ], [ 12.480469, -6.489983 ], [ 12.304688, -6.489983 ], [ 12.304688, -6.315299 ], [ 12.128906, -6.315299 ], [ 12.128906, -6.140555 ], [ 12.304688, -6.140555 ], [ 12.304688, -5.965754 ], [ 13.359375, -5.965754 ], [ 13.359375, -5.790897 ], [ 16.171875, -5.790897 ] ] ], [ [ [ 12.656250, -4.565474 ], [ 12.656250, -4.740675 ], [ 12.832031, -4.740675 ], [ 12.832031, -4.915833 ], [ 12.480469, -4.915833 ], [ 12.480469, -5.090944 ], [ 12.304688, -5.090944 ], [ 12.304688, -5.790897 ], [ 12.128906, -5.790897 ], [ 12.128906, -5.615986 ], [ 11.953125, -5.615986 ], [ 11.953125, -5.266008 ], [ 11.777344, -5.266008 ], [ 11.777344, -4.915833 ], [ 11.953125, -4.915833 ], [ 11.953125, -4.740675 ], [ 12.304688, -4.740675 ], [ 12.304688, -4.565474 ], [ 12.656250, -4.565474 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.535156, -16.972741 ], [ 13.535156, -17.140790 ], [ 13.710938, -17.140790 ], [ 13.710938, -17.308688 ], [ 13.886719, -17.308688 ], [ 13.886719, -17.476432 ], [ 14.238281, -17.476432 ], [ 14.238281, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.476432 ], [ 18.457031, -17.476432 ], [ 18.457031, -17.644022 ], [ 18.808594, -17.644022 ], [ 18.808594, -17.811456 ], [ 20.039062, -17.811456 ], [ 20.039062, -17.978733 ], [ 21.796875, -17.978733 ], [ 21.796875, -17.811456 ], [ 22.500000, -17.811456 ], [ 22.500000, -17.644022 ], [ 23.027344, -17.644022 ], [ 23.027344, -17.476432 ], [ 23.730469, -17.476432 ], [ 23.730469, -17.308688 ], [ 24.609375, -17.308688 ], [ 24.609375, -17.476432 ], [ 24.960938, -17.476432 ], [ 24.960938, -17.811456 ], [ 24.257812, -17.811456 ], [ 24.257812, -17.978733 ], [ 24.082031, -17.978733 ], [ 24.082031, -18.145852 ], [ 23.730469, -18.145852 ], [ 23.730469, -18.312811 ], [ 23.378906, -18.312811 ], [ 23.378906, -17.978733 ], [ 23.203125, -17.978733 ], [ 23.203125, -17.811456 ], [ 22.851562, -17.811456 ], [ 22.851562, -17.978733 ], [ 22.148438, -17.978733 ], [ 22.148438, -18.145852 ], [ 21.445312, -18.145852 ], [ 21.445312, -18.312811 ], [ 20.917969, -18.312811 ], [ 20.917969, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.613459 ], [ 19.511719, -28.613459 ], [ 19.511719, -28.767659 ], [ 19.160156, -28.767659 ], [ 19.160156, -28.921631 ], [ 18.808594, -28.921631 ], [ 18.808594, -29.075375 ], [ 17.929688, -29.075375 ], [ 17.929688, -28.921631 ], [ 17.402344, -28.921631 ], [ 17.402344, -28.613459 ], [ 17.226562, -28.613459 ], [ 17.226562, -28.304381 ], [ 16.699219, -28.304381 ], [ 16.699219, -28.459033 ], [ 16.523438, -28.459033 ], [ 16.523438, -28.613459 ], [ 16.171875, -28.613459 ], [ 16.171875, -28.459033 ], [ 15.996094, -28.459033 ], [ 15.996094, -28.149503 ], [ 15.820312, -28.149503 ], [ 15.820312, -27.994401 ], [ 15.644531, -27.994401 ], [ 15.644531, -27.683528 ], [ 15.468750, -27.683528 ], [ 15.468750, -27.371767 ], [ 15.292969, -27.371767 ], [ 15.292969, -26.902477 ], [ 15.117188, -26.902477 ], [ 15.117188, -26.431228 ], [ 14.941406, -26.431228 ], [ 14.941406, -25.799891 ], [ 14.765625, -25.799891 ], [ 14.765625, -25.005973 ], [ 14.589844, -25.005973 ], [ 14.589844, -24.367114 ], [ 14.414062, -24.367114 ], [ 14.414062, -22.431340 ], [ 14.238281, -22.431340 ], [ 14.238281, -22.105999 ], [ 14.062500, -22.105999 ], [ 14.062500, -21.943046 ], [ 13.886719, -21.943046 ], [ 13.886719, -21.616579 ], [ 13.710938, -21.616579 ], [ 13.710938, -21.289374 ], [ 13.535156, -21.289374 ], [ 13.535156, -20.961440 ], [ 13.359375, -20.961440 ], [ 13.359375, -20.632784 ], [ 13.183594, -20.632784 ], [ 13.183594, -20.303418 ], [ 13.007812, -20.303418 ], [ 13.007812, -19.973349 ], [ 12.832031, -19.973349 ], [ 12.832031, -19.311143 ], [ 12.656250, -19.311143 ], [ 12.656250, -18.979026 ], [ 12.480469, -18.979026 ], [ 12.480469, -18.812718 ], [ 12.304688, -18.812718 ], [ 12.304688, -18.646245 ], [ 12.128906, -18.646245 ], [ 12.128906, -18.479609 ], [ 11.953125, -18.479609 ], [ 11.953125, -18.312811 ], [ 11.777344, -18.312811 ], [ 11.777344, -17.308688 ], [ 12.128906, -17.308688 ], [ 12.128906, -17.140790 ], [ 12.656250, -17.140790 ], [ 12.656250, -16.972741 ], [ 13.535156, -16.972741 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.832031, -16.804541 ], [ 12.832031, -16.972741 ], [ 13.359375, -16.972741 ], [ 13.359375, -17.140790 ], [ 13.710938, -17.140790 ], [ 13.710938, -17.308688 ], [ 18.105469, -17.308688 ], [ 18.105469, -17.476432 ], [ 18.457031, -17.476432 ], [ 18.457031, -17.644022 ], [ 19.863281, -17.644022 ], [ 19.863281, -17.811456 ], [ 21.796875, -17.811456 ], [ 21.796875, -17.644022 ], [ 22.851562, -17.644022 ], [ 22.851562, -17.476432 ], [ 23.554688, -17.476432 ], [ 23.554688, -17.308688 ], [ 23.906250, -17.308688 ], [ 23.906250, -17.140790 ], [ 24.082031, -17.140790 ], [ 24.082031, -17.308688 ], [ 24.609375, -17.308688 ], [ 24.609375, -17.476432 ], [ 24.960938, -17.476432 ], [ 24.960938, -17.644022 ], [ 24.785156, -17.644022 ], [ 24.785156, -17.811456 ], [ 24.082031, -17.811456 ], [ 24.082031, -17.978733 ], [ 23.730469, -17.978733 ], [ 23.730469, -18.145852 ], [ 23.378906, -18.145852 ], [ 23.378906, -17.978733 ], [ 23.027344, -17.978733 ], [ 23.027344, -17.811456 ], [ 22.851562, -17.811456 ], [ 22.851562, -17.978733 ], [ 22.148438, -17.978733 ], [ 22.148438, -18.145852 ], [ 20.742188, -18.145852 ], [ 20.742188, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.613459 ], [ 19.511719, -28.613459 ], [ 19.511719, -28.767659 ], [ 19.160156, -28.767659 ], [ 19.160156, -28.921631 ], [ 17.929688, -28.921631 ], [ 17.929688, -28.767659 ], [ 17.226562, -28.767659 ], [ 17.226562, -28.613459 ], [ 17.050781, -28.613459 ], [ 17.050781, -28.304381 ], [ 16.875000, -28.304381 ], [ 16.875000, -28.149503 ], [ 16.523438, -28.149503 ], [ 16.523438, -28.459033 ], [ 16.171875, -28.459033 ], [ 16.171875, -28.304381 ], [ 15.996094, -28.304381 ], [ 15.996094, -28.149503 ], [ 15.820312, -28.149503 ], [ 15.820312, -27.994401 ], [ 15.644531, -27.994401 ], [ 15.644531, -27.839076 ], [ 15.468750, -27.839076 ], [ 15.468750, -27.527758 ], [ 15.292969, -27.527758 ], [ 15.292969, -27.215556 ], [ 15.117188, -27.215556 ], [ 15.117188, -26.588527 ], [ 14.941406, -26.588527 ], [ 14.941406, -25.958045 ], [ 14.765625, -25.958045 ], [ 14.765625, -25.641526 ], [ 14.589844, -25.641526 ], [ 14.589844, -25.005973 ], [ 14.414062, -25.005973 ], [ 14.414062, -24.206890 ], [ 14.238281, -24.206890 ], [ 14.238281, -22.105999 ], [ 14.062500, -22.105999 ], [ 14.062500, -21.943046 ], [ 13.886719, -21.943046 ], [ 13.886719, -21.779905 ], [ 13.710938, -21.779905 ], [ 13.710938, -21.616579 ], [ 13.535156, -21.616579 ], [ 13.535156, -21.289374 ], [ 13.359375, -21.289374 ], [ 13.359375, -20.961440 ], [ 13.183594, -20.961440 ], [ 13.183594, -20.632784 ], [ 13.007812, -20.632784 ], [ 13.007812, -20.303418 ], [ 12.832031, -20.303418 ], [ 12.832031, -19.973349 ], [ 12.656250, -19.973349 ], [ 12.656250, -19.311143 ], [ 12.480469, -19.311143 ], [ 12.480469, -18.979026 ], [ 12.304688, -18.979026 ], [ 12.304688, -18.646245 ], [ 12.128906, -18.646245 ], [ 12.128906, -18.479609 ], [ 11.953125, -18.479609 ], [ 11.953125, -18.145852 ], [ 11.777344, -18.145852 ], [ 11.777344, -17.644022 ], [ 11.601562, -17.644022 ], [ 11.601562, -17.140790 ], [ 11.953125, -17.140790 ], [ 11.953125, -16.972741 ], [ 12.480469, -16.972741 ], [ 12.480469, -16.804541 ], [ 12.832031, -16.804541 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -1.230374 ], [ 30.585938, -1.581830 ], [ 30.761719, -1.581830 ], [ 30.761719, -2.460181 ], [ 30.058594, -2.460181 ], [ 30.058594, -2.284551 ], [ 29.882812, -2.284551 ], [ 29.882812, -2.635789 ], [ 29.707031, -2.635789 ], [ 29.707031, -2.986927 ], [ 29.179688, -2.986927 ], [ 29.179688, -2.811371 ], [ 29.003906, -2.811371 ], [ 29.003906, -2.635789 ], [ 29.179688, -2.635789 ], [ 29.179688, -1.933227 ], [ 29.355469, -1.933227 ], [ 29.355469, -1.581830 ], [ 29.531250, -1.581830 ], [ 29.531250, -1.406109 ], [ 30.058594, -1.406109 ], [ 30.058594, -1.230374 ], [ 30.585938, -1.230374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -1.230374 ], [ 30.585938, -1.581830 ], [ 30.761719, -1.581830 ], [ 30.761719, -1.933227 ], [ 30.585938, -1.933227 ], [ 30.585938, -2.284551 ], [ 29.882812, -2.284551 ], [ 29.882812, -2.460181 ], [ 29.707031, -2.460181 ], [ 29.707031, -2.811371 ], [ 29.003906, -2.811371 ], [ 29.003906, -2.284551 ], [ 29.179688, -2.284551 ], [ 29.179688, -1.581830 ], [ 29.355469, -1.581830 ], [ 29.355469, -1.406109 ], [ 30.058594, -1.406109 ], [ 30.058594, -1.230374 ], [ 30.585938, -1.230374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.179688, -2.986927 ], [ 29.707031, -2.986927 ], [ 29.707031, -2.635789 ], [ 29.882812, -2.635789 ], [ 29.882812, -2.284551 ], [ 30.058594, -2.284551 ], [ 30.058594, -2.460181 ], [ 30.410156, -2.460181 ], [ 30.410156, -2.635789 ], [ 30.585938, -2.635789 ], [ 30.585938, -2.986927 ], [ 30.761719, -2.986927 ], [ 30.761719, -3.513421 ], [ 30.585938, -3.513421 ], [ 30.585938, -3.688855 ], [ 30.410156, -3.688855 ], [ 30.410156, -3.864255 ], [ 30.234375, -3.864255 ], [ 30.234375, -4.039618 ], [ 30.058594, -4.039618 ], [ 30.058594, -4.214943 ], [ 29.882812, -4.214943 ], [ 29.882812, -4.390229 ], [ 29.707031, -4.390229 ], [ 29.707031, -4.565474 ], [ 29.355469, -4.565474 ], [ 29.355469, -3.337954 ], [ 29.179688, -3.337954 ], [ 29.179688, -2.986927 ] ] ], [ [ [ 29.179688, -2.986927 ], [ 29.003906, -2.986927 ], [ 29.003906, -2.811371 ], [ 29.179688, -2.811371 ], [ 29.179688, -2.986927 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -2.284551 ], [ 30.410156, -2.811371 ], [ 30.585938, -2.811371 ], [ 30.585938, -3.513421 ], [ 30.410156, -3.513421 ], [ 30.410156, -3.688855 ], [ 30.234375, -3.688855 ], [ 30.234375, -4.039618 ], [ 30.058594, -4.039618 ], [ 30.058594, -4.214943 ], [ 29.882812, -4.214943 ], [ 29.882812, -4.390229 ], [ 29.179688, -4.390229 ], [ 29.179688, -2.986927 ], [ 29.003906, -2.986927 ], [ 29.003906, -2.811371 ], [ 29.707031, -2.811371 ], [ 29.707031, -2.460181 ], [ 29.882812, -2.460181 ], [ 29.882812, -2.284551 ], [ 30.410156, -2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -8.233237 ], [ 30.410156, -8.407168 ], [ 30.761719, -8.407168 ], [ 30.761719, -8.581021 ], [ 31.289062, -8.581021 ], [ 31.289062, -8.754795 ], [ 31.816406, -8.754795 ], [ 31.816406, -8.928487 ], [ 32.167969, -8.928487 ], [ 32.167969, -9.102097 ], [ 32.519531, -9.102097 ], [ 32.519531, -9.275622 ], [ 32.695312, -9.275622 ], [ 32.695312, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.622414 ], [ 33.222656, -9.622414 ], [ 33.222656, -10.141932 ], [ 33.398438, -10.141932 ], [ 33.398438, -11.005904 ], [ 33.222656, -11.005904 ], [ 33.222656, -11.350797 ], [ 33.046875, -11.350797 ], [ 33.046875, -12.039321 ], [ 33.222656, -12.039321 ], [ 33.222656, -12.554564 ], [ 33.046875, -12.554564 ], [ 33.046875, -13.068777 ], [ 32.871094, -13.068777 ], [ 32.871094, -13.581921 ], [ 32.695312, -13.581921 ], [ 32.695312, -13.752725 ], [ 32.871094, -13.752725 ], [ 32.871094, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.093957 ], [ 32.343750, -14.093957 ], [ 32.343750, -14.264383 ], [ 31.816406, -14.264383 ], [ 31.816406, -14.434680 ], [ 31.289062, -14.434680 ], [ 31.289062, -14.604847 ], [ 30.585938, -14.604847 ], [ 30.585938, -14.774883 ], [ 30.234375, -14.774883 ], [ 30.234375, -15.453680 ], [ 30.058594, -15.453680 ], [ 30.058594, -15.623037 ], [ 29.531250, -15.623037 ], [ 29.531250, -15.792254 ], [ 29.179688, -15.792254 ], [ 29.179688, -15.961329 ], [ 29.003906, -15.961329 ], [ 29.003906, -16.299051 ], [ 28.828125, -16.299051 ], [ 28.828125, -16.467695 ], [ 28.476562, -16.467695 ], [ 28.476562, -16.636192 ], [ 28.300781, -16.636192 ], [ 28.300781, -16.804541 ], [ 28.125000, -16.804541 ], [ 28.125000, -16.972741 ], [ 27.949219, -16.972741 ], [ 27.949219, -17.140790 ], [ 27.773438, -17.140790 ], [ 27.773438, -17.308688 ], [ 27.597656, -17.308688 ], [ 27.597656, -17.476432 ], [ 27.421875, -17.476432 ], [ 27.421875, -17.644022 ], [ 27.246094, -17.644022 ], [ 27.246094, -17.978733 ], [ 26.367188, -17.978733 ], [ 26.367188, -17.811456 ], [ 25.136719, -17.811456 ], [ 25.136719, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.476432 ], [ 24.609375, -17.476432 ], [ 24.609375, -17.308688 ], [ 23.730469, -17.308688 ], [ 23.730469, -17.476432 ], [ 23.027344, -17.476432 ], [ 23.027344, -17.308688 ], [ 22.675781, -17.308688 ], [ 22.675781, -17.140790 ], [ 22.500000, -17.140790 ], [ 22.500000, -16.972741 ], [ 22.324219, -16.972741 ], [ 22.324219, -16.636192 ], [ 22.148438, -16.636192 ], [ 22.148438, -16.299051 ], [ 21.972656, -16.299051 ], [ 21.972656, -12.897489 ], [ 24.082031, -12.897489 ], [ 24.082031, -12.726084 ], [ 23.906250, -12.726084 ], [ 23.906250, -12.382928 ], [ 24.082031, -12.382928 ], [ 24.082031, -12.039321 ], [ 23.906250, -12.039321 ], [ 23.906250, -11.523088 ], [ 24.082031, -11.523088 ], [ 24.082031, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -11.005904 ], [ 24.257812, -11.005904 ], [ 24.257812, -11.178402 ], [ 24.960938, -11.178402 ], [ 24.960938, -11.350797 ], [ 25.488281, -11.350797 ], [ 25.488281, -11.523088 ], [ 25.664062, -11.523088 ], [ 25.664062, -11.867351 ], [ 26.894531, -11.867351 ], [ 26.894531, -11.695273 ], [ 27.246094, -11.695273 ], [ 27.246094, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.382928 ], [ 28.300781, -12.382928 ], [ 28.300781, -12.726084 ], [ 28.476562, -12.726084 ], [ 28.476562, -12.897489 ], [ 28.652344, -12.897489 ], [ 28.652344, -13.068777 ], [ 28.828125, -13.068777 ], [ 28.828125, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.707031, -12.726084 ], [ 29.531250, -12.726084 ], [ 29.531250, -12.382928 ], [ 29.003906, -12.382928 ], [ 29.003906, -12.211180 ], [ 28.652344, -12.211180 ], [ 28.652344, -12.039321 ], [ 28.300781, -12.039321 ], [ 28.300781, -11.350797 ], [ 28.476562, -11.350797 ], [ 28.476562, -10.314919 ], [ 28.652344, -10.314919 ], [ 28.652344, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -8.928487 ], [ 28.652344, -8.928487 ], [ 28.652344, -8.581021 ], [ 29.003906, -8.581021 ], [ 29.003906, -8.407168 ], [ 29.882812, -8.407168 ], [ 29.882812, -8.233237 ], [ 30.410156, -8.233237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -8.233237 ], [ 30.585938, -8.407168 ], [ 30.937500, -8.407168 ], [ 30.937500, -8.581021 ], [ 31.113281, -8.581021 ], [ 31.113281, -8.754795 ], [ 31.640625, -8.754795 ], [ 31.640625, -8.928487 ], [ 32.343750, -8.928487 ], [ 32.343750, -9.102097 ], [ 32.695312, -9.102097 ], [ 32.695312, -9.275622 ], [ 32.871094, -9.275622 ], [ 32.871094, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.622414 ], [ 33.222656, -9.622414 ], [ 33.222656, -10.141932 ], [ 33.398438, -10.141932 ], [ 33.398438, -10.660608 ], [ 33.222656, -10.660608 ], [ 33.222656, -11.178402 ], [ 33.046875, -11.178402 ], [ 33.046875, -12.039321 ], [ 33.222656, -12.039321 ], [ 33.222656, -12.554564 ], [ 33.046875, -12.554564 ], [ 33.046875, -12.726084 ], [ 32.871094, -12.726084 ], [ 32.871094, -13.068777 ], [ 32.695312, -13.068777 ], [ 32.695312, -13.410994 ], [ 32.519531, -13.410994 ], [ 32.519531, -13.752725 ], [ 32.871094, -13.752725 ], [ 32.871094, -14.093957 ], [ 32.167969, -14.093957 ], [ 32.167969, -14.264383 ], [ 31.640625, -14.264383 ], [ 31.640625, -14.434680 ], [ 31.113281, -14.434680 ], [ 31.113281, -14.604847 ], [ 30.410156, -14.604847 ], [ 30.410156, -14.774883 ], [ 30.058594, -14.774883 ], [ 30.058594, -15.114553 ], [ 30.234375, -15.114553 ], [ 30.234375, -15.453680 ], [ 29.882812, -15.453680 ], [ 29.882812, -15.623037 ], [ 29.355469, -15.623037 ], [ 29.355469, -15.792254 ], [ 29.003906, -15.792254 ], [ 29.003906, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.299051 ], [ 28.652344, -16.299051 ], [ 28.652344, -16.467695 ], [ 28.300781, -16.467695 ], [ 28.300781, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -16.804541 ], [ 27.949219, -16.804541 ], [ 27.949219, -16.972741 ], [ 27.773438, -16.972741 ], [ 27.773438, -17.140790 ], [ 27.597656, -17.140790 ], [ 27.597656, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -17.476432 ], [ 27.246094, -17.476432 ], [ 27.246094, -17.644022 ], [ 27.070312, -17.644022 ], [ 27.070312, -17.811456 ], [ 25.664062, -17.811456 ], [ 25.664062, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.476432 ], [ 24.609375, -17.476432 ], [ 24.609375, -17.308688 ], [ 24.082031, -17.308688 ], [ 24.082031, -17.140790 ], [ 23.906250, -17.140790 ], [ 23.906250, -17.308688 ], [ 23.554688, -17.308688 ], [ 23.554688, -17.476432 ], [ 23.027344, -17.476432 ], [ 23.027344, -17.308688 ], [ 22.851562, -17.308688 ], [ 22.851562, -17.140790 ], [ 22.675781, -17.140790 ], [ 22.675781, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -16.804541 ], [ 22.324219, -16.804541 ], [ 22.324219, -16.636192 ], [ 22.148438, -16.636192 ], [ 22.148438, -16.299051 ], [ 21.972656, -16.299051 ], [ 21.972656, -16.130262 ], [ 21.796875, -16.130262 ], [ 21.796875, -12.897489 ], [ 23.906250, -12.897489 ], [ 23.906250, -12.382928 ], [ 24.082031, -12.382928 ], [ 24.082031, -11.867351 ], [ 23.906250, -11.867351 ], [ 23.906250, -10.833306 ], [ 24.257812, -10.833306 ], [ 24.257812, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.350797 ], [ 25.488281, -11.350797 ], [ 25.488281, -11.695273 ], [ 26.015625, -11.695273 ], [ 26.015625, -11.867351 ], [ 26.718750, -11.867351 ], [ 26.718750, -11.695273 ], [ 27.070312, -11.695273 ], [ 27.070312, -11.867351 ], [ 27.246094, -11.867351 ], [ 27.246094, -12.039321 ], [ 27.597656, -12.039321 ], [ 27.597656, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.382928 ], [ 28.300781, -12.382928 ], [ 28.300781, -12.554564 ], [ 28.476562, -12.554564 ], [ 28.476562, -12.726084 ], [ 28.652344, -12.726084 ], [ 28.652344, -13.068777 ], [ 28.828125, -13.068777 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.211180 ], [ 28.828125, -12.211180 ], [ 28.828125, -12.039321 ], [ 28.476562, -12.039321 ], [ 28.476562, -11.867351 ], [ 28.300781, -11.867351 ], [ 28.300781, -11.178402 ], [ 28.476562, -11.178402 ], [ 28.476562, -10.141932 ], [ 28.652344, -10.141932 ], [ 28.652344, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -9.275622 ], [ 28.300781, -9.275622 ], [ 28.300781, -8.928487 ], [ 28.476562, -8.928487 ], [ 28.476562, -8.581021 ], [ 28.652344, -8.581021 ], [ 28.652344, -8.407168 ], [ 29.707031, -8.407168 ], [ 29.707031, -8.233237 ], [ 30.585938, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.453680 ], [ 30.234375, -15.792254 ], [ 30.410156, -15.792254 ], [ 30.410156, -15.961329 ], [ 30.937500, -15.961329 ], [ 30.937500, -15.792254 ], [ 31.113281, -15.792254 ], [ 31.113281, -15.961329 ], [ 31.464844, -15.961329 ], [ 31.464844, -16.130262 ], [ 31.640625, -16.130262 ], [ 31.640625, -16.299051 ], [ 31.992188, -16.299051 ], [ 31.992188, -16.467695 ], [ 32.519531, -16.467695 ], [ 32.519531, -16.636192 ], [ 32.871094, -16.636192 ], [ 32.871094, -18.312811 ], [ 32.695312, -18.312811 ], [ 32.695312, -20.468189 ], [ 32.519531, -20.468189 ], [ 32.519531, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -20.961440 ], [ 32.167969, -20.961440 ], [ 32.167969, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.992188, -21.453069 ], [ 31.816406, -21.453069 ], [ 31.816406, -21.616579 ], [ 31.640625, -21.616579 ], [ 31.640625, -21.943046 ], [ 31.464844, -21.943046 ], [ 31.464844, -22.105999 ], [ 31.289062, -22.105999 ], [ 31.289062, -22.268764 ], [ 30.761719, -22.268764 ], [ 30.761719, -22.105999 ], [ 30.585938, -22.105999 ], [ 30.585938, -22.268764 ], [ 30.058594, -22.268764 ], [ 30.058594, -22.105999 ], [ 29.179688, -22.105999 ], [ 29.179688, -21.943046 ], [ 29.003906, -21.943046 ], [ 29.003906, -21.779905 ], [ 28.828125, -21.779905 ], [ 28.828125, -21.616579 ], [ 28.300781, -21.616579 ], [ 28.300781, -21.453069 ], [ 27.949219, -21.453069 ], [ 27.949219, -21.125498 ], [ 27.773438, -21.125498 ], [ 27.773438, -20.468189 ], [ 27.070312, -20.468189 ], [ 27.070312, -20.303418 ], [ 26.894531, -20.303418 ], [ 26.894531, -20.138470 ], [ 26.718750, -20.138470 ], [ 26.718750, -19.808054 ], [ 26.542969, -19.808054 ], [ 26.542969, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.476950 ], [ 26.191406, -19.476950 ], [ 26.191406, -19.145168 ], [ 26.015625, -19.145168 ], [ 26.015625, -18.812718 ], [ 25.839844, -18.812718 ], [ 25.839844, -18.646245 ], [ 25.664062, -18.646245 ], [ 25.664062, -18.312811 ], [ 25.488281, -18.312811 ], [ 25.488281, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -17.811456 ], [ 26.367188, -17.811456 ], [ 26.367188, -17.978733 ], [ 27.246094, -17.978733 ], [ 27.246094, -17.644022 ], [ 27.421875, -17.644022 ], [ 27.421875, -17.476432 ], [ 27.597656, -17.476432 ], [ 27.597656, -17.308688 ], [ 27.773438, -17.308688 ], [ 27.773438, -17.140790 ], [ 27.949219, -17.140790 ], [ 27.949219, -16.972741 ], [ 28.125000, -16.972741 ], [ 28.125000, -16.804541 ], [ 28.300781, -16.804541 ], [ 28.300781, -16.636192 ], [ 28.476562, -16.636192 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.467695 ], [ 28.828125, -16.299051 ], [ 29.003906, -16.299051 ], [ 29.003906, -15.961329 ], [ 29.179688, -15.961329 ], [ 29.179688, -15.792254 ], [ 29.531250, -15.792254 ], [ 29.531250, -15.623037 ], [ 30.058594, -15.623037 ], [ 30.058594, -15.453680 ], [ 30.234375, -15.453680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.453680 ], [ 30.234375, -15.792254 ], [ 31.113281, -15.792254 ], [ 31.113281, -15.961329 ], [ 31.464844, -15.961329 ], [ 31.464844, -16.130262 ], [ 31.640625, -16.130262 ], [ 31.640625, -16.299051 ], [ 32.167969, -16.299051 ], [ 32.167969, -16.467695 ], [ 32.519531, -16.467695 ], [ 32.519531, -16.636192 ], [ 32.695312, -16.636192 ], [ 32.695312, -18.312811 ], [ 32.519531, -18.312811 ], [ 32.519531, -19.476950 ], [ 32.695312, -19.476950 ], [ 32.695312, -19.973349 ], [ 32.519531, -19.973349 ], [ 32.519531, -20.303418 ], [ 32.343750, -20.303418 ], [ 32.343750, -20.632784 ], [ 32.167969, -20.632784 ], [ 32.167969, -21.125498 ], [ 31.992188, -21.125498 ], [ 31.992188, -21.289374 ], [ 31.816406, -21.289374 ], [ 31.816406, -21.453069 ], [ 31.640625, -21.453069 ], [ 31.640625, -21.779905 ], [ 31.464844, -21.779905 ], [ 31.464844, -21.943046 ], [ 31.289062, -21.943046 ], [ 31.289062, -22.105999 ], [ 30.585938, -22.105999 ], [ 30.585938, -22.268764 ], [ 30.058594, -22.268764 ], [ 30.058594, -22.105999 ], [ 29.707031, -22.105999 ], [ 29.707031, -21.943046 ], [ 29.003906, -21.943046 ], [ 29.003906, -21.779905 ], [ 28.652344, -21.779905 ], [ 28.652344, -21.616579 ], [ 28.125000, -21.616579 ], [ 28.125000, -21.453069 ], [ 27.949219, -21.453069 ], [ 27.949219, -21.289374 ], [ 27.773438, -21.289374 ], [ 27.773438, -20.961440 ], [ 27.597656, -20.961440 ], [ 27.597656, -20.468189 ], [ 27.246094, -20.468189 ], [ 27.246094, -20.303418 ], [ 27.070312, -20.303418 ], [ 27.070312, -20.138470 ], [ 26.894531, -20.138470 ], [ 26.894531, -19.973349 ], [ 26.718750, -19.973349 ], [ 26.718750, -19.808054 ], [ 26.542969, -19.808054 ], [ 26.542969, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.476950 ], [ 26.191406, -19.476950 ], [ 26.191406, -19.311143 ], [ 26.015625, -19.311143 ], [ 26.015625, -18.979026 ], [ 25.839844, -18.979026 ], [ 25.839844, -18.646245 ], [ 25.488281, -18.646245 ], [ 25.488281, -18.312811 ], [ 25.312500, -18.312811 ], [ 25.312500, -17.978733 ], [ 25.136719, -17.978733 ], [ 25.136719, -17.644022 ], [ 25.664062, -17.644022 ], [ 25.664062, -17.811456 ], [ 27.070312, -17.811456 ], [ 27.070312, -17.644022 ], [ 27.246094, -17.644022 ], [ 27.246094, -17.476432 ], [ 27.421875, -17.476432 ], [ 27.421875, -17.308688 ], [ 27.597656, -17.308688 ], [ 27.597656, -17.140790 ], [ 27.773438, -17.140790 ], [ 27.773438, -16.972741 ], [ 27.949219, -16.972741 ], [ 27.949219, -16.804541 ], [ 28.125000, -16.804541 ], [ 28.125000, -16.636192 ], [ 28.300781, -16.636192 ], [ 28.300781, -16.467695 ], [ 28.652344, -16.467695 ], [ 28.652344, -16.299051 ], [ 28.828125, -16.299051 ], [ 28.828125, -15.961329 ], [ 29.003906, -15.961329 ], [ 29.003906, -15.792254 ], [ 29.355469, -15.792254 ], [ 29.355469, -15.623037 ], [ 29.882812, -15.623037 ], [ 29.882812, -15.453680 ], [ 30.234375, -15.453680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, -0.878872 ], [ 33.925781, -1.054628 ], [ 34.101562, -1.054628 ], [ 34.101562, -1.230374 ], [ 34.453125, -1.230374 ], [ 34.453125, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.581830 ], [ 34.980469, -1.581830 ], [ 34.980469, -1.757537 ], [ 35.332031, -1.757537 ], [ 35.332031, -1.933227 ], [ 35.683594, -1.933227 ], [ 35.683594, -2.108899 ], [ 35.859375, -2.108899 ], [ 35.859375, -2.284551 ], [ 36.210938, -2.284551 ], [ 36.210938, -2.460181 ], [ 36.562500, -2.460181 ], [ 36.562500, -2.635789 ], [ 36.738281, -2.635789 ], [ 36.738281, -2.811371 ], [ 37.089844, -2.811371 ], [ 37.089844, -2.986927 ], [ 37.441406, -2.986927 ], [ 37.441406, -3.162456 ], [ 37.617188, -3.162456 ], [ 37.617188, -3.513421 ], [ 37.792969, -3.513421 ], [ 37.792969, -3.864255 ], [ 37.968750, -3.864255 ], [ 37.968750, -4.039618 ], [ 38.320312, -4.039618 ], [ 38.320312, -4.214943 ], [ 38.496094, -4.214943 ], [ 38.496094, -4.390229 ], [ 38.671875, -4.390229 ], [ 38.671875, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -4.740675 ], [ 39.199219, -4.740675 ], [ 39.199219, -5.090944 ], [ 39.023438, -5.090944 ], [ 39.023438, -5.441022 ], [ 38.847656, -5.441022 ], [ 38.847656, -5.790897 ], [ 38.671875, -5.790897 ], [ 38.671875, -6.315299 ], [ 38.847656, -6.315299 ], [ 38.847656, -6.664608 ], [ 39.199219, -6.664608 ], [ 39.199219, -6.839170 ], [ 39.375000, -6.839170 ], [ 39.375000, -7.013668 ], [ 39.550781, -7.013668 ], [ 39.550781, -7.188101 ], [ 39.375000, -7.188101 ], [ 39.375000, -7.536764 ], [ 39.199219, -7.536764 ], [ 39.199219, -8.581021 ], [ 39.375000, -8.581021 ], [ 39.375000, -8.928487 ], [ 39.550781, -8.928487 ], [ 39.550781, -9.449062 ], [ 39.726562, -9.449062 ], [ 39.726562, -9.968851 ], [ 39.902344, -9.968851 ], [ 39.902344, -10.314919 ], [ 40.253906, -10.314919 ], [ 40.253906, -10.487812 ], [ 40.078125, -10.487812 ], [ 40.078125, -10.660608 ], [ 39.726562, -10.660608 ], [ 39.726562, -10.833306 ], [ 39.550781, -10.833306 ], [ 39.550781, -11.005904 ], [ 39.199219, -11.005904 ], [ 39.199219, -11.178402 ], [ 38.847656, -11.178402 ], [ 38.847656, -11.350797 ], [ 37.792969, -11.350797 ], [ 37.792969, -11.523088 ], [ 36.738281, -11.523088 ], [ 36.738281, -11.695273 ], [ 35.859375, -11.695273 ], [ 35.859375, -11.523088 ], [ 34.628906, -11.523088 ], [ 34.628906, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.487812 ], [ 34.277344, -10.487812 ], [ 34.277344, -10.141932 ], [ 34.101562, -10.141932 ], [ 34.101562, -9.795678 ], [ 33.925781, -9.795678 ], [ 33.925781, -9.622414 ], [ 33.750000, -9.622414 ], [ 33.750000, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.275622 ], [ 32.519531, -9.275622 ], [ 32.519531, -9.102097 ], [ 32.167969, -9.102097 ], [ 32.167969, -8.928487 ], [ 31.816406, -8.928487 ], [ 31.816406, -8.754795 ], [ 31.289062, -8.754795 ], [ 31.289062, -8.581021 ], [ 30.761719, -8.581021 ], [ 30.761719, -8.233237 ], [ 30.585938, -8.233237 ], [ 30.585938, -7.710992 ], [ 30.410156, -7.710992 ], [ 30.410156, -7.362467 ], [ 30.234375, -7.362467 ], [ 30.234375, -7.013668 ], [ 30.058594, -7.013668 ], [ 30.058594, -6.839170 ], [ 29.882812, -6.839170 ], [ 29.882812, -6.664608 ], [ 29.707031, -6.664608 ], [ 29.707031, -6.489983 ], [ 29.531250, -6.489983 ], [ 29.531250, -6.140555 ], [ 29.355469, -6.140555 ], [ 29.355469, -5.790897 ], [ 29.531250, -5.790897 ], [ 29.531250, -5.090944 ], [ 29.355469, -5.090944 ], [ 29.355469, -4.565474 ], [ 29.707031, -4.565474 ], [ 29.707031, -4.390229 ], [ 29.882812, -4.390229 ], [ 29.882812, -4.214943 ], [ 30.058594, -4.214943 ], [ 30.058594, -4.039618 ], [ 30.234375, -4.039618 ], [ 30.234375, -3.864255 ], [ 30.410156, -3.864255 ], [ 30.410156, -3.688855 ], [ 30.585938, -3.688855 ], [ 30.585938, -3.513421 ], [ 30.761719, -3.513421 ], [ 30.761719, -2.986927 ], [ 30.585938, -2.986927 ], [ 30.585938, -2.635789 ], [ 30.410156, -2.635789 ], [ 30.410156, -2.460181 ], [ 30.761719, -2.460181 ], [ 30.761719, -1.581830 ], [ 30.585938, -1.581830 ], [ 30.585938, -1.230374 ], [ 30.410156, -1.230374 ], [ 30.410156, -1.054628 ], [ 33.046875, -1.054628 ], [ 33.046875, -0.878872 ], [ 33.925781, -0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.878872 ], [ 33.750000, -1.054628 ], [ 33.925781, -1.054628 ], [ 33.925781, -1.230374 ], [ 34.277344, -1.230374 ], [ 34.277344, -1.406109 ], [ 34.628906, -1.406109 ], [ 34.628906, -1.581830 ], [ 34.980469, -1.581830 ], [ 34.980469, -1.757537 ], [ 35.332031, -1.757537 ], [ 35.332031, -1.933227 ], [ 35.683594, -1.933227 ], [ 35.683594, -2.108899 ], [ 36.035156, -2.108899 ], [ 36.035156, -2.284551 ], [ 36.386719, -2.284551 ], [ 36.386719, -2.460181 ], [ 36.738281, -2.460181 ], [ 36.738281, -2.635789 ], [ 37.089844, -2.635789 ], [ 37.089844, -2.811371 ], [ 37.441406, -2.811371 ], [ 37.441406, -2.986927 ], [ 37.617188, -2.986927 ], [ 37.617188, -3.688855 ], [ 37.968750, -3.688855 ], [ 37.968750, -3.864255 ], [ 38.144531, -3.864255 ], [ 38.144531, -4.039618 ], [ 38.496094, -4.039618 ], [ 38.496094, -4.214943 ], [ 38.671875, -4.214943 ], [ 38.671875, -4.390229 ], [ 39.023438, -4.390229 ], [ 39.023438, -4.565474 ], [ 39.199219, -4.565474 ], [ 39.199219, -4.915833 ], [ 39.023438, -4.915833 ], [ 39.023438, -5.266008 ], [ 38.847656, -5.266008 ], [ 38.847656, -5.615986 ], [ 38.671875, -5.615986 ], [ 38.671875, -6.489983 ], [ 38.847656, -6.489983 ], [ 38.847656, -6.664608 ], [ 39.199219, -6.664608 ], [ 39.199219, -6.839170 ], [ 39.375000, -6.839170 ], [ 39.375000, -7.188101 ], [ 39.199219, -7.188101 ], [ 39.199219, -7.536764 ], [ 39.023438, -7.536764 ], [ 39.023438, -7.710992 ], [ 39.199219, -7.710992 ], [ 39.199219, -8.233237 ], [ 39.023438, -8.233237 ], [ 39.023438, -8.581021 ], [ 39.199219, -8.581021 ], [ 39.199219, -8.928487 ], [ 39.375000, -8.928487 ], [ 39.375000, -9.275622 ], [ 39.550781, -9.275622 ], [ 39.550781, -9.622414 ], [ 39.726562, -9.622414 ], [ 39.726562, -9.968851 ], [ 39.902344, -9.968851 ], [ 39.902344, -10.141932 ], [ 40.078125, -10.141932 ], [ 40.078125, -10.314919 ], [ 40.253906, -10.314919 ], [ 40.253906, -10.487812 ], [ 39.902344, -10.487812 ], [ 39.902344, -10.660608 ], [ 39.550781, -10.660608 ], [ 39.550781, -10.833306 ], [ 39.199219, -10.833306 ], [ 39.199219, -11.005904 ], [ 38.671875, -11.005904 ], [ 38.671875, -11.178402 ], [ 37.792969, -11.178402 ], [ 37.792969, -11.350797 ], [ 37.617188, -11.350797 ], [ 37.617188, -11.523088 ], [ 36.738281, -11.523088 ], [ 36.738281, -11.695273 ], [ 36.035156, -11.695273 ], [ 36.035156, -11.523088 ], [ 35.332031, -11.523088 ], [ 35.332031, -11.350797 ], [ 34.453125, -11.350797 ], [ 34.453125, -10.833306 ], [ 34.277344, -10.833306 ], [ 34.277344, -10.141932 ], [ 34.101562, -10.141932 ], [ 34.101562, -9.795678 ], [ 33.925781, -9.795678 ], [ 33.925781, -9.622414 ], [ 33.750000, -9.622414 ], [ 33.750000, -9.449062 ], [ 33.574219, -9.449062 ], [ 33.574219, -9.275622 ], [ 33.046875, -9.275622 ], [ 33.046875, -9.102097 ], [ 32.343750, -9.102097 ], [ 32.343750, -8.928487 ], [ 31.640625, -8.928487 ], [ 31.640625, -8.754795 ], [ 31.113281, -8.754795 ], [ 31.113281, -8.581021 ], [ 30.937500, -8.581021 ], [ 30.937500, -8.407168 ], [ 30.585938, -8.407168 ], [ 30.585938, -8.059230 ], [ 30.410156, -8.059230 ], [ 30.410156, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -7.362467 ], [ 30.058594, -7.362467 ], [ 30.058594, -7.013668 ], [ 29.882812, -7.013668 ], [ 29.882812, -6.839170 ], [ 29.707031, -6.839170 ], [ 29.707031, -6.664608 ], [ 29.531250, -6.664608 ], [ 29.531250, -6.140555 ], [ 29.355469, -6.140555 ], [ 29.355469, -4.915833 ], [ 29.179688, -4.915833 ], [ 29.179688, -4.390229 ], [ 29.882812, -4.390229 ], [ 29.882812, -4.214943 ], [ 30.058594, -4.214943 ], [ 30.058594, -4.039618 ], [ 30.234375, -4.039618 ], [ 30.234375, -3.688855 ], [ 30.410156, -3.688855 ], [ 30.410156, -3.513421 ], [ 30.585938, -3.513421 ], [ 30.585938, -2.811371 ], [ 30.410156, -2.811371 ], [ 30.410156, -2.284551 ], [ 30.585938, -2.284551 ], [ 30.585938, -1.933227 ], [ 30.761719, -1.933227 ], [ 30.761719, -1.581830 ], [ 30.585938, -1.581830 ], [ 30.585938, -1.230374 ], [ 30.410156, -1.230374 ], [ 30.410156, -1.054628 ], [ 30.761719, -1.054628 ], [ 30.761719, -0.878872 ], [ 33.750000, -0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.046875, -9.449062 ], [ 33.750000, -9.449062 ], [ 33.750000, -9.622414 ], [ 33.925781, -9.622414 ], [ 33.925781, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.101562, -10.141932 ], [ 34.277344, -10.141932 ], [ 34.277344, -10.487812 ], [ 34.453125, -10.487812 ], [ 34.453125, -11.178402 ], [ 34.628906, -11.178402 ], [ 34.628906, -11.695273 ], [ 34.453125, -11.695273 ], [ 34.453125, -12.039321 ], [ 34.277344, -12.039321 ], [ 34.277344, -12.554564 ], [ 34.453125, -12.554564 ], [ 34.453125, -13.239945 ], [ 34.628906, -13.239945 ], [ 34.628906, -13.581921 ], [ 34.980469, -13.581921 ], [ 34.980469, -13.752725 ], [ 35.156250, -13.752725 ], [ 35.156250, -13.923404 ], [ 35.332031, -13.923404 ], [ 35.332031, -14.093957 ], [ 35.507812, -14.093957 ], [ 35.507812, -14.434680 ], [ 35.683594, -14.434680 ], [ 35.683594, -15.284185 ], [ 35.859375, -15.284185 ], [ 35.859375, -15.961329 ], [ 35.683594, -15.961329 ], [ 35.683594, -16.130262 ], [ 35.332031, -16.130262 ], [ 35.332031, -16.299051 ], [ 35.156250, -16.299051 ], [ 35.156250, -16.636192 ], [ 34.980469, -16.636192 ], [ 34.980469, -16.804541 ], [ 34.804688, -16.804541 ], [ 34.804688, -16.467695 ], [ 34.628906, -16.467695 ], [ 34.628906, -16.299051 ], [ 34.453125, -16.299051 ], [ 34.453125, -15.792254 ], [ 34.277344, -15.792254 ], [ 34.277344, -15.284185 ], [ 34.453125, -15.284185 ], [ 34.453125, -14.604847 ], [ 34.101562, -14.604847 ], [ 34.101562, -14.434680 ], [ 33.574219, -14.434680 ], [ 33.574219, -14.264383 ], [ 33.398438, -14.264383 ], [ 33.398438, -14.093957 ], [ 33.222656, -14.093957 ], [ 33.222656, -13.923404 ], [ 32.871094, -13.923404 ], [ 32.871094, -13.752725 ], [ 32.695312, -13.752725 ], [ 32.695312, -13.581921 ], [ 32.871094, -13.581921 ], [ 32.871094, -13.068777 ], [ 33.046875, -13.068777 ], [ 33.046875, -12.554564 ], [ 33.222656, -12.554564 ], [ 33.222656, -12.039321 ], [ 33.046875, -12.039321 ], [ 33.046875, -11.350797 ], [ 33.222656, -11.350797 ], [ 33.222656, -11.005904 ], [ 33.398438, -11.005904 ], [ 33.398438, -10.141932 ], [ 33.222656, -10.141932 ], [ 33.222656, -9.622414 ], [ 33.046875, -9.622414 ], [ 33.046875, -9.449062 ] ] ], [ [ [ 33.046875, -9.449062 ], [ 32.695312, -9.449062 ], [ 32.695312, -9.275622 ], [ 33.046875, -9.275622 ], [ 33.046875, -9.449062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, -9.102097 ], [ 33.046875, -9.275622 ], [ 33.574219, -9.275622 ], [ 33.574219, -9.449062 ], [ 33.750000, -9.449062 ], [ 33.750000, -9.622414 ], [ 33.925781, -9.622414 ], [ 33.925781, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.101562, -10.141932 ], [ 34.277344, -10.141932 ], [ 34.277344, -10.833306 ], [ 34.453125, -10.833306 ], [ 34.453125, -11.867351 ], [ 34.277344, -11.867351 ], [ 34.277344, -12.897489 ], [ 34.453125, -12.897489 ], [ 34.453125, -13.581921 ], [ 34.980469, -13.581921 ], [ 34.980469, -13.752725 ], [ 35.156250, -13.752725 ], [ 35.156250, -13.923404 ], [ 35.332031, -13.923404 ], [ 35.332031, -14.264383 ], [ 35.507812, -14.264383 ], [ 35.507812, -14.604847 ], [ 35.683594, -14.604847 ], [ 35.683594, -15.961329 ], [ 35.332031, -15.961329 ], [ 35.332031, -16.130262 ], [ 35.156250, -16.130262 ], [ 35.156250, -16.467695 ], [ 34.980469, -16.467695 ], [ 34.980469, -16.636192 ], [ 34.804688, -16.636192 ], [ 34.804688, -16.467695 ], [ 34.453125, -16.467695 ], [ 34.453125, -16.299051 ], [ 34.277344, -16.299051 ], [ 34.277344, -15.284185 ], [ 34.453125, -15.284185 ], [ 34.453125, -14.604847 ], [ 34.277344, -14.604847 ], [ 34.277344, -14.434680 ], [ 33.574219, -14.434680 ], [ 33.574219, -14.264383 ], [ 33.222656, -14.264383 ], [ 33.222656, -14.093957 ], [ 33.046875, -14.093957 ], [ 33.046875, -13.923404 ], [ 32.871094, -13.923404 ], [ 32.871094, -13.752725 ], [ 32.519531, -13.752725 ], [ 32.519531, -13.410994 ], [ 32.695312, -13.410994 ], [ 32.695312, -13.068777 ], [ 32.871094, -13.068777 ], [ 32.871094, -12.726084 ], [ 33.046875, -12.726084 ], [ 33.046875, -12.554564 ], [ 33.222656, -12.554564 ], [ 33.222656, -12.039321 ], [ 33.046875, -12.039321 ], [ 33.046875, -11.178402 ], [ 33.222656, -11.178402 ], [ 33.222656, -10.660608 ], [ 33.398438, -10.660608 ], [ 33.398438, -10.141932 ], [ 33.222656, -10.141932 ], [ 33.222656, -9.622414 ], [ 33.046875, -9.622414 ], [ 33.046875, -9.449062 ], [ 32.871094, -9.449062 ], [ 32.871094, -9.275622 ], [ 32.695312, -9.275622 ], [ 32.695312, -9.102097 ], [ 33.046875, -9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, -10.487812 ], [ 40.253906, -10.660608 ], [ 40.429688, -10.660608 ], [ 40.429688, -12.211180 ], [ 40.605469, -12.211180 ], [ 40.605469, -14.604847 ], [ 40.781250, -14.604847 ], [ 40.781250, -14.944785 ], [ 40.605469, -14.944785 ], [ 40.605469, -15.284185 ], [ 40.429688, -15.284185 ], [ 40.429688, -15.623037 ], [ 40.253906, -15.623037 ], [ 40.253906, -15.961329 ], [ 40.078125, -15.961329 ], [ 40.078125, -16.299051 ], [ 39.902344, -16.299051 ], [ 39.902344, -16.467695 ], [ 39.726562, -16.467695 ], [ 39.726562, -16.636192 ], [ 39.550781, -16.636192 ], [ 39.550781, -16.804541 ], [ 39.199219, -16.804541 ], [ 39.199219, -16.972741 ], [ 38.847656, -16.972741 ], [ 38.847656, -17.140790 ], [ 38.496094, -17.140790 ], [ 38.496094, -17.308688 ], [ 38.144531, -17.308688 ], [ 38.144531, -17.476432 ], [ 37.792969, -17.476432 ], [ 37.792969, -17.644022 ], [ 37.441406, -17.644022 ], [ 37.441406, -17.811456 ], [ 37.265625, -17.811456 ], [ 37.265625, -17.978733 ], [ 37.089844, -17.978733 ], [ 37.089844, -18.145852 ], [ 36.738281, -18.145852 ], [ 36.738281, -18.312811 ], [ 36.562500, -18.312811 ], [ 36.562500, -18.479609 ], [ 36.386719, -18.479609 ], [ 36.386719, -18.646245 ], [ 36.210938, -18.646245 ], [ 36.210938, -18.812718 ], [ 35.859375, -18.812718 ], [ 35.859375, -18.979026 ], [ 35.683594, -18.979026 ], [ 35.683594, -19.145168 ], [ 35.507812, -19.145168 ], [ 35.507812, -19.311143 ], [ 35.332031, -19.311143 ], [ 35.332031, -19.476950 ], [ 35.156250, -19.476950 ], [ 35.156250, -19.642588 ], [ 34.980469, -19.642588 ], [ 34.980469, -19.808054 ], [ 34.804688, -19.808054 ], [ 34.804688, -20.138470 ], [ 34.628906, -20.138470 ], [ 34.628906, -20.632784 ], [ 34.804688, -20.632784 ], [ 34.804688, -20.961440 ], [ 34.980469, -20.961440 ], [ 34.980469, -21.289374 ], [ 35.156250, -21.289374 ], [ 35.156250, -21.616579 ], [ 35.332031, -21.616579 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.105999 ], [ 35.507812, -23.402765 ], [ 35.332031, -23.402765 ], [ 35.332031, -23.725012 ], [ 35.683594, -23.725012 ], [ 35.683594, -23.885838 ], [ 35.507812, -23.885838 ], [ 35.507812, -24.206890 ], [ 35.332031, -24.206890 ], [ 35.332031, -24.367114 ], [ 35.156250, -24.367114 ], [ 35.156250, -24.527135 ], [ 34.980469, -24.527135 ], [ 34.980469, -24.686952 ], [ 34.628906, -24.686952 ], [ 34.628906, -24.846565 ], [ 34.101562, -24.846565 ], [ 34.101562, -25.005973 ], [ 33.750000, -25.005973 ], [ 33.750000, -25.165173 ], [ 33.398438, -25.165173 ], [ 33.398438, -25.324167 ], [ 33.046875, -25.324167 ], [ 33.046875, -25.482951 ], [ 32.871094, -25.482951 ], [ 32.871094, -25.641526 ], [ 32.695312, -25.641526 ], [ 32.695312, -25.799891 ], [ 32.519531, -25.799891 ], [ 32.519531, -25.958045 ], [ 32.695312, -25.958045 ], [ 32.695312, -26.273714 ], [ 32.871094, -26.273714 ], [ 32.871094, -26.745610 ], [ 31.992188, -26.745610 ], [ 31.992188, -26.115986 ], [ 31.816406, -26.115986 ], [ 31.816406, -25.005973 ], [ 31.992188, -25.005973 ], [ 31.992188, -24.206890 ], [ 31.816406, -24.206890 ], [ 31.816406, -23.885838 ], [ 31.640625, -23.885838 ], [ 31.640625, -23.563987 ], [ 31.464844, -23.563987 ], [ 31.464844, -23.079732 ], [ 31.289062, -23.079732 ], [ 31.289062, -22.593726 ], [ 31.113281, -22.593726 ], [ 31.113281, -22.268764 ], [ 31.289062, -22.268764 ], [ 31.289062, -22.105999 ], [ 31.464844, -22.105999 ], [ 31.464844, -21.943046 ], [ 31.640625, -21.943046 ], [ 31.640625, -21.616579 ], [ 31.816406, -21.616579 ], [ 31.816406, -21.453069 ], [ 31.992188, -21.453069 ], [ 31.992188, -21.289374 ], [ 32.167969, -21.289374 ], [ 32.167969, -20.961440 ], [ 32.343750, -20.961440 ], [ 32.343750, -20.632784 ], [ 32.519531, -20.632784 ], [ 32.519531, -20.468189 ], [ 32.695312, -20.468189 ], [ 32.695312, -18.312811 ], [ 32.871094, -18.312811 ], [ 32.871094, -16.636192 ], [ 32.519531, -16.636192 ], [ 32.519531, -16.467695 ], [ 31.992188, -16.467695 ], [ 31.992188, -16.299051 ], [ 31.640625, -16.299051 ], [ 31.640625, -16.130262 ], [ 31.464844, -16.130262 ], [ 31.464844, -15.961329 ], [ 31.113281, -15.961329 ], [ 31.113281, -15.792254 ], [ 30.937500, -15.792254 ], [ 30.937500, -15.961329 ], [ 30.410156, -15.961329 ], [ 30.410156, -15.792254 ], [ 30.234375, -15.792254 ], [ 30.234375, -14.774883 ], [ 30.585938, -14.774883 ], [ 30.585938, -14.604847 ], [ 31.289062, -14.604847 ], [ 31.289062, -14.434680 ], [ 31.816406, -14.434680 ], [ 31.816406, -14.264383 ], [ 32.343750, -14.264383 ], [ 32.343750, -14.093957 ], [ 33.046875, -14.093957 ], [ 33.046875, -13.923404 ], [ 33.222656, -13.923404 ], [ 33.222656, -14.093957 ], [ 33.398438, -14.093957 ], [ 33.398438, -14.264383 ], [ 33.574219, -14.264383 ], [ 33.574219, -14.434680 ], [ 34.101562, -14.434680 ], [ 34.101562, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -15.284185 ], [ 34.277344, -15.284185 ], [ 34.277344, -15.792254 ], [ 34.453125, -15.792254 ], [ 34.453125, -16.299051 ], [ 34.628906, -16.299051 ], [ 34.628906, -16.467695 ], [ 34.804688, -16.467695 ], [ 34.804688, -16.804541 ], [ 34.980469, -16.804541 ], [ 34.980469, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -16.299051 ], [ 35.332031, -16.299051 ], [ 35.332031, -16.130262 ], [ 35.683594, -16.130262 ], [ 35.683594, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -15.284185 ], [ 35.683594, -15.284185 ], [ 35.683594, -14.434680 ], [ 35.507812, -14.434680 ], [ 35.507812, -14.093957 ], [ 35.332031, -14.093957 ], [ 35.332031, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -13.752725 ], [ 34.980469, -13.752725 ], [ 34.980469, -13.581921 ], [ 34.628906, -13.581921 ], [ 34.628906, -13.239945 ], [ 34.453125, -13.239945 ], [ 34.453125, -12.554564 ], [ 34.277344, -12.554564 ], [ 34.277344, -12.039321 ], [ 34.453125, -12.039321 ], [ 34.453125, -11.695273 ], [ 34.628906, -11.695273 ], [ 34.628906, -11.523088 ], [ 35.859375, -11.523088 ], [ 35.859375, -11.695273 ], [ 36.738281, -11.695273 ], [ 36.738281, -11.523088 ], [ 37.792969, -11.523088 ], [ 37.792969, -11.350797 ], [ 38.847656, -11.350797 ], [ 38.847656, -11.178402 ], [ 39.199219, -11.178402 ], [ 39.199219, -11.005904 ], [ 39.550781, -11.005904 ], [ 39.550781, -10.833306 ], [ 39.726562, -10.833306 ], [ 39.726562, -10.660608 ], [ 40.078125, -10.660608 ], [ 40.078125, -10.487812 ], [ 40.253906, -10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -10.487812 ], [ 40.429688, -14.434680 ], [ 40.605469, -14.434680 ], [ 40.605469, -14.944785 ], [ 40.429688, -14.944785 ], [ 40.429688, -15.453680 ], [ 40.253906, -15.453680 ], [ 40.253906, -15.792254 ], [ 40.078125, -15.792254 ], [ 40.078125, -16.130262 ], [ 39.902344, -16.130262 ], [ 39.902344, -16.299051 ], [ 39.726562, -16.299051 ], [ 39.726562, -16.467695 ], [ 39.550781, -16.467695 ], [ 39.550781, -16.636192 ], [ 39.199219, -16.636192 ], [ 39.199219, -16.804541 ], [ 38.847656, -16.804541 ], [ 38.847656, -16.972741 ], [ 38.320312, -16.972741 ], [ 38.320312, -17.140790 ], [ 37.968750, -17.140790 ], [ 37.968750, -17.308688 ], [ 37.617188, -17.308688 ], [ 37.617188, -17.476432 ], [ 37.265625, -17.476432 ], [ 37.265625, -17.644022 ], [ 37.089844, -17.644022 ], [ 37.089844, -17.811456 ], [ 36.914062, -17.811456 ], [ 36.914062, -17.978733 ], [ 36.738281, -17.978733 ], [ 36.738281, -18.312811 ], [ 36.562500, -18.312811 ], [ 36.562500, -18.479609 ], [ 36.386719, -18.479609 ], [ 36.386719, -18.646245 ], [ 36.210938, -18.646245 ], [ 36.210938, -18.812718 ], [ 35.859375, -18.812718 ], [ 35.859375, -18.979026 ], [ 35.683594, -18.979026 ], [ 35.683594, -19.145168 ], [ 35.507812, -19.145168 ], [ 35.507812, -19.311143 ], [ 35.332031, -19.311143 ], [ 35.332031, -19.476950 ], [ 34.980469, -19.476950 ], [ 34.980469, -19.642588 ], [ 34.628906, -19.642588 ], [ 34.628906, -20.632784 ], [ 34.804688, -20.632784 ], [ 34.804688, -20.797201 ], [ 34.980469, -20.797201 ], [ 34.980469, -21.125498 ], [ 35.156250, -21.125498 ], [ 35.156250, -21.453069 ], [ 35.332031, -21.453069 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.105999 ], [ 35.507812, -23.241346 ], [ 35.332031, -23.241346 ], [ 35.332031, -23.563987 ], [ 35.507812, -23.563987 ], [ 35.507812, -23.885838 ], [ 35.332031, -23.885838 ], [ 35.332031, -24.206890 ], [ 35.156250, -24.206890 ], [ 35.156250, -24.367114 ], [ 34.804688, -24.367114 ], [ 34.804688, -24.527135 ], [ 34.453125, -24.527135 ], [ 34.453125, -24.686952 ], [ 34.101562, -24.686952 ], [ 34.101562, -24.846565 ], [ 33.750000, -24.846565 ], [ 33.750000, -25.005973 ], [ 33.398438, -25.005973 ], [ 33.398438, -25.165173 ], [ 33.046875, -25.165173 ], [ 33.046875, -25.324167 ], [ 32.871094, -25.324167 ], [ 32.871094, -25.482951 ], [ 32.695312, -25.482951 ], [ 32.695312, -25.641526 ], [ 32.519531, -25.641526 ], [ 32.519531, -26.115986 ], [ 32.871094, -26.115986 ], [ 32.871094, -26.431228 ], [ 32.695312, -26.431228 ], [ 32.695312, -26.588527 ], [ 31.992188, -26.588527 ], [ 31.992188, -26.431228 ], [ 31.816406, -26.431228 ], [ 31.816406, -25.641526 ], [ 31.640625, -25.641526 ], [ 31.640625, -25.005973 ], [ 31.816406, -25.005973 ], [ 31.816406, -24.046464 ], [ 31.640625, -24.046464 ], [ 31.640625, -23.402765 ], [ 31.464844, -23.402765 ], [ 31.464844, -22.917923 ], [ 31.289062, -22.917923 ], [ 31.289062, -22.431340 ], [ 31.113281, -22.431340 ], [ 31.113281, -22.105999 ], [ 31.289062, -22.105999 ], [ 31.289062, -21.943046 ], [ 31.464844, -21.943046 ], [ 31.464844, -21.779905 ], [ 31.640625, -21.779905 ], [ 31.640625, -21.453069 ], [ 31.816406, -21.453069 ], [ 31.816406, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.992188, -21.125498 ], [ 32.167969, -21.125498 ], [ 32.167969, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -20.303418 ], [ 32.519531, -20.303418 ], [ 32.519531, -19.973349 ], [ 32.695312, -19.973349 ], [ 32.695312, -19.476950 ], [ 32.519531, -19.476950 ], [ 32.519531, -18.312811 ], [ 32.695312, -18.312811 ], [ 32.695312, -16.636192 ], [ 32.519531, -16.636192 ], [ 32.519531, -16.467695 ], [ 32.167969, -16.467695 ], [ 32.167969, -16.299051 ], [ 31.640625, -16.299051 ], [ 31.640625, -16.130262 ], [ 31.464844, -16.130262 ], [ 31.464844, -15.961329 ], [ 31.113281, -15.961329 ], [ 31.113281, -15.792254 ], [ 30.234375, -15.792254 ], [ 30.234375, -15.114553 ], [ 30.058594, -15.114553 ], [ 30.058594, -14.774883 ], [ 30.410156, -14.774883 ], [ 30.410156, -14.604847 ], [ 31.113281, -14.604847 ], [ 31.113281, -14.434680 ], [ 31.640625, -14.434680 ], [ 31.640625, -14.264383 ], [ 32.167969, -14.264383 ], [ 32.167969, -14.093957 ], [ 32.871094, -14.093957 ], [ 32.871094, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.093957 ], [ 33.222656, -14.093957 ], [ 33.222656, -14.264383 ], [ 33.574219, -14.264383 ], [ 33.574219, -14.434680 ], [ 34.277344, -14.434680 ], [ 34.277344, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -15.284185 ], [ 34.277344, -15.284185 ], [ 34.277344, -16.299051 ], [ 34.453125, -16.299051 ], [ 34.453125, -16.467695 ], [ 34.804688, -16.467695 ], [ 34.804688, -16.636192 ], [ 34.980469, -16.636192 ], [ 34.980469, -16.467695 ], [ 35.156250, -16.467695 ], [ 35.156250, -16.130262 ], [ 35.332031, -16.130262 ], [ 35.332031, -15.961329 ], [ 35.683594, -15.961329 ], [ 35.683594, -14.604847 ], [ 35.507812, -14.604847 ], [ 35.507812, -14.264383 ], [ 35.332031, -14.264383 ], [ 35.332031, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -13.752725 ], [ 34.980469, -13.752725 ], [ 34.980469, -13.581921 ], [ 34.453125, -13.581921 ], [ 34.453125, -12.897489 ], [ 34.277344, -12.897489 ], [ 34.277344, -11.867351 ], [ 34.453125, -11.867351 ], [ 34.453125, -11.350797 ], [ 35.332031, -11.350797 ], [ 35.332031, -11.523088 ], [ 36.035156, -11.523088 ], [ 36.035156, -11.695273 ], [ 36.738281, -11.695273 ], [ 36.738281, -11.523088 ], [ 37.617188, -11.523088 ], [ 37.617188, -11.350797 ], [ 37.792969, -11.350797 ], [ 37.792969, -11.178402 ], [ 38.671875, -11.178402 ], [ 38.671875, -11.005904 ], [ 39.199219, -11.005904 ], [ 39.199219, -10.833306 ], [ 39.550781, -10.833306 ], [ 39.550781, -10.660608 ], [ 39.902344, -10.660608 ], [ 39.902344, -10.487812 ], [ 40.429688, -10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, -17.644022 ], [ 25.136719, -17.811456 ], [ 25.312500, -17.811456 ], [ 25.312500, -17.978733 ], [ 25.488281, -17.978733 ], [ 25.488281, -18.312811 ], [ 25.664062, -18.312811 ], [ 25.664062, -18.646245 ], [ 25.839844, -18.646245 ], [ 25.839844, -18.812718 ], [ 26.015625, -18.812718 ], [ 26.015625, -19.145168 ], [ 26.191406, -19.145168 ], [ 26.191406, -19.476950 ], [ 26.367188, -19.476950 ], [ 26.367188, -19.642588 ], [ 26.542969, -19.642588 ], [ 26.542969, -19.808054 ], [ 26.718750, -19.808054 ], [ 26.718750, -20.138470 ], [ 26.894531, -20.138470 ], [ 26.894531, -20.303418 ], [ 27.070312, -20.303418 ], [ 27.070312, -20.468189 ], [ 27.773438, -20.468189 ], [ 27.773438, -21.125498 ], [ 27.949219, -21.125498 ], [ 27.949219, -21.453069 ], [ 28.300781, -21.453069 ], [ 28.300781, -21.616579 ], [ 28.828125, -21.616579 ], [ 28.828125, -21.779905 ], [ 29.003906, -21.779905 ], [ 29.003906, -21.943046 ], [ 29.179688, -21.943046 ], [ 29.179688, -22.105999 ], [ 29.355469, -22.105999 ], [ 29.355469, -22.268764 ], [ 29.003906, -22.268764 ], [ 29.003906, -22.431340 ], [ 28.652344, -22.431340 ], [ 28.652344, -22.593726 ], [ 28.300781, -22.593726 ], [ 28.300781, -22.755921 ], [ 27.949219, -22.755921 ], [ 27.949219, -22.917923 ], [ 27.773438, -22.917923 ], [ 27.773438, -23.079732 ], [ 27.597656, -23.079732 ], [ 27.597656, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -23.402765 ], [ 27.246094, -23.402765 ], [ 27.246094, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.725012 ], [ 26.894531, -23.725012 ], [ 26.894531, -24.046464 ], [ 26.718750, -24.046464 ], [ 26.718750, -24.527135 ], [ 26.542969, -24.527135 ], [ 26.542969, -24.686952 ], [ 26.015625, -24.686952 ], [ 26.015625, -25.005973 ], [ 25.839844, -25.005973 ], [ 25.839844, -25.324167 ], [ 25.664062, -25.324167 ], [ 25.664062, -25.482951 ], [ 25.488281, -25.482951 ], [ 25.488281, -25.641526 ], [ 24.082031, -25.641526 ], [ 24.082031, -25.482951 ], [ 23.730469, -25.482951 ], [ 23.730469, -25.324167 ], [ 23.203125, -25.324167 ], [ 23.203125, -25.482951 ], [ 22.851562, -25.482951 ], [ 22.851562, -25.641526 ], [ 22.675781, -25.641526 ], [ 22.675781, -25.958045 ], [ 22.500000, -25.958045 ], [ 22.500000, -26.115986 ], [ 22.324219, -26.115986 ], [ 22.324219, -26.273714 ], [ 22.148438, -26.273714 ], [ 22.148438, -26.431228 ], [ 21.972656, -26.431228 ], [ 21.972656, -26.588527 ], [ 21.796875, -26.588527 ], [ 21.796875, -26.745610 ], [ 21.445312, -26.745610 ], [ 21.445312, -26.902477 ], [ 20.917969, -26.902477 ], [ 20.917969, -26.745610 ], [ 20.742188, -26.745610 ], [ 20.742188, -25.641526 ], [ 20.566406, -25.641526 ], [ 20.566406, -25.324167 ], [ 20.390625, -25.324167 ], [ 20.390625, -25.005973 ], [ 20.214844, -25.005973 ], [ 20.214844, -24.846565 ], [ 19.863281, -24.846565 ], [ 19.863281, -21.779905 ], [ 20.917969, -21.779905 ], [ 20.917969, -18.312811 ], [ 21.445312, -18.312811 ], [ 21.445312, -18.145852 ], [ 22.148438, -18.145852 ], [ 22.148438, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -17.811456 ], [ 23.203125, -17.811456 ], [ 23.203125, -17.978733 ], [ 23.378906, -17.978733 ], [ 23.378906, -18.312811 ], [ 23.730469, -18.312811 ], [ 23.730469, -18.145852 ], [ 24.082031, -18.145852 ], [ 24.082031, -17.978733 ], [ 24.257812, -17.978733 ], [ 24.257812, -17.811456 ], [ 24.960938, -17.811456 ], [ 24.960938, -17.644022 ], [ 25.136719, -17.644022 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, -17.644022 ], [ 25.136719, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -18.312811 ], [ 25.488281, -18.312811 ], [ 25.488281, -18.646245 ], [ 25.839844, -18.646245 ], [ 25.839844, -18.979026 ], [ 26.015625, -18.979026 ], [ 26.015625, -19.311143 ], [ 26.191406, -19.311143 ], [ 26.191406, -19.476950 ], [ 26.367188, -19.476950 ], [ 26.367188, -19.642588 ], [ 26.542969, -19.642588 ], [ 26.542969, -19.808054 ], [ 26.718750, -19.808054 ], [ 26.718750, -19.973349 ], [ 26.894531, -19.973349 ], [ 26.894531, -20.138470 ], [ 27.070312, -20.138470 ], [ 27.070312, -20.303418 ], [ 27.246094, -20.303418 ], [ 27.246094, -20.468189 ], [ 27.597656, -20.468189 ], [ 27.597656, -20.961440 ], [ 27.773438, -20.961440 ], [ 27.773438, -21.289374 ], [ 27.949219, -21.289374 ], [ 27.949219, -21.453069 ], [ 28.125000, -21.453069 ], [ 28.125000, -21.616579 ], [ 28.652344, -21.616579 ], [ 28.652344, -21.779905 ], [ 29.003906, -21.779905 ], [ 29.003906, -21.943046 ], [ 29.355469, -21.943046 ], [ 29.355469, -22.105999 ], [ 29.003906, -22.105999 ], [ 29.003906, -22.268764 ], [ 28.828125, -22.268764 ], [ 28.828125, -22.431340 ], [ 28.476562, -22.431340 ], [ 28.476562, -22.593726 ], [ 28.125000, -22.593726 ], [ 28.125000, -22.755921 ], [ 27.949219, -22.755921 ], [ 27.949219, -22.917923 ], [ 27.773438, -22.917923 ], [ 27.773438, -23.079732 ], [ 27.597656, -23.079732 ], [ 27.597656, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -23.402765 ], [ 27.246094, -23.402765 ], [ 27.246094, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.725012 ], [ 26.894531, -23.725012 ], [ 26.894531, -24.046464 ], [ 26.718750, -24.046464 ], [ 26.718750, -24.367114 ], [ 26.542969, -24.367114 ], [ 26.542969, -24.527135 ], [ 26.191406, -24.527135 ], [ 26.191406, -24.686952 ], [ 25.839844, -24.686952 ], [ 25.839844, -25.005973 ], [ 25.664062, -25.005973 ], [ 25.664062, -25.482951 ], [ 25.488281, -25.482951 ], [ 25.488281, -25.641526 ], [ 23.906250, -25.641526 ], [ 23.906250, -25.482951 ], [ 23.730469, -25.482951 ], [ 23.730469, -25.324167 ], [ 23.378906, -25.324167 ], [ 23.378906, -25.165173 ], [ 23.203125, -25.165173 ], [ 23.203125, -25.324167 ], [ 22.851562, -25.324167 ], [ 22.851562, -25.482951 ], [ 22.675781, -25.482951 ], [ 22.675781, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -26.115986 ], [ 22.148438, -26.115986 ], [ 22.148438, -26.273714 ], [ 21.972656, -26.273714 ], [ 21.972656, -26.431228 ], [ 21.621094, -26.431228 ], [ 21.621094, -26.588527 ], [ 21.269531, -26.588527 ], [ 21.269531, -26.745610 ], [ 20.742188, -26.745610 ], [ 20.742188, -26.588527 ], [ 20.566406, -26.588527 ], [ 20.566406, -26.115986 ], [ 20.742188, -26.115986 ], [ 20.742188, -25.799891 ], [ 20.566406, -25.799891 ], [ 20.566406, -25.482951 ], [ 20.390625, -25.482951 ], [ 20.390625, -25.324167 ], [ 20.214844, -25.324167 ], [ 20.214844, -25.005973 ], [ 20.039062, -25.005973 ], [ 20.039062, -24.846565 ], [ 19.863281, -24.846565 ], [ 19.863281, -21.779905 ], [ 20.742188, -21.779905 ], [ 20.742188, -18.145852 ], [ 22.148438, -18.145852 ], [ 22.148438, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -17.811456 ], [ 23.027344, -17.811456 ], [ 23.027344, -17.978733 ], [ 23.378906, -17.978733 ], [ 23.378906, -18.145852 ], [ 23.730469, -18.145852 ], [ 23.730469, -17.978733 ], [ 24.082031, -17.978733 ], [ 24.082031, -17.811456 ], [ 24.785156, -17.811456 ], [ 24.785156, -17.644022 ], [ 25.136719, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, -22.105999 ], [ 30.761719, -22.268764 ], [ 31.113281, -22.268764 ], [ 31.113281, -22.593726 ], [ 31.289062, -22.593726 ], [ 31.289062, -23.079732 ], [ 31.464844, -23.079732 ], [ 31.464844, -23.563987 ], [ 31.640625, -23.563987 ], [ 31.640625, -23.885838 ], [ 31.816406, -23.885838 ], [ 31.816406, -24.206890 ], [ 31.992188, -24.206890 ], [ 31.992188, -25.005973 ], [ 31.816406, -25.005973 ], [ 31.816406, -25.799891 ], [ 31.464844, -25.799891 ], [ 31.464844, -25.641526 ], [ 31.289062, -25.641526 ], [ 31.289062, -25.799891 ], [ 31.113281, -25.799891 ], [ 31.113281, -25.958045 ], [ 30.937500, -25.958045 ], [ 30.937500, -26.273714 ], [ 30.761719, -26.273714 ], [ 30.761719, -26.902477 ], [ 30.937500, -26.902477 ], [ 30.937500, -27.059126 ], [ 31.113281, -27.059126 ], [ 31.113281, -27.215556 ], [ 31.816406, -27.215556 ], [ 31.816406, -27.059126 ], [ 31.992188, -27.059126 ], [ 31.992188, -26.745610 ], [ 32.871094, -26.745610 ], [ 32.871094, -27.059126 ], [ 32.695312, -27.059126 ], [ 32.695312, -27.371767 ], [ 32.519531, -27.371767 ], [ 32.519531, -28.459033 ], [ 32.343750, -28.459033 ], [ 32.343750, -28.767659 ], [ 32.167969, -28.767659 ], [ 32.167969, -28.921631 ], [ 31.992188, -28.921631 ], [ 31.992188, -29.075375 ], [ 31.640625, -29.075375 ], [ 31.640625, -29.228890 ], [ 31.464844, -29.228890 ], [ 31.464844, -29.382175 ], [ 31.289062, -29.382175 ], [ 31.289062, -29.535230 ], [ 31.113281, -29.535230 ], [ 31.113281, -29.840644 ], [ 30.937500, -29.840644 ], [ 30.937500, -29.993002 ], [ 30.761719, -29.993002 ], [ 30.761719, -30.297018 ], [ 30.585938, -30.297018 ], [ 30.585938, -30.600094 ], [ 30.410156, -30.600094 ], [ 30.410156, -30.902225 ], [ 30.234375, -30.902225 ], [ 30.234375, -31.203405 ], [ 30.058594, -31.203405 ], [ 30.058594, -31.353637 ], [ 29.882812, -31.353637 ], [ 29.882812, -31.503629 ], [ 29.707031, -31.503629 ], [ 29.707031, -31.653381 ], [ 29.531250, -31.653381 ], [ 29.531250, -31.802893 ], [ 29.355469, -31.802893 ], [ 29.355469, -31.952162 ], [ 29.179688, -31.952162 ], [ 29.179688, -32.101190 ], [ 29.003906, -32.101190 ], [ 29.003906, -32.249974 ], [ 28.828125, -32.249974 ], [ 28.828125, -32.398516 ], [ 28.652344, -32.398516 ], [ 28.652344, -32.694866 ], [ 28.476562, -32.694866 ], [ 28.476562, -32.842674 ], [ 28.300781, -32.842674 ], [ 28.300781, -32.990236 ], [ 27.949219, -32.990236 ], [ 27.949219, -33.137551 ], [ 27.597656, -33.137551 ], [ 27.597656, -33.284620 ], [ 27.246094, -33.284620 ], [ 27.246094, -33.431441 ], [ 26.718750, -33.431441 ], [ 26.718750, -33.578015 ], [ 26.191406, -33.578015 ], [ 26.191406, -33.724340 ], [ 25.839844, -33.724340 ], [ 25.839844, -34.016242 ], [ 25.488281, -34.016242 ], [ 25.488281, -33.870416 ], [ 24.785156, -33.870416 ], [ 24.785156, -34.016242 ], [ 24.257812, -34.016242 ], [ 24.257812, -33.870416 ], [ 23.730469, -33.870416 ], [ 23.730469, -33.724340 ], [ 23.378906, -33.724340 ], [ 23.378906, -33.870416 ], [ 22.500000, -33.870416 ], [ 22.500000, -34.016242 ], [ 22.148438, -34.016242 ], [ 22.148438, -34.161818 ], [ 21.796875, -34.161818 ], [ 21.796875, -34.307144 ], [ 21.269531, -34.307144 ], [ 21.269531, -34.452218 ], [ 20.742188, -34.452218 ], [ 20.742188, -34.597042 ], [ 20.390625, -34.597042 ], [ 20.390625, -34.741612 ], [ 20.039062, -34.741612 ], [ 20.039062, -34.885931 ], [ 19.511719, -34.885931 ], [ 19.511719, -34.741612 ], [ 19.335938, -34.741612 ], [ 19.335938, -34.597042 ], [ 19.160156, -34.597042 ], [ 19.160156, -34.452218 ], [ 18.632812, -34.452218 ], [ 18.632812, -34.161818 ], [ 18.457031, -34.161818 ], [ 18.457031, -34.016242 ], [ 18.281250, -34.016242 ], [ 18.281250, -33.137551 ], [ 18.105469, -33.137551 ], [ 18.105469, -32.842674 ], [ 17.929688, -32.842674 ], [ 17.929688, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.653381 ], [ 18.105469, -31.653381 ], [ 18.105469, -31.353637 ], [ 17.929688, -31.353637 ], [ 17.929688, -31.203405 ], [ 17.753906, -31.203405 ], [ 17.753906, -30.902225 ], [ 17.578125, -30.902225 ], [ 17.578125, -30.600094 ], [ 17.402344, -30.600094 ], [ 17.402344, -30.297018 ], [ 17.226562, -30.297018 ], [ 17.226562, -29.993002 ], [ 17.050781, -29.993002 ], [ 17.050781, -29.688053 ], [ 16.875000, -29.688053 ], [ 16.875000, -29.382175 ], [ 16.699219, -29.382175 ], [ 16.699219, -29.075375 ], [ 16.523438, -29.075375 ], [ 16.523438, -28.767659 ], [ 16.347656, -28.767659 ], [ 16.347656, -28.613459 ], [ 16.523438, -28.613459 ], [ 16.523438, -28.459033 ], [ 16.699219, -28.459033 ], [ 16.699219, -28.304381 ], [ 17.226562, -28.304381 ], [ 17.226562, -28.613459 ], [ 17.402344, -28.613459 ], [ 17.402344, -28.921631 ], [ 17.929688, -28.921631 ], [ 17.929688, -29.075375 ], [ 18.808594, -29.075375 ], [ 18.808594, -28.921631 ], [ 19.160156, -28.921631 ], [ 19.160156, -28.767659 ], [ 19.511719, -28.767659 ], [ 19.511719, -28.613459 ], [ 19.863281, -28.613459 ], [ 19.863281, -24.846565 ], [ 20.214844, -24.846565 ], [ 20.214844, -25.005973 ], [ 20.390625, -25.005973 ], [ 20.390625, -25.324167 ], [ 20.566406, -25.324167 ], [ 20.566406, -25.641526 ], [ 20.742188, -25.641526 ], [ 20.742188, -26.745610 ], [ 20.917969, -26.745610 ], [ 20.917969, -26.902477 ], [ 21.445312, -26.902477 ], [ 21.445312, -26.745610 ], [ 21.796875, -26.745610 ], [ 21.796875, -26.588527 ], [ 21.972656, -26.588527 ], [ 21.972656, -26.431228 ], [ 22.148438, -26.431228 ], [ 22.148438, -26.273714 ], [ 22.324219, -26.273714 ], [ 22.324219, -26.115986 ], [ 22.500000, -26.115986 ], [ 22.500000, -25.958045 ], [ 22.675781, -25.958045 ], [ 22.675781, -25.641526 ], [ 22.851562, -25.641526 ], [ 22.851562, -25.482951 ], [ 23.203125, -25.482951 ], [ 23.203125, -25.324167 ], [ 23.730469, -25.324167 ], [ 23.730469, -25.482951 ], [ 24.082031, -25.482951 ], [ 24.082031, -25.641526 ], [ 25.488281, -25.641526 ], [ 25.488281, -25.482951 ], [ 25.664062, -25.482951 ], [ 25.664062, -25.324167 ], [ 25.839844, -25.324167 ], [ 25.839844, -25.005973 ], [ 26.015625, -25.005973 ], [ 26.015625, -24.686952 ], [ 26.542969, -24.686952 ], [ 26.542969, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -24.046464 ], [ 26.894531, -24.046464 ], [ 26.894531, -23.725012 ], [ 27.070312, -23.725012 ], [ 27.070312, -23.563987 ], [ 27.246094, -23.563987 ], [ 27.246094, -23.402765 ], [ 27.421875, -23.402765 ], [ 27.421875, -23.241346 ], [ 27.597656, -23.241346 ], [ 27.597656, -23.079732 ], [ 27.773438, -23.079732 ], [ 27.773438, -22.917923 ], [ 27.949219, -22.917923 ], [ 27.949219, -22.755921 ], [ 28.300781, -22.755921 ], [ 28.300781, -22.593726 ], [ 28.652344, -22.593726 ], [ 28.652344, -22.431340 ], [ 29.003906, -22.431340 ], [ 29.003906, -22.268764 ], [ 29.355469, -22.268764 ], [ 29.355469, -22.105999 ], [ 30.058594, -22.105999 ], [ 30.058594, -22.268764 ], [ 30.585938, -22.268764 ], [ 30.585938, -22.105999 ], [ 30.761719, -22.105999 ] ], [ [ 28.300781, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -29.075375 ], [ 27.773438, -29.075375 ], [ 27.773438, -29.228890 ], [ 27.597656, -29.228890 ], [ 27.597656, -29.382175 ], [ 27.421875, -29.382175 ], [ 27.421875, -29.535230 ], [ 27.246094, -29.535230 ], [ 27.246094, -29.840644 ], [ 27.070312, -29.840644 ], [ 27.070312, -29.993002 ], [ 27.246094, -29.993002 ], [ 27.246094, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -30.448674 ], [ 27.597656, -30.448674 ], [ 27.597656, -30.600094 ], [ 28.125000, -30.600094 ], [ 28.125000, -30.448674 ], [ 28.300781, -30.448674 ], [ 28.300781, -30.297018 ], [ 28.652344, -30.297018 ], [ 28.652344, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -29.993002 ], [ 29.003906, -29.993002 ], [ 29.003906, -29.688053 ], [ 29.179688, -29.688053 ], [ 29.179688, -29.382175 ], [ 29.355469, -29.382175 ], [ 29.355469, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -29.075375 ], [ 29.003906, -29.075375 ], [ 29.003906, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -28.767659 ], [ 28.300781, -28.767659 ], [ 28.300781, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.707031, -21.943046 ], [ 29.707031, -22.105999 ], [ 30.058594, -22.105999 ], [ 30.058594, -22.268764 ], [ 30.585938, -22.268764 ], [ 30.585938, -22.105999 ], [ 31.113281, -22.105999 ], [ 31.113281, -22.431340 ], [ 31.289062, -22.431340 ], [ 31.289062, -22.917923 ], [ 31.464844, -22.917923 ], [ 31.464844, -23.402765 ], [ 31.640625, -23.402765 ], [ 31.640625, -24.046464 ], [ 31.816406, -24.046464 ], [ 31.816406, -25.005973 ], [ 31.640625, -25.005973 ], [ 31.640625, -25.641526 ], [ 31.816406, -25.641526 ], [ 31.816406, -25.799891 ], [ 31.464844, -25.799891 ], [ 31.464844, -25.641526 ], [ 30.937500, -25.641526 ], [ 30.937500, -26.115986 ], [ 30.761719, -26.115986 ], [ 30.761719, -26.273714 ], [ 30.585938, -26.273714 ], [ 30.585938, -26.902477 ], [ 30.761719, -26.902477 ], [ 30.761719, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -27.215556 ], [ 31.640625, -27.215556 ], [ 31.640625, -27.059126 ], [ 31.816406, -27.059126 ], [ 31.816406, -26.902477 ], [ 31.992188, -26.902477 ], [ 31.992188, -26.588527 ], [ 32.695312, -26.588527 ], [ 32.695312, -27.059126 ], [ 32.519531, -27.059126 ], [ 32.519531, -27.839076 ], [ 32.343750, -27.839076 ], [ 32.343750, -28.459033 ], [ 32.167969, -28.459033 ], [ 32.167969, -28.767659 ], [ 31.992188, -28.767659 ], [ 31.992188, -28.921631 ], [ 31.816406, -28.921631 ], [ 31.816406, -29.075375 ], [ 31.640625, -29.075375 ], [ 31.640625, -29.228890 ], [ 31.464844, -29.228890 ], [ 31.464844, -29.382175 ], [ 31.289062, -29.382175 ], [ 31.289062, -29.535230 ], [ 31.113281, -29.535230 ], [ 31.113281, -29.688053 ], [ 30.937500, -29.688053 ], [ 30.937500, -29.840644 ], [ 30.761719, -29.840644 ], [ 30.761719, -30.145127 ], [ 30.585938, -30.145127 ], [ 30.585938, -30.448674 ], [ 30.410156, -30.448674 ], [ 30.410156, -30.600094 ], [ 30.234375, -30.600094 ], [ 30.234375, -30.902225 ], [ 30.058594, -30.902225 ], [ 30.058594, -31.052934 ], [ 29.882812, -31.052934 ], [ 29.882812, -31.203405 ], [ 29.707031, -31.203405 ], [ 29.707031, -31.353637 ], [ 29.531250, -31.353637 ], [ 29.531250, -31.503629 ], [ 29.355469, -31.503629 ], [ 29.355469, -31.802893 ], [ 29.179688, -31.802893 ], [ 29.179688, -31.952162 ], [ 29.003906, -31.952162 ], [ 29.003906, -32.101190 ], [ 28.828125, -32.101190 ], [ 28.828125, -32.249974 ], [ 28.652344, -32.249974 ], [ 28.652344, -32.398516 ], [ 28.476562, -32.398516 ], [ 28.476562, -32.546813 ], [ 28.300781, -32.546813 ], [ 28.300781, -32.694866 ], [ 28.125000, -32.694866 ], [ 28.125000, -32.842674 ], [ 27.949219, -32.842674 ], [ 27.949219, -32.990236 ], [ 27.597656, -32.990236 ], [ 27.597656, -33.137551 ], [ 27.421875, -33.137551 ], [ 27.421875, -33.284620 ], [ 27.070312, -33.284620 ], [ 27.070312, -33.431441 ], [ 26.718750, -33.431441 ], [ 26.718750, -33.578015 ], [ 25.839844, -33.578015 ], [ 25.839844, -33.724340 ], [ 25.664062, -33.724340 ], [ 25.664062, -33.870416 ], [ 25.312500, -33.870416 ], [ 25.312500, -33.724340 ], [ 24.960938, -33.724340 ], [ 24.960938, -33.870416 ], [ 23.906250, -33.870416 ], [ 23.906250, -33.724340 ], [ 23.378906, -33.724340 ], [ 23.378906, -33.870416 ], [ 22.148438, -33.870416 ], [ 22.148438, -34.016242 ], [ 21.796875, -34.016242 ], [ 21.796875, -34.161818 ], [ 21.093750, -34.161818 ], [ 21.093750, -34.307144 ], [ 20.566406, -34.307144 ], [ 20.566406, -34.452218 ], [ 20.390625, -34.452218 ], [ 20.390625, -34.597042 ], [ 20.214844, -34.597042 ], [ 20.214844, -34.741612 ], [ 19.335938, -34.741612 ], [ 19.335938, -34.597042 ], [ 19.160156, -34.597042 ], [ 19.160156, -34.452218 ], [ 18.808594, -34.452218 ], [ 18.808594, -34.307144 ], [ 18.632812, -34.307144 ], [ 18.632812, -34.161818 ], [ 18.457031, -34.161818 ], [ 18.457031, -34.016242 ], [ 18.281250, -34.016242 ], [ 18.281250, -33.870416 ], [ 18.105469, -33.870416 ], [ 18.105469, -32.990236 ], [ 17.929688, -32.990236 ], [ 17.929688, -32.694866 ], [ 17.753906, -32.694866 ], [ 17.753906, -32.546813 ], [ 18.105469, -32.546813 ], [ 18.105469, -31.653381 ], [ 17.929688, -31.653381 ], [ 17.929688, -31.353637 ], [ 17.753906, -31.353637 ], [ 17.753906, -31.052934 ], [ 17.578125, -31.052934 ], [ 17.578125, -30.751278 ], [ 17.402344, -30.751278 ], [ 17.402344, -30.448674 ], [ 17.226562, -30.448674 ], [ 17.226562, -30.145127 ], [ 17.050781, -30.145127 ], [ 17.050781, -29.688053 ], [ 16.875000, -29.688053 ], [ 16.875000, -29.382175 ], [ 16.699219, -29.382175 ], [ 16.699219, -29.075375 ], [ 16.523438, -29.075375 ], [ 16.523438, -28.767659 ], [ 16.347656, -28.767659 ], [ 16.347656, -28.459033 ], [ 16.523438, -28.459033 ], [ 16.523438, -28.149503 ], [ 16.875000, -28.149503 ], [ 16.875000, -28.304381 ], [ 17.050781, -28.304381 ], [ 17.050781, -28.613459 ], [ 17.226562, -28.613459 ], [ 17.226562, -28.767659 ], [ 17.929688, -28.767659 ], [ 17.929688, -28.921631 ], [ 19.160156, -28.921631 ], [ 19.160156, -28.767659 ], [ 19.511719, -28.767659 ], [ 19.511719, -28.613459 ], [ 19.863281, -28.613459 ], [ 19.863281, -24.846565 ], [ 20.039062, -24.846565 ], [ 20.039062, -25.005973 ], [ 20.214844, -25.005973 ], [ 20.214844, -25.324167 ], [ 20.390625, -25.324167 ], [ 20.390625, -25.482951 ], [ 20.566406, -25.482951 ], [ 20.566406, -25.799891 ], [ 20.742188, -25.799891 ], [ 20.742188, -26.115986 ], [ 20.566406, -26.115986 ], [ 20.566406, -26.588527 ], [ 20.742188, -26.588527 ], [ 20.742188, -26.745610 ], [ 21.269531, -26.745610 ], [ 21.269531, -26.588527 ], [ 21.621094, -26.588527 ], [ 21.621094, -26.431228 ], [ 21.972656, -26.431228 ], [ 21.972656, -26.273714 ], [ 22.148438, -26.273714 ], [ 22.148438, -26.115986 ], [ 22.500000, -26.115986 ], [ 22.500000, -25.799891 ], [ 22.675781, -25.799891 ], [ 22.675781, -25.482951 ], [ 22.851562, -25.482951 ], [ 22.851562, -25.324167 ], [ 23.203125, -25.324167 ], [ 23.203125, -25.165173 ], [ 23.378906, -25.165173 ], [ 23.378906, -25.324167 ], [ 23.730469, -25.324167 ], [ 23.730469, -25.482951 ], [ 23.906250, -25.482951 ], [ 23.906250, -25.641526 ], [ 25.488281, -25.641526 ], [ 25.488281, -25.482951 ], [ 25.664062, -25.482951 ], [ 25.664062, -25.005973 ], [ 25.839844, -25.005973 ], [ 25.839844, -24.686952 ], [ 26.191406, -24.686952 ], [ 26.191406, -24.527135 ], [ 26.542969, -24.527135 ], [ 26.542969, -24.367114 ], [ 26.718750, -24.367114 ], [ 26.718750, -24.046464 ], [ 26.894531, -24.046464 ], [ 26.894531, -23.725012 ], [ 27.070312, -23.725012 ], [ 27.070312, -23.563987 ], [ 27.246094, -23.563987 ], [ 27.246094, -23.402765 ], [ 27.421875, -23.402765 ], [ 27.421875, -23.241346 ], [ 27.597656, -23.241346 ], [ 27.597656, -23.079732 ], [ 27.773438, -23.079732 ], [ 27.773438, -22.917923 ], [ 27.949219, -22.917923 ], [ 27.949219, -22.755921 ], [ 28.125000, -22.755921 ], [ 28.125000, -22.593726 ], [ 28.476562, -22.593726 ], [ 28.476562, -22.431340 ], [ 28.828125, -22.431340 ], [ 28.828125, -22.268764 ], [ 29.003906, -22.268764 ], [ 29.003906, -22.105999 ], [ 29.355469, -22.105999 ], [ 29.355469, -21.943046 ], [ 29.707031, -21.943046 ] ], [ [ 28.300781, -28.767659 ], [ 27.949219, -28.767659 ], [ 27.949219, -28.921631 ], [ 27.773438, -28.921631 ], [ 27.773438, -29.075375 ], [ 27.597656, -29.075375 ], [ 27.597656, -29.228890 ], [ 27.421875, -29.228890 ], [ 27.421875, -29.382175 ], [ 27.246094, -29.382175 ], [ 27.246094, -29.535230 ], [ 27.070312, -29.535230 ], [ 27.070312, -29.840644 ], [ 26.894531, -29.840644 ], [ 26.894531, -29.993002 ], [ 27.070312, -29.993002 ], [ 27.070312, -30.145127 ], [ 27.246094, -30.145127 ], [ 27.246094, -30.448674 ], [ 27.421875, -30.448674 ], [ 27.421875, -30.600094 ], [ 27.949219, -30.600094 ], [ 27.949219, -30.297018 ], [ 28.125000, -30.297018 ], [ 28.125000, -30.145127 ], [ 28.652344, -30.145127 ], [ 28.652344, -29.993002 ], [ 28.828125, -29.993002 ], [ 28.828125, -29.840644 ], [ 29.003906, -29.840644 ], [ 29.003906, -29.535230 ], [ 29.179688, -29.535230 ], [ 29.179688, -29.228890 ], [ 29.003906, -29.228890 ], [ 29.003906, -29.075375 ], [ 28.828125, -29.075375 ], [ 28.828125, -28.921631 ], [ 28.652344, -28.921631 ], [ 28.652344, -28.767659 ], [ 28.476562, -28.767659 ], [ 28.476562, -28.613459 ], [ 28.300781, -28.613459 ], [ 28.300781, -28.767659 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.464844, -25.641526 ], [ 31.464844, -25.799891 ], [ 31.816406, -25.799891 ], [ 31.816406, -26.115986 ], [ 31.992188, -26.115986 ], [ 31.992188, -27.059126 ], [ 31.816406, -27.059126 ], [ 31.816406, -27.215556 ], [ 31.113281, -27.215556 ], [ 31.113281, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -26.902477 ], [ 30.761719, -26.902477 ], [ 30.761719, -26.273714 ], [ 30.937500, -26.273714 ], [ 30.937500, -25.958045 ], [ 31.113281, -25.958045 ], [ 31.113281, -25.799891 ], [ 31.289062, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.464844, -25.641526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.464844, -25.641526 ], [ 31.464844, -25.799891 ], [ 31.816406, -25.799891 ], [ 31.816406, -26.431228 ], [ 31.992188, -26.431228 ], [ 31.992188, -26.902477 ], [ 31.816406, -26.902477 ], [ 31.816406, -27.059126 ], [ 31.640625, -27.059126 ], [ 31.640625, -27.215556 ], [ 30.937500, -27.215556 ], [ 30.937500, -27.059126 ], [ 30.761719, -27.059126 ], [ 30.761719, -26.902477 ], [ 30.585938, -26.902477 ], [ 30.585938, -26.273714 ], [ 30.761719, -26.273714 ], [ 30.761719, -26.115986 ], [ 30.937500, -26.115986 ], [ 30.937500, -25.641526 ], [ 31.464844, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -28.767659 ], [ 28.828125, -28.921631 ], [ 29.003906, -28.921631 ], [ 29.003906, -29.075375 ], [ 29.179688, -29.075375 ], [ 29.179688, -29.228890 ], [ 29.355469, -29.228890 ], [ 29.355469, -29.382175 ], [ 29.179688, -29.382175 ], [ 29.179688, -29.688053 ], [ 29.003906, -29.688053 ], [ 29.003906, -29.993002 ], [ 28.828125, -29.993002 ], [ 28.828125, -30.145127 ], [ 28.652344, -30.145127 ], [ 28.652344, -30.297018 ], [ 28.300781, -30.297018 ], [ 28.300781, -30.448674 ], [ 28.125000, -30.448674 ], [ 28.125000, -30.600094 ], [ 27.597656, -30.600094 ], [ 27.597656, -30.448674 ], [ 27.421875, -30.448674 ], [ 27.421875, -30.145127 ], [ 27.246094, -30.145127 ], [ 27.246094, -29.993002 ], [ 27.070312, -29.993002 ], [ 27.070312, -29.840644 ], [ 27.246094, -29.840644 ], [ 27.246094, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -29.382175 ], [ 27.597656, -29.382175 ], [ 27.597656, -29.228890 ], [ 27.773438, -29.228890 ], [ 27.773438, -29.075375 ], [ 28.125000, -29.075375 ], [ 28.125000, -28.921631 ], [ 28.300781, -28.921631 ], [ 28.300781, -28.767659 ], [ 28.828125, -28.767659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, -28.613459 ], [ 28.476562, -28.767659 ], [ 28.652344, -28.767659 ], [ 28.652344, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -29.075375 ], [ 29.003906, -29.075375 ], [ 29.003906, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -29.535230 ], [ 29.003906, -29.535230 ], [ 29.003906, -29.840644 ], [ 28.828125, -29.840644 ], [ 28.828125, -29.993002 ], [ 28.652344, -29.993002 ], [ 28.652344, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.297018 ], [ 27.949219, -30.297018 ], [ 27.949219, -30.600094 ], [ 27.421875, -30.600094 ], [ 27.421875, -30.448674 ], [ 27.246094, -30.448674 ], [ 27.246094, -30.145127 ], [ 27.070312, -30.145127 ], [ 27.070312, -29.993002 ], [ 26.894531, -29.993002 ], [ 26.894531, -29.840644 ], [ 27.070312, -29.840644 ], [ 27.070312, -29.535230 ], [ 27.246094, -29.535230 ], [ 27.246094, -29.382175 ], [ 27.421875, -29.382175 ], [ 27.421875, -29.228890 ], [ 27.597656, -29.228890 ], [ 27.597656, -29.075375 ], [ 27.773438, -29.075375 ], [ 27.773438, -28.921631 ], [ 27.949219, -28.921631 ], [ 27.949219, -28.767659 ], [ 28.300781, -28.767659 ], [ 28.300781, -28.613459 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.961329 ], [ 45.878906, -25.482951 ], [ 45.527344, -25.482951 ], [ 45.527344, -25.641526 ], [ 45.175781, -25.641526 ], [ 45.175781, -25.482951 ], [ 44.824219, -25.482951 ], [ 44.824219, -25.324167 ], [ 44.472656, -25.324167 ], [ 44.472656, -25.165173 ], [ 44.121094, -25.165173 ], [ 44.121094, -25.005973 ], [ 43.945312, -25.005973 ], [ 43.945312, -24.686952 ], [ 43.769531, -24.686952 ], [ 43.769531, -23.402765 ], [ 43.593750, -23.402765 ], [ 43.593750, -23.079732 ], [ 43.417969, -23.079732 ], [ 43.417969, -22.431340 ], [ 43.242188, -22.431340 ], [ 43.242188, -21.779905 ], [ 43.417969, -21.779905 ], [ 43.417969, -21.289374 ], [ 43.769531, -21.289374 ], [ 43.769531, -21.125498 ], [ 43.945312, -21.125498 ], [ 43.945312, -20.632784 ], [ 44.121094, -20.632784 ], [ 44.121094, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -19.808054 ], [ 44.472656, -19.808054 ], [ 44.472656, -19.311143 ], [ 44.296875, -19.311143 ], [ 44.296875, -18.646245 ], [ 44.121094, -18.646245 ], [ 44.121094, -17.978733 ], [ 43.945312, -17.978733 ], [ 43.945312, -17.308688 ], [ 44.121094, -17.308688 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.636192 ], [ 44.472656, -16.636192 ], [ 44.472656, -16.299051 ], [ 44.824219, -16.299051 ], [ 44.824219, -16.130262 ], [ 45.351562, -16.130262 ], [ 45.351562, -15.961329 ], [ 45.878906, -15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.324167 ], [ 45.703125, -25.324167 ], [ 45.703125, -25.482951 ], [ 45.000000, -25.482951 ], [ 45.000000, -25.324167 ], [ 44.648438, -25.324167 ], [ 44.648438, -25.165173 ], [ 44.296875, -25.165173 ], [ 44.296875, -25.005973 ], [ 43.945312, -25.005973 ], [ 43.945312, -24.846565 ], [ 43.769531, -24.846565 ], [ 43.769531, -24.527135 ], [ 43.593750, -24.527135 ], [ 43.593750, -23.402765 ], [ 43.417969, -23.402765 ], [ 43.417969, -23.079732 ], [ 43.242188, -23.079732 ], [ 43.242188, -21.616579 ], [ 43.417969, -21.616579 ], [ 43.417969, -21.289374 ], [ 43.769531, -21.289374 ], [ 43.769531, -20.797201 ], [ 43.945312, -20.797201 ], [ 43.945312, -20.468189 ], [ 44.121094, -20.468189 ], [ 44.121094, -20.138470 ], [ 44.296875, -20.138470 ], [ 44.296875, -19.145168 ], [ 44.121094, -19.145168 ], [ 44.121094, -18.646245 ], [ 43.945312, -18.646245 ], [ 43.945312, -17.308688 ], [ 44.121094, -17.308688 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.130262 ], [ 45.175781, -16.130262 ], [ 45.175781, -15.961329 ], [ 45.703125, -15.961329 ], [ 45.703125, -15.792254 ], [ 45.878906, -15.792254 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.316406, 41.640078 ], [ 9.316406, 41.376809 ], [ 9.140625, 41.376809 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.640078 ], [ 9.316406, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.316406, 41.640078 ], [ 9.316406, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.640078 ], [ 9.316406, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.376809 ], [ 2.285156, 41.376809 ], [ 2.285156, 41.244772 ], [ 1.933594, 41.244772 ], [ 1.933594, 41.112469 ], [ 1.230469, 41.112469 ], [ 1.230469, 40.979898 ], [ 0.878906, 40.979898 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.175781, 40.178873 ], [ 0.175781, 40.044438 ], [ 0.000000, 40.044438 ], [ 0.000000, 39.774769 ], [ -0.175781, 39.774769 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ 0.175781, 38.685510 ], [ 0.175781, 38.548165 ], [ 0.000000, 38.548165 ], [ 0.000000, 38.410558 ], [ -0.351562, 38.410558 ], [ -0.351562, 38.272689 ], [ -0.527344, 38.272689 ], [ -0.527344, 37.857507 ], [ -0.703125, 37.857507 ], [ -0.703125, 37.579413 ], [ -0.878906, 37.579413 ], [ -0.878906, 41.640078 ], [ 2.636719, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.376809 ], [ 2.109375, 41.376809 ], [ 2.109375, 41.244772 ], [ 1.406250, 41.244772 ], [ 1.406250, 41.112469 ], [ 0.703125, 41.112469 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.313043 ], [ 0.175781, 40.313043 ], [ 0.175781, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.909736 ], [ -0.175781, 39.909736 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ -0.175781, 38.685510 ], [ -0.175781, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 38.410558 ], [ -0.527344, 38.410558 ], [ -0.527344, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.718590 ], [ -0.878906, 37.718590 ], [ -0.878906, 41.640078 ], [ 2.636719, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 22.268764 ], [ -0.527344, 22.105999 ], [ -0.351562, 22.105999 ], [ -0.351562, 21.943046 ], [ -0.175781, 21.943046 ], [ -0.175781, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.527344, 21.453069 ], [ 0.527344, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 21.125498 ], [ 1.054688, 21.125498 ], [ 1.054688, 20.961440 ], [ 1.230469, 20.961440 ], [ 1.230469, 20.797201 ], [ 1.582031, 20.797201 ], [ 1.582031, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 20.468189 ], [ 1.933594, 20.468189 ], [ 1.933594, 20.138470 ], [ 2.109375, 20.138470 ], [ 2.109375, 19.973349 ], [ 2.460938, 19.973349 ], [ 2.460938, 19.808054 ], [ 2.812500, 19.808054 ], [ 2.812500, 19.642588 ], [ 3.164062, 19.642588 ], [ 3.164062, 18.979026 ], [ 3.867188, 18.979026 ], [ 3.867188, 19.145168 ], [ 4.218750, 19.145168 ], [ 4.218750, 16.636192 ], [ 4.042969, 16.636192 ], [ 4.042969, 16.467695 ], [ 3.867188, 16.467695 ], [ 3.867188, 16.130262 ], [ 3.691406, 16.130262 ], [ 3.691406, 15.623037 ], [ 3.339844, 15.623037 ], [ 3.339844, 15.453680 ], [ 2.285156, 15.453680 ], [ 2.285156, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 15.114553 ], [ 1.230469, 15.114553 ], [ 1.230469, 14.944785 ], [ -0.878906, 14.944785 ], [ -0.878906, 22.268764 ], [ -0.527344, 22.268764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 22.268764 ], [ -0.527344, 22.105999 ], [ -0.351562, 22.105999 ], [ -0.351562, 21.943046 ], [ -0.175781, 21.943046 ], [ -0.175781, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.527344, 21.453069 ], [ 0.527344, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 21.125498 ], [ 1.054688, 21.125498 ], [ 1.054688, 20.961440 ], [ 1.230469, 20.961440 ], [ 1.230469, 20.797201 ], [ 1.582031, 20.797201 ], [ 1.582031, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 20.468189 ], [ 1.933594, 20.468189 ], [ 1.933594, 20.138470 ], [ 2.285156, 20.138470 ], [ 2.285156, 19.973349 ], [ 2.636719, 19.973349 ], [ 2.636719, 19.808054 ], [ 2.988281, 19.808054 ], [ 2.988281, 19.145168 ], [ 3.691406, 19.145168 ], [ 3.691406, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.804541 ], [ 4.042969, 16.804541 ], [ 4.042969, 16.636192 ], [ 3.867188, 16.636192 ], [ 3.867188, 16.299051 ], [ 3.691406, 16.299051 ], [ 3.691406, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 15.623037 ], [ 3.164062, 15.623037 ], [ 3.164062, 15.453680 ], [ 1.230469, 15.453680 ], [ 1.230469, 15.284185 ], [ 1.054688, 15.284185 ], [ 1.054688, 15.114553 ], [ 0.703125, 15.114553 ], [ 0.703125, 14.944785 ], [ -0.527344, 14.944785 ], [ -0.527344, 15.114553 ], [ -0.878906, 15.114553 ], [ -0.878906, 22.268764 ], [ -0.527344, 22.268764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.581921 ], [ 0.878906, 13.581921 ], [ 0.878906, 13.410994 ], [ 1.054688, 13.410994 ], [ 1.054688, 12.897489 ], [ 1.230469, 12.897489 ], [ 1.230469, 12.726084 ], [ 1.757812, 12.726084 ], [ 1.757812, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.695273 ], [ 1.757812, 11.695273 ], [ 1.757812, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 11.350797 ], [ 1.230469, 11.350797 ], [ 1.230469, 11.005904 ], [ -0.351562, 11.005904 ], [ -0.351562, 11.178402 ], [ -0.527344, 11.178402 ], [ -0.527344, 11.005904 ], [ -0.878906, 11.005904 ], [ -0.878906, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.527344, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 14.774883 ], [ 0.175781, 14.774883 ], [ 0.175781, 14.264383 ], [ 0.351562, 14.264383 ], [ 0.351562, 13.923404 ], [ 0.527344, 13.923404 ], [ 0.527344, 13.752725 ], [ 0.703125, 13.752725 ], [ 0.703125, 13.410994 ], [ 0.878906, 13.410994 ], [ 0.878906, 12.897489 ], [ 1.406250, 12.897489 ], [ 1.406250, 12.726084 ], [ 2.109375, 12.726084 ], [ 2.109375, 11.867351 ], [ 1.933594, 11.867351 ], [ 1.933594, 11.695273 ], [ 1.406250, 11.695273 ], [ 1.406250, 11.350797 ], [ 1.230469, 11.350797 ], [ 1.230469, 11.005904 ], [ 0.351562, 11.005904 ], [ 0.351562, 11.178402 ], [ -0.527344, 11.178402 ], [ -0.527344, 11.005904 ], [ -0.878906, 11.005904 ], [ -0.878906, 15.114553 ], [ -0.527344, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.351562, 11.178402 ], [ -0.351562, 11.005904 ], [ 0.000000, 11.005904 ], [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.141932 ], [ 0.351562, 10.141932 ], [ 0.351562, 9.102097 ], [ 0.527344, 9.102097 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.315299 ], [ 0.878906, 6.315299 ], [ 0.878906, 6.140555 ], [ 1.054688, 6.140555 ], [ 1.054688, 5.965754 ], [ 0.878906, 5.965754 ], [ 0.878906, 5.790897 ], [ 0.527344, 5.790897 ], [ 0.527344, 5.615986 ], [ 0.175781, 5.615986 ], [ 0.175781, 5.441022 ], [ -0.175781, 5.441022 ], [ -0.175781, 5.266008 ], [ -0.527344, 5.266008 ], [ -0.527344, 5.090944 ], [ -0.878906, 5.090944 ], [ -0.878906, 11.005904 ], [ -0.527344, 11.005904 ], [ -0.527344, 11.178402 ], [ -0.351562, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 11.005904 ], [ -0.175781, 11.005904 ], [ -0.175781, 10.660608 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.314919 ], [ 0.351562, 10.314919 ], [ 0.351562, 8.581021 ], [ 0.527344, 8.581021 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 8.059230 ], [ 0.527344, 8.059230 ], [ 0.527344, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.188101 ], [ 0.527344, 7.188101 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.140555 ], [ 0.878906, 6.140555 ], [ 0.878906, 5.790897 ], [ 0.351562, 5.790897 ], [ 0.351562, 5.615986 ], [ -0.175781, 5.615986 ], [ -0.175781, 5.441022 ], [ -0.527344, 5.441022 ], [ -0.527344, 5.266008 ], [ -0.878906, 5.266008 ], [ -0.878906, 11.005904 ], [ -0.527344, 11.005904 ], [ -0.527344, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.996163 ], [ 15.292969, 37.996163 ], [ 15.292969, 37.579413 ], [ 15.117188, 37.579413 ], [ 15.117188, 37.300275 ], [ 15.292969, 37.300275 ], [ 15.292969, 36.879621 ], [ 15.117188, 36.879621 ], [ 15.117188, 36.597889 ], [ 14.941406, 36.597889 ], [ 14.941406, 36.738884 ], [ 14.589844, 36.738884 ], [ 14.589844, 36.879621 ], [ 14.414062, 36.879621 ], [ 14.414062, 37.020098 ], [ 14.062500, 37.020098 ], [ 14.062500, 37.160317 ], [ 13.535156, 37.160317 ], [ 13.535156, 37.300275 ], [ 13.007812, 37.300275 ], [ 13.007812, 37.439974 ], [ 12.656250, 37.439974 ], [ 12.656250, 37.579413 ], [ 12.480469, 37.579413 ], [ 12.480469, 37.857507 ], [ 12.656250, 37.857507 ], [ 12.656250, 38.134557 ], [ 13.007812, 38.134557 ], [ 13.007812, 37.996163 ], [ 14.414062, 37.996163 ], [ 14.414062, 38.134557 ], [ 15.292969, 38.134557 ], [ 15.292969, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 15.996094, 41.640078 ], [ 15.996094, 41.376809 ], [ 16.347656, 41.376809 ], [ 16.347656, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.753906, 40.713956 ], [ 17.753906, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 18.457031, 40.313043 ], [ 18.457031, 39.909736 ], [ 18.281250, 39.909736 ], [ 18.281250, 39.774769 ], [ 18.105469, 39.774769 ], [ 18.105469, 40.044438 ], [ 17.929688, 40.044438 ], [ 17.929688, 40.178873 ], [ 17.753906, 40.178873 ], [ 17.753906, 40.313043 ], [ 17.226562, 40.313043 ], [ 17.226562, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 40.178873 ], [ 16.699219, 40.178873 ], [ 16.699219, 39.909736 ], [ 16.523438, 39.909736 ], [ 16.523438, 39.639538 ], [ 16.699219, 39.639538 ], [ 16.699219, 39.504041 ], [ 17.050781, 39.504041 ], [ 17.050781, 39.368279 ], [ 17.226562, 39.368279 ], [ 17.226562, 39.095963 ], [ 17.050781, 39.095963 ], [ 17.050781, 38.822591 ], [ 16.699219, 38.822591 ], [ 16.699219, 38.685510 ], [ 16.523438, 38.685510 ], [ 16.523438, 38.410558 ], [ 16.347656, 38.410558 ], [ 16.347656, 38.134557 ], [ 16.171875, 38.134557 ], [ 16.171875, 37.996163 ], [ 15.996094, 37.996163 ], [ 15.996094, 37.857507 ], [ 15.644531, 37.857507 ], [ 15.644531, 38.410558 ], [ 15.820312, 38.410558 ], [ 15.820312, 38.685510 ], [ 15.996094, 38.685510 ], [ 15.996094, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 38.959409 ], [ 15.996094, 38.959409 ], [ 15.996094, 39.232253 ], [ 15.820312, 39.232253 ], [ 15.820312, 39.368279 ], [ 15.644531, 39.368279 ], [ 15.644531, 39.774769 ], [ 15.468750, 39.774769 ], [ 15.468750, 40.044438 ], [ 15.117188, 40.044438 ], [ 15.117188, 40.178873 ], [ 14.941406, 40.178873 ], [ 14.941406, 40.313043 ], [ 14.765625, 40.313043 ], [ 14.765625, 40.580585 ], [ 14.414062, 40.580585 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 41.112469 ], [ 13.710938, 41.112469 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.376809 ], [ 12.304688, 41.376809 ], [ 12.304688, 41.508577 ], [ 12.128906, 41.508577 ], [ 12.128906, 41.640078 ], [ 15.996094, 41.640078 ] ] ], [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.713956 ], [ 9.667969, 40.713956 ], [ 9.667969, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.774769 ], [ 9.667969, 39.774769 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.232253 ], [ 9.140625, 39.095963 ], [ 8.964844, 39.095963 ], [ 8.964844, 38.959409 ], [ 8.613281, 38.959409 ], [ 8.613281, 39.095963 ], [ 8.437500, 39.095963 ], [ 8.437500, 40.446947 ], [ 8.261719, 40.446947 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.261719, 40.979898 ], [ 8.261719, 40.847060 ], [ 8.964844, 40.847060 ], [ 8.964844, 41.112469 ], [ 9.316406, 41.112469 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.996163 ], [ 15.292969, 37.996163 ], [ 15.292969, 37.718590 ], [ 15.117188, 37.718590 ], [ 15.117188, 37.300275 ], [ 15.292969, 37.300275 ], [ 15.292969, 37.020098 ], [ 15.117188, 37.020098 ], [ 15.117188, 36.738884 ], [ 14.589844, 36.738884 ], [ 14.589844, 36.879621 ], [ 14.238281, 36.879621 ], [ 14.238281, 37.020098 ], [ 13.886719, 37.020098 ], [ 13.886719, 37.160317 ], [ 13.359375, 37.160317 ], [ 13.359375, 37.300275 ], [ 13.007812, 37.300275 ], [ 13.007812, 37.439974 ], [ 12.656250, 37.439974 ], [ 12.656250, 37.579413 ], [ 12.304688, 37.579413 ], [ 12.304688, 37.857507 ], [ 12.480469, 37.857507 ], [ 12.480469, 38.134557 ], [ 14.238281, 38.134557 ], [ 14.238281, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 15.820312, 41.640078 ], [ 15.820312, 41.508577 ], [ 16.171875, 41.508577 ], [ 16.171875, 41.376809 ], [ 16.523438, 41.376809 ], [ 16.523438, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.929688, 40.713956 ], [ 17.929688, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 18.457031, 40.313043 ], [ 18.457031, 40.044438 ], [ 18.281250, 40.044438 ], [ 18.281250, 39.909736 ], [ 18.105469, 39.909736 ], [ 18.105469, 40.044438 ], [ 17.753906, 40.044438 ], [ 17.753906, 40.178873 ], [ 17.578125, 40.178873 ], [ 17.578125, 40.313043 ], [ 17.050781, 40.313043 ], [ 17.050781, 40.446947 ], [ 16.699219, 40.446947 ], [ 16.699219, 40.313043 ], [ 16.523438, 40.313043 ], [ 16.523438, 40.044438 ], [ 16.347656, 40.044438 ], [ 16.347656, 39.774769 ], [ 16.523438, 39.774769 ], [ 16.523438, 39.639538 ], [ 16.875000, 39.639538 ], [ 16.875000, 39.504041 ], [ 17.050781, 39.504041 ], [ 17.050781, 38.959409 ], [ 16.523438, 38.959409 ], [ 16.523438, 38.685510 ], [ 16.347656, 38.685510 ], [ 16.347656, 38.410558 ], [ 16.171875, 38.410558 ], [ 16.171875, 38.134557 ], [ 15.996094, 38.134557 ], [ 15.996094, 37.996163 ], [ 15.644531, 37.996163 ], [ 15.644531, 38.548165 ], [ 15.820312, 38.548165 ], [ 15.820312, 38.959409 ], [ 15.996094, 38.959409 ], [ 15.996094, 39.232253 ], [ 15.820312, 39.232253 ], [ 15.820312, 39.504041 ], [ 15.644531, 39.504041 ], [ 15.644531, 39.774769 ], [ 15.468750, 39.774769 ], [ 15.468750, 40.044438 ], [ 15.292969, 40.044438 ], [ 15.292969, 40.178873 ], [ 14.941406, 40.178873 ], [ 14.941406, 40.313043 ], [ 14.765625, 40.313043 ], [ 14.765625, 40.580585 ], [ 14.589844, 40.580585 ], [ 14.589844, 40.713956 ], [ 14.238281, 40.713956 ], [ 14.238281, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 40.979898 ], [ 13.710938, 40.979898 ], [ 13.710938, 41.112469 ], [ 13.535156, 41.112469 ], [ 13.535156, 41.244772 ], [ 13.007812, 41.244772 ], [ 13.007812, 41.376809 ], [ 12.480469, 41.376809 ], [ 12.480469, 41.508577 ], [ 12.128906, 41.508577 ], [ 12.128906, 41.640078 ], [ 15.820312, 41.640078 ] ] ], [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.580585 ], [ 9.667969, 40.580585 ], [ 9.667969, 39.232253 ], [ 9.316406, 39.232253 ], [ 9.316406, 39.368279 ], [ 9.140625, 39.368279 ], [ 9.140625, 39.232253 ], [ 8.964844, 39.232253 ], [ 8.964844, 38.959409 ], [ 8.613281, 38.959409 ], [ 8.613281, 39.095963 ], [ 8.261719, 39.095963 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.789062, 40.979898 ], [ 8.789062, 41.112469 ], [ 9.316406, 41.112469 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 41.640078 ], [ 20.566406, 41.508577 ], [ 20.390625, 41.508577 ], [ 20.390625, 41.244772 ], [ 20.566406, 41.244772 ], [ 20.566406, 40.979898 ], [ 20.917969, 40.979898 ], [ 20.917969, 40.847060 ], [ 21.093750, 40.847060 ], [ 21.093750, 40.713956 ], [ 20.917969, 40.713956 ], [ 20.917969, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 40.178873 ], [ 20.566406, 40.178873 ], [ 20.566406, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 39.639538 ], [ 20.039062, 39.639538 ], [ 20.039062, 39.909736 ], [ 19.863281, 39.909736 ], [ 19.863281, 40.044438 ], [ 19.511719, 40.044438 ], [ 19.511719, 40.178873 ], [ 19.335938, 40.178873 ], [ 19.335938, 41.508577 ], [ 19.511719, 41.508577 ], [ 19.511719, 41.640078 ], [ 20.566406, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 41.640078 ], [ 20.390625, 41.376809 ], [ 20.566406, 41.376809 ], [ 20.566406, 40.979898 ], [ 20.742188, 40.979898 ], [ 20.742188, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.446947 ], [ 20.566406, 40.446947 ], [ 20.566406, 40.044438 ], [ 20.390625, 40.044438 ], [ 20.390625, 39.909736 ], [ 20.214844, 39.909736 ], [ 20.214844, 39.639538 ], [ 19.863281, 39.639538 ], [ 19.863281, 40.044438 ], [ 19.687500, 40.044438 ], [ 19.687500, 40.178873 ], [ 19.335938, 40.178873 ], [ 19.335938, 40.580585 ], [ 19.160156, 40.580585 ], [ 19.160156, 41.112469 ], [ 19.335938, 41.112469 ], [ 19.335938, 41.640078 ], [ 20.390625, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 41.640078 ], [ 22.851562, 41.508577 ], [ 23.027344, 41.508577 ], [ 23.027344, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.508577 ], [ 20.566406, 41.508577 ], [ 20.566406, 41.640078 ], [ 22.851562, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 41.640078 ], [ 22.851562, 41.376809 ], [ 22.675781, 41.376809 ], [ 22.675781, 41.244772 ], [ 21.972656, 41.244772 ], [ 21.972656, 41.112469 ], [ 21.796875, 41.112469 ], [ 21.796875, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.742188, 40.847060 ], [ 20.742188, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.376809 ], [ 20.390625, 41.376809 ], [ 20.390625, 41.640078 ], [ 22.851562, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.191406, 41.640078 ], [ 26.191406, 41.376809 ], [ 25.839844, 41.376809 ], [ 25.839844, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.082031, 41.508577 ], [ 24.082031, 41.376809 ], [ 23.027344, 41.376809 ], [ 23.027344, 41.508577 ], [ 22.851562, 41.508577 ], [ 22.851562, 41.640078 ], [ 26.191406, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.015625, 41.640078 ], [ 26.015625, 41.376809 ], [ 25.664062, 41.376809 ], [ 25.664062, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.433594, 41.508577 ], [ 24.433594, 41.640078 ], [ 26.015625, 41.640078 ] ] ], [ [ [ 24.257812, 41.640078 ], [ 24.257812, 41.508577 ], [ 23.906250, 41.508577 ], [ 23.906250, 41.376809 ], [ 22.851562, 41.376809 ], [ 22.851562, 41.640078 ], [ 24.257812, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.472656, 41.244772 ], [ 44.472656, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.890625, 41.376809 ], [ 42.890625, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 45.878906, 41.640078 ] ] ], [ [ [ 42.187500, 41.640078 ], [ 42.187500, 41.508577 ], [ 41.660156, 41.508577 ], [ 41.660156, 41.640078 ], [ 42.187500, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.376809 ], [ 44.648438, 41.376809 ], [ 44.648438, 41.244772 ], [ 43.945312, 41.244772 ], [ 43.945312, 41.112469 ], [ 43.242188, 41.112469 ], [ 43.242188, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.714844, 41.376809 ], [ 42.714844, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.667969, 37.300275 ], [ 9.667969, 37.160317 ], [ 10.195312, 37.160317 ], [ 10.195312, 36.738884 ], [ 10.371094, 36.738884 ], [ 10.371094, 36.879621 ], [ 10.722656, 36.879621 ], [ 10.722656, 37.020098 ], [ 11.074219, 37.020098 ], [ 11.074219, 36.738884 ], [ 10.898438, 36.738884 ], [ 10.898438, 36.597889 ], [ 10.722656, 36.597889 ], [ 10.722656, 36.456636 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 35.317366 ], [ 10.722656, 35.317366 ], [ 10.722656, 34.741612 ], [ 10.546875, 34.741612 ], [ 10.546875, 34.597042 ], [ 10.371094, 34.597042 ], [ 10.371094, 34.307144 ], [ 10.195312, 34.307144 ], [ 10.195312, 34.016242 ], [ 10.371094, 34.016242 ], [ 10.371094, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.431441 ], [ 11.074219, 33.431441 ], [ 11.074219, 33.137551 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.249974 ], [ 11.074219, 32.249974 ], [ 11.074219, 32.101190 ], [ 10.898438, 32.101190 ], [ 10.898438, 31.952162 ], [ 10.722656, 31.952162 ], [ 10.722656, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.503629 ], [ 10.195312, 31.503629 ], [ 10.195312, 31.353637 ], [ 10.019531, 31.353637 ], [ 10.019531, 30.448674 ], [ 9.667969, 30.448674 ], [ 9.667969, 30.297018 ], [ 9.492188, 30.297018 ], [ 9.492188, 30.751278 ], [ 9.316406, 30.751278 ], [ 9.316406, 31.653381 ], [ 9.140625, 31.653381 ], [ 9.140625, 32.101190 ], [ 8.964844, 32.101190 ], [ 8.964844, 32.249974 ], [ 8.613281, 32.249974 ], [ 8.613281, 32.398516 ], [ 8.437500, 32.398516 ], [ 8.437500, 32.694866 ], [ 8.261719, 32.694866 ], [ 8.261719, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 32.990236 ], [ 7.734375, 32.990236 ], [ 7.734375, 33.137551 ], [ 7.558594, 33.137551 ], [ 7.558594, 34.161818 ], [ 7.734375, 34.161818 ], [ 7.734375, 34.307144 ], [ 7.910156, 34.307144 ], [ 7.910156, 34.452218 ], [ 8.085938, 34.452218 ], [ 8.085938, 34.741612 ], [ 8.261719, 34.741612 ], [ 8.261719, 35.173808 ], [ 8.437500, 35.173808 ], [ 8.437500, 35.889050 ], [ 8.261719, 35.889050 ], [ 8.261719, 36.597889 ], [ 8.437500, 36.597889 ], [ 8.437500, 36.879621 ], [ 8.789062, 36.879621 ], [ 8.789062, 37.020098 ], [ 9.140625, 37.020098 ], [ 9.140625, 37.160317 ], [ 9.492188, 37.160317 ], [ 9.492188, 37.300275 ], [ 9.667969, 37.300275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.667969, 37.439974 ], [ 9.667969, 37.300275 ], [ 10.195312, 37.300275 ], [ 10.195312, 37.020098 ], [ 10.019531, 37.020098 ], [ 10.019531, 36.738884 ], [ 10.195312, 36.738884 ], [ 10.195312, 36.879621 ], [ 10.546875, 36.879621 ], [ 10.546875, 37.020098 ], [ 11.074219, 37.020098 ], [ 11.074219, 36.879621 ], [ 10.898438, 36.879621 ], [ 10.898438, 36.738884 ], [ 10.722656, 36.738884 ], [ 10.722656, 36.456636 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.889050 ], [ 10.722656, 35.889050 ], [ 10.722656, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 35.317366 ], [ 10.722656, 35.317366 ], [ 10.722656, 34.741612 ], [ 10.546875, 34.741612 ], [ 10.546875, 34.597042 ], [ 10.195312, 34.597042 ], [ 10.195312, 34.452218 ], [ 10.019531, 34.452218 ], [ 10.019531, 34.161818 ], [ 10.195312, 34.161818 ], [ 10.195312, 33.870416 ], [ 10.722656, 33.870416 ], [ 10.722656, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.431441 ], [ 11.074219, 33.431441 ], [ 11.074219, 33.284620 ], [ 11.250000, 33.284620 ], [ 11.250000, 33.137551 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.249974 ], [ 11.074219, 32.249974 ], [ 11.074219, 32.101190 ], [ 10.898438, 32.101190 ], [ 10.898438, 31.952162 ], [ 10.722656, 31.952162 ], [ 10.722656, 31.802893 ], [ 10.546875, 31.802893 ], [ 10.546875, 31.653381 ], [ 10.195312, 31.653381 ], [ 10.195312, 31.503629 ], [ 9.843750, 31.503629 ], [ 9.843750, 31.203405 ], [ 10.019531, 31.203405 ], [ 10.019531, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 30.600094 ], [ 9.667969, 30.600094 ], [ 9.667969, 30.448674 ], [ 9.316406, 30.448674 ], [ 9.316406, 30.751278 ], [ 9.140625, 30.751278 ], [ 9.140625, 31.653381 ], [ 8.964844, 31.653381 ], [ 8.964844, 32.101190 ], [ 8.789062, 32.101190 ], [ 8.789062, 32.249974 ], [ 8.613281, 32.249974 ], [ 8.613281, 32.398516 ], [ 8.437500, 32.398516 ], [ 8.437500, 32.694866 ], [ 8.261719, 32.694866 ], [ 8.261719, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 32.990236 ], [ 7.910156, 32.990236 ], [ 7.910156, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 33.284620 ], [ 7.558594, 33.284620 ], [ 7.558594, 33.724340 ], [ 7.382812, 33.724340 ], [ 7.382812, 34.161818 ], [ 7.558594, 34.161818 ], [ 7.558594, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.452218 ], [ 7.910156, 34.452218 ], [ 7.910156, 34.597042 ], [ 8.085938, 34.597042 ], [ 8.085938, 35.173808 ], [ 8.261719, 35.173808 ], [ 8.261719, 36.031332 ], [ 8.085938, 36.031332 ], [ 8.085938, 36.738884 ], [ 8.261719, 36.738884 ], [ 8.261719, 37.020098 ], [ 8.613281, 37.020098 ], [ 8.613281, 37.160317 ], [ 8.964844, 37.160317 ], [ 8.964844, 37.300275 ], [ 9.316406, 37.300275 ], [ 9.316406, 37.439974 ], [ 9.667969, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.382812, 37.160317 ], [ 7.382812, 37.020098 ], [ 7.558594, 37.020098 ], [ 7.558594, 36.879621 ], [ 8.437500, 36.879621 ], [ 8.437500, 36.597889 ], [ 8.261719, 36.597889 ], [ 8.261719, 35.889050 ], [ 8.437500, 35.889050 ], [ 8.437500, 35.173808 ], [ 8.261719, 35.173808 ], [ 8.261719, 34.741612 ], [ 8.085938, 34.741612 ], [ 8.085938, 34.452218 ], [ 7.910156, 34.452218 ], [ 7.910156, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.161818 ], [ 7.558594, 34.161818 ], [ 7.558594, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 32.990236 ], [ 8.085938, 32.990236 ], [ 8.085938, 32.842674 ], [ 8.261719, 32.842674 ], [ 8.261719, 32.694866 ], [ 8.437500, 32.694866 ], [ 8.437500, 32.398516 ], [ 8.613281, 32.398516 ], [ 8.613281, 32.249974 ], [ 8.964844, 32.249974 ], [ 8.964844, 32.101190 ], [ 9.140625, 32.101190 ], [ 9.140625, 31.653381 ], [ 9.316406, 31.653381 ], [ 9.316406, 30.751278 ], [ 9.492188, 30.751278 ], [ 9.492188, 29.993002 ], [ 9.667969, 29.993002 ], [ 9.667969, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 28.459033 ], [ 9.667969, 28.459033 ], [ 9.667969, 27.839076 ], [ 9.843750, 27.839076 ], [ 9.843750, 27.371767 ], [ 9.667969, 27.371767 ], [ 9.667969, 26.431228 ], [ 9.492188, 26.431228 ], [ 9.492188, 26.115986 ], [ 9.316406, 26.115986 ], [ 9.316406, 25.958045 ], [ 9.492188, 25.958045 ], [ 9.492188, 25.641526 ], [ 9.667969, 25.641526 ], [ 9.667969, 25.324167 ], [ 9.843750, 25.324167 ], [ 9.843750, 25.165173 ], [ 10.019531, 25.165173 ], [ 10.019531, 24.846565 ], [ 10.195312, 24.846565 ], [ 10.195312, 24.527135 ], [ 10.371094, 24.527135 ], [ 10.371094, 24.367114 ], [ 11.074219, 24.367114 ], [ 11.074219, 24.206890 ], [ 11.425781, 24.206890 ], [ 11.425781, 24.046464 ], [ 11.601562, 24.046464 ], [ 11.601562, 23.885838 ], [ 11.777344, 23.885838 ], [ 11.777344, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.241346 ], [ 11.601562, 23.241346 ], [ 11.601562, 23.079732 ], [ 11.250000, 23.079732 ], [ 11.250000, 22.917923 ], [ 10.898438, 22.917923 ], [ 10.898438, 22.755921 ], [ 10.722656, 22.755921 ], [ 10.722656, 22.593726 ], [ 10.371094, 22.593726 ], [ 10.371094, 22.431340 ], [ 10.019531, 22.431340 ], [ 10.019531, 22.268764 ], [ 9.843750, 22.268764 ], [ 9.843750, 22.105999 ], [ 9.492188, 22.105999 ], [ 9.492188, 21.943046 ], [ 9.140625, 21.943046 ], [ 9.140625, 21.779905 ], [ 8.789062, 21.779905 ], [ 8.789062, 21.616579 ], [ 8.613281, 21.616579 ], [ 8.613281, 21.453069 ], [ 8.261719, 21.453069 ], [ 8.261719, 21.289374 ], [ 8.085938, 21.289374 ], [ 8.085938, 21.125498 ], [ 7.910156, 21.125498 ], [ 7.910156, 20.961440 ], [ 7.558594, 20.961440 ], [ 7.558594, 20.797201 ], [ 7.382812, 20.797201 ], [ 7.382812, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.468189 ], [ 6.855469, 20.468189 ], [ 6.855469, 20.303418 ], [ 6.503906, 20.303418 ], [ 6.503906, 20.138470 ], [ 6.328125, 20.138470 ], [ 6.328125, 19.973349 ], [ 6.152344, 19.973349 ], [ 6.152344, 19.808054 ], [ 5.800781, 19.808054 ], [ 5.800781, 19.642588 ], [ 5.449219, 19.642588 ], [ 5.449219, 19.476950 ], [ 5.097656, 19.476950 ], [ 5.097656, 19.311143 ], [ 4.570312, 19.311143 ], [ 4.570312, 19.145168 ], [ 3.867188, 19.145168 ], [ 3.867188, 18.979026 ], [ 3.164062, 18.979026 ], [ 3.164062, 19.642588 ], [ 2.812500, 19.642588 ], [ 2.812500, 19.808054 ], [ 2.460938, 19.808054 ], [ 2.460938, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.138470 ], [ 1.933594, 20.138470 ], [ 1.933594, 20.468189 ], [ 1.757812, 20.468189 ], [ 1.757812, 20.632784 ], [ 1.582031, 20.632784 ], [ 1.582031, 20.797201 ], [ 1.230469, 20.797201 ], [ 1.230469, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.125498 ], [ 0.878906, 21.125498 ], [ 0.878906, 21.289374 ], [ 0.527344, 21.289374 ], [ 0.527344, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ -0.175781, 21.779905 ], [ -0.175781, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 22.268764 ], [ -0.878906, 22.268764 ], [ -0.878906, 35.746512 ], [ -0.351562, 35.746512 ], [ -0.351562, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.173357 ], [ 0.527344, 36.173357 ], [ 0.527344, 36.315125 ], [ 0.878906, 36.315125 ], [ 0.878906, 36.456636 ], [ 1.230469, 36.456636 ], [ 1.230469, 36.597889 ], [ 2.460938, 36.597889 ], [ 2.460938, 36.738884 ], [ 4.042969, 36.738884 ], [ 4.042969, 36.879621 ], [ 4.921875, 36.879621 ], [ 4.921875, 36.738884 ], [ 5.625000, 36.738884 ], [ 5.625000, 36.879621 ], [ 5.976562, 36.879621 ], [ 5.976562, 37.020098 ], [ 6.328125, 37.020098 ], [ 6.328125, 37.160317 ], [ 7.382812, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.382812, 37.160317 ], [ 7.382812, 37.020098 ], [ 8.261719, 37.020098 ], [ 8.261719, 36.738884 ], [ 8.085938, 36.738884 ], [ 8.085938, 36.031332 ], [ 8.261719, 36.031332 ], [ 8.261719, 35.173808 ], [ 8.085938, 35.173808 ], [ 8.085938, 34.597042 ], [ 7.910156, 34.597042 ], [ 7.910156, 34.452218 ], [ 7.734375, 34.452218 ], [ 7.734375, 34.307144 ], [ 7.558594, 34.307144 ], [ 7.558594, 34.161818 ], [ 7.382812, 34.161818 ], [ 7.382812, 33.724340 ], [ 7.558594, 33.724340 ], [ 7.558594, 33.284620 ], [ 7.734375, 33.284620 ], [ 7.734375, 33.137551 ], [ 7.910156, 33.137551 ], [ 7.910156, 32.990236 ], [ 8.085938, 32.990236 ], [ 8.085938, 32.842674 ], [ 8.261719, 32.842674 ], [ 8.261719, 32.694866 ], [ 8.437500, 32.694866 ], [ 8.437500, 32.398516 ], [ 8.613281, 32.398516 ], [ 8.613281, 32.249974 ], [ 8.789062, 32.249974 ], [ 8.789062, 32.101190 ], [ 8.964844, 32.101190 ], [ 8.964844, 31.653381 ], [ 9.140625, 31.653381 ], [ 9.140625, 30.751278 ], [ 9.316406, 30.751278 ], [ 9.316406, 30.145127 ], [ 9.492188, 30.145127 ], [ 9.492188, 29.688053 ], [ 9.667969, 29.688053 ], [ 9.667969, 29.228890 ], [ 9.843750, 29.228890 ], [ 9.843750, 28.613459 ], [ 9.667969, 28.613459 ], [ 9.667969, 27.527758 ], [ 9.492188, 27.527758 ], [ 9.492188, 26.902477 ], [ 9.667969, 26.902477 ], [ 9.667969, 26.431228 ], [ 9.492188, 26.431228 ], [ 9.492188, 26.115986 ], [ 9.316406, 26.115986 ], [ 9.316406, 25.958045 ], [ 9.492188, 25.958045 ], [ 9.492188, 25.799891 ], [ 9.667969, 25.799891 ], [ 9.667969, 25.482951 ], [ 9.843750, 25.482951 ], [ 9.843750, 24.846565 ], [ 10.019531, 24.846565 ], [ 10.019531, 24.527135 ], [ 10.546875, 24.527135 ], [ 10.546875, 24.686952 ], [ 10.722656, 24.686952 ], [ 10.722656, 24.527135 ], [ 10.898438, 24.527135 ], [ 10.898438, 24.367114 ], [ 11.250000, 24.367114 ], [ 11.250000, 24.206890 ], [ 11.425781, 24.206890 ], [ 11.425781, 24.046464 ], [ 11.601562, 24.046464 ], [ 11.601562, 23.885838 ], [ 11.777344, 23.885838 ], [ 11.777344, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.402765 ], [ 11.601562, 23.402765 ], [ 11.601562, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 23.079732 ], [ 11.074219, 23.079732 ], [ 11.074219, 22.917923 ], [ 10.722656, 22.917923 ], [ 10.722656, 22.755921 ], [ 10.371094, 22.755921 ], [ 10.371094, 22.593726 ], [ 10.195312, 22.593726 ], [ 10.195312, 22.431340 ], [ 9.843750, 22.431340 ], [ 9.843750, 22.268764 ], [ 9.492188, 22.268764 ], [ 9.492188, 22.105999 ], [ 9.316406, 22.105999 ], [ 9.316406, 21.943046 ], [ 8.964844, 21.943046 ], [ 8.964844, 21.779905 ], [ 8.613281, 21.779905 ], [ 8.613281, 21.616579 ], [ 8.437500, 21.616579 ], [ 8.437500, 21.453069 ], [ 8.261719, 21.453069 ], [ 8.261719, 21.289374 ], [ 7.910156, 21.289374 ], [ 7.910156, 21.125498 ], [ 7.734375, 21.125498 ], [ 7.734375, 20.961440 ], [ 7.558594, 20.961440 ], [ 7.558594, 20.797201 ], [ 7.207031, 20.797201 ], [ 7.207031, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.468189 ], [ 6.855469, 20.468189 ], [ 6.855469, 20.303418 ], [ 6.503906, 20.303418 ], [ 6.503906, 20.138470 ], [ 6.328125, 20.138470 ], [ 6.328125, 19.973349 ], [ 6.152344, 19.973349 ], [ 6.152344, 19.808054 ], [ 5.800781, 19.808054 ], [ 5.800781, 19.642588 ], [ 5.449219, 19.642588 ], [ 5.449219, 19.476950 ], [ 4.746094, 19.476950 ], [ 4.746094, 19.311143 ], [ 3.691406, 19.311143 ], [ 3.691406, 19.145168 ], [ 2.988281, 19.145168 ], [ 2.988281, 19.808054 ], [ 2.636719, 19.808054 ], [ 2.636719, 19.973349 ], [ 2.285156, 19.973349 ], [ 2.285156, 20.138470 ], [ 1.933594, 20.138470 ], [ 1.933594, 20.468189 ], [ 1.757812, 20.468189 ], [ 1.757812, 20.632784 ], [ 1.582031, 20.632784 ], [ 1.582031, 20.797201 ], [ 1.230469, 20.797201 ], [ 1.230469, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.125498 ], [ 0.878906, 21.125498 ], [ 0.878906, 21.289374 ], [ 0.527344, 21.289374 ], [ 0.527344, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ -0.175781, 21.779905 ], [ -0.175781, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 22.268764 ], [ -0.878906, 22.268764 ], [ -0.878906, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.175781, 36.031332 ], [ 0.175781, 36.173357 ], [ 0.351562, 36.173357 ], [ 0.351562, 36.315125 ], [ 0.703125, 36.315125 ], [ 0.703125, 36.456636 ], [ 1.054688, 36.456636 ], [ 1.054688, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 36.738884 ], [ 2.460938, 36.738884 ], [ 2.460938, 36.879621 ], [ 4.921875, 36.879621 ], [ 4.921875, 36.738884 ], [ 5.449219, 36.738884 ], [ 5.449219, 36.879621 ], [ 5.800781, 36.879621 ], [ 5.800781, 37.020098 ], [ 6.152344, 37.020098 ], [ 6.152344, 37.160317 ], [ 7.382812, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.601562, 33.137551 ], [ 11.601562, 32.990236 ], [ 12.304688, 32.990236 ], [ 12.304688, 32.842674 ], [ 13.359375, 32.842674 ], [ 13.359375, 32.694866 ], [ 14.062500, 32.694866 ], [ 14.062500, 32.546813 ], [ 14.414062, 32.546813 ], [ 14.414062, 32.398516 ], [ 14.941406, 32.398516 ], [ 14.941406, 32.249974 ], [ 15.292969, 32.249974 ], [ 15.292969, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.503629 ], [ 15.644531, 31.503629 ], [ 15.644531, 31.353637 ], [ 15.996094, 31.353637 ], [ 15.996094, 31.203405 ], [ 16.875000, 31.203405 ], [ 16.875000, 31.052934 ], [ 17.226562, 31.052934 ], [ 17.226562, 30.902225 ], [ 17.753906, 30.902225 ], [ 17.753906, 30.751278 ], [ 18.105469, 30.751278 ], [ 18.105469, 30.600094 ], [ 18.457031, 30.600094 ], [ 18.457031, 30.448674 ], [ 18.808594, 30.448674 ], [ 18.808594, 30.297018 ], [ 19.335938, 30.297018 ], [ 19.335938, 30.448674 ], [ 19.511719, 30.448674 ], [ 19.511719, 30.600094 ], [ 19.687500, 30.600094 ], [ 19.687500, 30.751278 ], [ 19.863281, 30.751278 ], [ 19.863281, 30.902225 ], [ 20.039062, 30.902225 ], [ 20.039062, 31.353637 ], [ 19.863281, 31.353637 ], [ 19.863281, 31.802893 ], [ 20.039062, 31.802893 ], [ 20.039062, 32.101190 ], [ 20.214844, 32.101190 ], [ 20.214844, 32.249974 ], [ 20.390625, 32.249974 ], [ 20.390625, 32.398516 ], [ 20.742188, 32.398516 ], [ 20.742188, 32.546813 ], [ 20.917969, 32.546813 ], [ 20.917969, 32.694866 ], [ 21.445312, 32.694866 ], [ 21.445312, 32.842674 ], [ 22.148438, 32.842674 ], [ 22.148438, 32.694866 ], [ 22.851562, 32.694866 ], [ 22.851562, 32.546813 ], [ 23.027344, 32.546813 ], [ 23.027344, 32.249974 ], [ 23.554688, 32.249974 ], [ 23.554688, 32.101190 ], [ 23.730469, 32.101190 ], [ 23.730469, 31.952162 ], [ 24.960938, 31.952162 ], [ 24.960938, 31.653381 ], [ 25.136719, 31.653381 ], [ 25.136719, 31.353637 ], [ 24.960938, 31.353637 ], [ 24.960938, 31.052934 ], [ 24.785156, 31.052934 ], [ 24.785156, 30.751278 ], [ 24.960938, 30.751278 ], [ 24.960938, 30.297018 ], [ 24.785156, 30.297018 ], [ 24.785156, 29.535230 ], [ 24.960938, 29.535230 ], [ 24.960938, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.642588 ], [ 23.554688, 19.642588 ], [ 23.554688, 19.808054 ], [ 23.203125, 19.808054 ], [ 23.203125, 19.973349 ], [ 22.851562, 19.973349 ], [ 22.851562, 20.138470 ], [ 22.500000, 20.138470 ], [ 22.500000, 20.303418 ], [ 22.148438, 20.303418 ], [ 22.148438, 20.468189 ], [ 21.796875, 20.468189 ], [ 21.796875, 20.632784 ], [ 21.445312, 20.632784 ], [ 21.445312, 20.797201 ], [ 21.093750, 20.797201 ], [ 21.093750, 20.961440 ], [ 20.742188, 20.961440 ], [ 20.742188, 21.125498 ], [ 20.390625, 21.125498 ], [ 20.390625, 21.289374 ], [ 20.039062, 21.289374 ], [ 20.039062, 21.453069 ], [ 19.687500, 21.453069 ], [ 19.687500, 21.616579 ], [ 19.335938, 21.616579 ], [ 19.335938, 21.779905 ], [ 18.984375, 21.779905 ], [ 18.984375, 21.943046 ], [ 18.632812, 21.943046 ], [ 18.632812, 22.105999 ], [ 18.281250, 22.105999 ], [ 18.281250, 22.268764 ], [ 17.929688, 22.268764 ], [ 17.929688, 22.431340 ], [ 17.578125, 22.431340 ], [ 17.578125, 22.593726 ], [ 17.226562, 22.593726 ], [ 17.226562, 22.755921 ], [ 16.875000, 22.755921 ], [ 16.875000, 22.917923 ], [ 16.523438, 22.917923 ], [ 16.523438, 23.079732 ], [ 16.171875, 23.079732 ], [ 16.171875, 23.241346 ], [ 15.468750, 23.241346 ], [ 15.468750, 23.079732 ], [ 15.117188, 23.079732 ], [ 15.117188, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.755921 ], [ 14.589844, 22.755921 ], [ 14.589844, 22.593726 ], [ 14.238281, 22.593726 ], [ 14.238281, 22.431340 ], [ 13.886719, 22.431340 ], [ 13.886719, 22.755921 ], [ 13.710938, 22.755921 ], [ 13.710938, 22.917923 ], [ 13.535156, 22.917923 ], [ 13.535156, 23.079732 ], [ 13.007812, 23.079732 ], [ 13.007812, 23.241346 ], [ 12.304688, 23.241346 ], [ 12.304688, 23.402765 ], [ 11.953125, 23.402765 ], [ 11.953125, 23.563987 ], [ 11.777344, 23.563987 ], [ 11.777344, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 24.046464 ], [ 11.425781, 24.046464 ], [ 11.425781, 24.206890 ], [ 11.074219, 24.206890 ], [ 11.074219, 24.367114 ], [ 10.371094, 24.367114 ], [ 10.371094, 24.527135 ], [ 10.195312, 24.527135 ], [ 10.195312, 24.846565 ], [ 10.019531, 24.846565 ], [ 10.019531, 25.165173 ], [ 9.843750, 25.165173 ], [ 9.843750, 25.324167 ], [ 9.667969, 25.324167 ], [ 9.667969, 25.641526 ], [ 9.492188, 25.641526 ], [ 9.492188, 25.958045 ], [ 9.316406, 25.958045 ], [ 9.316406, 26.115986 ], [ 9.492188, 26.115986 ], [ 9.492188, 26.431228 ], [ 9.667969, 26.431228 ], [ 9.667969, 27.371767 ], [ 9.843750, 27.371767 ], [ 9.843750, 27.839076 ], [ 9.667969, 27.839076 ], [ 9.667969, 28.459033 ], [ 9.843750, 28.459033 ], [ 9.843750, 29.535230 ], [ 9.667969, 29.535230 ], [ 9.667969, 29.993002 ], [ 9.492188, 29.993002 ], [ 9.492188, 30.297018 ], [ 9.667969, 30.297018 ], [ 9.667969, 30.448674 ], [ 10.019531, 30.448674 ], [ 10.019531, 31.353637 ], [ 10.195312, 31.353637 ], [ 10.195312, 31.503629 ], [ 10.546875, 31.503629 ], [ 10.546875, 31.653381 ], [ 10.722656, 31.653381 ], [ 10.722656, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 32.101190 ], [ 11.074219, 32.101190 ], [ 11.074219, 32.249974 ], [ 11.425781, 32.249974 ], [ 11.425781, 33.137551 ], [ 11.601562, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.601562, 33.137551 ], [ 11.601562, 32.990236 ], [ 12.304688, 32.990236 ], [ 12.304688, 32.842674 ], [ 13.007812, 32.842674 ], [ 13.007812, 32.990236 ], [ 13.359375, 32.990236 ], [ 13.359375, 32.842674 ], [ 14.062500, 32.842674 ], [ 14.062500, 32.694866 ], [ 14.414062, 32.694866 ], [ 14.414062, 32.546813 ], [ 14.765625, 32.546813 ], [ 14.765625, 32.398516 ], [ 15.117188, 32.398516 ], [ 15.117188, 32.249974 ], [ 15.292969, 32.249974 ], [ 15.292969, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.653381 ], [ 15.644531, 31.653381 ], [ 15.644531, 31.503629 ], [ 15.820312, 31.503629 ], [ 15.820312, 31.353637 ], [ 16.171875, 31.353637 ], [ 16.171875, 31.203405 ], [ 16.699219, 31.203405 ], [ 16.699219, 31.052934 ], [ 17.402344, 31.052934 ], [ 17.402344, 30.902225 ], [ 17.929688, 30.902225 ], [ 17.929688, 30.751278 ], [ 18.281250, 30.751278 ], [ 18.281250, 30.600094 ], [ 18.457031, 30.600094 ], [ 18.457031, 30.448674 ], [ 18.808594, 30.448674 ], [ 18.808594, 30.297018 ], [ 19.160156, 30.297018 ], [ 19.160156, 30.448674 ], [ 19.511719, 30.448674 ], [ 19.511719, 30.600094 ], [ 19.687500, 30.600094 ], [ 19.687500, 30.751278 ], [ 19.863281, 30.751278 ], [ 19.863281, 30.902225 ], [ 20.039062, 30.902225 ], [ 20.039062, 31.203405 ], [ 19.863281, 31.203405 ], [ 19.863281, 31.503629 ], [ 19.687500, 31.503629 ], [ 19.687500, 31.802893 ], [ 19.863281, 31.802893 ], [ 19.863281, 32.101190 ], [ 20.039062, 32.101190 ], [ 20.039062, 32.249974 ], [ 20.214844, 32.249974 ], [ 20.214844, 32.398516 ], [ 20.390625, 32.398516 ], [ 20.390625, 32.546813 ], [ 20.566406, 32.546813 ], [ 20.566406, 32.694866 ], [ 20.742188, 32.694866 ], [ 20.742188, 32.842674 ], [ 21.972656, 32.842674 ], [ 21.972656, 32.694866 ], [ 22.851562, 32.694866 ], [ 22.851562, 32.546813 ], [ 23.027344, 32.546813 ], [ 23.027344, 32.249974 ], [ 23.554688, 32.249974 ], [ 23.554688, 32.101190 ], [ 24.257812, 32.101190 ], [ 24.257812, 31.952162 ], [ 24.785156, 31.952162 ], [ 24.785156, 31.802893 ], [ 24.960938, 31.802893 ], [ 24.960938, 31.653381 ], [ 25.136719, 31.653381 ], [ 25.136719, 31.503629 ], [ 24.960938, 31.503629 ], [ 24.960938, 31.203405 ], [ 24.785156, 31.203405 ], [ 24.785156, 30.448674 ], [ 24.609375, 30.448674 ], [ 24.609375, 29.840644 ], [ 24.785156, 29.840644 ], [ 24.785156, 29.535230 ], [ 24.960938, 29.535230 ], [ 24.960938, 20.138470 ], [ 23.730469, 20.138470 ], [ 23.730469, 19.642588 ], [ 23.554688, 19.642588 ], [ 23.554688, 19.808054 ], [ 23.203125, 19.808054 ], [ 23.203125, 19.973349 ], [ 22.851562, 19.973349 ], [ 22.851562, 20.138470 ], [ 22.500000, 20.138470 ], [ 22.500000, 20.303418 ], [ 22.148438, 20.303418 ], [ 22.148438, 20.468189 ], [ 21.796875, 20.468189 ], [ 21.796875, 20.632784 ], [ 21.445312, 20.632784 ], [ 21.445312, 20.797201 ], [ 21.093750, 20.797201 ], [ 21.093750, 20.961440 ], [ 20.742188, 20.961440 ], [ 20.742188, 21.125498 ], [ 20.390625, 21.125498 ], [ 20.390625, 21.289374 ], [ 20.039062, 21.289374 ], [ 20.039062, 21.453069 ], [ 19.687500, 21.453069 ], [ 19.687500, 21.616579 ], [ 19.511719, 21.616579 ], [ 19.511719, 21.779905 ], [ 19.160156, 21.779905 ], [ 19.160156, 21.943046 ], [ 18.808594, 21.943046 ], [ 18.808594, 22.105999 ], [ 18.457031, 22.105999 ], [ 18.457031, 22.268764 ], [ 18.105469, 22.268764 ], [ 18.105469, 22.431340 ], [ 17.753906, 22.431340 ], [ 17.753906, 22.593726 ], [ 17.578125, 22.593726 ], [ 17.578125, 22.755921 ], [ 17.226562, 22.755921 ], [ 17.226562, 22.917923 ], [ 16.875000, 22.917923 ], [ 16.875000, 23.079732 ], [ 16.523438, 23.079732 ], [ 16.523438, 23.241346 ], [ 16.171875, 23.241346 ], [ 16.171875, 23.402765 ], [ 15.468750, 23.402765 ], [ 15.468750, 23.241346 ], [ 15.292969, 23.241346 ], [ 15.292969, 23.079732 ], [ 14.941406, 23.079732 ], [ 14.941406, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.755921 ], [ 14.414062, 22.755921 ], [ 14.414062, 22.593726 ], [ 13.886719, 22.593726 ], [ 13.886719, 22.755921 ], [ 13.710938, 22.755921 ], [ 13.710938, 22.917923 ], [ 13.535156, 22.917923 ], [ 13.535156, 23.079732 ], [ 13.183594, 23.079732 ], [ 13.183594, 23.241346 ], [ 12.656250, 23.241346 ], [ 12.656250, 23.402765 ], [ 12.128906, 23.402765 ], [ 12.128906, 23.563987 ], [ 11.777344, 23.563987 ], [ 11.777344, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 24.046464 ], [ 11.425781, 24.046464 ], [ 11.425781, 24.206890 ], [ 11.250000, 24.206890 ], [ 11.250000, 24.367114 ], [ 10.898438, 24.367114 ], [ 10.898438, 24.527135 ], [ 10.722656, 24.527135 ], [ 10.722656, 24.686952 ], [ 10.546875, 24.686952 ], [ 10.546875, 24.527135 ], [ 10.019531, 24.527135 ], [ 10.019531, 24.846565 ], [ 9.843750, 24.846565 ], [ 9.843750, 25.482951 ], [ 9.667969, 25.482951 ], [ 9.667969, 25.799891 ], [ 9.492188, 25.799891 ], [ 9.492188, 25.958045 ], [ 9.316406, 25.958045 ], [ 9.316406, 26.115986 ], [ 9.492188, 26.115986 ], [ 9.492188, 26.431228 ], [ 9.667969, 26.431228 ], [ 9.667969, 26.902477 ], [ 9.492188, 26.902477 ], [ 9.492188, 27.527758 ], [ 9.667969, 27.527758 ], [ 9.667969, 28.613459 ], [ 9.843750, 28.613459 ], [ 9.843750, 29.228890 ], [ 9.667969, 29.228890 ], [ 9.667969, 29.688053 ], [ 9.492188, 29.688053 ], [ 9.492188, 30.145127 ], [ 9.316406, 30.145127 ], [ 9.316406, 30.448674 ], [ 9.667969, 30.448674 ], [ 9.667969, 30.600094 ], [ 9.843750, 30.600094 ], [ 9.843750, 30.751278 ], [ 10.019531, 30.751278 ], [ 10.019531, 31.203405 ], [ 9.843750, 31.203405 ], [ 9.843750, 31.503629 ], [ 10.195312, 31.503629 ], [ 10.195312, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.802893 ], [ 10.722656, 31.802893 ], [ 10.722656, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 32.101190 ], [ 11.074219, 32.101190 ], [ 11.074219, 32.249974 ], [ 11.425781, 32.249974 ], [ 11.425781, 33.137551 ], [ 11.601562, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.304688, 23.402765 ], [ 12.304688, 23.241346 ], [ 13.007812, 23.241346 ], [ 13.007812, 23.079732 ], [ 13.535156, 23.079732 ], [ 13.535156, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.755921 ], [ 13.886719, 22.755921 ], [ 13.886719, 22.431340 ], [ 14.238281, 22.431340 ], [ 14.238281, 22.593726 ], [ 14.589844, 22.593726 ], [ 14.589844, 22.755921 ], [ 14.765625, 22.755921 ], [ 14.765625, 22.431340 ], [ 14.941406, 22.431340 ], [ 14.941406, 21.616579 ], [ 15.117188, 21.616579 ], [ 15.117188, 21.125498 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.632784 ], [ 15.644531, 20.632784 ], [ 15.644531, 20.468189 ], [ 15.820312, 20.468189 ], [ 15.820312, 20.138470 ], [ 15.644531, 20.138470 ], [ 15.644531, 19.476950 ], [ 15.468750, 19.476950 ], [ 15.468750, 18.479609 ], [ 15.292969, 18.479609 ], [ 15.292969, 16.467695 ], [ 15.117188, 16.467695 ], [ 15.117188, 16.299051 ], [ 14.765625, 16.299051 ], [ 14.765625, 16.130262 ], [ 14.589844, 16.130262 ], [ 14.589844, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 15.792254 ], [ 14.062500, 15.792254 ], [ 14.062500, 15.623037 ], [ 13.886719, 15.623037 ], [ 13.886719, 15.284185 ], [ 13.710938, 15.284185 ], [ 13.710938, 14.604847 ], [ 13.535156, 14.604847 ], [ 13.535156, 14.264383 ], [ 13.710938, 14.264383 ], [ 13.710938, 13.923404 ], [ 13.886719, 13.923404 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.589844, 13.068777 ], [ 14.414062, 13.068777 ], [ 14.414062, 12.726084 ], [ 14.238281, 12.726084 ], [ 14.238281, 12.382928 ], [ 13.886719, 12.382928 ], [ 13.886719, 12.726084 ], [ 13.710938, 12.726084 ], [ 13.710938, 13.068777 ], [ 13.535156, 13.068777 ], [ 13.535156, 13.410994 ], [ 13.359375, 13.410994 ], [ 13.359375, 13.581921 ], [ 13.007812, 13.581921 ], [ 13.007812, 13.410994 ], [ 12.832031, 13.410994 ], [ 12.832031, 13.239945 ], [ 12.480469, 13.239945 ], [ 12.480469, 13.068777 ], [ 11.953125, 13.068777 ], [ 11.953125, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 13.410994 ], [ 11.074219, 13.410994 ], [ 11.074219, 13.239945 ], [ 10.195312, 13.239945 ], [ 10.195312, 13.068777 ], [ 9.843750, 13.068777 ], [ 9.843750, 12.897489 ], [ 8.613281, 12.897489 ], [ 8.613281, 13.068777 ], [ 8.261719, 13.068777 ], [ 8.261719, 13.239945 ], [ 7.910156, 13.239945 ], [ 7.910156, 13.410994 ], [ 7.734375, 13.410994 ], [ 7.734375, 13.239945 ], [ 7.558594, 13.239945 ], [ 7.558594, 13.068777 ], [ 6.679688, 13.068777 ], [ 6.679688, 13.239945 ], [ 6.503906, 13.239945 ], [ 6.503906, 13.410994 ], [ 6.152344, 13.410994 ], [ 6.152344, 13.581921 ], [ 5.800781, 13.581921 ], [ 5.800781, 13.752725 ], [ 5.449219, 13.752725 ], [ 5.449219, 13.923404 ], [ 5.097656, 13.923404 ], [ 5.097656, 13.752725 ], [ 4.394531, 13.752725 ], [ 4.394531, 13.581921 ], [ 4.042969, 13.581921 ], [ 4.042969, 12.726084 ], [ 3.867188, 12.726084 ], [ 3.867188, 12.554564 ], [ 3.691406, 12.554564 ], [ 3.691406, 11.695273 ], [ 3.515625, 11.695273 ], [ 3.515625, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 12.039321 ], [ 2.812500, 12.039321 ], [ 2.812500, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 12.039321 ], [ 2.285156, 12.039321 ], [ 2.285156, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 1.757812, 12.554564 ], [ 1.757812, 12.726084 ], [ 1.230469, 12.726084 ], [ 1.230469, 12.897489 ], [ 1.054688, 12.897489 ], [ 1.054688, 13.410994 ], [ 0.878906, 13.410994 ], [ 0.878906, 13.581921 ], [ 0.527344, 13.581921 ], [ 0.527344, 13.752725 ], [ 0.351562, 13.752725 ], [ 0.351562, 14.944785 ], [ 1.230469, 14.944785 ], [ 1.230469, 15.114553 ], [ 1.406250, 15.114553 ], [ 1.406250, 15.284185 ], [ 2.285156, 15.284185 ], [ 2.285156, 15.453680 ], [ 3.339844, 15.453680 ], [ 3.339844, 15.623037 ], [ 3.691406, 15.623037 ], [ 3.691406, 16.130262 ], [ 3.867188, 16.130262 ], [ 3.867188, 16.467695 ], [ 4.042969, 16.467695 ], [ 4.042969, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.145168 ], [ 4.570312, 19.145168 ], [ 4.570312, 19.311143 ], [ 5.097656, 19.311143 ], [ 5.097656, 19.476950 ], [ 5.449219, 19.476950 ], [ 5.449219, 19.642588 ], [ 5.800781, 19.642588 ], [ 5.800781, 19.808054 ], [ 6.152344, 19.808054 ], [ 6.152344, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 20.138470 ], [ 6.503906, 20.138470 ], [ 6.503906, 20.303418 ], [ 6.855469, 20.303418 ], [ 6.855469, 20.468189 ], [ 7.031250, 20.468189 ], [ 7.031250, 20.632784 ], [ 7.382812, 20.632784 ], [ 7.382812, 20.797201 ], [ 7.558594, 20.797201 ], [ 7.558594, 20.961440 ], [ 7.910156, 20.961440 ], [ 7.910156, 21.125498 ], [ 8.085938, 21.125498 ], [ 8.085938, 21.289374 ], [ 8.261719, 21.289374 ], [ 8.261719, 21.453069 ], [ 8.613281, 21.453069 ], [ 8.613281, 21.616579 ], [ 8.789062, 21.616579 ], [ 8.789062, 21.779905 ], [ 9.140625, 21.779905 ], [ 9.140625, 21.943046 ], [ 9.492188, 21.943046 ], [ 9.492188, 22.105999 ], [ 9.843750, 22.105999 ], [ 9.843750, 22.268764 ], [ 10.019531, 22.268764 ], [ 10.019531, 22.431340 ], [ 10.371094, 22.431340 ], [ 10.371094, 22.593726 ], [ 10.722656, 22.593726 ], [ 10.722656, 22.755921 ], [ 10.898438, 22.755921 ], [ 10.898438, 22.917923 ], [ 11.250000, 22.917923 ], [ 11.250000, 23.079732 ], [ 11.601562, 23.079732 ], [ 11.601562, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.402765 ], [ 12.304688, 23.402765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.128906, 23.563987 ], [ 12.128906, 23.402765 ], [ 12.656250, 23.402765 ], [ 12.656250, 23.241346 ], [ 13.183594, 23.241346 ], [ 13.183594, 23.079732 ], [ 13.535156, 23.079732 ], [ 13.535156, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.755921 ], [ 13.886719, 22.755921 ], [ 13.886719, 22.593726 ], [ 14.414062, 22.593726 ], [ 14.414062, 22.755921 ], [ 14.765625, 22.755921 ], [ 14.765625, 22.105999 ], [ 14.941406, 22.105999 ], [ 14.941406, 21.289374 ], [ 15.292969, 21.289374 ], [ 15.292969, 21.125498 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.632784 ], [ 15.644531, 20.632784 ], [ 15.644531, 20.468189 ], [ 15.820312, 20.468189 ], [ 15.820312, 20.138470 ], [ 15.644531, 20.138470 ], [ 15.644531, 19.476950 ], [ 15.468750, 19.476950 ], [ 15.468750, 18.479609 ], [ 15.292969, 18.479609 ], [ 15.292969, 17.308688 ], [ 15.117188, 17.308688 ], [ 15.117188, 16.467695 ], [ 14.765625, 16.467695 ], [ 14.765625, 16.299051 ], [ 14.589844, 16.299051 ], [ 14.589844, 16.130262 ], [ 14.414062, 16.130262 ], [ 14.414062, 15.961329 ], [ 14.062500, 15.961329 ], [ 14.062500, 15.792254 ], [ 13.886719, 15.792254 ], [ 13.886719, 15.453680 ], [ 13.710938, 15.453680 ], [ 13.710938, 14.774883 ], [ 13.535156, 14.774883 ], [ 13.535156, 14.264383 ], [ 13.710938, 14.264383 ], [ 13.710938, 14.093957 ], [ 13.886719, 14.093957 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.589844, 13.068777 ], [ 14.414062, 13.068777 ], [ 14.414062, 12.897489 ], [ 14.062500, 12.897489 ], [ 14.062500, 12.554564 ], [ 13.710938, 12.554564 ], [ 13.710938, 12.897489 ], [ 13.535156, 12.897489 ], [ 13.535156, 13.068777 ], [ 13.359375, 13.068777 ], [ 13.359375, 13.410994 ], [ 13.183594, 13.410994 ], [ 13.183594, 13.581921 ], [ 12.832031, 13.581921 ], [ 12.832031, 13.410994 ], [ 12.656250, 13.410994 ], [ 12.656250, 13.239945 ], [ 12.480469, 13.239945 ], [ 12.480469, 13.068777 ], [ 11.953125, 13.068777 ], [ 11.953125, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 13.410994 ], [ 10.019531, 13.410994 ], [ 10.019531, 13.239945 ], [ 9.843750, 13.239945 ], [ 9.843750, 13.068777 ], [ 9.667969, 13.068777 ], [ 9.667969, 12.897489 ], [ 8.613281, 12.897489 ], [ 8.613281, 13.068777 ], [ 8.261719, 13.068777 ], [ 8.261719, 13.239945 ], [ 7.910156, 13.239945 ], [ 7.910156, 13.410994 ], [ 7.558594, 13.410994 ], [ 7.558594, 13.239945 ], [ 6.503906, 13.239945 ], [ 6.503906, 13.410994 ], [ 6.328125, 13.410994 ], [ 6.328125, 13.581921 ], [ 5.976562, 13.581921 ], [ 5.976562, 13.752725 ], [ 5.449219, 13.752725 ], [ 5.449219, 13.923404 ], [ 4.921875, 13.923404 ], [ 4.921875, 13.752725 ], [ 4.218750, 13.752725 ], [ 4.218750, 13.581921 ], [ 4.042969, 13.581921 ], [ 4.042969, 13.239945 ], [ 3.867188, 13.239945 ], [ 3.867188, 12.897489 ], [ 3.691406, 12.897489 ], [ 3.691406, 12.554564 ], [ 3.515625, 12.554564 ], [ 3.515625, 11.695273 ], [ 3.339844, 11.695273 ], [ 3.339844, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 12.039321 ], [ 2.988281, 12.039321 ], [ 2.988281, 12.211180 ], [ 2.812500, 12.211180 ], [ 2.812500, 12.382928 ], [ 2.460938, 12.382928 ], [ 2.460938, 12.211180 ], [ 2.285156, 12.211180 ], [ 2.285156, 12.039321 ], [ 2.109375, 12.039321 ], [ 2.109375, 12.726084 ], [ 1.406250, 12.726084 ], [ 1.406250, 12.897489 ], [ 0.878906, 12.897489 ], [ 0.878906, 13.410994 ], [ 0.703125, 13.410994 ], [ 0.703125, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.923404 ], [ 0.351562, 13.923404 ], [ 0.351562, 14.264383 ], [ 0.175781, 14.264383 ], [ 0.175781, 14.774883 ], [ 0.351562, 14.774883 ], [ 0.351562, 14.944785 ], [ 0.703125, 14.944785 ], [ 0.703125, 15.114553 ], [ 1.054688, 15.114553 ], [ 1.054688, 15.284185 ], [ 1.230469, 15.284185 ], [ 1.230469, 15.453680 ], [ 3.164062, 15.453680 ], [ 3.164062, 15.623037 ], [ 3.515625, 15.623037 ], [ 3.515625, 15.961329 ], [ 3.691406, 15.961329 ], [ 3.691406, 16.299051 ], [ 3.867188, 16.299051 ], [ 3.867188, 16.636192 ], [ 4.042969, 16.636192 ], [ 4.042969, 16.804541 ], [ 4.218750, 16.804541 ], [ 4.218750, 19.311143 ], [ 4.746094, 19.311143 ], [ 4.746094, 19.476950 ], [ 5.449219, 19.476950 ], [ 5.449219, 19.642588 ], [ 5.800781, 19.642588 ], [ 5.800781, 19.808054 ], [ 6.152344, 19.808054 ], [ 6.152344, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 20.138470 ], [ 6.503906, 20.138470 ], [ 6.503906, 20.303418 ], [ 6.855469, 20.303418 ], [ 6.855469, 20.468189 ], [ 7.031250, 20.468189 ], [ 7.031250, 20.632784 ], [ 7.207031, 20.632784 ], [ 7.207031, 20.797201 ], [ 7.558594, 20.797201 ], [ 7.558594, 20.961440 ], [ 7.734375, 20.961440 ], [ 7.734375, 21.125498 ], [ 7.910156, 21.125498 ], [ 7.910156, 21.289374 ], [ 8.261719, 21.289374 ], [ 8.261719, 21.453069 ], [ 8.437500, 21.453069 ], [ 8.437500, 21.616579 ], [ 8.613281, 21.616579 ], [ 8.613281, 21.779905 ], [ 8.964844, 21.779905 ], [ 8.964844, 21.943046 ], [ 9.316406, 21.943046 ], [ 9.316406, 22.105999 ], [ 9.492188, 22.105999 ], [ 9.492188, 22.268764 ], [ 9.843750, 22.268764 ], [ 9.843750, 22.431340 ], [ 10.195312, 22.431340 ], [ 10.195312, 22.593726 ], [ 10.371094, 22.593726 ], [ 10.371094, 22.755921 ], [ 10.722656, 22.755921 ], [ 10.722656, 22.917923 ], [ 11.074219, 22.917923 ], [ 11.074219, 23.079732 ], [ 11.250000, 23.079732 ], [ 11.250000, 23.241346 ], [ 11.601562, 23.241346 ], [ 11.601562, 23.402765 ], [ 11.953125, 23.402765 ], [ 11.953125, 23.563987 ], [ 12.128906, 23.563987 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.314919 ], [ 0.878906, 10.314919 ], [ 0.878906, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.968851 ], [ 1.230469, 9.968851 ], [ 1.230469, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.582031, 9.102097 ], [ 1.582031, 6.664608 ], [ 1.757812, 6.664608 ], [ 1.757812, 6.315299 ], [ 1.933594, 6.315299 ], [ 1.933594, 6.140555 ], [ 1.582031, 6.140555 ], [ 1.582031, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 6.140555 ], [ 0.878906, 6.140555 ], [ 0.878906, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 9.102097 ], [ 0.351562, 9.102097 ], [ 0.351562, 10.141932 ], [ 0.175781, 10.141932 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 11.178402 ], [ 0.351562, 11.005904 ], [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.314919 ], [ 1.054688, 10.314919 ], [ 1.054688, 10.141932 ], [ 1.230469, 10.141932 ], [ 1.230469, 9.968851 ], [ 1.406250, 9.968851 ], [ 1.406250, 9.275622 ], [ 1.582031, 9.275622 ], [ 1.582031, 6.489983 ], [ 1.757812, 6.489983 ], [ 1.757812, 6.140555 ], [ 1.582031, 6.140555 ], [ 1.582031, 5.965754 ], [ 0.878906, 5.965754 ], [ 0.878906, 6.140555 ], [ 0.703125, 6.140555 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.188101 ], [ 0.351562, 7.188101 ], [ 0.351562, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 8.059230 ], [ 0.703125, 8.059230 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 8.581021 ], [ 0.351562, 8.581021 ], [ 0.351562, 10.314919 ], [ 0.175781, 10.314919 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 10.660608 ], [ -0.175781, 10.660608 ], [ -0.175781, 11.005904 ], [ 0.000000, 11.005904 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.211180 ], [ 2.812500, 12.039321 ], [ 3.164062, 12.039321 ], [ 3.164062, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 11.695273 ], [ 3.691406, 11.695273 ], [ 3.691406, 11.523088 ], [ 3.515625, 11.523088 ], [ 3.515625, 11.178402 ], [ 3.691406, 11.178402 ], [ 3.691406, 10.833306 ], [ 3.867188, 10.833306 ], [ 3.867188, 10.487812 ], [ 3.691406, 10.487812 ], [ 3.691406, 10.314919 ], [ 3.515625, 10.314919 ], [ 3.515625, 10.141932 ], [ 3.691406, 10.141932 ], [ 3.691406, 9.968851 ], [ 3.515625, 9.968851 ], [ 3.515625, 9.795678 ], [ 3.339844, 9.795678 ], [ 3.339844, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.275622 ], [ 2.988281, 9.275622 ], [ 2.988281, 8.928487 ], [ 2.812500, 8.928487 ], [ 2.812500, 8.581021 ], [ 2.636719, 8.581021 ], [ 2.636719, 8.233237 ], [ 2.812500, 8.233237 ], [ 2.812500, 7.013668 ], [ 2.636719, 7.013668 ], [ 2.636719, 6.315299 ], [ 2.460938, 6.315299 ], [ 2.460938, 6.140555 ], [ 1.933594, 6.140555 ], [ 1.933594, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.757812, 6.664608 ], [ 1.582031, 6.664608 ], [ 1.582031, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.230469, 9.795678 ], [ 1.230469, 9.968851 ], [ 1.054688, 9.968851 ], [ 1.054688, 10.141932 ], [ 0.878906, 10.141932 ], [ 0.878906, 10.314919 ], [ 0.703125, 10.314919 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.005904 ], [ 1.230469, 11.350797 ], [ 1.406250, 11.350797 ], [ 1.406250, 11.523088 ], [ 1.757812, 11.523088 ], [ 1.757812, 11.695273 ], [ 2.109375, 11.695273 ], [ 2.109375, 11.867351 ], [ 2.285156, 11.867351 ], [ 2.285156, 12.039321 ], [ 2.460938, 12.039321 ], [ 2.460938, 12.211180 ], [ 2.812500, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.382928 ], [ 2.812500, 12.211180 ], [ 2.988281, 12.211180 ], [ 2.988281, 12.039321 ], [ 3.164062, 12.039321 ], [ 3.164062, 11.867351 ], [ 3.339844, 11.867351 ], [ 3.339844, 11.695273 ], [ 3.515625, 11.695273 ], [ 3.515625, 11.005904 ], [ 3.691406, 11.005904 ], [ 3.691406, 10.660608 ], [ 3.515625, 10.660608 ], [ 3.515625, 10.314919 ], [ 3.691406, 10.314919 ], [ 3.691406, 9.968851 ], [ 3.515625, 9.968851 ], [ 3.515625, 9.795678 ], [ 3.339844, 9.795678 ], [ 3.339844, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.275622 ], [ 2.812500, 9.275622 ], [ 2.812500, 8.928487 ], [ 2.636719, 8.928487 ], [ 2.636719, 6.315299 ], [ 2.285156, 6.315299 ], [ 2.285156, 6.140555 ], [ 1.757812, 6.140555 ], [ 1.757812, 6.489983 ], [ 1.582031, 6.489983 ], [ 1.582031, 9.275622 ], [ 1.406250, 9.275622 ], [ 1.406250, 9.968851 ], [ 1.230469, 9.968851 ], [ 1.230469, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 10.314919 ], [ 0.703125, 10.314919 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.005904 ], [ 1.230469, 11.350797 ], [ 1.406250, 11.350797 ], [ 1.406250, 11.695273 ], [ 1.933594, 11.695273 ], [ 1.933594, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.039321 ], [ 2.285156, 12.039321 ], [ 2.285156, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 12.382928 ], [ 2.812500, 12.382928 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.923404 ], [ 5.449219, 13.752725 ], [ 5.800781, 13.752725 ], [ 5.800781, 13.581921 ], [ 6.152344, 13.581921 ], [ 6.152344, 13.410994 ], [ 6.503906, 13.410994 ], [ 6.503906, 13.239945 ], [ 6.679688, 13.239945 ], [ 6.679688, 13.068777 ], [ 7.558594, 13.068777 ], [ 7.558594, 13.239945 ], [ 7.734375, 13.239945 ], [ 7.734375, 13.410994 ], [ 7.910156, 13.410994 ], [ 7.910156, 13.239945 ], [ 8.261719, 13.239945 ], [ 8.261719, 13.068777 ], [ 8.613281, 13.068777 ], [ 8.613281, 12.897489 ], [ 9.843750, 12.897489 ], [ 9.843750, 13.068777 ], [ 10.195312, 13.068777 ], [ 10.195312, 13.239945 ], [ 11.074219, 13.239945 ], [ 11.074219, 13.410994 ], [ 11.601562, 13.410994 ], [ 11.601562, 13.239945 ], [ 11.953125, 13.239945 ], [ 11.953125, 13.068777 ], [ 12.480469, 13.068777 ], [ 12.480469, 13.239945 ], [ 12.832031, 13.239945 ], [ 12.832031, 13.410994 ], [ 13.007812, 13.410994 ], [ 13.007812, 13.581921 ], [ 13.359375, 13.581921 ], [ 13.359375, 13.410994 ], [ 13.535156, 13.410994 ], [ 13.535156, 13.068777 ], [ 13.710938, 13.068777 ], [ 13.710938, 12.726084 ], [ 13.886719, 12.726084 ], [ 13.886719, 12.382928 ], [ 14.414062, 12.382928 ], [ 14.414062, 12.039321 ], [ 14.589844, 12.039321 ], [ 14.589844, 11.867351 ], [ 14.414062, 11.867351 ], [ 14.414062, 11.350797 ], [ 14.238281, 11.350797 ], [ 14.238281, 11.178402 ], [ 13.886719, 11.178402 ], [ 13.886719, 11.005904 ], [ 13.710938, 11.005904 ], [ 13.710938, 10.833306 ], [ 13.535156, 10.833306 ], [ 13.535156, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.795678 ], [ 13.183594, 9.795678 ], [ 13.183594, 9.449062 ], [ 13.007812, 9.449062 ], [ 13.007812, 9.102097 ], [ 12.832031, 9.102097 ], [ 12.832031, 8.581021 ], [ 12.656250, 8.581021 ], [ 12.656250, 8.407168 ], [ 12.480469, 8.407168 ], [ 12.480469, 8.233237 ], [ 12.304688, 8.233237 ], [ 12.304688, 8.059230 ], [ 12.128906, 8.059230 ], [ 12.128906, 7.710992 ], [ 11.953125, 7.710992 ], [ 11.953125, 7.362467 ], [ 11.777344, 7.362467 ], [ 11.777344, 6.839170 ], [ 11.425781, 6.839170 ], [ 11.425781, 6.664608 ], [ 10.898438, 6.664608 ], [ 10.898438, 6.839170 ], [ 10.546875, 6.839170 ], [ 10.546875, 7.013668 ], [ 10.195312, 7.013668 ], [ 10.195312, 6.839170 ], [ 10.019531, 6.839170 ], [ 10.019531, 6.664608 ], [ 9.667969, 6.664608 ], [ 9.667969, 6.489983 ], [ 9.316406, 6.489983 ], [ 9.316406, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.965754 ], [ 8.964844, 5.965754 ], [ 8.964844, 5.615986 ], [ 8.789062, 5.615986 ], [ 8.789062, 5.266008 ], [ 8.613281, 5.266008 ], [ 8.613281, 4.915833 ], [ 8.437500, 4.915833 ], [ 8.437500, 4.740675 ], [ 8.261719, 4.740675 ], [ 8.261719, 4.565474 ], [ 7.734375, 4.565474 ], [ 7.734375, 4.390229 ], [ 7.031250, 4.390229 ], [ 7.031250, 4.214943 ], [ 5.800781, 4.214943 ], [ 5.800781, 4.565474 ], [ 5.625000, 4.565474 ], [ 5.625000, 4.740675 ], [ 5.449219, 4.740675 ], [ 5.449219, 5.090944 ], [ 5.273438, 5.090944 ], [ 5.273438, 5.441022 ], [ 5.097656, 5.441022 ], [ 5.097656, 5.615986 ], [ 4.921875, 5.615986 ], [ 4.921875, 5.790897 ], [ 4.746094, 5.790897 ], [ 4.746094, 5.965754 ], [ 4.570312, 5.965754 ], [ 4.570312, 6.140555 ], [ 4.394531, 6.140555 ], [ 4.394531, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 7.013668 ], [ 2.812500, 7.013668 ], [ 2.812500, 8.233237 ], [ 2.636719, 8.233237 ], [ 2.636719, 8.581021 ], [ 2.812500, 8.581021 ], [ 2.812500, 8.928487 ], [ 2.988281, 8.928487 ], [ 2.988281, 9.275622 ], [ 3.164062, 9.275622 ], [ 3.164062, 9.449062 ], [ 3.339844, 9.449062 ], [ 3.339844, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 9.968851 ], [ 3.691406, 9.968851 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.141932 ], [ 3.515625, 10.314919 ], [ 3.691406, 10.314919 ], [ 3.691406, 10.487812 ], [ 3.867188, 10.487812 ], [ 3.867188, 10.833306 ], [ 3.691406, 10.833306 ], [ 3.691406, 11.178402 ], [ 3.515625, 11.178402 ], [ 3.515625, 11.523088 ], [ 3.691406, 11.523088 ], [ 3.691406, 12.554564 ], [ 3.867188, 12.554564 ], [ 3.867188, 12.726084 ], [ 4.042969, 12.726084 ], [ 4.042969, 13.581921 ], [ 4.394531, 13.581921 ], [ 4.394531, 13.752725 ], [ 5.097656, 13.752725 ], [ 5.097656, 13.923404 ], [ 5.449219, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.923404 ], [ 5.449219, 13.752725 ], [ 5.976562, 13.752725 ], [ 5.976562, 13.581921 ], [ 6.328125, 13.581921 ], [ 6.328125, 13.410994 ], [ 6.503906, 13.410994 ], [ 6.503906, 13.239945 ], [ 7.558594, 13.239945 ], [ 7.558594, 13.410994 ], [ 7.910156, 13.410994 ], [ 7.910156, 13.239945 ], [ 8.261719, 13.239945 ], [ 8.261719, 13.068777 ], [ 8.613281, 13.068777 ], [ 8.613281, 12.897489 ], [ 9.667969, 12.897489 ], [ 9.667969, 13.068777 ], [ 9.843750, 13.068777 ], [ 9.843750, 13.239945 ], [ 10.019531, 13.239945 ], [ 10.019531, 13.410994 ], [ 11.601562, 13.410994 ], [ 11.601562, 13.239945 ], [ 11.953125, 13.239945 ], [ 11.953125, 13.068777 ], [ 12.480469, 13.068777 ], [ 12.480469, 13.239945 ], [ 12.656250, 13.239945 ], [ 12.656250, 13.410994 ], [ 12.832031, 13.410994 ], [ 12.832031, 13.581921 ], [ 13.183594, 13.581921 ], [ 13.183594, 13.410994 ], [ 13.359375, 13.410994 ], [ 13.359375, 13.068777 ], [ 13.535156, 13.068777 ], [ 13.535156, 12.897489 ], [ 13.710938, 12.897489 ], [ 13.710938, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 12.382928 ], [ 14.238281, 12.382928 ], [ 14.238281, 12.211180 ], [ 14.414062, 12.211180 ], [ 14.414062, 11.523088 ], [ 14.238281, 11.523088 ], [ 14.238281, 11.350797 ], [ 14.062500, 11.350797 ], [ 14.062500, 11.178402 ], [ 13.886719, 11.178402 ], [ 13.886719, 11.005904 ], [ 13.710938, 11.005904 ], [ 13.710938, 10.833306 ], [ 13.535156, 10.833306 ], [ 13.535156, 10.660608 ], [ 13.359375, 10.660608 ], [ 13.359375, 10.314919 ], [ 13.183594, 10.314919 ], [ 13.183594, 9.968851 ], [ 13.007812, 9.968851 ], [ 13.007812, 9.622414 ], [ 12.832031, 9.622414 ], [ 12.832031, 9.102097 ], [ 12.656250, 9.102097 ], [ 12.656250, 8.581021 ], [ 12.304688, 8.581021 ], [ 12.304688, 8.407168 ], [ 12.128906, 8.407168 ], [ 12.128906, 8.059230 ], [ 11.953125, 8.059230 ], [ 11.953125, 7.710992 ], [ 11.777344, 7.710992 ], [ 11.777344, 7.188101 ], [ 11.601562, 7.188101 ], [ 11.601562, 6.839170 ], [ 11.250000, 6.839170 ], [ 11.250000, 6.664608 ], [ 10.722656, 6.664608 ], [ 10.722656, 6.839170 ], [ 10.546875, 6.839170 ], [ 10.546875, 7.013668 ], [ 10.371094, 7.013668 ], [ 10.371094, 7.188101 ], [ 10.019531, 7.188101 ], [ 10.019531, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 6.839170 ], [ 9.667969, 6.839170 ], [ 9.667969, 6.489983 ], [ 9.140625, 6.489983 ], [ 9.140625, 6.315299 ], [ 8.964844, 6.315299 ], [ 8.964844, 5.965754 ], [ 8.789062, 5.965754 ], [ 8.789062, 5.615986 ], [ 8.613281, 5.615986 ], [ 8.613281, 5.266008 ], [ 8.437500, 5.266008 ], [ 8.437500, 4.915833 ], [ 8.261719, 4.915833 ], [ 8.261719, 4.740675 ], [ 7.734375, 4.740675 ], [ 7.734375, 4.565474 ], [ 7.031250, 4.565474 ], [ 7.031250, 4.390229 ], [ 5.625000, 4.390229 ], [ 5.625000, 4.565474 ], [ 5.449219, 4.565474 ], [ 5.449219, 4.740675 ], [ 5.273438, 4.740675 ], [ 5.273438, 5.090944 ], [ 5.097656, 5.090944 ], [ 5.097656, 5.441022 ], [ 4.921875, 5.441022 ], [ 4.921875, 5.615986 ], [ 4.746094, 5.615986 ], [ 4.746094, 5.790897 ], [ 4.570312, 5.790897 ], [ 4.570312, 5.965754 ], [ 4.394531, 5.965754 ], [ 4.394531, 6.140555 ], [ 4.218750, 6.140555 ], [ 4.218750, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.928487 ], [ 2.812500, 8.928487 ], [ 2.812500, 9.275622 ], [ 3.164062, 9.275622 ], [ 3.164062, 9.449062 ], [ 3.339844, 9.449062 ], [ 3.339844, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 9.968851 ], [ 3.691406, 9.968851 ], [ 3.691406, 10.314919 ], [ 3.515625, 10.314919 ], [ 3.515625, 10.660608 ], [ 3.691406, 10.660608 ], [ 3.691406, 11.005904 ], [ 3.515625, 11.005904 ], [ 3.515625, 12.554564 ], [ 3.691406, 12.554564 ], [ 3.691406, 12.897489 ], [ 3.867188, 12.897489 ], [ 3.867188, 13.239945 ], [ 4.042969, 13.239945 ], [ 4.042969, 13.581921 ], [ 4.218750, 13.581921 ], [ 4.218750, 13.752725 ], [ 4.921875, 13.752725 ], [ 4.921875, 13.923404 ], [ 5.449219, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.054628 ], [ 9.316406, 1.054628 ], [ 9.316406, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.933227 ], [ 9.667969, 1.933227 ], [ 9.667969, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.230374 ], [ 9.667969, 1.230374 ], [ 9.667969, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.406109 ], [ 9.316406, 1.406109 ], [ 9.316406, 1.933227 ], [ 9.492188, 1.933227 ], [ 9.492188, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 23.241346 ], [ 16.171875, 23.079732 ], [ 16.523438, 23.079732 ], [ 16.523438, 22.917923 ], [ 16.875000, 22.917923 ], [ 16.875000, 22.755921 ], [ 17.226562, 22.755921 ], [ 17.226562, 22.593726 ], [ 17.578125, 22.593726 ], [ 17.578125, 22.431340 ], [ 17.929688, 22.431340 ], [ 17.929688, 22.268764 ], [ 18.281250, 22.268764 ], [ 18.281250, 22.105999 ], [ 18.632812, 22.105999 ], [ 18.632812, 21.943046 ], [ 18.984375, 21.943046 ], [ 18.984375, 21.779905 ], [ 19.335938, 21.779905 ], [ 19.335938, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.453069 ], [ 20.039062, 21.453069 ], [ 20.039062, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 21.125498 ], [ 20.742188, 21.125498 ], [ 20.742188, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.797201 ], [ 21.445312, 20.797201 ], [ 21.445312, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.468189 ], [ 22.148438, 20.468189 ], [ 22.148438, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 20.138470 ], [ 22.851562, 20.138470 ], [ 22.851562, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.808054 ], [ 23.554688, 19.808054 ], [ 23.554688, 19.642588 ], [ 23.906250, 19.642588 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.623037 ], [ 23.027344, 15.453680 ], [ 22.851562, 15.453680 ], [ 22.851562, 15.284185 ], [ 22.675781, 15.284185 ], [ 22.675781, 14.944785 ], [ 22.500000, 14.944785 ], [ 22.500000, 14.604847 ], [ 22.324219, 14.604847 ], [ 22.324219, 14.093957 ], [ 22.500000, 14.093957 ], [ 22.500000, 13.923404 ], [ 22.324219, 13.923404 ], [ 22.324219, 13.752725 ], [ 22.148438, 13.752725 ], [ 22.148438, 13.581921 ], [ 22.324219, 13.581921 ], [ 22.324219, 13.239945 ], [ 22.148438, 13.239945 ], [ 22.148438, 12.897489 ], [ 21.972656, 12.897489 ], [ 21.972656, 12.554564 ], [ 22.324219, 12.554564 ], [ 22.324219, 12.382928 ], [ 22.500000, 12.382928 ], [ 22.500000, 11.523088 ], [ 22.675781, 11.523088 ], [ 22.675781, 11.350797 ], [ 22.851562, 11.350797 ], [ 22.851562, 11.178402 ], [ 22.675781, 11.178402 ], [ 22.675781, 11.005904 ], [ 22.148438, 11.005904 ], [ 22.148438, 10.833306 ], [ 21.972656, 10.833306 ], [ 21.972656, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 10.314919 ], [ 21.621094, 10.314919 ], [ 21.621094, 10.141932 ], [ 21.445312, 10.141932 ], [ 21.445312, 9.968851 ], [ 21.269531, 9.968851 ], [ 21.269531, 9.622414 ], [ 21.093750, 9.622414 ], [ 21.093750, 9.449062 ], [ 20.917969, 9.449062 ], [ 20.917969, 9.275622 ], [ 20.566406, 9.275622 ], [ 20.566406, 9.102097 ], [ 20.214844, 9.102097 ], [ 20.214844, 8.928487 ], [ 19.511719, 8.928487 ], [ 19.511719, 9.102097 ], [ 19.160156, 9.102097 ], [ 19.160156, 8.928487 ], [ 18.808594, 8.928487 ], [ 18.808594, 8.754795 ], [ 18.984375, 8.754795 ], [ 18.984375, 8.407168 ], [ 18.632812, 8.407168 ], [ 18.632812, 8.233237 ], [ 18.457031, 8.233237 ], [ 18.457031, 8.059230 ], [ 18.105469, 8.059230 ], [ 18.105469, 7.885147 ], [ 17.753906, 7.885147 ], [ 17.753906, 7.710992 ], [ 17.050781, 7.710992 ], [ 17.050781, 7.536764 ], [ 16.523438, 7.536764 ], [ 16.523438, 7.710992 ], [ 16.347656, 7.710992 ], [ 16.347656, 7.536764 ], [ 15.820312, 7.536764 ], [ 15.820312, 7.362467 ], [ 15.292969, 7.362467 ], [ 15.292969, 7.536764 ], [ 15.468750, 7.536764 ], [ 15.468750, 7.885147 ], [ 15.292969, 7.885147 ], [ 15.292969, 8.233237 ], [ 15.117188, 8.233237 ], [ 15.117188, 8.581021 ], [ 14.941406, 8.581021 ], [ 14.941406, 8.754795 ], [ 14.589844, 8.754795 ], [ 14.589844, 8.928487 ], [ 14.414062, 8.928487 ], [ 14.414062, 9.102097 ], [ 14.238281, 9.102097 ], [ 14.238281, 9.275622 ], [ 14.062500, 9.275622 ], [ 14.062500, 9.449062 ], [ 13.886719, 9.449062 ], [ 13.886719, 9.622414 ], [ 14.062500, 9.622414 ], [ 14.062500, 9.795678 ], [ 14.238281, 9.795678 ], [ 14.238281, 9.968851 ], [ 15.292969, 9.968851 ], [ 15.292969, 10.314919 ], [ 15.117188, 10.314919 ], [ 15.117188, 10.660608 ], [ 14.941406, 10.660608 ], [ 14.941406, 12.211180 ], [ 14.765625, 12.211180 ], [ 14.765625, 12.554564 ], [ 14.589844, 12.554564 ], [ 14.589844, 12.726084 ], [ 14.414062, 12.726084 ], [ 14.414062, 13.068777 ], [ 14.589844, 13.068777 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 13.923404 ], [ 13.710938, 13.923404 ], [ 13.710938, 14.264383 ], [ 13.535156, 14.264383 ], [ 13.535156, 14.604847 ], [ 13.710938, 14.604847 ], [ 13.710938, 15.284185 ], [ 13.886719, 15.284185 ], [ 13.886719, 15.623037 ], [ 14.062500, 15.623037 ], [ 14.062500, 15.792254 ], [ 14.414062, 15.792254 ], [ 14.414062, 15.961329 ], [ 14.589844, 15.961329 ], [ 14.589844, 16.130262 ], [ 14.765625, 16.130262 ], [ 14.765625, 16.299051 ], [ 15.117188, 16.299051 ], [ 15.117188, 16.467695 ], [ 15.292969, 16.467695 ], [ 15.292969, 18.479609 ], [ 15.468750, 18.479609 ], [ 15.468750, 19.476950 ], [ 15.644531, 19.476950 ], [ 15.644531, 20.138470 ], [ 15.820312, 20.138470 ], [ 15.820312, 20.468189 ], [ 15.644531, 20.468189 ], [ 15.644531, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.125498 ], [ 15.117188, 21.125498 ], [ 15.117188, 21.616579 ], [ 14.941406, 21.616579 ], [ 14.941406, 22.431340 ], [ 14.765625, 22.431340 ], [ 14.765625, 22.917923 ], [ 15.117188, 22.917923 ], [ 15.117188, 23.079732 ], [ 15.468750, 23.079732 ], [ 15.468750, 23.241346 ], [ 16.171875, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 23.402765 ], [ 16.171875, 23.241346 ], [ 16.523438, 23.241346 ], [ 16.523438, 23.079732 ], [ 16.875000, 23.079732 ], [ 16.875000, 22.917923 ], [ 17.226562, 22.917923 ], [ 17.226562, 22.755921 ], [ 17.578125, 22.755921 ], [ 17.578125, 22.593726 ], [ 17.753906, 22.593726 ], [ 17.753906, 22.431340 ], [ 18.105469, 22.431340 ], [ 18.105469, 22.268764 ], [ 18.457031, 22.268764 ], [ 18.457031, 22.105999 ], [ 18.808594, 22.105999 ], [ 18.808594, 21.943046 ], [ 19.160156, 21.943046 ], [ 19.160156, 21.779905 ], [ 19.511719, 21.779905 ], [ 19.511719, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.453069 ], [ 20.039062, 21.453069 ], [ 20.039062, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 21.125498 ], [ 20.742188, 21.125498 ], [ 20.742188, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.797201 ], [ 21.445312, 20.797201 ], [ 21.445312, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.468189 ], [ 22.148438, 20.468189 ], [ 22.148438, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 20.138470 ], [ 22.851562, 20.138470 ], [ 22.851562, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.808054 ], [ 23.554688, 19.808054 ], [ 23.554688, 19.642588 ], [ 23.730469, 19.642588 ], [ 23.730469, 15.623037 ], [ 23.203125, 15.623037 ], [ 23.203125, 15.792254 ], [ 22.851562, 15.792254 ], [ 22.851562, 15.453680 ], [ 22.675781, 15.453680 ], [ 22.675781, 15.114553 ], [ 22.500000, 15.114553 ], [ 22.500000, 14.774883 ], [ 22.324219, 14.774883 ], [ 22.324219, 14.434680 ], [ 22.148438, 14.434680 ], [ 22.148438, 14.264383 ], [ 22.324219, 14.264383 ], [ 22.324219, 14.093957 ], [ 22.500000, 14.093957 ], [ 22.500000, 13.923404 ], [ 22.148438, 13.923404 ], [ 22.148438, 13.239945 ], [ 21.972656, 13.239945 ], [ 21.972656, 12.897489 ], [ 21.796875, 12.897489 ], [ 21.796875, 12.726084 ], [ 22.148438, 12.726084 ], [ 22.148438, 12.554564 ], [ 22.324219, 12.554564 ], [ 22.324219, 12.382928 ], [ 22.500000, 12.382928 ], [ 22.500000, 11.523088 ], [ 22.851562, 11.523088 ], [ 22.851562, 11.178402 ], [ 22.675781, 11.178402 ], [ 22.675781, 11.005904 ], [ 22.148438, 11.005904 ], [ 22.148438, 10.833306 ], [ 21.796875, 10.833306 ], [ 21.796875, 10.660608 ], [ 21.621094, 10.660608 ], [ 21.621094, 10.487812 ], [ 21.445312, 10.487812 ], [ 21.445312, 10.141932 ], [ 21.269531, 10.141932 ], [ 21.269531, 9.968851 ], [ 21.093750, 9.968851 ], [ 21.093750, 9.622414 ], [ 20.917969, 9.622414 ], [ 20.917969, 9.449062 ], [ 20.566406, 9.449062 ], [ 20.566406, 9.275622 ], [ 20.214844, 9.275622 ], [ 20.214844, 9.102097 ], [ 18.808594, 9.102097 ], [ 18.808594, 8.581021 ], [ 18.457031, 8.581021 ], [ 18.457031, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 8.233237 ], [ 18.105469, 8.233237 ], [ 18.105469, 8.059230 ], [ 17.753906, 8.059230 ], [ 17.753906, 7.885147 ], [ 17.402344, 7.885147 ], [ 17.402344, 7.710992 ], [ 17.050781, 7.710992 ], [ 17.050781, 7.536764 ], [ 16.523438, 7.536764 ], [ 16.523438, 7.710992 ], [ 16.347656, 7.710992 ], [ 16.347656, 7.885147 ], [ 16.171875, 7.885147 ], [ 16.171875, 7.710992 ], [ 15.996094, 7.710992 ], [ 15.996094, 7.536764 ], [ 15.292969, 7.536764 ], [ 15.292969, 8.059230 ], [ 15.117188, 8.059230 ], [ 15.117188, 8.581021 ], [ 14.941406, 8.581021 ], [ 14.941406, 8.928487 ], [ 14.589844, 8.928487 ], [ 14.589844, 9.102097 ], [ 14.238281, 9.102097 ], [ 14.238281, 9.275622 ], [ 14.062500, 9.275622 ], [ 14.062500, 9.449062 ], [ 13.886719, 9.449062 ], [ 13.886719, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 10.141932 ], [ 14.238281, 10.141932 ], [ 14.238281, 9.968851 ], [ 14.765625, 9.968851 ], [ 14.765625, 10.141932 ], [ 15.292969, 10.141932 ], [ 15.292969, 10.314919 ], [ 15.117188, 10.314919 ], [ 15.117188, 10.660608 ], [ 14.941406, 10.660608 ], [ 14.941406, 10.833306 ], [ 14.765625, 10.833306 ], [ 14.765625, 11.350797 ], [ 14.941406, 11.350797 ], [ 14.941406, 12.039321 ], [ 14.765625, 12.039321 ], [ 14.765625, 12.382928 ], [ 14.589844, 12.382928 ], [ 14.589844, 12.726084 ], [ 14.414062, 12.726084 ], [ 14.414062, 13.068777 ], [ 14.589844, 13.068777 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 14.093957 ], [ 13.710938, 14.093957 ], [ 13.710938, 14.264383 ], [ 13.535156, 14.264383 ], [ 13.535156, 14.774883 ], [ 13.710938, 14.774883 ], [ 13.710938, 15.453680 ], [ 13.886719, 15.453680 ], [ 13.886719, 15.792254 ], [ 14.062500, 15.792254 ], [ 14.062500, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 16.130262 ], [ 14.589844, 16.130262 ], [ 14.589844, 16.299051 ], [ 14.765625, 16.299051 ], [ 14.765625, 16.467695 ], [ 15.117188, 16.467695 ], [ 15.117188, 17.308688 ], [ 15.292969, 17.308688 ], [ 15.292969, 18.479609 ], [ 15.468750, 18.479609 ], [ 15.468750, 19.476950 ], [ 15.644531, 19.476950 ], [ 15.644531, 20.138470 ], [ 15.820312, 20.138470 ], [ 15.820312, 20.468189 ], [ 15.644531, 20.468189 ], [ 15.644531, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.125498 ], [ 15.292969, 21.125498 ], [ 15.292969, 21.289374 ], [ 14.941406, 21.289374 ], [ 14.941406, 22.105999 ], [ 14.765625, 22.105999 ], [ 14.765625, 22.917923 ], [ 14.941406, 22.917923 ], [ 14.941406, 23.079732 ], [ 15.292969, 23.079732 ], [ 15.292969, 23.241346 ], [ 15.468750, 23.241346 ], [ 15.468750, 23.402765 ], [ 16.171875, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.589844, 12.726084 ], [ 14.589844, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 12.211180 ], [ 14.941406, 12.211180 ], [ 14.941406, 10.660608 ], [ 15.117188, 10.660608 ], [ 15.117188, 10.314919 ], [ 15.292969, 10.314919 ], [ 15.292969, 9.968851 ], [ 14.238281, 9.968851 ], [ 14.238281, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.622414 ], [ 13.886719, 9.622414 ], [ 13.886719, 9.449062 ], [ 14.062500, 9.449062 ], [ 14.062500, 9.275622 ], [ 14.238281, 9.275622 ], [ 14.238281, 9.102097 ], [ 14.414062, 9.102097 ], [ 14.414062, 8.928487 ], [ 14.589844, 8.928487 ], [ 14.589844, 8.754795 ], [ 14.941406, 8.754795 ], [ 14.941406, 8.581021 ], [ 15.117188, 8.581021 ], [ 15.117188, 8.233237 ], [ 15.292969, 8.233237 ], [ 15.292969, 7.885147 ], [ 15.468750, 7.885147 ], [ 15.468750, 7.536764 ], [ 15.292969, 7.536764 ], [ 15.292969, 7.188101 ], [ 15.117188, 7.188101 ], [ 15.117188, 6.839170 ], [ 14.941406, 6.839170 ], [ 14.941406, 6.489983 ], [ 14.765625, 6.489983 ], [ 14.765625, 6.315299 ], [ 14.589844, 6.315299 ], [ 14.589844, 5.790897 ], [ 14.414062, 5.790897 ], [ 14.414062, 5.266008 ], [ 14.589844, 5.266008 ], [ 14.589844, 4.915833 ], [ 14.414062, 4.915833 ], [ 14.414062, 4.565474 ], [ 14.589844, 4.565474 ], [ 14.589844, 4.390229 ], [ 14.765625, 4.390229 ], [ 14.765625, 4.214943 ], [ 14.941406, 4.214943 ], [ 14.941406, 4.039618 ], [ 15.117188, 4.039618 ], [ 15.117188, 3.688855 ], [ 15.292969, 3.688855 ], [ 15.292969, 3.337954 ], [ 15.468750, 3.337954 ], [ 15.468750, 3.162456 ], [ 15.644531, 3.162456 ], [ 15.644531, 2.986927 ], [ 15.820312, 2.986927 ], [ 15.820312, 2.460181 ], [ 15.996094, 2.460181 ], [ 15.996094, 1.757537 ], [ 15.468750, 1.757537 ], [ 15.468750, 1.933227 ], [ 14.765625, 1.933227 ], [ 14.765625, 2.108899 ], [ 14.414062, 2.108899 ], [ 14.414062, 2.284551 ], [ 12.832031, 2.284551 ], [ 12.832031, 2.108899 ], [ 11.953125, 2.108899 ], [ 11.953125, 2.284551 ], [ 9.667969, 2.284551 ], [ 9.667969, 2.635789 ], [ 9.843750, 2.635789 ], [ 9.843750, 3.162456 ], [ 9.667969, 3.162456 ], [ 9.667969, 3.513421 ], [ 9.492188, 3.513421 ], [ 9.492188, 3.688855 ], [ 9.140625, 3.688855 ], [ 9.140625, 3.864255 ], [ 8.964844, 3.864255 ], [ 8.964844, 4.039618 ], [ 8.789062, 4.039618 ], [ 8.789062, 4.390229 ], [ 8.437500, 4.390229 ], [ 8.437500, 4.915833 ], [ 8.613281, 4.915833 ], [ 8.613281, 5.266008 ], [ 8.789062, 5.266008 ], [ 8.789062, 5.615986 ], [ 8.964844, 5.615986 ], [ 8.964844, 5.965754 ], [ 9.140625, 5.965754 ], [ 9.140625, 6.315299 ], [ 9.316406, 6.315299 ], [ 9.316406, 6.489983 ], [ 9.667969, 6.489983 ], [ 9.667969, 6.664608 ], [ 10.019531, 6.664608 ], [ 10.019531, 6.839170 ], [ 10.195312, 6.839170 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.839170 ], [ 10.898438, 6.839170 ], [ 10.898438, 6.664608 ], [ 11.425781, 6.664608 ], [ 11.425781, 6.839170 ], [ 11.777344, 6.839170 ], [ 11.777344, 7.362467 ], [ 11.953125, 7.362467 ], [ 11.953125, 7.710992 ], [ 12.128906, 7.710992 ], [ 12.128906, 8.059230 ], [ 12.304688, 8.059230 ], [ 12.304688, 8.233237 ], [ 12.480469, 8.233237 ], [ 12.480469, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 8.581021 ], [ 12.832031, 8.581021 ], [ 12.832031, 9.102097 ], [ 13.007812, 9.102097 ], [ 13.007812, 9.449062 ], [ 13.183594, 9.449062 ], [ 13.183594, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 10.487812 ], [ 13.535156, 10.487812 ], [ 13.535156, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 11.005904 ], [ 13.886719, 11.005904 ], [ 13.886719, 11.178402 ], [ 14.238281, 11.178402 ], [ 14.238281, 11.350797 ], [ 14.414062, 11.350797 ], [ 14.414062, 11.867351 ], [ 14.589844, 11.867351 ], [ 14.589844, 12.039321 ], [ 14.414062, 12.039321 ], [ 14.414062, 12.382928 ], [ 14.238281, 12.382928 ], [ 14.238281, 12.726084 ], [ 14.589844, 12.726084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.414062, 12.726084 ], [ 14.589844, 12.726084 ], [ 14.589844, 12.382928 ], [ 14.765625, 12.382928 ], [ 14.765625, 12.039321 ], [ 14.941406, 12.039321 ], [ 14.941406, 11.350797 ], [ 14.765625, 11.350797 ], [ 14.765625, 10.833306 ], [ 14.941406, 10.833306 ], [ 14.941406, 10.660608 ], [ 15.117188, 10.660608 ], [ 15.117188, 10.314919 ], [ 15.292969, 10.314919 ], [ 15.292969, 10.141932 ], [ 14.765625, 10.141932 ], [ 14.765625, 9.968851 ], [ 14.238281, 9.968851 ], [ 14.238281, 10.141932 ], [ 14.062500, 10.141932 ], [ 14.062500, 9.795678 ], [ 13.886719, 9.795678 ], [ 13.886719, 9.449062 ], [ 14.062500, 9.449062 ], [ 14.062500, 9.275622 ], [ 14.238281, 9.275622 ], [ 14.238281, 9.102097 ], [ 14.589844, 9.102097 ], [ 14.589844, 8.928487 ], [ 14.941406, 8.928487 ], [ 14.941406, 8.581021 ], [ 15.117188, 8.581021 ], [ 15.117188, 8.059230 ], [ 15.292969, 8.059230 ], [ 15.292969, 7.536764 ], [ 15.117188, 7.536764 ], [ 15.117188, 7.188101 ], [ 14.941406, 7.188101 ], [ 14.941406, 6.664608 ], [ 14.765625, 6.664608 ], [ 14.765625, 6.315299 ], [ 14.414062, 6.315299 ], [ 14.414062, 4.565474 ], [ 14.589844, 4.565474 ], [ 14.589844, 4.390229 ], [ 14.765625, 4.390229 ], [ 14.765625, 4.214943 ], [ 14.941406, 4.214943 ], [ 14.941406, 3.688855 ], [ 15.117188, 3.688855 ], [ 15.117188, 3.337954 ], [ 15.468750, 3.337954 ], [ 15.468750, 3.162456 ], [ 15.820312, 3.162456 ], [ 15.820312, 2.460181 ], [ 15.996094, 2.460181 ], [ 15.996094, 1.933227 ], [ 15.820312, 1.933227 ], [ 15.820312, 1.757537 ], [ 15.468750, 1.757537 ], [ 15.468750, 1.933227 ], [ 15.117188, 1.933227 ], [ 15.117188, 2.108899 ], [ 14.589844, 2.108899 ], [ 14.589844, 2.284551 ], [ 12.832031, 2.284551 ], [ 12.832031, 2.460181 ], [ 12.656250, 2.460181 ], [ 12.656250, 2.284551 ], [ 11.777344, 2.284551 ], [ 11.777344, 2.460181 ], [ 11.601562, 2.460181 ], [ 11.601562, 2.284551 ], [ 9.492188, 2.284551 ], [ 9.492188, 2.635789 ], [ 9.667969, 2.635789 ], [ 9.667969, 3.337954 ], [ 9.492188, 3.337954 ], [ 9.492188, 3.688855 ], [ 9.316406, 3.688855 ], [ 9.316406, 3.864255 ], [ 8.964844, 3.864255 ], [ 8.964844, 4.039618 ], [ 8.789062, 4.039618 ], [ 8.789062, 4.214943 ], [ 8.613281, 4.214943 ], [ 8.613281, 4.390229 ], [ 8.437500, 4.390229 ], [ 8.437500, 5.266008 ], [ 8.613281, 5.266008 ], [ 8.613281, 5.615986 ], [ 8.789062, 5.615986 ], [ 8.789062, 5.965754 ], [ 8.964844, 5.965754 ], [ 8.964844, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 6.489983 ], [ 9.667969, 6.489983 ], [ 9.667969, 6.839170 ], [ 9.843750, 6.839170 ], [ 9.843750, 7.013668 ], [ 10.019531, 7.013668 ], [ 10.019531, 7.188101 ], [ 10.371094, 7.188101 ], [ 10.371094, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.839170 ], [ 10.722656, 6.839170 ], [ 10.722656, 6.664608 ], [ 11.250000, 6.664608 ], [ 11.250000, 6.839170 ], [ 11.601562, 6.839170 ], [ 11.601562, 7.188101 ], [ 11.777344, 7.188101 ], [ 11.777344, 7.710992 ], [ 11.953125, 7.710992 ], [ 11.953125, 8.059230 ], [ 12.128906, 8.059230 ], [ 12.128906, 8.407168 ], [ 12.304688, 8.407168 ], [ 12.304688, 8.581021 ], [ 12.656250, 8.581021 ], [ 12.656250, 9.102097 ], [ 12.832031, 9.102097 ], [ 12.832031, 9.622414 ], [ 13.007812, 9.622414 ], [ 13.007812, 9.968851 ], [ 13.183594, 9.968851 ], [ 13.183594, 10.314919 ], [ 13.359375, 10.314919 ], [ 13.359375, 10.660608 ], [ 13.535156, 10.660608 ], [ 13.535156, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 11.005904 ], [ 13.886719, 11.005904 ], [ 13.886719, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 11.350797 ], [ 14.238281, 11.350797 ], [ 14.238281, 11.523088 ], [ 14.414062, 11.523088 ], [ 14.414062, 12.211180 ], [ 14.238281, 12.211180 ], [ 14.238281, 12.382928 ], [ 14.062500, 12.382928 ], [ 14.062500, 12.897489 ], [ 14.414062, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.851562, 10.833306 ], [ 23.027344, 10.833306 ], [ 23.027344, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.314919 ], [ 23.378906, 10.314919 ], [ 23.378906, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 9.449062 ], [ 23.378906, 9.449062 ], [ 23.378906, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 8.581021 ], [ 23.906250, 8.581021 ], [ 23.906250, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.233237 ], [ 24.609375, 8.233237 ], [ 24.609375, 8.059230 ], [ 24.960938, 8.059230 ], [ 24.960938, 7.885147 ], [ 25.136719, 7.885147 ], [ 25.136719, 7.362467 ], [ 25.312500, 7.362467 ], [ 25.312500, 7.188101 ], [ 25.664062, 7.188101 ], [ 25.664062, 7.013668 ], [ 25.839844, 7.013668 ], [ 25.839844, 6.839170 ], [ 26.015625, 6.839170 ], [ 26.015625, 6.489983 ], [ 26.191406, 6.489983 ], [ 26.191406, 6.315299 ], [ 26.367188, 6.315299 ], [ 26.367188, 5.965754 ], [ 26.542969, 5.965754 ], [ 26.542969, 5.790897 ], [ 26.894531, 5.790897 ], [ 26.894531, 5.615986 ], [ 27.246094, 5.615986 ], [ 27.246094, 5.441022 ], [ 27.421875, 5.441022 ], [ 27.421875, 5.090944 ], [ 25.839844, 5.090944 ], [ 25.839844, 5.266008 ], [ 25.664062, 5.266008 ], [ 25.664062, 5.090944 ], [ 25.312500, 5.090944 ], [ 25.312500, 4.915833 ], [ 24.082031, 4.915833 ], [ 24.082031, 4.740675 ], [ 23.730469, 4.740675 ], [ 23.730469, 4.565474 ], [ 23.027344, 4.565474 ], [ 23.027344, 4.740675 ], [ 22.851562, 4.740675 ], [ 22.851562, 4.565474 ], [ 22.675781, 4.565474 ], [ 22.675781, 4.390229 ], [ 22.500000, 4.390229 ], [ 22.500000, 4.039618 ], [ 21.796875, 4.039618 ], [ 21.796875, 4.214943 ], [ 21.093750, 4.214943 ], [ 21.093750, 4.390229 ], [ 20.566406, 4.390229 ], [ 20.566406, 4.565474 ], [ 20.214844, 4.565474 ], [ 20.214844, 4.740675 ], [ 19.863281, 4.740675 ], [ 19.863281, 4.915833 ], [ 19.160156, 4.915833 ], [ 19.160156, 4.740675 ], [ 18.984375, 4.740675 ], [ 18.984375, 4.565474 ], [ 18.808594, 4.565474 ], [ 18.808594, 4.390229 ], [ 18.632812, 4.390229 ], [ 18.632812, 4.214943 ], [ 18.457031, 4.214943 ], [ 18.457031, 3.513421 ], [ 17.226562, 3.513421 ], [ 17.226562, 3.688855 ], [ 17.050781, 3.688855 ], [ 17.050781, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.337954 ], [ 16.699219, 3.337954 ], [ 16.699219, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 2.986927 ], [ 16.347656, 2.986927 ], [ 16.347656, 2.635789 ], [ 16.171875, 2.635789 ], [ 16.171875, 2.284551 ], [ 15.996094, 2.284551 ], [ 15.996094, 2.460181 ], [ 15.820312, 2.460181 ], [ 15.820312, 2.986927 ], [ 15.644531, 2.986927 ], [ 15.644531, 3.162456 ], [ 15.468750, 3.162456 ], [ 15.468750, 3.337954 ], [ 15.292969, 3.337954 ], [ 15.292969, 3.688855 ], [ 15.117188, 3.688855 ], [ 15.117188, 4.039618 ], [ 14.941406, 4.039618 ], [ 14.941406, 4.214943 ], [ 14.765625, 4.214943 ], [ 14.765625, 4.390229 ], [ 14.589844, 4.390229 ], [ 14.589844, 4.565474 ], [ 14.414062, 4.565474 ], [ 14.414062, 4.915833 ], [ 14.589844, 4.915833 ], [ 14.589844, 5.266008 ], [ 14.414062, 5.266008 ], [ 14.414062, 5.790897 ], [ 14.589844, 5.790897 ], [ 14.589844, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 6.489983 ], [ 14.941406, 6.489983 ], [ 14.941406, 6.839170 ], [ 15.117188, 6.839170 ], [ 15.117188, 7.188101 ], [ 15.292969, 7.188101 ], [ 15.292969, 7.362467 ], [ 15.820312, 7.362467 ], [ 15.820312, 7.536764 ], [ 16.347656, 7.536764 ], [ 16.347656, 7.710992 ], [ 16.523438, 7.710992 ], [ 16.523438, 7.536764 ], [ 17.050781, 7.536764 ], [ 17.050781, 7.710992 ], [ 17.753906, 7.710992 ], [ 17.753906, 7.885147 ], [ 18.105469, 7.885147 ], [ 18.105469, 8.059230 ], [ 18.457031, 8.059230 ], [ 18.457031, 8.233237 ], [ 18.632812, 8.233237 ], [ 18.632812, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 8.754795 ], [ 18.808594, 8.754795 ], [ 18.808594, 8.928487 ], [ 19.160156, 8.928487 ], [ 19.160156, 9.102097 ], [ 19.511719, 9.102097 ], [ 19.511719, 8.928487 ], [ 20.214844, 8.928487 ], [ 20.214844, 9.102097 ], [ 20.566406, 9.102097 ], [ 20.566406, 9.275622 ], [ 20.917969, 9.275622 ], [ 20.917969, 9.449062 ], [ 21.093750, 9.449062 ], [ 21.093750, 9.622414 ], [ 21.269531, 9.622414 ], [ 21.269531, 9.968851 ], [ 21.445312, 9.968851 ], [ 21.445312, 10.141932 ], [ 21.621094, 10.141932 ], [ 21.621094, 10.314919 ], [ 21.796875, 10.314919 ], [ 21.796875, 10.487812 ], [ 21.972656, 10.487812 ], [ 21.972656, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 11.005904 ], [ 22.675781, 11.005904 ], [ 22.675781, 11.178402 ], [ 22.851562, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.851562, 10.660608 ], [ 23.027344, 10.660608 ], [ 23.027344, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.314919 ], [ 23.378906, 10.314919 ], [ 23.378906, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 9.449062 ], [ 23.378906, 9.449062 ], [ 23.378906, 8.928487 ], [ 23.554688, 8.928487 ], [ 23.554688, 8.754795 ], [ 23.730469, 8.754795 ], [ 23.730469, 8.581021 ], [ 23.906250, 8.581021 ], [ 23.906250, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.233237 ], [ 24.433594, 8.233237 ], [ 24.433594, 8.059230 ], [ 24.785156, 8.059230 ], [ 24.785156, 7.885147 ], [ 24.960938, 7.885147 ], [ 24.960938, 7.362467 ], [ 25.136719, 7.362467 ], [ 25.136719, 7.188101 ], [ 25.488281, 7.188101 ], [ 25.488281, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 6.839170 ], [ 26.015625, 6.839170 ], [ 26.015625, 6.664608 ], [ 26.191406, 6.664608 ], [ 26.191406, 6.315299 ], [ 26.367188, 6.315299 ], [ 26.367188, 5.790897 ], [ 26.718750, 5.790897 ], [ 26.718750, 5.615986 ], [ 27.070312, 5.615986 ], [ 27.070312, 5.441022 ], [ 27.246094, 5.441022 ], [ 27.246094, 5.266008 ], [ 25.136719, 5.266008 ], [ 25.136719, 5.090944 ], [ 24.960938, 5.090944 ], [ 24.960938, 4.915833 ], [ 24.609375, 4.915833 ], [ 24.609375, 5.090944 ], [ 23.906250, 5.090944 ], [ 23.906250, 4.915833 ], [ 23.554688, 4.915833 ], [ 23.554688, 4.740675 ], [ 22.675781, 4.740675 ], [ 22.675781, 4.565474 ], [ 22.500000, 4.565474 ], [ 22.500000, 4.214943 ], [ 22.324219, 4.214943 ], [ 22.324219, 4.039618 ], [ 21.972656, 4.039618 ], [ 21.972656, 4.214943 ], [ 21.621094, 4.214943 ], [ 21.621094, 4.390229 ], [ 20.566406, 4.390229 ], [ 20.566406, 4.565474 ], [ 20.214844, 4.565474 ], [ 20.214844, 4.740675 ], [ 19.863281, 4.740675 ], [ 19.863281, 4.915833 ], [ 19.511719, 4.915833 ], [ 19.511719, 5.090944 ], [ 19.335938, 5.090944 ], [ 19.335938, 4.915833 ], [ 18.984375, 4.915833 ], [ 18.984375, 4.740675 ], [ 18.808594, 4.740675 ], [ 18.808594, 4.565474 ], [ 18.632812, 4.565474 ], [ 18.632812, 4.214943 ], [ 18.457031, 4.214943 ], [ 18.457031, 3.864255 ], [ 18.281250, 3.864255 ], [ 18.281250, 3.513421 ], [ 17.929688, 3.513421 ], [ 17.929688, 3.688855 ], [ 17.226562, 3.688855 ], [ 17.226562, 3.864255 ], [ 17.050781, 3.864255 ], [ 17.050781, 3.688855 ], [ 16.875000, 3.688855 ], [ 16.875000, 3.513421 ], [ 16.699219, 3.513421 ], [ 16.699219, 3.337954 ], [ 16.523438, 3.337954 ], [ 16.523438, 3.162456 ], [ 16.347656, 3.162456 ], [ 16.347656, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 2.460181 ], [ 15.820312, 2.460181 ], [ 15.820312, 3.162456 ], [ 15.468750, 3.162456 ], [ 15.468750, 3.337954 ], [ 15.117188, 3.337954 ], [ 15.117188, 3.688855 ], [ 14.941406, 3.688855 ], [ 14.941406, 4.214943 ], [ 14.765625, 4.214943 ], [ 14.765625, 4.390229 ], [ 14.589844, 4.390229 ], [ 14.589844, 4.565474 ], [ 14.414062, 4.565474 ], [ 14.414062, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 6.664608 ], [ 14.941406, 6.664608 ], [ 14.941406, 7.188101 ], [ 15.117188, 7.188101 ], [ 15.117188, 7.536764 ], [ 15.996094, 7.536764 ], [ 15.996094, 7.710992 ], [ 16.171875, 7.710992 ], [ 16.171875, 7.885147 ], [ 16.347656, 7.885147 ], [ 16.347656, 7.710992 ], [ 16.523438, 7.710992 ], [ 16.523438, 7.536764 ], [ 17.050781, 7.536764 ], [ 17.050781, 7.710992 ], [ 17.402344, 7.710992 ], [ 17.402344, 7.885147 ], [ 17.753906, 7.885147 ], [ 17.753906, 8.059230 ], [ 18.105469, 8.059230 ], [ 18.105469, 8.233237 ], [ 18.281250, 8.233237 ], [ 18.281250, 8.407168 ], [ 18.457031, 8.407168 ], [ 18.457031, 8.581021 ], [ 18.808594, 8.581021 ], [ 18.808594, 9.102097 ], [ 20.214844, 9.102097 ], [ 20.214844, 9.275622 ], [ 20.566406, 9.275622 ], [ 20.566406, 9.449062 ], [ 20.917969, 9.449062 ], [ 20.917969, 9.622414 ], [ 21.093750, 9.622414 ], [ 21.093750, 9.968851 ], [ 21.269531, 9.968851 ], [ 21.269531, 10.141932 ], [ 21.445312, 10.141932 ], [ 21.445312, 10.487812 ], [ 21.621094, 10.487812 ], [ 21.621094, 10.660608 ], [ 21.796875, 10.660608 ], [ 21.796875, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 11.005904 ], [ 22.675781, 11.005904 ], [ 22.675781, 11.178402 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.906250, 35.603719 ], [ 23.906250, 35.460670 ], [ 24.082031, 35.460670 ], [ 24.082031, 35.317366 ], [ 24.785156, 35.317366 ], [ 24.785156, 35.460670 ], [ 25.312500, 35.460670 ], [ 25.312500, 35.317366 ], [ 25.839844, 35.317366 ], [ 25.839844, 35.173808 ], [ 26.191406, 35.173808 ], [ 26.191406, 35.029996 ], [ 25.664062, 35.029996 ], [ 25.664062, 34.885931 ], [ 24.785156, 34.885931 ], [ 24.785156, 35.029996 ], [ 24.433594, 35.029996 ], [ 24.433594, 35.173808 ], [ 23.730469, 35.173808 ], [ 23.730469, 35.317366 ], [ 23.554688, 35.317366 ], [ 23.554688, 35.460670 ], [ 23.730469, 35.460670 ], [ 23.730469, 35.603719 ], [ 23.906250, 35.603719 ] ] ], [ [ [ 26.367188, 35.173808 ], [ 26.191406, 35.173808 ], [ 26.191406, 35.317366 ], [ 26.367188, 35.317366 ], [ 26.367188, 35.173808 ] ] ], [ [ [ 26.542969, 41.640078 ], [ 26.542969, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.847060 ], [ 25.136719, 40.847060 ], [ 25.136719, 40.979898 ], [ 24.785156, 40.979898 ], [ 24.785156, 40.847060 ], [ 24.082031, 40.847060 ], [ 24.082031, 40.713956 ], [ 23.730469, 40.713956 ], [ 23.730469, 40.580585 ], [ 23.906250, 40.580585 ], [ 23.906250, 40.446947 ], [ 24.082031, 40.446947 ], [ 24.082031, 40.313043 ], [ 24.257812, 40.313043 ], [ 24.257812, 40.178873 ], [ 24.433594, 40.178873 ], [ 24.433594, 40.044438 ], [ 24.082031, 40.044438 ], [ 24.082031, 39.909736 ], [ 23.203125, 39.909736 ], [ 23.203125, 40.178873 ], [ 23.027344, 40.178873 ], [ 23.027344, 40.313043 ], [ 22.675781, 40.313043 ], [ 22.675781, 39.909736 ], [ 22.851562, 39.909736 ], [ 22.851562, 39.504041 ], [ 23.027344, 39.504041 ], [ 23.027344, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 39.232253 ], [ 23.378906, 39.232253 ], [ 23.378906, 39.095963 ], [ 23.203125, 39.095963 ], [ 23.203125, 38.959409 ], [ 23.027344, 38.959409 ], [ 23.027344, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.685510 ], [ 23.378906, 38.685510 ], [ 23.378906, 38.548165 ], [ 23.554688, 38.548165 ], [ 23.554688, 38.410558 ], [ 23.906250, 38.410558 ], [ 23.906250, 38.272689 ], [ 24.082031, 38.272689 ], [ 24.082031, 37.718590 ], [ 23.378906, 37.718590 ], [ 23.378906, 37.857507 ], [ 23.027344, 37.857507 ], [ 23.027344, 37.718590 ], [ 23.203125, 37.718590 ], [ 23.203125, 37.300275 ], [ 22.851562, 37.300275 ], [ 22.851562, 37.020098 ], [ 23.027344, 37.020098 ], [ 23.027344, 36.597889 ], [ 23.203125, 36.597889 ], [ 23.203125, 36.456636 ], [ 22.324219, 36.456636 ], [ 22.324219, 36.597889 ], [ 21.972656, 36.597889 ], [ 21.972656, 36.738884 ], [ 21.621094, 36.738884 ], [ 21.621094, 37.020098 ], [ 21.445312, 37.020098 ], [ 21.445312, 37.300275 ], [ 21.269531, 37.300275 ], [ 21.269531, 37.857507 ], [ 21.093750, 37.857507 ], [ 21.093750, 38.410558 ], [ 20.917969, 38.410558 ], [ 20.917969, 38.685510 ], [ 20.742188, 38.685510 ], [ 20.742188, 38.822591 ], [ 20.566406, 38.822591 ], [ 20.566406, 39.095963 ], [ 20.390625, 39.095963 ], [ 20.390625, 39.232253 ], [ 20.214844, 39.232253 ], [ 20.214844, 39.639538 ], [ 20.390625, 39.639538 ], [ 20.390625, 39.909736 ], [ 20.566406, 39.909736 ], [ 20.566406, 40.178873 ], [ 20.742188, 40.178873 ], [ 20.742188, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.972656, 40.979898 ], [ 21.972656, 41.112469 ], [ 22.675781, 41.112469 ], [ 22.675781, 41.244772 ], [ 23.027344, 41.244772 ], [ 23.027344, 41.376809 ], [ 24.082031, 41.376809 ], [ 24.082031, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.839844, 41.244772 ], [ 25.839844, 41.376809 ], [ 26.191406, 41.376809 ], [ 26.191406, 41.640078 ], [ 26.542969, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.906250, 35.603719 ], [ 23.906250, 35.460670 ], [ 25.664062, 35.460670 ], [ 25.664062, 35.317366 ], [ 26.191406, 35.317366 ], [ 26.191406, 35.173808 ], [ 26.015625, 35.173808 ], [ 26.015625, 35.029996 ], [ 24.609375, 35.029996 ], [ 24.609375, 35.173808 ], [ 23.906250, 35.173808 ], [ 23.906250, 35.317366 ], [ 23.378906, 35.317366 ], [ 23.378906, 35.460670 ], [ 23.554688, 35.460670 ], [ 23.554688, 35.603719 ], [ 23.906250, 35.603719 ] ] ], [ [ [ 23.203125, 37.857507 ], [ 23.203125, 37.579413 ], [ 23.378906, 37.579413 ], [ 23.378906, 37.439974 ], [ 22.675781, 37.439974 ], [ 22.675781, 37.160317 ], [ 22.851562, 37.160317 ], [ 22.851562, 36.597889 ], [ 23.027344, 36.597889 ], [ 23.027344, 36.456636 ], [ 22.148438, 36.456636 ], [ 22.148438, 36.597889 ], [ 21.796875, 36.597889 ], [ 21.796875, 36.738884 ], [ 21.621094, 36.738884 ], [ 21.621094, 37.020098 ], [ 21.445312, 37.020098 ], [ 21.445312, 37.439974 ], [ 21.269531, 37.439974 ], [ 21.269531, 37.996163 ], [ 21.093750, 37.996163 ], [ 21.093750, 38.410558 ], [ 20.917969, 38.410558 ], [ 20.917969, 38.548165 ], [ 20.742188, 38.548165 ], [ 20.742188, 38.685510 ], [ 20.566406, 38.685510 ], [ 20.566406, 38.959409 ], [ 20.390625, 38.959409 ], [ 20.390625, 39.232253 ], [ 20.214844, 39.232253 ], [ 20.214844, 39.504041 ], [ 20.039062, 39.504041 ], [ 20.039062, 39.639538 ], [ 20.214844, 39.639538 ], [ 20.214844, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 40.044438 ], [ 20.566406, 40.044438 ], [ 20.566406, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.376809 ], [ 23.906250, 41.376809 ], [ 23.906250, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.640078 ], [ 24.433594, 41.640078 ], [ 24.433594, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.664062, 41.244772 ], [ 25.664062, 41.376809 ], [ 26.015625, 41.376809 ], [ 26.015625, 41.640078 ], [ 26.542969, 41.640078 ], [ 26.542969, 41.376809 ], [ 26.367188, 41.376809 ], [ 26.367188, 41.112469 ], [ 26.191406, 41.112469 ], [ 26.191406, 40.847060 ], [ 25.488281, 40.847060 ], [ 25.488281, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 40.847060 ], [ 23.906250, 40.847060 ], [ 23.906250, 40.713956 ], [ 23.554688, 40.713956 ], [ 23.554688, 40.580585 ], [ 23.730469, 40.580585 ], [ 23.730469, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 40.313043 ], [ 24.082031, 40.313043 ], [ 24.082031, 40.044438 ], [ 23.027344, 40.044438 ], [ 23.027344, 40.313043 ], [ 22.851562, 40.313043 ], [ 22.851562, 40.446947 ], [ 22.500000, 40.446947 ], [ 22.500000, 40.178873 ], [ 22.675781, 40.178873 ], [ 22.675781, 39.909736 ], [ 22.851562, 39.909736 ], [ 22.851562, 39.639538 ], [ 23.027344, 39.639538 ], [ 23.027344, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 39.095963 ], [ 22.851562, 39.095963 ], [ 22.851562, 38.959409 ], [ 23.027344, 38.959409 ], [ 23.027344, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.548165 ], [ 23.378906, 38.548165 ], [ 23.378906, 38.410558 ], [ 23.730469, 38.410558 ], [ 23.730469, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.554688, 37.718590 ], [ 23.554688, 37.857507 ], [ 23.203125, 37.857507 ] ], [ [ 23.203125, 37.857507 ], [ 23.203125, 37.996163 ], [ 23.027344, 37.996163 ], [ 23.027344, 37.857507 ], [ 23.203125, 37.857507 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.925781, 35.317366 ], [ 33.925781, 35.029996 ], [ 33.398438, 35.029996 ], [ 33.398438, 35.173808 ], [ 33.222656, 35.173808 ], [ 33.222656, 35.029996 ], [ 32.695312, 35.029996 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.173808 ], [ 32.871094, 35.317366 ], [ 33.925781, 35.317366 ] ] ], [ [ [ 34.277344, 35.460670 ], [ 34.277344, 35.317366 ], [ 34.101562, 35.317366 ], [ 34.101562, 35.460670 ], [ 34.277344, 35.460670 ] ] ], [ [ [ 34.628906, 35.460670 ], [ 34.453125, 35.460670 ], [ 34.453125, 35.603719 ], [ 34.628906, 35.603719 ], [ 34.628906, 35.460670 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.925781, 35.460670 ], [ 33.925781, 35.317366 ], [ 33.750000, 35.317366 ], [ 33.750000, 35.029996 ], [ 33.398438, 35.029996 ], [ 33.398438, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.695312, 35.317366 ], [ 32.871094, 35.317366 ], [ 32.871094, 35.460670 ], [ 33.925781, 35.460670 ] ] ], [ [ [ 34.277344, 35.603719 ], [ 34.277344, 35.460670 ], [ 33.925781, 35.460670 ], [ 33.925781, 35.603719 ], [ 34.277344, 35.603719 ] ] ], [ [ [ 34.453125, 35.603719 ], [ 34.277344, 35.603719 ], [ 34.277344, 35.746512 ], [ 34.453125, 35.746512 ], [ 34.453125, 35.603719 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 35.173808 ], [ 33.398438, 35.029996 ], [ 33.925781, 35.029996 ], [ 33.925781, 34.885931 ], [ 33.574219, 34.885931 ], [ 33.574219, 34.741612 ], [ 33.222656, 34.741612 ], [ 33.222656, 34.597042 ], [ 32.695312, 34.597042 ], [ 32.695312, 34.741612 ], [ 32.519531, 34.741612 ], [ 32.519531, 34.885931 ], [ 32.343750, 34.885931 ], [ 32.343750, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.695312, 35.029996 ], [ 33.222656, 35.029996 ], [ 33.222656, 35.173808 ], [ 33.398438, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 35.173808 ], [ 33.925781, 34.885931 ], [ 33.574219, 34.885931 ], [ 33.574219, 34.741612 ], [ 33.222656, 34.741612 ], [ 33.222656, 34.597042 ], [ 32.519531, 34.597042 ], [ 32.519531, 34.741612 ], [ 32.343750, 34.741612 ], [ 32.343750, 34.885931 ], [ 32.167969, 34.885931 ], [ 32.167969, 35.173808 ], [ 33.398438, 35.173808 ], [ 33.398438, 35.029996 ], [ 33.750000, 35.029996 ], [ 33.750000, 35.173808 ], [ 33.925781, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.519531, 29.382175 ], [ 32.519531, 28.921631 ], [ 32.695312, 28.921631 ], [ 32.695312, 28.613459 ], [ 32.871094, 28.613459 ], [ 32.871094, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 27.994401 ], [ 33.222656, 27.994401 ], [ 33.222656, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 27.371767 ], [ 33.574219, 27.371767 ], [ 33.574219, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.588527 ], [ 33.925781, 26.588527 ], [ 33.925781, 26.273714 ], [ 34.101562, 26.273714 ], [ 34.101562, 25.958045 ], [ 34.277344, 25.958045 ], [ 34.277344, 25.641526 ], [ 34.453125, 25.641526 ], [ 34.453125, 25.482951 ], [ 34.628906, 25.482951 ], [ 34.628906, 25.165173 ], [ 34.804688, 25.165173 ], [ 34.804688, 24.846565 ], [ 34.980469, 24.846565 ], [ 34.980469, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 24.367114 ], [ 35.332031, 24.367114 ], [ 35.332031, 24.206890 ], [ 35.507812, 24.206890 ], [ 35.507812, 23.885838 ], [ 35.683594, 23.885838 ], [ 35.683594, 23.725012 ], [ 35.507812, 23.725012 ], [ 35.507812, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.755921 ], [ 36.035156, 22.755921 ], [ 36.035156, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.431340 ], [ 36.562500, 22.431340 ], [ 36.562500, 22.268764 ], [ 36.738281, 22.268764 ], [ 36.738281, 22.105999 ], [ 36.914062, 22.105999 ], [ 36.914062, 21.943046 ], [ 24.960938, 21.943046 ], [ 24.960938, 29.535230 ], [ 24.785156, 29.535230 ], [ 24.785156, 30.297018 ], [ 24.960938, 30.297018 ], [ 24.960938, 30.751278 ], [ 24.785156, 30.751278 ], [ 24.785156, 31.052934 ], [ 24.960938, 31.052934 ], [ 24.960938, 31.353637 ], [ 25.136719, 31.353637 ], [ 25.136719, 31.503629 ], [ 26.015625, 31.503629 ], [ 26.015625, 31.653381 ], [ 26.718750, 31.653381 ], [ 26.718750, 31.503629 ], [ 27.070312, 31.503629 ], [ 27.070312, 31.353637 ], [ 27.597656, 31.353637 ], [ 27.597656, 31.203405 ], [ 28.125000, 31.203405 ], [ 28.125000, 31.052934 ], [ 28.476562, 31.052934 ], [ 28.476562, 30.902225 ], [ 29.179688, 30.902225 ], [ 29.179688, 31.052934 ], [ 29.531250, 31.052934 ], [ 29.531250, 31.203405 ], [ 29.882812, 31.203405 ], [ 29.882812, 31.353637 ], [ 30.058594, 31.353637 ], [ 30.058594, 31.503629 ], [ 31.640625, 31.503629 ], [ 31.640625, 31.353637 ], [ 31.816406, 31.353637 ], [ 31.816406, 31.052934 ], [ 32.167969, 31.052934 ], [ 32.167969, 31.203405 ], [ 32.519531, 31.203405 ], [ 32.519531, 31.052934 ], [ 33.222656, 31.052934 ], [ 33.222656, 30.902225 ], [ 33.925781, 30.902225 ], [ 33.925781, 31.052934 ], [ 34.277344, 31.052934 ], [ 34.277344, 30.902225 ], [ 34.453125, 30.902225 ], [ 34.453125, 30.448674 ], [ 34.628906, 30.448674 ], [ 34.628906, 30.145127 ], [ 34.804688, 30.145127 ], [ 34.804688, 29.688053 ], [ 34.980469, 29.688053 ], [ 34.980469, 29.382175 ], [ 34.804688, 29.382175 ], [ 34.804688, 29.075375 ], [ 34.628906, 29.075375 ], [ 34.628906, 28.613459 ], [ 34.453125, 28.613459 ], [ 34.453125, 28.149503 ], [ 34.277344, 28.149503 ], [ 34.277344, 27.839076 ], [ 34.101562, 27.839076 ], [ 34.101562, 27.683528 ], [ 33.750000, 27.683528 ], [ 33.750000, 27.839076 ], [ 33.574219, 27.839076 ], [ 33.574219, 27.994401 ], [ 33.398438, 27.994401 ], [ 33.398438, 28.304381 ], [ 33.222656, 28.304381 ], [ 33.222656, 28.459033 ], [ 33.046875, 28.459033 ], [ 33.046875, 28.767659 ], [ 32.871094, 28.767659 ], [ 32.871094, 29.075375 ], [ 32.695312, 29.075375 ], [ 32.695312, 29.382175 ], [ 32.519531, 29.382175 ] ], [ [ 32.519531, 29.382175 ], [ 32.519531, 29.688053 ], [ 32.343750, 29.688053 ], [ 32.343750, 29.382175 ], [ 32.519531, 29.382175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 28.304381 ], [ 33.046875, 27.994401 ], [ 33.222656, 27.994401 ], [ 33.222656, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 27.371767 ], [ 33.574219, 27.371767 ], [ 33.574219, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.745610 ], [ 33.925781, 26.745610 ], [ 33.925781, 26.431228 ], [ 34.101562, 26.431228 ], [ 34.101562, 26.115986 ], [ 34.277344, 26.115986 ], [ 34.277344, 25.799891 ], [ 34.453125, 25.799891 ], [ 34.453125, 25.324167 ], [ 34.628906, 25.324167 ], [ 34.628906, 25.005973 ], [ 34.804688, 25.005973 ], [ 34.804688, 24.846565 ], [ 34.980469, 24.846565 ], [ 34.980469, 24.686952 ], [ 35.156250, 24.686952 ], [ 35.156250, 24.367114 ], [ 35.332031, 24.367114 ], [ 35.332031, 24.206890 ], [ 35.507812, 24.206890 ], [ 35.507812, 24.046464 ], [ 35.683594, 24.046464 ], [ 35.683594, 23.885838 ], [ 35.332031, 23.885838 ], [ 35.332031, 23.563987 ], [ 35.507812, 23.563987 ], [ 35.507812, 23.079732 ], [ 35.683594, 23.079732 ], [ 35.683594, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.755921 ], [ 36.035156, 22.755921 ], [ 36.035156, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.431340 ], [ 36.386719, 22.431340 ], [ 36.386719, 22.268764 ], [ 36.562500, 22.268764 ], [ 36.562500, 22.105999 ], [ 24.960938, 22.105999 ], [ 24.960938, 29.535230 ], [ 24.785156, 29.535230 ], [ 24.785156, 29.840644 ], [ 24.609375, 29.840644 ], [ 24.609375, 30.448674 ], [ 24.785156, 30.448674 ], [ 24.785156, 31.203405 ], [ 24.960938, 31.203405 ], [ 24.960938, 31.503629 ], [ 25.136719, 31.503629 ], [ 25.136719, 31.653381 ], [ 26.542969, 31.653381 ], [ 26.542969, 31.503629 ], [ 27.070312, 31.503629 ], [ 27.070312, 31.353637 ], [ 27.597656, 31.353637 ], [ 27.597656, 31.203405 ], [ 27.949219, 31.203405 ], [ 27.949219, 31.052934 ], [ 28.476562, 31.052934 ], [ 28.476562, 30.902225 ], [ 29.179688, 30.902225 ], [ 29.179688, 31.052934 ], [ 29.531250, 31.052934 ], [ 29.531250, 31.203405 ], [ 29.707031, 31.203405 ], [ 29.707031, 31.353637 ], [ 30.058594, 31.353637 ], [ 30.058594, 31.503629 ], [ 30.585938, 31.503629 ], [ 30.585938, 31.653381 ], [ 31.113281, 31.653381 ], [ 31.113281, 31.503629 ], [ 31.640625, 31.503629 ], [ 31.640625, 31.203405 ], [ 31.816406, 31.203405 ], [ 31.816406, 31.052934 ], [ 31.992188, 31.052934 ], [ 31.992188, 31.203405 ], [ 32.519531, 31.203405 ], [ 32.519531, 31.052934 ], [ 33.925781, 31.052934 ], [ 33.925781, 31.203405 ], [ 34.101562, 31.203405 ], [ 34.101562, 31.052934 ], [ 34.277344, 31.052934 ], [ 34.277344, 30.600094 ], [ 34.453125, 30.600094 ], [ 34.453125, 30.145127 ], [ 34.628906, 30.145127 ], [ 34.628906, 29.688053 ], [ 34.804688, 29.688053 ], [ 34.804688, 29.382175 ], [ 34.628906, 29.382175 ], [ 34.628906, 28.921631 ], [ 34.453125, 28.921631 ], [ 34.453125, 28.613459 ], [ 34.277344, 28.613459 ], [ 34.277344, 28.149503 ], [ 34.101562, 28.149503 ], [ 34.101562, 27.683528 ], [ 33.750000, 27.683528 ], [ 33.750000, 27.839076 ], [ 33.574219, 27.839076 ], [ 33.574219, 27.994401 ], [ 33.398438, 27.994401 ], [ 33.398438, 28.149503 ], [ 33.222656, 28.149503 ], [ 33.222656, 28.304381 ], [ 33.046875, 28.304381 ] ], [ [ 32.695312, 28.921631 ], [ 32.695312, 29.382175 ], [ 32.519531, 29.382175 ], [ 32.519531, 29.688053 ], [ 32.343750, 29.688053 ], [ 32.343750, 29.840644 ], [ 32.167969, 29.840644 ], [ 32.167969, 29.535230 ], [ 32.343750, 29.535230 ], [ 32.343750, 29.228890 ], [ 32.519531, 29.228890 ], [ 32.519531, 28.921631 ], [ 32.695312, 28.921631 ] ], [ [ 32.871094, 28.613459 ], [ 32.871094, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 28.613459 ], [ 32.871094, 28.613459 ] ], [ [ 32.695312, 28.921631 ], [ 32.695312, 28.613459 ], [ 32.871094, 28.613459 ], [ 32.871094, 28.921631 ], [ 32.695312, 28.921631 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.417969, 41.244772 ], [ 43.417969, 41.112469 ], [ 43.593750, 41.112469 ], [ 43.593750, 40.847060 ], [ 43.769531, 40.847060 ], [ 43.769531, 40.446947 ], [ 43.593750, 40.446947 ], [ 43.593750, 40.313043 ], [ 43.769531, 40.313043 ], [ 43.769531, 40.178873 ], [ 44.121094, 40.178873 ], [ 44.121094, 40.044438 ], [ 44.472656, 40.044438 ], [ 44.472656, 39.909736 ], [ 44.648438, 39.909736 ], [ 44.648438, 39.774769 ], [ 44.824219, 39.774769 ], [ 44.824219, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.504041 ], [ 44.296875, 39.504041 ], [ 44.296875, 39.368279 ], [ 44.121094, 39.368279 ], [ 44.121094, 39.095963 ], [ 44.296875, 39.095963 ], [ 44.296875, 38.548165 ], [ 44.472656, 38.548165 ], [ 44.472656, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 37.857507 ], [ 44.472656, 37.857507 ], [ 44.472656, 37.579413 ], [ 44.648438, 37.579413 ], [ 44.648438, 37.300275 ], [ 44.824219, 37.300275 ], [ 44.824219, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.121094, 37.020098 ], [ 44.121094, 37.160317 ], [ 43.945312, 37.160317 ], [ 43.945312, 37.300275 ], [ 43.242188, 37.300275 ], [ 43.242188, 37.439974 ], [ 42.714844, 37.439974 ], [ 42.714844, 37.300275 ], [ 42.539062, 37.300275 ], [ 42.539062, 37.160317 ], [ 41.835938, 37.160317 ], [ 41.835938, 37.020098 ], [ 40.781250, 37.020098 ], [ 40.781250, 37.160317 ], [ 40.605469, 37.160317 ], [ 40.605469, 37.020098 ], [ 40.253906, 37.020098 ], [ 40.253906, 36.879621 ], [ 39.902344, 36.879621 ], [ 39.902344, 36.738884 ], [ 38.320312, 36.738884 ], [ 38.320312, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 36.738884 ], [ 37.441406, 36.738884 ], [ 37.441406, 36.597889 ], [ 36.914062, 36.597889 ], [ 36.914062, 36.738884 ], [ 36.738281, 36.738884 ], [ 36.738281, 36.173357 ], [ 36.562500, 36.173357 ], [ 36.562500, 36.031332 ], [ 36.386719, 36.031332 ], [ 36.386719, 35.889050 ], [ 36.035156, 35.889050 ], [ 36.035156, 36.173357 ], [ 35.859375, 36.173357 ], [ 35.859375, 36.315125 ], [ 36.035156, 36.315125 ], [ 36.035156, 36.456636 ], [ 36.210938, 36.456636 ], [ 36.210938, 36.597889 ], [ 34.980469, 36.597889 ], [ 34.980469, 36.738884 ], [ 34.628906, 36.738884 ], [ 34.628906, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.456636 ], [ 34.277344, 36.456636 ], [ 34.277344, 36.173357 ], [ 32.343750, 36.173357 ], [ 32.343750, 36.315125 ], [ 31.992188, 36.315125 ], [ 31.992188, 36.456636 ], [ 31.640625, 36.456636 ], [ 31.640625, 36.597889 ], [ 30.937500, 36.597889 ], [ 30.937500, 36.738884 ], [ 30.585938, 36.738884 ], [ 30.585938, 36.456636 ], [ 30.410156, 36.456636 ], [ 30.410156, 36.315125 ], [ 30.234375, 36.315125 ], [ 30.234375, 36.173357 ], [ 29.531250, 36.173357 ], [ 29.531250, 36.315125 ], [ 29.179688, 36.315125 ], [ 29.179688, 36.456636 ], [ 29.003906, 36.456636 ], [ 29.003906, 36.597889 ], [ 28.652344, 36.597889 ], [ 28.652344, 36.738884 ], [ 28.300781, 36.738884 ], [ 28.300781, 36.597889 ], [ 27.597656, 36.597889 ], [ 27.597656, 36.738884 ], [ 27.421875, 36.738884 ], [ 27.421875, 37.160317 ], [ 27.246094, 37.160317 ], [ 27.246094, 37.439974 ], [ 27.070312, 37.439974 ], [ 27.070312, 37.718590 ], [ 26.894531, 37.718590 ], [ 26.894531, 37.857507 ], [ 26.718750, 37.857507 ], [ 26.718750, 37.996163 ], [ 26.542969, 37.996163 ], [ 26.542969, 38.134557 ], [ 26.367188, 38.134557 ], [ 26.367188, 38.410558 ], [ 26.542969, 38.410558 ], [ 26.542969, 38.685510 ], [ 26.718750, 38.685510 ], [ 26.718750, 38.959409 ], [ 26.542969, 38.959409 ], [ 26.542969, 39.232253 ], [ 26.367188, 39.232253 ], [ 26.367188, 39.368279 ], [ 26.191406, 39.368279 ], [ 26.191406, 39.504041 ], [ 26.367188, 39.504041 ], [ 26.367188, 39.639538 ], [ 26.542969, 39.639538 ], [ 26.542969, 39.774769 ], [ 26.718750, 39.774769 ], [ 26.718750, 40.044438 ], [ 26.894531, 40.044438 ], [ 26.894531, 40.178873 ], [ 27.070312, 40.178873 ], [ 27.070312, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.580585 ], [ 29.003906, 40.580585 ], [ 29.003906, 40.979898 ], [ 29.179688, 40.979898 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 32.167969, 41.508577 ], [ 32.167969, 41.640078 ], [ 36.210938, 41.640078 ], [ 36.210938, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 39.902344, 41.112469 ], [ 39.902344, 40.979898 ], [ 40.605469, 40.979898 ], [ 40.605469, 41.112469 ], [ 40.957031, 41.112469 ], [ 40.957031, 41.244772 ], [ 41.132812, 41.244772 ], [ 41.132812, 41.376809 ], [ 41.484375, 41.376809 ], [ 41.484375, 41.508577 ], [ 42.187500, 41.508577 ], [ 42.187500, 41.640078 ], [ 42.539062, 41.640078 ] ] ], [ [ [ 28.125000, 41.640078 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 29.003906, 41.244772 ], [ 29.003906, 41.112469 ], [ 28.300781, 41.112469 ], [ 28.300781, 40.979898 ], [ 27.597656, 40.979898 ], [ 27.597656, 40.847060 ], [ 27.421875, 40.847060 ], [ 27.421875, 40.713956 ], [ 27.246094, 40.713956 ], [ 27.246094, 40.580585 ], [ 27.070312, 40.580585 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.313043 ], [ 26.542969, 40.313043 ], [ 26.542969, 40.178873 ], [ 26.191406, 40.178873 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.367188, 40.847060 ], [ 26.367188, 41.244772 ], [ 26.542969, 41.244772 ], [ 26.542969, 41.640078 ], [ 28.125000, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.714844, 41.508577 ], [ 42.714844, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.242188, 41.244772 ], [ 43.242188, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 40.178873 ], [ 43.945312, 40.178873 ], [ 43.945312, 40.044438 ], [ 44.296875, 40.044438 ], [ 44.296875, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.639538 ], [ 44.296875, 39.639538 ], [ 44.296875, 39.504041 ], [ 43.945312, 39.504041 ], [ 43.945312, 39.232253 ], [ 44.121094, 39.232253 ], [ 44.121094, 38.685510 ], [ 44.296875, 38.685510 ], [ 44.296875, 38.134557 ], [ 44.121094, 38.134557 ], [ 44.121094, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.160317 ], [ 44.296875, 37.160317 ], [ 44.296875, 37.020098 ], [ 43.945312, 37.020098 ], [ 43.945312, 37.160317 ], [ 43.769531, 37.160317 ], [ 43.769531, 37.300275 ], [ 43.066406, 37.300275 ], [ 43.066406, 37.439974 ], [ 42.539062, 37.439974 ], [ 42.539062, 37.300275 ], [ 41.835938, 37.300275 ], [ 41.835938, 37.160317 ], [ 40.429688, 37.160317 ], [ 40.429688, 37.020098 ], [ 40.078125, 37.020098 ], [ 40.078125, 36.879621 ], [ 39.726562, 36.879621 ], [ 39.726562, 36.738884 ], [ 38.496094, 36.738884 ], [ 38.496094, 36.879621 ], [ 38.144531, 36.879621 ], [ 38.144531, 37.020098 ], [ 37.968750, 37.020098 ], [ 37.968750, 36.879621 ], [ 37.265625, 36.879621 ], [ 37.265625, 36.738884 ], [ 36.738281, 36.738884 ], [ 36.738281, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 36.173357 ], [ 36.386719, 36.173357 ], [ 36.386719, 36.031332 ], [ 36.210938, 36.031332 ], [ 36.210938, 35.889050 ], [ 35.859375, 35.889050 ], [ 35.859375, 36.173357 ], [ 35.683594, 36.173357 ], [ 35.683594, 36.315125 ], [ 35.859375, 36.315125 ], [ 35.859375, 36.597889 ], [ 35.156250, 36.597889 ], [ 35.156250, 36.738884 ], [ 34.804688, 36.738884 ], [ 34.804688, 36.879621 ], [ 34.628906, 36.879621 ], [ 34.628906, 36.738884 ], [ 34.453125, 36.738884 ], [ 34.453125, 36.597889 ], [ 34.277344, 36.597889 ], [ 34.277344, 36.456636 ], [ 34.101562, 36.456636 ], [ 34.101562, 36.315125 ], [ 33.222656, 36.315125 ], [ 33.222656, 36.173357 ], [ 32.167969, 36.173357 ], [ 32.167969, 36.315125 ], [ 31.992188, 36.315125 ], [ 31.992188, 36.456636 ], [ 31.816406, 36.456636 ], [ 31.816406, 36.597889 ], [ 31.640625, 36.597889 ], [ 31.640625, 36.738884 ], [ 30.585938, 36.738884 ], [ 30.585938, 36.597889 ], [ 30.410156, 36.597889 ], [ 30.410156, 36.315125 ], [ 30.058594, 36.315125 ], [ 30.058594, 36.173357 ], [ 29.355469, 36.173357 ], [ 29.355469, 36.315125 ], [ 29.179688, 36.315125 ], [ 29.179688, 36.456636 ], [ 28.828125, 36.456636 ], [ 28.828125, 36.597889 ], [ 28.652344, 36.597889 ], [ 28.652344, 36.738884 ], [ 27.421875, 36.738884 ], [ 27.421875, 37.020098 ], [ 27.246094, 37.020098 ], [ 27.246094, 37.300275 ], [ 27.070312, 37.300275 ], [ 27.070312, 37.579413 ], [ 26.894531, 37.579413 ], [ 26.894531, 37.718590 ], [ 26.718750, 37.718590 ], [ 26.718750, 37.857507 ], [ 26.542969, 37.857507 ], [ 26.542969, 37.996163 ], [ 26.367188, 37.996163 ], [ 26.367188, 38.134557 ], [ 26.191406, 38.134557 ], [ 26.191406, 38.410558 ], [ 26.367188, 38.410558 ], [ 26.367188, 38.685510 ], [ 26.542969, 38.685510 ], [ 26.542969, 38.959409 ], [ 26.718750, 38.959409 ], [ 26.718750, 39.095963 ], [ 26.542969, 39.095963 ], [ 26.542969, 39.232253 ], [ 26.191406, 39.232253 ], [ 26.191406, 39.368279 ], [ 26.015625, 39.368279 ], [ 26.015625, 39.504041 ], [ 26.191406, 39.504041 ], [ 26.191406, 39.639538 ], [ 26.367188, 39.639538 ], [ 26.367188, 39.774769 ], [ 26.542969, 39.774769 ], [ 26.542969, 39.909736 ], [ 26.718750, 39.909736 ], [ 26.718750, 40.044438 ], [ 26.894531, 40.044438 ], [ 26.894531, 40.178873 ], [ 27.070312, 40.178873 ], [ 27.070312, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.125000, 40.446947 ], [ 28.125000, 40.580585 ], [ 28.828125, 40.580585 ], [ 28.828125, 40.847060 ], [ 29.003906, 40.847060 ], [ 29.003906, 41.112469 ], [ 29.179688, 41.112469 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 32.167969, 41.508577 ], [ 32.167969, 41.640078 ], [ 36.210938, 41.640078 ], [ 36.210938, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 40.429688, 41.112469 ], [ 40.429688, 41.244772 ], [ 40.781250, 41.244772 ], [ 40.781250, 41.376809 ], [ 41.132812, 41.376809 ], [ 41.132812, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.640078 ], [ 42.539062, 41.640078 ] ], [ [ 35.859375, 36.738884 ], [ 35.859375, 36.597889 ], [ 36.035156, 36.597889 ], [ 36.035156, 36.738884 ], [ 35.859375, 36.738884 ] ] ], [ [ [ 28.125000, 41.640078 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 28.652344, 41.244772 ], [ 28.652344, 41.112469 ], [ 27.597656, 41.112469 ], [ 27.597656, 40.979898 ], [ 27.421875, 40.979898 ], [ 27.421875, 40.847060 ], [ 27.246094, 40.847060 ], [ 27.246094, 40.713956 ], [ 27.070312, 40.713956 ], [ 27.070312, 40.580585 ], [ 26.894531, 40.580585 ], [ 26.894531, 40.446947 ], [ 26.542969, 40.446947 ], [ 26.542969, 40.313043 ], [ 26.367188, 40.313043 ], [ 26.367188, 40.178873 ], [ 26.191406, 40.178873 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.191406, 40.847060 ], [ 26.191406, 41.112469 ], [ 26.367188, 41.112469 ], [ 26.367188, 41.376809 ], [ 26.542969, 41.376809 ], [ 26.542969, 41.640078 ], [ 28.125000, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.386719, 34.597042 ], [ 36.386719, 34.307144 ], [ 36.562500, 34.307144 ], [ 36.562500, 34.016242 ], [ 36.210938, 34.016242 ], [ 36.210938, 33.870416 ], [ 36.035156, 33.870416 ], [ 36.035156, 33.578015 ], [ 35.859375, 33.578015 ], [ 35.859375, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.507812, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 33.284620 ], [ 35.332031, 33.284620 ], [ 35.332031, 33.578015 ], [ 35.507812, 33.578015 ], [ 35.507812, 33.870416 ], [ 35.683594, 33.870416 ], [ 35.683594, 34.161818 ], [ 35.859375, 34.161818 ], [ 35.859375, 34.452218 ], [ 36.035156, 34.452218 ], [ 36.035156, 34.597042 ], [ 36.386719, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.035156, 34.741612 ], [ 36.035156, 34.597042 ], [ 36.386719, 34.597042 ], [ 36.386719, 34.452218 ], [ 36.562500, 34.452218 ], [ 36.562500, 34.161818 ], [ 36.386719, 34.161818 ], [ 36.386719, 34.016242 ], [ 36.210938, 34.016242 ], [ 36.210938, 33.870416 ], [ 36.035156, 33.870416 ], [ 36.035156, 33.724340 ], [ 35.859375, 33.724340 ], [ 35.859375, 33.431441 ], [ 35.683594, 33.431441 ], [ 35.683594, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.507812, 33.137551 ], [ 34.980469, 33.137551 ], [ 34.980469, 33.284620 ], [ 35.156250, 33.284620 ], [ 35.156250, 33.724340 ], [ 35.332031, 33.724340 ], [ 35.332031, 34.016242 ], [ 35.507812, 34.016242 ], [ 35.507812, 34.307144 ], [ 35.683594, 34.307144 ], [ 35.683594, 34.597042 ], [ 35.859375, 34.597042 ], [ 35.859375, 34.741612 ], [ 36.035156, 34.741612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 37.160317 ], [ 42.363281, 37.020098 ], [ 42.187500, 37.020098 ], [ 42.187500, 36.879621 ], [ 42.011719, 36.879621 ], [ 42.011719, 36.597889 ], [ 41.835938, 36.597889 ], [ 41.835938, 36.456636 ], [ 41.484375, 36.456636 ], [ 41.484375, 36.315125 ], [ 41.308594, 36.315125 ], [ 41.308594, 35.317366 ], [ 41.132812, 35.317366 ], [ 41.132812, 34.741612 ], [ 40.957031, 34.741612 ], [ 40.957031, 34.307144 ], [ 40.605469, 34.307144 ], [ 40.605469, 34.161818 ], [ 40.253906, 34.161818 ], [ 40.253906, 34.016242 ], [ 40.078125, 34.016242 ], [ 40.078125, 33.870416 ], [ 39.726562, 33.870416 ], [ 39.726562, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.578015 ], [ 39.023438, 33.578015 ], [ 39.023438, 33.431441 ], [ 38.847656, 33.431441 ], [ 38.847656, 33.284620 ], [ 38.496094, 33.284620 ], [ 38.496094, 33.137551 ], [ 38.320312, 33.137551 ], [ 38.320312, 32.990236 ], [ 38.144531, 32.990236 ], [ 38.144531, 32.842674 ], [ 37.792969, 32.842674 ], [ 37.792969, 32.694866 ], [ 37.617188, 32.694866 ], [ 37.617188, 32.546813 ], [ 37.441406, 32.546813 ], [ 37.441406, 32.398516 ], [ 37.089844, 32.398516 ], [ 37.089844, 32.249974 ], [ 36.562500, 32.249974 ], [ 36.562500, 32.398516 ], [ 36.210938, 32.398516 ], [ 36.210938, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.578015 ], [ 36.035156, 33.578015 ], [ 36.035156, 33.870416 ], [ 36.210938, 33.870416 ], [ 36.210938, 34.016242 ], [ 36.562500, 34.016242 ], [ 36.562500, 34.307144 ], [ 36.386719, 34.307144 ], [ 36.386719, 34.597042 ], [ 36.035156, 34.597042 ], [ 36.035156, 35.029996 ], [ 35.859375, 35.029996 ], [ 35.859375, 35.460670 ], [ 36.035156, 35.460670 ], [ 36.035156, 35.746512 ], [ 36.210938, 35.746512 ], [ 36.210938, 35.889050 ], [ 36.386719, 35.889050 ], [ 36.386719, 36.031332 ], [ 36.562500, 36.031332 ], [ 36.562500, 36.173357 ], [ 36.738281, 36.173357 ], [ 36.738281, 36.738884 ], [ 36.914062, 36.738884 ], [ 36.914062, 36.597889 ], [ 37.441406, 36.597889 ], [ 37.441406, 36.738884 ], [ 37.968750, 36.738884 ], [ 37.968750, 36.879621 ], [ 38.320312, 36.879621 ], [ 38.320312, 36.738884 ], [ 39.902344, 36.738884 ], [ 39.902344, 36.879621 ], [ 40.253906, 36.879621 ], [ 40.253906, 37.020098 ], [ 40.605469, 37.020098 ], [ 40.605469, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 37.020098 ], [ 41.835938, 37.020098 ], [ 41.835938, 37.160317 ], [ 42.363281, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 37.300275 ], [ 42.187500, 37.160317 ], [ 42.011719, 37.160317 ], [ 42.011719, 36.879621 ], [ 41.835938, 36.879621 ], [ 41.835938, 36.597889 ], [ 41.484375, 36.597889 ], [ 41.484375, 36.456636 ], [ 41.132812, 36.456636 ], [ 41.132812, 36.031332 ], [ 41.308594, 36.031332 ], [ 41.308594, 35.317366 ], [ 41.132812, 35.317366 ], [ 41.132812, 34.741612 ], [ 40.957031, 34.741612 ], [ 40.957031, 34.307144 ], [ 40.605469, 34.307144 ], [ 40.605469, 34.161818 ], [ 40.253906, 34.161818 ], [ 40.253906, 34.016242 ], [ 39.902344, 34.016242 ], [ 39.902344, 33.870416 ], [ 39.550781, 33.870416 ], [ 39.550781, 33.724340 ], [ 39.199219, 33.724340 ], [ 39.199219, 33.578015 ], [ 38.847656, 33.578015 ], [ 38.847656, 33.431441 ], [ 38.671875, 33.431441 ], [ 38.671875, 33.284620 ], [ 38.320312, 33.284620 ], [ 38.320312, 33.137551 ], [ 38.144531, 33.137551 ], [ 38.144531, 32.990236 ], [ 37.792969, 32.990236 ], [ 37.792969, 32.842674 ], [ 37.441406, 32.842674 ], [ 37.441406, 32.694866 ], [ 37.265625, 32.694866 ], [ 37.265625, 32.546813 ], [ 36.914062, 32.546813 ], [ 36.914062, 32.398516 ], [ 36.386719, 32.398516 ], [ 36.386719, 32.546813 ], [ 36.035156, 32.546813 ], [ 36.035156, 32.694866 ], [ 35.683594, 32.694866 ], [ 35.683594, 33.431441 ], [ 35.859375, 33.431441 ], [ 35.859375, 33.724340 ], [ 36.035156, 33.724340 ], [ 36.035156, 33.870416 ], [ 36.210938, 33.870416 ], [ 36.210938, 34.016242 ], [ 36.386719, 34.016242 ], [ 36.386719, 34.161818 ], [ 36.562500, 34.161818 ], [ 36.562500, 34.452218 ], [ 36.386719, 34.452218 ], [ 36.386719, 34.597042 ], [ 36.035156, 34.597042 ], [ 36.035156, 34.741612 ], [ 35.859375, 34.741612 ], [ 35.859375, 35.603719 ], [ 36.035156, 35.603719 ], [ 36.035156, 35.889050 ], [ 36.210938, 35.889050 ], [ 36.210938, 36.031332 ], [ 36.386719, 36.031332 ], [ 36.386719, 36.173357 ], [ 36.562500, 36.173357 ], [ 36.562500, 36.597889 ], [ 36.738281, 36.597889 ], [ 36.738281, 36.738884 ], [ 37.265625, 36.738884 ], [ 37.265625, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 37.020098 ], [ 38.144531, 37.020098 ], [ 38.144531, 36.879621 ], [ 38.496094, 36.879621 ], [ 38.496094, 36.738884 ], [ 39.726562, 36.738884 ], [ 39.726562, 36.879621 ], [ 40.078125, 36.879621 ], [ 40.078125, 37.020098 ], [ 40.429688, 37.020098 ], [ 40.429688, 37.160317 ], [ 41.835938, 37.160317 ], [ 41.835938, 37.300275 ], [ 42.187500, 37.300275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 37.439974 ], [ 43.242188, 37.300275 ], [ 43.945312, 37.300275 ], [ 43.945312, 37.160317 ], [ 44.121094, 37.160317 ], [ 44.121094, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.160317 ], [ 44.824219, 37.160317 ], [ 44.824219, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.597889 ], [ 45.175781, 36.597889 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 35.889050 ], [ 45.703125, 35.889050 ], [ 45.703125, 35.746512 ], [ 45.878906, 35.746512 ], [ 45.878906, 34.741612 ], [ 45.703125, 34.741612 ], [ 45.703125, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.161818 ], [ 45.351562, 34.161818 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.578015 ], [ 45.703125, 33.578015 ], [ 45.703125, 33.284620 ], [ 45.878906, 33.284620 ], [ 45.878906, 29.075375 ], [ 45.175781, 29.075375 ], [ 45.175781, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.296875, 29.382175 ], [ 44.296875, 29.535230 ], [ 43.945312, 29.535230 ], [ 43.945312, 29.688053 ], [ 43.769531, 29.688053 ], [ 43.769531, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 29.993002 ], [ 43.417969, 29.993002 ], [ 43.417969, 30.145127 ], [ 43.066406, 30.145127 ], [ 43.066406, 30.297018 ], [ 42.890625, 30.297018 ], [ 42.890625, 30.448674 ], [ 42.714844, 30.448674 ], [ 42.714844, 30.600094 ], [ 42.539062, 30.600094 ], [ 42.539062, 30.751278 ], [ 42.363281, 30.751278 ], [ 42.363281, 30.902225 ], [ 42.011719, 30.902225 ], [ 42.011719, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 31.203405 ], [ 41.660156, 31.203405 ], [ 41.660156, 31.353637 ], [ 41.308594, 31.353637 ], [ 41.308594, 31.503629 ], [ 40.957031, 31.503629 ], [ 40.957031, 31.653381 ], [ 40.781250, 31.653381 ], [ 40.781250, 31.802893 ], [ 40.429688, 31.802893 ], [ 40.429688, 31.952162 ], [ 39.726562, 31.952162 ], [ 39.726562, 32.101190 ], [ 39.199219, 32.101190 ], [ 39.199219, 32.398516 ], [ 39.023438, 32.398516 ], [ 39.023438, 32.990236 ], [ 38.847656, 32.990236 ], [ 38.847656, 33.431441 ], [ 39.023438, 33.431441 ], [ 39.023438, 33.578015 ], [ 39.375000, 33.578015 ], [ 39.375000, 33.724340 ], [ 39.726562, 33.724340 ], [ 39.726562, 33.870416 ], [ 40.078125, 33.870416 ], [ 40.078125, 34.016242 ], [ 40.253906, 34.016242 ], [ 40.253906, 34.161818 ], [ 40.605469, 34.161818 ], [ 40.605469, 34.307144 ], [ 40.957031, 34.307144 ], [ 40.957031, 34.741612 ], [ 41.132812, 34.741612 ], [ 41.132812, 35.317366 ], [ 41.308594, 35.317366 ], [ 41.308594, 36.315125 ], [ 41.484375, 36.315125 ], [ 41.484375, 36.456636 ], [ 41.835938, 36.456636 ], [ 41.835938, 36.597889 ], [ 42.011719, 36.597889 ], [ 42.011719, 36.879621 ], [ 42.187500, 36.879621 ], [ 42.187500, 37.020098 ], [ 42.363281, 37.020098 ], [ 42.363281, 37.160317 ], [ 42.539062, 37.160317 ], [ 42.539062, 37.300275 ], [ 42.714844, 37.300275 ], [ 42.714844, 37.439974 ], [ 43.242188, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 37.439974 ], [ 43.066406, 37.300275 ], [ 43.769531, 37.300275 ], [ 43.769531, 37.160317 ], [ 43.945312, 37.160317 ], [ 43.945312, 37.020098 ], [ 44.296875, 37.020098 ], [ 44.296875, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.824219, 37.020098 ], [ 44.824219, 36.738884 ], [ 45.000000, 36.738884 ], [ 45.000000, 36.456636 ], [ 45.175781, 36.456636 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 36.031332 ], [ 45.527344, 36.031332 ], [ 45.527344, 35.889050 ], [ 45.878906, 35.889050 ], [ 45.878906, 34.885931 ], [ 45.527344, 34.885931 ], [ 45.527344, 34.452218 ], [ 45.351562, 34.452218 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.724340 ], [ 45.703125, 33.724340 ], [ 45.703125, 33.431441 ], [ 45.878906, 33.431441 ], [ 45.878906, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.296875, 29.382175 ], [ 44.296875, 29.535230 ], [ 43.945312, 29.535230 ], [ 43.945312, 29.688053 ], [ 43.769531, 29.688053 ], [ 43.769531, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 29.993002 ], [ 43.417969, 29.993002 ], [ 43.417969, 30.145127 ], [ 43.066406, 30.145127 ], [ 43.066406, 30.297018 ], [ 42.890625, 30.297018 ], [ 42.890625, 30.448674 ], [ 42.714844, 30.448674 ], [ 42.714844, 30.600094 ], [ 42.539062, 30.600094 ], [ 42.539062, 30.751278 ], [ 42.363281, 30.751278 ], [ 42.363281, 30.902225 ], [ 42.011719, 30.902225 ], [ 42.011719, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 31.203405 ], [ 41.660156, 31.203405 ], [ 41.660156, 31.353637 ], [ 41.308594, 31.353637 ], [ 41.308594, 31.503629 ], [ 40.957031, 31.503629 ], [ 40.957031, 31.653381 ], [ 40.605469, 31.653381 ], [ 40.605469, 31.802893 ], [ 40.253906, 31.802893 ], [ 40.253906, 31.952162 ], [ 39.902344, 31.952162 ], [ 39.902344, 32.101190 ], [ 39.199219, 32.101190 ], [ 39.199219, 32.249974 ], [ 39.023438, 32.249974 ], [ 39.023438, 32.546813 ], [ 38.847656, 32.546813 ], [ 38.847656, 33.137551 ], [ 38.671875, 33.137551 ], [ 38.671875, 33.431441 ], [ 38.847656, 33.431441 ], [ 38.847656, 33.578015 ], [ 39.199219, 33.578015 ], [ 39.199219, 33.724340 ], [ 39.550781, 33.724340 ], [ 39.550781, 33.870416 ], [ 39.902344, 33.870416 ], [ 39.902344, 34.016242 ], [ 40.253906, 34.016242 ], [ 40.253906, 34.161818 ], [ 40.605469, 34.161818 ], [ 40.605469, 34.307144 ], [ 40.957031, 34.307144 ], [ 40.957031, 34.741612 ], [ 41.132812, 34.741612 ], [ 41.132812, 35.317366 ], [ 41.308594, 35.317366 ], [ 41.308594, 36.031332 ], [ 41.132812, 36.031332 ], [ 41.132812, 36.456636 ], [ 41.484375, 36.456636 ], [ 41.484375, 36.597889 ], [ 41.835938, 36.597889 ], [ 41.835938, 36.879621 ], [ 42.011719, 36.879621 ], [ 42.011719, 37.160317 ], [ 42.187500, 37.160317 ], [ 42.187500, 37.300275 ], [ 42.539062, 37.300275 ], [ 42.539062, 37.439974 ], [ 43.066406, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 33.284620 ], [ 35.859375, 32.694866 ], [ 35.683594, 32.694866 ], [ 35.683594, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.398516 ], [ 35.156250, 32.101190 ], [ 34.980469, 32.101190 ], [ 34.980469, 31.802893 ], [ 35.156250, 31.802893 ], [ 35.156250, 31.653381 ], [ 34.980469, 31.653381 ], [ 34.980469, 31.353637 ], [ 35.332031, 31.353637 ], [ 35.332031, 31.203405 ], [ 35.507812, 31.203405 ], [ 35.507812, 30.751278 ], [ 35.332031, 30.751278 ], [ 35.332031, 30.297018 ], [ 35.156250, 30.297018 ], [ 35.156250, 29.688053 ], [ 34.804688, 29.688053 ], [ 34.804688, 30.145127 ], [ 34.628906, 30.145127 ], [ 34.628906, 30.448674 ], [ 34.453125, 30.448674 ], [ 34.453125, 30.902225 ], [ 34.277344, 30.902225 ], [ 34.277344, 31.203405 ], [ 34.453125, 31.203405 ], [ 34.453125, 31.353637 ], [ 34.628906, 31.353637 ], [ 34.628906, 31.503629 ], [ 34.453125, 31.503629 ], [ 34.453125, 31.653381 ], [ 34.628906, 31.653381 ], [ 34.628906, 31.952162 ], [ 34.804688, 31.952162 ], [ 34.804688, 32.398516 ], [ 34.980469, 32.398516 ], [ 34.980469, 32.990236 ], [ 35.156250, 32.990236 ], [ 35.156250, 33.137551 ], [ 35.507812, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.859375, 33.284620 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.683594, 33.284620 ], [ 35.683594, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 32.398516 ], [ 34.980469, 32.398516 ], [ 34.980469, 32.101190 ], [ 34.804688, 32.101190 ], [ 34.804688, 31.802893 ], [ 35.156250, 31.802893 ], [ 35.156250, 31.653381 ], [ 34.804688, 31.653381 ], [ 34.804688, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 31.503629 ], [ 35.332031, 31.503629 ], [ 35.332031, 30.902225 ], [ 35.156250, 30.902225 ], [ 35.156250, 30.297018 ], [ 34.980469, 30.297018 ], [ 34.980469, 29.688053 ], [ 34.628906, 29.688053 ], [ 34.628906, 30.145127 ], [ 34.453125, 30.145127 ], [ 34.453125, 30.600094 ], [ 34.277344, 30.600094 ], [ 34.277344, 31.052934 ], [ 34.101562, 31.052934 ], [ 34.101562, 31.353637 ], [ 34.277344, 31.353637 ], [ 34.277344, 31.503629 ], [ 34.453125, 31.503629 ], [ 34.453125, 31.802893 ], [ 34.628906, 31.802893 ], [ 34.628906, 32.398516 ], [ 34.804688, 32.398516 ], [ 34.804688, 32.990236 ], [ 34.980469, 32.990236 ], [ 34.980469, 33.137551 ], [ 35.507812, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.683594, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.653381 ], [ 35.332031, 31.653381 ], [ 35.332031, 31.353637 ], [ 34.980469, 31.353637 ], [ 34.980469, 31.653381 ], [ 35.156250, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.980469, 31.802893 ], [ 34.980469, 32.101190 ], [ 35.156250, 32.101190 ], [ 35.156250, 32.398516 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.653381 ], [ 35.332031, 31.653381 ], [ 35.332031, 31.503629 ], [ 35.156250, 31.503629 ], [ 35.156250, 31.353637 ], [ 34.804688, 31.353637 ], [ 34.804688, 31.653381 ], [ 35.156250, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.804688, 31.802893 ], [ 34.804688, 32.101190 ], [ 34.980469, 32.101190 ], [ 34.980469, 32.398516 ], [ 35.507812, 32.398516 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.847656, 33.284620 ], [ 38.847656, 32.990236 ], [ 39.023438, 32.990236 ], [ 39.023438, 32.398516 ], [ 39.199219, 32.398516 ], [ 39.199219, 31.952162 ], [ 38.847656, 31.952162 ], [ 38.847656, 31.802893 ], [ 38.144531, 31.802893 ], [ 38.144531, 31.653381 ], [ 37.441406, 31.653381 ], [ 37.441406, 31.503629 ], [ 37.089844, 31.503629 ], [ 37.089844, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.052934 ], [ 37.441406, 31.052934 ], [ 37.441406, 30.902225 ], [ 37.617188, 30.902225 ], [ 37.617188, 30.751278 ], [ 37.792969, 30.751278 ], [ 37.792969, 30.448674 ], [ 37.968750, 30.448674 ], [ 37.968750, 30.297018 ], [ 37.617188, 30.297018 ], [ 37.617188, 30.145127 ], [ 37.441406, 30.145127 ], [ 37.441406, 29.993002 ], [ 37.265625, 29.993002 ], [ 37.265625, 29.840644 ], [ 36.738281, 29.840644 ], [ 36.738281, 29.688053 ], [ 36.562500, 29.688053 ], [ 36.562500, 29.382175 ], [ 36.210938, 29.382175 ], [ 36.210938, 29.228890 ], [ 35.332031, 29.228890 ], [ 35.332031, 29.382175 ], [ 34.980469, 29.382175 ], [ 34.980469, 29.688053 ], [ 35.156250, 29.688053 ], [ 35.156250, 30.297018 ], [ 35.332031, 30.297018 ], [ 35.332031, 30.751278 ], [ 35.507812, 30.751278 ], [ 35.507812, 31.203405 ], [ 35.332031, 31.203405 ], [ 35.332031, 31.653381 ], [ 35.507812, 31.653381 ], [ 35.507812, 32.546813 ], [ 35.683594, 32.546813 ], [ 35.683594, 32.694866 ], [ 35.859375, 32.694866 ], [ 35.859375, 32.546813 ], [ 36.210938, 32.546813 ], [ 36.210938, 32.398516 ], [ 36.562500, 32.398516 ], [ 36.562500, 32.249974 ], [ 37.089844, 32.249974 ], [ 37.089844, 32.398516 ], [ 37.441406, 32.398516 ], [ 37.441406, 32.546813 ], [ 37.617188, 32.546813 ], [ 37.617188, 32.694866 ], [ 37.792969, 32.694866 ], [ 37.792969, 32.842674 ], [ 38.144531, 32.842674 ], [ 38.144531, 32.990236 ], [ 38.320312, 32.990236 ], [ 38.320312, 33.137551 ], [ 38.496094, 33.137551 ], [ 38.496094, 33.284620 ], [ 38.847656, 33.284620 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.284620 ], [ 38.671875, 33.137551 ], [ 38.847656, 33.137551 ], [ 38.847656, 32.546813 ], [ 39.023438, 32.546813 ], [ 39.023438, 32.101190 ], [ 38.671875, 32.101190 ], [ 38.671875, 31.952162 ], [ 37.968750, 31.952162 ], [ 37.968750, 31.802893 ], [ 37.265625, 31.802893 ], [ 37.265625, 31.653381 ], [ 36.914062, 31.653381 ], [ 36.914062, 31.503629 ], [ 37.089844, 31.503629 ], [ 37.089844, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.203405 ], [ 37.441406, 31.203405 ], [ 37.441406, 30.902225 ], [ 37.617188, 30.902225 ], [ 37.617188, 30.751278 ], [ 37.792969, 30.751278 ], [ 37.792969, 30.600094 ], [ 37.968750, 30.600094 ], [ 37.968750, 30.448674 ], [ 37.617188, 30.448674 ], [ 37.617188, 30.297018 ], [ 37.441406, 30.297018 ], [ 37.441406, 30.145127 ], [ 37.265625, 30.145127 ], [ 37.265625, 29.993002 ], [ 36.738281, 29.993002 ], [ 36.738281, 29.840644 ], [ 36.562500, 29.840644 ], [ 36.562500, 29.535230 ], [ 36.386719, 29.535230 ], [ 36.386719, 29.382175 ], [ 36.210938, 29.382175 ], [ 36.210938, 29.228890 ], [ 35.332031, 29.228890 ], [ 35.332031, 29.382175 ], [ 34.804688, 29.382175 ], [ 34.804688, 29.688053 ], [ 34.980469, 29.688053 ], [ 34.980469, 30.297018 ], [ 35.156250, 30.297018 ], [ 35.156250, 30.902225 ], [ 35.332031, 30.902225 ], [ 35.332031, 31.653381 ], [ 35.507812, 31.653381 ], [ 35.507812, 32.546813 ], [ 35.683594, 32.546813 ], [ 35.683594, 32.694866 ], [ 36.035156, 32.694866 ], [ 36.035156, 32.546813 ], [ 36.386719, 32.546813 ], [ 36.386719, 32.398516 ], [ 36.914062, 32.398516 ], [ 36.914062, 32.546813 ], [ 37.265625, 32.546813 ], [ 37.265625, 32.694866 ], [ 37.441406, 32.694866 ], [ 37.441406, 32.842674 ], [ 37.792969, 32.842674 ], [ 37.792969, 32.990236 ], [ 38.144531, 32.990236 ], [ 38.144531, 33.137551 ], [ 38.320312, 33.137551 ], [ 38.320312, 33.284620 ], [ 38.671875, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.914062, 21.943046 ], [ 36.914062, 21.616579 ], [ 37.089844, 21.616579 ], [ 37.089844, 21.125498 ], [ 37.265625, 21.125498 ], [ 37.265625, 20.797201 ], [ 36.914062, 20.797201 ], [ 36.914062, 20.303418 ], [ 37.089844, 20.303418 ], [ 37.089844, 19.476950 ], [ 37.265625, 19.476950 ], [ 37.265625, 18.812718 ], [ 37.441406, 18.812718 ], [ 37.441406, 18.479609 ], [ 37.617188, 18.479609 ], [ 37.617188, 18.312811 ], [ 37.792969, 18.312811 ], [ 37.792969, 18.145852 ], [ 38.144531, 18.145852 ], [ 38.144531, 17.978733 ], [ 38.496094, 17.978733 ], [ 38.496094, 17.811456 ], [ 38.320312, 17.811456 ], [ 38.320312, 17.644022 ], [ 38.144531, 17.644022 ], [ 38.144531, 17.476432 ], [ 37.617188, 17.476432 ], [ 37.617188, 17.308688 ], [ 37.089844, 17.308688 ], [ 37.089844, 17.140790 ], [ 36.914062, 17.140790 ], [ 36.914062, 16.636192 ], [ 36.738281, 16.636192 ], [ 36.738281, 15.792254 ], [ 36.562500, 15.792254 ], [ 36.562500, 15.114553 ], [ 36.386719, 15.114553 ], [ 36.386719, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 13.239945 ], [ 36.035156, 13.239945 ], [ 36.035156, 12.726084 ], [ 35.859375, 12.726084 ], [ 35.859375, 12.382928 ], [ 35.683594, 12.382928 ], [ 35.683594, 12.211180 ], [ 35.507812, 12.211180 ], [ 35.507812, 12.039321 ], [ 35.332031, 12.039321 ], [ 35.332031, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 11.695273 ], [ 34.980469, 11.695273 ], [ 34.980469, 11.350797 ], [ 34.804688, 11.350797 ], [ 34.804688, 10.833306 ], [ 34.628906, 10.833306 ], [ 34.628906, 10.660608 ], [ 34.277344, 10.660608 ], [ 34.277344, 10.314919 ], [ 34.101562, 10.314919 ], [ 34.101562, 9.795678 ], [ 33.925781, 9.795678 ], [ 33.925781, 10.141932 ], [ 33.750000, 10.141932 ], [ 33.750000, 10.314919 ], [ 33.574219, 10.314919 ], [ 33.574219, 10.487812 ], [ 33.222656, 10.487812 ], [ 33.222656, 11.005904 ], [ 33.046875, 11.005904 ], [ 33.046875, 11.867351 ], [ 33.222656, 11.867351 ], [ 33.222656, 12.211180 ], [ 32.695312, 12.211180 ], [ 32.695312, 12.039321 ], [ 31.992188, 12.039321 ], [ 31.992188, 11.867351 ], [ 32.167969, 11.867351 ], [ 32.167969, 11.695273 ], [ 32.343750, 11.695273 ], [ 32.343750, 10.833306 ], [ 32.167969, 10.833306 ], [ 32.167969, 10.660608 ], [ 31.992188, 10.660608 ], [ 31.992188, 10.487812 ], [ 31.816406, 10.487812 ], [ 31.816406, 10.314919 ], [ 31.640625, 10.314919 ], [ 31.640625, 10.141932 ], [ 31.464844, 10.141932 ], [ 31.464844, 9.795678 ], [ 31.113281, 9.795678 ], [ 31.113281, 9.622414 ], [ 30.585938, 9.622414 ], [ 30.585938, 9.795678 ], [ 30.410156, 9.795678 ], [ 30.410156, 9.968851 ], [ 30.234375, 9.968851 ], [ 30.234375, 10.141932 ], [ 30.058594, 10.141932 ], [ 30.058594, 10.314919 ], [ 29.882812, 10.314919 ], [ 29.882812, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.795678 ], [ 29.355469, 9.795678 ], [ 29.355469, 9.622414 ], [ 29.003906, 9.622414 ], [ 29.003906, 9.449062 ], [ 27.773438, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.622414 ], [ 27.070312, 9.449062 ], [ 26.542969, 9.449062 ], [ 26.542969, 9.622414 ], [ 26.367188, 9.622414 ], [ 26.367188, 9.795678 ], [ 26.191406, 9.795678 ], [ 26.191406, 9.968851 ], [ 26.015625, 9.968851 ], [ 26.015625, 10.314919 ], [ 25.839844, 10.314919 ], [ 25.839844, 10.487812 ], [ 25.664062, 10.487812 ], [ 25.664062, 10.314919 ], [ 25.136719, 10.314919 ], [ 25.136719, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 9.795678 ], [ 24.785156, 9.795678 ], [ 24.785156, 9.275622 ], [ 24.609375, 9.275622 ], [ 24.609375, 8.754795 ], [ 24.257812, 8.754795 ], [ 24.257812, 8.581021 ], [ 23.554688, 8.581021 ], [ 23.554688, 8.754795 ], [ 23.378906, 8.754795 ], [ 23.378906, 9.449062 ], [ 23.554688, 9.449062 ], [ 23.554688, 10.141932 ], [ 23.378906, 10.141932 ], [ 23.378906, 10.314919 ], [ 23.203125, 10.314919 ], [ 23.203125, 10.487812 ], [ 23.027344, 10.487812 ], [ 23.027344, 10.833306 ], [ 22.851562, 10.833306 ], [ 22.851562, 11.350797 ], [ 22.675781, 11.350797 ], [ 22.675781, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.382928 ], [ 22.324219, 12.382928 ], [ 22.324219, 12.554564 ], [ 21.972656, 12.554564 ], [ 21.972656, 12.897489 ], [ 22.148438, 12.897489 ], [ 22.148438, 13.239945 ], [ 22.324219, 13.239945 ], [ 22.324219, 13.581921 ], [ 22.148438, 13.581921 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.752725 ], [ 22.324219, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 14.093957 ], [ 22.324219, 14.093957 ], [ 22.324219, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 14.944785 ], [ 22.675781, 14.944785 ], [ 22.675781, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.453680 ], [ 23.027344, 15.453680 ], [ 23.027344, 15.623037 ], [ 23.906250, 15.623037 ], [ 23.906250, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 21.943046 ], [ 36.914062, 21.943046 ] ] ], [ [ [ 33.925781, 9.622414 ], [ 33.925781, 9.449062 ], [ 33.750000, 9.449062 ], [ 33.750000, 9.622414 ], [ 33.925781, 9.622414 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.738281, 22.105999 ], [ 36.738281, 21.779905 ], [ 36.914062, 21.779905 ], [ 36.914062, 21.289374 ], [ 37.089844, 21.289374 ], [ 37.089844, 20.961440 ], [ 36.914062, 20.961440 ], [ 36.914062, 20.303418 ], [ 37.089844, 20.303418 ], [ 37.089844, 19.476950 ], [ 37.265625, 19.476950 ], [ 37.265625, 18.812718 ], [ 37.441406, 18.812718 ], [ 37.441406, 18.479609 ], [ 37.792969, 18.479609 ], [ 37.792969, 18.312811 ], [ 38.144531, 18.312811 ], [ 38.144531, 18.145852 ], [ 38.320312, 18.145852 ], [ 38.320312, 17.978733 ], [ 38.144531, 17.978733 ], [ 38.144531, 17.811456 ], [ 37.968750, 17.811456 ], [ 37.968750, 17.476432 ], [ 37.617188, 17.476432 ], [ 37.617188, 17.308688 ], [ 37.089844, 17.308688 ], [ 37.089844, 17.140790 ], [ 36.914062, 17.140790 ], [ 36.914062, 16.972741 ], [ 36.738281, 16.972741 ], [ 36.738281, 15.961329 ], [ 36.562500, 15.961329 ], [ 36.562500, 15.623037 ], [ 36.386719, 15.623037 ], [ 36.386719, 15.114553 ], [ 36.210938, 15.114553 ], [ 36.210938, 14.604847 ], [ 36.386719, 14.604847 ], [ 36.386719, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 13.239945 ], [ 36.035156, 13.239945 ], [ 36.035156, 12.897489 ], [ 35.859375, 12.897489 ], [ 35.859375, 12.554564 ], [ 35.683594, 12.554564 ], [ 35.683594, 12.382928 ], [ 35.332031, 12.382928 ], [ 35.332031, 12.211180 ], [ 35.156250, 12.211180 ], [ 35.156250, 11.867351 ], [ 34.980469, 11.867351 ], [ 34.980469, 11.523088 ], [ 34.804688, 11.523088 ], [ 34.804688, 11.178402 ], [ 34.628906, 11.178402 ], [ 34.628906, 10.833306 ], [ 34.277344, 10.833306 ], [ 34.277344, 10.660608 ], [ 34.101562, 10.660608 ], [ 34.101562, 10.141932 ], [ 33.925781, 10.141932 ], [ 33.925781, 9.622414 ], [ 33.750000, 9.622414 ], [ 33.750000, 10.314919 ], [ 33.574219, 10.314919 ], [ 33.574219, 10.487812 ], [ 33.398438, 10.487812 ], [ 33.398438, 10.660608 ], [ 33.046875, 10.660608 ], [ 33.046875, 12.211180 ], [ 32.519531, 12.211180 ], [ 32.519531, 12.039321 ], [ 31.992188, 12.039321 ], [ 31.992188, 11.867351 ], [ 32.167969, 11.867351 ], [ 32.167969, 11.350797 ], [ 32.343750, 11.350797 ], [ 32.343750, 11.005904 ], [ 32.167969, 11.005904 ], [ 32.167969, 10.833306 ], [ 31.992188, 10.833306 ], [ 31.992188, 10.660608 ], [ 31.816406, 10.660608 ], [ 31.816406, 10.487812 ], [ 31.640625, 10.487812 ], [ 31.640625, 10.314919 ], [ 31.464844, 10.314919 ], [ 31.464844, 9.968851 ], [ 31.113281, 9.968851 ], [ 31.113281, 9.795678 ], [ 30.585938, 9.795678 ], [ 30.585938, 9.968851 ], [ 30.234375, 9.968851 ], [ 30.234375, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.968851 ], [ 29.355469, 9.968851 ], [ 29.355469, 9.795678 ], [ 29.179688, 9.795678 ], [ 29.179688, 9.622414 ], [ 28.828125, 9.622414 ], [ 28.828125, 9.449062 ], [ 27.773438, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.246094, 9.622414 ], [ 27.246094, 9.795678 ], [ 27.070312, 9.795678 ], [ 27.070312, 9.622414 ], [ 26.191406, 9.622414 ], [ 26.191406, 9.795678 ], [ 26.015625, 9.795678 ], [ 26.015625, 9.968851 ], [ 25.839844, 9.968851 ], [ 25.839844, 10.314919 ], [ 25.664062, 10.314919 ], [ 25.664062, 10.487812 ], [ 25.488281, 10.487812 ], [ 25.488281, 10.314919 ], [ 24.960938, 10.314919 ], [ 24.960938, 10.141932 ], [ 24.785156, 10.141932 ], [ 24.785156, 9.622414 ], [ 24.609375, 9.622414 ], [ 24.609375, 9.102097 ], [ 24.433594, 9.102097 ], [ 24.433594, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 8.928487 ], [ 23.378906, 8.928487 ], [ 23.378906, 9.449062 ], [ 23.554688, 9.449062 ], [ 23.554688, 10.141932 ], [ 23.378906, 10.141932 ], [ 23.378906, 10.314919 ], [ 23.203125, 10.314919 ], [ 23.203125, 10.487812 ], [ 23.027344, 10.487812 ], [ 23.027344, 10.660608 ], [ 22.851562, 10.660608 ], [ 22.851562, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.382928 ], [ 22.324219, 12.382928 ], [ 22.324219, 12.554564 ], [ 22.148438, 12.554564 ], [ 22.148438, 12.726084 ], [ 21.796875, 12.726084 ], [ 21.796875, 12.897489 ], [ 21.972656, 12.897489 ], [ 21.972656, 13.239945 ], [ 22.148438, 13.239945 ], [ 22.148438, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 14.093957 ], [ 22.324219, 14.093957 ], [ 22.324219, 14.264383 ], [ 22.148438, 14.264383 ], [ 22.148438, 14.434680 ], [ 22.324219, 14.434680 ], [ 22.324219, 14.774883 ], [ 22.500000, 14.774883 ], [ 22.500000, 15.114553 ], [ 22.675781, 15.114553 ], [ 22.675781, 15.453680 ], [ 22.851562, 15.453680 ], [ 22.851562, 15.792254 ], [ 23.203125, 15.792254 ], [ 23.203125, 15.623037 ], [ 23.730469, 15.623037 ], [ 23.730469, 20.138470 ], [ 24.960938, 20.138470 ], [ 24.960938, 22.105999 ], [ 36.738281, 22.105999 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.222656, 12.211180 ], [ 33.222656, 11.867351 ], [ 33.046875, 11.867351 ], [ 33.046875, 11.005904 ], [ 33.222656, 11.005904 ], [ 33.222656, 10.487812 ], [ 33.574219, 10.487812 ], [ 33.574219, 10.314919 ], [ 33.750000, 10.314919 ], [ 33.750000, 10.141932 ], [ 33.925781, 10.141932 ], [ 33.925781, 9.622414 ], [ 33.750000, 9.622414 ], [ 33.750000, 9.449062 ], [ 33.925781, 9.449062 ], [ 33.925781, 8.581021 ], [ 33.750000, 8.581021 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 33.222656, 8.233237 ], [ 33.046875, 8.233237 ], [ 33.046875, 7.885147 ], [ 32.871094, 7.885147 ], [ 32.871094, 7.710992 ], [ 33.574219, 7.710992 ], [ 33.574219, 7.536764 ], [ 33.750000, 7.536764 ], [ 33.750000, 7.362467 ], [ 33.925781, 7.362467 ], [ 33.925781, 7.188101 ], [ 34.101562, 7.188101 ], [ 34.101562, 7.013668 ], [ 34.277344, 7.013668 ], [ 34.277344, 6.664608 ], [ 34.628906, 6.664608 ], [ 34.628906, 6.489983 ], [ 34.804688, 6.489983 ], [ 34.804688, 6.140555 ], [ 34.980469, 6.140555 ], [ 34.980469, 5.790897 ], [ 35.156250, 5.790897 ], [ 35.156250, 5.441022 ], [ 35.332031, 5.441022 ], [ 35.332031, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.090944 ], [ 34.804688, 5.090944 ], [ 34.804688, 4.915833 ], [ 34.628906, 4.915833 ], [ 34.628906, 4.740675 ], [ 34.453125, 4.740675 ], [ 34.453125, 4.565474 ], [ 34.277344, 4.565474 ], [ 34.277344, 4.390229 ], [ 34.101562, 4.390229 ], [ 34.101562, 4.214943 ], [ 33.925781, 4.214943 ], [ 33.925781, 4.039618 ], [ 33.574219, 4.039618 ], [ 33.574219, 3.864255 ], [ 32.519531, 3.864255 ], [ 32.519531, 3.688855 ], [ 32.167969, 3.688855 ], [ 32.167969, 3.513421 ], [ 31.640625, 3.513421 ], [ 31.640625, 3.688855 ], [ 30.937500, 3.688855 ], [ 30.937500, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.688855 ], [ 30.410156, 3.688855 ], [ 30.410156, 3.864255 ], [ 30.058594, 3.864255 ], [ 30.058594, 4.039618 ], [ 29.882812, 4.039618 ], [ 29.882812, 4.390229 ], [ 29.707031, 4.390229 ], [ 29.707031, 4.565474 ], [ 29.531250, 4.565474 ], [ 29.531250, 4.390229 ], [ 28.652344, 4.390229 ], [ 28.652344, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.390229 ], [ 27.773438, 4.390229 ], [ 27.773438, 4.740675 ], [ 27.597656, 4.740675 ], [ 27.597656, 5.090944 ], [ 27.421875, 5.090944 ], [ 27.421875, 5.441022 ], [ 27.246094, 5.441022 ], [ 27.246094, 5.615986 ], [ 26.894531, 5.615986 ], [ 26.894531, 5.790897 ], [ 26.542969, 5.790897 ], [ 26.542969, 5.965754 ], [ 26.367188, 5.965754 ], [ 26.367188, 6.315299 ], [ 26.191406, 6.315299 ], [ 26.191406, 6.489983 ], [ 26.015625, 6.489983 ], [ 26.015625, 6.839170 ], [ 25.839844, 6.839170 ], [ 25.839844, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 7.188101 ], [ 25.312500, 7.188101 ], [ 25.312500, 7.362467 ], [ 25.136719, 7.362467 ], [ 25.136719, 7.885147 ], [ 24.960938, 7.885147 ], [ 24.960938, 8.059230 ], [ 24.609375, 8.059230 ], [ 24.609375, 8.233237 ], [ 24.257812, 8.233237 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.581021 ], [ 24.257812, 8.581021 ], [ 24.257812, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.275622 ], [ 24.785156, 9.275622 ], [ 24.785156, 9.795678 ], [ 24.960938, 9.795678 ], [ 24.960938, 10.141932 ], [ 25.136719, 10.141932 ], [ 25.136719, 10.314919 ], [ 25.664062, 10.314919 ], [ 25.664062, 10.487812 ], [ 25.839844, 10.487812 ], [ 25.839844, 10.314919 ], [ 26.015625, 10.314919 ], [ 26.015625, 9.968851 ], [ 26.191406, 9.968851 ], [ 26.191406, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.622414 ], [ 26.542969, 9.622414 ], [ 26.542969, 9.449062 ], [ 27.070312, 9.449062 ], [ 27.070312, 9.622414 ], [ 27.773438, 9.622414 ], [ 27.773438, 9.449062 ], [ 29.003906, 9.449062 ], [ 29.003906, 9.622414 ], [ 29.355469, 9.622414 ], [ 29.355469, 9.795678 ], [ 29.531250, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.882812, 10.141932 ], [ 29.882812, 10.314919 ], [ 30.058594, 10.314919 ], [ 30.058594, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.968851 ], [ 30.410156, 9.968851 ], [ 30.410156, 9.795678 ], [ 30.585938, 9.795678 ], [ 30.585938, 9.622414 ], [ 31.113281, 9.622414 ], [ 31.113281, 9.795678 ], [ 31.464844, 9.795678 ], [ 31.464844, 10.141932 ], [ 31.640625, 10.141932 ], [ 31.640625, 10.314919 ], [ 31.816406, 10.314919 ], [ 31.816406, 10.487812 ], [ 31.992188, 10.487812 ], [ 31.992188, 10.660608 ], [ 32.167969, 10.660608 ], [ 32.167969, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.695273 ], [ 32.167969, 11.695273 ], [ 32.167969, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 12.039321 ], [ 32.695312, 12.039321 ], [ 32.695312, 12.211180 ], [ 33.222656, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 12.211180 ], [ 33.046875, 10.660608 ], [ 33.398438, 10.660608 ], [ 33.398438, 10.487812 ], [ 33.574219, 10.487812 ], [ 33.574219, 10.314919 ], [ 33.750000, 10.314919 ], [ 33.750000, 9.622414 ], [ 33.925781, 9.622414 ], [ 33.925781, 8.581021 ], [ 33.750000, 8.581021 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 33.222656, 8.233237 ], [ 33.046875, 8.233237 ], [ 33.046875, 7.710992 ], [ 33.398438, 7.710992 ], [ 33.398438, 7.536764 ], [ 33.750000, 7.536764 ], [ 33.750000, 7.362467 ], [ 33.925781, 7.362467 ], [ 33.925781, 7.013668 ], [ 34.101562, 7.013668 ], [ 34.101562, 6.839170 ], [ 34.277344, 6.839170 ], [ 34.277344, 6.664608 ], [ 34.628906, 6.664608 ], [ 34.628906, 6.489983 ], [ 34.804688, 6.489983 ], [ 34.804688, 6.140555 ], [ 34.980469, 6.140555 ], [ 34.980469, 5.790897 ], [ 35.156250, 5.790897 ], [ 35.156250, 5.441022 ], [ 34.980469, 5.441022 ], [ 34.980469, 5.266008 ], [ 34.804688, 5.266008 ], [ 34.804688, 5.090944 ], [ 34.628906, 5.090944 ], [ 34.628906, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.740675 ], [ 34.277344, 4.740675 ], [ 34.277344, 4.565474 ], [ 34.101562, 4.565474 ], [ 34.101562, 4.390229 ], [ 33.925781, 4.390229 ], [ 33.925781, 4.214943 ], [ 33.750000, 4.214943 ], [ 33.750000, 4.039618 ], [ 33.398438, 4.039618 ], [ 33.398438, 3.864255 ], [ 32.343750, 3.864255 ], [ 32.343750, 3.688855 ], [ 31.289062, 3.688855 ], [ 31.289062, 3.864255 ], [ 31.113281, 3.864255 ], [ 31.113281, 3.688855 ], [ 30.937500, 3.688855 ], [ 30.937500, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.688855 ], [ 30.410156, 3.688855 ], [ 30.410156, 3.864255 ], [ 30.058594, 3.864255 ], [ 30.058594, 4.039618 ], [ 29.882812, 4.039618 ], [ 29.882812, 4.390229 ], [ 29.707031, 4.390229 ], [ 29.707031, 4.565474 ], [ 29.355469, 4.565474 ], [ 29.355469, 4.390229 ], [ 27.949219, 4.390229 ], [ 27.949219, 4.565474 ], [ 27.773438, 4.565474 ], [ 27.773438, 4.740675 ], [ 27.597656, 4.740675 ], [ 27.597656, 4.915833 ], [ 27.421875, 4.915833 ], [ 27.421875, 5.090944 ], [ 27.246094, 5.090944 ], [ 27.246094, 5.441022 ], [ 27.070312, 5.441022 ], [ 27.070312, 5.615986 ], [ 26.718750, 5.615986 ], [ 26.718750, 5.790897 ], [ 26.367188, 5.790897 ], [ 26.367188, 6.315299 ], [ 26.191406, 6.315299 ], [ 26.191406, 6.664608 ], [ 26.015625, 6.664608 ], [ 26.015625, 6.839170 ], [ 25.664062, 6.839170 ], [ 25.664062, 7.013668 ], [ 25.488281, 7.013668 ], [ 25.488281, 7.188101 ], [ 25.136719, 7.188101 ], [ 25.136719, 7.362467 ], [ 24.960938, 7.362467 ], [ 24.960938, 7.885147 ], [ 24.785156, 7.885147 ], [ 24.785156, 8.059230 ], [ 24.433594, 8.059230 ], [ 24.433594, 8.233237 ], [ 24.257812, 8.233237 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.581021 ], [ 23.730469, 8.581021 ], [ 23.730469, 8.754795 ], [ 24.433594, 8.754795 ], [ 24.433594, 9.102097 ], [ 24.609375, 9.102097 ], [ 24.609375, 9.622414 ], [ 24.785156, 9.622414 ], [ 24.785156, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 10.314919 ], [ 25.488281, 10.314919 ], [ 25.488281, 10.487812 ], [ 25.664062, 10.487812 ], [ 25.664062, 10.314919 ], [ 25.839844, 10.314919 ], [ 25.839844, 9.968851 ], [ 26.015625, 9.968851 ], [ 26.015625, 9.795678 ], [ 26.191406, 9.795678 ], [ 26.191406, 9.622414 ], [ 27.070312, 9.622414 ], [ 27.070312, 9.795678 ], [ 27.246094, 9.795678 ], [ 27.246094, 9.622414 ], [ 27.773438, 9.622414 ], [ 27.773438, 9.449062 ], [ 28.828125, 9.449062 ], [ 28.828125, 9.622414 ], [ 29.179688, 9.622414 ], [ 29.179688, 9.795678 ], [ 29.355469, 9.795678 ], [ 29.355469, 9.968851 ], [ 29.531250, 9.968851 ], [ 29.531250, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.968851 ], [ 30.585938, 9.968851 ], [ 30.585938, 9.795678 ], [ 31.113281, 9.795678 ], [ 31.113281, 9.968851 ], [ 31.464844, 9.968851 ], [ 31.464844, 10.314919 ], [ 31.640625, 10.314919 ], [ 31.640625, 10.487812 ], [ 31.816406, 10.487812 ], [ 31.816406, 10.660608 ], [ 31.992188, 10.660608 ], [ 31.992188, 10.833306 ], [ 32.167969, 10.833306 ], [ 32.167969, 11.005904 ], [ 32.343750, 11.005904 ], [ 32.343750, 11.350797 ], [ 32.167969, 11.350797 ], [ 32.167969, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 12.039321 ], [ 32.519531, 12.039321 ], [ 32.519531, 12.211180 ], [ 33.046875, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 4.039618 ], [ 34.101562, 3.864255 ], [ 34.277344, 3.864255 ], [ 34.277344, 3.513421 ], [ 34.453125, 3.513421 ], [ 34.453125, 3.162456 ], [ 34.628906, 3.162456 ], [ 34.628906, 2.635789 ], [ 34.804688, 2.635789 ], [ 34.804688, 2.108899 ], [ 34.980469, 2.108899 ], [ 34.980469, 1.757537 ], [ 34.804688, 1.757537 ], [ 34.804688, 1.406109 ], [ 34.628906, 1.406109 ], [ 34.628906, 1.054628 ], [ 34.453125, 1.054628 ], [ 34.453125, 0.878872 ], [ 34.277344, 0.878872 ], [ 34.277344, 0.527336 ], [ 34.101562, 0.527336 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, -0.878872 ], [ 29.531250, -0.878872 ], [ 29.531250, -0.527336 ], [ 29.707031, -0.527336 ], [ 29.707031, -0.351560 ], [ 29.882812, -0.351560 ], [ 29.882812, 0.703107 ], [ 30.058594, 0.703107 ], [ 30.058594, 1.054628 ], [ 30.234375, 1.054628 ], [ 30.234375, 1.406109 ], [ 30.410156, 1.406109 ], [ 30.410156, 1.581830 ], [ 30.585938, 1.581830 ], [ 30.585938, 1.757537 ], [ 30.937500, 1.757537 ], [ 30.937500, 2.108899 ], [ 31.113281, 2.108899 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.284551 ], [ 30.761719, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 3.688855 ], [ 31.640625, 3.688855 ], [ 31.640625, 3.513421 ], [ 32.167969, 3.513421 ], [ 32.167969, 3.688855 ], [ 32.519531, 3.688855 ], [ 32.519531, 3.864255 ], [ 33.574219, 3.864255 ], [ 33.574219, 4.039618 ], [ 34.101562, 4.039618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 4.214943 ], [ 34.101562, 4.039618 ], [ 34.277344, 4.039618 ], [ 34.277344, 3.688855 ], [ 34.453125, 3.688855 ], [ 34.453125, 2.811371 ], [ 34.628906, 2.811371 ], [ 34.628906, 2.460181 ], [ 34.804688, 2.460181 ], [ 34.804688, 2.108899 ], [ 34.980469, 2.108899 ], [ 34.980469, 1.757537 ], [ 34.804688, 1.757537 ], [ 34.804688, 1.406109 ], [ 34.628906, 1.406109 ], [ 34.628906, 1.054628 ], [ 34.453125, 1.054628 ], [ 34.453125, 0.878872 ], [ 34.277344, 0.878872 ], [ 34.277344, 0.527336 ], [ 34.101562, 0.527336 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, 0.175781 ], [ 33.750000, 0.175781 ], [ 33.750000, -0.878872 ], [ 29.531250, -0.878872 ], [ 29.531250, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, 1.054628 ], [ 30.058594, 1.054628 ], [ 30.058594, 1.230374 ], [ 30.234375, 1.230374 ], [ 30.234375, 1.406109 ], [ 30.410156, 1.406109 ], [ 30.410156, 1.581830 ], [ 30.585938, 1.581830 ], [ 30.585938, 1.757537 ], [ 30.761719, 1.757537 ], [ 30.761719, 1.933227 ], [ 30.937500, 1.933227 ], [ 30.937500, 2.108899 ], [ 31.113281, 2.108899 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.284551 ], [ 30.761719, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 3.688855 ], [ 31.113281, 3.688855 ], [ 31.113281, 3.864255 ], [ 31.289062, 3.864255 ], [ 31.289062, 3.688855 ], [ 32.343750, 3.688855 ], [ 32.343750, 3.864255 ], [ 33.398438, 3.864255 ], [ 33.398438, 4.039618 ], [ 33.750000, 4.039618 ], [ 33.750000, 4.214943 ], [ 34.101562, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 17.811456 ], [ 38.496094, 17.644022 ], [ 38.671875, 17.644022 ], [ 38.671875, 17.308688 ], [ 38.847656, 17.308688 ], [ 38.847656, 16.972741 ], [ 39.023438, 16.972741 ], [ 39.023438, 16.299051 ], [ 39.199219, 16.299051 ], [ 39.199219, 15.792254 ], [ 39.375000, 15.792254 ], [ 39.375000, 15.623037 ], [ 39.550781, 15.623037 ], [ 39.550781, 15.453680 ], [ 39.726562, 15.453680 ], [ 39.726562, 15.284185 ], [ 39.902344, 15.284185 ], [ 39.902344, 15.114553 ], [ 40.253906, 15.114553 ], [ 40.253906, 14.944785 ], [ 40.429688, 14.944785 ], [ 40.429688, 14.774883 ], [ 40.605469, 14.774883 ], [ 40.605469, 14.604847 ], [ 40.957031, 14.604847 ], [ 40.957031, 14.434680 ], [ 41.132812, 14.434680 ], [ 41.132812, 14.264383 ], [ 41.308594, 14.264383 ], [ 41.308594, 14.093957 ], [ 41.484375, 14.093957 ], [ 41.484375, 13.923404 ], [ 41.660156, 13.923404 ], [ 41.660156, 13.752725 ], [ 41.835938, 13.752725 ], [ 41.835938, 13.581921 ], [ 42.187500, 13.581921 ], [ 42.187500, 13.410994 ], [ 42.363281, 13.410994 ], [ 42.363281, 13.239945 ], [ 42.539062, 13.239945 ], [ 42.539062, 12.897489 ], [ 42.890625, 12.897489 ], [ 42.890625, 12.726084 ], [ 43.066406, 12.726084 ], [ 43.066406, 12.554564 ], [ 42.890625, 12.554564 ], [ 42.890625, 12.382928 ], [ 42.363281, 12.382928 ], [ 42.363281, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.726084 ], [ 42.011719, 12.726084 ], [ 42.011719, 12.897489 ], [ 41.835938, 12.897489 ], [ 41.835938, 13.239945 ], [ 41.660156, 13.239945 ], [ 41.660156, 13.410994 ], [ 41.484375, 13.410994 ], [ 41.484375, 13.581921 ], [ 41.132812, 13.581921 ], [ 41.132812, 13.923404 ], [ 40.957031, 13.923404 ], [ 40.957031, 14.093957 ], [ 40.605469, 14.093957 ], [ 40.605469, 14.264383 ], [ 40.253906, 14.264383 ], [ 40.253906, 14.434680 ], [ 39.550781, 14.434680 ], [ 39.550781, 14.604847 ], [ 38.671875, 14.604847 ], [ 38.671875, 14.434680 ], [ 38.320312, 14.434680 ], [ 38.320312, 14.604847 ], [ 38.144531, 14.604847 ], [ 38.144531, 14.774883 ], [ 37.792969, 14.774883 ], [ 37.792969, 14.434680 ], [ 37.617188, 14.434680 ], [ 37.617188, 14.264383 ], [ 36.914062, 14.264383 ], [ 36.914062, 14.434680 ], [ 36.386719, 14.434680 ], [ 36.386719, 15.114553 ], [ 36.562500, 15.114553 ], [ 36.562500, 15.792254 ], [ 36.738281, 15.792254 ], [ 36.738281, 16.636192 ], [ 36.914062, 16.636192 ], [ 36.914062, 17.140790 ], [ 37.089844, 17.140790 ], [ 37.089844, 17.308688 ], [ 37.617188, 17.308688 ], [ 37.617188, 17.476432 ], [ 38.144531, 17.476432 ], [ 38.144531, 17.644022 ], [ 38.320312, 17.644022 ], [ 38.320312, 17.811456 ], [ 38.496094, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.320312, 17.978733 ], [ 38.320312, 17.811456 ], [ 38.496094, 17.811456 ], [ 38.496094, 17.476432 ], [ 38.671875, 17.476432 ], [ 38.671875, 17.140790 ], [ 38.847656, 17.140790 ], [ 38.847656, 16.636192 ], [ 39.023438, 16.636192 ], [ 39.023438, 16.130262 ], [ 39.199219, 16.130262 ], [ 39.199219, 15.792254 ], [ 39.375000, 15.792254 ], [ 39.375000, 15.623037 ], [ 39.550781, 15.623037 ], [ 39.550781, 15.453680 ], [ 39.726562, 15.453680 ], [ 39.726562, 15.284185 ], [ 40.078125, 15.284185 ], [ 40.078125, 15.114553 ], [ 40.253906, 15.114553 ], [ 40.253906, 14.944785 ], [ 40.605469, 14.944785 ], [ 40.605469, 14.774883 ], [ 40.957031, 14.774883 ], [ 40.957031, 14.604847 ], [ 41.132812, 14.604847 ], [ 41.132812, 14.434680 ], [ 41.308594, 14.434680 ], [ 41.308594, 14.264383 ], [ 41.484375, 14.264383 ], [ 41.484375, 13.923404 ], [ 41.660156, 13.923404 ], [ 41.660156, 13.752725 ], [ 41.835938, 13.752725 ], [ 41.835938, 13.581921 ], [ 42.011719, 13.581921 ], [ 42.011719, 13.410994 ], [ 42.187500, 13.410994 ], [ 42.187500, 13.239945 ], [ 42.363281, 13.239945 ], [ 42.363281, 13.068777 ], [ 42.539062, 13.068777 ], [ 42.539062, 12.897489 ], [ 42.890625, 12.897489 ], [ 42.890625, 12.726084 ], [ 43.066406, 12.726084 ], [ 43.066406, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.726084 ], [ 42.011719, 12.726084 ], [ 42.011719, 12.897489 ], [ 41.835938, 12.897489 ], [ 41.835938, 13.239945 ], [ 41.660156, 13.239945 ], [ 41.660156, 13.410994 ], [ 41.484375, 13.410994 ], [ 41.484375, 13.581921 ], [ 41.308594, 13.581921 ], [ 41.308594, 13.752725 ], [ 41.132812, 13.752725 ], [ 41.132812, 13.923404 ], [ 40.957031, 13.923404 ], [ 40.957031, 14.093957 ], [ 40.781250, 14.093957 ], [ 40.781250, 14.264383 ], [ 40.429688, 14.264383 ], [ 40.429688, 14.434680 ], [ 40.078125, 14.434680 ], [ 40.078125, 14.604847 ], [ 39.023438, 14.604847 ], [ 39.023438, 14.774883 ], [ 38.847656, 14.774883 ], [ 38.847656, 14.604847 ], [ 38.320312, 14.604847 ], [ 38.320312, 14.774883 ], [ 37.968750, 14.774883 ], [ 37.968750, 14.944785 ], [ 37.792969, 14.944785 ], [ 37.792969, 14.774883 ], [ 37.617188, 14.774883 ], [ 37.617188, 14.434680 ], [ 37.441406, 14.434680 ], [ 37.441406, 14.264383 ], [ 36.738281, 14.264383 ], [ 36.738281, 14.434680 ], [ 36.386719, 14.434680 ], [ 36.386719, 14.604847 ], [ 36.210938, 14.604847 ], [ 36.210938, 15.114553 ], [ 36.386719, 15.114553 ], [ 36.386719, 15.623037 ], [ 36.562500, 15.623037 ], [ 36.562500, 15.961329 ], [ 36.738281, 15.961329 ], [ 36.738281, 16.972741 ], [ 36.914062, 16.972741 ], [ 36.914062, 17.140790 ], [ 37.089844, 17.140790 ], [ 37.089844, 17.308688 ], [ 37.617188, 17.308688 ], [ 37.617188, 17.476432 ], [ 37.968750, 17.476432 ], [ 37.968750, 17.811456 ], [ 38.144531, 17.811456 ], [ 38.144531, 17.978733 ], [ 38.320312, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.554564 ], [ 43.242188, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.695273 ], [ 42.714844, 11.695273 ], [ 42.714844, 11.523088 ], [ 43.066406, 11.523088 ], [ 43.066406, 11.350797 ], [ 42.890625, 11.350797 ], [ 42.890625, 11.005904 ], [ 41.835938, 11.005904 ], [ 41.835938, 11.178402 ], [ 41.660156, 11.178402 ], [ 41.660156, 11.695273 ], [ 41.835938, 11.695273 ], [ 41.835938, 11.867351 ], [ 42.011719, 11.867351 ], [ 42.011719, 12.039321 ], [ 42.187500, 12.039321 ], [ 42.187500, 12.382928 ], [ 42.890625, 12.382928 ], [ 42.890625, 12.554564 ], [ 43.242188, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.554564 ], [ 43.242188, 12.039321 ], [ 43.066406, 12.039321 ], [ 43.066406, 11.867351 ], [ 42.714844, 11.867351 ], [ 42.714844, 11.695273 ], [ 42.890625, 11.695273 ], [ 42.890625, 11.523088 ], [ 43.066406, 11.523088 ], [ 43.066406, 11.350797 ], [ 42.890625, 11.350797 ], [ 42.890625, 11.005904 ], [ 42.539062, 11.005904 ], [ 42.539062, 11.178402 ], [ 41.660156, 11.178402 ], [ 41.660156, 11.867351 ], [ 41.835938, 11.867351 ], [ 41.835938, 12.211180 ], [ 42.011719, 12.211180 ], [ 42.011719, 12.382928 ], [ 42.187500, 12.382928 ], [ 42.187500, 12.554564 ], [ 43.242188, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 5.441022 ], [ 35.507812, 5.266008 ], [ 35.859375, 5.266008 ], [ 35.859375, 4.565474 ], [ 36.035156, 4.565474 ], [ 36.035156, 4.390229 ], [ 36.914062, 4.390229 ], [ 36.914062, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 4.039618 ], [ 37.441406, 4.039618 ], [ 37.441406, 3.864255 ], [ 37.617188, 3.864255 ], [ 37.617188, 3.688855 ], [ 37.968750, 3.688855 ], [ 37.968750, 3.513421 ], [ 39.023438, 3.513421 ], [ 39.023438, 3.337954 ], [ 39.726562, 3.337954 ], [ 39.726562, 3.688855 ], [ 39.902344, 3.688855 ], [ 39.902344, 3.864255 ], [ 40.253906, 3.864255 ], [ 40.253906, 4.039618 ], [ 40.605469, 4.039618 ], [ 40.605469, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 4.039618 ], [ 40.957031, 4.039618 ], [ 40.957031, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 3.688855 ], [ 41.660156, 3.688855 ], [ 41.660156, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 3.337954 ], [ 41.308594, 3.337954 ], [ 41.308594, 2.986927 ], [ 41.132812, 2.986927 ], [ 41.132812, 2.811371 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 33.925781, -0.878872 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.527336 ], [ 34.277344, 0.527336 ], [ 34.277344, 0.878872 ], [ 34.453125, 0.878872 ], [ 34.453125, 1.054628 ], [ 34.628906, 1.054628 ], [ 34.628906, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 1.757537 ], [ 34.980469, 1.757537 ], [ 34.980469, 2.108899 ], [ 34.804688, 2.108899 ], [ 34.804688, 2.635789 ], [ 34.628906, 2.635789 ], [ 34.628906, 3.162456 ], [ 34.453125, 3.162456 ], [ 34.453125, 3.513421 ], [ 34.277344, 3.513421 ], [ 34.277344, 3.864255 ], [ 34.101562, 3.864255 ], [ 34.101562, 4.039618 ], [ 33.925781, 4.039618 ], [ 33.925781, 4.214943 ], [ 34.101562, 4.214943 ], [ 34.101562, 4.390229 ], [ 34.277344, 4.390229 ], [ 34.277344, 4.565474 ], [ 34.453125, 4.565474 ], [ 34.453125, 4.740675 ], [ 34.628906, 4.740675 ], [ 34.628906, 4.915833 ], [ 34.804688, 4.915833 ], [ 34.804688, 5.090944 ], [ 35.156250, 5.090944 ], [ 35.156250, 5.266008 ], [ 35.332031, 5.266008 ], [ 35.332031, 5.441022 ], [ 35.507812, 5.441022 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.332031, 5.615986 ], [ 35.332031, 5.441022 ], [ 35.683594, 5.441022 ], [ 35.683594, 4.740675 ], [ 35.859375, 4.740675 ], [ 35.859375, 4.565474 ], [ 36.738281, 4.565474 ], [ 36.738281, 4.390229 ], [ 37.089844, 4.390229 ], [ 37.089844, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 4.039618 ], [ 37.441406, 4.039618 ], [ 37.441406, 3.864255 ], [ 37.792969, 3.864255 ], [ 37.792969, 3.688855 ], [ 38.671875, 3.688855 ], [ 38.671875, 3.513421 ], [ 39.550781, 3.513421 ], [ 39.550781, 3.688855 ], [ 39.726562, 3.688855 ], [ 39.726562, 3.864255 ], [ 39.902344, 3.864255 ], [ 39.902344, 4.039618 ], [ 40.253906, 4.039618 ], [ 40.253906, 4.214943 ], [ 40.957031, 4.214943 ], [ 40.957031, 4.039618 ], [ 41.835938, 4.039618 ], [ 41.835938, 3.864255 ], [ 41.660156, 3.864255 ], [ 41.660156, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 3.337954 ], [ 41.308594, 3.337954 ], [ 41.308594, 3.162456 ], [ 41.132812, 3.162456 ], [ 41.132812, 2.811371 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 33.750000, -0.878872 ], [ 33.750000, 0.175781 ], [ 33.925781, 0.175781 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.527336 ], [ 34.277344, 0.527336 ], [ 34.277344, 0.878872 ], [ 34.453125, 0.878872 ], [ 34.453125, 1.054628 ], [ 34.628906, 1.054628 ], [ 34.628906, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 1.757537 ], [ 34.980469, 1.757537 ], [ 34.980469, 2.108899 ], [ 34.804688, 2.108899 ], [ 34.804688, 2.460181 ], [ 34.628906, 2.460181 ], [ 34.628906, 2.811371 ], [ 34.453125, 2.811371 ], [ 34.453125, 3.688855 ], [ 34.277344, 3.688855 ], [ 34.277344, 4.039618 ], [ 34.101562, 4.039618 ], [ 34.101562, 4.214943 ], [ 33.925781, 4.214943 ], [ 33.925781, 4.390229 ], [ 34.101562, 4.390229 ], [ 34.101562, 4.565474 ], [ 34.277344, 4.565474 ], [ 34.277344, 4.740675 ], [ 34.453125, 4.740675 ], [ 34.453125, 4.915833 ], [ 34.628906, 4.915833 ], [ 34.628906, 5.090944 ], [ 34.804688, 5.090944 ], [ 34.804688, 5.266008 ], [ 34.980469, 5.266008 ], [ 34.980469, 5.441022 ], [ 35.156250, 5.441022 ], [ 35.156250, 5.615986 ], [ 35.332031, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.144531, 14.774883 ], [ 38.144531, 14.604847 ], [ 38.320312, 14.604847 ], [ 38.320312, 14.434680 ], [ 38.671875, 14.434680 ], [ 38.671875, 14.604847 ], [ 39.550781, 14.604847 ], [ 39.550781, 14.434680 ], [ 40.253906, 14.434680 ], [ 40.253906, 14.264383 ], [ 40.605469, 14.264383 ], [ 40.605469, 14.093957 ], [ 40.957031, 14.093957 ], [ 40.957031, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.410994 ], [ 41.660156, 13.410994 ], [ 41.660156, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.897489 ], [ 42.011719, 12.897489 ], [ 42.011719, 12.726084 ], [ 42.187500, 12.726084 ], [ 42.187500, 12.554564 ], [ 42.363281, 12.554564 ], [ 42.363281, 12.382928 ], [ 42.187500, 12.382928 ], [ 42.187500, 12.039321 ], [ 42.011719, 12.039321 ], [ 42.011719, 11.867351 ], [ 41.835938, 11.867351 ], [ 41.835938, 11.695273 ], [ 41.660156, 11.695273 ], [ 41.660156, 11.178402 ], [ 41.835938, 11.178402 ], [ 41.835938, 11.005904 ], [ 42.714844, 11.005904 ], [ 42.714844, 10.660608 ], [ 42.539062, 10.660608 ], [ 42.539062, 10.314919 ], [ 42.714844, 10.314919 ], [ 42.714844, 9.968851 ], [ 42.890625, 9.968851 ], [ 42.890625, 9.795678 ], [ 43.066406, 9.795678 ], [ 43.066406, 9.622414 ], [ 43.242188, 9.622414 ], [ 43.242188, 9.449062 ], [ 43.417969, 9.449062 ], [ 43.417969, 9.102097 ], [ 43.769531, 9.102097 ], [ 43.769531, 8.928487 ], [ 44.296875, 8.928487 ], [ 44.296875, 8.754795 ], [ 45.000000, 8.754795 ], [ 45.000000, 8.581021 ], [ 45.527344, 8.581021 ], [ 45.527344, 8.407168 ], [ 45.878906, 8.407168 ], [ 45.878906, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.615986 ], [ 45.527344, 5.615986 ], [ 45.527344, 5.441022 ], [ 45.351562, 5.441022 ], [ 45.351562, 5.090944 ], [ 45.175781, 5.090944 ], [ 45.175781, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.740675 ], [ 43.417969, 4.740675 ], [ 43.417969, 4.565474 ], [ 43.066406, 4.565474 ], [ 43.066406, 4.390229 ], [ 42.890625, 4.390229 ], [ 42.890625, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 4.039618 ], [ 42.011719, 4.039618 ], [ 42.011719, 3.864255 ], [ 40.957031, 3.864255 ], [ 40.957031, 4.039618 ], [ 40.781250, 4.039618 ], [ 40.781250, 4.214943 ], [ 40.605469, 4.214943 ], [ 40.605469, 4.039618 ], [ 40.253906, 4.039618 ], [ 40.253906, 3.864255 ], [ 39.902344, 3.864255 ], [ 39.902344, 3.688855 ], [ 39.726562, 3.688855 ], [ 39.726562, 3.337954 ], [ 39.023438, 3.337954 ], [ 39.023438, 3.513421 ], [ 37.968750, 3.513421 ], [ 37.968750, 3.688855 ], [ 37.617188, 3.688855 ], [ 37.617188, 3.864255 ], [ 37.441406, 3.864255 ], [ 37.441406, 4.039618 ], [ 37.265625, 4.039618 ], [ 37.265625, 4.214943 ], [ 36.914062, 4.214943 ], [ 36.914062, 4.390229 ], [ 36.035156, 4.390229 ], [ 36.035156, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 5.266008 ], [ 35.507812, 5.266008 ], [ 35.507812, 5.441022 ], [ 35.156250, 5.441022 ], [ 35.156250, 5.790897 ], [ 34.980469, 5.790897 ], [ 34.980469, 6.140555 ], [ 34.804688, 6.140555 ], [ 34.804688, 6.489983 ], [ 34.628906, 6.489983 ], [ 34.628906, 6.664608 ], [ 34.277344, 6.664608 ], [ 34.277344, 7.013668 ], [ 34.101562, 7.013668 ], [ 34.101562, 7.188101 ], [ 33.925781, 7.188101 ], [ 33.925781, 7.362467 ], [ 33.750000, 7.362467 ], [ 33.750000, 7.536764 ], [ 33.574219, 7.536764 ], [ 33.574219, 7.710992 ], [ 32.871094, 7.710992 ], [ 32.871094, 7.885147 ], [ 33.046875, 7.885147 ], [ 33.046875, 8.233237 ], [ 33.222656, 8.233237 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 8.581021 ], [ 33.925781, 8.581021 ], [ 33.925781, 9.795678 ], [ 34.101562, 9.795678 ], [ 34.101562, 10.314919 ], [ 34.277344, 10.314919 ], [ 34.277344, 10.660608 ], [ 34.628906, 10.660608 ], [ 34.628906, 10.833306 ], [ 34.804688, 10.833306 ], [ 34.804688, 11.350797 ], [ 34.980469, 11.350797 ], [ 34.980469, 11.695273 ], [ 35.156250, 11.695273 ], [ 35.156250, 11.867351 ], [ 35.332031, 11.867351 ], [ 35.332031, 12.039321 ], [ 35.507812, 12.039321 ], [ 35.507812, 12.211180 ], [ 35.683594, 12.211180 ], [ 35.683594, 12.382928 ], [ 35.859375, 12.382928 ], [ 35.859375, 12.726084 ], [ 36.035156, 12.726084 ], [ 36.035156, 13.239945 ], [ 36.210938, 13.239945 ], [ 36.210938, 13.923404 ], [ 36.386719, 13.923404 ], [ 36.386719, 14.434680 ], [ 36.914062, 14.434680 ], [ 36.914062, 14.264383 ], [ 37.617188, 14.264383 ], [ 37.617188, 14.434680 ], [ 37.792969, 14.434680 ], [ 37.792969, 14.774883 ], [ 38.144531, 14.774883 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.968750, 14.944785 ], [ 37.968750, 14.774883 ], [ 38.320312, 14.774883 ], [ 38.320312, 14.604847 ], [ 38.847656, 14.604847 ], [ 38.847656, 14.774883 ], [ 39.023438, 14.774883 ], [ 39.023438, 14.604847 ], [ 40.078125, 14.604847 ], [ 40.078125, 14.434680 ], [ 40.429688, 14.434680 ], [ 40.429688, 14.264383 ], [ 40.781250, 14.264383 ], [ 40.781250, 14.093957 ], [ 40.957031, 14.093957 ], [ 40.957031, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.752725 ], [ 41.308594, 13.752725 ], [ 41.308594, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.410994 ], [ 41.660156, 13.410994 ], [ 41.660156, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.897489 ], [ 42.011719, 12.897489 ], [ 42.011719, 12.726084 ], [ 42.187500, 12.726084 ], [ 42.187500, 12.382928 ], [ 42.011719, 12.382928 ], [ 42.011719, 12.211180 ], [ 41.835938, 12.211180 ], [ 41.835938, 11.867351 ], [ 41.660156, 11.867351 ], [ 41.660156, 11.178402 ], [ 42.539062, 11.178402 ], [ 42.539062, 11.005904 ], [ 42.714844, 11.005904 ], [ 42.714844, 10.833306 ], [ 42.539062, 10.833306 ], [ 42.539062, 10.487812 ], [ 42.714844, 10.487812 ], [ 42.714844, 10.141932 ], [ 42.890625, 10.141932 ], [ 42.890625, 9.968851 ], [ 43.066406, 9.968851 ], [ 43.066406, 9.622414 ], [ 43.242188, 9.622414 ], [ 43.242188, 9.449062 ], [ 43.417969, 9.449062 ], [ 43.417969, 9.275622 ], [ 43.769531, 9.275622 ], [ 43.769531, 9.102097 ], [ 44.121094, 9.102097 ], [ 44.121094, 8.928487 ], [ 44.648438, 8.928487 ], [ 44.648438, 8.754795 ], [ 45.175781, 8.754795 ], [ 45.175781, 8.581021 ], [ 45.527344, 8.581021 ], [ 45.527344, 8.407168 ], [ 45.878906, 8.407168 ], [ 45.878906, 5.965754 ], [ 45.703125, 5.965754 ], [ 45.703125, 5.790897 ], [ 45.527344, 5.790897 ], [ 45.527344, 5.615986 ], [ 45.351562, 5.615986 ], [ 45.351562, 5.441022 ], [ 45.175781, 5.441022 ], [ 45.175781, 5.266008 ], [ 45.000000, 5.266008 ], [ 45.000000, 5.090944 ], [ 43.593750, 5.090944 ], [ 43.593750, 4.915833 ], [ 43.417969, 4.915833 ], [ 43.417969, 4.740675 ], [ 43.066406, 4.740675 ], [ 43.066406, 4.565474 ], [ 42.890625, 4.565474 ], [ 42.890625, 4.390229 ], [ 42.011719, 4.390229 ], [ 42.011719, 4.214943 ], [ 41.835938, 4.214943 ], [ 41.835938, 4.039618 ], [ 40.957031, 4.039618 ], [ 40.957031, 4.214943 ], [ 40.253906, 4.214943 ], [ 40.253906, 4.039618 ], [ 39.902344, 4.039618 ], [ 39.902344, 3.864255 ], [ 39.726562, 3.864255 ], [ 39.726562, 3.688855 ], [ 39.550781, 3.688855 ], [ 39.550781, 3.513421 ], [ 38.671875, 3.513421 ], [ 38.671875, 3.688855 ], [ 37.792969, 3.688855 ], [ 37.792969, 3.864255 ], [ 37.441406, 3.864255 ], [ 37.441406, 4.039618 ], [ 37.265625, 4.039618 ], [ 37.265625, 4.214943 ], [ 37.089844, 4.214943 ], [ 37.089844, 4.390229 ], [ 36.738281, 4.390229 ], [ 36.738281, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 4.740675 ], [ 35.683594, 4.740675 ], [ 35.683594, 5.441022 ], [ 35.332031, 5.441022 ], [ 35.332031, 5.615986 ], [ 35.156250, 5.615986 ], [ 35.156250, 5.790897 ], [ 34.980469, 5.790897 ], [ 34.980469, 6.140555 ], [ 34.804688, 6.140555 ], [ 34.804688, 6.489983 ], [ 34.628906, 6.489983 ], [ 34.628906, 6.664608 ], [ 34.277344, 6.664608 ], [ 34.277344, 6.839170 ], [ 34.101562, 6.839170 ], [ 34.101562, 7.013668 ], [ 33.925781, 7.013668 ], [ 33.925781, 7.362467 ], [ 33.750000, 7.362467 ], [ 33.750000, 7.536764 ], [ 33.398438, 7.536764 ], [ 33.398438, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.233237 ], [ 33.222656, 8.233237 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 8.581021 ], [ 33.925781, 8.581021 ], [ 33.925781, 10.141932 ], [ 34.101562, 10.141932 ], [ 34.101562, 10.660608 ], [ 34.277344, 10.660608 ], [ 34.277344, 10.833306 ], [ 34.628906, 10.833306 ], [ 34.628906, 11.178402 ], [ 34.804688, 11.178402 ], [ 34.804688, 11.523088 ], [ 34.980469, 11.523088 ], [ 34.980469, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 12.211180 ], [ 35.332031, 12.211180 ], [ 35.332031, 12.382928 ], [ 35.683594, 12.382928 ], [ 35.683594, 12.554564 ], [ 35.859375, 12.554564 ], [ 35.859375, 12.897489 ], [ 36.035156, 12.897489 ], [ 36.035156, 13.239945 ], [ 36.210938, 13.239945 ], [ 36.210938, 13.923404 ], [ 36.386719, 13.923404 ], [ 36.386719, 14.434680 ], [ 36.738281, 14.434680 ], [ 36.738281, 14.264383 ], [ 37.441406, 14.264383 ], [ 37.441406, 14.434680 ], [ 37.617188, 14.434680 ], [ 37.617188, 14.774883 ], [ 37.792969, 14.774883 ], [ 37.792969, 14.944785 ], [ 37.968750, 14.944785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ], [ 45.878906, 40.044438 ], [ 45.703125, 40.044438 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.878906, 39.774769 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 40.044438 ], [ 44.121094, 40.044438 ], [ 44.121094, 40.178873 ], [ 43.769531, 40.178873 ], [ 43.769531, 40.313043 ], [ 43.593750, 40.313043 ], [ 43.593750, 40.446947 ], [ 43.769531, 40.446947 ], [ 43.769531, 40.847060 ], [ 43.593750, 40.847060 ], [ 43.593750, 41.112469 ], [ 44.472656, 41.112469 ], [ 44.472656, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 41.376809 ], [ 44.824219, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 40.313043 ], [ 45.878906, 40.313043 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.878906, 39.774769 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.472656, 39.774769 ], [ 44.472656, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 40.044438 ], [ 43.945312, 40.044438 ], [ 43.945312, 40.178873 ], [ 43.593750, 40.178873 ], [ 43.593750, 40.979898 ], [ 43.417969, 40.979898 ], [ 43.417969, 41.112469 ], [ 43.945312, 41.112469 ], [ 43.945312, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.376809 ], [ 44.824219, 41.376809 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.774769 ], [ 45.000000, 39.774769 ] ] ], [ [ [ 45.878906, 40.044438 ], [ 45.878906, 39.774769 ], [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.044438 ], [ 45.878906, 40.044438 ] ] ], [ [ [ 45.527344, 41.112469 ], [ 45.878906, 41.112469 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.822591 ], [ 45.527344, 38.822591 ], [ 45.527344, 38.959409 ], [ 45.175781, 38.959409 ], [ 45.175781, 39.095963 ], [ 45.000000, 39.095963 ], [ 45.000000, 39.232253 ], [ 44.824219, 39.232253 ], [ 44.824219, 39.504041 ], [ 44.648438, 39.504041 ], [ 44.648438, 39.774769 ], [ 45.000000, 39.774769 ] ] ], [ [ [ 45.878906, 40.178873 ], [ 45.878906, 39.774769 ], [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ] ] ], [ [ [ 45.527344, 41.244772 ], [ 45.878906, 41.244772 ], [ 45.878906, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.847060 ], [ 45.351562, 40.979898 ], [ 45.175781, 40.979898 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 44.824219, 41.244772 ], [ 44.824219, 41.376809 ], [ 45.527344, 41.376809 ], [ 45.527344, 41.244772 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.741612 ], [ 45.878906, 33.284620 ], [ 45.703125, 33.284620 ], [ 45.703125, 33.578015 ], [ 45.527344, 33.578015 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.161818 ], [ 45.527344, 34.161818 ], [ 45.527344, 34.452218 ], [ 45.703125, 34.452218 ], [ 45.703125, 34.741612 ], [ 45.878906, 34.741612 ] ] ], [ [ [ 44.824219, 39.504041 ], [ 45.000000, 39.504041 ], [ 45.000000, 39.232253 ], [ 45.175781, 39.232253 ], [ 45.175781, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 45.878906, 38.822591 ], [ 45.878906, 35.746512 ], [ 45.703125, 35.746512 ], [ 45.703125, 35.889050 ], [ 45.351562, 35.889050 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 36.879621 ], [ 44.824219, 36.879621 ], [ 44.824219, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 38.134557 ], [ 44.472656, 38.134557 ], [ 44.472656, 38.548165 ], [ 44.296875, 38.548165 ], [ 44.296875, 39.095963 ], [ 44.121094, 39.095963 ], [ 44.121094, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 39.504041 ], [ 44.648438, 39.504041 ], [ 44.648438, 39.639538 ], [ 44.824219, 39.639538 ], [ 44.824219, 39.504041 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.885931 ], [ 45.878906, 33.431441 ], [ 45.703125, 33.431441 ], [ 45.703125, 33.724340 ], [ 45.527344, 33.724340 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.885931 ], [ 45.878906, 34.885931 ] ] ], [ [ [ 44.648438, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 38.959409 ], [ 45.527344, 38.959409 ], [ 45.527344, 38.822591 ], [ 45.878906, 38.822591 ], [ 45.878906, 35.889050 ], [ 45.527344, 35.889050 ], [ 45.527344, 36.031332 ], [ 45.351562, 36.031332 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.456636 ], [ 45.000000, 36.456636 ], [ 45.000000, 36.738884 ], [ 44.824219, 36.738884 ], [ 44.824219, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.300275 ], [ 44.472656, 37.300275 ], [ 44.472656, 37.579413 ], [ 44.296875, 37.579413 ], [ 44.296875, 37.857507 ], [ 44.121094, 37.857507 ], [ 44.121094, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 38.685510 ], [ 44.121094, 38.685510 ], [ 44.121094, 39.232253 ], [ 43.945312, 39.232253 ], [ 43.945312, 39.504041 ], [ 44.296875, 39.504041 ], [ 44.296875, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.504041 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.726562, 32.101190 ], [ 39.726562, 31.952162 ], [ 40.429688, 31.952162 ], [ 40.429688, 31.802893 ], [ 40.781250, 31.802893 ], [ 40.781250, 31.653381 ], [ 40.957031, 31.653381 ], [ 40.957031, 31.503629 ], [ 41.308594, 31.503629 ], [ 41.308594, 31.353637 ], [ 41.660156, 31.353637 ], [ 41.660156, 31.203405 ], [ 41.835938, 31.203405 ], [ 41.835938, 31.052934 ], [ 42.011719, 31.052934 ], [ 42.011719, 30.902225 ], [ 42.363281, 30.902225 ], [ 42.363281, 30.751278 ], [ 42.539062, 30.751278 ], [ 42.539062, 30.600094 ], [ 42.714844, 30.600094 ], [ 42.714844, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.297018 ], [ 43.066406, 30.297018 ], [ 43.066406, 30.145127 ], [ 43.417969, 30.145127 ], [ 43.417969, 29.993002 ], [ 43.593750, 29.993002 ], [ 43.593750, 29.840644 ], [ 43.769531, 29.840644 ], [ 43.769531, 29.688053 ], [ 43.945312, 29.688053 ], [ 43.945312, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.382175 ], [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 45.175781, 29.228890 ], [ 45.175781, 29.075375 ], [ 45.878906, 29.075375 ], [ 45.878906, 17.308688 ], [ 45.175781, 17.308688 ], [ 45.175781, 17.476432 ], [ 44.121094, 17.476432 ], [ 44.121094, 17.308688 ], [ 43.593750, 17.308688 ], [ 43.593750, 17.476432 ], [ 43.242188, 17.476432 ], [ 43.242188, 17.140790 ], [ 43.066406, 17.140790 ], [ 43.066406, 16.804541 ], [ 43.242188, 16.804541 ], [ 43.242188, 16.467695 ], [ 42.890625, 16.467695 ], [ 42.890625, 16.299051 ], [ 42.714844, 16.299051 ], [ 42.714844, 16.804541 ], [ 42.539062, 16.804541 ], [ 42.539062, 16.972741 ], [ 42.363281, 16.972741 ], [ 42.363281, 17.308688 ], [ 42.187500, 17.308688 ], [ 42.187500, 17.476432 ], [ 42.011719, 17.476432 ], [ 42.011719, 17.644022 ], [ 41.835938, 17.644022 ], [ 41.835938, 17.811456 ], [ 41.660156, 17.811456 ], [ 41.660156, 18.145852 ], [ 41.484375, 18.145852 ], [ 41.484375, 18.479609 ], [ 41.308594, 18.479609 ], [ 41.308594, 18.812718 ], [ 41.132812, 18.812718 ], [ 41.132812, 19.145168 ], [ 40.957031, 19.145168 ], [ 40.957031, 19.476950 ], [ 40.781250, 19.476950 ], [ 40.781250, 19.642588 ], [ 40.605469, 19.642588 ], [ 40.605469, 19.808054 ], [ 40.429688, 19.808054 ], [ 40.429688, 19.973349 ], [ 40.253906, 19.973349 ], [ 40.253906, 20.138470 ], [ 39.902344, 20.138470 ], [ 39.902344, 20.303418 ], [ 39.726562, 20.303418 ], [ 39.726562, 20.468189 ], [ 39.550781, 20.468189 ], [ 39.550781, 20.797201 ], [ 39.375000, 20.797201 ], [ 39.375000, 21.125498 ], [ 39.199219, 21.125498 ], [ 39.199219, 21.616579 ], [ 39.023438, 21.616579 ], [ 39.023438, 22.755921 ], [ 38.847656, 22.755921 ], [ 38.847656, 23.079732 ], [ 38.671875, 23.079732 ], [ 38.671875, 23.402765 ], [ 38.496094, 23.402765 ], [ 38.496094, 23.725012 ], [ 38.320312, 23.725012 ], [ 38.320312, 23.885838 ], [ 37.968750, 23.885838 ], [ 37.968750, 24.046464 ], [ 37.617188, 24.046464 ], [ 37.617188, 24.206890 ], [ 37.441406, 24.206890 ], [ 37.441406, 24.367114 ], [ 37.265625, 24.367114 ], [ 37.265625, 24.686952 ], [ 37.089844, 24.686952 ], [ 37.089844, 24.846565 ], [ 37.265625, 24.846565 ], [ 37.265625, 25.165173 ], [ 37.089844, 25.165173 ], [ 37.089844, 25.482951 ], [ 36.914062, 25.482951 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.641526 ], [ 36.562500, 25.958045 ], [ 36.386719, 25.958045 ], [ 36.386719, 26.273714 ], [ 36.210938, 26.273714 ], [ 36.210938, 26.588527 ], [ 36.035156, 26.588527 ], [ 36.035156, 26.902477 ], [ 35.859375, 26.902477 ], [ 35.859375, 27.215556 ], [ 35.683594, 27.215556 ], [ 35.683594, 27.371767 ], [ 35.507812, 27.371767 ], [ 35.507812, 27.683528 ], [ 35.332031, 27.683528 ], [ 35.332031, 27.839076 ], [ 35.156250, 27.839076 ], [ 35.156250, 27.994401 ], [ 34.628906, 27.994401 ], [ 34.628906, 28.304381 ], [ 34.804688, 28.304381 ], [ 34.804688, 29.075375 ], [ 34.980469, 29.075375 ], [ 34.980469, 29.382175 ], [ 35.332031, 29.382175 ], [ 35.332031, 29.228890 ], [ 36.210938, 29.228890 ], [ 36.210938, 29.382175 ], [ 36.562500, 29.382175 ], [ 36.562500, 29.688053 ], [ 36.738281, 29.688053 ], [ 36.738281, 29.840644 ], [ 37.265625, 29.840644 ], [ 37.265625, 29.993002 ], [ 37.441406, 29.993002 ], [ 37.441406, 30.145127 ], [ 37.617188, 30.145127 ], [ 37.617188, 30.297018 ], [ 37.968750, 30.297018 ], [ 37.968750, 30.448674 ], [ 37.792969, 30.448674 ], [ 37.792969, 30.751278 ], [ 37.617188, 30.751278 ], [ 37.617188, 30.902225 ], [ 37.441406, 30.902225 ], [ 37.441406, 31.052934 ], [ 37.265625, 31.052934 ], [ 37.265625, 31.353637 ], [ 37.089844, 31.353637 ], [ 37.089844, 31.503629 ], [ 37.441406, 31.503629 ], [ 37.441406, 31.653381 ], [ 38.144531, 31.653381 ], [ 38.144531, 31.802893 ], [ 38.847656, 31.802893 ], [ 38.847656, 31.952162 ], [ 39.199219, 31.952162 ], [ 39.199219, 32.101190 ], [ 39.726562, 32.101190 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.249974 ], [ 39.199219, 32.101190 ], [ 39.902344, 32.101190 ], [ 39.902344, 31.952162 ], [ 40.253906, 31.952162 ], [ 40.253906, 31.802893 ], [ 40.605469, 31.802893 ], [ 40.605469, 31.653381 ], [ 40.957031, 31.653381 ], [ 40.957031, 31.503629 ], [ 41.308594, 31.503629 ], [ 41.308594, 31.353637 ], [ 41.660156, 31.353637 ], [ 41.660156, 31.203405 ], [ 41.835938, 31.203405 ], [ 41.835938, 31.052934 ], [ 42.011719, 31.052934 ], [ 42.011719, 30.902225 ], [ 42.363281, 30.902225 ], [ 42.363281, 30.751278 ], [ 42.539062, 30.751278 ], [ 42.539062, 30.600094 ], [ 42.714844, 30.600094 ], [ 42.714844, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.297018 ], [ 43.066406, 30.297018 ], [ 43.066406, 30.145127 ], [ 43.417969, 30.145127 ], [ 43.417969, 29.993002 ], [ 43.593750, 29.993002 ], [ 43.593750, 29.840644 ], [ 43.769531, 29.840644 ], [ 43.769531, 29.688053 ], [ 43.945312, 29.688053 ], [ 43.945312, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.382175 ], [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 45.878906, 29.228890 ], [ 45.878906, 17.308688 ], [ 45.527344, 17.308688 ], [ 45.527344, 17.476432 ], [ 43.417969, 17.476432 ], [ 43.417969, 17.644022 ], [ 43.242188, 17.644022 ], [ 43.242188, 17.308688 ], [ 43.066406, 17.308688 ], [ 43.066406, 16.636192 ], [ 42.890625, 16.636192 ], [ 42.890625, 16.467695 ], [ 42.714844, 16.467695 ], [ 42.714844, 16.636192 ], [ 42.539062, 16.636192 ], [ 42.539062, 16.804541 ], [ 42.363281, 16.804541 ], [ 42.363281, 16.972741 ], [ 42.187500, 16.972741 ], [ 42.187500, 17.476432 ], [ 42.011719, 17.476432 ], [ 42.011719, 17.644022 ], [ 41.835938, 17.644022 ], [ 41.835938, 17.811456 ], [ 41.660156, 17.811456 ], [ 41.660156, 17.978733 ], [ 41.484375, 17.978733 ], [ 41.484375, 18.312811 ], [ 41.308594, 18.312811 ], [ 41.308594, 18.646245 ], [ 41.132812, 18.646245 ], [ 41.132812, 18.979026 ], [ 40.957031, 18.979026 ], [ 40.957031, 19.311143 ], [ 40.781250, 19.311143 ], [ 40.781250, 19.642588 ], [ 40.605469, 19.642588 ], [ 40.605469, 19.808054 ], [ 40.429688, 19.808054 ], [ 40.429688, 19.973349 ], [ 40.253906, 19.973349 ], [ 40.253906, 20.138470 ], [ 40.078125, 20.138470 ], [ 40.078125, 20.303418 ], [ 39.726562, 20.303418 ], [ 39.726562, 20.468189 ], [ 39.550781, 20.468189 ], [ 39.550781, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 20.961440 ], [ 39.199219, 20.961440 ], [ 39.199219, 21.125498 ], [ 39.023438, 21.125498 ], [ 39.023438, 22.593726 ], [ 38.847656, 22.593726 ], [ 38.847656, 22.917923 ], [ 38.671875, 22.917923 ], [ 38.671875, 23.241346 ], [ 38.496094, 23.241346 ], [ 38.496094, 23.563987 ], [ 38.320312, 23.563987 ], [ 38.320312, 23.725012 ], [ 38.144531, 23.725012 ], [ 38.144531, 24.046464 ], [ 37.968750, 24.046464 ], [ 37.968750, 24.206890 ], [ 37.617188, 24.206890 ], [ 37.617188, 24.367114 ], [ 37.441406, 24.367114 ], [ 37.441406, 24.527135 ], [ 37.265625, 24.527135 ], [ 37.265625, 24.846565 ], [ 37.089844, 24.846565 ], [ 37.089844, 25.324167 ], [ 36.914062, 25.324167 ], [ 36.914062, 25.641526 ], [ 36.738281, 25.641526 ], [ 36.738281, 25.799891 ], [ 36.562500, 25.799891 ], [ 36.562500, 26.115986 ], [ 36.386719, 26.115986 ], [ 36.386719, 26.431228 ], [ 36.210938, 26.431228 ], [ 36.210938, 26.588527 ], [ 36.035156, 26.588527 ], [ 36.035156, 26.902477 ], [ 35.859375, 26.902477 ], [ 35.859375, 27.059126 ], [ 35.683594, 27.059126 ], [ 35.683594, 27.371767 ], [ 35.507812, 27.371767 ], [ 35.507812, 27.527758 ], [ 35.332031, 27.527758 ], [ 35.332031, 27.839076 ], [ 35.156250, 27.839076 ], [ 35.156250, 27.994401 ], [ 34.980469, 27.994401 ], [ 34.980469, 28.149503 ], [ 34.628906, 28.149503 ], [ 34.628906, 28.767659 ], [ 34.804688, 28.767659 ], [ 34.804688, 29.382175 ], [ 35.332031, 29.382175 ], [ 35.332031, 29.228890 ], [ 36.210938, 29.228890 ], [ 36.210938, 29.382175 ], [ 36.386719, 29.382175 ], [ 36.386719, 29.535230 ], [ 36.562500, 29.535230 ], [ 36.562500, 29.840644 ], [ 36.738281, 29.840644 ], [ 36.738281, 29.993002 ], [ 37.265625, 29.993002 ], [ 37.265625, 30.145127 ], [ 37.441406, 30.145127 ], [ 37.441406, 30.297018 ], [ 37.617188, 30.297018 ], [ 37.617188, 30.448674 ], [ 37.968750, 30.448674 ], [ 37.968750, 30.600094 ], [ 37.792969, 30.600094 ], [ 37.792969, 30.751278 ], [ 37.617188, 30.751278 ], [ 37.617188, 30.902225 ], [ 37.441406, 30.902225 ], [ 37.441406, 31.203405 ], [ 37.265625, 31.203405 ], [ 37.265625, 31.353637 ], [ 37.089844, 31.353637 ], [ 37.089844, 31.503629 ], [ 36.914062, 31.503629 ], [ 36.914062, 31.653381 ], [ 37.265625, 31.653381 ], [ 37.265625, 31.802893 ], [ 37.968750, 31.802893 ], [ 37.968750, 31.952162 ], [ 38.671875, 31.952162 ], [ 38.671875, 32.101190 ], [ 39.023438, 32.101190 ], [ 39.023438, 32.249974 ], [ 39.199219, 32.249974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 17.476432 ], [ 45.175781, 17.308688 ], [ 45.878906, 17.308688 ], [ 45.878906, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 13.068777 ], [ 45.351562, 13.068777 ], [ 45.351562, 12.897489 ], [ 45.175781, 12.897489 ], [ 45.175781, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.472656, 12.554564 ], [ 43.417969, 12.554564 ], [ 43.417969, 12.897489 ], [ 43.242188, 12.897489 ], [ 43.242188, 13.923404 ], [ 43.066406, 13.923404 ], [ 43.066406, 14.434680 ], [ 42.890625, 14.434680 ], [ 42.890625, 14.774883 ], [ 42.714844, 14.774883 ], [ 42.714844, 15.114553 ], [ 42.539062, 15.114553 ], [ 42.539062, 15.284185 ], [ 42.890625, 15.284185 ], [ 42.890625, 15.453680 ], [ 42.714844, 15.453680 ], [ 42.714844, 15.792254 ], [ 42.890625, 15.792254 ], [ 42.890625, 16.130262 ], [ 42.714844, 16.130262 ], [ 42.714844, 16.299051 ], [ 42.890625, 16.299051 ], [ 42.890625, 16.467695 ], [ 43.242188, 16.467695 ], [ 43.242188, 16.804541 ], [ 43.066406, 16.804541 ], [ 43.066406, 17.140790 ], [ 43.242188, 17.140790 ], [ 43.242188, 17.476432 ], [ 43.593750, 17.476432 ], [ 43.593750, 17.308688 ], [ 44.121094, 17.308688 ], [ 44.121094, 17.476432 ], [ 45.175781, 17.476432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.417969, 17.644022 ], [ 43.417969, 17.476432 ], [ 45.527344, 17.476432 ], [ 45.527344, 17.308688 ], [ 45.878906, 17.308688 ], [ 45.878906, 13.410994 ], [ 45.527344, 13.410994 ], [ 45.527344, 13.239945 ], [ 45.351562, 13.239945 ], [ 45.351562, 13.068777 ], [ 45.000000, 13.068777 ], [ 45.000000, 12.897489 ], [ 44.824219, 12.897489 ], [ 44.824219, 12.726084 ], [ 43.242188, 12.726084 ], [ 43.242188, 13.068777 ], [ 43.066406, 13.068777 ], [ 43.066406, 13.581921 ], [ 43.242188, 13.581921 ], [ 43.242188, 13.923404 ], [ 43.066406, 13.923404 ], [ 43.066406, 14.434680 ], [ 42.890625, 14.434680 ], [ 42.890625, 14.944785 ], [ 42.714844, 14.944785 ], [ 42.714844, 15.114553 ], [ 42.539062, 15.114553 ], [ 42.539062, 15.284185 ], [ 42.714844, 15.284185 ], [ 42.714844, 15.453680 ], [ 42.539062, 15.453680 ], [ 42.539062, 15.792254 ], [ 42.714844, 15.792254 ], [ 42.714844, 16.467695 ], [ 42.890625, 16.467695 ], [ 42.890625, 16.636192 ], [ 43.066406, 16.636192 ], [ 43.066406, 17.308688 ], [ 43.242188, 17.308688 ], [ 43.242188, 17.644022 ], [ 43.417969, 17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.417969, 11.350797 ], [ 43.417969, 11.005904 ], [ 43.593750, 11.005904 ], [ 43.593750, 10.660608 ], [ 43.945312, 10.660608 ], [ 43.945312, 10.487812 ], [ 45.175781, 10.487812 ], [ 45.175781, 10.660608 ], [ 45.878906, 10.660608 ], [ 45.878906, 8.407168 ], [ 45.527344, 8.407168 ], [ 45.527344, 8.581021 ], [ 45.000000, 8.581021 ], [ 45.000000, 8.754795 ], [ 44.296875, 8.754795 ], [ 44.296875, 8.928487 ], [ 43.769531, 8.928487 ], [ 43.769531, 9.102097 ], [ 43.417969, 9.102097 ], [ 43.417969, 9.449062 ], [ 43.242188, 9.449062 ], [ 43.242188, 9.622414 ], [ 43.066406, 9.622414 ], [ 43.066406, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 9.968851 ], [ 42.714844, 9.968851 ], [ 42.714844, 10.314919 ], [ 42.539062, 10.314919 ], [ 42.539062, 10.660608 ], [ 42.714844, 10.660608 ], [ 42.714844, 11.005904 ], [ 42.890625, 11.005904 ], [ 42.890625, 11.350797 ], [ 43.417969, 11.350797 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.417969, 11.350797 ], [ 43.417969, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.833306 ], [ 43.769531, 10.833306 ], [ 43.769531, 10.487812 ], [ 44.824219, 10.487812 ], [ 44.824219, 10.660608 ], [ 45.351562, 10.660608 ], [ 45.351562, 10.833306 ], [ 45.878906, 10.833306 ], [ 45.878906, 8.407168 ], [ 45.527344, 8.407168 ], [ 45.527344, 8.581021 ], [ 45.175781, 8.581021 ], [ 45.175781, 8.754795 ], [ 44.648438, 8.754795 ], [ 44.648438, 8.928487 ], [ 44.121094, 8.928487 ], [ 44.121094, 9.102097 ], [ 43.769531, 9.102097 ], [ 43.769531, 9.275622 ], [ 43.417969, 9.275622 ], [ 43.417969, 9.449062 ], [ 43.242188, 9.449062 ], [ 43.242188, 9.622414 ], [ 43.066406, 9.622414 ], [ 43.066406, 9.968851 ], [ 42.890625, 9.968851 ], [ 42.890625, 10.141932 ], [ 42.714844, 10.141932 ], [ 42.714844, 10.487812 ], [ 42.539062, 10.487812 ], [ 42.539062, 10.833306 ], [ 42.714844, 10.833306 ], [ 42.714844, 11.005904 ], [ 42.890625, 11.005904 ], [ 42.890625, 11.350797 ], [ 43.417969, 11.350797 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.790897 ], [ 45.878906, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.351562, 1.933227 ], [ 45.351562, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.824219, 1.581830 ], [ 44.824219, 1.406109 ], [ 44.648438, 1.406109 ], [ 44.648438, 1.230374 ], [ 44.296875, 1.230374 ], [ 44.296875, 1.054628 ], [ 44.121094, 1.054628 ], [ 44.121094, 0.878872 ], [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 40.957031, -0.878872 ], [ 40.957031, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, 2.986927 ], [ 41.308594, 2.986927 ], [ 41.308594, 3.337954 ], [ 41.484375, 3.337954 ], [ 41.484375, 3.513421 ], [ 41.660156, 3.513421 ], [ 41.660156, 3.688855 ], [ 41.835938, 3.688855 ], [ 41.835938, 3.864255 ], [ 42.011719, 3.864255 ], [ 42.011719, 4.039618 ], [ 42.187500, 4.039618 ], [ 42.187500, 4.214943 ], [ 42.890625, 4.214943 ], [ 42.890625, 4.390229 ], [ 43.066406, 4.390229 ], [ 43.066406, 4.565474 ], [ 43.417969, 4.565474 ], [ 43.417969, 4.740675 ], [ 43.593750, 4.740675 ], [ 43.593750, 4.915833 ], [ 45.175781, 4.915833 ], [ 45.175781, 5.090944 ], [ 45.351562, 5.090944 ], [ 45.351562, 5.441022 ], [ 45.527344, 5.441022 ], [ 45.527344, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 5.790897 ], [ 45.878906, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.965754 ], [ 45.878906, 2.284551 ], [ 45.703125, 2.284551 ], [ 45.703125, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.175781, 1.933227 ], [ 45.175781, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.648438, 1.581830 ], [ 44.648438, 1.406109 ], [ 44.472656, 1.406109 ], [ 44.472656, 1.230374 ], [ 44.121094, 1.230374 ], [ 44.121094, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.878872 ], [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ], [ 43.417969, 0.703107 ], [ 43.417969, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 40.957031, -0.878872 ], [ 40.957031, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, 3.162456 ], [ 41.308594, 3.162456 ], [ 41.308594, 3.337954 ], [ 41.484375, 3.337954 ], [ 41.484375, 3.513421 ], [ 41.660156, 3.513421 ], [ 41.660156, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 4.214943 ], [ 42.011719, 4.214943 ], [ 42.011719, 4.390229 ], [ 42.890625, 4.390229 ], [ 42.890625, 4.565474 ], [ 43.066406, 4.565474 ], [ 43.066406, 4.740675 ], [ 43.417969, 4.740675 ], [ 43.417969, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 5.090944 ], [ 45.000000, 5.090944 ], [ 45.000000, 5.266008 ], [ 45.175781, 5.266008 ], [ 45.175781, 5.441022 ], [ 45.351562, 5.441022 ], [ 45.351562, 5.615986 ], [ 45.527344, 5.615986 ], [ 45.527344, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.965754 ], [ 45.878906, 5.965754 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.284551 ], [ 13.007812, 1.581830 ], [ 13.183594, 1.581830 ], [ 13.183594, 1.230374 ], [ 13.886719, 1.230374 ], [ 13.886719, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.230374 ], [ 14.238281, 1.230374 ], [ 14.238281, 0.878872 ], [ 14.062500, 0.878872 ], [ 14.062500, 0.175781 ], [ 13.886719, 0.175781 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -0.878872 ], [ 8.789062, -0.878872 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.703107 ], [ 8.964844, -0.351560 ], [ 9.140625, -0.351560 ], [ 9.140625, 0.000000 ], [ 9.316406, 0.000000 ], [ 9.316406, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.284551 ], [ 11.953125, 2.284551 ], [ 11.953125, 2.108899 ], [ 12.832031, 2.108899 ], [ 12.832031, 2.284551 ], [ 13.007812, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.832031, 2.460181 ], [ 12.832031, 2.284551 ], [ 13.007812, 2.284551 ], [ 13.007812, 2.108899 ], [ 12.832031, 2.108899 ], [ 12.832031, 1.757537 ], [ 13.007812, 1.757537 ], [ 13.007812, 1.406109 ], [ 13.886719, 1.406109 ], [ 13.886719, 1.230374 ], [ 14.238281, 1.230374 ], [ 14.238281, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 0.703107 ], [ 13.886719, 0.703107 ], [ 13.886719, 0.351560 ], [ 13.710938, 0.351560 ], [ 13.710938, 0.000000 ], [ 13.886719, 0.000000 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -0.878872 ], [ 8.789062, -0.878872 ], [ 8.789062, -0.527336 ], [ 8.964844, -0.527336 ], [ 8.964844, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 0.527336 ], [ 9.316406, 0.527336 ], [ 9.316406, 0.878872 ], [ 9.492188, 0.878872 ], [ 9.492188, 1.054628 ], [ 9.667969, 1.054628 ], [ 9.667969, 1.230374 ], [ 11.250000, 1.230374 ], [ 11.250000, 2.284551 ], [ 11.601562, 2.284551 ], [ 11.601562, 2.460181 ], [ 11.777344, 2.460181 ], [ 11.777344, 2.284551 ], [ 12.656250, 2.284551 ], [ 12.656250, 2.460181 ], [ 12.832031, 2.460181 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.226562, 3.688855 ], [ 17.226562, 3.513421 ], [ 18.457031, 3.513421 ], [ 18.457031, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 2.460181 ], [ 18.105469, 2.460181 ], [ 18.105469, 1.933227 ], [ 17.929688, 1.933227 ], [ 17.929688, 1.230374 ], [ 17.753906, 1.230374 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.878872 ], [ 14.414062, -0.878872 ], [ 14.414062, -0.703107 ], [ 14.238281, -0.703107 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.175781 ], [ 14.062500, 0.175781 ], [ 14.062500, 0.878872 ], [ 14.238281, 0.878872 ], [ 14.238281, 1.230374 ], [ 14.062500, 1.230374 ], [ 14.062500, 1.406109 ], [ 13.886719, 1.406109 ], [ 13.886719, 1.230374 ], [ 13.183594, 1.230374 ], [ 13.183594, 1.581830 ], [ 13.007812, 1.581830 ], [ 13.007812, 2.284551 ], [ 14.414062, 2.284551 ], [ 14.414062, 2.108899 ], [ 14.765625, 2.108899 ], [ 14.765625, 1.933227 ], [ 15.468750, 1.933227 ], [ 15.468750, 1.757537 ], [ 15.996094, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.171875, 2.284551 ], [ 16.171875, 2.635789 ], [ 16.347656, 2.635789 ], [ 16.347656, 2.986927 ], [ 16.523438, 2.986927 ], [ 16.523438, 3.162456 ], [ 16.699219, 3.162456 ], [ 16.699219, 3.337954 ], [ 16.875000, 3.337954 ], [ 16.875000, 3.513421 ], [ 17.050781, 3.513421 ], [ 17.050781, 3.688855 ], [ 17.226562, 3.688855 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.226562, 3.864255 ], [ 17.226562, 3.688855 ], [ 17.929688, 3.688855 ], [ 17.929688, 3.513421 ], [ 18.281250, 3.513421 ], [ 18.281250, 2.811371 ], [ 18.105469, 2.811371 ], [ 18.105469, 2.460181 ], [ 17.929688, 2.460181 ], [ 17.929688, 2.108899 ], [ 17.753906, 2.108899 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.527336 ], [ 17.402344, -0.527336 ], [ 17.402344, -0.878872 ], [ 14.238281, -0.878872 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, 0.351560 ], [ 13.886719, 0.351560 ], [ 13.886719, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 1.054628 ], [ 14.238281, 1.054628 ], [ 14.238281, 1.230374 ], [ 13.886719, 1.230374 ], [ 13.886719, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 1.757537 ], [ 12.832031, 1.757537 ], [ 12.832031, 2.108899 ], [ 13.007812, 2.108899 ], [ 13.007812, 2.284551 ], [ 14.589844, 2.284551 ], [ 14.589844, 2.108899 ], [ 15.117188, 2.108899 ], [ 15.117188, 1.933227 ], [ 15.468750, 1.933227 ], [ 15.468750, 1.757537 ], [ 15.820312, 1.757537 ], [ 15.820312, 1.933227 ], [ 15.996094, 1.933227 ], [ 15.996094, 2.460181 ], [ 16.171875, 2.460181 ], [ 16.171875, 2.811371 ], [ 16.347656, 2.811371 ], [ 16.347656, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 3.337954 ], [ 16.699219, 3.337954 ], [ 16.699219, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.688855 ], [ 17.050781, 3.688855 ], [ 17.050781, 3.864255 ], [ 17.226562, 3.864255 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 5.266008 ], [ 25.839844, 5.090944 ], [ 27.597656, 5.090944 ], [ 27.597656, 4.740675 ], [ 27.773438, 4.740675 ], [ 27.773438, 4.390229 ], [ 28.125000, 4.390229 ], [ 28.125000, 4.214943 ], [ 28.652344, 4.214943 ], [ 28.652344, 4.390229 ], [ 29.531250, 4.390229 ], [ 29.531250, 4.565474 ], [ 29.707031, 4.565474 ], [ 29.707031, 4.390229 ], [ 29.882812, 4.390229 ], [ 29.882812, 4.039618 ], [ 30.058594, 4.039618 ], [ 30.058594, 3.864255 ], [ 30.410156, 3.864255 ], [ 30.410156, 3.688855 ], [ 30.585938, 3.688855 ], [ 30.585938, 3.513421 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.284551 ], [ 31.113281, 2.284551 ], [ 31.113281, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.581830 ], [ 30.410156, 1.581830 ], [ 30.410156, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 1.054628 ], [ 30.058594, 1.054628 ], [ 30.058594, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, -0.527336 ], [ 29.531250, -0.527336 ], [ 29.531250, -0.878872 ], [ 17.578125, -0.878872 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 1.230374 ], [ 17.929688, 1.230374 ], [ 17.929688, 1.933227 ], [ 18.105469, 1.933227 ], [ 18.105469, 2.460181 ], [ 18.281250, 2.460181 ], [ 18.281250, 2.811371 ], [ 18.457031, 2.811371 ], [ 18.457031, 4.214943 ], [ 18.632812, 4.214943 ], [ 18.632812, 4.390229 ], [ 18.808594, 4.390229 ], [ 18.808594, 4.565474 ], [ 18.984375, 4.565474 ], [ 18.984375, 4.740675 ], [ 19.160156, 4.740675 ], [ 19.160156, 4.915833 ], [ 19.863281, 4.915833 ], [ 19.863281, 4.740675 ], [ 20.214844, 4.740675 ], [ 20.214844, 4.565474 ], [ 20.566406, 4.565474 ], [ 20.566406, 4.390229 ], [ 21.093750, 4.390229 ], [ 21.093750, 4.214943 ], [ 21.796875, 4.214943 ], [ 21.796875, 4.039618 ], [ 22.500000, 4.039618 ], [ 22.500000, 4.390229 ], [ 22.675781, 4.390229 ], [ 22.675781, 4.565474 ], [ 22.851562, 4.565474 ], [ 22.851562, 4.740675 ], [ 23.027344, 4.740675 ], [ 23.027344, 4.565474 ], [ 23.730469, 4.565474 ], [ 23.730469, 4.740675 ], [ 24.082031, 4.740675 ], [ 24.082031, 4.915833 ], [ 25.312500, 4.915833 ], [ 25.312500, 5.090944 ], [ 25.664062, 5.090944 ], [ 25.664062, 5.266008 ], [ 25.839844, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.246094, 5.266008 ], [ 27.246094, 5.090944 ], [ 27.421875, 5.090944 ], [ 27.421875, 4.915833 ], [ 27.597656, 4.915833 ], [ 27.597656, 4.740675 ], [ 27.773438, 4.740675 ], [ 27.773438, 4.565474 ], [ 27.949219, 4.565474 ], [ 27.949219, 4.390229 ], [ 29.355469, 4.390229 ], [ 29.355469, 4.565474 ], [ 29.707031, 4.565474 ], [ 29.707031, 4.390229 ], [ 29.882812, 4.390229 ], [ 29.882812, 4.039618 ], [ 30.058594, 4.039618 ], [ 30.058594, 3.864255 ], [ 30.410156, 3.864255 ], [ 30.410156, 3.688855 ], [ 30.585938, 3.688855 ], [ 30.585938, 3.513421 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.284551 ], [ 31.113281, 2.284551 ], [ 31.113281, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 1.933227 ], [ 30.761719, 1.933227 ], [ 30.761719, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.581830 ], [ 30.410156, 1.581830 ], [ 30.410156, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 1.230374 ], [ 30.058594, 1.230374 ], [ 30.058594, 1.054628 ], [ 29.882812, 1.054628 ], [ 29.882812, 0.703107 ], [ 29.707031, 0.703107 ], [ 29.707031, -0.351560 ], [ 29.531250, -0.351560 ], [ 29.531250, -0.878872 ], [ 17.402344, -0.878872 ], [ 17.402344, -0.527336 ], [ 17.578125, -0.527336 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 2.108899 ], [ 17.929688, 2.108899 ], [ 17.929688, 2.460181 ], [ 18.105469, 2.460181 ], [ 18.105469, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 3.864255 ], [ 18.457031, 3.864255 ], [ 18.457031, 4.214943 ], [ 18.632812, 4.214943 ], [ 18.632812, 4.565474 ], [ 18.808594, 4.565474 ], [ 18.808594, 4.740675 ], [ 18.984375, 4.740675 ], [ 18.984375, 4.915833 ], [ 19.335938, 4.915833 ], [ 19.335938, 5.090944 ], [ 19.511719, 5.090944 ], [ 19.511719, 4.915833 ], [ 19.863281, 4.915833 ], [ 19.863281, 4.740675 ], [ 20.214844, 4.740675 ], [ 20.214844, 4.565474 ], [ 20.566406, 4.565474 ], [ 20.566406, 4.390229 ], [ 21.621094, 4.390229 ], [ 21.621094, 4.214943 ], [ 21.972656, 4.214943 ], [ 21.972656, 4.039618 ], [ 22.324219, 4.039618 ], [ 22.324219, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 4.565474 ], [ 22.675781, 4.565474 ], [ 22.675781, 4.740675 ], [ 23.554688, 4.740675 ], [ 23.554688, 4.915833 ], [ 23.906250, 4.915833 ], [ 23.906250, 5.090944 ], [ 24.609375, 5.090944 ], [ 24.609375, 4.915833 ], [ 24.960938, 4.915833 ], [ 24.960938, 5.090944 ], [ 25.136719, 5.090944 ], [ 25.136719, 5.266008 ], [ 27.246094, 5.266008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 54.572062 ], [ -0.703125, 54.470038 ], [ -0.351562, 54.470038 ], [ -0.351562, 54.265224 ], [ -0.175781, 54.265224 ], [ -0.175781, 53.852527 ], [ 0.000000, 53.852527 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.225768 ], [ 0.351562, 53.225768 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.802761 ], [ 1.406250, 52.802761 ], [ 1.406250, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.375599 ], [ 1.582031, 52.375599 ], [ 1.582031, 51.944265 ], [ 1.230469, 51.944265 ], [ 1.230469, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.230469, 51.618017 ], [ 1.230469, 51.399206 ], [ 1.406250, 51.399206 ], [ 1.406250, 51.179343 ], [ 1.230469, 51.179343 ], [ 1.230469, 51.069017 ], [ 1.054688, 51.069017 ], [ 1.054688, 50.958427 ], [ 0.878906, 50.958427 ], [ 0.878906, 50.847573 ], [ 0.703125, 50.847573 ], [ 0.703125, 50.736455 ], [ -0.878906, 50.736455 ], [ -0.878906, 54.572062 ], [ -0.703125, 54.572062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 54.470038 ], [ -0.527344, 54.265224 ], [ -0.351562, 54.265224 ], [ -0.351562, 53.956086 ], [ -0.175781, 53.956086 ], [ -0.175781, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.120405 ], [ 0.351562, 53.120405 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 1.230469, 52.908902 ], [ 1.230469, 52.802761 ], [ 1.582031, 52.802761 ], [ 1.582031, 52.482780 ], [ 1.406250, 52.482780 ], [ 1.406250, 52.052490 ], [ 1.230469, 52.052490 ], [ 1.230469, 51.944265 ], [ 1.054688, 51.944265 ], [ 1.054688, 51.835778 ], [ 0.878906, 51.835778 ], [ 0.878906, 51.727028 ], [ 1.054688, 51.727028 ], [ 1.054688, 51.508742 ], [ 1.230469, 51.508742 ], [ 1.230469, 51.289406 ], [ 1.406250, 51.289406 ], [ 1.406250, 51.179343 ], [ 1.230469, 51.179343 ], [ 1.230469, 51.069017 ], [ 0.878906, 51.069017 ], [ 0.878906, 50.958427 ], [ 0.703125, 50.958427 ], [ 0.703125, 50.847573 ], [ -0.878906, 50.847573 ], [ -0.878906, 54.470038 ], [ -0.527344, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.316406, 42.940339 ], [ 9.316406, 42.553080 ], [ 9.492188, 42.553080 ], [ 9.492188, 41.771312 ], [ 9.316406, 41.771312 ], [ 9.316406, 41.376809 ], [ 9.140625, 41.376809 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.902277 ], [ 8.613281, 41.902277 ], [ 8.613281, 42.423457 ], [ 8.789062, 42.423457 ], [ 8.789062, 42.682435 ], [ 8.964844, 42.682435 ], [ 8.964844, 42.811522 ], [ 9.140625, 42.811522 ], [ 9.140625, 42.940339 ], [ 9.316406, 42.940339 ] ] ], [ [ [ 6.855469, 47.398349 ], [ 6.855469, 47.159840 ], [ 6.679688, 47.159840 ], [ 6.679688, 47.040182 ], [ 6.503906, 47.040182 ], [ 6.503906, 46.920255 ], [ 6.328125, 46.920255 ], [ 6.328125, 46.800059 ], [ 6.152344, 46.800059 ], [ 6.152344, 46.679594 ], [ 5.976562, 46.679594 ], [ 5.976562, 46.316584 ], [ 6.328125, 46.316584 ], [ 6.328125, 46.437857 ], [ 6.503906, 46.437857 ], [ 6.503906, 46.316584 ], [ 6.679688, 46.316584 ], [ 6.679688, 46.073231 ], [ 6.855469, 46.073231 ], [ 6.855469, 45.460131 ], [ 7.031250, 45.460131 ], [ 7.031250, 45.213004 ], [ 6.855469, 45.213004 ], [ 6.855469, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.840291 ], [ 6.855469, 44.840291 ], [ 6.855469, 44.339565 ], [ 7.031250, 44.339565 ], [ 7.031250, 44.213710 ], [ 7.207031, 44.213710 ], [ 7.207031, 44.087585 ], [ 7.558594, 44.087585 ], [ 7.558594, 43.834527 ], [ 7.382812, 43.834527 ], [ 7.382812, 43.580391 ], [ 7.207031, 43.580391 ], [ 7.207031, 43.452919 ], [ 7.031250, 43.452919 ], [ 7.031250, 43.325178 ], [ 6.855469, 43.325178 ], [ 6.855469, 43.197167 ], [ 6.679688, 43.197167 ], [ 6.679688, 43.068888 ], [ 6.152344, 43.068888 ], [ 6.152344, 43.197167 ], [ 5.449219, 43.197167 ], [ 5.449219, 43.325178 ], [ 4.746094, 43.325178 ], [ 4.746094, 43.452919 ], [ 4.394531, 43.452919 ], [ 4.394531, 43.325178 ], [ 4.042969, 43.325178 ], [ 4.042969, 43.197167 ], [ 3.515625, 43.197167 ], [ 3.515625, 43.068888 ], [ 3.164062, 43.068888 ], [ 3.164062, 42.682435 ], [ 2.988281, 42.682435 ], [ 2.988281, 42.423457 ], [ 2.460938, 42.423457 ], [ 2.460938, 42.293564 ], [ 1.582031, 42.293564 ], [ 1.582031, 42.423457 ], [ 1.230469, 42.423457 ], [ 1.230469, 42.553080 ], [ 1.054688, 42.553080 ], [ 1.054688, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.553080 ], [ 0.000000, 42.553080 ], [ 0.000000, 42.682435 ], [ -0.351562, 42.682435 ], [ -0.351562, 42.811522 ], [ -0.703125, 42.811522 ], [ -0.703125, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.496675 ], [ -0.351562, 49.496675 ], [ -0.351562, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.724479 ], [ 0.351562, 49.724479 ], [ 0.351562, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 49.951220 ], [ 1.054688, 49.951220 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.582031, 50.513427 ], [ 1.582031, 50.958427 ], [ 1.933594, 50.958427 ], [ 1.933594, 51.069017 ], [ 2.285156, 51.069017 ], [ 2.285156, 51.179343 ], [ 2.460938, 51.179343 ], [ 2.460938, 50.958427 ], [ 2.636719, 50.958427 ], [ 2.636719, 50.847573 ], [ 2.812500, 50.847573 ], [ 2.812500, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.625073 ], [ 3.339844, 50.625073 ], [ 3.339844, 50.401515 ], [ 3.515625, 50.401515 ], [ 3.515625, 50.289339 ], [ 3.691406, 50.289339 ], [ 3.691406, 50.176898 ], [ 3.867188, 50.176898 ], [ 3.867188, 50.064192 ], [ 4.042969, 50.064192 ], [ 4.042969, 49.951220 ], [ 4.746094, 49.951220 ], [ 4.746094, 49.837982 ], [ 4.921875, 49.837982 ], [ 4.921875, 49.724479 ], [ 5.273438, 49.724479 ], [ 5.273438, 49.610710 ], [ 5.449219, 49.610710 ], [ 5.449219, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.152344, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 49.267805 ], [ 6.503906, 49.267805 ], [ 6.503906, 49.152970 ], [ 7.207031, 49.152970 ], [ 7.207031, 49.037868 ], [ 8.085938, 49.037868 ], [ 8.085938, 48.922499 ], [ 7.910156, 48.922499 ], [ 7.910156, 48.690960 ], [ 7.734375, 48.690960 ], [ 7.734375, 48.458352 ], [ 7.558594, 48.458352 ], [ 7.558594, 47.989922 ], [ 7.382812, 47.989922 ], [ 7.382812, 47.517201 ], [ 7.207031, 47.517201 ], [ 7.207031, 47.398349 ], [ 6.855469, 47.398349 ] ], [ [ 6.855469, 47.398349 ], [ 6.855469, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.398349 ], [ 6.855469, 47.398349 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.316406, 42.940339 ], [ 9.316406, 42.553080 ], [ 9.492188, 42.553080 ], [ 9.492188, 41.902277 ], [ 9.316406, 41.902277 ], [ 9.316406, 41.640078 ], [ 9.140625, 41.640078 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.640078 ], [ 8.613281, 41.640078 ], [ 8.613281, 41.902277 ], [ 8.437500, 41.902277 ], [ 8.437500, 42.423457 ], [ 8.613281, 42.423457 ], [ 8.613281, 42.682435 ], [ 8.789062, 42.682435 ], [ 8.789062, 42.811522 ], [ 9.140625, 42.811522 ], [ 9.140625, 42.940339 ], [ 9.316406, 42.940339 ] ] ], [ [ [ 2.460938, 51.179343 ], [ 2.460938, 50.958427 ], [ 2.636719, 50.958427 ], [ 2.636719, 50.847573 ], [ 2.988281, 50.847573 ], [ 2.988281, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.625073 ], [ 3.339844, 50.625073 ], [ 3.339844, 50.401515 ], [ 3.515625, 50.401515 ], [ 3.515625, 50.289339 ], [ 3.691406, 50.289339 ], [ 3.691406, 50.176898 ], [ 3.867188, 50.176898 ], [ 3.867188, 50.064192 ], [ 4.042969, 50.064192 ], [ 4.042969, 49.951220 ], [ 4.570312, 49.951220 ], [ 4.570312, 50.064192 ], [ 4.746094, 50.064192 ], [ 4.746094, 49.951220 ], [ 4.921875, 49.951220 ], [ 4.921875, 49.837982 ], [ 5.273438, 49.837982 ], [ 5.273438, 49.724479 ], [ 5.449219, 49.724479 ], [ 5.449219, 49.610710 ], [ 5.625000, 49.610710 ], [ 5.625000, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.152344, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 49.267805 ], [ 6.855469, 49.267805 ], [ 6.855469, 49.152970 ], [ 7.558594, 49.152970 ], [ 7.558594, 49.037868 ], [ 8.085938, 49.037868 ], [ 8.085938, 48.922499 ], [ 7.910156, 48.922499 ], [ 7.910156, 48.690960 ], [ 7.734375, 48.690960 ], [ 7.734375, 48.458352 ], [ 7.558594, 48.458352 ], [ 7.558594, 47.989922 ], [ 7.382812, 47.989922 ], [ 7.382812, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.279229 ], [ 6.503906, 47.279229 ], [ 6.503906, 47.159840 ], [ 6.328125, 47.159840 ], [ 6.328125, 46.920255 ], [ 6.152344, 46.920255 ], [ 6.152344, 46.800059 ], [ 5.976562, 46.800059 ], [ 5.976562, 46.316584 ], [ 6.503906, 46.316584 ], [ 6.503906, 46.073231 ], [ 6.679688, 46.073231 ], [ 6.679688, 45.706179 ], [ 6.855469, 45.706179 ], [ 6.855469, 45.460131 ], [ 7.031250, 45.460131 ], [ 7.031250, 45.213004 ], [ 6.855469, 45.213004 ], [ 6.855469, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.715514 ], [ 6.855469, 44.715514 ], [ 6.855469, 44.339565 ], [ 7.031250, 44.339565 ], [ 7.031250, 44.213710 ], [ 7.382812, 44.213710 ], [ 7.382812, 43.580391 ], [ 7.207031, 43.580391 ], [ 7.207031, 43.452919 ], [ 6.855469, 43.452919 ], [ 6.855469, 43.325178 ], [ 6.679688, 43.325178 ], [ 6.679688, 43.197167 ], [ 5.800781, 43.197167 ], [ 5.800781, 43.325178 ], [ 4.746094, 43.325178 ], [ 4.746094, 43.452919 ], [ 4.218750, 43.452919 ], [ 4.218750, 43.325178 ], [ 3.515625, 43.325178 ], [ 3.515625, 43.197167 ], [ 2.988281, 43.197167 ], [ 2.988281, 42.553080 ], [ 2.460938, 42.553080 ], [ 2.460938, 42.423457 ], [ 1.406250, 42.423457 ], [ 1.406250, 42.553080 ], [ 1.054688, 42.553080 ], [ 1.054688, 42.682435 ], [ 0.703125, 42.682435 ], [ 0.703125, 42.811522 ], [ 0.527344, 42.811522 ], [ 0.527344, 42.682435 ], [ -0.175781, 42.682435 ], [ -0.175781, 42.811522 ], [ -0.703125, 42.811522 ], [ -0.703125, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 49.496675 ], [ -0.527344, 49.496675 ], [ -0.527344, 49.610710 ], [ -0.175781, 49.610710 ], [ -0.175781, 49.724479 ], [ 0.175781, 49.724479 ], [ 0.175781, 49.837982 ], [ 0.527344, 49.837982 ], [ 0.527344, 49.951220 ], [ 0.878906, 49.951220 ], [ 0.878906, 50.064192 ], [ 1.230469, 50.064192 ], [ 1.230469, 50.289339 ], [ 1.406250, 50.289339 ], [ 1.406250, 50.736455 ], [ 1.582031, 50.736455 ], [ 1.582031, 50.958427 ], [ 1.933594, 50.958427 ], [ 1.933594, 51.069017 ], [ 2.285156, 51.069017 ], [ 2.285156, 51.179343 ], [ 2.460938, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 42.940339 ], [ -0.703125, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.682435 ], [ 0.000000, 42.682435 ], [ 0.000000, 42.553080 ], [ 0.527344, 42.553080 ], [ 0.527344, 42.682435 ], [ 1.054688, 42.682435 ], [ 1.054688, 42.553080 ], [ 1.230469, 42.553080 ], [ 1.230469, 42.423457 ], [ 1.582031, 42.423457 ], [ 1.582031, 42.293564 ], [ 2.460938, 42.293564 ], [ 2.460938, 42.423457 ], [ 2.988281, 42.423457 ], [ 2.988281, 41.771312 ], [ 2.812500, 41.771312 ], [ 2.812500, 41.640078 ], [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.376809 ], [ 2.285156, 41.376809 ], [ 2.285156, 41.244772 ], [ 1.933594, 41.244772 ], [ 1.933594, 41.112469 ], [ 1.230469, 41.112469 ], [ 1.230469, 40.979898 ], [ 0.878906, 40.979898 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.940339 ], [ -0.703125, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 42.940339 ], [ -0.703125, 42.811522 ], [ -0.175781, 42.811522 ], [ -0.175781, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.811522 ], [ 0.703125, 42.811522 ], [ 0.703125, 42.682435 ], [ 1.054688, 42.682435 ], [ 1.054688, 42.553080 ], [ 1.406250, 42.553080 ], [ 1.406250, 42.423457 ], [ 2.460938, 42.423457 ], [ 2.460938, 42.553080 ], [ 2.988281, 42.553080 ], [ 2.988281, 41.771312 ], [ 2.812500, 41.771312 ], [ 2.812500, 41.640078 ], [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ], [ 2.285156, 41.508577 ], [ 2.285156, 41.376809 ], [ 2.109375, 41.376809 ], [ 2.109375, 41.244772 ], [ 1.406250, 41.244772 ], [ 1.406250, 41.112469 ], [ 0.703125, 41.112469 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.940339 ], [ -0.703125, 42.940339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.527344, 42.293564 ], [ 45.527344, 42.553080 ], [ 44.824219, 42.553080 ], [ 44.824219, 42.682435 ], [ 44.296875, 42.682435 ], [ 44.296875, 42.553080 ], [ 43.769531, 42.553080 ], [ 43.769531, 42.682435 ], [ 43.417969, 42.682435 ], [ 43.417969, 42.811522 ], [ 43.066406, 42.811522 ], [ 43.066406, 42.940339 ], [ 42.714844, 42.940339 ], [ 42.714844, 43.068888 ], [ 42.363281, 43.068888 ], [ 42.363281, 43.197167 ], [ 41.484375, 43.197167 ], [ 41.484375, 43.325178 ], [ 40.605469, 43.325178 ], [ 40.605469, 43.452919 ], [ 40.253906, 43.452919 ], [ 40.253906, 43.580391 ], [ 40.078125, 43.580391 ], [ 40.078125, 43.452919 ], [ 39.726562, 43.452919 ], [ 39.726562, 43.580391 ], [ 39.550781, 43.580391 ], [ 39.550781, 43.707594 ], [ 39.375000, 43.707594 ], [ 39.375000, 43.834527 ], [ 39.199219, 43.834527 ], [ 39.199219, 43.961191 ], [ 39.023438, 43.961191 ], [ 39.023438, 44.087585 ], [ 38.847656, 44.087585 ], [ 38.847656, 44.213710 ], [ 38.671875, 44.213710 ], [ 38.671875, 44.339565 ], [ 38.320312, 44.339565 ], [ 38.320312, 44.465151 ], [ 37.968750, 44.465151 ], [ 37.968750, 44.590467 ], [ 37.617188, 44.590467 ], [ 37.617188, 44.715514 ], [ 37.441406, 44.715514 ], [ 37.441406, 44.840291 ], [ 37.265625, 44.840291 ], [ 37.265625, 44.964798 ], [ 36.914062, 44.964798 ], [ 36.914062, 45.089036 ], [ 36.738281, 45.089036 ], [ 36.738281, 45.213004 ], [ 37.089844, 45.213004 ], [ 37.089844, 45.336702 ], [ 37.441406, 45.336702 ], [ 37.441406, 45.460131 ], [ 37.617188, 45.460131 ], [ 37.617188, 45.583290 ], [ 37.792969, 45.583290 ], [ 37.792969, 45.828799 ], [ 37.968750, 45.828799 ], [ 37.968750, 45.951150 ], [ 38.144531, 45.951150 ], [ 38.144531, 46.073231 ], [ 38.320312, 46.073231 ], [ 38.320312, 46.195042 ], [ 38.144531, 46.195042 ], [ 38.144531, 46.316584 ], [ 37.968750, 46.316584 ], [ 37.968750, 46.437857 ], [ 37.792969, 46.437857 ], [ 37.792969, 46.558860 ], [ 37.617188, 46.558860 ], [ 37.617188, 46.679594 ], [ 37.968750, 46.679594 ], [ 37.968750, 46.800059 ], [ 38.496094, 46.800059 ], [ 38.496094, 46.920255 ], [ 39.023438, 46.920255 ], [ 39.023438, 47.040182 ], [ 39.199219, 47.040182 ], [ 39.199219, 47.279229 ], [ 38.847656, 47.279229 ], [ 38.847656, 47.159840 ], [ 38.144531, 47.159840 ], [ 38.144531, 47.279229 ], [ 38.320312, 47.279229 ], [ 38.320312, 47.517201 ], [ 38.496094, 47.517201 ], [ 38.496094, 47.635784 ], [ 38.671875, 47.635784 ], [ 38.671875, 47.754098 ], [ 38.847656, 47.754098 ], [ 38.847656, 47.872144 ], [ 39.726562, 47.872144 ], [ 39.726562, 47.989922 ], [ 39.902344, 47.989922 ], [ 39.902344, 48.458352 ], [ 39.726562, 48.458352 ], [ 39.726562, 48.922499 ], [ 39.902344, 48.922499 ], [ 39.902344, 49.152970 ], [ 40.078125, 49.152970 ], [ 40.078125, 49.610710 ], [ 39.726562, 49.610710 ], [ 39.726562, 49.724479 ], [ 39.199219, 49.724479 ], [ 39.199219, 49.837982 ], [ 38.847656, 49.837982 ], [ 38.847656, 49.951220 ], [ 37.792969, 49.951220 ], [ 37.792969, 50.176898 ], [ 37.617188, 50.176898 ], [ 37.617188, 50.289339 ], [ 37.441406, 50.289339 ], [ 37.441406, 50.401515 ], [ 37.265625, 50.401515 ], [ 37.265625, 50.289339 ], [ 36.914062, 50.289339 ], [ 36.914062, 50.176898 ], [ 36.386719, 50.176898 ], [ 36.386719, 50.289339 ], [ 36.035156, 50.289339 ], [ 36.035156, 50.401515 ], [ 35.683594, 50.401515 ], [ 35.683594, 50.513427 ], [ 35.332031, 50.513427 ], [ 35.332031, 50.847573 ], [ 35.156250, 50.847573 ], [ 35.156250, 51.069017 ], [ 34.980469, 51.069017 ], [ 34.980469, 51.179343 ], [ 34.453125, 51.179343 ], [ 34.453125, 51.289406 ], [ 34.277344, 51.289406 ], [ 34.277344, 51.399206 ], [ 34.101562, 51.399206 ], [ 34.101562, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.727028 ], [ 34.277344, 51.727028 ], [ 34.277344, 51.944265 ], [ 34.101562, 51.944265 ], [ 34.101562, 52.052490 ], [ 33.925781, 52.052490 ], [ 33.925781, 52.268157 ], [ 33.750000, 52.268157 ], [ 33.750000, 52.375599 ], [ 33.398438, 52.375599 ], [ 33.398438, 52.268157 ], [ 32.343750, 52.268157 ], [ 32.343750, 52.160455 ], [ 32.167969, 52.160455 ], [ 32.167969, 52.052490 ], [ 31.816406, 52.052490 ], [ 31.816406, 52.160455 ], [ 31.640625, 52.160455 ], [ 31.640625, 52.482780 ], [ 31.464844, 52.482780 ], [ 31.464844, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 32.519531, 53.120405 ], [ 32.519531, 53.225768 ], [ 32.695312, 53.225768 ], [ 32.695312, 53.330873 ], [ 32.519531, 53.330873 ], [ 32.519531, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.644638 ], [ 31.992188, 53.644638 ], [ 31.992188, 53.748711 ], [ 31.816406, 53.748711 ], [ 31.816406, 53.956086 ], [ 31.640625, 53.956086 ], [ 31.640625, 54.059388 ], [ 31.464844, 54.059388 ], [ 31.464844, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 54.367759 ], [ 31.113281, 54.367759 ], [ 31.113281, 54.470038 ], [ 30.937500, 54.470038 ], [ 30.937500, 54.673831 ], [ 30.761719, 54.673831 ], [ 30.761719, 54.876607 ], [ 30.937500, 54.876607 ], [ 30.937500, 55.578345 ], [ 30.585938, 55.578345 ], [ 30.585938, 55.677584 ], [ 30.058594, 55.677584 ], [ 30.058594, 55.776573 ], [ 29.707031, 55.776573 ], [ 29.707031, 55.677584 ], [ 29.355469, 55.677584 ], [ 29.355469, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.875311 ], [ 28.828125, 55.875311 ], [ 28.828125, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.072035 ], [ 28.125000, 56.072035 ], [ 28.125000, 56.267761 ], [ 27.949219, 56.267761 ], [ 27.949219, 56.559482 ], [ 27.773438, 56.559482 ], [ 27.773438, 57.231503 ], [ 27.597656, 57.231503 ], [ 27.597656, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.421294 ], [ 27.246094, 57.421294 ], [ 27.246094, 57.515823 ], [ 27.421875, 57.515823 ], [ 27.421875, 57.610107 ], [ 27.597656, 57.610107 ], [ 27.597656, 57.704147 ], [ 27.773438, 57.704147 ], [ 27.773438, 57.984808 ], [ 27.597656, 57.984808 ], [ 27.597656, 58.447733 ], [ 27.421875, 58.447733 ], [ 27.421875, 58.722599 ], [ 27.597656, 58.722599 ], [ 27.597656, 58.904646 ], [ 27.773438, 58.904646 ], [ 27.773438, 58.995311 ], [ 27.949219, 58.995311 ], [ 27.949219, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.355596 ], [ 27.949219, 59.355596 ], [ 27.949219, 59.445075 ], [ 28.125000, 59.445075 ], [ 28.125000, 59.534318 ], [ 28.300781, 59.534318 ], [ 28.300781, 59.623325 ], [ 28.476562, 59.623325 ], [ 28.476562, 59.712097 ], [ 28.652344, 59.712097 ], [ 28.652344, 59.800634 ], [ 28.828125, 59.800634 ], [ 28.828125, 59.888937 ], [ 29.003906, 59.888937 ], [ 29.003906, 59.977005 ], [ 29.179688, 59.977005 ], [ 29.179688, 60.064840 ], [ 29.003906, 60.064840 ], [ 29.003906, 60.152442 ], [ 28.828125, 60.152442 ], [ 28.828125, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.326948 ], [ 28.300781, 60.326948 ], [ 28.300781, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.500525 ], [ 28.300781, 60.500525 ], [ 28.300781, 60.586967 ], [ 28.476562, 60.586967 ], [ 28.476562, 60.759160 ], [ 28.652344, 60.759160 ], [ 28.652344, 60.844911 ], [ 28.828125, 60.844911 ], [ 28.828125, 60.930432 ], [ 29.003906, 60.930432 ], [ 29.003906, 61.015725 ], [ 29.179688, 61.015725 ], [ 29.179688, 61.185625 ], [ 29.355469, 61.185625 ], [ 29.355469, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.354614 ], [ 29.707031, 61.354614 ], [ 29.707031, 61.438767 ], [ 29.882812, 61.438767 ], [ 29.882812, 61.606396 ], [ 30.058594, 61.606396 ], [ 30.058594, 61.689872 ], [ 30.234375, 61.689872 ], [ 30.234375, 61.773123 ], [ 30.410156, 61.773123 ], [ 30.410156, 61.938950 ], [ 30.585938, 61.938950 ], [ 30.585938, 62.021528 ], [ 30.761719, 62.021528 ], [ 30.761719, 62.103883 ], [ 30.937500, 62.103883 ], [ 30.937500, 62.267923 ], [ 31.113281, 62.267923 ], [ 31.113281, 62.431074 ], [ 31.289062, 62.431074 ], [ 31.289062, 62.674143 ], [ 31.464844, 62.674143 ], [ 31.464844, 62.835089 ], [ 31.289062, 62.835089 ], [ 31.289062, 62.915233 ], [ 31.113281, 62.915233 ], [ 31.113281, 62.995158 ], [ 30.937500, 62.995158 ], [ 30.937500, 63.074866 ], [ 30.761719, 63.074866 ], [ 30.761719, 63.233627 ], [ 30.585938, 63.233627 ], [ 30.585938, 63.312683 ], [ 30.410156, 63.312683 ], [ 30.410156, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.470145 ], [ 30.058594, 63.470145 ], [ 30.058594, 63.704722 ], [ 30.234375, 63.704722 ], [ 30.234375, 64.014496 ], [ 30.410156, 64.014496 ], [ 30.410156, 64.244595 ], [ 30.234375, 64.244595 ], [ 30.234375, 64.396938 ], [ 30.058594, 64.396938 ], [ 30.058594, 64.548440 ], [ 29.882812, 64.548440 ], [ 29.882812, 64.699105 ], [ 29.707031, 64.699105 ], [ 29.707031, 64.848937 ], [ 29.531250, 64.848937 ], [ 29.531250, 64.997939 ], [ 29.707031, 64.997939 ], [ 29.707031, 65.219894 ], [ 29.882812, 65.219894 ], [ 29.882812, 65.440002 ], [ 30.058594, 65.440002 ], [ 30.058594, 65.658275 ], [ 30.234375, 65.658275 ], [ 30.234375, 65.874725 ], [ 30.058594, 65.874725 ], [ 30.058594, 66.018018 ], [ 29.882812, 66.018018 ], [ 29.882812, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.583217 ], [ 29.355469, 66.583217 ], [ 29.355469, 66.722541 ], [ 29.179688, 66.722541 ], [ 29.179688, 66.861082 ], [ 41.132812, 66.861082 ], [ 41.132812, 66.722541 ], [ 40.957031, 66.722541 ], [ 40.957031, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.605469, 66.513260 ], [ 40.605469, 66.443107 ], [ 40.429688, 66.443107 ], [ 40.429688, 66.372755 ], [ 40.253906, 66.372755 ], [ 40.253906, 66.231457 ], [ 39.902344, 66.231457 ], [ 39.902344, 66.160511 ], [ 39.375000, 66.160511 ], [ 39.375000, 66.089364 ], [ 38.671875, 66.089364 ], [ 38.671875, 66.018018 ], [ 37.968750, 66.018018 ], [ 37.968750, 66.089364 ], [ 37.617188, 66.089364 ], [ 37.617188, 66.160511 ], [ 37.265625, 66.160511 ], [ 37.265625, 66.231457 ], [ 36.914062, 66.231457 ], [ 36.914062, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 36.035156, 66.372755 ], [ 36.035156, 66.443107 ], [ 35.683594, 66.443107 ], [ 35.683594, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.804688, 66.583217 ], [ 34.804688, 66.652977 ], [ 34.453125, 66.652977 ], [ 34.453125, 66.722541 ], [ 34.101562, 66.722541 ], [ 34.101562, 66.791909 ], [ 33.925781, 66.791909 ], [ 33.925781, 66.722541 ], [ 33.574219, 66.722541 ], [ 33.574219, 66.652977 ], [ 33.222656, 66.652977 ], [ 33.222656, 66.583217 ], [ 33.398438, 66.583217 ], [ 33.398438, 66.513260 ], [ 33.574219, 66.513260 ], [ 33.574219, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.302205 ], [ 33.925781, 66.302205 ], [ 33.925781, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.160511 ], [ 34.277344, 66.160511 ], [ 34.277344, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.628906, 65.946472 ], [ 34.628906, 65.874725 ], [ 34.804688, 65.874725 ], [ 34.804688, 64.923542 ], [ 34.980469, 64.923542 ], [ 34.980469, 64.320872 ], [ 35.332031, 64.320872 ], [ 35.332031, 64.244595 ], [ 35.683594, 64.244595 ], [ 35.683594, 64.168107 ], [ 36.035156, 64.168107 ], [ 36.035156, 64.091408 ], [ 36.210938, 64.091408 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.937372 ], [ 36.914062, 63.937372 ], [ 36.914062, 63.860036 ], [ 37.089844, 63.860036 ], [ 37.089844, 64.396938 ], [ 36.914062, 64.396938 ], [ 36.914062, 64.548440 ], [ 36.738281, 64.548440 ], [ 36.738281, 64.699105 ], [ 36.562500, 64.699105 ], [ 36.562500, 64.774125 ], [ 36.738281, 64.774125 ], [ 36.738281, 64.923542 ], [ 36.914062, 64.923542 ], [ 36.914062, 65.072130 ], [ 37.441406, 65.072130 ], [ 37.441406, 64.997939 ], [ 37.792969, 64.997939 ], [ 37.792969, 64.923542 ], [ 38.144531, 64.923542 ], [ 38.144531, 64.848937 ], [ 38.320312, 64.848937 ], [ 38.320312, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.699105 ], [ 39.023438, 64.699105 ], [ 39.023438, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.548440 ], [ 39.726562, 64.548440 ], [ 39.726562, 64.623877 ], [ 40.078125, 64.623877 ], [ 40.078125, 64.699105 ], [ 40.429688, 64.699105 ], [ 40.429688, 64.848937 ], [ 40.253906, 64.848937 ], [ 40.253906, 64.997939 ], [ 40.078125, 64.997939 ], [ 40.078125, 65.219894 ], [ 39.902344, 65.219894 ], [ 39.902344, 65.366837 ], [ 39.726562, 65.366837 ], [ 39.726562, 65.512963 ], [ 39.902344, 65.512963 ], [ 39.902344, 65.585720 ], [ 40.078125, 65.585720 ], [ 40.078125, 65.658275 ], [ 40.253906, 65.658275 ], [ 40.253906, 65.730626 ], [ 40.429688, 65.730626 ], [ 40.429688, 65.802776 ], [ 40.605469, 65.802776 ], [ 40.605469, 65.874725 ], [ 40.781250, 65.874725 ], [ 40.781250, 65.946472 ], [ 40.957031, 65.946472 ], [ 40.957031, 66.018018 ], [ 41.132812, 66.018018 ], [ 41.132812, 66.089364 ], [ 41.308594, 66.089364 ], [ 41.308594, 66.160511 ], [ 41.484375, 66.160511 ], [ 41.484375, 66.231457 ], [ 41.660156, 66.231457 ], [ 41.660156, 66.302205 ], [ 41.835938, 66.302205 ], [ 41.835938, 66.372755 ], [ 42.011719, 66.372755 ], [ 42.011719, 66.443107 ], [ 43.066406, 66.443107 ], [ 43.066406, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.302205 ], [ 43.417969, 66.302205 ], [ 43.417969, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.160511 ], [ 43.769531, 66.160511 ], [ 43.769531, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.445312, 55.178868 ], [ 21.445312, 55.078367 ], [ 21.972656, 55.078367 ], [ 21.972656, 54.977614 ], [ 22.324219, 54.977614 ], [ 22.324219, 54.876607 ], [ 22.675781, 54.876607 ], [ 22.675781, 54.367759 ], [ 21.972656, 54.367759 ], [ 21.972656, 54.265224 ], [ 20.566406, 54.265224 ], [ 20.566406, 54.367759 ], [ 19.863281, 54.367759 ], [ 19.863281, 54.470038 ], [ 19.687500, 54.470038 ], [ 19.687500, 54.673831 ], [ 19.863281, 54.673831 ], [ 19.863281, 54.876607 ], [ 20.214844, 54.876607 ], [ 20.214844, 54.977614 ], [ 20.742188, 54.977614 ], [ 20.742188, 55.078367 ], [ 21.093750, 55.078367 ], [ 21.093750, 55.178868 ], [ 21.445312, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.163403 ], [ 45.527344, 42.163403 ], [ 45.527344, 42.423457 ], [ 45.351562, 42.423457 ], [ 45.351562, 42.553080 ], [ 45.000000, 42.553080 ], [ 45.000000, 42.682435 ], [ 44.648438, 42.682435 ], [ 44.648438, 42.811522 ], [ 44.472656, 42.811522 ], [ 44.472656, 42.682435 ], [ 44.121094, 42.682435 ], [ 44.121094, 42.553080 ], [ 43.769531, 42.553080 ], [ 43.769531, 42.682435 ], [ 43.593750, 42.682435 ], [ 43.593750, 42.811522 ], [ 43.417969, 42.811522 ], [ 43.417969, 42.940339 ], [ 43.066406, 42.940339 ], [ 43.066406, 43.068888 ], [ 42.714844, 43.068888 ], [ 42.714844, 43.197167 ], [ 42.363281, 43.197167 ], [ 42.363281, 43.325178 ], [ 41.484375, 43.325178 ], [ 41.484375, 43.452919 ], [ 40.253906, 43.452919 ], [ 40.253906, 43.580391 ], [ 40.078125, 43.580391 ], [ 40.078125, 43.452919 ], [ 39.726562, 43.452919 ], [ 39.726562, 43.580391 ], [ 39.550781, 43.580391 ], [ 39.550781, 43.707594 ], [ 39.375000, 43.707594 ], [ 39.375000, 43.834527 ], [ 39.199219, 43.834527 ], [ 39.199219, 43.961191 ], [ 39.023438, 43.961191 ], [ 39.023438, 44.087585 ], [ 38.847656, 44.087585 ], [ 38.847656, 44.213710 ], [ 38.671875, 44.213710 ], [ 38.671875, 44.339565 ], [ 38.320312, 44.339565 ], [ 38.320312, 44.465151 ], [ 37.968750, 44.465151 ], [ 37.968750, 44.590467 ], [ 37.617188, 44.590467 ], [ 37.617188, 44.715514 ], [ 37.265625, 44.715514 ], [ 37.265625, 44.840291 ], [ 37.089844, 44.840291 ], [ 37.089844, 44.964798 ], [ 36.914062, 44.964798 ], [ 36.914062, 45.089036 ], [ 36.738281, 45.089036 ], [ 36.738281, 45.213004 ], [ 36.562500, 45.213004 ], [ 36.562500, 45.336702 ], [ 37.089844, 45.336702 ], [ 37.089844, 45.460131 ], [ 37.441406, 45.460131 ], [ 37.441406, 45.706179 ], [ 37.617188, 45.706179 ], [ 37.617188, 45.828799 ], [ 37.792969, 45.828799 ], [ 37.792969, 45.951150 ], [ 37.968750, 45.951150 ], [ 37.968750, 46.195042 ], [ 38.144531, 46.195042 ], [ 38.144531, 46.316584 ], [ 37.968750, 46.316584 ], [ 37.968750, 46.437857 ], [ 37.792969, 46.437857 ], [ 37.792969, 46.558860 ], [ 37.617188, 46.558860 ], [ 37.617188, 46.679594 ], [ 37.968750, 46.679594 ], [ 37.968750, 46.800059 ], [ 38.320312, 46.800059 ], [ 38.320312, 46.920255 ], [ 38.671875, 46.920255 ], [ 38.671875, 47.040182 ], [ 39.023438, 47.040182 ], [ 39.023438, 47.279229 ], [ 38.671875, 47.279229 ], [ 38.671875, 47.159840 ], [ 38.144531, 47.159840 ], [ 38.144531, 47.635784 ], [ 38.320312, 47.635784 ], [ 38.320312, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.872144 ], [ 39.375000, 47.872144 ], [ 39.375000, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 48.574790 ], [ 39.550781, 48.574790 ], [ 39.550781, 48.806863 ], [ 39.726562, 48.806863 ], [ 39.726562, 49.037868 ], [ 39.902344, 49.037868 ], [ 39.902344, 49.267805 ], [ 40.078125, 49.267805 ], [ 40.078125, 49.496675 ], [ 39.902344, 49.496675 ], [ 39.902344, 49.610710 ], [ 39.550781, 49.610710 ], [ 39.550781, 49.724479 ], [ 39.023438, 49.724479 ], [ 39.023438, 49.837982 ], [ 38.671875, 49.837982 ], [ 38.671875, 49.951220 ], [ 37.792969, 49.951220 ], [ 37.792969, 50.064192 ], [ 37.617188, 50.064192 ], [ 37.617188, 50.176898 ], [ 37.441406, 50.176898 ], [ 37.441406, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 50.401515 ], [ 37.089844, 50.401515 ], [ 37.089844, 50.289339 ], [ 36.210938, 50.289339 ], [ 36.210938, 50.401515 ], [ 35.859375, 50.401515 ], [ 35.859375, 50.513427 ], [ 35.507812, 50.513427 ], [ 35.507812, 50.625073 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.958427 ], [ 35.156250, 50.958427 ], [ 35.156250, 51.179343 ], [ 34.980469, 51.179343 ], [ 34.980469, 51.289406 ], [ 34.101562, 51.289406 ], [ 34.101562, 51.727028 ], [ 34.277344, 51.727028 ], [ 34.277344, 51.835778 ], [ 34.101562, 51.835778 ], [ 34.101562, 52.052490 ], [ 33.925781, 52.052490 ], [ 33.925781, 52.268157 ], [ 33.750000, 52.268157 ], [ 33.750000, 52.375599 ], [ 33.398438, 52.375599 ], [ 33.398438, 52.268157 ], [ 32.167969, 52.268157 ], [ 32.167969, 52.160455 ], [ 31.640625, 52.160455 ], [ 31.640625, 52.482780 ], [ 31.464844, 52.482780 ], [ 31.464844, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.120405 ], [ 31.464844, 53.225768 ], [ 32.343750, 53.225768 ], [ 32.343750, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.435719 ], [ 32.519531, 53.435719 ], [ 32.519531, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.644638 ], [ 31.992188, 53.644638 ], [ 31.992188, 53.748711 ], [ 31.640625, 53.748711 ], [ 31.640625, 54.059388 ], [ 31.289062, 54.059388 ], [ 31.289062, 54.162434 ], [ 31.113281, 54.162434 ], [ 31.113281, 54.367759 ], [ 30.937500, 54.367759 ], [ 30.937500, 54.572062 ], [ 30.761719, 54.572062 ], [ 30.761719, 54.775346 ], [ 30.585938, 54.775346 ], [ 30.585938, 54.876607 ], [ 30.761719, 54.876607 ], [ 30.761719, 55.078367 ], [ 30.937500, 55.078367 ], [ 30.937500, 55.379110 ], [ 30.761719, 55.379110 ], [ 30.761719, 55.578345 ], [ 30.585938, 55.578345 ], [ 30.585938, 55.677584 ], [ 30.234375, 55.677584 ], [ 30.234375, 55.776573 ], [ 29.531250, 55.776573 ], [ 29.531250, 55.677584 ], [ 29.355469, 55.677584 ], [ 29.355469, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.973798 ], [ 28.828125, 55.973798 ], [ 28.828125, 56.072035 ], [ 28.300781, 56.072035 ], [ 28.300781, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.267761 ], [ 27.949219, 56.267761 ], [ 27.949219, 56.656226 ], [ 27.773438, 56.656226 ], [ 27.773438, 57.040730 ], [ 27.597656, 57.040730 ], [ 27.597656, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.421294 ], [ 27.246094, 57.421294 ], [ 27.246094, 57.515823 ], [ 27.421875, 57.515823 ], [ 27.421875, 57.704147 ], [ 27.597656, 57.704147 ], [ 27.597656, 58.263287 ], [ 27.421875, 58.263287 ], [ 27.421875, 58.813742 ], [ 27.597656, 58.813742 ], [ 27.597656, 58.995311 ], [ 27.773438, 58.995311 ], [ 27.773438, 59.085739 ], [ 27.949219, 59.085739 ], [ 27.949219, 59.265881 ], [ 28.125000, 59.265881 ], [ 28.125000, 59.445075 ], [ 27.949219, 59.445075 ], [ 27.949219, 59.534318 ], [ 28.125000, 59.534318 ], [ 28.125000, 59.623325 ], [ 28.300781, 59.623325 ], [ 28.300781, 59.712097 ], [ 28.476562, 59.712097 ], [ 28.476562, 59.800634 ], [ 28.652344, 59.800634 ], [ 28.652344, 59.888937 ], [ 28.828125, 59.888937 ], [ 28.828125, 59.977005 ], [ 29.003906, 59.977005 ], [ 29.003906, 60.064840 ], [ 28.828125, 60.064840 ], [ 28.828125, 60.152442 ], [ 28.652344, 60.152442 ], [ 28.652344, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.326948 ], [ 28.300781, 60.326948 ], [ 28.300781, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.500525 ], [ 27.949219, 60.500525 ], [ 27.949219, 60.586967 ], [ 28.125000, 60.586967 ], [ 28.125000, 60.673179 ], [ 28.300781, 60.673179 ], [ 28.300781, 60.844911 ], [ 28.476562, 60.844911 ], [ 28.476562, 60.930432 ], [ 28.652344, 60.930432 ], [ 28.652344, 61.015725 ], [ 28.828125, 61.015725 ], [ 28.828125, 61.100789 ], [ 29.003906, 61.100789 ], [ 29.003906, 61.270233 ], [ 29.179688, 61.270233 ], [ 29.179688, 61.354614 ], [ 29.355469, 61.354614 ], [ 29.355469, 61.438767 ], [ 29.531250, 61.438767 ], [ 29.531250, 61.522695 ], [ 29.707031, 61.522695 ], [ 29.707031, 61.689872 ], [ 29.882812, 61.689872 ], [ 29.882812, 61.773123 ], [ 30.058594, 61.773123 ], [ 30.058594, 61.856149 ], [ 30.234375, 61.856149 ], [ 30.234375, 61.938950 ], [ 30.410156, 61.938950 ], [ 30.410156, 62.021528 ], [ 30.585938, 62.021528 ], [ 30.585938, 62.186014 ], [ 30.761719, 62.186014 ], [ 30.761719, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.349609 ], [ 31.113281, 62.349609 ], [ 31.113281, 62.512318 ], [ 31.289062, 62.512318 ], [ 31.289062, 62.754726 ], [ 31.464844, 62.754726 ], [ 31.464844, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 62.995158 ], [ 31.113281, 62.995158 ], [ 31.113281, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 63.154355 ], [ 30.761719, 63.154355 ], [ 30.761719, 63.233627 ], [ 30.585938, 63.233627 ], [ 30.585938, 63.312683 ], [ 30.410156, 63.312683 ], [ 30.410156, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.470145 ], [ 30.058594, 63.470145 ], [ 30.058594, 63.548552 ], [ 29.882812, 63.548552 ], [ 29.882812, 63.704722 ], [ 30.058594, 63.704722 ], [ 30.058594, 63.937372 ], [ 30.234375, 63.937372 ], [ 30.234375, 64.091408 ], [ 30.410156, 64.091408 ], [ 30.410156, 64.320872 ], [ 30.234375, 64.320872 ], [ 30.234375, 64.472794 ], [ 30.058594, 64.472794 ], [ 30.058594, 64.623877 ], [ 29.882812, 64.623877 ], [ 29.882812, 64.774125 ], [ 29.707031, 64.774125 ], [ 29.707031, 64.923542 ], [ 29.531250, 64.923542 ], [ 29.531250, 65.146115 ], [ 29.707031, 65.146115 ], [ 29.707031, 65.440002 ], [ 29.882812, 65.440002 ], [ 29.882812, 65.730626 ], [ 30.058594, 65.730626 ], [ 30.058594, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.089364 ], [ 29.707031, 66.089364 ], [ 29.707031, 66.231457 ], [ 29.531250, 66.231457 ], [ 29.531250, 66.443107 ], [ 29.355469, 66.443107 ], [ 29.355469, 66.583217 ], [ 29.179688, 66.583217 ], [ 29.179688, 66.722541 ], [ 29.003906, 66.722541 ], [ 29.003906, 66.861082 ], [ 40.957031, 66.861082 ], [ 40.957031, 66.722541 ], [ 40.781250, 66.722541 ], [ 40.781250, 66.652977 ], [ 40.605469, 66.652977 ], [ 40.605469, 66.583217 ], [ 40.429688, 66.583217 ], [ 40.429688, 66.443107 ], [ 40.253906, 66.443107 ], [ 40.253906, 66.372755 ], [ 40.078125, 66.372755 ], [ 40.078125, 66.302205 ], [ 39.726562, 66.302205 ], [ 39.726562, 66.231457 ], [ 39.375000, 66.231457 ], [ 39.375000, 66.160511 ], [ 39.023438, 66.160511 ], [ 39.023438, 66.089364 ], [ 38.671875, 66.089364 ], [ 38.671875, 66.018018 ], [ 37.968750, 66.018018 ], [ 37.968750, 66.089364 ], [ 37.617188, 66.089364 ], [ 37.617188, 66.160511 ], [ 37.265625, 66.160511 ], [ 37.265625, 66.231457 ], [ 36.738281, 66.231457 ], [ 36.738281, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 35.859375, 66.372755 ], [ 35.859375, 66.443107 ], [ 35.507812, 66.443107 ], [ 35.507812, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.628906, 66.583217 ], [ 34.628906, 66.652977 ], [ 34.277344, 66.652977 ], [ 34.277344, 66.722541 ], [ 33.925781, 66.722541 ], [ 33.925781, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.722541 ], [ 33.398438, 66.722541 ], [ 33.398438, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.583217 ], [ 33.222656, 66.583217 ], [ 33.222656, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.443107 ], [ 33.574219, 66.443107 ], [ 33.574219, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.302205 ], [ 33.925781, 66.302205 ], [ 33.925781, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.160511 ], [ 34.277344, 66.160511 ], [ 34.277344, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 66.018018 ], [ 34.628906, 66.018018 ], [ 34.628906, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.396938 ], [ 35.156250, 64.396938 ], [ 35.156250, 64.320872 ], [ 35.507812, 64.320872 ], [ 35.507812, 64.244595 ], [ 35.859375, 64.244595 ], [ 35.859375, 64.168107 ], [ 36.210938, 64.168107 ], [ 36.210938, 64.091408 ], [ 36.386719, 64.091408 ], [ 36.386719, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.937372 ], [ 36.738281, 63.937372 ], [ 36.738281, 63.860036 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.091408 ], [ 37.089844, 64.091408 ], [ 37.089844, 64.396938 ], [ 36.914062, 64.396938 ], [ 36.914062, 64.472794 ], [ 36.738281, 64.472794 ], [ 36.738281, 64.623877 ], [ 36.562500, 64.623877 ], [ 36.562500, 64.699105 ], [ 36.386719, 64.699105 ], [ 36.386719, 64.774125 ], [ 36.562500, 64.774125 ], [ 36.562500, 64.848937 ], [ 36.738281, 64.848937 ], [ 36.738281, 64.997939 ], [ 36.914062, 64.997939 ], [ 36.914062, 65.072130 ], [ 37.441406, 65.072130 ], [ 37.441406, 64.997939 ], [ 37.792969, 64.997939 ], [ 37.792969, 64.923542 ], [ 38.144531, 64.923542 ], [ 38.144531, 64.848937 ], [ 38.320312, 64.848937 ], [ 38.320312, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.699105 ], [ 39.023438, 64.699105 ], [ 39.023438, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.548440 ], [ 39.726562, 64.548440 ], [ 39.726562, 64.623877 ], [ 40.078125, 64.623877 ], [ 40.078125, 64.699105 ], [ 40.429688, 64.699105 ], [ 40.429688, 64.848937 ], [ 40.253906, 64.848937 ], [ 40.253906, 64.997939 ], [ 40.078125, 64.997939 ], [ 40.078125, 65.219894 ], [ 39.902344, 65.219894 ], [ 39.902344, 65.366837 ], [ 39.726562, 65.366837 ], [ 39.726562, 65.512963 ], [ 39.902344, 65.512963 ], [ 39.902344, 65.585720 ], [ 40.078125, 65.585720 ], [ 40.078125, 65.658275 ], [ 40.253906, 65.658275 ], [ 40.253906, 65.730626 ], [ 40.429688, 65.730626 ], [ 40.429688, 65.802776 ], [ 40.605469, 65.802776 ], [ 40.605469, 65.874725 ], [ 40.781250, 65.874725 ], [ 40.781250, 66.018018 ], [ 40.957031, 66.018018 ], [ 40.957031, 66.089364 ], [ 41.132812, 66.089364 ], [ 41.132812, 66.160511 ], [ 41.308594, 66.160511 ], [ 41.308594, 66.231457 ], [ 41.484375, 66.231457 ], [ 41.484375, 66.302205 ], [ 41.660156, 66.302205 ], [ 41.660156, 66.372755 ], [ 41.835938, 66.372755 ], [ 41.835938, 66.443107 ], [ 42.011719, 66.443107 ], [ 42.011719, 66.513260 ], [ 42.363281, 66.513260 ], [ 42.363281, 66.443107 ], [ 42.890625, 66.443107 ], [ 42.890625, 66.372755 ], [ 43.066406, 66.372755 ], [ 43.066406, 66.302205 ], [ 43.242188, 66.302205 ], [ 43.242188, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.160511 ], [ 43.769531, 66.160511 ], [ 43.769531, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.445312, 55.279115 ], [ 21.445312, 55.178868 ], [ 21.796875, 55.178868 ], [ 21.796875, 55.078367 ], [ 22.148438, 55.078367 ], [ 22.148438, 54.977614 ], [ 22.500000, 54.977614 ], [ 22.500000, 54.876607 ], [ 22.675781, 54.876607 ], [ 22.675781, 54.775346 ], [ 22.500000, 54.775346 ], [ 22.500000, 54.470038 ], [ 22.675781, 54.470038 ], [ 22.675781, 54.367759 ], [ 20.039062, 54.367759 ], [ 20.039062, 54.470038 ], [ 19.511719, 54.470038 ], [ 19.511719, 54.572062 ], [ 19.687500, 54.572062 ], [ 19.687500, 54.775346 ], [ 19.863281, 54.775346 ], [ 19.863281, 54.876607 ], [ 20.214844, 54.876607 ], [ 20.214844, 54.977614 ], [ 20.566406, 54.977614 ], [ 20.566406, 55.078367 ], [ 20.917969, 55.078367 ], [ 20.917969, 55.178868 ], [ 21.269531, 55.178868 ], [ 21.269531, 55.279115 ], [ 21.445312, 55.279115 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.644531, 66.861082 ], [ 15.644531, 66.722541 ], [ 15.468750, 66.722541 ], [ 15.468750, 66.513260 ], [ 15.292969, 66.513260 ], [ 15.292969, 66.231457 ], [ 15.117188, 66.231457 ], [ 15.117188, 66.018018 ], [ 14.941406, 66.018018 ], [ 14.941406, 65.874725 ], [ 14.765625, 65.874725 ], [ 14.765625, 65.730626 ], [ 14.589844, 65.730626 ], [ 14.589844, 65.585720 ], [ 14.414062, 65.585720 ], [ 14.414062, 65.440002 ], [ 14.238281, 65.440002 ], [ 14.238281, 65.293468 ], [ 14.062500, 65.293468 ], [ 14.062500, 65.146115 ], [ 13.886719, 65.146115 ], [ 13.886719, 64.997939 ], [ 13.710938, 64.997939 ], [ 13.710938, 64.848937 ], [ 13.535156, 64.848937 ], [ 13.535156, 64.699105 ], [ 13.710938, 64.699105 ], [ 13.710938, 64.548440 ], [ 13.886719, 64.548440 ], [ 13.886719, 64.320872 ], [ 13.710938, 64.320872 ], [ 13.710938, 64.091408 ], [ 13.535156, 64.091408 ], [ 13.535156, 64.014496 ], [ 13.007812, 64.014496 ], [ 13.007812, 64.091408 ], [ 12.656250, 64.091408 ], [ 12.656250, 63.937372 ], [ 12.480469, 63.937372 ], [ 12.480469, 63.704722 ], [ 12.304688, 63.704722 ], [ 12.304688, 63.470145 ], [ 12.128906, 63.470145 ], [ 12.128906, 63.233627 ], [ 11.953125, 63.233627 ], [ 11.953125, 61.689872 ], [ 12.128906, 61.689872 ], [ 12.128906, 61.522695 ], [ 12.304688, 61.522695 ], [ 12.304688, 61.438767 ], [ 12.480469, 61.438767 ], [ 12.480469, 61.270233 ], [ 12.656250, 61.270233 ], [ 12.656250, 60.930432 ], [ 12.480469, 60.930432 ], [ 12.480469, 60.413852 ], [ 12.304688, 60.413852 ], [ 12.304688, 60.064840 ], [ 12.128906, 60.064840 ], [ 12.128906, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 59.800634 ], [ 11.777344, 59.800634 ], [ 11.777344, 59.623325 ], [ 11.601562, 59.623325 ], [ 11.601562, 59.445075 ], [ 11.425781, 59.445075 ], [ 11.425781, 59.265881 ], [ 11.250000, 59.265881 ], [ 11.250000, 58.904646 ], [ 11.074219, 58.904646 ], [ 11.074219, 58.813742 ], [ 10.898438, 58.813742 ], [ 10.898438, 58.995311 ], [ 10.722656, 58.995311 ], [ 10.722656, 59.175928 ], [ 10.546875, 59.175928 ], [ 10.546875, 59.355596 ], [ 10.195312, 59.355596 ], [ 10.195312, 59.265881 ], [ 10.019531, 59.265881 ], [ 10.019531, 59.175928 ], [ 9.843750, 59.175928 ], [ 9.843750, 59.085739 ], [ 9.667969, 59.085739 ], [ 9.667969, 58.995311 ], [ 9.492188, 58.995311 ], [ 9.492188, 58.904646 ], [ 9.316406, 58.904646 ], [ 9.316406, 58.722599 ], [ 9.140625, 58.722599 ], [ 9.140625, 58.631217 ], [ 8.964844, 58.631217 ], [ 8.964844, 58.539595 ], [ 8.789062, 58.539595 ], [ 8.789062, 58.447733 ], [ 8.613281, 58.447733 ], [ 8.613281, 58.355630 ], [ 8.261719, 58.355630 ], [ 8.261719, 58.263287 ], [ 7.910156, 58.263287 ], [ 7.910156, 58.170702 ], [ 7.382812, 58.170702 ], [ 7.382812, 58.077876 ], [ 6.855469, 58.077876 ], [ 6.855469, 58.170702 ], [ 6.503906, 58.170702 ], [ 6.503906, 58.263287 ], [ 6.328125, 58.263287 ], [ 6.328125, 58.355630 ], [ 6.152344, 58.355630 ], [ 6.152344, 58.447733 ], [ 5.800781, 58.447733 ], [ 5.800781, 58.539595 ], [ 5.625000, 58.539595 ], [ 5.625000, 58.813742 ], [ 5.449219, 58.813742 ], [ 5.449219, 59.355596 ], [ 5.273438, 59.355596 ], [ 5.273438, 60.152442 ], [ 5.097656, 60.152442 ], [ 5.097656, 61.354614 ], [ 4.921875, 61.354614 ], [ 4.921875, 61.938950 ], [ 5.097656, 61.938950 ], [ 5.097656, 62.103883 ], [ 5.273438, 62.103883 ], [ 5.273438, 62.186014 ], [ 5.449219, 62.186014 ], [ 5.449219, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.431074 ], [ 5.800781, 62.431074 ], [ 5.800781, 62.512318 ], [ 5.976562, 62.512318 ], [ 5.976562, 62.593341 ], [ 6.152344, 62.593341 ], [ 6.152344, 62.674143 ], [ 6.503906, 62.674143 ], [ 6.503906, 62.754726 ], [ 6.679688, 62.754726 ], [ 6.679688, 62.835089 ], [ 6.855469, 62.835089 ], [ 6.855469, 62.915233 ], [ 7.207031, 62.915233 ], [ 7.207031, 62.995158 ], [ 7.382812, 62.995158 ], [ 7.382812, 63.074866 ], [ 7.558594, 63.074866 ], [ 7.558594, 63.154355 ], [ 7.910156, 63.154355 ], [ 7.910156, 63.233627 ], [ 8.085938, 63.233627 ], [ 8.085938, 63.312683 ], [ 8.261719, 63.312683 ], [ 8.261719, 63.391522 ], [ 8.613281, 63.391522 ], [ 8.613281, 63.470145 ], [ 8.789062, 63.470145 ], [ 8.789062, 63.548552 ], [ 8.964844, 63.548552 ], [ 8.964844, 63.626745 ], [ 9.140625, 63.626745 ], [ 9.140625, 63.782486 ], [ 9.316406, 63.782486 ], [ 9.316406, 63.860036 ], [ 9.492188, 63.860036 ], [ 9.492188, 63.937372 ], [ 9.667969, 63.937372 ], [ 9.667969, 64.014496 ], [ 9.843750, 64.014496 ], [ 9.843750, 64.091408 ], [ 10.019531, 64.091408 ], [ 10.019531, 64.244595 ], [ 10.195312, 64.244595 ], [ 10.195312, 64.320872 ], [ 10.371094, 64.320872 ], [ 10.371094, 64.396938 ], [ 10.546875, 64.396938 ], [ 10.546875, 64.472794 ], [ 10.722656, 64.472794 ], [ 10.722656, 64.623877 ], [ 10.898438, 64.623877 ], [ 10.898438, 64.774125 ], [ 11.074219, 64.774125 ], [ 11.074219, 64.923542 ], [ 11.250000, 64.923542 ], [ 11.250000, 65.072130 ], [ 11.425781, 65.072130 ], [ 11.425781, 65.219894 ], [ 11.601562, 65.219894 ], [ 11.601562, 65.366837 ], [ 11.777344, 65.366837 ], [ 11.777344, 65.512963 ], [ 11.953125, 65.512963 ], [ 11.953125, 65.658275 ], [ 12.128906, 65.658275 ], [ 12.128906, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 65.946472 ], [ 12.480469, 65.946472 ], [ 12.480469, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.791909 ], [ 13.535156, 66.791909 ], [ 13.535156, 66.861082 ], [ 15.644531, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.644531, 66.861082 ], [ 15.644531, 66.722541 ], [ 15.468750, 66.722541 ], [ 15.468750, 66.583217 ], [ 15.292969, 66.583217 ], [ 15.292969, 66.443107 ], [ 15.117188, 66.443107 ], [ 15.117188, 66.302205 ], [ 14.941406, 66.302205 ], [ 14.941406, 66.089364 ], [ 14.765625, 66.089364 ], [ 14.765625, 65.946472 ], [ 14.589844, 65.946472 ], [ 14.589844, 65.802776 ], [ 14.414062, 65.802776 ], [ 14.414062, 65.585720 ], [ 14.238281, 65.585720 ], [ 14.238281, 65.440002 ], [ 14.062500, 65.440002 ], [ 14.062500, 65.219894 ], [ 13.886719, 65.219894 ], [ 13.886719, 65.072130 ], [ 13.710938, 65.072130 ], [ 13.710938, 64.923542 ], [ 13.535156, 64.923542 ], [ 13.535156, 64.699105 ], [ 13.710938, 64.699105 ], [ 13.710938, 64.548440 ], [ 13.886719, 64.548440 ], [ 13.886719, 64.320872 ], [ 13.710938, 64.320872 ], [ 13.710938, 64.168107 ], [ 13.535156, 64.168107 ], [ 13.535156, 64.091408 ], [ 12.480469, 64.091408 ], [ 12.480469, 63.937372 ], [ 12.304688, 63.937372 ], [ 12.304688, 63.704722 ], [ 12.128906, 63.704722 ], [ 12.128906, 63.470145 ], [ 11.953125, 63.470145 ], [ 11.953125, 63.233627 ], [ 11.777344, 63.233627 ], [ 11.777344, 62.512318 ], [ 11.953125, 62.512318 ], [ 11.953125, 61.773123 ], [ 12.128906, 61.773123 ], [ 12.128906, 61.606396 ], [ 12.304688, 61.606396 ], [ 12.304688, 61.438767 ], [ 12.480469, 61.438767 ], [ 12.480469, 61.015725 ], [ 12.304688, 61.015725 ], [ 12.304688, 60.413852 ], [ 12.128906, 60.413852 ], [ 12.128906, 60.064840 ], [ 11.953125, 60.064840 ], [ 11.953125, 59.888937 ], [ 11.777344, 59.888937 ], [ 11.777344, 59.712097 ], [ 11.601562, 59.712097 ], [ 11.601562, 59.534318 ], [ 11.425781, 59.534318 ], [ 11.425781, 59.355596 ], [ 11.250000, 59.355596 ], [ 11.250000, 59.175928 ], [ 11.074219, 59.175928 ], [ 11.074219, 58.995311 ], [ 10.898438, 58.995311 ], [ 10.898438, 58.904646 ], [ 10.722656, 58.904646 ], [ 10.722656, 59.085739 ], [ 10.546875, 59.085739 ], [ 10.546875, 59.265881 ], [ 10.371094, 59.265881 ], [ 10.371094, 59.445075 ], [ 10.019531, 59.445075 ], [ 10.019531, 59.355596 ], [ 9.843750, 59.355596 ], [ 9.843750, 59.265881 ], [ 9.667969, 59.265881 ], [ 9.667969, 59.085739 ], [ 9.492188, 59.085739 ], [ 9.492188, 58.995311 ], [ 9.316406, 58.995311 ], [ 9.316406, 58.904646 ], [ 9.140625, 58.904646 ], [ 9.140625, 58.813742 ], [ 8.964844, 58.813742 ], [ 8.964844, 58.722599 ], [ 8.789062, 58.722599 ], [ 8.789062, 58.539595 ], [ 8.613281, 58.539595 ], [ 8.613281, 58.447733 ], [ 8.437500, 58.447733 ], [ 8.437500, 58.355630 ], [ 8.085938, 58.355630 ], [ 8.085938, 58.263287 ], [ 7.734375, 58.263287 ], [ 7.734375, 58.170702 ], [ 7.382812, 58.170702 ], [ 7.382812, 58.077876 ], [ 6.855469, 58.077876 ], [ 6.855469, 58.170702 ], [ 6.503906, 58.170702 ], [ 6.503906, 58.263287 ], [ 6.328125, 58.263287 ], [ 6.328125, 58.355630 ], [ 6.152344, 58.355630 ], [ 6.152344, 58.447733 ], [ 5.800781, 58.447733 ], [ 5.800781, 58.539595 ], [ 5.625000, 58.539595 ], [ 5.625000, 58.904646 ], [ 5.449219, 58.904646 ], [ 5.449219, 59.445075 ], [ 5.273438, 59.445075 ], [ 5.273438, 60.239811 ], [ 5.097656, 60.239811 ], [ 5.097656, 61.438767 ], [ 4.921875, 61.438767 ], [ 4.921875, 62.021528 ], [ 5.097656, 62.021528 ], [ 5.097656, 62.186014 ], [ 5.273438, 62.186014 ], [ 5.273438, 62.349609 ], [ 5.449219, 62.349609 ], [ 5.449219, 62.431074 ], [ 5.625000, 62.431074 ], [ 5.625000, 62.593341 ], [ 5.800781, 62.593341 ], [ 5.800781, 62.674143 ], [ 5.976562, 62.674143 ], [ 5.976562, 62.754726 ], [ 6.328125, 62.754726 ], [ 6.328125, 62.835089 ], [ 6.503906, 62.835089 ], [ 6.503906, 62.915233 ], [ 6.855469, 62.915233 ], [ 6.855469, 62.995158 ], [ 7.031250, 62.995158 ], [ 7.031250, 63.074866 ], [ 7.382812, 63.074866 ], [ 7.382812, 63.154355 ], [ 7.558594, 63.154355 ], [ 7.558594, 63.233627 ], [ 7.910156, 63.233627 ], [ 7.910156, 63.312683 ], [ 8.085938, 63.312683 ], [ 8.085938, 63.391522 ], [ 8.437500, 63.391522 ], [ 8.437500, 63.470145 ], [ 8.613281, 63.470145 ], [ 8.613281, 63.548552 ], [ 8.789062, 63.548552 ], [ 8.789062, 63.704722 ], [ 8.964844, 63.704722 ], [ 8.964844, 63.782486 ], [ 9.140625, 63.782486 ], [ 9.140625, 63.860036 ], [ 9.316406, 63.860036 ], [ 9.316406, 64.014496 ], [ 9.492188, 64.014496 ], [ 9.492188, 64.091408 ], [ 9.667969, 64.091408 ], [ 9.667969, 64.168107 ], [ 9.843750, 64.168107 ], [ 9.843750, 64.244595 ], [ 10.019531, 64.244595 ], [ 10.019531, 64.396938 ], [ 10.195312, 64.396938 ], [ 10.195312, 64.472794 ], [ 10.371094, 64.472794 ], [ 10.371094, 64.548440 ], [ 10.546875, 64.548440 ], [ 10.546875, 64.699105 ], [ 10.722656, 64.699105 ], [ 10.722656, 64.848937 ], [ 10.898438, 64.848937 ], [ 10.898438, 64.997939 ], [ 11.074219, 64.997939 ], [ 11.074219, 65.072130 ], [ 11.250000, 65.072130 ], [ 11.250000, 65.219894 ], [ 11.425781, 65.219894 ], [ 11.425781, 65.366837 ], [ 11.601562, 65.366837 ], [ 11.601562, 65.440002 ], [ 11.777344, 65.440002 ], [ 11.777344, 65.585720 ], [ 11.953125, 65.585720 ], [ 11.953125, 65.730626 ], [ 12.128906, 65.730626 ], [ 12.128906, 65.874725 ], [ 12.304688, 65.874725 ], [ 12.304688, 65.946472 ], [ 12.480469, 65.946472 ], [ 12.480469, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.791909 ], [ 13.535156, 66.791909 ], [ 13.535156, 66.861082 ], [ 15.644531, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.072035 ], [ 12.304688, 55.875311 ], [ 12.480469, 55.875311 ], [ 12.480469, 55.677584 ], [ 12.656250, 55.677584 ], [ 12.656250, 55.379110 ], [ 12.480469, 55.379110 ], [ 12.480469, 55.178868 ], [ 12.304688, 55.178868 ], [ 12.304688, 54.876607 ], [ 12.128906, 54.876607 ], [ 12.128906, 54.775346 ], [ 11.953125, 54.775346 ], [ 11.953125, 54.876607 ], [ 11.777344, 54.876607 ], [ 11.777344, 54.977614 ], [ 11.601562, 54.977614 ], [ 11.601562, 55.078367 ], [ 11.425781, 55.078367 ], [ 11.425781, 55.178868 ], [ 11.250000, 55.178868 ], [ 11.250000, 55.279115 ], [ 11.074219, 55.279115 ], [ 11.074219, 55.578345 ], [ 10.898438, 55.578345 ], [ 10.898438, 55.776573 ], [ 11.250000, 55.776573 ], [ 11.250000, 55.875311 ], [ 11.777344, 55.875311 ], [ 11.777344, 55.973798 ], [ 12.128906, 55.973798 ], [ 12.128906, 56.072035 ], [ 12.304688, 56.072035 ] ] ], [ [ [ 10.546875, 57.610107 ], [ 10.546875, 57.136239 ], [ 10.371094, 57.136239 ], [ 10.371094, 56.944974 ], [ 10.195312, 56.944974 ], [ 10.195312, 56.752723 ], [ 10.371094, 56.752723 ], [ 10.371094, 56.559482 ], [ 10.722656, 56.559482 ], [ 10.722656, 56.462490 ], [ 10.898438, 56.462490 ], [ 10.898438, 56.267761 ], [ 10.722656, 56.267761 ], [ 10.722656, 56.072035 ], [ 10.195312, 56.072035 ], [ 10.195312, 55.875311 ], [ 10.019531, 55.875311 ], [ 10.019531, 55.677584 ], [ 9.843750, 55.677584 ], [ 9.843750, 55.478853 ], [ 9.667969, 55.478853 ], [ 9.667969, 55.178868 ], [ 9.843750, 55.178868 ], [ 9.843750, 54.977614 ], [ 9.667969, 54.977614 ], [ 9.667969, 54.876607 ], [ 8.789062, 54.876607 ], [ 8.789062, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 55.178868 ], [ 8.261719, 55.178868 ], [ 8.261719, 55.379110 ], [ 8.085938, 55.379110 ], [ 8.085938, 56.656226 ], [ 8.261719, 56.656226 ], [ 8.261719, 56.848972 ], [ 8.437500, 56.848972 ], [ 8.437500, 57.040730 ], [ 8.613281, 57.040730 ], [ 8.613281, 57.136239 ], [ 9.667969, 57.136239 ], [ 9.667969, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 57.421294 ], [ 10.019531, 57.421294 ], [ 10.019531, 57.515823 ], [ 10.371094, 57.515823 ], [ 10.371094, 57.610107 ], [ 10.546875, 57.610107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.170023 ], [ 12.304688, 55.973798 ], [ 12.480469, 55.973798 ], [ 12.480469, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 55.578345 ], [ 12.480469, 55.578345 ], [ 12.480469, 55.379110 ], [ 12.304688, 55.379110 ], [ 12.304688, 55.178868 ], [ 12.128906, 55.178868 ], [ 12.128906, 54.977614 ], [ 11.953125, 54.977614 ], [ 11.953125, 54.876607 ], [ 11.777344, 54.876607 ], [ 11.777344, 54.977614 ], [ 11.601562, 54.977614 ], [ 11.601562, 55.078367 ], [ 11.250000, 55.078367 ], [ 11.250000, 55.178868 ], [ 11.074219, 55.178868 ], [ 11.074219, 55.279115 ], [ 10.898438, 55.279115 ], [ 10.898438, 55.875311 ], [ 11.250000, 55.875311 ], [ 11.250000, 55.973798 ], [ 11.777344, 55.973798 ], [ 11.777344, 56.072035 ], [ 12.128906, 56.072035 ], [ 12.128906, 56.170023 ], [ 12.304688, 56.170023 ] ] ], [ [ [ 10.546875, 57.704147 ], [ 10.546875, 57.136239 ], [ 10.371094, 57.136239 ], [ 10.371094, 56.944974 ], [ 10.195312, 56.944974 ], [ 10.195312, 56.752723 ], [ 10.371094, 56.752723 ], [ 10.371094, 56.559482 ], [ 10.722656, 56.559482 ], [ 10.722656, 56.462490 ], [ 10.898438, 56.462490 ], [ 10.898438, 56.365250 ], [ 10.722656, 56.365250 ], [ 10.722656, 56.170023 ], [ 10.195312, 56.170023 ], [ 10.195312, 55.973798 ], [ 10.019531, 55.973798 ], [ 10.019531, 55.875311 ], [ 9.843750, 55.875311 ], [ 9.843750, 55.677584 ], [ 9.667969, 55.677584 ], [ 9.667969, 55.478853 ], [ 9.492188, 55.478853 ], [ 9.492188, 55.379110 ], [ 9.667969, 55.379110 ], [ 9.667969, 55.178868 ], [ 9.843750, 55.178868 ], [ 9.843750, 54.977614 ], [ 9.492188, 54.977614 ], [ 9.492188, 54.876607 ], [ 8.613281, 54.876607 ], [ 8.613281, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 55.078367 ], [ 8.261719, 55.078367 ], [ 8.261719, 55.379110 ], [ 8.085938, 55.379110 ], [ 8.085938, 56.848972 ], [ 8.261719, 56.848972 ], [ 8.261719, 57.040730 ], [ 8.437500, 57.040730 ], [ 8.437500, 57.136239 ], [ 8.964844, 57.136239 ], [ 8.964844, 57.231503 ], [ 9.492188, 57.231503 ], [ 9.492188, 57.421294 ], [ 9.667969, 57.421294 ], [ 9.667969, 57.515823 ], [ 9.843750, 57.515823 ], [ 9.843750, 57.610107 ], [ 10.195312, 57.610107 ], [ 10.195312, 57.704147 ], [ 10.546875, 57.704147 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.554688, 66.231457 ], [ 23.730469, 66.231457 ], [ 23.730469, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 66.018018 ], [ 23.730469, 66.018018 ], [ 23.730469, 65.946472 ], [ 23.378906, 65.946472 ], [ 23.378906, 65.874725 ], [ 22.851562, 65.874725 ], [ 22.851562, 65.802776 ], [ 22.500000, 65.802776 ], [ 22.500000, 65.730626 ], [ 22.148438, 65.730626 ], [ 22.148438, 65.658275 ], [ 21.972656, 65.658275 ], [ 21.972656, 65.512963 ], [ 21.796875, 65.512963 ], [ 21.796875, 65.366837 ], [ 21.621094, 65.366837 ], [ 21.621094, 65.219894 ], [ 21.445312, 65.219894 ], [ 21.445312, 65.072130 ], [ 21.269531, 65.072130 ], [ 21.269531, 64.699105 ], [ 21.445312, 64.699105 ], [ 21.445312, 64.320872 ], [ 21.269531, 64.320872 ], [ 21.269531, 64.244595 ], [ 21.093750, 64.244595 ], [ 21.093750, 64.168107 ], [ 20.917969, 64.168107 ], [ 20.917969, 64.091408 ], [ 20.742188, 64.091408 ], [ 20.742188, 64.014496 ], [ 20.566406, 64.014496 ], [ 20.566406, 63.860036 ], [ 20.390625, 63.860036 ], [ 20.390625, 63.782486 ], [ 20.214844, 63.782486 ], [ 20.214844, 63.704722 ], [ 20.039062, 63.704722 ], [ 20.039062, 63.626745 ], [ 19.863281, 63.626745 ], [ 19.863281, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.511719, 63.470145 ], [ 19.511719, 63.391522 ], [ 19.335938, 63.391522 ], [ 19.335938, 63.312683 ], [ 19.160156, 63.312683 ], [ 19.160156, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 63.154355 ], [ 18.808594, 63.154355 ], [ 18.808594, 63.074866 ], [ 18.632812, 63.074866 ], [ 18.632812, 62.995158 ], [ 18.457031, 62.995158 ], [ 18.457031, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.835089 ], [ 18.105469, 62.835089 ], [ 18.105469, 62.754726 ], [ 17.929688, 62.754726 ], [ 17.929688, 62.593341 ], [ 17.753906, 62.593341 ], [ 17.753906, 62.267923 ], [ 17.578125, 62.267923 ], [ 17.578125, 62.021528 ], [ 17.402344, 62.021528 ], [ 17.402344, 61.773123 ], [ 17.226562, 61.773123 ], [ 17.226562, 61.438767 ], [ 17.050781, 61.438767 ], [ 17.050781, 61.270233 ], [ 17.226562, 61.270233 ], [ 17.226562, 61.100789 ], [ 17.402344, 61.100789 ], [ 17.402344, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.759160 ], [ 17.753906, 60.759160 ], [ 17.753906, 60.586967 ], [ 17.929688, 60.586967 ], [ 17.929688, 60.500525 ], [ 18.105469, 60.500525 ], [ 18.105469, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.239811 ], [ 18.457031, 60.239811 ], [ 18.457031, 60.152442 ], [ 18.632812, 60.152442 ], [ 18.632812, 60.064840 ], [ 18.808594, 60.064840 ], [ 18.808594, 59.888937 ], [ 18.632812, 59.888937 ], [ 18.632812, 59.712097 ], [ 18.457031, 59.712097 ], [ 18.457031, 59.534318 ], [ 18.281250, 59.534318 ], [ 18.281250, 59.265881 ], [ 18.105469, 59.265881 ], [ 18.105469, 59.085739 ], [ 17.929688, 59.085739 ], [ 17.929688, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.813742 ], [ 17.226562, 58.813742 ], [ 17.226562, 58.722599 ], [ 16.875000, 58.722599 ], [ 16.875000, 58.263287 ], [ 16.699219, 58.263287 ], [ 16.699219, 57.421294 ], [ 16.523438, 57.421294 ], [ 16.523438, 56.848972 ], [ 16.347656, 56.848972 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 16.171875, 56.365250 ], [ 15.996094, 56.365250 ], [ 15.996094, 56.170023 ], [ 15.820312, 56.170023 ], [ 15.820312, 56.072035 ], [ 15.117188, 56.072035 ], [ 15.117188, 56.170023 ], [ 14.589844, 56.170023 ], [ 14.589844, 55.973798 ], [ 14.414062, 55.973798 ], [ 14.414062, 55.776573 ], [ 14.238281, 55.776573 ], [ 14.238281, 55.478853 ], [ 14.062500, 55.478853 ], [ 14.062500, 55.379110 ], [ 13.007812, 55.379110 ], [ 13.007812, 55.578345 ], [ 12.832031, 55.578345 ], [ 12.832031, 55.973798 ], [ 12.656250, 55.973798 ], [ 12.656250, 56.365250 ], [ 12.480469, 56.365250 ], [ 12.480469, 56.559482 ], [ 12.304688, 56.559482 ], [ 12.304688, 56.848972 ], [ 12.128906, 56.848972 ], [ 12.128906, 57.040730 ], [ 11.953125, 57.040730 ], [ 11.953125, 57.231503 ], [ 11.777344, 57.231503 ], [ 11.777344, 57.515823 ], [ 11.601562, 57.515823 ], [ 11.601562, 57.891497 ], [ 11.425781, 57.891497 ], [ 11.425781, 58.263287 ], [ 11.250000, 58.263287 ], [ 11.250000, 58.631217 ], [ 11.074219, 58.631217 ], [ 11.074219, 58.904646 ], [ 11.250000, 58.904646 ], [ 11.250000, 59.265881 ], [ 11.425781, 59.265881 ], [ 11.425781, 59.445075 ], [ 11.601562, 59.445075 ], [ 11.601562, 59.623325 ], [ 11.777344, 59.623325 ], [ 11.777344, 59.800634 ], [ 11.953125, 59.800634 ], [ 11.953125, 59.888937 ], [ 12.128906, 59.888937 ], [ 12.128906, 60.064840 ], [ 12.304688, 60.064840 ], [ 12.304688, 60.413852 ], [ 12.480469, 60.413852 ], [ 12.480469, 60.930432 ], [ 12.656250, 60.930432 ], [ 12.656250, 61.270233 ], [ 12.480469, 61.270233 ], [ 12.480469, 61.438767 ], [ 12.304688, 61.438767 ], [ 12.304688, 61.522695 ], [ 12.128906, 61.522695 ], [ 12.128906, 61.689872 ], [ 11.953125, 61.689872 ], [ 11.953125, 63.233627 ], [ 12.128906, 63.233627 ], [ 12.128906, 63.470145 ], [ 12.304688, 63.470145 ], [ 12.304688, 63.704722 ], [ 12.480469, 63.704722 ], [ 12.480469, 63.937372 ], [ 12.656250, 63.937372 ], [ 12.656250, 64.091408 ], [ 13.007812, 64.091408 ], [ 13.007812, 64.014496 ], [ 13.535156, 64.014496 ], [ 13.535156, 64.091408 ], [ 13.710938, 64.091408 ], [ 13.710938, 64.320872 ], [ 13.886719, 64.320872 ], [ 13.886719, 64.548440 ], [ 13.710938, 64.548440 ], [ 13.710938, 64.699105 ], [ 13.535156, 64.699105 ], [ 13.535156, 64.848937 ], [ 13.710938, 64.848937 ], [ 13.710938, 64.997939 ], [ 13.886719, 64.997939 ], [ 13.886719, 65.146115 ], [ 14.062500, 65.146115 ], [ 14.062500, 65.293468 ], [ 14.238281, 65.293468 ], [ 14.238281, 65.440002 ], [ 14.414062, 65.440002 ], [ 14.414062, 65.585720 ], [ 14.589844, 65.585720 ], [ 14.589844, 65.730626 ], [ 14.765625, 65.730626 ], [ 14.765625, 65.874725 ], [ 14.941406, 65.874725 ], [ 14.941406, 66.018018 ], [ 15.117188, 66.018018 ], [ 15.117188, 66.231457 ], [ 15.292969, 66.231457 ], [ 15.292969, 66.513260 ], [ 15.468750, 66.513260 ], [ 15.468750, 66.722541 ], [ 15.644531, 66.722541 ], [ 15.644531, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.554688, 66.231457 ], [ 23.730469, 66.231457 ], [ 23.730469, 66.018018 ], [ 23.554688, 66.018018 ], [ 23.554688, 65.946472 ], [ 23.203125, 65.946472 ], [ 23.203125, 65.874725 ], [ 22.851562, 65.874725 ], [ 22.851562, 65.802776 ], [ 22.500000, 65.802776 ], [ 22.500000, 65.730626 ], [ 22.148438, 65.730626 ], [ 22.148438, 65.658275 ], [ 21.972656, 65.658275 ], [ 21.972656, 65.512963 ], [ 21.796875, 65.512963 ], [ 21.796875, 65.440002 ], [ 21.621094, 65.440002 ], [ 21.621094, 65.293468 ], [ 21.445312, 65.293468 ], [ 21.445312, 65.219894 ], [ 21.269531, 65.219894 ], [ 21.269531, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.774125 ], [ 21.269531, 64.774125 ], [ 21.269531, 64.396938 ], [ 21.093750, 64.396938 ], [ 21.093750, 64.320872 ], [ 20.917969, 64.320872 ], [ 20.917969, 64.168107 ], [ 20.742188, 64.168107 ], [ 20.742188, 64.091408 ], [ 20.566406, 64.091408 ], [ 20.566406, 64.014496 ], [ 20.390625, 64.014496 ], [ 20.390625, 63.937372 ], [ 20.214844, 63.937372 ], [ 20.214844, 63.860036 ], [ 20.039062, 63.860036 ], [ 20.039062, 63.704722 ], [ 19.863281, 63.704722 ], [ 19.863281, 63.626745 ], [ 19.687500, 63.626745 ], [ 19.687500, 63.548552 ], [ 19.511719, 63.548552 ], [ 19.511719, 63.470145 ], [ 19.335938, 63.470145 ], [ 19.335938, 63.391522 ], [ 19.160156, 63.391522 ], [ 19.160156, 63.312683 ], [ 18.984375, 63.312683 ], [ 18.984375, 63.233627 ], [ 18.808594, 63.233627 ], [ 18.808594, 63.154355 ], [ 18.632812, 63.154355 ], [ 18.632812, 63.074866 ], [ 18.457031, 63.074866 ], [ 18.457031, 62.995158 ], [ 18.281250, 62.995158 ], [ 18.281250, 62.915233 ], [ 18.105469, 62.915233 ], [ 18.105469, 62.835089 ], [ 17.929688, 62.835089 ], [ 17.929688, 62.754726 ], [ 17.753906, 62.754726 ], [ 17.753906, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.578125, 62.186014 ], [ 17.402344, 62.186014 ], [ 17.402344, 61.856149 ], [ 17.226562, 61.856149 ], [ 17.226562, 61.522695 ], [ 17.050781, 61.522695 ], [ 17.050781, 61.270233 ], [ 17.226562, 61.270233 ], [ 17.226562, 61.100789 ], [ 17.402344, 61.100789 ], [ 17.402344, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.759160 ], [ 17.753906, 60.759160 ], [ 17.753906, 60.586967 ], [ 17.929688, 60.586967 ], [ 17.929688, 60.500525 ], [ 18.105469, 60.500525 ], [ 18.105469, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.239811 ], [ 18.457031, 60.239811 ], [ 18.457031, 60.152442 ], [ 18.632812, 60.152442 ], [ 18.632812, 59.977005 ], [ 18.457031, 59.977005 ], [ 18.457031, 59.800634 ], [ 18.281250, 59.800634 ], [ 18.281250, 59.534318 ], [ 18.105469, 59.534318 ], [ 18.105469, 59.265881 ], [ 17.929688, 59.265881 ], [ 17.929688, 59.085739 ], [ 17.753906, 59.085739 ], [ 17.753906, 58.904646 ], [ 17.402344, 58.904646 ], [ 17.402344, 58.813742 ], [ 17.050781, 58.813742 ], [ 17.050781, 58.722599 ], [ 16.699219, 58.722599 ], [ 16.699219, 58.263287 ], [ 16.523438, 58.263287 ], [ 16.523438, 57.421294 ], [ 16.347656, 57.421294 ], [ 16.347656, 56.848972 ], [ 16.171875, 56.848972 ], [ 16.171875, 56.559482 ], [ 15.996094, 56.559482 ], [ 15.996094, 56.267761 ], [ 15.820312, 56.267761 ], [ 15.820312, 56.170023 ], [ 15.117188, 56.170023 ], [ 15.117188, 56.267761 ], [ 14.589844, 56.267761 ], [ 14.589844, 56.072035 ], [ 14.414062, 56.072035 ], [ 14.414062, 55.875311 ], [ 14.238281, 55.875311 ], [ 14.238281, 55.578345 ], [ 14.062500, 55.578345 ], [ 14.062500, 55.478853 ], [ 13.535156, 55.478853 ], [ 13.535156, 55.379110 ], [ 12.832031, 55.379110 ], [ 12.832031, 55.578345 ], [ 12.656250, 55.578345 ], [ 12.656250, 56.072035 ], [ 12.480469, 56.072035 ], [ 12.480469, 56.462490 ], [ 12.304688, 56.462490 ], [ 12.304688, 56.752723 ], [ 12.128906, 56.752723 ], [ 12.128906, 57.040730 ], [ 11.953125, 57.040730 ], [ 11.953125, 57.326521 ], [ 11.777344, 57.326521 ], [ 11.777344, 57.610107 ], [ 11.601562, 57.610107 ], [ 11.601562, 57.891497 ], [ 11.425781, 57.891497 ], [ 11.425781, 58.170702 ], [ 11.250000, 58.170702 ], [ 11.250000, 58.447733 ], [ 11.074219, 58.447733 ], [ 11.074219, 58.722599 ], [ 10.898438, 58.722599 ], [ 10.898438, 58.995311 ], [ 11.074219, 58.995311 ], [ 11.074219, 59.175928 ], [ 11.250000, 59.175928 ], [ 11.250000, 59.355596 ], [ 11.425781, 59.355596 ], [ 11.425781, 59.534318 ], [ 11.601562, 59.534318 ], [ 11.601562, 59.712097 ], [ 11.777344, 59.712097 ], [ 11.777344, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 60.064840 ], [ 12.128906, 60.064840 ], [ 12.128906, 60.413852 ], [ 12.304688, 60.413852 ], [ 12.304688, 61.015725 ], [ 12.480469, 61.015725 ], [ 12.480469, 61.438767 ], [ 12.304688, 61.438767 ], [ 12.304688, 61.606396 ], [ 12.128906, 61.606396 ], [ 12.128906, 61.773123 ], [ 11.953125, 61.773123 ], [ 11.953125, 62.512318 ], [ 11.777344, 62.512318 ], [ 11.777344, 63.233627 ], [ 11.953125, 63.233627 ], [ 11.953125, 63.470145 ], [ 12.128906, 63.470145 ], [ 12.128906, 63.704722 ], [ 12.304688, 63.704722 ], [ 12.304688, 63.937372 ], [ 12.480469, 63.937372 ], [ 12.480469, 64.091408 ], [ 13.535156, 64.091408 ], [ 13.535156, 64.168107 ], [ 13.710938, 64.168107 ], [ 13.710938, 64.320872 ], [ 13.886719, 64.320872 ], [ 13.886719, 64.548440 ], [ 13.710938, 64.548440 ], [ 13.710938, 64.699105 ], [ 13.535156, 64.699105 ], [ 13.535156, 64.923542 ], [ 13.710938, 64.923542 ], [ 13.710938, 65.072130 ], [ 13.886719, 65.072130 ], [ 13.886719, 65.219894 ], [ 14.062500, 65.219894 ], [ 14.062500, 65.440002 ], [ 14.238281, 65.440002 ], [ 14.238281, 65.585720 ], [ 14.414062, 65.585720 ], [ 14.414062, 65.802776 ], [ 14.589844, 65.802776 ], [ 14.589844, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 66.089364 ], [ 14.941406, 66.089364 ], [ 14.941406, 66.302205 ], [ 15.117188, 66.302205 ], [ 15.117188, 66.443107 ], [ 15.292969, 66.443107 ], [ 15.292969, 66.583217 ], [ 15.468750, 66.583217 ], [ 15.468750, 66.722541 ], [ 15.644531, 66.722541 ], [ 15.644531, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 53.540307 ], [ 6.328125, 53.435719 ], [ 6.855469, 53.435719 ], [ 6.855469, 53.225768 ], [ 7.031250, 53.225768 ], [ 7.031250, 52.696361 ], [ 6.855469, 52.696361 ], [ 6.855469, 52.160455 ], [ 6.679688, 52.160455 ], [ 6.679688, 51.944265 ], [ 6.503906, 51.944265 ], [ 6.503906, 51.835778 ], [ 5.976562, 51.835778 ], [ 5.976562, 51.289406 ], [ 6.152344, 51.289406 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.847573 ], [ 5.976562, 50.958427 ], [ 5.625000, 50.958427 ], [ 5.625000, 51.069017 ], [ 5.449219, 51.069017 ], [ 5.449219, 51.179343 ], [ 5.273438, 51.179343 ], [ 5.273438, 51.289406 ], [ 5.097656, 51.289406 ], [ 5.097656, 51.399206 ], [ 4.921875, 51.399206 ], [ 4.921875, 51.508742 ], [ 4.746094, 51.508742 ], [ 4.746094, 51.399206 ], [ 4.394531, 51.399206 ], [ 4.394531, 51.289406 ], [ 3.515625, 51.289406 ], [ 3.515625, 51.508742 ], [ 3.867188, 51.508742 ], [ 3.867188, 51.727028 ], [ 4.042969, 51.727028 ], [ 4.042969, 52.052490 ], [ 4.218750, 52.052490 ], [ 4.218750, 52.375599 ], [ 4.394531, 52.375599 ], [ 4.394531, 52.589701 ], [ 4.570312, 52.589701 ], [ 4.570312, 52.908902 ], [ 4.746094, 52.908902 ], [ 4.746094, 53.120405 ], [ 5.097656, 53.120405 ], [ 5.097656, 53.225768 ], [ 5.449219, 53.225768 ], [ 5.449219, 53.330873 ], [ 5.800781, 53.330873 ], [ 5.800781, 53.435719 ], [ 6.152344, 53.435719 ], [ 6.152344, 53.540307 ], [ 6.328125, 53.540307 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.855469, 53.540307 ], [ 6.855469, 53.330873 ], [ 7.031250, 53.330873 ], [ 7.031250, 52.908902 ], [ 6.855469, 52.908902 ], [ 6.855469, 52.482780 ], [ 6.679688, 52.482780 ], [ 6.679688, 52.052490 ], [ 6.503906, 52.052490 ], [ 6.503906, 51.944265 ], [ 5.976562, 51.944265 ], [ 5.976562, 51.399206 ], [ 6.152344, 51.399206 ], [ 6.152344, 50.847573 ], [ 5.800781, 50.847573 ], [ 5.800781, 50.958427 ], [ 5.449219, 50.958427 ], [ 5.449219, 51.069017 ], [ 5.273438, 51.069017 ], [ 5.273438, 51.289406 ], [ 5.097656, 51.289406 ], [ 5.097656, 51.399206 ], [ 4.921875, 51.399206 ], [ 4.921875, 51.508742 ], [ 4.746094, 51.508742 ], [ 4.746094, 51.399206 ], [ 4.394531, 51.399206 ], [ 4.394531, 51.289406 ], [ 3.515625, 51.289406 ], [ 3.515625, 51.399206 ], [ 3.339844, 51.399206 ], [ 3.339844, 51.508742 ], [ 3.515625, 51.508742 ], [ 3.515625, 51.618017 ], [ 3.691406, 51.618017 ], [ 3.691406, 51.835778 ], [ 3.867188, 51.835778 ], [ 3.867188, 52.052490 ], [ 4.042969, 52.052490 ], [ 4.042969, 52.375599 ], [ 4.218750, 52.375599 ], [ 4.218750, 52.696361 ], [ 4.394531, 52.696361 ], [ 4.394531, 52.908902 ], [ 4.570312, 52.908902 ], [ 4.570312, 53.120405 ], [ 4.921875, 53.120405 ], [ 4.921875, 53.225768 ], [ 5.273438, 53.225768 ], [ 5.273438, 53.330873 ], [ 5.625000, 53.330873 ], [ 5.625000, 53.435719 ], [ 5.976562, 53.435719 ], [ 5.976562, 53.540307 ], [ 6.855469, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.508742 ], [ 4.921875, 51.399206 ], [ 5.097656, 51.399206 ], [ 5.097656, 51.289406 ], [ 5.273438, 51.289406 ], [ 5.273438, 51.179343 ], [ 5.449219, 51.179343 ], [ 5.449219, 51.069017 ], [ 5.625000, 51.069017 ], [ 5.625000, 50.958427 ], [ 5.976562, 50.958427 ], [ 5.976562, 50.847573 ], [ 6.152344, 50.847573 ], [ 6.152344, 50.513427 ], [ 5.976562, 50.513427 ], [ 5.976562, 50.064192 ], [ 5.800781, 50.064192 ], [ 5.800781, 49.724479 ], [ 5.625000, 49.724479 ], [ 5.625000, 49.496675 ], [ 5.449219, 49.496675 ], [ 5.449219, 49.610710 ], [ 5.273438, 49.610710 ], [ 5.273438, 49.724479 ], [ 4.921875, 49.724479 ], [ 4.921875, 49.837982 ], [ 4.746094, 49.837982 ], [ 4.746094, 49.951220 ], [ 4.042969, 49.951220 ], [ 4.042969, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 50.176898 ], [ 3.691406, 50.176898 ], [ 3.691406, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 50.401515 ], [ 3.339844, 50.401515 ], [ 3.339844, 50.625073 ], [ 3.164062, 50.625073 ], [ 3.164062, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.847573 ], [ 2.636719, 50.847573 ], [ 2.636719, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 2.812500, 51.179343 ], [ 2.812500, 51.289406 ], [ 3.164062, 51.289406 ], [ 3.164062, 51.399206 ], [ 3.515625, 51.399206 ], [ 3.515625, 51.289406 ], [ 4.394531, 51.289406 ], [ 4.394531, 51.399206 ], [ 4.746094, 51.399206 ], [ 4.746094, 51.508742 ], [ 4.921875, 51.508742 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.508742 ], [ 4.921875, 51.399206 ], [ 5.097656, 51.399206 ], [ 5.097656, 51.289406 ], [ 5.273438, 51.289406 ], [ 5.273438, 51.069017 ], [ 5.449219, 51.069017 ], [ 5.449219, 50.958427 ], [ 5.800781, 50.958427 ], [ 5.800781, 50.847573 ], [ 6.152344, 50.847573 ], [ 6.152344, 50.513427 ], [ 5.976562, 50.513427 ], [ 5.976562, 50.176898 ], [ 5.625000, 50.176898 ], [ 5.625000, 49.610710 ], [ 5.449219, 49.610710 ], [ 5.449219, 49.724479 ], [ 5.273438, 49.724479 ], [ 5.273438, 49.837982 ], [ 4.921875, 49.837982 ], [ 4.921875, 49.951220 ], [ 4.746094, 49.951220 ], [ 4.746094, 50.064192 ], [ 4.570312, 50.064192 ], [ 4.570312, 49.951220 ], [ 4.042969, 49.951220 ], [ 4.042969, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 50.176898 ], [ 3.691406, 50.176898 ], [ 3.691406, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 50.401515 ], [ 3.339844, 50.401515 ], [ 3.339844, 50.625073 ], [ 3.164062, 50.625073 ], [ 3.164062, 50.736455 ], [ 2.988281, 50.736455 ], [ 2.988281, 50.847573 ], [ 2.636719, 50.847573 ], [ 2.636719, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 2.812500, 51.179343 ], [ 2.812500, 51.289406 ], [ 3.164062, 51.289406 ], [ 3.164062, 51.399206 ], [ 3.515625, 51.399206 ], [ 3.515625, 51.289406 ], [ 4.394531, 51.289406 ], [ 4.394531, 51.399206 ], [ 4.746094, 51.399206 ], [ 4.746094, 51.508742 ], [ 4.921875, 51.508742 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.152344, 50.064192 ], [ 6.152344, 49.951220 ], [ 6.328125, 49.951220 ], [ 6.328125, 49.724479 ], [ 6.152344, 49.724479 ], [ 6.152344, 49.496675 ], [ 5.625000, 49.496675 ], [ 5.625000, 49.724479 ], [ 5.800781, 49.724479 ], [ 5.800781, 50.064192 ], [ 6.152344, 50.064192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.176898 ], [ 5.976562, 50.064192 ], [ 6.152344, 50.064192 ], [ 6.152344, 49.496675 ], [ 5.625000, 49.496675 ], [ 5.625000, 50.176898 ], [ 5.976562, 50.176898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.775346 ], [ 10.019531, 54.775346 ], [ 10.019531, 54.572062 ], [ 10.195312, 54.572062 ], [ 10.195312, 54.470038 ], [ 10.546875, 54.470038 ], [ 10.546875, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.601562, 54.059388 ], [ 11.601562, 54.162434 ], [ 12.128906, 54.162434 ], [ 12.128906, 54.265224 ], [ 12.304688, 54.265224 ], [ 12.304688, 54.367759 ], [ 12.832031, 54.367759 ], [ 12.832031, 54.265224 ], [ 13.183594, 54.265224 ], [ 13.183594, 54.162434 ], [ 13.535156, 54.162434 ], [ 13.535156, 54.059388 ], [ 13.710938, 54.059388 ], [ 13.710938, 53.956086 ], [ 13.886719, 53.956086 ], [ 13.886719, 53.748711 ], [ 14.062500, 53.748711 ], [ 14.062500, 53.540307 ], [ 14.238281, 53.540307 ], [ 14.238281, 53.330873 ], [ 14.414062, 53.330873 ], [ 14.414062, 53.120405 ], [ 14.238281, 53.120405 ], [ 14.238281, 53.014783 ], [ 14.062500, 53.014783 ], [ 14.062500, 52.908902 ], [ 14.238281, 52.908902 ], [ 14.238281, 52.696361 ], [ 14.414062, 52.696361 ], [ 14.414062, 52.375599 ], [ 14.589844, 52.375599 ], [ 14.589844, 52.160455 ], [ 14.765625, 52.160455 ], [ 14.765625, 51.835778 ], [ 14.589844, 51.835778 ], [ 14.589844, 51.508742 ], [ 14.765625, 51.508742 ], [ 14.765625, 51.179343 ], [ 14.941406, 51.179343 ], [ 14.941406, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 50.847573 ], [ 13.710938, 50.847573 ], [ 13.710938, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.625073 ], [ 13.183594, 50.625073 ], [ 13.183594, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.401515 ], [ 12.656250, 50.401515 ], [ 12.656250, 50.289339 ], [ 12.304688, 50.289339 ], [ 12.304688, 50.064192 ], [ 12.480469, 50.064192 ], [ 12.480469, 49.382373 ], [ 12.832031, 49.382373 ], [ 12.832031, 49.267805 ], [ 13.007812, 49.267805 ], [ 13.007812, 49.152970 ], [ 13.183594, 49.152970 ], [ 13.183594, 49.037868 ], [ 13.359375, 49.037868 ], [ 13.359375, 48.922499 ], [ 13.535156, 48.922499 ], [ 13.535156, 48.806863 ], [ 13.359375, 48.806863 ], [ 13.359375, 48.574790 ], [ 13.183594, 48.574790 ], [ 13.183594, 48.341646 ], [ 12.832031, 48.341646 ], [ 12.832031, 47.989922 ], [ 13.007812, 47.989922 ], [ 13.007812, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 47.635784 ], [ 12.304688, 47.635784 ], [ 12.304688, 47.754098 ], [ 12.128906, 47.754098 ], [ 12.128906, 47.635784 ], [ 11.777344, 47.635784 ], [ 11.777344, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.398349 ], [ 10.371094, 47.398349 ], [ 10.371094, 47.279229 ], [ 10.195312, 47.279229 ], [ 10.195312, 47.398349 ], [ 10.019531, 47.398349 ], [ 10.019531, 47.517201 ], [ 9.316406, 47.517201 ], [ 9.316406, 47.635784 ], [ 8.964844, 47.635784 ], [ 8.964844, 47.754098 ], [ 8.613281, 47.754098 ], [ 8.613281, 47.872144 ], [ 8.437500, 47.872144 ], [ 8.437500, 47.754098 ], [ 8.261719, 47.754098 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.382812, 47.989922 ], [ 7.558594, 47.989922 ], [ 7.558594, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 48.690960 ], [ 7.910156, 48.690960 ], [ 7.910156, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 49.037868 ], [ 7.207031, 49.037868 ], [ 7.207031, 49.152970 ], [ 6.503906, 49.152970 ], [ 6.503906, 49.267805 ], [ 6.328125, 49.267805 ], [ 6.328125, 49.382373 ], [ 6.152344, 49.382373 ], [ 6.152344, 49.724479 ], [ 6.328125, 49.724479 ], [ 6.328125, 49.951220 ], [ 6.152344, 49.951220 ], [ 6.152344, 50.064192 ], [ 5.976562, 50.064192 ], [ 5.976562, 50.513427 ], [ 6.152344, 50.513427 ], [ 6.152344, 51.289406 ], [ 5.976562, 51.289406 ], [ 5.976562, 51.835778 ], [ 6.503906, 51.835778 ], [ 6.503906, 51.944265 ], [ 6.679688, 51.944265 ], [ 6.679688, 52.160455 ], [ 6.855469, 52.160455 ], [ 6.855469, 52.696361 ], [ 7.031250, 52.696361 ], [ 7.031250, 53.225768 ], [ 6.855469, 53.225768 ], [ 6.855469, 53.540307 ], [ 7.031250, 53.540307 ], [ 7.031250, 53.644638 ], [ 7.558594, 53.644638 ], [ 7.558594, 53.748711 ], [ 7.910156, 53.748711 ], [ 7.910156, 53.644638 ], [ 8.085938, 53.644638 ], [ 8.085938, 53.540307 ], [ 8.261719, 53.540307 ], [ 8.261719, 53.644638 ], [ 8.437500, 53.644638 ], [ 8.437500, 53.852527 ], [ 8.613281, 53.852527 ], [ 8.613281, 53.956086 ], [ 8.789062, 53.956086 ], [ 8.789062, 54.162434 ], [ 8.613281, 54.162434 ], [ 8.613281, 54.977614 ], [ 8.789062, 54.977614 ], [ 8.789062, 54.876607 ], [ 9.667969, 54.876607 ], [ 9.667969, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.572062 ], [ 10.195312, 54.572062 ], [ 10.195312, 54.470038 ], [ 10.546875, 54.470038 ], [ 10.546875, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.250000, 54.059388 ], [ 11.250000, 54.162434 ], [ 11.777344, 54.162434 ], [ 11.777344, 54.265224 ], [ 12.128906, 54.265224 ], [ 12.128906, 54.367759 ], [ 12.832031, 54.367759 ], [ 12.832031, 54.265224 ], [ 13.183594, 54.265224 ], [ 13.183594, 54.162434 ], [ 13.535156, 54.162434 ], [ 13.535156, 54.059388 ], [ 13.710938, 54.059388 ], [ 13.710938, 53.956086 ], [ 13.886719, 53.956086 ], [ 13.886719, 53.852527 ], [ 14.062500, 53.852527 ], [ 14.062500, 53.540307 ], [ 14.238281, 53.540307 ], [ 14.238281, 53.120405 ], [ 14.062500, 53.120405 ], [ 14.062500, 52.908902 ], [ 14.238281, 52.908902 ], [ 14.238281, 52.696361 ], [ 14.414062, 52.696361 ], [ 14.414062, 52.375599 ], [ 14.589844, 52.375599 ], [ 14.589844, 51.618017 ], [ 14.765625, 51.618017 ], [ 14.765625, 51.289406 ], [ 14.941406, 51.289406 ], [ 14.941406, 51.179343 ], [ 14.765625, 51.179343 ], [ 14.765625, 51.069017 ], [ 14.062500, 51.069017 ], [ 14.062500, 50.958427 ], [ 13.886719, 50.958427 ], [ 13.886719, 50.847573 ], [ 13.535156, 50.847573 ], [ 13.535156, 50.736455 ], [ 13.183594, 50.736455 ], [ 13.183594, 50.625073 ], [ 13.007812, 50.625073 ], [ 13.007812, 50.513427 ], [ 12.832031, 50.513427 ], [ 12.832031, 50.401515 ], [ 12.480469, 50.401515 ], [ 12.480469, 50.289339 ], [ 12.128906, 50.289339 ], [ 12.128906, 50.176898 ], [ 12.304688, 50.176898 ], [ 12.304688, 49.837982 ], [ 12.480469, 49.837982 ], [ 12.480469, 49.496675 ], [ 12.832031, 49.496675 ], [ 12.832031, 49.382373 ], [ 13.007812, 49.382373 ], [ 13.007812, 49.267805 ], [ 13.183594, 49.267805 ], [ 13.183594, 49.152970 ], [ 13.359375, 49.152970 ], [ 13.359375, 48.922499 ], [ 13.535156, 48.922499 ], [ 13.535156, 48.806863 ], [ 13.359375, 48.806863 ], [ 13.359375, 48.574790 ], [ 13.183594, 48.574790 ], [ 13.183594, 48.341646 ], [ 12.832031, 48.341646 ], [ 12.832031, 47.989922 ], [ 13.007812, 47.989922 ], [ 13.007812, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 47.635784 ], [ 12.480469, 47.635784 ], [ 12.480469, 47.754098 ], [ 11.953125, 47.754098 ], [ 11.953125, 47.635784 ], [ 10.546875, 47.635784 ], [ 10.546875, 47.517201 ], [ 10.371094, 47.517201 ], [ 10.371094, 47.398349 ], [ 10.195312, 47.398349 ], [ 10.195312, 47.517201 ], [ 9.843750, 47.517201 ], [ 9.843750, 47.635784 ], [ 9.140625, 47.635784 ], [ 9.140625, 47.754098 ], [ 8.613281, 47.754098 ], [ 8.613281, 47.872144 ], [ 8.437500, 47.872144 ], [ 8.437500, 47.754098 ], [ 8.261719, 47.754098 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.382812, 47.989922 ], [ 7.558594, 47.989922 ], [ 7.558594, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 48.690960 ], [ 7.910156, 48.690960 ], [ 7.910156, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 49.037868 ], [ 7.558594, 49.037868 ], [ 7.558594, 49.152970 ], [ 6.855469, 49.152970 ], [ 6.855469, 49.267805 ], [ 6.328125, 49.267805 ], [ 6.328125, 49.382373 ], [ 6.152344, 49.382373 ], [ 6.152344, 50.064192 ], [ 5.976562, 50.064192 ], [ 5.976562, 50.513427 ], [ 6.152344, 50.513427 ], [ 6.152344, 51.399206 ], [ 5.976562, 51.399206 ], [ 5.976562, 51.944265 ], [ 6.503906, 51.944265 ], [ 6.503906, 52.052490 ], [ 6.679688, 52.052490 ], [ 6.679688, 52.482780 ], [ 6.855469, 52.482780 ], [ 6.855469, 52.908902 ], [ 7.031250, 52.908902 ], [ 7.031250, 53.330873 ], [ 6.855469, 53.330873 ], [ 6.855469, 53.644638 ], [ 7.031250, 53.644638 ], [ 7.031250, 53.748711 ], [ 7.910156, 53.748711 ], [ 7.910156, 53.644638 ], [ 8.085938, 53.644638 ], [ 8.085938, 53.540307 ], [ 8.261719, 53.540307 ], [ 8.261719, 53.644638 ], [ 8.437500, 53.644638 ], [ 8.437500, 53.852527 ], [ 8.613281, 53.852527 ], [ 8.613281, 53.956086 ], [ 8.789062, 53.956086 ], [ 8.789062, 54.162434 ], [ 8.613281, 54.162434 ], [ 8.613281, 54.367759 ], [ 8.437500, 54.367759 ], [ 8.437500, 54.977614 ], [ 8.613281, 54.977614 ], [ 8.613281, 54.876607 ], [ 9.492188, 54.876607 ], [ 9.492188, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.855469, 47.398349 ], [ 7.207031, 47.398349 ], [ 7.207031, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.261719, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.872144 ], [ 8.613281, 47.872144 ], [ 8.613281, 47.754098 ], [ 8.964844, 47.754098 ], [ 8.964844, 47.635784 ], [ 9.316406, 47.635784 ], [ 9.316406, 47.517201 ], [ 9.667969, 47.517201 ], [ 9.667969, 47.279229 ], [ 9.492188, 47.279229 ], [ 9.492188, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 46.920255 ], [ 10.371094, 46.920255 ], [ 10.371094, 46.437857 ], [ 10.195312, 46.437857 ], [ 10.195312, 46.316584 ], [ 9.316406, 46.316584 ], [ 9.316406, 46.437857 ], [ 9.140625, 46.437857 ], [ 9.140625, 46.195042 ], [ 8.964844, 46.195042 ], [ 8.964844, 46.073231 ], [ 8.789062, 46.073231 ], [ 8.789062, 45.951150 ], [ 8.437500, 45.951150 ], [ 8.437500, 46.073231 ], [ 8.085938, 46.073231 ], [ 8.085938, 45.951150 ], [ 7.910156, 45.951150 ], [ 7.910156, 45.828799 ], [ 6.855469, 45.828799 ], [ 6.855469, 46.073231 ], [ 6.679688, 46.073231 ], [ 6.679688, 46.316584 ], [ 6.503906, 46.316584 ], [ 6.503906, 46.437857 ], [ 6.328125, 46.437857 ], [ 6.328125, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.679594 ], [ 6.152344, 46.679594 ], [ 6.152344, 46.800059 ], [ 6.328125, 46.800059 ], [ 6.328125, 46.920255 ], [ 6.503906, 46.920255 ], [ 6.503906, 47.040182 ], [ 6.679688, 47.040182 ], [ 6.679688, 47.159840 ], [ 6.855469, 47.159840 ], [ 6.855469, 47.398349 ] ] ], [ [ [ 6.855469, 47.398349 ], [ 6.679688, 47.398349 ], [ 6.679688, 47.517201 ], [ 6.855469, 47.517201 ], [ 6.855469, 47.398349 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.613281, 47.872144 ], [ 8.613281, 47.754098 ], [ 9.140625, 47.754098 ], [ 9.140625, 47.635784 ], [ 9.492188, 47.635784 ], [ 9.492188, 47.279229 ], [ 9.316406, 47.279229 ], [ 9.316406, 47.040182 ], [ 9.667969, 47.040182 ], [ 9.667969, 46.920255 ], [ 10.371094, 46.920255 ], [ 10.371094, 46.679594 ], [ 10.195312, 46.679594 ], [ 10.195312, 46.437857 ], [ 10.019531, 46.437857 ], [ 10.019531, 46.316584 ], [ 9.492188, 46.316584 ], [ 9.492188, 46.437857 ], [ 9.140625, 46.437857 ], [ 9.140625, 46.316584 ], [ 8.964844, 46.316584 ], [ 8.964844, 46.073231 ], [ 8.085938, 46.073231 ], [ 8.085938, 45.951150 ], [ 7.910156, 45.951150 ], [ 7.910156, 45.828799 ], [ 7.031250, 45.828799 ], [ 7.031250, 45.951150 ], [ 6.679688, 45.951150 ], [ 6.679688, 46.073231 ], [ 6.503906, 46.073231 ], [ 6.503906, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.800059 ], [ 6.152344, 46.800059 ], [ 6.152344, 46.920255 ], [ 6.328125, 46.920255 ], [ 6.328125, 47.159840 ], [ 6.503906, 47.159840 ], [ 6.503906, 47.279229 ], [ 6.679688, 47.279229 ], [ 6.679688, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.261719, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.872144 ], [ 8.613281, 47.872144 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.117188, 50.958427 ], [ 15.117188, 50.847573 ], [ 15.292969, 50.847573 ], [ 15.292969, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 16.523438, 50.289339 ], [ 16.523438, 50.176898 ], [ 16.699219, 50.176898 ], [ 16.699219, 50.289339 ], [ 16.875000, 50.289339 ], [ 16.875000, 50.513427 ], [ 17.050781, 50.513427 ], [ 17.050781, 50.401515 ], [ 17.578125, 50.401515 ], [ 17.578125, 50.064192 ], [ 17.929688, 50.064192 ], [ 17.929688, 49.951220 ], [ 18.457031, 49.951220 ], [ 18.457031, 49.837982 ], [ 18.632812, 49.837982 ], [ 18.632812, 49.610710 ], [ 18.808594, 49.610710 ], [ 18.808594, 49.496675 ], [ 18.632812, 49.496675 ], [ 18.632812, 49.382373 ], [ 18.457031, 49.382373 ], [ 18.457031, 49.267805 ], [ 18.105469, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 49.037868 ], [ 17.929688, 48.806863 ], [ 17.050781, 48.806863 ], [ 17.050781, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 48.574790 ], [ 16.699219, 48.574790 ], [ 16.699219, 48.690960 ], [ 16.523438, 48.690960 ], [ 16.523438, 48.806863 ], [ 16.347656, 48.806863 ], [ 16.347656, 48.690960 ], [ 15.820312, 48.690960 ], [ 15.820312, 48.806863 ], [ 15.468750, 48.806863 ], [ 15.468750, 48.922499 ], [ 14.941406, 48.922499 ], [ 14.941406, 48.806863 ], [ 14.765625, 48.806863 ], [ 14.765625, 48.690960 ], [ 14.589844, 48.690960 ], [ 14.589844, 48.574790 ], [ 14.238281, 48.574790 ], [ 14.238281, 48.690960 ], [ 13.886719, 48.690960 ], [ 13.886719, 48.806863 ], [ 13.535156, 48.806863 ], [ 13.535156, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 49.037868 ], [ 13.183594, 49.037868 ], [ 13.183594, 49.152970 ], [ 13.007812, 49.152970 ], [ 13.007812, 49.267805 ], [ 12.832031, 49.267805 ], [ 12.832031, 49.382373 ], [ 12.480469, 49.382373 ], [ 12.480469, 50.064192 ], [ 12.304688, 50.064192 ], [ 12.304688, 50.289339 ], [ 12.656250, 50.289339 ], [ 12.656250, 50.401515 ], [ 13.007812, 50.401515 ], [ 13.007812, 50.513427 ], [ 13.183594, 50.513427 ], [ 13.183594, 50.625073 ], [ 13.359375, 50.625073 ], [ 13.359375, 50.736455 ], [ 13.710938, 50.736455 ], [ 13.710938, 50.847573 ], [ 14.062500, 50.847573 ], [ 14.062500, 50.958427 ], [ 15.117188, 50.958427 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.941406, 51.179343 ], [ 14.941406, 51.069017 ], [ 15.117188, 51.069017 ], [ 15.117188, 50.958427 ], [ 15.292969, 50.958427 ], [ 15.292969, 50.847573 ], [ 15.644531, 50.847573 ], [ 15.644531, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.401515 ], [ 16.523438, 50.401515 ], [ 16.523438, 50.289339 ], [ 16.699219, 50.289339 ], [ 16.699219, 50.513427 ], [ 16.875000, 50.513427 ], [ 16.875000, 50.401515 ], [ 17.402344, 50.401515 ], [ 17.402344, 50.176898 ], [ 17.578125, 50.176898 ], [ 17.578125, 50.064192 ], [ 18.281250, 50.064192 ], [ 18.281250, 49.951220 ], [ 18.457031, 49.951220 ], [ 18.457031, 49.724479 ], [ 18.632812, 49.724479 ], [ 18.632812, 49.496675 ], [ 18.457031, 49.496675 ], [ 18.457031, 49.382373 ], [ 18.105469, 49.382373 ], [ 18.105469, 49.037868 ], [ 17.753906, 49.037868 ], [ 17.753906, 48.806863 ], [ 16.875000, 48.806863 ], [ 16.875000, 48.690960 ], [ 16.523438, 48.690960 ], [ 16.523438, 48.806863 ], [ 15.644531, 48.806863 ], [ 15.644531, 48.922499 ], [ 15.292969, 48.922499 ], [ 15.292969, 49.037868 ], [ 14.765625, 49.037868 ], [ 14.765625, 48.922499 ], [ 14.589844, 48.922499 ], [ 14.589844, 48.806863 ], [ 14.414062, 48.806863 ], [ 14.414062, 48.574790 ], [ 14.062500, 48.574790 ], [ 14.062500, 48.690960 ], [ 13.710938, 48.690960 ], [ 13.710938, 48.806863 ], [ 13.535156, 48.806863 ], [ 13.535156, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 49.152970 ], [ 13.183594, 49.152970 ], [ 13.183594, 49.267805 ], [ 13.007812, 49.267805 ], [ 13.007812, 49.382373 ], [ 12.832031, 49.382373 ], [ 12.832031, 49.496675 ], [ 12.480469, 49.496675 ], [ 12.480469, 49.837982 ], [ 12.304688, 49.837982 ], [ 12.304688, 50.176898 ], [ 12.128906, 50.176898 ], [ 12.128906, 50.289339 ], [ 12.480469, 50.289339 ], [ 12.480469, 50.401515 ], [ 12.832031, 50.401515 ], [ 12.832031, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.625073 ], [ 13.183594, 50.625073 ], [ 13.183594, 50.736455 ], [ 13.535156, 50.736455 ], [ 13.535156, 50.847573 ], [ 13.886719, 50.847573 ], [ 13.886719, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 51.069017 ], [ 14.765625, 51.069017 ], [ 14.765625, 51.179343 ], [ 14.941406, 51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.753906, 54.876607 ], [ 17.753906, 54.775346 ], [ 18.281250, 54.775346 ], [ 18.281250, 54.673831 ], [ 18.632812, 54.673831 ], [ 18.632812, 54.470038 ], [ 19.863281, 54.470038 ], [ 19.863281, 54.367759 ], [ 20.566406, 54.367759 ], [ 20.566406, 54.265224 ], [ 21.972656, 54.265224 ], [ 21.972656, 54.367759 ], [ 22.851562, 54.367759 ], [ 22.851562, 54.265224 ], [ 23.203125, 54.265224 ], [ 23.203125, 54.162434 ], [ 23.378906, 54.162434 ], [ 23.378906, 53.956086 ], [ 23.554688, 53.956086 ], [ 23.554688, 53.225768 ], [ 23.730469, 53.225768 ], [ 23.730469, 52.589701 ], [ 23.378906, 52.589701 ], [ 23.378906, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 52.375599 ], [ 23.378906, 52.375599 ], [ 23.378906, 52.160455 ], [ 23.554688, 52.160455 ], [ 23.554688, 51.399206 ], [ 23.730469, 51.399206 ], [ 23.730469, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.847573 ], [ 24.082031, 50.847573 ], [ 24.082031, 50.513427 ], [ 23.906250, 50.513427 ], [ 23.906250, 50.401515 ], [ 23.730469, 50.401515 ], [ 23.730469, 50.289339 ], [ 23.378906, 50.289339 ], [ 23.378906, 50.176898 ], [ 23.203125, 50.176898 ], [ 23.203125, 49.951220 ], [ 23.027344, 49.951220 ], [ 23.027344, 49.837982 ], [ 22.851562, 49.837982 ], [ 22.851562, 49.724479 ], [ 22.675781, 49.724479 ], [ 22.675781, 49.496675 ], [ 22.500000, 49.496675 ], [ 22.500000, 49.382373 ], [ 22.675781, 49.382373 ], [ 22.675781, 49.152970 ], [ 22.851562, 49.152970 ], [ 22.851562, 49.037868 ], [ 22.324219, 49.037868 ], [ 22.324219, 49.152970 ], [ 22.148438, 49.152970 ], [ 22.148438, 49.267805 ], [ 21.796875, 49.267805 ], [ 21.796875, 49.382373 ], [ 21.621094, 49.382373 ], [ 21.621094, 49.496675 ], [ 21.445312, 49.496675 ], [ 21.445312, 49.382373 ], [ 20.214844, 49.382373 ], [ 20.214844, 49.267805 ], [ 19.687500, 49.267805 ], [ 19.687500, 49.382373 ], [ 19.511719, 49.382373 ], [ 19.511719, 49.496675 ], [ 19.160156, 49.496675 ], [ 19.160156, 49.382373 ], [ 18.808594, 49.382373 ], [ 18.808594, 49.610710 ], [ 18.632812, 49.610710 ], [ 18.632812, 49.837982 ], [ 18.457031, 49.837982 ], [ 18.457031, 49.951220 ], [ 17.929688, 49.951220 ], [ 17.929688, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.401515 ], [ 17.050781, 50.401515 ], [ 17.050781, 50.513427 ], [ 16.875000, 50.513427 ], [ 16.875000, 50.289339 ], [ 16.699219, 50.289339 ], [ 16.699219, 50.176898 ], [ 16.523438, 50.176898 ], [ 16.523438, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 15.292969, 50.736455 ], [ 15.292969, 50.847573 ], [ 15.117188, 50.847573 ], [ 15.117188, 50.958427 ], [ 14.941406, 50.958427 ], [ 14.941406, 51.179343 ], [ 14.765625, 51.179343 ], [ 14.765625, 51.508742 ], [ 14.589844, 51.508742 ], [ 14.589844, 51.835778 ], [ 14.765625, 51.835778 ], [ 14.765625, 52.160455 ], [ 14.589844, 52.160455 ], [ 14.589844, 52.375599 ], [ 14.414062, 52.375599 ], [ 14.414062, 52.696361 ], [ 14.238281, 52.696361 ], [ 14.238281, 52.908902 ], [ 14.062500, 52.908902 ], [ 14.062500, 53.014783 ], [ 14.238281, 53.014783 ], [ 14.238281, 53.120405 ], [ 14.414062, 53.120405 ], [ 14.414062, 53.330873 ], [ 14.238281, 53.330873 ], [ 14.238281, 53.540307 ], [ 14.062500, 53.540307 ], [ 14.062500, 53.748711 ], [ 14.238281, 53.748711 ], [ 14.238281, 53.852527 ], [ 14.589844, 53.852527 ], [ 14.589844, 53.956086 ], [ 14.765625, 53.956086 ], [ 14.765625, 54.059388 ], [ 15.117188, 54.059388 ], [ 15.117188, 54.162434 ], [ 15.468750, 54.162434 ], [ 15.468750, 54.265224 ], [ 15.820312, 54.265224 ], [ 15.820312, 54.367759 ], [ 16.171875, 54.367759 ], [ 16.171875, 54.470038 ], [ 16.523438, 54.470038 ], [ 16.523438, 54.572062 ], [ 16.875000, 54.572062 ], [ 16.875000, 54.673831 ], [ 17.226562, 54.673831 ], [ 17.226562, 54.775346 ], [ 17.578125, 54.775346 ], [ 17.578125, 54.876607 ], [ 17.753906, 54.876607 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.929688, 54.876607 ], [ 17.929688, 54.775346 ], [ 18.457031, 54.775346 ], [ 18.457031, 54.572062 ], [ 18.632812, 54.572062 ], [ 18.632812, 54.470038 ], [ 20.039062, 54.470038 ], [ 20.039062, 54.367759 ], [ 22.851562, 54.367759 ], [ 22.851562, 54.265224 ], [ 23.203125, 54.265224 ], [ 23.203125, 54.059388 ], [ 23.378906, 54.059388 ], [ 23.378906, 53.435719 ], [ 23.554688, 53.435719 ], [ 23.554688, 53.225768 ], [ 23.730469, 53.225768 ], [ 23.730469, 52.696361 ], [ 23.554688, 52.696361 ], [ 23.554688, 52.589701 ], [ 23.027344, 52.589701 ], [ 23.027344, 52.375599 ], [ 23.203125, 52.375599 ], [ 23.203125, 52.160455 ], [ 23.378906, 52.160455 ], [ 23.378906, 51.399206 ], [ 23.554688, 51.399206 ], [ 23.554688, 51.179343 ], [ 23.730469, 51.179343 ], [ 23.730469, 50.847573 ], [ 23.906250, 50.847573 ], [ 23.906250, 50.513427 ], [ 23.730469, 50.513427 ], [ 23.730469, 50.401515 ], [ 23.378906, 50.401515 ], [ 23.378906, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 50.064192 ], [ 23.027344, 50.064192 ], [ 23.027344, 49.951220 ], [ 22.851562, 49.951220 ], [ 22.851562, 49.724479 ], [ 22.675781, 49.724479 ], [ 22.675781, 49.496675 ], [ 22.500000, 49.496675 ], [ 22.500000, 49.267805 ], [ 22.675781, 49.267805 ], [ 22.675781, 49.037868 ], [ 22.500000, 49.037868 ], [ 22.500000, 49.152970 ], [ 22.148438, 49.152970 ], [ 22.148438, 49.267805 ], [ 21.796875, 49.267805 ], [ 21.796875, 49.382373 ], [ 21.445312, 49.382373 ], [ 21.445312, 49.496675 ], [ 21.269531, 49.496675 ], [ 21.269531, 49.382373 ], [ 20.039062, 49.382373 ], [ 20.039062, 49.267805 ], [ 19.511719, 49.267805 ], [ 19.511719, 49.382373 ], [ 19.335938, 49.382373 ], [ 19.335938, 49.496675 ], [ 18.632812, 49.496675 ], [ 18.632812, 49.724479 ], [ 18.457031, 49.724479 ], [ 18.457031, 49.951220 ], [ 18.281250, 49.951220 ], [ 18.281250, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.176898 ], [ 17.402344, 50.176898 ], [ 17.402344, 50.401515 ], [ 16.875000, 50.401515 ], [ 16.875000, 50.513427 ], [ 16.699219, 50.513427 ], [ 16.699219, 50.289339 ], [ 16.523438, 50.289339 ], [ 16.523438, 50.401515 ], [ 16.171875, 50.401515 ], [ 16.171875, 50.736455 ], [ 15.644531, 50.736455 ], [ 15.644531, 50.847573 ], [ 15.292969, 50.847573 ], [ 15.292969, 50.958427 ], [ 15.117188, 50.958427 ], [ 15.117188, 51.069017 ], [ 14.941406, 51.069017 ], [ 14.941406, 51.289406 ], [ 14.765625, 51.289406 ], [ 14.765625, 51.618017 ], [ 14.589844, 51.618017 ], [ 14.589844, 52.375599 ], [ 14.414062, 52.375599 ], [ 14.414062, 52.696361 ], [ 14.238281, 52.696361 ], [ 14.238281, 52.908902 ], [ 14.062500, 52.908902 ], [ 14.062500, 53.120405 ], [ 14.238281, 53.120405 ], [ 14.238281, 53.540307 ], [ 14.062500, 53.540307 ], [ 14.062500, 53.852527 ], [ 14.414062, 53.852527 ], [ 14.414062, 53.956086 ], [ 14.765625, 53.956086 ], [ 14.765625, 54.059388 ], [ 14.941406, 54.059388 ], [ 14.941406, 54.162434 ], [ 15.292969, 54.162434 ], [ 15.292969, 54.265224 ], [ 15.644531, 54.265224 ], [ 15.644531, 54.367759 ], [ 15.996094, 54.367759 ], [ 15.996094, 54.470038 ], [ 16.347656, 54.470038 ], [ 16.347656, 54.572062 ], [ 16.699219, 54.572062 ], [ 16.699219, 54.673831 ], [ 17.050781, 54.673831 ], [ 17.050781, 54.775346 ], [ 17.402344, 54.775346 ], [ 17.402344, 54.876607 ], [ 17.929688, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 48.922499 ], [ 15.468750, 48.806863 ], [ 15.820312, 48.806863 ], [ 15.820312, 48.690960 ], [ 16.347656, 48.690960 ], [ 16.347656, 48.806863 ], [ 16.523438, 48.806863 ], [ 16.523438, 48.690960 ], [ 16.699219, 48.690960 ], [ 16.699219, 48.574790 ], [ 16.875000, 48.574790 ], [ 16.875000, 48.224673 ], [ 17.050781, 48.224673 ], [ 17.050781, 47.872144 ], [ 16.875000, 47.872144 ], [ 16.875000, 47.754098 ], [ 16.347656, 47.754098 ], [ 16.347656, 47.635784 ], [ 16.523438, 47.635784 ], [ 16.523438, 47.279229 ], [ 16.347656, 47.279229 ], [ 16.347656, 46.920255 ], [ 16.171875, 46.920255 ], [ 16.171875, 46.679594 ], [ 15.117188, 46.679594 ], [ 15.117188, 46.558860 ], [ 14.765625, 46.558860 ], [ 14.765625, 46.437857 ], [ 14.062500, 46.437857 ], [ 14.062500, 46.558860 ], [ 13.359375, 46.558860 ], [ 13.359375, 46.679594 ], [ 12.656250, 46.679594 ], [ 12.656250, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 46.920255 ], [ 12.128906, 46.920255 ], [ 12.128906, 47.159840 ], [ 11.953125, 47.159840 ], [ 11.953125, 47.040182 ], [ 11.601562, 47.040182 ], [ 11.601562, 46.920255 ], [ 11.250000, 46.920255 ], [ 11.250000, 46.800059 ], [ 10.546875, 46.800059 ], [ 10.546875, 46.920255 ], [ 9.843750, 46.920255 ], [ 9.843750, 47.040182 ], [ 9.492188, 47.040182 ], [ 9.492188, 47.279229 ], [ 9.667969, 47.279229 ], [ 9.667969, 47.517201 ], [ 10.019531, 47.517201 ], [ 10.019531, 47.398349 ], [ 10.195312, 47.398349 ], [ 10.195312, 47.279229 ], [ 10.371094, 47.279229 ], [ 10.371094, 47.398349 ], [ 10.546875, 47.398349 ], [ 10.546875, 47.517201 ], [ 11.777344, 47.517201 ], [ 11.777344, 47.635784 ], [ 12.128906, 47.635784 ], [ 12.128906, 47.754098 ], [ 12.304688, 47.754098 ], [ 12.304688, 47.635784 ], [ 12.656250, 47.635784 ], [ 12.656250, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 47.989922 ], [ 12.832031, 47.989922 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.341646 ], [ 13.183594, 48.574790 ], [ 13.359375, 48.574790 ], [ 13.359375, 48.806863 ], [ 13.886719, 48.806863 ], [ 13.886719, 48.690960 ], [ 14.238281, 48.690960 ], [ 14.238281, 48.574790 ], [ 14.589844, 48.574790 ], [ 14.589844, 48.690960 ], [ 14.765625, 48.690960 ], [ 14.765625, 48.806863 ], [ 14.941406, 48.806863 ], [ 14.941406, 48.922499 ], [ 15.468750, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 49.037868 ], [ 15.292969, 48.922499 ], [ 15.644531, 48.922499 ], [ 15.644531, 48.806863 ], [ 16.523438, 48.806863 ], [ 16.523438, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 47.754098 ], [ 16.171875, 47.754098 ], [ 16.171875, 47.635784 ], [ 16.347656, 47.635784 ], [ 16.347656, 47.517201 ], [ 16.523438, 47.517201 ], [ 16.523438, 47.279229 ], [ 16.347656, 47.279229 ], [ 16.347656, 47.040182 ], [ 16.171875, 47.040182 ], [ 16.171875, 46.800059 ], [ 15.644531, 46.800059 ], [ 15.644531, 46.679594 ], [ 15.117188, 46.679594 ], [ 15.117188, 46.558860 ], [ 14.765625, 46.558860 ], [ 14.765625, 46.437857 ], [ 14.062500, 46.437857 ], [ 14.062500, 46.558860 ], [ 13.183594, 46.558860 ], [ 13.183594, 46.679594 ], [ 12.480469, 46.679594 ], [ 12.480469, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 46.920255 ], [ 12.128906, 46.920255 ], [ 12.128906, 47.159840 ], [ 11.777344, 47.159840 ], [ 11.777344, 47.040182 ], [ 11.074219, 47.040182 ], [ 11.074219, 46.920255 ], [ 10.898438, 46.920255 ], [ 10.898438, 46.800059 ], [ 10.546875, 46.800059 ], [ 10.546875, 46.920255 ], [ 9.667969, 46.920255 ], [ 9.667969, 47.040182 ], [ 9.316406, 47.040182 ], [ 9.316406, 47.279229 ], [ 9.492188, 47.279229 ], [ 9.492188, 47.635784 ], [ 9.843750, 47.635784 ], [ 9.843750, 47.517201 ], [ 10.195312, 47.517201 ], [ 10.195312, 47.398349 ], [ 10.371094, 47.398349 ], [ 10.371094, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.635784 ], [ 11.953125, 47.635784 ], [ 11.953125, 47.754098 ], [ 12.480469, 47.754098 ], [ 12.480469, 47.635784 ], [ 12.656250, 47.635784 ], [ 12.656250, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 47.989922 ], [ 12.832031, 47.989922 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.341646 ], [ 13.183594, 48.574790 ], [ 13.359375, 48.574790 ], [ 13.359375, 48.806863 ], [ 13.710938, 48.806863 ], [ 13.710938, 48.690960 ], [ 14.062500, 48.690960 ], [ 14.062500, 48.574790 ], [ 14.414062, 48.574790 ], [ 14.414062, 48.806863 ], [ 14.589844, 48.806863 ], [ 14.589844, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 49.037868 ], [ 15.292969, 49.037868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.800059 ], [ 16.347656, 46.679594 ], [ 16.523438, 46.679594 ], [ 16.523438, 46.437857 ], [ 16.347656, 46.437857 ], [ 16.347656, 46.316584 ], [ 15.996094, 46.316584 ], [ 15.996094, 46.195042 ], [ 15.820312, 46.195042 ], [ 15.820312, 45.951150 ], [ 15.644531, 45.951150 ], [ 15.644531, 45.706179 ], [ 15.292969, 45.706179 ], [ 15.292969, 45.460131 ], [ 13.886719, 45.460131 ], [ 13.886719, 45.828799 ], [ 13.710938, 45.828799 ], [ 13.710938, 46.316584 ], [ 13.886719, 46.316584 ], [ 13.886719, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.437857 ], [ 14.765625, 46.437857 ], [ 14.765625, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.679594 ], [ 16.171875, 46.679594 ], [ 16.171875, 46.800059 ], [ 16.347656, 46.800059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.920255 ], [ 16.347656, 46.679594 ], [ 16.523438, 46.679594 ], [ 16.523438, 46.558860 ], [ 16.347656, 46.558860 ], [ 16.347656, 46.437857 ], [ 15.996094, 46.437857 ], [ 15.996094, 46.316584 ], [ 15.644531, 46.316584 ], [ 15.644531, 45.828799 ], [ 15.292969, 45.828799 ], [ 15.292969, 45.460131 ], [ 14.941406, 45.460131 ], [ 14.941406, 45.583290 ], [ 13.886719, 45.583290 ], [ 13.886719, 45.706179 ], [ 13.710938, 45.706179 ], [ 13.710938, 45.951150 ], [ 13.535156, 45.951150 ], [ 13.535156, 46.316584 ], [ 13.710938, 46.316584 ], [ 13.710938, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.437857 ], [ 14.765625, 46.437857 ], [ 14.765625, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.679594 ], [ 15.644531, 46.679594 ], [ 15.644531, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 46.920255 ], [ 16.347656, 46.920255 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.713956 ], [ 9.667969, 40.713956 ], [ 9.667969, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 40.313043 ], [ 8.437500, 40.313043 ], [ 8.437500, 40.446947 ], [ 8.261719, 40.446947 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.261719, 40.979898 ], [ 8.261719, 40.847060 ], [ 8.964844, 40.847060 ], [ 8.964844, 41.112469 ], [ 9.316406, 41.112469 ] ] ], [ [ [ 12.128906, 47.159840 ], [ 12.128906, 46.920255 ], [ 12.304688, 46.920255 ], [ 12.304688, 46.800059 ], [ 12.656250, 46.800059 ], [ 12.656250, 46.679594 ], [ 13.359375, 46.679594 ], [ 13.359375, 46.558860 ], [ 13.886719, 46.558860 ], [ 13.886719, 46.316584 ], [ 13.710938, 46.316584 ], [ 13.710938, 45.828799 ], [ 13.886719, 45.828799 ], [ 13.886719, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 45.706179 ], [ 13.183594, 45.706179 ], [ 13.183594, 45.583290 ], [ 12.832031, 45.583290 ], [ 12.832031, 45.460131 ], [ 12.480469, 45.460131 ], [ 12.480469, 45.336702 ], [ 12.304688, 45.336702 ], [ 12.304688, 44.465151 ], [ 12.480469, 44.465151 ], [ 12.480469, 44.213710 ], [ 12.656250, 44.213710 ], [ 12.656250, 43.961191 ], [ 12.832031, 43.961191 ], [ 12.832031, 43.834527 ], [ 13.183594, 43.834527 ], [ 13.183594, 43.707594 ], [ 13.359375, 43.707594 ], [ 13.359375, 43.580391 ], [ 13.535156, 43.580391 ], [ 13.535156, 43.452919 ], [ 13.710938, 43.452919 ], [ 13.710938, 43.197167 ], [ 13.886719, 43.197167 ], [ 13.886719, 42.940339 ], [ 14.062500, 42.940339 ], [ 14.062500, 42.682435 ], [ 14.238281, 42.682435 ], [ 14.238281, 42.553080 ], [ 14.414062, 42.553080 ], [ 14.414062, 42.423457 ], [ 14.589844, 42.423457 ], [ 14.589844, 42.163403 ], [ 14.765625, 42.163403 ], [ 14.765625, 42.032974 ], [ 14.941406, 42.032974 ], [ 14.941406, 41.902277 ], [ 15.996094, 41.902277 ], [ 15.996094, 41.771312 ], [ 16.171875, 41.771312 ], [ 16.171875, 41.640078 ], [ 15.996094, 41.640078 ], [ 15.996094, 41.376809 ], [ 16.347656, 41.376809 ], [ 16.347656, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.753906, 40.713956 ], [ 17.753906, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 17.050781, 40.313043 ], [ 17.050781, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 40.313043 ], [ 14.941406, 40.313043 ], [ 14.941406, 40.446947 ], [ 14.765625, 40.446947 ], [ 14.765625, 40.580585 ], [ 14.414062, 40.580585 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 41.112469 ], [ 13.710938, 41.112469 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.376809 ], [ 12.304688, 41.376809 ], [ 12.304688, 41.508577 ], [ 12.128906, 41.508577 ], [ 12.128906, 41.640078 ], [ 11.953125, 41.640078 ], [ 11.953125, 41.771312 ], [ 11.777344, 41.771312 ], [ 11.777344, 41.902277 ], [ 11.601562, 41.902277 ], [ 11.601562, 42.032974 ], [ 11.425781, 42.032974 ], [ 11.425781, 42.163403 ], [ 11.250000, 42.163403 ], [ 11.250000, 42.293564 ], [ 11.074219, 42.293564 ], [ 11.074219, 42.423457 ], [ 10.898438, 42.423457 ], [ 10.898438, 42.682435 ], [ 10.722656, 42.682435 ], [ 10.722656, 42.811522 ], [ 10.546875, 42.811522 ], [ 10.546875, 43.197167 ], [ 10.371094, 43.197167 ], [ 10.371094, 43.707594 ], [ 10.195312, 43.707594 ], [ 10.195312, 43.961191 ], [ 9.843750, 43.961191 ], [ 9.843750, 44.087585 ], [ 9.316406, 44.087585 ], [ 9.316406, 44.213710 ], [ 8.964844, 44.213710 ], [ 8.964844, 44.339565 ], [ 8.789062, 44.339565 ], [ 8.789062, 44.213710 ], [ 8.437500, 44.213710 ], [ 8.437500, 44.087585 ], [ 8.261719, 44.087585 ], [ 8.261719, 43.961191 ], [ 8.085938, 43.961191 ], [ 8.085938, 43.707594 ], [ 7.382812, 43.707594 ], [ 7.382812, 43.834527 ], [ 7.558594, 43.834527 ], [ 7.558594, 44.087585 ], [ 7.207031, 44.087585 ], [ 7.207031, 44.213710 ], [ 7.031250, 44.213710 ], [ 7.031250, 44.339565 ], [ 6.855469, 44.339565 ], [ 6.855469, 44.840291 ], [ 6.679688, 44.840291 ], [ 6.679688, 45.089036 ], [ 6.855469, 45.089036 ], [ 6.855469, 45.213004 ], [ 7.031250, 45.213004 ], [ 7.031250, 45.460131 ], [ 6.855469, 45.460131 ], [ 6.855469, 45.828799 ], [ 7.910156, 45.828799 ], [ 7.910156, 45.951150 ], [ 8.085938, 45.951150 ], [ 8.085938, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.951150 ], [ 8.789062, 45.951150 ], [ 8.789062, 46.073231 ], [ 8.964844, 46.073231 ], [ 8.964844, 46.195042 ], [ 9.140625, 46.195042 ], [ 9.140625, 46.437857 ], [ 9.316406, 46.437857 ], [ 9.316406, 46.316584 ], [ 10.195312, 46.316584 ], [ 10.195312, 46.437857 ], [ 10.371094, 46.437857 ], [ 10.371094, 46.920255 ], [ 10.546875, 46.920255 ], [ 10.546875, 46.800059 ], [ 11.250000, 46.800059 ], [ 11.250000, 46.920255 ], [ 11.601562, 46.920255 ], [ 11.601562, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 47.159840 ], [ 12.128906, 47.159840 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.580585 ], [ 9.667969, 40.580585 ], [ 9.667969, 40.313043 ], [ 8.261719, 40.313043 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.789062, 40.979898 ], [ 8.789062, 41.112469 ], [ 9.316406, 41.112469 ] ] ], [ [ [ 12.128906, 47.159840 ], [ 12.128906, 46.920255 ], [ 12.304688, 46.920255 ], [ 12.304688, 46.800059 ], [ 12.480469, 46.800059 ], [ 12.480469, 46.679594 ], [ 13.183594, 46.679594 ], [ 13.183594, 46.558860 ], [ 13.710938, 46.558860 ], [ 13.710938, 46.316584 ], [ 13.535156, 46.316584 ], [ 13.535156, 45.951150 ], [ 13.710938, 45.951150 ], [ 13.710938, 45.706179 ], [ 13.359375, 45.706179 ], [ 13.359375, 45.828799 ], [ 13.007812, 45.828799 ], [ 13.007812, 45.706179 ], [ 12.832031, 45.706179 ], [ 12.832031, 45.583290 ], [ 12.480469, 45.583290 ], [ 12.480469, 45.460131 ], [ 12.304688, 45.460131 ], [ 12.304688, 44.840291 ], [ 12.128906, 44.840291 ], [ 12.128906, 44.590467 ], [ 12.304688, 44.590467 ], [ 12.304688, 44.339565 ], [ 12.480469, 44.339565 ], [ 12.480469, 44.087585 ], [ 12.656250, 44.087585 ], [ 12.656250, 43.961191 ], [ 13.007812, 43.961191 ], [ 13.007812, 43.834527 ], [ 13.183594, 43.834527 ], [ 13.183594, 43.707594 ], [ 13.359375, 43.707594 ], [ 13.359375, 43.452919 ], [ 13.535156, 43.452919 ], [ 13.535156, 43.197167 ], [ 13.710938, 43.197167 ], [ 13.710938, 42.940339 ], [ 13.886719, 42.940339 ], [ 13.886719, 42.682435 ], [ 14.062500, 42.682435 ], [ 14.062500, 42.553080 ], [ 14.238281, 42.553080 ], [ 14.238281, 42.423457 ], [ 14.589844, 42.423457 ], [ 14.589844, 42.293564 ], [ 14.765625, 42.293564 ], [ 14.765625, 42.163403 ], [ 14.941406, 42.163403 ], [ 14.941406, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.902277 ], [ 15.996094, 41.902277 ], [ 15.996094, 41.771312 ], [ 16.171875, 41.771312 ], [ 16.171875, 41.640078 ], [ 15.820312, 41.640078 ], [ 15.820312, 41.508577 ], [ 16.171875, 41.508577 ], [ 16.171875, 41.376809 ], [ 16.523438, 41.376809 ], [ 16.523438, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.929688, 40.713956 ], [ 17.929688, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 16.875000, 40.313043 ], [ 16.875000, 40.446947 ], [ 16.699219, 40.446947 ], [ 16.699219, 40.313043 ], [ 14.765625, 40.313043 ], [ 14.765625, 40.446947 ], [ 14.589844, 40.446947 ], [ 14.589844, 40.713956 ], [ 14.238281, 40.713956 ], [ 14.238281, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 40.979898 ], [ 13.710938, 40.979898 ], [ 13.710938, 41.112469 ], [ 13.535156, 41.112469 ], [ 13.535156, 41.244772 ], [ 13.007812, 41.244772 ], [ 13.007812, 41.376809 ], [ 12.656250, 41.376809 ], [ 12.656250, 41.508577 ], [ 12.304688, 41.508577 ], [ 12.304688, 41.640078 ], [ 11.953125, 41.640078 ], [ 11.953125, 41.771312 ], [ 11.777344, 41.771312 ], [ 11.777344, 41.902277 ], [ 11.601562, 41.902277 ], [ 11.601562, 42.032974 ], [ 11.425781, 42.032974 ], [ 11.425781, 42.163403 ], [ 11.250000, 42.163403 ], [ 11.250000, 42.293564 ], [ 11.074219, 42.293564 ], [ 11.074219, 42.423457 ], [ 10.898438, 42.423457 ], [ 10.898438, 42.553080 ], [ 10.722656, 42.553080 ], [ 10.722656, 42.682435 ], [ 10.546875, 42.682435 ], [ 10.546875, 42.811522 ], [ 10.371094, 42.811522 ], [ 10.371094, 43.452919 ], [ 10.195312, 43.452919 ], [ 10.195312, 43.961191 ], [ 9.843750, 43.961191 ], [ 9.843750, 44.087585 ], [ 9.492188, 44.087585 ], [ 9.492188, 44.213710 ], [ 9.140625, 44.213710 ], [ 9.140625, 44.339565 ], [ 8.789062, 44.339565 ], [ 8.789062, 44.465151 ], [ 8.613281, 44.465151 ], [ 8.613281, 44.339565 ], [ 8.261719, 44.339565 ], [ 8.261719, 44.213710 ], [ 8.085938, 44.213710 ], [ 8.085938, 44.087585 ], [ 7.910156, 44.087585 ], [ 7.910156, 43.834527 ], [ 7.734375, 43.834527 ], [ 7.734375, 43.707594 ], [ 7.382812, 43.707594 ], [ 7.382812, 44.213710 ], [ 7.031250, 44.213710 ], [ 7.031250, 44.339565 ], [ 6.855469, 44.339565 ], [ 6.855469, 44.715514 ], [ 6.679688, 44.715514 ], [ 6.679688, 45.089036 ], [ 6.855469, 45.089036 ], [ 6.855469, 45.213004 ], [ 7.031250, 45.213004 ], [ 7.031250, 45.460131 ], [ 6.855469, 45.460131 ], [ 6.855469, 45.706179 ], [ 6.679688, 45.706179 ], [ 6.679688, 45.951150 ], [ 7.031250, 45.951150 ], [ 7.031250, 45.828799 ], [ 7.910156, 45.828799 ], [ 7.910156, 45.951150 ], [ 8.085938, 45.951150 ], [ 8.085938, 46.073231 ], [ 8.964844, 46.073231 ], [ 8.964844, 46.316584 ], [ 9.140625, 46.316584 ], [ 9.140625, 46.437857 ], [ 9.492188, 46.437857 ], [ 9.492188, 46.316584 ], [ 10.019531, 46.316584 ], [ 10.019531, 46.437857 ], [ 10.195312, 46.437857 ], [ 10.195312, 46.679594 ], [ 10.371094, 46.679594 ], [ 10.371094, 46.920255 ], [ 10.546875, 46.920255 ], [ 10.546875, 46.800059 ], [ 10.898438, 46.800059 ], [ 10.898438, 46.920255 ], [ 11.074219, 46.920255 ], [ 11.074219, 47.040182 ], [ 11.777344, 47.040182 ], [ 11.777344, 47.159840 ], [ 12.128906, 47.159840 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.437857 ], [ 16.875000, 46.316584 ], [ 17.050781, 46.316584 ], [ 17.050781, 46.195042 ], [ 17.226562, 46.195042 ], [ 17.226562, 46.073231 ], [ 17.402344, 46.073231 ], [ 17.402344, 45.951150 ], [ 17.753906, 45.951150 ], [ 17.753906, 45.828799 ], [ 18.105469, 45.828799 ], [ 18.105469, 45.706179 ], [ 18.632812, 45.706179 ], [ 18.632812, 45.828799 ], [ 18.984375, 45.828799 ], [ 18.984375, 45.583290 ], [ 19.160156, 45.583290 ], [ 19.160156, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.089036 ], [ 19.160156, 45.089036 ], [ 19.160156, 44.840291 ], [ 18.808594, 44.840291 ], [ 18.808594, 44.964798 ], [ 18.632812, 44.964798 ], [ 18.632812, 45.089036 ], [ 17.402344, 45.089036 ], [ 17.402344, 45.213004 ], [ 16.523438, 45.213004 ], [ 16.523438, 45.089036 ], [ 16.347656, 45.089036 ], [ 16.347656, 44.964798 ], [ 16.171875, 44.964798 ], [ 16.171875, 45.089036 ], [ 15.996094, 45.089036 ], [ 15.996094, 44.964798 ], [ 15.820312, 44.964798 ], [ 15.820312, 44.715514 ], [ 15.996094, 44.715514 ], [ 15.996094, 44.465151 ], [ 16.171875, 44.465151 ], [ 16.171875, 44.213710 ], [ 16.347656, 44.213710 ], [ 16.347656, 44.087585 ], [ 16.523438, 44.087585 ], [ 16.523438, 43.961191 ], [ 16.699219, 43.961191 ], [ 16.699219, 43.707594 ], [ 16.875000, 43.707594 ], [ 16.875000, 43.580391 ], [ 17.050781, 43.580391 ], [ 17.050781, 43.452919 ], [ 17.226562, 43.452919 ], [ 17.226562, 43.325178 ], [ 17.402344, 43.325178 ], [ 17.402344, 43.197167 ], [ 17.578125, 43.197167 ], [ 17.578125, 43.068888 ], [ 17.753906, 43.068888 ], [ 17.753906, 42.940339 ], [ 18.105469, 42.940339 ], [ 18.105469, 42.811522 ], [ 18.457031, 42.811522 ], [ 18.457031, 42.682435 ], [ 18.632812, 42.682435 ], [ 18.632812, 42.553080 ], [ 18.457031, 42.553080 ], [ 18.457031, 42.423457 ], [ 18.281250, 42.423457 ], [ 18.281250, 42.553080 ], [ 17.929688, 42.553080 ], [ 17.929688, 42.682435 ], [ 17.578125, 42.682435 ], [ 17.578125, 42.811522 ], [ 17.402344, 42.811522 ], [ 17.402344, 42.940339 ], [ 17.050781, 42.940339 ], [ 17.050781, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 43.197167 ], [ 16.523438, 43.197167 ], [ 16.523438, 43.325178 ], [ 16.171875, 43.325178 ], [ 16.171875, 43.452919 ], [ 15.820312, 43.452919 ], [ 15.820312, 43.580391 ], [ 15.644531, 43.580391 ], [ 15.644531, 43.834527 ], [ 15.468750, 43.834527 ], [ 15.468750, 43.961191 ], [ 15.292969, 43.961191 ], [ 15.292969, 44.087585 ], [ 15.117188, 44.087585 ], [ 15.117188, 44.213710 ], [ 15.292969, 44.213710 ], [ 15.292969, 44.339565 ], [ 15.117188, 44.339565 ], [ 15.117188, 44.590467 ], [ 14.941406, 44.590467 ], [ 14.941406, 45.089036 ], [ 14.414062, 45.089036 ], [ 14.414062, 45.213004 ], [ 14.238281, 45.213004 ], [ 14.238281, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.840291 ], [ 13.886719, 44.840291 ], [ 13.886719, 44.964798 ], [ 13.710938, 44.964798 ], [ 13.710938, 45.460131 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.706179 ], [ 15.644531, 45.706179 ], [ 15.644531, 45.951150 ], [ 15.820312, 45.951150 ], [ 15.820312, 46.195042 ], [ 15.996094, 46.195042 ], [ 15.996094, 46.316584 ], [ 16.347656, 46.316584 ], [ 16.347656, 46.437857 ], [ 16.875000, 46.437857 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 16.523438, 46.437857 ], [ 16.875000, 46.437857 ], [ 16.875000, 46.316584 ], [ 17.050781, 46.316584 ], [ 17.050781, 46.195042 ], [ 17.226562, 46.195042 ], [ 17.226562, 46.073231 ], [ 17.402344, 46.073231 ], [ 17.402344, 45.951150 ], [ 17.929688, 45.951150 ], [ 17.929688, 45.828799 ], [ 18.808594, 45.828799 ], [ 18.808594, 45.706179 ], [ 18.984375, 45.706179 ], [ 18.984375, 45.460131 ], [ 19.160156, 45.460131 ], [ 19.160156, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.213004 ], [ 19.160156, 45.213004 ], [ 19.160156, 44.964798 ], [ 18.632812, 44.964798 ], [ 18.632812, 45.089036 ], [ 17.402344, 45.089036 ], [ 17.402344, 45.213004 ], [ 17.050781, 45.213004 ], [ 17.050781, 45.336702 ], [ 16.875000, 45.336702 ], [ 16.875000, 45.213004 ], [ 16.523438, 45.213004 ], [ 16.523438, 45.089036 ], [ 15.996094, 45.089036 ], [ 15.996094, 45.213004 ], [ 15.820312, 45.213004 ], [ 15.820312, 45.089036 ], [ 15.644531, 45.089036 ], [ 15.644531, 44.715514 ], [ 15.820312, 44.715514 ], [ 15.820312, 44.590467 ], [ 15.996094, 44.590467 ], [ 15.996094, 44.465151 ], [ 16.171875, 44.465151 ], [ 16.171875, 44.213710 ], [ 16.347656, 44.213710 ], [ 16.347656, 43.961191 ], [ 16.523438, 43.961191 ], [ 16.523438, 43.834527 ], [ 16.699219, 43.834527 ], [ 16.699219, 43.707594 ], [ 16.875000, 43.707594 ], [ 16.875000, 43.580391 ], [ 17.050781, 43.580391 ], [ 17.050781, 43.452919 ], [ 17.226562, 43.452919 ], [ 17.226562, 43.325178 ], [ 17.402344, 43.325178 ], [ 17.402344, 43.068888 ], [ 17.578125, 43.068888 ], [ 17.578125, 42.940339 ], [ 17.929688, 42.940339 ], [ 17.929688, 42.811522 ], [ 18.281250, 42.811522 ], [ 18.281250, 42.682435 ], [ 18.457031, 42.682435 ], [ 18.457031, 42.553080 ], [ 18.105469, 42.553080 ], [ 18.105469, 42.682435 ], [ 17.753906, 42.682435 ], [ 17.753906, 42.811522 ], [ 17.402344, 42.811522 ], [ 17.402344, 42.940339 ], [ 17.226562, 42.940339 ], [ 17.226562, 43.068888 ], [ 17.050781, 43.068888 ], [ 17.050781, 43.197167 ], [ 16.875000, 43.197167 ], [ 16.875000, 43.325178 ], [ 16.523438, 43.325178 ], [ 16.523438, 43.452919 ], [ 16.171875, 43.452919 ], [ 16.171875, 43.580391 ], [ 15.820312, 43.580391 ], [ 15.820312, 43.707594 ], [ 15.644531, 43.707594 ], [ 15.644531, 43.961191 ], [ 15.468750, 43.961191 ], [ 15.468750, 44.087585 ], [ 15.292969, 44.087585 ], [ 15.292969, 44.213710 ], [ 15.117188, 44.213710 ], [ 15.117188, 44.590467 ], [ 14.941406, 44.590467 ], [ 14.941406, 44.715514 ], [ 14.765625, 44.715514 ], [ 14.765625, 45.089036 ], [ 14.589844, 45.089036 ], [ 14.589844, 45.213004 ], [ 14.062500, 45.213004 ], [ 14.062500, 44.964798 ], [ 13.886719, 44.964798 ], [ 13.886719, 44.840291 ], [ 13.710938, 44.840291 ], [ 13.710938, 45.089036 ], [ 13.535156, 45.089036 ], [ 13.535156, 45.583290 ], [ 14.941406, 45.583290 ], [ 14.941406, 45.460131 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.828799 ], [ 15.644531, 45.828799 ], [ 15.644531, 46.316584 ], [ 15.996094, 46.316584 ], [ 15.996094, 46.437857 ], [ 16.347656, 46.437857 ], [ 16.347656, 46.558860 ], [ 16.523438, 46.558860 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.917969, 48.574790 ], [ 20.917969, 48.458352 ], [ 21.445312, 48.458352 ], [ 21.445312, 48.341646 ], [ 22.324219, 48.341646 ], [ 22.324219, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 48.107431 ], [ 22.675781, 48.107431 ], [ 22.675781, 47.754098 ], [ 22.324219, 47.754098 ], [ 22.324219, 47.635784 ], [ 22.148438, 47.635784 ], [ 22.148438, 47.517201 ], [ 21.972656, 47.517201 ], [ 21.972656, 47.279229 ], [ 21.796875, 47.279229 ], [ 21.796875, 47.040182 ], [ 21.621094, 47.040182 ], [ 21.621094, 46.920255 ], [ 21.445312, 46.920255 ], [ 21.445312, 46.679594 ], [ 21.269531, 46.679594 ], [ 21.269531, 46.437857 ], [ 21.093750, 46.437857 ], [ 21.093750, 46.316584 ], [ 20.917969, 46.316584 ], [ 20.917969, 46.195042 ], [ 20.566406, 46.195042 ], [ 20.566406, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 46.195042 ], [ 19.511719, 46.195042 ], [ 19.511719, 46.073231 ], [ 19.160156, 46.073231 ], [ 19.160156, 45.951150 ], [ 18.808594, 45.951150 ], [ 18.808594, 45.828799 ], [ 18.632812, 45.828799 ], [ 18.632812, 45.706179 ], [ 18.105469, 45.706179 ], [ 18.105469, 45.828799 ], [ 17.753906, 45.828799 ], [ 17.753906, 45.951150 ], [ 17.402344, 45.951150 ], [ 17.402344, 46.073231 ], [ 17.226562, 46.073231 ], [ 17.226562, 46.195042 ], [ 17.050781, 46.195042 ], [ 17.050781, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.437857 ], [ 16.523438, 46.437857 ], [ 16.523438, 46.679594 ], [ 16.347656, 46.679594 ], [ 16.347656, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 46.920255 ], [ 16.347656, 46.920255 ], [ 16.347656, 47.279229 ], [ 16.523438, 47.279229 ], [ 16.523438, 47.635784 ], [ 16.347656, 47.635784 ], [ 16.347656, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 47.872144 ], [ 17.050781, 47.872144 ], [ 17.050781, 47.989922 ], [ 17.226562, 47.989922 ], [ 17.226562, 47.872144 ], [ 17.578125, 47.872144 ], [ 17.578125, 47.754098 ], [ 18.457031, 47.754098 ], [ 18.457031, 47.872144 ], [ 18.632812, 47.872144 ], [ 18.632812, 47.989922 ], [ 18.808594, 47.989922 ], [ 18.808594, 48.107431 ], [ 19.511719, 48.107431 ], [ 19.511719, 48.224673 ], [ 20.039062, 48.224673 ], [ 20.039062, 48.341646 ], [ 20.214844, 48.341646 ], [ 20.214844, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.574790 ], [ 20.917969, 48.574790 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 48.574790 ], [ 21.093750, 48.458352 ], [ 21.445312, 48.458352 ], [ 21.445312, 48.341646 ], [ 22.324219, 48.341646 ], [ 22.324219, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 48.107431 ], [ 22.675781, 48.107431 ], [ 22.675781, 47.872144 ], [ 22.324219, 47.872144 ], [ 22.324219, 47.754098 ], [ 21.972656, 47.754098 ], [ 21.972656, 47.517201 ], [ 21.796875, 47.517201 ], [ 21.796875, 47.159840 ], [ 21.621094, 47.159840 ], [ 21.621094, 46.920255 ], [ 21.445312, 46.920255 ], [ 21.445312, 46.679594 ], [ 21.269531, 46.679594 ], [ 21.269531, 46.558860 ], [ 21.093750, 46.558860 ], [ 21.093750, 46.316584 ], [ 20.742188, 46.316584 ], [ 20.742188, 46.195042 ], [ 19.511719, 46.195042 ], [ 19.511719, 46.073231 ], [ 19.160156, 46.073231 ], [ 19.160156, 45.951150 ], [ 18.808594, 45.951150 ], [ 18.808594, 45.828799 ], [ 17.929688, 45.828799 ], [ 17.929688, 45.951150 ], [ 17.402344, 45.951150 ], [ 17.402344, 46.073231 ], [ 17.226562, 46.073231 ], [ 17.226562, 46.195042 ], [ 17.050781, 46.195042 ], [ 17.050781, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.437857 ], [ 16.523438, 46.437857 ], [ 16.523438, 46.679594 ], [ 16.347656, 46.679594 ], [ 16.347656, 46.920255 ], [ 16.171875, 46.920255 ], [ 16.171875, 47.040182 ], [ 16.347656, 47.040182 ], [ 16.347656, 47.279229 ], [ 16.523438, 47.279229 ], [ 16.523438, 47.517201 ], [ 16.347656, 47.517201 ], [ 16.347656, 47.635784 ], [ 16.171875, 47.635784 ], [ 16.171875, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 48.107431 ], [ 17.050781, 48.107431 ], [ 17.050781, 47.989922 ], [ 17.226562, 47.989922 ], [ 17.226562, 47.872144 ], [ 18.281250, 47.872144 ], [ 18.281250, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 48.107431 ], [ 18.984375, 48.107431 ], [ 18.984375, 48.224673 ], [ 20.039062, 48.224673 ], [ 20.039062, 48.341646 ], [ 20.214844, 48.341646 ], [ 20.214844, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.574790 ], [ 21.093750, 48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 49.496675 ], [ 21.621094, 49.382373 ], [ 21.796875, 49.382373 ], [ 21.796875, 49.267805 ], [ 22.148438, 49.267805 ], [ 22.148438, 49.152970 ], [ 22.324219, 49.152970 ], [ 22.324219, 49.037868 ], [ 22.500000, 49.037868 ], [ 22.500000, 48.922499 ], [ 22.324219, 48.922499 ], [ 22.324219, 48.574790 ], [ 22.148438, 48.574790 ], [ 22.148438, 48.341646 ], [ 21.445312, 48.341646 ], [ 21.445312, 48.458352 ], [ 20.917969, 48.458352 ], [ 20.917969, 48.574790 ], [ 20.390625, 48.574790 ], [ 20.390625, 48.458352 ], [ 20.214844, 48.458352 ], [ 20.214844, 48.341646 ], [ 20.039062, 48.341646 ], [ 20.039062, 48.224673 ], [ 19.511719, 48.224673 ], [ 19.511719, 48.107431 ], [ 18.808594, 48.107431 ], [ 18.808594, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 47.872144 ], [ 18.457031, 47.872144 ], [ 18.457031, 47.754098 ], [ 17.578125, 47.754098 ], [ 17.578125, 47.872144 ], [ 17.226562, 47.872144 ], [ 17.226562, 47.989922 ], [ 17.050781, 47.989922 ], [ 17.050781, 48.224673 ], [ 16.875000, 48.224673 ], [ 16.875000, 48.690960 ], [ 17.050781, 48.690960 ], [ 17.050781, 48.806863 ], [ 17.929688, 48.806863 ], [ 17.929688, 49.037868 ], [ 18.105469, 49.037868 ], [ 18.105469, 49.267805 ], [ 18.457031, 49.267805 ], [ 18.457031, 49.382373 ], [ 18.632812, 49.382373 ], [ 18.632812, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.808594, 49.382373 ], [ 19.160156, 49.382373 ], [ 19.160156, 49.496675 ], [ 19.511719, 49.496675 ], [ 19.511719, 49.382373 ], [ 19.687500, 49.382373 ], [ 19.687500, 49.267805 ], [ 20.214844, 49.267805 ], [ 20.214844, 49.382373 ], [ 21.445312, 49.382373 ], [ 21.445312, 49.496675 ], [ 21.621094, 49.496675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.445312, 49.496675 ], [ 21.445312, 49.382373 ], [ 21.796875, 49.382373 ], [ 21.796875, 49.267805 ], [ 22.148438, 49.267805 ], [ 22.148438, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 49.037868 ], [ 22.324219, 49.037868 ], [ 22.324219, 48.922499 ], [ 22.148438, 48.922499 ], [ 22.148438, 48.690960 ], [ 21.972656, 48.690960 ], [ 21.972656, 48.341646 ], [ 21.445312, 48.341646 ], [ 21.445312, 48.458352 ], [ 21.093750, 48.458352 ], [ 21.093750, 48.574790 ], [ 20.390625, 48.574790 ], [ 20.390625, 48.458352 ], [ 20.214844, 48.458352 ], [ 20.214844, 48.341646 ], [ 20.039062, 48.341646 ], [ 20.039062, 48.224673 ], [ 18.984375, 48.224673 ], [ 18.984375, 48.107431 ], [ 18.632812, 48.107431 ], [ 18.632812, 47.989922 ], [ 18.281250, 47.989922 ], [ 18.281250, 47.872144 ], [ 17.226562, 47.872144 ], [ 17.226562, 47.989922 ], [ 17.050781, 47.989922 ], [ 17.050781, 48.107431 ], [ 16.875000, 48.107431 ], [ 16.875000, 48.806863 ], [ 17.753906, 48.806863 ], [ 17.753906, 49.037868 ], [ 18.105469, 49.037868 ], [ 18.105469, 49.382373 ], [ 18.457031, 49.382373 ], [ 18.457031, 49.496675 ], [ 19.335938, 49.496675 ], [ 19.335938, 49.382373 ], [ 19.511719, 49.382373 ], [ 19.511719, 49.267805 ], [ 20.039062, 49.267805 ], [ 20.039062, 49.382373 ], [ 21.269531, 49.382373 ], [ 21.269531, 49.496675 ], [ 21.445312, 49.496675 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.402344, 45.213004 ], [ 17.402344, 45.089036 ], [ 18.632812, 45.089036 ], [ 18.632812, 44.964798 ], [ 18.808594, 44.964798 ], [ 18.808594, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 44.590467 ], [ 19.160156, 44.590467 ], [ 19.160156, 44.339565 ], [ 19.335938, 44.339565 ], [ 19.335938, 44.213710 ], [ 19.511719, 44.213710 ], [ 19.511719, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.834527 ], [ 19.511719, 43.834527 ], [ 19.511719, 43.580391 ], [ 19.160156, 43.580391 ], [ 19.160156, 43.452919 ], [ 18.984375, 43.452919 ], [ 18.984375, 43.325178 ], [ 18.808594, 43.325178 ], [ 18.808594, 43.197167 ], [ 18.632812, 43.197167 ], [ 18.632812, 42.682435 ], [ 18.457031, 42.682435 ], [ 18.457031, 42.811522 ], [ 18.105469, 42.811522 ], [ 18.105469, 42.940339 ], [ 17.753906, 42.940339 ], [ 17.753906, 43.068888 ], [ 17.578125, 43.068888 ], [ 17.578125, 43.197167 ], [ 17.402344, 43.197167 ], [ 17.402344, 43.325178 ], [ 17.226562, 43.325178 ], [ 17.226562, 43.452919 ], [ 17.050781, 43.452919 ], [ 17.050781, 43.580391 ], [ 16.875000, 43.580391 ], [ 16.875000, 43.707594 ], [ 16.699219, 43.707594 ], [ 16.699219, 43.961191 ], [ 16.523438, 43.961191 ], [ 16.523438, 44.087585 ], [ 16.347656, 44.087585 ], [ 16.347656, 44.213710 ], [ 16.171875, 44.213710 ], [ 16.171875, 44.465151 ], [ 15.996094, 44.465151 ], [ 15.996094, 44.715514 ], [ 15.820312, 44.715514 ], [ 15.820312, 44.964798 ], [ 15.996094, 44.964798 ], [ 15.996094, 45.089036 ], [ 16.171875, 45.089036 ], [ 16.171875, 44.964798 ], [ 16.347656, 44.964798 ], [ 16.347656, 45.089036 ], [ 16.523438, 45.089036 ], [ 16.523438, 45.213004 ], [ 17.402344, 45.213004 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.050781, 45.336702 ], [ 17.050781, 45.213004 ], [ 17.402344, 45.213004 ], [ 17.402344, 45.089036 ], [ 18.632812, 45.089036 ], [ 18.632812, 44.964798 ], [ 19.335938, 44.964798 ], [ 19.335938, 44.840291 ], [ 19.160156, 44.840291 ], [ 19.160156, 44.590467 ], [ 18.984375, 44.590467 ], [ 18.984375, 44.339565 ], [ 19.160156, 44.339565 ], [ 19.160156, 44.213710 ], [ 19.335938, 44.213710 ], [ 19.335938, 44.087585 ], [ 19.511719, 44.087585 ], [ 19.511719, 43.834527 ], [ 19.335938, 43.834527 ], [ 19.335938, 43.580391 ], [ 19.160156, 43.580391 ], [ 19.160156, 43.452919 ], [ 18.984375, 43.452919 ], [ 18.984375, 43.325178 ], [ 18.632812, 43.325178 ], [ 18.632812, 42.940339 ], [ 18.457031, 42.940339 ], [ 18.457031, 42.682435 ], [ 18.281250, 42.682435 ], [ 18.281250, 42.811522 ], [ 17.929688, 42.811522 ], [ 17.929688, 42.940339 ], [ 17.578125, 42.940339 ], [ 17.578125, 43.068888 ], [ 17.402344, 43.068888 ], [ 17.402344, 43.325178 ], [ 17.226562, 43.325178 ], [ 17.226562, 43.452919 ], [ 17.050781, 43.452919 ], [ 17.050781, 43.580391 ], [ 16.875000, 43.580391 ], [ 16.875000, 43.707594 ], [ 16.699219, 43.707594 ], [ 16.699219, 43.834527 ], [ 16.523438, 43.834527 ], [ 16.523438, 43.961191 ], [ 16.347656, 43.961191 ], [ 16.347656, 44.213710 ], [ 16.171875, 44.213710 ], [ 16.171875, 44.465151 ], [ 15.996094, 44.465151 ], [ 15.996094, 44.590467 ], [ 15.820312, 44.590467 ], [ 15.820312, 44.715514 ], [ 15.644531, 44.715514 ], [ 15.644531, 45.089036 ], [ 15.820312, 45.089036 ], [ 15.820312, 45.213004 ], [ 15.996094, 45.213004 ], [ 15.996094, 45.089036 ], [ 16.523438, 45.089036 ], [ 16.523438, 45.213004 ], [ 16.875000, 45.213004 ], [ 16.875000, 45.336702 ], [ 17.050781, 45.336702 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.335938, 43.452919 ], [ 19.335938, 43.325178 ], [ 19.511719, 43.325178 ], [ 19.511719, 43.197167 ], [ 19.687500, 43.197167 ], [ 19.687500, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.940339 ], [ 20.390625, 42.940339 ], [ 20.390625, 42.811522 ], [ 20.214844, 42.811522 ], [ 20.214844, 42.682435 ], [ 20.039062, 42.682435 ], [ 20.039062, 42.553080 ], [ 19.511719, 42.553080 ], [ 19.511719, 42.293564 ], [ 19.335938, 42.293564 ], [ 19.335938, 41.902277 ], [ 18.984375, 41.902277 ], [ 18.984375, 42.163403 ], [ 18.808594, 42.163403 ], [ 18.808594, 42.293564 ], [ 18.457031, 42.293564 ], [ 18.457031, 42.553080 ], [ 18.632812, 42.553080 ], [ 18.632812, 43.197167 ], [ 18.808594, 43.197167 ], [ 18.808594, 43.325178 ], [ 18.984375, 43.325178 ], [ 18.984375, 43.452919 ], [ 19.335938, 43.452919 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.160156, 42.032974 ], [ 18.984375, 42.032974 ], [ 18.984375, 42.163403 ], [ 18.808594, 42.163403 ], [ 18.808594, 42.293564 ], [ 18.632812, 42.293564 ], [ 18.632812, 42.423457 ], [ 18.281250, 42.423457 ], [ 18.281250, 42.553080 ], [ 18.457031, 42.553080 ], [ 18.457031, 42.940339 ], [ 18.632812, 42.940339 ], [ 18.632812, 43.325178 ], [ 18.984375, 43.325178 ], [ 18.984375, 43.452919 ], [ 19.335938, 43.452919 ], [ 19.335938, 43.325178 ], [ 19.511719, 43.325178 ], [ 19.511719, 43.197167 ], [ 19.863281, 43.197167 ], [ 19.863281, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.940339 ], [ 20.214844, 42.940339 ], [ 20.214844, 42.682435 ], [ 20.039062, 42.682435 ], [ 20.039062, 42.553080 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.682435 ], [ 19.511719, 42.682435 ], [ 19.511719, 42.553080 ], [ 19.335938, 42.553080 ], [ 19.335938, 42.293564 ], [ 19.160156, 42.293564 ], [ 19.160156, 42.032974 ] ] ], [ [ [ 19.160156, 42.032974 ], [ 19.335938, 42.032974 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.902277 ], [ 19.160156, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 46.195042 ], [ 19.687500, 46.073231 ], [ 20.214844, 46.073231 ], [ 20.214844, 45.951150 ], [ 20.390625, 45.951150 ], [ 20.390625, 45.828799 ], [ 20.566406, 45.828799 ], [ 20.566406, 45.706179 ], [ 20.742188, 45.706179 ], [ 20.742188, 45.583290 ], [ 20.917969, 45.583290 ], [ 20.917969, 45.336702 ], [ 21.269531, 45.336702 ], [ 21.269531, 45.213004 ], [ 21.445312, 45.213004 ], [ 21.445312, 44.964798 ], [ 21.621094, 44.964798 ], [ 21.621094, 44.590467 ], [ 21.972656, 44.590467 ], [ 21.972656, 44.465151 ], [ 22.324219, 44.465151 ], [ 22.324219, 44.590467 ], [ 22.675781, 44.590467 ], [ 22.675781, 44.465151 ], [ 22.500000, 44.465151 ], [ 22.500000, 44.339565 ], [ 22.675781, 44.339565 ], [ 22.675781, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 43.961191 ], [ 22.324219, 43.961191 ], [ 22.324219, 43.707594 ], [ 22.500000, 43.707594 ], [ 22.500000, 43.452919 ], [ 22.675781, 43.452919 ], [ 22.675781, 43.325178 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.197167 ], [ 23.027344, 43.197167 ], [ 23.027344, 43.068888 ], [ 22.851562, 43.068888 ], [ 22.851562, 42.940339 ], [ 22.675781, 42.940339 ], [ 22.675781, 42.682435 ], [ 22.500000, 42.682435 ], [ 22.500000, 42.293564 ], [ 21.621094, 42.293564 ], [ 21.621094, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.682435 ], [ 21.445312, 42.682435 ], [ 21.445312, 42.811522 ], [ 21.269531, 42.811522 ], [ 21.269531, 42.940339 ], [ 21.093750, 42.940339 ], [ 21.093750, 43.068888 ], [ 20.917969, 43.068888 ], [ 20.917969, 43.197167 ], [ 20.566406, 43.197167 ], [ 20.566406, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 42.940339 ], [ 20.039062, 42.940339 ], [ 20.039062, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.197167 ], [ 19.511719, 43.197167 ], [ 19.511719, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 43.452919 ], [ 19.160156, 43.452919 ], [ 19.160156, 43.580391 ], [ 19.511719, 43.580391 ], [ 19.511719, 43.834527 ], [ 19.687500, 43.834527 ], [ 19.687500, 44.087585 ], [ 19.511719, 44.087585 ], [ 19.511719, 44.213710 ], [ 19.335938, 44.213710 ], [ 19.335938, 44.339565 ], [ 19.160156, 44.339565 ], [ 19.160156, 44.590467 ], [ 19.335938, 44.590467 ], [ 19.335938, 44.840291 ], [ 19.160156, 44.840291 ], [ 19.160156, 45.089036 ], [ 19.335938, 45.089036 ], [ 19.335938, 45.336702 ], [ 19.160156, 45.336702 ], [ 19.160156, 45.583290 ], [ 18.984375, 45.583290 ], [ 18.984375, 45.828799 ], [ 18.808594, 45.828799 ], [ 18.808594, 45.951150 ], [ 19.160156, 45.951150 ], [ 19.160156, 46.073231 ], [ 19.511719, 46.073231 ], [ 19.511719, 46.195042 ], [ 19.687500, 46.195042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.195042 ], [ 20.214844, 46.073231 ], [ 20.390625, 46.073231 ], [ 20.390625, 45.951150 ], [ 20.566406, 45.951150 ], [ 20.566406, 45.828799 ], [ 20.742188, 45.828799 ], [ 20.742188, 45.336702 ], [ 21.093750, 45.336702 ], [ 21.093750, 45.213004 ], [ 21.445312, 45.213004 ], [ 21.445312, 44.715514 ], [ 21.796875, 44.715514 ], [ 21.796875, 44.590467 ], [ 22.675781, 44.590467 ], [ 22.675781, 44.465151 ], [ 22.324219, 44.465151 ], [ 22.324219, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 44.213710 ], [ 22.324219, 44.213710 ], [ 22.324219, 43.834527 ], [ 22.500000, 43.834527 ], [ 22.500000, 43.580391 ], [ 22.675781, 43.580391 ], [ 22.675781, 43.325178 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.197167 ], [ 22.675781, 43.197167 ], [ 22.675781, 42.940339 ], [ 22.500000, 42.940339 ], [ 22.500000, 42.811522 ], [ 22.324219, 42.811522 ], [ 22.324219, 42.553080 ], [ 22.500000, 42.553080 ], [ 22.500000, 42.423457 ], [ 21.796875, 42.423457 ], [ 21.796875, 42.293564 ], [ 21.445312, 42.293564 ], [ 21.445312, 42.423457 ], [ 21.621094, 42.423457 ], [ 21.621094, 42.682435 ], [ 21.445312, 42.682435 ], [ 21.445312, 42.811522 ], [ 21.269531, 42.811522 ], [ 21.269531, 42.940339 ], [ 21.093750, 42.940339 ], [ 21.093750, 43.068888 ], [ 20.917969, 43.068888 ], [ 20.917969, 43.197167 ], [ 20.742188, 43.197167 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.325178 ], [ 20.566406, 43.068888 ], [ 20.390625, 43.068888 ], [ 20.390625, 42.811522 ], [ 20.214844, 42.811522 ], [ 20.214844, 42.940339 ], [ 20.039062, 42.940339 ], [ 20.039062, 43.068888 ], [ 19.863281, 43.068888 ], [ 19.863281, 43.197167 ], [ 19.511719, 43.197167 ], [ 19.511719, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 43.452919 ], [ 19.160156, 43.452919 ], [ 19.160156, 43.580391 ], [ 19.335938, 43.580391 ], [ 19.335938, 43.834527 ], [ 19.511719, 43.834527 ], [ 19.511719, 44.087585 ], [ 19.335938, 44.087585 ], [ 19.335938, 44.213710 ], [ 19.160156, 44.213710 ], [ 19.160156, 44.339565 ], [ 18.984375, 44.339565 ], [ 18.984375, 44.590467 ], [ 19.160156, 44.590467 ], [ 19.160156, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 44.964798 ], [ 19.160156, 44.964798 ], [ 19.160156, 45.213004 ], [ 19.335938, 45.213004 ], [ 19.335938, 45.336702 ], [ 19.160156, 45.336702 ], [ 19.160156, 45.460131 ], [ 18.984375, 45.460131 ], [ 18.984375, 45.706179 ], [ 18.808594, 45.706179 ], [ 18.808594, 45.951150 ], [ 19.160156, 45.951150 ], [ 19.160156, 46.073231 ], [ 19.511719, 46.073231 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.917969, 43.197167 ], [ 20.917969, 43.068888 ], [ 21.093750, 43.068888 ], [ 21.093750, 42.940339 ], [ 21.269531, 42.940339 ], [ 21.269531, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.682435 ], [ 21.796875, 42.682435 ], [ 21.796875, 42.553080 ], [ 21.621094, 42.553080 ], [ 21.621094, 42.163403 ], [ 21.093750, 42.163403 ], [ 21.093750, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.566406, 42.163403 ], [ 20.214844, 42.163403 ], [ 20.214844, 42.423457 ], [ 20.039062, 42.423457 ], [ 20.039062, 42.682435 ], [ 20.214844, 42.682435 ], [ 20.214844, 42.811522 ], [ 20.566406, 42.811522 ], [ 20.566406, 43.197167 ], [ 20.917969, 43.197167 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 20.742188, 43.197167 ], [ 20.917969, 43.197167 ], [ 20.917969, 43.068888 ], [ 21.093750, 43.068888 ], [ 21.093750, 42.940339 ], [ 21.269531, 42.940339 ], [ 21.269531, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.682435 ], [ 21.621094, 42.682435 ], [ 21.621094, 42.423457 ], [ 21.445312, 42.423457 ], [ 21.445312, 42.293564 ], [ 21.093750, 42.293564 ], [ 21.093750, 42.163403 ], [ 20.742188, 42.163403 ], [ 20.742188, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 42.293564 ], [ 20.214844, 42.293564 ], [ 20.214844, 42.553080 ], [ 20.039062, 42.553080 ], [ 20.039062, 42.682435 ], [ 20.214844, 42.682435 ], [ 20.214844, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 43.068888 ], [ 20.566406, 43.068888 ], [ 20.566406, 43.325178 ], [ 20.742188, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.553080 ], [ 20.039062, 42.423457 ], [ 20.214844, 42.423457 ], [ 20.214844, 42.163403 ], [ 20.566406, 42.163403 ], [ 20.566406, 41.640078 ], [ 20.390625, 41.640078 ], [ 20.390625, 41.244772 ], [ 20.566406, 41.244772 ], [ 20.566406, 40.979898 ], [ 20.917969, 40.979898 ], [ 20.917969, 40.847060 ], [ 21.093750, 40.847060 ], [ 21.093750, 40.713956 ], [ 20.917969, 40.713956 ], [ 20.917969, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 40.313043 ], [ 19.335938, 40.313043 ], [ 19.335938, 41.508577 ], [ 19.511719, 41.508577 ], [ 19.511719, 41.771312 ], [ 19.335938, 41.771312 ], [ 19.335938, 42.293564 ], [ 19.511719, 42.293564 ], [ 19.511719, 42.553080 ], [ 20.039062, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.682435 ], [ 19.687500, 42.553080 ], [ 20.214844, 42.553080 ], [ 20.214844, 42.293564 ], [ 20.390625, 42.293564 ], [ 20.390625, 42.032974 ], [ 20.566406, 42.032974 ], [ 20.566406, 41.771312 ], [ 20.390625, 41.771312 ], [ 20.390625, 41.376809 ], [ 20.566406, 41.376809 ], [ 20.566406, 40.979898 ], [ 20.742188, 40.979898 ], [ 20.742188, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.446947 ], [ 20.566406, 40.446947 ], [ 20.566406, 40.313043 ], [ 19.335938, 40.313043 ], [ 19.335938, 40.580585 ], [ 19.160156, 40.580585 ], [ 19.160156, 41.112469 ], [ 19.335938, 41.112469 ], [ 19.335938, 41.640078 ], [ 19.511719, 41.640078 ], [ 19.511719, 41.771312 ], [ 19.335938, 41.771312 ], [ 19.335938, 42.032974 ], [ 19.160156, 42.032974 ], [ 19.160156, 42.293564 ], [ 19.335938, 42.293564 ], [ 19.335938, 42.553080 ], [ 19.511719, 42.553080 ], [ 19.511719, 42.682435 ], [ 19.687500, 42.682435 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.293564 ], [ 22.324219, 42.163403 ], [ 22.675781, 42.163403 ], [ 22.675781, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.640078 ], [ 23.027344, 41.640078 ], [ 23.027344, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.640078 ], [ 20.566406, 41.640078 ], [ 20.566406, 41.902277 ], [ 20.742188, 41.902277 ], [ 20.742188, 42.032974 ], [ 21.093750, 42.032974 ], [ 21.093750, 42.163403 ], [ 21.621094, 42.163403 ], [ 21.621094, 42.293564 ], [ 22.324219, 42.293564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.423457 ], [ 22.324219, 42.293564 ], [ 22.500000, 42.293564 ], [ 22.500000, 42.163403 ], [ 22.675781, 42.163403 ], [ 22.675781, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.376809 ], [ 22.675781, 41.376809 ], [ 22.675781, 41.244772 ], [ 21.972656, 41.244772 ], [ 21.972656, 41.112469 ], [ 21.796875, 41.112469 ], [ 21.796875, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.742188, 40.847060 ], [ 20.742188, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.376809 ], [ 20.390625, 41.376809 ], [ 20.390625, 41.771312 ], [ 20.566406, 41.771312 ], [ 20.566406, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 42.163403 ], [ 21.093750, 42.163403 ], [ 21.093750, 42.293564 ], [ 21.796875, 42.293564 ], [ 21.796875, 42.423457 ], [ 22.324219, 42.423457 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.179688, 66.861082 ], [ 29.179688, 66.722541 ], [ 29.355469, 66.722541 ], [ 29.355469, 66.583217 ], [ 29.531250, 66.583217 ], [ 29.531250, 66.372755 ], [ 29.707031, 66.372755 ], [ 29.707031, 66.231457 ], [ 29.882812, 66.231457 ], [ 29.882812, 66.018018 ], [ 30.058594, 66.018018 ], [ 30.058594, 65.874725 ], [ 30.234375, 65.874725 ], [ 30.234375, 65.658275 ], [ 30.058594, 65.658275 ], [ 30.058594, 65.440002 ], [ 29.882812, 65.440002 ], [ 29.882812, 65.219894 ], [ 29.707031, 65.219894 ], [ 29.707031, 64.997939 ], [ 29.531250, 64.997939 ], [ 29.531250, 64.848937 ], [ 29.707031, 64.848937 ], [ 29.707031, 64.699105 ], [ 29.882812, 64.699105 ], [ 29.882812, 64.548440 ], [ 30.058594, 64.548440 ], [ 30.058594, 64.396938 ], [ 30.234375, 64.396938 ], [ 30.234375, 64.244595 ], [ 30.410156, 64.244595 ], [ 30.410156, 64.014496 ], [ 30.234375, 64.014496 ], [ 30.234375, 63.704722 ], [ 30.058594, 63.704722 ], [ 30.058594, 63.470145 ], [ 30.234375, 63.470145 ], [ 30.234375, 63.391522 ], [ 30.410156, 63.391522 ], [ 30.410156, 63.312683 ], [ 30.585938, 63.312683 ], [ 30.585938, 63.233627 ], [ 30.761719, 63.233627 ], [ 30.761719, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 62.995158 ], [ 31.113281, 62.995158 ], [ 31.113281, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 62.835089 ], [ 31.464844, 62.835089 ], [ 31.464844, 62.674143 ], [ 31.289062, 62.674143 ], [ 31.289062, 62.431074 ], [ 31.113281, 62.431074 ], [ 31.113281, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.103883 ], [ 30.761719, 62.103883 ], [ 30.761719, 62.021528 ], [ 30.585938, 62.021528 ], [ 30.585938, 61.938950 ], [ 30.410156, 61.938950 ], [ 30.410156, 61.773123 ], [ 30.234375, 61.773123 ], [ 30.234375, 61.689872 ], [ 30.058594, 61.689872 ], [ 30.058594, 61.606396 ], [ 29.882812, 61.606396 ], [ 29.882812, 61.438767 ], [ 29.707031, 61.438767 ], [ 29.707031, 61.354614 ], [ 29.531250, 61.354614 ], [ 29.531250, 61.270233 ], [ 29.355469, 61.270233 ], [ 29.355469, 61.185625 ], [ 29.179688, 61.185625 ], [ 29.179688, 61.015725 ], [ 29.003906, 61.015725 ], [ 29.003906, 60.930432 ], [ 28.828125, 60.930432 ], [ 28.828125, 60.844911 ], [ 28.652344, 60.844911 ], [ 28.652344, 60.759160 ], [ 28.476562, 60.759160 ], [ 28.476562, 60.586967 ], [ 28.300781, 60.586967 ], [ 28.300781, 60.500525 ], [ 27.246094, 60.500525 ], [ 27.246094, 60.413852 ], [ 26.015625, 60.413852 ], [ 26.015625, 60.326948 ], [ 25.664062, 60.326948 ], [ 25.664062, 60.239811 ], [ 25.136719, 60.239811 ], [ 25.136719, 60.152442 ], [ 24.785156, 60.152442 ], [ 24.785156, 60.064840 ], [ 24.082031, 60.064840 ], [ 24.082031, 59.977005 ], [ 23.378906, 59.977005 ], [ 23.378906, 59.888937 ], [ 22.851562, 59.888937 ], [ 22.851562, 59.977005 ], [ 22.675781, 59.977005 ], [ 22.675781, 60.152442 ], [ 22.500000, 60.152442 ], [ 22.500000, 60.326948 ], [ 22.324219, 60.326948 ], [ 22.324219, 60.413852 ], [ 22.148438, 60.413852 ], [ 22.148438, 60.500525 ], [ 21.796875, 60.500525 ], [ 21.796875, 60.586967 ], [ 21.621094, 60.586967 ], [ 21.621094, 60.673179 ], [ 21.269531, 60.673179 ], [ 21.269531, 60.930432 ], [ 21.445312, 60.930432 ], [ 21.445312, 61.438767 ], [ 21.621094, 61.438767 ], [ 21.621094, 61.773123 ], [ 21.445312, 61.773123 ], [ 21.445312, 62.103883 ], [ 21.269531, 62.103883 ], [ 21.269531, 62.431074 ], [ 21.093750, 62.431074 ], [ 21.093750, 62.674143 ], [ 21.269531, 62.674143 ], [ 21.269531, 62.835089 ], [ 21.445312, 62.835089 ], [ 21.445312, 62.995158 ], [ 21.621094, 62.995158 ], [ 21.621094, 63.154355 ], [ 21.796875, 63.154355 ], [ 21.796875, 63.312683 ], [ 21.972656, 63.312683 ], [ 21.972656, 63.470145 ], [ 22.148438, 63.470145 ], [ 22.148438, 63.548552 ], [ 22.324219, 63.548552 ], [ 22.324219, 63.704722 ], [ 22.500000, 63.704722 ], [ 22.500000, 63.782486 ], [ 22.675781, 63.782486 ], [ 22.675781, 63.860036 ], [ 22.851562, 63.860036 ], [ 22.851562, 63.937372 ], [ 23.027344, 63.937372 ], [ 23.027344, 64.091408 ], [ 23.203125, 64.091408 ], [ 23.203125, 64.168107 ], [ 23.378906, 64.168107 ], [ 23.378906, 64.244595 ], [ 23.554688, 64.244595 ], [ 23.554688, 64.320872 ], [ 23.730469, 64.320872 ], [ 23.730469, 64.396938 ], [ 23.906250, 64.396938 ], [ 23.906250, 64.472794 ], [ 24.082031, 64.472794 ], [ 24.082031, 64.548440 ], [ 24.257812, 64.548440 ], [ 24.257812, 64.699105 ], [ 24.433594, 64.699105 ], [ 24.433594, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 64.848937 ], [ 24.785156, 64.848937 ], [ 24.785156, 64.923542 ], [ 24.960938, 64.923542 ], [ 24.960938, 64.997939 ], [ 25.136719, 64.997939 ], [ 25.136719, 65.072130 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.512963 ], [ 25.136719, 65.512963 ], [ 25.136719, 65.585720 ], [ 24.960938, 65.585720 ], [ 24.960938, 65.658275 ], [ 24.785156, 65.658275 ], [ 24.785156, 65.730626 ], [ 24.433594, 65.730626 ], [ 24.433594, 65.802776 ], [ 24.257812, 65.802776 ], [ 24.257812, 65.874725 ], [ 24.082031, 65.874725 ], [ 24.082031, 65.946472 ], [ 23.906250, 65.946472 ], [ 23.906250, 66.089364 ], [ 23.730469, 66.089364 ], [ 23.730469, 66.231457 ], [ 23.554688, 66.231457 ], [ 23.554688, 66.861082 ], [ 29.179688, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 66.861082 ], [ 29.003906, 66.722541 ], [ 29.179688, 66.722541 ], [ 29.179688, 66.583217 ], [ 29.355469, 66.583217 ], [ 29.355469, 66.443107 ], [ 29.531250, 66.443107 ], [ 29.531250, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.089364 ], [ 29.882812, 66.089364 ], [ 29.882812, 65.946472 ], [ 30.058594, 65.946472 ], [ 30.058594, 65.730626 ], [ 29.882812, 65.730626 ], [ 29.882812, 65.440002 ], [ 29.707031, 65.440002 ], [ 29.707031, 65.146115 ], [ 29.531250, 65.146115 ], [ 29.531250, 64.923542 ], [ 29.707031, 64.923542 ], [ 29.707031, 64.774125 ], [ 29.882812, 64.774125 ], [ 29.882812, 64.623877 ], [ 30.058594, 64.623877 ], [ 30.058594, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 64.320872 ], [ 30.410156, 64.320872 ], [ 30.410156, 64.091408 ], [ 30.234375, 64.091408 ], [ 30.234375, 63.937372 ], [ 30.058594, 63.937372 ], [ 30.058594, 63.704722 ], [ 29.882812, 63.704722 ], [ 29.882812, 63.548552 ], [ 30.058594, 63.548552 ], [ 30.058594, 63.470145 ], [ 30.234375, 63.470145 ], [ 30.234375, 63.391522 ], [ 30.410156, 63.391522 ], [ 30.410156, 63.312683 ], [ 30.585938, 63.312683 ], [ 30.585938, 63.233627 ], [ 30.761719, 63.233627 ], [ 30.761719, 63.154355 ], [ 30.937500, 63.154355 ], [ 30.937500, 63.074866 ], [ 31.113281, 63.074866 ], [ 31.113281, 62.995158 ], [ 31.289062, 62.995158 ], [ 31.289062, 62.915233 ], [ 31.464844, 62.915233 ], [ 31.464844, 62.754726 ], [ 31.289062, 62.754726 ], [ 31.289062, 62.512318 ], [ 31.113281, 62.512318 ], [ 31.113281, 62.349609 ], [ 30.937500, 62.349609 ], [ 30.937500, 62.267923 ], [ 30.761719, 62.267923 ], [ 30.761719, 62.186014 ], [ 30.585938, 62.186014 ], [ 30.585938, 62.021528 ], [ 30.410156, 62.021528 ], [ 30.410156, 61.938950 ], [ 30.234375, 61.938950 ], [ 30.234375, 61.856149 ], [ 30.058594, 61.856149 ], [ 30.058594, 61.773123 ], [ 29.882812, 61.773123 ], [ 29.882812, 61.689872 ], [ 29.707031, 61.689872 ], [ 29.707031, 61.522695 ], [ 29.531250, 61.522695 ], [ 29.531250, 61.438767 ], [ 29.355469, 61.438767 ], [ 29.355469, 61.354614 ], [ 29.179688, 61.354614 ], [ 29.179688, 61.270233 ], [ 29.003906, 61.270233 ], [ 29.003906, 61.100789 ], [ 28.828125, 61.100789 ], [ 28.828125, 61.015725 ], [ 28.652344, 61.015725 ], [ 28.652344, 60.930432 ], [ 28.476562, 60.930432 ], [ 28.476562, 60.844911 ], [ 28.300781, 60.844911 ], [ 28.300781, 60.673179 ], [ 28.125000, 60.673179 ], [ 28.125000, 60.586967 ], [ 27.246094, 60.586967 ], [ 27.246094, 60.500525 ], [ 26.191406, 60.500525 ], [ 26.191406, 60.413852 ], [ 25.839844, 60.413852 ], [ 25.839844, 60.326948 ], [ 25.488281, 60.326948 ], [ 25.488281, 60.239811 ], [ 25.136719, 60.239811 ], [ 25.136719, 60.152442 ], [ 24.785156, 60.152442 ], [ 24.785156, 60.064840 ], [ 24.082031, 60.064840 ], [ 24.082031, 59.977005 ], [ 23.378906, 59.977005 ], [ 23.378906, 59.888937 ], [ 22.675781, 59.888937 ], [ 22.675781, 60.064840 ], [ 22.500000, 60.064840 ], [ 22.500000, 60.152442 ], [ 22.324219, 60.152442 ], [ 22.324219, 60.326948 ], [ 22.148438, 60.326948 ], [ 22.148438, 60.413852 ], [ 21.972656, 60.413852 ], [ 21.972656, 60.500525 ], [ 21.796875, 60.500525 ], [ 21.796875, 60.586967 ], [ 21.445312, 60.586967 ], [ 21.445312, 60.673179 ], [ 21.269531, 60.673179 ], [ 21.269531, 61.270233 ], [ 21.445312, 61.270233 ], [ 21.445312, 61.856149 ], [ 21.269531, 61.856149 ], [ 21.269531, 62.186014 ], [ 21.093750, 62.186014 ], [ 21.093750, 62.512318 ], [ 20.917969, 62.512318 ], [ 20.917969, 62.754726 ], [ 21.093750, 62.754726 ], [ 21.093750, 62.915233 ], [ 21.269531, 62.915233 ], [ 21.269531, 63.074866 ], [ 21.445312, 63.074866 ], [ 21.445312, 63.233627 ], [ 21.621094, 63.233627 ], [ 21.621094, 63.391522 ], [ 21.796875, 63.391522 ], [ 21.796875, 63.548552 ], [ 21.972656, 63.548552 ], [ 21.972656, 63.626745 ], [ 22.148438, 63.626745 ], [ 22.148438, 63.782486 ], [ 22.324219, 63.782486 ], [ 22.324219, 63.860036 ], [ 22.500000, 63.860036 ], [ 22.500000, 63.937372 ], [ 22.675781, 63.937372 ], [ 22.675781, 64.014496 ], [ 22.851562, 64.014496 ], [ 22.851562, 64.091408 ], [ 23.027344, 64.091408 ], [ 23.027344, 64.168107 ], [ 23.203125, 64.168107 ], [ 23.203125, 64.244595 ], [ 23.378906, 64.244595 ], [ 23.378906, 64.396938 ], [ 23.554688, 64.396938 ], [ 23.554688, 64.472794 ], [ 23.730469, 64.472794 ], [ 23.730469, 64.548440 ], [ 23.906250, 64.548440 ], [ 23.906250, 64.623877 ], [ 24.082031, 64.623877 ], [ 24.082031, 64.699105 ], [ 24.257812, 64.699105 ], [ 24.257812, 64.774125 ], [ 24.433594, 64.774125 ], [ 24.433594, 64.848937 ], [ 24.609375, 64.848937 ], [ 24.609375, 64.923542 ], [ 24.785156, 64.923542 ], [ 24.785156, 64.997939 ], [ 25.136719, 64.997939 ], [ 25.136719, 65.072130 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.366837 ], [ 25.136719, 65.366837 ], [ 25.136719, 65.585720 ], [ 24.960938, 65.585720 ], [ 24.960938, 65.658275 ], [ 24.609375, 65.658275 ], [ 24.609375, 65.730626 ], [ 24.433594, 65.730626 ], [ 24.433594, 65.802776 ], [ 24.257812, 65.802776 ], [ 24.257812, 65.874725 ], [ 23.906250, 65.874725 ], [ 23.906250, 65.946472 ], [ 23.730469, 65.946472 ], [ 23.730469, 66.231457 ], [ 23.554688, 66.231457 ], [ 23.554688, 66.861082 ], [ 29.003906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 57.984808 ], [ 25.312500, 57.891497 ], [ 25.664062, 57.891497 ], [ 25.664062, 57.797944 ], [ 25.839844, 57.797944 ], [ 25.839844, 57.704147 ], [ 26.191406, 57.704147 ], [ 26.191406, 57.610107 ], [ 26.367188, 57.610107 ], [ 26.367188, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.246094, 57.421294 ], [ 27.421875, 57.421294 ], [ 27.421875, 57.326521 ], [ 27.597656, 57.326521 ], [ 27.597656, 57.231503 ], [ 27.773438, 57.231503 ], [ 27.773438, 56.559482 ], [ 27.949219, 56.559482 ], [ 27.949219, 56.267761 ], [ 28.125000, 56.267761 ], [ 28.125000, 56.072035 ], [ 27.773438, 56.072035 ], [ 27.773438, 55.973798 ], [ 27.597656, 55.973798 ], [ 27.597656, 55.875311 ], [ 27.246094, 55.875311 ], [ 27.246094, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.677584 ], [ 26.718750, 55.677584 ], [ 26.718750, 55.578345 ], [ 26.367188, 55.578345 ], [ 26.367188, 55.677584 ], [ 26.191406, 55.677584 ], [ 26.191406, 55.776573 ], [ 25.839844, 55.776573 ], [ 25.839844, 55.875311 ], [ 25.664062, 55.875311 ], [ 25.664062, 55.973798 ], [ 25.488281, 55.973798 ], [ 25.488281, 56.072035 ], [ 25.136719, 56.072035 ], [ 25.136719, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.267761 ], [ 24.785156, 56.267761 ], [ 24.785156, 56.365250 ], [ 24.433594, 56.365250 ], [ 24.433594, 56.267761 ], [ 22.851562, 56.267761 ], [ 22.851562, 56.365250 ], [ 22.148438, 56.365250 ], [ 22.148438, 56.267761 ], [ 21.796875, 56.267761 ], [ 21.796875, 56.170023 ], [ 21.445312, 56.170023 ], [ 21.445312, 56.072035 ], [ 21.093750, 56.072035 ], [ 21.093750, 56.848972 ], [ 21.269531, 56.848972 ], [ 21.269531, 57.040730 ], [ 21.445312, 57.040730 ], [ 21.445312, 57.231503 ], [ 21.621094, 57.231503 ], [ 21.621094, 57.421294 ], [ 21.796875, 57.421294 ], [ 21.796875, 57.515823 ], [ 21.972656, 57.515823 ], [ 21.972656, 57.610107 ], [ 22.324219, 57.610107 ], [ 22.324219, 57.704147 ], [ 22.675781, 57.704147 ], [ 22.675781, 57.515823 ], [ 22.851562, 57.515823 ], [ 22.851562, 57.421294 ], [ 23.027344, 57.421294 ], [ 23.027344, 57.231503 ], [ 23.203125, 57.231503 ], [ 23.203125, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.082031, 57.421294 ], [ 24.257812, 57.421294 ], [ 24.257812, 57.797944 ], [ 24.609375, 57.797944 ], [ 24.609375, 57.891497 ], [ 24.960938, 57.891497 ], [ 24.960938, 57.984808 ], [ 25.312500, 57.984808 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 25.136719, 57.891497 ], [ 25.488281, 57.891497 ], [ 25.488281, 57.797944 ], [ 25.664062, 57.797944 ], [ 25.664062, 57.704147 ], [ 26.015625, 57.704147 ], [ 26.015625, 57.610107 ], [ 26.191406, 57.610107 ], [ 26.191406, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.246094, 57.421294 ], [ 27.421875, 57.421294 ], [ 27.421875, 57.326521 ], [ 27.597656, 57.326521 ], [ 27.597656, 57.040730 ], [ 27.773438, 57.040730 ], [ 27.773438, 56.656226 ], [ 27.949219, 56.656226 ], [ 27.949219, 56.267761 ], [ 28.125000, 56.267761 ], [ 28.125000, 56.072035 ], [ 27.773438, 56.072035 ], [ 27.773438, 55.973798 ], [ 27.421875, 55.973798 ], [ 27.421875, 55.875311 ], [ 27.070312, 55.875311 ], [ 27.070312, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 55.677584 ], [ 26.191406, 55.677584 ], [ 26.191406, 55.776573 ], [ 26.015625, 55.776573 ], [ 26.015625, 55.875311 ], [ 25.839844, 55.875311 ], [ 25.839844, 55.973798 ], [ 25.664062, 55.973798 ], [ 25.664062, 56.072035 ], [ 25.488281, 56.072035 ], [ 25.488281, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.267761 ], [ 24.785156, 56.267761 ], [ 24.785156, 56.462490 ], [ 24.433594, 56.462490 ], [ 24.433594, 56.365250 ], [ 21.972656, 56.365250 ], [ 21.972656, 56.267761 ], [ 21.621094, 56.267761 ], [ 21.621094, 56.170023 ], [ 21.269531, 56.170023 ], [ 21.269531, 56.072035 ], [ 20.917969, 56.072035 ], [ 20.917969, 56.944974 ], [ 21.093750, 56.944974 ], [ 21.093750, 57.136239 ], [ 21.269531, 57.136239 ], [ 21.269531, 57.326521 ], [ 21.445312, 57.326521 ], [ 21.445312, 57.421294 ], [ 21.621094, 57.421294 ], [ 21.621094, 57.515823 ], [ 21.972656, 57.515823 ], [ 21.972656, 57.610107 ], [ 22.148438, 57.610107 ], [ 22.148438, 57.704147 ], [ 22.675781, 57.704147 ], [ 22.675781, 57.515823 ], [ 22.851562, 57.515823 ], [ 22.851562, 57.326521 ], [ 23.027344, 57.326521 ], [ 23.027344, 57.136239 ], [ 23.203125, 57.136239 ], [ 23.203125, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.082031, 57.421294 ], [ 24.257812, 57.421294 ], [ 24.257812, 57.797944 ], [ 24.609375, 57.797944 ], [ 24.609375, 57.891497 ], [ 24.960938, 57.891497 ], [ 24.960938, 57.984808 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 59.623325 ], [ 26.015625, 59.534318 ], [ 26.542969, 59.534318 ], [ 26.542969, 59.445075 ], [ 27.949219, 59.445075 ], [ 27.949219, 59.355596 ], [ 28.125000, 59.355596 ], [ 28.125000, 59.175928 ], [ 27.949219, 59.175928 ], [ 27.949219, 58.995311 ], [ 27.773438, 58.995311 ], [ 27.773438, 58.904646 ], [ 27.597656, 58.904646 ], [ 27.597656, 58.722599 ], [ 27.421875, 58.722599 ], [ 27.421875, 58.447733 ], [ 27.597656, 58.447733 ], [ 27.597656, 57.984808 ], [ 27.773438, 57.984808 ], [ 27.773438, 57.704147 ], [ 27.597656, 57.704147 ], [ 27.597656, 57.610107 ], [ 27.421875, 57.610107 ], [ 27.421875, 57.515823 ], [ 26.367188, 57.515823 ], [ 26.367188, 57.610107 ], [ 26.191406, 57.610107 ], [ 26.191406, 57.704147 ], [ 25.839844, 57.704147 ], [ 25.839844, 57.797944 ], [ 25.664062, 57.797944 ], [ 25.664062, 57.891497 ], [ 25.312500, 57.891497 ], [ 25.312500, 57.984808 ], [ 24.960938, 57.984808 ], [ 24.960938, 57.891497 ], [ 24.609375, 57.891497 ], [ 24.609375, 57.797944 ], [ 24.257812, 57.797944 ], [ 24.257812, 58.077876 ], [ 24.433594, 58.077876 ], [ 24.433594, 58.263287 ], [ 23.906250, 58.263287 ], [ 23.906250, 58.355630 ], [ 23.730469, 58.355630 ], [ 23.730469, 58.447733 ], [ 23.554688, 58.447733 ], [ 23.554688, 58.539595 ], [ 23.378906, 58.539595 ], [ 23.378906, 59.175928 ], [ 23.730469, 59.175928 ], [ 23.730469, 59.265881 ], [ 24.082031, 59.265881 ], [ 24.082031, 59.355596 ], [ 24.433594, 59.355596 ], [ 24.433594, 59.445075 ], [ 24.960938, 59.445075 ], [ 24.960938, 59.534318 ], [ 25.664062, 59.534318 ], [ 25.664062, 59.623325 ], [ 26.015625, 59.623325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 59.623325 ], [ 26.015625, 59.534318 ], [ 26.542969, 59.534318 ], [ 26.542969, 59.445075 ], [ 27.597656, 59.445075 ], [ 27.597656, 59.534318 ], [ 27.949219, 59.534318 ], [ 27.949219, 59.445075 ], [ 28.125000, 59.445075 ], [ 28.125000, 59.265881 ], [ 27.949219, 59.265881 ], [ 27.949219, 59.085739 ], [ 27.773438, 59.085739 ], [ 27.773438, 58.995311 ], [ 27.597656, 58.995311 ], [ 27.597656, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 58.263287 ], [ 27.597656, 58.263287 ], [ 27.597656, 57.704147 ], [ 27.421875, 57.704147 ], [ 27.421875, 57.515823 ], [ 26.191406, 57.515823 ], [ 26.191406, 57.610107 ], [ 26.015625, 57.610107 ], [ 26.015625, 57.704147 ], [ 25.664062, 57.704147 ], [ 25.664062, 57.797944 ], [ 25.488281, 57.797944 ], [ 25.488281, 57.891497 ], [ 25.136719, 57.891497 ], [ 25.136719, 57.984808 ], [ 24.960938, 57.984808 ], [ 24.960938, 57.891497 ], [ 24.609375, 57.891497 ], [ 24.609375, 57.797944 ], [ 24.257812, 57.797944 ], [ 24.257812, 58.355630 ], [ 24.082031, 58.355630 ], [ 24.082031, 58.263287 ], [ 23.730469, 58.263287 ], [ 23.730469, 58.447733 ], [ 23.554688, 58.447733 ], [ 23.554688, 58.539595 ], [ 23.378906, 58.539595 ], [ 23.378906, 58.904646 ], [ 23.203125, 58.904646 ], [ 23.203125, 59.265881 ], [ 23.554688, 59.265881 ], [ 23.554688, 59.355596 ], [ 23.906250, 59.355596 ], [ 23.906250, 59.445075 ], [ 24.257812, 59.445075 ], [ 24.257812, 59.534318 ], [ 25.312500, 59.534318 ], [ 25.312500, 59.623325 ], [ 26.015625, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.785156, 56.365250 ], [ 24.785156, 56.267761 ], [ 24.960938, 56.267761 ], [ 24.960938, 56.170023 ], [ 25.136719, 56.170023 ], [ 25.136719, 56.072035 ], [ 25.488281, 56.072035 ], [ 25.488281, 55.973798 ], [ 25.664062, 55.973798 ], [ 25.664062, 55.875311 ], [ 25.839844, 55.875311 ], [ 25.839844, 55.776573 ], [ 26.191406, 55.776573 ], [ 26.191406, 55.677584 ], [ 26.367188, 55.677584 ], [ 26.367188, 55.578345 ], [ 26.542969, 55.578345 ], [ 26.542969, 55.078367 ], [ 26.367188, 55.078367 ], [ 26.367188, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.876607 ], [ 25.839844, 54.876607 ], [ 25.839844, 54.673831 ], [ 25.664062, 54.673831 ], [ 25.664062, 54.367759 ], [ 25.488281, 54.367759 ], [ 25.488281, 54.162434 ], [ 25.136719, 54.162434 ], [ 25.136719, 54.059388 ], [ 24.785156, 54.059388 ], [ 24.785156, 53.956086 ], [ 23.378906, 53.956086 ], [ 23.378906, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 54.265224 ], [ 22.851562, 54.265224 ], [ 22.851562, 54.367759 ], [ 22.675781, 54.367759 ], [ 22.675781, 54.876607 ], [ 22.324219, 54.876607 ], [ 22.324219, 54.977614 ], [ 21.972656, 54.977614 ], [ 21.972656, 55.078367 ], [ 21.445312, 55.078367 ], [ 21.445312, 55.178868 ], [ 21.269531, 55.178868 ], [ 21.269531, 55.578345 ], [ 21.093750, 55.578345 ], [ 21.093750, 56.072035 ], [ 21.445312, 56.072035 ], [ 21.445312, 56.170023 ], [ 21.796875, 56.170023 ], [ 21.796875, 56.267761 ], [ 22.148438, 56.267761 ], [ 22.148438, 56.365250 ], [ 22.851562, 56.365250 ], [ 22.851562, 56.267761 ], [ 24.433594, 56.267761 ], [ 24.433594, 56.365250 ], [ 24.785156, 56.365250 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.785156, 56.462490 ], [ 24.785156, 56.267761 ], [ 24.960938, 56.267761 ], [ 24.960938, 56.170023 ], [ 25.488281, 56.170023 ], [ 25.488281, 56.072035 ], [ 25.664062, 56.072035 ], [ 25.664062, 55.973798 ], [ 25.839844, 55.973798 ], [ 25.839844, 55.875311 ], [ 26.015625, 55.875311 ], [ 26.015625, 55.776573 ], [ 26.191406, 55.776573 ], [ 26.191406, 55.677584 ], [ 26.367188, 55.677584 ], [ 26.367188, 55.379110 ], [ 26.542969, 55.379110 ], [ 26.542969, 55.078367 ], [ 26.191406, 55.078367 ], [ 26.191406, 54.977614 ], [ 25.839844, 54.977614 ], [ 25.839844, 54.876607 ], [ 25.664062, 54.876607 ], [ 25.664062, 54.572062 ], [ 25.488281, 54.572062 ], [ 25.488281, 54.265224 ], [ 25.136719, 54.265224 ], [ 25.136719, 54.162434 ], [ 24.960938, 54.162434 ], [ 24.960938, 54.059388 ], [ 24.609375, 54.059388 ], [ 24.609375, 53.956086 ], [ 23.378906, 53.956086 ], [ 23.378906, 54.059388 ], [ 23.203125, 54.059388 ], [ 23.203125, 54.265224 ], [ 22.851562, 54.265224 ], [ 22.851562, 54.367759 ], [ 22.675781, 54.367759 ], [ 22.675781, 54.470038 ], [ 22.500000, 54.470038 ], [ 22.500000, 54.775346 ], [ 22.675781, 54.775346 ], [ 22.675781, 54.876607 ], [ 22.500000, 54.876607 ], [ 22.500000, 54.977614 ], [ 22.148438, 54.977614 ], [ 22.148438, 55.078367 ], [ 21.796875, 55.078367 ], [ 21.796875, 55.178868 ], [ 21.445312, 55.178868 ], [ 21.445312, 55.279115 ], [ 21.269531, 55.279115 ], [ 21.269531, 55.478853 ], [ 21.093750, 55.478853 ], [ 21.093750, 55.875311 ], [ 20.917969, 55.875311 ], [ 20.917969, 56.072035 ], [ 21.269531, 56.072035 ], [ 21.269531, 56.170023 ], [ 21.621094, 56.170023 ], [ 21.621094, 56.267761 ], [ 21.972656, 56.267761 ], [ 21.972656, 56.365250 ], [ 24.433594, 56.365250 ], [ 24.433594, 56.462490 ], [ 24.785156, 56.462490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, 56.072035 ], [ 28.476562, 55.973798 ], [ 28.828125, 55.973798 ], [ 28.828125, 55.875311 ], [ 29.179688, 55.875311 ], [ 29.179688, 55.776573 ], [ 29.355469, 55.776573 ], [ 29.355469, 55.677584 ], [ 29.707031, 55.677584 ], [ 29.707031, 55.776573 ], [ 30.058594, 55.776573 ], [ 30.058594, 55.677584 ], [ 30.585938, 55.677584 ], [ 30.585938, 55.578345 ], [ 30.937500, 55.578345 ], [ 30.937500, 54.876607 ], [ 30.761719, 54.876607 ], [ 30.761719, 54.673831 ], [ 30.937500, 54.673831 ], [ 30.937500, 54.470038 ], [ 31.113281, 54.470038 ], [ 31.113281, 54.367759 ], [ 31.289062, 54.367759 ], [ 31.289062, 54.162434 ], [ 31.464844, 54.162434 ], [ 31.464844, 54.059388 ], [ 31.640625, 54.059388 ], [ 31.640625, 53.956086 ], [ 31.816406, 53.956086 ], [ 31.816406, 53.748711 ], [ 31.992188, 53.748711 ], [ 31.992188, 53.644638 ], [ 32.343750, 53.644638 ], [ 32.343750, 53.540307 ], [ 32.519531, 53.540307 ], [ 32.519531, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.225768 ], [ 32.519531, 53.225768 ], [ 32.519531, 53.120405 ], [ 31.289062, 53.120405 ], [ 31.289062, 52.908902 ], [ 31.464844, 52.908902 ], [ 31.464844, 52.482780 ], [ 31.640625, 52.482780 ], [ 31.640625, 52.160455 ], [ 31.816406, 52.160455 ], [ 31.816406, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.944265 ], [ 30.761719, 51.944265 ], [ 30.761719, 51.835778 ], [ 30.585938, 51.835778 ], [ 30.585938, 51.289406 ], [ 30.234375, 51.289406 ], [ 30.234375, 51.399206 ], [ 29.179688, 51.399206 ], [ 29.179688, 51.508742 ], [ 28.828125, 51.508742 ], [ 28.828125, 51.399206 ], [ 28.476562, 51.399206 ], [ 28.476562, 51.508742 ], [ 28.300781, 51.508742 ], [ 28.300781, 51.618017 ], [ 27.070312, 51.618017 ], [ 27.070312, 51.727028 ], [ 26.542969, 51.727028 ], [ 26.542969, 51.835778 ], [ 25.664062, 51.835778 ], [ 25.664062, 51.944265 ], [ 25.136719, 51.944265 ], [ 25.136719, 51.835778 ], [ 24.609375, 51.835778 ], [ 24.609375, 51.727028 ], [ 24.257812, 51.727028 ], [ 24.257812, 51.618017 ], [ 23.554688, 51.618017 ], [ 23.554688, 52.160455 ], [ 23.378906, 52.160455 ], [ 23.378906, 52.375599 ], [ 23.203125, 52.375599 ], [ 23.203125, 52.482780 ], [ 23.378906, 52.482780 ], [ 23.378906, 52.589701 ], [ 23.730469, 52.589701 ], [ 23.730469, 53.225768 ], [ 23.554688, 53.225768 ], [ 23.554688, 53.956086 ], [ 24.785156, 53.956086 ], [ 24.785156, 54.059388 ], [ 25.136719, 54.059388 ], [ 25.136719, 54.162434 ], [ 25.488281, 54.162434 ], [ 25.488281, 54.367759 ], [ 25.664062, 54.367759 ], [ 25.664062, 54.673831 ], [ 25.839844, 54.673831 ], [ 25.839844, 54.876607 ], [ 26.015625, 54.876607 ], [ 26.015625, 54.977614 ], [ 26.367188, 54.977614 ], [ 26.367188, 55.078367 ], [ 26.542969, 55.078367 ], [ 26.542969, 55.578345 ], [ 26.718750, 55.578345 ], [ 26.718750, 55.677584 ], [ 27.070312, 55.677584 ], [ 27.070312, 55.776573 ], [ 27.246094, 55.776573 ], [ 27.246094, 55.875311 ], [ 27.597656, 55.875311 ], [ 27.597656, 55.973798 ], [ 27.773438, 55.973798 ], [ 27.773438, 56.072035 ], [ 28.476562, 56.072035 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.300781, 56.170023 ], [ 28.300781, 56.072035 ], [ 28.828125, 56.072035 ], [ 28.828125, 55.973798 ], [ 29.179688, 55.973798 ], [ 29.179688, 55.776573 ], [ 29.355469, 55.776573 ], [ 29.355469, 55.677584 ], [ 29.531250, 55.677584 ], [ 29.531250, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.677584 ], [ 30.585938, 55.677584 ], [ 30.585938, 55.578345 ], [ 30.761719, 55.578345 ], [ 30.761719, 55.379110 ], [ 30.937500, 55.379110 ], [ 30.937500, 55.078367 ], [ 30.761719, 55.078367 ], [ 30.761719, 54.876607 ], [ 30.585938, 54.876607 ], [ 30.585938, 54.775346 ], [ 30.761719, 54.775346 ], [ 30.761719, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 54.367759 ], [ 31.113281, 54.367759 ], [ 31.113281, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 54.059388 ], [ 31.640625, 54.059388 ], [ 31.640625, 53.748711 ], [ 31.992188, 53.748711 ], [ 31.992188, 53.644638 ], [ 32.343750, 53.644638 ], [ 32.343750, 53.540307 ], [ 32.519531, 53.540307 ], [ 32.519531, 53.435719 ], [ 32.695312, 53.435719 ], [ 32.695312, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.225768 ], [ 31.464844, 53.225768 ], [ 31.464844, 53.120405 ], [ 31.289062, 53.120405 ], [ 31.289062, 52.908902 ], [ 31.464844, 52.908902 ], [ 31.464844, 52.482780 ], [ 31.640625, 52.482780 ], [ 31.640625, 52.160455 ], [ 31.289062, 52.160455 ], [ 31.289062, 52.052490 ], [ 30.761719, 52.052490 ], [ 30.761719, 51.944265 ], [ 30.585938, 51.944265 ], [ 30.585938, 51.618017 ], [ 30.410156, 51.618017 ], [ 30.410156, 51.399206 ], [ 30.058594, 51.399206 ], [ 30.058594, 51.508742 ], [ 29.707031, 51.508742 ], [ 29.707031, 51.399206 ], [ 29.003906, 51.399206 ], [ 29.003906, 51.508742 ], [ 28.125000, 51.508742 ], [ 28.125000, 51.618017 ], [ 27.070312, 51.618017 ], [ 27.070312, 51.727028 ], [ 26.367188, 51.727028 ], [ 26.367188, 51.835778 ], [ 25.664062, 51.835778 ], [ 25.664062, 51.944265 ], [ 24.433594, 51.944265 ], [ 24.433594, 51.835778 ], [ 24.257812, 51.835778 ], [ 24.257812, 51.727028 ], [ 24.082031, 51.727028 ], [ 24.082031, 51.618017 ], [ 23.378906, 51.618017 ], [ 23.378906, 52.160455 ], [ 23.203125, 52.160455 ], [ 23.203125, 52.375599 ], [ 23.027344, 52.375599 ], [ 23.027344, 52.589701 ], [ 23.554688, 52.589701 ], [ 23.554688, 52.696361 ], [ 23.730469, 52.696361 ], [ 23.730469, 53.225768 ], [ 23.554688, 53.225768 ], [ 23.554688, 53.435719 ], [ 23.378906, 53.435719 ], [ 23.378906, 53.956086 ], [ 24.609375, 53.956086 ], [ 24.609375, 54.059388 ], [ 24.960938, 54.059388 ], [ 24.960938, 54.162434 ], [ 25.136719, 54.162434 ], [ 25.136719, 54.265224 ], [ 25.488281, 54.265224 ], [ 25.488281, 54.572062 ], [ 25.664062, 54.572062 ], [ 25.664062, 54.876607 ], [ 25.839844, 54.876607 ], [ 25.839844, 54.977614 ], [ 26.191406, 54.977614 ], [ 26.191406, 55.078367 ], [ 26.542969, 55.078367 ], [ 26.542969, 55.379110 ], [ 26.367188, 55.379110 ], [ 26.367188, 55.677584 ], [ 26.718750, 55.677584 ], [ 26.718750, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.875311 ], [ 27.421875, 55.875311 ], [ 27.421875, 55.973798 ], [ 27.773438, 55.973798 ], [ 27.773438, 56.072035 ], [ 28.125000, 56.072035 ], [ 28.125000, 56.170023 ], [ 28.300781, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.542969, 48.224673 ], [ 26.542969, 48.107431 ], [ 26.894531, 48.107431 ], [ 26.894531, 47.989922 ], [ 27.070312, 47.989922 ], [ 27.070312, 47.872144 ], [ 27.246094, 47.872144 ], [ 27.246094, 47.754098 ], [ 27.421875, 47.754098 ], [ 27.421875, 47.517201 ], [ 27.597656, 47.517201 ], [ 27.597656, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 47.040182 ], [ 27.949219, 47.040182 ], [ 27.949219, 46.800059 ], [ 28.125000, 46.800059 ], [ 28.125000, 45.706179 ], [ 28.300781, 45.706179 ], [ 28.300781, 45.336702 ], [ 29.003906, 45.336702 ], [ 29.003906, 45.460131 ], [ 29.179688, 45.460131 ], [ 29.179688, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 45.213004 ], [ 29.707031, 45.213004 ], [ 29.707031, 44.964798 ], [ 29.355469, 44.964798 ], [ 29.355469, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.590467 ], [ 28.652344, 44.590467 ], [ 28.652344, 43.961191 ], [ 28.476562, 43.961191 ], [ 28.476562, 43.707594 ], [ 28.125000, 43.707594 ], [ 28.125000, 43.834527 ], [ 27.773438, 43.834527 ], [ 27.773438, 43.961191 ], [ 27.421875, 43.961191 ], [ 27.421875, 44.087585 ], [ 27.246094, 44.087585 ], [ 27.246094, 44.213710 ], [ 27.070312, 44.213710 ], [ 27.070312, 44.087585 ], [ 26.367188, 44.087585 ], [ 26.367188, 43.961191 ], [ 26.015625, 43.961191 ], [ 26.015625, 43.834527 ], [ 25.664062, 43.834527 ], [ 25.664062, 43.707594 ], [ 23.554688, 43.707594 ], [ 23.554688, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.675781, 44.087585 ], [ 22.675781, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 44.465151 ], [ 22.675781, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.324219, 44.590467 ], [ 22.324219, 44.465151 ], [ 21.972656, 44.465151 ], [ 21.972656, 44.590467 ], [ 21.621094, 44.590467 ], [ 21.621094, 44.964798 ], [ 21.445312, 44.964798 ], [ 21.445312, 45.213004 ], [ 21.269531, 45.213004 ], [ 21.269531, 45.336702 ], [ 20.917969, 45.336702 ], [ 20.917969, 45.583290 ], [ 20.742188, 45.583290 ], [ 20.742188, 45.706179 ], [ 20.566406, 45.706179 ], [ 20.566406, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 45.951150 ], [ 20.214844, 45.951150 ], [ 20.214844, 46.073231 ], [ 20.566406, 46.073231 ], [ 20.566406, 46.195042 ], [ 20.917969, 46.195042 ], [ 20.917969, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.437857 ], [ 21.269531, 46.437857 ], [ 21.269531, 46.679594 ], [ 21.445312, 46.679594 ], [ 21.445312, 46.920255 ], [ 21.621094, 46.920255 ], [ 21.621094, 47.040182 ], [ 21.796875, 47.040182 ], [ 21.796875, 47.279229 ], [ 21.972656, 47.279229 ], [ 21.972656, 47.517201 ], [ 22.148438, 47.517201 ], [ 22.148438, 47.635784 ], [ 22.324219, 47.635784 ], [ 22.324219, 47.754098 ], [ 22.675781, 47.754098 ], [ 22.675781, 47.872144 ], [ 22.851562, 47.872144 ], [ 22.851562, 47.989922 ], [ 23.203125, 47.989922 ], [ 23.203125, 48.107431 ], [ 23.378906, 48.107431 ], [ 23.378906, 47.989922 ], [ 24.433594, 47.989922 ], [ 24.433594, 47.872144 ], [ 24.609375, 47.872144 ], [ 24.609375, 47.754098 ], [ 25.136719, 47.754098 ], [ 25.136719, 47.872144 ], [ 25.664062, 47.872144 ], [ 25.664062, 47.989922 ], [ 26.015625, 47.989922 ], [ 26.015625, 48.107431 ], [ 26.191406, 48.107431 ], [ 26.191406, 48.224673 ], [ 26.542969, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.224673 ], [ 26.894531, 47.989922 ], [ 27.070312, 47.989922 ], [ 27.070312, 47.754098 ], [ 27.246094, 47.754098 ], [ 27.246094, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.398349 ], [ 27.597656, 47.398349 ], [ 27.597656, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 47.040182 ], [ 27.949219, 47.040182 ], [ 27.949219, 46.920255 ], [ 28.125000, 46.920255 ], [ 28.125000, 46.195042 ], [ 27.949219, 46.195042 ], [ 27.949219, 45.706179 ], [ 28.125000, 45.706179 ], [ 28.125000, 45.460131 ], [ 28.476562, 45.460131 ], [ 28.476562, 45.336702 ], [ 28.828125, 45.336702 ], [ 28.828125, 45.460131 ], [ 29.355469, 45.460131 ], [ 29.355469, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 44.964798 ], [ 29.179688, 44.964798 ], [ 29.179688, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.590467 ], [ 28.652344, 44.590467 ], [ 28.652344, 43.961191 ], [ 28.476562, 43.961191 ], [ 28.476562, 43.707594 ], [ 28.125000, 43.707594 ], [ 28.125000, 43.834527 ], [ 27.773438, 43.834527 ], [ 27.773438, 43.961191 ], [ 27.421875, 43.961191 ], [ 27.421875, 44.087585 ], [ 27.070312, 44.087585 ], [ 27.070312, 44.213710 ], [ 26.894531, 44.213710 ], [ 26.894531, 44.087585 ], [ 26.367188, 44.087585 ], [ 26.367188, 43.961191 ], [ 26.015625, 43.961191 ], [ 26.015625, 43.834527 ], [ 25.664062, 43.834527 ], [ 25.664062, 43.707594 ], [ 24.609375, 43.707594 ], [ 24.609375, 43.834527 ], [ 23.554688, 43.834527 ], [ 23.554688, 43.961191 ], [ 23.203125, 43.961191 ], [ 23.203125, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 43.961191 ], [ 22.675781, 43.961191 ], [ 22.675781, 44.213710 ], [ 22.500000, 44.213710 ], [ 22.500000, 44.339565 ], [ 22.324219, 44.339565 ], [ 22.324219, 44.465151 ], [ 22.675781, 44.465151 ], [ 22.675781, 44.590467 ], [ 21.796875, 44.590467 ], [ 21.796875, 44.715514 ], [ 21.445312, 44.715514 ], [ 21.445312, 45.213004 ], [ 21.093750, 45.213004 ], [ 21.093750, 45.336702 ], [ 20.742188, 45.336702 ], [ 20.742188, 45.828799 ], [ 20.566406, 45.828799 ], [ 20.566406, 45.951150 ], [ 20.390625, 45.951150 ], [ 20.390625, 46.073231 ], [ 20.214844, 46.073231 ], [ 20.214844, 46.195042 ], [ 20.742188, 46.195042 ], [ 20.742188, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.558860 ], [ 21.269531, 46.558860 ], [ 21.269531, 46.679594 ], [ 21.445312, 46.679594 ], [ 21.445312, 46.920255 ], [ 21.621094, 46.920255 ], [ 21.621094, 47.159840 ], [ 21.796875, 47.159840 ], [ 21.796875, 47.517201 ], [ 21.972656, 47.517201 ], [ 21.972656, 47.754098 ], [ 22.324219, 47.754098 ], [ 22.324219, 47.872144 ], [ 22.675781, 47.872144 ], [ 22.675781, 47.989922 ], [ 23.027344, 47.989922 ], [ 23.027344, 48.107431 ], [ 23.203125, 48.107431 ], [ 23.203125, 47.989922 ], [ 24.257812, 47.989922 ], [ 24.257812, 47.872144 ], [ 24.609375, 47.872144 ], [ 24.609375, 47.754098 ], [ 24.960938, 47.754098 ], [ 24.960938, 47.872144 ], [ 25.136719, 47.872144 ], [ 25.136719, 47.989922 ], [ 26.015625, 47.989922 ], [ 26.015625, 48.107431 ], [ 26.191406, 48.107431 ], [ 26.191406, 48.224673 ], [ 26.894531, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.246094, 44.213710 ], [ 27.246094, 44.087585 ], [ 27.421875, 44.087585 ], [ 27.421875, 43.961191 ], [ 27.773438, 43.961191 ], [ 27.773438, 43.834527 ], [ 28.125000, 43.834527 ], [ 28.125000, 43.707594 ], [ 28.476562, 43.707594 ], [ 28.476562, 43.580391 ], [ 28.300781, 43.580391 ], [ 28.300781, 43.325178 ], [ 28.125000, 43.325178 ], [ 28.125000, 43.197167 ], [ 27.949219, 43.197167 ], [ 27.949219, 42.940339 ], [ 27.773438, 42.940339 ], [ 27.773438, 42.682435 ], [ 27.597656, 42.682435 ], [ 27.597656, 42.423457 ], [ 27.773438, 42.423457 ], [ 27.773438, 42.163403 ], [ 27.949219, 42.163403 ], [ 27.949219, 42.032974 ], [ 27.421875, 42.032974 ], [ 27.421875, 42.163403 ], [ 27.070312, 42.163403 ], [ 27.070312, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 41.902277 ], [ 26.367188, 41.902277 ], [ 26.367188, 41.771312 ], [ 26.191406, 41.771312 ], [ 26.191406, 41.376809 ], [ 25.839844, 41.376809 ], [ 25.839844, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.376809 ], [ 23.906250, 41.376809 ], [ 23.906250, 41.244772 ], [ 23.203125, 41.244772 ], [ 23.203125, 41.376809 ], [ 23.027344, 41.376809 ], [ 23.027344, 41.640078 ], [ 22.851562, 41.640078 ], [ 22.851562, 42.032974 ], [ 22.675781, 42.032974 ], [ 22.675781, 42.163403 ], [ 22.324219, 42.163403 ], [ 22.324219, 42.293564 ], [ 22.500000, 42.293564 ], [ 22.500000, 42.682435 ], [ 22.675781, 42.682435 ], [ 22.675781, 42.940339 ], [ 22.851562, 42.940339 ], [ 22.851562, 43.068888 ], [ 23.027344, 43.068888 ], [ 23.027344, 43.197167 ], [ 22.851562, 43.197167 ], [ 22.851562, 43.325178 ], [ 22.675781, 43.325178 ], [ 22.675781, 43.452919 ], [ 22.500000, 43.452919 ], [ 22.500000, 43.707594 ], [ 22.324219, 43.707594 ], [ 22.324219, 43.961191 ], [ 22.500000, 43.961191 ], [ 22.500000, 44.087585 ], [ 22.851562, 44.087585 ], [ 22.851562, 43.834527 ], [ 23.554688, 43.834527 ], [ 23.554688, 43.707594 ], [ 25.664062, 43.707594 ], [ 25.664062, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.961191 ], [ 26.367188, 43.961191 ], [ 26.367188, 44.087585 ], [ 27.070312, 44.087585 ], [ 27.070312, 44.213710 ], [ 27.246094, 44.213710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 44.213710 ], [ 27.070312, 44.087585 ], [ 27.421875, 44.087585 ], [ 27.421875, 43.961191 ], [ 27.773438, 43.961191 ], [ 27.773438, 43.834527 ], [ 28.125000, 43.834527 ], [ 28.125000, 43.707594 ], [ 28.476562, 43.707594 ], [ 28.476562, 43.580391 ], [ 28.300781, 43.580391 ], [ 28.300781, 43.452919 ], [ 28.125000, 43.452919 ], [ 28.125000, 43.325178 ], [ 27.949219, 43.325178 ], [ 27.949219, 43.068888 ], [ 27.773438, 43.068888 ], [ 27.773438, 42.811522 ], [ 27.597656, 42.811522 ], [ 27.597656, 42.423457 ], [ 27.773438, 42.423457 ], [ 27.773438, 42.163403 ], [ 27.949219, 42.163403 ], [ 27.949219, 42.032974 ], [ 27.421875, 42.032974 ], [ 27.421875, 42.163403 ], [ 26.894531, 42.163403 ], [ 26.894531, 42.032974 ], [ 26.367188, 42.032974 ], [ 26.367188, 41.902277 ], [ 26.015625, 41.902277 ], [ 26.015625, 41.376809 ], [ 25.664062, 41.376809 ], [ 25.664062, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.433594, 41.508577 ], [ 24.433594, 41.640078 ], [ 24.257812, 41.640078 ], [ 24.257812, 41.508577 ], [ 23.906250, 41.508577 ], [ 23.906250, 41.376809 ], [ 22.851562, 41.376809 ], [ 22.851562, 42.032974 ], [ 22.675781, 42.032974 ], [ 22.675781, 42.163403 ], [ 22.500000, 42.163403 ], [ 22.500000, 42.293564 ], [ 22.324219, 42.293564 ], [ 22.324219, 42.423457 ], [ 22.500000, 42.423457 ], [ 22.500000, 42.553080 ], [ 22.324219, 42.553080 ], [ 22.324219, 42.811522 ], [ 22.500000, 42.811522 ], [ 22.500000, 42.940339 ], [ 22.675781, 42.940339 ], [ 22.675781, 43.197167 ], [ 22.851562, 43.197167 ], [ 22.851562, 43.325178 ], [ 22.675781, 43.325178 ], [ 22.675781, 43.580391 ], [ 22.500000, 43.580391 ], [ 22.500000, 43.834527 ], [ 22.324219, 43.834527 ], [ 22.324219, 44.213710 ], [ 22.675781, 44.213710 ], [ 22.675781, 43.961191 ], [ 22.851562, 43.961191 ], [ 22.851562, 43.834527 ], [ 23.203125, 43.834527 ], [ 23.203125, 43.961191 ], [ 23.554688, 43.961191 ], [ 23.554688, 43.834527 ], [ 24.609375, 43.834527 ], [ 24.609375, 43.707594 ], [ 25.664062, 43.707594 ], [ 25.664062, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.961191 ], [ 26.367188, 43.961191 ], [ 26.367188, 44.087585 ], [ 26.894531, 44.087585 ], [ 26.894531, 44.213710 ], [ 27.070312, 44.213710 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.597656, 48.458352 ], [ 27.597656, 48.341646 ], [ 27.773438, 48.341646 ], [ 27.773438, 48.224673 ], [ 28.125000, 48.224673 ], [ 28.125000, 48.107431 ], [ 28.652344, 48.107431 ], [ 28.652344, 47.989922 ], [ 29.003906, 47.989922 ], [ 29.003906, 47.872144 ], [ 29.179688, 47.872144 ], [ 29.179688, 47.635784 ], [ 29.003906, 47.635784 ], [ 29.003906, 47.398349 ], [ 29.355469, 47.398349 ], [ 29.355469, 47.159840 ], [ 29.531250, 47.159840 ], [ 29.531250, 46.800059 ], [ 29.707031, 46.800059 ], [ 29.707031, 46.679594 ], [ 29.882812, 46.679594 ], [ 29.882812, 46.437857 ], [ 30.058594, 46.437857 ], [ 30.058594, 46.316584 ], [ 29.355469, 46.316584 ], [ 29.355469, 46.437857 ], [ 28.828125, 46.437857 ], [ 28.828125, 46.316584 ], [ 29.003906, 46.316584 ], [ 29.003906, 46.195042 ], [ 28.828125, 46.195042 ], [ 28.828125, 45.951150 ], [ 28.652344, 45.951150 ], [ 28.652344, 45.706179 ], [ 28.476562, 45.706179 ], [ 28.476562, 45.460131 ], [ 28.300781, 45.460131 ], [ 28.300781, 45.706179 ], [ 28.125000, 45.706179 ], [ 28.125000, 46.800059 ], [ 27.949219, 46.800059 ], [ 27.949219, 47.040182 ], [ 27.773438, 47.040182 ], [ 27.773438, 47.279229 ], [ 27.597656, 47.279229 ], [ 27.597656, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.754098 ], [ 27.246094, 47.754098 ], [ 27.246094, 47.872144 ], [ 27.070312, 47.872144 ], [ 27.070312, 47.989922 ], [ 26.894531, 47.989922 ], [ 26.894531, 48.107431 ], [ 26.542969, 48.107431 ], [ 26.542969, 48.224673 ], [ 26.894531, 48.224673 ], [ 26.894531, 48.341646 ], [ 27.421875, 48.341646 ], [ 27.421875, 48.458352 ], [ 27.597656, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 48.574790 ], [ 27.421875, 48.458352 ], [ 27.597656, 48.458352 ], [ 27.597656, 48.341646 ], [ 27.949219, 48.341646 ], [ 27.949219, 48.224673 ], [ 28.652344, 48.224673 ], [ 28.652344, 48.107431 ], [ 28.828125, 48.107431 ], [ 28.828125, 47.872144 ], [ 29.003906, 47.872144 ], [ 29.003906, 47.398349 ], [ 29.355469, 47.398349 ], [ 29.355469, 47.159840 ], [ 29.531250, 47.159840 ], [ 29.531250, 46.920255 ], [ 29.707031, 46.920255 ], [ 29.707031, 46.679594 ], [ 29.882812, 46.679594 ], [ 29.882812, 46.558860 ], [ 29.707031, 46.558860 ], [ 29.707031, 46.437857 ], [ 28.828125, 46.437857 ], [ 28.828125, 46.073231 ], [ 28.652344, 46.073231 ], [ 28.652344, 45.828799 ], [ 28.476562, 45.828799 ], [ 28.476562, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 45.706179 ], [ 27.949219, 45.706179 ], [ 27.949219, 46.195042 ], [ 28.125000, 46.195042 ], [ 28.125000, 46.920255 ], [ 27.949219, 46.920255 ], [ 27.949219, 47.040182 ], [ 27.773438, 47.040182 ], [ 27.773438, 47.279229 ], [ 27.597656, 47.279229 ], [ 27.597656, 47.398349 ], [ 27.421875, 47.398349 ], [ 27.421875, 47.517201 ], [ 27.246094, 47.517201 ], [ 27.246094, 47.754098 ], [ 27.070312, 47.754098 ], [ 27.070312, 47.989922 ], [ 26.894531, 47.989922 ], [ 26.894531, 48.224673 ], [ 26.542969, 48.224673 ], [ 26.542969, 48.341646 ], [ 26.718750, 48.341646 ], [ 26.718750, 48.458352 ], [ 27.246094, 48.458352 ], [ 27.246094, 48.574790 ], [ 27.421875, 48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.375599 ], [ 33.750000, 52.268157 ], [ 33.925781, 52.268157 ], [ 33.925781, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.944265 ], [ 34.277344, 51.944265 ], [ 34.277344, 51.727028 ], [ 34.453125, 51.727028 ], [ 34.453125, 51.618017 ], [ 34.101562, 51.618017 ], [ 34.101562, 51.399206 ], [ 34.277344, 51.399206 ], [ 34.277344, 51.289406 ], [ 34.453125, 51.289406 ], [ 34.453125, 51.179343 ], [ 34.980469, 51.179343 ], [ 34.980469, 51.069017 ], [ 35.156250, 51.069017 ], [ 35.156250, 50.847573 ], [ 35.332031, 50.847573 ], [ 35.332031, 50.513427 ], [ 35.683594, 50.513427 ], [ 35.683594, 50.401515 ], [ 36.035156, 50.401515 ], [ 36.035156, 50.289339 ], [ 36.386719, 50.289339 ], [ 36.386719, 50.176898 ], [ 36.914062, 50.176898 ], [ 36.914062, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 50.401515 ], [ 37.441406, 50.401515 ], [ 37.441406, 50.289339 ], [ 37.617188, 50.289339 ], [ 37.617188, 50.176898 ], [ 37.792969, 50.176898 ], [ 37.792969, 49.951220 ], [ 38.847656, 49.951220 ], [ 38.847656, 49.837982 ], [ 39.199219, 49.837982 ], [ 39.199219, 49.724479 ], [ 39.726562, 49.724479 ], [ 39.726562, 49.610710 ], [ 40.078125, 49.610710 ], [ 40.078125, 49.152970 ], [ 39.902344, 49.152970 ], [ 39.902344, 48.922499 ], [ 39.726562, 48.922499 ], [ 39.726562, 48.458352 ], [ 39.902344, 48.458352 ], [ 39.902344, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 47.872144 ], [ 38.847656, 47.872144 ], [ 38.847656, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.635784 ], [ 38.496094, 47.635784 ], [ 38.496094, 47.517201 ], [ 38.320312, 47.517201 ], [ 38.320312, 47.279229 ], [ 38.144531, 47.279229 ], [ 38.144531, 47.159840 ], [ 37.968750, 47.159840 ], [ 37.968750, 47.040182 ], [ 37.441406, 47.040182 ], [ 37.441406, 46.920255 ], [ 37.265625, 46.920255 ], [ 37.265625, 46.800059 ], [ 36.914062, 46.800059 ], [ 36.914062, 46.679594 ], [ 35.859375, 46.679594 ], [ 35.859375, 46.558860 ], [ 35.507812, 46.558860 ], [ 35.507812, 46.437857 ], [ 35.156250, 46.437857 ], [ 35.156250, 46.316584 ], [ 34.980469, 46.316584 ], [ 34.980469, 45.583290 ], [ 35.332031, 45.583290 ], [ 35.332031, 45.460131 ], [ 36.562500, 45.460131 ], [ 36.562500, 45.213004 ], [ 36.386719, 45.213004 ], [ 36.386719, 45.089036 ], [ 35.859375, 45.089036 ], [ 35.859375, 44.964798 ], [ 35.156250, 44.964798 ], [ 35.156250, 44.840291 ], [ 34.804688, 44.840291 ], [ 34.804688, 44.715514 ], [ 34.628906, 44.715514 ], [ 34.628906, 44.590467 ], [ 34.453125, 44.590467 ], [ 34.453125, 44.465151 ], [ 34.101562, 44.465151 ], [ 34.101562, 44.339565 ], [ 33.750000, 44.339565 ], [ 33.750000, 44.465151 ], [ 33.398438, 44.465151 ], [ 33.398438, 44.840291 ], [ 33.574219, 44.840291 ], [ 33.574219, 45.089036 ], [ 33.222656, 45.089036 ], [ 33.222656, 45.213004 ], [ 32.695312, 45.213004 ], [ 32.695312, 45.460131 ], [ 32.871094, 45.460131 ], [ 32.871094, 45.583290 ], [ 33.222656, 45.583290 ], [ 33.222656, 45.706179 ], [ 33.574219, 45.706179 ], [ 33.574219, 45.828799 ], [ 33.398438, 45.828799 ], [ 33.398438, 45.951150 ], [ 33.222656, 45.951150 ], [ 33.222656, 46.073231 ], [ 32.695312, 46.073231 ], [ 32.695312, 46.195042 ], [ 31.992188, 46.195042 ], [ 31.992188, 46.316584 ], [ 31.816406, 46.316584 ], [ 31.816406, 46.437857 ], [ 31.640625, 46.437857 ], [ 31.640625, 46.679594 ], [ 31.289062, 46.679594 ], [ 31.289062, 46.558860 ], [ 30.761719, 46.558860 ], [ 30.761719, 46.437857 ], [ 30.585938, 46.437857 ], [ 30.585938, 46.195042 ], [ 30.410156, 46.195042 ], [ 30.410156, 45.951150 ], [ 30.234375, 45.951150 ], [ 30.234375, 45.828799 ], [ 30.058594, 45.828799 ], [ 30.058594, 45.706179 ], [ 29.882812, 45.706179 ], [ 29.882812, 45.460131 ], [ 29.707031, 45.460131 ], [ 29.707031, 45.336702 ], [ 29.179688, 45.336702 ], [ 29.179688, 45.460131 ], [ 29.003906, 45.460131 ], [ 29.003906, 45.336702 ], [ 28.300781, 45.336702 ], [ 28.300781, 45.460131 ], [ 28.476562, 45.460131 ], [ 28.476562, 45.706179 ], [ 28.652344, 45.706179 ], [ 28.652344, 45.951150 ], [ 28.828125, 45.951150 ], [ 28.828125, 46.195042 ], [ 29.003906, 46.195042 ], [ 29.003906, 46.316584 ], [ 28.828125, 46.316584 ], [ 28.828125, 46.437857 ], [ 29.355469, 46.437857 ], [ 29.355469, 46.316584 ], [ 30.058594, 46.316584 ], [ 30.058594, 46.437857 ], [ 29.882812, 46.437857 ], [ 29.882812, 46.679594 ], [ 29.707031, 46.679594 ], [ 29.707031, 46.800059 ], [ 29.531250, 46.800059 ], [ 29.531250, 47.159840 ], [ 29.355469, 47.159840 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.398349 ], [ 29.003906, 47.635784 ], [ 29.179688, 47.635784 ], [ 29.179688, 47.872144 ], [ 29.003906, 47.872144 ], [ 29.003906, 47.989922 ], [ 28.652344, 47.989922 ], [ 28.652344, 48.107431 ], [ 28.125000, 48.107431 ], [ 28.125000, 48.224673 ], [ 27.773438, 48.224673 ], [ 27.773438, 48.341646 ], [ 27.597656, 48.341646 ], [ 27.597656, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 48.341646 ], [ 26.894531, 48.341646 ], [ 26.894531, 48.224673 ], [ 26.191406, 48.224673 ], [ 26.191406, 48.107431 ], [ 26.015625, 48.107431 ], [ 26.015625, 47.989922 ], [ 25.664062, 47.989922 ], [ 25.664062, 47.872144 ], [ 25.136719, 47.872144 ], [ 25.136719, 47.754098 ], [ 24.609375, 47.754098 ], [ 24.609375, 47.872144 ], [ 24.433594, 47.872144 ], [ 24.433594, 47.989922 ], [ 23.378906, 47.989922 ], [ 23.378906, 48.107431 ], [ 23.203125, 48.107431 ], [ 23.203125, 47.989922 ], [ 22.851562, 47.989922 ], [ 22.851562, 47.872144 ], [ 22.675781, 47.872144 ], [ 22.675781, 48.107431 ], [ 22.500000, 48.107431 ], [ 22.500000, 48.224673 ], [ 22.324219, 48.224673 ], [ 22.324219, 48.341646 ], [ 22.148438, 48.341646 ], [ 22.148438, 48.574790 ], [ 22.324219, 48.574790 ], [ 22.324219, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 49.037868 ], [ 22.851562, 49.037868 ], [ 22.851562, 49.152970 ], [ 22.675781, 49.152970 ], [ 22.675781, 49.382373 ], [ 22.500000, 49.382373 ], [ 22.500000, 49.496675 ], [ 22.675781, 49.496675 ], [ 22.675781, 49.724479 ], [ 22.851562, 49.724479 ], [ 22.851562, 49.837982 ], [ 23.027344, 49.837982 ], [ 23.027344, 49.951220 ], [ 23.203125, 49.951220 ], [ 23.203125, 50.176898 ], [ 23.378906, 50.176898 ], [ 23.378906, 50.289339 ], [ 23.730469, 50.289339 ], [ 23.730469, 50.401515 ], [ 23.906250, 50.401515 ], [ 23.906250, 50.513427 ], [ 24.082031, 50.513427 ], [ 24.082031, 50.847573 ], [ 23.906250, 50.847573 ], [ 23.906250, 51.179343 ], [ 23.730469, 51.179343 ], [ 23.730469, 51.399206 ], [ 23.554688, 51.399206 ], [ 23.554688, 51.618017 ], [ 24.257812, 51.618017 ], [ 24.257812, 51.727028 ], [ 24.609375, 51.727028 ], [ 24.609375, 51.835778 ], [ 25.136719, 51.835778 ], [ 25.136719, 51.944265 ], [ 25.664062, 51.944265 ], [ 25.664062, 51.835778 ], [ 26.542969, 51.835778 ], [ 26.542969, 51.727028 ], [ 27.070312, 51.727028 ], [ 27.070312, 51.618017 ], [ 28.300781, 51.618017 ], [ 28.300781, 51.508742 ], [ 28.476562, 51.508742 ], [ 28.476562, 51.399206 ], [ 28.828125, 51.399206 ], [ 28.828125, 51.508742 ], [ 29.179688, 51.508742 ], [ 29.179688, 51.399206 ], [ 30.234375, 51.399206 ], [ 30.234375, 51.289406 ], [ 30.585938, 51.289406 ], [ 30.585938, 51.835778 ], [ 30.761719, 51.835778 ], [ 30.761719, 51.944265 ], [ 30.937500, 51.944265 ], [ 30.937500, 52.052490 ], [ 32.167969, 52.052490 ], [ 32.167969, 52.160455 ], [ 32.343750, 52.160455 ], [ 32.343750, 52.268157 ], [ 33.398438, 52.268157 ], [ 33.398438, 52.375599 ], [ 33.750000, 52.375599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.375599 ], [ 33.750000, 52.268157 ], [ 33.925781, 52.268157 ], [ 33.925781, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.835778 ], [ 34.277344, 51.835778 ], [ 34.277344, 51.727028 ], [ 34.101562, 51.727028 ], [ 34.101562, 51.289406 ], [ 34.980469, 51.289406 ], [ 34.980469, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.958427 ], [ 35.332031, 50.958427 ], [ 35.332031, 50.625073 ], [ 35.507812, 50.625073 ], [ 35.507812, 50.513427 ], [ 35.859375, 50.513427 ], [ 35.859375, 50.401515 ], [ 36.210938, 50.401515 ], [ 36.210938, 50.289339 ], [ 37.089844, 50.289339 ], [ 37.089844, 50.401515 ], [ 37.265625, 50.401515 ], [ 37.265625, 50.289339 ], [ 37.441406, 50.289339 ], [ 37.441406, 50.176898 ], [ 37.617188, 50.176898 ], [ 37.617188, 50.064192 ], [ 37.792969, 50.064192 ], [ 37.792969, 49.951220 ], [ 38.671875, 49.951220 ], [ 38.671875, 49.837982 ], [ 39.023438, 49.837982 ], [ 39.023438, 49.724479 ], [ 39.550781, 49.724479 ], [ 39.550781, 49.610710 ], [ 39.902344, 49.610710 ], [ 39.902344, 49.496675 ], [ 40.078125, 49.496675 ], [ 40.078125, 49.267805 ], [ 39.902344, 49.267805 ], [ 39.902344, 49.037868 ], [ 39.726562, 49.037868 ], [ 39.726562, 48.806863 ], [ 39.550781, 48.806863 ], [ 39.550781, 48.574790 ], [ 39.726562, 48.574790 ], [ 39.726562, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 47.872144 ], [ 38.671875, 47.872144 ], [ 38.671875, 47.754098 ], [ 38.320312, 47.754098 ], [ 38.320312, 47.635784 ], [ 38.144531, 47.635784 ], [ 38.144531, 47.159840 ], [ 37.792969, 47.159840 ], [ 37.792969, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.920255 ], [ 36.914062, 46.920255 ], [ 36.914062, 46.800059 ], [ 36.386719, 46.800059 ], [ 36.386719, 46.679594 ], [ 35.683594, 46.679594 ], [ 35.683594, 46.558860 ], [ 35.332031, 46.558860 ], [ 35.332031, 46.437857 ], [ 34.980469, 46.437857 ], [ 34.980469, 46.316584 ], [ 34.804688, 46.316584 ], [ 34.804688, 45.951150 ], [ 34.980469, 45.951150 ], [ 34.980469, 45.583290 ], [ 35.332031, 45.583290 ], [ 35.332031, 45.460131 ], [ 36.035156, 45.460131 ], [ 36.035156, 45.583290 ], [ 36.386719, 45.583290 ], [ 36.386719, 45.336702 ], [ 36.210938, 45.336702 ], [ 36.210938, 45.213004 ], [ 36.035156, 45.213004 ], [ 36.035156, 45.089036 ], [ 35.507812, 45.089036 ], [ 35.507812, 44.964798 ], [ 35.156250, 44.964798 ], [ 35.156250, 44.840291 ], [ 34.804688, 44.840291 ], [ 34.804688, 44.715514 ], [ 34.453125, 44.715514 ], [ 34.453125, 44.590467 ], [ 34.101562, 44.590467 ], [ 34.101562, 44.465151 ], [ 33.398438, 44.465151 ], [ 33.398438, 44.590467 ], [ 33.222656, 44.590467 ], [ 33.222656, 44.840291 ], [ 33.398438, 44.840291 ], [ 33.398438, 45.089036 ], [ 33.046875, 45.089036 ], [ 33.046875, 45.213004 ], [ 32.519531, 45.213004 ], [ 32.519531, 45.336702 ], [ 32.343750, 45.336702 ], [ 32.343750, 45.460131 ], [ 32.519531, 45.460131 ], [ 32.519531, 45.583290 ], [ 32.871094, 45.583290 ], [ 32.871094, 45.706179 ], [ 33.222656, 45.706179 ], [ 33.222656, 45.828799 ], [ 33.574219, 45.828799 ], [ 33.574219, 45.951150 ], [ 33.398438, 45.951150 ], [ 33.398438, 46.073231 ], [ 33.222656, 46.073231 ], [ 33.222656, 46.195042 ], [ 32.695312, 46.195042 ], [ 32.695312, 46.316584 ], [ 31.992188, 46.316584 ], [ 31.992188, 46.437857 ], [ 31.640625, 46.437857 ], [ 31.640625, 46.800059 ], [ 31.289062, 46.800059 ], [ 31.289062, 46.679594 ], [ 30.585938, 46.679594 ], [ 30.585938, 46.437857 ], [ 30.410156, 46.437857 ], [ 30.410156, 46.195042 ], [ 30.234375, 46.195042 ], [ 30.234375, 45.951150 ], [ 30.058594, 45.951150 ], [ 30.058594, 45.706179 ], [ 29.882812, 45.706179 ], [ 29.882812, 45.583290 ], [ 29.707031, 45.583290 ], [ 29.707031, 45.336702 ], [ 29.355469, 45.336702 ], [ 29.355469, 45.460131 ], [ 28.828125, 45.460131 ], [ 28.828125, 45.336702 ], [ 28.476562, 45.336702 ], [ 28.476562, 45.460131 ], [ 28.125000, 45.460131 ], [ 28.125000, 45.583290 ], [ 28.476562, 45.583290 ], [ 28.476562, 45.828799 ], [ 28.652344, 45.828799 ], [ 28.652344, 46.073231 ], [ 28.828125, 46.073231 ], [ 28.828125, 46.437857 ], [ 29.707031, 46.437857 ], [ 29.707031, 46.558860 ], [ 29.882812, 46.558860 ], [ 29.882812, 46.679594 ], [ 29.707031, 46.679594 ], [ 29.707031, 46.920255 ], [ 29.531250, 46.920255 ], [ 29.531250, 47.159840 ], [ 29.355469, 47.159840 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.398349 ], [ 29.003906, 47.872144 ], [ 28.828125, 47.872144 ], [ 28.828125, 48.107431 ], [ 28.652344, 48.107431 ], [ 28.652344, 48.224673 ], [ 27.949219, 48.224673 ], [ 27.949219, 48.341646 ], [ 27.597656, 48.341646 ], [ 27.597656, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 48.574790 ], [ 27.246094, 48.574790 ], [ 27.246094, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 48.341646 ], [ 26.542969, 48.341646 ], [ 26.542969, 48.224673 ], [ 26.191406, 48.224673 ], [ 26.191406, 48.107431 ], [ 26.015625, 48.107431 ], [ 26.015625, 47.989922 ], [ 25.136719, 47.989922 ], [ 25.136719, 47.872144 ], [ 24.960938, 47.872144 ], [ 24.960938, 47.754098 ], [ 24.609375, 47.754098 ], [ 24.609375, 47.872144 ], [ 24.257812, 47.872144 ], [ 24.257812, 47.989922 ], [ 23.203125, 47.989922 ], [ 23.203125, 48.107431 ], [ 23.027344, 48.107431 ], [ 23.027344, 47.989922 ], [ 22.675781, 47.989922 ], [ 22.675781, 48.107431 ], [ 22.500000, 48.107431 ], [ 22.500000, 48.224673 ], [ 22.324219, 48.224673 ], [ 22.324219, 48.341646 ], [ 21.972656, 48.341646 ], [ 21.972656, 48.690960 ], [ 22.148438, 48.690960 ], [ 22.148438, 48.922499 ], [ 22.324219, 48.922499 ], [ 22.324219, 49.037868 ], [ 22.675781, 49.037868 ], [ 22.675781, 49.267805 ], [ 22.500000, 49.267805 ], [ 22.500000, 49.496675 ], [ 22.675781, 49.496675 ], [ 22.675781, 49.724479 ], [ 22.851562, 49.724479 ], [ 22.851562, 49.951220 ], [ 23.027344, 49.951220 ], [ 23.027344, 50.064192 ], [ 23.203125, 50.064192 ], [ 23.203125, 50.289339 ], [ 23.378906, 50.289339 ], [ 23.378906, 50.401515 ], [ 23.730469, 50.401515 ], [ 23.730469, 50.513427 ], [ 23.906250, 50.513427 ], [ 23.906250, 50.847573 ], [ 23.730469, 50.847573 ], [ 23.730469, 51.179343 ], [ 23.554688, 51.179343 ], [ 23.554688, 51.399206 ], [ 23.378906, 51.399206 ], [ 23.378906, 51.618017 ], [ 24.082031, 51.618017 ], [ 24.082031, 51.727028 ], [ 24.257812, 51.727028 ], [ 24.257812, 51.835778 ], [ 24.433594, 51.835778 ], [ 24.433594, 51.944265 ], [ 25.664062, 51.944265 ], [ 25.664062, 51.835778 ], [ 26.367188, 51.835778 ], [ 26.367188, 51.727028 ], [ 27.070312, 51.727028 ], [ 27.070312, 51.618017 ], [ 28.125000, 51.618017 ], [ 28.125000, 51.508742 ], [ 29.003906, 51.508742 ], [ 29.003906, 51.399206 ], [ 29.707031, 51.399206 ], [ 29.707031, 51.508742 ], [ 30.058594, 51.508742 ], [ 30.058594, 51.399206 ], [ 30.410156, 51.399206 ], [ 30.410156, 51.618017 ], [ 30.585938, 51.618017 ], [ 30.585938, 51.944265 ], [ 30.761719, 51.944265 ], [ 30.761719, 52.052490 ], [ 31.289062, 52.052490 ], [ 31.289062, 52.160455 ], [ 32.167969, 52.160455 ], [ 32.167969, 52.268157 ], [ 33.398438, 52.268157 ], [ 33.398438, 52.375599 ], [ 33.750000, 52.375599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, 43.580391 ], [ 40.253906, 43.452919 ], [ 40.605469, 43.452919 ], [ 40.605469, 43.325178 ], [ 41.484375, 43.325178 ], [ 41.484375, 43.197167 ], [ 42.363281, 43.197167 ], [ 42.363281, 43.068888 ], [ 42.714844, 43.068888 ], [ 42.714844, 42.940339 ], [ 43.066406, 42.940339 ], [ 43.066406, 42.811522 ], [ 43.417969, 42.811522 ], [ 43.417969, 42.682435 ], [ 43.769531, 42.682435 ], [ 43.769531, 42.553080 ], [ 44.296875, 42.553080 ], [ 44.296875, 42.682435 ], [ 44.824219, 42.682435 ], [ 44.824219, 42.553080 ], [ 45.527344, 42.553080 ], [ 45.527344, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 42.032974 ], [ 45.878906, 42.032974 ], [ 45.878906, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.472656, 41.244772 ], [ 44.472656, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.890625, 41.376809 ], [ 42.890625, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 42.187500, 41.640078 ], [ 42.187500, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.640078 ], [ 41.660156, 41.640078 ], [ 41.660156, 42.293564 ], [ 41.484375, 42.293564 ], [ 41.484375, 42.682435 ], [ 41.308594, 42.682435 ], [ 41.308594, 42.811522 ], [ 41.132812, 42.811522 ], [ 41.132812, 42.940339 ], [ 40.957031, 42.940339 ], [ 40.957031, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.325178 ], [ 39.902344, 43.325178 ], [ 39.902344, 43.452919 ], [ 40.078125, 43.452919 ], [ 40.078125, 43.580391 ], [ 40.253906, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, 43.580391 ], [ 40.253906, 43.452919 ], [ 41.484375, 43.452919 ], [ 41.484375, 43.325178 ], [ 42.363281, 43.325178 ], [ 42.363281, 43.197167 ], [ 42.714844, 43.197167 ], [ 42.714844, 43.068888 ], [ 43.066406, 43.068888 ], [ 43.066406, 42.940339 ], [ 43.417969, 42.940339 ], [ 43.417969, 42.811522 ], [ 43.593750, 42.811522 ], [ 43.593750, 42.682435 ], [ 43.769531, 42.682435 ], [ 43.769531, 42.553080 ], [ 44.121094, 42.553080 ], [ 44.121094, 42.682435 ], [ 44.472656, 42.682435 ], [ 44.472656, 42.811522 ], [ 44.648438, 42.811522 ], [ 44.648438, 42.682435 ], [ 45.000000, 42.682435 ], [ 45.000000, 42.553080 ], [ 45.351562, 42.553080 ], [ 45.351562, 42.423457 ], [ 45.527344, 42.423457 ], [ 45.527344, 42.163403 ], [ 45.878906, 42.163403 ], [ 45.878906, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.376809 ], [ 44.648438, 41.376809 ], [ 44.648438, 41.244772 ], [ 43.945312, 41.244772 ], [ 43.945312, 41.112469 ], [ 43.242188, 41.112469 ], [ 43.242188, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.714844, 41.376809 ], [ 42.714844, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.640078 ], [ 41.484375, 41.771312 ], [ 41.660156, 41.771312 ], [ 41.660156, 42.163403 ], [ 41.484375, 42.163403 ], [ 41.484375, 42.423457 ], [ 41.308594, 42.423457 ], [ 41.308594, 42.682435 ], [ 41.132812, 42.682435 ], [ 41.132812, 42.811522 ], [ 40.957031, 42.811522 ], [ 40.957031, 42.940339 ], [ 40.781250, 42.940339 ], [ 40.781250, 43.068888 ], [ 40.429688, 43.068888 ], [ 40.429688, 43.197167 ], [ 40.078125, 43.197167 ], [ 40.078125, 43.325178 ], [ 39.902344, 43.325178 ], [ 39.902344, 43.452919 ], [ 40.078125, 43.452919 ], [ 40.078125, 43.580391 ], [ 40.253906, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.367188, 41.640078 ], [ 26.367188, 41.508577 ], [ 26.542969, 41.508577 ], [ 26.542969, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.847060 ], [ 25.136719, 40.847060 ], [ 25.136719, 40.979898 ], [ 24.785156, 40.979898 ], [ 24.785156, 40.847060 ], [ 24.082031, 40.847060 ], [ 24.082031, 40.713956 ], [ 23.730469, 40.713956 ], [ 23.730469, 40.580585 ], [ 23.906250, 40.580585 ], [ 23.906250, 40.446947 ], [ 24.082031, 40.446947 ], [ 24.082031, 40.313043 ], [ 20.742188, 40.313043 ], [ 20.742188, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.972656, 40.979898 ], [ 21.972656, 41.112469 ], [ 22.675781, 41.112469 ], [ 22.675781, 41.244772 ], [ 23.027344, 41.244772 ], [ 23.027344, 41.376809 ], [ 23.203125, 41.376809 ], [ 23.203125, 41.244772 ], [ 23.906250, 41.244772 ], [ 23.906250, 41.376809 ], [ 24.257812, 41.376809 ], [ 24.257812, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.839844, 41.244772 ], [ 25.839844, 41.376809 ], [ 26.191406, 41.376809 ], [ 26.191406, 41.640078 ], [ 26.367188, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.367188, 41.771312 ], [ 26.367188, 41.640078 ], [ 26.542969, 41.640078 ], [ 26.542969, 41.376809 ], [ 26.367188, 41.376809 ], [ 26.367188, 41.112469 ], [ 26.191406, 41.112469 ], [ 26.191406, 40.847060 ], [ 25.488281, 40.847060 ], [ 25.488281, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 40.847060 ], [ 23.906250, 40.847060 ], [ 23.906250, 40.713956 ], [ 23.554688, 40.713956 ], [ 23.554688, 40.580585 ], [ 23.730469, 40.580585 ], [ 23.730469, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 40.313043 ], [ 22.851562, 40.313043 ], [ 22.851562, 40.446947 ], [ 22.500000, 40.446947 ], [ 22.500000, 40.313043 ], [ 20.566406, 40.313043 ], [ 20.566406, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.376809 ], [ 23.906250, 41.376809 ], [ 23.906250, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.640078 ], [ 24.433594, 41.640078 ], [ 24.433594, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.664062, 41.244772 ], [ 25.664062, 41.376809 ], [ 26.015625, 41.376809 ], [ 26.015625, 41.771312 ], [ 26.367188, 41.771312 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.032974 ], [ 35.156250, 41.902277 ], [ 35.507812, 41.902277 ], [ 35.507812, 41.771312 ], [ 35.859375, 41.771312 ], [ 35.859375, 41.640078 ], [ 36.210938, 41.640078 ], [ 36.210938, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 39.902344, 41.112469 ], [ 39.902344, 40.979898 ], [ 40.605469, 40.979898 ], [ 40.605469, 41.112469 ], [ 40.957031, 41.112469 ], [ 40.957031, 41.244772 ], [ 41.132812, 41.244772 ], [ 41.132812, 41.376809 ], [ 41.484375, 41.376809 ], [ 41.484375, 41.508577 ], [ 42.187500, 41.508577 ], [ 42.187500, 41.640078 ], [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.417969, 41.244772 ], [ 43.417969, 41.112469 ], [ 43.593750, 41.112469 ], [ 43.593750, 40.847060 ], [ 43.769531, 40.847060 ], [ 43.769531, 40.446947 ], [ 43.593750, 40.446947 ], [ 43.593750, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.580585 ], [ 29.003906, 40.580585 ], [ 29.003906, 40.979898 ], [ 29.179688, 40.979898 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 31.992188, 41.508577 ], [ 31.992188, 41.640078 ], [ 32.343750, 41.640078 ], [ 32.343750, 41.771312 ], [ 32.695312, 41.771312 ], [ 32.695312, 41.902277 ], [ 33.398438, 41.902277 ], [ 33.398438, 42.032974 ], [ 35.156250, 42.032974 ] ] ], [ [ [ 27.421875, 42.163403 ], [ 27.421875, 42.032974 ], [ 27.949219, 42.032974 ], [ 27.949219, 41.771312 ], [ 28.125000, 41.771312 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 29.003906, 41.244772 ], [ 29.003906, 41.112469 ], [ 28.300781, 41.112469 ], [ 28.300781, 40.979898 ], [ 27.597656, 40.979898 ], [ 27.597656, 40.847060 ], [ 27.421875, 40.847060 ], [ 27.421875, 40.713956 ], [ 27.246094, 40.713956 ], [ 27.246094, 40.580585 ], [ 27.070312, 40.580585 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.313043 ], [ 26.191406, 40.313043 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.367188, 40.847060 ], [ 26.367188, 41.244772 ], [ 26.542969, 41.244772 ], [ 26.542969, 41.508577 ], [ 26.367188, 41.508577 ], [ 26.367188, 41.640078 ], [ 26.191406, 41.640078 ], [ 26.191406, 41.771312 ], [ 26.367188, 41.771312 ], [ 26.367188, 41.902277 ], [ 26.718750, 41.902277 ], [ 26.718750, 42.032974 ], [ 27.070312, 42.032974 ], [ 27.070312, 42.163403 ], [ 27.421875, 42.163403 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.163403 ], [ 35.156250, 42.032974 ], [ 35.507812, 42.032974 ], [ 35.507812, 41.902277 ], [ 35.859375, 41.902277 ], [ 35.859375, 41.771312 ], [ 36.035156, 41.771312 ], [ 36.035156, 41.640078 ], [ 36.386719, 41.640078 ], [ 36.386719, 41.508577 ], [ 36.738281, 41.508577 ], [ 36.738281, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 40.429688, 41.112469 ], [ 40.429688, 41.244772 ], [ 40.781250, 41.244772 ], [ 40.781250, 41.376809 ], [ 41.132812, 41.376809 ], [ 41.132812, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.640078 ], [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.714844, 41.508577 ], [ 42.714844, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.242188, 41.244772 ], [ 43.242188, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.125000, 40.446947 ], [ 28.125000, 40.580585 ], [ 28.828125, 40.580585 ], [ 28.828125, 40.847060 ], [ 29.003906, 40.847060 ], [ 29.003906, 41.112469 ], [ 29.179688, 41.112469 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 31.992188, 41.508577 ], [ 31.992188, 41.640078 ], [ 32.343750, 41.640078 ], [ 32.343750, 41.771312 ], [ 32.695312, 41.771312 ], [ 32.695312, 41.902277 ], [ 33.222656, 41.902277 ], [ 33.222656, 42.032974 ], [ 34.453125, 42.032974 ], [ 34.453125, 42.163403 ], [ 35.156250, 42.163403 ] ] ], [ [ [ 27.421875, 42.163403 ], [ 27.421875, 42.032974 ], [ 27.949219, 42.032974 ], [ 27.949219, 41.640078 ], [ 28.125000, 41.640078 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 28.652344, 41.244772 ], [ 28.652344, 41.112469 ], [ 27.597656, 41.112469 ], [ 27.597656, 40.979898 ], [ 27.421875, 40.979898 ], [ 27.421875, 40.847060 ], [ 27.246094, 40.847060 ], [ 27.246094, 40.713956 ], [ 27.070312, 40.713956 ], [ 27.070312, 40.580585 ], [ 26.894531, 40.580585 ], [ 26.894531, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.313043 ], [ 26.191406, 40.313043 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.191406, 40.847060 ], [ 26.191406, 41.112469 ], [ 26.367188, 41.112469 ], [ 26.367188, 41.376809 ], [ 26.542969, 41.376809 ], [ 26.542969, 41.640078 ], [ 26.367188, 41.640078 ], [ 26.367188, 41.771312 ], [ 26.015625, 41.771312 ], [ 26.015625, 41.902277 ], [ 26.367188, 41.902277 ], [ 26.367188, 42.032974 ], [ 26.894531, 42.032974 ], [ 26.894531, 42.163403 ], [ 27.421875, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 43.593750, 40.313043 ], [ 43.593750, 40.446947 ], [ 43.769531, 40.446947 ], [ 43.769531, 40.847060 ], [ 43.593750, 40.847060 ], [ 43.593750, 41.112469 ], [ 44.472656, 41.112469 ], [ 44.472656, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 41.376809 ], [ 44.824219, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 43.593750, 40.313043 ], [ 43.593750, 40.979898 ], [ 43.417969, 40.979898 ], [ 43.417969, 41.112469 ], [ 43.945312, 41.112469 ], [ 43.945312, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.376809 ], [ 44.824219, 41.376809 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 45.878906, 41.112469 ], [ 45.878906, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.527344, 41.376809 ], [ 45.527344, 41.244772 ], [ 45.878906, 41.244772 ], [ 45.878906, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.847060 ], [ 45.351562, 40.979898 ], [ 45.175781, 40.979898 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 44.824219, 41.244772 ], [ 44.824219, 41.376809 ], [ 45.527344, 41.376809 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.089844, 66.160511 ], [ 37.089844, 66.231457 ], [ 36.738281, 66.231457 ], [ 36.738281, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 36.035156, 66.372755 ], [ 36.035156, 66.443107 ], [ 35.507812, 66.443107 ], [ 35.507812, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.804688, 66.583217 ], [ 34.804688, 66.652977 ], [ 34.453125, 66.652977 ], [ 34.453125, 66.722541 ], [ 34.101562, 66.722541 ], [ 34.101562, 66.791909 ], [ 33.925781, 66.791909 ], [ 33.925781, 66.722541 ], [ 33.574219, 66.722541 ], [ 33.574219, 66.652977 ], [ 33.222656, 66.652977 ], [ 33.222656, 66.583217 ], [ 33.398438, 66.583217 ], [ 33.398438, 66.513260 ], [ 33.574219, 66.513260 ], [ 33.574219, 66.443107 ], [ 33.750000, 66.443107 ], [ 33.750000, 66.302205 ], [ 33.925781, 66.302205 ], [ 33.925781, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.160511 ], [ 29.882812, 66.160511 ], [ 29.882812, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.513260 ], [ 29.355469, 66.513260 ], [ 29.355469, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 66.791909 ], [ 29.003906, 66.791909 ], [ 29.003906, 66.930060 ], [ 29.179688, 66.930060 ], [ 29.179688, 67.067433 ], [ 29.355469, 67.067433 ], [ 29.355469, 67.204032 ], [ 29.531250, 67.204032 ], [ 29.531250, 67.339861 ], [ 29.707031, 67.339861 ], [ 29.707031, 67.474922 ], [ 29.882812, 67.474922 ], [ 29.882812, 67.609221 ], [ 30.058594, 67.609221 ], [ 30.058594, 67.676085 ], [ 29.882812, 67.676085 ], [ 29.882812, 67.742759 ], [ 29.707031, 67.742759 ], [ 29.707031, 67.809245 ], [ 29.531250, 67.809245 ], [ 29.531250, 67.875541 ], [ 29.355469, 67.875541 ], [ 29.355469, 68.007571 ], [ 29.179688, 68.007571 ], [ 29.179688, 68.073305 ], [ 29.003906, 68.073305 ], [ 29.003906, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.204212 ], [ 28.652344, 68.204212 ], [ 28.652344, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 68.656555 ], [ 28.652344, 68.656555 ], [ 28.652344, 69.037142 ], [ 29.003906, 69.037142 ], [ 29.003906, 69.099940 ], [ 29.355469, 69.099940 ], [ 29.355469, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.224997 ], [ 29.882812, 69.224997 ], [ 29.882812, 69.287257 ], [ 30.234375, 69.287257 ], [ 30.234375, 69.349339 ], [ 30.410156, 69.349339 ], [ 30.410156, 69.411242 ], [ 30.761719, 69.411242 ], [ 30.761719, 69.472969 ], [ 31.113281, 69.472969 ], [ 31.113281, 69.534518 ], [ 31.289062, 69.534518 ], [ 31.289062, 69.595890 ], [ 31.464844, 69.595890 ], [ 31.464844, 69.657086 ], [ 31.640625, 69.657086 ], [ 31.640625, 69.718107 ], [ 31.816406, 69.718107 ], [ 31.816406, 69.778952 ], [ 31.992188, 69.778952 ], [ 31.992188, 69.839622 ], [ 32.343750, 69.839622 ], [ 32.343750, 69.778952 ], [ 32.519531, 69.778952 ], [ 32.519531, 69.718107 ], [ 32.695312, 69.718107 ], [ 32.695312, 69.657086 ], [ 32.871094, 69.657086 ], [ 32.871094, 69.595890 ], [ 33.046875, 69.595890 ], [ 33.046875, 69.472969 ], [ 33.222656, 69.472969 ], [ 33.222656, 69.411242 ], [ 33.398438, 69.411242 ], [ 33.398438, 69.349339 ], [ 33.574219, 69.349339 ], [ 33.574219, 69.287257 ], [ 33.925781, 69.287257 ], [ 33.925781, 69.224997 ], [ 34.628906, 69.224997 ], [ 34.628906, 69.162558 ], [ 35.332031, 69.162558 ], [ 35.332031, 69.099940 ], [ 36.035156, 69.099940 ], [ 36.035156, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.974164 ], [ 36.738281, 68.974164 ], [ 36.738281, 68.911005 ], [ 37.089844, 68.911005 ], [ 37.089844, 68.847665 ], [ 37.265625, 68.847665 ], [ 37.265625, 68.784144 ], [ 37.441406, 68.784144 ], [ 37.441406, 68.720441 ], [ 37.617188, 68.720441 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.592487 ], [ 38.144531, 68.592487 ], [ 38.144531, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.463800 ], [ 38.496094, 68.463800 ], [ 38.496094, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.334376 ], [ 39.023438, 68.334376 ], [ 39.023438, 68.269387 ], [ 39.199219, 68.269387 ], [ 39.199219, 68.204212 ], [ 39.375000, 68.204212 ], [ 39.375000, 68.138852 ], [ 39.550781, 68.138852 ], [ 39.550781, 68.073305 ], [ 39.902344, 68.073305 ], [ 39.902344, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.941650 ], [ 40.253906, 67.941650 ], [ 40.253906, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.742759 ], [ 40.605469, 67.742759 ], [ 40.605469, 67.676085 ], [ 40.781250, 67.676085 ], [ 40.781250, 67.609221 ], [ 40.957031, 67.609221 ], [ 40.957031, 67.474922 ], [ 41.132812, 67.474922 ], [ 41.132812, 66.722541 ], [ 40.957031, 66.722541 ], [ 40.957031, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.605469, 66.513260 ], [ 40.605469, 66.443107 ], [ 40.429688, 66.443107 ], [ 40.429688, 66.372755 ], [ 40.253906, 66.372755 ], [ 40.253906, 66.231457 ], [ 39.902344, 66.231457 ], [ 39.902344, 66.160511 ], [ 37.089844, 66.160511 ] ] ], [ [ [ 41.484375, 66.160511 ], [ 41.484375, 66.231457 ], [ 41.660156, 66.231457 ], [ 41.660156, 66.302205 ], [ 41.835938, 66.302205 ], [ 41.835938, 66.372755 ], [ 42.011719, 66.372755 ], [ 42.011719, 66.443107 ], [ 43.066406, 66.443107 ], [ 43.066406, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.302205 ], [ 43.417969, 66.302205 ], [ 43.417969, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.160511 ], [ 41.484375, 66.160511 ] ] ], [ [ [ 43.945312, 66.160511 ], [ 43.945312, 66.231457 ], [ 44.121094, 66.231457 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.583217 ], [ 44.472656, 66.583217 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.930060 ], [ 44.121094, 66.930060 ], [ 44.121094, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 43.769531, 67.204032 ], [ 43.769531, 67.474922 ], [ 43.945312, 67.474922 ], [ 43.945312, 67.742759 ], [ 44.121094, 67.742759 ], [ 44.121094, 68.007571 ], [ 43.945312, 68.007571 ], [ 43.945312, 68.138852 ], [ 43.769531, 68.138852 ], [ 43.769531, 68.334376 ], [ 43.593750, 68.334376 ], [ 43.593750, 68.463800 ], [ 43.417969, 68.463800 ], [ 43.417969, 68.592487 ], [ 43.593750, 68.592487 ], [ 43.593750, 68.528235 ], [ 44.121094, 68.528235 ], [ 44.121094, 68.463800 ], [ 44.472656, 68.463800 ], [ 44.472656, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.334376 ], [ 45.527344, 68.334376 ], [ 45.527344, 68.269387 ], [ 45.878906, 68.269387 ], [ 45.878906, 67.542167 ], [ 45.527344, 67.542167 ], [ 45.527344, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.160511 ], [ 43.945312, 66.160511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.089844, 66.160511 ], [ 37.089844, 66.231457 ], [ 36.738281, 66.231457 ], [ 36.738281, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 35.859375, 66.372755 ], [ 35.859375, 66.443107 ], [ 35.507812, 66.443107 ], [ 35.507812, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.628906, 66.583217 ], [ 34.628906, 66.652977 ], [ 34.277344, 66.652977 ], [ 34.277344, 66.722541 ], [ 33.925781, 66.722541 ], [ 33.925781, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.722541 ], [ 33.398438, 66.722541 ], [ 33.398438, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.583217 ], [ 33.222656, 66.583217 ], [ 33.222656, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.443107 ], [ 33.574219, 66.443107 ], [ 33.574219, 66.302205 ], [ 33.750000, 66.302205 ], [ 33.750000, 66.231457 ], [ 33.925781, 66.231457 ], [ 33.925781, 66.160511 ], [ 29.707031, 66.160511 ], [ 29.707031, 66.231457 ], [ 29.531250, 66.231457 ], [ 29.531250, 66.443107 ], [ 29.355469, 66.443107 ], [ 29.355469, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 66.861082 ], [ 29.003906, 66.861082 ], [ 29.003906, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 67.204032 ], [ 29.355469, 67.204032 ], [ 29.355469, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.474922 ], [ 29.707031, 67.474922 ], [ 29.707031, 67.609221 ], [ 29.882812, 67.609221 ], [ 29.882812, 67.742759 ], [ 29.707031, 67.742759 ], [ 29.707031, 67.809245 ], [ 29.531250, 67.809245 ], [ 29.531250, 67.875541 ], [ 29.355469, 67.875541 ], [ 29.355469, 67.941650 ], [ 29.179688, 67.941650 ], [ 29.179688, 68.073305 ], [ 29.003906, 68.073305 ], [ 29.003906, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.204212 ], [ 28.652344, 68.204212 ], [ 28.652344, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 68.334376 ], [ 28.300781, 68.334376 ], [ 28.300781, 68.720441 ], [ 28.476562, 68.720441 ], [ 28.476562, 69.099940 ], [ 29.003906, 69.099940 ], [ 29.003906, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.224997 ], [ 29.707031, 69.224997 ], [ 29.707031, 69.287257 ], [ 30.058594, 69.287257 ], [ 30.058594, 69.349339 ], [ 30.234375, 69.349339 ], [ 30.234375, 69.411242 ], [ 30.410156, 69.411242 ], [ 30.410156, 69.472969 ], [ 30.761719, 69.472969 ], [ 30.761719, 69.534518 ], [ 30.937500, 69.534518 ], [ 30.937500, 69.595890 ], [ 31.113281, 69.595890 ], [ 31.113281, 69.657086 ], [ 31.289062, 69.657086 ], [ 31.289062, 69.718107 ], [ 31.464844, 69.718107 ], [ 31.464844, 69.778952 ], [ 31.640625, 69.778952 ], [ 31.640625, 69.839622 ], [ 31.816406, 69.839622 ], [ 31.816406, 69.900118 ], [ 32.167969, 69.900118 ], [ 32.167969, 69.839622 ], [ 32.343750, 69.839622 ], [ 32.343750, 69.778952 ], [ 32.519531, 69.778952 ], [ 32.519531, 69.718107 ], [ 32.695312, 69.718107 ], [ 32.695312, 69.657086 ], [ 32.871094, 69.657086 ], [ 32.871094, 69.595890 ], [ 33.046875, 69.595890 ], [ 33.046875, 69.534518 ], [ 33.222656, 69.534518 ], [ 33.222656, 69.472969 ], [ 33.398438, 69.472969 ], [ 33.398438, 69.411242 ], [ 33.574219, 69.411242 ], [ 33.574219, 69.349339 ], [ 33.925781, 69.349339 ], [ 33.925781, 69.287257 ], [ 34.628906, 69.287257 ], [ 34.628906, 69.224997 ], [ 35.332031, 69.224997 ], [ 35.332031, 69.162558 ], [ 36.035156, 69.162558 ], [ 36.035156, 69.099940 ], [ 36.386719, 69.099940 ], [ 36.386719, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.974164 ], [ 36.914062, 68.974164 ], [ 36.914062, 68.911005 ], [ 37.089844, 68.911005 ], [ 37.089844, 68.847665 ], [ 37.265625, 68.847665 ], [ 37.265625, 68.784144 ], [ 37.441406, 68.784144 ], [ 37.441406, 68.720441 ], [ 37.617188, 68.720441 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.592487 ], [ 38.144531, 68.592487 ], [ 38.144531, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.463800 ], [ 38.496094, 68.463800 ], [ 38.496094, 68.399180 ], [ 38.847656, 68.399180 ], [ 38.847656, 68.334376 ], [ 39.023438, 68.334376 ], [ 39.023438, 68.269387 ], [ 39.199219, 68.269387 ], [ 39.199219, 68.204212 ], [ 39.375000, 68.204212 ], [ 39.375000, 68.138852 ], [ 39.550781, 68.138852 ], [ 39.550781, 68.073305 ], [ 39.902344, 68.073305 ], [ 39.902344, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.941650 ], [ 40.253906, 67.941650 ], [ 40.253906, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.742759 ], [ 40.605469, 67.742759 ], [ 40.605469, 67.609221 ], [ 40.781250, 67.609221 ], [ 40.781250, 67.474922 ], [ 40.957031, 67.474922 ], [ 40.957031, 66.722541 ], [ 40.781250, 66.722541 ], [ 40.781250, 66.652977 ], [ 40.605469, 66.652977 ], [ 40.605469, 66.583217 ], [ 40.429688, 66.583217 ], [ 40.429688, 66.443107 ], [ 40.253906, 66.443107 ], [ 40.253906, 66.372755 ], [ 40.078125, 66.372755 ], [ 40.078125, 66.302205 ], [ 39.902344, 66.302205 ], [ 39.902344, 66.231457 ], [ 39.550781, 66.231457 ], [ 39.550781, 66.160511 ], [ 37.089844, 66.160511 ] ] ], [ [ [ 41.484375, 66.160511 ], [ 41.484375, 66.231457 ], [ 41.660156, 66.231457 ], [ 41.660156, 66.372755 ], [ 41.835938, 66.372755 ], [ 41.835938, 66.443107 ], [ 42.011719, 66.443107 ], [ 42.011719, 66.513260 ], [ 42.363281, 66.513260 ], [ 42.363281, 66.443107 ], [ 42.890625, 66.443107 ], [ 42.890625, 66.372755 ], [ 43.066406, 66.372755 ], [ 43.066406, 66.302205 ], [ 43.242188, 66.302205 ], [ 43.242188, 66.231457 ], [ 43.417969, 66.231457 ], [ 43.417969, 66.160511 ], [ 41.484375, 66.160511 ] ] ], [ [ [ 43.945312, 66.160511 ], [ 43.945312, 66.231457 ], [ 44.121094, 66.231457 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.930060 ], [ 44.121094, 66.930060 ], [ 44.121094, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 43.769531, 67.204032 ], [ 43.769531, 67.339861 ], [ 43.593750, 67.339861 ], [ 43.593750, 67.474922 ], [ 43.769531, 67.474922 ], [ 43.769531, 67.676085 ], [ 43.945312, 67.676085 ], [ 43.945312, 67.875541 ], [ 44.121094, 67.875541 ], [ 44.121094, 68.073305 ], [ 43.945312, 68.073305 ], [ 43.945312, 68.204212 ], [ 43.769531, 68.204212 ], [ 43.769531, 68.334376 ], [ 43.593750, 68.334376 ], [ 43.593750, 68.463800 ], [ 43.417969, 68.463800 ], [ 43.417969, 68.592487 ], [ 43.593750, 68.592487 ], [ 43.593750, 68.528235 ], [ 44.296875, 68.528235 ], [ 44.296875, 68.463800 ], [ 44.824219, 68.463800 ], [ 44.824219, 68.399180 ], [ 45.527344, 68.399180 ], [ 45.527344, 68.334376 ], [ 45.878906, 68.334376 ], [ 45.878906, 67.609221 ], [ 45.527344, 67.609221 ], [ 45.527344, 66.998844 ], [ 45.703125, 66.998844 ], [ 45.703125, 66.930060 ], [ 45.878906, 66.930060 ], [ 45.878906, 66.160511 ], [ 43.945312, 66.160511 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 28.125000, 71.130988 ], [ 28.476562, 71.130988 ], [ 28.476562, 71.074056 ], [ 28.652344, 71.074056 ], [ 28.652344, 71.016960 ], [ 28.828125, 71.016960 ], [ 28.828125, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.902268 ], [ 29.355469, 70.902268 ], [ 29.355469, 70.844673 ], [ 29.531250, 70.844673 ], [ 29.531250, 70.786910 ], [ 29.882812, 70.786910 ], [ 29.882812, 70.728979 ], [ 30.058594, 70.728979 ], [ 30.058594, 70.670881 ], [ 30.410156, 70.670881 ], [ 30.410156, 70.612614 ], [ 30.585938, 70.612614 ], [ 30.585938, 70.554179 ], [ 30.761719, 70.554179 ], [ 30.761719, 70.495574 ], [ 31.113281, 70.495574 ], [ 31.113281, 70.436799 ], [ 31.289062, 70.436799 ], [ 31.289062, 70.377854 ], [ 30.937500, 70.377854 ], [ 30.937500, 70.318738 ], [ 30.585938, 70.318738 ], [ 30.585938, 70.259452 ], [ 30.234375, 70.259452 ], [ 30.234375, 70.199994 ], [ 30.058594, 70.199994 ], [ 30.058594, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 70.020587 ], [ 30.410156, 70.020587 ], [ 30.410156, 69.900118 ], [ 30.585938, 69.900118 ], [ 30.585938, 69.778952 ], [ 30.761719, 69.778952 ], [ 30.761719, 69.657086 ], [ 30.937500, 69.657086 ], [ 30.937500, 69.534518 ], [ 31.113281, 69.534518 ], [ 31.113281, 69.472969 ], [ 30.761719, 69.472969 ], [ 30.761719, 69.411242 ], [ 30.410156, 69.411242 ], [ 30.410156, 69.349339 ], [ 30.234375, 69.349339 ], [ 30.234375, 69.287257 ], [ 29.882812, 69.287257 ], [ 29.882812, 69.224997 ], [ 29.531250, 69.224997 ], [ 29.531250, 69.162558 ], [ 29.355469, 69.162558 ], [ 29.355469, 69.099940 ], [ 29.003906, 69.099940 ], [ 29.003906, 69.037142 ], [ 28.652344, 69.037142 ], [ 28.652344, 69.224997 ], [ 28.828125, 69.224997 ], [ 28.828125, 69.595890 ], [ 29.003906, 69.595890 ], [ 29.003906, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.839622 ], [ 28.652344, 69.839622 ], [ 28.652344, 69.900118 ], [ 28.476562, 69.900118 ], [ 28.476562, 69.960439 ], [ 28.125000, 69.960439 ], [ 28.125000, 70.020587 ], [ 27.949219, 70.020587 ], [ 27.949219, 70.080562 ], [ 27.421875, 70.080562 ], [ 27.421875, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 69.960439 ], [ 26.718750, 69.960439 ], [ 26.718750, 69.900118 ], [ 26.367188, 69.900118 ], [ 26.367188, 69.839622 ], [ 26.191406, 69.839622 ], [ 26.191406, 69.718107 ], [ 26.015625, 69.718107 ], [ 26.015625, 69.472969 ], [ 25.839844, 69.472969 ], [ 25.839844, 69.224997 ], [ 25.664062, 69.224997 ], [ 25.664062, 69.037142 ], [ 25.488281, 69.037142 ], [ 25.488281, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.847665 ], [ 25.136719, 68.847665 ], [ 25.136719, 68.784144 ], [ 24.960938, 68.784144 ], [ 24.960938, 68.656555 ], [ 24.609375, 68.656555 ], [ 24.609375, 68.720441 ], [ 24.257812, 68.720441 ], [ 24.257812, 68.784144 ], [ 24.082031, 68.784144 ], [ 24.082031, 68.847665 ], [ 23.730469, 68.847665 ], [ 23.730469, 68.911005 ], [ 23.203125, 68.911005 ], [ 23.203125, 68.847665 ], [ 22.148438, 68.847665 ], [ 22.148438, 68.974164 ], [ 21.972656, 68.974164 ], [ 21.972656, 69.037142 ], [ 21.796875, 69.037142 ], [ 21.796875, 69.099940 ], [ 21.621094, 69.099940 ], [ 21.621094, 69.224997 ], [ 21.445312, 69.224997 ], [ 21.445312, 69.287257 ], [ 21.093750, 69.287257 ], [ 21.093750, 69.224997 ], [ 20.917969, 69.224997 ], [ 20.917969, 69.162558 ], [ 20.742188, 69.162558 ], [ 20.742188, 69.099940 ], [ 20.390625, 69.099940 ], [ 20.390625, 69.037142 ], [ 20.039062, 69.037142 ], [ 20.039062, 68.720441 ], [ 19.863281, 68.720441 ], [ 19.863281, 68.399180 ], [ 19.511719, 68.399180 ], [ 19.511719, 68.463800 ], [ 18.808594, 68.463800 ], [ 18.808594, 68.528235 ], [ 18.105469, 68.528235 ], [ 18.105469, 68.592487 ], [ 17.929688, 68.592487 ], [ 17.929688, 68.269387 ], [ 17.753906, 68.269387 ], [ 17.753906, 68.007571 ], [ 16.699219, 68.007571 ], [ 16.699219, 67.875541 ], [ 16.523438, 67.875541 ], [ 16.523438, 67.609221 ], [ 16.347656, 67.609221 ], [ 16.347656, 67.339861 ], [ 16.171875, 67.339861 ], [ 16.171875, 67.135829 ], [ 15.996094, 67.135829 ], [ 15.996094, 66.998844 ], [ 15.820312, 66.998844 ], [ 15.820312, 66.791909 ], [ 15.644531, 66.791909 ], [ 15.644531, 66.583217 ], [ 15.468750, 66.583217 ], [ 15.468750, 66.443107 ], [ 15.292969, 66.443107 ], [ 15.292969, 66.231457 ], [ 15.117188, 66.231457 ], [ 15.117188, 66.160511 ], [ 12.656250, 66.160511 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.791909 ], [ 13.535156, 66.791909 ], [ 13.535156, 66.930060 ], [ 13.710938, 66.930060 ], [ 13.710938, 67.067433 ], [ 13.886719, 67.067433 ], [ 13.886719, 67.204032 ], [ 14.062500, 67.204032 ], [ 14.062500, 67.339861 ], [ 14.238281, 67.339861 ], [ 14.238281, 67.474922 ], [ 14.414062, 67.474922 ], [ 14.414062, 67.609221 ], [ 14.589844, 67.609221 ], [ 14.589844, 67.742759 ], [ 14.765625, 67.742759 ], [ 14.765625, 67.809245 ], [ 14.941406, 67.809245 ], [ 14.941406, 67.875541 ], [ 15.117188, 67.875541 ], [ 15.117188, 68.007571 ], [ 15.292969, 68.007571 ], [ 15.292969, 68.073305 ], [ 15.468750, 68.073305 ], [ 15.468750, 68.138852 ], [ 15.644531, 68.138852 ], [ 15.644531, 68.204212 ], [ 15.820312, 68.204212 ], [ 15.820312, 68.269387 ], [ 15.996094, 68.269387 ], [ 15.996094, 68.399180 ], [ 16.171875, 68.399180 ], [ 16.171875, 68.463800 ], [ 16.347656, 68.463800 ], [ 16.347656, 68.528235 ], [ 16.523438, 68.528235 ], [ 16.523438, 68.592487 ], [ 16.699219, 68.592487 ], [ 16.699219, 68.720441 ], [ 16.875000, 68.720441 ], [ 16.875000, 68.784144 ], [ 17.050781, 68.784144 ], [ 17.050781, 68.847665 ], [ 17.226562, 68.847665 ], [ 17.226562, 68.974164 ], [ 17.402344, 68.974164 ], [ 17.402344, 69.037142 ], [ 17.578125, 69.037142 ], [ 17.578125, 69.099940 ], [ 17.753906, 69.099940 ], [ 17.753906, 69.224997 ], [ 17.929688, 69.224997 ], [ 17.929688, 69.287257 ], [ 18.105469, 69.287257 ], [ 18.105469, 69.349339 ], [ 18.281250, 69.349339 ], [ 18.281250, 69.472969 ], [ 18.457031, 69.472969 ], [ 18.457031, 69.534518 ], [ 18.632812, 69.534518 ], [ 18.632812, 69.595890 ], [ 18.808594, 69.595890 ], [ 18.808594, 69.718107 ], [ 18.984375, 69.718107 ], [ 18.984375, 69.778952 ], [ 19.160156, 69.778952 ], [ 19.160156, 69.839622 ], [ 19.335938, 69.839622 ], [ 19.335938, 69.900118 ], [ 19.687500, 69.900118 ], [ 19.687500, 69.960439 ], [ 20.039062, 69.960439 ], [ 20.039062, 70.020587 ], [ 20.390625, 70.020587 ], [ 20.390625, 70.080562 ], [ 20.742188, 70.080562 ], [ 20.742188, 70.140364 ], [ 21.093750, 70.140364 ], [ 21.093750, 70.199994 ], [ 21.445312, 70.199994 ], [ 21.445312, 70.259452 ], [ 22.148438, 70.259452 ], [ 22.148438, 70.199994 ], [ 23.203125, 70.199994 ], [ 23.203125, 70.318738 ], [ 23.378906, 70.318738 ], [ 23.378906, 70.377854 ], [ 23.554688, 70.377854 ], [ 23.554688, 70.495574 ], [ 23.730469, 70.495574 ], [ 23.730469, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 70.670881 ], [ 24.082031, 70.670881 ], [ 24.082031, 70.786910 ], [ 24.257812, 70.786910 ], [ 24.257812, 70.844673 ], [ 24.433594, 70.844673 ], [ 24.433594, 70.959697 ], [ 24.609375, 70.959697 ], [ 24.609375, 71.016960 ], [ 25.312500, 71.016960 ], [ 25.312500, 70.959697 ], [ 26.718750, 70.959697 ], [ 26.718750, 71.016960 ], [ 27.070312, 71.016960 ], [ 27.070312, 71.074056 ], [ 27.597656, 71.074056 ], [ 27.597656, 71.130988 ], [ 27.949219, 71.130988 ], [ 27.949219, 71.187754 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.269962 ], [ 20.214844, 79.269962 ], [ 20.214844, 79.237185 ], [ 20.390625, 79.237185 ], [ 20.390625, 79.204309 ], [ 20.566406, 79.204309 ], [ 20.566406, 79.171335 ], [ 20.742188, 79.171335 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.071812 ], [ 21.093750, 79.071812 ], [ 21.093750, 79.038437 ], [ 21.269531, 79.038437 ], [ 21.269531, 79.004962 ], [ 21.445312, 79.004962 ], [ 21.445312, 78.971386 ], [ 21.621094, 78.971386 ], [ 21.621094, 78.937708 ], [ 21.445312, 78.937708 ], [ 21.445312, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.870048 ], [ 20.917969, 78.870048 ], [ 20.917969, 78.836065 ], [ 20.742188, 78.836065 ], [ 20.742188, 78.801980 ], [ 20.566406, 78.801980 ], [ 20.566406, 78.767792 ], [ 20.214844, 78.767792 ], [ 20.214844, 78.733501 ], [ 20.039062, 78.733501 ], [ 20.039062, 78.699106 ], [ 19.863281, 78.699106 ], [ 19.863281, 78.664608 ], [ 19.687500, 78.664608 ], [ 19.687500, 78.630006 ], [ 19.335938, 78.630006 ], [ 19.335938, 78.595299 ], [ 19.160156, 78.595299 ], [ 19.160156, 78.560488 ], [ 18.984375, 78.560488 ], [ 18.984375, 78.420193 ], [ 18.808594, 78.420193 ], [ 18.808594, 78.206563 ], [ 18.632812, 78.206563 ], [ 18.632812, 77.952414 ], [ 18.457031, 77.952414 ], [ 18.457031, 77.804771 ], [ 18.281250, 77.804771 ], [ 18.281250, 77.767582 ], [ 18.105469, 77.767582 ], [ 18.105469, 77.730282 ], [ 17.929688, 77.730282 ], [ 17.929688, 77.692870 ], [ 17.753906, 77.692870 ], [ 17.753906, 77.655346 ], [ 17.578125, 77.655346 ], [ 17.578125, 77.504119 ], [ 17.402344, 77.504119 ], [ 17.402344, 77.235074 ], [ 17.226562, 77.235074 ], [ 17.226562, 76.920614 ], [ 17.050781, 76.920614 ], [ 17.050781, 76.800739 ], [ 16.699219, 76.800739 ], [ 16.699219, 76.760541 ], [ 15.820312, 76.760541 ], [ 15.820312, 76.800739 ], [ 15.644531, 76.800739 ], [ 15.644531, 76.880775 ], [ 15.468750, 76.880775 ], [ 15.468750, 76.920614 ], [ 15.292969, 76.920614 ], [ 15.292969, 76.960334 ], [ 15.117188, 76.960334 ], [ 15.117188, 76.999935 ], [ 14.941406, 76.999935 ], [ 14.941406, 77.078784 ], [ 14.765625, 77.078784 ], [ 14.765625, 77.118032 ], [ 14.589844, 77.118032 ], [ 14.589844, 77.157163 ], [ 14.414062, 77.157163 ], [ 14.414062, 77.196176 ], [ 14.238281, 77.196176 ], [ 14.238281, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.886719, 77.312520 ], [ 13.886719, 77.351070 ], [ 13.710938, 77.351070 ], [ 13.710938, 77.389504 ], [ 13.886719, 77.389504 ], [ 13.886719, 77.466028 ], [ 14.062500, 77.466028 ], [ 14.062500, 77.542096 ], [ 14.238281, 77.542096 ], [ 14.238281, 77.617709 ], [ 14.414062, 77.617709 ], [ 14.414062, 77.692870 ], [ 14.589844, 77.692870 ], [ 14.589844, 77.730282 ], [ 14.414062, 77.730282 ], [ 14.414062, 77.767582 ], [ 14.238281, 77.767582 ], [ 14.238281, 77.804771 ], [ 14.062500, 77.804771 ], [ 14.062500, 77.841848 ], [ 13.886719, 77.841848 ], [ 13.886719, 77.878814 ], [ 13.710938, 77.878814 ], [ 13.710938, 77.915669 ], [ 13.535156, 77.915669 ], [ 13.535156, 77.952414 ], [ 13.359375, 77.952414 ], [ 13.359375, 77.989049 ], [ 13.183594, 77.989049 ], [ 13.183594, 78.061989 ], [ 13.007812, 78.061989 ], [ 13.007812, 78.134493 ], [ 12.832031, 78.134493 ], [ 12.832031, 78.206563 ], [ 12.656250, 78.206563 ], [ 12.656250, 78.278201 ], [ 12.480469, 78.278201 ], [ 12.480469, 78.349411 ], [ 12.304688, 78.349411 ], [ 12.304688, 78.455425 ], [ 12.128906, 78.455425 ], [ 12.128906, 78.525573 ], [ 11.953125, 78.525573 ], [ 11.953125, 78.595299 ], [ 11.777344, 78.595299 ], [ 11.777344, 78.664608 ], [ 11.601562, 78.664608 ], [ 11.601562, 78.733501 ], [ 11.425781, 78.733501 ], [ 11.425781, 78.801980 ], [ 11.250000, 78.801980 ], [ 11.250000, 78.937708 ], [ 11.074219, 78.937708 ], [ 11.074219, 79.105086 ], [ 10.898438, 79.105086 ], [ 10.898438, 79.237185 ], [ 10.722656, 79.237185 ], [ 10.722656, 79.335219 ], [ 19.863281, 79.335219 ] ] ], [ [ [ 22.851562, 78.420193 ], [ 22.851562, 78.349411 ], [ 23.027344, 78.349411 ], [ 23.027344, 78.134493 ], [ 23.203125, 78.134493 ], [ 23.203125, 78.025574 ], [ 23.554688, 78.025574 ], [ 23.554688, 77.989049 ], [ 23.730469, 77.989049 ], [ 23.730469, 77.952414 ], [ 24.082031, 77.952414 ], [ 24.082031, 77.915669 ], [ 24.257812, 77.915669 ], [ 24.257812, 77.878814 ], [ 24.609375, 77.878814 ], [ 24.609375, 77.841848 ], [ 24.785156, 77.841848 ], [ 24.785156, 77.804771 ], [ 24.609375, 77.804771 ], [ 24.609375, 77.767582 ], [ 24.433594, 77.767582 ], [ 24.433594, 77.730282 ], [ 24.082031, 77.730282 ], [ 24.082031, 77.692870 ], [ 23.906250, 77.692870 ], [ 23.906250, 77.655346 ], [ 23.730469, 77.655346 ], [ 23.730469, 77.617709 ], [ 23.554688, 77.617709 ], [ 23.554688, 77.579959 ], [ 23.378906, 77.579959 ], [ 23.378906, 77.542096 ], [ 23.027344, 77.542096 ], [ 23.027344, 77.504119 ], [ 22.851562, 77.504119 ], [ 22.851562, 77.466028 ], [ 22.675781, 77.466028 ], [ 22.675781, 77.427824 ], [ 22.324219, 77.427824 ], [ 22.324219, 77.466028 ], [ 21.972656, 77.466028 ], [ 21.972656, 77.504119 ], [ 21.796875, 77.504119 ], [ 21.796875, 77.542096 ], [ 21.445312, 77.542096 ], [ 21.445312, 77.579959 ], [ 21.269531, 77.579959 ], [ 21.269531, 77.617709 ], [ 21.093750, 77.617709 ], [ 21.093750, 77.655346 ], [ 20.742188, 77.655346 ], [ 20.742188, 77.692870 ], [ 20.917969, 77.692870 ], [ 20.917969, 77.767582 ], [ 21.093750, 77.767582 ], [ 21.093750, 77.841848 ], [ 21.269531, 77.841848 ], [ 21.269531, 77.915669 ], [ 21.445312, 77.915669 ], [ 21.445312, 77.989049 ], [ 21.269531, 77.989049 ], [ 21.269531, 78.061989 ], [ 21.093750, 78.061989 ], [ 21.093750, 78.134493 ], [ 20.917969, 78.134493 ], [ 20.917969, 78.206563 ], [ 20.742188, 78.206563 ], [ 20.742188, 78.242436 ], [ 21.093750, 78.242436 ], [ 21.093750, 78.278201 ], [ 21.445312, 78.278201 ], [ 21.445312, 78.313860 ], [ 21.796875, 78.313860 ], [ 21.796875, 78.349411 ], [ 22.148438, 78.349411 ], [ 22.148438, 78.384855 ], [ 22.500000, 78.384855 ], [ 22.500000, 78.420193 ], [ 22.851562, 78.420193 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 28.125000, 71.130988 ], [ 28.476562, 71.130988 ], [ 28.476562, 71.074056 ], [ 28.652344, 71.074056 ], [ 28.652344, 71.016960 ], [ 29.003906, 71.016960 ], [ 29.003906, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.902268 ], [ 29.531250, 70.902268 ], [ 29.531250, 70.844673 ], [ 29.707031, 70.844673 ], [ 29.707031, 70.786910 ], [ 30.058594, 70.786910 ], [ 30.058594, 70.728979 ], [ 30.234375, 70.728979 ], [ 30.234375, 70.670881 ], [ 30.585938, 70.670881 ], [ 30.585938, 70.612614 ], [ 30.761719, 70.612614 ], [ 30.761719, 70.554179 ], [ 31.113281, 70.554179 ], [ 31.113281, 70.495574 ], [ 31.289062, 70.495574 ], [ 31.289062, 70.436799 ], [ 30.937500, 70.436799 ], [ 30.937500, 70.377854 ], [ 30.761719, 70.377854 ], [ 30.761719, 70.318738 ], [ 30.410156, 70.318738 ], [ 30.410156, 70.259452 ], [ 30.058594, 70.259452 ], [ 30.058594, 70.199994 ], [ 29.882812, 70.199994 ], [ 29.882812, 70.140364 ], [ 30.058594, 70.140364 ], [ 30.058594, 70.020587 ], [ 30.234375, 70.020587 ], [ 30.234375, 69.900118 ], [ 30.410156, 69.900118 ], [ 30.410156, 69.839622 ], [ 30.585938, 69.839622 ], [ 30.585938, 69.718107 ], [ 30.761719, 69.718107 ], [ 30.761719, 69.595890 ], [ 30.937500, 69.595890 ], [ 30.937500, 69.534518 ], [ 30.761719, 69.534518 ], [ 30.761719, 69.472969 ], [ 30.410156, 69.472969 ], [ 30.410156, 69.411242 ], [ 30.234375, 69.411242 ], [ 30.234375, 69.349339 ], [ 30.058594, 69.349339 ], [ 30.058594, 69.287257 ], [ 29.707031, 69.287257 ], [ 29.707031, 69.224997 ], [ 29.531250, 69.224997 ], [ 29.531250, 69.162558 ], [ 29.003906, 69.162558 ], [ 29.003906, 69.099940 ], [ 28.476562, 69.099940 ], [ 28.476562, 69.162558 ], [ 28.652344, 69.162558 ], [ 28.652344, 69.411242 ], [ 28.828125, 69.411242 ], [ 28.828125, 69.657086 ], [ 29.003906, 69.657086 ], [ 29.003906, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.839622 ], [ 28.652344, 69.839622 ], [ 28.652344, 69.900118 ], [ 28.476562, 69.900118 ], [ 28.476562, 69.960439 ], [ 28.125000, 69.960439 ], [ 28.125000, 70.020587 ], [ 27.949219, 70.020587 ], [ 27.949219, 70.080562 ], [ 27.773438, 70.080562 ], [ 27.773438, 70.140364 ], [ 27.246094, 70.140364 ], [ 27.246094, 70.080562 ], [ 27.070312, 70.080562 ], [ 27.070312, 70.020587 ], [ 26.718750, 70.020587 ], [ 26.718750, 69.960439 ], [ 26.542969, 69.960439 ], [ 26.542969, 69.900118 ], [ 26.191406, 69.900118 ], [ 26.191406, 69.839622 ], [ 26.015625, 69.839622 ], [ 26.015625, 69.657086 ], [ 25.839844, 69.657086 ], [ 25.839844, 69.287257 ], [ 25.664062, 69.287257 ], [ 25.664062, 69.037142 ], [ 25.488281, 69.037142 ], [ 25.488281, 68.974164 ], [ 25.312500, 68.974164 ], [ 25.312500, 68.911005 ], [ 25.136719, 68.911005 ], [ 25.136719, 68.784144 ], [ 24.960938, 68.784144 ], [ 24.960938, 68.720441 ], [ 24.785156, 68.720441 ], [ 24.785156, 68.656555 ], [ 24.433594, 68.656555 ], [ 24.433594, 68.720441 ], [ 24.082031, 68.720441 ], [ 24.082031, 68.784144 ], [ 23.906250, 68.784144 ], [ 23.906250, 68.847665 ], [ 23.554688, 68.847665 ], [ 23.554688, 68.911005 ], [ 23.027344, 68.911005 ], [ 23.027344, 68.847665 ], [ 22.148438, 68.847665 ], [ 22.148438, 68.911005 ], [ 21.972656, 68.911005 ], [ 21.972656, 69.037142 ], [ 21.796875, 69.037142 ], [ 21.796875, 69.099940 ], [ 21.621094, 69.099940 ], [ 21.621094, 69.162558 ], [ 21.445312, 69.162558 ], [ 21.445312, 69.287257 ], [ 21.269531, 69.287257 ], [ 21.269531, 69.349339 ], [ 20.917969, 69.349339 ], [ 20.917969, 69.287257 ], [ 20.742188, 69.287257 ], [ 20.742188, 69.162558 ], [ 20.390625, 69.162558 ], [ 20.390625, 69.099940 ], [ 19.863281, 69.099940 ], [ 19.863281, 68.463800 ], [ 19.335938, 68.463800 ], [ 19.335938, 68.528235 ], [ 18.281250, 68.528235 ], [ 18.281250, 68.592487 ], [ 17.929688, 68.592487 ], [ 17.929688, 68.463800 ], [ 17.753906, 68.463800 ], [ 17.753906, 68.204212 ], [ 17.578125, 68.204212 ], [ 17.578125, 68.073305 ], [ 16.699219, 68.073305 ], [ 16.699219, 67.941650 ], [ 16.523438, 67.941650 ], [ 16.523438, 67.742759 ], [ 16.347656, 67.742759 ], [ 16.347656, 67.609221 ], [ 16.171875, 67.609221 ], [ 16.171875, 67.407487 ], [ 15.996094, 67.407487 ], [ 15.996094, 67.204032 ], [ 15.820312, 67.204032 ], [ 15.820312, 67.067433 ], [ 15.644531, 67.067433 ], [ 15.644531, 66.861082 ], [ 15.468750, 66.861082 ], [ 15.468750, 66.652977 ], [ 15.292969, 66.652977 ], [ 15.292969, 66.513260 ], [ 15.117188, 66.513260 ], [ 15.117188, 66.302205 ], [ 14.941406, 66.302205 ], [ 14.941406, 66.160511 ], [ 12.656250, 66.160511 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.861082 ], [ 13.535156, 66.861082 ], [ 13.535156, 66.998844 ], [ 13.710938, 66.998844 ], [ 13.710938, 67.135829 ], [ 13.886719, 67.135829 ], [ 13.886719, 67.339861 ], [ 14.062500, 67.339861 ], [ 14.062500, 67.474922 ], [ 14.238281, 67.474922 ], [ 14.238281, 67.609221 ], [ 14.414062, 67.609221 ], [ 14.414062, 67.742759 ], [ 14.589844, 67.742759 ], [ 14.589844, 67.875541 ], [ 14.765625, 67.875541 ], [ 14.765625, 67.941650 ], [ 14.941406, 67.941650 ], [ 14.941406, 68.007571 ], [ 15.117188, 68.007571 ], [ 15.117188, 68.073305 ], [ 15.292969, 68.073305 ], [ 15.292969, 68.138852 ], [ 15.468750, 68.138852 ], [ 15.468750, 68.269387 ], [ 15.644531, 68.269387 ], [ 15.644531, 68.334376 ], [ 15.820312, 68.334376 ], [ 15.820312, 68.399180 ], [ 15.996094, 68.399180 ], [ 15.996094, 68.463800 ], [ 16.171875, 68.463800 ], [ 16.171875, 68.528235 ], [ 16.347656, 68.528235 ], [ 16.347656, 68.592487 ], [ 16.523438, 68.592487 ], [ 16.523438, 68.656555 ], [ 16.699219, 68.656555 ], [ 16.699219, 68.784144 ], [ 16.875000, 68.784144 ], [ 16.875000, 68.847665 ], [ 17.050781, 68.847665 ], [ 17.050781, 68.911005 ], [ 17.226562, 68.911005 ], [ 17.226562, 68.974164 ], [ 17.402344, 68.974164 ], [ 17.402344, 69.099940 ], [ 17.578125, 69.099940 ], [ 17.578125, 69.162558 ], [ 17.753906, 69.162558 ], [ 17.753906, 69.224997 ], [ 17.929688, 69.224997 ], [ 17.929688, 69.287257 ], [ 18.105469, 69.287257 ], [ 18.105469, 69.411242 ], [ 18.281250, 69.411242 ], [ 18.281250, 69.472969 ], [ 18.457031, 69.472969 ], [ 18.457031, 69.534518 ], [ 18.632812, 69.534518 ], [ 18.632812, 69.595890 ], [ 18.808594, 69.595890 ], [ 18.808594, 69.718107 ], [ 18.984375, 69.718107 ], [ 18.984375, 69.778952 ], [ 19.160156, 69.778952 ], [ 19.160156, 69.839622 ], [ 19.335938, 69.839622 ], [ 19.335938, 69.900118 ], [ 19.687500, 69.900118 ], [ 19.687500, 69.960439 ], [ 20.039062, 69.960439 ], [ 20.039062, 70.020587 ], [ 20.390625, 70.020587 ], [ 20.390625, 70.080562 ], [ 20.566406, 70.080562 ], [ 20.566406, 70.140364 ], [ 20.917969, 70.140364 ], [ 20.917969, 70.199994 ], [ 21.269531, 70.199994 ], [ 21.269531, 70.259452 ], [ 23.027344, 70.259452 ], [ 23.027344, 70.377854 ], [ 23.203125, 70.377854 ], [ 23.203125, 70.436799 ], [ 23.378906, 70.436799 ], [ 23.378906, 70.554179 ], [ 23.554688, 70.554179 ], [ 23.554688, 70.670881 ], [ 23.730469, 70.670881 ], [ 23.730469, 70.728979 ], [ 23.906250, 70.728979 ], [ 23.906250, 70.844673 ], [ 24.082031, 70.844673 ], [ 24.082031, 70.902268 ], [ 24.257812, 70.902268 ], [ 24.257812, 71.016960 ], [ 24.433594, 71.016960 ], [ 24.433594, 71.074056 ], [ 25.312500, 71.074056 ], [ 25.312500, 71.016960 ], [ 26.718750, 71.016960 ], [ 26.718750, 71.074056 ], [ 27.421875, 71.074056 ], [ 27.421875, 71.130988 ], [ 27.949219, 71.130988 ], [ 27.949219, 71.187754 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.269962 ], [ 20.214844, 79.269962 ], [ 20.214844, 79.204309 ], [ 20.390625, 79.204309 ], [ 20.390625, 79.171335 ], [ 20.566406, 79.171335 ], [ 20.566406, 79.138260 ], [ 20.742188, 79.138260 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.071812 ], [ 21.093750, 79.071812 ], [ 21.093750, 79.004962 ], [ 21.269531, 79.004962 ], [ 21.269531, 78.971386 ], [ 21.445312, 78.971386 ], [ 21.445312, 78.937708 ], [ 21.269531, 78.937708 ], [ 21.269531, 78.903929 ], [ 20.917969, 78.903929 ], [ 20.917969, 78.870048 ], [ 20.742188, 78.870048 ], [ 20.742188, 78.836065 ], [ 20.566406, 78.836065 ], [ 20.566406, 78.801980 ], [ 20.390625, 78.801980 ], [ 20.390625, 78.767792 ], [ 20.039062, 78.767792 ], [ 20.039062, 78.733501 ], [ 19.863281, 78.733501 ], [ 19.863281, 78.699106 ], [ 19.687500, 78.699106 ], [ 19.687500, 78.664608 ], [ 19.335938, 78.664608 ], [ 19.335938, 78.630006 ], [ 19.160156, 78.630006 ], [ 19.160156, 78.595299 ], [ 18.984375, 78.595299 ], [ 18.984375, 78.455425 ], [ 18.808594, 78.455425 ], [ 18.808594, 78.206563 ], [ 18.632812, 78.206563 ], [ 18.632812, 77.952414 ], [ 18.457031, 77.952414 ], [ 18.457031, 77.804771 ], [ 18.281250, 77.804771 ], [ 18.281250, 77.767582 ], [ 18.105469, 77.767582 ], [ 18.105469, 77.730282 ], [ 17.929688, 77.730282 ], [ 17.929688, 77.692870 ], [ 17.753906, 77.692870 ], [ 17.753906, 77.655346 ], [ 17.578125, 77.655346 ], [ 17.578125, 77.504119 ], [ 17.402344, 77.504119 ], [ 17.402344, 77.235074 ], [ 17.226562, 77.235074 ], [ 17.226562, 76.960334 ], [ 17.050781, 76.960334 ], [ 17.050781, 76.840816 ], [ 16.523438, 76.840816 ], [ 16.523438, 76.800739 ], [ 15.644531, 76.800739 ], [ 15.644531, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 76.920614 ], [ 15.292969, 76.920614 ], [ 15.292969, 76.960334 ], [ 15.117188, 76.960334 ], [ 15.117188, 76.999935 ], [ 14.941406, 76.999935 ], [ 14.941406, 77.039418 ], [ 14.765625, 77.039418 ], [ 14.765625, 77.118032 ], [ 14.589844, 77.118032 ], [ 14.589844, 77.157163 ], [ 14.414062, 77.157163 ], [ 14.414062, 77.196176 ], [ 14.238281, 77.196176 ], [ 14.238281, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.886719, 77.312520 ], [ 13.886719, 77.351070 ], [ 13.710938, 77.351070 ], [ 13.710938, 77.427824 ], [ 13.886719, 77.427824 ], [ 13.886719, 77.504119 ], [ 14.062500, 77.504119 ], [ 14.062500, 77.579959 ], [ 14.238281, 77.579959 ], [ 14.238281, 77.655346 ], [ 14.414062, 77.655346 ], [ 14.414062, 77.730282 ], [ 14.589844, 77.730282 ], [ 14.589844, 77.767582 ], [ 14.414062, 77.767582 ], [ 14.414062, 77.804771 ], [ 14.238281, 77.804771 ], [ 14.238281, 77.841848 ], [ 13.886719, 77.841848 ], [ 13.886719, 77.878814 ], [ 13.710938, 77.878814 ], [ 13.710938, 77.915669 ], [ 13.535156, 77.915669 ], [ 13.535156, 77.952414 ], [ 13.183594, 77.952414 ], [ 13.183594, 77.989049 ], [ 13.007812, 77.989049 ], [ 13.007812, 78.061989 ], [ 12.832031, 78.061989 ], [ 12.832031, 78.134493 ], [ 12.656250, 78.134493 ], [ 12.656250, 78.206563 ], [ 12.480469, 78.206563 ], [ 12.480469, 78.278201 ], [ 12.304688, 78.278201 ], [ 12.304688, 78.349411 ], [ 12.128906, 78.349411 ], [ 12.128906, 78.455425 ], [ 11.953125, 78.455425 ], [ 11.953125, 78.525573 ], [ 11.777344, 78.525573 ], [ 11.777344, 78.595299 ], [ 11.601562, 78.595299 ], [ 11.601562, 78.664608 ], [ 11.425781, 78.664608 ], [ 11.425781, 78.733501 ], [ 11.250000, 78.733501 ], [ 11.250000, 78.801980 ], [ 11.074219, 78.801980 ], [ 11.074219, 78.971386 ], [ 10.898438, 78.971386 ], [ 10.898438, 79.204309 ], [ 10.722656, 79.204309 ], [ 10.722656, 79.335219 ], [ 19.863281, 79.335219 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 22.851562, 78.349411 ], [ 23.027344, 78.349411 ], [ 23.027344, 78.170582 ], [ 23.203125, 78.170582 ], [ 23.203125, 78.061989 ], [ 23.378906, 78.061989 ], [ 23.378906, 78.025574 ], [ 23.730469, 78.025574 ], [ 23.730469, 77.989049 ], [ 23.906250, 77.989049 ], [ 23.906250, 77.952414 ], [ 24.082031, 77.952414 ], [ 24.082031, 77.915669 ], [ 24.433594, 77.915669 ], [ 24.433594, 77.878814 ], [ 24.609375, 77.878814 ], [ 24.609375, 77.841848 ], [ 24.433594, 77.841848 ], [ 24.433594, 77.804771 ], [ 24.257812, 77.804771 ], [ 24.257812, 77.767582 ], [ 23.906250, 77.767582 ], [ 23.906250, 77.730282 ], [ 23.730469, 77.730282 ], [ 23.730469, 77.692870 ], [ 23.554688, 77.692870 ], [ 23.554688, 77.655346 ], [ 23.378906, 77.655346 ], [ 23.378906, 77.617709 ], [ 23.203125, 77.617709 ], [ 23.203125, 77.579959 ], [ 22.851562, 77.579959 ], [ 22.851562, 77.542096 ], [ 22.675781, 77.542096 ], [ 22.675781, 77.504119 ], [ 22.500000, 77.504119 ], [ 22.500000, 77.466028 ], [ 22.148438, 77.466028 ], [ 22.148438, 77.504119 ], [ 21.796875, 77.504119 ], [ 21.796875, 77.542096 ], [ 21.445312, 77.542096 ], [ 21.445312, 77.579959 ], [ 21.269531, 77.579959 ], [ 21.269531, 77.617709 ], [ 20.917969, 77.617709 ], [ 20.917969, 77.655346 ], [ 20.566406, 77.655346 ], [ 20.566406, 77.692870 ], [ 20.742188, 77.692870 ], [ 20.742188, 77.767582 ], [ 20.917969, 77.767582 ], [ 20.917969, 77.841848 ], [ 21.093750, 77.841848 ], [ 21.093750, 77.915669 ], [ 21.269531, 77.915669 ], [ 21.269531, 77.989049 ], [ 21.093750, 77.989049 ], [ 21.093750, 78.098296 ], [ 20.917969, 78.098296 ], [ 20.917969, 78.206563 ], [ 20.742188, 78.206563 ], [ 20.742188, 78.278201 ], [ 21.093750, 78.278201 ], [ 21.093750, 78.313860 ], [ 21.445312, 78.313860 ], [ 21.445312, 78.349411 ], [ 21.972656, 78.349411 ], [ 21.972656, 78.384855 ], [ 22.324219, 78.384855 ], [ 22.324219, 78.420193 ], [ 22.675781, 78.420193 ], [ 22.675781, 78.455425 ], [ 22.851562, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 69.099940 ], [ 20.566406, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 68.974164 ], [ 20.917969, 68.974164 ], [ 20.917969, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.847665 ], [ 21.269531, 68.847665 ], [ 21.269531, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.720441 ], [ 21.621094, 68.720441 ], [ 21.621094, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.592487 ], [ 21.972656, 68.592487 ], [ 21.972656, 68.528235 ], [ 22.148438, 68.528235 ], [ 22.148438, 68.463800 ], [ 22.324219, 68.463800 ], [ 22.324219, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 68.334376 ], [ 22.675781, 68.334376 ], [ 22.675781, 68.269387 ], [ 22.851562, 68.269387 ], [ 22.851562, 68.138852 ], [ 23.027344, 68.138852 ], [ 23.027344, 68.073305 ], [ 23.203125, 68.073305 ], [ 23.203125, 68.007571 ], [ 23.378906, 68.007571 ], [ 23.378906, 67.941650 ], [ 23.554688, 67.941650 ], [ 23.554688, 66.231457 ], [ 23.730469, 66.231457 ], [ 23.730469, 66.160511 ], [ 15.117188, 66.160511 ], [ 15.117188, 66.231457 ], [ 15.292969, 66.231457 ], [ 15.292969, 66.443107 ], [ 15.468750, 66.443107 ], [ 15.468750, 66.583217 ], [ 15.644531, 66.583217 ], [ 15.644531, 66.791909 ], [ 15.820312, 66.791909 ], [ 15.820312, 66.998844 ], [ 15.996094, 66.998844 ], [ 15.996094, 67.135829 ], [ 16.171875, 67.135829 ], [ 16.171875, 67.339861 ], [ 16.347656, 67.339861 ], [ 16.347656, 67.609221 ], [ 16.523438, 67.609221 ], [ 16.523438, 67.875541 ], [ 16.699219, 67.875541 ], [ 16.699219, 68.007571 ], [ 17.753906, 68.007571 ], [ 17.753906, 68.269387 ], [ 17.929688, 68.269387 ], [ 17.929688, 68.592487 ], [ 18.105469, 68.592487 ], [ 18.105469, 68.528235 ], [ 18.808594, 68.528235 ], [ 18.808594, 68.463800 ], [ 19.511719, 68.463800 ], [ 19.511719, 68.399180 ], [ 19.863281, 68.399180 ], [ 19.863281, 68.720441 ], [ 20.039062, 68.720441 ], [ 20.039062, 69.037142 ], [ 20.390625, 69.037142 ], [ 20.390625, 69.099940 ], [ 20.566406, 69.099940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 69.162558 ], [ 20.566406, 69.099940 ], [ 20.742188, 69.099940 ], [ 20.742188, 69.037142 ], [ 20.917969, 69.037142 ], [ 20.917969, 68.974164 ], [ 21.093750, 68.974164 ], [ 21.093750, 68.911005 ], [ 21.269531, 68.911005 ], [ 21.269531, 68.847665 ], [ 21.445312, 68.847665 ], [ 21.445312, 68.784144 ], [ 21.621094, 68.784144 ], [ 21.621094, 68.720441 ], [ 21.796875, 68.720441 ], [ 21.796875, 68.656555 ], [ 21.972656, 68.656555 ], [ 21.972656, 68.592487 ], [ 22.148438, 68.592487 ], [ 22.148438, 68.463800 ], [ 22.324219, 68.463800 ], [ 22.324219, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 68.334376 ], [ 22.675781, 68.334376 ], [ 22.675781, 68.204212 ], [ 22.851562, 68.204212 ], [ 22.851562, 68.138852 ], [ 23.027344, 68.138852 ], [ 23.027344, 68.073305 ], [ 23.203125, 68.073305 ], [ 23.203125, 67.941650 ], [ 23.378906, 67.941650 ], [ 23.378906, 67.204032 ], [ 23.554688, 67.204032 ], [ 23.554688, 66.302205 ], [ 23.730469, 66.302205 ], [ 23.730469, 66.160511 ], [ 14.941406, 66.160511 ], [ 14.941406, 66.302205 ], [ 15.117188, 66.302205 ], [ 15.117188, 66.513260 ], [ 15.292969, 66.513260 ], [ 15.292969, 66.652977 ], [ 15.468750, 66.652977 ], [ 15.468750, 66.861082 ], [ 15.644531, 66.861082 ], [ 15.644531, 67.067433 ], [ 15.820312, 67.067433 ], [ 15.820312, 67.204032 ], [ 15.996094, 67.204032 ], [ 15.996094, 67.407487 ], [ 16.171875, 67.407487 ], [ 16.171875, 67.609221 ], [ 16.347656, 67.609221 ], [ 16.347656, 67.742759 ], [ 16.523438, 67.742759 ], [ 16.523438, 67.941650 ], [ 16.699219, 67.941650 ], [ 16.699219, 68.073305 ], [ 17.578125, 68.073305 ], [ 17.578125, 68.204212 ], [ 17.753906, 68.204212 ], [ 17.753906, 68.463800 ], [ 17.929688, 68.463800 ], [ 17.929688, 68.592487 ], [ 18.281250, 68.592487 ], [ 18.281250, 68.528235 ], [ 19.335938, 68.528235 ], [ 19.335938, 68.463800 ], [ 19.863281, 68.463800 ], [ 19.863281, 69.099940 ], [ 20.390625, 69.099940 ], [ 20.390625, 69.162558 ], [ 20.566406, 69.162558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 70.080562 ], [ 27.949219, 70.020587 ], [ 28.125000, 70.020587 ], [ 28.125000, 69.960439 ], [ 28.476562, 69.960439 ], [ 28.476562, 69.900118 ], [ 28.652344, 69.900118 ], [ 28.652344, 69.839622 ], [ 28.828125, 69.839622 ], [ 28.828125, 69.778952 ], [ 29.003906, 69.778952 ], [ 29.003906, 69.595890 ], [ 28.828125, 69.595890 ], [ 28.828125, 69.224997 ], [ 28.652344, 69.224997 ], [ 28.652344, 68.656555 ], [ 28.476562, 68.656555 ], [ 28.476562, 68.269387 ], [ 28.652344, 68.269387 ], [ 28.652344, 68.204212 ], [ 28.828125, 68.204212 ], [ 28.828125, 68.138852 ], [ 29.003906, 68.138852 ], [ 29.003906, 68.073305 ], [ 29.179688, 68.073305 ], [ 29.179688, 68.007571 ], [ 29.355469, 68.007571 ], [ 29.355469, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.809245 ], [ 29.707031, 67.809245 ], [ 29.707031, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.676085 ], [ 30.058594, 67.676085 ], [ 30.058594, 67.609221 ], [ 29.882812, 67.609221 ], [ 29.882812, 67.474922 ], [ 29.707031, 67.474922 ], [ 29.707031, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.204032 ], [ 29.355469, 67.204032 ], [ 29.355469, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.930060 ], [ 29.003906, 66.930060 ], [ 29.003906, 66.791909 ], [ 29.179688, 66.791909 ], [ 29.179688, 66.652977 ], [ 29.355469, 66.652977 ], [ 29.355469, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 66.372755 ], [ 29.707031, 66.372755 ], [ 29.707031, 66.231457 ], [ 29.882812, 66.231457 ], [ 29.882812, 66.160511 ], [ 23.730469, 66.160511 ], [ 23.730469, 66.231457 ], [ 23.554688, 66.231457 ], [ 23.554688, 67.941650 ], [ 23.378906, 67.941650 ], [ 23.378906, 68.007571 ], [ 23.203125, 68.007571 ], [ 23.203125, 68.073305 ], [ 23.027344, 68.073305 ], [ 23.027344, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.269387 ], [ 22.675781, 68.269387 ], [ 22.675781, 68.334376 ], [ 22.500000, 68.334376 ], [ 22.500000, 68.399180 ], [ 22.324219, 68.399180 ], [ 22.324219, 68.463800 ], [ 22.148438, 68.463800 ], [ 22.148438, 68.528235 ], [ 21.972656, 68.528235 ], [ 21.972656, 68.592487 ], [ 21.796875, 68.592487 ], [ 21.796875, 68.656555 ], [ 21.621094, 68.656555 ], [ 21.621094, 68.720441 ], [ 21.445312, 68.720441 ], [ 21.445312, 68.784144 ], [ 21.269531, 68.784144 ], [ 21.269531, 68.847665 ], [ 21.093750, 68.847665 ], [ 21.093750, 68.911005 ], [ 20.917969, 68.911005 ], [ 20.917969, 68.974164 ], [ 20.742188, 68.974164 ], [ 20.742188, 69.037142 ], [ 20.566406, 69.037142 ], [ 20.566406, 69.099940 ], [ 20.742188, 69.099940 ], [ 20.742188, 69.162558 ], [ 20.917969, 69.162558 ], [ 20.917969, 69.224997 ], [ 21.093750, 69.224997 ], [ 21.093750, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.224997 ], [ 21.621094, 69.224997 ], [ 21.621094, 69.099940 ], [ 21.796875, 69.099940 ], [ 21.796875, 69.037142 ], [ 21.972656, 69.037142 ], [ 21.972656, 68.974164 ], [ 22.148438, 68.974164 ], [ 22.148438, 68.847665 ], [ 23.203125, 68.847665 ], [ 23.203125, 68.911005 ], [ 23.730469, 68.911005 ], [ 23.730469, 68.847665 ], [ 24.082031, 68.847665 ], [ 24.082031, 68.784144 ], [ 24.257812, 68.784144 ], [ 24.257812, 68.720441 ], [ 24.609375, 68.720441 ], [ 24.609375, 68.656555 ], [ 24.960938, 68.656555 ], [ 24.960938, 68.784144 ], [ 25.136719, 68.784144 ], [ 25.136719, 68.847665 ], [ 25.312500, 68.847665 ], [ 25.312500, 68.911005 ], [ 25.488281, 68.911005 ], [ 25.488281, 69.037142 ], [ 25.664062, 69.037142 ], [ 25.664062, 69.224997 ], [ 25.839844, 69.224997 ], [ 25.839844, 69.472969 ], [ 26.015625, 69.472969 ], [ 26.015625, 69.718107 ], [ 26.191406, 69.718107 ], [ 26.191406, 69.839622 ], [ 26.367188, 69.839622 ], [ 26.367188, 69.900118 ], [ 26.718750, 69.900118 ], [ 26.718750, 69.960439 ], [ 27.070312, 69.960439 ], [ 27.070312, 70.020587 ], [ 27.421875, 70.020587 ], [ 27.421875, 70.080562 ], [ 27.949219, 70.080562 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 70.140364 ], [ 27.773438, 70.080562 ], [ 27.949219, 70.080562 ], [ 27.949219, 70.020587 ], [ 28.125000, 70.020587 ], [ 28.125000, 69.960439 ], [ 28.476562, 69.960439 ], [ 28.476562, 69.900118 ], [ 28.652344, 69.900118 ], [ 28.652344, 69.839622 ], [ 28.828125, 69.839622 ], [ 28.828125, 69.778952 ], [ 29.003906, 69.778952 ], [ 29.003906, 69.657086 ], [ 28.828125, 69.657086 ], [ 28.828125, 69.411242 ], [ 28.652344, 69.411242 ], [ 28.652344, 69.162558 ], [ 28.476562, 69.162558 ], [ 28.476562, 68.720441 ], [ 28.300781, 68.720441 ], [ 28.300781, 68.334376 ], [ 28.476562, 68.334376 ], [ 28.476562, 68.269387 ], [ 28.652344, 68.269387 ], [ 28.652344, 68.204212 ], [ 28.828125, 68.204212 ], [ 28.828125, 68.138852 ], [ 29.003906, 68.138852 ], [ 29.003906, 68.073305 ], [ 29.179688, 68.073305 ], [ 29.179688, 67.941650 ], [ 29.355469, 67.941650 ], [ 29.355469, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.809245 ], [ 29.707031, 67.809245 ], [ 29.707031, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.609221 ], [ 29.707031, 67.609221 ], [ 29.707031, 67.474922 ], [ 29.531250, 67.474922 ], [ 29.531250, 67.339861 ], [ 29.355469, 67.339861 ], [ 29.355469, 67.204032 ], [ 29.179688, 67.204032 ], [ 29.179688, 67.067433 ], [ 29.003906, 67.067433 ], [ 29.003906, 66.861082 ], [ 29.179688, 66.861082 ], [ 29.179688, 66.652977 ], [ 29.355469, 66.652977 ], [ 29.355469, 66.443107 ], [ 29.531250, 66.443107 ], [ 29.531250, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.160511 ], [ 23.730469, 66.160511 ], [ 23.730469, 66.302205 ], [ 23.554688, 66.302205 ], [ 23.554688, 67.204032 ], [ 23.378906, 67.204032 ], [ 23.378906, 67.941650 ], [ 23.203125, 67.941650 ], [ 23.203125, 68.073305 ], [ 23.027344, 68.073305 ], [ 23.027344, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.204212 ], [ 22.675781, 68.204212 ], [ 22.675781, 68.334376 ], [ 22.500000, 68.334376 ], [ 22.500000, 68.399180 ], [ 22.324219, 68.399180 ], [ 22.324219, 68.463800 ], [ 22.148438, 68.463800 ], [ 22.148438, 68.592487 ], [ 21.972656, 68.592487 ], [ 21.972656, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.720441 ], [ 21.621094, 68.720441 ], [ 21.621094, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.847665 ], [ 21.269531, 68.847665 ], [ 21.269531, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.974164 ], [ 20.917969, 68.974164 ], [ 20.917969, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 69.099940 ], [ 20.566406, 69.099940 ], [ 20.566406, 69.162558 ], [ 20.742188, 69.162558 ], [ 20.742188, 69.287257 ], [ 20.917969, 69.287257 ], [ 20.917969, 69.349339 ], [ 21.269531, 69.349339 ], [ 21.269531, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.162558 ], [ 21.621094, 69.162558 ], [ 21.621094, 69.099940 ], [ 21.796875, 69.099940 ], [ 21.796875, 69.037142 ], [ 21.972656, 69.037142 ], [ 21.972656, 68.911005 ], [ 22.148438, 68.911005 ], [ 22.148438, 68.847665 ], [ 23.027344, 68.847665 ], [ 23.027344, 68.911005 ], [ 23.554688, 68.911005 ], [ 23.554688, 68.847665 ], [ 23.906250, 68.847665 ], [ 23.906250, 68.784144 ], [ 24.082031, 68.784144 ], [ 24.082031, 68.720441 ], [ 24.433594, 68.720441 ], [ 24.433594, 68.656555 ], [ 24.785156, 68.656555 ], [ 24.785156, 68.720441 ], [ 24.960938, 68.720441 ], [ 24.960938, 68.784144 ], [ 25.136719, 68.784144 ], [ 25.136719, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.974164 ], [ 25.488281, 68.974164 ], [ 25.488281, 69.037142 ], [ 25.664062, 69.037142 ], [ 25.664062, 69.287257 ], [ 25.839844, 69.287257 ], [ 25.839844, 69.657086 ], [ 26.015625, 69.657086 ], [ 26.015625, 69.839622 ], [ 26.191406, 69.839622 ], [ 26.191406, 69.900118 ], [ 26.542969, 69.900118 ], [ 26.542969, 69.960439 ], [ 26.718750, 69.960439 ], [ 26.718750, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 70.080562 ], [ 27.246094, 70.080562 ], [ 27.246094, 70.140364 ], [ 27.773438, 70.140364 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.647035 ], [ 45.878906, 80.589727 ], [ 45.175781, 80.589727 ], [ 45.175781, 80.618424 ], [ 45.527344, 80.618424 ], [ 45.527344, 80.647035 ], [ 45.878906, 80.647035 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.675559 ], [ 45.878906, 80.589727 ], [ 45.000000, 80.589727 ], [ 45.000000, 80.618424 ], [ 45.351562, 80.618424 ], [ 45.351562, 80.647035 ], [ 45.527344, 80.647035 ], [ 45.527344, 80.675559 ], [ 45.878906, 80.675559 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.050781, 80.058050 ], [ 17.050781, 80.027655 ], [ 17.226562, 80.027655 ], [ 17.226562, 79.966590 ], [ 17.402344, 79.966590 ], [ 17.402344, 79.905154 ], [ 17.578125, 79.905154 ], [ 17.578125, 79.874297 ], [ 17.753906, 79.874297 ], [ 17.753906, 79.812302 ], [ 17.929688, 79.812302 ], [ 17.929688, 79.749932 ], [ 18.105469, 79.749932 ], [ 18.105469, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.655668 ], [ 18.457031, 79.655668 ], [ 18.457031, 79.624056 ], [ 18.632812, 79.624056 ], [ 18.632812, 79.560546 ], [ 18.808594, 79.560546 ], [ 18.808594, 79.528647 ], [ 18.984375, 79.528647 ], [ 18.984375, 79.496652 ], [ 19.160156, 79.496652 ], [ 19.160156, 79.464560 ], [ 19.335938, 79.464560 ], [ 19.335938, 79.400085 ], [ 19.511719, 79.400085 ], [ 19.511719, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.335219 ], [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.269962 ], [ 20.214844, 79.269962 ], [ 20.214844, 79.204309 ], [ 20.390625, 79.204309 ], [ 20.390625, 79.171335 ], [ 20.566406, 79.171335 ], [ 20.566406, 79.138260 ], [ 20.742188, 79.138260 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 79.004962 ], [ 11.074219, 79.004962 ], [ 11.074219, 79.071812 ], [ 10.898438, 79.071812 ], [ 10.898438, 79.237185 ], [ 10.722656, 79.237185 ], [ 10.722656, 79.400085 ], [ 10.546875, 79.400085 ], [ 10.546875, 79.560546 ], [ 10.371094, 79.560546 ], [ 10.371094, 79.655668 ], [ 10.546875, 79.655668 ], [ 10.546875, 79.687184 ], [ 10.898438, 79.687184 ], [ 10.898438, 79.718605 ], [ 11.074219, 79.718605 ], [ 11.074219, 79.749932 ], [ 11.425781, 79.749932 ], [ 11.425781, 79.781164 ], [ 11.601562, 79.781164 ], [ 11.601562, 79.812302 ], [ 11.953125, 79.812302 ], [ 11.953125, 79.843346 ], [ 12.128906, 79.843346 ], [ 12.128906, 79.874297 ], [ 12.304688, 79.874297 ], [ 12.304688, 79.905154 ], [ 12.656250, 79.905154 ], [ 12.656250, 79.935918 ], [ 12.832031, 79.935918 ], [ 12.832031, 79.966590 ], [ 13.183594, 79.966590 ], [ 13.183594, 79.935918 ], [ 13.359375, 79.935918 ], [ 13.359375, 79.812302 ], [ 13.535156, 79.812302 ], [ 13.535156, 79.687184 ], [ 13.710938, 79.687184 ], [ 13.710938, 79.655668 ], [ 14.589844, 79.655668 ], [ 14.589844, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.749932 ], [ 15.292969, 79.749932 ], [ 15.292969, 79.935918 ], [ 15.468750, 79.935918 ], [ 15.468750, 80.027655 ], [ 16.347656, 80.027655 ], [ 16.347656, 80.058050 ], [ 17.050781, 80.058050 ] ] ], [ [ [ 23.203125, 80.618424 ], [ 23.203125, 80.589727 ], [ 23.554688, 80.589727 ], [ 23.554688, 80.560943 ], [ 23.906250, 80.560943 ], [ 23.906250, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.503112 ], [ 24.609375, 80.503112 ], [ 24.609375, 80.474065 ], [ 24.960938, 80.474065 ], [ 24.960938, 80.444931 ], [ 25.312500, 80.444931 ], [ 25.312500, 80.415707 ], [ 25.488281, 80.415707 ], [ 25.488281, 80.386396 ], [ 25.664062, 80.386396 ], [ 25.664062, 80.356995 ], [ 25.839844, 80.356995 ], [ 25.839844, 80.327506 ], [ 26.015625, 80.327506 ], [ 26.015625, 80.297927 ], [ 26.191406, 80.297927 ], [ 26.191406, 80.268259 ], [ 26.367188, 80.268259 ], [ 26.367188, 80.238501 ], [ 26.542969, 80.238501 ], [ 26.542969, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.148684 ], [ 26.894531, 80.148684 ], [ 26.894531, 80.118564 ], [ 27.070312, 80.118564 ], [ 27.070312, 80.088352 ], [ 27.246094, 80.088352 ], [ 27.246094, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 80.027655 ], [ 27.246094, 80.027655 ], [ 27.246094, 79.966590 ], [ 27.070312, 79.966590 ], [ 27.070312, 79.905154 ], [ 26.894531, 79.905154 ], [ 26.894531, 79.843346 ], [ 26.718750, 79.843346 ], [ 26.718750, 79.781164 ], [ 26.542969, 79.781164 ], [ 26.542969, 79.718605 ], [ 26.367188, 79.718605 ], [ 26.367188, 79.655668 ], [ 26.191406, 79.655668 ], [ 26.191406, 79.592349 ], [ 26.015625, 79.592349 ], [ 26.015625, 79.528647 ], [ 25.664062, 79.528647 ], [ 25.664062, 79.496652 ], [ 24.960938, 79.496652 ], [ 24.960938, 79.464560 ], [ 24.257812, 79.464560 ], [ 24.257812, 79.432371 ], [ 23.554688, 79.432371 ], [ 23.554688, 79.400085 ], [ 22.675781, 79.400085 ], [ 22.675781, 79.432371 ], [ 21.972656, 79.432371 ], [ 21.972656, 79.464560 ], [ 21.445312, 79.464560 ], [ 21.445312, 79.496652 ], [ 20.917969, 79.496652 ], [ 20.917969, 79.528647 ], [ 20.214844, 79.528647 ], [ 20.214844, 79.560546 ], [ 20.039062, 79.560546 ], [ 20.039062, 79.687184 ], [ 19.863281, 79.687184 ], [ 19.863281, 79.843346 ], [ 18.984375, 79.843346 ], [ 18.984375, 79.874297 ], [ 18.457031, 79.874297 ], [ 18.457031, 79.905154 ], [ 18.281250, 79.905154 ], [ 18.281250, 79.966590 ], [ 18.105469, 79.966590 ], [ 18.105469, 80.058050 ], [ 17.929688, 80.058050 ], [ 17.929688, 80.118564 ], [ 17.753906, 80.118564 ], [ 17.753906, 80.208652 ], [ 17.578125, 80.208652 ], [ 17.578125, 80.268259 ], [ 17.402344, 80.268259 ], [ 17.402344, 80.327506 ], [ 17.578125, 80.327506 ], [ 17.578125, 80.356995 ], [ 17.929688, 80.356995 ], [ 17.929688, 80.386396 ], [ 18.281250, 80.386396 ], [ 18.281250, 80.415707 ], [ 18.632812, 80.415707 ], [ 18.632812, 80.444931 ], [ 18.984375, 80.444931 ], [ 18.984375, 80.474065 ], [ 19.335938, 80.474065 ], [ 19.335938, 80.503112 ], [ 19.687500, 80.503112 ], [ 19.687500, 80.532071 ], [ 20.039062, 80.532071 ], [ 20.039062, 80.560943 ], [ 20.566406, 80.560943 ], [ 20.566406, 80.532071 ], [ 20.742188, 80.532071 ], [ 20.742188, 80.503112 ], [ 20.917969, 80.503112 ], [ 20.917969, 80.474065 ], [ 21.269531, 80.474065 ], [ 21.269531, 80.444931 ], [ 21.445312, 80.444931 ], [ 21.445312, 80.415707 ], [ 21.621094, 80.415707 ], [ 21.621094, 80.386396 ], [ 21.796875, 80.386396 ], [ 21.796875, 80.356995 ], [ 21.972656, 80.356995 ], [ 21.972656, 80.386396 ], [ 22.148438, 80.386396 ], [ 22.148438, 80.444931 ], [ 22.324219, 80.444931 ], [ 22.324219, 80.503112 ], [ 22.500000, 80.503112 ], [ 22.500000, 80.560943 ], [ 22.675781, 80.560943 ], [ 22.675781, 80.618424 ], [ 23.203125, 80.618424 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, 80.058050 ], [ 16.875000, 80.027655 ], [ 17.050781, 80.027655 ], [ 17.050781, 79.966590 ], [ 17.226562, 79.966590 ], [ 17.226562, 79.935918 ], [ 17.402344, 79.935918 ], [ 17.402344, 79.874297 ], [ 17.578125, 79.874297 ], [ 17.578125, 79.812302 ], [ 17.753906, 79.812302 ], [ 17.753906, 79.781164 ], [ 17.929688, 79.781164 ], [ 17.929688, 79.718605 ], [ 18.105469, 79.718605 ], [ 18.105469, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.655668 ], [ 18.457031, 79.655668 ], [ 18.457031, 79.592349 ], [ 18.632812, 79.592349 ], [ 18.632812, 79.560546 ], [ 18.808594, 79.560546 ], [ 18.808594, 79.528647 ], [ 18.984375, 79.528647 ], [ 18.984375, 79.496652 ], [ 19.160156, 79.496652 ], [ 19.160156, 79.464560 ], [ 19.335938, 79.464560 ], [ 19.335938, 79.400085 ], [ 19.511719, 79.400085 ], [ 19.511719, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.335219 ], [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.237185 ], [ 20.214844, 79.237185 ], [ 20.214844, 79.204309 ], [ 20.390625, 79.204309 ], [ 20.390625, 79.171335 ], [ 20.566406, 79.171335 ], [ 20.566406, 79.138260 ], [ 20.742188, 79.138260 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 79.004962 ], [ 11.074219, 79.004962 ], [ 11.074219, 79.071812 ], [ 10.898438, 79.071812 ], [ 10.898438, 79.237185 ], [ 10.722656, 79.237185 ], [ 10.722656, 79.400085 ], [ 10.546875, 79.400085 ], [ 10.546875, 79.560546 ], [ 10.371094, 79.560546 ], [ 10.371094, 79.655668 ], [ 10.546875, 79.655668 ], [ 10.546875, 79.687184 ], [ 10.722656, 79.687184 ], [ 10.722656, 79.718605 ], [ 11.074219, 79.718605 ], [ 11.074219, 79.749932 ], [ 11.250000, 79.749932 ], [ 11.250000, 79.781164 ], [ 11.425781, 79.781164 ], [ 11.425781, 79.812302 ], [ 11.601562, 79.812302 ], [ 11.601562, 79.843346 ], [ 11.953125, 79.843346 ], [ 11.953125, 79.874297 ], [ 12.128906, 79.874297 ], [ 12.128906, 79.905154 ], [ 12.304688, 79.905154 ], [ 12.304688, 79.935918 ], [ 12.480469, 79.935918 ], [ 12.480469, 79.966590 ], [ 12.832031, 79.966590 ], [ 12.832031, 79.997168 ], [ 13.007812, 79.997168 ], [ 13.007812, 79.966590 ], [ 13.183594, 79.966590 ], [ 13.183594, 79.874297 ], [ 13.359375, 79.874297 ], [ 13.359375, 79.812302 ], [ 13.535156, 79.812302 ], [ 13.535156, 79.718605 ], [ 13.710938, 79.718605 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.749932 ], [ 15.292969, 79.749932 ], [ 15.292969, 79.935918 ], [ 15.468750, 79.935918 ], [ 15.468750, 80.027655 ], [ 16.347656, 80.027655 ], [ 16.347656, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 23.203125, 80.647035 ], [ 23.203125, 80.618424 ], [ 23.378906, 80.618424 ], [ 23.378906, 80.589727 ], [ 23.730469, 80.589727 ], [ 23.730469, 80.560943 ], [ 23.906250, 80.560943 ], [ 23.906250, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.503112 ], [ 24.609375, 80.503112 ], [ 24.609375, 80.474065 ], [ 24.785156, 80.474065 ], [ 24.785156, 80.444931 ], [ 25.136719, 80.444931 ], [ 25.136719, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.386396 ], [ 25.488281, 80.386396 ], [ 25.488281, 80.356995 ], [ 25.664062, 80.356995 ], [ 25.664062, 80.327506 ], [ 25.839844, 80.327506 ], [ 25.839844, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.268259 ], [ 26.191406, 80.268259 ], [ 26.191406, 80.238501 ], [ 26.367188, 80.238501 ], [ 26.367188, 80.178713 ], [ 26.542969, 80.178713 ], [ 26.542969, 80.148684 ], [ 26.718750, 80.148684 ], [ 26.718750, 80.118564 ], [ 26.894531, 80.118564 ], [ 26.894531, 80.088352 ], [ 27.070312, 80.088352 ], [ 27.070312, 80.058050 ], [ 27.246094, 80.058050 ], [ 27.246094, 79.997168 ], [ 27.070312, 79.997168 ], [ 27.070312, 79.935918 ], [ 26.894531, 79.935918 ], [ 26.894531, 79.874297 ], [ 26.718750, 79.874297 ], [ 26.718750, 79.812302 ], [ 26.542969, 79.812302 ], [ 26.542969, 79.749932 ], [ 26.367188, 79.749932 ], [ 26.367188, 79.687184 ], [ 26.191406, 79.687184 ], [ 26.191406, 79.624056 ], [ 26.015625, 79.624056 ], [ 26.015625, 79.560546 ], [ 25.839844, 79.560546 ], [ 25.839844, 79.528647 ], [ 25.488281, 79.528647 ], [ 25.488281, 79.496652 ], [ 24.785156, 79.496652 ], [ 24.785156, 79.464560 ], [ 24.082031, 79.464560 ], [ 24.082031, 79.432371 ], [ 23.378906, 79.432371 ], [ 23.378906, 79.400085 ], [ 22.500000, 79.400085 ], [ 22.500000, 79.432371 ], [ 21.972656, 79.432371 ], [ 21.972656, 79.464560 ], [ 21.621094, 79.464560 ], [ 21.621094, 79.496652 ], [ 21.093750, 79.496652 ], [ 21.093750, 79.528647 ], [ 20.566406, 79.528647 ], [ 20.566406, 79.560546 ], [ 20.214844, 79.560546 ], [ 20.214844, 79.592349 ], [ 20.039062, 79.592349 ], [ 20.039062, 79.718605 ], [ 19.863281, 79.718605 ], [ 19.863281, 79.843346 ], [ 18.984375, 79.843346 ], [ 18.984375, 79.874297 ], [ 18.457031, 79.874297 ], [ 18.457031, 79.905154 ], [ 18.281250, 79.905154 ], [ 18.281250, 79.966590 ], [ 18.105469, 79.966590 ], [ 18.105469, 80.027655 ], [ 17.929688, 80.027655 ], [ 17.929688, 80.088352 ], [ 17.753906, 80.088352 ], [ 17.753906, 80.148684 ], [ 17.578125, 80.148684 ], [ 17.578125, 80.208652 ], [ 17.402344, 80.208652 ], [ 17.402344, 80.268259 ], [ 17.226562, 80.268259 ], [ 17.226562, 80.327506 ], [ 17.402344, 80.327506 ], [ 17.402344, 80.356995 ], [ 17.753906, 80.356995 ], [ 17.753906, 80.386396 ], [ 18.105469, 80.386396 ], [ 18.105469, 80.415707 ], [ 18.457031, 80.415707 ], [ 18.457031, 80.444931 ], [ 18.808594, 80.444931 ], [ 18.808594, 80.474065 ], [ 18.984375, 80.474065 ], [ 18.984375, 80.503112 ], [ 19.335938, 80.503112 ], [ 19.335938, 80.532071 ], [ 19.687500, 80.532071 ], [ 19.687500, 80.560943 ], [ 20.039062, 80.560943 ], [ 20.039062, 80.589727 ], [ 20.566406, 80.589727 ], [ 20.566406, 80.560943 ], [ 20.742188, 80.560943 ], [ 20.742188, 80.532071 ], [ 20.917969, 80.532071 ], [ 20.917969, 80.503112 ], [ 21.093750, 80.503112 ], [ 21.093750, 80.474065 ], [ 21.269531, 80.474065 ], [ 21.269531, 80.444931 ], [ 21.445312, 80.444931 ], [ 21.445312, 80.415707 ], [ 21.621094, 80.415707 ], [ 21.621094, 80.386396 ], [ 21.972656, 80.386396 ], [ 21.972656, 80.444931 ], [ 22.148438, 80.444931 ], [ 22.148438, 80.503112 ], [ 22.324219, 80.503112 ], [ 22.324219, 80.532071 ], [ 22.500000, 80.532071 ], [ 22.500000, 80.589727 ], [ 22.675781, 80.589727 ], [ 22.675781, 80.647035 ], [ 23.203125, 80.647035 ] ] ] ] } } ] } ] } , @@ -1916,121 +1907,121 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.953125, -66.160511 ], [ 56.953125, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.443107 ], [ 57.304688, -66.443107 ], [ 57.304688, -66.722541 ], [ 57.480469, -66.722541 ], [ 57.480469, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -66.861082 ], [ 57.832031, -66.861082 ], [ 57.832031, -66.930060 ], [ 58.007812, -66.930060 ], [ 58.007812, -66.998844 ], [ 58.183594, -66.998844 ], [ 58.183594, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.135829 ], [ 58.535156, -67.135829 ], [ 58.535156, -67.272043 ], [ 58.886719, -67.272043 ], [ 58.886719, -67.339861 ], [ 59.589844, -67.339861 ], [ 59.589844, -67.407487 ], [ 59.941406, -67.407487 ], [ 59.941406, -67.474922 ], [ 60.117188, -67.474922 ], [ 60.117188, -67.542167 ], [ 60.292969, -67.542167 ], [ 60.292969, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.676085 ], [ 60.644531, -67.676085 ], [ 60.644531, -67.742759 ], [ 60.820312, -67.742759 ], [ 60.820312, -67.809245 ], [ 60.996094, -67.809245 ], [ 60.996094, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -67.941650 ], [ 61.699219, -67.941650 ], [ 61.699219, -68.007571 ], [ 62.578125, -68.007571 ], [ 62.578125, -67.941650 ], [ 62.929688, -67.941650 ], [ 62.929688, -67.875541 ], [ 63.105469, -67.875541 ], [ 63.105469, -67.809245 ], [ 63.281250, -67.809245 ], [ 63.281250, -67.742759 ], [ 63.457031, -67.742759 ], [ 63.457031, -67.609221 ], [ 63.632812, -67.609221 ], [ 63.632812, -67.542167 ], [ 63.808594, -67.542167 ], [ 63.808594, -67.474922 ], [ 64.335938, -67.474922 ], [ 64.335938, -67.542167 ], [ 64.687500, -67.542167 ], [ 64.687500, -67.609221 ], [ 65.214844, -67.609221 ], [ 65.214844, -67.676085 ], [ 65.566406, -67.676085 ], [ 65.566406, -67.742759 ], [ 66.093750, -67.742759 ], [ 66.093750, -67.809245 ], [ 66.621094, -67.809245 ], [ 66.621094, -67.875541 ], [ 67.324219, -67.875541 ], [ 67.324219, -67.941650 ], [ 68.906250, -67.941650 ], [ 68.906250, -68.073305 ], [ 69.082031, -68.073305 ], [ 69.082031, -68.269387 ], [ 69.257812, -68.269387 ], [ 69.257812, -68.463800 ], [ 69.433594, -68.463800 ], [ 69.433594, -68.720441 ], [ 69.609375, -68.720441 ], [ 69.609375, -68.911005 ], [ 69.785156, -68.911005 ], [ 69.785156, -69.099940 ], [ 69.609375, -69.099940 ], [ 69.609375, -69.718107 ], [ 69.433594, -69.718107 ], [ 69.433594, -69.778952 ], [ 69.257812, -69.778952 ], [ 69.257812, -69.839622 ], [ 68.906250, -69.839622 ], [ 68.906250, -69.900118 ], [ 68.730469, -69.900118 ], [ 68.730469, -69.960439 ], [ 68.554688, -69.960439 ], [ 68.554688, -70.020587 ], [ 68.378906, -70.020587 ], [ 68.378906, -70.140364 ], [ 68.203125, -70.140364 ], [ 68.203125, -70.199994 ], [ 68.027344, -70.199994 ], [ 68.027344, -70.318738 ], [ 67.851562, -70.318738 ], [ 67.851562, -70.495574 ], [ 68.027344, -70.495574 ], [ 68.027344, -70.670881 ], [ 69.082031, -70.670881 ], [ 69.082031, -70.902268 ], [ 68.906250, -70.902268 ], [ 68.906250, -71.187754 ], [ 68.730469, -71.187754 ], [ 68.730469, -71.300793 ], [ 68.554688, -71.300793 ], [ 68.554688, -71.413177 ], [ 68.378906, -71.413177 ], [ 68.378906, -71.580532 ], [ 68.203125, -71.580532 ], [ 68.203125, -71.801410 ], [ 68.027344, -71.801410 ], [ 68.027344, -71.910888 ], [ 68.203125, -71.910888 ], [ 68.203125, -72.019729 ], [ 68.378906, -72.019729 ], [ 68.378906, -72.073911 ], [ 68.554688, -72.073911 ], [ 68.554688, -72.181804 ], [ 68.906250, -72.181804 ], [ 68.906250, -72.235514 ], [ 69.433594, -72.235514 ], [ 69.433594, -72.289067 ], [ 69.960938, -72.289067 ], [ 69.960938, -72.235514 ], [ 70.312500, -72.235514 ], [ 70.312500, -72.181804 ], [ 70.664062, -72.181804 ], [ 70.664062, -72.127936 ], [ 71.015625, -72.127936 ], [ 71.015625, -72.019729 ], [ 71.191406, -72.019729 ], [ 71.191406, -71.910888 ], [ 71.367188, -71.910888 ], [ 71.367188, -71.801410 ], [ 71.542969, -71.801410 ], [ 71.542969, -71.635993 ], [ 71.718750, -71.635993 ], [ 71.718750, -71.413177 ], [ 71.894531, -71.413177 ], [ 71.894531, -71.300793 ], [ 72.070312, -71.300793 ], [ 72.070312, -71.187754 ], [ 72.246094, -71.187754 ], [ 72.246094, -71.074056 ], [ 72.421875, -71.074056 ], [ 72.421875, -71.016960 ], [ 72.597656, -71.016960 ], [ 72.597656, -70.959697 ], [ 72.773438, -70.959697 ], [ 72.773438, -70.844673 ], [ 72.949219, -70.844673 ], [ 72.949219, -70.786910 ], [ 73.125000, -70.786910 ], [ 73.125000, -70.554179 ], [ 73.300781, -70.554179 ], [ 73.300781, -70.318738 ], [ 73.476562, -70.318738 ], [ 73.476562, -70.140364 ], [ 73.652344, -70.140364 ], [ 73.652344, -70.020587 ], [ 73.828125, -70.020587 ], [ 73.828125, -69.900118 ], [ 74.179688, -69.900118 ], [ 74.179688, -69.839622 ], [ 74.531250, -69.839622 ], [ 74.531250, -69.778952 ], [ 75.234375, -69.778952 ], [ 75.234375, -69.718107 ], [ 75.937500, -69.718107 ], [ 75.937500, -69.657086 ], [ 76.464844, -69.657086 ], [ 76.464844, -69.595890 ], [ 76.992188, -69.595890 ], [ 76.992188, -69.534518 ], [ 77.519531, -69.534518 ], [ 77.519531, -69.472969 ], [ 77.695312, -69.472969 ], [ 77.695312, -69.411242 ], [ 77.871094, -69.411242 ], [ 77.871094, -69.224997 ], [ 78.046875, -69.224997 ], [ 78.046875, -69.037142 ], [ 78.222656, -69.037142 ], [ 78.222656, -68.847665 ], [ 78.398438, -68.847665 ], [ 78.398438, -68.720441 ], [ 78.574219, -68.720441 ], [ 78.574219, -68.592487 ], [ 78.750000, -68.592487 ], [ 78.750000, -68.528235 ], [ 78.925781, -68.528235 ], [ 78.925781, -68.399180 ], [ 79.101562, -68.399180 ], [ 79.101562, -68.334376 ], [ 79.277344, -68.334376 ], [ 79.277344, -68.269387 ], [ 79.628906, -68.269387 ], [ 79.628906, -68.204212 ], [ 79.804688, -68.204212 ], [ 79.804688, -68.138852 ], [ 80.156250, -68.138852 ], [ 80.156250, -68.073305 ], [ 80.332031, -68.073305 ], [ 80.332031, -68.007571 ], [ 80.683594, -68.007571 ], [ 80.683594, -67.941650 ], [ 80.859375, -67.941650 ], [ 80.859375, -67.875541 ], [ 81.035156, -67.875541 ], [ 81.035156, -67.809245 ], [ 81.210938, -67.809245 ], [ 81.210938, -67.676085 ], [ 81.386719, -67.676085 ], [ 81.386719, -67.609221 ], [ 81.562500, -67.609221 ], [ 81.562500, -67.542167 ], [ 81.738281, -67.542167 ], [ 81.738281, -67.474922 ], [ 81.914062, -67.474922 ], [ 81.914062, -67.407487 ], [ 82.089844, -67.407487 ], [ 82.089844, -67.339861 ], [ 82.441406, -67.339861 ], [ 82.441406, -67.272043 ], [ 82.792969, -67.272043 ], [ 82.792969, -67.204032 ], [ 82.968750, -67.204032 ], [ 82.968750, -67.272043 ], [ 83.496094, -67.272043 ], [ 83.496094, -67.339861 ], [ 84.199219, -67.339861 ], [ 84.199219, -67.272043 ], [ 84.550781, -67.272043 ], [ 84.550781, -67.204032 ], [ 85.078125, -67.204032 ], [ 85.078125, -67.135829 ], [ 85.429688, -67.135829 ], [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.135829 ], [ 87.011719, -67.135829 ], [ 87.011719, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.998844 ], [ 87.363281, -66.998844 ], [ 87.363281, -66.930060 ], [ 87.539062, -66.930060 ], [ 87.539062, -66.791909 ], [ 87.714844, -66.791909 ], [ 87.714844, -66.583217 ], [ 87.890625, -66.583217 ], [ 87.890625, -66.372755 ], [ 88.066406, -66.372755 ], [ 88.066406, -66.302205 ], [ 88.242188, -66.302205 ], [ 88.242188, -66.443107 ], [ 88.417969, -66.443107 ], [ 88.417969, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.861082 ], [ 88.769531, -66.861082 ], [ 88.769531, -66.998844 ], [ 89.121094, -66.998844 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 90.878906, -67.204032 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.204212 ], [ 44.648438, -68.204212 ], [ 44.648438, -68.138852 ], [ 44.824219, -68.138852 ], [ 44.824219, -68.073305 ], [ 45.000000, -68.073305 ], [ 45.000000, -68.007571 ], [ 45.175781, -68.007571 ], [ 45.175781, -67.941650 ], [ 45.527344, -67.941650 ], [ 45.527344, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ], [ 45.878906, -67.742759 ], [ 46.230469, -67.742759 ], [ 46.230469, -67.676085 ], [ 46.582031, -67.676085 ], [ 46.582031, -67.609221 ], [ 46.757812, -67.609221 ], [ 46.757812, -67.676085 ], [ 47.109375, -67.676085 ], [ 47.109375, -67.742759 ], [ 47.636719, -67.742759 ], [ 47.636719, -67.676085 ], [ 47.812500, -67.676085 ], [ 47.812500, -67.542167 ], [ 47.988281, -67.542167 ], [ 47.988281, -67.474922 ], [ 48.164062, -67.474922 ], [ 48.164062, -67.407487 ], [ 48.339844, -67.407487 ], [ 48.339844, -67.339861 ], [ 48.515625, -67.339861 ], [ 48.515625, -67.272043 ], [ 48.691406, -67.272043 ], [ 48.691406, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.135829 ], [ 49.042969, -67.135829 ], [ 49.042969, -67.067433 ], [ 49.394531, -67.067433 ], [ 49.394531, -67.135829 ], [ 50.097656, -67.135829 ], [ 50.097656, -67.067433 ], [ 50.273438, -67.067433 ], [ 50.273438, -66.998844 ], [ 50.625000, -66.998844 ], [ 50.625000, -66.930060 ], [ 50.800781, -66.930060 ], [ 50.800781, -66.722541 ], [ 50.976562, -66.722541 ], [ 50.976562, -66.513260 ], [ 51.152344, -66.513260 ], [ 51.152344, -66.443107 ], [ 51.328125, -66.443107 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.302205 ], [ 51.855469, -66.302205 ], [ 51.855469, -66.231457 ], [ 52.207031, -66.231457 ], [ 52.207031, -66.160511 ], [ 56.953125, -66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.777344, -66.160511 ], [ 56.777344, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.722541 ], [ 57.304688, -66.722541 ], [ 57.304688, -66.791909 ], [ 57.480469, -66.791909 ], [ 57.480469, -66.861082 ], [ 57.656250, -66.861082 ], [ 57.656250, -66.930060 ], [ 57.832031, -66.930060 ], [ 57.832031, -66.998844 ], [ 58.007812, -66.998844 ], [ 58.007812, -67.067433 ], [ 58.183594, -67.067433 ], [ 58.183594, -67.135829 ], [ 58.359375, -67.135829 ], [ 58.359375, -67.204032 ], [ 58.535156, -67.204032 ], [ 58.535156, -67.272043 ], [ 59.238281, -67.272043 ], [ 59.238281, -67.339861 ], [ 59.941406, -67.339861 ], [ 59.941406, -67.407487 ], [ 60.117188, -67.407487 ], [ 60.117188, -67.542167 ], [ 60.292969, -67.542167 ], [ 60.292969, -67.676085 ], [ 60.468750, -67.676085 ], [ 60.468750, -67.742759 ], [ 60.644531, -67.742759 ], [ 60.644531, -67.809245 ], [ 60.996094, -67.809245 ], [ 60.996094, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -67.941650 ], [ 61.699219, -67.941650 ], [ 61.699219, -68.007571 ], [ 62.402344, -68.007571 ], [ 62.402344, -67.941650 ], [ 62.753906, -67.941650 ], [ 62.753906, -67.875541 ], [ 63.105469, -67.875541 ], [ 63.105469, -67.809245 ], [ 63.281250, -67.809245 ], [ 63.281250, -67.676085 ], [ 63.457031, -67.676085 ], [ 63.457031, -67.609221 ], [ 63.632812, -67.609221 ], [ 63.632812, -67.542167 ], [ 63.808594, -67.542167 ], [ 63.808594, -67.407487 ], [ 64.160156, -67.407487 ], [ 64.160156, -67.474922 ], [ 64.511719, -67.474922 ], [ 64.511719, -67.542167 ], [ 64.687500, -67.542167 ], [ 64.687500, -67.609221 ], [ 65.214844, -67.609221 ], [ 65.214844, -67.676085 ], [ 66.093750, -67.676085 ], [ 66.093750, -67.742759 ], [ 66.445312, -67.742759 ], [ 66.445312, -67.809245 ], [ 67.148438, -67.809245 ], [ 67.148438, -67.875541 ], [ 68.730469, -67.875541 ], [ 68.730469, -68.007571 ], [ 68.906250, -68.007571 ], [ 68.906250, -68.204212 ], [ 69.082031, -68.204212 ], [ 69.082031, -68.399180 ], [ 69.257812, -68.399180 ], [ 69.257812, -68.656555 ], [ 69.433594, -68.656555 ], [ 69.433594, -68.847665 ], [ 69.609375, -68.847665 ], [ 69.609375, -69.472969 ], [ 69.433594, -69.472969 ], [ 69.433594, -69.718107 ], [ 69.257812, -69.718107 ], [ 69.257812, -69.778952 ], [ 68.906250, -69.778952 ], [ 68.906250, -69.839622 ], [ 68.730469, -69.839622 ], [ 68.730469, -69.900118 ], [ 68.554688, -69.900118 ], [ 68.554688, -69.960439 ], [ 68.378906, -69.960439 ], [ 68.378906, -70.020587 ], [ 68.203125, -70.020587 ], [ 68.203125, -70.080562 ], [ 68.027344, -70.080562 ], [ 68.027344, -70.199994 ], [ 67.851562, -70.199994 ], [ 67.851562, -70.259452 ], [ 67.675781, -70.259452 ], [ 67.675781, -70.495574 ], [ 67.851562, -70.495574 ], [ 67.851562, -70.670881 ], [ 68.906250, -70.670881 ], [ 68.906250, -71.130988 ], [ 68.730469, -71.130988 ], [ 68.730469, -71.244356 ], [ 68.554688, -71.244356 ], [ 68.554688, -71.357067 ], [ 68.378906, -71.357067 ], [ 68.378906, -71.524909 ], [ 68.203125, -71.524909 ], [ 68.203125, -71.635993 ], [ 68.027344, -71.635993 ], [ 68.027344, -71.746432 ], [ 67.851562, -71.746432 ], [ 67.851562, -71.856229 ], [ 68.027344, -71.856229 ], [ 68.027344, -71.965388 ], [ 68.203125, -71.965388 ], [ 68.203125, -72.019729 ], [ 68.378906, -72.019729 ], [ 68.378906, -72.127936 ], [ 68.730469, -72.127936 ], [ 68.730469, -72.181804 ], [ 69.433594, -72.181804 ], [ 69.433594, -72.235514 ], [ 70.136719, -72.235514 ], [ 70.136719, -72.181804 ], [ 70.488281, -72.181804 ], [ 70.488281, -72.127936 ], [ 70.839844, -72.127936 ], [ 70.839844, -72.073911 ], [ 71.015625, -72.073911 ], [ 71.015625, -72.019729 ], [ 71.191406, -72.019729 ], [ 71.191406, -71.910888 ], [ 71.367188, -71.910888 ], [ 71.367188, -71.801410 ], [ 71.542969, -71.801410 ], [ 71.542969, -71.635993 ], [ 71.718750, -71.635993 ], [ 71.718750, -71.413177 ], [ 71.894531, -71.413177 ], [ 71.894531, -71.244356 ], [ 72.070312, -71.244356 ], [ 72.070312, -71.130988 ], [ 72.246094, -71.130988 ], [ 72.246094, -71.016960 ], [ 72.421875, -71.016960 ], [ 72.421875, -70.959697 ], [ 72.597656, -70.959697 ], [ 72.597656, -70.844673 ], [ 72.773438, -70.844673 ], [ 72.773438, -70.728979 ], [ 72.949219, -70.728979 ], [ 72.949219, -70.612614 ], [ 73.125000, -70.612614 ], [ 73.125000, -70.436799 ], [ 73.300781, -70.436799 ], [ 73.300781, -70.259452 ], [ 73.476562, -70.259452 ], [ 73.476562, -70.080562 ], [ 73.652344, -70.080562 ], [ 73.652344, -69.960439 ], [ 73.828125, -69.960439 ], [ 73.828125, -69.839622 ], [ 74.003906, -69.839622 ], [ 74.003906, -69.778952 ], [ 74.355469, -69.778952 ], [ 74.355469, -69.718107 ], [ 75.937500, -69.718107 ], [ 75.937500, -69.657086 ], [ 76.289062, -69.657086 ], [ 76.289062, -69.595890 ], [ 76.816406, -69.595890 ], [ 76.816406, -69.534518 ], [ 77.167969, -69.534518 ], [ 77.167969, -69.472969 ], [ 77.519531, -69.472969 ], [ 77.519531, -69.349339 ], [ 77.695312, -69.349339 ], [ 77.695312, -69.224997 ], [ 77.871094, -69.224997 ], [ 77.871094, -69.099940 ], [ 78.046875, -69.099940 ], [ 78.046875, -68.974164 ], [ 78.222656, -68.974164 ], [ 78.222656, -68.784144 ], [ 78.398438, -68.784144 ], [ 78.398438, -68.656555 ], [ 78.574219, -68.656555 ], [ 78.574219, -68.528235 ], [ 78.750000, -68.528235 ], [ 78.750000, -68.463800 ], [ 78.925781, -68.463800 ], [ 78.925781, -68.334376 ], [ 79.101562, -68.334376 ], [ 79.101562, -68.269387 ], [ 79.277344, -68.269387 ], [ 79.277344, -68.204212 ], [ 79.453125, -68.204212 ], [ 79.453125, -68.138852 ], [ 79.804688, -68.138852 ], [ 79.804688, -68.073305 ], [ 79.980469, -68.073305 ], [ 79.980469, -68.007571 ], [ 80.332031, -68.007571 ], [ 80.332031, -67.941650 ], [ 80.683594, -67.941650 ], [ 80.683594, -67.875541 ], [ 81.035156, -67.875541 ], [ 81.035156, -67.742759 ], [ 81.210938, -67.742759 ], [ 81.210938, -67.609221 ], [ 81.386719, -67.609221 ], [ 81.386719, -67.542167 ], [ 81.562500, -67.542167 ], [ 81.562500, -67.474922 ], [ 81.738281, -67.474922 ], [ 81.738281, -67.407487 ], [ 81.914062, -67.407487 ], [ 81.914062, -67.339861 ], [ 82.265625, -67.339861 ], [ 82.265625, -67.272043 ], [ 82.617188, -67.272043 ], [ 82.617188, -67.204032 ], [ 82.968750, -67.204032 ], [ 82.968750, -67.272043 ], [ 84.199219, -67.272043 ], [ 84.199219, -67.204032 ], [ 84.902344, -67.204032 ], [ 84.902344, -67.135829 ], [ 85.429688, -67.135829 ], [ 85.429688, -67.067433 ], [ 85.957031, -67.067433 ], [ 85.957031, -67.135829 ], [ 86.835938, -67.135829 ], [ 86.835938, -67.067433 ], [ 87.011719, -67.067433 ], [ 87.011719, -66.998844 ], [ 87.187500, -66.998844 ], [ 87.187500, -66.930060 ], [ 87.363281, -66.930060 ], [ 87.363281, -66.791909 ], [ 87.539062, -66.791909 ], [ 87.539062, -66.513260 ], [ 87.714844, -66.513260 ], [ 87.714844, -66.302205 ], [ 87.890625, -66.302205 ], [ 87.890625, -66.231457 ], [ 88.066406, -66.231457 ], [ 88.066406, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.583217 ], [ 88.417969, -66.583217 ], [ 88.417969, -66.722541 ], [ 88.593750, -66.722541 ], [ 88.593750, -66.861082 ], [ 88.769531, -66.861082 ], [ 88.769531, -66.998844 ], [ 89.121094, -66.998844 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 90.878906, -67.204032 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.204212 ], [ 44.296875, -68.204212 ], [ 44.296875, -68.138852 ], [ 44.648438, -68.138852 ], [ 44.648438, -68.073305 ], [ 44.824219, -68.073305 ], [ 44.824219, -68.007571 ], [ 45.000000, -68.007571 ], [ 45.000000, -67.941650 ], [ 45.351562, -67.941650 ], [ 45.351562, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ], [ 45.878906, -67.742759 ], [ 46.054688, -67.742759 ], [ 46.054688, -67.676085 ], [ 46.230469, -67.676085 ], [ 46.230469, -67.609221 ], [ 46.406250, -67.609221 ], [ 46.406250, -67.542167 ], [ 46.582031, -67.542167 ], [ 46.582031, -67.609221 ], [ 46.933594, -67.609221 ], [ 46.933594, -67.676085 ], [ 47.460938, -67.676085 ], [ 47.460938, -67.609221 ], [ 47.636719, -67.609221 ], [ 47.636719, -67.542167 ], [ 47.988281, -67.542167 ], [ 47.988281, -67.474922 ], [ 48.164062, -67.474922 ], [ 48.164062, -67.407487 ], [ 48.339844, -67.407487 ], [ 48.339844, -67.339861 ], [ 48.515625, -67.339861 ], [ 48.515625, -67.204032 ], [ 48.691406, -67.204032 ], [ 48.691406, -67.135829 ], [ 48.867188, -67.135829 ], [ 48.867188, -67.067433 ], [ 50.097656, -67.067433 ], [ 50.097656, -66.998844 ], [ 50.449219, -66.998844 ], [ 50.449219, -66.930060 ], [ 50.625000, -66.930060 ], [ 50.625000, -66.722541 ], [ 50.800781, -66.722541 ], [ 50.800781, -66.513260 ], [ 50.976562, -66.513260 ], [ 50.976562, -66.443107 ], [ 51.152344, -66.443107 ], [ 51.152344, -66.372755 ], [ 51.503906, -66.372755 ], [ 51.503906, -66.302205 ], [ 51.679688, -66.302205 ], [ 51.679688, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -66.160511 ], [ 56.777344, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, -65.802776 ], [ 54.843750, -65.874725 ], [ 55.722656, -65.874725 ], [ 55.722656, -65.946472 ], [ 56.425781, -65.946472 ], [ 56.425781, -66.018018 ], [ 56.601562, -66.018018 ], [ 56.601562, -66.089364 ], [ 56.777344, -66.089364 ], [ 56.777344, -66.160511 ], [ 56.953125, -66.160511 ], [ 56.953125, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.443107 ], [ 57.304688, -66.443107 ], [ 57.304688, -66.722541 ], [ 57.480469, -66.722541 ], [ 57.480469, -66.861082 ], [ 50.800781, -66.861082 ], [ 50.800781, -66.722541 ], [ 50.976562, -66.722541 ], [ 50.976562, -66.513260 ], [ 51.152344, -66.513260 ], [ 51.152344, -66.443107 ], [ 51.328125, -66.443107 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.302205 ], [ 51.855469, -66.302205 ], [ 51.855469, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -66.160511 ], [ 52.382812, -66.160511 ], [ 52.382812, -66.089364 ], [ 52.558594, -66.089364 ], [ 52.558594, -66.018018 ], [ 52.910156, -66.018018 ], [ 52.910156, -65.946472 ], [ 53.437500, -65.946472 ], [ 53.437500, -65.874725 ], [ 54.140625, -65.874725 ], [ 54.140625, -65.802776 ], [ 54.843750, -65.802776 ] ] ], [ [ [ 87.539062, -66.861082 ], [ 87.539062, -66.791909 ], [ 87.714844, -66.791909 ], [ 87.714844, -66.583217 ], [ 87.890625, -66.583217 ], [ 87.890625, -66.372755 ], [ 88.066406, -66.372755 ], [ 88.066406, -66.302205 ], [ 88.242188, -66.302205 ], [ 88.242188, -66.443107 ], [ 88.417969, -66.443107 ], [ 88.417969, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.791909 ], [ 88.769531, -66.791909 ], [ 88.769531, -66.861082 ], [ 87.539062, -66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, -65.802776 ], [ 54.843750, -65.874725 ], [ 55.722656, -65.874725 ], [ 55.722656, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.018018 ], [ 56.425781, -66.018018 ], [ 56.425781, -66.089364 ], [ 56.777344, -66.089364 ], [ 56.777344, -66.160511 ], [ 56.953125, -66.160511 ], [ 56.953125, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.722541 ], [ 57.304688, -66.722541 ], [ 57.304688, -66.791909 ], [ 57.480469, -66.791909 ], [ 57.480469, -66.861082 ], [ 50.625000, -66.861082 ], [ 50.625000, -66.722541 ], [ 50.800781, -66.722541 ], [ 50.800781, -66.513260 ], [ 50.976562, -66.513260 ], [ 50.976562, -66.443107 ], [ 51.152344, -66.443107 ], [ 51.152344, -66.372755 ], [ 51.503906, -66.372755 ], [ 51.503906, -66.302205 ], [ 51.679688, -66.302205 ], [ 51.679688, -66.231457 ], [ 51.855469, -66.231457 ], [ 51.855469, -66.160511 ], [ 52.207031, -66.160511 ], [ 52.207031, -66.089364 ], [ 52.558594, -66.089364 ], [ 52.558594, -66.018018 ], [ 52.910156, -66.018018 ], [ 52.910156, -65.946472 ], [ 53.437500, -65.946472 ], [ 53.437500, -65.874725 ], [ 54.140625, -65.874725 ], [ 54.140625, -65.802776 ], [ 54.843750, -65.802776 ] ] ], [ [ [ 87.363281, -66.861082 ], [ 87.363281, -66.791909 ], [ 87.539062, -66.791909 ], [ 87.539062, -66.513260 ], [ 87.714844, -66.513260 ], [ 87.714844, -66.302205 ], [ 87.890625, -66.302205 ], [ 87.890625, -66.231457 ], [ 88.066406, -66.231457 ], [ 88.066406, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.583217 ], [ 88.417969, -66.583217 ], [ 88.417969, -66.791909 ], [ 88.593750, -66.791909 ], [ 88.593750, -66.861082 ], [ 87.363281, -66.861082 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, -48.690960 ], [ 69.082031, -48.806863 ], [ 69.433594, -48.806863 ], [ 69.433594, -48.922499 ], [ 69.960938, -48.922499 ], [ 69.960938, -49.037868 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.496675 ], [ 70.312500, -49.496675 ], [ 70.312500, -49.724479 ], [ 68.730469, -49.724479 ], [ 68.730469, -49.037868 ], [ 68.906250, -49.037868 ], [ 68.906250, -48.690960 ], [ 69.082031, -48.690960 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, -48.690960 ], [ 69.082031, -48.806863 ], [ 69.257812, -48.806863 ], [ 69.257812, -48.922499 ], [ 69.785156, -48.922499 ], [ 69.785156, -49.037868 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.267805 ], [ 70.312500, -49.267805 ], [ 70.312500, -49.496675 ], [ 70.136719, -49.496675 ], [ 70.136719, -49.610710 ], [ 69.609375, -49.610710 ], [ 69.609375, -49.724479 ], [ 68.730469, -49.724479 ], [ 68.730469, -49.496675 ], [ 68.554688, -49.496675 ], [ 68.554688, -49.037868 ], [ 68.730469, -49.037868 ], [ 68.730469, -48.690960 ], [ 69.082031, -48.690960 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.394531, -12.211180 ], [ 49.394531, -12.554564 ], [ 49.570312, -12.554564 ], [ 49.570312, -12.726084 ], [ 49.746094, -12.726084 ], [ 49.746094, -13.068777 ], [ 49.921875, -13.068777 ], [ 49.921875, -13.410994 ], [ 50.097656, -13.410994 ], [ 50.097656, -14.264383 ], [ 50.273438, -14.264383 ], [ 50.273438, -15.114553 ], [ 50.449219, -15.114553 ], [ 50.449219, -15.792254 ], [ 50.273438, -15.792254 ], [ 50.273438, -15.961329 ], [ 50.097656, -15.961329 ], [ 50.097656, -15.623037 ], [ 49.746094, -15.623037 ], [ 49.746094, -16.130262 ], [ 49.921875, -16.130262 ], [ 49.921875, -16.636192 ], [ 49.746094, -16.636192 ], [ 49.746094, -16.972741 ], [ 49.570312, -16.972741 ], [ 49.570312, -17.644022 ], [ 49.394531, -17.644022 ], [ 49.394531, -18.312811 ], [ 49.218750, -18.312811 ], [ 49.218750, -18.979026 ], [ 49.042969, -18.979026 ], [ 49.042969, -19.476950 ], [ 48.867188, -19.476950 ], [ 48.867188, -19.808054 ], [ 48.691406, -19.808054 ], [ 48.691406, -20.303418 ], [ 48.515625, -20.303418 ], [ 48.515625, -20.797201 ], [ 48.339844, -20.797201 ], [ 48.339844, -21.453069 ], [ 48.164062, -21.453069 ], [ 48.164062, -22.105999 ], [ 47.988281, -22.105999 ], [ 47.988281, -22.755921 ], [ 47.812500, -22.755921 ], [ 47.812500, -23.079732 ], [ 47.636719, -23.079732 ], [ 47.636719, -23.563987 ], [ 47.460938, -23.563987 ], [ 47.460938, -24.046464 ], [ 47.285156, -24.046464 ], [ 47.285156, -24.686952 ], [ 47.109375, -24.686952 ], [ 47.109375, -25.005973 ], [ 46.757812, -25.005973 ], [ 46.757812, -25.165173 ], [ 46.230469, -25.165173 ], [ 46.230469, -25.324167 ], [ 45.878906, -25.324167 ], [ 45.878906, -25.482951 ], [ 45.527344, -25.482951 ], [ 45.527344, -25.641526 ], [ 45.175781, -25.641526 ], [ 45.175781, -25.482951 ], [ 44.824219, -25.482951 ], [ 44.824219, -25.324167 ], [ 44.472656, -25.324167 ], [ 44.472656, -25.165173 ], [ 44.121094, -25.165173 ], [ 44.121094, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -19.808054 ], [ 44.472656, -19.808054 ], [ 44.472656, -19.311143 ], [ 44.296875, -19.311143 ], [ 44.296875, -18.812718 ], [ 44.121094, -18.812718 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.636192 ], [ 44.472656, -16.636192 ], [ 44.472656, -16.299051 ], [ 44.824219, -16.299051 ], [ 44.824219, -16.130262 ], [ 45.351562, -16.130262 ], [ 45.351562, -15.961329 ], [ 45.878906, -15.961329 ], [ 45.878906, -15.792254 ], [ 46.406250, -15.792254 ], [ 46.406250, -15.623037 ], [ 46.757812, -15.623037 ], [ 46.757812, -15.453680 ], [ 46.933594, -15.453680 ], [ 46.933594, -15.284185 ], [ 47.109375, -15.284185 ], [ 47.109375, -15.114553 ], [ 47.285156, -15.114553 ], [ 47.285156, -14.944785 ], [ 47.460938, -14.944785 ], [ 47.460938, -14.774883 ], [ 47.636719, -14.774883 ], [ 47.636719, -14.604847 ], [ 47.812500, -14.604847 ], [ 47.812500, -14.264383 ], [ 47.988281, -14.264383 ], [ 47.988281, -13.923404 ], [ 47.812500, -13.923404 ], [ 47.812500, -13.581921 ], [ 47.988281, -13.581921 ], [ 47.988281, -13.752725 ], [ 48.515625, -13.752725 ], [ 48.515625, -13.410994 ], [ 48.691406, -13.410994 ], [ 48.691406, -13.239945 ], [ 48.867188, -13.239945 ], [ 48.867188, -12.554564 ], [ 49.042969, -12.554564 ], [ 49.042969, -12.211180 ], [ 49.394531, -12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, -12.211180 ], [ 49.218750, -12.382928 ], [ 49.394531, -12.382928 ], [ 49.394531, -12.554564 ], [ 49.570312, -12.554564 ], [ 49.570312, -12.897489 ], [ 49.746094, -12.897489 ], [ 49.746094, -13.239945 ], [ 49.921875, -13.239945 ], [ 49.921875, -14.093957 ], [ 50.097656, -14.093957 ], [ 50.097656, -14.774883 ], [ 50.273438, -14.774883 ], [ 50.273438, -15.114553 ], [ 50.449219, -15.114553 ], [ 50.449219, -15.453680 ], [ 50.273438, -15.453680 ], [ 50.273438, -15.792254 ], [ 49.921875, -15.792254 ], [ 49.921875, -15.453680 ], [ 49.570312, -15.453680 ], [ 49.570312, -15.961329 ], [ 49.746094, -15.961329 ], [ 49.746094, -16.972741 ], [ 49.394531, -16.972741 ], [ 49.394531, -18.145852 ], [ 49.218750, -18.145852 ], [ 49.218750, -18.812718 ], [ 49.042969, -18.812718 ], [ 49.042969, -19.311143 ], [ 48.867188, -19.311143 ], [ 48.867188, -19.808054 ], [ 48.691406, -19.808054 ], [ 48.691406, -20.303418 ], [ 48.515625, -20.303418 ], [ 48.515625, -20.797201 ], [ 48.339844, -20.797201 ], [ 48.339844, -21.289374 ], [ 48.164062, -21.289374 ], [ 48.164062, -21.616579 ], [ 47.988281, -21.616579 ], [ 47.988281, -22.105999 ], [ 47.812500, -22.105999 ], [ 47.812500, -22.755921 ], [ 47.636719, -22.755921 ], [ 47.636719, -23.402765 ], [ 47.460938, -23.402765 ], [ 47.460938, -24.046464 ], [ 47.285156, -24.046464 ], [ 47.285156, -24.367114 ], [ 47.109375, -24.367114 ], [ 47.109375, -24.686952 ], [ 46.933594, -24.686952 ], [ 46.933594, -25.005973 ], [ 46.582031, -25.005973 ], [ 46.582031, -25.165173 ], [ 46.054688, -25.165173 ], [ 46.054688, -25.324167 ], [ 45.703125, -25.324167 ], [ 45.703125, -25.482951 ], [ 45.000000, -25.482951 ], [ 45.000000, -25.324167 ], [ 44.472656, -25.324167 ], [ 44.472656, -25.165173 ], [ 44.121094, -25.165173 ], [ 44.121094, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -19.145168 ], [ 44.121094, -19.145168 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.130262 ], [ 45.175781, -16.130262 ], [ 45.175781, -15.961329 ], [ 45.703125, -15.961329 ], [ 45.703125, -15.792254 ], [ 46.054688, -15.792254 ], [ 46.054688, -15.623037 ], [ 46.406250, -15.623037 ], [ 46.406250, -15.453680 ], [ 46.582031, -15.453680 ], [ 46.582031, -15.284185 ], [ 46.757812, -15.284185 ], [ 46.757812, -15.114553 ], [ 46.933594, -15.114553 ], [ 46.933594, -14.944785 ], [ 47.109375, -14.944785 ], [ 47.109375, -14.774883 ], [ 47.460938, -14.774883 ], [ 47.460938, -14.604847 ], [ 47.636719, -14.604847 ], [ 47.636719, -14.434680 ], [ 47.812500, -14.434680 ], [ 47.812500, -14.093957 ], [ 47.988281, -14.093957 ], [ 47.988281, -13.752725 ], [ 48.339844, -13.752725 ], [ 48.339844, -13.410994 ], [ 48.515625, -13.410994 ], [ 48.515625, -13.239945 ], [ 48.691406, -13.239945 ], [ 48.691406, -12.382928 ], [ 48.867188, -12.382928 ], [ 48.867188, -12.211180 ], [ 49.218750, -12.211180 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.339844, 41.640078 ], [ 48.339844, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.112469 ], [ 47.460938, 41.112469 ], [ 47.460938, 41.244772 ], [ 47.285156, 41.244772 ], [ 47.285156, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.640078 ], [ 48.339844, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.164062, 41.640078 ], [ 48.164062, 41.508577 ], [ 47.988281, 41.508577 ], [ 47.988281, 41.376809 ], [ 47.812500, 41.376809 ], [ 47.812500, 41.244772 ], [ 47.109375, 41.244772 ], [ 47.109375, 41.376809 ], [ 46.933594, 41.376809 ], [ 46.933594, 41.508577 ], [ 46.757812, 41.508577 ], [ 46.757812, 41.640078 ], [ 48.164062, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.230469, 41.640078 ], [ 46.230469, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.582031, 41.244772 ], [ 46.582031, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.112469 ], [ 44.121094, 41.112469 ], [ 44.121094, 41.640078 ], [ 46.230469, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.054688, 41.640078 ], [ 46.054688, 41.508577 ], [ 46.230469, 41.508577 ], [ 46.230469, 41.376809 ], [ 46.406250, 41.376809 ], [ 46.406250, 41.244772 ], [ 46.582031, 41.244772 ], [ 46.582031, 41.112469 ], [ 46.054688, 41.112469 ], [ 46.054688, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.376809 ], [ 44.648438, 41.376809 ], [ 44.648438, 41.244772 ], [ 44.121094, 41.244772 ], [ 44.121094, 41.640078 ], [ 46.054688, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.095963 ], [ 44.296875, 39.095963 ], [ 44.296875, 38.548165 ], [ 44.472656, 38.548165 ], [ 44.472656, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 37.857507 ], [ 44.472656, 37.857507 ], [ 44.472656, 37.579413 ], [ 44.648438, 37.579413 ], [ 44.648438, 37.300275 ], [ 44.824219, 37.300275 ], [ 44.824219, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.121094, 37.020098 ], [ 44.121094, 39.095963 ] ] ], [ [ [ 44.472656, 39.909736 ], [ 44.648438, 39.909736 ], [ 44.648438, 39.774769 ], [ 44.824219, 39.774769 ], [ 44.824219, 39.639538 ], [ 44.472656, 39.639538 ], [ 44.472656, 39.504041 ], [ 44.121094, 39.504041 ], [ 44.121094, 40.044438 ], [ 44.472656, 40.044438 ], [ 44.472656, 39.909736 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.160317 ], [ 44.296875, 37.160317 ], [ 44.296875, 37.020098 ], [ 44.121094, 37.020098 ], [ 44.121094, 37.857507 ] ] ], [ [ [ 44.121094, 38.959409 ], [ 44.296875, 38.959409 ], [ 44.296875, 38.134557 ], [ 44.121094, 38.134557 ], [ 44.121094, 38.959409 ] ] ], [ [ [ 44.296875, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.639538 ], [ 44.296875, 39.639538 ], [ 44.296875, 39.504041 ], [ 44.121094, 39.504041 ], [ 44.121094, 40.044438 ], [ 44.296875, 40.044438 ], [ 44.296875, 39.909736 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 37.160317 ], [ 44.824219, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.597889 ], [ 45.175781, 36.597889 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 35.889050 ], [ 45.703125, 35.889050 ], [ 45.703125, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 35.317366 ], [ 46.230469, 35.317366 ], [ 46.230469, 34.885931 ], [ 45.878906, 34.885931 ], [ 45.878906, 34.741612 ], [ 45.703125, 34.741612 ], [ 45.703125, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.161818 ], [ 45.351562, 34.161818 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.578015 ], [ 45.703125, 33.578015 ], [ 45.703125, 33.284620 ], [ 45.878906, 33.284620 ], [ 45.878906, 32.990236 ], [ 46.054688, 32.990236 ], [ 46.054688, 32.842674 ], [ 46.406250, 32.842674 ], [ 46.406250, 32.694866 ], [ 46.757812, 32.694866 ], [ 46.757812, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 32.398516 ], [ 47.285156, 32.398516 ], [ 47.285156, 32.249974 ], [ 47.460938, 32.249974 ], [ 47.460938, 31.952162 ], [ 47.636719, 31.952162 ], [ 47.636719, 31.653381 ], [ 47.812500, 31.653381 ], [ 47.812500, 31.353637 ], [ 47.636719, 31.353637 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.297018 ], [ 48.164062, 30.297018 ], [ 48.164062, 30.145127 ], [ 48.339844, 30.145127 ], [ 48.339844, 29.993002 ], [ 47.285156, 29.993002 ], [ 47.285156, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 29.535230 ], [ 46.933594, 29.535230 ], [ 46.933594, 29.382175 ], [ 46.757812, 29.382175 ], [ 46.757812, 29.075375 ], [ 45.527344, 29.075375 ], [ 45.527344, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.121094, 29.382175 ], [ 44.121094, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.160317 ], [ 44.824219, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.824219, 37.020098 ], [ 44.824219, 36.738884 ], [ 45.000000, 36.738884 ], [ 45.000000, 36.456636 ], [ 45.175781, 36.456636 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 35.889050 ], [ 45.703125, 35.889050 ], [ 45.703125, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 35.029996 ], [ 45.703125, 35.029996 ], [ 45.703125, 34.885931 ], [ 45.527344, 34.885931 ], [ 45.527344, 34.452218 ], [ 45.351562, 34.452218 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.578015 ], [ 45.703125, 33.578015 ], [ 45.703125, 33.431441 ], [ 45.878906, 33.431441 ], [ 45.878906, 33.137551 ], [ 46.054688, 33.137551 ], [ 46.054688, 32.990236 ], [ 46.406250, 32.990236 ], [ 46.406250, 32.842674 ], [ 46.757812, 32.842674 ], [ 46.757812, 32.694866 ], [ 47.109375, 32.694866 ], [ 47.109375, 32.546813 ], [ 47.285156, 32.546813 ], [ 47.285156, 32.398516 ], [ 47.460938, 32.398516 ], [ 47.460938, 32.101190 ], [ 47.636719, 32.101190 ], [ 47.636719, 31.802893 ], [ 47.812500, 31.802893 ], [ 47.812500, 31.353637 ], [ 47.636719, 31.353637 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.448674 ], [ 48.164062, 30.448674 ], [ 48.164062, 30.297018 ], [ 48.339844, 30.297018 ], [ 48.339844, 29.993002 ], [ 47.460938, 29.993002 ], [ 47.460938, 30.145127 ], [ 47.285156, 30.145127 ], [ 47.285156, 29.993002 ], [ 47.109375, 29.993002 ], [ 47.109375, 29.840644 ], [ 46.933594, 29.840644 ], [ 46.933594, 29.688053 ], [ 46.757812, 29.688053 ], [ 46.757812, 29.382175 ], [ 46.582031, 29.382175 ], [ 46.582031, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.296875, 29.382175 ], [ 44.296875, 29.535230 ], [ 44.121094, 29.535230 ], [ 44.121094, 37.020098 ], [ 44.296875, 37.020098 ], [ 44.296875, 37.160317 ], [ 44.648438, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.296875, 9.102097 ], [ 44.296875, 8.928487 ], [ 44.648438, 8.928487 ], [ 44.648438, 8.754795 ], [ 45.175781, 8.754795 ], [ 45.175781, 8.581021 ], [ 45.703125, 8.581021 ], [ 45.703125, 8.407168 ], [ 46.054688, 8.407168 ], [ 46.054688, 8.233237 ], [ 46.582031, 8.233237 ], [ 46.582031, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 7.885147 ], [ 47.636719, 7.885147 ], [ 47.636719, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.536764 ], [ 47.285156, 7.536764 ], [ 47.285156, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.013668 ], [ 46.933594, 7.013668 ], [ 46.933594, 6.839170 ], [ 46.757812, 6.839170 ], [ 46.757812, 6.664608 ], [ 46.582031, 6.664608 ], [ 46.582031, 6.489983 ], [ 46.406250, 6.489983 ], [ 46.406250, 6.315299 ], [ 46.230469, 6.315299 ], [ 46.230469, 6.140555 ], [ 46.054688, 6.140555 ], [ 46.054688, 5.965754 ], [ 45.878906, 5.965754 ], [ 45.878906, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.441022 ], [ 45.527344, 5.441022 ], [ 45.527344, 5.266008 ], [ 45.351562, 5.266008 ], [ 45.351562, 5.090944 ], [ 45.175781, 5.090944 ], [ 45.175781, 4.915833 ], [ 44.121094, 4.915833 ], [ 44.121094, 9.102097 ], [ 44.296875, 9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.296875, 9.102097 ], [ 44.296875, 8.928487 ], [ 44.648438, 8.928487 ], [ 44.648438, 8.754795 ], [ 45.175781, 8.754795 ], [ 45.175781, 8.581021 ], [ 45.703125, 8.581021 ], [ 45.703125, 8.407168 ], [ 46.054688, 8.407168 ], [ 46.054688, 8.233237 ], [ 46.582031, 8.233237 ], [ 46.582031, 8.059230 ], [ 47.636719, 8.059230 ], [ 47.636719, 7.885147 ], [ 47.460938, 7.885147 ], [ 47.460938, 7.710992 ], [ 47.285156, 7.710992 ], [ 47.285156, 7.536764 ], [ 47.109375, 7.536764 ], [ 47.109375, 7.362467 ], [ 46.933594, 7.362467 ], [ 46.933594, 7.188101 ], [ 46.757812, 7.188101 ], [ 46.757812, 7.013668 ], [ 46.582031, 7.013668 ], [ 46.582031, 6.839170 ], [ 46.406250, 6.839170 ], [ 46.406250, 6.664608 ], [ 46.230469, 6.664608 ], [ 46.230469, 6.315299 ], [ 46.054688, 6.315299 ], [ 46.054688, 6.140555 ], [ 45.878906, 6.140555 ], [ 45.878906, 5.965754 ], [ 45.703125, 5.965754 ], [ 45.703125, 5.790897 ], [ 45.527344, 5.790897 ], [ 45.527344, 5.615986 ], [ 45.351562, 5.615986 ], [ 45.351562, 5.441022 ], [ 45.175781, 5.441022 ], [ 45.175781, 5.266008 ], [ 45.000000, 5.266008 ], [ 45.000000, 5.090944 ], [ 44.121094, 5.090944 ], [ 44.121094, 9.102097 ], [ 44.296875, 9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.609375, 41.640078 ], [ 69.609375, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.376809 ], [ 69.082031, 41.376809 ], [ 69.082031, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 40.979898 ], [ 68.730469, 40.979898 ], [ 68.730469, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 66.796875, 41.112469 ], [ 66.796875, 41.376809 ], [ 66.621094, 41.376809 ], [ 66.621094, 41.640078 ], [ 69.609375, 41.640078 ] ] ], [ [ [ 55.898438, 41.640078 ], [ 55.898438, 41.376809 ], [ 55.722656, 41.376809 ], [ 55.722656, 41.244772 ], [ 55.371094, 41.244772 ], [ 55.371094, 41.376809 ], [ 55.195312, 41.376809 ], [ 55.195312, 41.640078 ], [ 55.898438, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.257812, 41.640078 ], [ 69.257812, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 41.244772 ], [ 68.730469, 41.244772 ], [ 68.730469, 40.847060 ], [ 68.554688, 40.847060 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 67.851562, 41.112469 ], [ 67.851562, 41.244772 ], [ 66.621094, 41.244772 ], [ 66.621094, 41.376809 ], [ 66.445312, 41.376809 ], [ 66.445312, 41.640078 ], [ 69.257812, 41.640078 ] ] ], [ [ [ 55.898438, 41.640078 ], [ 55.898438, 41.376809 ], [ 55.195312, 41.376809 ], [ 55.195312, 41.508577 ], [ 55.019531, 41.508577 ], [ 55.019531, 41.640078 ], [ 55.898438, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.488281, 41.640078 ], [ 70.488281, 41.376809 ], [ 70.664062, 41.376809 ], [ 70.664062, 41.244772 ], [ 71.015625, 41.244772 ], [ 71.015625, 41.112469 ], [ 71.542969, 41.112469 ], [ 71.542969, 41.244772 ], [ 72.246094, 41.244772 ], [ 72.246094, 41.112469 ], [ 72.597656, 41.112469 ], [ 72.597656, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 73.125000, 40.847060 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.313043 ], [ 71.894531, 40.313043 ], [ 71.894531, 40.178873 ], [ 70.664062, 40.178873 ], [ 70.664062, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.488281, 40.979898 ], [ 70.488281, 40.847060 ], [ 69.785156, 40.847060 ], [ 69.785156, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 39.774769 ], [ 68.730469, 39.774769 ], [ 68.730469, 39.504041 ], [ 68.027344, 39.504041 ], [ 68.027344, 39.639538 ], [ 67.675781, 39.639538 ], [ 67.675781, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 39.095963 ], [ 67.675781, 39.095963 ], [ 67.675781, 38.959409 ], [ 68.203125, 38.959409 ], [ 68.203125, 38.548165 ], [ 68.378906, 38.548165 ], [ 68.378906, 37.857507 ], [ 68.203125, 37.857507 ], [ 68.203125, 37.579413 ], [ 68.027344, 37.579413 ], [ 68.027344, 37.300275 ], [ 67.851562, 37.300275 ], [ 67.851562, 37.160317 ], [ 67.324219, 37.160317 ], [ 67.324219, 37.300275 ], [ 66.445312, 37.300275 ], [ 66.445312, 37.579413 ], [ 66.621094, 37.579413 ], [ 66.621094, 37.996163 ], [ 66.269531, 37.996163 ], [ 66.269531, 38.134557 ], [ 65.742188, 38.134557 ], [ 65.742188, 38.272689 ], [ 65.390625, 38.272689 ], [ 65.390625, 38.410558 ], [ 65.039062, 38.410558 ], [ 65.039062, 38.548165 ], [ 64.687500, 38.548165 ], [ 64.687500, 38.685510 ], [ 64.511719, 38.685510 ], [ 64.511719, 38.822591 ], [ 64.160156, 38.822591 ], [ 64.160156, 38.959409 ], [ 63.984375, 38.959409 ], [ 63.984375, 39.095963 ], [ 63.632812, 39.095963 ], [ 63.632812, 39.232253 ], [ 63.457031, 39.232253 ], [ 63.457031, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.504041 ], [ 63.105469, 39.504041 ], [ 63.105469, 39.639538 ], [ 62.753906, 39.639538 ], [ 62.753906, 39.774769 ], [ 62.578125, 39.774769 ], [ 62.578125, 39.909736 ], [ 62.402344, 39.909736 ], [ 62.402344, 40.178873 ], [ 62.226562, 40.178873 ], [ 62.226562, 40.580585 ], [ 62.050781, 40.580585 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.112469 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.640078 ], [ 66.621094, 41.640078 ], [ 66.621094, 41.376809 ], [ 66.796875, 41.376809 ], [ 66.796875, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.730469, 40.713956 ], [ 68.730469, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.244772 ], [ 69.082031, 41.244772 ], [ 69.082031, 41.376809 ], [ 69.257812, 41.376809 ], [ 69.257812, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.640078 ], [ 70.488281, 41.640078 ] ] ], [ [ [ 56.953125, 41.640078 ], [ 56.953125, 41.508577 ], [ 57.128906, 41.508577 ], [ 57.128906, 41.376809 ], [ 55.898438, 41.376809 ], [ 55.898438, 41.640078 ], [ 56.953125, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.312500, 41.640078 ], [ 70.312500, 41.508577 ], [ 70.488281, 41.508577 ], [ 70.488281, 41.376809 ], [ 70.839844, 41.376809 ], [ 70.839844, 41.244772 ], [ 71.367188, 41.244772 ], [ 71.367188, 41.376809 ], [ 72.070312, 41.376809 ], [ 72.070312, 41.244772 ], [ 72.421875, 41.244772 ], [ 72.421875, 41.112469 ], [ 72.773438, 41.112469 ], [ 72.773438, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 72.773438, 40.847060 ], [ 72.773438, 40.713956 ], [ 72.597656, 40.713956 ], [ 72.597656, 40.580585 ], [ 72.246094, 40.580585 ], [ 72.246094, 40.446947 ], [ 72.070312, 40.446947 ], [ 72.070312, 40.313043 ], [ 71.894531, 40.313043 ], [ 71.894531, 40.178873 ], [ 71.191406, 40.178873 ], [ 71.191406, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.446947 ], [ 70.312500, 40.446947 ], [ 70.312500, 40.580585 ], [ 70.488281, 40.580585 ], [ 70.488281, 40.847060 ], [ 70.664062, 40.847060 ], [ 70.664062, 40.979898 ], [ 70.136719, 40.979898 ], [ 70.136719, 40.847060 ], [ 69.257812, 40.847060 ], [ 69.257812, 40.580585 ], [ 69.082031, 40.580585 ], [ 69.082031, 40.313043 ], [ 68.906250, 40.313043 ], [ 68.906250, 40.044438 ], [ 68.730469, 40.044438 ], [ 68.730469, 39.909736 ], [ 68.554688, 39.909736 ], [ 68.554688, 39.639538 ], [ 67.675781, 39.639538 ], [ 67.675781, 39.504041 ], [ 67.500000, 39.504041 ], [ 67.500000, 39.232253 ], [ 67.324219, 39.232253 ], [ 67.324219, 39.095963 ], [ 67.675781, 39.095963 ], [ 67.675781, 38.959409 ], [ 68.027344, 38.959409 ], [ 68.027344, 38.685510 ], [ 68.203125, 38.685510 ], [ 68.203125, 38.410558 ], [ 68.378906, 38.410558 ], [ 68.378906, 38.134557 ], [ 68.203125, 38.134557 ], [ 68.203125, 37.857507 ], [ 68.027344, 37.857507 ], [ 68.027344, 37.579413 ], [ 67.851562, 37.579413 ], [ 67.851562, 37.300275 ], [ 67.675781, 37.300275 ], [ 67.675781, 37.160317 ], [ 67.324219, 37.160317 ], [ 67.324219, 37.300275 ], [ 66.972656, 37.300275 ], [ 66.972656, 37.439974 ], [ 66.445312, 37.439974 ], [ 66.445312, 37.996163 ], [ 66.093750, 37.996163 ], [ 66.093750, 38.134557 ], [ 65.742188, 38.134557 ], [ 65.742188, 38.272689 ], [ 65.390625, 38.272689 ], [ 65.390625, 38.410558 ], [ 65.039062, 38.410558 ], [ 65.039062, 38.548165 ], [ 64.687500, 38.548165 ], [ 64.687500, 38.685510 ], [ 64.511719, 38.685510 ], [ 64.511719, 38.822591 ], [ 64.160156, 38.822591 ], [ 64.160156, 38.959409 ], [ 63.984375, 38.959409 ], [ 63.984375, 39.095963 ], [ 63.632812, 39.095963 ], [ 63.632812, 39.232253 ], [ 63.457031, 39.232253 ], [ 63.457031, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.504041 ], [ 63.105469, 39.504041 ], [ 63.105469, 39.639538 ], [ 62.929688, 39.639538 ], [ 62.929688, 39.774769 ], [ 62.578125, 39.774769 ], [ 62.578125, 39.909736 ], [ 62.402344, 39.909736 ], [ 62.402344, 40.044438 ], [ 62.226562, 40.044438 ], [ 62.226562, 40.313043 ], [ 62.050781, 40.313043 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.699219, 41.112469 ], [ 61.699219, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.376809 ], [ 60.996094, 41.376809 ], [ 60.996094, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.376809 ], [ 59.941406, 41.376809 ], [ 59.941406, 41.640078 ], [ 66.445312, 41.640078 ], [ 66.445312, 41.376809 ], [ 66.621094, 41.376809 ], [ 66.621094, 41.244772 ], [ 67.851562, 41.244772 ], [ 67.851562, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.554688, 40.847060 ], [ 68.730469, 40.847060 ], [ 68.730469, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.640078 ], [ 70.312500, 41.640078 ] ] ], [ [ [ 56.953125, 41.640078 ], [ 56.953125, 41.376809 ], [ 55.898438, 41.376809 ], [ 55.898438, 41.640078 ], [ 56.953125, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.574219, 41.640078 ], [ 78.574219, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 41.112469 ], [ 76.992188, 41.112469 ], [ 76.992188, 40.979898 ], [ 76.816406, 40.979898 ], [ 76.816406, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.410156, 40.580585 ], [ 75.410156, 40.446947 ], [ 75.058594, 40.446947 ], [ 75.058594, 40.313043 ], [ 74.707031, 40.313043 ], [ 74.707031, 40.178873 ], [ 74.355469, 40.178873 ], [ 74.355469, 40.044438 ], [ 74.003906, 40.044438 ], [ 74.003906, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.774769 ], [ 74.003906, 39.774769 ], [ 74.003906, 39.504041 ], [ 73.828125, 39.504041 ], [ 73.828125, 39.368279 ], [ 72.773438, 39.368279 ], [ 72.773438, 39.232253 ], [ 71.367188, 39.232253 ], [ 71.367188, 39.368279 ], [ 71.015625, 39.368279 ], [ 71.015625, 39.504041 ], [ 70.664062, 39.504041 ], [ 70.664062, 39.639538 ], [ 70.136719, 39.639538 ], [ 70.136719, 39.504041 ], [ 69.433594, 39.504041 ], [ 69.433594, 39.774769 ], [ 69.609375, 39.774769 ], [ 69.609375, 40.044438 ], [ 69.960938, 40.044438 ], [ 69.960938, 39.909736 ], [ 70.839844, 39.909736 ], [ 70.839844, 40.044438 ], [ 71.015625, 40.044438 ], [ 71.015625, 40.178873 ], [ 71.894531, 40.178873 ], [ 71.894531, 40.313043 ], [ 72.246094, 40.313043 ], [ 72.246094, 40.446947 ], [ 72.597656, 40.446947 ], [ 72.597656, 40.580585 ], [ 72.773438, 40.580585 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.597656, 40.979898 ], [ 72.597656, 41.112469 ], [ 72.246094, 41.112469 ], [ 72.246094, 41.244772 ], [ 71.542969, 41.244772 ], [ 71.542969, 41.112469 ], [ 71.015625, 41.112469 ], [ 71.015625, 41.244772 ], [ 70.664062, 41.244772 ], [ 70.664062, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.640078 ], [ 78.574219, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.398438, 41.640078 ], [ 78.398438, 41.508577 ], [ 78.222656, 41.508577 ], [ 78.222656, 41.244772 ], [ 77.519531, 41.244772 ], [ 77.519531, 41.112469 ], [ 76.816406, 41.112469 ], [ 76.816406, 40.847060 ], [ 76.640625, 40.847060 ], [ 76.640625, 40.580585 ], [ 76.464844, 40.580585 ], [ 76.464844, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.234375, 40.580585 ], [ 75.234375, 40.446947 ], [ 74.707031, 40.446947 ], [ 74.707031, 40.313043 ], [ 74.355469, 40.313043 ], [ 74.355469, 40.178873 ], [ 74.179688, 40.178873 ], [ 74.179688, 40.044438 ], [ 73.828125, 40.044438 ], [ 73.828125, 39.909736 ], [ 73.652344, 39.909736 ], [ 73.652344, 39.774769 ], [ 73.828125, 39.774769 ], [ 73.828125, 39.639538 ], [ 73.652344, 39.639538 ], [ 73.652344, 39.504041 ], [ 72.773438, 39.504041 ], [ 72.773438, 39.368279 ], [ 71.367188, 39.368279 ], [ 71.367188, 39.504041 ], [ 70.664062, 39.504041 ], [ 70.664062, 39.639538 ], [ 69.433594, 39.639538 ], [ 69.433594, 40.178873 ], [ 69.785156, 40.178873 ], [ 69.785156, 40.044438 ], [ 70.664062, 40.044438 ], [ 70.664062, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 40.313043 ], [ 71.191406, 40.313043 ], [ 71.191406, 40.178873 ], [ 71.894531, 40.178873 ], [ 71.894531, 40.313043 ], [ 72.070312, 40.313043 ], [ 72.070312, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.773438, 40.979898 ], [ 72.773438, 41.112469 ], [ 72.421875, 41.112469 ], [ 72.421875, 41.244772 ], [ 72.070312, 41.244772 ], [ 72.070312, 41.376809 ], [ 71.367188, 41.376809 ], [ 71.367188, 41.244772 ], [ 70.839844, 41.244772 ], [ 70.839844, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 41.640078 ], [ 78.398438, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ], [ 45.878906, 40.044438 ], [ 45.703125, 40.044438 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.878906, 39.774769 ], [ 45.878906, 39.639538 ], [ 46.054688, 39.639538 ], [ 46.054688, 39.504041 ], [ 46.406250, 39.504041 ], [ 46.406250, 39.095963 ], [ 46.582031, 39.095963 ], [ 46.582031, 38.685510 ], [ 46.054688, 38.685510 ], [ 46.054688, 38.959409 ], [ 45.878906, 38.959409 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 40.044438 ], [ 44.121094, 40.044438 ], [ 44.121094, 41.112469 ], [ 44.648438, 41.112469 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 41.376809 ], [ 44.824219, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 40.313043 ], [ 45.878906, 40.313043 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.703125, 39.774769 ], [ 45.703125, 39.639538 ], [ 46.054688, 39.639538 ], [ 46.054688, 39.504041 ], [ 46.406250, 39.504041 ], [ 46.406250, 38.822591 ], [ 46.054688, 38.822591 ], [ 46.054688, 38.959409 ], [ 45.878906, 38.959409 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.472656, 39.774769 ], [ 44.472656, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 40.044438 ], [ 44.121094, 40.044438 ], [ 44.121094, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.376809 ], [ 44.824219, 41.376809 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.691406, 41.640078 ], [ 48.691406, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ], [ 49.042969, 41.244772 ], [ 49.042969, 41.112469 ], [ 49.218750, 41.112469 ], [ 49.218750, 40.847060 ], [ 49.394531, 40.847060 ], [ 49.394531, 40.580585 ], [ 50.097656, 40.580585 ], [ 50.097656, 40.446947 ], [ 50.273438, 40.446947 ], [ 50.273438, 40.313043 ], [ 50.097656, 40.313043 ], [ 50.097656, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.774769 ], [ 49.394531, 39.774769 ], [ 49.394531, 39.232253 ], [ 49.218750, 39.232253 ], [ 49.218750, 38.959409 ], [ 49.042969, 38.959409 ], [ 49.042969, 38.822591 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.272689 ], [ 48.515625, 38.272689 ], [ 48.515625, 38.410558 ], [ 48.339844, 38.410558 ], [ 48.339844, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 38.685510 ], [ 47.988281, 38.685510 ], [ 47.988281, 38.822591 ], [ 48.164062, 38.822591 ], [ 48.164062, 39.095963 ], [ 48.339844, 39.095963 ], [ 48.339844, 39.232253 ], [ 48.164062, 39.232253 ], [ 48.164062, 39.504041 ], [ 47.636719, 39.504041 ], [ 47.636719, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.232253 ], [ 47.285156, 39.232253 ], [ 47.285156, 39.095963 ], [ 46.933594, 39.095963 ], [ 46.933594, 38.959409 ], [ 46.757812, 38.959409 ], [ 46.757812, 38.822591 ], [ 46.582031, 38.822591 ], [ 46.582031, 39.095963 ], [ 46.406250, 39.095963 ], [ 46.406250, 39.504041 ], [ 46.054688, 39.504041 ], [ 46.054688, 39.639538 ], [ 45.878906, 39.639538 ], [ 45.878906, 39.774769 ], [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.044438 ], [ 45.878906, 40.044438 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.230469, 41.508577 ], [ 46.230469, 41.640078 ], [ 46.933594, 41.640078 ], [ 46.933594, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.376809 ], [ 47.285156, 41.376809 ], [ 47.285156, 41.244772 ], [ 47.460938, 41.244772 ], [ 47.460938, 41.112469 ], [ 47.812500, 41.112469 ], [ 47.812500, 41.244772 ], [ 47.988281, 41.244772 ], [ 47.988281, 41.376809 ], [ 48.164062, 41.376809 ], [ 48.164062, 41.508577 ], [ 48.339844, 41.508577 ], [ 48.339844, 41.640078 ], [ 48.691406, 41.640078 ] ] ], [ [ [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.959409 ], [ 46.054688, 38.959409 ], [ 46.054688, 38.685510 ], [ 45.703125, 38.685510 ], [ 45.703125, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.774769 ], [ 45.000000, 39.774769 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.691406, 41.640078 ], [ 48.691406, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.376809 ], [ 49.042969, 41.376809 ], [ 49.042969, 41.244772 ], [ 49.218750, 41.244772 ], [ 49.218750, 40.979898 ], [ 49.394531, 40.979898 ], [ 49.394531, 40.713956 ], [ 49.570312, 40.713956 ], [ 49.570312, 40.580585 ], [ 49.921875, 40.580585 ], [ 49.921875, 40.446947 ], [ 50.097656, 40.446947 ], [ 50.097656, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.774769 ], [ 49.394531, 39.774769 ], [ 49.394531, 39.232253 ], [ 49.218750, 39.232253 ], [ 49.218750, 38.959409 ], [ 48.867188, 38.959409 ], [ 48.867188, 38.822591 ], [ 48.691406, 38.822591 ], [ 48.691406, 38.548165 ], [ 48.867188, 38.548165 ], [ 48.867188, 38.272689 ], [ 48.339844, 38.272689 ], [ 48.339844, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 38.685510 ], [ 47.988281, 38.685510 ], [ 47.988281, 38.959409 ], [ 48.164062, 38.959409 ], [ 48.164062, 39.232253 ], [ 48.339844, 39.232253 ], [ 48.339844, 39.368279 ], [ 48.164062, 39.368279 ], [ 48.164062, 39.504041 ], [ 47.988281, 39.504041 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.639538 ], [ 47.636719, 39.504041 ], [ 47.460938, 39.504041 ], [ 47.460938, 39.368279 ], [ 47.285156, 39.368279 ], [ 47.285156, 39.232253 ], [ 46.933594, 39.232253 ], [ 46.933594, 39.095963 ], [ 46.757812, 39.095963 ], [ 46.757812, 38.959409 ], [ 46.582031, 38.959409 ], [ 46.582031, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.504041 ], [ 46.054688, 39.504041 ], [ 46.054688, 39.639538 ], [ 45.703125, 39.639538 ], [ 45.703125, 39.774769 ], [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ], [ 45.878906, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.847060 ], [ 45.351562, 40.979898 ], [ 45.175781, 40.979898 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 44.824219, 41.244772 ], [ 44.824219, 41.376809 ], [ 45.527344, 41.376809 ], [ 45.527344, 41.244772 ], [ 46.054688, 41.244772 ], [ 46.054688, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.376809 ], [ 46.230469, 41.376809 ], [ 46.230469, 41.508577 ], [ 46.054688, 41.508577 ], [ 46.054688, 41.640078 ], [ 46.757812, 41.640078 ], [ 46.757812, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.640078 ], [ 48.691406, 41.640078 ] ] ], [ [ [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.959409 ], [ 46.054688, 38.959409 ], [ 46.054688, 38.822591 ], [ 45.527344, 38.822591 ], [ 45.527344, 38.959409 ], [ 45.175781, 38.959409 ], [ 45.175781, 39.095963 ], [ 45.000000, 39.095963 ], [ 45.000000, 39.232253 ], [ 44.824219, 39.232253 ], [ 44.824219, 39.504041 ], [ 44.648438, 39.504041 ], [ 44.648438, 39.774769 ], [ 45.000000, 39.774769 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 39.639538 ], [ 44.824219, 39.504041 ], [ 45.000000, 39.504041 ], [ 45.000000, 39.232253 ], [ 45.175781, 39.232253 ], [ 45.175781, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 45.703125, 38.822591 ], [ 45.703125, 38.685510 ], [ 46.582031, 38.685510 ], [ 46.582031, 38.822591 ], [ 46.757812, 38.822591 ], [ 46.757812, 38.959409 ], [ 46.933594, 38.959409 ], [ 46.933594, 39.095963 ], [ 47.285156, 39.095963 ], [ 47.285156, 39.232253 ], [ 47.460938, 39.232253 ], [ 47.460938, 39.368279 ], [ 47.636719, 39.368279 ], [ 47.636719, 39.504041 ], [ 48.164062, 39.504041 ], [ 48.164062, 39.232253 ], [ 48.339844, 39.232253 ], [ 48.339844, 39.095963 ], [ 48.164062, 39.095963 ], [ 48.164062, 38.822591 ], [ 47.988281, 38.822591 ], [ 47.988281, 38.685510 ], [ 48.164062, 38.685510 ], [ 48.164062, 38.548165 ], [ 48.339844, 38.548165 ], [ 48.339844, 38.410558 ], [ 48.515625, 38.410558 ], [ 48.515625, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.996163 ], [ 49.042969, 37.996163 ], [ 49.042969, 37.718590 ], [ 49.218750, 37.718590 ], [ 49.218750, 37.579413 ], [ 49.570312, 37.579413 ], [ 49.570312, 37.439974 ], [ 50.097656, 37.439974 ], [ 50.097656, 37.300275 ], [ 50.273438, 37.300275 ], [ 50.273438, 37.160317 ], [ 50.449219, 37.160317 ], [ 50.449219, 37.020098 ], [ 50.625000, 37.020098 ], [ 50.625000, 36.879621 ], [ 51.328125, 36.879621 ], [ 51.328125, 36.738884 ], [ 52.734375, 36.738884 ], [ 52.734375, 36.879621 ], [ 53.437500, 36.879621 ], [ 53.437500, 37.020098 ], [ 53.964844, 37.020098 ], [ 53.964844, 37.160317 ], [ 54.316406, 37.160317 ], [ 54.316406, 37.300275 ], [ 54.667969, 37.300275 ], [ 54.667969, 37.439974 ], [ 55.019531, 37.439974 ], [ 55.019531, 37.579413 ], [ 55.195312, 37.579413 ], [ 55.195312, 37.718590 ], [ 55.371094, 37.718590 ], [ 55.371094, 37.857507 ], [ 55.546875, 37.857507 ], [ 55.546875, 37.996163 ], [ 56.601562, 37.996163 ], [ 56.601562, 38.134557 ], [ 56.777344, 38.134557 ], [ 56.777344, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 37.857507 ], [ 57.656250, 37.857507 ], [ 57.656250, 37.718590 ], [ 58.007812, 37.718590 ], [ 58.007812, 37.579413 ], [ 58.710938, 37.579413 ], [ 58.710938, 37.439974 ], [ 59.238281, 37.439974 ], [ 59.238281, 37.300275 ], [ 59.414062, 37.300275 ], [ 59.414062, 37.160317 ], [ 59.589844, 37.160317 ], [ 59.589844, 37.020098 ], [ 59.765625, 37.020098 ], [ 59.765625, 36.879621 ], [ 59.941406, 36.879621 ], [ 59.941406, 36.738884 ], [ 60.117188, 36.738884 ], [ 60.117188, 36.597889 ], [ 60.644531, 36.597889 ], [ 60.644531, 36.456636 ], [ 61.171875, 36.456636 ], [ 61.171875, 35.317366 ], [ 60.996094, 35.317366 ], [ 60.996094, 34.741612 ], [ 60.820312, 34.741612 ], [ 60.820312, 34.161818 ], [ 60.644531, 34.161818 ], [ 60.644531, 33.870416 ], [ 60.468750, 33.870416 ], [ 60.468750, 33.724340 ], [ 60.644531, 33.724340 ], [ 60.644531, 33.578015 ], [ 60.996094, 33.578015 ], [ 60.996094, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.284620 ], [ 60.644531, 33.284620 ], [ 60.644531, 32.990236 ], [ 60.468750, 32.990236 ], [ 60.468750, 32.694866 ], [ 60.644531, 32.694866 ], [ 60.644531, 32.398516 ], [ 60.820312, 32.398516 ], [ 60.820312, 31.802893 ], [ 60.996094, 31.802893 ], [ 60.996094, 31.503629 ], [ 61.171875, 31.503629 ], [ 61.171875, 31.353637 ], [ 61.699219, 31.353637 ], [ 61.699219, 30.600094 ], [ 61.523438, 30.600094 ], [ 61.523438, 30.448674 ], [ 61.347656, 30.448674 ], [ 61.347656, 30.297018 ], [ 61.171875, 30.297018 ], [ 61.171875, 29.993002 ], [ 60.996094, 29.993002 ], [ 60.996094, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.228890 ], [ 61.347656, 29.228890 ], [ 61.347656, 29.075375 ], [ 61.523438, 29.075375 ], [ 61.523438, 28.767659 ], [ 61.699219, 28.767659 ], [ 61.699219, 28.613459 ], [ 62.050781, 28.613459 ], [ 62.050781, 28.459033 ], [ 62.402344, 28.459033 ], [ 62.402344, 28.304381 ], [ 62.753906, 28.304381 ], [ 62.753906, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.215556 ], [ 63.281250, 27.215556 ], [ 63.281250, 26.745610 ], [ 63.105469, 26.745610 ], [ 63.105469, 26.588527 ], [ 62.753906, 26.588527 ], [ 62.753906, 26.431228 ], [ 62.226562, 26.431228 ], [ 62.226562, 26.273714 ], [ 61.875000, 26.273714 ], [ 61.875000, 25.958045 ], [ 61.699219, 25.958045 ], [ 61.699219, 25.324167 ], [ 61.523438, 25.324167 ], [ 61.523438, 25.005973 ], [ 60.996094, 25.005973 ], [ 60.996094, 25.165173 ], [ 59.941406, 25.165173 ], [ 59.941406, 25.324167 ], [ 59.238281, 25.324167 ], [ 59.238281, 25.482951 ], [ 58.710938, 25.482951 ], [ 58.710938, 25.641526 ], [ 57.832031, 25.641526 ], [ 57.832031, 25.799891 ], [ 57.480469, 25.799891 ], [ 57.480469, 25.958045 ], [ 57.304688, 25.958045 ], [ 57.304688, 26.273714 ], [ 57.128906, 26.273714 ], [ 57.128906, 26.588527 ], [ 56.953125, 26.588527 ], [ 56.953125, 26.902477 ], [ 56.777344, 26.902477 ], [ 56.777344, 27.059126 ], [ 56.074219, 27.059126 ], [ 56.074219, 26.902477 ], [ 55.722656, 26.902477 ], [ 55.722656, 26.745610 ], [ 55.371094, 26.745610 ], [ 55.371094, 26.588527 ], [ 55.019531, 26.588527 ], [ 55.019531, 26.431228 ], [ 54.316406, 26.431228 ], [ 54.316406, 26.588527 ], [ 53.613281, 26.588527 ], [ 53.613281, 26.745610 ], [ 53.261719, 26.745610 ], [ 53.261719, 26.902477 ], [ 53.085938, 26.902477 ], [ 53.085938, 27.059126 ], [ 52.910156, 27.059126 ], [ 52.910156, 27.215556 ], [ 52.734375, 27.215556 ], [ 52.734375, 27.371767 ], [ 52.558594, 27.371767 ], [ 52.558594, 27.527758 ], [ 52.207031, 27.527758 ], [ 52.207031, 27.683528 ], [ 51.679688, 27.683528 ], [ 51.679688, 27.839076 ], [ 51.328125, 27.839076 ], [ 51.328125, 28.149503 ], [ 51.152344, 28.149503 ], [ 51.152344, 28.304381 ], [ 50.976562, 28.304381 ], [ 50.976562, 28.613459 ], [ 50.800781, 28.613459 ], [ 50.800781, 28.921631 ], [ 50.625000, 28.921631 ], [ 50.625000, 29.228890 ], [ 50.449219, 29.228890 ], [ 50.449219, 29.535230 ], [ 50.273438, 29.535230 ], [ 50.273438, 29.840644 ], [ 50.097656, 29.840644 ], [ 50.097656, 30.145127 ], [ 49.921875, 30.145127 ], [ 49.921875, 29.993002 ], [ 49.218750, 29.993002 ], [ 49.218750, 30.145127 ], [ 48.691406, 30.145127 ], [ 48.691406, 29.993002 ], [ 48.339844, 29.993002 ], [ 48.339844, 30.145127 ], [ 48.164062, 30.145127 ], [ 48.164062, 30.297018 ], [ 47.988281, 30.297018 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.636719, 31.353637 ], [ 47.812500, 31.353637 ], [ 47.812500, 31.653381 ], [ 47.636719, 31.653381 ], [ 47.636719, 31.952162 ], [ 47.460938, 31.952162 ], [ 47.460938, 32.249974 ], [ 47.285156, 32.249974 ], [ 47.285156, 32.398516 ], [ 47.109375, 32.398516 ], [ 47.109375, 32.546813 ], [ 46.757812, 32.546813 ], [ 46.757812, 32.694866 ], [ 46.406250, 32.694866 ], [ 46.406250, 32.842674 ], [ 46.054688, 32.842674 ], [ 46.054688, 32.990236 ], [ 45.878906, 32.990236 ], [ 45.878906, 33.284620 ], [ 45.703125, 33.284620 ], [ 45.703125, 33.578015 ], [ 45.527344, 33.578015 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.161818 ], [ 45.527344, 34.161818 ], [ 45.527344, 34.452218 ], [ 45.703125, 34.452218 ], [ 45.703125, 34.741612 ], [ 45.878906, 34.741612 ], [ 45.878906, 34.885931 ], [ 46.230469, 34.885931 ], [ 46.230469, 35.317366 ], [ 46.054688, 35.317366 ], [ 46.054688, 35.746512 ], [ 45.703125, 35.746512 ], [ 45.703125, 35.889050 ], [ 45.351562, 35.889050 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 36.879621 ], [ 44.824219, 36.879621 ], [ 44.824219, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 38.134557 ], [ 44.472656, 38.134557 ], [ 44.472656, 38.548165 ], [ 44.296875, 38.548165 ], [ 44.296875, 39.095963 ], [ 44.121094, 39.095963 ], [ 44.121094, 39.504041 ], [ 44.472656, 39.504041 ], [ 44.472656, 39.639538 ], [ 44.824219, 39.639538 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.988281, 39.639538 ], [ 47.988281, 39.504041 ], [ 48.164062, 39.504041 ], [ 48.164062, 39.368279 ], [ 48.339844, 39.368279 ], [ 48.339844, 39.232253 ], [ 48.164062, 39.232253 ], [ 48.164062, 38.959409 ], [ 47.988281, 38.959409 ], [ 47.988281, 38.685510 ], [ 48.164062, 38.685510 ], [ 48.164062, 38.548165 ], [ 48.339844, 38.548165 ], [ 48.339844, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.996163 ], [ 49.042969, 37.996163 ], [ 49.042969, 37.718590 ], [ 49.218750, 37.718590 ], [ 49.218750, 37.579413 ], [ 49.746094, 37.579413 ], [ 49.746094, 37.439974 ], [ 50.097656, 37.439974 ], [ 50.097656, 37.300275 ], [ 50.273438, 37.300275 ], [ 50.273438, 37.160317 ], [ 50.449219, 37.160317 ], [ 50.449219, 37.020098 ], [ 50.625000, 37.020098 ], [ 50.625000, 36.879621 ], [ 51.328125, 36.879621 ], [ 51.328125, 36.738884 ], [ 52.734375, 36.738884 ], [ 52.734375, 36.879621 ], [ 53.437500, 36.879621 ], [ 53.437500, 37.020098 ], [ 53.789062, 37.020098 ], [ 53.789062, 37.300275 ], [ 54.316406, 37.300275 ], [ 54.316406, 37.439974 ], [ 54.843750, 37.439974 ], [ 54.843750, 37.579413 ], [ 55.019531, 37.579413 ], [ 55.019531, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.857507 ], [ 55.371094, 37.857507 ], [ 55.371094, 37.996163 ], [ 56.425781, 37.996163 ], [ 56.425781, 38.134557 ], [ 57.304688, 38.134557 ], [ 57.304688, 37.996163 ], [ 57.656250, 37.996163 ], [ 57.656250, 37.857507 ], [ 57.832031, 37.857507 ], [ 57.832031, 37.718590 ], [ 58.183594, 37.718590 ], [ 58.183594, 37.579413 ], [ 58.535156, 37.579413 ], [ 58.535156, 37.439974 ], [ 59.062500, 37.439974 ], [ 59.062500, 37.300275 ], [ 59.238281, 37.300275 ], [ 59.238281, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 37.020098 ], [ 59.765625, 37.020098 ], [ 59.765625, 36.879621 ], [ 59.941406, 36.879621 ], [ 59.941406, 36.738884 ], [ 60.117188, 36.738884 ], [ 60.117188, 36.597889 ], [ 60.996094, 36.597889 ], [ 60.996094, 36.173357 ], [ 61.171875, 36.173357 ], [ 61.171875, 35.460670 ], [ 60.996094, 35.460670 ], [ 60.996094, 35.029996 ], [ 60.820312, 35.029996 ], [ 60.820312, 34.597042 ], [ 60.644531, 34.597042 ], [ 60.644531, 34.016242 ], [ 60.468750, 34.016242 ], [ 60.468750, 33.578015 ], [ 60.820312, 33.578015 ], [ 60.820312, 33.431441 ], [ 60.644531, 33.431441 ], [ 60.644531, 33.137551 ], [ 60.468750, 33.137551 ], [ 60.468750, 32.694866 ], [ 60.644531, 32.694866 ], [ 60.644531, 32.398516 ], [ 60.820312, 32.398516 ], [ 60.820312, 31.653381 ], [ 61.171875, 31.653381 ], [ 61.171875, 31.503629 ], [ 61.699219, 31.503629 ], [ 61.699219, 30.600094 ], [ 61.523438, 30.600094 ], [ 61.523438, 30.448674 ], [ 61.347656, 30.448674 ], [ 61.347656, 30.297018 ], [ 61.171875, 30.297018 ], [ 61.171875, 29.993002 ], [ 60.996094, 29.993002 ], [ 60.996094, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.382175 ], [ 61.347656, 29.382175 ], [ 61.347656, 29.228890 ], [ 61.523438, 29.228890 ], [ 61.523438, 28.921631 ], [ 61.699219, 28.921631 ], [ 61.699219, 28.613459 ], [ 62.050781, 28.613459 ], [ 62.050781, 28.459033 ], [ 62.402344, 28.459033 ], [ 62.402344, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.839076 ], [ 62.753906, 27.839076 ], [ 62.753906, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.215556 ], [ 63.105469, 27.215556 ], [ 63.105469, 27.059126 ], [ 63.281250, 27.059126 ], [ 63.281250, 26.745610 ], [ 62.929688, 26.745610 ], [ 62.929688, 26.588527 ], [ 62.578125, 26.588527 ], [ 62.578125, 26.431228 ], [ 62.226562, 26.431228 ], [ 62.226562, 26.273714 ], [ 61.875000, 26.273714 ], [ 61.875000, 25.958045 ], [ 61.699219, 25.958045 ], [ 61.699219, 25.641526 ], [ 61.523438, 25.641526 ], [ 61.523438, 25.324167 ], [ 61.347656, 25.324167 ], [ 61.347656, 25.165173 ], [ 60.820312, 25.165173 ], [ 60.820312, 25.324167 ], [ 59.941406, 25.324167 ], [ 59.941406, 25.482951 ], [ 58.886719, 25.482951 ], [ 58.886719, 25.641526 ], [ 57.656250, 25.641526 ], [ 57.656250, 25.799891 ], [ 57.304688, 25.799891 ], [ 57.304688, 26.115986 ], [ 57.128906, 26.115986 ], [ 57.128906, 26.745610 ], [ 56.953125, 26.745610 ], [ 56.953125, 27.059126 ], [ 56.601562, 27.059126 ], [ 56.601562, 27.215556 ], [ 56.250000, 27.215556 ], [ 56.250000, 27.059126 ], [ 55.722656, 27.059126 ], [ 55.722656, 26.902477 ], [ 55.371094, 26.902477 ], [ 55.371094, 26.745610 ], [ 55.019531, 26.745610 ], [ 55.019531, 26.588527 ], [ 54.316406, 26.588527 ], [ 54.316406, 26.745610 ], [ 53.613281, 26.745610 ], [ 53.613281, 26.902477 ], [ 53.261719, 26.902477 ], [ 53.261719, 27.059126 ], [ 53.085938, 27.059126 ], [ 53.085938, 27.215556 ], [ 52.734375, 27.215556 ], [ 52.734375, 27.371767 ], [ 52.558594, 27.371767 ], [ 52.558594, 27.527758 ], [ 52.382812, 27.527758 ], [ 52.382812, 27.683528 ], [ 52.031250, 27.683528 ], [ 52.031250, 27.839076 ], [ 51.679688, 27.839076 ], [ 51.679688, 27.994401 ], [ 51.328125, 27.994401 ], [ 51.328125, 28.304381 ], [ 51.152344, 28.304381 ], [ 51.152344, 28.459033 ], [ 50.976562, 28.459033 ], [ 50.976562, 28.767659 ], [ 50.800781, 28.767659 ], [ 50.800781, 29.075375 ], [ 50.625000, 29.075375 ], [ 50.625000, 29.382175 ], [ 50.449219, 29.382175 ], [ 50.449219, 29.688053 ], [ 50.273438, 29.688053 ], [ 50.273438, 29.993002 ], [ 50.097656, 29.993002 ], [ 50.097656, 30.145127 ], [ 49.746094, 30.145127 ], [ 49.746094, 29.993002 ], [ 49.394531, 29.993002 ], [ 49.394531, 30.145127 ], [ 49.042969, 30.145127 ], [ 49.042969, 30.297018 ], [ 48.691406, 30.297018 ], [ 48.691406, 29.993002 ], [ 48.339844, 29.993002 ], [ 48.339844, 30.297018 ], [ 48.164062, 30.297018 ], [ 48.164062, 30.448674 ], [ 47.988281, 30.448674 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.636719, 31.353637 ], [ 47.812500, 31.353637 ], [ 47.812500, 31.802893 ], [ 47.636719, 31.802893 ], [ 47.636719, 32.101190 ], [ 47.460938, 32.101190 ], [ 47.460938, 32.398516 ], [ 47.285156, 32.398516 ], [ 47.285156, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 32.694866 ], [ 46.757812, 32.694866 ], [ 46.757812, 32.842674 ], [ 46.406250, 32.842674 ], [ 46.406250, 32.990236 ], [ 46.054688, 32.990236 ], [ 46.054688, 33.137551 ], [ 45.878906, 33.137551 ], [ 45.878906, 33.431441 ], [ 45.703125, 33.431441 ], [ 45.703125, 33.578015 ], [ 45.527344, 33.578015 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 35.029996 ], [ 46.054688, 35.029996 ], [ 46.054688, 35.746512 ], [ 45.703125, 35.746512 ], [ 45.703125, 35.889050 ], [ 45.351562, 35.889050 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.456636 ], [ 45.000000, 36.456636 ], [ 45.000000, 36.738884 ], [ 44.824219, 36.738884 ], [ 44.824219, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.300275 ], [ 44.472656, 37.300275 ], [ 44.472656, 37.579413 ], [ 44.296875, 37.579413 ], [ 44.296875, 37.857507 ], [ 44.121094, 37.857507 ], [ 44.121094, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 38.959409 ], [ 44.121094, 38.959409 ], [ 44.121094, 39.504041 ], [ 44.296875, 39.504041 ], [ 44.296875, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 38.959409 ], [ 45.527344, 38.959409 ], [ 45.527344, 38.822591 ], [ 46.582031, 38.822591 ], [ 46.582031, 38.959409 ], [ 46.757812, 38.959409 ], [ 46.757812, 39.095963 ], [ 46.933594, 39.095963 ], [ 46.933594, 39.232253 ], [ 47.285156, 39.232253 ], [ 47.285156, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.504041 ], [ 47.636719, 39.504041 ], [ 47.636719, 39.639538 ], [ 47.988281, 39.639538 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.988281, 29.993002 ], [ 47.988281, 29.688053 ], [ 48.164062, 29.688053 ], [ 48.164062, 28.921631 ], [ 48.339844, 28.921631 ], [ 48.339844, 28.613459 ], [ 48.164062, 28.613459 ], [ 48.164062, 28.459033 ], [ 47.636719, 28.459033 ], [ 47.636719, 28.767659 ], [ 47.460938, 28.767659 ], [ 47.460938, 29.075375 ], [ 46.757812, 29.075375 ], [ 46.757812, 29.382175 ], [ 46.933594, 29.382175 ], [ 46.933594, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 29.840644 ], [ 47.285156, 29.840644 ], [ 47.285156, 29.993002 ], [ 47.988281, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.460938, 30.145127 ], [ 47.460938, 29.993002 ], [ 47.812500, 29.993002 ], [ 47.812500, 29.840644 ], [ 47.988281, 29.840644 ], [ 47.988281, 29.535230 ], [ 48.164062, 29.535230 ], [ 48.164062, 29.382175 ], [ 47.988281, 29.382175 ], [ 47.988281, 29.075375 ], [ 48.164062, 29.075375 ], [ 48.164062, 28.767659 ], [ 48.339844, 28.767659 ], [ 48.339844, 28.613459 ], [ 47.636719, 28.613459 ], [ 47.636719, 28.767659 ], [ 47.460938, 28.767659 ], [ 47.460938, 29.075375 ], [ 46.757812, 29.075375 ], [ 46.757812, 29.228890 ], [ 46.582031, 29.228890 ], [ 46.582031, 29.382175 ], [ 46.757812, 29.382175 ], [ 46.757812, 29.688053 ], [ 46.933594, 29.688053 ], [ 46.933594, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 29.993002 ], [ 47.285156, 29.993002 ], [ 47.285156, 30.145127 ], [ 47.460938, 30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 45.527344, 29.228890 ], [ 45.527344, 29.075375 ], [ 47.460938, 29.075375 ], [ 47.460938, 28.767659 ], [ 47.636719, 28.767659 ], [ 47.636719, 28.459033 ], [ 48.164062, 28.459033 ], [ 48.164062, 28.613459 ], [ 48.339844, 28.613459 ], [ 48.339844, 28.459033 ], [ 48.515625, 28.459033 ], [ 48.515625, 28.149503 ], [ 48.691406, 28.149503 ], [ 48.691406, 27.839076 ], [ 48.867188, 27.839076 ], [ 48.867188, 27.527758 ], [ 49.218750, 27.527758 ], [ 49.218750, 27.215556 ], [ 49.394531, 27.215556 ], [ 49.394531, 26.902477 ], [ 49.746094, 26.902477 ], [ 49.746094, 26.745610 ], [ 50.097656, 26.745610 ], [ 50.097656, 26.431228 ], [ 50.273438, 26.431228 ], [ 50.273438, 26.115986 ], [ 50.097656, 26.115986 ], [ 50.097656, 25.799891 ], [ 50.273438, 25.799891 ], [ 50.273438, 25.482951 ], [ 50.449219, 25.482951 ], [ 50.449219, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.846565 ], [ 50.800781, 24.846565 ], [ 50.800781, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 24.367114 ], [ 51.503906, 24.367114 ], [ 51.503906, 24.046464 ], [ 51.679688, 24.046464 ], [ 51.679688, 23.725012 ], [ 51.855469, 23.725012 ], [ 51.855469, 23.241346 ], [ 52.031250, 23.241346 ], [ 52.031250, 23.079732 ], [ 52.382812, 23.079732 ], [ 52.382812, 22.917923 ], [ 53.085938, 22.917923 ], [ 53.085938, 22.755921 ], [ 53.789062, 22.755921 ], [ 53.789062, 22.593726 ], [ 54.492188, 22.593726 ], [ 54.492188, 22.431340 ], [ 55.019531, 22.431340 ], [ 55.019531, 22.593726 ], [ 55.371094, 22.593726 ], [ 55.371094, 22.268764 ], [ 55.546875, 22.268764 ], [ 55.546875, 21.943046 ], [ 55.722656, 21.943046 ], [ 55.722656, 21.616579 ], [ 55.546875, 21.616579 ], [ 55.546875, 21.125498 ], [ 55.371094, 21.125498 ], [ 55.371094, 20.632784 ], [ 55.195312, 20.632784 ], [ 55.195312, 20.138470 ], [ 55.019531, 20.138470 ], [ 55.019531, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 19.808054 ], [ 54.316406, 19.808054 ], [ 54.316406, 19.642588 ], [ 53.789062, 19.642588 ], [ 53.789062, 19.476950 ], [ 53.437500, 19.476950 ], [ 53.437500, 19.311143 ], [ 52.910156, 19.311143 ], [ 52.910156, 19.145168 ], [ 52.382812, 19.145168 ], [ 52.382812, 18.979026 ], [ 51.328125, 18.979026 ], [ 51.328125, 18.812718 ], [ 49.921875, 18.812718 ], [ 49.921875, 18.646245 ], [ 49.042969, 18.646245 ], [ 49.042969, 18.479609 ], [ 48.691406, 18.479609 ], [ 48.691406, 18.312811 ], [ 48.339844, 18.312811 ], [ 48.339844, 18.145852 ], [ 48.164062, 18.145852 ], [ 48.164062, 17.978733 ], [ 47.988281, 17.978733 ], [ 47.988281, 17.644022 ], [ 47.812500, 17.644022 ], [ 47.812500, 17.476432 ], [ 47.636719, 17.476432 ], [ 47.636719, 17.140790 ], [ 47.285156, 17.140790 ], [ 47.285156, 16.972741 ], [ 46.933594, 16.972741 ], [ 46.933594, 17.140790 ], [ 46.757812, 17.140790 ], [ 46.757812, 17.308688 ], [ 45.175781, 17.308688 ], [ 45.175781, 17.476432 ], [ 44.121094, 17.476432 ], [ 44.121094, 29.382175 ], [ 44.472656, 29.382175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.296875, 29.535230 ], [ 44.296875, 29.382175 ], [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 46.757812, 29.228890 ], [ 46.757812, 29.075375 ], [ 47.460938, 29.075375 ], [ 47.460938, 28.767659 ], [ 47.636719, 28.767659 ], [ 47.636719, 28.613459 ], [ 48.339844, 28.613459 ], [ 48.339844, 28.304381 ], [ 48.515625, 28.304381 ], [ 48.515625, 27.994401 ], [ 48.691406, 27.994401 ], [ 48.691406, 27.683528 ], [ 49.042969, 27.683528 ], [ 49.042969, 27.527758 ], [ 49.218750, 27.527758 ], [ 49.218750, 27.371767 ], [ 49.394531, 27.371767 ], [ 49.394531, 27.059126 ], [ 49.570312, 27.059126 ], [ 49.570312, 26.902477 ], [ 49.921875, 26.902477 ], [ 49.921875, 26.745610 ], [ 50.097656, 26.745610 ], [ 50.097656, 25.482951 ], [ 50.449219, 25.482951 ], [ 50.449219, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.846565 ], [ 50.800781, 24.846565 ], [ 50.800781, 24.686952 ], [ 51.328125, 24.686952 ], [ 51.328125, 24.527135 ], [ 51.503906, 24.527135 ], [ 51.503906, 23.725012 ], [ 51.679688, 23.725012 ], [ 51.679688, 23.241346 ], [ 51.855469, 23.241346 ], [ 51.855469, 23.079732 ], [ 52.207031, 23.079732 ], [ 52.207031, 22.917923 ], [ 53.261719, 22.917923 ], [ 53.261719, 22.755921 ], [ 54.316406, 22.755921 ], [ 54.316406, 22.593726 ], [ 55.371094, 22.593726 ], [ 55.371094, 22.268764 ], [ 55.546875, 22.268764 ], [ 55.546875, 21.779905 ], [ 55.371094, 21.779905 ], [ 55.371094, 21.289374 ], [ 55.195312, 21.289374 ], [ 55.195312, 20.797201 ], [ 55.019531, 20.797201 ], [ 55.019531, 20.303418 ], [ 54.843750, 20.303418 ], [ 54.843750, 20.138470 ], [ 54.667969, 20.138470 ], [ 54.667969, 19.973349 ], [ 54.140625, 19.973349 ], [ 54.140625, 19.808054 ], [ 53.613281, 19.808054 ], [ 53.613281, 19.642588 ], [ 53.261719, 19.642588 ], [ 53.261719, 19.476950 ], [ 52.734375, 19.476950 ], [ 52.734375, 19.311143 ], [ 52.207031, 19.311143 ], [ 52.207031, 19.145168 ], [ 51.503906, 19.145168 ], [ 51.503906, 18.979026 ], [ 50.625000, 18.979026 ], [ 50.625000, 18.812718 ], [ 49.570312, 18.812718 ], [ 49.570312, 18.646245 ], [ 48.867188, 18.646245 ], [ 48.867188, 18.479609 ], [ 48.515625, 18.479609 ], [ 48.515625, 18.312811 ], [ 48.164062, 18.312811 ], [ 48.164062, 18.145852 ], [ 47.988281, 18.145852 ], [ 47.988281, 17.811456 ], [ 47.812500, 17.811456 ], [ 47.812500, 17.476432 ], [ 47.636719, 17.476432 ], [ 47.636719, 17.140790 ], [ 47.285156, 17.140790 ], [ 47.285156, 16.972741 ], [ 46.757812, 16.972741 ], [ 46.757812, 17.140790 ], [ 46.582031, 17.140790 ], [ 46.582031, 17.308688 ], [ 45.703125, 17.308688 ], [ 45.703125, 17.476432 ], [ 44.121094, 17.476432 ], [ 44.121094, 29.535230 ], [ 44.296875, 29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.503906, 25.958045 ], [ 51.503906, 25.482951 ], [ 51.679688, 25.482951 ], [ 51.679688, 25.005973 ], [ 51.503906, 25.005973 ], [ 51.503906, 24.686952 ], [ 51.328125, 24.686952 ], [ 51.328125, 24.527135 ], [ 50.800781, 24.527135 ], [ 50.800781, 25.641526 ], [ 50.976562, 25.641526 ], [ 50.976562, 25.958045 ], [ 51.503906, 25.958045 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 26.115986 ], [ 51.152344, 25.958045 ], [ 51.328125, 25.958045 ], [ 51.328125, 25.799891 ], [ 51.503906, 25.799891 ], [ 51.503906, 25.005973 ], [ 51.328125, 25.005973 ], [ 51.328125, 24.686952 ], [ 50.800781, 24.686952 ], [ 50.800781, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 25.641526 ], [ 50.800781, 25.641526 ], [ 50.800781, 25.958045 ], [ 50.976562, 25.958045 ], [ 50.976562, 26.115986 ], [ 51.152344, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 25.958045 ], [ 56.074219, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 25.165173 ], [ 56.425781, 25.165173 ], [ 56.425781, 24.846565 ], [ 55.898438, 24.846565 ], [ 55.898438, 24.527135 ], [ 55.722656, 24.527135 ], [ 55.722656, 24.206890 ], [ 55.898438, 24.206890 ], [ 55.898438, 24.046464 ], [ 55.722656, 24.046464 ], [ 55.722656, 23.885838 ], [ 55.546875, 23.885838 ], [ 55.546875, 23.402765 ], [ 55.371094, 23.402765 ], [ 55.371094, 23.079732 ], [ 55.195312, 23.079732 ], [ 55.195312, 22.593726 ], [ 55.019531, 22.593726 ], [ 55.019531, 22.431340 ], [ 54.492188, 22.431340 ], [ 54.492188, 22.593726 ], [ 53.789062, 22.593726 ], [ 53.789062, 22.755921 ], [ 53.085938, 22.755921 ], [ 53.085938, 22.917923 ], [ 52.382812, 22.917923 ], [ 52.382812, 23.079732 ], [ 52.031250, 23.079732 ], [ 52.031250, 23.241346 ], [ 51.855469, 23.241346 ], [ 51.855469, 23.725012 ], [ 51.679688, 23.725012 ], [ 51.679688, 24.046464 ], [ 51.503906, 24.046464 ], [ 51.503906, 24.206890 ], [ 51.855469, 24.206890 ], [ 51.855469, 24.046464 ], [ 52.382812, 24.046464 ], [ 52.382812, 24.206890 ], [ 53.613281, 24.206890 ], [ 53.613281, 24.046464 ], [ 54.140625, 24.046464 ], [ 54.140625, 24.206890 ], [ 54.316406, 24.206890 ], [ 54.316406, 24.527135 ], [ 54.492188, 24.527135 ], [ 54.492188, 24.686952 ], [ 54.667969, 24.686952 ], [ 54.667969, 24.846565 ], [ 54.843750, 24.846565 ], [ 54.843750, 25.005973 ], [ 55.019531, 25.005973 ], [ 55.019531, 25.165173 ], [ 55.195312, 25.165173 ], [ 55.195312, 25.324167 ], [ 55.371094, 25.324167 ], [ 55.371094, 25.482951 ], [ 55.546875, 25.482951 ], [ 55.546875, 25.641526 ], [ 55.722656, 25.641526 ], [ 55.722656, 25.799891 ], [ 55.898438, 25.799891 ], [ 55.898438, 25.958045 ], [ 56.074219, 25.958045 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 25.958045 ], [ 56.074219, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 25.005973 ], [ 55.722656, 25.005973 ], [ 55.722656, 24.046464 ], [ 55.371094, 24.046464 ], [ 55.371094, 23.402765 ], [ 55.195312, 23.402765 ], [ 55.195312, 22.593726 ], [ 54.316406, 22.593726 ], [ 54.316406, 22.755921 ], [ 53.261719, 22.755921 ], [ 53.261719, 22.917923 ], [ 52.207031, 22.917923 ], [ 52.207031, 23.079732 ], [ 51.855469, 23.079732 ], [ 51.855469, 23.241346 ], [ 51.679688, 23.241346 ], [ 51.679688, 23.725012 ], [ 51.503906, 23.725012 ], [ 51.503906, 24.367114 ], [ 51.679688, 24.367114 ], [ 51.679688, 24.046464 ], [ 52.207031, 24.046464 ], [ 52.207031, 24.206890 ], [ 54.140625, 24.206890 ], [ 54.140625, 24.367114 ], [ 54.316406, 24.367114 ], [ 54.316406, 24.527135 ], [ 54.492188, 24.527135 ], [ 54.492188, 24.686952 ], [ 54.667969, 24.686952 ], [ 54.667969, 24.846565 ], [ 54.843750, 24.846565 ], [ 54.843750, 25.005973 ], [ 55.019531, 25.005973 ], [ 55.019531, 25.165173 ], [ 55.195312, 25.165173 ], [ 55.195312, 25.324167 ], [ 55.371094, 25.324167 ], [ 55.371094, 25.482951 ], [ 55.546875, 25.482951 ], [ 55.546875, 25.799891 ], [ 55.722656, 25.799891 ], [ 55.722656, 25.958045 ], [ 56.074219, 25.958045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.117188, 41.640078 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.580585 ], [ 62.226562, 40.580585 ], [ 62.226562, 40.178873 ], [ 62.402344, 40.178873 ], [ 62.402344, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.774769 ], [ 62.753906, 39.774769 ], [ 62.753906, 39.639538 ], [ 63.105469, 39.639538 ], [ 63.105469, 39.504041 ], [ 63.281250, 39.504041 ], [ 63.281250, 39.368279 ], [ 63.457031, 39.368279 ], [ 63.457031, 39.232253 ], [ 63.632812, 39.232253 ], [ 63.632812, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.959409 ], [ 64.160156, 38.959409 ], [ 64.160156, 38.822591 ], [ 64.511719, 38.822591 ], [ 64.511719, 38.685510 ], [ 64.687500, 38.685510 ], [ 64.687500, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.410558 ], [ 65.390625, 38.410558 ], [ 65.390625, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 38.134557 ], [ 66.269531, 38.134557 ], [ 66.269531, 37.996163 ], [ 66.621094, 37.996163 ], [ 66.621094, 37.579413 ], [ 66.445312, 37.579413 ], [ 66.445312, 37.300275 ], [ 66.269531, 37.300275 ], [ 66.269531, 37.439974 ], [ 66.093750, 37.439974 ], [ 66.093750, 37.579413 ], [ 65.742188, 37.579413 ], [ 65.742188, 37.439974 ], [ 65.566406, 37.439974 ], [ 65.566406, 37.300275 ], [ 65.214844, 37.300275 ], [ 65.214844, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.738884 ], [ 64.511719, 36.738884 ], [ 64.511719, 36.173357 ], [ 64.160156, 36.173357 ], [ 64.160156, 36.031332 ], [ 63.808594, 36.031332 ], [ 63.808594, 35.889050 ], [ 63.281250, 35.889050 ], [ 63.281250, 35.746512 ], [ 63.105469, 35.746512 ], [ 63.105469, 35.460670 ], [ 62.753906, 35.460670 ], [ 62.753906, 35.317366 ], [ 61.875000, 35.317366 ], [ 61.875000, 35.460670 ], [ 61.347656, 35.460670 ], [ 61.347656, 35.603719 ], [ 61.171875, 35.603719 ], [ 61.171875, 36.456636 ], [ 60.644531, 36.456636 ], [ 60.644531, 36.597889 ], [ 60.117188, 36.597889 ], [ 60.117188, 36.738884 ], [ 59.941406, 36.738884 ], [ 59.941406, 36.879621 ], [ 59.765625, 36.879621 ], [ 59.765625, 37.020098 ], [ 59.589844, 37.020098 ], [ 59.589844, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 37.300275 ], [ 59.238281, 37.300275 ], [ 59.238281, 37.439974 ], [ 58.710938, 37.439974 ], [ 58.710938, 37.579413 ], [ 58.007812, 37.579413 ], [ 58.007812, 37.718590 ], [ 57.656250, 37.718590 ], [ 57.656250, 37.857507 ], [ 57.304688, 37.857507 ], [ 57.304688, 37.996163 ], [ 56.777344, 37.996163 ], [ 56.777344, 38.134557 ], [ 56.601562, 38.134557 ], [ 56.601562, 37.996163 ], [ 55.546875, 37.996163 ], [ 55.546875, 37.857507 ], [ 55.371094, 37.857507 ], [ 55.371094, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.579413 ], [ 55.019531, 37.579413 ], [ 55.019531, 37.439974 ], [ 54.667969, 37.439974 ], [ 54.667969, 37.300275 ], [ 54.316406, 37.300275 ], [ 54.316406, 37.160317 ], [ 53.964844, 37.160317 ], [ 53.964844, 37.439974 ], [ 53.789062, 37.439974 ], [ 53.789062, 38.410558 ], [ 53.964844, 38.410558 ], [ 53.964844, 38.959409 ], [ 53.613281, 38.959409 ], [ 53.613281, 39.095963 ], [ 53.261719, 39.095963 ], [ 53.261719, 39.232253 ], [ 53.085938, 39.232253 ], [ 53.085938, 39.368279 ], [ 53.261719, 39.368279 ], [ 53.261719, 39.639538 ], [ 53.437500, 39.639538 ], [ 53.437500, 39.909736 ], [ 52.910156, 39.909736 ], [ 52.910156, 40.044438 ], [ 52.734375, 40.044438 ], [ 52.734375, 40.446947 ], [ 52.910156, 40.446947 ], [ 52.910156, 40.847060 ], [ 53.085938, 40.847060 ], [ 53.085938, 40.713956 ], [ 53.437500, 40.713956 ], [ 53.437500, 40.580585 ], [ 53.964844, 40.580585 ], [ 53.964844, 40.713956 ], [ 54.316406, 40.713956 ], [ 54.316406, 40.847060 ], [ 54.667969, 40.847060 ], [ 54.667969, 40.979898 ], [ 54.492188, 40.979898 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.376809 ], [ 53.964844, 41.376809 ], [ 53.964844, 41.640078 ], [ 55.195312, 41.640078 ], [ 55.195312, 41.376809 ], [ 55.371094, 41.376809 ], [ 55.371094, 41.244772 ], [ 55.722656, 41.244772 ], [ 55.722656, 41.376809 ], [ 57.128906, 41.376809 ], [ 57.128906, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 41.640078 ], [ 60.117188, 41.640078 ] ] ], [ [ [ 52.910156, 41.640078 ], [ 52.910156, 41.376809 ], [ 52.558594, 41.376809 ], [ 52.558594, 41.640078 ], [ 52.910156, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.941406, 41.640078 ], [ 59.941406, 41.376809 ], [ 60.117188, 41.376809 ], [ 60.117188, 41.244772 ], [ 60.996094, 41.244772 ], [ 60.996094, 41.376809 ], [ 61.523438, 41.376809 ], [ 61.523438, 41.244772 ], [ 61.699219, 41.244772 ], [ 61.699219, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.313043 ], [ 62.226562, 40.313043 ], [ 62.226562, 40.044438 ], [ 62.402344, 40.044438 ], [ 62.402344, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.774769 ], [ 62.929688, 39.774769 ], [ 62.929688, 39.639538 ], [ 63.105469, 39.639538 ], [ 63.105469, 39.504041 ], [ 63.281250, 39.504041 ], [ 63.281250, 39.368279 ], [ 63.457031, 39.368279 ], [ 63.457031, 39.232253 ], [ 63.632812, 39.232253 ], [ 63.632812, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.959409 ], [ 64.160156, 38.959409 ], [ 64.160156, 38.822591 ], [ 64.511719, 38.822591 ], [ 64.511719, 38.685510 ], [ 64.687500, 38.685510 ], [ 64.687500, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.410558 ], [ 65.390625, 38.410558 ], [ 65.390625, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 38.134557 ], [ 66.093750, 38.134557 ], [ 66.093750, 37.996163 ], [ 66.445312, 37.996163 ], [ 66.445312, 37.439974 ], [ 65.917969, 37.439974 ], [ 65.917969, 37.579413 ], [ 65.566406, 37.579413 ], [ 65.566406, 37.439974 ], [ 65.390625, 37.439974 ], [ 65.390625, 37.300275 ], [ 65.039062, 37.300275 ], [ 65.039062, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.738884 ], [ 64.511719, 36.738884 ], [ 64.511719, 36.173357 ], [ 64.160156, 36.173357 ], [ 64.160156, 36.031332 ], [ 63.632812, 36.031332 ], [ 63.632812, 35.889050 ], [ 63.105469, 35.889050 ], [ 63.105469, 35.603719 ], [ 62.929688, 35.603719 ], [ 62.929688, 35.460670 ], [ 62.753906, 35.460670 ], [ 62.753906, 35.317366 ], [ 61.875000, 35.317366 ], [ 61.875000, 35.460670 ], [ 61.523438, 35.460670 ], [ 61.523438, 35.603719 ], [ 61.171875, 35.603719 ], [ 61.171875, 36.173357 ], [ 60.996094, 36.173357 ], [ 60.996094, 36.597889 ], [ 60.117188, 36.597889 ], [ 60.117188, 36.738884 ], [ 59.941406, 36.738884 ], [ 59.941406, 36.879621 ], [ 59.765625, 36.879621 ], [ 59.765625, 37.020098 ], [ 59.414062, 37.020098 ], [ 59.414062, 37.160317 ], [ 59.238281, 37.160317 ], [ 59.238281, 37.300275 ], [ 59.062500, 37.300275 ], [ 59.062500, 37.439974 ], [ 58.535156, 37.439974 ], [ 58.535156, 37.579413 ], [ 58.183594, 37.579413 ], [ 58.183594, 37.718590 ], [ 57.832031, 37.718590 ], [ 57.832031, 37.857507 ], [ 57.656250, 37.857507 ], [ 57.656250, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 38.134557 ], [ 56.425781, 38.134557 ], [ 56.425781, 37.996163 ], [ 55.371094, 37.996163 ], [ 55.371094, 37.857507 ], [ 55.195312, 37.857507 ], [ 55.195312, 37.718590 ], [ 55.019531, 37.718590 ], [ 55.019531, 37.579413 ], [ 54.843750, 37.579413 ], [ 54.843750, 37.439974 ], [ 54.316406, 37.439974 ], [ 54.316406, 37.300275 ], [ 53.789062, 37.300275 ], [ 53.789062, 37.579413 ], [ 53.613281, 37.579413 ], [ 53.613281, 38.410558 ], [ 53.789062, 38.410558 ], [ 53.789062, 38.959409 ], [ 53.613281, 38.959409 ], [ 53.613281, 39.095963 ], [ 53.261719, 39.095963 ], [ 53.261719, 39.232253 ], [ 53.085938, 39.232253 ], [ 53.085938, 39.639538 ], [ 53.261719, 39.639538 ], [ 53.261719, 40.044438 ], [ 52.558594, 40.044438 ], [ 52.558594, 40.178873 ], [ 52.734375, 40.178873 ], [ 52.734375, 40.713956 ], [ 52.910156, 40.713956 ], [ 52.910156, 40.979898 ], [ 53.085938, 40.979898 ], [ 53.085938, 40.847060 ], [ 53.437500, 40.847060 ], [ 53.437500, 40.713956 ], [ 54.140625, 40.713956 ], [ 54.140625, 40.847060 ], [ 54.492188, 40.847060 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.376809 ], [ 54.140625, 41.376809 ], [ 54.140625, 41.508577 ], [ 53.964844, 41.508577 ], [ 53.964844, 41.640078 ], [ 55.019531, 41.640078 ], [ 55.019531, 41.508577 ], [ 55.195312, 41.508577 ], [ 55.195312, 41.376809 ], [ 56.953125, 41.376809 ], [ 56.953125, 41.640078 ], [ 59.941406, 41.640078 ] ] ], [ [ [ 52.734375, 41.640078 ], [ 52.734375, 41.376809 ], [ 52.558594, 41.376809 ], [ 52.558594, 41.640078 ], [ 52.734375, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 18.979026 ], [ 52.031250, 18.646245 ], [ 52.207031, 18.646245 ], [ 52.207031, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.811456 ], [ 52.558594, 17.811456 ], [ 52.558594, 17.476432 ], [ 52.734375, 17.476432 ], [ 52.734375, 17.140790 ], [ 52.910156, 17.140790 ], [ 52.910156, 16.804541 ], [ 53.085938, 16.804541 ], [ 53.085938, 16.467695 ], [ 52.734375, 16.467695 ], [ 52.734375, 16.299051 ], [ 52.382812, 16.299051 ], [ 52.382812, 16.130262 ], [ 52.207031, 16.130262 ], [ 52.207031, 15.453680 ], [ 51.855469, 15.453680 ], [ 51.855469, 15.284185 ], [ 51.503906, 15.284185 ], [ 51.503906, 15.114553 ], [ 50.800781, 15.114553 ], [ 50.800781, 14.944785 ], [ 50.097656, 14.944785 ], [ 50.097656, 14.774883 ], [ 49.570312, 14.774883 ], [ 49.570312, 14.604847 ], [ 49.394531, 14.604847 ], [ 49.394531, 14.434680 ], [ 49.218750, 14.434680 ], [ 49.218750, 14.264383 ], [ 49.042969, 14.264383 ], [ 49.042969, 14.093957 ], [ 48.867188, 14.093957 ], [ 48.867188, 13.923404 ], [ 47.988281, 13.923404 ], [ 47.988281, 13.752725 ], [ 47.636719, 13.752725 ], [ 47.636719, 13.581921 ], [ 47.109375, 13.581921 ], [ 47.109375, 13.410994 ], [ 45.878906, 13.410994 ], [ 45.878906, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 13.068777 ], [ 45.351562, 13.068777 ], [ 45.351562, 12.897489 ], [ 45.175781, 12.897489 ], [ 45.175781, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.472656, 12.554564 ], [ 44.121094, 12.554564 ], [ 44.121094, 17.476432 ], [ 45.175781, 17.476432 ], [ 45.175781, 17.308688 ], [ 46.757812, 17.308688 ], [ 46.757812, 17.140790 ], [ 46.933594, 17.140790 ], [ 46.933594, 16.972741 ], [ 47.285156, 16.972741 ], [ 47.285156, 17.140790 ], [ 47.636719, 17.140790 ], [ 47.636719, 17.476432 ], [ 47.812500, 17.476432 ], [ 47.812500, 17.644022 ], [ 47.988281, 17.644022 ], [ 47.988281, 17.978733 ], [ 48.164062, 17.978733 ], [ 48.164062, 18.145852 ], [ 48.339844, 18.145852 ], [ 48.339844, 18.312811 ], [ 48.691406, 18.312811 ], [ 48.691406, 18.479609 ], [ 49.042969, 18.479609 ], [ 49.042969, 18.646245 ], [ 49.921875, 18.646245 ], [ 49.921875, 18.812718 ], [ 51.328125, 18.812718 ], [ 51.328125, 18.979026 ], [ 52.031250, 18.979026 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.855469, 19.145168 ], [ 51.855469, 18.979026 ], [ 52.031250, 18.979026 ], [ 52.031250, 18.646245 ], [ 52.207031, 18.646245 ], [ 52.207031, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.978733 ], [ 52.558594, 17.978733 ], [ 52.558594, 17.644022 ], [ 52.734375, 17.644022 ], [ 52.734375, 17.308688 ], [ 52.910156, 17.308688 ], [ 52.910156, 16.972741 ], [ 53.085938, 16.972741 ], [ 53.085938, 16.636192 ], [ 52.734375, 16.636192 ], [ 52.734375, 16.467695 ], [ 52.382812, 16.467695 ], [ 52.382812, 16.299051 ], [ 52.207031, 16.299051 ], [ 52.207031, 15.961329 ], [ 52.031250, 15.961329 ], [ 52.031250, 15.623037 ], [ 51.855469, 15.623037 ], [ 51.855469, 15.453680 ], [ 51.503906, 15.453680 ], [ 51.503906, 15.284185 ], [ 50.976562, 15.284185 ], [ 50.976562, 15.114553 ], [ 50.449219, 15.114553 ], [ 50.449219, 14.944785 ], [ 49.921875, 14.944785 ], [ 49.921875, 14.774883 ], [ 49.570312, 14.774883 ], [ 49.570312, 14.604847 ], [ 49.218750, 14.604847 ], [ 49.218750, 14.434680 ], [ 49.042969, 14.434680 ], [ 49.042969, 14.264383 ], [ 48.691406, 14.264383 ], [ 48.691406, 14.093957 ], [ 47.812500, 14.093957 ], [ 47.812500, 13.923404 ], [ 47.460938, 13.923404 ], [ 47.460938, 13.752725 ], [ 47.285156, 13.752725 ], [ 47.285156, 13.581921 ], [ 46.933594, 13.581921 ], [ 46.933594, 13.410994 ], [ 45.527344, 13.410994 ], [ 45.527344, 13.239945 ], [ 45.351562, 13.239945 ], [ 45.351562, 13.068777 ], [ 45.000000, 13.068777 ], [ 45.000000, 12.897489 ], [ 44.824219, 12.897489 ], [ 44.824219, 12.726084 ], [ 44.121094, 12.726084 ], [ 44.121094, 17.476432 ], [ 45.703125, 17.476432 ], [ 45.703125, 17.308688 ], [ 46.582031, 17.308688 ], [ 46.582031, 17.140790 ], [ 46.757812, 17.140790 ], [ 46.757812, 16.972741 ], [ 47.285156, 16.972741 ], [ 47.285156, 17.140790 ], [ 47.636719, 17.140790 ], [ 47.636719, 17.476432 ], [ 47.812500, 17.476432 ], [ 47.812500, 17.811456 ], [ 47.988281, 17.811456 ], [ 47.988281, 18.145852 ], [ 48.164062, 18.145852 ], [ 48.164062, 18.312811 ], [ 48.515625, 18.312811 ], [ 48.515625, 18.479609 ], [ 48.867188, 18.479609 ], [ 48.867188, 18.646245 ], [ 49.570312, 18.646245 ], [ 49.570312, 18.812718 ], [ 50.625000, 18.812718 ], [ 50.625000, 18.979026 ], [ 51.503906, 18.979026 ], [ 51.503906, 19.145168 ], [ 51.855469, 19.145168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.425781, 24.846565 ], [ 56.425781, 24.686952 ], [ 56.601562, 24.686952 ], [ 56.601562, 24.367114 ], [ 56.777344, 24.367114 ], [ 56.777344, 24.046464 ], [ 57.128906, 24.046464 ], [ 57.128906, 23.885838 ], [ 57.656250, 23.885838 ], [ 57.656250, 23.725012 ], [ 58.359375, 23.725012 ], [ 58.359375, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.402765 ], [ 58.886719, 23.402765 ], [ 58.886719, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.917923 ], [ 59.238281, 22.917923 ], [ 59.238281, 22.755921 ], [ 59.414062, 22.755921 ], [ 59.414062, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.105999 ], [ 59.589844, 22.105999 ], [ 59.589844, 21.779905 ], [ 59.414062, 21.779905 ], [ 59.414062, 21.616579 ], [ 59.238281, 21.616579 ], [ 59.238281, 21.289374 ], [ 59.062500, 21.289374 ], [ 59.062500, 21.125498 ], [ 58.886719, 21.125498 ], [ 58.886719, 20.961440 ], [ 58.710938, 20.961440 ], [ 58.710938, 20.632784 ], [ 58.535156, 20.632784 ], [ 58.535156, 20.468189 ], [ 58.007812, 20.468189 ], [ 58.007812, 20.303418 ], [ 57.832031, 20.303418 ], [ 57.832031, 19.973349 ], [ 57.656250, 19.973349 ], [ 57.656250, 19.476950 ], [ 57.832031, 19.476950 ], [ 57.832031, 18.979026 ], [ 57.304688, 18.979026 ], [ 57.304688, 18.812718 ], [ 56.953125, 18.812718 ], [ 56.953125, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 18.312811 ], [ 56.425781, 18.312811 ], [ 56.425781, 17.978733 ], [ 56.250000, 17.978733 ], [ 56.250000, 17.811456 ], [ 55.546875, 17.811456 ], [ 55.546875, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.140790 ], [ 55.019531, 17.140790 ], [ 55.019531, 16.972741 ], [ 54.316406, 16.972741 ], [ 54.316406, 16.804541 ], [ 53.964844, 16.804541 ], [ 53.964844, 16.636192 ], [ 53.085938, 16.636192 ], [ 53.085938, 16.804541 ], [ 52.910156, 16.804541 ], [ 52.910156, 17.140790 ], [ 52.734375, 17.140790 ], [ 52.734375, 17.476432 ], [ 52.558594, 17.476432 ], [ 52.558594, 17.811456 ], [ 52.382812, 17.811456 ], [ 52.382812, 18.312811 ], [ 52.207031, 18.312811 ], [ 52.207031, 18.646245 ], [ 52.031250, 18.646245 ], [ 52.031250, 18.979026 ], [ 52.382812, 18.979026 ], [ 52.382812, 19.145168 ], [ 52.910156, 19.145168 ], [ 52.910156, 19.311143 ], [ 53.437500, 19.311143 ], [ 53.437500, 19.476950 ], [ 53.789062, 19.476950 ], [ 53.789062, 19.642588 ], [ 54.316406, 19.642588 ], [ 54.316406, 19.808054 ], [ 54.843750, 19.808054 ], [ 54.843750, 19.973349 ], [ 55.019531, 19.973349 ], [ 55.019531, 20.138470 ], [ 55.195312, 20.138470 ], [ 55.195312, 20.632784 ], [ 55.371094, 20.632784 ], [ 55.371094, 21.125498 ], [ 55.546875, 21.125498 ], [ 55.546875, 21.616579 ], [ 55.722656, 21.616579 ], [ 55.722656, 21.943046 ], [ 55.546875, 21.943046 ], [ 55.546875, 22.268764 ], [ 55.371094, 22.268764 ], [ 55.371094, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 23.079732 ], [ 55.371094, 23.079732 ], [ 55.371094, 23.402765 ], [ 55.546875, 23.402765 ], [ 55.546875, 23.885838 ], [ 55.722656, 23.885838 ], [ 55.722656, 24.046464 ], [ 55.898438, 24.046464 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.206890 ], [ 55.722656, 24.527135 ], [ 55.898438, 24.527135 ], [ 55.898438, 24.846565 ], [ 56.425781, 24.846565 ] ] ], [ [ [ 56.425781, 26.273714 ], [ 56.425781, 25.799891 ], [ 56.074219, 25.799891 ], [ 56.074219, 26.115986 ], [ 56.250000, 26.115986 ], [ 56.250000, 26.273714 ], [ 56.425781, 26.273714 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.250000, 25.005973 ], [ 56.250000, 24.846565 ], [ 56.425781, 24.846565 ], [ 56.425781, 24.686952 ], [ 56.601562, 24.686952 ], [ 56.601562, 24.367114 ], [ 56.777344, 24.367114 ], [ 56.777344, 24.206890 ], [ 56.953125, 24.206890 ], [ 56.953125, 24.046464 ], [ 57.128906, 24.046464 ], [ 57.128906, 23.885838 ], [ 58.007812, 23.885838 ], [ 58.007812, 23.725012 ], [ 58.359375, 23.725012 ], [ 58.359375, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.402765 ], [ 58.886719, 23.402765 ], [ 58.886719, 23.079732 ], [ 59.062500, 23.079732 ], [ 59.062500, 22.917923 ], [ 59.238281, 22.917923 ], [ 59.238281, 22.755921 ], [ 59.414062, 22.755921 ], [ 59.414062, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.268764 ], [ 59.589844, 22.268764 ], [ 59.589844, 21.943046 ], [ 59.414062, 21.943046 ], [ 59.414062, 21.616579 ], [ 59.238281, 21.616579 ], [ 59.238281, 21.289374 ], [ 58.886719, 21.289374 ], [ 58.886719, 21.125498 ], [ 58.710938, 21.125498 ], [ 58.710938, 20.961440 ], [ 58.535156, 20.961440 ], [ 58.535156, 20.632784 ], [ 58.359375, 20.632784 ], [ 58.359375, 20.468189 ], [ 57.832031, 20.468189 ], [ 57.832031, 20.303418 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 57.128906, 18.979026 ], [ 57.128906, 18.812718 ], [ 56.777344, 18.812718 ], [ 56.777344, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 18.312811 ], [ 56.425781, 18.312811 ], [ 56.425781, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 17.811456 ], [ 55.371094, 17.811456 ], [ 55.371094, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.140790 ], [ 54.843750, 17.140790 ], [ 54.843750, 16.972741 ], [ 54.316406, 16.972741 ], [ 54.316406, 17.140790 ], [ 54.140625, 17.140790 ], [ 54.140625, 16.972741 ], [ 53.789062, 16.972741 ], [ 53.789062, 16.804541 ], [ 53.085938, 16.804541 ], [ 53.085938, 16.972741 ], [ 52.910156, 16.972741 ], [ 52.910156, 17.308688 ], [ 52.734375, 17.308688 ], [ 52.734375, 17.644022 ], [ 52.558594, 17.644022 ], [ 52.558594, 17.978733 ], [ 52.382812, 17.978733 ], [ 52.382812, 18.312811 ], [ 52.207031, 18.312811 ], [ 52.207031, 18.646245 ], [ 52.031250, 18.646245 ], [ 52.031250, 18.979026 ], [ 51.855469, 18.979026 ], [ 51.855469, 19.145168 ], [ 52.207031, 19.145168 ], [ 52.207031, 19.311143 ], [ 52.734375, 19.311143 ], [ 52.734375, 19.476950 ], [ 53.261719, 19.476950 ], [ 53.261719, 19.642588 ], [ 53.613281, 19.642588 ], [ 53.613281, 19.808054 ], [ 54.140625, 19.808054 ], [ 54.140625, 19.973349 ], [ 54.667969, 19.973349 ], [ 54.667969, 20.138470 ], [ 54.843750, 20.138470 ], [ 54.843750, 20.303418 ], [ 55.019531, 20.303418 ], [ 55.019531, 20.797201 ], [ 55.195312, 20.797201 ], [ 55.195312, 21.289374 ], [ 55.371094, 21.289374 ], [ 55.371094, 21.779905 ], [ 55.546875, 21.779905 ], [ 55.546875, 22.268764 ], [ 55.371094, 22.268764 ], [ 55.371094, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 23.402765 ], [ 55.371094, 23.402765 ], [ 55.371094, 24.046464 ], [ 55.722656, 24.046464 ], [ 55.722656, 25.005973 ], [ 56.250000, 25.005973 ] ] ], [ [ [ 56.425781, 26.431228 ], [ 56.425781, 26.115986 ], [ 56.250000, 26.115986 ], [ 56.250000, 25.799891 ], [ 56.074219, 25.799891 ], [ 56.074219, 25.958045 ], [ 55.898438, 25.958045 ], [ 55.898438, 26.115986 ], [ 56.074219, 26.115986 ], [ 56.074219, 26.273714 ], [ 56.250000, 26.273714 ], [ 56.250000, 26.431228 ], [ 56.425781, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 11.350797 ], [ 48.867188, 9.275622 ], [ 48.691406, 9.275622 ], [ 48.691406, 8.928487 ], [ 48.515625, 8.928487 ], [ 48.515625, 8.581021 ], [ 48.339844, 8.581021 ], [ 48.339844, 8.407168 ], [ 48.164062, 8.407168 ], [ 48.164062, 8.233237 ], [ 47.988281, 8.233237 ], [ 47.988281, 8.059230 ], [ 46.582031, 8.059230 ], [ 46.582031, 8.233237 ], [ 46.054688, 8.233237 ], [ 46.054688, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 8.581021 ], [ 45.175781, 8.581021 ], [ 45.175781, 8.754795 ], [ 44.648438, 8.754795 ], [ 44.648438, 8.928487 ], [ 44.296875, 8.928487 ], [ 44.296875, 9.102097 ], [ 44.121094, 9.102097 ], [ 44.121094, 10.487812 ], [ 45.175781, 10.487812 ], [ 45.175781, 10.660608 ], [ 46.230469, 10.660608 ], [ 46.230469, 10.833306 ], [ 46.933594, 10.833306 ], [ 46.933594, 11.005904 ], [ 47.285156, 11.005904 ], [ 47.285156, 11.178402 ], [ 48.339844, 11.178402 ], [ 48.339844, 11.350797 ], [ 48.867188, 11.350797 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 11.523088 ], [ 48.867188, 9.275622 ], [ 48.691406, 9.275622 ], [ 48.691406, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 8.928487 ], [ 48.339844, 8.928487 ], [ 48.339844, 8.754795 ], [ 48.164062, 8.754795 ], [ 48.164062, 8.581021 ], [ 47.988281, 8.581021 ], [ 47.988281, 8.233237 ], [ 47.812500, 8.233237 ], [ 47.812500, 8.059230 ], [ 46.582031, 8.059230 ], [ 46.582031, 8.233237 ], [ 46.054688, 8.233237 ], [ 46.054688, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 8.581021 ], [ 45.175781, 8.581021 ], [ 45.175781, 8.754795 ], [ 44.648438, 8.754795 ], [ 44.648438, 8.928487 ], [ 44.296875, 8.928487 ], [ 44.296875, 9.102097 ], [ 44.121094, 9.102097 ], [ 44.121094, 10.487812 ], [ 44.824219, 10.487812 ], [ 44.824219, 10.660608 ], [ 45.351562, 10.660608 ], [ 45.351562, 10.833306 ], [ 46.933594, 10.833306 ], [ 46.933594, 11.005904 ], [ 47.285156, 11.005904 ], [ 47.285156, 11.178402 ], [ 47.812500, 11.178402 ], [ 47.812500, 11.350797 ], [ 48.339844, 11.350797 ], [ 48.339844, 11.523088 ], [ 48.867188, 11.523088 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 12.039321 ], [ 51.152344, 11.350797 ], [ 50.976562, 11.350797 ], [ 50.976562, 10.487812 ], [ 50.800781, 10.487812 ], [ 50.800781, 9.795678 ], [ 50.625000, 9.795678 ], [ 50.625000, 8.928487 ], [ 50.449219, 8.928487 ], [ 50.449219, 8.581021 ], [ 50.273438, 8.581021 ], [ 50.273438, 8.233237 ], [ 50.097656, 8.233237 ], [ 50.097656, 7.885147 ], [ 49.921875, 7.885147 ], [ 49.921875, 7.536764 ], [ 49.746094, 7.536764 ], [ 49.746094, 7.188101 ], [ 49.570312, 7.188101 ], [ 49.570312, 6.839170 ], [ 49.394531, 6.839170 ], [ 49.394531, 6.664608 ], [ 49.218750, 6.664608 ], [ 49.218750, 6.315299 ], [ 49.042969, 6.315299 ], [ 49.042969, 5.965754 ], [ 48.867188, 5.965754 ], [ 48.867188, 5.615986 ], [ 48.691406, 5.615986 ], [ 48.691406, 5.266008 ], [ 48.515625, 5.266008 ], [ 48.515625, 5.090944 ], [ 48.339844, 5.090944 ], [ 48.339844, 4.740675 ], [ 48.164062, 4.740675 ], [ 48.164062, 4.565474 ], [ 47.988281, 4.565474 ], [ 47.988281, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 4.039618 ], [ 47.636719, 4.039618 ], [ 47.636719, 3.864255 ], [ 47.460938, 3.864255 ], [ 47.460938, 3.688855 ], [ 47.285156, 3.688855 ], [ 47.285156, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 3.162456 ], [ 46.933594, 3.162456 ], [ 46.933594, 2.986927 ], [ 46.757812, 2.986927 ], [ 46.757812, 2.811371 ], [ 46.582031, 2.811371 ], [ 46.582031, 2.635789 ], [ 46.230469, 2.635789 ], [ 46.230469, 2.460181 ], [ 46.054688, 2.460181 ], [ 46.054688, 2.284551 ], [ 45.703125, 2.284551 ], [ 45.703125, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.351562, 1.933227 ], [ 45.351562, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.824219, 1.581830 ], [ 44.824219, 1.406109 ], [ 44.648438, 1.406109 ], [ 44.648438, 1.230374 ], [ 44.296875, 1.230374 ], [ 44.296875, 1.054628 ], [ 44.121094, 1.054628 ], [ 44.121094, 4.915833 ], [ 45.175781, 4.915833 ], [ 45.175781, 5.090944 ], [ 45.351562, 5.090944 ], [ 45.351562, 5.266008 ], [ 45.527344, 5.266008 ], [ 45.527344, 5.441022 ], [ 45.703125, 5.441022 ], [ 45.703125, 5.790897 ], [ 45.878906, 5.790897 ], [ 45.878906, 5.965754 ], [ 46.054688, 5.965754 ], [ 46.054688, 6.140555 ], [ 46.230469, 6.140555 ], [ 46.230469, 6.315299 ], [ 46.406250, 6.315299 ], [ 46.406250, 6.489983 ], [ 46.582031, 6.489983 ], [ 46.582031, 6.664608 ], [ 46.757812, 6.664608 ], [ 46.757812, 6.839170 ], [ 46.933594, 6.839170 ], [ 46.933594, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 7.362467 ], [ 47.285156, 7.362467 ], [ 47.285156, 7.536764 ], [ 47.460938, 7.536764 ], [ 47.460938, 7.710992 ], [ 47.636719, 7.710992 ], [ 47.636719, 7.885147 ], [ 47.812500, 7.885147 ], [ 47.812500, 8.059230 ], [ 47.988281, 8.059230 ], [ 47.988281, 8.233237 ], [ 48.164062, 8.233237 ], [ 48.164062, 8.407168 ], [ 48.339844, 8.407168 ], [ 48.339844, 8.581021 ], [ 48.515625, 8.581021 ], [ 48.515625, 8.928487 ], [ 48.691406, 8.928487 ], [ 48.691406, 9.275622 ], [ 48.867188, 9.275622 ], [ 48.867188, 11.350797 ], [ 49.570312, 11.350797 ], [ 49.570312, 11.523088 ], [ 50.097656, 11.523088 ], [ 50.097656, 11.695273 ], [ 50.449219, 11.695273 ], [ 50.449219, 11.867351 ], [ 50.800781, 11.867351 ], [ 50.800781, 12.039321 ], [ 51.152344, 12.039321 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 12.039321 ], [ 50.976562, 10.487812 ], [ 50.800781, 10.487812 ], [ 50.800781, 9.968851 ], [ 50.625000, 9.968851 ], [ 50.625000, 9.449062 ], [ 50.449219, 9.449062 ], [ 50.449219, 9.102097 ], [ 50.273438, 9.102097 ], [ 50.273438, 8.754795 ], [ 50.097656, 8.754795 ], [ 50.097656, 8.407168 ], [ 49.921875, 8.407168 ], [ 49.921875, 7.885147 ], [ 49.746094, 7.885147 ], [ 49.746094, 7.536764 ], [ 49.570312, 7.536764 ], [ 49.570312, 7.013668 ], [ 49.394531, 7.013668 ], [ 49.394531, 6.664608 ], [ 49.218750, 6.664608 ], [ 49.218750, 6.315299 ], [ 49.042969, 6.315299 ], [ 49.042969, 6.140555 ], [ 48.867188, 6.140555 ], [ 48.867188, 5.790897 ], [ 48.691406, 5.790897 ], [ 48.691406, 5.441022 ], [ 48.515625, 5.441022 ], [ 48.515625, 5.266008 ], [ 48.339844, 5.266008 ], [ 48.339844, 5.090944 ], [ 48.164062, 5.090944 ], [ 48.164062, 4.915833 ], [ 47.988281, 4.915833 ], [ 47.988281, 4.565474 ], [ 47.812500, 4.565474 ], [ 47.812500, 4.390229 ], [ 47.636719, 4.390229 ], [ 47.636719, 4.214943 ], [ 47.460938, 4.214943 ], [ 47.460938, 4.039618 ], [ 47.285156, 4.039618 ], [ 47.285156, 3.864255 ], [ 47.109375, 3.864255 ], [ 47.109375, 3.688855 ], [ 46.933594, 3.688855 ], [ 46.933594, 3.337954 ], [ 46.757812, 3.337954 ], [ 46.757812, 3.162456 ], [ 46.582031, 3.162456 ], [ 46.582031, 2.986927 ], [ 46.406250, 2.986927 ], [ 46.406250, 2.811371 ], [ 46.230469, 2.811371 ], [ 46.230469, 2.635789 ], [ 46.054688, 2.635789 ], [ 46.054688, 2.460181 ], [ 45.878906, 2.460181 ], [ 45.878906, 2.284551 ], [ 45.703125, 2.284551 ], [ 45.703125, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.175781, 1.933227 ], [ 45.175781, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.648438, 1.581830 ], [ 44.648438, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.230374 ], [ 44.121094, 1.230374 ], [ 44.121094, 5.090944 ], [ 45.000000, 5.090944 ], [ 45.000000, 5.266008 ], [ 45.175781, 5.266008 ], [ 45.175781, 5.441022 ], [ 45.351562, 5.441022 ], [ 45.351562, 5.615986 ], [ 45.527344, 5.615986 ], [ 45.527344, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.965754 ], [ 45.878906, 5.965754 ], [ 45.878906, 6.140555 ], [ 46.054688, 6.140555 ], [ 46.054688, 6.315299 ], [ 46.230469, 6.315299 ], [ 46.230469, 6.664608 ], [ 46.406250, 6.664608 ], [ 46.406250, 6.839170 ], [ 46.582031, 6.839170 ], [ 46.582031, 7.013668 ], [ 46.757812, 7.013668 ], [ 46.757812, 7.188101 ], [ 46.933594, 7.188101 ], [ 46.933594, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.536764 ], [ 47.285156, 7.536764 ], [ 47.285156, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.885147 ], [ 47.636719, 7.885147 ], [ 47.636719, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 8.233237 ], [ 47.988281, 8.233237 ], [ 47.988281, 8.581021 ], [ 48.164062, 8.581021 ], [ 48.164062, 8.754795 ], [ 48.339844, 8.754795 ], [ 48.339844, 8.928487 ], [ 48.515625, 8.928487 ], [ 48.515625, 9.102097 ], [ 48.691406, 9.102097 ], [ 48.691406, 9.275622 ], [ 48.867188, 9.275622 ], [ 48.867188, 11.523088 ], [ 49.570312, 11.523088 ], [ 49.570312, 11.695273 ], [ 50.273438, 11.695273 ], [ 50.273438, 11.867351 ], [ 50.625000, 11.867351 ], [ 50.625000, 12.039321 ], [ 50.976562, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ], [ 70.488281, 40.713956 ], [ 70.488281, 40.313043 ], [ 70.664062, 40.313043 ], [ 70.664062, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 40.044438 ], [ 70.839844, 40.044438 ], [ 70.839844, 39.909736 ], [ 69.960938, 39.909736 ], [ 69.960938, 40.044438 ], [ 69.609375, 40.044438 ], [ 69.609375, 39.774769 ], [ 69.433594, 39.774769 ], [ 69.433594, 39.504041 ], [ 70.136719, 39.504041 ], [ 70.136719, 39.639538 ], [ 70.664062, 39.639538 ], [ 70.664062, 39.504041 ], [ 71.015625, 39.504041 ], [ 71.015625, 39.368279 ], [ 71.367188, 39.368279 ], [ 71.367188, 39.232253 ], [ 72.773438, 39.232253 ], [ 72.773438, 39.368279 ], [ 73.652344, 39.368279 ], [ 73.652344, 39.095963 ], [ 73.828125, 39.095963 ], [ 73.828125, 38.685510 ], [ 74.003906, 38.685510 ], [ 74.003906, 38.548165 ], [ 74.355469, 38.548165 ], [ 74.355469, 38.410558 ], [ 74.882812, 38.410558 ], [ 74.882812, 37.718590 ], [ 75.058594, 37.718590 ], [ 75.058594, 37.439974 ], [ 73.300781, 37.439974 ], [ 73.300781, 37.300275 ], [ 73.125000, 37.300275 ], [ 73.125000, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 37.020098 ], [ 72.597656, 37.020098 ], [ 72.597656, 36.879621 ], [ 72.246094, 36.879621 ], [ 72.246094, 36.738884 ], [ 71.718750, 36.738884 ], [ 71.718750, 36.879621 ], [ 71.367188, 36.879621 ], [ 71.367188, 37.439974 ], [ 71.542969, 37.439974 ], [ 71.542969, 37.857507 ], [ 71.191406, 37.857507 ], [ 71.191406, 38.134557 ], [ 71.367188, 38.134557 ], [ 71.367188, 38.272689 ], [ 71.191406, 38.272689 ], [ 71.191406, 38.410558 ], [ 70.664062, 38.410558 ], [ 70.664062, 38.272689 ], [ 70.488281, 38.272689 ], [ 70.488281, 38.134557 ], [ 70.312500, 38.134557 ], [ 70.312500, 37.579413 ], [ 69.433594, 37.579413 ], [ 69.433594, 37.300275 ], [ 69.257812, 37.300275 ], [ 69.257812, 37.160317 ], [ 68.554688, 37.160317 ], [ 68.554688, 37.020098 ], [ 67.851562, 37.020098 ], [ 67.851562, 37.300275 ], [ 68.027344, 37.300275 ], [ 68.027344, 37.579413 ], [ 68.203125, 37.579413 ], [ 68.203125, 37.857507 ], [ 68.378906, 37.857507 ], [ 68.378906, 38.548165 ], [ 68.203125, 38.548165 ], [ 68.203125, 38.959409 ], [ 67.675781, 38.959409 ], [ 67.675781, 39.095963 ], [ 67.500000, 39.095963 ], [ 67.500000, 39.368279 ], [ 67.675781, 39.368279 ], [ 67.675781, 39.639538 ], [ 68.027344, 39.639538 ], [ 68.027344, 39.504041 ], [ 68.730469, 39.504041 ], [ 68.730469, 39.774769 ], [ 68.906250, 39.774769 ], [ 68.906250, 39.909736 ], [ 69.082031, 39.909736 ], [ 69.082031, 40.313043 ], [ 69.257812, 40.313043 ], [ 69.257812, 40.713956 ], [ 69.785156, 40.713956 ], [ 69.785156, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.580585 ], [ 70.312500, 40.580585 ], [ 70.312500, 40.446947 ], [ 70.488281, 40.446947 ], [ 70.488281, 40.313043 ], [ 71.015625, 40.313043 ], [ 71.015625, 40.178873 ], [ 70.664062, 40.178873 ], [ 70.664062, 40.044438 ], [ 69.785156, 40.044438 ], [ 69.785156, 40.178873 ], [ 69.433594, 40.178873 ], [ 69.433594, 39.639538 ], [ 70.664062, 39.639538 ], [ 70.664062, 39.504041 ], [ 71.367188, 39.504041 ], [ 71.367188, 39.368279 ], [ 72.773438, 39.368279 ], [ 72.773438, 39.504041 ], [ 73.652344, 39.504041 ], [ 73.652344, 38.959409 ], [ 73.828125, 38.959409 ], [ 73.828125, 38.548165 ], [ 74.531250, 38.548165 ], [ 74.531250, 38.410558 ], [ 74.707031, 38.410558 ], [ 74.707031, 37.718590 ], [ 74.882812, 37.718590 ], [ 74.882812, 37.439974 ], [ 73.300781, 37.439974 ], [ 73.300781, 37.579413 ], [ 73.125000, 37.579413 ], [ 73.125000, 37.439974 ], [ 72.949219, 37.439974 ], [ 72.949219, 37.300275 ], [ 72.773438, 37.300275 ], [ 72.773438, 37.160317 ], [ 72.421875, 37.160317 ], [ 72.421875, 37.020098 ], [ 72.070312, 37.020098 ], [ 72.070312, 36.879621 ], [ 71.894531, 36.879621 ], [ 71.894531, 36.738884 ], [ 71.542969, 36.738884 ], [ 71.542969, 37.020098 ], [ 71.367188, 37.020098 ], [ 71.367188, 37.579413 ], [ 71.542969, 37.579413 ], [ 71.542969, 37.996163 ], [ 71.191406, 37.996163 ], [ 71.191406, 38.272689 ], [ 71.015625, 38.272689 ], [ 71.015625, 38.410558 ], [ 70.488281, 38.410558 ], [ 70.488281, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.996163 ], [ 70.136719, 37.996163 ], [ 70.136719, 37.718590 ], [ 69.433594, 37.718590 ], [ 69.433594, 37.579413 ], [ 69.257812, 37.579413 ], [ 69.257812, 37.300275 ], [ 69.082031, 37.300275 ], [ 69.082031, 37.160317 ], [ 68.906250, 37.160317 ], [ 68.906250, 37.300275 ], [ 68.378906, 37.300275 ], [ 68.378906, 37.160317 ], [ 67.675781, 37.160317 ], [ 67.675781, 37.300275 ], [ 67.851562, 37.300275 ], [ 67.851562, 37.579413 ], [ 68.027344, 37.579413 ], [ 68.027344, 37.857507 ], [ 68.203125, 37.857507 ], [ 68.203125, 38.134557 ], [ 68.378906, 38.134557 ], [ 68.378906, 38.410558 ], [ 68.203125, 38.410558 ], [ 68.203125, 38.685510 ], [ 68.027344, 38.685510 ], [ 68.027344, 38.959409 ], [ 67.675781, 38.959409 ], [ 67.675781, 39.095963 ], [ 67.324219, 39.095963 ], [ 67.324219, 39.232253 ], [ 67.500000, 39.232253 ], [ 67.500000, 39.504041 ], [ 67.675781, 39.504041 ], [ 67.675781, 39.639538 ], [ 68.554688, 39.639538 ], [ 68.554688, 39.909736 ], [ 68.730469, 39.909736 ], [ 68.730469, 40.044438 ], [ 68.906250, 40.044438 ], [ 68.906250, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 40.580585 ], [ 69.257812, 40.580585 ], [ 69.257812, 40.847060 ], [ 70.136719, 40.847060 ], [ 70.136719, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.191406, 38.410558 ], [ 71.191406, 38.272689 ], [ 71.367188, 38.272689 ], [ 71.367188, 38.134557 ], [ 71.191406, 38.134557 ], [ 71.191406, 37.857507 ], [ 71.542969, 37.857507 ], [ 71.542969, 37.439974 ], [ 71.367188, 37.439974 ], [ 71.367188, 36.879621 ], [ 71.718750, 36.879621 ], [ 71.718750, 36.738884 ], [ 72.246094, 36.738884 ], [ 72.246094, 36.879621 ], [ 72.597656, 36.879621 ], [ 72.597656, 37.020098 ], [ 72.773438, 37.020098 ], [ 72.773438, 37.160317 ], [ 73.125000, 37.160317 ], [ 73.125000, 37.300275 ], [ 73.300781, 37.300275 ], [ 73.300781, 37.439974 ], [ 75.058594, 37.439974 ], [ 75.058594, 37.300275 ], [ 75.234375, 37.300275 ], [ 75.234375, 37.160317 ], [ 75.058594, 37.160317 ], [ 75.058594, 37.020098 ], [ 74.355469, 37.020098 ], [ 74.355469, 36.879621 ], [ 73.652344, 36.879621 ], [ 73.652344, 36.738884 ], [ 72.773438, 36.738884 ], [ 72.773438, 36.597889 ], [ 72.246094, 36.597889 ], [ 72.246094, 36.456636 ], [ 71.894531, 36.456636 ], [ 71.894531, 36.315125 ], [ 71.718750, 36.315125 ], [ 71.718750, 36.173357 ], [ 71.367188, 36.173357 ], [ 71.367188, 36.031332 ], [ 71.191406, 36.031332 ], [ 71.191406, 35.889050 ], [ 71.367188, 35.889050 ], [ 71.367188, 35.603719 ], [ 71.542969, 35.603719 ], [ 71.542969, 35.029996 ], [ 71.367188, 35.029996 ], [ 71.367188, 34.741612 ], [ 71.191406, 34.741612 ], [ 71.191406, 34.161818 ], [ 71.015625, 34.161818 ], [ 71.015625, 34.016242 ], [ 69.960938, 34.016242 ], [ 69.960938, 33.870416 ], [ 70.136719, 33.870416 ], [ 70.136719, 33.578015 ], [ 70.312500, 33.578015 ], [ 70.312500, 33.284620 ], [ 69.960938, 33.284620 ], [ 69.960938, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.990236 ], [ 69.433594, 32.990236 ], [ 69.433594, 32.694866 ], [ 69.257812, 32.694866 ], [ 69.257812, 31.802893 ], [ 69.082031, 31.802893 ], [ 69.082031, 31.653381 ], [ 67.851562, 31.653381 ], [ 67.851562, 31.503629 ], [ 67.675781, 31.503629 ], [ 67.675781, 31.353637 ], [ 66.972656, 31.353637 ], [ 66.972656, 31.203405 ], [ 66.796875, 31.203405 ], [ 66.796875, 31.052934 ], [ 66.621094, 31.052934 ], [ 66.621094, 30.751278 ], [ 66.445312, 30.751278 ], [ 66.445312, 30.297018 ], [ 66.269531, 30.297018 ], [ 66.269531, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 29.688053 ], [ 65.390625, 29.688053 ], [ 65.390625, 29.535230 ], [ 64.335938, 29.535230 ], [ 64.335938, 29.382175 ], [ 63.808594, 29.382175 ], [ 63.808594, 29.535230 ], [ 63.281250, 29.535230 ], [ 63.281250, 29.382175 ], [ 62.226562, 29.382175 ], [ 62.226562, 29.535230 ], [ 61.523438, 29.535230 ], [ 61.523438, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.993002 ], [ 61.171875, 29.993002 ], [ 61.171875, 30.297018 ], [ 61.347656, 30.297018 ], [ 61.347656, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 30.600094 ], [ 61.699219, 30.600094 ], [ 61.699219, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 31.503629 ], [ 60.996094, 31.503629 ], [ 60.996094, 31.802893 ], [ 60.820312, 31.802893 ], [ 60.820312, 32.398516 ], [ 60.644531, 32.398516 ], [ 60.644531, 32.694866 ], [ 60.468750, 32.694866 ], [ 60.468750, 32.990236 ], [ 60.644531, 32.990236 ], [ 60.644531, 33.284620 ], [ 60.820312, 33.284620 ], [ 60.820312, 33.431441 ], [ 60.996094, 33.431441 ], [ 60.996094, 33.578015 ], [ 60.644531, 33.578015 ], [ 60.644531, 33.724340 ], [ 60.468750, 33.724340 ], [ 60.468750, 33.870416 ], [ 60.644531, 33.870416 ], [ 60.644531, 34.161818 ], [ 60.820312, 34.161818 ], [ 60.820312, 34.741612 ], [ 60.996094, 34.741612 ], [ 60.996094, 35.317366 ], [ 61.171875, 35.317366 ], [ 61.171875, 35.603719 ], [ 61.347656, 35.603719 ], [ 61.347656, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 35.317366 ], [ 62.753906, 35.317366 ], [ 62.753906, 35.460670 ], [ 63.105469, 35.460670 ], [ 63.105469, 35.746512 ], [ 63.281250, 35.746512 ], [ 63.281250, 35.889050 ], [ 63.808594, 35.889050 ], [ 63.808594, 36.031332 ], [ 64.160156, 36.031332 ], [ 64.160156, 36.173357 ], [ 64.511719, 36.173357 ], [ 64.511719, 36.738884 ], [ 64.687500, 36.738884 ], [ 64.687500, 37.160317 ], [ 65.214844, 37.160317 ], [ 65.214844, 37.300275 ], [ 65.566406, 37.300275 ], [ 65.566406, 37.439974 ], [ 65.742188, 37.439974 ], [ 65.742188, 37.579413 ], [ 66.093750, 37.579413 ], [ 66.093750, 37.439974 ], [ 66.269531, 37.439974 ], [ 66.269531, 37.300275 ], [ 67.324219, 37.300275 ], [ 67.324219, 37.160317 ], [ 67.851562, 37.160317 ], [ 67.851562, 37.020098 ], [ 68.554688, 37.020098 ], [ 68.554688, 37.160317 ], [ 69.257812, 37.160317 ], [ 69.257812, 37.300275 ], [ 69.433594, 37.300275 ], [ 69.433594, 37.579413 ], [ 70.312500, 37.579413 ], [ 70.312500, 38.134557 ], [ 70.488281, 38.134557 ], [ 70.488281, 38.272689 ], [ 70.664062, 38.272689 ], [ 70.664062, 38.410558 ], [ 71.191406, 38.410558 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.015625, 38.410558 ], [ 71.015625, 38.272689 ], [ 71.191406, 38.272689 ], [ 71.191406, 37.996163 ], [ 71.542969, 37.996163 ], [ 71.542969, 37.579413 ], [ 71.367188, 37.579413 ], [ 71.367188, 37.020098 ], [ 71.542969, 37.020098 ], [ 71.542969, 36.738884 ], [ 71.894531, 36.738884 ], [ 71.894531, 36.879621 ], [ 72.070312, 36.879621 ], [ 72.070312, 37.020098 ], [ 72.421875, 37.020098 ], [ 72.421875, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 37.300275 ], [ 72.949219, 37.300275 ], [ 72.949219, 37.439974 ], [ 73.125000, 37.439974 ], [ 73.125000, 37.579413 ], [ 73.300781, 37.579413 ], [ 73.300781, 37.439974 ], [ 74.882812, 37.439974 ], [ 74.882812, 37.300275 ], [ 75.058594, 37.300275 ], [ 75.058594, 37.160317 ], [ 74.882812, 37.160317 ], [ 74.882812, 37.020098 ], [ 74.355469, 37.020098 ], [ 74.355469, 36.879621 ], [ 73.476562, 36.879621 ], [ 73.476562, 36.738884 ], [ 72.421875, 36.738884 ], [ 72.421875, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.456636 ], [ 71.542969, 36.456636 ], [ 71.542969, 36.315125 ], [ 71.367188, 36.315125 ], [ 71.367188, 36.173357 ], [ 71.191406, 36.173357 ], [ 71.191406, 35.889050 ], [ 71.367188, 35.889050 ], [ 71.367188, 35.460670 ], [ 71.542969, 35.460670 ], [ 71.542969, 35.029996 ], [ 71.367188, 35.029996 ], [ 71.367188, 34.885931 ], [ 71.191406, 34.885931 ], [ 71.191406, 34.741612 ], [ 71.015625, 34.741612 ], [ 71.015625, 34.161818 ], [ 70.839844, 34.161818 ], [ 70.839844, 34.016242 ], [ 70.136719, 34.016242 ], [ 70.136719, 34.161818 ], [ 69.785156, 34.161818 ], [ 69.785156, 34.016242 ], [ 69.960938, 34.016242 ], [ 69.960938, 33.724340 ], [ 70.136719, 33.724340 ], [ 70.136719, 33.431441 ], [ 70.312500, 33.431441 ], [ 70.312500, 33.284620 ], [ 69.960938, 33.284620 ], [ 69.960938, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.990236 ], [ 69.433594, 32.990236 ], [ 69.433594, 32.694866 ], [ 69.257812, 32.694866 ], [ 69.257812, 31.802893 ], [ 69.082031, 31.802893 ], [ 69.082031, 31.653381 ], [ 68.554688, 31.653381 ], [ 68.554688, 31.802893 ], [ 68.203125, 31.802893 ], [ 68.203125, 31.653381 ], [ 67.675781, 31.653381 ], [ 67.675781, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 31.203405 ], [ 66.621094, 31.203405 ], [ 66.621094, 31.052934 ], [ 66.445312, 31.052934 ], [ 66.445312, 30.751278 ], [ 66.269531, 30.751278 ], [ 66.269531, 29.993002 ], [ 66.093750, 29.993002 ], [ 66.093750, 29.840644 ], [ 65.742188, 29.840644 ], [ 65.742188, 29.688053 ], [ 65.390625, 29.688053 ], [ 65.390625, 29.535230 ], [ 64.511719, 29.535230 ], [ 64.511719, 29.688053 ], [ 64.335938, 29.688053 ], [ 64.335938, 29.535230 ], [ 64.160156, 29.535230 ], [ 64.160156, 29.382175 ], [ 63.632812, 29.382175 ], [ 63.632812, 29.535230 ], [ 63.105469, 29.535230 ], [ 63.105469, 29.382175 ], [ 62.050781, 29.382175 ], [ 62.050781, 29.535230 ], [ 61.523438, 29.535230 ], [ 61.523438, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.993002 ], [ 61.171875, 29.993002 ], [ 61.171875, 30.297018 ], [ 61.347656, 30.297018 ], [ 61.347656, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 30.600094 ], [ 61.699219, 30.600094 ], [ 61.699219, 31.503629 ], [ 61.171875, 31.503629 ], [ 61.171875, 31.653381 ], [ 60.820312, 31.653381 ], [ 60.820312, 32.398516 ], [ 60.644531, 32.398516 ], [ 60.644531, 32.694866 ], [ 60.468750, 32.694866 ], [ 60.468750, 33.137551 ], [ 60.644531, 33.137551 ], [ 60.644531, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.578015 ], [ 60.468750, 33.578015 ], [ 60.468750, 34.016242 ], [ 60.644531, 34.016242 ], [ 60.644531, 34.597042 ], [ 60.820312, 34.597042 ], [ 60.820312, 35.029996 ], [ 60.996094, 35.029996 ], [ 60.996094, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 35.603719 ], [ 61.523438, 35.603719 ], [ 61.523438, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 35.317366 ], [ 62.753906, 35.317366 ], [ 62.753906, 35.460670 ], [ 62.929688, 35.460670 ], [ 62.929688, 35.603719 ], [ 63.105469, 35.603719 ], [ 63.105469, 35.889050 ], [ 63.632812, 35.889050 ], [ 63.632812, 36.031332 ], [ 64.160156, 36.031332 ], [ 64.160156, 36.173357 ], [ 64.511719, 36.173357 ], [ 64.511719, 36.738884 ], [ 64.687500, 36.738884 ], [ 64.687500, 37.160317 ], [ 65.039062, 37.160317 ], [ 65.039062, 37.300275 ], [ 65.390625, 37.300275 ], [ 65.390625, 37.439974 ], [ 65.566406, 37.439974 ], [ 65.566406, 37.579413 ], [ 65.917969, 37.579413 ], [ 65.917969, 37.439974 ], [ 66.972656, 37.439974 ], [ 66.972656, 37.300275 ], [ 67.324219, 37.300275 ], [ 67.324219, 37.160317 ], [ 68.378906, 37.160317 ], [ 68.378906, 37.300275 ], [ 68.906250, 37.300275 ], [ 68.906250, 37.160317 ], [ 69.082031, 37.160317 ], [ 69.082031, 37.300275 ], [ 69.257812, 37.300275 ], [ 69.257812, 37.579413 ], [ 69.433594, 37.579413 ], [ 69.433594, 37.718590 ], [ 70.136719, 37.718590 ], [ 70.136719, 37.996163 ], [ 70.312500, 37.996163 ], [ 70.312500, 38.272689 ], [ 70.488281, 38.272689 ], [ 70.488281, 38.410558 ], [ 71.015625, 38.410558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.996094, 29.688053 ], [ 61.523438, 29.688053 ], [ 61.523438, 29.535230 ], [ 62.226562, 29.535230 ], [ 62.226562, 29.382175 ], [ 63.281250, 29.382175 ], [ 63.281250, 29.535230 ], [ 63.808594, 29.535230 ], [ 63.808594, 29.382175 ], [ 64.335938, 29.382175 ], [ 64.335938, 29.535230 ], [ 65.390625, 29.535230 ], [ 65.390625, 29.688053 ], [ 66.093750, 29.688053 ], [ 66.093750, 29.840644 ], [ 66.269531, 29.840644 ], [ 66.269531, 30.297018 ], [ 66.445312, 30.297018 ], [ 66.445312, 30.751278 ], [ 66.621094, 30.751278 ], [ 66.621094, 31.052934 ], [ 66.796875, 31.052934 ], [ 66.796875, 31.203405 ], [ 66.972656, 31.203405 ], [ 66.972656, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.675781, 31.503629 ], [ 67.851562, 31.503629 ], [ 67.851562, 31.653381 ], [ 69.082031, 31.653381 ], [ 69.082031, 31.802893 ], [ 69.257812, 31.802893 ], [ 69.257812, 32.694866 ], [ 69.433594, 32.694866 ], [ 69.433594, 32.990236 ], [ 69.609375, 32.990236 ], [ 69.609375, 33.137551 ], [ 69.960938, 33.137551 ], [ 69.960938, 33.284620 ], [ 70.312500, 33.284620 ], [ 70.312500, 33.578015 ], [ 70.136719, 33.578015 ], [ 70.136719, 33.870416 ], [ 69.960938, 33.870416 ], [ 69.960938, 34.016242 ], [ 71.015625, 34.016242 ], [ 71.015625, 34.161818 ], [ 71.191406, 34.161818 ], [ 71.191406, 34.741612 ], [ 71.367188, 34.741612 ], [ 71.367188, 35.029996 ], [ 71.542969, 35.029996 ], [ 71.542969, 35.603719 ], [ 71.367188, 35.603719 ], [ 71.367188, 35.889050 ], [ 71.191406, 35.889050 ], [ 71.191406, 36.031332 ], [ 71.367188, 36.031332 ], [ 71.367188, 36.173357 ], [ 71.718750, 36.173357 ], [ 71.718750, 36.315125 ], [ 71.894531, 36.315125 ], [ 71.894531, 36.456636 ], [ 72.246094, 36.456636 ], [ 72.246094, 36.597889 ], [ 72.773438, 36.597889 ], [ 72.773438, 36.738884 ], [ 73.652344, 36.738884 ], [ 73.652344, 36.879621 ], [ 74.355469, 36.879621 ], [ 74.355469, 37.020098 ], [ 75.058594, 37.020098 ], [ 75.058594, 37.160317 ], [ 75.234375, 37.160317 ], [ 75.234375, 37.020098 ], [ 75.410156, 37.020098 ], [ 75.410156, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.738884 ], [ 75.761719, 36.738884 ], [ 75.761719, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.173357 ], [ 76.113281, 36.173357 ], [ 76.113281, 35.889050 ], [ 76.289062, 35.889050 ], [ 76.289062, 35.746512 ], [ 76.816406, 35.746512 ], [ 76.816406, 35.603719 ], [ 77.519531, 35.603719 ], [ 77.519531, 35.460670 ], [ 77.871094, 35.460670 ], [ 77.871094, 35.317366 ], [ 77.695312, 35.317366 ], [ 77.695312, 35.173808 ], [ 77.519531, 35.173808 ], [ 77.519531, 35.029996 ], [ 77.343750, 35.029996 ], [ 77.343750, 34.885931 ], [ 77.167969, 34.885931 ], [ 77.167969, 34.741612 ], [ 76.992188, 34.741612 ], [ 76.992188, 34.597042 ], [ 76.464844, 34.597042 ], [ 76.464844, 34.452218 ], [ 75.234375, 34.452218 ], [ 75.234375, 34.597042 ], [ 74.531250, 34.597042 ], [ 74.531250, 34.741612 ], [ 74.179688, 34.741612 ], [ 74.179688, 34.597042 ], [ 74.003906, 34.597042 ], [ 74.003906, 34.307144 ], [ 73.828125, 34.307144 ], [ 73.828125, 34.016242 ], [ 74.003906, 34.016242 ], [ 74.003906, 33.578015 ], [ 74.179688, 33.578015 ], [ 74.179688, 33.137551 ], [ 74.355469, 33.137551 ], [ 74.355469, 32.842674 ], [ 74.531250, 32.842674 ], [ 74.531250, 32.546813 ], [ 74.707031, 32.546813 ], [ 74.707031, 32.398516 ], [ 75.058594, 32.398516 ], [ 75.058594, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 32.101190 ], [ 75.058594, 32.101190 ], [ 75.058594, 31.952162 ], [ 74.707031, 31.952162 ], [ 74.707031, 31.802893 ], [ 74.531250, 31.802893 ], [ 74.531250, 31.653381 ], [ 74.355469, 31.653381 ], [ 74.355469, 30.902225 ], [ 74.179688, 30.902225 ], [ 74.179688, 30.600094 ], [ 74.003906, 30.600094 ], [ 74.003906, 30.448674 ], [ 73.828125, 30.448674 ], [ 73.828125, 30.297018 ], [ 73.652344, 30.297018 ], [ 73.652344, 29.993002 ], [ 73.476562, 29.993002 ], [ 73.476562, 29.840644 ], [ 73.300781, 29.840644 ], [ 73.300781, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 29.228890 ], [ 72.949219, 29.228890 ], [ 72.949219, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 28.767659 ], [ 72.597656, 28.767659 ], [ 72.597656, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.459033 ], [ 72.246094, 28.459033 ], [ 72.246094, 28.149503 ], [ 72.070312, 28.149503 ], [ 72.070312, 27.994401 ], [ 71.894531, 27.994401 ], [ 71.894531, 27.839076 ], [ 71.015625, 27.839076 ], [ 71.015625, 27.994401 ], [ 70.664062, 27.994401 ], [ 70.664062, 27.839076 ], [ 70.488281, 27.839076 ], [ 70.488281, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.527758 ], [ 70.136719, 27.527758 ], [ 70.136719, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.215556 ], [ 69.785156, 27.215556 ], [ 69.785156, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.902477 ], [ 69.433594, 26.902477 ], [ 69.433594, 26.745610 ], [ 69.609375, 26.745610 ], [ 69.609375, 26.588527 ], [ 69.960938, 26.588527 ], [ 69.960938, 26.431228 ], [ 70.136719, 26.431228 ], [ 70.136719, 26.115986 ], [ 70.312500, 26.115986 ], [ 70.312500, 25.641526 ], [ 70.488281, 25.641526 ], [ 70.488281, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 25.165173 ], [ 70.839844, 25.165173 ], [ 70.839844, 24.686952 ], [ 71.015625, 24.686952 ], [ 71.015625, 24.367114 ], [ 68.906250, 24.367114 ], [ 68.906250, 24.206890 ], [ 68.730469, 24.206890 ], [ 68.730469, 24.046464 ], [ 68.554688, 24.046464 ], [ 68.554688, 23.885838 ], [ 68.378906, 23.885838 ], [ 68.378906, 23.725012 ], [ 67.675781, 23.725012 ], [ 67.675781, 23.885838 ], [ 67.500000, 23.885838 ], [ 67.500000, 24.046464 ], [ 67.324219, 24.046464 ], [ 67.324219, 24.367114 ], [ 67.148438, 24.367114 ], [ 67.148438, 24.686952 ], [ 66.972656, 24.686952 ], [ 66.972656, 24.846565 ], [ 66.796875, 24.846565 ], [ 66.796875, 25.165173 ], [ 66.621094, 25.165173 ], [ 66.621094, 25.324167 ], [ 66.445312, 25.324167 ], [ 66.445312, 25.482951 ], [ 66.093750, 25.482951 ], [ 66.093750, 25.324167 ], [ 65.039062, 25.324167 ], [ 65.039062, 25.165173 ], [ 62.402344, 25.165173 ], [ 62.402344, 25.005973 ], [ 61.523438, 25.005973 ], [ 61.523438, 25.324167 ], [ 61.699219, 25.324167 ], [ 61.699219, 25.958045 ], [ 61.875000, 25.958045 ], [ 61.875000, 26.273714 ], [ 62.226562, 26.273714 ], [ 62.226562, 26.431228 ], [ 62.753906, 26.431228 ], [ 62.753906, 26.588527 ], [ 63.105469, 26.588527 ], [ 63.105469, 26.745610 ], [ 63.281250, 26.745610 ], [ 63.281250, 27.215556 ], [ 62.929688, 27.215556 ], [ 62.929688, 27.371767 ], [ 62.753906, 27.371767 ], [ 62.753906, 28.304381 ], [ 62.402344, 28.304381 ], [ 62.402344, 28.459033 ], [ 62.050781, 28.459033 ], [ 62.050781, 28.613459 ], [ 61.699219, 28.613459 ], [ 61.699219, 28.767659 ], [ 61.523438, 28.767659 ], [ 61.523438, 29.075375 ], [ 61.347656, 29.075375 ], [ 61.347656, 29.228890 ], [ 61.171875, 29.228890 ], [ 61.171875, 29.535230 ], [ 60.996094, 29.535230 ], [ 60.996094, 29.688053 ] ] ], [ [ [ 60.996094, 29.688053 ], [ 60.820312, 29.688053 ], [ 60.820312, 29.840644 ], [ 60.996094, 29.840644 ], [ 60.996094, 29.688053 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.996094, 29.688053 ], [ 61.523438, 29.688053 ], [ 61.523438, 29.535230 ], [ 62.050781, 29.535230 ], [ 62.050781, 29.382175 ], [ 63.105469, 29.382175 ], [ 63.105469, 29.535230 ], [ 63.632812, 29.535230 ], [ 63.632812, 29.382175 ], [ 64.160156, 29.382175 ], [ 64.160156, 29.535230 ], [ 64.335938, 29.535230 ], [ 64.335938, 29.688053 ], [ 64.511719, 29.688053 ], [ 64.511719, 29.535230 ], [ 65.390625, 29.535230 ], [ 65.390625, 29.688053 ], [ 65.742188, 29.688053 ], [ 65.742188, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 29.993002 ], [ 66.269531, 29.993002 ], [ 66.269531, 30.751278 ], [ 66.445312, 30.751278 ], [ 66.445312, 31.052934 ], [ 66.621094, 31.052934 ], [ 66.621094, 31.203405 ], [ 66.796875, 31.203405 ], [ 66.796875, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.675781, 31.653381 ], [ 68.203125, 31.653381 ], [ 68.203125, 31.802893 ], [ 68.554688, 31.802893 ], [ 68.554688, 31.653381 ], [ 69.082031, 31.653381 ], [ 69.082031, 31.802893 ], [ 69.257812, 31.802893 ], [ 69.257812, 32.694866 ], [ 69.433594, 32.694866 ], [ 69.433594, 32.990236 ], [ 69.609375, 32.990236 ], [ 69.609375, 33.137551 ], [ 69.960938, 33.137551 ], [ 69.960938, 33.284620 ], [ 70.312500, 33.284620 ], [ 70.312500, 33.431441 ], [ 70.136719, 33.431441 ], [ 70.136719, 33.724340 ], [ 69.960938, 33.724340 ], [ 69.960938, 34.016242 ], [ 69.785156, 34.016242 ], [ 69.785156, 34.161818 ], [ 70.136719, 34.161818 ], [ 70.136719, 34.016242 ], [ 70.839844, 34.016242 ], [ 70.839844, 34.161818 ], [ 71.015625, 34.161818 ], [ 71.015625, 34.741612 ], [ 71.191406, 34.741612 ], [ 71.191406, 34.885931 ], [ 71.367188, 34.885931 ], [ 71.367188, 35.029996 ], [ 71.542969, 35.029996 ], [ 71.542969, 35.460670 ], [ 71.367188, 35.460670 ], [ 71.367188, 35.889050 ], [ 71.191406, 35.889050 ], [ 71.191406, 36.173357 ], [ 71.367188, 36.173357 ], [ 71.367188, 36.315125 ], [ 71.542969, 36.315125 ], [ 71.542969, 36.456636 ], [ 71.718750, 36.456636 ], [ 71.718750, 36.597889 ], [ 72.421875, 36.597889 ], [ 72.421875, 36.738884 ], [ 73.476562, 36.738884 ], [ 73.476562, 36.879621 ], [ 74.355469, 36.879621 ], [ 74.355469, 37.020098 ], [ 74.882812, 37.020098 ], [ 74.882812, 37.160317 ], [ 75.058594, 37.160317 ], [ 75.058594, 37.020098 ], [ 75.234375, 37.020098 ], [ 75.234375, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.738884 ], [ 75.761719, 36.738884 ], [ 75.761719, 36.456636 ], [ 75.937500, 36.456636 ], [ 75.937500, 36.173357 ], [ 76.113281, 36.173357 ], [ 76.113281, 36.031332 ], [ 76.289062, 36.031332 ], [ 76.289062, 35.889050 ], [ 76.816406, 35.889050 ], [ 76.816406, 35.746512 ], [ 77.343750, 35.746512 ], [ 77.343750, 35.603719 ], [ 77.695312, 35.603719 ], [ 77.695312, 35.460670 ], [ 77.519531, 35.460670 ], [ 77.519531, 35.317366 ], [ 77.343750, 35.317366 ], [ 77.343750, 35.173808 ], [ 77.167969, 35.173808 ], [ 77.167969, 34.885931 ], [ 76.992188, 34.885931 ], [ 76.992188, 34.741612 ], [ 76.289062, 34.741612 ], [ 76.289062, 34.597042 ], [ 75.058594, 34.597042 ], [ 75.058594, 34.741612 ], [ 74.355469, 34.741612 ], [ 74.355469, 34.885931 ], [ 74.179688, 34.885931 ], [ 74.179688, 34.741612 ], [ 74.003906, 34.741612 ], [ 74.003906, 34.597042 ], [ 73.828125, 34.597042 ], [ 73.828125, 34.452218 ], [ 73.652344, 34.452218 ], [ 73.652344, 34.161818 ], [ 73.828125, 34.161818 ], [ 73.828125, 33.724340 ], [ 74.003906, 33.724340 ], [ 74.003906, 33.284620 ], [ 74.179688, 33.284620 ], [ 74.179688, 32.990236 ], [ 74.355469, 32.990236 ], [ 74.355469, 32.694866 ], [ 74.707031, 32.694866 ], [ 74.707031, 32.546813 ], [ 75.058594, 32.546813 ], [ 75.058594, 32.398516 ], [ 75.234375, 32.398516 ], [ 75.234375, 32.249974 ], [ 75.058594, 32.249974 ], [ 75.058594, 32.101190 ], [ 74.707031, 32.101190 ], [ 74.707031, 31.952162 ], [ 74.531250, 31.952162 ], [ 74.531250, 31.802893 ], [ 74.355469, 31.802893 ], [ 74.355469, 30.902225 ], [ 74.179688, 30.902225 ], [ 74.179688, 30.751278 ], [ 74.003906, 30.751278 ], [ 74.003906, 30.600094 ], [ 73.828125, 30.600094 ], [ 73.828125, 30.297018 ], [ 73.652344, 30.297018 ], [ 73.652344, 30.145127 ], [ 73.476562, 30.145127 ], [ 73.476562, 29.993002 ], [ 73.300781, 29.993002 ], [ 73.300781, 29.840644 ], [ 73.125000, 29.840644 ], [ 73.125000, 29.535230 ], [ 72.949219, 29.535230 ], [ 72.949219, 29.228890 ], [ 72.773438, 29.228890 ], [ 72.773438, 28.921631 ], [ 72.597656, 28.921631 ], [ 72.597656, 28.767659 ], [ 72.421875, 28.767659 ], [ 72.421875, 28.613459 ], [ 72.246094, 28.613459 ], [ 72.246094, 28.304381 ], [ 72.070312, 28.304381 ], [ 72.070312, 28.149503 ], [ 71.894531, 28.149503 ], [ 71.894531, 27.994401 ], [ 70.488281, 27.994401 ], [ 70.488281, 27.839076 ], [ 70.312500, 27.839076 ], [ 70.312500, 27.683528 ], [ 70.136719, 27.683528 ], [ 70.136719, 27.527758 ], [ 69.960938, 27.527758 ], [ 69.960938, 27.371767 ], [ 69.785156, 27.371767 ], [ 69.785156, 27.215556 ], [ 69.609375, 27.215556 ], [ 69.609375, 27.059126 ], [ 69.433594, 27.059126 ], [ 69.433594, 26.902477 ], [ 69.609375, 26.902477 ], [ 69.609375, 26.745610 ], [ 69.960938, 26.745610 ], [ 69.960938, 26.588527 ], [ 70.136719, 26.588527 ], [ 70.136719, 25.641526 ], [ 70.312500, 25.641526 ], [ 70.312500, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 25.324167 ], [ 70.839844, 25.324167 ], [ 70.839844, 24.846565 ], [ 71.015625, 24.846565 ], [ 71.015625, 24.367114 ], [ 68.730469, 24.367114 ], [ 68.730469, 24.206890 ], [ 68.554688, 24.206890 ], [ 68.554688, 24.046464 ], [ 68.378906, 24.046464 ], [ 68.378906, 23.885838 ], [ 68.203125, 23.885838 ], [ 68.203125, 23.725012 ], [ 67.675781, 23.725012 ], [ 67.675781, 23.885838 ], [ 67.324219, 23.885838 ], [ 67.324219, 24.206890 ], [ 67.148438, 24.206890 ], [ 67.148438, 24.527135 ], [ 66.972656, 24.527135 ], [ 66.972656, 24.686952 ], [ 66.796875, 24.686952 ], [ 66.796875, 24.846565 ], [ 66.621094, 24.846565 ], [ 66.621094, 25.165173 ], [ 66.445312, 25.165173 ], [ 66.445312, 25.324167 ], [ 66.269531, 25.324167 ], [ 66.269531, 25.482951 ], [ 65.566406, 25.482951 ], [ 65.566406, 25.324167 ], [ 62.226562, 25.324167 ], [ 62.226562, 25.165173 ], [ 61.347656, 25.165173 ], [ 61.347656, 25.324167 ], [ 61.523438, 25.324167 ], [ 61.523438, 25.641526 ], [ 61.699219, 25.641526 ], [ 61.699219, 25.958045 ], [ 61.875000, 25.958045 ], [ 61.875000, 26.273714 ], [ 62.226562, 26.273714 ], [ 62.226562, 26.431228 ], [ 62.578125, 26.431228 ], [ 62.578125, 26.588527 ], [ 62.929688, 26.588527 ], [ 62.929688, 26.745610 ], [ 63.281250, 26.745610 ], [ 63.281250, 27.059126 ], [ 63.105469, 27.059126 ], [ 63.105469, 27.215556 ], [ 62.929688, 27.215556 ], [ 62.929688, 27.371767 ], [ 62.753906, 27.371767 ], [ 62.753906, 27.839076 ], [ 62.578125, 27.839076 ], [ 62.578125, 28.304381 ], [ 62.402344, 28.304381 ], [ 62.402344, 28.459033 ], [ 62.050781, 28.459033 ], [ 62.050781, 28.613459 ], [ 61.699219, 28.613459 ], [ 61.699219, 28.921631 ], [ 61.523438, 28.921631 ], [ 61.523438, 29.228890 ], [ 61.347656, 29.228890 ], [ 61.347656, 29.382175 ], [ 61.171875, 29.382175 ], [ 61.171875, 29.535230 ], [ 60.996094, 29.535230 ], [ 60.996094, 29.688053 ] ] ], [ [ [ 60.996094, 29.688053 ], [ 60.820312, 29.688053 ], [ 60.820312, 29.840644 ], [ 60.996094, 29.840644 ], [ 60.996094, 29.688053 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.914062, 30.297018 ], [ 81.914062, 30.145127 ], [ 82.265625, 30.145127 ], [ 82.265625, 29.993002 ], [ 82.617188, 29.993002 ], [ 82.617188, 29.840644 ], [ 82.792969, 29.840644 ], [ 82.792969, 29.688053 ], [ 83.144531, 29.688053 ], [ 83.144531, 29.535230 ], [ 83.496094, 29.535230 ], [ 83.496094, 29.382175 ], [ 83.847656, 29.382175 ], [ 83.847656, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.199219, 28.921631 ], [ 84.199219, 28.767659 ], [ 84.550781, 28.767659 ], [ 84.550781, 28.613459 ], [ 85.078125, 28.613459 ], [ 85.078125, 28.459033 ], [ 85.253906, 28.459033 ], [ 85.253906, 28.304381 ], [ 85.605469, 28.304381 ], [ 85.605469, 28.149503 ], [ 86.308594, 28.149503 ], [ 86.308594, 27.994401 ], [ 87.363281, 27.994401 ], [ 87.363281, 27.839076 ], [ 88.066406, 27.839076 ], [ 88.066406, 27.059126 ], [ 88.242188, 27.059126 ], [ 88.242188, 26.588527 ], [ 88.066406, 26.588527 ], [ 88.066406, 26.431228 ], [ 86.484375, 26.431228 ], [ 86.484375, 26.588527 ], [ 85.429688, 26.588527 ], [ 85.429688, 26.745610 ], [ 85.078125, 26.745610 ], [ 85.078125, 26.902477 ], [ 84.902344, 26.902477 ], [ 84.902344, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 27.215556 ], [ 83.847656, 27.215556 ], [ 83.847656, 27.371767 ], [ 82.968750, 27.371767 ], [ 82.968750, 27.527758 ], [ 82.617188, 27.527758 ], [ 82.617188, 27.683528 ], [ 82.265625, 27.683528 ], [ 82.265625, 27.839076 ], [ 81.914062, 27.839076 ], [ 81.914062, 27.994401 ], [ 81.738281, 27.994401 ], [ 81.738281, 28.149503 ], [ 81.386719, 28.149503 ], [ 81.386719, 28.304381 ], [ 81.035156, 28.304381 ], [ 81.035156, 28.459033 ], [ 80.683594, 28.459033 ], [ 80.683594, 28.613459 ], [ 80.332031, 28.613459 ], [ 80.332031, 28.767659 ], [ 80.156250, 28.767659 ], [ 80.156250, 28.921631 ], [ 80.332031, 28.921631 ], [ 80.332031, 29.382175 ], [ 80.507812, 29.382175 ], [ 80.507812, 29.688053 ], [ 80.683594, 29.688053 ], [ 80.683594, 29.840644 ], [ 80.859375, 29.840644 ], [ 80.859375, 29.993002 ], [ 81.035156, 29.993002 ], [ 81.035156, 30.145127 ], [ 81.210938, 30.145127 ], [ 81.210938, 30.297018 ], [ 81.914062, 30.297018 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.562500, 30.448674 ], [ 81.562500, 30.297018 ], [ 81.914062, 30.297018 ], [ 81.914062, 30.145127 ], [ 82.265625, 30.145127 ], [ 82.265625, 29.993002 ], [ 82.617188, 29.993002 ], [ 82.617188, 29.840644 ], [ 82.792969, 29.840644 ], [ 82.792969, 29.688053 ], [ 83.144531, 29.688053 ], [ 83.144531, 29.535230 ], [ 83.496094, 29.535230 ], [ 83.496094, 29.382175 ], [ 83.847656, 29.382175 ], [ 83.847656, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.375000, 28.921631 ], [ 84.375000, 28.767659 ], [ 84.902344, 28.767659 ], [ 84.902344, 28.613459 ], [ 85.253906, 28.613459 ], [ 85.253906, 28.459033 ], [ 85.605469, 28.459033 ], [ 85.605469, 28.304381 ], [ 85.957031, 28.304381 ], [ 85.957031, 28.149503 ], [ 86.484375, 28.149503 ], [ 86.484375, 27.994401 ], [ 88.066406, 27.994401 ], [ 88.066406, 27.683528 ], [ 87.890625, 27.683528 ], [ 87.890625, 27.215556 ], [ 88.066406, 27.215556 ], [ 88.066406, 26.588527 ], [ 87.890625, 26.588527 ], [ 87.890625, 26.431228 ], [ 86.835938, 26.431228 ], [ 86.835938, 26.588527 ], [ 86.132812, 26.588527 ], [ 86.132812, 26.745610 ], [ 85.078125, 26.745610 ], [ 85.078125, 26.902477 ], [ 84.902344, 26.902477 ], [ 84.902344, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 27.215556 ], [ 84.550781, 27.215556 ], [ 84.550781, 27.371767 ], [ 82.968750, 27.371767 ], [ 82.968750, 27.527758 ], [ 82.617188, 27.527758 ], [ 82.617188, 27.683528 ], [ 82.265625, 27.683528 ], [ 82.265625, 27.839076 ], [ 81.914062, 27.839076 ], [ 81.914062, 27.994401 ], [ 81.738281, 27.994401 ], [ 81.738281, 28.149503 ], [ 81.386719, 28.149503 ], [ 81.386719, 28.304381 ], [ 81.035156, 28.304381 ], [ 81.035156, 28.459033 ], [ 80.683594, 28.459033 ], [ 80.683594, 28.613459 ], [ 80.332031, 28.613459 ], [ 80.332031, 28.767659 ], [ 79.980469, 28.767659 ], [ 79.980469, 29.075375 ], [ 80.156250, 29.075375 ], [ 80.156250, 29.535230 ], [ 80.332031, 29.535230 ], [ 80.332031, 29.840644 ], [ 80.507812, 29.840644 ], [ 80.507812, 29.993002 ], [ 80.859375, 29.993002 ], [ 80.859375, 30.145127 ], [ 81.035156, 30.145127 ], [ 81.035156, 30.297018 ], [ 81.386719, 30.297018 ], [ 81.386719, 30.448674 ], [ 81.562500, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.046875, 35.317366 ], [ 78.046875, 35.173808 ], [ 78.222656, 35.173808 ], [ 78.222656, 34.885931 ], [ 78.398438, 34.885931 ], [ 78.398438, 34.741612 ], [ 78.574219, 34.741612 ], [ 78.574219, 34.597042 ], [ 78.750000, 34.597042 ], [ 78.750000, 34.307144 ], [ 78.925781, 34.307144 ], [ 78.925781, 33.870416 ], [ 78.750000, 33.870416 ], [ 78.750000, 33.431441 ], [ 78.925781, 33.431441 ], [ 78.925781, 33.284620 ], [ 79.101562, 33.284620 ], [ 79.101562, 32.990236 ], [ 79.277344, 32.990236 ], [ 79.277344, 32.694866 ], [ 79.101562, 32.694866 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.546813 ], [ 78.398438, 32.249974 ], [ 78.574219, 32.249974 ], [ 78.574219, 31.653381 ], [ 78.750000, 31.653381 ], [ 78.750000, 31.353637 ], [ 79.101562, 31.353637 ], [ 79.101562, 31.203405 ], [ 79.277344, 31.203405 ], [ 79.277344, 31.052934 ], [ 79.628906, 31.052934 ], [ 79.628906, 30.902225 ], [ 79.804688, 30.902225 ], [ 79.804688, 30.751278 ], [ 80.156250, 30.751278 ], [ 80.156250, 30.600094 ], [ 80.332031, 30.600094 ], [ 80.332031, 30.448674 ], [ 80.507812, 30.448674 ], [ 80.507812, 30.297018 ], [ 80.859375, 30.297018 ], [ 80.859375, 30.145127 ], [ 81.035156, 30.145127 ], [ 81.035156, 29.993002 ], [ 80.859375, 29.993002 ], [ 80.859375, 29.840644 ], [ 80.683594, 29.840644 ], [ 80.683594, 29.688053 ], [ 80.507812, 29.688053 ], [ 80.507812, 29.382175 ], [ 80.332031, 29.382175 ], [ 80.332031, 28.921631 ], [ 80.156250, 28.921631 ], [ 80.156250, 28.767659 ], [ 80.332031, 28.767659 ], [ 80.332031, 28.613459 ], [ 80.683594, 28.613459 ], [ 80.683594, 28.459033 ], [ 81.035156, 28.459033 ], [ 81.035156, 28.304381 ], [ 81.386719, 28.304381 ], [ 81.386719, 28.149503 ], [ 81.738281, 28.149503 ], [ 81.738281, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.839076 ], [ 82.265625, 27.839076 ], [ 82.265625, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.527758 ], [ 82.968750, 27.527758 ], [ 82.968750, 27.371767 ], [ 83.847656, 27.371767 ], [ 83.847656, 27.215556 ], [ 84.726562, 27.215556 ], [ 84.726562, 27.059126 ], [ 84.902344, 27.059126 ], [ 84.902344, 26.902477 ], [ 85.078125, 26.902477 ], [ 85.078125, 26.745610 ], [ 85.429688, 26.745610 ], [ 85.429688, 26.588527 ], [ 86.484375, 26.588527 ], [ 86.484375, 26.431228 ], [ 88.066406, 26.431228 ], [ 88.066406, 26.588527 ], [ 88.242188, 26.588527 ], [ 88.242188, 27.059126 ], [ 88.066406, 27.059126 ], [ 88.066406, 27.839076 ], [ 88.417969, 27.839076 ], [ 88.417969, 27.994401 ], [ 88.769531, 27.994401 ], [ 88.769531, 27.059126 ], [ 88.945312, 27.059126 ], [ 88.945312, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 90.878906, 26.902477 ], [ 90.878906, 25.165173 ], [ 90.351562, 25.165173 ], [ 90.351562, 25.324167 ], [ 90.000000, 25.324167 ], [ 90.000000, 25.641526 ], [ 89.824219, 25.641526 ], [ 89.824219, 25.958045 ], [ 89.121094, 25.958045 ], [ 89.121094, 26.115986 ], [ 88.769531, 26.115986 ], [ 88.769531, 26.273714 ], [ 88.417969, 26.273714 ], [ 88.417969, 25.958045 ], [ 88.242188, 25.958045 ], [ 88.242188, 25.641526 ], [ 88.417969, 25.641526 ], [ 88.417969, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.324167 ], [ 88.769531, 25.324167 ], [ 88.769531, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 25.005973 ], [ 88.593750, 25.005973 ], [ 88.593750, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 24.686952 ], [ 88.066406, 24.686952 ], [ 88.066406, 24.367114 ], [ 88.417969, 24.367114 ], [ 88.417969, 24.206890 ], [ 88.769531, 24.206890 ], [ 88.769531, 23.885838 ], [ 88.593750, 23.885838 ], [ 88.593750, 23.402765 ], [ 88.769531, 23.402765 ], [ 88.769531, 23.079732 ], [ 88.945312, 23.079732 ], [ 88.945312, 21.616579 ], [ 88.417969, 21.616579 ], [ 88.417969, 21.779905 ], [ 88.066406, 21.779905 ], [ 88.066406, 21.616579 ], [ 87.363281, 21.616579 ], [ 87.363281, 21.453069 ], [ 87.011719, 21.453069 ], [ 87.011719, 20.632784 ], [ 86.835938, 20.632784 ], [ 86.835938, 20.468189 ], [ 86.660156, 20.468189 ], [ 86.660156, 20.138470 ], [ 86.484375, 20.138470 ], [ 86.484375, 19.973349 ], [ 86.132812, 19.973349 ], [ 86.132812, 19.808054 ], [ 85.781250, 19.808054 ], [ 85.781250, 19.642588 ], [ 85.429688, 19.642588 ], [ 85.429688, 19.476950 ], [ 85.078125, 19.476950 ], [ 85.078125, 19.311143 ], [ 84.902344, 19.311143 ], [ 84.902344, 19.145168 ], [ 84.726562, 19.145168 ], [ 84.726562, 18.979026 ], [ 84.550781, 18.979026 ], [ 84.550781, 18.646245 ], [ 84.375000, 18.646245 ], [ 84.375000, 18.479609 ], [ 84.199219, 18.479609 ], [ 84.199219, 18.312811 ], [ 84.023438, 18.312811 ], [ 84.023438, 18.145852 ], [ 83.847656, 18.145852 ], [ 83.847656, 17.978733 ], [ 83.496094, 17.978733 ], [ 83.496094, 17.811456 ], [ 83.320312, 17.811456 ], [ 83.320312, 17.644022 ], [ 83.144531, 17.644022 ], [ 83.144531, 17.476432 ], [ 82.968750, 17.476432 ], [ 82.968750, 17.308688 ], [ 82.617188, 17.308688 ], [ 82.617188, 17.140790 ], [ 82.441406, 17.140790 ], [ 82.441406, 16.972741 ], [ 82.265625, 16.972741 ], [ 82.265625, 16.467695 ], [ 81.914062, 16.467695 ], [ 81.914062, 16.299051 ], [ 81.562500, 16.299051 ], [ 81.562500, 16.130262 ], [ 81.210938, 16.130262 ], [ 81.210938, 15.961329 ], [ 80.332031, 15.961329 ], [ 80.332031, 15.623037 ], [ 80.156250, 15.623037 ], [ 80.156250, 15.284185 ], [ 79.980469, 15.284185 ], [ 79.980469, 14.434680 ], [ 80.156250, 14.434680 ], [ 80.156250, 13.410994 ], [ 80.332031, 13.410994 ], [ 80.332031, 12.897489 ], [ 80.156250, 12.897489 ], [ 80.156250, 12.554564 ], [ 79.980469, 12.554564 ], [ 79.980469, 12.211180 ], [ 79.804688, 12.211180 ], [ 79.804688, 10.314919 ], [ 79.277344, 10.314919 ], [ 79.277344, 10.141932 ], [ 79.101562, 10.141932 ], [ 79.101562, 9.795678 ], [ 78.925781, 9.795678 ], [ 78.925781, 9.449062 ], [ 79.101562, 9.449062 ], [ 79.101562, 9.102097 ], [ 78.574219, 9.102097 ], [ 78.574219, 8.928487 ], [ 78.222656, 8.928487 ], [ 78.222656, 8.754795 ], [ 78.046875, 8.754795 ], [ 78.046875, 8.407168 ], [ 77.871094, 8.407168 ], [ 77.871094, 8.059230 ], [ 77.695312, 8.059230 ], [ 77.695312, 7.885147 ], [ 77.343750, 7.885147 ], [ 77.343750, 8.059230 ], [ 77.167969, 8.059230 ], [ 77.167969, 8.407168 ], [ 76.992188, 8.407168 ], [ 76.992188, 8.581021 ], [ 76.816406, 8.581021 ], [ 76.816406, 8.754795 ], [ 76.640625, 8.754795 ], [ 76.640625, 9.102097 ], [ 76.464844, 9.102097 ], [ 76.464844, 9.622414 ], [ 76.289062, 9.622414 ], [ 76.289062, 9.968851 ], [ 76.113281, 9.968851 ], [ 76.113281, 10.487812 ], [ 75.937500, 10.487812 ], [ 75.937500, 11.005904 ], [ 75.761719, 11.005904 ], [ 75.761719, 11.350797 ], [ 75.585938, 11.350797 ], [ 75.585938, 11.523088 ], [ 75.410156, 11.523088 ], [ 75.410156, 11.867351 ], [ 75.234375, 11.867351 ], [ 75.234375, 12.211180 ], [ 75.058594, 12.211180 ], [ 75.058594, 12.554564 ], [ 74.882812, 12.554564 ], [ 74.882812, 12.897489 ], [ 74.707031, 12.897489 ], [ 74.707031, 13.581921 ], [ 74.531250, 13.581921 ], [ 74.531250, 14.604847 ], [ 74.355469, 14.604847 ], [ 74.355469, 14.944785 ], [ 74.179688, 14.944785 ], [ 74.179688, 15.114553 ], [ 74.003906, 15.114553 ], [ 74.003906, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 15.623037 ], [ 73.652344, 15.623037 ], [ 73.652344, 15.792254 ], [ 73.476562, 15.792254 ], [ 73.476562, 16.467695 ], [ 73.300781, 16.467695 ], [ 73.300781, 17.476432 ], [ 73.125000, 17.476432 ], [ 73.125000, 18.145852 ], [ 72.949219, 18.145852 ], [ 72.949219, 18.812718 ], [ 72.773438, 18.812718 ], [ 72.773438, 20.797201 ], [ 72.597656, 20.797201 ], [ 72.597656, 21.289374 ], [ 72.421875, 21.289374 ], [ 72.421875, 21.125498 ], [ 72.070312, 21.125498 ], [ 72.070312, 20.961440 ], [ 71.542969, 20.961440 ], [ 71.542969, 20.797201 ], [ 70.312500, 20.797201 ], [ 70.312500, 20.961440 ], [ 70.136719, 20.961440 ], [ 70.136719, 21.125498 ], [ 69.960938, 21.125498 ], [ 69.960938, 21.289374 ], [ 69.785156, 21.289374 ], [ 69.785156, 21.453069 ], [ 69.609375, 21.453069 ], [ 69.609375, 21.616579 ], [ 69.433594, 21.616579 ], [ 69.433594, 21.779905 ], [ 69.257812, 21.779905 ], [ 69.257812, 21.943046 ], [ 69.082031, 21.943046 ], [ 69.082031, 22.105999 ], [ 69.257812, 22.105999 ], [ 69.257812, 22.268764 ], [ 69.609375, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.433594, 22.593726 ], [ 69.433594, 22.917923 ], [ 69.257812, 22.917923 ], [ 69.257812, 23.079732 ], [ 68.906250, 23.079732 ], [ 68.906250, 23.241346 ], [ 68.730469, 23.241346 ], [ 68.730469, 23.402765 ], [ 68.554688, 23.402765 ], [ 68.554688, 23.563987 ], [ 68.203125, 23.563987 ], [ 68.203125, 23.725012 ], [ 68.378906, 23.725012 ], [ 68.378906, 23.885838 ], [ 68.554688, 23.885838 ], [ 68.554688, 24.046464 ], [ 68.730469, 24.046464 ], [ 68.730469, 24.206890 ], [ 68.906250, 24.206890 ], [ 68.906250, 24.367114 ], [ 71.015625, 24.367114 ], [ 71.015625, 24.686952 ], [ 70.839844, 24.686952 ], [ 70.839844, 25.165173 ], [ 70.664062, 25.165173 ], [ 70.664062, 25.482951 ], [ 70.488281, 25.482951 ], [ 70.488281, 25.641526 ], [ 70.312500, 25.641526 ], [ 70.312500, 26.115986 ], [ 70.136719, 26.115986 ], [ 70.136719, 26.431228 ], [ 69.960938, 26.431228 ], [ 69.960938, 26.588527 ], [ 69.609375, 26.588527 ], [ 69.609375, 26.745610 ], [ 69.433594, 26.745610 ], [ 69.433594, 26.902477 ], [ 69.609375, 26.902477 ], [ 69.609375, 27.059126 ], [ 69.785156, 27.059126 ], [ 69.785156, 27.215556 ], [ 69.960938, 27.215556 ], [ 69.960938, 27.371767 ], [ 70.136719, 27.371767 ], [ 70.136719, 27.527758 ], [ 70.312500, 27.527758 ], [ 70.312500, 27.683528 ], [ 70.488281, 27.683528 ], [ 70.488281, 27.839076 ], [ 70.664062, 27.839076 ], [ 70.664062, 27.994401 ], [ 71.015625, 27.994401 ], [ 71.015625, 27.839076 ], [ 71.894531, 27.839076 ], [ 71.894531, 27.994401 ], [ 72.070312, 27.994401 ], [ 72.070312, 28.149503 ], [ 72.246094, 28.149503 ], [ 72.246094, 28.459033 ], [ 72.421875, 28.459033 ], [ 72.421875, 28.613459 ], [ 72.597656, 28.613459 ], [ 72.597656, 28.767659 ], [ 72.773438, 28.767659 ], [ 72.773438, 28.921631 ], [ 72.949219, 28.921631 ], [ 72.949219, 29.228890 ], [ 73.125000, 29.228890 ], [ 73.125000, 29.535230 ], [ 73.300781, 29.535230 ], [ 73.300781, 29.840644 ], [ 73.476562, 29.840644 ], [ 73.476562, 29.993002 ], [ 73.652344, 29.993002 ], [ 73.652344, 30.297018 ], [ 73.828125, 30.297018 ], [ 73.828125, 30.448674 ], [ 74.003906, 30.448674 ], [ 74.003906, 30.600094 ], [ 74.179688, 30.600094 ], [ 74.179688, 30.902225 ], [ 74.355469, 30.902225 ], [ 74.355469, 31.653381 ], [ 74.531250, 31.653381 ], [ 74.531250, 31.802893 ], [ 74.707031, 31.802893 ], [ 74.707031, 31.952162 ], [ 75.058594, 31.952162 ], [ 75.058594, 32.101190 ], [ 75.234375, 32.101190 ], [ 75.234375, 32.249974 ], [ 75.058594, 32.249974 ], [ 75.058594, 32.398516 ], [ 74.707031, 32.398516 ], [ 74.707031, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 32.842674 ], [ 74.355469, 32.842674 ], [ 74.355469, 33.137551 ], [ 74.179688, 33.137551 ], [ 74.179688, 33.578015 ], [ 74.003906, 33.578015 ], [ 74.003906, 34.016242 ], [ 73.828125, 34.016242 ], [ 73.828125, 34.307144 ], [ 74.003906, 34.307144 ], [ 74.003906, 34.597042 ], [ 74.179688, 34.597042 ], [ 74.179688, 34.741612 ], [ 74.531250, 34.741612 ], [ 74.531250, 34.597042 ], [ 75.234375, 34.597042 ], [ 75.234375, 34.452218 ], [ 76.464844, 34.452218 ], [ 76.464844, 34.597042 ], [ 76.992188, 34.597042 ], [ 76.992188, 34.741612 ], [ 77.167969, 34.741612 ], [ 77.167969, 34.885931 ], [ 77.343750, 34.885931 ], [ 77.343750, 35.029996 ], [ 77.519531, 35.029996 ], [ 77.519531, 35.173808 ], [ 77.695312, 35.173808 ], [ 77.695312, 35.317366 ], [ 78.046875, 35.317366 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.871094, 35.460670 ], [ 77.871094, 35.317366 ], [ 78.046875, 35.317366 ], [ 78.046875, 35.029996 ], [ 78.222656, 35.029996 ], [ 78.222656, 34.885931 ], [ 78.398438, 34.885931 ], [ 78.398438, 34.741612 ], [ 78.574219, 34.741612 ], [ 78.574219, 34.452218 ], [ 78.750000, 34.452218 ], [ 78.750000, 33.431441 ], [ 78.925781, 33.431441 ], [ 78.925781, 33.137551 ], [ 79.101562, 33.137551 ], [ 79.101562, 32.546813 ], [ 78.574219, 32.546813 ], [ 78.574219, 32.694866 ], [ 78.398438, 32.694866 ], [ 78.398438, 32.101190 ], [ 78.574219, 32.101190 ], [ 78.574219, 31.503629 ], [ 78.750000, 31.503629 ], [ 78.750000, 31.353637 ], [ 78.925781, 31.353637 ], [ 78.925781, 31.203405 ], [ 79.277344, 31.203405 ], [ 79.277344, 31.052934 ], [ 79.453125, 31.052934 ], [ 79.453125, 30.902225 ], [ 79.628906, 30.902225 ], [ 79.628906, 30.751278 ], [ 79.980469, 30.751278 ], [ 79.980469, 30.600094 ], [ 80.332031, 30.600094 ], [ 80.332031, 30.448674 ], [ 80.683594, 30.448674 ], [ 80.683594, 30.297018 ], [ 81.035156, 30.297018 ], [ 81.035156, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 29.993002 ], [ 80.507812, 29.993002 ], [ 80.507812, 29.840644 ], [ 80.332031, 29.840644 ], [ 80.332031, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 29.075375 ], [ 79.980469, 29.075375 ], [ 79.980469, 28.767659 ], [ 80.332031, 28.767659 ], [ 80.332031, 28.613459 ], [ 80.683594, 28.613459 ], [ 80.683594, 28.459033 ], [ 81.035156, 28.459033 ], [ 81.035156, 28.304381 ], [ 81.386719, 28.304381 ], [ 81.386719, 28.149503 ], [ 81.738281, 28.149503 ], [ 81.738281, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.839076 ], [ 82.265625, 27.839076 ], [ 82.265625, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.527758 ], [ 82.968750, 27.527758 ], [ 82.968750, 27.371767 ], [ 84.550781, 27.371767 ], [ 84.550781, 27.215556 ], [ 84.726562, 27.215556 ], [ 84.726562, 27.059126 ], [ 84.902344, 27.059126 ], [ 84.902344, 26.902477 ], [ 85.078125, 26.902477 ], [ 85.078125, 26.745610 ], [ 86.132812, 26.745610 ], [ 86.132812, 26.588527 ], [ 86.835938, 26.588527 ], [ 86.835938, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 26.588527 ], [ 88.066406, 26.588527 ], [ 88.066406, 27.215556 ], [ 87.890625, 27.215556 ], [ 87.890625, 27.683528 ], [ 88.066406, 27.683528 ], [ 88.066406, 27.994401 ], [ 88.417969, 27.994401 ], [ 88.417969, 28.149503 ], [ 88.593750, 28.149503 ], [ 88.593750, 27.683528 ], [ 88.769531, 27.683528 ], [ 88.769531, 27.059126 ], [ 89.121094, 27.059126 ], [ 89.121094, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 90.878906, 26.902477 ], [ 90.878906, 25.165173 ], [ 90.175781, 25.165173 ], [ 90.175781, 25.324167 ], [ 89.824219, 25.324167 ], [ 89.824219, 26.115986 ], [ 89.121094, 26.115986 ], [ 89.121094, 26.273714 ], [ 88.769531, 26.273714 ], [ 88.769531, 26.431228 ], [ 88.417969, 26.431228 ], [ 88.417969, 26.273714 ], [ 88.242188, 26.273714 ], [ 88.242188, 25.958045 ], [ 88.066406, 25.958045 ], [ 88.066406, 25.641526 ], [ 88.242188, 25.641526 ], [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.324167 ], [ 88.769531, 25.324167 ], [ 88.769531, 25.165173 ], [ 88.417969, 25.165173 ], [ 88.417969, 25.005973 ], [ 88.242188, 25.005973 ], [ 88.242188, 24.686952 ], [ 88.066406, 24.686952 ], [ 88.066406, 24.527135 ], [ 88.242188, 24.527135 ], [ 88.242188, 24.367114 ], [ 88.593750, 24.367114 ], [ 88.593750, 24.046464 ], [ 88.417969, 24.046464 ], [ 88.417969, 23.402765 ], [ 88.593750, 23.402765 ], [ 88.593750, 23.079732 ], [ 88.769531, 23.079732 ], [ 88.769531, 22.431340 ], [ 88.945312, 22.431340 ], [ 88.945312, 21.943046 ], [ 88.769531, 21.943046 ], [ 88.769531, 21.779905 ], [ 87.539062, 21.779905 ], [ 87.539062, 21.616579 ], [ 86.835938, 21.616579 ], [ 86.835938, 21.125498 ], [ 87.011719, 21.125498 ], [ 87.011719, 20.632784 ], [ 86.835938, 20.632784 ], [ 86.835938, 20.468189 ], [ 86.660156, 20.468189 ], [ 86.660156, 20.303418 ], [ 86.484375, 20.303418 ], [ 86.484375, 20.138470 ], [ 86.132812, 20.138470 ], [ 86.132812, 19.973349 ], [ 85.781250, 19.973349 ], [ 85.781250, 19.808054 ], [ 85.429688, 19.808054 ], [ 85.429688, 19.642588 ], [ 85.078125, 19.642588 ], [ 85.078125, 19.476950 ], [ 84.902344, 19.476950 ], [ 84.902344, 19.311143 ], [ 84.726562, 19.311143 ], [ 84.726562, 19.145168 ], [ 84.550781, 19.145168 ], [ 84.550781, 18.979026 ], [ 84.375000, 18.979026 ], [ 84.375000, 18.646245 ], [ 84.199219, 18.646245 ], [ 84.199219, 18.479609 ], [ 84.023438, 18.479609 ], [ 84.023438, 18.312811 ], [ 83.847656, 18.312811 ], [ 83.847656, 18.145852 ], [ 83.671875, 18.145852 ], [ 83.671875, 17.978733 ], [ 83.320312, 17.978733 ], [ 83.320312, 17.811456 ], [ 83.144531, 17.811456 ], [ 83.144531, 17.644022 ], [ 82.792969, 17.644022 ], [ 82.792969, 17.476432 ], [ 82.617188, 17.476432 ], [ 82.617188, 17.308688 ], [ 82.265625, 17.308688 ], [ 82.265625, 17.140790 ], [ 82.089844, 17.140790 ], [ 82.089844, 16.636192 ], [ 81.914062, 16.636192 ], [ 81.914062, 16.467695 ], [ 81.562500, 16.467695 ], [ 81.562500, 16.299051 ], [ 81.210938, 16.299051 ], [ 81.210938, 16.130262 ], [ 80.859375, 16.130262 ], [ 80.859375, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 15.623037 ], [ 79.980469, 15.623037 ], [ 79.980469, 14.604847 ], [ 80.156250, 14.604847 ], [ 80.156250, 12.726084 ], [ 79.980469, 12.726084 ], [ 79.980469, 12.382928 ], [ 79.804688, 12.382928 ], [ 79.804688, 10.487812 ], [ 79.628906, 10.487812 ], [ 79.628906, 10.314919 ], [ 79.277344, 10.314919 ], [ 79.277344, 10.141932 ], [ 79.101562, 10.141932 ], [ 79.101562, 9.968851 ], [ 78.925781, 9.968851 ], [ 78.925781, 9.622414 ], [ 78.750000, 9.622414 ], [ 78.750000, 9.449062 ], [ 78.925781, 9.449062 ], [ 78.925781, 9.275622 ], [ 78.750000, 9.275622 ], [ 78.750000, 9.102097 ], [ 78.222656, 9.102097 ], [ 78.222656, 8.928487 ], [ 78.046875, 8.928487 ], [ 78.046875, 8.581021 ], [ 77.871094, 8.581021 ], [ 77.871094, 8.233237 ], [ 77.695312, 8.233237 ], [ 77.695312, 8.059230 ], [ 77.343750, 8.059230 ], [ 77.343750, 8.233237 ], [ 77.167969, 8.233237 ], [ 77.167969, 8.407168 ], [ 76.816406, 8.407168 ], [ 76.816406, 8.581021 ], [ 76.640625, 8.581021 ], [ 76.640625, 8.754795 ], [ 76.464844, 8.754795 ], [ 76.464844, 9.275622 ], [ 76.289062, 9.275622 ], [ 76.289062, 9.968851 ], [ 76.113281, 9.968851 ], [ 76.113281, 10.487812 ], [ 75.937500, 10.487812 ], [ 75.937500, 10.833306 ], [ 75.761719, 10.833306 ], [ 75.761719, 11.178402 ], [ 75.585938, 11.178402 ], [ 75.585938, 11.350797 ], [ 75.410156, 11.350797 ], [ 75.410156, 11.695273 ], [ 75.234375, 11.695273 ], [ 75.234375, 12.039321 ], [ 75.058594, 12.039321 ], [ 75.058594, 12.382928 ], [ 74.882812, 12.382928 ], [ 74.882812, 12.726084 ], [ 74.707031, 12.726084 ], [ 74.707031, 13.410994 ], [ 74.531250, 13.410994 ], [ 74.531250, 14.434680 ], [ 74.355469, 14.434680 ], [ 74.355469, 14.774883 ], [ 74.179688, 14.774883 ], [ 74.179688, 15.114553 ], [ 74.003906, 15.114553 ], [ 74.003906, 15.453680 ], [ 73.828125, 15.453680 ], [ 73.828125, 15.623037 ], [ 73.652344, 15.623037 ], [ 73.652344, 15.961329 ], [ 73.476562, 15.961329 ], [ 73.476562, 16.299051 ], [ 73.300781, 16.299051 ], [ 73.300781, 16.972741 ], [ 73.125000, 16.972741 ], [ 73.125000, 17.644022 ], [ 72.949219, 17.644022 ], [ 72.949219, 18.646245 ], [ 72.773438, 18.646245 ], [ 72.773438, 20.961440 ], [ 72.597656, 20.961440 ], [ 72.597656, 21.453069 ], [ 72.421875, 21.453069 ], [ 72.421875, 21.289374 ], [ 72.070312, 21.289374 ], [ 72.070312, 21.125498 ], [ 71.718750, 21.125498 ], [ 71.718750, 20.961440 ], [ 71.367188, 20.961440 ], [ 71.367188, 20.797201 ], [ 70.488281, 20.797201 ], [ 70.488281, 20.961440 ], [ 70.136719, 20.961440 ], [ 70.136719, 21.125498 ], [ 69.960938, 21.125498 ], [ 69.960938, 21.289374 ], [ 69.785156, 21.289374 ], [ 69.785156, 21.453069 ], [ 69.609375, 21.453069 ], [ 69.609375, 21.616579 ], [ 69.433594, 21.616579 ], [ 69.433594, 21.779905 ], [ 69.257812, 21.779905 ], [ 69.257812, 21.943046 ], [ 69.082031, 21.943046 ], [ 69.082031, 22.105999 ], [ 69.257812, 22.105999 ], [ 69.257812, 22.268764 ], [ 69.433594, 22.268764 ], [ 69.433594, 22.431340 ], [ 69.609375, 22.431340 ], [ 69.609375, 22.593726 ], [ 69.433594, 22.593726 ], [ 69.433594, 22.755921 ], [ 69.257812, 22.755921 ], [ 69.257812, 22.917923 ], [ 69.082031, 22.917923 ], [ 69.082031, 23.079732 ], [ 68.730469, 23.079732 ], [ 68.730469, 23.241346 ], [ 68.554688, 23.241346 ], [ 68.554688, 23.402765 ], [ 68.378906, 23.402765 ], [ 68.378906, 23.563987 ], [ 68.027344, 23.563987 ], [ 68.027344, 23.725012 ], [ 68.203125, 23.725012 ], [ 68.203125, 23.885838 ], [ 68.378906, 23.885838 ], [ 68.378906, 24.046464 ], [ 68.554688, 24.046464 ], [ 68.554688, 24.206890 ], [ 68.730469, 24.206890 ], [ 68.730469, 24.367114 ], [ 71.015625, 24.367114 ], [ 71.015625, 24.846565 ], [ 70.839844, 24.846565 ], [ 70.839844, 25.324167 ], [ 70.664062, 25.324167 ], [ 70.664062, 25.482951 ], [ 70.312500, 25.482951 ], [ 70.312500, 25.641526 ], [ 70.136719, 25.641526 ], [ 70.136719, 26.588527 ], [ 69.960938, 26.588527 ], [ 69.960938, 26.745610 ], [ 69.609375, 26.745610 ], [ 69.609375, 26.902477 ], [ 69.433594, 26.902477 ], [ 69.433594, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 27.215556 ], [ 69.785156, 27.215556 ], [ 69.785156, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.527758 ], [ 70.136719, 27.527758 ], [ 70.136719, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.839076 ], [ 70.488281, 27.839076 ], [ 70.488281, 27.994401 ], [ 71.894531, 27.994401 ], [ 71.894531, 28.149503 ], [ 72.070312, 28.149503 ], [ 72.070312, 28.304381 ], [ 72.246094, 28.304381 ], [ 72.246094, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.767659 ], [ 72.597656, 28.767659 ], [ 72.597656, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 29.228890 ], [ 72.949219, 29.228890 ], [ 72.949219, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 29.840644 ], [ 73.300781, 29.840644 ], [ 73.300781, 29.993002 ], [ 73.476562, 29.993002 ], [ 73.476562, 30.145127 ], [ 73.652344, 30.145127 ], [ 73.652344, 30.297018 ], [ 73.828125, 30.297018 ], [ 73.828125, 30.600094 ], [ 74.003906, 30.600094 ], [ 74.003906, 30.751278 ], [ 74.179688, 30.751278 ], [ 74.179688, 30.902225 ], [ 74.355469, 30.902225 ], [ 74.355469, 31.802893 ], [ 74.531250, 31.802893 ], [ 74.531250, 31.952162 ], [ 74.707031, 31.952162 ], [ 74.707031, 32.101190 ], [ 75.058594, 32.101190 ], [ 75.058594, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 32.398516 ], [ 75.058594, 32.398516 ], [ 75.058594, 32.546813 ], [ 74.707031, 32.546813 ], [ 74.707031, 32.694866 ], [ 74.355469, 32.694866 ], [ 74.355469, 32.990236 ], [ 74.179688, 32.990236 ], [ 74.179688, 33.284620 ], [ 74.003906, 33.284620 ], [ 74.003906, 33.724340 ], [ 73.828125, 33.724340 ], [ 73.828125, 34.161818 ], [ 73.652344, 34.161818 ], [ 73.652344, 34.452218 ], [ 73.828125, 34.452218 ], [ 73.828125, 34.597042 ], [ 74.003906, 34.597042 ], [ 74.003906, 34.741612 ], [ 74.179688, 34.741612 ], [ 74.179688, 34.885931 ], [ 74.355469, 34.885931 ], [ 74.355469, 34.741612 ], [ 75.058594, 34.741612 ], [ 75.058594, 34.597042 ], [ 76.289062, 34.597042 ], [ 76.289062, 34.741612 ], [ 76.992188, 34.741612 ], [ 76.992188, 34.885931 ], [ 77.167969, 34.885931 ], [ 77.167969, 35.173808 ], [ 77.343750, 35.173808 ], [ 77.343750, 35.317366 ], [ 77.519531, 35.317366 ], [ 77.519531, 35.460670 ], [ 77.871094, 35.460670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.332031, 9.622414 ], [ 80.332031, 9.449062 ], [ 80.683594, 9.449062 ], [ 80.683594, 9.275622 ], [ 80.859375, 9.275622 ], [ 80.859375, 9.102097 ], [ 81.035156, 9.102097 ], [ 81.035156, 8.928487 ], [ 81.210938, 8.928487 ], [ 81.210938, 8.581021 ], [ 81.386719, 8.581021 ], [ 81.386719, 8.233237 ], [ 81.562500, 8.233237 ], [ 81.562500, 7.710992 ], [ 81.738281, 7.710992 ], [ 81.738281, 7.013668 ], [ 81.562500, 7.013668 ], [ 81.562500, 6.315299 ], [ 81.386719, 6.315299 ], [ 81.386719, 6.140555 ], [ 80.859375, 6.140555 ], [ 80.859375, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.980469, 6.315299 ], [ 79.980469, 6.664608 ], [ 79.804688, 6.664608 ], [ 79.804688, 7.536764 ], [ 79.628906, 7.536764 ], [ 79.628906, 8.407168 ], [ 79.804688, 8.407168 ], [ 79.804688, 8.928487 ], [ 79.980469, 8.928487 ], [ 79.980469, 9.449062 ], [ 80.156250, 9.449062 ], [ 80.156250, 9.622414 ], [ 80.332031, 9.622414 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.795678 ], [ 80.156250, 9.622414 ], [ 80.332031, 9.622414 ], [ 80.332031, 9.449062 ], [ 80.507812, 9.449062 ], [ 80.507812, 9.275622 ], [ 80.683594, 9.275622 ], [ 80.683594, 9.102097 ], [ 80.859375, 9.102097 ], [ 80.859375, 8.928487 ], [ 81.035156, 8.928487 ], [ 81.035156, 8.581021 ], [ 81.210938, 8.581021 ], [ 81.210938, 8.407168 ], [ 81.386719, 8.407168 ], [ 81.386719, 8.059230 ], [ 81.562500, 8.059230 ], [ 81.562500, 7.710992 ], [ 81.738281, 7.710992 ], [ 81.738281, 7.013668 ], [ 81.562500, 7.013668 ], [ 81.562500, 6.315299 ], [ 81.035156, 6.315299 ], [ 81.035156, 6.140555 ], [ 80.683594, 6.140555 ], [ 80.683594, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.980469, 6.315299 ], [ 79.980469, 6.664608 ], [ 79.804688, 6.664608 ], [ 79.804688, 7.536764 ], [ 79.628906, 7.536764 ], [ 79.628906, 8.581021 ], [ 79.804688, 8.581021 ], [ 79.804688, 9.449062 ], [ 79.980469, 9.449062 ], [ 79.980469, 9.795678 ], [ 80.156250, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.351562, 28.149503 ], [ 90.351562, 27.994401 ], [ 90.878906, 27.994401 ], [ 90.878906, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 88.945312, 26.902477 ], [ 88.945312, 27.059126 ], [ 88.769531, 27.059126 ], [ 88.769531, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.527758 ], [ 89.121094, 27.527758 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.839076 ], [ 89.472656, 27.839076 ], [ 89.472656, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 28.149503 ], [ 90.351562, 28.149503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.175781, 28.304381 ], [ 90.175781, 28.149503 ], [ 90.878906, 28.149503 ], [ 90.878906, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 89.121094, 26.902477 ], [ 89.121094, 27.059126 ], [ 88.769531, 27.059126 ], [ 88.769531, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.527758 ], [ 89.121094, 27.527758 ], [ 89.121094, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 28.149503 ], [ 89.824219, 28.149503 ], [ 89.824219, 28.304381 ], [ 90.175781, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.769531, 26.273714 ], [ 88.769531, 26.115986 ], [ 89.121094, 26.115986 ], [ 89.121094, 25.958045 ], [ 89.824219, 25.958045 ], [ 89.824219, 25.641526 ], [ 90.000000, 25.641526 ], [ 90.000000, 25.324167 ], [ 90.351562, 25.324167 ], [ 90.351562, 25.165173 ], [ 90.878906, 25.165173 ], [ 90.878906, 22.755921 ], [ 90.527344, 22.755921 ], [ 90.527344, 22.105999 ], [ 90.351562, 22.105999 ], [ 90.351562, 21.779905 ], [ 90.175781, 21.779905 ], [ 90.175781, 21.943046 ], [ 89.648438, 21.943046 ], [ 89.648438, 21.779905 ], [ 89.472656, 21.779905 ], [ 89.472656, 21.943046 ], [ 89.121094, 21.943046 ], [ 89.121094, 22.105999 ], [ 88.945312, 22.105999 ], [ 88.945312, 23.079732 ], [ 88.769531, 23.079732 ], [ 88.769531, 23.402765 ], [ 88.593750, 23.402765 ], [ 88.593750, 23.885838 ], [ 88.769531, 23.885838 ], [ 88.769531, 24.206890 ], [ 88.417969, 24.206890 ], [ 88.417969, 24.367114 ], [ 88.066406, 24.367114 ], [ 88.066406, 24.686952 ], [ 88.242188, 24.686952 ], [ 88.242188, 24.846565 ], [ 88.593750, 24.846565 ], [ 88.593750, 25.005973 ], [ 88.945312, 25.005973 ], [ 88.945312, 25.165173 ], [ 88.769531, 25.165173 ], [ 88.769531, 25.324167 ], [ 88.593750, 25.324167 ], [ 88.593750, 25.482951 ], [ 88.417969, 25.482951 ], [ 88.417969, 25.641526 ], [ 88.242188, 25.641526 ], [ 88.242188, 25.958045 ], [ 88.417969, 25.958045 ], [ 88.417969, 26.273714 ], [ 88.769531, 26.273714 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.769531, 26.431228 ], [ 88.769531, 26.273714 ], [ 89.121094, 26.273714 ], [ 89.121094, 26.115986 ], [ 89.824219, 26.115986 ], [ 89.824219, 25.324167 ], [ 90.175781, 25.324167 ], [ 90.175781, 25.165173 ], [ 90.878906, 25.165173 ], [ 90.878906, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.527344, 22.593726 ], [ 90.527344, 22.268764 ], [ 90.351562, 22.268764 ], [ 90.351562, 21.943046 ], [ 89.296875, 21.943046 ], [ 89.296875, 22.105999 ], [ 88.945312, 22.105999 ], [ 88.945312, 22.431340 ], [ 88.769531, 22.431340 ], [ 88.769531, 23.079732 ], [ 88.593750, 23.079732 ], [ 88.593750, 23.402765 ], [ 88.417969, 23.402765 ], [ 88.417969, 24.046464 ], [ 88.593750, 24.046464 ], [ 88.593750, 24.367114 ], [ 88.242188, 24.367114 ], [ 88.242188, 24.527135 ], [ 88.066406, 24.527135 ], [ 88.066406, 24.686952 ], [ 88.242188, 24.686952 ], [ 88.242188, 25.005973 ], [ 88.417969, 25.005973 ], [ 88.417969, 25.165173 ], [ 88.769531, 25.165173 ], [ 88.769531, 25.324167 ], [ 88.593750, 25.324167 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 25.641526 ], [ 88.066406, 25.641526 ], [ 88.066406, 25.958045 ], [ 88.242188, 25.958045 ], [ 88.242188, 26.273714 ], [ 88.417969, 26.273714 ], [ 88.417969, 26.431228 ], [ 88.769531, 26.431228 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 27.994401 ], [ 90.351562, 27.994401 ], [ 90.351562, 28.149503 ], [ 89.648438, 28.149503 ], [ 89.648438, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 27.527758 ], [ 88.945312, 27.527758 ], [ 88.945312, 27.371767 ], [ 88.769531, 27.371767 ], [ 88.769531, 27.994401 ], [ 88.417969, 27.994401 ], [ 88.417969, 27.839076 ], [ 87.363281, 27.839076 ], [ 87.363281, 27.994401 ], [ 86.308594, 27.994401 ], [ 86.308594, 28.149503 ], [ 85.605469, 28.149503 ], [ 85.605469, 28.304381 ], [ 85.253906, 28.304381 ], [ 85.253906, 28.459033 ], [ 85.078125, 28.459033 ], [ 85.078125, 28.613459 ], [ 84.550781, 28.613459 ], [ 84.550781, 28.767659 ], [ 84.199219, 28.767659 ], [ 84.199219, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.847656, 29.228890 ], [ 83.847656, 29.382175 ], [ 83.496094, 29.382175 ], [ 83.496094, 29.535230 ], [ 83.144531, 29.535230 ], [ 83.144531, 29.688053 ], [ 82.792969, 29.688053 ], [ 82.792969, 29.840644 ], [ 82.617188, 29.840644 ], [ 82.617188, 29.993002 ], [ 82.265625, 29.993002 ], [ 82.265625, 30.145127 ], [ 81.914062, 30.145127 ], [ 81.914062, 30.297018 ], [ 81.210938, 30.297018 ], [ 81.210938, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 30.297018 ], [ 80.507812, 30.297018 ], [ 80.507812, 30.448674 ], [ 80.332031, 30.448674 ], [ 80.332031, 30.600094 ], [ 80.156250, 30.600094 ], [ 80.156250, 30.751278 ], [ 79.804688, 30.751278 ], [ 79.804688, 30.902225 ], [ 79.628906, 30.902225 ], [ 79.628906, 31.052934 ], [ 79.277344, 31.052934 ], [ 79.277344, 31.203405 ], [ 79.101562, 31.203405 ], [ 79.101562, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.653381 ], [ 78.574219, 31.653381 ], [ 78.574219, 32.249974 ], [ 78.398438, 32.249974 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 32.694866 ], [ 79.277344, 32.694866 ], [ 79.277344, 32.990236 ], [ 79.101562, 32.990236 ], [ 79.101562, 33.284620 ], [ 78.925781, 33.284620 ], [ 78.925781, 33.431441 ], [ 78.750000, 33.431441 ], [ 78.750000, 33.870416 ], [ 78.925781, 33.870416 ], [ 78.925781, 34.307144 ], [ 78.750000, 34.307144 ], [ 78.750000, 34.597042 ], [ 78.574219, 34.597042 ], [ 78.574219, 34.741612 ], [ 78.398438, 34.741612 ], [ 78.398438, 34.885931 ], [ 78.222656, 34.885931 ], [ 78.222656, 35.173808 ], [ 78.046875, 35.173808 ], [ 78.046875, 35.317366 ], [ 77.871094, 35.317366 ], [ 77.871094, 35.460670 ], [ 77.519531, 35.460670 ], [ 77.519531, 35.603719 ], [ 76.816406, 35.603719 ], [ 76.816406, 35.746512 ], [ 76.289062, 35.746512 ], [ 76.289062, 35.889050 ], [ 76.113281, 35.889050 ], [ 76.113281, 36.173357 ], [ 75.937500, 36.173357 ], [ 75.937500, 36.597889 ], [ 75.761719, 36.597889 ], [ 75.761719, 36.738884 ], [ 75.585938, 36.738884 ], [ 75.585938, 36.879621 ], [ 75.410156, 36.879621 ], [ 75.410156, 37.020098 ], [ 75.234375, 37.020098 ], [ 75.234375, 37.300275 ], [ 75.058594, 37.300275 ], [ 75.058594, 37.718590 ], [ 74.882812, 37.718590 ], [ 74.882812, 38.410558 ], [ 74.355469, 38.410558 ], [ 74.355469, 38.548165 ], [ 74.003906, 38.548165 ], [ 74.003906, 38.685510 ], [ 73.828125, 38.685510 ], [ 73.828125, 39.095963 ], [ 73.652344, 39.095963 ], [ 73.652344, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 39.504041 ], [ 74.003906, 39.504041 ], [ 74.003906, 39.774769 ], [ 73.828125, 39.774769 ], [ 73.828125, 39.909736 ], [ 74.003906, 39.909736 ], [ 74.003906, 40.044438 ], [ 74.355469, 40.044438 ], [ 74.355469, 40.178873 ], [ 74.707031, 40.178873 ], [ 74.707031, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.149503 ], [ 90.175781, 28.149503 ], [ 90.175781, 28.304381 ], [ 89.824219, 28.304381 ], [ 89.824219, 28.149503 ], [ 89.472656, 28.149503 ], [ 89.472656, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 27.839076 ], [ 89.121094, 27.839076 ], [ 89.121094, 27.527758 ], [ 88.945312, 27.527758 ], [ 88.945312, 27.371767 ], [ 88.769531, 27.371767 ], [ 88.769531, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 28.149503 ], [ 88.417969, 28.149503 ], [ 88.417969, 27.994401 ], [ 86.484375, 27.994401 ], [ 86.484375, 28.149503 ], [ 85.957031, 28.149503 ], [ 85.957031, 28.304381 ], [ 85.605469, 28.304381 ], [ 85.605469, 28.459033 ], [ 85.253906, 28.459033 ], [ 85.253906, 28.613459 ], [ 84.902344, 28.613459 ], [ 84.902344, 28.767659 ], [ 84.375000, 28.767659 ], [ 84.375000, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.847656, 29.228890 ], [ 83.847656, 29.382175 ], [ 83.496094, 29.382175 ], [ 83.496094, 29.535230 ], [ 83.144531, 29.535230 ], [ 83.144531, 29.688053 ], [ 82.792969, 29.688053 ], [ 82.792969, 29.840644 ], [ 82.617188, 29.840644 ], [ 82.617188, 29.993002 ], [ 82.265625, 29.993002 ], [ 82.265625, 30.145127 ], [ 81.914062, 30.145127 ], [ 81.914062, 30.297018 ], [ 81.562500, 30.297018 ], [ 81.562500, 30.448674 ], [ 81.386719, 30.448674 ], [ 81.386719, 30.297018 ], [ 80.683594, 30.297018 ], [ 80.683594, 30.448674 ], [ 80.332031, 30.448674 ], [ 80.332031, 30.600094 ], [ 79.980469, 30.600094 ], [ 79.980469, 30.751278 ], [ 79.628906, 30.751278 ], [ 79.628906, 30.902225 ], [ 79.453125, 30.902225 ], [ 79.453125, 31.052934 ], [ 79.277344, 31.052934 ], [ 79.277344, 31.203405 ], [ 78.925781, 31.203405 ], [ 78.925781, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.503629 ], [ 78.574219, 31.503629 ], [ 78.574219, 32.101190 ], [ 78.398438, 32.101190 ], [ 78.398438, 32.694866 ], [ 78.574219, 32.694866 ], [ 78.574219, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 33.137551 ], [ 78.925781, 33.137551 ], [ 78.925781, 33.431441 ], [ 78.750000, 33.431441 ], [ 78.750000, 34.452218 ], [ 78.574219, 34.452218 ], [ 78.574219, 34.741612 ], [ 78.398438, 34.741612 ], [ 78.398438, 34.885931 ], [ 78.222656, 34.885931 ], [ 78.222656, 35.029996 ], [ 78.046875, 35.029996 ], [ 78.046875, 35.317366 ], [ 77.871094, 35.317366 ], [ 77.871094, 35.460670 ], [ 77.695312, 35.460670 ], [ 77.695312, 35.603719 ], [ 77.343750, 35.603719 ], [ 77.343750, 35.746512 ], [ 76.816406, 35.746512 ], [ 76.816406, 35.889050 ], [ 76.289062, 35.889050 ], [ 76.289062, 36.031332 ], [ 76.113281, 36.031332 ], [ 76.113281, 36.173357 ], [ 75.937500, 36.173357 ], [ 75.937500, 36.456636 ], [ 75.761719, 36.456636 ], [ 75.761719, 36.738884 ], [ 75.585938, 36.738884 ], [ 75.585938, 36.879621 ], [ 75.234375, 36.879621 ], [ 75.234375, 37.020098 ], [ 75.058594, 37.020098 ], [ 75.058594, 37.300275 ], [ 74.882812, 37.300275 ], [ 74.882812, 37.718590 ], [ 74.707031, 37.718590 ], [ 74.707031, 38.410558 ], [ 74.531250, 38.410558 ], [ 74.531250, 38.548165 ], [ 73.828125, 38.548165 ], [ 73.828125, 38.959409 ], [ 73.652344, 38.959409 ], [ 73.652344, 39.639538 ], [ 73.828125, 39.639538 ], [ 73.828125, 39.774769 ], [ 73.652344, 39.774769 ], [ 73.652344, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 40.044438 ], [ 74.179688, 40.044438 ], [ 74.179688, 40.178873 ], [ 74.355469, 40.178873 ], [ 74.355469, 40.313043 ], [ 74.707031, 40.313043 ], [ 74.707031, 40.446947 ], [ 75.234375, 40.446947 ], [ 75.234375, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.464844, 40.446947 ], [ 76.464844, 40.580585 ], [ 76.640625, 40.580585 ], [ 76.640625, 40.847060 ], [ 76.816406, 40.847060 ], [ 76.816406, 41.112469 ], [ 77.519531, 41.112469 ], [ 77.519531, 41.244772 ], [ 78.222656, 41.244772 ], [ 78.222656, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 49.837982 ], [ 89.472656, 49.837982 ], [ 89.472656, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.496675 ], [ 88.593750, 49.496675 ], [ 88.593750, 49.382373 ], [ 88.066406, 49.382373 ], [ 88.066406, 49.267805 ], [ 87.187500, 49.267805 ], [ 87.187500, 49.496675 ], [ 87.011719, 49.496675 ], [ 87.011719, 49.724479 ], [ 86.835938, 49.724479 ], [ 86.835938, 49.837982 ], [ 86.308594, 49.837982 ], [ 86.308594, 49.724479 ], [ 85.429688, 49.724479 ], [ 85.429688, 49.837982 ], [ 85.253906, 49.837982 ], [ 85.253906, 49.951220 ], [ 85.078125, 49.951220 ], [ 85.078125, 50.064192 ], [ 84.726562, 50.064192 ], [ 84.726562, 50.176898 ], [ 84.375000, 50.176898 ], [ 84.375000, 50.289339 ], [ 84.199219, 50.289339 ], [ 84.199219, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.736455 ], [ 83.847656, 50.736455 ], [ 83.847656, 50.847573 ], [ 83.671875, 50.847573 ], [ 83.671875, 50.958427 ], [ 83.320312, 50.958427 ], [ 83.320312, 51.069017 ], [ 83.144531, 51.069017 ], [ 83.144531, 50.958427 ], [ 82.441406, 50.958427 ], [ 82.441406, 50.847573 ], [ 81.738281, 50.847573 ], [ 81.738281, 50.958427 ], [ 81.386719, 50.958427 ], [ 81.386719, 51.069017 ], [ 81.035156, 51.069017 ], [ 81.035156, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 51.289406 ], [ 80.332031, 51.289406 ], [ 80.332031, 51.069017 ], [ 80.156250, 51.069017 ], [ 80.156250, 50.847573 ], [ 79.980469, 50.847573 ], [ 79.980469, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.179343 ], [ 79.628906, 51.179343 ], [ 79.628906, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.277344, 51.618017 ], [ 79.277344, 51.835778 ], [ 79.101562, 51.835778 ], [ 79.101562, 52.052490 ], [ 78.925781, 52.052490 ], [ 78.925781, 52.268157 ], [ 78.750000, 52.268157 ], [ 78.750000, 52.482780 ], [ 78.574219, 52.482780 ], [ 78.574219, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.908902 ], [ 78.222656, 52.908902 ], [ 78.222656, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 53.330873 ], [ 77.871094, 53.330873 ], [ 77.871094, 53.435719 ], [ 77.695312, 53.435719 ], [ 77.695312, 53.540307 ], [ 77.519531, 53.540307 ], [ 77.519531, 53.644638 ], [ 77.343750, 53.644638 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.852527 ], [ 76.816406, 53.852527 ], [ 76.816406, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.059388 ], [ 76.464844, 54.059388 ], [ 76.464844, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 54.367759 ], [ 76.464844, 54.367759 ], [ 76.464844, 54.265224 ], [ 76.289062, 54.265224 ], [ 76.289062, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 54.059388 ], [ 75.761719, 54.059388 ], [ 75.761719, 53.956086 ], [ 75.410156, 53.956086 ], [ 75.410156, 53.852527 ], [ 75.058594, 53.852527 ], [ 75.058594, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.644638 ], [ 74.531250, 53.644638 ], [ 74.531250, 53.540307 ], [ 73.476562, 53.540307 ], [ 73.476562, 54.059388 ], [ 73.125000, 54.059388 ], [ 73.125000, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 54.265224 ], [ 72.421875, 54.265224 ], [ 72.421875, 54.367759 ], [ 72.070312, 54.367759 ], [ 72.070312, 54.265224 ], [ 71.542969, 54.265224 ], [ 71.542969, 54.162434 ], [ 71.191406, 54.162434 ], [ 71.191406, 54.367759 ], [ 71.015625, 54.367759 ], [ 71.015625, 54.876607 ], [ 70.839844, 54.876607 ], [ 70.839844, 55.178868 ], [ 70.312500, 55.178868 ], [ 70.312500, 55.279115 ], [ 69.433594, 55.279115 ], [ 69.433594, 55.379110 ], [ 69.082031, 55.379110 ], [ 69.082031, 55.279115 ], [ 68.906250, 55.279115 ], [ 68.906250, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 55.078367 ], [ 68.378906, 55.078367 ], [ 68.378906, 54.977614 ], [ 68.027344, 54.977614 ], [ 68.027344, 54.876607 ], [ 67.324219, 54.876607 ], [ 67.324219, 54.775346 ], [ 66.796875, 54.775346 ], [ 66.796875, 54.673831 ], [ 66.093750, 54.673831 ], [ 66.093750, 54.572062 ], [ 65.742188, 54.572062 ], [ 65.742188, 54.470038 ], [ 65.390625, 54.470038 ], [ 65.390625, 54.367759 ], [ 64.863281, 54.367759 ], [ 64.863281, 54.265224 ], [ 63.984375, 54.265224 ], [ 63.984375, 54.162434 ], [ 62.929688, 54.162434 ], [ 62.929688, 54.059388 ], [ 62.050781, 54.059388 ], [ 62.050781, 53.956086 ], [ 61.523438, 53.956086 ], [ 61.523438, 53.852527 ], [ 61.347656, 53.852527 ], [ 61.347656, 53.748711 ], [ 61.171875, 53.748711 ], [ 61.171875, 53.644638 ], [ 60.996094, 53.644638 ], [ 60.996094, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 53.330873 ], [ 61.347656, 53.330873 ], [ 61.347656, 53.225768 ], [ 61.523438, 53.225768 ], [ 61.523438, 53.014783 ], [ 61.699219, 53.014783 ], [ 61.699219, 52.908902 ], [ 61.347656, 52.908902 ], [ 61.347656, 52.802761 ], [ 60.996094, 52.802761 ], [ 60.996094, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.589701 ], [ 60.996094, 52.589701 ], [ 60.996094, 52.375599 ], [ 60.820312, 52.375599 ], [ 60.820312, 52.268157 ], [ 60.644531, 52.268157 ], [ 60.644531, 52.160455 ], [ 60.292969, 52.160455 ], [ 60.292969, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 51.944265 ], [ 59.941406, 51.944265 ], [ 59.941406, 51.835778 ], [ 60.292969, 51.835778 ], [ 60.292969, 51.727028 ], [ 60.468750, 51.727028 ], [ 60.468750, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.508742 ], [ 60.996094, 51.508742 ], [ 60.996094, 51.399206 ], [ 61.347656, 51.399206 ], [ 61.347656, 51.289406 ], [ 61.523438, 51.289406 ], [ 61.523438, 51.069017 ], [ 61.347656, 51.069017 ], [ 61.347656, 50.847573 ], [ 59.941406, 50.847573 ], [ 59.941406, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.513427 ], [ 59.414062, 50.513427 ], [ 59.414062, 50.625073 ], [ 59.062500, 50.625073 ], [ 59.062500, 50.736455 ], [ 58.886719, 50.736455 ], [ 58.886719, 50.847573 ], [ 58.710938, 50.847573 ], [ 58.710938, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 56.777344, 50.958427 ], [ 56.425781, 50.958427 ], [ 56.425781, 50.847573 ], [ 56.250000, 50.847573 ], [ 56.250000, 50.736455 ], [ 55.898438, 50.736455 ], [ 55.898438, 50.625073 ], [ 55.546875, 50.625073 ], [ 55.546875, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.847573 ], [ 54.843750, 50.847573 ], [ 54.843750, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 51.069017 ], [ 54.140625, 51.069017 ], [ 54.140625, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 51.289406 ], [ 53.437500, 51.289406 ], [ 53.437500, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.508742 ], [ 52.734375, 51.508742 ], [ 52.734375, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.727028 ], [ 50.800781, 51.727028 ], [ 50.800781, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.508742 ], [ 50.449219, 51.508742 ], [ 50.449219, 51.399206 ], [ 50.097656, 51.399206 ], [ 50.097656, 51.289406 ], [ 49.921875, 51.289406 ], [ 49.921875, 51.179343 ], [ 49.746094, 51.179343 ], [ 49.746094, 51.069017 ], [ 49.570312, 51.069017 ], [ 49.570312, 50.958427 ], [ 49.394531, 50.958427 ], [ 49.394531, 50.847573 ], [ 49.042969, 50.847573 ], [ 49.042969, 50.736455 ], [ 48.867188, 50.736455 ], [ 48.867188, 50.625073 ], [ 48.691406, 50.625073 ], [ 48.691406, 50.176898 ], [ 48.515625, 50.176898 ], [ 48.515625, 49.837982 ], [ 48.339844, 49.837982 ], [ 48.339844, 49.951220 ], [ 48.164062, 49.951220 ], [ 48.164062, 50.064192 ], [ 47.988281, 50.064192 ], [ 47.988281, 50.176898 ], [ 47.812500, 50.176898 ], [ 47.812500, 50.289339 ], [ 47.460938, 50.289339 ], [ 47.460938, 50.064192 ], [ 47.285156, 50.064192 ], [ 47.285156, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 49.610710 ], [ 46.933594, 49.610710 ], [ 46.933594, 49.382373 ], [ 46.757812, 49.382373 ], [ 46.757812, 49.267805 ], [ 46.933594, 49.267805 ], [ 46.933594, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 49.037868 ], [ 46.933594, 49.037868 ], [ 46.933594, 48.806863 ], [ 46.757812, 48.806863 ], [ 46.757812, 48.574790 ], [ 46.582031, 48.574790 ], [ 46.582031, 48.341646 ], [ 46.406250, 48.341646 ], [ 46.406250, 48.224673 ], [ 46.582031, 48.224673 ], [ 46.582031, 48.107431 ], [ 46.757812, 48.107431 ], [ 46.757812, 47.989922 ], [ 46.933594, 47.989922 ], [ 46.933594, 47.872144 ], [ 47.109375, 47.872144 ], [ 47.109375, 47.754098 ], [ 47.988281, 47.754098 ], [ 47.988281, 47.635784 ], [ 48.164062, 47.635784 ], [ 48.164062, 47.398349 ], [ 48.339844, 47.398349 ], [ 48.339844, 47.279229 ], [ 48.515625, 47.279229 ], [ 48.515625, 47.040182 ], [ 48.691406, 47.040182 ], [ 48.691406, 46.800059 ], [ 48.515625, 46.800059 ], [ 48.515625, 46.558860 ], [ 48.691406, 46.558860 ], [ 48.691406, 46.437857 ], [ 49.042969, 46.437857 ], [ 49.042969, 46.195042 ], [ 48.867188, 46.195042 ], [ 48.867188, 45.951150 ], [ 48.691406, 45.951150 ], [ 48.691406, 45.828799 ], [ 48.515625, 45.828799 ], [ 48.515625, 45.706179 ], [ 47.988281, 45.706179 ], [ 47.988281, 45.583290 ], [ 47.636719, 45.583290 ], [ 47.636719, 45.460131 ], [ 47.460938, 45.460131 ], [ 47.460938, 45.213004 ], [ 47.285156, 45.213004 ], [ 47.285156, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.840291 ], [ 46.933594, 44.840291 ], [ 46.933594, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.465151 ], [ 46.933594, 44.465151 ], [ 46.933594, 44.213710 ], [ 47.109375, 44.213710 ], [ 47.109375, 44.087585 ], [ 47.285156, 44.087585 ], [ 47.285156, 43.961191 ], [ 47.460938, 43.961191 ], [ 47.460938, 43.707594 ], [ 47.636719, 43.707594 ], [ 47.636719, 43.325178 ], [ 47.460938, 43.325178 ], [ 47.460938, 42.811522 ], [ 47.636719, 42.811522 ], [ 47.636719, 42.553080 ], [ 47.812500, 42.553080 ], [ 47.812500, 42.423457 ], [ 47.988281, 42.423457 ], [ 47.988281, 42.163403 ], [ 48.164062, 42.163403 ], [ 48.164062, 42.032974 ], [ 48.339844, 42.032974 ], [ 48.339844, 41.771312 ], [ 48.515625, 41.771312 ], [ 48.515625, 41.640078 ], [ 48.339844, 41.640078 ], [ 48.339844, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.112469 ], [ 47.460938, 41.112469 ], [ 47.460938, 41.244772 ], [ 47.285156, 41.244772 ], [ 47.285156, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.640078 ], [ 46.757812, 41.640078 ], [ 46.757812, 41.771312 ], [ 46.406250, 41.771312 ], [ 46.406250, 41.902277 ], [ 45.878906, 41.902277 ], [ 45.878906, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.527344, 42.293564 ], [ 45.527344, 42.553080 ], [ 44.824219, 42.553080 ], [ 44.824219, 42.682435 ], [ 44.472656, 42.682435 ], [ 44.472656, 42.553080 ], [ 44.121094, 42.553080 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.230469, 66.722541 ], [ 46.230469, 66.652977 ], [ 46.757812, 66.652977 ], [ 46.757812, 66.722541 ], [ 47.109375, 66.722541 ], [ 47.109375, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 66.861082 ], [ 72.070312, 66.861082 ], [ 72.070312, 66.791909 ], [ 71.894531, 66.791909 ], [ 71.894531, 66.652977 ], [ 71.718750, 66.652977 ], [ 71.718750, 66.513260 ], [ 71.542969, 66.513260 ], [ 71.542969, 66.372755 ], [ 71.367188, 66.372755 ], [ 71.367188, 66.302205 ], [ 71.542969, 66.302205 ], [ 71.542969, 66.231457 ], [ 72.070312, 66.231457 ], [ 72.070312, 66.160511 ], [ 72.421875, 66.160511 ], [ 72.421875, 66.231457 ], [ 72.597656, 66.231457 ], [ 72.597656, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 72.949219, 66.513260 ], [ 72.949219, 66.583217 ], [ 73.300781, 66.583217 ], [ 73.300781, 66.652977 ], [ 73.652344, 66.652977 ], [ 73.652344, 66.722541 ], [ 74.003906, 66.722541 ], [ 74.003906, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.401515 ], [ 90.703125, 50.401515 ], [ 90.703125, 50.289339 ], [ 90.351562, 50.289339 ], [ 90.351562, 50.176898 ], [ 90.175781, 50.176898 ], [ 90.175781, 50.064192 ], [ 90.000000, 50.064192 ], [ 90.000000, 49.951220 ], [ 89.648438, 49.951220 ], [ 89.648438, 49.837982 ], [ 89.472656, 49.837982 ], [ 89.472656, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.496675 ], [ 88.417969, 49.496675 ], [ 88.417969, 49.382373 ], [ 87.539062, 49.382373 ], [ 87.539062, 49.267805 ], [ 87.011719, 49.267805 ], [ 87.011719, 49.496675 ], [ 86.835938, 49.496675 ], [ 86.835938, 49.724479 ], [ 86.660156, 49.724479 ], [ 86.660156, 49.837982 ], [ 86.132812, 49.837982 ], [ 86.132812, 49.724479 ], [ 85.429688, 49.724479 ], [ 85.429688, 49.837982 ], [ 85.253906, 49.837982 ], [ 85.253906, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 50.176898 ], [ 84.726562, 50.176898 ], [ 84.726562, 50.289339 ], [ 84.375000, 50.289339 ], [ 84.375000, 50.401515 ], [ 84.199219, 50.401515 ], [ 84.199219, 50.625073 ], [ 84.023438, 50.625073 ], [ 84.023438, 50.847573 ], [ 83.847656, 50.847573 ], [ 83.847656, 50.958427 ], [ 83.496094, 50.958427 ], [ 83.496094, 51.069017 ], [ 83.144531, 51.069017 ], [ 83.144531, 50.958427 ], [ 82.441406, 50.958427 ], [ 82.441406, 50.847573 ], [ 81.738281, 50.847573 ], [ 81.738281, 50.958427 ], [ 81.386719, 50.958427 ], [ 81.386719, 51.069017 ], [ 81.035156, 51.069017 ], [ 81.035156, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 51.289406 ], [ 80.332031, 51.289406 ], [ 80.332031, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.179343 ], [ 79.628906, 51.179343 ], [ 79.628906, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.277344, 51.618017 ], [ 79.277344, 51.727028 ], [ 79.101562, 51.727028 ], [ 79.101562, 51.944265 ], [ 78.925781, 51.944265 ], [ 78.925781, 52.160455 ], [ 78.750000, 52.160455 ], [ 78.750000, 52.375599 ], [ 78.574219, 52.375599 ], [ 78.574219, 52.589701 ], [ 78.398438, 52.589701 ], [ 78.398438, 52.696361 ], [ 78.222656, 52.696361 ], [ 78.222656, 52.908902 ], [ 78.046875, 52.908902 ], [ 78.046875, 53.120405 ], [ 77.871094, 53.120405 ], [ 77.871094, 53.330873 ], [ 77.695312, 53.330873 ], [ 77.695312, 53.435719 ], [ 77.519531, 53.435719 ], [ 77.519531, 53.540307 ], [ 77.343750, 53.540307 ], [ 77.343750, 53.644638 ], [ 77.167969, 53.644638 ], [ 77.167969, 53.852527 ], [ 76.992188, 53.852527 ], [ 76.992188, 53.956086 ], [ 76.816406, 53.956086 ], [ 76.816406, 54.059388 ], [ 76.640625, 54.059388 ], [ 76.640625, 54.162434 ], [ 76.464844, 54.162434 ], [ 76.464844, 54.265224 ], [ 76.640625, 54.265224 ], [ 76.640625, 54.470038 ], [ 76.464844, 54.470038 ], [ 76.464844, 54.367759 ], [ 76.289062, 54.367759 ], [ 76.289062, 54.265224 ], [ 75.937500, 54.265224 ], [ 75.937500, 54.162434 ], [ 75.761719, 54.162434 ], [ 75.761719, 54.059388 ], [ 75.410156, 54.059388 ], [ 75.410156, 53.956086 ], [ 75.058594, 53.956086 ], [ 75.058594, 53.852527 ], [ 74.882812, 53.852527 ], [ 74.882812, 53.748711 ], [ 74.531250, 53.748711 ], [ 74.531250, 53.644638 ], [ 74.003906, 53.644638 ], [ 74.003906, 53.540307 ], [ 73.300781, 53.540307 ], [ 73.300781, 53.748711 ], [ 73.476562, 53.748711 ], [ 73.476562, 54.059388 ], [ 73.125000, 54.059388 ], [ 73.125000, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 54.265224 ], [ 72.421875, 54.265224 ], [ 72.421875, 54.367759 ], [ 71.718750, 54.367759 ], [ 71.718750, 54.265224 ], [ 71.367188, 54.265224 ], [ 71.367188, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 54.673831 ], [ 70.839844, 54.673831 ], [ 70.839844, 55.178868 ], [ 70.488281, 55.178868 ], [ 70.488281, 55.279115 ], [ 69.785156, 55.279115 ], [ 69.785156, 55.379110 ], [ 69.082031, 55.379110 ], [ 69.082031, 55.478853 ], [ 68.906250, 55.478853 ], [ 68.906250, 55.379110 ], [ 68.730469, 55.379110 ], [ 68.730469, 55.279115 ], [ 68.554688, 55.279115 ], [ 68.554688, 55.178868 ], [ 68.378906, 55.178868 ], [ 68.378906, 55.078367 ], [ 68.203125, 55.078367 ], [ 68.203125, 54.977614 ], [ 67.675781, 54.977614 ], [ 67.675781, 54.876607 ], [ 66.972656, 54.876607 ], [ 66.972656, 54.775346 ], [ 66.093750, 54.775346 ], [ 66.093750, 54.673831 ], [ 65.566406, 54.673831 ], [ 65.566406, 54.572062 ], [ 65.390625, 54.572062 ], [ 65.390625, 54.470038 ], [ 65.214844, 54.470038 ], [ 65.214844, 54.367759 ], [ 64.511719, 54.367759 ], [ 64.511719, 54.265224 ], [ 63.281250, 54.265224 ], [ 63.281250, 54.162434 ], [ 62.050781, 54.162434 ], [ 62.050781, 54.059388 ], [ 61.347656, 54.059388 ], [ 61.347656, 53.956086 ], [ 61.171875, 53.956086 ], [ 61.171875, 53.852527 ], [ 60.996094, 53.852527 ], [ 60.996094, 53.748711 ], [ 60.820312, 53.748711 ], [ 60.820312, 53.644638 ], [ 60.996094, 53.644638 ], [ 60.996094, 53.435719 ], [ 61.171875, 53.435719 ], [ 61.171875, 53.330873 ], [ 61.347656, 53.330873 ], [ 61.347656, 53.225768 ], [ 61.523438, 53.225768 ], [ 61.523438, 52.908902 ], [ 60.996094, 52.908902 ], [ 60.996094, 52.802761 ], [ 60.644531, 52.802761 ], [ 60.644531, 52.589701 ], [ 60.820312, 52.589701 ], [ 60.820312, 52.375599 ], [ 60.644531, 52.375599 ], [ 60.644531, 52.268157 ], [ 60.292969, 52.268157 ], [ 60.292969, 52.160455 ], [ 60.117188, 52.160455 ], [ 60.117188, 52.052490 ], [ 59.941406, 52.052490 ], [ 59.941406, 51.944265 ], [ 60.117188, 51.944265 ], [ 60.117188, 51.835778 ], [ 60.468750, 51.835778 ], [ 60.468750, 51.727028 ], [ 60.644531, 51.727028 ], [ 60.644531, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.508742 ], [ 61.171875, 51.508742 ], [ 61.171875, 51.399206 ], [ 61.347656, 51.399206 ], [ 61.347656, 51.289406 ], [ 61.523438, 51.289406 ], [ 61.523438, 51.179343 ], [ 61.347656, 51.179343 ], [ 61.347656, 50.958427 ], [ 61.171875, 50.958427 ], [ 61.171875, 50.847573 ], [ 59.765625, 50.847573 ], [ 59.765625, 50.736455 ], [ 59.589844, 50.736455 ], [ 59.589844, 50.625073 ], [ 59.414062, 50.625073 ], [ 59.414062, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.847573 ], [ 58.710938, 50.847573 ], [ 58.710938, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 56.777344, 50.958427 ], [ 56.425781, 50.958427 ], [ 56.425781, 50.847573 ], [ 56.074219, 50.847573 ], [ 56.074219, 50.736455 ], [ 55.722656, 50.736455 ], [ 55.722656, 50.625073 ], [ 55.371094, 50.625073 ], [ 55.371094, 50.736455 ], [ 55.019531, 50.736455 ], [ 55.019531, 50.847573 ], [ 54.843750, 50.847573 ], [ 54.843750, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 51.069017 ], [ 54.140625, 51.069017 ], [ 54.140625, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 51.289406 ], [ 53.437500, 51.289406 ], [ 53.437500, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.508742 ], [ 52.734375, 51.508742 ], [ 52.734375, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.727028 ], [ 50.625000, 51.727028 ], [ 50.625000, 51.618017 ], [ 50.449219, 51.618017 ], [ 50.449219, 51.508742 ], [ 50.273438, 51.508742 ], [ 50.273438, 51.399206 ], [ 50.097656, 51.399206 ], [ 50.097656, 51.289406 ], [ 49.921875, 51.289406 ], [ 49.921875, 51.179343 ], [ 49.570312, 51.179343 ], [ 49.570312, 51.069017 ], [ 49.394531, 51.069017 ], [ 49.394531, 50.958427 ], [ 49.218750, 50.958427 ], [ 49.218750, 50.847573 ], [ 49.042969, 50.847573 ], [ 49.042969, 50.736455 ], [ 48.867188, 50.736455 ], [ 48.867188, 50.625073 ], [ 48.691406, 50.625073 ], [ 48.691406, 50.289339 ], [ 48.515625, 50.289339 ], [ 48.515625, 49.951220 ], [ 48.339844, 49.951220 ], [ 48.339844, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 50.176898 ], [ 47.812500, 50.176898 ], [ 47.812500, 50.289339 ], [ 47.636719, 50.289339 ], [ 47.636719, 50.401515 ], [ 47.285156, 50.401515 ], [ 47.285156, 50.176898 ], [ 47.109375, 50.176898 ], [ 47.109375, 49.951220 ], [ 46.933594, 49.951220 ], [ 46.933594, 49.724479 ], [ 46.757812, 49.724479 ], [ 46.757812, 49.496675 ], [ 46.582031, 49.496675 ], [ 46.582031, 49.267805 ], [ 46.757812, 49.267805 ], [ 46.757812, 49.152970 ], [ 46.933594, 49.152970 ], [ 46.933594, 49.037868 ], [ 46.757812, 49.037868 ], [ 46.757812, 48.806863 ], [ 46.582031, 48.806863 ], [ 46.582031, 48.574790 ], [ 46.406250, 48.574790 ], [ 46.406250, 48.341646 ], [ 46.582031, 48.341646 ], [ 46.582031, 48.224673 ], [ 46.757812, 48.224673 ], [ 46.757812, 48.107431 ], [ 46.933594, 48.107431 ], [ 46.933594, 47.872144 ], [ 47.109375, 47.872144 ], [ 47.109375, 47.754098 ], [ 47.988281, 47.754098 ], [ 47.988281, 47.635784 ], [ 48.164062, 47.635784 ], [ 48.164062, 47.517201 ], [ 48.339844, 47.517201 ], [ 48.339844, 47.279229 ], [ 48.515625, 47.279229 ], [ 48.515625, 47.159840 ], [ 48.691406, 47.159840 ], [ 48.691406, 46.920255 ], [ 48.515625, 46.920255 ], [ 48.515625, 46.558860 ], [ 48.867188, 46.558860 ], [ 48.867188, 46.437857 ], [ 49.042969, 46.437857 ], [ 49.042969, 46.316584 ], [ 48.867188, 46.316584 ], [ 48.867188, 46.073231 ], [ 48.691406, 46.073231 ], [ 48.691406, 45.828799 ], [ 48.164062, 45.828799 ], [ 48.164062, 45.706179 ], [ 47.636719, 45.706179 ], [ 47.636719, 45.583290 ], [ 47.460938, 45.583290 ], [ 47.460938, 45.460131 ], [ 47.285156, 45.460131 ], [ 47.285156, 45.213004 ], [ 47.109375, 45.213004 ], [ 47.109375, 45.089036 ], [ 46.933594, 45.089036 ], [ 46.933594, 44.964798 ], [ 46.757812, 44.964798 ], [ 46.757812, 44.715514 ], [ 46.582031, 44.715514 ], [ 46.582031, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.339565 ], [ 46.933594, 44.339565 ], [ 46.933594, 44.213710 ], [ 47.109375, 44.213710 ], [ 47.109375, 43.961191 ], [ 47.285156, 43.961191 ], [ 47.285156, 43.707594 ], [ 47.460938, 43.707594 ], [ 47.460938, 42.940339 ], [ 47.636719, 42.940339 ], [ 47.636719, 42.682435 ], [ 47.812500, 42.682435 ], [ 47.812500, 42.553080 ], [ 47.988281, 42.553080 ], [ 47.988281, 42.293564 ], [ 48.164062, 42.293564 ], [ 48.164062, 42.163403 ], [ 48.339844, 42.163403 ], [ 48.339844, 41.902277 ], [ 48.515625, 41.902277 ], [ 48.515625, 41.771312 ], [ 48.339844, 41.771312 ], [ 48.339844, 41.640078 ], [ 48.164062, 41.640078 ], [ 48.164062, 41.508577 ], [ 47.988281, 41.508577 ], [ 47.988281, 41.376809 ], [ 47.812500, 41.376809 ], [ 47.812500, 41.244772 ], [ 47.109375, 41.244772 ], [ 47.109375, 41.376809 ], [ 46.933594, 41.376809 ], [ 46.933594, 41.640078 ], [ 46.757812, 41.640078 ], [ 46.757812, 41.771312 ], [ 46.582031, 41.771312 ], [ 46.582031, 41.902277 ], [ 46.054688, 41.902277 ], [ 46.054688, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.163403 ], [ 45.527344, 42.163403 ], [ 45.527344, 42.423457 ], [ 45.351562, 42.423457 ], [ 45.351562, 42.553080 ], [ 45.000000, 42.553080 ], [ 45.000000, 42.682435 ], [ 44.648438, 42.682435 ], [ 44.648438, 42.811522 ], [ 44.472656, 42.811522 ], [ 44.472656, 42.682435 ], [ 44.121094, 42.682435 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.757812, 66.722541 ], [ 46.757812, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 66.861082 ], [ 71.894531, 66.861082 ], [ 71.894531, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.652977 ], [ 71.542969, 66.652977 ], [ 71.542969, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.302205 ], [ 72.070312, 66.302205 ], [ 72.070312, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.302205 ], [ 72.597656, 66.302205 ], [ 72.597656, 66.443107 ], [ 72.773438, 66.443107 ], [ 72.773438, 66.583217 ], [ 73.125000, 66.583217 ], [ 73.125000, 66.652977 ], [ 73.476562, 66.652977 ], [ 73.476562, 66.722541 ], [ 73.828125, 66.722541 ], [ 73.828125, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 42.682435 ], [ 44.824219, 42.553080 ], [ 45.527344, 42.553080 ], [ 45.527344, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 42.032974 ], [ 45.878906, 42.032974 ], [ 45.878906, 41.902277 ], [ 46.406250, 41.902277 ], [ 46.406250, 41.771312 ], [ 46.230469, 41.771312 ], [ 46.230469, 41.640078 ], [ 46.406250, 41.640078 ], [ 46.406250, 41.376809 ], [ 46.582031, 41.376809 ], [ 46.582031, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.112469 ], [ 44.121094, 41.112469 ], [ 44.121094, 42.553080 ], [ 44.472656, 42.553080 ], [ 44.472656, 42.682435 ], [ 44.824219, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.648438, 42.811522 ], [ 44.648438, 42.682435 ], [ 45.000000, 42.682435 ], [ 45.000000, 42.553080 ], [ 45.351562, 42.553080 ], [ 45.351562, 42.423457 ], [ 45.527344, 42.423457 ], [ 45.527344, 42.163403 ], [ 45.703125, 42.163403 ], [ 45.703125, 42.032974 ], [ 46.054688, 42.032974 ], [ 46.054688, 41.902277 ], [ 46.406250, 41.902277 ], [ 46.406250, 41.771312 ], [ 46.054688, 41.771312 ], [ 46.054688, 41.640078 ], [ 46.230469, 41.640078 ], [ 46.230469, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.582031, 41.244772 ], [ 46.582031, 41.112469 ], [ 46.054688, 41.112469 ], [ 46.054688, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.376809 ], [ 44.648438, 41.376809 ], [ 44.648438, 41.244772 ], [ 44.121094, 41.244772 ], [ 44.121094, 42.682435 ], [ 44.472656, 42.682435 ], [ 44.472656, 42.811522 ], [ 44.648438, 42.811522 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.433594, 55.379110 ], [ 69.433594, 55.279115 ], [ 70.312500, 55.279115 ], [ 70.312500, 55.178868 ], [ 70.839844, 55.178868 ], [ 70.839844, 54.876607 ], [ 71.015625, 54.876607 ], [ 71.015625, 54.367759 ], [ 71.191406, 54.367759 ], [ 71.191406, 54.162434 ], [ 71.542969, 54.162434 ], [ 71.542969, 54.265224 ], [ 72.070312, 54.265224 ], [ 72.070312, 54.367759 ], [ 72.421875, 54.367759 ], [ 72.421875, 54.265224 ], [ 72.773438, 54.265224 ], [ 72.773438, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 54.059388 ], [ 73.476562, 54.059388 ], [ 73.476562, 53.540307 ], [ 74.531250, 53.540307 ], [ 74.531250, 53.644638 ], [ 74.882812, 53.644638 ], [ 74.882812, 53.748711 ], [ 75.058594, 53.748711 ], [ 75.058594, 53.852527 ], [ 75.410156, 53.852527 ], [ 75.410156, 53.956086 ], [ 75.761719, 53.956086 ], [ 75.761719, 54.059388 ], [ 75.937500, 54.059388 ], [ 75.937500, 54.162434 ], [ 76.289062, 54.162434 ], [ 76.289062, 54.265224 ], [ 76.464844, 54.265224 ], [ 76.464844, 54.367759 ], [ 76.640625, 54.367759 ], [ 76.640625, 54.162434 ], [ 76.464844, 54.162434 ], [ 76.464844, 54.059388 ], [ 76.640625, 54.059388 ], [ 76.640625, 53.956086 ], [ 76.816406, 53.956086 ], [ 76.816406, 53.852527 ], [ 76.992188, 53.852527 ], [ 76.992188, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.644638 ], [ 77.519531, 53.644638 ], [ 77.519531, 53.540307 ], [ 77.695312, 53.540307 ], [ 77.695312, 53.435719 ], [ 77.871094, 53.435719 ], [ 77.871094, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 53.120405 ], [ 78.222656, 53.120405 ], [ 78.222656, 52.908902 ], [ 78.398438, 52.908902 ], [ 78.398438, 52.696361 ], [ 78.574219, 52.696361 ], [ 78.574219, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 52.268157 ], [ 78.925781, 52.268157 ], [ 78.925781, 52.052490 ], [ 79.101562, 52.052490 ], [ 79.101562, 51.835778 ], [ 79.277344, 51.835778 ], [ 79.277344, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.399206 ], [ 79.628906, 51.399206 ], [ 79.628906, 51.179343 ], [ 79.804688, 51.179343 ], [ 79.804688, 50.958427 ], [ 79.980469, 50.958427 ], [ 79.980469, 50.847573 ], [ 80.156250, 50.847573 ], [ 80.156250, 51.069017 ], [ 80.332031, 51.069017 ], [ 80.332031, 51.289406 ], [ 80.859375, 51.289406 ], [ 80.859375, 51.179343 ], [ 81.035156, 51.179343 ], [ 81.035156, 51.069017 ], [ 81.386719, 51.069017 ], [ 81.386719, 50.958427 ], [ 81.738281, 50.958427 ], [ 81.738281, 50.847573 ], [ 82.441406, 50.847573 ], [ 82.441406, 50.958427 ], [ 83.144531, 50.958427 ], [ 83.144531, 51.069017 ], [ 83.320312, 51.069017 ], [ 83.320312, 50.958427 ], [ 83.671875, 50.958427 ], [ 83.671875, 50.847573 ], [ 83.847656, 50.847573 ], [ 83.847656, 50.736455 ], [ 84.023438, 50.736455 ], [ 84.023438, 50.513427 ], [ 84.199219, 50.513427 ], [ 84.199219, 50.289339 ], [ 84.375000, 50.289339 ], [ 84.375000, 50.176898 ], [ 84.726562, 50.176898 ], [ 84.726562, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 49.951220 ], [ 85.253906, 49.951220 ], [ 85.253906, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 49.724479 ], [ 86.308594, 49.724479 ], [ 86.308594, 49.837982 ], [ 86.835938, 49.837982 ], [ 86.835938, 49.724479 ], [ 87.011719, 49.724479 ], [ 87.011719, 49.496675 ], [ 87.187500, 49.496675 ], [ 87.187500, 49.267805 ], [ 87.363281, 49.267805 ], [ 87.363281, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 48.922499 ], [ 87.011719, 48.922499 ], [ 87.011719, 48.806863 ], [ 86.835938, 48.806863 ], [ 86.835938, 48.574790 ], [ 86.308594, 48.574790 ], [ 86.308594, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.279229 ], [ 85.605469, 47.279229 ], [ 85.605469, 47.159840 ], [ 85.253906, 47.159840 ], [ 85.253906, 47.040182 ], [ 84.550781, 47.040182 ], [ 84.550781, 47.159840 ], [ 83.496094, 47.159840 ], [ 83.496094, 47.279229 ], [ 83.144531, 47.279229 ], [ 83.144531, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 46.558860 ], [ 82.792969, 46.558860 ], [ 82.792969, 46.195042 ], [ 82.617188, 46.195042 ], [ 82.617188, 45.706179 ], [ 82.441406, 45.706179 ], [ 82.441406, 45.460131 ], [ 82.089844, 45.460131 ], [ 82.089844, 45.336702 ], [ 81.738281, 45.336702 ], [ 81.738281, 45.213004 ], [ 81.035156, 45.213004 ], [ 81.035156, 45.089036 ], [ 80.332031, 45.089036 ], [ 80.332031, 44.964798 ], [ 79.980469, 44.964798 ], [ 79.980469, 44.715514 ], [ 80.156250, 44.715514 ], [ 80.156250, 44.339565 ], [ 80.332031, 44.339565 ], [ 80.332031, 44.087585 ], [ 80.507812, 44.087585 ], [ 80.507812, 43.707594 ], [ 80.683594, 43.707594 ], [ 80.683594, 43.325178 ], [ 80.859375, 43.325178 ], [ 80.859375, 43.068888 ], [ 80.507812, 43.068888 ], [ 80.507812, 42.940339 ], [ 80.156250, 42.940339 ], [ 80.156250, 42.553080 ], [ 80.332031, 42.553080 ], [ 80.332031, 42.293564 ], [ 79.980469, 42.293564 ], [ 79.980469, 42.423457 ], [ 79.628906, 42.423457 ], [ 79.628906, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 42.682435 ], [ 79.101562, 42.682435 ], [ 79.101562, 42.811522 ], [ 78.222656, 42.811522 ], [ 78.222656, 42.940339 ], [ 75.234375, 42.940339 ], [ 75.234375, 43.068888 ], [ 74.707031, 43.068888 ], [ 74.707031, 43.197167 ], [ 74.355469, 43.197167 ], [ 74.355469, 43.325178 ], [ 74.179688, 43.325178 ], [ 74.179688, 43.197167 ], [ 73.828125, 43.197167 ], [ 73.828125, 43.068888 ], [ 73.652344, 43.068888 ], [ 73.652344, 42.811522 ], [ 73.476562, 42.811522 ], [ 73.476562, 42.553080 ], [ 72.949219, 42.553080 ], [ 72.949219, 42.682435 ], [ 72.246094, 42.682435 ], [ 72.246094, 42.811522 ], [ 71.718750, 42.811522 ], [ 71.718750, 42.682435 ], [ 71.191406, 42.682435 ], [ 71.191406, 42.423457 ], [ 71.015625, 42.423457 ], [ 71.015625, 42.163403 ], [ 70.664062, 42.163403 ], [ 70.664062, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.902277 ], [ 69.960938, 41.902277 ], [ 69.960938, 41.771312 ], [ 69.785156, 41.771312 ], [ 69.785156, 41.640078 ], [ 69.609375, 41.640078 ], [ 69.609375, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.376809 ], [ 69.082031, 41.376809 ], [ 69.082031, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 40.979898 ], [ 68.730469, 40.979898 ], [ 68.730469, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 66.796875, 41.112469 ], [ 66.796875, 41.244772 ], [ 66.621094, 41.244772 ], [ 66.621094, 41.771312 ], [ 66.445312, 41.771312 ], [ 66.445312, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 42.940339 ], [ 65.917969, 42.940339 ], [ 65.917969, 43.068888 ], [ 65.742188, 43.068888 ], [ 65.742188, 43.197167 ], [ 65.566406, 43.197167 ], [ 65.566406, 43.325178 ], [ 65.214844, 43.325178 ], [ 65.214844, 43.452919 ], [ 65.039062, 43.452919 ], [ 65.039062, 43.580391 ], [ 64.863281, 43.580391 ], [ 64.863281, 43.707594 ], [ 62.929688, 43.707594 ], [ 62.929688, 43.580391 ], [ 62.402344, 43.580391 ], [ 62.402344, 43.452919 ], [ 61.875000, 43.452919 ], [ 61.875000, 43.707594 ], [ 61.699219, 43.707594 ], [ 61.699219, 43.834527 ], [ 61.523438, 43.834527 ], [ 61.523438, 43.961191 ], [ 61.347656, 43.961191 ], [ 61.347656, 44.213710 ], [ 61.171875, 44.213710 ], [ 61.171875, 44.339565 ], [ 60.996094, 44.339565 ], [ 60.996094, 44.465151 ], [ 60.820312, 44.465151 ], [ 60.820312, 44.590467 ], [ 60.468750, 44.590467 ], [ 60.468750, 44.715514 ], [ 60.292969, 44.715514 ], [ 60.292969, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.964798 ], [ 59.765625, 44.964798 ], [ 59.765625, 45.089036 ], [ 59.414062, 45.089036 ], [ 59.414062, 45.213004 ], [ 59.062500, 45.213004 ], [ 59.062500, 45.336702 ], [ 58.710938, 45.336702 ], [ 58.710938, 45.460131 ], [ 58.535156, 45.460131 ], [ 58.535156, 45.583290 ], [ 58.359375, 45.583290 ], [ 58.359375, 45.460131 ], [ 57.832031, 45.460131 ], [ 57.832031, 45.336702 ], [ 57.304688, 45.336702 ], [ 57.304688, 45.213004 ], [ 56.777344, 45.213004 ], [ 56.777344, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 44.964798 ], [ 55.898438, 44.964798 ], [ 55.898438, 41.244772 ], [ 55.195312, 41.244772 ], [ 55.195312, 41.508577 ], [ 55.019531, 41.508577 ], [ 55.019531, 41.640078 ], [ 54.843750, 41.640078 ], [ 54.843750, 41.902277 ], [ 54.667969, 41.902277 ], [ 54.667969, 42.032974 ], [ 54.492188, 42.032974 ], [ 54.492188, 42.163403 ], [ 54.140625, 42.163403 ], [ 54.140625, 42.293564 ], [ 53.613281, 42.293564 ], [ 53.613281, 42.163403 ], [ 52.910156, 42.163403 ], [ 52.910156, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 41.771312 ], [ 52.558594, 41.771312 ], [ 52.558594, 41.902277 ], [ 52.382812, 41.902277 ], [ 52.382812, 42.032974 ], [ 52.558594, 42.032974 ], [ 52.558594, 42.293564 ], [ 52.734375, 42.293564 ], [ 52.734375, 42.553080 ], [ 52.558594, 42.553080 ], [ 52.558594, 42.811522 ], [ 52.207031, 42.811522 ], [ 52.207031, 42.940339 ], [ 51.503906, 42.940339 ], [ 51.503906, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.325178 ], [ 51.152344, 43.325178 ], [ 51.152344, 43.834527 ], [ 50.976562, 43.834527 ], [ 50.976562, 44.087585 ], [ 50.625000, 44.087585 ], [ 50.625000, 44.213710 ], [ 50.273438, 44.213710 ], [ 50.273438, 44.590467 ], [ 50.625000, 44.590467 ], [ 50.625000, 44.465151 ], [ 51.328125, 44.465151 ], [ 51.328125, 45.213004 ], [ 51.679688, 45.213004 ], [ 51.679688, 45.336702 ], [ 52.031250, 45.336702 ], [ 52.031250, 45.460131 ], [ 52.382812, 45.460131 ], [ 52.382812, 45.336702 ], [ 52.734375, 45.336702 ], [ 52.734375, 45.213004 ], [ 53.085938, 45.213004 ], [ 53.085938, 45.706179 ], [ 53.261719, 45.706179 ], [ 53.261719, 46.437857 ], [ 53.085938, 46.437857 ], [ 53.085938, 46.800059 ], [ 51.679688, 46.800059 ], [ 51.679688, 46.920255 ], [ 51.328125, 46.920255 ], [ 51.328125, 47.040182 ], [ 51.152344, 47.040182 ], [ 51.152344, 46.920255 ], [ 50.800781, 46.920255 ], [ 50.800781, 46.800059 ], [ 50.625000, 46.800059 ], [ 50.625000, 46.679594 ], [ 50.273438, 46.679594 ], [ 50.273438, 46.558860 ], [ 49.746094, 46.558860 ], [ 49.746094, 46.437857 ], [ 48.691406, 46.437857 ], [ 48.691406, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 46.800059 ], [ 48.691406, 46.800059 ], [ 48.691406, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 47.279229 ], [ 48.339844, 47.279229 ], [ 48.339844, 47.398349 ], [ 48.164062, 47.398349 ], [ 48.164062, 47.635784 ], [ 47.988281, 47.635784 ], [ 47.988281, 47.754098 ], [ 47.109375, 47.754098 ], [ 47.109375, 47.872144 ], [ 46.933594, 47.872144 ], [ 46.933594, 47.989922 ], [ 46.757812, 47.989922 ], [ 46.757812, 48.107431 ], [ 46.582031, 48.107431 ], [ 46.582031, 48.224673 ], [ 46.406250, 48.224673 ], [ 46.406250, 48.341646 ], [ 46.582031, 48.341646 ], [ 46.582031, 48.574790 ], [ 46.757812, 48.574790 ], [ 46.757812, 48.806863 ], [ 46.933594, 48.806863 ], [ 46.933594, 49.037868 ], [ 47.109375, 49.037868 ], [ 47.109375, 49.152970 ], [ 46.933594, 49.152970 ], [ 46.933594, 49.267805 ], [ 46.757812, 49.267805 ], [ 46.757812, 49.382373 ], [ 46.933594, 49.382373 ], [ 46.933594, 49.610710 ], [ 47.109375, 49.610710 ], [ 47.109375, 49.837982 ], [ 47.285156, 49.837982 ], [ 47.285156, 50.064192 ], [ 47.460938, 50.064192 ], [ 47.460938, 50.289339 ], [ 47.812500, 50.289339 ], [ 47.812500, 50.176898 ], [ 47.988281, 50.176898 ], [ 47.988281, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 49.951220 ], [ 48.339844, 49.951220 ], [ 48.339844, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.176898 ], [ 48.691406, 50.176898 ], [ 48.691406, 50.625073 ], [ 48.867188, 50.625073 ], [ 48.867188, 50.736455 ], [ 49.042969, 50.736455 ], [ 49.042969, 50.847573 ], [ 49.394531, 50.847573 ], [ 49.394531, 50.958427 ], [ 49.570312, 50.958427 ], [ 49.570312, 51.069017 ], [ 49.746094, 51.069017 ], [ 49.746094, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 51.289406 ], [ 50.097656, 51.289406 ], [ 50.097656, 51.399206 ], [ 50.449219, 51.399206 ], [ 50.449219, 51.508742 ], [ 50.625000, 51.508742 ], [ 50.625000, 51.618017 ], [ 50.800781, 51.618017 ], [ 50.800781, 51.727028 ], [ 52.382812, 51.727028 ], [ 52.382812, 51.618017 ], [ 52.734375, 51.618017 ], [ 52.734375, 51.508742 ], [ 53.085938, 51.508742 ], [ 53.085938, 51.399206 ], [ 53.437500, 51.399206 ], [ 53.437500, 51.289406 ], [ 53.789062, 51.289406 ], [ 53.789062, 51.179343 ], [ 54.140625, 51.179343 ], [ 54.140625, 51.069017 ], [ 54.492188, 51.069017 ], [ 54.492188, 50.958427 ], [ 54.843750, 50.958427 ], [ 54.843750, 50.847573 ], [ 55.195312, 50.847573 ], [ 55.195312, 50.736455 ], [ 55.546875, 50.736455 ], [ 55.546875, 50.625073 ], [ 55.898438, 50.625073 ], [ 55.898438, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 50.847573 ], [ 56.425781, 50.847573 ], [ 56.425781, 50.958427 ], [ 56.777344, 50.958427 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 58.359375, 50.958427 ], [ 58.710938, 50.958427 ], [ 58.710938, 50.847573 ], [ 58.886719, 50.847573 ], [ 58.886719, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.625073 ], [ 59.414062, 50.625073 ], [ 59.414062, 50.513427 ], [ 59.765625, 50.513427 ], [ 59.765625, 50.736455 ], [ 59.941406, 50.736455 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.847573 ], [ 61.347656, 51.069017 ], [ 61.523438, 51.069017 ], [ 61.523438, 51.289406 ], [ 61.347656, 51.289406 ], [ 61.347656, 51.399206 ], [ 60.996094, 51.399206 ], [ 60.996094, 51.508742 ], [ 60.820312, 51.508742 ], [ 60.820312, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 51.727028 ], [ 60.292969, 51.727028 ], [ 60.292969, 51.835778 ], [ 59.941406, 51.835778 ], [ 59.941406, 51.944265 ], [ 60.117188, 51.944265 ], [ 60.117188, 52.052490 ], [ 60.292969, 52.052490 ], [ 60.292969, 52.160455 ], [ 60.644531, 52.160455 ], [ 60.644531, 52.268157 ], [ 60.820312, 52.268157 ], [ 60.820312, 52.375599 ], [ 60.996094, 52.375599 ], [ 60.996094, 52.589701 ], [ 60.820312, 52.589701 ], [ 60.820312, 52.696361 ], [ 60.996094, 52.696361 ], [ 60.996094, 52.802761 ], [ 61.347656, 52.802761 ], [ 61.347656, 52.908902 ], [ 61.699219, 52.908902 ], [ 61.699219, 53.014783 ], [ 61.523438, 53.014783 ], [ 61.523438, 53.225768 ], [ 61.347656, 53.225768 ], [ 61.347656, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 53.540307 ], [ 60.996094, 53.540307 ], [ 60.996094, 53.644638 ], [ 61.171875, 53.644638 ], [ 61.171875, 53.748711 ], [ 61.347656, 53.748711 ], [ 61.347656, 53.852527 ], [ 61.523438, 53.852527 ], [ 61.523438, 53.956086 ], [ 62.050781, 53.956086 ], [ 62.050781, 54.059388 ], [ 62.929688, 54.059388 ], [ 62.929688, 54.162434 ], [ 63.984375, 54.162434 ], [ 63.984375, 54.265224 ], [ 64.863281, 54.265224 ], [ 64.863281, 54.367759 ], [ 65.390625, 54.367759 ], [ 65.390625, 54.470038 ], [ 65.742188, 54.470038 ], [ 65.742188, 54.572062 ], [ 66.093750, 54.572062 ], [ 66.093750, 54.673831 ], [ 66.796875, 54.673831 ], [ 66.796875, 54.775346 ], [ 67.324219, 54.775346 ], [ 67.324219, 54.876607 ], [ 68.027344, 54.876607 ], [ 68.027344, 54.977614 ], [ 68.378906, 54.977614 ], [ 68.378906, 55.078367 ], [ 68.554688, 55.078367 ], [ 68.554688, 55.178868 ], [ 68.906250, 55.178868 ], [ 68.906250, 55.279115 ], [ 69.082031, 55.279115 ], [ 69.082031, 55.379110 ], [ 69.433594, 55.379110 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, 55.478853 ], [ 69.082031, 55.379110 ], [ 69.785156, 55.379110 ], [ 69.785156, 55.279115 ], [ 70.488281, 55.279115 ], [ 70.488281, 55.178868 ], [ 70.839844, 55.178868 ], [ 70.839844, 54.673831 ], [ 71.015625, 54.673831 ], [ 71.015625, 54.162434 ], [ 71.367188, 54.162434 ], [ 71.367188, 54.265224 ], [ 71.718750, 54.265224 ], [ 71.718750, 54.367759 ], [ 72.421875, 54.367759 ], [ 72.421875, 54.265224 ], [ 72.773438, 54.265224 ], [ 72.773438, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 54.059388 ], [ 73.476562, 54.059388 ], [ 73.476562, 53.748711 ], [ 73.300781, 53.748711 ], [ 73.300781, 53.540307 ], [ 74.003906, 53.540307 ], [ 74.003906, 53.644638 ], [ 74.531250, 53.644638 ], [ 74.531250, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.852527 ], [ 75.058594, 53.852527 ], [ 75.058594, 53.956086 ], [ 75.410156, 53.956086 ], [ 75.410156, 54.059388 ], [ 75.761719, 54.059388 ], [ 75.761719, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 54.265224 ], [ 76.289062, 54.265224 ], [ 76.289062, 54.367759 ], [ 76.464844, 54.367759 ], [ 76.464844, 54.470038 ], [ 76.640625, 54.470038 ], [ 76.640625, 54.265224 ], [ 76.464844, 54.265224 ], [ 76.464844, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 54.059388 ], [ 76.816406, 54.059388 ], [ 76.816406, 53.956086 ], [ 76.992188, 53.956086 ], [ 76.992188, 53.852527 ], [ 77.167969, 53.852527 ], [ 77.167969, 53.644638 ], [ 77.343750, 53.644638 ], [ 77.343750, 53.540307 ], [ 77.519531, 53.540307 ], [ 77.519531, 53.435719 ], [ 77.695312, 53.435719 ], [ 77.695312, 53.330873 ], [ 77.871094, 53.330873 ], [ 77.871094, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 52.908902 ], [ 78.222656, 52.908902 ], [ 78.222656, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.589701 ], [ 78.574219, 52.589701 ], [ 78.574219, 52.375599 ], [ 78.750000, 52.375599 ], [ 78.750000, 52.160455 ], [ 78.925781, 52.160455 ], [ 78.925781, 51.944265 ], [ 79.101562, 51.944265 ], [ 79.101562, 51.727028 ], [ 79.277344, 51.727028 ], [ 79.277344, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.399206 ], [ 79.628906, 51.399206 ], [ 79.628906, 51.179343 ], [ 79.804688, 51.179343 ], [ 79.804688, 50.958427 ], [ 80.156250, 50.958427 ], [ 80.156250, 51.179343 ], [ 80.332031, 51.179343 ], [ 80.332031, 51.289406 ], [ 80.859375, 51.289406 ], [ 80.859375, 51.179343 ], [ 81.035156, 51.179343 ], [ 81.035156, 51.069017 ], [ 81.386719, 51.069017 ], [ 81.386719, 50.958427 ], [ 81.738281, 50.958427 ], [ 81.738281, 50.847573 ], [ 82.441406, 50.847573 ], [ 82.441406, 50.958427 ], [ 83.144531, 50.958427 ], [ 83.144531, 51.069017 ], [ 83.496094, 51.069017 ], [ 83.496094, 50.958427 ], [ 83.847656, 50.958427 ], [ 83.847656, 50.847573 ], [ 84.023438, 50.847573 ], [ 84.023438, 50.625073 ], [ 84.199219, 50.625073 ], [ 84.199219, 50.401515 ], [ 84.375000, 50.401515 ], [ 84.375000, 50.289339 ], [ 84.726562, 50.289339 ], [ 84.726562, 50.176898 ], [ 85.078125, 50.176898 ], [ 85.078125, 50.064192 ], [ 85.253906, 50.064192 ], [ 85.253906, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 49.724479 ], [ 86.132812, 49.724479 ], [ 86.132812, 49.837982 ], [ 86.660156, 49.837982 ], [ 86.660156, 49.724479 ], [ 86.835938, 49.724479 ], [ 86.835938, 49.496675 ], [ 87.011719, 49.496675 ], [ 87.011719, 49.267805 ], [ 87.187500, 49.267805 ], [ 87.187500, 49.152970 ], [ 87.011719, 49.152970 ], [ 87.011719, 48.922499 ], [ 86.835938, 48.922499 ], [ 86.835938, 48.806863 ], [ 86.660156, 48.806863 ], [ 86.660156, 48.574790 ], [ 86.132812, 48.574790 ], [ 86.132812, 48.458352 ], [ 85.605469, 48.458352 ], [ 85.605469, 47.398349 ], [ 85.429688, 47.398349 ], [ 85.429688, 47.279229 ], [ 85.253906, 47.279229 ], [ 85.253906, 47.040182 ], [ 84.726562, 47.040182 ], [ 84.726562, 47.159840 ], [ 84.023438, 47.159840 ], [ 84.023438, 47.279229 ], [ 83.320312, 47.279229 ], [ 83.320312, 47.398349 ], [ 83.144531, 47.398349 ], [ 83.144531, 47.159840 ], [ 82.968750, 47.159840 ], [ 82.968750, 46.679594 ], [ 82.792969, 46.679594 ], [ 82.792969, 46.195042 ], [ 82.617188, 46.195042 ], [ 82.617188, 45.706179 ], [ 82.441406, 45.706179 ], [ 82.441406, 45.460131 ], [ 82.089844, 45.460131 ], [ 82.089844, 45.336702 ], [ 81.738281, 45.336702 ], [ 81.738281, 45.213004 ], [ 81.035156, 45.213004 ], [ 81.035156, 45.089036 ], [ 80.332031, 45.089036 ], [ 80.332031, 44.964798 ], [ 79.804688, 44.964798 ], [ 79.804688, 44.715514 ], [ 79.980469, 44.715514 ], [ 79.980469, 44.465151 ], [ 80.156250, 44.465151 ], [ 80.156250, 44.213710 ], [ 80.332031, 44.213710 ], [ 80.332031, 43.834527 ], [ 80.507812, 43.834527 ], [ 80.507812, 43.580391 ], [ 80.683594, 43.580391 ], [ 80.683594, 43.325178 ], [ 80.859375, 43.325178 ], [ 80.859375, 43.068888 ], [ 80.507812, 43.068888 ], [ 80.507812, 42.940339 ], [ 80.156250, 42.940339 ], [ 80.156250, 42.423457 ], [ 79.804688, 42.423457 ], [ 79.804688, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 42.682435 ], [ 79.277344, 42.682435 ], [ 79.277344, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 42.940339 ], [ 78.222656, 42.940339 ], [ 78.222656, 43.068888 ], [ 75.937500, 43.068888 ], [ 75.937500, 42.940339 ], [ 75.234375, 42.940339 ], [ 75.234375, 43.068888 ], [ 74.707031, 43.068888 ], [ 74.707031, 43.197167 ], [ 74.355469, 43.197167 ], [ 74.355469, 43.325178 ], [ 74.003906, 43.325178 ], [ 74.003906, 43.197167 ], [ 73.476562, 43.197167 ], [ 73.476562, 42.553080 ], [ 73.125000, 42.553080 ], [ 73.125000, 42.682435 ], [ 72.421875, 42.682435 ], [ 72.421875, 42.811522 ], [ 71.894531, 42.811522 ], [ 71.894531, 42.940339 ], [ 71.542969, 42.940339 ], [ 71.542969, 42.811522 ], [ 71.015625, 42.811522 ], [ 71.015625, 42.553080 ], [ 70.839844, 42.553080 ], [ 70.839844, 42.293564 ], [ 70.664062, 42.293564 ], [ 70.664062, 42.163403 ], [ 70.312500, 42.163403 ], [ 70.312500, 42.032974 ], [ 69.960938, 42.032974 ], [ 69.960938, 41.902277 ], [ 69.785156, 41.902277 ], [ 69.785156, 41.771312 ], [ 69.433594, 41.771312 ], [ 69.433594, 41.640078 ], [ 69.082031, 41.640078 ], [ 69.082031, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 41.244772 ], [ 68.730469, 41.244772 ], [ 68.730469, 40.847060 ], [ 68.554688, 40.847060 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 67.851562, 41.112469 ], [ 67.851562, 41.244772 ], [ 66.621094, 41.244772 ], [ 66.621094, 41.640078 ], [ 66.445312, 41.640078 ], [ 66.445312, 42.032974 ], [ 65.917969, 42.032974 ], [ 65.917969, 42.553080 ], [ 66.093750, 42.553080 ], [ 66.093750, 43.068888 ], [ 65.917969, 43.068888 ], [ 65.917969, 43.197167 ], [ 65.742188, 43.197167 ], [ 65.742188, 43.325178 ], [ 65.566406, 43.325178 ], [ 65.566406, 43.452919 ], [ 65.214844, 43.452919 ], [ 65.214844, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.707594 ], [ 64.863281, 43.707594 ], [ 64.863281, 43.834527 ], [ 64.160156, 43.834527 ], [ 64.160156, 43.707594 ], [ 62.578125, 43.707594 ], [ 62.578125, 43.580391 ], [ 61.699219, 43.580391 ], [ 61.699219, 43.834527 ], [ 61.523438, 43.834527 ], [ 61.523438, 43.961191 ], [ 61.347656, 43.961191 ], [ 61.347656, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.339565 ], [ 60.996094, 44.339565 ], [ 60.996094, 44.465151 ], [ 60.820312, 44.465151 ], [ 60.820312, 44.590467 ], [ 60.468750, 44.590467 ], [ 60.468750, 44.715514 ], [ 60.117188, 44.715514 ], [ 60.117188, 44.840291 ], [ 59.941406, 44.840291 ], [ 59.941406, 44.964798 ], [ 59.589844, 44.964798 ], [ 59.589844, 45.089036 ], [ 59.414062, 45.089036 ], [ 59.414062, 45.213004 ], [ 59.062500, 45.213004 ], [ 59.062500, 45.336702 ], [ 58.886719, 45.336702 ], [ 58.886719, 45.460131 ], [ 58.535156, 45.460131 ], [ 58.535156, 45.583290 ], [ 58.359375, 45.583290 ], [ 58.359375, 45.706179 ], [ 58.183594, 45.706179 ], [ 58.183594, 45.583290 ], [ 57.656250, 45.583290 ], [ 57.656250, 45.460131 ], [ 57.304688, 45.460131 ], [ 57.304688, 45.336702 ], [ 56.777344, 45.336702 ], [ 56.777344, 45.213004 ], [ 56.250000, 45.213004 ], [ 56.250000, 45.089036 ], [ 55.898438, 45.089036 ], [ 55.898438, 41.376809 ], [ 55.195312, 41.376809 ], [ 55.195312, 41.640078 ], [ 55.019531, 41.640078 ], [ 55.019531, 41.771312 ], [ 54.843750, 41.771312 ], [ 54.843750, 42.032974 ], [ 54.667969, 42.032974 ], [ 54.667969, 42.163403 ], [ 54.316406, 42.163403 ], [ 54.316406, 42.293564 ], [ 53.964844, 42.293564 ], [ 53.964844, 42.423457 ], [ 53.789062, 42.423457 ], [ 53.789062, 42.293564 ], [ 53.261719, 42.293564 ], [ 53.261719, 42.163403 ], [ 52.910156, 42.163403 ], [ 52.910156, 42.032974 ], [ 52.558594, 42.032974 ], [ 52.558594, 41.902277 ], [ 52.382812, 41.902277 ], [ 52.382812, 42.293564 ], [ 52.558594, 42.293564 ], [ 52.558594, 42.682435 ], [ 52.382812, 42.682435 ], [ 52.382812, 42.811522 ], [ 52.031250, 42.811522 ], [ 52.031250, 42.940339 ], [ 51.679688, 42.940339 ], [ 51.679688, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.325178 ], [ 51.152344, 43.325178 ], [ 51.152344, 43.580391 ], [ 50.976562, 43.580391 ], [ 50.976562, 43.834527 ], [ 50.800781, 43.834527 ], [ 50.800781, 44.087585 ], [ 50.625000, 44.087585 ], [ 50.625000, 44.213710 ], [ 50.273438, 44.213710 ], [ 50.273438, 44.715514 ], [ 50.625000, 44.715514 ], [ 50.625000, 44.590467 ], [ 51.152344, 44.590467 ], [ 51.152344, 45.336702 ], [ 51.679688, 45.336702 ], [ 51.679688, 45.460131 ], [ 52.382812, 45.460131 ], [ 52.382812, 45.336702 ], [ 52.910156, 45.336702 ], [ 52.910156, 45.828799 ], [ 53.085938, 45.828799 ], [ 53.085938, 46.558860 ], [ 52.910156, 46.558860 ], [ 52.910156, 46.920255 ], [ 51.679688, 46.920255 ], [ 51.679688, 47.040182 ], [ 51.328125, 47.040182 ], [ 51.328125, 47.159840 ], [ 51.152344, 47.159840 ], [ 51.152344, 47.040182 ], [ 50.800781, 47.040182 ], [ 50.800781, 46.920255 ], [ 50.449219, 46.920255 ], [ 50.449219, 46.800059 ], [ 50.097656, 46.800059 ], [ 50.097656, 46.679594 ], [ 49.746094, 46.679594 ], [ 49.746094, 46.558860 ], [ 49.394531, 46.558860 ], [ 49.394531, 46.437857 ], [ 48.867188, 46.437857 ], [ 48.867188, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 46.920255 ], [ 48.691406, 46.920255 ], [ 48.691406, 47.159840 ], [ 48.515625, 47.159840 ], [ 48.515625, 47.279229 ], [ 48.339844, 47.279229 ], [ 48.339844, 47.517201 ], [ 48.164062, 47.517201 ], [ 48.164062, 47.635784 ], [ 47.988281, 47.635784 ], [ 47.988281, 47.754098 ], [ 47.109375, 47.754098 ], [ 47.109375, 47.872144 ], [ 46.933594, 47.872144 ], [ 46.933594, 48.107431 ], [ 46.757812, 48.107431 ], [ 46.757812, 48.224673 ], [ 46.582031, 48.224673 ], [ 46.582031, 48.341646 ], [ 46.406250, 48.341646 ], [ 46.406250, 48.574790 ], [ 46.582031, 48.574790 ], [ 46.582031, 48.806863 ], [ 46.757812, 48.806863 ], [ 46.757812, 49.037868 ], [ 46.933594, 49.037868 ], [ 46.933594, 49.152970 ], [ 46.757812, 49.152970 ], [ 46.757812, 49.267805 ], [ 46.582031, 49.267805 ], [ 46.582031, 49.496675 ], [ 46.757812, 49.496675 ], [ 46.757812, 49.724479 ], [ 46.933594, 49.724479 ], [ 46.933594, 49.951220 ], [ 47.109375, 49.951220 ], [ 47.109375, 50.176898 ], [ 47.285156, 50.176898 ], [ 47.285156, 50.401515 ], [ 47.636719, 50.401515 ], [ 47.636719, 50.289339 ], [ 47.812500, 50.289339 ], [ 47.812500, 50.176898 ], [ 48.164062, 50.176898 ], [ 48.164062, 50.064192 ], [ 48.339844, 50.064192 ], [ 48.339844, 49.951220 ], [ 48.515625, 49.951220 ], [ 48.515625, 50.289339 ], [ 48.691406, 50.289339 ], [ 48.691406, 50.625073 ], [ 48.867188, 50.625073 ], [ 48.867188, 50.736455 ], [ 49.042969, 50.736455 ], [ 49.042969, 50.847573 ], [ 49.218750, 50.847573 ], [ 49.218750, 50.958427 ], [ 49.394531, 50.958427 ], [ 49.394531, 51.069017 ], [ 49.570312, 51.069017 ], [ 49.570312, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 51.289406 ], [ 50.097656, 51.289406 ], [ 50.097656, 51.399206 ], [ 50.273438, 51.399206 ], [ 50.273438, 51.508742 ], [ 50.449219, 51.508742 ], [ 50.449219, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.727028 ], [ 52.382812, 51.727028 ], [ 52.382812, 51.618017 ], [ 52.734375, 51.618017 ], [ 52.734375, 51.508742 ], [ 53.085938, 51.508742 ], [ 53.085938, 51.399206 ], [ 53.437500, 51.399206 ], [ 53.437500, 51.289406 ], [ 53.789062, 51.289406 ], [ 53.789062, 51.179343 ], [ 54.140625, 51.179343 ], [ 54.140625, 51.069017 ], [ 54.492188, 51.069017 ], [ 54.492188, 50.958427 ], [ 54.843750, 50.958427 ], [ 54.843750, 50.847573 ], [ 55.019531, 50.847573 ], [ 55.019531, 50.736455 ], [ 55.371094, 50.736455 ], [ 55.371094, 50.625073 ], [ 55.722656, 50.625073 ], [ 55.722656, 50.736455 ], [ 56.074219, 50.736455 ], [ 56.074219, 50.847573 ], [ 56.425781, 50.847573 ], [ 56.425781, 50.958427 ], [ 56.777344, 50.958427 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 58.359375, 50.958427 ], [ 58.710938, 50.958427 ], [ 58.710938, 50.847573 ], [ 59.062500, 50.847573 ], [ 59.062500, 50.736455 ], [ 59.414062, 50.736455 ], [ 59.414062, 50.625073 ], [ 59.589844, 50.625073 ], [ 59.589844, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.847573 ], [ 61.171875, 50.847573 ], [ 61.171875, 50.958427 ], [ 61.347656, 50.958427 ], [ 61.347656, 51.179343 ], [ 61.523438, 51.179343 ], [ 61.523438, 51.289406 ], [ 61.347656, 51.289406 ], [ 61.347656, 51.399206 ], [ 61.171875, 51.399206 ], [ 61.171875, 51.508742 ], [ 60.820312, 51.508742 ], [ 60.820312, 51.618017 ], [ 60.644531, 51.618017 ], [ 60.644531, 51.727028 ], [ 60.468750, 51.727028 ], [ 60.468750, 51.835778 ], [ 60.117188, 51.835778 ], [ 60.117188, 51.944265 ], [ 59.941406, 51.944265 ], [ 59.941406, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 52.160455 ], [ 60.292969, 52.160455 ], [ 60.292969, 52.268157 ], [ 60.644531, 52.268157 ], [ 60.644531, 52.375599 ], [ 60.820312, 52.375599 ], [ 60.820312, 52.589701 ], [ 60.644531, 52.589701 ], [ 60.644531, 52.802761 ], [ 60.996094, 52.802761 ], [ 60.996094, 52.908902 ], [ 61.523438, 52.908902 ], [ 61.523438, 53.225768 ], [ 61.347656, 53.225768 ], [ 61.347656, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 53.435719 ], [ 60.996094, 53.435719 ], [ 60.996094, 53.644638 ], [ 60.820312, 53.644638 ], [ 60.820312, 53.748711 ], [ 60.996094, 53.748711 ], [ 60.996094, 53.852527 ], [ 61.171875, 53.852527 ], [ 61.171875, 53.956086 ], [ 61.347656, 53.956086 ], [ 61.347656, 54.059388 ], [ 62.050781, 54.059388 ], [ 62.050781, 54.162434 ], [ 63.281250, 54.162434 ], [ 63.281250, 54.265224 ], [ 64.511719, 54.265224 ], [ 64.511719, 54.367759 ], [ 65.214844, 54.367759 ], [ 65.214844, 54.470038 ], [ 65.390625, 54.470038 ], [ 65.390625, 54.572062 ], [ 65.566406, 54.572062 ], [ 65.566406, 54.673831 ], [ 66.093750, 54.673831 ], [ 66.093750, 54.775346 ], [ 66.972656, 54.775346 ], [ 66.972656, 54.876607 ], [ 67.675781, 54.876607 ], [ 67.675781, 54.977614 ], [ 68.203125, 54.977614 ], [ 68.203125, 55.078367 ], [ 68.378906, 55.078367 ], [ 68.378906, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 55.279115 ], [ 68.730469, 55.279115 ], [ 68.730469, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 55.478853 ], [ 69.082031, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.535156, 45.583290 ], [ 58.535156, 45.460131 ], [ 58.710938, 45.460131 ], [ 58.710938, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.213004 ], [ 59.414062, 45.213004 ], [ 59.414062, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.964798 ], [ 60.117188, 44.964798 ], [ 60.117188, 44.840291 ], [ 60.292969, 44.840291 ], [ 60.292969, 44.715514 ], [ 60.468750, 44.715514 ], [ 60.468750, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.465151 ], [ 60.996094, 44.465151 ], [ 60.996094, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.213710 ], [ 61.347656, 44.213710 ], [ 61.347656, 43.961191 ], [ 61.523438, 43.961191 ], [ 61.523438, 43.834527 ], [ 61.699219, 43.834527 ], [ 61.699219, 43.707594 ], [ 61.875000, 43.707594 ], [ 61.875000, 43.452919 ], [ 62.402344, 43.452919 ], [ 62.402344, 43.580391 ], [ 62.929688, 43.580391 ], [ 62.929688, 43.707594 ], [ 64.863281, 43.707594 ], [ 64.863281, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.452919 ], [ 65.214844, 43.452919 ], [ 65.214844, 43.325178 ], [ 65.566406, 43.325178 ], [ 65.566406, 43.197167 ], [ 65.742188, 43.197167 ], [ 65.742188, 43.068888 ], [ 65.917969, 43.068888 ], [ 65.917969, 42.940339 ], [ 66.093750, 42.940339 ], [ 66.093750, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.771312 ], [ 66.621094, 41.771312 ], [ 66.621094, 41.244772 ], [ 66.796875, 41.244772 ], [ 66.796875, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.730469, 40.713956 ], [ 68.730469, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.244772 ], [ 69.082031, 41.244772 ], [ 69.082031, 41.376809 ], [ 69.257812, 41.376809 ], [ 69.257812, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.640078 ], [ 69.785156, 41.640078 ], [ 69.785156, 41.771312 ], [ 69.960938, 41.771312 ], [ 69.960938, 41.902277 ], [ 70.312500, 41.902277 ], [ 70.312500, 42.032974 ], [ 70.664062, 42.032974 ], [ 70.664062, 42.163403 ], [ 71.191406, 42.163403 ], [ 71.191406, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.902277 ], [ 70.839844, 41.902277 ], [ 70.839844, 41.640078 ], [ 70.664062, 41.640078 ], [ 70.664062, 41.508577 ], [ 70.488281, 41.508577 ], [ 70.488281, 41.376809 ], [ 70.664062, 41.376809 ], [ 70.664062, 41.244772 ], [ 71.015625, 41.244772 ], [ 71.015625, 41.112469 ], [ 71.542969, 41.112469 ], [ 71.542969, 41.244772 ], [ 72.246094, 41.244772 ], [ 72.246094, 41.112469 ], [ 72.597656, 41.112469 ], [ 72.597656, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 73.125000, 40.847060 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.488281, 40.979898 ], [ 70.488281, 40.847060 ], [ 69.785156, 40.847060 ], [ 69.785156, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.446947 ], [ 69.082031, 40.446947 ], [ 69.082031, 40.313043 ], [ 62.226562, 40.313043 ], [ 62.226562, 40.446947 ], [ 62.050781, 40.446947 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.112469 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.771312 ], [ 59.941406, 41.771312 ], [ 59.941406, 42.163403 ], [ 59.765625, 42.163403 ], [ 59.765625, 42.293564 ], [ 59.414062, 42.293564 ], [ 59.414062, 42.423457 ], [ 59.238281, 42.423457 ], [ 59.238281, 42.553080 ], [ 59.062500, 42.553080 ], [ 59.062500, 42.682435 ], [ 58.535156, 42.682435 ], [ 58.535156, 42.553080 ], [ 58.359375, 42.553080 ], [ 58.359375, 42.423457 ], [ 58.183594, 42.423457 ], [ 58.183594, 42.293564 ], [ 58.007812, 42.293564 ], [ 58.007812, 42.163403 ], [ 57.832031, 42.163403 ], [ 57.832031, 42.032974 ], [ 57.480469, 42.032974 ], [ 57.480469, 41.902277 ], [ 57.128906, 41.902277 ], [ 57.128906, 41.771312 ], [ 56.953125, 41.771312 ], [ 56.953125, 41.508577 ], [ 57.128906, 41.508577 ], [ 57.128906, 41.376809 ], [ 56.601562, 41.376809 ], [ 56.601562, 41.244772 ], [ 55.898438, 41.244772 ], [ 55.898438, 44.964798 ], [ 56.250000, 44.964798 ], [ 56.250000, 45.089036 ], [ 56.777344, 45.089036 ], [ 56.777344, 45.213004 ], [ 57.304688, 45.213004 ], [ 57.304688, 45.336702 ], [ 57.832031, 45.336702 ], [ 57.832031, 45.460131 ], [ 58.359375, 45.460131 ], [ 58.359375, 45.583290 ], [ 58.535156, 45.583290 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.359375, 45.706179 ], [ 58.359375, 45.583290 ], [ 58.535156, 45.583290 ], [ 58.535156, 45.460131 ], [ 58.886719, 45.460131 ], [ 58.886719, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.213004 ], [ 59.414062, 45.213004 ], [ 59.414062, 45.089036 ], [ 59.589844, 45.089036 ], [ 59.589844, 44.964798 ], [ 59.941406, 44.964798 ], [ 59.941406, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.715514 ], [ 60.468750, 44.715514 ], [ 60.468750, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.465151 ], [ 60.996094, 44.465151 ], [ 60.996094, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.087585 ], [ 61.347656, 44.087585 ], [ 61.347656, 43.961191 ], [ 61.523438, 43.961191 ], [ 61.523438, 43.834527 ], [ 61.699219, 43.834527 ], [ 61.699219, 43.580391 ], [ 62.578125, 43.580391 ], [ 62.578125, 43.707594 ], [ 64.160156, 43.707594 ], [ 64.160156, 43.834527 ], [ 64.863281, 43.834527 ], [ 64.863281, 43.707594 ], [ 65.039062, 43.707594 ], [ 65.039062, 43.580391 ], [ 65.214844, 43.580391 ], [ 65.214844, 43.452919 ], [ 65.566406, 43.452919 ], [ 65.566406, 43.325178 ], [ 65.742188, 43.325178 ], [ 65.742188, 43.197167 ], [ 65.917969, 43.197167 ], [ 65.917969, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.553080 ], [ 65.917969, 42.553080 ], [ 65.917969, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.640078 ], [ 66.621094, 41.640078 ], [ 66.621094, 41.244772 ], [ 67.851562, 41.244772 ], [ 67.851562, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.554688, 40.847060 ], [ 68.730469, 40.847060 ], [ 68.730469, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 41.508577 ], [ 69.082031, 41.508577 ], [ 69.082031, 41.640078 ], [ 69.433594, 41.640078 ], [ 69.433594, 41.771312 ], [ 69.785156, 41.771312 ], [ 69.785156, 41.902277 ], [ 69.960938, 41.902277 ], [ 69.960938, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 42.163403 ], [ 70.664062, 42.163403 ], [ 70.664062, 42.293564 ], [ 71.191406, 42.293564 ], [ 71.191406, 42.163403 ], [ 71.015625, 42.163403 ], [ 71.015625, 42.032974 ], [ 70.839844, 42.032974 ], [ 70.839844, 41.902277 ], [ 70.664062, 41.902277 ], [ 70.664062, 41.771312 ], [ 70.488281, 41.771312 ], [ 70.488281, 41.640078 ], [ 70.312500, 41.640078 ], [ 70.312500, 41.508577 ], [ 70.488281, 41.508577 ], [ 70.488281, 41.376809 ], [ 70.839844, 41.376809 ], [ 70.839844, 41.244772 ], [ 71.367188, 41.244772 ], [ 71.367188, 41.376809 ], [ 72.070312, 41.376809 ], [ 72.070312, 41.244772 ], [ 72.421875, 41.244772 ], [ 72.421875, 41.112469 ], [ 72.773438, 41.112469 ], [ 72.773438, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 72.773438, 40.847060 ], [ 72.773438, 40.713956 ], [ 72.597656, 40.713956 ], [ 72.597656, 40.580585 ], [ 72.246094, 40.580585 ], [ 72.246094, 40.446947 ], [ 72.070312, 40.446947 ], [ 72.070312, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.446947 ], [ 70.312500, 40.446947 ], [ 70.312500, 40.580585 ], [ 70.488281, 40.580585 ], [ 70.488281, 40.847060 ], [ 70.664062, 40.847060 ], [ 70.664062, 40.979898 ], [ 70.136719, 40.979898 ], [ 70.136719, 40.847060 ], [ 69.257812, 40.847060 ], [ 69.257812, 40.580585 ], [ 69.082031, 40.580585 ], [ 69.082031, 40.313043 ], [ 62.226562, 40.313043 ], [ 62.226562, 40.446947 ], [ 62.050781, 40.446947 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.699219, 41.112469 ], [ 61.699219, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.376809 ], [ 60.996094, 41.376809 ], [ 60.996094, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.376809 ], [ 59.941406, 41.376809 ], [ 59.941406, 42.293564 ], [ 59.589844, 42.293564 ], [ 59.589844, 42.423457 ], [ 59.238281, 42.423457 ], [ 59.238281, 42.553080 ], [ 58.886719, 42.553080 ], [ 58.886719, 42.682435 ], [ 58.359375, 42.682435 ], [ 58.359375, 42.553080 ], [ 58.007812, 42.553080 ], [ 58.007812, 42.423457 ], [ 57.832031, 42.423457 ], [ 57.832031, 42.293564 ], [ 57.656250, 42.293564 ], [ 57.656250, 42.163403 ], [ 57.304688, 42.163403 ], [ 57.304688, 42.032974 ], [ 56.953125, 42.032974 ], [ 56.953125, 41.902277 ], [ 56.777344, 41.902277 ], [ 56.777344, 41.640078 ], [ 56.953125, 41.640078 ], [ 56.953125, 41.376809 ], [ 55.898438, 41.376809 ], [ 55.898438, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 45.213004 ], [ 56.777344, 45.213004 ], [ 56.777344, 45.336702 ], [ 57.304688, 45.336702 ], [ 57.304688, 45.460131 ], [ 57.656250, 45.460131 ], [ 57.656250, 45.583290 ], [ 58.183594, 45.583290 ], [ 58.183594, 45.706179 ], [ 58.359375, 45.706179 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.355469, 43.325178 ], [ 74.355469, 43.197167 ], [ 74.707031, 43.197167 ], [ 74.707031, 43.068888 ], [ 75.234375, 43.068888 ], [ 75.234375, 42.940339 ], [ 78.222656, 42.940339 ], [ 78.222656, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 42.682435 ], [ 79.453125, 42.682435 ], [ 79.453125, 42.553080 ], [ 79.628906, 42.553080 ], [ 79.628906, 42.423457 ], [ 79.980469, 42.423457 ], [ 79.980469, 42.293564 ], [ 80.332031, 42.293564 ], [ 80.332031, 42.163403 ], [ 79.980469, 42.163403 ], [ 79.980469, 42.032974 ], [ 79.628906, 42.032974 ], [ 79.628906, 41.902277 ], [ 79.277344, 41.902277 ], [ 79.277344, 41.771312 ], [ 78.925781, 41.771312 ], [ 78.925781, 41.640078 ], [ 78.574219, 41.640078 ], [ 78.574219, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 41.112469 ], [ 76.992188, 41.112469 ], [ 76.992188, 40.979898 ], [ 76.816406, 40.979898 ], [ 76.816406, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.410156, 40.580585 ], [ 75.410156, 40.446947 ], [ 75.058594, 40.446947 ], [ 75.058594, 40.313043 ], [ 72.246094, 40.313043 ], [ 72.246094, 40.446947 ], [ 72.597656, 40.446947 ], [ 72.597656, 40.580585 ], [ 72.773438, 40.580585 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.597656, 40.979898 ], [ 72.597656, 41.112469 ], [ 72.246094, 41.112469 ], [ 72.246094, 41.244772 ], [ 71.542969, 41.244772 ], [ 71.542969, 41.112469 ], [ 71.015625, 41.112469 ], [ 71.015625, 41.244772 ], [ 70.664062, 41.244772 ], [ 70.664062, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.508577 ], [ 70.664062, 41.508577 ], [ 70.664062, 41.640078 ], [ 70.839844, 41.640078 ], [ 70.839844, 41.902277 ], [ 71.015625, 41.902277 ], [ 71.015625, 42.032974 ], [ 71.191406, 42.032974 ], [ 71.191406, 42.163403 ], [ 71.015625, 42.163403 ], [ 71.015625, 42.423457 ], [ 71.191406, 42.423457 ], [ 71.191406, 42.682435 ], [ 71.718750, 42.682435 ], [ 71.718750, 42.811522 ], [ 72.246094, 42.811522 ], [ 72.246094, 42.682435 ], [ 72.949219, 42.682435 ], [ 72.949219, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 42.811522 ], [ 73.652344, 42.811522 ], [ 73.652344, 43.068888 ], [ 73.828125, 43.068888 ], [ 73.828125, 43.197167 ], [ 74.179688, 43.197167 ], [ 74.179688, 43.325178 ], [ 74.355469, 43.325178 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.355469, 43.325178 ], [ 74.355469, 43.197167 ], [ 74.707031, 43.197167 ], [ 74.707031, 43.068888 ], [ 75.234375, 43.068888 ], [ 75.234375, 42.940339 ], [ 75.937500, 42.940339 ], [ 75.937500, 43.068888 ], [ 78.222656, 43.068888 ], [ 78.222656, 42.940339 ], [ 79.101562, 42.940339 ], [ 79.101562, 42.811522 ], [ 79.277344, 42.811522 ], [ 79.277344, 42.682435 ], [ 79.453125, 42.682435 ], [ 79.453125, 42.553080 ], [ 79.804688, 42.553080 ], [ 79.804688, 42.423457 ], [ 80.156250, 42.423457 ], [ 80.156250, 42.293564 ], [ 79.980469, 42.293564 ], [ 79.980469, 42.163403 ], [ 79.804688, 42.163403 ], [ 79.804688, 42.032974 ], [ 79.453125, 42.032974 ], [ 79.453125, 41.902277 ], [ 79.101562, 41.902277 ], [ 79.101562, 41.771312 ], [ 78.750000, 41.771312 ], [ 78.750000, 41.640078 ], [ 78.398438, 41.640078 ], [ 78.398438, 41.508577 ], [ 78.222656, 41.508577 ], [ 78.222656, 41.244772 ], [ 77.519531, 41.244772 ], [ 77.519531, 41.112469 ], [ 76.816406, 41.112469 ], [ 76.816406, 40.847060 ], [ 76.640625, 40.847060 ], [ 76.640625, 40.580585 ], [ 76.464844, 40.580585 ], [ 76.464844, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.234375, 40.580585 ], [ 75.234375, 40.446947 ], [ 74.707031, 40.446947 ], [ 74.707031, 40.313043 ], [ 72.070312, 40.313043 ], [ 72.070312, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.773438, 40.979898 ], [ 72.773438, 41.112469 ], [ 72.421875, 41.112469 ], [ 72.421875, 41.244772 ], [ 72.070312, 41.244772 ], [ 72.070312, 41.376809 ], [ 71.367188, 41.376809 ], [ 71.367188, 41.244772 ], [ 70.839844, 41.244772 ], [ 70.839844, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 41.640078 ], [ 70.488281, 41.640078 ], [ 70.488281, 41.771312 ], [ 70.664062, 41.771312 ], [ 70.664062, 41.902277 ], [ 70.839844, 41.902277 ], [ 70.839844, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 42.163403 ], [ 71.191406, 42.163403 ], [ 71.191406, 42.293564 ], [ 70.839844, 42.293564 ], [ 70.839844, 42.553080 ], [ 71.015625, 42.553080 ], [ 71.015625, 42.811522 ], [ 71.542969, 42.811522 ], [ 71.542969, 42.940339 ], [ 71.894531, 42.940339 ], [ 71.894531, 42.811522 ], [ 72.421875, 42.811522 ], [ 72.421875, 42.682435 ], [ 73.125000, 42.682435 ], [ 73.125000, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 43.197167 ], [ 74.003906, 43.197167 ], [ 74.003906, 43.325178 ], [ 74.355469, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.112469 ], [ 44.648438, 41.112469 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 41.376809 ], [ 44.824219, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.376809 ], [ 44.824219, 41.376809 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.757812, 41.771312 ], [ 46.757812, 41.640078 ], [ 46.933594, 41.640078 ], [ 46.933594, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.376809 ], [ 47.285156, 41.376809 ], [ 47.285156, 41.244772 ], [ 47.460938, 41.244772 ], [ 47.460938, 41.112469 ], [ 47.812500, 41.112469 ], [ 47.812500, 41.244772 ], [ 47.988281, 41.244772 ], [ 47.988281, 41.376809 ], [ 48.164062, 41.376809 ], [ 48.164062, 41.508577 ], [ 48.339844, 41.508577 ], [ 48.339844, 41.640078 ], [ 48.691406, 41.640078 ], [ 48.691406, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ], [ 49.042969, 41.244772 ], [ 49.042969, 41.112469 ], [ 49.218750, 41.112469 ], [ 49.218750, 40.847060 ], [ 49.394531, 40.847060 ], [ 49.394531, 40.580585 ], [ 50.097656, 40.580585 ], [ 50.097656, 40.446947 ], [ 50.273438, 40.446947 ], [ 50.273438, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.376809 ], [ 46.406250, 41.376809 ], [ 46.406250, 41.640078 ], [ 46.230469, 41.640078 ], [ 46.230469, 41.771312 ], [ 46.757812, 41.771312 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.582031, 41.902277 ], [ 46.582031, 41.771312 ], [ 46.757812, 41.771312 ], [ 46.757812, 41.640078 ], [ 46.933594, 41.640078 ], [ 46.933594, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.640078 ], [ 48.339844, 41.640078 ], [ 48.339844, 41.771312 ], [ 48.691406, 41.771312 ], [ 48.691406, 41.640078 ], [ 48.867188, 41.640078 ], [ 48.867188, 41.376809 ], [ 49.042969, 41.376809 ], [ 49.042969, 41.244772 ], [ 49.218750, 41.244772 ], [ 49.218750, 40.979898 ], [ 49.394531, 40.979898 ], [ 49.394531, 40.713956 ], [ 49.570312, 40.713956 ], [ 49.570312, 40.580585 ], [ 49.921875, 40.580585 ], [ 49.921875, 40.446947 ], [ 50.097656, 40.446947 ], [ 50.097656, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.847060 ], [ 45.351562, 40.979898 ], [ 45.175781, 40.979898 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 44.824219, 41.244772 ], [ 44.824219, 41.376809 ], [ 45.527344, 41.376809 ], [ 45.527344, 41.244772 ], [ 46.054688, 41.244772 ], [ 46.054688, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.230469, 41.508577 ], [ 46.230469, 41.640078 ], [ 46.054688, 41.640078 ], [ 46.054688, 41.771312 ], [ 46.406250, 41.771312 ], [ 46.406250, 41.902277 ], [ 46.582031, 41.902277 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.062500, 42.682435 ], [ 59.062500, 42.553080 ], [ 59.238281, 42.553080 ], [ 59.238281, 42.423457 ], [ 59.414062, 42.423457 ], [ 59.414062, 42.293564 ], [ 59.765625, 42.293564 ], [ 59.765625, 42.163403 ], [ 59.941406, 42.163403 ], [ 59.941406, 41.771312 ], [ 60.117188, 41.771312 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.446947 ], [ 62.226562, 40.446947 ], [ 62.226562, 40.313043 ], [ 52.734375, 40.313043 ], [ 52.734375, 40.580585 ], [ 52.910156, 40.580585 ], [ 52.910156, 40.847060 ], [ 53.085938, 40.847060 ], [ 53.085938, 40.713956 ], [ 53.437500, 40.713956 ], [ 53.437500, 40.580585 ], [ 53.964844, 40.580585 ], [ 53.964844, 40.713956 ], [ 54.316406, 40.713956 ], [ 54.316406, 40.847060 ], [ 54.667969, 40.847060 ], [ 54.667969, 40.979898 ], [ 54.492188, 40.979898 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.376809 ], [ 53.964844, 41.376809 ], [ 53.964844, 41.771312 ], [ 53.789062, 41.771312 ], [ 53.789062, 42.163403 ], [ 53.613281, 42.163403 ], [ 53.613281, 42.293564 ], [ 54.140625, 42.293564 ], [ 54.140625, 42.163403 ], [ 54.492188, 42.163403 ], [ 54.492188, 42.032974 ], [ 54.667969, 42.032974 ], [ 54.667969, 41.902277 ], [ 54.843750, 41.902277 ], [ 54.843750, 41.640078 ], [ 55.019531, 41.640078 ], [ 55.019531, 41.508577 ], [ 55.195312, 41.508577 ], [ 55.195312, 41.244772 ], [ 56.601562, 41.244772 ], [ 56.601562, 41.376809 ], [ 57.128906, 41.376809 ], [ 57.128906, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 41.771312 ], [ 57.128906, 41.771312 ], [ 57.128906, 41.902277 ], [ 57.480469, 41.902277 ], [ 57.480469, 42.032974 ], [ 57.832031, 42.032974 ], [ 57.832031, 42.163403 ], [ 58.007812, 42.163403 ], [ 58.007812, 42.293564 ], [ 58.183594, 42.293564 ], [ 58.183594, 42.423457 ], [ 58.359375, 42.423457 ], [ 58.359375, 42.553080 ], [ 58.535156, 42.553080 ], [ 58.535156, 42.682435 ], [ 59.062500, 42.682435 ] ] ], [ [ [ 53.613281, 42.163403 ], [ 53.613281, 42.032974 ], [ 53.261719, 42.032974 ], [ 53.261719, 41.902277 ], [ 52.910156, 41.902277 ], [ 52.910156, 41.508577 ], [ 52.734375, 41.508577 ], [ 52.734375, 41.376809 ], [ 52.558594, 41.376809 ], [ 52.558594, 41.771312 ], [ 52.734375, 41.771312 ], [ 52.734375, 42.032974 ], [ 52.910156, 42.032974 ], [ 52.910156, 42.163403 ], [ 53.613281, 42.163403 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.886719, 42.682435 ], [ 58.886719, 42.553080 ], [ 59.238281, 42.553080 ], [ 59.238281, 42.423457 ], [ 59.589844, 42.423457 ], [ 59.589844, 42.293564 ], [ 59.941406, 42.293564 ], [ 59.941406, 41.376809 ], [ 60.117188, 41.376809 ], [ 60.117188, 41.244772 ], [ 60.996094, 41.244772 ], [ 60.996094, 41.376809 ], [ 61.523438, 41.376809 ], [ 61.523438, 41.244772 ], [ 61.699219, 41.244772 ], [ 61.699219, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.446947 ], [ 62.226562, 40.446947 ], [ 62.226562, 40.313043 ], [ 52.734375, 40.313043 ], [ 52.734375, 40.580585 ], [ 52.910156, 40.580585 ], [ 52.910156, 40.979898 ], [ 53.085938, 40.979898 ], [ 53.085938, 40.847060 ], [ 53.437500, 40.847060 ], [ 53.437500, 40.713956 ], [ 54.140625, 40.713956 ], [ 54.140625, 40.847060 ], [ 54.492188, 40.847060 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.376809 ], [ 54.140625, 41.376809 ], [ 54.140625, 41.508577 ], [ 53.964844, 41.508577 ], [ 53.964844, 41.771312 ], [ 53.789062, 41.771312 ], [ 53.789062, 42.032974 ], [ 53.261719, 42.032974 ], [ 53.261719, 41.902277 ], [ 52.910156, 41.902277 ], [ 52.910156, 41.508577 ], [ 52.734375, 41.508577 ], [ 52.734375, 41.376809 ], [ 52.558594, 41.376809 ], [ 52.558594, 41.640078 ], [ 52.382812, 41.640078 ], [ 52.382812, 41.902277 ], [ 52.558594, 41.902277 ], [ 52.558594, 42.032974 ], [ 52.910156, 42.032974 ], [ 52.910156, 42.163403 ], [ 53.261719, 42.163403 ], [ 53.261719, 42.293564 ], [ 53.789062, 42.293564 ], [ 53.789062, 42.423457 ], [ 53.964844, 42.423457 ], [ 53.964844, 42.293564 ], [ 54.316406, 42.293564 ], [ 54.316406, 42.163403 ], [ 54.667969, 42.163403 ], [ 54.667969, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.771312 ], [ 55.019531, 41.771312 ], [ 55.019531, 41.640078 ], [ 55.195312, 41.640078 ], [ 55.195312, 41.376809 ], [ 56.953125, 41.376809 ], [ 56.953125, 41.640078 ], [ 56.777344, 41.640078 ], [ 56.777344, 41.902277 ], [ 56.953125, 41.902277 ], [ 56.953125, 42.032974 ], [ 57.304688, 42.032974 ], [ 57.304688, 42.163403 ], [ 57.656250, 42.163403 ], [ 57.656250, 42.293564 ], [ 57.832031, 42.293564 ], [ 57.832031, 42.423457 ], [ 58.007812, 42.423457 ], [ 58.007812, 42.553080 ], [ 58.359375, 42.553080 ], [ 58.359375, 42.682435 ], [ 58.886719, 42.682435 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ], [ 70.488281, 40.713956 ], [ 70.488281, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 40.446947 ], [ 69.257812, 40.446947 ], [ 69.257812, 40.713956 ], [ 69.785156, 40.713956 ], [ 69.785156, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.580585 ], [ 70.312500, 40.580585 ], [ 70.312500, 40.446947 ], [ 70.488281, 40.446947 ], [ 70.488281, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 40.580585 ], [ 69.257812, 40.580585 ], [ 69.257812, 40.847060 ], [ 70.136719, 40.847060 ], [ 70.136719, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.437857 ], [ 90.878906, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.527344, 45.583290 ], [ 90.527344, 45.951150 ], [ 90.703125, 45.951150 ], [ 90.703125, 46.437857 ], [ 90.878906, 46.437857 ] ] ], [ [ [ 90.878906, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.279229 ], [ 90.527344, 47.279229 ], [ 90.527344, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.635784 ], [ 90.000000, 47.635784 ], [ 90.000000, 47.754098 ], [ 89.648438, 47.754098 ], [ 89.648438, 47.872144 ], [ 89.296875, 47.872144 ], [ 89.296875, 47.989922 ], [ 88.945312, 47.989922 ], [ 88.945312, 48.107431 ], [ 88.593750, 48.107431 ], [ 88.593750, 48.224673 ], [ 88.417969, 48.224673 ], [ 88.417969, 48.341646 ], [ 88.242188, 48.341646 ], [ 88.242188, 48.458352 ], [ 88.066406, 48.458352 ], [ 88.066406, 48.690960 ], [ 87.890625, 48.690960 ], [ 87.890625, 49.037868 ], [ 87.714844, 49.037868 ], [ 87.714844, 49.267805 ], [ 88.066406, 49.267805 ], [ 88.066406, 49.382373 ], [ 88.593750, 49.382373 ], [ 88.593750, 49.496675 ], [ 88.945312, 49.496675 ], [ 88.945312, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.724479 ], [ 89.472656, 49.724479 ], [ 89.472656, 49.837982 ], [ 89.824219, 49.837982 ], [ 89.824219, 49.951220 ], [ 90.175781, 49.951220 ], [ 90.175781, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 50.176898 ], [ 90.703125, 50.176898 ], [ 90.703125, 50.289339 ], [ 90.878906, 50.289339 ], [ 90.878906, 47.040182 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.437857 ], [ 90.878906, 45.460131 ], [ 90.703125, 45.460131 ], [ 90.703125, 45.706179 ], [ 90.527344, 45.706179 ], [ 90.527344, 45.951150 ], [ 90.703125, 45.951150 ], [ 90.703125, 46.437857 ], [ 90.878906, 46.437857 ] ] ], [ [ [ 90.878906, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.279229 ], [ 90.527344, 47.279229 ], [ 90.527344, 47.398349 ], [ 90.351562, 47.398349 ], [ 90.351562, 47.635784 ], [ 90.175781, 47.635784 ], [ 90.175781, 47.754098 ], [ 89.824219, 47.754098 ], [ 89.824219, 47.872144 ], [ 89.296875, 47.872144 ], [ 89.296875, 47.989922 ], [ 88.945312, 47.989922 ], [ 88.945312, 48.107431 ], [ 88.593750, 48.107431 ], [ 88.593750, 48.224673 ], [ 88.417969, 48.224673 ], [ 88.417969, 48.341646 ], [ 88.242188, 48.341646 ], [ 88.242188, 48.458352 ], [ 88.066406, 48.458352 ], [ 88.066406, 48.574790 ], [ 87.890625, 48.574790 ], [ 87.890625, 49.037868 ], [ 87.714844, 49.037868 ], [ 87.714844, 49.382373 ], [ 88.417969, 49.382373 ], [ 88.417969, 49.496675 ], [ 88.945312, 49.496675 ], [ 88.945312, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.724479 ], [ 89.472656, 49.724479 ], [ 89.472656, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.951220 ], [ 90.000000, 49.951220 ], [ 90.000000, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.401515 ], [ 90.878906, 50.401515 ], [ 90.878906, 47.040182 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.714844, 49.267805 ], [ 87.714844, 49.037868 ], [ 87.890625, 49.037868 ], [ 87.890625, 48.690960 ], [ 88.066406, 48.690960 ], [ 88.066406, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.341646 ], [ 88.417969, 48.341646 ], [ 88.417969, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 48.107431 ], [ 88.945312, 48.107431 ], [ 88.945312, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.648438, 47.872144 ], [ 89.648438, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.517201 ], [ 90.527344, 47.517201 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.040182 ], [ 90.878906, 47.040182 ], [ 90.878906, 46.437857 ], [ 90.703125, 46.437857 ], [ 90.703125, 45.951150 ], [ 90.527344, 45.951150 ], [ 90.527344, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 90.878906, 45.336702 ], [ 90.878906, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 78.925781, 41.640078 ], [ 78.925781, 41.771312 ], [ 79.277344, 41.771312 ], [ 79.277344, 41.902277 ], [ 79.628906, 41.902277 ], [ 79.628906, 42.032974 ], [ 79.980469, 42.032974 ], [ 79.980469, 42.163403 ], [ 80.332031, 42.163403 ], [ 80.332031, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 42.940339 ], [ 80.507812, 42.940339 ], [ 80.507812, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.325178 ], [ 80.683594, 43.325178 ], [ 80.683594, 43.707594 ], [ 80.507812, 43.707594 ], [ 80.507812, 44.087585 ], [ 80.332031, 44.087585 ], [ 80.332031, 44.339565 ], [ 80.156250, 44.339565 ], [ 80.156250, 44.715514 ], [ 79.980469, 44.715514 ], [ 79.980469, 44.964798 ], [ 80.332031, 44.964798 ], [ 80.332031, 45.089036 ], [ 81.035156, 45.089036 ], [ 81.035156, 45.213004 ], [ 81.738281, 45.213004 ], [ 81.738281, 45.336702 ], [ 82.089844, 45.336702 ], [ 82.089844, 45.460131 ], [ 82.441406, 45.460131 ], [ 82.441406, 45.706179 ], [ 82.617188, 45.706179 ], [ 82.617188, 46.195042 ], [ 82.792969, 46.195042 ], [ 82.792969, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.040182 ], [ 83.144531, 47.040182 ], [ 83.144531, 47.279229 ], [ 83.496094, 47.279229 ], [ 83.496094, 47.159840 ], [ 84.550781, 47.159840 ], [ 84.550781, 47.040182 ], [ 85.253906, 47.040182 ], [ 85.253906, 47.159840 ], [ 85.605469, 47.159840 ], [ 85.605469, 47.279229 ], [ 85.781250, 47.279229 ], [ 85.781250, 48.458352 ], [ 86.308594, 48.458352 ], [ 86.308594, 48.574790 ], [ 86.835938, 48.574790 ], [ 86.835938, 48.806863 ], [ 87.011719, 48.806863 ], [ 87.011719, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.152970 ], [ 87.363281, 49.152970 ], [ 87.363281, 49.267805 ], [ 87.714844, 49.267805 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.714844, 49.382373 ], [ 87.714844, 49.037868 ], [ 87.890625, 49.037868 ], [ 87.890625, 48.574790 ], [ 88.066406, 48.574790 ], [ 88.066406, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.341646 ], [ 88.417969, 48.341646 ], [ 88.417969, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 48.107431 ], [ 88.945312, 48.107431 ], [ 88.945312, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.824219, 47.872144 ], [ 89.824219, 47.754098 ], [ 90.175781, 47.754098 ], [ 90.175781, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.398349 ], [ 90.527344, 47.398349 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.040182 ], [ 90.878906, 47.040182 ], [ 90.878906, 46.437857 ], [ 90.703125, 46.437857 ], [ 90.703125, 45.951150 ], [ 90.527344, 45.951150 ], [ 90.527344, 45.706179 ], [ 90.703125, 45.706179 ], [ 90.703125, 45.460131 ], [ 90.878906, 45.460131 ], [ 90.878906, 40.313043 ], [ 74.707031, 40.313043 ], [ 74.707031, 40.446947 ], [ 75.234375, 40.446947 ], [ 75.234375, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.464844, 40.446947 ], [ 76.464844, 40.580585 ], [ 76.640625, 40.580585 ], [ 76.640625, 40.847060 ], [ 76.816406, 40.847060 ], [ 76.816406, 41.112469 ], [ 77.519531, 41.112469 ], [ 77.519531, 41.244772 ], [ 78.222656, 41.244772 ], [ 78.222656, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.640078 ], [ 78.750000, 41.640078 ], [ 78.750000, 41.771312 ], [ 79.101562, 41.771312 ], [ 79.101562, 41.902277 ], [ 79.453125, 41.902277 ], [ 79.453125, 42.032974 ], [ 79.804688, 42.032974 ], [ 79.804688, 42.163403 ], [ 79.980469, 42.163403 ], [ 79.980469, 42.293564 ], [ 80.156250, 42.293564 ], [ 80.156250, 42.940339 ], [ 80.507812, 42.940339 ], [ 80.507812, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.325178 ], [ 80.683594, 43.325178 ], [ 80.683594, 43.580391 ], [ 80.507812, 43.580391 ], [ 80.507812, 43.834527 ], [ 80.332031, 43.834527 ], [ 80.332031, 44.213710 ], [ 80.156250, 44.213710 ], [ 80.156250, 44.465151 ], [ 79.980469, 44.465151 ], [ 79.980469, 44.715514 ], [ 79.804688, 44.715514 ], [ 79.804688, 44.964798 ], [ 80.332031, 44.964798 ], [ 80.332031, 45.089036 ], [ 81.035156, 45.089036 ], [ 81.035156, 45.213004 ], [ 81.738281, 45.213004 ], [ 81.738281, 45.336702 ], [ 82.089844, 45.336702 ], [ 82.089844, 45.460131 ], [ 82.441406, 45.460131 ], [ 82.441406, 45.706179 ], [ 82.617188, 45.706179 ], [ 82.617188, 46.195042 ], [ 82.792969, 46.195042 ], [ 82.792969, 46.679594 ], [ 82.968750, 46.679594 ], [ 82.968750, 47.159840 ], [ 83.144531, 47.159840 ], [ 83.144531, 47.398349 ], [ 83.320312, 47.398349 ], [ 83.320312, 47.279229 ], [ 84.023438, 47.279229 ], [ 84.023438, 47.159840 ], [ 84.726562, 47.159840 ], [ 84.726562, 47.040182 ], [ 85.253906, 47.040182 ], [ 85.253906, 47.279229 ], [ 85.429688, 47.279229 ], [ 85.429688, 47.398349 ], [ 85.605469, 47.398349 ], [ 85.605469, 48.458352 ], [ 86.132812, 48.458352 ], [ 86.132812, 48.574790 ], [ 86.660156, 48.574790 ], [ 86.660156, 48.806863 ], [ 86.835938, 48.806863 ], [ 86.835938, 48.922499 ], [ 87.011719, 48.922499 ], [ 87.011719, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 49.267805 ], [ 87.539062, 49.267805 ], [ 87.539062, 49.382373 ], [ 87.714844, 49.382373 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.136719, 73.022592 ], [ 70.136719, 72.971189 ], [ 70.664062, 72.971189 ], [ 70.664062, 72.919635 ], [ 71.191406, 72.919635 ], [ 71.191406, 72.867930 ], [ 71.718750, 72.867930 ], [ 71.718750, 72.816074 ], [ 72.246094, 72.816074 ], [ 72.246094, 72.764065 ], [ 72.597656, 72.764065 ], [ 72.597656, 72.501722 ], [ 72.773438, 72.501722 ], [ 72.773438, 72.127936 ], [ 72.597656, 72.127936 ], [ 72.597656, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.801410 ], [ 72.246094, 71.801410 ], [ 72.246094, 71.635993 ], [ 72.070312, 71.635993 ], [ 72.070312, 71.469124 ], [ 71.894531, 71.469124 ], [ 71.894531, 71.357067 ], [ 72.070312, 71.357067 ], [ 72.070312, 71.244356 ], [ 72.246094, 71.244356 ], [ 72.246094, 71.130988 ], [ 72.421875, 71.130988 ], [ 72.421875, 70.902268 ], [ 72.597656, 70.902268 ], [ 72.597656, 70.554179 ], [ 72.773438, 70.554179 ], [ 72.773438, 69.718107 ], [ 72.597656, 69.718107 ], [ 72.597656, 68.974164 ], [ 72.773438, 68.974164 ], [ 72.773438, 68.847665 ], [ 72.949219, 68.847665 ], [ 72.949219, 68.720441 ], [ 73.125000, 68.720441 ], [ 73.125000, 68.656555 ], [ 73.300781, 68.656555 ], [ 73.300781, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.399180 ], [ 73.652344, 68.399180 ], [ 73.652344, 68.204212 ], [ 73.476562, 68.204212 ], [ 73.476562, 67.875541 ], [ 73.300781, 67.875541 ], [ 73.300781, 67.676085 ], [ 73.125000, 67.676085 ], [ 73.125000, 67.542167 ], [ 72.949219, 67.542167 ], [ 72.949219, 67.407487 ], [ 72.773438, 67.407487 ], [ 72.773438, 67.272043 ], [ 72.597656, 67.272043 ], [ 72.597656, 67.135829 ], [ 72.421875, 67.135829 ], [ 72.421875, 66.998844 ], [ 72.246094, 66.998844 ], [ 72.246094, 66.861082 ], [ 72.070312, 66.861082 ], [ 72.070312, 66.722541 ], [ 71.894531, 66.722541 ], [ 71.894531, 66.583217 ], [ 71.718750, 66.583217 ], [ 71.718750, 66.443107 ], [ 71.542969, 66.443107 ], [ 71.542969, 66.231457 ], [ 72.070312, 66.231457 ], [ 72.070312, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.583217 ], [ 44.472656, 66.583217 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.930060 ], [ 44.121094, 66.930060 ], [ 44.121094, 68.463800 ], [ 44.296875, 68.463800 ], [ 44.296875, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.334376 ], [ 45.703125, 68.334376 ], [ 45.703125, 68.269387 ], [ 46.230469, 68.269387 ], [ 46.230469, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.941650 ], [ 46.582031, 67.941650 ], [ 46.582031, 67.742759 ], [ 46.757812, 67.742759 ], [ 46.757812, 67.676085 ], [ 46.582031, 67.676085 ], [ 46.582031, 67.609221 ], [ 45.878906, 67.609221 ], [ 45.878906, 67.542167 ], [ 45.527344, 67.542167 ], [ 45.527344, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.230469, 66.722541 ], [ 46.230469, 66.652977 ], [ 46.757812, 66.652977 ], [ 46.757812, 66.722541 ], [ 47.285156, 66.722541 ], [ 47.285156, 66.791909 ], [ 47.636719, 66.791909 ], [ 47.636719, 66.861082 ], [ 47.812500, 66.861082 ], [ 47.812500, 66.998844 ], [ 47.988281, 66.998844 ], [ 47.988281, 67.339861 ], [ 48.164062, 67.339861 ], [ 48.164062, 67.542167 ], [ 48.339844, 67.542167 ], [ 48.339844, 67.609221 ], [ 48.691406, 67.609221 ], [ 48.691406, 67.676085 ], [ 49.042969, 67.676085 ], [ 49.042969, 67.742759 ], [ 49.394531, 67.742759 ], [ 49.394531, 67.809245 ], [ 49.570312, 67.809245 ], [ 49.570312, 67.875541 ], [ 49.921875, 67.875541 ], [ 49.921875, 67.941650 ], [ 50.273438, 67.941650 ], [ 50.273438, 68.007571 ], [ 50.449219, 68.007571 ], [ 50.449219, 68.073305 ], [ 50.800781, 68.073305 ], [ 50.800781, 68.138852 ], [ 50.976562, 68.138852 ], [ 50.976562, 68.204212 ], [ 51.328125, 68.204212 ], [ 51.328125, 68.269387 ], [ 51.503906, 68.269387 ], [ 51.503906, 68.334376 ], [ 51.855469, 68.334376 ], [ 51.855469, 68.399180 ], [ 52.207031, 68.399180 ], [ 52.207031, 68.463800 ], [ 52.382812, 68.463800 ], [ 52.382812, 68.528235 ], [ 52.734375, 68.528235 ], [ 52.734375, 68.592487 ], [ 52.910156, 68.592487 ], [ 52.910156, 68.656555 ], [ 53.261719, 68.656555 ], [ 53.261719, 68.720441 ], [ 53.437500, 68.720441 ], [ 53.437500, 68.784144 ], [ 53.789062, 68.784144 ], [ 53.789062, 68.847665 ], [ 53.964844, 68.847665 ], [ 53.964844, 68.784144 ], [ 54.492188, 68.784144 ], [ 54.492188, 68.720441 ], [ 54.316406, 68.720441 ], [ 54.316406, 68.592487 ], [ 54.140625, 68.592487 ], [ 54.140625, 68.528235 ], [ 53.964844, 68.528235 ], [ 53.964844, 68.399180 ], [ 53.789062, 68.399180 ], [ 53.789062, 68.334376 ], [ 53.613281, 68.334376 ], [ 53.613281, 68.138852 ], [ 54.316406, 68.138852 ], [ 54.316406, 68.073305 ], [ 54.843750, 68.073305 ], [ 54.843750, 68.204212 ], [ 55.019531, 68.204212 ], [ 55.019531, 68.269387 ], [ 55.195312, 68.269387 ], [ 55.195312, 68.399180 ], [ 55.371094, 68.399180 ], [ 55.371094, 68.463800 ], [ 57.480469, 68.463800 ], [ 57.480469, 68.528235 ], [ 57.656250, 68.528235 ], [ 57.656250, 68.592487 ], [ 58.007812, 68.592487 ], [ 58.007812, 68.656555 ], [ 58.183594, 68.656555 ], [ 58.183594, 68.720441 ], [ 58.359375, 68.720441 ], [ 58.359375, 68.784144 ], [ 58.710938, 68.784144 ], [ 58.710938, 68.847665 ], [ 59.062500, 68.847665 ], [ 59.062500, 68.720441 ], [ 59.238281, 68.720441 ], [ 59.238281, 68.592487 ], [ 59.414062, 68.592487 ], [ 59.414062, 68.528235 ], [ 59.589844, 68.528235 ], [ 59.589844, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.269387 ], [ 60.117188, 68.269387 ], [ 60.117188, 68.399180 ], [ 60.292969, 68.399180 ], [ 60.292969, 68.528235 ], [ 60.468750, 68.528235 ], [ 60.468750, 68.592487 ], [ 60.644531, 68.592487 ], [ 60.644531, 68.720441 ], [ 60.820312, 68.720441 ], [ 60.820312, 68.847665 ], [ 60.996094, 68.847665 ], [ 60.996094, 68.974164 ], [ 60.820312, 68.974164 ], [ 60.820312, 69.099940 ], [ 60.644531, 69.099940 ], [ 60.644531, 69.224997 ], [ 60.468750, 69.224997 ], [ 60.468750, 69.349339 ], [ 60.292969, 69.349339 ], [ 60.292969, 69.472969 ], [ 60.117188, 69.472969 ], [ 60.117188, 69.595890 ], [ 60.292969, 69.595890 ], [ 60.292969, 69.718107 ], [ 60.468750, 69.718107 ], [ 60.468750, 69.839622 ], [ 60.644531, 69.839622 ], [ 60.644531, 69.778952 ], [ 61.347656, 69.778952 ], [ 61.347656, 69.718107 ], [ 61.875000, 69.718107 ], [ 61.875000, 69.657086 ], [ 62.402344, 69.657086 ], [ 62.402344, 69.595890 ], [ 63.105469, 69.595890 ], [ 63.105469, 69.534518 ], [ 63.457031, 69.534518 ], [ 63.457031, 69.472969 ], [ 63.808594, 69.472969 ], [ 63.808594, 69.411242 ], [ 63.984375, 69.411242 ], [ 63.984375, 69.349339 ], [ 64.335938, 69.349339 ], [ 64.335938, 69.287257 ], [ 64.687500, 69.287257 ], [ 64.687500, 69.224997 ], [ 64.863281, 69.224997 ], [ 64.863281, 69.162558 ], [ 65.039062, 69.162558 ], [ 65.039062, 69.099940 ], [ 65.214844, 69.099940 ], [ 65.214844, 69.037142 ], [ 65.566406, 69.037142 ], [ 65.566406, 68.974164 ], [ 65.742188, 68.974164 ], [ 65.742188, 68.911005 ], [ 65.917969, 68.911005 ], [ 65.917969, 68.847665 ], [ 66.093750, 68.847665 ], [ 66.093750, 68.784144 ], [ 66.269531, 68.784144 ], [ 66.269531, 68.720441 ], [ 66.445312, 68.720441 ], [ 66.445312, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.592487 ], [ 66.972656, 68.592487 ], [ 66.972656, 68.528235 ], [ 67.148438, 68.528235 ], [ 67.148438, 68.463800 ], [ 67.324219, 68.463800 ], [ 67.324219, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.334376 ], [ 67.675781, 68.334376 ], [ 67.675781, 68.269387 ], [ 68.027344, 68.269387 ], [ 68.027344, 68.204212 ], [ 68.203125, 68.204212 ], [ 68.203125, 68.138852 ], [ 68.378906, 68.138852 ], [ 68.378906, 68.073305 ], [ 68.554688, 68.073305 ], [ 68.554688, 68.138852 ], [ 68.730469, 68.138852 ], [ 68.730469, 68.269387 ], [ 68.906250, 68.269387 ], [ 68.906250, 68.399180 ], [ 69.082031, 68.399180 ], [ 69.082031, 68.528235 ], [ 69.257812, 68.528235 ], [ 69.257812, 68.592487 ], [ 69.082031, 68.592487 ], [ 69.082031, 68.720441 ], [ 68.906250, 68.720441 ], [ 68.906250, 68.784144 ], [ 68.730469, 68.784144 ], [ 68.730469, 68.911005 ], [ 68.554688, 68.911005 ], [ 68.554688, 68.974164 ], [ 68.378906, 68.974164 ], [ 68.378906, 69.099940 ], [ 68.203125, 69.099940 ], [ 68.203125, 69.349339 ], [ 67.851562, 69.349339 ], [ 67.851562, 69.411242 ], [ 67.148438, 69.411242 ], [ 67.148438, 69.472969 ], [ 66.972656, 69.472969 ], [ 66.972656, 69.534518 ], [ 67.148438, 69.534518 ], [ 67.148438, 69.778952 ], [ 67.324219, 69.778952 ], [ 67.324219, 70.020587 ], [ 67.148438, 70.020587 ], [ 67.148438, 70.318738 ], [ 66.972656, 70.318738 ], [ 66.972656, 70.554179 ], [ 66.796875, 70.554179 ], [ 66.796875, 70.844673 ], [ 66.621094, 70.844673 ], [ 66.621094, 71.016960 ], [ 66.796875, 71.016960 ], [ 66.796875, 71.130988 ], [ 66.972656, 71.130988 ], [ 66.972656, 71.187754 ], [ 67.148438, 71.187754 ], [ 67.148438, 71.300793 ], [ 67.324219, 71.300793 ], [ 67.324219, 71.357067 ], [ 67.500000, 71.357067 ], [ 67.500000, 71.469124 ], [ 67.675781, 71.469124 ], [ 67.675781, 71.524909 ], [ 67.851562, 71.524909 ], [ 67.851562, 71.580532 ], [ 68.027344, 71.580532 ], [ 68.027344, 71.691293 ], [ 68.203125, 71.691293 ], [ 68.203125, 71.746432 ], [ 68.378906, 71.746432 ], [ 68.378906, 71.856229 ], [ 68.554688, 71.856229 ], [ 68.554688, 72.019729 ], [ 68.730469, 72.019729 ], [ 68.730469, 72.235514 ], [ 68.906250, 72.235514 ], [ 68.906250, 72.501722 ], [ 69.082031, 72.501722 ], [ 69.082031, 72.711903 ], [ 69.257812, 72.711903 ], [ 69.257812, 72.867930 ], [ 69.433594, 72.867930 ], [ 69.433594, 72.919635 ], [ 69.785156, 72.919635 ], [ 69.785156, 72.971189 ], [ 69.960938, 72.971189 ], [ 69.960938, 73.022592 ], [ 70.136719, 73.022592 ] ] ], [ [ [ 81.386719, 71.801410 ], [ 81.386719, 71.965388 ], [ 81.210938, 71.965388 ], [ 81.210938, 72.181804 ], [ 81.035156, 72.181804 ], [ 81.035156, 72.342464 ], [ 80.859375, 72.342464 ], [ 80.859375, 72.501722 ], [ 80.683594, 72.501722 ], [ 80.683594, 73.124945 ], [ 80.507812, 73.124945 ], [ 80.507812, 73.627789 ], [ 80.859375, 73.627789 ], [ 80.859375, 73.677264 ], [ 81.210938, 73.677264 ], [ 81.210938, 73.726595 ], [ 81.562500, 73.726595 ], [ 81.562500, 73.775780 ], [ 81.914062, 73.775780 ], [ 81.914062, 73.824820 ], [ 82.265625, 73.824820 ], [ 82.265625, 73.873717 ], [ 83.320312, 73.873717 ], [ 83.320312, 73.824820 ], [ 85.429688, 73.824820 ], [ 85.429688, 73.873717 ], [ 86.484375, 73.873717 ], [ 86.484375, 73.922469 ], [ 86.835938, 73.922469 ], [ 86.835938, 73.971078 ], [ 86.660156, 73.971078 ], [ 86.660156, 74.067866 ], [ 86.484375, 74.067866 ], [ 86.484375, 74.164085 ], [ 86.308594, 74.164085 ], [ 86.308594, 74.259738 ], [ 86.132812, 74.259738 ], [ 86.132812, 74.354828 ], [ 85.957031, 74.354828 ], [ 85.957031, 74.496413 ], [ 86.132812, 74.496413 ], [ 86.132812, 74.590108 ], [ 86.308594, 74.590108 ], [ 86.308594, 74.683250 ], [ 86.484375, 74.683250 ], [ 86.484375, 74.775843 ], [ 86.660156, 74.775843 ], [ 86.660156, 74.867889 ], [ 86.835938, 74.867889 ], [ 86.835938, 74.959392 ], [ 87.011719, 74.959392 ], [ 87.011719, 75.050354 ], [ 87.187500, 75.050354 ], [ 87.187500, 75.095633 ], [ 87.890625, 75.095633 ], [ 87.890625, 75.140778 ], [ 88.417969, 75.140778 ], [ 88.417969, 75.185789 ], [ 88.593750, 75.185789 ], [ 88.593750, 75.230667 ], [ 88.769531, 75.230667 ], [ 88.769531, 75.275413 ], [ 88.945312, 75.275413 ], [ 88.945312, 75.320025 ], [ 89.121094, 75.320025 ], [ 89.121094, 75.364506 ], [ 89.296875, 75.364506 ], [ 89.296875, 75.408854 ], [ 89.472656, 75.408854 ], [ 89.472656, 75.453071 ], [ 89.648438, 75.453071 ], [ 89.648438, 75.497157 ], [ 89.824219, 75.497157 ], [ 89.824219, 75.541113 ], [ 90.000000, 75.541113 ], [ 90.000000, 75.584937 ], [ 90.175781, 75.584937 ], [ 90.175781, 75.628632 ], [ 90.703125, 75.628632 ], [ 90.703125, 75.672197 ], [ 90.878906, 75.672197 ], [ 90.878906, 66.160511 ], [ 72.421875, 66.160511 ], [ 72.421875, 66.231457 ], [ 72.597656, 66.231457 ], [ 72.597656, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 72.949219, 66.513260 ], [ 72.949219, 66.583217 ], [ 73.300781, 66.583217 ], [ 73.300781, 66.652977 ], [ 73.652344, 66.652977 ], [ 73.652344, 66.722541 ], [ 74.003906, 66.722541 ], [ 74.003906, 66.998844 ], [ 74.179688, 66.998844 ], [ 74.179688, 67.272043 ], [ 74.355469, 67.272043 ], [ 74.355469, 67.407487 ], [ 74.531250, 67.407487 ], [ 74.531250, 67.474922 ], [ 74.707031, 67.474922 ], [ 74.707031, 67.542167 ], [ 74.882812, 67.542167 ], [ 74.882812, 67.676085 ], [ 75.058594, 67.676085 ], [ 75.058594, 67.809245 ], [ 74.882812, 67.809245 ], [ 74.882812, 68.007571 ], [ 74.707031, 68.007571 ], [ 74.707031, 68.204212 ], [ 74.531250, 68.204212 ], [ 74.531250, 68.463800 ], [ 74.707031, 68.463800 ], [ 74.707031, 68.784144 ], [ 74.882812, 68.784144 ], [ 74.882812, 68.974164 ], [ 74.531250, 68.974164 ], [ 74.531250, 69.037142 ], [ 74.003906, 69.037142 ], [ 74.003906, 69.099940 ], [ 73.828125, 69.099940 ], [ 73.828125, 69.349339 ], [ 73.652344, 69.349339 ], [ 73.652344, 69.778952 ], [ 73.828125, 69.778952 ], [ 73.828125, 70.020587 ], [ 74.003906, 70.020587 ], [ 74.003906, 70.259452 ], [ 74.179688, 70.259452 ], [ 74.179688, 70.495574 ], [ 74.355469, 70.495574 ], [ 74.355469, 70.670881 ], [ 74.179688, 70.670881 ], [ 74.179688, 70.786910 ], [ 74.003906, 70.786910 ], [ 74.003906, 70.902268 ], [ 73.828125, 70.902268 ], [ 73.828125, 71.016960 ], [ 73.652344, 71.016960 ], [ 73.652344, 71.130988 ], [ 73.476562, 71.130988 ], [ 73.476562, 71.244356 ], [ 73.300781, 71.244356 ], [ 73.300781, 71.357067 ], [ 73.125000, 71.357067 ], [ 73.125000, 71.469124 ], [ 73.300781, 71.469124 ], [ 73.300781, 71.524909 ], [ 73.476562, 71.524909 ], [ 73.476562, 71.635993 ], [ 73.652344, 71.635993 ], [ 73.652344, 71.691293 ], [ 73.828125, 71.691293 ], [ 73.828125, 71.746432 ], [ 74.003906, 71.746432 ], [ 74.003906, 71.801410 ], [ 74.179688, 71.801410 ], [ 74.179688, 71.856229 ], [ 74.355469, 71.856229 ], [ 74.355469, 71.965388 ], [ 74.531250, 71.965388 ], [ 74.531250, 72.019729 ], [ 74.707031, 72.019729 ], [ 74.707031, 72.073911 ], [ 74.882812, 72.073911 ], [ 74.882812, 72.448792 ], [ 74.707031, 72.448792 ], [ 74.707031, 72.816074 ], [ 75.058594, 72.816074 ], [ 75.058594, 72.867930 ], [ 75.234375, 72.867930 ], [ 75.234375, 72.764065 ], [ 75.410156, 72.764065 ], [ 75.410156, 72.554498 ], [ 75.585938, 72.554498 ], [ 75.585938, 72.342464 ], [ 75.761719, 72.342464 ], [ 75.761719, 72.127936 ], [ 75.585938, 72.127936 ], [ 75.585938, 71.801410 ], [ 75.410156, 71.801410 ], [ 75.410156, 71.469124 ], [ 75.234375, 71.469124 ], [ 75.234375, 71.300793 ], [ 75.585938, 71.300793 ], [ 75.585938, 71.244356 ], [ 75.761719, 71.244356 ], [ 75.761719, 71.187754 ], [ 76.113281, 71.187754 ], [ 76.113281, 71.130988 ], [ 76.289062, 71.130988 ], [ 76.289062, 71.300793 ], [ 76.113281, 71.300793 ], [ 76.113281, 71.635993 ], [ 75.937500, 71.635993 ], [ 75.937500, 71.856229 ], [ 76.113281, 71.856229 ], [ 76.113281, 71.910888 ], [ 76.289062, 71.910888 ], [ 76.289062, 71.965388 ], [ 76.464844, 71.965388 ], [ 76.464844, 72.019729 ], [ 76.640625, 72.019729 ], [ 76.640625, 72.073911 ], [ 76.992188, 72.073911 ], [ 76.992188, 72.127936 ], [ 77.167969, 72.127936 ], [ 77.167969, 72.181804 ], [ 77.343750, 72.181804 ], [ 77.343750, 72.235514 ], [ 77.519531, 72.235514 ], [ 77.519531, 72.289067 ], [ 78.750000, 72.289067 ], [ 78.750000, 72.342464 ], [ 79.628906, 72.342464 ], [ 79.628906, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.235514 ], [ 79.980469, 72.235514 ], [ 79.980469, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.127936 ], [ 80.332031, 72.127936 ], [ 80.332031, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 72.019729 ], [ 80.683594, 72.019729 ], [ 80.683594, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.910888 ], [ 81.035156, 71.910888 ], [ 81.035156, 71.856229 ], [ 81.210938, 71.856229 ], [ 81.210938, 71.801410 ], [ 81.386719, 71.801410 ] ], [ [ 81.386719, 71.801410 ], [ 81.386719, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 71.801410 ], [ 81.386719, 71.801410 ] ] ], [ [ [ 68.203125, 76.920614 ], [ 68.203125, 76.840816 ], [ 68.378906, 76.840816 ], [ 68.378906, 76.760541 ], [ 68.554688, 76.760541 ], [ 68.554688, 76.679785 ], [ 68.730469, 76.679785 ], [ 68.730469, 76.598545 ], [ 68.906250, 76.598545 ], [ 68.906250, 76.516819 ], [ 68.730469, 76.516819 ], [ 68.730469, 76.434604 ], [ 68.554688, 76.434604 ], [ 68.554688, 76.351896 ], [ 68.378906, 76.351896 ], [ 68.378906, 76.268695 ], [ 68.203125, 76.268695 ], [ 68.203125, 76.184995 ], [ 67.851562, 76.184995 ], [ 67.851562, 76.142958 ], [ 67.500000, 76.142958 ], [ 67.500000, 76.100796 ], [ 67.148438, 76.100796 ], [ 67.148438, 76.058508 ], [ 66.796875, 76.058508 ], [ 66.796875, 76.016094 ], [ 66.621094, 76.016094 ], [ 66.621094, 75.973553 ], [ 66.269531, 75.973553 ], [ 66.269531, 75.930885 ], [ 65.917969, 75.930885 ], [ 65.917969, 75.888091 ], [ 65.566406, 75.888091 ], [ 65.566406, 75.845169 ], [ 65.214844, 75.845169 ], [ 65.214844, 75.802118 ], [ 64.863281, 75.802118 ], [ 64.863281, 75.758940 ], [ 64.687500, 75.758940 ], [ 64.687500, 75.715633 ], [ 64.335938, 75.715633 ], [ 64.335938, 75.672197 ], [ 63.984375, 75.672197 ], [ 63.984375, 75.628632 ], [ 63.808594, 75.628632 ], [ 63.808594, 75.584937 ], [ 63.457031, 75.584937 ], [ 63.457031, 75.541113 ], [ 63.281250, 75.541113 ], [ 63.281250, 75.497157 ], [ 62.929688, 75.497157 ], [ 62.929688, 75.453071 ], [ 62.578125, 75.453071 ], [ 62.578125, 75.408854 ], [ 62.402344, 75.408854 ], [ 62.402344, 75.364506 ], [ 62.050781, 75.364506 ], [ 62.050781, 75.320025 ], [ 61.699219, 75.320025 ], [ 61.699219, 75.275413 ], [ 61.523438, 75.275413 ], [ 61.523438, 75.230667 ], [ 61.347656, 75.230667 ], [ 61.347656, 75.185789 ], [ 61.171875, 75.185789 ], [ 61.171875, 75.095633 ], [ 60.996094, 75.095633 ], [ 60.996094, 75.050354 ], [ 60.820312, 75.050354 ], [ 60.820312, 75.004940 ], [ 60.644531, 75.004940 ], [ 60.644531, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.867889 ], [ 60.292969, 74.867889 ], [ 60.292969, 74.821934 ], [ 60.117188, 74.821934 ], [ 60.117188, 74.775843 ], [ 59.941406, 74.775843 ], [ 59.941406, 74.729615 ], [ 59.765625, 74.729615 ], [ 59.765625, 74.683250 ], [ 59.589844, 74.683250 ], [ 59.589844, 74.590108 ], [ 59.414062, 74.590108 ], [ 59.414062, 74.543330 ], [ 59.238281, 74.543330 ], [ 59.238281, 74.496413 ], [ 59.062500, 74.496413 ], [ 59.062500, 74.449358 ], [ 58.886719, 74.449358 ], [ 58.886719, 74.354828 ], [ 58.710938, 74.354828 ], [ 58.710938, 74.307353 ], [ 58.535156, 74.307353 ], [ 58.535156, 74.211983 ], [ 58.359375, 74.211983 ], [ 58.359375, 74.116047 ], [ 58.183594, 74.116047 ], [ 58.183594, 74.019543 ], [ 58.007812, 74.019543 ], [ 58.007812, 73.922469 ], [ 57.832031, 73.922469 ], [ 57.832031, 73.824820 ], [ 57.656250, 73.824820 ], [ 57.656250, 73.677264 ], [ 57.480469, 73.677264 ], [ 57.480469, 73.578167 ], [ 57.304688, 73.578167 ], [ 57.304688, 73.478485 ], [ 57.128906, 73.478485 ], [ 57.128906, 73.378215 ], [ 56.953125, 73.378215 ], [ 56.953125, 73.277353 ], [ 56.777344, 73.277353 ], [ 56.777344, 73.175897 ], [ 56.601562, 73.175897 ], [ 56.601562, 73.073844 ], [ 56.425781, 73.073844 ], [ 56.425781, 72.971189 ], [ 56.250000, 72.971189 ], [ 56.250000, 72.867930 ], [ 56.074219, 72.867930 ], [ 56.074219, 72.764065 ], [ 55.898438, 72.764065 ], [ 55.898438, 72.659588 ], [ 55.722656, 72.659588 ], [ 55.722656, 72.554498 ], [ 55.546875, 72.554498 ], [ 55.546875, 72.448792 ], [ 55.371094, 72.448792 ], [ 55.371094, 71.965388 ], [ 55.546875, 71.965388 ], [ 55.546875, 71.469124 ], [ 55.722656, 71.469124 ], [ 55.722656, 71.413177 ], [ 55.898438, 71.413177 ], [ 55.898438, 71.300793 ], [ 56.074219, 71.300793 ], [ 56.074219, 71.244356 ], [ 56.250000, 71.244356 ], [ 56.250000, 71.187754 ], [ 56.425781, 71.187754 ], [ 56.425781, 71.130988 ], [ 56.601562, 71.130988 ], [ 56.601562, 71.016960 ], [ 56.777344, 71.016960 ], [ 56.777344, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.902268 ], [ 57.128906, 70.902268 ], [ 57.128906, 70.786910 ], [ 57.304688, 70.786910 ], [ 57.304688, 70.728979 ], [ 57.480469, 70.728979 ], [ 57.480469, 70.670881 ], [ 57.128906, 70.670881 ], [ 57.128906, 70.612614 ], [ 56.250000, 70.612614 ], [ 56.250000, 70.670881 ], [ 55.195312, 70.670881 ], [ 55.195312, 70.728979 ], [ 54.140625, 70.728979 ], [ 54.140625, 70.786910 ], [ 53.613281, 70.786910 ], [ 53.613281, 70.959697 ], [ 53.437500, 70.959697 ], [ 53.437500, 71.187754 ], [ 53.085938, 71.187754 ], [ 53.085938, 71.244356 ], [ 52.734375, 71.244356 ], [ 52.734375, 71.300793 ], [ 52.382812, 71.300793 ], [ 52.382812, 71.357067 ], [ 52.031250, 71.357067 ], [ 52.031250, 71.413177 ], [ 51.679688, 71.413177 ], [ 51.679688, 71.746432 ], [ 51.503906, 71.746432 ], [ 51.503906, 72.019729 ], [ 51.679688, 72.019729 ], [ 51.679688, 72.073911 ], [ 52.031250, 72.073911 ], [ 52.031250, 72.127936 ], [ 52.207031, 72.127936 ], [ 52.207031, 72.181804 ], [ 52.558594, 72.181804 ], [ 52.558594, 72.501722 ], [ 52.382812, 72.501722 ], [ 52.382812, 72.764065 ], [ 52.558594, 72.764065 ], [ 52.558594, 72.867930 ], [ 52.734375, 72.867930 ], [ 52.734375, 72.919635 ], [ 52.910156, 72.919635 ], [ 52.910156, 72.971189 ], [ 53.085938, 72.971189 ], [ 53.085938, 73.073844 ], [ 53.261719, 73.073844 ], [ 53.261719, 73.124945 ], [ 53.437500, 73.124945 ], [ 53.437500, 73.226700 ], [ 53.613281, 73.226700 ], [ 53.613281, 73.277353 ], [ 53.789062, 73.277353 ], [ 53.789062, 73.378215 ], [ 53.964844, 73.378215 ], [ 53.964844, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.478485 ], [ 54.316406, 73.478485 ], [ 54.316406, 73.578167 ], [ 54.492188, 73.578167 ], [ 54.492188, 73.627789 ], [ 54.140625, 73.627789 ], [ 54.140625, 73.677264 ], [ 53.613281, 73.677264 ], [ 53.613281, 73.824820 ], [ 53.789062, 73.824820 ], [ 53.789062, 73.873717 ], [ 53.964844, 73.873717 ], [ 53.964844, 73.922469 ], [ 54.140625, 73.922469 ], [ 54.140625, 74.019543 ], [ 54.316406, 74.019543 ], [ 54.316406, 74.067866 ], [ 54.492188, 74.067866 ], [ 54.492188, 74.116047 ], [ 54.667969, 74.116047 ], [ 54.667969, 74.211983 ], [ 54.843750, 74.211983 ], [ 54.843750, 74.259738 ], [ 55.019531, 74.259738 ], [ 55.019531, 74.307353 ], [ 55.195312, 74.307353 ], [ 55.195312, 74.402163 ], [ 55.371094, 74.402163 ], [ 55.371094, 74.449358 ], [ 55.546875, 74.449358 ], [ 55.546875, 74.496413 ], [ 55.722656, 74.496413 ], [ 55.722656, 74.590108 ], [ 55.898438, 74.590108 ], [ 55.898438, 74.729615 ], [ 55.722656, 74.729615 ], [ 55.722656, 74.959392 ], [ 55.546875, 74.959392 ], [ 55.546875, 75.095633 ], [ 55.722656, 75.095633 ], [ 55.722656, 75.140778 ], [ 55.898438, 75.140778 ], [ 55.898438, 75.185789 ], [ 56.074219, 75.185789 ], [ 56.074219, 75.230667 ], [ 56.250000, 75.230667 ], [ 56.250000, 75.275413 ], [ 56.425781, 75.275413 ], [ 56.425781, 75.320025 ], [ 56.601562, 75.320025 ], [ 56.601562, 75.364506 ], [ 56.953125, 75.364506 ], [ 56.953125, 75.408854 ], [ 57.128906, 75.408854 ], [ 57.128906, 75.453071 ], [ 57.304688, 75.453071 ], [ 57.304688, 75.497157 ], [ 57.480469, 75.497157 ], [ 57.480469, 75.541113 ], [ 57.656250, 75.541113 ], [ 57.656250, 75.584937 ], [ 57.832031, 75.584937 ], [ 57.832031, 75.628632 ], [ 58.007812, 75.628632 ], [ 58.007812, 75.672197 ], [ 58.183594, 75.672197 ], [ 58.183594, 75.715633 ], [ 58.535156, 75.715633 ], [ 58.535156, 75.758940 ], [ 58.710938, 75.758940 ], [ 58.710938, 75.802118 ], [ 58.886719, 75.802118 ], [ 58.886719, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 75.888091 ], [ 59.414062, 75.888091 ], [ 59.414062, 75.930885 ], [ 59.589844, 75.930885 ], [ 59.589844, 75.973553 ], [ 59.765625, 75.973553 ], [ 59.765625, 76.016094 ], [ 60.117188, 76.016094 ], [ 60.117188, 76.058508 ], [ 60.292969, 76.058508 ], [ 60.292969, 76.100796 ], [ 60.468750, 76.100796 ], [ 60.468750, 76.142958 ], [ 60.644531, 76.142958 ], [ 60.644531, 76.184995 ], [ 60.996094, 76.184995 ], [ 60.996094, 76.226907 ], [ 61.171875, 76.226907 ], [ 61.171875, 76.268695 ], [ 61.699219, 76.268695 ], [ 61.699219, 76.310358 ], [ 62.578125, 76.310358 ], [ 62.578125, 76.351896 ], [ 63.281250, 76.351896 ], [ 63.281250, 76.393312 ], [ 64.160156, 76.393312 ], [ 64.160156, 76.434604 ], [ 64.687500, 76.434604 ], [ 64.687500, 76.475773 ], [ 64.863281, 76.475773 ], [ 64.863281, 76.516819 ], [ 65.039062, 76.516819 ], [ 65.039062, 76.557743 ], [ 65.214844, 76.557743 ], [ 65.214844, 76.598545 ], [ 65.566406, 76.598545 ], [ 65.566406, 76.639226 ], [ 65.742188, 76.639226 ], [ 65.742188, 76.679785 ], [ 65.917969, 76.679785 ], [ 65.917969, 76.720223 ], [ 66.093750, 76.720223 ], [ 66.093750, 76.760541 ], [ 66.269531, 76.760541 ], [ 66.269531, 76.800739 ], [ 66.621094, 76.800739 ], [ 66.621094, 76.840816 ], [ 67.324219, 76.840816 ], [ 67.324219, 76.880775 ], [ 68.027344, 76.880775 ], [ 68.027344, 76.920614 ], [ 68.203125, 76.920614 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 81.210938, 71.856229 ], [ 81.210938, 72.019729 ], [ 81.035156, 72.019729 ], [ 81.035156, 72.181804 ], [ 80.859375, 72.181804 ], [ 80.859375, 72.342464 ], [ 80.683594, 72.342464 ], [ 80.683594, 72.501722 ], [ 80.507812, 72.501722 ], [ 80.507812, 73.677264 ], [ 80.859375, 73.677264 ], [ 80.859375, 73.726595 ], [ 81.210938, 73.726595 ], [ 81.210938, 73.775780 ], [ 81.562500, 73.775780 ], [ 81.562500, 73.824820 ], [ 81.914062, 73.824820 ], [ 81.914062, 73.873717 ], [ 83.144531, 73.873717 ], [ 83.144531, 73.824820 ], [ 85.078125, 73.824820 ], [ 85.078125, 73.873717 ], [ 85.781250, 73.873717 ], [ 85.781250, 73.922469 ], [ 86.484375, 73.922469 ], [ 86.484375, 73.971078 ], [ 86.660156, 73.971078 ], [ 86.660156, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.164085 ], [ 86.308594, 74.164085 ], [ 86.308594, 74.259738 ], [ 86.132812, 74.259738 ], [ 86.132812, 74.402163 ], [ 85.957031, 74.402163 ], [ 85.957031, 74.543330 ], [ 86.132812, 74.543330 ], [ 86.132812, 74.636748 ], [ 86.308594, 74.636748 ], [ 86.308594, 74.729615 ], [ 86.484375, 74.729615 ], [ 86.484375, 74.867889 ], [ 86.660156, 74.867889 ], [ 86.660156, 74.959392 ], [ 86.835938, 74.959392 ], [ 86.835938, 75.050354 ], [ 87.011719, 75.050354 ], [ 87.011719, 75.140778 ], [ 87.714844, 75.140778 ], [ 87.714844, 75.185789 ], [ 88.417969, 75.185789 ], [ 88.417969, 75.230667 ], [ 88.593750, 75.230667 ], [ 88.593750, 75.275413 ], [ 88.769531, 75.275413 ], [ 88.769531, 75.320025 ], [ 88.945312, 75.320025 ], [ 88.945312, 75.364506 ], [ 89.121094, 75.364506 ], [ 89.121094, 75.408854 ], [ 89.296875, 75.408854 ], [ 89.296875, 75.453071 ], [ 89.472656, 75.453071 ], [ 89.472656, 75.497157 ], [ 89.648438, 75.497157 ], [ 89.648438, 75.541113 ], [ 89.824219, 75.541113 ], [ 89.824219, 75.584937 ], [ 90.000000, 75.584937 ], [ 90.000000, 75.628632 ], [ 90.175781, 75.628632 ], [ 90.175781, 75.672197 ], [ 90.878906, 75.672197 ], [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.861082 ], [ 44.296875, 66.861082 ], [ 44.296875, 66.998844 ], [ 44.121094, 66.998844 ], [ 44.121094, 68.528235 ], [ 44.296875, 68.528235 ], [ 44.296875, 68.463800 ], [ 44.824219, 68.463800 ], [ 44.824219, 68.399180 ], [ 45.351562, 68.399180 ], [ 45.351562, 68.334376 ], [ 45.878906, 68.334376 ], [ 45.878906, 68.269387 ], [ 46.230469, 68.269387 ], [ 46.230469, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 68.007571 ], [ 46.582031, 68.007571 ], [ 46.582031, 67.809245 ], [ 46.757812, 67.809245 ], [ 46.757812, 67.742759 ], [ 46.582031, 67.742759 ], [ 46.582031, 67.676085 ], [ 45.878906, 67.676085 ], [ 45.878906, 67.609221 ], [ 45.527344, 67.609221 ], [ 45.527344, 66.998844 ], [ 45.703125, 66.998844 ], [ 45.703125, 66.930060 ], [ 45.878906, 66.930060 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.582031, 66.722541 ], [ 46.582031, 66.791909 ], [ 47.109375, 66.791909 ], [ 47.109375, 66.861082 ], [ 47.636719, 66.861082 ], [ 47.636719, 66.930060 ], [ 47.812500, 66.930060 ], [ 47.812500, 67.204032 ], [ 47.988281, 67.204032 ], [ 47.988281, 67.542167 ], [ 48.164062, 67.542167 ], [ 48.164062, 67.609221 ], [ 48.515625, 67.609221 ], [ 48.515625, 67.676085 ], [ 48.867188, 67.676085 ], [ 48.867188, 67.742759 ], [ 49.218750, 67.742759 ], [ 49.218750, 67.809245 ], [ 49.394531, 67.809245 ], [ 49.394531, 67.875541 ], [ 49.746094, 67.875541 ], [ 49.746094, 67.941650 ], [ 50.097656, 67.941650 ], [ 50.097656, 68.007571 ], [ 50.273438, 68.007571 ], [ 50.273438, 68.073305 ], [ 50.625000, 68.073305 ], [ 50.625000, 68.138852 ], [ 50.800781, 68.138852 ], [ 50.800781, 68.204212 ], [ 51.152344, 68.204212 ], [ 51.152344, 68.269387 ], [ 51.328125, 68.269387 ], [ 51.328125, 68.334376 ], [ 51.503906, 68.334376 ], [ 51.503906, 68.399180 ], [ 51.855469, 68.399180 ], [ 51.855469, 68.463800 ], [ 52.031250, 68.463800 ], [ 52.031250, 68.528235 ], [ 52.382812, 68.528235 ], [ 52.382812, 68.592487 ], [ 52.558594, 68.592487 ], [ 52.558594, 68.656555 ], [ 52.910156, 68.656555 ], [ 52.910156, 68.720441 ], [ 53.085938, 68.720441 ], [ 53.085938, 68.784144 ], [ 53.261719, 68.784144 ], [ 53.261719, 68.847665 ], [ 53.613281, 68.847665 ], [ 53.613281, 68.911005 ], [ 53.789062, 68.911005 ], [ 53.789062, 68.847665 ], [ 54.316406, 68.847665 ], [ 54.316406, 68.784144 ], [ 54.140625, 68.784144 ], [ 54.140625, 68.656555 ], [ 53.964844, 68.656555 ], [ 53.964844, 68.528235 ], [ 53.789062, 68.528235 ], [ 53.789062, 68.399180 ], [ 53.613281, 68.399180 ], [ 53.613281, 68.269387 ], [ 53.437500, 68.269387 ], [ 53.437500, 68.204212 ], [ 53.964844, 68.204212 ], [ 53.964844, 68.138852 ], [ 54.843750, 68.138852 ], [ 54.843750, 68.204212 ], [ 55.019531, 68.204212 ], [ 55.019531, 68.334376 ], [ 55.195312, 68.334376 ], [ 55.195312, 68.399180 ], [ 55.371094, 68.399180 ], [ 55.371094, 68.463800 ], [ 56.425781, 68.463800 ], [ 56.425781, 68.528235 ], [ 57.480469, 68.528235 ], [ 57.480469, 68.592487 ], [ 57.832031, 68.592487 ], [ 57.832031, 68.656555 ], [ 58.007812, 68.656555 ], [ 58.007812, 68.720441 ], [ 58.183594, 68.720441 ], [ 58.183594, 68.784144 ], [ 58.535156, 68.784144 ], [ 58.535156, 68.847665 ], [ 58.886719, 68.847665 ], [ 58.886719, 68.784144 ], [ 59.062500, 68.784144 ], [ 59.062500, 68.656555 ], [ 59.238281, 68.656555 ], [ 59.238281, 68.592487 ], [ 59.414062, 68.592487 ], [ 59.414062, 68.528235 ], [ 59.589844, 68.528235 ], [ 59.589844, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.334376 ], [ 60.117188, 68.334376 ], [ 60.117188, 68.463800 ], [ 60.292969, 68.463800 ], [ 60.292969, 68.592487 ], [ 60.468750, 68.592487 ], [ 60.468750, 68.656555 ], [ 60.644531, 68.656555 ], [ 60.644531, 68.784144 ], [ 60.820312, 68.784144 ], [ 60.820312, 68.911005 ], [ 60.996094, 68.911005 ], [ 60.996094, 68.974164 ], [ 60.820312, 68.974164 ], [ 60.820312, 69.099940 ], [ 60.644531, 69.099940 ], [ 60.644531, 69.162558 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.287257 ], [ 60.292969, 69.287257 ], [ 60.292969, 69.349339 ], [ 60.117188, 69.349339 ], [ 60.117188, 69.472969 ], [ 59.941406, 69.472969 ], [ 59.941406, 69.595890 ], [ 60.117188, 69.595890 ], [ 60.117188, 69.718107 ], [ 60.292969, 69.718107 ], [ 60.292969, 69.839622 ], [ 60.468750, 69.839622 ], [ 60.468750, 69.900118 ], [ 60.644531, 69.900118 ], [ 60.644531, 69.839622 ], [ 61.347656, 69.839622 ], [ 61.347656, 69.778952 ], [ 61.875000, 69.778952 ], [ 61.875000, 69.718107 ], [ 62.402344, 69.718107 ], [ 62.402344, 69.657086 ], [ 63.105469, 69.657086 ], [ 63.105469, 69.595890 ], [ 63.457031, 69.595890 ], [ 63.457031, 69.534518 ], [ 63.808594, 69.534518 ], [ 63.808594, 69.472969 ], [ 63.984375, 69.472969 ], [ 63.984375, 69.411242 ], [ 64.335938, 69.411242 ], [ 64.335938, 69.349339 ], [ 64.687500, 69.349339 ], [ 64.687500, 69.287257 ], [ 64.863281, 69.287257 ], [ 64.863281, 69.224997 ], [ 65.039062, 69.224997 ], [ 65.039062, 69.162558 ], [ 65.214844, 69.162558 ], [ 65.214844, 69.099940 ], [ 65.390625, 69.099940 ], [ 65.390625, 69.037142 ], [ 65.566406, 69.037142 ], [ 65.566406, 68.974164 ], [ 65.917969, 68.974164 ], [ 65.917969, 68.911005 ], [ 66.093750, 68.911005 ], [ 66.093750, 68.847665 ], [ 66.269531, 68.847665 ], [ 66.269531, 68.784144 ], [ 66.445312, 68.784144 ], [ 66.445312, 68.720441 ], [ 66.621094, 68.720441 ], [ 66.621094, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.592487 ], [ 66.972656, 68.592487 ], [ 66.972656, 68.528235 ], [ 67.148438, 68.528235 ], [ 67.148438, 68.463800 ], [ 67.324219, 68.463800 ], [ 67.324219, 68.399180 ], [ 67.675781, 68.399180 ], [ 67.675781, 68.334376 ], [ 67.851562, 68.334376 ], [ 67.851562, 68.269387 ], [ 68.027344, 68.269387 ], [ 68.027344, 68.204212 ], [ 68.203125, 68.204212 ], [ 68.203125, 68.138852 ], [ 68.378906, 68.138852 ], [ 68.378906, 68.204212 ], [ 68.554688, 68.204212 ], [ 68.554688, 68.334376 ], [ 68.730469, 68.334376 ], [ 68.730469, 68.463800 ], [ 68.906250, 68.463800 ], [ 68.906250, 68.592487 ], [ 69.082031, 68.592487 ], [ 69.082031, 68.656555 ], [ 68.906250, 68.656555 ], [ 68.906250, 68.784144 ], [ 68.730469, 68.784144 ], [ 68.730469, 68.847665 ], [ 68.554688, 68.847665 ], [ 68.554688, 68.911005 ], [ 68.378906, 68.911005 ], [ 68.378906, 69.037142 ], [ 68.203125, 69.037142 ], [ 68.203125, 69.099940 ], [ 68.027344, 69.099940 ], [ 68.027344, 69.411242 ], [ 67.324219, 69.411242 ], [ 67.324219, 69.472969 ], [ 66.796875, 69.472969 ], [ 66.796875, 69.595890 ], [ 66.972656, 69.595890 ], [ 66.972656, 69.839622 ], [ 67.148438, 69.839622 ], [ 67.148438, 70.080562 ], [ 66.972656, 70.080562 ], [ 66.972656, 70.318738 ], [ 66.796875, 70.318738 ], [ 66.796875, 70.554179 ], [ 66.621094, 70.554179 ], [ 66.621094, 71.074056 ], [ 66.796875, 71.074056 ], [ 66.796875, 71.187754 ], [ 66.972656, 71.187754 ], [ 66.972656, 71.300793 ], [ 67.148438, 71.300793 ], [ 67.148438, 71.357067 ], [ 67.324219, 71.357067 ], [ 67.324219, 71.469124 ], [ 67.500000, 71.469124 ], [ 67.500000, 71.524909 ], [ 67.675781, 71.524909 ], [ 67.675781, 71.635993 ], [ 67.851562, 71.635993 ], [ 67.851562, 71.746432 ], [ 68.027344, 71.746432 ], [ 68.027344, 71.801410 ], [ 68.203125, 71.801410 ], [ 68.203125, 71.910888 ], [ 68.378906, 71.910888 ], [ 68.378906, 72.073911 ], [ 68.554688, 72.073911 ], [ 68.554688, 72.289067 ], [ 68.730469, 72.289067 ], [ 68.730469, 72.501722 ], [ 68.906250, 72.501722 ], [ 68.906250, 72.711903 ], [ 69.082031, 72.711903 ], [ 69.082031, 72.867930 ], [ 69.257812, 72.867930 ], [ 69.257812, 72.919635 ], [ 69.433594, 72.919635 ], [ 69.433594, 72.971189 ], [ 69.609375, 72.971189 ], [ 69.609375, 73.022592 ], [ 69.785156, 73.022592 ], [ 69.785156, 73.073844 ], [ 69.960938, 73.073844 ], [ 69.960938, 73.022592 ], [ 70.488281, 73.022592 ], [ 70.488281, 72.971189 ], [ 71.015625, 72.971189 ], [ 71.015625, 72.919635 ], [ 71.542969, 72.919635 ], [ 71.542969, 72.867930 ], [ 72.070312, 72.867930 ], [ 72.070312, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.659588 ], [ 72.597656, 72.659588 ], [ 72.597656, 72.342464 ], [ 72.773438, 72.342464 ], [ 72.773438, 72.127936 ], [ 72.597656, 72.127936 ], [ 72.597656, 72.019729 ], [ 72.421875, 72.019729 ], [ 72.421875, 71.856229 ], [ 72.246094, 71.856229 ], [ 72.246094, 71.746432 ], [ 72.070312, 71.746432 ], [ 72.070312, 71.580532 ], [ 71.894531, 71.580532 ], [ 71.894531, 71.469124 ], [ 71.718750, 71.469124 ], [ 71.718750, 71.357067 ], [ 71.894531, 71.357067 ], [ 71.894531, 71.300793 ], [ 72.070312, 71.300793 ], [ 72.070312, 71.187754 ], [ 72.246094, 71.187754 ], [ 72.246094, 71.130988 ], [ 72.421875, 71.130988 ], [ 72.421875, 70.959697 ], [ 72.597656, 70.959697 ], [ 72.597656, 70.612614 ], [ 72.773438, 70.612614 ], [ 72.773438, 70.080562 ], [ 72.597656, 70.080562 ], [ 72.597656, 69.349339 ], [ 72.421875, 69.349339 ], [ 72.421875, 68.974164 ], [ 72.597656, 68.974164 ], [ 72.597656, 68.911005 ], [ 72.773438, 68.911005 ], [ 72.773438, 68.784144 ], [ 72.949219, 68.784144 ], [ 72.949219, 68.720441 ], [ 73.125000, 68.720441 ], [ 73.125000, 68.656555 ], [ 73.300781, 68.656555 ], [ 73.300781, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.463800 ], [ 73.652344, 68.463800 ], [ 73.652344, 68.334376 ], [ 73.476562, 68.334376 ], [ 73.476562, 68.073305 ], [ 73.300781, 68.073305 ], [ 73.300781, 67.809245 ], [ 73.125000, 67.809245 ], [ 73.125000, 67.676085 ], [ 72.949219, 67.676085 ], [ 72.949219, 67.542167 ], [ 72.773438, 67.542167 ], [ 72.773438, 67.407487 ], [ 72.597656, 67.407487 ], [ 72.597656, 67.272043 ], [ 72.421875, 67.272043 ], [ 72.421875, 67.135829 ], [ 72.246094, 67.135829 ], [ 72.246094, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.930060 ], [ 71.894531, 66.930060 ], [ 71.894531, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.652977 ], [ 71.542969, 66.652977 ], [ 71.542969, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.302205 ], [ 72.070312, 66.302205 ], [ 72.070312, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.302205 ], [ 72.597656, 66.302205 ], [ 72.597656, 66.443107 ], [ 72.773438, 66.443107 ], [ 72.773438, 66.583217 ], [ 73.125000, 66.583217 ], [ 73.125000, 66.652977 ], [ 73.476562, 66.652977 ], [ 73.476562, 66.722541 ], [ 73.828125, 66.722541 ], [ 73.828125, 66.930060 ], [ 74.003906, 66.930060 ], [ 74.003906, 67.204032 ], [ 74.179688, 67.204032 ], [ 74.179688, 67.339861 ], [ 74.355469, 67.339861 ], [ 74.355469, 67.474922 ], [ 74.531250, 67.474922 ], [ 74.531250, 67.609221 ], [ 74.707031, 67.609221 ], [ 74.707031, 67.742759 ], [ 74.882812, 67.742759 ], [ 74.882812, 67.875541 ], [ 74.707031, 67.875541 ], [ 74.707031, 68.073305 ], [ 74.531250, 68.073305 ], [ 74.531250, 68.204212 ], [ 74.355469, 68.204212 ], [ 74.355469, 68.399180 ], [ 74.531250, 68.399180 ], [ 74.531250, 68.656555 ], [ 74.707031, 68.656555 ], [ 74.707031, 68.911005 ], [ 74.882812, 68.911005 ], [ 74.882812, 69.037142 ], [ 74.179688, 69.037142 ], [ 74.179688, 69.099940 ], [ 73.828125, 69.099940 ], [ 73.828125, 69.224997 ], [ 73.652344, 69.224997 ], [ 73.652344, 69.472969 ], [ 73.476562, 69.472969 ], [ 73.476562, 69.718107 ], [ 73.652344, 69.718107 ], [ 73.652344, 69.960439 ], [ 73.828125, 69.960439 ], [ 73.828125, 70.140364 ], [ 74.003906, 70.140364 ], [ 74.003906, 70.318738 ], [ 74.179688, 70.318738 ], [ 74.179688, 70.554179 ], [ 74.355469, 70.554179 ], [ 74.355469, 70.670881 ], [ 74.179688, 70.670881 ], [ 74.179688, 70.786910 ], [ 74.003906, 70.786910 ], [ 74.003906, 70.902268 ], [ 73.828125, 70.902268 ], [ 73.828125, 71.016960 ], [ 73.652344, 71.016960 ], [ 73.652344, 71.074056 ], [ 73.476562, 71.074056 ], [ 73.476562, 71.187754 ], [ 73.300781, 71.187754 ], [ 73.300781, 71.300793 ], [ 73.125000, 71.300793 ], [ 73.125000, 71.413177 ], [ 72.949219, 71.413177 ], [ 72.949219, 71.469124 ], [ 73.125000, 71.469124 ], [ 73.125000, 71.524909 ], [ 73.300781, 71.524909 ], [ 73.300781, 71.580532 ], [ 73.476562, 71.580532 ], [ 73.476562, 71.635993 ], [ 73.652344, 71.635993 ], [ 73.652344, 71.691293 ], [ 73.828125, 71.691293 ], [ 73.828125, 71.801410 ], [ 74.003906, 71.801410 ], [ 74.003906, 71.856229 ], [ 74.179688, 71.856229 ], [ 74.179688, 71.910888 ], [ 74.355469, 71.910888 ], [ 74.355469, 71.965388 ], [ 74.531250, 71.965388 ], [ 74.531250, 72.019729 ], [ 74.707031, 72.019729 ], [ 74.707031, 72.073911 ], [ 74.882812, 72.073911 ], [ 74.882812, 72.289067 ], [ 74.707031, 72.289067 ], [ 74.707031, 72.659588 ], [ 74.531250, 72.659588 ], [ 74.531250, 72.867930 ], [ 75.058594, 72.867930 ], [ 75.058594, 72.764065 ], [ 75.234375, 72.764065 ], [ 75.234375, 72.607120 ], [ 75.410156, 72.607120 ], [ 75.410156, 72.395706 ], [ 75.585938, 72.395706 ], [ 75.585938, 72.073911 ], [ 75.410156, 72.073911 ], [ 75.410156, 71.580532 ], [ 75.234375, 71.580532 ], [ 75.234375, 71.300793 ], [ 75.585938, 71.300793 ], [ 75.585938, 71.244356 ], [ 75.937500, 71.244356 ], [ 75.937500, 71.187754 ], [ 76.289062, 71.187754 ], [ 76.289062, 71.300793 ], [ 76.113281, 71.300793 ], [ 76.113281, 71.524909 ], [ 75.937500, 71.524909 ], [ 75.937500, 71.746432 ], [ 75.761719, 71.746432 ], [ 75.761719, 71.910888 ], [ 75.937500, 71.910888 ], [ 75.937500, 71.965388 ], [ 76.289062, 71.965388 ], [ 76.289062, 72.019729 ], [ 76.464844, 72.019729 ], [ 76.464844, 72.073911 ], [ 76.816406, 72.073911 ], [ 76.816406, 72.127936 ], [ 76.992188, 72.127936 ], [ 76.992188, 72.181804 ], [ 77.167969, 72.181804 ], [ 77.167969, 72.235514 ], [ 77.519531, 72.235514 ], [ 77.519531, 72.289067 ], [ 78.750000, 72.289067 ], [ 78.750000, 72.342464 ], [ 79.628906, 72.342464 ], [ 79.628906, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.235514 ], [ 79.980469, 72.235514 ], [ 79.980469, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.127936 ], [ 80.332031, 72.127936 ], [ 80.332031, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 72.019729 ], [ 80.683594, 72.019729 ], [ 80.683594, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.910888 ], [ 81.035156, 71.910888 ], [ 81.035156, 71.856229 ], [ 81.210938, 71.856229 ] ], [ [ 81.210938, 71.856229 ], [ 81.210938, 71.801410 ], [ 81.386719, 71.801410 ], [ 81.386719, 71.856229 ], [ 81.210938, 71.856229 ] ] ], [ [ [ 68.027344, 76.960334 ], [ 68.027344, 76.880775 ], [ 68.203125, 76.880775 ], [ 68.203125, 76.800739 ], [ 68.378906, 76.800739 ], [ 68.378906, 76.679785 ], [ 68.554688, 76.679785 ], [ 68.554688, 76.598545 ], [ 68.730469, 76.598545 ], [ 68.730469, 76.516819 ], [ 68.554688, 76.516819 ], [ 68.554688, 76.434604 ], [ 68.378906, 76.434604 ], [ 68.378906, 76.351896 ], [ 68.203125, 76.351896 ], [ 68.203125, 76.268695 ], [ 68.027344, 76.268695 ], [ 68.027344, 76.226907 ], [ 67.675781, 76.226907 ], [ 67.675781, 76.184995 ], [ 67.324219, 76.184995 ], [ 67.324219, 76.142958 ], [ 67.148438, 76.142958 ], [ 67.148438, 76.100796 ], [ 66.796875, 76.100796 ], [ 66.796875, 76.058508 ], [ 66.445312, 76.058508 ], [ 66.445312, 76.016094 ], [ 66.269531, 76.016094 ], [ 66.269531, 75.973553 ], [ 65.917969, 75.973553 ], [ 65.917969, 75.930885 ], [ 65.566406, 75.930885 ], [ 65.566406, 75.888091 ], [ 65.390625, 75.888091 ], [ 65.390625, 75.845169 ], [ 65.039062, 75.845169 ], [ 65.039062, 75.802118 ], [ 64.687500, 75.802118 ], [ 64.687500, 75.758940 ], [ 64.511719, 75.758940 ], [ 64.511719, 75.715633 ], [ 64.160156, 75.715633 ], [ 64.160156, 75.672197 ], [ 63.984375, 75.672197 ], [ 63.984375, 75.628632 ], [ 63.632812, 75.628632 ], [ 63.632812, 75.584937 ], [ 63.457031, 75.584937 ], [ 63.457031, 75.541113 ], [ 63.105469, 75.541113 ], [ 63.105469, 75.497157 ], [ 62.753906, 75.497157 ], [ 62.753906, 75.453071 ], [ 62.578125, 75.453071 ], [ 62.578125, 75.408854 ], [ 62.226562, 75.408854 ], [ 62.226562, 75.364506 ], [ 62.050781, 75.364506 ], [ 62.050781, 75.320025 ], [ 61.699219, 75.320025 ], [ 61.699219, 75.275413 ], [ 61.523438, 75.275413 ], [ 61.523438, 75.230667 ], [ 61.347656, 75.230667 ], [ 61.347656, 75.185789 ], [ 61.171875, 75.185789 ], [ 61.171875, 75.140778 ], [ 60.996094, 75.140778 ], [ 60.996094, 75.095633 ], [ 60.820312, 75.095633 ], [ 60.820312, 75.050354 ], [ 60.644531, 75.050354 ], [ 60.644531, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.913708 ], [ 60.292969, 74.913708 ], [ 60.292969, 74.867889 ], [ 60.117188, 74.867889 ], [ 60.117188, 74.821934 ], [ 59.941406, 74.821934 ], [ 59.941406, 74.775843 ], [ 59.765625, 74.775843 ], [ 59.765625, 74.729615 ], [ 59.589844, 74.729615 ], [ 59.589844, 74.683250 ], [ 59.414062, 74.683250 ], [ 59.414062, 74.636748 ], [ 59.238281, 74.636748 ], [ 59.238281, 74.590108 ], [ 59.062500, 74.590108 ], [ 59.062500, 74.496413 ], [ 58.886719, 74.496413 ], [ 58.886719, 74.449358 ], [ 58.710938, 74.449358 ], [ 58.710938, 74.402163 ], [ 58.535156, 74.402163 ], [ 58.535156, 74.354828 ], [ 58.359375, 74.354828 ], [ 58.359375, 74.259738 ], [ 58.183594, 74.259738 ], [ 58.183594, 74.164085 ], [ 58.007812, 74.164085 ], [ 58.007812, 74.019543 ], [ 57.832031, 74.019543 ], [ 57.832031, 73.922469 ], [ 57.656250, 73.922469 ], [ 57.656250, 73.775780 ], [ 57.480469, 73.775780 ], [ 57.480469, 73.677264 ], [ 57.304688, 73.677264 ], [ 57.304688, 73.528399 ], [ 57.128906, 73.528399 ], [ 57.128906, 73.428424 ], [ 56.953125, 73.428424 ], [ 56.953125, 73.277353 ], [ 56.777344, 73.277353 ], [ 56.777344, 73.175897 ], [ 56.601562, 73.175897 ], [ 56.601562, 73.073844 ], [ 56.425781, 73.073844 ], [ 56.425781, 72.971189 ], [ 56.250000, 72.971189 ], [ 56.250000, 72.867930 ], [ 56.074219, 72.867930 ], [ 56.074219, 72.764065 ], [ 55.898438, 72.764065 ], [ 55.898438, 72.659588 ], [ 55.722656, 72.659588 ], [ 55.722656, 72.554498 ], [ 55.546875, 72.554498 ], [ 55.546875, 72.448792 ], [ 55.371094, 72.448792 ], [ 55.371094, 71.965388 ], [ 55.546875, 71.965388 ], [ 55.546875, 71.524909 ], [ 55.722656, 71.524909 ], [ 55.722656, 71.413177 ], [ 55.898438, 71.413177 ], [ 55.898438, 71.357067 ], [ 56.074219, 71.357067 ], [ 56.074219, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.187754 ], [ 56.425781, 71.187754 ], [ 56.425781, 71.130988 ], [ 56.601562, 71.130988 ], [ 56.601562, 71.074056 ], [ 56.777344, 71.074056 ], [ 56.777344, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.902268 ], [ 57.128906, 70.902268 ], [ 57.128906, 70.844673 ], [ 57.304688, 70.844673 ], [ 57.304688, 70.670881 ], [ 55.898438, 70.670881 ], [ 55.898438, 70.728979 ], [ 54.316406, 70.728979 ], [ 54.316406, 70.786910 ], [ 53.613281, 70.786910 ], [ 53.613281, 70.902268 ], [ 53.437500, 70.902268 ], [ 53.437500, 71.130988 ], [ 53.261719, 71.130988 ], [ 53.261719, 71.244356 ], [ 52.910156, 71.244356 ], [ 52.910156, 71.300793 ], [ 52.558594, 71.300793 ], [ 52.558594, 71.357067 ], [ 52.207031, 71.357067 ], [ 52.207031, 71.413177 ], [ 51.855469, 71.413177 ], [ 51.855469, 71.469124 ], [ 51.503906, 71.469124 ], [ 51.503906, 71.746432 ], [ 51.328125, 71.746432 ], [ 51.328125, 72.019729 ], [ 51.503906, 72.019729 ], [ 51.503906, 72.073911 ], [ 51.855469, 72.073911 ], [ 51.855469, 72.127936 ], [ 52.031250, 72.127936 ], [ 52.031250, 72.181804 ], [ 52.382812, 72.181804 ], [ 52.382812, 72.816074 ], [ 52.558594, 72.816074 ], [ 52.558594, 72.919635 ], [ 52.734375, 72.919635 ], [ 52.734375, 72.971189 ], [ 52.910156, 72.971189 ], [ 52.910156, 73.073844 ], [ 53.085938, 73.073844 ], [ 53.085938, 73.124945 ], [ 53.261719, 73.124945 ], [ 53.261719, 73.226700 ], [ 53.437500, 73.226700 ], [ 53.437500, 73.277353 ], [ 53.613281, 73.277353 ], [ 53.613281, 73.327858 ], [ 53.789062, 73.327858 ], [ 53.789062, 73.428424 ], [ 53.964844, 73.428424 ], [ 53.964844, 73.478485 ], [ 54.140625, 73.478485 ], [ 54.140625, 73.578167 ], [ 54.316406, 73.578167 ], [ 54.316406, 73.627789 ], [ 54.140625, 73.627789 ], [ 54.140625, 73.677264 ], [ 53.789062, 73.677264 ], [ 53.789062, 73.726595 ], [ 53.437500, 73.726595 ], [ 53.437500, 73.775780 ], [ 53.613281, 73.775780 ], [ 53.613281, 73.824820 ], [ 53.789062, 73.824820 ], [ 53.789062, 73.922469 ], [ 53.964844, 73.922469 ], [ 53.964844, 73.971078 ], [ 54.140625, 73.971078 ], [ 54.140625, 74.019543 ], [ 54.316406, 74.019543 ], [ 54.316406, 74.116047 ], [ 54.492188, 74.116047 ], [ 54.492188, 74.164085 ], [ 54.667969, 74.164085 ], [ 54.667969, 74.211983 ], [ 54.843750, 74.211983 ], [ 54.843750, 74.259738 ], [ 55.019531, 74.259738 ], [ 55.019531, 74.354828 ], [ 55.195312, 74.354828 ], [ 55.195312, 74.402163 ], [ 55.371094, 74.402163 ], [ 55.371094, 74.449358 ], [ 55.546875, 74.449358 ], [ 55.546875, 74.543330 ], [ 55.722656, 74.543330 ], [ 55.722656, 74.590108 ], [ 55.898438, 74.590108 ], [ 55.898438, 74.729615 ], [ 55.722656, 74.729615 ], [ 55.722656, 74.959392 ], [ 55.546875, 74.959392 ], [ 55.546875, 75.095633 ], [ 55.722656, 75.095633 ], [ 55.722656, 75.140778 ], [ 55.898438, 75.140778 ], [ 55.898438, 75.185789 ], [ 56.074219, 75.185789 ], [ 56.074219, 75.230667 ], [ 56.250000, 75.230667 ], [ 56.250000, 75.275413 ], [ 56.425781, 75.275413 ], [ 56.425781, 75.320025 ], [ 56.601562, 75.320025 ], [ 56.601562, 75.364506 ], [ 56.953125, 75.364506 ], [ 56.953125, 75.408854 ], [ 57.128906, 75.408854 ], [ 57.128906, 75.453071 ], [ 57.304688, 75.453071 ], [ 57.304688, 75.497157 ], [ 57.480469, 75.497157 ], [ 57.480469, 75.541113 ], [ 57.656250, 75.541113 ], [ 57.656250, 75.584937 ], [ 57.832031, 75.584937 ], [ 57.832031, 75.628632 ], [ 58.007812, 75.628632 ], [ 58.007812, 75.672197 ], [ 58.183594, 75.672197 ], [ 58.183594, 75.715633 ], [ 58.535156, 75.715633 ], [ 58.535156, 75.758940 ], [ 58.710938, 75.758940 ], [ 58.710938, 75.802118 ], [ 58.886719, 75.802118 ], [ 58.886719, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 75.888091 ], [ 59.414062, 75.888091 ], [ 59.414062, 75.930885 ], [ 59.589844, 75.930885 ], [ 59.589844, 75.973553 ], [ 59.765625, 75.973553 ], [ 59.765625, 76.016094 ], [ 60.117188, 76.016094 ], [ 60.117188, 76.058508 ], [ 60.292969, 76.058508 ], [ 60.292969, 76.100796 ], [ 60.468750, 76.100796 ], [ 60.468750, 76.142958 ], [ 60.644531, 76.142958 ], [ 60.644531, 76.184995 ], [ 60.996094, 76.184995 ], [ 60.996094, 76.226907 ], [ 61.171875, 76.226907 ], [ 61.171875, 76.268695 ], [ 61.523438, 76.268695 ], [ 61.523438, 76.310358 ], [ 62.226562, 76.310358 ], [ 62.226562, 76.351896 ], [ 62.929688, 76.351896 ], [ 62.929688, 76.393312 ], [ 63.457031, 76.393312 ], [ 63.457031, 76.434604 ], [ 64.160156, 76.434604 ], [ 64.160156, 76.475773 ], [ 64.511719, 76.475773 ], [ 64.511719, 76.516819 ], [ 64.687500, 76.516819 ], [ 64.687500, 76.557743 ], [ 64.863281, 76.557743 ], [ 64.863281, 76.598545 ], [ 65.039062, 76.598545 ], [ 65.039062, 76.639226 ], [ 65.390625, 76.639226 ], [ 65.390625, 76.679785 ], [ 65.566406, 76.679785 ], [ 65.566406, 76.720223 ], [ 65.742188, 76.720223 ], [ 65.742188, 76.760541 ], [ 65.917969, 76.760541 ], [ 65.917969, 76.800739 ], [ 66.093750, 76.800739 ], [ 66.093750, 76.840816 ], [ 66.445312, 76.840816 ], [ 66.445312, 76.880775 ], [ 67.148438, 76.880775 ], [ 67.148438, 76.920614 ], [ 67.851562, 76.920614 ], [ 67.851562, 76.960334 ], [ 68.027344, 76.960334 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.273438, 80.900669 ], [ 50.273438, 80.872827 ], [ 50.449219, 80.872827 ], [ 50.449219, 80.844901 ], [ 50.625000, 80.844901 ], [ 50.625000, 80.816891 ], [ 50.800781, 80.816891 ], [ 50.800781, 80.788795 ], [ 50.976562, 80.788795 ], [ 50.976562, 80.760615 ], [ 51.152344, 80.760615 ], [ 51.152344, 80.732349 ], [ 51.328125, 80.732349 ], [ 51.328125, 80.703997 ], [ 51.503906, 80.703997 ], [ 51.503906, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.589727 ], [ 51.152344, 80.589727 ], [ 51.152344, 80.532071 ], [ 50.800781, 80.532071 ], [ 50.800781, 80.503112 ], [ 50.625000, 80.503112 ], [ 50.625000, 80.474065 ], [ 50.273438, 80.474065 ], [ 50.273438, 80.444931 ], [ 49.921875, 80.444931 ], [ 49.921875, 80.415707 ], [ 49.746094, 80.415707 ], [ 49.746094, 80.386396 ], [ 49.394531, 80.386396 ], [ 49.394531, 80.356995 ], [ 49.042969, 80.356995 ], [ 49.042969, 80.327506 ], [ 48.867188, 80.327506 ], [ 48.867188, 80.238501 ], [ 48.691406, 80.238501 ], [ 48.691406, 80.148684 ], [ 48.515625, 80.148684 ], [ 48.515625, 80.118564 ], [ 48.339844, 80.118564 ], [ 48.339844, 80.088352 ], [ 48.164062, 80.088352 ], [ 48.164062, 80.058050 ], [ 47.988281, 80.058050 ], [ 47.988281, 80.027655 ], [ 47.812500, 80.027655 ], [ 47.812500, 79.997168 ], [ 47.460938, 79.997168 ], [ 47.460938, 80.058050 ], [ 47.285156, 80.058050 ], [ 47.285156, 80.088352 ], [ 47.109375, 80.088352 ], [ 47.109375, 80.118564 ], [ 46.933594, 80.118564 ], [ 46.933594, 80.178713 ], [ 46.757812, 80.178713 ], [ 46.757812, 80.208652 ], [ 46.582031, 80.208652 ], [ 46.582031, 80.268259 ], [ 46.757812, 80.268259 ], [ 46.757812, 80.386396 ], [ 46.933594, 80.386396 ], [ 46.933594, 80.503112 ], [ 47.109375, 80.503112 ], [ 47.109375, 80.560943 ], [ 45.878906, 80.560943 ], [ 45.878906, 80.589727 ], [ 45.000000, 80.589727 ], [ 45.000000, 80.618424 ], [ 45.351562, 80.618424 ], [ 45.351562, 80.647035 ], [ 45.703125, 80.647035 ], [ 45.703125, 80.675559 ], [ 46.054688, 80.675559 ], [ 46.054688, 80.703997 ], [ 46.406250, 80.703997 ], [ 46.406250, 80.732349 ], [ 46.757812, 80.732349 ], [ 46.757812, 80.760615 ], [ 47.636719, 80.760615 ], [ 47.636719, 80.788795 ], [ 48.339844, 80.788795 ], [ 48.339844, 80.647035 ], [ 48.515625, 80.647035 ], [ 48.515625, 80.532071 ], [ 48.691406, 80.532071 ], [ 48.691406, 80.618424 ], [ 48.867188, 80.618424 ], [ 48.867188, 80.703997 ], [ 49.042969, 80.703997 ], [ 49.042969, 80.760615 ], [ 49.218750, 80.760615 ], [ 49.218750, 80.788795 ], [ 49.394531, 80.788795 ], [ 49.394531, 80.816891 ], [ 49.570312, 80.816891 ], [ 49.570312, 80.844901 ], [ 49.746094, 80.844901 ], [ 49.746094, 80.872827 ], [ 49.921875, 80.872827 ], [ 49.921875, 80.900669 ], [ 50.273438, 80.900669 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.097656, 80.900669 ], [ 50.097656, 80.872827 ], [ 50.273438, 80.872827 ], [ 50.273438, 80.844901 ], [ 50.449219, 80.844901 ], [ 50.449219, 80.816891 ], [ 50.800781, 80.816891 ], [ 50.800781, 80.788795 ], [ 50.976562, 80.788795 ], [ 50.976562, 80.760615 ], [ 51.152344, 80.760615 ], [ 51.152344, 80.732349 ], [ 51.328125, 80.732349 ], [ 51.328125, 80.703997 ], [ 51.503906, 80.703997 ], [ 51.503906, 80.675559 ], [ 51.328125, 80.675559 ], [ 51.328125, 80.618424 ], [ 51.152344, 80.618424 ], [ 51.152344, 80.560943 ], [ 50.976562, 80.560943 ], [ 50.976562, 80.532071 ], [ 50.625000, 80.532071 ], [ 50.625000, 80.503112 ], [ 50.449219, 80.503112 ], [ 50.449219, 80.474065 ], [ 50.273438, 80.474065 ], [ 50.273438, 80.444931 ], [ 49.921875, 80.444931 ], [ 49.921875, 80.415707 ], [ 49.570312, 80.415707 ], [ 49.570312, 80.386396 ], [ 49.218750, 80.386396 ], [ 49.218750, 80.356995 ], [ 48.867188, 80.356995 ], [ 48.867188, 80.268259 ], [ 48.691406, 80.268259 ], [ 48.691406, 80.148684 ], [ 48.339844, 80.148684 ], [ 48.339844, 80.118564 ], [ 48.164062, 80.118564 ], [ 48.164062, 80.088352 ], [ 47.988281, 80.088352 ], [ 47.988281, 80.058050 ], [ 47.636719, 80.058050 ], [ 47.636719, 80.027655 ], [ 47.285156, 80.027655 ], [ 47.285156, 80.088352 ], [ 47.109375, 80.088352 ], [ 47.109375, 80.118564 ], [ 46.933594, 80.118564 ], [ 46.933594, 80.148684 ], [ 46.757812, 80.148684 ], [ 46.757812, 80.208652 ], [ 46.582031, 80.208652 ], [ 46.582031, 80.238501 ], [ 46.406250, 80.238501 ], [ 46.406250, 80.297927 ], [ 46.582031, 80.297927 ], [ 46.582031, 80.415707 ], [ 46.757812, 80.415707 ], [ 46.757812, 80.503112 ], [ 46.933594, 80.503112 ], [ 46.933594, 80.560943 ], [ 45.703125, 80.560943 ], [ 45.703125, 80.589727 ], [ 45.000000, 80.589727 ], [ 45.000000, 80.618424 ], [ 45.351562, 80.618424 ], [ 45.351562, 80.647035 ], [ 45.527344, 80.647035 ], [ 45.527344, 80.675559 ], [ 45.878906, 80.675559 ], [ 45.878906, 80.703997 ], [ 46.230469, 80.703997 ], [ 46.230469, 80.732349 ], [ 46.406250, 80.732349 ], [ 46.406250, 80.760615 ], [ 46.757812, 80.760615 ], [ 46.757812, 80.788795 ], [ 48.164062, 80.788795 ], [ 48.164062, 80.703997 ], [ 48.339844, 80.703997 ], [ 48.339844, 80.589727 ], [ 48.515625, 80.589727 ], [ 48.515625, 80.560943 ], [ 48.691406, 80.560943 ], [ 48.691406, 80.647035 ], [ 48.867188, 80.647035 ], [ 48.867188, 80.703997 ], [ 49.042969, 80.703997 ], [ 49.042969, 80.760615 ], [ 49.218750, 80.760615 ], [ 49.218750, 80.788795 ], [ 49.394531, 80.788795 ], [ 49.394531, 80.844901 ], [ 49.570312, 80.844901 ], [ 49.570312, 80.872827 ], [ 49.746094, 80.872827 ], [ 49.746094, 80.900669 ], [ 50.097656, 80.900669 ] ] ] } } ] } ] } , @@ -2042,233 +2033,231 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 91.230469, -67.204032 ], [ 91.230469, -67.135829 ], [ 91.933594, -67.135829 ], [ 91.933594, -67.204032 ], [ 94.042969, -67.204032 ], [ 94.042969, -67.135829 ], [ 94.570312, -67.135829 ], [ 94.570312, -67.204032 ], [ 95.097656, -67.204032 ], [ 95.097656, -67.272043 ], [ 95.273438, -67.272043 ], [ 95.273438, -67.339861 ], [ 95.625000, -67.339861 ], [ 95.625000, -67.407487 ], [ 96.152344, -67.407487 ], [ 96.152344, -67.339861 ], [ 96.503906, -67.339861 ], [ 96.503906, -67.272043 ], [ 98.085938, -67.272043 ], [ 98.085938, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.135829 ], [ 98.789062, -67.135829 ], [ 98.789062, -67.204032 ], [ 99.316406, -67.204032 ], [ 99.316406, -67.272043 ], [ 99.843750, -67.272043 ], [ 99.843750, -67.204032 ], [ 100.019531, -67.204032 ], [ 100.019531, -67.067433 ], [ 100.195312, -67.067433 ], [ 100.195312, -66.998844 ], [ 100.371094, -66.998844 ], [ 100.371094, -66.930060 ], [ 100.546875, -66.930060 ], [ 100.546875, -66.791909 ], [ 100.722656, -66.791909 ], [ 100.722656, -66.652977 ], [ 100.898438, -66.652977 ], [ 100.898438, -66.583217 ], [ 101.074219, -66.583217 ], [ 101.074219, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.443107 ], [ 101.425781, -66.443107 ], [ 101.425781, -66.372755 ], [ 101.601562, -66.372755 ], [ 101.601562, -66.231457 ], [ 101.777344, -66.231457 ], [ 101.777344, -66.160511 ], [ 104.589844, -66.160511 ], [ 104.589844, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.302205 ], [ 104.941406, -66.302205 ], [ 104.941406, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.443107 ], [ 105.292969, -66.443107 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.652977 ], [ 105.644531, -66.652977 ], [ 105.644531, -66.722541 ], [ 105.820312, -66.722541 ], [ 105.820312, -66.861082 ], [ 105.996094, -66.861082 ], [ 105.996094, -66.930060 ], [ 108.808594, -66.930060 ], [ 108.808594, -66.861082 ], [ 109.511719, -66.861082 ], [ 109.511719, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.722541 ], [ 110.390625, -66.722541 ], [ 110.390625, -66.652977 ], [ 110.566406, -66.652977 ], [ 110.566406, -66.583217 ], [ 110.917969, -66.583217 ], [ 110.917969, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.443107 ], [ 111.269531, -66.443107 ], [ 111.269531, -66.302205 ], [ 111.445312, -66.302205 ], [ 111.445312, -66.231457 ], [ 111.621094, -66.231457 ], [ 111.621094, -66.160511 ], [ 114.609375, -66.160511 ], [ 114.609375, -66.231457 ], [ 114.785156, -66.231457 ], [ 114.785156, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.443107 ], [ 115.136719, -66.443107 ], [ 115.136719, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 115.488281, -66.652977 ], [ 115.488281, -66.722541 ], [ 116.367188, -66.722541 ], [ 116.367188, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.722541 ], [ 116.894531, -66.722541 ], [ 116.894531, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.861082 ], [ 117.246094, -66.861082 ], [ 117.246094, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -66.998844 ], [ 117.773438, -66.998844 ], [ 117.773438, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.135829 ], [ 118.476562, -67.135829 ], [ 118.476562, -67.204032 ], [ 119.179688, -67.204032 ], [ 119.179688, -67.272043 ], [ 120.585938, -67.272043 ], [ 120.585938, -67.204032 ], [ 121.113281, -67.204032 ], [ 121.113281, -67.135829 ], [ 121.289062, -67.135829 ], [ 121.289062, -66.998844 ], [ 121.464844, -66.998844 ], [ 121.464844, -66.930060 ], [ 121.640625, -66.930060 ], [ 121.640625, -66.861082 ], [ 121.816406, -66.861082 ], [ 121.816406, -66.791909 ], [ 121.992188, -66.791909 ], [ 121.992188, -66.722541 ], [ 122.167969, -66.722541 ], [ 122.167969, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.583217 ], [ 122.871094, -66.583217 ], [ 122.871094, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.583217 ], [ 123.750000, -66.583217 ], [ 123.750000, -66.652977 ], [ 124.453125, -66.652977 ], [ 124.453125, -66.722541 ], [ 125.507812, -66.722541 ], [ 125.507812, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.583217 ], [ 127.265625, -66.583217 ], [ 127.265625, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 128.496094, -66.722541 ], [ 128.496094, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.722541 ], [ 129.375000, -66.722541 ], [ 129.375000, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.583217 ], [ 130.078125, -66.583217 ], [ 130.078125, -66.513260 ], [ 130.605469, -66.513260 ], [ 130.605469, -66.443107 ], [ 131.484375, -66.443107 ], [ 131.484375, -66.372755 ], [ 133.417969, -66.372755 ], [ 133.417969, -66.302205 ], [ 134.472656, -66.302205 ], [ 134.472656, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 90.878906, -67.204032 ], [ 90.878906, -67.135829 ], [ 91.406250, -67.135829 ], [ 91.406250, -67.067433 ], [ 91.933594, -67.067433 ], [ 91.933594, -67.135829 ], [ 92.812500, -67.135829 ], [ 92.812500, -67.204032 ], [ 93.691406, -67.204032 ], [ 93.691406, -67.135829 ], [ 94.042969, -67.135829 ], [ 94.042969, -67.067433 ], [ 94.394531, -67.067433 ], [ 94.394531, -67.135829 ], [ 94.921875, -67.135829 ], [ 94.921875, -67.204032 ], [ 95.097656, -67.204032 ], [ 95.097656, -67.272043 ], [ 95.449219, -67.272043 ], [ 95.449219, -67.339861 ], [ 95.976562, -67.339861 ], [ 95.976562, -67.272043 ], [ 96.503906, -67.272043 ], [ 96.503906, -67.204032 ], [ 98.085938, -67.204032 ], [ 98.085938, -67.135829 ], [ 98.437500, -67.135829 ], [ 98.437500, -67.067433 ], [ 98.789062, -67.067433 ], [ 98.789062, -67.135829 ], [ 99.316406, -67.135829 ], [ 99.316406, -67.204032 ], [ 99.843750, -67.204032 ], [ 99.843750, -67.135829 ], [ 100.019531, -67.135829 ], [ 100.019531, -66.998844 ], [ 100.195312, -66.998844 ], [ 100.195312, -66.930060 ], [ 100.371094, -66.930060 ], [ 100.371094, -66.791909 ], [ 100.546875, -66.791909 ], [ 100.546875, -66.652977 ], [ 100.722656, -66.652977 ], [ 100.722656, -66.583217 ], [ 100.898438, -66.583217 ], [ 100.898438, -66.513260 ], [ 101.074219, -66.513260 ], [ 101.074219, -66.443107 ], [ 101.250000, -66.443107 ], [ 101.250000, -66.372755 ], [ 101.425781, -66.372755 ], [ 101.425781, -66.302205 ], [ 101.601562, -66.302205 ], [ 101.601562, -66.231457 ], [ 101.777344, -66.231457 ], [ 101.777344, -66.160511 ], [ 104.589844, -66.160511 ], [ 104.589844, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.372755 ], [ 104.941406, -66.372755 ], [ 104.941406, -66.443107 ], [ 105.117188, -66.443107 ], [ 105.117188, -66.513260 ], [ 105.292969, -66.513260 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.722541 ], [ 105.644531, -66.722541 ], [ 105.644531, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.861082 ], [ 105.996094, -66.861082 ], [ 105.996094, -66.930060 ], [ 108.281250, -66.930060 ], [ 108.281250, -66.861082 ], [ 108.984375, -66.861082 ], [ 108.984375, -66.791909 ], [ 109.511719, -66.791909 ], [ 109.511719, -66.722541 ], [ 110.039062, -66.722541 ], [ 110.039062, -66.652977 ], [ 110.390625, -66.652977 ], [ 110.390625, -66.583217 ], [ 110.566406, -66.583217 ], [ 110.566406, -66.513260 ], [ 110.742188, -66.513260 ], [ 110.742188, -66.443107 ], [ 110.917969, -66.443107 ], [ 110.917969, -66.372755 ], [ 111.093750, -66.372755 ], [ 111.093750, -66.302205 ], [ 111.445312, -66.302205 ], [ 111.445312, -66.231457 ], [ 111.621094, -66.231457 ], [ 111.621094, -66.160511 ], [ 114.433594, -66.160511 ], [ 114.433594, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.785156, -66.372755 ], [ 114.785156, -66.443107 ], [ 114.960938, -66.443107 ], [ 114.960938, -66.513260 ], [ 115.136719, -66.513260 ], [ 115.136719, -66.583217 ], [ 115.312500, -66.583217 ], [ 115.312500, -66.652977 ], [ 116.542969, -66.652977 ], [ 116.542969, -66.722541 ], [ 116.718750, -66.722541 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.861082 ], [ 117.246094, -66.861082 ], [ 117.246094, -66.930060 ], [ 117.597656, -66.930060 ], [ 117.597656, -66.998844 ], [ 117.949219, -66.998844 ], [ 117.949219, -67.067433 ], [ 118.300781, -67.067433 ], [ 118.300781, -67.135829 ], [ 119.003906, -67.135829 ], [ 119.003906, -67.204032 ], [ 120.410156, -67.204032 ], [ 120.410156, -67.135829 ], [ 120.937500, -67.135829 ], [ 120.937500, -67.067433 ], [ 121.113281, -67.067433 ], [ 121.113281, -66.998844 ], [ 121.464844, -66.998844 ], [ 121.464844, -66.930060 ], [ 121.640625, -66.930060 ], [ 121.640625, -66.861082 ], [ 121.816406, -66.861082 ], [ 121.816406, -66.722541 ], [ 121.992188, -66.722541 ], [ 121.992188, -66.583217 ], [ 122.167969, -66.583217 ], [ 122.167969, -66.513260 ], [ 122.871094, -66.513260 ], [ 122.871094, -66.443107 ], [ 123.398438, -66.443107 ], [ 123.398438, -66.513260 ], [ 123.750000, -66.513260 ], [ 123.750000, -66.583217 ], [ 124.453125, -66.583217 ], [ 124.453125, -66.652977 ], [ 125.507812, -66.652977 ], [ 125.507812, -66.583217 ], [ 125.859375, -66.583217 ], [ 125.859375, -66.513260 ], [ 127.089844, -66.513260 ], [ 127.089844, -66.583217 ], [ 127.441406, -66.583217 ], [ 127.441406, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 129.023438, -66.722541 ], [ 129.023438, -66.652977 ], [ 129.375000, -66.652977 ], [ 129.375000, -66.583217 ], [ 129.902344, -66.583217 ], [ 129.902344, -66.513260 ], [ 130.253906, -66.513260 ], [ 130.253906, -66.443107 ], [ 130.605469, -66.443107 ], [ 130.605469, -66.372755 ], [ 133.242188, -66.372755 ], [ 133.242188, -66.302205 ], [ 133.593750, -66.302205 ], [ 133.593750, -66.231457 ], [ 134.296875, -66.231457 ], [ 134.296875, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.183594, -65.658275 ], [ 103.183594, -65.730626 ], [ 103.535156, -65.730626 ], [ 103.535156, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.874725 ], [ 104.062500, -65.874725 ], [ 104.062500, -65.946472 ], [ 104.238281, -65.946472 ], [ 104.238281, -66.018018 ], [ 104.414062, -66.018018 ], [ 104.414062, -66.089364 ], [ 104.589844, -66.089364 ], [ 104.589844, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.302205 ], [ 104.941406, -66.302205 ], [ 104.941406, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.443107 ], [ 105.292969, -66.443107 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.652977 ], [ 105.644531, -66.652977 ], [ 105.644531, -66.722541 ], [ 105.820312, -66.722541 ], [ 105.820312, -66.861082 ], [ 100.546875, -66.861082 ], [ 100.546875, -66.791909 ], [ 100.722656, -66.791909 ], [ 100.722656, -66.652977 ], [ 100.898438, -66.652977 ], [ 100.898438, -66.583217 ], [ 101.074219, -66.583217 ], [ 101.074219, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.443107 ], [ 101.425781, -66.443107 ], [ 101.425781, -66.372755 ], [ 101.601562, -66.372755 ], [ 101.601562, -66.302205 ], [ 101.777344, -66.302205 ], [ 101.777344, -66.160511 ], [ 101.953125, -66.160511 ], [ 101.953125, -66.089364 ], [ 102.128906, -66.089364 ], [ 102.128906, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.874725 ], [ 102.480469, -65.874725 ], [ 102.480469, -65.802776 ], [ 102.656250, -65.802776 ], [ 102.656250, -65.658275 ], [ 103.183594, -65.658275 ] ] ], [ [ [ 109.511719, -66.861082 ], [ 109.511719, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.722541 ], [ 110.390625, -66.722541 ], [ 110.390625, -66.652977 ], [ 110.566406, -66.652977 ], [ 110.566406, -66.583217 ], [ 110.917969, -66.583217 ], [ 110.917969, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.443107 ], [ 111.269531, -66.443107 ], [ 111.269531, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.302205 ], [ 111.621094, -66.302205 ], [ 111.621094, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.160511 ], [ 112.500000, -66.160511 ], [ 112.500000, -66.089364 ], [ 113.027344, -66.089364 ], [ 113.027344, -66.018018 ], [ 113.378906, -66.018018 ], [ 113.378906, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.018018 ], [ 114.257812, -66.018018 ], [ 114.257812, -66.089364 ], [ 114.433594, -66.089364 ], [ 114.433594, -66.160511 ], [ 114.609375, -66.160511 ], [ 114.609375, -66.231457 ], [ 114.785156, -66.231457 ], [ 114.785156, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.443107 ], [ 115.136719, -66.443107 ], [ 115.136719, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 115.488281, -66.652977 ], [ 115.488281, -66.722541 ], [ 116.367188, -66.722541 ], [ 116.367188, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.722541 ], [ 116.894531, -66.722541 ], [ 116.894531, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.861082 ], [ 109.511719, -66.861082 ] ] ], [ [ [ 121.816406, -66.861082 ], [ 121.816406, -66.791909 ], [ 121.992188, -66.791909 ], [ 121.992188, -66.722541 ], [ 122.167969, -66.722541 ], [ 122.167969, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.583217 ], [ 122.871094, -66.583217 ], [ 122.871094, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.583217 ], [ 123.750000, -66.583217 ], [ 123.750000, -66.652977 ], [ 124.453125, -66.652977 ], [ 124.453125, -66.722541 ], [ 125.507812, -66.722541 ], [ 125.507812, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.583217 ], [ 127.265625, -66.583217 ], [ 127.265625, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 128.496094, -66.722541 ], [ 128.496094, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.722541 ], [ 129.375000, -66.722541 ], [ 129.375000, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.583217 ], [ 130.078125, -66.583217 ], [ 130.078125, -66.513260 ], [ 130.605469, -66.513260 ], [ 130.605469, -66.443107 ], [ 131.484375, -66.443107 ], [ 131.484375, -66.372755 ], [ 133.417969, -66.372755 ], [ 133.417969, -66.302205 ], [ 134.472656, -66.302205 ], [ 134.472656, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.018018 ], [ 135.000000, -66.018018 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.585720 ], [ 135.703125, -65.585720 ], [ 135.703125, -65.802776 ], [ 135.878906, -65.802776 ], [ 135.878906, -66.861082 ], [ 121.816406, -66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.183594, -65.585720 ], [ 103.183594, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.730626 ], [ 103.535156, -65.730626 ], [ 103.535156, -65.802776 ], [ 103.886719, -65.802776 ], [ 103.886719, -65.874725 ], [ 104.062500, -65.874725 ], [ 104.062500, -65.946472 ], [ 104.238281, -65.946472 ], [ 104.238281, -66.018018 ], [ 104.414062, -66.018018 ], [ 104.414062, -66.160511 ], [ 104.589844, -66.160511 ], [ 104.589844, -66.302205 ], [ 104.765625, -66.302205 ], [ 104.765625, -66.372755 ], [ 104.941406, -66.372755 ], [ 104.941406, -66.443107 ], [ 105.117188, -66.443107 ], [ 105.117188, -66.513260 ], [ 105.292969, -66.513260 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.722541 ], [ 105.644531, -66.722541 ], [ 105.644531, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.861082 ], [ 100.371094, -66.861082 ], [ 100.371094, -66.791909 ], [ 100.546875, -66.791909 ], [ 100.546875, -66.652977 ], [ 100.722656, -66.652977 ], [ 100.722656, -66.583217 ], [ 100.898438, -66.583217 ], [ 100.898438, -66.513260 ], [ 101.074219, -66.513260 ], [ 101.074219, -66.443107 ], [ 101.250000, -66.443107 ], [ 101.250000, -66.372755 ], [ 101.425781, -66.372755 ], [ 101.425781, -66.302205 ], [ 101.601562, -66.302205 ], [ 101.601562, -66.160511 ], [ 101.777344, -66.160511 ], [ 101.777344, -66.089364 ], [ 101.953125, -66.089364 ], [ 101.953125, -66.018018 ], [ 102.128906, -66.018018 ], [ 102.128906, -65.874725 ], [ 102.304688, -65.874725 ], [ 102.304688, -65.802776 ], [ 102.480469, -65.802776 ], [ 102.480469, -65.730626 ], [ 102.656250, -65.730626 ], [ 102.656250, -65.585720 ], [ 103.183594, -65.585720 ] ] ], [ [ [ 109.160156, -66.861082 ], [ 109.160156, -66.791909 ], [ 109.511719, -66.791909 ], [ 109.511719, -66.722541 ], [ 110.039062, -66.722541 ], [ 110.039062, -66.652977 ], [ 110.390625, -66.652977 ], [ 110.390625, -66.583217 ], [ 110.566406, -66.583217 ], [ 110.566406, -66.513260 ], [ 110.742188, -66.513260 ], [ 110.742188, -66.443107 ], [ 110.917969, -66.443107 ], [ 110.917969, -66.372755 ], [ 111.093750, -66.372755 ], [ 111.093750, -66.302205 ], [ 111.269531, -66.302205 ], [ 111.269531, -66.231457 ], [ 111.445312, -66.231457 ], [ 111.445312, -66.160511 ], [ 111.621094, -66.160511 ], [ 111.621094, -66.089364 ], [ 113.027344, -66.089364 ], [ 113.027344, -66.018018 ], [ 113.378906, -66.018018 ], [ 113.378906, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.018018 ], [ 114.257812, -66.018018 ], [ 114.257812, -66.089364 ], [ 114.433594, -66.089364 ], [ 114.433594, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.785156, -66.372755 ], [ 114.785156, -66.443107 ], [ 114.960938, -66.443107 ], [ 114.960938, -66.513260 ], [ 115.136719, -66.513260 ], [ 115.136719, -66.583217 ], [ 115.312500, -66.583217 ], [ 115.312500, -66.652977 ], [ 116.542969, -66.652977 ], [ 116.542969, -66.722541 ], [ 116.718750, -66.722541 ], [ 116.718750, -66.791909 ], [ 116.894531, -66.791909 ], [ 116.894531, -66.861082 ], [ 109.160156, -66.861082 ] ] ], [ [ [ 121.816406, -66.861082 ], [ 121.816406, -66.722541 ], [ 121.992188, -66.722541 ], [ 121.992188, -66.583217 ], [ 122.167969, -66.583217 ], [ 122.167969, -66.513260 ], [ 122.871094, -66.513260 ], [ 122.871094, -66.443107 ], [ 123.398438, -66.443107 ], [ 123.398438, -66.513260 ], [ 123.750000, -66.513260 ], [ 123.750000, -66.583217 ], [ 124.453125, -66.583217 ], [ 124.453125, -66.652977 ], [ 125.507812, -66.652977 ], [ 125.507812, -66.583217 ], [ 125.859375, -66.583217 ], [ 125.859375, -66.513260 ], [ 127.089844, -66.513260 ], [ 127.089844, -66.583217 ], [ 127.441406, -66.583217 ], [ 127.441406, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 129.023438, -66.722541 ], [ 129.023438, -66.652977 ], [ 129.375000, -66.652977 ], [ 129.375000, -66.583217 ], [ 129.902344, -66.583217 ], [ 129.902344, -66.513260 ], [ 130.253906, -66.513260 ], [ 130.253906, -66.443107 ], [ 130.605469, -66.443107 ], [ 130.605469, -66.372755 ], [ 133.242188, -66.372755 ], [ 133.242188, -66.302205 ], [ 133.593750, -66.302205 ], [ 133.593750, -66.231457 ], [ 134.296875, -66.231457 ], [ 134.296875, -66.160511 ], [ 134.648438, -66.160511 ], [ 134.648438, -66.089364 ], [ 134.824219, -66.089364 ], [ 134.824219, -65.802776 ], [ 135.000000, -65.802776 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.802776 ], [ 135.703125, -65.802776 ], [ 135.703125, -66.018018 ], [ 135.878906, -66.018018 ], [ 135.878906, -66.861082 ], [ 121.816406, -66.861082 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.917969, 0.878872 ], [ 110.917969, 0.703107 ], [ 110.390625, 0.703107 ], [ 110.390625, 0.878872 ], [ 110.917969, 0.878872 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.882812, -9.275622 ], [ 119.882812, -9.449062 ], [ 120.234375, -9.449062 ], [ 120.234375, -9.622414 ], [ 120.410156, -9.622414 ], [ 120.410156, -9.795678 ], [ 120.585938, -9.795678 ], [ 120.585938, -9.968851 ], [ 120.761719, -9.968851 ], [ 120.761719, -10.314919 ], [ 120.058594, -10.314919 ], [ 120.058594, -10.141932 ], [ 119.707031, -10.141932 ], [ 119.707031, -9.968851 ], [ 119.355469, -9.968851 ], [ 119.355469, -9.795678 ], [ 119.003906, -9.795678 ], [ 119.003906, -9.622414 ], [ 119.355469, -9.622414 ], [ 119.355469, -9.449062 ], [ 119.707031, -9.449062 ], [ 119.707031, -9.275622 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 124.980469, -8.928487 ], [ 124.980469, -9.102097 ], [ 125.156250, -9.102097 ], [ 125.156250, -9.622414 ], [ 124.980469, -9.622414 ], [ 124.980469, -9.795678 ], [ 124.804688, -9.795678 ], [ 124.804688, -9.968851 ], [ 124.628906, -9.968851 ], [ 124.628906, -10.141932 ], [ 124.101562, -10.141932 ], [ 124.101562, -10.314919 ], [ 123.398438, -10.314919 ], [ 123.398438, -10.141932 ], [ 123.574219, -10.141932 ], [ 123.574219, -9.795678 ], [ 123.750000, -9.795678 ], [ 123.750000, -9.449062 ], [ 123.925781, -9.449062 ], [ 123.925781, -9.275622 ], [ 124.277344, -9.275622 ], [ 124.277344, -9.102097 ], [ 124.804688, -9.102097 ], [ 124.804688, -8.928487 ], [ 124.980469, -8.928487 ] ] ], [ [ [ 118.828125, -8.233237 ], [ 118.828125, -8.407168 ], [ 119.003906, -8.407168 ], [ 119.003906, -8.754795 ], [ 118.652344, -8.754795 ], [ 118.652344, -8.928487 ], [ 117.773438, -8.928487 ], [ 117.773438, -9.102097 ], [ 116.718750, -9.102097 ], [ 116.718750, -8.928487 ], [ 116.894531, -8.928487 ], [ 116.894531, -8.581021 ], [ 117.070312, -8.581021 ], [ 117.070312, -8.407168 ], [ 117.773438, -8.407168 ], [ 117.773438, -8.233237 ], [ 118.125000, -8.233237 ], [ 118.125000, -8.407168 ], [ 118.652344, -8.407168 ], [ 118.652344, -8.233237 ], [ 118.828125, -8.233237 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.871094, -8.407168 ], [ 122.695312, -8.407168 ], [ 122.695312, -8.581021 ], [ 122.519531, -8.581021 ], [ 122.519531, -8.754795 ], [ 121.816406, -8.754795 ], [ 121.816406, -8.928487 ], [ 120.410156, -8.928487 ], [ 120.410156, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.410156, -8.407168 ], [ 120.410156, -8.233237 ], [ 120.761719, -8.233237 ], [ 120.761719, -8.407168 ], [ 121.113281, -8.407168 ], [ 121.113281, -8.581021 ], [ 121.816406, -8.581021 ], [ 121.816406, -8.407168 ], [ 122.343750, -8.407168 ], [ 122.343750, -8.233237 ], [ 122.695312, -8.233237 ], [ 122.695312, -8.059230 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 107.402344, -5.965754 ], [ 107.402344, -6.140555 ], [ 107.753906, -6.140555 ], [ 107.753906, -6.315299 ], [ 108.105469, -6.315299 ], [ 108.105469, -6.489983 ], [ 108.457031, -6.489983 ], [ 108.457031, -6.664608 ], [ 108.632812, -6.664608 ], [ 108.632812, -6.839170 ], [ 110.566406, -6.839170 ], [ 110.566406, -6.664608 ], [ 110.742188, -6.664608 ], [ 110.742188, -6.489983 ], [ 110.917969, -6.489983 ], [ 110.917969, -6.664608 ], [ 111.621094, -6.664608 ], [ 111.621094, -6.839170 ], [ 112.324219, -6.839170 ], [ 112.324219, -7.013668 ], [ 112.675781, -7.013668 ], [ 112.675781, -7.188101 ], [ 112.851562, -7.188101 ], [ 112.851562, -7.536764 ], [ 113.554688, -7.536764 ], [ 113.554688, -7.710992 ], [ 114.433594, -7.710992 ], [ 114.433594, -7.885147 ], [ 114.785156, -7.885147 ], [ 114.785156, -8.059230 ], [ 115.136719, -8.059230 ], [ 115.136719, -8.233237 ], [ 115.488281, -8.233237 ], [ 115.488281, -8.581021 ], [ 114.960938, -8.581021 ], [ 114.960938, -8.754795 ], [ 114.257812, -8.754795 ], [ 114.257812, -8.581021 ], [ 113.554688, -8.581021 ], [ 113.554688, -8.407168 ], [ 111.796875, -8.407168 ], [ 111.796875, -8.233237 ], [ 110.917969, -8.233237 ], [ 110.917969, -8.059230 ], [ 110.214844, -8.059230 ], [ 110.214844, -7.885147 ], [ 109.687500, -7.885147 ], [ 109.687500, -7.710992 ], [ 107.753906, -7.710992 ], [ 107.753906, -7.536764 ], [ 106.875000, -7.536764 ], [ 106.875000, -7.362467 ], [ 106.523438, -7.362467 ], [ 106.523438, -7.188101 ], [ 106.347656, -7.188101 ], [ 106.347656, -6.839170 ], [ 105.468750, -6.839170 ], [ 105.468750, -6.664608 ], [ 105.644531, -6.664608 ], [ 105.644531, -6.315299 ], [ 105.820312, -6.315299 ], [ 105.820312, -6.140555 ], [ 105.996094, -6.140555 ], [ 105.996094, -5.965754 ], [ 107.402344, -5.965754 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.664608 ], [ 134.296875, -6.664608 ], [ 134.296875, -6.489983 ], [ 134.121094, -6.489983 ], [ 134.121094, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ] ] ], [ [ [ 102.832031, 0.878872 ], [ 102.832031, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.886719, 0.175781 ], [ 103.886719, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.535156, -0.351560 ], [ 103.535156, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -0.878872 ], [ 103.710938, -0.878872 ], [ 103.710938, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -1.406109 ], [ 104.589844, -1.406109 ], [ 104.589844, -1.933227 ], [ 104.765625, -1.933227 ], [ 104.765625, -2.284551 ], [ 105.117188, -2.284551 ], [ 105.117188, -2.460181 ], [ 105.644531, -2.460181 ], [ 105.644531, -2.635789 ], [ 105.820312, -2.635789 ], [ 105.820312, -2.811371 ], [ 105.996094, -2.811371 ], [ 105.996094, -2.986927 ], [ 106.171875, -2.986927 ], [ 106.171875, -3.337954 ], [ 105.996094, -3.337954 ], [ 105.996094, -4.039618 ], [ 105.820312, -4.039618 ], [ 105.820312, -5.790897 ], [ 104.589844, -5.790897 ], [ 104.589844, -5.615986 ], [ 104.414062, -5.615986 ], [ 104.414062, -5.441022 ], [ 104.062500, -5.441022 ], [ 104.062500, -5.266008 ], [ 103.886719, -5.266008 ], [ 103.886719, -5.090944 ], [ 103.710938, -5.090944 ], [ 103.710938, -4.915833 ], [ 103.359375, -4.915833 ], [ 103.359375, -4.740675 ], [ 103.183594, -4.740675 ], [ 103.183594, -4.565474 ], [ 103.007812, -4.565474 ], [ 103.007812, -4.390229 ], [ 102.656250, -4.390229 ], [ 102.656250, -4.214943 ], [ 102.480469, -4.214943 ], [ 102.480469, -4.039618 ], [ 102.304688, -4.039618 ], [ 102.304688, -3.864255 ], [ 102.128906, -3.864255 ], [ 102.128906, -3.688855 ], [ 101.953125, -3.688855 ], [ 101.953125, -3.513421 ], [ 101.777344, -3.513421 ], [ 101.777344, -3.162456 ], [ 101.601562, -3.162456 ], [ 101.601562, -2.986927 ], [ 101.425781, -2.986927 ], [ 101.425781, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.460181 ], [ 101.074219, -2.460181 ], [ 101.074219, -2.284551 ], [ 100.898438, -2.284551 ], [ 100.898438, -1.933227 ], [ 100.722656, -1.933227 ], [ 100.722656, -1.581830 ], [ 100.546875, -1.581830 ], [ 100.546875, -1.230374 ], [ 100.371094, -1.230374 ], [ 100.371094, -0.878872 ], [ 100.195312, -0.878872 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.351560 ], [ 99.140625, 0.351560 ], [ 99.140625, 0.703107 ], [ 98.964844, 0.703107 ], [ 98.964844, 0.878872 ], [ 102.832031, 0.878872 ] ] ], [ [ [ 118.300781, 0.878872 ], [ 118.300781, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.527336 ], [ 117.597656, 0.527336 ], [ 117.597656, 0.175781 ], [ 117.421875, 0.175781 ], [ 117.421875, -0.351560 ], [ 117.597656, -0.351560 ], [ 117.597656, -1.054628 ], [ 117.246094, -1.054628 ], [ 117.246094, -1.230374 ], [ 116.894531, -1.230374 ], [ 116.894531, -1.406109 ], [ 116.542969, -1.406109 ], [ 116.542969, -2.986927 ], [ 116.367188, -2.986927 ], [ 116.367188, -3.688855 ], [ 116.191406, -3.688855 ], [ 116.191406, -3.864255 ], [ 116.015625, -3.864255 ], [ 116.015625, -3.688855 ], [ 115.839844, -3.688855 ], [ 115.839844, -3.864255 ], [ 115.136719, -3.864255 ], [ 115.136719, -4.039618 ], [ 114.609375, -4.039618 ], [ 114.609375, -3.688855 ], [ 114.433594, -3.688855 ], [ 114.433594, -3.513421 ], [ 113.554688, -3.513421 ], [ 113.554688, -3.337954 ], [ 113.203125, -3.337954 ], [ 113.203125, -3.162456 ], [ 113.027344, -3.162456 ], [ 113.027344, -3.337954 ], [ 112.500000, -3.337954 ], [ 112.500000, -3.513421 ], [ 111.972656, -3.513421 ], [ 111.972656, -3.337954 ], [ 111.796875, -3.337954 ], [ 111.796875, -3.162456 ], [ 111.621094, -3.162456 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.986927 ], [ 110.214844, -2.284551 ], [ 110.039062, -2.284551 ], [ 110.039062, -1.581830 ], [ 109.863281, -1.581830 ], [ 109.863281, -1.406109 ], [ 109.511719, -1.406109 ], [ 109.511719, -1.054628 ], [ 109.335938, -1.054628 ], [ 109.335938, -0.703107 ], [ 109.160156, -0.703107 ], [ 109.160156, -0.175781 ], [ 108.984375, -0.175781 ], [ 108.984375, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.390625, 0.703107 ], [ 110.917969, 0.703107 ], [ 110.917969, 0.878872 ], [ 118.300781, 0.878872 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.804688, 0.703107 ], [ 124.628906, 0.703107 ], [ 124.628906, 0.351560 ], [ 124.277344, 0.351560 ], [ 124.277344, 0.175781 ], [ 123.046875, 0.175781 ], [ 123.046875, 0.351560 ], [ 120.761719, 0.351560 ], [ 120.761719, 0.175781 ], [ 120.234375, 0.175781 ], [ 120.234375, -0.175781 ], [ 120.058594, -0.175781 ], [ 120.058594, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -0.878872 ], [ 120.410156, -0.878872 ], [ 120.410156, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.230374 ], [ 120.761719, -1.230374 ], [ 120.761719, -1.406109 ], [ 121.113281, -1.406109 ], [ 121.113281, -1.230374 ], [ 121.289062, -1.230374 ], [ 121.289062, -1.054628 ], [ 121.464844, -1.054628 ], [ 121.464844, -0.878872 ], [ 122.519531, -0.878872 ], [ 122.519531, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -0.878872 ], [ 123.222656, -0.878872 ], [ 123.222656, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.230374 ], [ 122.519531, -1.230374 ], [ 122.519531, -1.581830 ], [ 122.167969, -1.581830 ], [ 122.167969, -1.757537 ], [ 121.816406, -1.757537 ], [ 121.816406, -1.933227 ], [ 121.464844, -1.933227 ], [ 121.464844, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.284551 ], [ 121.816406, -2.284551 ], [ 121.816406, -2.460181 ], [ 121.992188, -2.460181 ], [ 121.992188, -2.811371 ], [ 122.167969, -2.811371 ], [ 122.167969, -2.986927 ], [ 122.343750, -2.986927 ], [ 122.343750, -3.162456 ], [ 122.519531, -3.162456 ], [ 122.519531, -3.337954 ], [ 122.343750, -3.337954 ], [ 122.343750, -3.688855 ], [ 122.519531, -3.688855 ], [ 122.519531, -4.039618 ], [ 122.695312, -4.039618 ], [ 122.695312, -4.214943 ], [ 122.871094, -4.214943 ], [ 122.871094, -4.390229 ], [ 123.046875, -4.390229 ], [ 123.046875, -4.740675 ], [ 123.222656, -4.740675 ], [ 123.222656, -5.441022 ], [ 122.871094, -5.441022 ], [ 122.871094, -5.615986 ], [ 122.519531, -5.615986 ], [ 122.519531, -5.441022 ], [ 122.167969, -5.441022 ], [ 122.167969, -5.266008 ], [ 122.343750, -5.266008 ], [ 122.343750, -4.915833 ], [ 122.519531, -4.915833 ], [ 122.519531, -4.565474 ], [ 122.343750, -4.565474 ], [ 122.343750, -4.740675 ], [ 121.992188, -4.740675 ], [ 121.992188, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.740675 ], [ 121.464844, -4.740675 ], [ 121.464844, -4.390229 ], [ 121.640625, -4.390229 ], [ 121.640625, -4.214943 ], [ 121.464844, -4.214943 ], [ 121.464844, -4.039618 ], [ 121.113281, -4.039618 ], [ 121.113281, -3.864255 ], [ 120.937500, -3.864255 ], [ 120.937500, -2.811371 ], [ 120.585938, -2.811371 ], [ 120.585938, -2.986927 ], [ 120.234375, -2.986927 ], [ 120.234375, -3.513421 ], [ 120.410156, -3.513421 ], [ 120.410156, -5.441022 ], [ 120.234375, -5.441022 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -5.441022 ], [ 119.355469, -5.441022 ], [ 119.355469, -5.266008 ], [ 119.531250, -5.266008 ], [ 119.531250, -4.740675 ], [ 119.707031, -4.740675 ], [ 119.707031, -4.039618 ], [ 119.531250, -4.039618 ], [ 119.531250, -3.513421 ], [ 119.003906, -3.513421 ], [ 119.003906, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.635789 ], [ 119.003906, -2.635789 ], [ 119.003906, -2.284551 ], [ 119.179688, -2.284551 ], [ 119.179688, -1.757537 ], [ 119.355469, -1.757537 ], [ 119.355469, -1.230374 ], [ 119.531250, -1.230374 ], [ 119.531250, -0.703107 ], [ 119.707031, -0.703107 ], [ 119.707031, -0.175781 ], [ 119.882812, -0.175781 ], [ 119.882812, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.527336 ], [ 120.234375, 0.527336 ], [ 120.234375, 0.703107 ], [ 120.410156, 0.703107 ], [ 120.410156, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.054628 ], [ 134.121094, -1.054628 ], [ 134.121094, -1.757537 ], [ 134.296875, -1.757537 ], [ 134.296875, -2.460181 ], [ 134.472656, -2.460181 ], [ 134.472656, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.703125, -3.337954 ], [ 135.703125, -2.986927 ], [ 135.878906, -2.986927 ], [ 135.878906, -4.565474 ], [ 135.351562, -4.565474 ], [ 135.351562, -4.390229 ], [ 135.000000, -4.390229 ], [ 135.000000, -4.214943 ], [ 134.648438, -4.214943 ], [ 134.648438, -4.039618 ], [ 134.296875, -4.039618 ], [ 134.296875, -3.864255 ], [ 133.945312, -3.864255 ], [ 133.945312, -3.688855 ], [ 133.593750, -3.688855 ], [ 133.593750, -3.864255 ], [ 133.417969, -3.864255 ], [ 133.417969, -4.039618 ], [ 132.890625, -4.039618 ], [ 132.890625, -3.864255 ], [ 132.714844, -3.864255 ], [ 132.714844, -3.337954 ], [ 132.539062, -3.337954 ], [ 132.539062, -3.162456 ], [ 132.187500, -3.162456 ], [ 132.187500, -2.986927 ], [ 132.011719, -2.986927 ], [ 132.011719, -2.811371 ], [ 132.363281, -2.811371 ], [ 132.363281, -2.635789 ], [ 132.890625, -2.635789 ], [ 132.890625, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.769531, -2.284551 ], [ 132.187500, -2.284551 ], [ 132.187500, -2.108899 ], [ 132.011719, -2.108899 ], [ 132.011719, -1.757537 ], [ 131.835938, -1.757537 ], [ 131.835938, -1.581830 ], [ 131.308594, -1.581830 ], [ 131.308594, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -1.054628 ], [ 130.605469, -1.054628 ], [ 130.605469, -0.878872 ], [ 131.308594, -0.878872 ], [ 131.308594, -0.703107 ], [ 132.011719, -0.703107 ], [ 132.011719, -0.527336 ], [ 132.363281, -0.527336 ], [ 132.363281, -0.351560 ], [ 132.714844, -0.351560 ] ] ], [ [ [ 129.550781, -2.811371 ], [ 129.550781, -2.986927 ], [ 130.078125, -2.986927 ], [ 130.078125, -3.162456 ], [ 130.429688, -3.162456 ], [ 130.429688, -3.337954 ], [ 130.605469, -3.337954 ], [ 130.605469, -3.688855 ], [ 130.781250, -3.688855 ], [ 130.781250, -3.864255 ], [ 130.429688, -3.864255 ], [ 130.429688, -3.688855 ], [ 130.078125, -3.688855 ], [ 130.078125, -3.513421 ], [ 129.550781, -3.513421 ], [ 129.550781, -3.337954 ], [ 129.023438, -3.337954 ], [ 129.023438, -3.513421 ], [ 128.144531, -3.513421 ], [ 128.144531, -3.337954 ], [ 127.968750, -3.337954 ], [ 127.968750, -3.162456 ], [ 128.144531, -3.162456 ], [ 128.144531, -2.811371 ], [ 129.550781, -2.811371 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.671875, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.527336 ], [ 127.617188, -0.527336 ], [ 127.617188, 0.175781 ], [ 127.441406, 0.175781 ], [ 127.441406, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 126.914062, -3.162456 ], [ 126.914062, -3.337954 ], [ 127.089844, -3.337954 ], [ 127.089844, -3.513421 ], [ 127.265625, -3.513421 ], [ 127.265625, -3.688855 ], [ 127.089844, -3.688855 ], [ 127.089844, -3.864255 ], [ 126.386719, -3.864255 ], [ 126.386719, -3.688855 ], [ 126.210938, -3.688855 ], [ 126.210938, -3.513421 ], [ 126.035156, -3.513421 ], [ 126.035156, -3.162456 ], [ 126.914062, -3.162456 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.980469, -8.928487 ], [ 124.980469, -9.449062 ], [ 124.804688, -9.449062 ], [ 124.804688, -9.622414 ], [ 124.628906, -9.622414 ], [ 124.628906, -9.968851 ], [ 124.453125, -9.968851 ], [ 124.453125, -10.141932 ], [ 124.101562, -10.141932 ], [ 124.101562, -10.314919 ], [ 123.398438, -10.314919 ], [ 123.398438, -9.795678 ], [ 123.574219, -9.795678 ], [ 123.574219, -9.622414 ], [ 123.750000, -9.622414 ], [ 123.750000, -9.449062 ], [ 123.925781, -9.449062 ], [ 123.925781, -9.275622 ], [ 124.101562, -9.275622 ], [ 124.101562, -9.102097 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.928487 ], [ 124.980469, -8.928487 ] ] ], [ [ [ 119.882812, -9.275622 ], [ 119.882812, -9.449062 ], [ 120.234375, -9.449062 ], [ 120.234375, -9.622414 ], [ 120.410156, -9.622414 ], [ 120.410156, -9.795678 ], [ 120.585938, -9.795678 ], [ 120.585938, -9.968851 ], [ 120.761719, -9.968851 ], [ 120.761719, -10.141932 ], [ 119.882812, -10.141932 ], [ 119.882812, -9.968851 ], [ 119.531250, -9.968851 ], [ 119.531250, -9.795678 ], [ 119.179688, -9.795678 ], [ 119.179688, -9.622414 ], [ 118.828125, -9.622414 ], [ 118.828125, -9.449062 ], [ 119.531250, -9.449062 ], [ 119.531250, -9.275622 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 118.828125, -8.233237 ], [ 118.828125, -8.407168 ], [ 119.003906, -8.407168 ], [ 119.003906, -8.581021 ], [ 118.652344, -8.581021 ], [ 118.652344, -8.754795 ], [ 117.773438, -8.754795 ], [ 117.773438, -8.928487 ], [ 116.894531, -8.928487 ], [ 116.894531, -8.581021 ], [ 117.070312, -8.581021 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.597656, -8.233237 ], [ 118.828125, -8.233237 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.871094, -8.407168 ], [ 122.695312, -8.407168 ], [ 122.695312, -8.581021 ], [ 122.343750, -8.581021 ], [ 122.343750, -8.754795 ], [ 121.640625, -8.754795 ], [ 121.640625, -8.928487 ], [ 120.410156, -8.928487 ], [ 120.410156, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.410156, -8.407168 ], [ 120.410156, -8.233237 ], [ 120.761719, -8.233237 ], [ 120.761719, -8.407168 ], [ 122.343750, -8.407168 ], [ 122.343750, -8.233237 ], [ 122.695312, -8.233237 ], [ 122.695312, -8.059230 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 107.226562, -5.790897 ], [ 107.226562, -5.965754 ], [ 107.402344, -5.965754 ], [ 107.402344, -6.140555 ], [ 107.753906, -6.140555 ], [ 107.753906, -6.315299 ], [ 108.457031, -6.315299 ], [ 108.457031, -6.664608 ], [ 109.335938, -6.664608 ], [ 109.335938, -6.839170 ], [ 110.566406, -6.839170 ], [ 110.566406, -6.489983 ], [ 110.742188, -6.489983 ], [ 110.742188, -6.315299 ], [ 110.917969, -6.315299 ], [ 110.917969, -6.489983 ], [ 111.445312, -6.489983 ], [ 111.445312, -6.664608 ], [ 112.148438, -6.664608 ], [ 112.148438, -6.839170 ], [ 112.500000, -6.839170 ], [ 112.500000, -7.013668 ], [ 112.675781, -7.013668 ], [ 112.675781, -7.362467 ], [ 112.851562, -7.362467 ], [ 112.851562, -7.536764 ], [ 113.554688, -7.536764 ], [ 113.554688, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -7.885147 ], [ 114.960938, -7.885147 ], [ 114.960938, -8.059230 ], [ 115.312500, -8.059230 ], [ 115.312500, -8.233237 ], [ 115.488281, -8.233237 ], [ 115.488281, -8.407168 ], [ 114.785156, -8.407168 ], [ 114.785156, -8.581021 ], [ 114.082031, -8.581021 ], [ 114.082031, -8.407168 ], [ 113.554688, -8.407168 ], [ 113.554688, -8.233237 ], [ 110.917969, -8.233237 ], [ 110.917969, -8.059230 ], [ 110.214844, -8.059230 ], [ 110.214844, -7.885147 ], [ 109.511719, -7.885147 ], [ 109.511719, -7.710992 ], [ 108.808594, -7.710992 ], [ 108.808594, -7.536764 ], [ 108.457031, -7.536764 ], [ 108.457031, -7.710992 ], [ 107.753906, -7.710992 ], [ 107.753906, -7.536764 ], [ 107.050781, -7.536764 ], [ 107.050781, -7.362467 ], [ 106.523438, -7.362467 ], [ 106.523438, -7.188101 ], [ 106.347656, -7.188101 ], [ 106.347656, -7.013668 ], [ 106.171875, -7.013668 ], [ 106.171875, -6.839170 ], [ 105.468750, -6.839170 ], [ 105.468750, -6.489983 ], [ 105.644531, -6.489983 ], [ 105.644531, -6.315299 ], [ 105.820312, -6.315299 ], [ 105.820312, -5.965754 ], [ 105.996094, -5.965754 ], [ 105.996094, -5.790897 ], [ 107.226562, -5.790897 ] ] ], [ [ [ 117.773438, 0.878872 ], [ 117.773438, 0.703107 ], [ 117.597656, 0.703107 ], [ 117.597656, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -0.878872 ], [ 117.246094, -0.878872 ], [ 117.246094, -1.054628 ], [ 116.894531, -1.054628 ], [ 116.894531, -1.230374 ], [ 116.718750, -1.230374 ], [ 116.718750, -1.406109 ], [ 116.542969, -1.406109 ], [ 116.542969, -1.933227 ], [ 116.367188, -1.933227 ], [ 116.367188, -2.811371 ], [ 116.191406, -2.811371 ], [ 116.191406, -3.513421 ], [ 116.015625, -3.513421 ], [ 116.015625, -3.688855 ], [ 115.488281, -3.688855 ], [ 115.488281, -3.864255 ], [ 115.136719, -3.864255 ], [ 115.136719, -4.039618 ], [ 114.785156, -4.039618 ], [ 114.785156, -3.864255 ], [ 114.609375, -3.864255 ], [ 114.609375, -3.513421 ], [ 114.433594, -3.513421 ], [ 114.433594, -3.337954 ], [ 113.554688, -3.337954 ], [ 113.554688, -3.162456 ], [ 113.203125, -3.162456 ], [ 113.203125, -2.986927 ], [ 113.027344, -2.986927 ], [ 113.027344, -3.162456 ], [ 112.324219, -3.162456 ], [ 112.324219, -3.337954 ], [ 111.796875, -3.337954 ], [ 111.796875, -3.162456 ], [ 111.621094, -3.162456 ], [ 111.621094, -2.986927 ], [ 110.390625, -2.986927 ], [ 110.390625, -2.811371 ], [ 110.214844, -2.811371 ], [ 110.214844, -2.284551 ], [ 110.039062, -2.284551 ], [ 110.039062, -1.581830 ], [ 109.863281, -1.581830 ], [ 109.863281, -1.406109 ], [ 109.511719, -1.406109 ], [ 109.511719, -1.230374 ], [ 109.335938, -1.230374 ], [ 109.335938, -0.878872 ], [ 109.160156, -0.878872 ], [ 109.160156, -0.527336 ], [ 108.984375, -0.527336 ], [ 108.984375, 0.000000 ], [ 108.808594, 0.000000 ], [ 108.808594, 0.703107 ], [ 108.984375, 0.703107 ], [ 108.984375, 0.878872 ], [ 117.773438, 0.878872 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.489983 ], [ 134.296875, -6.489983 ], [ 134.296875, -6.839170 ], [ 134.121094, -6.839170 ], [ 134.121094, -6.489983 ], [ 133.945312, -6.489983 ], [ 133.945312, -5.965754 ], [ 134.121094, -5.965754 ], [ 134.121094, -5.615986 ], [ 134.648438, -5.615986 ] ] ], [ [ [ 102.832031, 0.878872 ], [ 102.832031, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.710938, 0.175781 ], [ 103.710938, -0.175781 ], [ 103.535156, -0.175781 ], [ 103.535156, -0.527336 ], [ 103.359375, -0.527336 ], [ 103.359375, -0.878872 ], [ 103.710938, -0.878872 ], [ 103.710938, -1.054628 ], [ 104.238281, -1.054628 ], [ 104.238281, -1.406109 ], [ 104.414062, -1.406109 ], [ 104.414062, -1.933227 ], [ 104.589844, -1.933227 ], [ 104.589844, -2.284551 ], [ 105.468750, -2.284551 ], [ 105.468750, -2.460181 ], [ 105.644531, -2.460181 ], [ 105.644531, -2.635789 ], [ 105.820312, -2.635789 ], [ 105.820312, -2.986927 ], [ 105.996094, -2.986927 ], [ 105.996094, -3.688855 ], [ 105.820312, -3.688855 ], [ 105.820312, -5.790897 ], [ 104.414062, -5.790897 ], [ 104.414062, -5.615986 ], [ 104.238281, -5.615986 ], [ 104.238281, -5.441022 ], [ 104.062500, -5.441022 ], [ 104.062500, -5.266008 ], [ 103.886719, -5.266008 ], [ 103.886719, -5.090944 ], [ 103.710938, -5.090944 ], [ 103.710938, -4.915833 ], [ 103.535156, -4.915833 ], [ 103.535156, -4.740675 ], [ 103.183594, -4.740675 ], [ 103.183594, -4.565474 ], [ 102.832031, -4.565474 ], [ 102.832031, -4.390229 ], [ 102.480469, -4.390229 ], [ 102.480469, -4.039618 ], [ 102.304688, -4.039618 ], [ 102.304688, -3.688855 ], [ 102.128906, -3.688855 ], [ 102.128906, -3.513421 ], [ 101.953125, -3.513421 ], [ 101.953125, -3.337954 ], [ 101.777344, -3.337954 ], [ 101.777344, -3.162456 ], [ 101.601562, -3.162456 ], [ 101.601562, -2.986927 ], [ 101.425781, -2.986927 ], [ 101.425781, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.460181 ], [ 101.074219, -2.460181 ], [ 101.074219, -2.108899 ], [ 100.898438, -2.108899 ], [ 100.898438, -1.933227 ], [ 100.722656, -1.933227 ], [ 100.722656, -1.581830 ], [ 100.546875, -1.581830 ], [ 100.546875, -1.230374 ], [ 100.371094, -1.230374 ], [ 100.371094, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.175781 ], [ 99.140625, 0.175781 ], [ 99.140625, 0.527336 ], [ 98.964844, 0.527336 ], [ 98.964844, 0.878872 ], [ 102.832031, 0.878872 ] ] ], [ [ [ 122.695312, -4.390229 ], [ 122.519531, -4.390229 ], [ 122.519531, -4.565474 ], [ 121.992188, -4.565474 ], [ 121.992188, -4.740675 ], [ 121.464844, -4.740675 ], [ 121.464844, -4.039618 ], [ 121.289062, -4.039618 ], [ 121.289062, -3.864255 ], [ 120.937500, -3.864255 ], [ 120.937500, -3.688855 ], [ 120.761719, -3.688855 ], [ 120.761719, -2.986927 ], [ 120.937500, -2.986927 ], [ 120.937500, -2.635789 ], [ 120.585938, -2.635789 ], [ 120.585938, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -4.740675 ], [ 120.410156, -4.740675 ], [ 120.410156, -5.441022 ], [ 120.234375, -5.441022 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -5.441022 ], [ 119.355469, -5.441022 ], [ 119.355469, -4.915833 ], [ 119.531250, -4.915833 ], [ 119.531250, -3.864255 ], [ 119.355469, -3.864255 ], [ 119.355469, -3.337954 ], [ 119.003906, -3.337954 ], [ 119.003906, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.811371 ], [ 118.652344, -2.811371 ], [ 118.652344, -2.635789 ], [ 118.828125, -2.635789 ], [ 118.828125, -2.460181 ], [ 119.003906, -2.460181 ], [ 119.003906, -2.284551 ], [ 119.179688, -2.284551 ], [ 119.179688, -1.054628 ], [ 119.355469, -1.054628 ], [ 119.355469, -0.527336 ], [ 119.531250, -0.527336 ], [ 119.531250, -0.175781 ], [ 119.707031, -0.175781 ], [ 119.707031, 0.351560 ], [ 119.882812, 0.351560 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 0.878872 ], [ 124.628906, 0.878872 ], [ 124.628906, 0.703107 ], [ 124.453125, 0.703107 ], [ 124.453125, 0.527336 ], [ 124.101562, 0.527336 ], [ 124.101562, 0.351560 ], [ 123.046875, 0.351560 ], [ 123.046875, 0.527336 ], [ 120.585938, 0.527336 ], [ 120.585938, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, -0.527336 ], [ 120.058594, -0.527336 ], [ 120.058594, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -0.878872 ], [ 120.410156, -0.878872 ], [ 120.410156, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.230374 ], [ 120.761719, -1.230374 ], [ 120.761719, -1.406109 ], [ 121.113281, -1.406109 ], [ 121.113281, -1.230374 ], [ 121.289062, -1.230374 ], [ 121.289062, -1.054628 ], [ 121.464844, -1.054628 ], [ 121.464844, -0.878872 ], [ 121.992188, -0.878872 ], [ 121.992188, -0.703107 ], [ 122.871094, -0.703107 ], [ 122.871094, -0.527336 ], [ 123.222656, -0.527336 ], [ 123.222656, -1.054628 ], [ 122.871094, -1.054628 ], [ 122.871094, -0.878872 ], [ 122.695312, -0.878872 ], [ 122.695312, -1.054628 ], [ 122.519531, -1.054628 ], [ 122.519531, -1.406109 ], [ 122.167969, -1.406109 ], [ 122.167969, -1.581830 ], [ 121.816406, -1.581830 ], [ 121.816406, -1.757537 ], [ 121.464844, -1.757537 ], [ 121.464844, -1.933227 ], [ 121.640625, -1.933227 ], [ 121.640625, -2.284551 ], [ 121.816406, -2.284551 ], [ 121.816406, -2.460181 ], [ 121.992188, -2.460181 ], [ 121.992188, -2.811371 ], [ 122.167969, -2.811371 ], [ 122.167969, -3.162456 ], [ 122.343750, -3.162456 ], [ 122.343750, -3.337954 ], [ 122.167969, -3.337954 ], [ 122.167969, -3.688855 ], [ 122.343750, -3.688855 ], [ 122.343750, -3.864255 ], [ 122.519531, -3.864255 ], [ 122.519531, -4.039618 ], [ 122.695312, -4.039618 ], [ 122.695312, -4.390229 ] ] ], [ [ [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -0.878872 ], [ 134.121094, -0.878872 ], [ 134.121094, -1.933227 ], [ 134.296875, -1.933227 ], [ 134.296875, -2.811371 ], [ 134.648438, -2.811371 ], [ 134.648438, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.527344, -3.337954 ], [ 135.527344, -3.162456 ], [ 135.703125, -3.162456 ], [ 135.703125, -2.986927 ], [ 135.878906, -2.986927 ], [ 135.878906, -4.390229 ], [ 134.824219, -4.390229 ], [ 134.824219, -4.214943 ], [ 134.472656, -4.214943 ], [ 134.472656, -4.039618 ], [ 134.121094, -4.039618 ], [ 134.121094, -3.864255 ], [ 133.945312, -3.864255 ], [ 133.945312, -3.688855 ], [ 133.417969, -3.688855 ], [ 133.417969, -3.864255 ], [ 133.242188, -3.864255 ], [ 133.242188, -4.039618 ], [ 132.890625, -4.039618 ], [ 132.890625, -3.864255 ], [ 132.714844, -3.864255 ], [ 132.714844, -3.162456 ], [ 132.363281, -3.162456 ], [ 132.363281, -2.986927 ], [ 132.011719, -2.986927 ], [ 132.011719, -2.811371 ], [ 132.187500, -2.811371 ], [ 132.187500, -2.635789 ], [ 132.890625, -2.635789 ], [ 132.890625, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.769531, -2.284551 ], [ 133.593750, -2.284551 ], [ 133.593750, -2.108899 ], [ 132.011719, -2.108899 ], [ 132.011719, -1.757537 ], [ 131.835938, -1.757537 ], [ 131.835938, -1.581830 ], [ 131.132812, -1.581830 ], [ 131.132812, -1.406109 ], [ 130.605469, -1.406109 ], [ 130.605469, -1.054628 ], [ 130.429688, -1.054628 ], [ 130.429688, -0.878872 ], [ 130.957031, -0.878872 ], [ 130.957031, -0.703107 ], [ 131.660156, -0.703107 ], [ 131.660156, -0.527336 ], [ 132.187500, -0.527336 ], [ 132.187500, -0.351560 ], [ 132.714844, -0.351560 ] ] ], [ [ [ 129.375000, -2.635789 ], [ 129.375000, -2.811371 ], [ 130.078125, -2.811371 ], [ 130.078125, -2.986927 ], [ 130.429688, -2.986927 ], [ 130.429688, -3.162456 ], [ 130.605469, -3.162456 ], [ 130.605469, -3.513421 ], [ 130.781250, -3.513421 ], [ 130.781250, -3.688855 ], [ 130.429688, -3.688855 ], [ 130.429688, -3.513421 ], [ 130.078125, -3.513421 ], [ 130.078125, -3.337954 ], [ 127.792969, -3.337954 ], [ 127.792969, -3.162456 ], [ 127.968750, -3.162456 ], [ 127.968750, -2.811371 ], [ 128.671875, -2.811371 ], [ 128.671875, -2.635789 ], [ 129.375000, -2.635789 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.671875, 0.527336 ], [ 128.496094, 0.527336 ], [ 128.496094, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.527336 ], [ 127.968750, 0.527336 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.351560 ], [ 127.617188, -0.351560 ], [ 127.617188, 0.000000 ], [ 127.441406, 0.000000 ], [ 127.441406, 0.527336 ], [ 127.265625, 0.527336 ], [ 127.265625, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 126.914062, -2.986927 ], [ 126.914062, -3.162456 ], [ 127.089844, -3.162456 ], [ 127.089844, -3.513421 ], [ 126.914062, -3.513421 ], [ 126.914062, -3.688855 ], [ 126.210938, -3.688855 ], [ 126.210938, -3.513421 ], [ 126.035156, -3.513421 ], [ 126.035156, -3.337954 ], [ 125.859375, -3.337954 ], [ 125.859375, -3.162456 ], [ 126.562500, -3.162456 ], [ 126.562500, -2.986927 ], [ 126.914062, -2.986927 ] ] ], [ [ [ 122.695312, -4.390229 ], [ 122.871094, -4.390229 ], [ 122.871094, -4.565474 ], [ 123.046875, -4.565474 ], [ 123.046875, -5.441022 ], [ 122.695312, -5.441022 ], [ 122.695312, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -5.441022 ], [ 122.167969, -5.441022 ], [ 122.167969, -5.266008 ], [ 122.343750, -5.266008 ], [ 122.343750, -4.915833 ], [ 122.519531, -4.915833 ], [ 122.519531, -4.565474 ], [ 122.695312, -4.565474 ], [ 122.695312, -4.390229 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.407168 ], [ 127.265625, -8.581021 ], [ 127.089844, -8.581021 ], [ 127.089844, -8.754795 ], [ 126.738281, -8.754795 ], [ 126.738281, -8.928487 ], [ 126.210938, -8.928487 ], [ 126.210938, -9.102097 ], [ 125.859375, -9.102097 ], [ 125.859375, -9.275622 ], [ 125.507812, -9.275622 ], [ 125.507812, -9.449062 ], [ 125.156250, -9.449062 ], [ 125.156250, -9.102097 ], [ 124.980469, -9.102097 ], [ 124.980469, -8.754795 ], [ 125.156250, -8.754795 ], [ 125.156250, -8.581021 ], [ 125.683594, -8.581021 ], [ 125.683594, -8.407168 ], [ 127.265625, -8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.233237 ], [ 127.265625, -8.407168 ], [ 127.089844, -8.407168 ], [ 127.089844, -8.581021 ], [ 126.914062, -8.581021 ], [ 126.914062, -8.754795 ], [ 126.562500, -8.754795 ], [ 126.562500, -8.928487 ], [ 126.210938, -8.928487 ], [ 126.210938, -9.102097 ], [ 125.507812, -9.102097 ], [ 125.507812, -9.275622 ], [ 124.980469, -9.275622 ], [ 124.980469, -8.928487 ], [ 124.804688, -8.928487 ], [ 124.804688, -8.754795 ], [ 124.980469, -8.754795 ], [ 124.980469, -8.581021 ], [ 125.507812, -8.581021 ], [ 125.507812, -8.407168 ], [ 126.386719, -8.407168 ], [ 126.386719, -8.233237 ], [ 127.265625, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.554688, -26.431228 ], [ 113.378906, -26.431228 ], [ 113.378906, -26.273714 ], [ 113.554688, -26.273714 ], [ 113.554688, -25.958045 ], [ 113.378906, -25.958045 ], [ 113.378906, -25.799891 ], [ 113.730469, -25.799891 ], [ 113.730469, -25.958045 ], [ 113.906250, -25.958045 ], [ 113.906250, -26.115986 ], [ 114.082031, -26.115986 ], [ 114.082031, -26.273714 ], [ 114.257812, -26.273714 ], [ 114.257812, -25.799891 ], [ 114.082031, -25.799891 ], [ 114.082031, -25.482951 ], [ 113.906250, -25.482951 ], [ 113.906250, -25.165173 ], [ 113.730469, -25.165173 ], [ 113.730469, -24.846565 ], [ 113.554688, -24.846565 ], [ 113.554688, -24.527135 ], [ 113.378906, -24.527135 ], [ 113.378906, -24.206890 ], [ 113.554688, -24.206890 ], [ 113.554688, -23.725012 ], [ 113.730469, -23.725012 ], [ 113.730469, -23.402765 ], [ 113.906250, -23.402765 ], [ 113.906250, -22.755921 ], [ 113.730469, -22.755921 ], [ 113.730469, -22.268764 ], [ 113.906250, -22.268764 ], [ 113.906250, -21.943046 ], [ 114.082031, -21.943046 ], [ 114.082031, -22.268764 ], [ 114.257812, -22.268764 ], [ 114.257812, -22.431340 ], [ 114.433594, -22.431340 ], [ 114.433594, -22.105999 ], [ 114.609375, -22.105999 ], [ 114.609375, -21.779905 ], [ 114.960938, -21.779905 ], [ 114.960938, -21.616579 ], [ 115.312500, -21.616579 ], [ 115.312500, -21.453069 ], [ 115.664062, -21.453069 ], [ 115.664062, -21.289374 ], [ 116.015625, -21.289374 ], [ 116.015625, -21.125498 ], [ 116.191406, -21.125498 ], [ 116.191406, -20.961440 ], [ 116.542969, -20.961440 ], [ 116.542969, -20.797201 ], [ 116.718750, -20.797201 ], [ 116.718750, -20.632784 ], [ 117.246094, -20.632784 ], [ 117.246094, -20.797201 ], [ 117.597656, -20.797201 ], [ 117.597656, -20.632784 ], [ 117.949219, -20.632784 ], [ 117.949219, -20.468189 ], [ 118.300781, -20.468189 ], [ 118.300781, -20.303418 ], [ 118.828125, -20.303418 ], [ 118.828125, -20.138470 ], [ 119.003906, -20.138470 ], [ 119.003906, -19.973349 ], [ 120.234375, -19.973349 ], [ 120.234375, -19.808054 ], [ 120.761719, -19.808054 ], [ 120.761719, -19.642588 ], [ 121.113281, -19.642588 ], [ 121.113281, -19.476950 ], [ 121.464844, -19.476950 ], [ 121.464844, -18.979026 ], [ 121.640625, -18.979026 ], [ 121.640625, -18.646245 ], [ 121.816406, -18.646245 ], [ 121.816406, -18.479609 ], [ 121.992188, -18.479609 ], [ 121.992188, -18.312811 ], [ 122.167969, -18.312811 ], [ 122.167969, -17.978733 ], [ 122.343750, -17.978733 ], [ 122.343750, -17.308688 ], [ 122.519531, -17.308688 ], [ 122.519531, -17.140790 ], [ 122.695312, -17.140790 ], [ 122.695312, -16.804541 ], [ 122.871094, -16.804541 ], [ 122.871094, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -16.804541 ], [ 123.222656, -16.804541 ], [ 123.222656, -17.140790 ], [ 123.398438, -17.140790 ], [ 123.398438, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.804541 ], [ 123.574219, -16.804541 ], [ 123.574219, -16.467695 ], [ 123.750000, -16.467695 ], [ 123.750000, -16.130262 ], [ 123.925781, -16.130262 ], [ 123.925781, -16.299051 ], [ 124.277344, -16.299051 ], [ 124.277344, -15.961329 ], [ 124.453125, -15.961329 ], [ 124.453125, -15.623037 ], [ 124.628906, -15.623037 ], [ 124.628906, -15.453680 ], [ 124.804688, -15.453680 ], [ 124.804688, -15.284185 ], [ 124.980469, -15.284185 ], [ 124.980469, -14.944785 ], [ 125.156250, -14.944785 ], [ 125.156250, -14.604847 ], [ 125.507812, -14.604847 ], [ 125.507812, -14.434680 ], [ 125.683594, -14.434680 ], [ 125.683594, -14.264383 ], [ 126.210938, -14.264383 ], [ 126.210938, -14.093957 ], [ 126.562500, -14.093957 ], [ 126.562500, -13.923404 ], [ 126.914062, -13.923404 ], [ 126.914062, -13.752725 ], [ 127.089844, -13.752725 ], [ 127.089844, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.093957 ], [ 127.617188, -14.093957 ], [ 127.617188, -14.264383 ], [ 127.792969, -14.264383 ], [ 127.792969, -14.434680 ], [ 127.968750, -14.434680 ], [ 127.968750, -14.604847 ], [ 128.144531, -14.604847 ], [ 128.144531, -14.944785 ], [ 129.550781, -14.944785 ], [ 129.550781, -14.774883 ], [ 129.375000, -14.774883 ], [ 129.375000, -14.434680 ], [ 129.550781, -14.434680 ], [ 129.550781, -14.093957 ], [ 129.726562, -14.093957 ], [ 129.726562, -13.752725 ], [ 129.902344, -13.752725 ], [ 129.902344, -13.581921 ], [ 130.253906, -13.581921 ], [ 130.253906, -13.068777 ], [ 130.429688, -13.068777 ], [ 130.429688, -12.726084 ], [ 130.605469, -12.726084 ], [ 130.605469, -12.554564 ], [ 130.957031, -12.554564 ], [ 130.957031, -12.382928 ], [ 132.011719, -12.382928 ], [ 132.011719, -12.211180 ], [ 132.363281, -12.211180 ], [ 132.363281, -12.039321 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 132.011719, -11.523088 ], [ 132.011719, -11.350797 ], [ 132.187500, -11.350797 ], [ 132.187500, -11.178402 ], [ 132.539062, -11.178402 ], [ 132.539062, -11.350797 ], [ 133.066406, -11.350797 ], [ 133.066406, -11.523088 ], [ 133.242188, -11.523088 ], [ 133.242188, -11.695273 ], [ 133.417969, -11.695273 ], [ 133.417969, -11.867351 ], [ 133.945312, -11.867351 ], [ 133.945312, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.703125, -12.211180 ], [ 135.703125, -12.039321 ], [ 135.878906, -12.039321 ], [ 135.878906, -14.264383 ], [ 135.703125, -14.264383 ], [ 135.703125, -14.434680 ], [ 135.527344, -14.434680 ], [ 135.527344, -14.774883 ], [ 135.351562, -14.774883 ], [ 135.351562, -14.944785 ], [ 135.527344, -14.944785 ], [ 135.527344, -15.114553 ], [ 135.703125, -15.114553 ], [ 135.703125, -15.284185 ], [ 135.878906, -15.284185 ], [ 135.878906, -34.885931 ], [ 135.703125, -34.885931 ], [ 135.703125, -34.741612 ], [ 135.351562, -34.741612 ], [ 135.351562, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 134.121094, -32.990236 ], [ 134.121094, -32.694866 ], [ 134.296875, -32.694866 ], [ 134.296875, -32.546813 ], [ 134.121094, -32.546813 ], [ 134.121094, -32.398516 ], [ 133.769531, -32.398516 ], [ 133.769531, -32.249974 ], [ 133.417969, -32.249974 ], [ 133.417969, -32.101190 ], [ 133.066406, -32.101190 ], [ 133.066406, -31.952162 ], [ 132.011719, -31.952162 ], [ 132.011719, -31.802893 ], [ 131.660156, -31.802893 ], [ 131.660156, -31.653381 ], [ 131.308594, -31.653381 ], [ 131.308594, -31.503629 ], [ 130.605469, -31.503629 ], [ 130.605469, -31.653381 ], [ 129.375000, -31.653381 ], [ 129.375000, -31.802893 ], [ 128.671875, -31.802893 ], [ 128.671875, -31.952162 ], [ 128.144531, -31.952162 ], [ 128.144531, -32.101190 ], [ 127.441406, -32.101190 ], [ 127.441406, -32.249974 ], [ 126.210938, -32.249974 ], [ 126.210938, -32.398516 ], [ 125.859375, -32.398516 ], [ 125.859375, -32.546813 ], [ 125.507812, -32.546813 ], [ 125.507812, -32.694866 ], [ 124.980469, -32.694866 ], [ 124.980469, -32.842674 ], [ 124.628906, -32.842674 ], [ 124.628906, -32.990236 ], [ 124.277344, -32.990236 ], [ 124.277344, -33.284620 ], [ 124.101562, -33.284620 ], [ 124.101562, -33.578015 ], [ 123.925781, -33.578015 ], [ 123.925781, -33.724340 ], [ 123.750000, -33.724340 ], [ 123.750000, -33.870416 ], [ 122.695312, -33.870416 ], [ 122.695312, -34.016242 ], [ 121.640625, -34.016242 ], [ 121.640625, -33.870416 ], [ 120.410156, -33.870416 ], [ 120.410156, -34.016242 ], [ 119.882812, -34.016242 ], [ 119.882812, -34.161818 ], [ 119.707031, -34.161818 ], [ 119.707031, -34.307144 ], [ 119.531250, -34.307144 ], [ 119.531250, -34.452218 ], [ 119.003906, -34.452218 ], [ 119.003906, -34.597042 ], [ 118.652344, -34.597042 ], [ 118.652344, -34.741612 ], [ 118.476562, -34.741612 ], [ 118.476562, -34.885931 ], [ 118.125000, -34.885931 ], [ 118.125000, -35.029996 ], [ 116.367188, -35.029996 ], [ 116.367188, -34.885931 ], [ 116.015625, -34.885931 ], [ 116.015625, -34.741612 ], [ 115.839844, -34.741612 ], [ 115.839844, -34.597042 ], [ 115.488281, -34.597042 ], [ 115.488281, -34.452218 ], [ 115.312500, -34.452218 ], [ 115.312500, -34.307144 ], [ 114.960938, -34.307144 ], [ 114.960938, -33.578015 ], [ 115.312500, -33.578015 ], [ 115.312500, -33.431441 ], [ 115.664062, -33.431441 ], [ 115.664062, -32.546813 ], [ 115.839844, -32.546813 ], [ 115.839844, -31.952162 ], [ 115.664062, -31.952162 ], [ 115.664062, -31.503629 ], [ 115.488281, -31.503629 ], [ 115.488281, -31.203405 ], [ 115.312500, -31.203405 ], [ 115.312500, -30.902225 ], [ 115.136719, -30.902225 ], [ 115.136719, -30.297018 ], [ 114.960938, -30.297018 ], [ 114.960938, -29.382175 ], [ 114.785156, -29.382175 ], [ 114.785156, -29.075375 ], [ 114.609375, -29.075375 ], [ 114.609375, -28.459033 ], [ 114.433594, -28.459033 ], [ 114.433594, -28.304381 ], [ 114.257812, -28.304381 ], [ 114.257812, -27.839076 ], [ 114.082031, -27.839076 ], [ 114.082031, -27.371767 ], [ 113.906250, -27.371767 ], [ 113.906250, -27.059126 ], [ 113.730469, -27.059126 ], [ 113.730469, -26.745610 ], [ 113.554688, -26.745610 ], [ 113.554688, -26.588527 ], [ 113.730469, -26.588527 ], [ 113.730469, -26.431228 ], [ 113.554688, -26.431228 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.554688, -26.273714 ], [ 113.554688, -25.799891 ], [ 113.378906, -25.799891 ], [ 113.378906, -25.641526 ], [ 113.730469, -25.641526 ], [ 113.730469, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -26.115986 ], [ 114.082031, -26.115986 ], [ 114.082031, -25.641526 ], [ 113.906250, -25.641526 ], [ 113.906250, -25.324167 ], [ 113.730469, -25.324167 ], [ 113.730469, -25.005973 ], [ 113.554688, -25.005973 ], [ 113.554688, -24.527135 ], [ 113.378906, -24.527135 ], [ 113.378906, -23.563987 ], [ 113.554688, -23.563987 ], [ 113.554688, -23.241346 ], [ 113.730469, -23.241346 ], [ 113.730469, -22.268764 ], [ 113.906250, -22.268764 ], [ 113.906250, -21.943046 ], [ 114.082031, -21.943046 ], [ 114.082031, -22.431340 ], [ 114.257812, -22.431340 ], [ 114.257812, -22.105999 ], [ 114.433594, -22.105999 ], [ 114.433594, -21.943046 ], [ 114.609375, -21.943046 ], [ 114.609375, -21.779905 ], [ 114.960938, -21.779905 ], [ 114.960938, -21.616579 ], [ 115.312500, -21.616579 ], [ 115.312500, -21.453069 ], [ 115.488281, -21.453069 ], [ 115.488281, -21.289374 ], [ 115.664062, -21.289374 ], [ 115.664062, -21.125498 ], [ 115.839844, -21.125498 ], [ 115.839844, -20.961440 ], [ 116.191406, -20.961440 ], [ 116.191406, -20.797201 ], [ 116.542969, -20.797201 ], [ 116.542969, -20.632784 ], [ 116.894531, -20.632784 ], [ 116.894531, -20.468189 ], [ 117.070312, -20.468189 ], [ 117.070312, -20.632784 ], [ 117.773438, -20.632784 ], [ 117.773438, -20.468189 ], [ 118.125000, -20.468189 ], [ 118.125000, -20.303418 ], [ 118.652344, -20.303418 ], [ 118.652344, -20.138470 ], [ 118.828125, -20.138470 ], [ 118.828125, -19.973349 ], [ 119.179688, -19.973349 ], [ 119.179688, -19.808054 ], [ 119.355469, -19.808054 ], [ 119.355469, -19.973349 ], [ 120.058594, -19.973349 ], [ 120.058594, -19.808054 ], [ 120.585938, -19.808054 ], [ 120.585938, -19.642588 ], [ 120.937500, -19.642588 ], [ 120.937500, -19.476950 ], [ 121.113281, -19.476950 ], [ 121.113281, -19.311143 ], [ 121.289062, -19.311143 ], [ 121.289062, -19.145168 ], [ 121.464844, -19.145168 ], [ 121.464844, -18.812718 ], [ 121.640625, -18.812718 ], [ 121.640625, -18.646245 ], [ 121.816406, -18.646245 ], [ 121.816406, -18.479609 ], [ 121.992188, -18.479609 ], [ 121.992188, -18.312811 ], [ 122.167969, -18.312811 ], [ 122.167969, -17.140790 ], [ 122.343750, -17.140790 ], [ 122.343750, -16.972741 ], [ 122.519531, -16.972741 ], [ 122.519531, -16.636192 ], [ 122.695312, -16.636192 ], [ 122.695312, -16.467695 ], [ 123.046875, -16.467695 ], [ 123.046875, -16.804541 ], [ 123.222656, -16.804541 ], [ 123.222656, -17.140790 ], [ 123.750000, -17.140790 ], [ 123.750000, -16.972741 ], [ 123.574219, -16.972741 ], [ 123.574219, -16.636192 ], [ 123.398438, -16.636192 ], [ 123.398438, -16.467695 ], [ 123.574219, -16.467695 ], [ 123.574219, -16.130262 ], [ 123.925781, -16.130262 ], [ 123.925781, -16.299051 ], [ 124.101562, -16.299051 ], [ 124.101562, -15.961329 ], [ 124.277344, -15.961329 ], [ 124.277344, -15.453680 ], [ 124.453125, -15.453680 ], [ 124.453125, -15.284185 ], [ 124.628906, -15.284185 ], [ 124.628906, -15.114553 ], [ 124.804688, -15.114553 ], [ 124.804688, -14.944785 ], [ 124.980469, -14.944785 ], [ 124.980469, -14.774883 ], [ 125.156250, -14.774883 ], [ 125.156250, -14.604847 ], [ 125.507812, -14.604847 ], [ 125.507812, -14.264383 ], [ 126.035156, -14.264383 ], [ 126.035156, -14.093957 ], [ 126.386719, -14.093957 ], [ 126.386719, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.093957 ], [ 127.617188, -14.093957 ], [ 127.617188, -14.264383 ], [ 127.792969, -14.264383 ], [ 127.792969, -14.434680 ], [ 127.968750, -14.434680 ], [ 127.968750, -14.604847 ], [ 128.144531, -14.604847 ], [ 128.144531, -14.774883 ], [ 129.023438, -14.774883 ], [ 129.023438, -14.944785 ], [ 129.550781, -14.944785 ], [ 129.550781, -14.604847 ], [ 129.375000, -14.604847 ], [ 129.375000, -14.093957 ], [ 129.550781, -14.093957 ], [ 129.550781, -13.752725 ], [ 129.726562, -13.752725 ], [ 129.726562, -13.581921 ], [ 129.902344, -13.581921 ], [ 129.902344, -13.410994 ], [ 130.253906, -13.410994 ], [ 130.253906, -13.239945 ], [ 130.078125, -13.239945 ], [ 130.078125, -13.068777 ], [ 130.253906, -13.068777 ], [ 130.253906, -12.726084 ], [ 130.429688, -12.726084 ], [ 130.429688, -12.554564 ], [ 130.605469, -12.554564 ], [ 130.605469, -12.382928 ], [ 130.781250, -12.382928 ], [ 130.781250, -12.211180 ], [ 131.132812, -12.211180 ], [ 131.132812, -12.039321 ], [ 131.308594, -12.039321 ], [ 131.308594, -12.211180 ], [ 132.187500, -12.211180 ], [ 132.187500, -12.039321 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 132.187500, -11.523088 ], [ 132.187500, -11.350797 ], [ 131.835938, -11.350797 ], [ 131.835938, -11.178402 ], [ 132.011719, -11.178402 ], [ 132.011719, -11.005904 ], [ 132.187500, -11.005904 ], [ 132.187500, -11.178402 ], [ 132.539062, -11.178402 ], [ 132.539062, -11.350797 ], [ 132.890625, -11.350797 ], [ 132.890625, -11.523088 ], [ 133.242188, -11.523088 ], [ 133.242188, -11.695273 ], [ 133.593750, -11.695273 ], [ 133.593750, -11.867351 ], [ 133.945312, -11.867351 ], [ 133.945312, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.527344, -12.211180 ], [ 135.527344, -12.039321 ], [ 135.878906, -12.039321 ], [ 135.878906, -14.093957 ], [ 135.703125, -14.093957 ], [ 135.703125, -14.264383 ], [ 135.527344, -14.264383 ], [ 135.527344, -14.604847 ], [ 135.351562, -14.604847 ], [ 135.351562, -14.944785 ], [ 135.527344, -14.944785 ], [ 135.527344, -15.114553 ], [ 135.878906, -15.114553 ], [ 135.878906, -34.741612 ], [ 135.527344, -34.741612 ], [ 135.527344, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -33.870416 ], [ 135.000000, -33.870416 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 133.945312, -32.990236 ], [ 133.945312, -32.694866 ], [ 134.121094, -32.694866 ], [ 134.121094, -32.546813 ], [ 133.945312, -32.546813 ], [ 133.945312, -32.398516 ], [ 133.593750, -32.398516 ], [ 133.593750, -32.249974 ], [ 133.242188, -32.249974 ], [ 133.242188, -32.101190 ], [ 132.890625, -32.101190 ], [ 132.890625, -31.952162 ], [ 132.011719, -31.952162 ], [ 132.011719, -31.802893 ], [ 131.835938, -31.802893 ], [ 131.835938, -31.653381 ], [ 131.484375, -31.653381 ], [ 131.484375, -31.503629 ], [ 131.308594, -31.503629 ], [ 131.308594, -31.353637 ], [ 130.429688, -31.353637 ], [ 130.429688, -31.503629 ], [ 129.199219, -31.503629 ], [ 129.199219, -31.653381 ], [ 128.496094, -31.653381 ], [ 128.496094, -31.802893 ], [ 128.144531, -31.802893 ], [ 128.144531, -31.952162 ], [ 127.792969, -31.952162 ], [ 127.792969, -32.101190 ], [ 127.441406, -32.101190 ], [ 127.441406, -32.249974 ], [ 126.386719, -32.249974 ], [ 126.386719, -32.101190 ], [ 126.035156, -32.101190 ], [ 126.035156, -32.249974 ], [ 125.683594, -32.249974 ], [ 125.683594, -32.398516 ], [ 125.507812, -32.398516 ], [ 125.507812, -32.546813 ], [ 125.156250, -32.546813 ], [ 125.156250, -32.694866 ], [ 124.628906, -32.694866 ], [ 124.628906, -32.842674 ], [ 124.101562, -32.842674 ], [ 124.101562, -33.137551 ], [ 123.925781, -33.137551 ], [ 123.925781, -33.578015 ], [ 123.750000, -33.578015 ], [ 123.750000, -33.870416 ], [ 121.640625, -33.870416 ], [ 121.640625, -33.724340 ], [ 120.937500, -33.724340 ], [ 120.937500, -33.870416 ], [ 119.882812, -33.870416 ], [ 119.882812, -34.016242 ], [ 119.707031, -34.016242 ], [ 119.707031, -34.161818 ], [ 119.531250, -34.161818 ], [ 119.531250, -34.307144 ], [ 119.355469, -34.307144 ], [ 119.355469, -34.452218 ], [ 119.003906, -34.452218 ], [ 119.003906, -34.597042 ], [ 118.652344, -34.597042 ], [ 118.652344, -34.741612 ], [ 118.476562, -34.741612 ], [ 118.476562, -34.885931 ], [ 118.125000, -34.885931 ], [ 118.125000, -35.029996 ], [ 117.421875, -35.029996 ], [ 117.421875, -34.885931 ], [ 116.367188, -34.885931 ], [ 116.367188, -34.741612 ], [ 116.015625, -34.741612 ], [ 116.015625, -34.597042 ], [ 115.839844, -34.597042 ], [ 115.839844, -34.452218 ], [ 115.488281, -34.452218 ], [ 115.488281, -34.307144 ], [ 115.136719, -34.307144 ], [ 115.136719, -34.161818 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.312500, -33.578015 ], [ 115.312500, -33.431441 ], [ 115.488281, -33.431441 ], [ 115.488281, -33.284620 ], [ 115.664062, -33.284620 ], [ 115.664062, -31.353637 ], [ 115.488281, -31.353637 ], [ 115.488281, -31.052934 ], [ 115.312500, -31.052934 ], [ 115.312500, -30.751278 ], [ 115.136719, -30.751278 ], [ 115.136719, -30.297018 ], [ 114.960938, -30.297018 ], [ 114.960938, -29.228890 ], [ 114.785156, -29.228890 ], [ 114.785156, -28.921631 ], [ 114.609375, -28.921631 ], [ 114.609375, -28.459033 ], [ 114.433594, -28.459033 ], [ 114.433594, -28.304381 ], [ 114.257812, -28.304381 ], [ 114.257812, -28.149503 ], [ 114.082031, -28.149503 ], [ 114.082031, -27.683528 ], [ 113.906250, -27.683528 ], [ 113.906250, -27.215556 ], [ 113.730469, -27.215556 ], [ 113.730469, -26.902477 ], [ 113.554688, -26.902477 ], [ 113.554688, -26.588527 ], [ 113.378906, -26.588527 ], [ 113.378906, -26.273714 ], [ 113.554688, -26.273714 ] ], [ [ 113.554688, -26.273714 ], [ 113.554688, -26.431228 ], [ 113.730469, -26.431228 ], [ 113.730469, -26.273714 ], [ 113.554688, -26.273714 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.328125, 29.228890 ], [ 96.328125, 28.921631 ], [ 96.503906, 28.921631 ], [ 96.503906, 28.613459 ], [ 96.328125, 28.613459 ], [ 96.328125, 28.459033 ], [ 96.679688, 28.459033 ], [ 96.679688, 28.304381 ], [ 97.382812, 28.304381 ], [ 97.382812, 27.683528 ], [ 97.031250, 27.683528 ], [ 97.031250, 27.371767 ], [ 97.207031, 27.371767 ], [ 97.207031, 27.059126 ], [ 96.679688, 27.059126 ], [ 96.679688, 27.215556 ], [ 96.503906, 27.215556 ], [ 96.503906, 27.059126 ], [ 96.152344, 27.059126 ], [ 96.152344, 26.902477 ], [ 95.800781, 26.902477 ], [ 95.800781, 26.745610 ], [ 95.449219, 26.745610 ], [ 95.449219, 26.588527 ], [ 95.097656, 26.588527 ], [ 95.097656, 25.799891 ], [ 94.921875, 25.799891 ], [ 94.921875, 25.482951 ], [ 94.746094, 25.482951 ], [ 94.746094, 25.165173 ], [ 94.570312, 25.165173 ], [ 94.570312, 24.527135 ], [ 94.394531, 24.527135 ], [ 94.394531, 24.206890 ], [ 94.218750, 24.206890 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 24.046464 ], [ 93.339844, 24.046464 ], [ 93.339844, 22.917923 ], [ 93.164062, 22.917923 ], [ 93.164062, 22.755921 ], [ 92.988281, 22.755921 ], [ 92.988281, 22.431340 ], [ 93.164062, 22.431340 ], [ 93.164062, 22.268764 ], [ 92.988281, 22.268764 ], [ 92.988281, 22.105999 ], [ 92.636719, 22.105999 ], [ 92.636719, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.755921 ], [ 92.285156, 22.755921 ], [ 92.285156, 23.241346 ], [ 92.109375, 23.241346 ], [ 92.109375, 23.563987 ], [ 91.933594, 23.563987 ], [ 91.933594, 23.241346 ], [ 91.757812, 23.241346 ], [ 91.757812, 22.917923 ], [ 91.582031, 22.917923 ], [ 91.582031, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.402765 ], [ 91.230469, 23.402765 ], [ 91.230469, 23.725012 ], [ 91.406250, 23.725012 ], [ 91.406250, 24.046464 ], [ 91.757812, 24.046464 ], [ 91.757812, 24.206890 ], [ 92.109375, 24.206890 ], [ 92.109375, 24.527135 ], [ 92.285156, 24.527135 ], [ 92.285156, 24.846565 ], [ 92.460938, 24.846565 ], [ 92.460938, 25.005973 ], [ 91.933594, 25.005973 ], [ 91.933594, 25.165173 ], [ 90.351562, 25.165173 ], [ 90.351562, 25.324167 ], [ 90.000000, 25.324167 ], [ 90.000000, 25.641526 ], [ 89.824219, 25.641526 ], [ 89.824219, 25.958045 ], [ 89.121094, 25.958045 ], [ 89.121094, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 90.703125, 26.902477 ], [ 90.703125, 26.745610 ], [ 91.757812, 26.745610 ], [ 91.757812, 26.902477 ], [ 92.109375, 26.902477 ], [ 92.109375, 27.527758 ], [ 91.933594, 27.527758 ], [ 91.933594, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.839076 ], [ 92.636719, 27.839076 ], [ 92.636719, 27.994401 ], [ 92.812500, 27.994401 ], [ 92.812500, 28.149503 ], [ 92.988281, 28.149503 ], [ 92.988281, 28.304381 ], [ 93.164062, 28.304381 ], [ 93.164062, 28.459033 ], [ 93.339844, 28.459033 ], [ 93.339844, 28.613459 ], [ 93.515625, 28.613459 ], [ 93.515625, 28.767659 ], [ 93.867188, 28.767659 ], [ 93.867188, 28.921631 ], [ 94.218750, 28.921631 ], [ 94.218750, 29.075375 ], [ 94.570312, 29.075375 ], [ 94.570312, 29.228890 ], [ 94.921875, 29.228890 ], [ 94.921875, 29.075375 ], [ 95.800781, 29.075375 ], [ 95.800781, 29.228890 ], [ 96.328125, 29.228890 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.152344, 29.382175 ], [ 96.152344, 29.228890 ], [ 96.328125, 29.228890 ], [ 96.328125, 28.921631 ], [ 96.503906, 28.921631 ], [ 96.503906, 28.767659 ], [ 96.328125, 28.767659 ], [ 96.328125, 28.459033 ], [ 96.503906, 28.459033 ], [ 96.503906, 28.304381 ], [ 97.207031, 28.304381 ], [ 97.207031, 28.149503 ], [ 97.382812, 28.149503 ], [ 97.382812, 27.839076 ], [ 97.031250, 27.839076 ], [ 97.031250, 27.215556 ], [ 96.503906, 27.215556 ], [ 96.503906, 27.371767 ], [ 96.328125, 27.371767 ], [ 96.328125, 27.215556 ], [ 95.976562, 27.215556 ], [ 95.976562, 27.059126 ], [ 95.800781, 27.059126 ], [ 95.800781, 26.902477 ], [ 95.625000, 26.902477 ], [ 95.625000, 26.745610 ], [ 95.273438, 26.745610 ], [ 95.273438, 26.588527 ], [ 95.097656, 26.588527 ], [ 95.097656, 25.958045 ], [ 94.921875, 25.958045 ], [ 94.921875, 25.641526 ], [ 94.746094, 25.641526 ], [ 94.746094, 25.324167 ], [ 94.570312, 25.324167 ], [ 94.570312, 24.846565 ], [ 94.394531, 24.846565 ], [ 94.394531, 24.367114 ], [ 94.218750, 24.367114 ], [ 94.218750, 24.046464 ], [ 94.042969, 24.046464 ], [ 94.042969, 23.885838 ], [ 93.691406, 23.885838 ], [ 93.691406, 24.046464 ], [ 93.339844, 24.046464 ], [ 93.339844, 24.206890 ], [ 93.164062, 24.206890 ], [ 93.164062, 22.917923 ], [ 92.988281, 22.917923 ], [ 92.988281, 22.593726 ], [ 93.164062, 22.593726 ], [ 93.164062, 22.268764 ], [ 92.812500, 22.268764 ], [ 92.812500, 22.105999 ], [ 92.636719, 22.105999 ], [ 92.636719, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.917923 ], [ 92.285156, 22.917923 ], [ 92.285156, 23.402765 ], [ 92.109375, 23.402765 ], [ 92.109375, 23.725012 ], [ 91.757812, 23.725012 ], [ 91.757812, 23.402765 ], [ 91.582031, 23.402765 ], [ 91.582031, 23.079732 ], [ 91.406250, 23.079732 ], [ 91.406250, 23.241346 ], [ 91.230469, 23.241346 ], [ 91.230469, 23.402765 ], [ 91.054688, 23.402765 ], [ 91.054688, 23.725012 ], [ 91.230469, 23.725012 ], [ 91.230469, 24.046464 ], [ 91.406250, 24.046464 ], [ 91.406250, 24.206890 ], [ 91.933594, 24.206890 ], [ 91.933594, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 24.846565 ], [ 92.285156, 24.846565 ], [ 92.285156, 25.005973 ], [ 91.933594, 25.005973 ], [ 91.933594, 25.165173 ], [ 90.175781, 25.165173 ], [ 90.175781, 25.324167 ], [ 89.824219, 25.324167 ], [ 89.824219, 26.115986 ], [ 89.121094, 26.115986 ], [ 89.121094, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 91.933594, 26.902477 ], [ 91.933594, 27.527758 ], [ 91.757812, 27.527758 ], [ 91.757812, 27.683528 ], [ 91.582031, 27.683528 ], [ 91.582031, 27.839076 ], [ 92.109375, 27.839076 ], [ 92.109375, 27.994401 ], [ 92.636719, 27.994401 ], [ 92.636719, 28.149503 ], [ 92.812500, 28.149503 ], [ 92.812500, 28.304381 ], [ 92.988281, 28.304381 ], [ 92.988281, 28.459033 ], [ 93.164062, 28.459033 ], [ 93.164062, 28.613459 ], [ 93.339844, 28.613459 ], [ 93.339844, 28.767659 ], [ 93.515625, 28.767659 ], [ 93.515625, 28.921631 ], [ 93.867188, 28.921631 ], [ 93.867188, 29.075375 ], [ 94.042969, 29.075375 ], [ 94.042969, 29.228890 ], [ 94.394531, 29.228890 ], [ 94.394531, 29.382175 ], [ 94.570312, 29.382175 ], [ 94.570312, 29.228890 ], [ 94.921875, 29.228890 ], [ 94.921875, 29.075375 ], [ 95.449219, 29.075375 ], [ 95.449219, 29.228890 ], [ 95.800781, 29.228890 ], [ 95.800781, 29.382175 ], [ 96.152344, 29.382175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.351562, 28.149503 ], [ 90.351562, 27.994401 ], [ 91.406250, 27.994401 ], [ 91.406250, 27.839076 ], [ 91.757812, 27.839076 ], [ 91.757812, 27.683528 ], [ 91.933594, 27.683528 ], [ 91.933594, 27.527758 ], [ 92.109375, 27.527758 ], [ 92.109375, 26.902477 ], [ 91.757812, 26.902477 ], [ 91.757812, 26.745610 ], [ 90.703125, 26.745610 ], [ 90.703125, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 89.121094, 26.902477 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.839076 ], [ 89.472656, 27.839076 ], [ 89.472656, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 28.149503 ], [ 90.351562, 28.149503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.175781, 28.304381 ], [ 90.175781, 28.149503 ], [ 91.230469, 28.149503 ], [ 91.230469, 27.994401 ], [ 91.406250, 27.994401 ], [ 91.406250, 27.839076 ], [ 91.582031, 27.839076 ], [ 91.582031, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.527758 ], [ 91.933594, 27.527758 ], [ 91.933594, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 89.121094, 26.902477 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 28.149503 ], [ 89.824219, 28.149503 ], [ 89.824219, 28.304381 ], [ 90.175781, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.824219, 25.958045 ], [ 89.824219, 25.641526 ], [ 90.000000, 25.641526 ], [ 90.000000, 25.324167 ], [ 90.351562, 25.324167 ], [ 90.351562, 25.165173 ], [ 91.933594, 25.165173 ], [ 91.933594, 25.005973 ], [ 92.460938, 25.005973 ], [ 92.460938, 24.846565 ], [ 92.285156, 24.846565 ], [ 92.285156, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 24.206890 ], [ 91.757812, 24.206890 ], [ 91.757812, 24.046464 ], [ 91.406250, 24.046464 ], [ 91.406250, 23.725012 ], [ 91.230469, 23.725012 ], [ 91.230469, 23.402765 ], [ 91.406250, 23.402765 ], [ 91.406250, 23.241346 ], [ 91.582031, 23.241346 ], [ 91.582031, 22.917923 ], [ 91.757812, 22.917923 ], [ 91.757812, 23.241346 ], [ 91.933594, 23.241346 ], [ 91.933594, 23.563987 ], [ 92.109375, 23.563987 ], [ 92.109375, 23.241346 ], [ 92.285156, 23.241346 ], [ 92.285156, 22.755921 ], [ 92.460938, 22.755921 ], [ 92.460938, 22.268764 ], [ 92.636719, 22.268764 ], [ 92.636719, 21.289374 ], [ 92.285156, 21.289374 ], [ 92.285156, 20.797201 ], [ 92.109375, 20.797201 ], [ 92.109375, 21.779905 ], [ 91.933594, 21.779905 ], [ 91.933594, 21.943046 ], [ 91.757812, 21.943046 ], [ 91.757812, 22.268764 ], [ 91.582031, 22.268764 ], [ 91.582031, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.755921 ], [ 90.527344, 22.755921 ], [ 90.527344, 22.105999 ], [ 90.351562, 22.105999 ], [ 90.351562, 21.779905 ], [ 90.175781, 21.779905 ], [ 90.175781, 21.943046 ], [ 89.648438, 21.943046 ], [ 89.648438, 21.779905 ], [ 89.472656, 21.779905 ], [ 89.472656, 21.943046 ], [ 89.121094, 21.943046 ], [ 89.121094, 25.958045 ], [ 89.824219, 25.958045 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.824219, 26.115986 ], [ 89.824219, 25.324167 ], [ 90.175781, 25.324167 ], [ 90.175781, 25.165173 ], [ 91.933594, 25.165173 ], [ 91.933594, 25.005973 ], [ 92.285156, 25.005973 ], [ 92.285156, 24.846565 ], [ 92.109375, 24.846565 ], [ 92.109375, 24.527135 ], [ 91.933594, 24.527135 ], [ 91.933594, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 24.046464 ], [ 91.230469, 24.046464 ], [ 91.230469, 23.725012 ], [ 91.054688, 23.725012 ], [ 91.054688, 23.402765 ], [ 91.230469, 23.402765 ], [ 91.230469, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.079732 ], [ 91.582031, 23.079732 ], [ 91.582031, 23.402765 ], [ 91.757812, 23.402765 ], [ 91.757812, 23.725012 ], [ 92.109375, 23.725012 ], [ 92.109375, 23.402765 ], [ 92.285156, 23.402765 ], [ 92.285156, 22.917923 ], [ 92.460938, 22.917923 ], [ 92.460938, 22.268764 ], [ 92.636719, 22.268764 ], [ 92.636719, 21.453069 ], [ 92.285156, 21.453069 ], [ 92.285156, 20.797201 ], [ 92.109375, 20.797201 ], [ 92.109375, 21.125498 ], [ 91.933594, 21.125498 ], [ 91.933594, 21.943046 ], [ 91.757812, 21.943046 ], [ 91.757812, 22.431340 ], [ 91.582031, 22.431340 ], [ 91.582031, 22.755921 ], [ 91.406250, 22.755921 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.527344, 22.593726 ], [ 90.527344, 22.268764 ], [ 90.351562, 22.268764 ], [ 90.351562, 21.943046 ], [ 89.296875, 21.943046 ], [ 89.296875, 22.105999 ], [ 89.121094, 22.105999 ], [ 89.121094, 26.115986 ], [ 89.824219, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 20.138470 ], [ 110.742188, 19.973349 ], [ 110.917969, 19.973349 ], [ 110.917969, 19.642588 ], [ 111.093750, 19.642588 ], [ 111.093750, 19.476950 ], [ 110.742188, 19.476950 ], [ 110.742188, 19.311143 ], [ 110.566406, 19.311143 ], [ 110.566406, 18.979026 ], [ 110.390625, 18.979026 ], [ 110.390625, 18.479609 ], [ 110.039062, 18.479609 ], [ 110.039062, 18.312811 ], [ 109.687500, 18.312811 ], [ 109.687500, 18.145852 ], [ 109.160156, 18.145852 ], [ 109.160156, 18.312811 ], [ 108.808594, 18.312811 ], [ 108.808594, 18.479609 ], [ 108.632812, 18.479609 ], [ 108.632812, 19.311143 ], [ 108.808594, 19.311143 ], [ 108.808594, 19.476950 ], [ 108.984375, 19.476950 ], [ 108.984375, 19.642588 ], [ 109.160156, 19.642588 ], [ 109.160156, 19.808054 ], [ 109.511719, 19.808054 ], [ 109.511719, 19.973349 ], [ 110.039062, 19.973349 ], [ 110.039062, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 126.738281, 41.640078 ], [ 126.738281, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.376809 ], [ 126.386719, 41.376809 ], [ 126.386719, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.713956 ], [ 125.332031, 40.713956 ], [ 125.332031, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.313043 ], [ 124.804688, 40.313043 ], [ 124.804688, 40.178873 ], [ 124.628906, 40.178873 ], [ 124.628906, 40.044438 ], [ 124.453125, 40.044438 ], [ 124.453125, 39.909736 ], [ 124.101562, 39.909736 ], [ 124.101562, 39.774769 ], [ 123.398438, 39.774769 ], [ 123.398438, 39.639538 ], [ 122.871094, 39.639538 ], [ 122.871094, 39.504041 ], [ 122.695312, 39.504041 ], [ 122.695312, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 39.232253 ], [ 121.992188, 39.232253 ], [ 121.992188, 39.095963 ], [ 121.464844, 39.095963 ], [ 121.464844, 39.232253 ], [ 121.640625, 39.232253 ], [ 121.640625, 39.368279 ], [ 121.464844, 39.368279 ], [ 121.464844, 39.639538 ], [ 121.289062, 39.639538 ], [ 121.289062, 39.774769 ], [ 121.464844, 39.774769 ], [ 121.464844, 39.909736 ], [ 121.640625, 39.909736 ], [ 121.640625, 40.044438 ], [ 121.816406, 40.044438 ], [ 121.816406, 40.178873 ], [ 121.992188, 40.178873 ], [ 121.992188, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.289062, 40.847060 ], [ 121.289062, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.580585 ], [ 120.761719, 40.580585 ], [ 120.761719, 40.446947 ], [ 120.585938, 40.446947 ], [ 120.585938, 40.313043 ], [ 120.410156, 40.313043 ], [ 120.410156, 40.178873 ], [ 120.058594, 40.178873 ], [ 120.058594, 40.044438 ], [ 119.882812, 40.044438 ], [ 119.882812, 39.909736 ], [ 119.707031, 39.909736 ], [ 119.707031, 39.774769 ], [ 119.531250, 39.774769 ], [ 119.531250, 39.639538 ], [ 119.355469, 39.639538 ], [ 119.355469, 39.368279 ], [ 119.179688, 39.368279 ], [ 119.179688, 39.232253 ], [ 118.125000, 39.232253 ], [ 118.125000, 39.095963 ], [ 117.949219, 39.095963 ], [ 117.949219, 38.959409 ], [ 117.773438, 38.959409 ], [ 117.773438, 38.685510 ], [ 117.597656, 38.685510 ], [ 117.597656, 38.548165 ], [ 117.773438, 38.548165 ], [ 117.773438, 38.272689 ], [ 117.949219, 38.272689 ], [ 117.949219, 37.996163 ], [ 118.300781, 37.996163 ], [ 118.300781, 37.857507 ], [ 118.828125, 37.857507 ], [ 118.828125, 37.439974 ], [ 119.003906, 37.439974 ], [ 119.003906, 37.300275 ], [ 119.355469, 37.300275 ], [ 119.355469, 37.160317 ], [ 119.882812, 37.160317 ], [ 119.882812, 37.300275 ], [ 120.058594, 37.300275 ], [ 120.058594, 37.439974 ], [ 120.410156, 37.439974 ], [ 120.410156, 37.579413 ], [ 120.585938, 37.579413 ], [ 120.585938, 37.718590 ], [ 121.113281, 37.718590 ], [ 121.113281, 37.579413 ], [ 121.464844, 37.579413 ], [ 121.464844, 37.439974 ], [ 122.343750, 37.439974 ], [ 122.343750, 37.160317 ], [ 122.519531, 37.160317 ], [ 122.519531, 36.879621 ], [ 122.343750, 36.879621 ], [ 122.343750, 36.738884 ], [ 121.640625, 36.738884 ], [ 121.640625, 36.597889 ], [ 121.113281, 36.597889 ], [ 121.113281, 36.456636 ], [ 120.937500, 36.456636 ], [ 120.937500, 36.315125 ], [ 120.761719, 36.315125 ], [ 120.761719, 36.173357 ], [ 120.585938, 36.173357 ], [ 120.585938, 36.031332 ], [ 120.410156, 36.031332 ], [ 120.410156, 35.889050 ], [ 120.058594, 35.889050 ], [ 120.058594, 35.746512 ], [ 119.882812, 35.746512 ], [ 119.882812, 35.603719 ], [ 119.707031, 35.603719 ], [ 119.707031, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 35.173808 ], [ 119.355469, 35.173808 ], [ 119.355469, 34.885931 ], [ 119.179688, 34.885931 ], [ 119.179688, 34.741612 ], [ 119.531250, 34.741612 ], [ 119.531250, 34.597042 ], [ 119.707031, 34.597042 ], [ 119.707031, 34.452218 ], [ 120.058594, 34.452218 ], [ 120.058594, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 34.016242 ], [ 120.410156, 34.016242 ], [ 120.410156, 33.578015 ], [ 120.585938, 33.578015 ], [ 120.585938, 33.284620 ], [ 120.761719, 33.284620 ], [ 120.761719, 32.990236 ], [ 120.937500, 32.990236 ], [ 120.937500, 32.694866 ], [ 121.113281, 32.694866 ], [ 121.113281, 32.398516 ], [ 121.289062, 32.398516 ], [ 121.289062, 32.249974 ], [ 121.464844, 32.249974 ], [ 121.464844, 32.101190 ], [ 121.640625, 32.101190 ], [ 121.640625, 31.802893 ], [ 121.816406, 31.802893 ], [ 121.816406, 31.653381 ], [ 121.992188, 31.653381 ], [ 121.992188, 31.203405 ], [ 121.816406, 31.203405 ], [ 121.816406, 30.902225 ], [ 121.640625, 30.902225 ], [ 121.640625, 30.751278 ], [ 121.289062, 30.751278 ], [ 121.289062, 30.448674 ], [ 121.464844, 30.448674 ], [ 121.464844, 29.993002 ], [ 121.816406, 29.993002 ], [ 121.816406, 29.840644 ], [ 122.167969, 29.840644 ], [ 122.167969, 29.382175 ], [ 121.992188, 29.382175 ], [ 121.992188, 28.767659 ], [ 121.816406, 28.767659 ], [ 121.816406, 28.304381 ], [ 121.640625, 28.304381 ], [ 121.640625, 28.149503 ], [ 121.113281, 28.149503 ], [ 121.113281, 27.994401 ], [ 120.937500, 27.994401 ], [ 120.937500, 27.683528 ], [ 120.761719, 27.683528 ], [ 120.761719, 27.371767 ], [ 120.585938, 27.371767 ], [ 120.585938, 27.059126 ], [ 120.410156, 27.059126 ], [ 120.410156, 26.902477 ], [ 120.234375, 26.902477 ], [ 120.234375, 26.588527 ], [ 120.058594, 26.588527 ], [ 120.058594, 26.431228 ], [ 119.882812, 26.431228 ], [ 119.882812, 26.115986 ], [ 119.707031, 26.115986 ], [ 119.707031, 25.799891 ], [ 119.531250, 25.799891 ], [ 119.531250, 25.641526 ], [ 119.355469, 25.641526 ], [ 119.355469, 25.324167 ], [ 119.179688, 25.324167 ], [ 119.179688, 25.165173 ], [ 119.003906, 25.165173 ], [ 119.003906, 24.846565 ], [ 118.828125, 24.846565 ], [ 118.828125, 24.527135 ], [ 118.652344, 24.527135 ], [ 118.652344, 24.367114 ], [ 118.476562, 24.367114 ], [ 118.476562, 24.206890 ], [ 118.125000, 24.206890 ], [ 118.125000, 24.046464 ], [ 117.949219, 24.046464 ], [ 117.949219, 23.885838 ], [ 117.773438, 23.885838 ], [ 117.773438, 23.725012 ], [ 117.421875, 23.725012 ], [ 117.421875, 23.563987 ], [ 117.246094, 23.563987 ], [ 117.246094, 23.402765 ], [ 116.894531, 23.402765 ], [ 116.894531, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 23.079732 ], [ 116.367188, 23.079732 ], [ 116.367188, 22.917923 ], [ 116.015625, 22.917923 ], [ 116.015625, 22.755921 ], [ 115.488281, 22.755921 ], [ 115.488281, 22.593726 ], [ 114.785156, 22.593726 ], [ 114.785156, 22.431340 ], [ 114.433594, 22.431340 ], [ 114.433594, 22.268764 ], [ 113.906250, 22.268764 ], [ 113.906250, 22.431340 ], [ 113.554688, 22.431340 ], [ 113.554688, 22.268764 ], [ 113.378906, 22.268764 ], [ 113.378906, 22.105999 ], [ 113.027344, 22.105999 ], [ 113.027344, 21.943046 ], [ 112.675781, 21.943046 ], [ 112.675781, 21.779905 ], [ 112.148438, 21.779905 ], [ 112.148438, 21.616579 ], [ 111.445312, 21.616579 ], [ 111.445312, 21.453069 ], [ 110.742188, 21.453069 ], [ 110.742188, 21.125498 ], [ 110.566406, 21.125498 ], [ 110.566406, 20.468189 ], [ 110.390625, 20.468189 ], [ 110.390625, 20.303418 ], [ 109.863281, 20.303418 ], [ 109.863281, 20.632784 ], [ 109.687500, 20.632784 ], [ 109.687500, 21.125498 ], [ 109.863281, 21.125498 ], [ 109.863281, 21.453069 ], [ 109.335938, 21.453069 ], [ 109.335938, 21.616579 ], [ 108.632812, 21.616579 ], [ 108.632812, 21.779905 ], [ 108.457031, 21.779905 ], [ 108.457031, 21.616579 ], [ 107.402344, 21.616579 ], [ 107.402344, 21.779905 ], [ 106.875000, 21.779905 ], [ 106.875000, 21.943046 ], [ 106.699219, 21.943046 ], [ 106.699219, 22.105999 ], [ 106.523438, 22.105999 ], [ 106.523438, 22.431340 ], [ 106.699219, 22.431340 ], [ 106.699219, 22.755921 ], [ 106.171875, 22.755921 ], [ 106.171875, 22.917923 ], [ 105.644531, 22.917923 ], [ 105.644531, 23.079732 ], [ 105.468750, 23.079732 ], [ 105.468750, 23.241346 ], [ 105.117188, 23.241346 ], [ 105.117188, 23.079732 ], [ 104.765625, 23.079732 ], [ 104.765625, 22.917923 ], [ 104.589844, 22.917923 ], [ 104.589844, 22.755921 ], [ 102.656250, 22.755921 ], [ 102.656250, 22.593726 ], [ 102.304688, 22.593726 ], [ 102.304688, 22.431340 ], [ 101.953125, 22.431340 ], [ 101.953125, 22.268764 ], [ 101.601562, 22.268764 ], [ 101.601562, 21.616579 ], [ 101.777344, 21.616579 ], [ 101.777344, 21.125498 ], [ 101.250000, 21.125498 ], [ 101.250000, 21.616579 ], [ 101.074219, 21.616579 ], [ 101.074219, 21.779905 ], [ 100.898438, 21.779905 ], [ 100.898438, 21.616579 ], [ 100.019531, 21.616579 ], [ 100.019531, 21.779905 ], [ 99.667969, 21.779905 ], [ 99.667969, 21.943046 ], [ 99.316406, 21.943046 ], [ 99.316406, 22.431340 ], [ 99.492188, 22.431340 ], [ 99.492188, 22.917923 ], [ 99.140625, 22.917923 ], [ 99.140625, 23.079732 ], [ 98.964844, 23.079732 ], [ 98.964844, 23.241346 ], [ 98.789062, 23.241346 ], [ 98.789062, 23.725012 ], [ 98.613281, 23.725012 ], [ 98.613281, 24.046464 ], [ 98.261719, 24.046464 ], [ 98.261719, 23.885838 ], [ 97.558594, 23.885838 ], [ 97.558594, 24.367114 ], [ 97.734375, 24.367114 ], [ 97.734375, 25.005973 ], [ 97.910156, 25.005973 ], [ 97.910156, 25.165173 ], [ 98.085938, 25.165173 ], [ 98.085938, 25.482951 ], [ 98.261719, 25.482951 ], [ 98.261719, 25.641526 ], [ 98.437500, 25.641526 ], [ 98.437500, 25.799891 ], [ 98.613281, 25.799891 ], [ 98.613281, 26.273714 ], [ 98.789062, 26.273714 ], [ 98.789062, 27.059126 ], [ 98.613281, 27.059126 ], [ 98.613281, 27.527758 ], [ 98.261719, 27.527758 ], [ 98.261719, 27.839076 ], [ 98.085938, 27.839076 ], [ 98.085938, 28.149503 ], [ 97.910156, 28.149503 ], [ 97.910156, 28.304381 ], [ 96.679688, 28.304381 ], [ 96.679688, 28.459033 ], [ 96.328125, 28.459033 ], [ 96.328125, 28.613459 ], [ 96.503906, 28.613459 ], [ 96.503906, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 29.228890 ], [ 95.800781, 29.228890 ], [ 95.800781, 29.075375 ], [ 94.921875, 29.075375 ], [ 94.921875, 29.228890 ], [ 94.570312, 29.228890 ], [ 94.570312, 29.075375 ], [ 94.218750, 29.075375 ], [ 94.218750, 28.921631 ], [ 93.867188, 28.921631 ], [ 93.867188, 28.767659 ], [ 93.515625, 28.767659 ], [ 93.515625, 28.613459 ], [ 93.339844, 28.613459 ], [ 93.339844, 28.459033 ], [ 93.164062, 28.459033 ], [ 93.164062, 28.304381 ], [ 92.988281, 28.304381 ], [ 92.988281, 28.149503 ], [ 92.812500, 28.149503 ], [ 92.812500, 27.994401 ], [ 92.636719, 27.994401 ], [ 92.636719, 27.839076 ], [ 91.406250, 27.839076 ], [ 91.406250, 27.994401 ], [ 90.351562, 27.994401 ], [ 90.351562, 28.149503 ], [ 89.648438, 28.149503 ], [ 89.648438, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 41.640078 ], [ 126.738281, 41.640078 ] ] ], [ [ [ 128.144531, 41.640078 ], [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 128.144531, 41.640078 ] ] ], [ [ [ 121.464844, 39.095963 ], [ 121.464844, 38.959409 ], [ 121.289062, 38.959409 ], [ 121.289062, 39.095963 ], [ 121.464844, 39.095963 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 20.138470 ], [ 110.742188, 19.973349 ], [ 110.917969, 19.973349 ], [ 110.917969, 19.642588 ], [ 110.742188, 19.642588 ], [ 110.742188, 19.311143 ], [ 110.566406, 19.311143 ], [ 110.566406, 19.145168 ], [ 110.390625, 19.145168 ], [ 110.390625, 18.812718 ], [ 110.214844, 18.812718 ], [ 110.214844, 18.646245 ], [ 109.863281, 18.646245 ], [ 109.863281, 18.479609 ], [ 109.511719, 18.479609 ], [ 109.511719, 18.312811 ], [ 108.984375, 18.312811 ], [ 108.984375, 18.479609 ], [ 108.632812, 18.479609 ], [ 108.632812, 18.979026 ], [ 108.457031, 18.979026 ], [ 108.457031, 19.476950 ], [ 108.632812, 19.476950 ], [ 108.632812, 19.642588 ], [ 108.808594, 19.642588 ], [ 108.808594, 19.808054 ], [ 108.984375, 19.808054 ], [ 108.984375, 19.973349 ], [ 109.687500, 19.973349 ], [ 109.687500, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 126.562500, 41.640078 ], [ 126.562500, 41.508577 ], [ 126.386719, 41.508577 ], [ 126.386719, 41.376809 ], [ 126.210938, 41.376809 ], [ 126.210938, 41.112469 ], [ 126.035156, 41.112469 ], [ 126.035156, 40.979898 ], [ 125.683594, 40.979898 ], [ 125.683594, 40.847060 ], [ 125.507812, 40.847060 ], [ 125.507812, 40.713956 ], [ 125.156250, 40.713956 ], [ 125.156250, 40.580585 ], [ 124.980469, 40.580585 ], [ 124.980469, 40.446947 ], [ 124.804688, 40.446947 ], [ 124.804688, 40.313043 ], [ 124.453125, 40.313043 ], [ 124.453125, 40.178873 ], [ 124.277344, 40.178873 ], [ 124.277344, 40.044438 ], [ 123.925781, 40.044438 ], [ 123.925781, 39.909736 ], [ 123.574219, 39.909736 ], [ 123.574219, 39.774769 ], [ 123.046875, 39.774769 ], [ 123.046875, 39.639538 ], [ 122.695312, 39.639538 ], [ 122.695312, 39.504041 ], [ 122.519531, 39.504041 ], [ 122.519531, 39.368279 ], [ 122.167969, 39.368279 ], [ 122.167969, 39.232253 ], [ 121.816406, 39.232253 ], [ 121.816406, 39.095963 ], [ 121.289062, 39.095963 ], [ 121.289062, 39.232253 ], [ 121.464844, 39.232253 ], [ 121.464844, 39.504041 ], [ 121.289062, 39.504041 ], [ 121.289062, 39.774769 ], [ 121.464844, 39.774769 ], [ 121.464844, 39.909736 ], [ 121.640625, 39.909736 ], [ 121.640625, 40.044438 ], [ 121.816406, 40.044438 ], [ 121.816406, 40.178873 ], [ 121.992188, 40.178873 ], [ 121.992188, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.640625, 40.847060 ], [ 121.640625, 40.979898 ], [ 121.464844, 40.979898 ], [ 121.464844, 40.847060 ], [ 121.113281, 40.847060 ], [ 121.113281, 40.713956 ], [ 120.761719, 40.713956 ], [ 120.761719, 40.580585 ], [ 120.585938, 40.580585 ], [ 120.585938, 40.446947 ], [ 120.410156, 40.446947 ], [ 120.410156, 40.313043 ], [ 120.058594, 40.313043 ], [ 120.058594, 40.178873 ], [ 119.882812, 40.178873 ], [ 119.882812, 40.044438 ], [ 119.707031, 40.044438 ], [ 119.707031, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.774769 ], [ 119.355469, 39.774769 ], [ 119.355469, 39.639538 ], [ 119.179688, 39.639538 ], [ 119.179688, 39.368279 ], [ 118.652344, 39.368279 ], [ 118.652344, 39.232253 ], [ 117.949219, 39.232253 ], [ 117.949219, 39.095963 ], [ 117.773438, 39.095963 ], [ 117.773438, 38.959409 ], [ 117.597656, 38.959409 ], [ 117.597656, 38.822591 ], [ 117.421875, 38.822591 ], [ 117.421875, 38.685510 ], [ 117.597656, 38.685510 ], [ 117.597656, 38.410558 ], [ 117.773438, 38.410558 ], [ 117.773438, 38.134557 ], [ 118.300781, 38.134557 ], [ 118.300781, 37.996163 ], [ 118.828125, 37.996163 ], [ 118.828125, 37.439974 ], [ 119.003906, 37.439974 ], [ 119.003906, 37.300275 ], [ 119.355469, 37.300275 ], [ 119.355469, 37.160317 ], [ 119.707031, 37.160317 ], [ 119.707031, 37.300275 ], [ 119.882812, 37.300275 ], [ 119.882812, 37.439974 ], [ 120.058594, 37.439974 ], [ 120.058594, 37.579413 ], [ 120.410156, 37.579413 ], [ 120.410156, 37.718590 ], [ 120.585938, 37.718590 ], [ 120.585938, 37.857507 ], [ 121.113281, 37.857507 ], [ 121.113281, 37.718590 ], [ 121.464844, 37.718590 ], [ 121.464844, 37.579413 ], [ 122.343750, 37.579413 ], [ 122.343750, 37.300275 ], [ 122.519531, 37.300275 ], [ 122.519531, 37.020098 ], [ 122.167969, 37.020098 ], [ 122.167969, 36.879621 ], [ 121.464844, 36.879621 ], [ 121.464844, 36.738884 ], [ 120.937500, 36.738884 ], [ 120.937500, 36.597889 ], [ 120.761719, 36.597889 ], [ 120.761719, 36.315125 ], [ 120.585938, 36.315125 ], [ 120.585938, 36.031332 ], [ 120.234375, 36.031332 ], [ 120.234375, 35.889050 ], [ 119.882812, 35.889050 ], [ 119.882812, 35.746512 ], [ 119.531250, 35.746512 ], [ 119.531250, 35.603719 ], [ 119.355469, 35.603719 ], [ 119.355469, 35.317366 ], [ 119.179688, 35.317366 ], [ 119.179688, 35.029996 ], [ 119.003906, 35.029996 ], [ 119.003906, 34.885931 ], [ 119.355469, 34.885931 ], [ 119.355469, 34.741612 ], [ 119.531250, 34.741612 ], [ 119.531250, 34.597042 ], [ 119.882812, 34.597042 ], [ 119.882812, 34.452218 ], [ 120.058594, 34.452218 ], [ 120.058594, 34.161818 ], [ 120.234375, 34.161818 ], [ 120.234375, 33.870416 ], [ 120.410156, 33.870416 ], [ 120.410156, 33.578015 ], [ 120.585938, 33.578015 ], [ 120.585938, 33.284620 ], [ 120.761719, 33.284620 ], [ 120.761719, 32.990236 ], [ 120.937500, 32.990236 ], [ 120.937500, 32.694866 ], [ 121.113281, 32.694866 ], [ 121.113281, 32.398516 ], [ 121.289062, 32.398516 ], [ 121.289062, 32.249974 ], [ 121.464844, 32.249974 ], [ 121.464844, 31.952162 ], [ 121.640625, 31.952162 ], [ 121.640625, 31.802893 ], [ 121.816406, 31.802893 ], [ 121.816406, 30.902225 ], [ 121.464844, 30.902225 ], [ 121.464844, 30.751278 ], [ 121.113281, 30.751278 ], [ 121.113281, 30.600094 ], [ 121.289062, 30.600094 ], [ 121.289062, 30.297018 ], [ 121.464844, 30.297018 ], [ 121.464844, 29.993002 ], [ 121.816406, 29.993002 ], [ 121.816406, 29.840644 ], [ 121.992188, 29.840644 ], [ 121.992188, 29.382175 ], [ 121.816406, 29.382175 ], [ 121.816406, 28.613459 ], [ 121.640625, 28.613459 ], [ 121.640625, 28.304381 ], [ 121.464844, 28.304381 ], [ 121.464844, 28.149503 ], [ 121.113281, 28.149503 ], [ 121.113281, 27.994401 ], [ 120.937500, 27.994401 ], [ 120.937500, 27.683528 ], [ 120.761719, 27.683528 ], [ 120.761719, 27.527758 ], [ 120.585938, 27.527758 ], [ 120.585938, 27.371767 ], [ 120.410156, 27.371767 ], [ 120.410156, 27.059126 ], [ 120.234375, 27.059126 ], [ 120.234375, 26.902477 ], [ 120.058594, 26.902477 ], [ 120.058594, 26.588527 ], [ 119.882812, 26.588527 ], [ 119.882812, 26.273714 ], [ 119.707031, 26.273714 ], [ 119.707031, 25.958045 ], [ 119.531250, 25.958045 ], [ 119.531250, 25.641526 ], [ 119.355469, 25.641526 ], [ 119.355469, 25.324167 ], [ 119.179688, 25.324167 ], [ 119.179688, 25.165173 ], [ 119.003906, 25.165173 ], [ 119.003906, 25.005973 ], [ 118.828125, 25.005973 ], [ 118.828125, 24.686952 ], [ 118.652344, 24.686952 ], [ 118.652344, 24.527135 ], [ 118.476562, 24.527135 ], [ 118.476562, 24.367114 ], [ 118.125000, 24.367114 ], [ 118.125000, 24.206890 ], [ 117.949219, 24.206890 ], [ 117.949219, 24.046464 ], [ 117.773438, 24.046464 ], [ 117.773438, 23.885838 ], [ 117.421875, 23.885838 ], [ 117.421875, 23.725012 ], [ 117.246094, 23.725012 ], [ 117.246094, 23.563987 ], [ 116.894531, 23.563987 ], [ 116.894531, 23.402765 ], [ 116.718750, 23.402765 ], [ 116.718750, 23.241346 ], [ 116.367188, 23.241346 ], [ 116.367188, 23.079732 ], [ 116.015625, 23.079732 ], [ 116.015625, 22.917923 ], [ 115.312500, 22.917923 ], [ 115.312500, 22.755921 ], [ 114.609375, 22.755921 ], [ 114.609375, 22.593726 ], [ 114.433594, 22.593726 ], [ 114.433594, 22.431340 ], [ 114.257812, 22.431340 ], [ 114.257812, 22.268764 ], [ 113.906250, 22.268764 ], [ 113.906250, 22.431340 ], [ 113.554688, 22.431340 ], [ 113.554688, 22.268764 ], [ 113.378906, 22.268764 ], [ 113.378906, 22.105999 ], [ 113.027344, 22.105999 ], [ 113.027344, 21.943046 ], [ 112.675781, 21.943046 ], [ 112.675781, 21.779905 ], [ 112.148438, 21.779905 ], [ 112.148438, 21.616579 ], [ 111.445312, 21.616579 ], [ 111.445312, 21.453069 ], [ 110.742188, 21.453069 ], [ 110.742188, 21.125498 ], [ 110.566406, 21.125498 ], [ 110.566406, 20.632784 ], [ 110.390625, 20.632784 ], [ 110.390625, 20.468189 ], [ 110.214844, 20.468189 ], [ 110.214844, 20.303418 ], [ 109.863281, 20.303418 ], [ 109.863281, 20.468189 ], [ 109.687500, 20.468189 ], [ 109.687500, 20.797201 ], [ 109.511719, 20.797201 ], [ 109.511719, 21.125498 ], [ 109.687500, 21.125498 ], [ 109.687500, 21.289374 ], [ 109.863281, 21.289374 ], [ 109.863281, 21.453069 ], [ 109.335938, 21.453069 ], [ 109.335938, 21.616579 ], [ 108.632812, 21.616579 ], [ 108.632812, 21.779905 ], [ 108.281250, 21.779905 ], [ 108.281250, 21.616579 ], [ 107.578125, 21.616579 ], [ 107.578125, 21.779905 ], [ 107.050781, 21.779905 ], [ 107.050781, 21.943046 ], [ 106.699219, 21.943046 ], [ 106.699219, 22.105999 ], [ 106.523438, 22.105999 ], [ 106.523438, 22.593726 ], [ 106.699219, 22.593726 ], [ 106.699219, 22.917923 ], [ 105.996094, 22.917923 ], [ 105.996094, 23.079732 ], [ 105.468750, 23.079732 ], [ 105.468750, 23.241346 ], [ 104.941406, 23.241346 ], [ 104.941406, 23.079732 ], [ 104.589844, 23.079732 ], [ 104.589844, 22.917923 ], [ 104.062500, 22.917923 ], [ 104.062500, 22.755921 ], [ 102.480469, 22.755921 ], [ 102.480469, 22.593726 ], [ 101.953125, 22.593726 ], [ 101.953125, 22.431340 ], [ 101.601562, 22.431340 ], [ 101.601562, 21.779905 ], [ 101.777344, 21.779905 ], [ 101.777344, 21.289374 ], [ 101.074219, 21.289374 ], [ 101.074219, 21.779905 ], [ 100.722656, 21.779905 ], [ 100.722656, 21.616579 ], [ 100.019531, 21.616579 ], [ 100.019531, 21.779905 ], [ 99.667969, 21.779905 ], [ 99.667969, 21.943046 ], [ 99.316406, 21.943046 ], [ 99.316406, 22.105999 ], [ 99.140625, 22.105999 ], [ 99.140625, 22.431340 ], [ 99.316406, 22.431340 ], [ 99.316406, 22.755921 ], [ 99.492188, 22.755921 ], [ 99.492188, 23.079732 ], [ 98.964844, 23.079732 ], [ 98.964844, 23.241346 ], [ 98.789062, 23.241346 ], [ 98.789062, 23.725012 ], [ 98.613281, 23.725012 ], [ 98.613281, 24.206890 ], [ 98.261719, 24.206890 ], [ 98.261719, 24.046464 ], [ 97.558594, 24.046464 ], [ 97.558594, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 25.324167 ], [ 97.910156, 25.324167 ], [ 97.910156, 25.482951 ], [ 98.261719, 25.482951 ], [ 98.261719, 25.641526 ], [ 98.437500, 25.641526 ], [ 98.437500, 25.799891 ], [ 98.613281, 25.799891 ], [ 98.613281, 27.527758 ], [ 98.437500, 27.527758 ], [ 98.437500, 27.683528 ], [ 98.085938, 27.683528 ], [ 98.085938, 28.149503 ], [ 97.910156, 28.149503 ], [ 97.910156, 28.459033 ], [ 97.734375, 28.459033 ], [ 97.734375, 28.304381 ], [ 96.503906, 28.304381 ], [ 96.503906, 28.459033 ], [ 96.328125, 28.459033 ], [ 96.328125, 28.767659 ], [ 96.503906, 28.767659 ], [ 96.503906, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 29.228890 ], [ 96.152344, 29.228890 ], [ 96.152344, 29.382175 ], [ 95.800781, 29.382175 ], [ 95.800781, 29.228890 ], [ 95.449219, 29.228890 ], [ 95.449219, 29.075375 ], [ 94.921875, 29.075375 ], [ 94.921875, 29.228890 ], [ 94.570312, 29.228890 ], [ 94.570312, 29.382175 ], [ 94.394531, 29.382175 ], [ 94.394531, 29.228890 ], [ 94.042969, 29.228890 ], [ 94.042969, 29.075375 ], [ 93.867188, 29.075375 ], [ 93.867188, 28.921631 ], [ 93.515625, 28.921631 ], [ 93.515625, 28.767659 ], [ 93.339844, 28.767659 ], [ 93.339844, 28.613459 ], [ 93.164062, 28.613459 ], [ 93.164062, 28.459033 ], [ 92.988281, 28.459033 ], [ 92.988281, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 28.149503 ], [ 92.636719, 28.149503 ], [ 92.636719, 27.994401 ], [ 92.109375, 27.994401 ], [ 92.109375, 27.839076 ], [ 91.406250, 27.839076 ], [ 91.406250, 27.994401 ], [ 91.230469, 27.994401 ], [ 91.230469, 28.149503 ], [ 90.175781, 28.149503 ], [ 90.175781, 28.304381 ], [ 89.824219, 28.304381 ], [ 89.824219, 28.149503 ], [ 89.472656, 28.149503 ], [ 89.472656, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 41.640078 ], [ 126.562500, 41.640078 ] ] ], [ [ [ 128.144531, 41.640078 ], [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 128.144531, 41.640078 ] ] ], [ [ [ 121.289062, 39.095963 ], [ 121.289062, 38.959409 ], [ 121.113281, 38.959409 ], [ 121.113281, 39.095963 ], [ 121.289062, 39.095963 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.304381 ], [ 97.910156, 28.149503 ], [ 98.085938, 28.149503 ], [ 98.085938, 27.839076 ], [ 98.261719, 27.839076 ], [ 98.261719, 27.527758 ], [ 98.613281, 27.527758 ], [ 98.613281, 27.059126 ], [ 98.789062, 27.059126 ], [ 98.789062, 26.273714 ], [ 98.613281, 26.273714 ], [ 98.613281, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 25.641526 ], [ 98.261719, 25.641526 ], [ 98.261719, 25.482951 ], [ 98.085938, 25.482951 ], [ 98.085938, 25.165173 ], [ 97.910156, 25.165173 ], [ 97.910156, 25.005973 ], [ 97.734375, 25.005973 ], [ 97.734375, 24.367114 ], [ 97.558594, 24.367114 ], [ 97.558594, 23.885838 ], [ 98.261719, 23.885838 ], [ 98.261719, 24.046464 ], [ 98.613281, 24.046464 ], [ 98.613281, 23.725012 ], [ 98.789062, 23.725012 ], [ 98.789062, 23.241346 ], [ 98.964844, 23.241346 ], [ 98.964844, 23.079732 ], [ 99.140625, 23.079732 ], [ 99.140625, 22.917923 ], [ 99.492188, 22.917923 ], [ 99.492188, 22.431340 ], [ 99.316406, 22.431340 ], [ 99.316406, 21.943046 ], [ 99.667969, 21.943046 ], [ 99.667969, 21.779905 ], [ 100.019531, 21.779905 ], [ 100.019531, 21.616579 ], [ 100.898438, 21.616579 ], [ 100.898438, 21.779905 ], [ 101.074219, 21.779905 ], [ 101.074219, 21.616579 ], [ 101.250000, 21.616579 ], [ 101.250000, 21.289374 ], [ 101.074219, 21.289374 ], [ 101.074219, 21.125498 ], [ 100.722656, 21.125498 ], [ 100.722656, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 20.797201 ], [ 100.371094, 20.797201 ], [ 100.371094, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.303418 ], [ 99.843750, 20.303418 ], [ 99.843750, 20.138470 ], [ 99.492188, 20.138470 ], [ 99.492188, 19.973349 ], [ 99.140625, 19.973349 ], [ 99.140625, 19.808054 ], [ 98.789062, 19.808054 ], [ 98.789062, 19.642588 ], [ 98.261719, 19.642588 ], [ 98.261719, 19.476950 ], [ 98.085938, 19.476950 ], [ 98.085938, 19.145168 ], [ 97.910156, 19.145168 ], [ 97.910156, 18.812718 ], [ 97.734375, 18.812718 ], [ 97.734375, 18.479609 ], [ 97.382812, 18.479609 ], [ 97.382812, 18.312811 ], [ 97.558594, 18.312811 ], [ 97.558594, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 17.644022 ], [ 97.910156, 17.644022 ], [ 97.910156, 17.476432 ], [ 98.085938, 17.476432 ], [ 98.085938, 17.140790 ], [ 98.261719, 17.140790 ], [ 98.261719, 16.804541 ], [ 98.437500, 16.804541 ], [ 98.437500, 16.636192 ], [ 98.613281, 16.636192 ], [ 98.613281, 16.467695 ], [ 98.789062, 16.467695 ], [ 98.789062, 16.130262 ], [ 98.964844, 16.130262 ], [ 98.964844, 15.792254 ], [ 98.789062, 15.792254 ], [ 98.789062, 15.453680 ], [ 98.613281, 15.453680 ], [ 98.613281, 15.114553 ], [ 98.261719, 15.114553 ], [ 98.261719, 14.774883 ], [ 98.437500, 14.774883 ], [ 98.437500, 14.434680 ], [ 98.613281, 14.434680 ], [ 98.613281, 14.264383 ], [ 98.789062, 14.264383 ], [ 98.789062, 13.923404 ], [ 98.964844, 13.923404 ], [ 98.964844, 13.752725 ], [ 99.140625, 13.752725 ], [ 99.140625, 12.554564 ], [ 99.316406, 12.554564 ], [ 99.316406, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 11.867351 ], [ 99.667969, 11.867351 ], [ 99.667969, 11.695273 ], [ 99.492188, 11.695273 ], [ 99.492188, 11.523088 ], [ 99.316406, 11.523088 ], [ 99.316406, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 11.005904 ], [ 98.964844, 11.005904 ], [ 98.964844, 10.660608 ], [ 98.789062, 10.660608 ], [ 98.789062, 10.141932 ], [ 98.613281, 10.141932 ], [ 98.613281, 10.314919 ], [ 98.437500, 10.314919 ], [ 98.437500, 10.833306 ], [ 98.613281, 10.833306 ], [ 98.613281, 11.178402 ], [ 98.789062, 11.178402 ], [ 98.789062, 11.523088 ], [ 98.613281, 11.523088 ], [ 98.613281, 11.867351 ], [ 98.437500, 11.867351 ], [ 98.437500, 13.068777 ], [ 98.261719, 13.068777 ], [ 98.261719, 13.410994 ], [ 98.085938, 13.410994 ], [ 98.085938, 13.752725 ], [ 97.910156, 13.752725 ], [ 97.910156, 14.434680 ], [ 97.734375, 14.434680 ], [ 97.734375, 15.453680 ], [ 97.558594, 15.453680 ], [ 97.558594, 16.299051 ], [ 97.382812, 16.299051 ], [ 97.382812, 16.636192 ], [ 97.207031, 16.636192 ], [ 97.207031, 16.804541 ], [ 97.031250, 16.804541 ], [ 97.031250, 16.636192 ], [ 96.679688, 16.636192 ], [ 96.679688, 16.467695 ], [ 96.503906, 16.467695 ], [ 96.503906, 16.299051 ], [ 96.152344, 16.299051 ], [ 96.152344, 16.130262 ], [ 95.976562, 16.130262 ], [ 95.976562, 15.961329 ], [ 95.625000, 15.961329 ], [ 95.625000, 15.792254 ], [ 94.394531, 15.792254 ], [ 94.394531, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 16.299051 ], [ 94.394531, 16.299051 ], [ 94.394531, 16.972741 ], [ 94.570312, 16.972741 ], [ 94.570312, 17.644022 ], [ 94.394531, 17.644022 ], [ 94.394531, 18.145852 ], [ 94.218750, 18.145852 ], [ 94.218750, 18.479609 ], [ 94.042969, 18.479609 ], [ 94.042969, 18.646245 ], [ 93.867188, 18.646245 ], [ 93.867188, 18.812718 ], [ 93.691406, 18.812718 ], [ 93.691406, 19.145168 ], [ 93.515625, 19.145168 ], [ 93.515625, 19.476950 ], [ 93.691406, 19.476950 ], [ 93.691406, 19.808054 ], [ 92.988281, 19.808054 ], [ 92.988281, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.138470 ], [ 92.636719, 20.138470 ], [ 92.636719, 20.303418 ], [ 92.460938, 20.303418 ], [ 92.460938, 20.468189 ], [ 92.285156, 20.468189 ], [ 92.285156, 21.289374 ], [ 92.636719, 21.289374 ], [ 92.636719, 22.105999 ], [ 92.988281, 22.105999 ], [ 92.988281, 22.268764 ], [ 93.164062, 22.268764 ], [ 93.164062, 22.431340 ], [ 92.988281, 22.431340 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.755921 ], [ 93.164062, 22.917923 ], [ 93.339844, 22.917923 ], [ 93.339844, 24.046464 ], [ 93.515625, 24.046464 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.206890 ], [ 94.394531, 24.206890 ], [ 94.394531, 24.527135 ], [ 94.570312, 24.527135 ], [ 94.570312, 25.165173 ], [ 94.746094, 25.165173 ], [ 94.746094, 25.482951 ], [ 94.921875, 25.482951 ], [ 94.921875, 25.799891 ], [ 95.097656, 25.799891 ], [ 95.097656, 26.588527 ], [ 95.449219, 26.588527 ], [ 95.449219, 26.745610 ], [ 95.800781, 26.745610 ], [ 95.800781, 26.902477 ], [ 96.152344, 26.902477 ], [ 96.152344, 27.059126 ], [ 96.503906, 27.059126 ], [ 96.503906, 27.215556 ], [ 96.679688, 27.215556 ], [ 96.679688, 27.059126 ], [ 97.207031, 27.059126 ], [ 97.207031, 27.371767 ], [ 97.031250, 27.371767 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.683528 ], [ 97.382812, 28.304381 ], [ 97.910156, 28.304381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.459033 ], [ 97.910156, 28.149503 ], [ 98.085938, 28.149503 ], [ 98.085938, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 27.527758 ], [ 98.613281, 27.527758 ], [ 98.613281, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 25.641526 ], [ 98.261719, 25.641526 ], [ 98.261719, 25.482951 ], [ 97.910156, 25.482951 ], [ 97.910156, 25.324167 ], [ 97.734375, 25.324167 ], [ 97.734375, 25.165173 ], [ 97.558594, 25.165173 ], [ 97.558594, 24.046464 ], [ 98.261719, 24.046464 ], [ 98.261719, 24.206890 ], [ 98.613281, 24.206890 ], [ 98.613281, 23.725012 ], [ 98.789062, 23.725012 ], [ 98.789062, 23.241346 ], [ 98.964844, 23.241346 ], [ 98.964844, 23.079732 ], [ 99.492188, 23.079732 ], [ 99.492188, 22.755921 ], [ 99.316406, 22.755921 ], [ 99.316406, 22.431340 ], [ 99.140625, 22.431340 ], [ 99.140625, 22.105999 ], [ 99.316406, 22.105999 ], [ 99.316406, 21.943046 ], [ 99.667969, 21.943046 ], [ 99.667969, 21.779905 ], [ 100.019531, 21.779905 ], [ 100.019531, 21.616579 ], [ 100.722656, 21.616579 ], [ 100.722656, 21.779905 ], [ 101.074219, 21.779905 ], [ 101.074219, 21.289374 ], [ 100.898438, 21.289374 ], [ 100.898438, 21.125498 ], [ 100.546875, 21.125498 ], [ 100.546875, 20.961440 ], [ 100.371094, 20.961440 ], [ 100.371094, 20.797201 ], [ 100.195312, 20.797201 ], [ 100.195312, 20.632784 ], [ 100.019531, 20.632784 ], [ 100.019531, 20.468189 ], [ 99.843750, 20.468189 ], [ 99.843750, 20.303418 ], [ 99.492188, 20.303418 ], [ 99.492188, 20.138470 ], [ 99.316406, 20.138470 ], [ 99.316406, 19.973349 ], [ 98.964844, 19.973349 ], [ 98.964844, 19.808054 ], [ 98.085938, 19.808054 ], [ 98.085938, 19.476950 ], [ 97.910156, 19.476950 ], [ 97.910156, 18.812718 ], [ 97.734375, 18.812718 ], [ 97.734375, 18.646245 ], [ 97.558594, 18.646245 ], [ 97.558594, 18.479609 ], [ 97.207031, 18.479609 ], [ 97.207031, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 17.978733 ], [ 97.558594, 17.978733 ], [ 97.558594, 17.644022 ], [ 97.734375, 17.644022 ], [ 97.734375, 17.476432 ], [ 97.910156, 17.476432 ], [ 97.910156, 17.308688 ], [ 98.085938, 17.308688 ], [ 98.085938, 17.140790 ], [ 98.261719, 17.140790 ], [ 98.261719, 16.972741 ], [ 98.437500, 16.972741 ], [ 98.437500, 16.804541 ], [ 98.613281, 16.804541 ], [ 98.613281, 16.467695 ], [ 98.789062, 16.467695 ], [ 98.789062, 15.961329 ], [ 98.613281, 15.961329 ], [ 98.613281, 15.623037 ], [ 98.437500, 15.623037 ], [ 98.437500, 15.284185 ], [ 98.085938, 15.284185 ], [ 98.085938, 14.944785 ], [ 98.261719, 14.944785 ], [ 98.261719, 14.604847 ], [ 98.437500, 14.604847 ], [ 98.437500, 14.434680 ], [ 98.613281, 14.434680 ], [ 98.613281, 14.093957 ], [ 98.789062, 14.093957 ], [ 98.789062, 13.923404 ], [ 98.964844, 13.923404 ], [ 98.964844, 13.581921 ], [ 99.140625, 13.581921 ], [ 99.140625, 12.554564 ], [ 99.316406, 12.554564 ], [ 99.316406, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 11.867351 ], [ 99.316406, 11.867351 ], [ 99.316406, 11.523088 ], [ 99.140625, 11.523088 ], [ 99.140625, 11.178402 ], [ 98.964844, 11.178402 ], [ 98.964844, 10.833306 ], [ 98.789062, 10.833306 ], [ 98.789062, 10.487812 ], [ 98.613281, 10.487812 ], [ 98.613281, 10.141932 ], [ 98.437500, 10.141932 ], [ 98.437500, 11.178402 ], [ 98.613281, 11.178402 ], [ 98.613281, 11.523088 ], [ 98.437500, 11.523088 ], [ 98.437500, 11.867351 ], [ 98.261719, 11.867351 ], [ 98.261719, 12.554564 ], [ 98.437500, 12.554564 ], [ 98.437500, 13.239945 ], [ 98.261719, 13.239945 ], [ 98.261719, 13.581921 ], [ 98.085938, 13.581921 ], [ 98.085938, 13.923404 ], [ 97.910156, 13.923404 ], [ 97.910156, 14.604847 ], [ 97.734375, 14.604847 ], [ 97.734375, 15.453680 ], [ 97.558594, 15.453680 ], [ 97.558594, 16.130262 ], [ 97.382812, 16.130262 ], [ 97.382812, 16.467695 ], [ 97.207031, 16.467695 ], [ 97.207031, 16.804541 ], [ 96.855469, 16.804541 ], [ 96.855469, 16.636192 ], [ 96.679688, 16.636192 ], [ 96.679688, 16.467695 ], [ 96.503906, 16.467695 ], [ 96.503906, 16.299051 ], [ 96.152344, 16.299051 ], [ 96.152344, 16.130262 ], [ 95.800781, 16.130262 ], [ 95.800781, 15.961329 ], [ 95.449219, 15.961329 ], [ 95.449219, 15.792254 ], [ 94.921875, 15.792254 ], [ 94.921875, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 16.130262 ], [ 94.042969, 16.130262 ], [ 94.042969, 16.299051 ], [ 94.218750, 16.299051 ], [ 94.218750, 16.972741 ], [ 94.394531, 16.972741 ], [ 94.394531, 17.811456 ], [ 94.218750, 17.811456 ], [ 94.218750, 18.312811 ], [ 94.042969, 18.312811 ], [ 94.042969, 18.646245 ], [ 93.867188, 18.646245 ], [ 93.867188, 18.979026 ], [ 93.691406, 18.979026 ], [ 93.691406, 19.311143 ], [ 93.515625, 19.311143 ], [ 93.515625, 19.808054 ], [ 93.164062, 19.808054 ], [ 93.164062, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.138470 ], [ 92.636719, 20.138470 ], [ 92.636719, 20.468189 ], [ 92.460938, 20.468189 ], [ 92.460938, 20.632784 ], [ 92.285156, 20.632784 ], [ 92.285156, 21.453069 ], [ 92.636719, 21.453069 ], [ 92.636719, 22.105999 ], [ 92.812500, 22.105999 ], [ 92.812500, 22.268764 ], [ 93.164062, 22.268764 ], [ 93.164062, 22.593726 ], [ 92.988281, 22.593726 ], [ 92.988281, 22.917923 ], [ 93.164062, 22.917923 ], [ 93.164062, 24.206890 ], [ 93.339844, 24.206890 ], [ 93.339844, 24.046464 ], [ 93.691406, 24.046464 ], [ 93.691406, 23.885838 ], [ 94.042969, 23.885838 ], [ 94.042969, 24.046464 ], [ 94.218750, 24.046464 ], [ 94.218750, 24.367114 ], [ 94.394531, 24.367114 ], [ 94.394531, 24.846565 ], [ 94.570312, 24.846565 ], [ 94.570312, 25.324167 ], [ 94.746094, 25.324167 ], [ 94.746094, 25.641526 ], [ 94.921875, 25.641526 ], [ 94.921875, 25.958045 ], [ 95.097656, 25.958045 ], [ 95.097656, 26.588527 ], [ 95.273438, 26.588527 ], [ 95.273438, 26.745610 ], [ 95.625000, 26.745610 ], [ 95.625000, 26.902477 ], [ 95.800781, 26.902477 ], [ 95.800781, 27.059126 ], [ 95.976562, 27.059126 ], [ 95.976562, 27.215556 ], [ 96.328125, 27.215556 ], [ 96.328125, 27.371767 ], [ 96.503906, 27.371767 ], [ 96.503906, 27.215556 ], [ 97.031250, 27.215556 ], [ 97.031250, 27.839076 ], [ 97.382812, 27.839076 ], [ 97.382812, 28.149503 ], [ 97.207031, 28.149503 ], [ 97.207031, 28.304381 ], [ 97.734375, 28.304381 ], [ 97.734375, 28.459033 ], [ 97.910156, 28.459033 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.431340 ], [ 102.128906, 22.268764 ], [ 102.304688, 22.268764 ], [ 102.304688, 22.105999 ], [ 102.480469, 22.105999 ], [ 102.480469, 21.779905 ], [ 102.656250, 21.779905 ], [ 102.656250, 21.616579 ], [ 102.832031, 21.616579 ], [ 102.832031, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.961440 ], [ 103.183594, 20.961440 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.414062, 20.468189 ], [ 104.589844, 20.468189 ], [ 104.589844, 19.973349 ], [ 104.765625, 19.973349 ], [ 104.765625, 19.808054 ], [ 104.589844, 19.808054 ], [ 104.589844, 19.642588 ], [ 104.238281, 19.642588 ], [ 104.238281, 19.476950 ], [ 104.062500, 19.476950 ], [ 104.062500, 19.311143 ], [ 103.886719, 19.311143 ], [ 103.886719, 19.145168 ], [ 104.238281, 19.145168 ], [ 104.238281, 18.979026 ], [ 104.589844, 18.979026 ], [ 104.589844, 18.812718 ], [ 104.941406, 18.812718 ], [ 104.941406, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.479609 ], [ 105.292969, 18.479609 ], [ 105.292969, 18.145852 ], [ 105.468750, 18.145852 ], [ 105.468750, 17.978733 ], [ 105.644531, 17.978733 ], [ 105.644531, 17.811456 ], [ 105.820312, 17.811456 ], [ 105.820312, 17.476432 ], [ 105.996094, 17.476432 ], [ 105.996094, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.972741 ], [ 106.347656, 16.972741 ], [ 106.347656, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.467695 ], [ 106.699219, 16.467695 ], [ 106.699219, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 16.130262 ], [ 107.050781, 16.130262 ], [ 107.050781, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.792254 ], [ 107.402344, 15.792254 ], [ 107.402344, 15.453680 ], [ 107.578125, 15.453680 ], [ 107.578125, 14.774883 ], [ 107.402344, 14.774883 ], [ 107.402344, 14.264383 ], [ 107.050781, 14.264383 ], [ 107.050781, 14.434680 ], [ 106.699219, 14.434680 ], [ 106.699219, 14.604847 ], [ 106.523438, 14.604847 ], [ 106.523438, 14.434680 ], [ 106.347656, 14.434680 ], [ 106.347656, 14.264383 ], [ 106.171875, 14.264383 ], [ 106.171875, 13.923404 ], [ 105.644531, 13.923404 ], [ 105.644531, 14.093957 ], [ 105.292969, 14.093957 ], [ 105.292969, 14.434680 ], [ 105.468750, 14.434680 ], [ 105.468750, 15.114553 ], [ 105.644531, 15.114553 ], [ 105.644531, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 15.792254 ], [ 105.292969, 15.792254 ], [ 105.292969, 15.961329 ], [ 105.117188, 15.961329 ], [ 105.117188, 16.130262 ], [ 104.941406, 16.130262 ], [ 104.941406, 16.299051 ], [ 104.765625, 16.299051 ], [ 104.765625, 17.476432 ], [ 104.589844, 17.476432 ], [ 104.589844, 17.644022 ], [ 104.414062, 17.644022 ], [ 104.414062, 17.811456 ], [ 104.238281, 17.811456 ], [ 104.238281, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.145852 ], [ 103.886719, 18.145852 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 103.183594, 18.145852 ], [ 103.007812, 18.145852 ], [ 103.007812, 17.978733 ], [ 101.777344, 17.978733 ], [ 101.777344, 17.811456 ], [ 101.601562, 17.811456 ], [ 101.601562, 17.644022 ], [ 101.250000, 17.644022 ], [ 101.250000, 17.476432 ], [ 101.074219, 17.476432 ], [ 101.074219, 18.979026 ], [ 101.250000, 18.979026 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.476950 ], [ 100.546875, 20.138470 ], [ 100.371094, 20.138470 ], [ 100.371094, 20.303418 ], [ 100.195312, 20.303418 ], [ 100.195312, 20.632784 ], [ 100.371094, 20.632784 ], [ 100.371094, 20.797201 ], [ 100.546875, 20.797201 ], [ 100.546875, 20.961440 ], [ 100.722656, 20.961440 ], [ 100.722656, 21.125498 ], [ 101.074219, 21.125498 ], [ 101.074219, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 21.125498 ], [ 101.777344, 21.125498 ], [ 101.777344, 21.616579 ], [ 101.601562, 21.616579 ], [ 101.601562, 22.268764 ], [ 101.953125, 22.268764 ], [ 101.953125, 22.431340 ], [ 102.128906, 22.431340 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.593726 ], [ 102.128906, 22.431340 ], [ 102.304688, 22.431340 ], [ 102.304688, 22.105999 ], [ 102.480469, 22.105999 ], [ 102.480469, 21.779905 ], [ 102.656250, 21.779905 ], [ 102.656250, 21.616579 ], [ 102.832031, 21.616579 ], [ 102.832031, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.961440 ], [ 103.183594, 20.961440 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.414062, 20.468189 ], [ 104.589844, 20.468189 ], [ 104.589844, 20.138470 ], [ 104.765625, 20.138470 ], [ 104.765625, 19.808054 ], [ 104.414062, 19.808054 ], [ 104.414062, 19.642588 ], [ 104.062500, 19.642588 ], [ 104.062500, 19.476950 ], [ 103.886719, 19.476950 ], [ 103.886719, 19.145168 ], [ 104.238281, 19.145168 ], [ 104.238281, 18.979026 ], [ 104.589844, 18.979026 ], [ 104.589844, 18.812718 ], [ 104.941406, 18.812718 ], [ 104.941406, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.312811 ], [ 105.292969, 18.312811 ], [ 105.292969, 18.145852 ], [ 105.468750, 18.145852 ], [ 105.468750, 17.978733 ], [ 105.644531, 17.978733 ], [ 105.644531, 17.644022 ], [ 105.820312, 17.644022 ], [ 105.820312, 17.476432 ], [ 105.996094, 17.476432 ], [ 105.996094, 17.140790 ], [ 106.171875, 17.140790 ], [ 106.171875, 16.972741 ], [ 106.347656, 16.972741 ], [ 106.347656, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.467695 ], [ 106.699219, 16.467695 ], [ 106.699219, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 16.130262 ], [ 107.050781, 16.130262 ], [ 107.050781, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.623037 ], [ 107.402344, 15.623037 ], [ 107.402344, 14.774883 ], [ 107.226562, 14.774883 ], [ 107.226562, 14.264383 ], [ 106.875000, 14.264383 ], [ 106.875000, 14.434680 ], [ 106.523438, 14.434680 ], [ 106.523438, 14.604847 ], [ 106.347656, 14.604847 ], [ 106.347656, 14.434680 ], [ 106.171875, 14.434680 ], [ 106.171875, 14.093957 ], [ 105.996094, 14.093957 ], [ 105.996094, 13.923404 ], [ 105.820312, 13.923404 ], [ 105.820312, 14.093957 ], [ 105.468750, 14.093957 ], [ 105.468750, 14.264383 ], [ 105.117188, 14.264383 ], [ 105.117188, 14.434680 ], [ 105.292969, 14.434680 ], [ 105.292969, 14.604847 ], [ 105.468750, 14.604847 ], [ 105.468750, 15.623037 ], [ 105.292969, 15.623037 ], [ 105.292969, 15.792254 ], [ 105.117188, 15.792254 ], [ 105.117188, 16.130262 ], [ 104.941406, 16.130262 ], [ 104.941406, 16.299051 ], [ 104.765625, 16.299051 ], [ 104.765625, 16.972741 ], [ 104.589844, 16.972741 ], [ 104.589844, 17.476432 ], [ 104.414062, 17.476432 ], [ 104.414062, 17.644022 ], [ 104.238281, 17.644022 ], [ 104.238281, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.145852 ], [ 103.886719, 18.145852 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 103.183594, 18.145852 ], [ 103.007812, 18.145852 ], [ 103.007812, 17.978733 ], [ 101.601562, 17.978733 ], [ 101.601562, 17.811456 ], [ 101.250000, 17.811456 ], [ 101.250000, 17.644022 ], [ 100.898438, 17.644022 ], [ 100.898438, 18.646245 ], [ 101.074219, 18.646245 ], [ 101.074219, 19.145168 ], [ 101.250000, 19.145168 ], [ 101.250000, 19.476950 ], [ 100.722656, 19.476950 ], [ 100.722656, 19.642588 ], [ 100.546875, 19.642588 ], [ 100.546875, 20.138470 ], [ 100.371094, 20.138470 ], [ 100.371094, 20.303418 ], [ 100.019531, 20.303418 ], [ 100.019531, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.797201 ], [ 100.371094, 20.797201 ], [ 100.371094, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 21.125498 ], [ 100.898438, 21.125498 ], [ 100.898438, 21.289374 ], [ 101.777344, 21.289374 ], [ 101.777344, 21.779905 ], [ 101.601562, 21.779905 ], [ 101.601562, 22.431340 ], [ 101.953125, 22.431340 ], [ 101.953125, 22.593726 ], [ 102.128906, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.371094, 20.303418 ], [ 100.371094, 20.138470 ], [ 100.546875, 20.138470 ], [ 100.546875, 19.476950 ], [ 101.250000, 19.476950 ], [ 101.250000, 18.979026 ], [ 101.074219, 18.979026 ], [ 101.074219, 17.476432 ], [ 101.250000, 17.476432 ], [ 101.250000, 17.644022 ], [ 101.601562, 17.644022 ], [ 101.601562, 17.811456 ], [ 101.777344, 17.811456 ], [ 101.777344, 17.978733 ], [ 103.007812, 17.978733 ], [ 103.007812, 18.145852 ], [ 103.183594, 18.145852 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 103.886719, 18.145852 ], [ 104.062500, 18.145852 ], [ 104.062500, 17.978733 ], [ 104.238281, 17.978733 ], [ 104.238281, 17.811456 ], [ 104.414062, 17.811456 ], [ 104.414062, 17.644022 ], [ 104.589844, 17.644022 ], [ 104.589844, 17.476432 ], [ 104.765625, 17.476432 ], [ 104.765625, 16.299051 ], [ 104.941406, 16.299051 ], [ 104.941406, 16.130262 ], [ 105.117188, 16.130262 ], [ 105.117188, 15.961329 ], [ 105.292969, 15.961329 ], [ 105.292969, 15.792254 ], [ 105.468750, 15.792254 ], [ 105.468750, 15.623037 ], [ 105.644531, 15.623037 ], [ 105.644531, 15.114553 ], [ 105.468750, 15.114553 ], [ 105.468750, 14.434680 ], [ 105.292969, 14.434680 ], [ 105.292969, 14.264383 ], [ 104.589844, 14.264383 ], [ 104.589844, 14.434680 ], [ 103.710938, 14.434680 ], [ 103.710938, 14.264383 ], [ 103.007812, 14.264383 ], [ 103.007812, 14.093957 ], [ 102.832031, 14.093957 ], [ 102.832031, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 13.581921 ], [ 102.480469, 13.581921 ], [ 102.480469, 13.410994 ], [ 102.304688, 13.410994 ], [ 102.304688, 13.068777 ], [ 102.480469, 13.068777 ], [ 102.480469, 12.382928 ], [ 102.656250, 12.382928 ], [ 102.656250, 12.211180 ], [ 102.304688, 12.211180 ], [ 102.304688, 12.382928 ], [ 101.953125, 12.382928 ], [ 101.953125, 12.554564 ], [ 101.601562, 12.554564 ], [ 101.601562, 12.726084 ], [ 101.425781, 12.726084 ], [ 101.425781, 12.554564 ], [ 100.898438, 12.554564 ], [ 100.898438, 13.410994 ], [ 100.019531, 13.410994 ], [ 100.019531, 12.039321 ], [ 99.843750, 12.039321 ], [ 99.843750, 11.523088 ], [ 99.667969, 11.523088 ], [ 99.667969, 11.005904 ], [ 99.492188, 11.005904 ], [ 99.492188, 10.487812 ], [ 99.316406, 10.487812 ], [ 99.316406, 10.141932 ], [ 99.140625, 10.141932 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 99.843750, 8.928487 ], [ 100.019531, 8.928487 ], [ 100.019531, 8.407168 ], [ 100.195312, 8.407168 ], [ 100.195312, 7.885147 ], [ 100.371094, 7.885147 ], [ 100.371094, 7.536764 ], [ 100.546875, 7.536764 ], [ 100.546875, 7.188101 ], [ 100.722656, 7.188101 ], [ 100.722656, 7.013668 ], [ 100.898438, 7.013668 ], [ 100.898438, 6.839170 ], [ 101.250000, 6.839170 ], [ 101.250000, 6.664608 ], [ 101.601562, 6.664608 ], [ 101.601562, 6.489983 ], [ 101.777344, 6.489983 ], [ 101.777344, 6.315299 ], [ 101.953125, 6.315299 ], [ 101.953125, 6.140555 ], [ 102.128906, 6.140555 ], [ 102.128906, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 5.790897 ], [ 101.601562, 5.790897 ], [ 101.601562, 5.615986 ], [ 101.074219, 5.615986 ], [ 101.074219, 6.140555 ], [ 100.898438, 6.140555 ], [ 100.898438, 6.315299 ], [ 100.546875, 6.315299 ], [ 100.546875, 6.489983 ], [ 99.843750, 6.489983 ], [ 99.843750, 6.664608 ], [ 99.667969, 6.664608 ], [ 99.667969, 7.013668 ], [ 99.492188, 7.013668 ], [ 99.492188, 7.362467 ], [ 99.316406, 7.362467 ], [ 99.316406, 7.536764 ], [ 99.140625, 7.536764 ], [ 99.140625, 7.710992 ], [ 98.964844, 7.710992 ], [ 98.964844, 7.885147 ], [ 98.789062, 7.885147 ], [ 98.789062, 8.059230 ], [ 98.613281, 8.059230 ], [ 98.613281, 8.233237 ], [ 98.437500, 8.233237 ], [ 98.437500, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 8.581021 ], [ 98.261719, 8.581021 ], [ 98.261719, 9.102097 ], [ 98.437500, 9.102097 ], [ 98.437500, 9.622414 ], [ 98.613281, 9.622414 ], [ 98.613281, 10.141932 ], [ 98.789062, 10.141932 ], [ 98.789062, 10.660608 ], [ 98.964844, 10.660608 ], [ 98.964844, 11.005904 ], [ 99.140625, 11.005904 ], [ 99.140625, 11.178402 ], [ 99.316406, 11.178402 ], [ 99.316406, 11.523088 ], [ 99.492188, 11.523088 ], [ 99.492188, 11.695273 ], [ 99.667969, 11.695273 ], [ 99.667969, 11.867351 ], [ 99.492188, 11.867351 ], [ 99.492188, 12.211180 ], [ 99.316406, 12.211180 ], [ 99.316406, 12.554564 ], [ 99.140625, 12.554564 ], [ 99.140625, 13.752725 ], [ 98.964844, 13.752725 ], [ 98.964844, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 14.264383 ], [ 98.613281, 14.264383 ], [ 98.613281, 14.434680 ], [ 98.437500, 14.434680 ], [ 98.437500, 14.774883 ], [ 98.261719, 14.774883 ], [ 98.261719, 15.114553 ], [ 98.613281, 15.114553 ], [ 98.613281, 15.453680 ], [ 98.789062, 15.453680 ], [ 98.789062, 15.792254 ], [ 98.964844, 15.792254 ], [ 98.964844, 16.130262 ], [ 98.789062, 16.130262 ], [ 98.789062, 16.467695 ], [ 98.613281, 16.467695 ], [ 98.613281, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 16.804541 ], [ 98.261719, 16.804541 ], [ 98.261719, 17.140790 ], [ 98.085938, 17.140790 ], [ 98.085938, 17.476432 ], [ 97.910156, 17.476432 ], [ 97.910156, 17.644022 ], [ 97.734375, 17.644022 ], [ 97.734375, 17.978733 ], [ 97.558594, 17.978733 ], [ 97.558594, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 18.479609 ], [ 97.734375, 18.479609 ], [ 97.734375, 18.812718 ], [ 97.910156, 18.812718 ], [ 97.910156, 19.145168 ], [ 98.085938, 19.145168 ], [ 98.085938, 19.476950 ], [ 98.261719, 19.476950 ], [ 98.261719, 19.642588 ], [ 98.789062, 19.642588 ], [ 98.789062, 19.808054 ], [ 99.140625, 19.808054 ], [ 99.140625, 19.973349 ], [ 99.492188, 19.973349 ], [ 99.492188, 20.138470 ], [ 99.843750, 20.138470 ], [ 99.843750, 20.303418 ], [ 100.371094, 20.303418 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.019531, 20.468189 ], [ 100.019531, 20.303418 ], [ 100.371094, 20.303418 ], [ 100.371094, 20.138470 ], [ 100.546875, 20.138470 ], [ 100.546875, 19.642588 ], [ 100.722656, 19.642588 ], [ 100.722656, 19.476950 ], [ 101.250000, 19.476950 ], [ 101.250000, 19.145168 ], [ 101.074219, 19.145168 ], [ 101.074219, 18.646245 ], [ 100.898438, 18.646245 ], [ 100.898438, 17.644022 ], [ 101.250000, 17.644022 ], [ 101.250000, 17.811456 ], [ 101.601562, 17.811456 ], [ 101.601562, 17.978733 ], [ 103.007812, 17.978733 ], [ 103.007812, 18.145852 ], [ 103.183594, 18.145852 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 103.886719, 18.145852 ], [ 104.062500, 18.145852 ], [ 104.062500, 17.978733 ], [ 104.238281, 17.978733 ], [ 104.238281, 17.644022 ], [ 104.414062, 17.644022 ], [ 104.414062, 17.476432 ], [ 104.589844, 17.476432 ], [ 104.589844, 16.972741 ], [ 104.765625, 16.972741 ], [ 104.765625, 16.299051 ], [ 104.941406, 16.299051 ], [ 104.941406, 16.130262 ], [ 105.117188, 16.130262 ], [ 105.117188, 15.792254 ], [ 105.292969, 15.792254 ], [ 105.292969, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 14.604847 ], [ 105.292969, 14.604847 ], [ 105.292969, 14.434680 ], [ 103.710938, 14.434680 ], [ 103.710938, 14.264383 ], [ 102.832031, 14.264383 ], [ 102.832031, 14.093957 ], [ 102.656250, 14.093957 ], [ 102.656250, 13.752725 ], [ 102.480469, 13.752725 ], [ 102.480469, 13.410994 ], [ 102.304688, 13.410994 ], [ 102.304688, 12.726084 ], [ 102.480469, 12.726084 ], [ 102.480469, 12.211180 ], [ 102.304688, 12.211180 ], [ 102.304688, 12.382928 ], [ 101.953125, 12.382928 ], [ 101.953125, 12.554564 ], [ 101.601562, 12.554564 ], [ 101.601562, 12.726084 ], [ 100.722656, 12.726084 ], [ 100.722656, 13.068777 ], [ 100.898438, 13.068777 ], [ 100.898438, 13.410994 ], [ 100.019531, 13.410994 ], [ 100.019531, 12.211180 ], [ 99.843750, 12.211180 ], [ 99.843750, 11.867351 ], [ 99.667969, 11.867351 ], [ 99.667969, 11.523088 ], [ 99.492188, 11.523088 ], [ 99.492188, 11.178402 ], [ 99.316406, 11.178402 ], [ 99.316406, 10.487812 ], [ 99.140625, 10.487812 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 99.843750, 8.928487 ], [ 100.019531, 8.928487 ], [ 100.019531, 8.581021 ], [ 100.195312, 8.581021 ], [ 100.195312, 7.885147 ], [ 100.371094, 7.885147 ], [ 100.371094, 7.362467 ], [ 100.546875, 7.362467 ], [ 100.546875, 7.188101 ], [ 100.722656, 7.188101 ], [ 100.722656, 7.013668 ], [ 101.074219, 7.013668 ], [ 101.074219, 6.839170 ], [ 101.601562, 6.839170 ], [ 101.601562, 6.664608 ], [ 101.777344, 6.664608 ], [ 101.777344, 6.489983 ], [ 101.953125, 6.489983 ], [ 101.953125, 6.315299 ], [ 102.128906, 6.315299 ], [ 102.128906, 6.140555 ], [ 101.953125, 6.140555 ], [ 101.953125, 5.965754 ], [ 101.601562, 5.965754 ], [ 101.601562, 5.790897 ], [ 101.074219, 5.790897 ], [ 101.074219, 6.315299 ], [ 100.722656, 6.315299 ], [ 100.722656, 6.489983 ], [ 100.371094, 6.489983 ], [ 100.371094, 6.664608 ], [ 100.195312, 6.664608 ], [ 100.195312, 6.489983 ], [ 99.843750, 6.489983 ], [ 99.843750, 6.839170 ], [ 99.667969, 6.839170 ], [ 99.667969, 7.188101 ], [ 99.492188, 7.188101 ], [ 99.492188, 7.362467 ], [ 99.316406, 7.362467 ], [ 99.316406, 7.710992 ], [ 99.140625, 7.710992 ], [ 99.140625, 7.885147 ], [ 98.964844, 7.885147 ], [ 98.964844, 8.059230 ], [ 98.789062, 8.059230 ], [ 98.789062, 8.233237 ], [ 98.437500, 8.233237 ], [ 98.437500, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 8.754795 ], [ 98.261719, 8.754795 ], [ 98.261719, 9.449062 ], [ 98.437500, 9.449062 ], [ 98.437500, 10.141932 ], [ 98.613281, 10.141932 ], [ 98.613281, 10.487812 ], [ 98.789062, 10.487812 ], [ 98.789062, 10.833306 ], [ 98.964844, 10.833306 ], [ 98.964844, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 11.523088 ], [ 99.316406, 11.523088 ], [ 99.316406, 11.867351 ], [ 99.492188, 11.867351 ], [ 99.492188, 12.211180 ], [ 99.316406, 12.211180 ], [ 99.316406, 12.554564 ], [ 99.140625, 12.554564 ], [ 99.140625, 13.581921 ], [ 98.964844, 13.581921 ], [ 98.964844, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 14.093957 ], [ 98.613281, 14.093957 ], [ 98.613281, 14.434680 ], [ 98.437500, 14.434680 ], [ 98.437500, 14.604847 ], [ 98.261719, 14.604847 ], [ 98.261719, 14.944785 ], [ 98.085938, 14.944785 ], [ 98.085938, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 15.623037 ], [ 98.613281, 15.623037 ], [ 98.613281, 15.961329 ], [ 98.789062, 15.961329 ], [ 98.789062, 16.467695 ], [ 98.613281, 16.467695 ], [ 98.613281, 16.804541 ], [ 98.437500, 16.804541 ], [ 98.437500, 16.972741 ], [ 98.261719, 16.972741 ], [ 98.261719, 17.140790 ], [ 98.085938, 17.140790 ], [ 98.085938, 17.308688 ], [ 97.910156, 17.308688 ], [ 97.910156, 17.476432 ], [ 97.734375, 17.476432 ], [ 97.734375, 17.644022 ], [ 97.558594, 17.644022 ], [ 97.558594, 17.978733 ], [ 97.382812, 17.978733 ], [ 97.382812, 18.312811 ], [ 97.207031, 18.312811 ], [ 97.207031, 18.479609 ], [ 97.558594, 18.479609 ], [ 97.558594, 18.646245 ], [ 97.734375, 18.646245 ], [ 97.734375, 18.812718 ], [ 97.910156, 18.812718 ], [ 97.910156, 19.476950 ], [ 98.085938, 19.476950 ], [ 98.085938, 19.808054 ], [ 98.964844, 19.808054 ], [ 98.964844, 19.973349 ], [ 99.316406, 19.973349 ], [ 99.316406, 20.138470 ], [ 99.492188, 20.138470 ], [ 99.492188, 20.303418 ], [ 99.843750, 20.303418 ], [ 99.843750, 20.468189 ], [ 100.019531, 20.468189 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 23.241346 ], [ 105.468750, 23.079732 ], [ 105.644531, 23.079732 ], [ 105.644531, 22.917923 ], [ 106.171875, 22.917923 ], [ 106.171875, 22.755921 ], [ 106.699219, 22.755921 ], [ 106.699219, 22.431340 ], [ 106.523438, 22.431340 ], [ 106.523438, 22.105999 ], [ 106.699219, 22.105999 ], [ 106.699219, 21.943046 ], [ 106.875000, 21.943046 ], [ 106.875000, 21.779905 ], [ 107.402344, 21.779905 ], [ 107.402344, 21.616579 ], [ 108.105469, 21.616579 ], [ 108.105469, 21.453069 ], [ 107.929688, 21.453069 ], [ 107.929688, 21.289374 ], [ 107.578125, 21.289374 ], [ 107.578125, 21.125498 ], [ 107.402344, 21.125498 ], [ 107.402344, 20.961440 ], [ 107.226562, 20.961440 ], [ 107.226562, 20.797201 ], [ 106.875000, 20.797201 ], [ 106.875000, 20.632784 ], [ 106.699219, 20.632784 ], [ 106.699219, 20.468189 ], [ 106.523438, 20.468189 ], [ 106.523438, 20.303418 ], [ 106.347656, 20.303418 ], [ 106.347656, 20.138470 ], [ 106.171875, 20.138470 ], [ 106.171875, 19.973349 ], [ 105.996094, 19.973349 ], [ 105.996094, 19.808054 ], [ 105.820312, 19.808054 ], [ 105.820312, 19.311143 ], [ 105.644531, 19.311143 ], [ 105.644531, 18.812718 ], [ 105.820312, 18.812718 ], [ 105.820312, 18.479609 ], [ 105.996094, 18.479609 ], [ 105.996094, 18.312811 ], [ 106.171875, 18.312811 ], [ 106.171875, 17.978733 ], [ 106.347656, 17.978733 ], [ 106.347656, 17.811456 ], [ 106.523438, 17.811456 ], [ 106.523438, 17.644022 ], [ 106.699219, 17.644022 ], [ 106.699219, 17.308688 ], [ 106.875000, 17.308688 ], [ 106.875000, 17.140790 ], [ 107.050781, 17.140790 ], [ 107.050781, 16.972741 ], [ 107.226562, 16.972741 ], [ 107.226562, 16.636192 ], [ 107.402344, 16.636192 ], [ 107.402344, 16.467695 ], [ 107.753906, 16.467695 ], [ 107.753906, 16.299051 ], [ 108.105469, 16.299051 ], [ 108.105469, 16.130262 ], [ 108.281250, 16.130262 ], [ 108.281250, 15.961329 ], [ 108.457031, 15.961329 ], [ 108.457031, 15.623037 ], [ 108.632812, 15.623037 ], [ 108.632812, 15.284185 ], [ 108.808594, 15.284185 ], [ 108.808594, 14.944785 ], [ 108.984375, 14.944785 ], [ 108.984375, 14.264383 ], [ 109.160156, 14.264383 ], [ 109.160156, 13.581921 ], [ 109.335938, 13.581921 ], [ 109.335938, 12.554564 ], [ 109.160156, 12.554564 ], [ 109.160156, 11.523088 ], [ 108.984375, 11.523088 ], [ 108.984375, 11.350797 ], [ 108.632812, 11.350797 ], [ 108.632812, 11.178402 ], [ 108.457031, 11.178402 ], [ 108.457031, 11.005904 ], [ 108.281250, 11.005904 ], [ 108.281250, 10.833306 ], [ 107.929688, 10.833306 ], [ 107.929688, 10.660608 ], [ 107.753906, 10.660608 ], [ 107.753906, 10.487812 ], [ 107.402344, 10.487812 ], [ 107.402344, 10.314919 ], [ 107.226562, 10.314919 ], [ 107.226562, 10.141932 ], [ 107.050781, 10.141932 ], [ 107.050781, 9.968851 ], [ 106.875000, 9.968851 ], [ 106.875000, 9.795678 ], [ 106.699219, 9.795678 ], [ 106.699219, 9.622414 ], [ 106.523438, 9.622414 ], [ 106.523438, 9.449062 ], [ 106.347656, 9.449062 ], [ 106.347656, 9.275622 ], [ 105.996094, 9.275622 ], [ 105.996094, 9.102097 ], [ 105.820312, 9.102097 ], [ 105.820312, 8.928487 ], [ 105.644531, 8.928487 ], [ 105.644531, 8.754795 ], [ 105.292969, 8.754795 ], [ 105.292969, 8.581021 ], [ 105.117188, 8.581021 ], [ 105.117188, 8.754795 ], [ 104.941406, 8.754795 ], [ 104.941406, 9.102097 ], [ 104.765625, 9.102097 ], [ 104.765625, 9.449062 ], [ 104.941406, 9.449062 ], [ 104.941406, 9.795678 ], [ 105.117188, 9.795678 ], [ 105.117188, 9.968851 ], [ 104.941406, 9.968851 ], [ 104.941406, 10.141932 ], [ 104.589844, 10.141932 ], [ 104.589844, 10.314919 ], [ 104.414062, 10.314919 ], [ 104.414062, 10.487812 ], [ 104.765625, 10.487812 ], [ 104.765625, 10.660608 ], [ 105.117188, 10.660608 ], [ 105.117188, 10.833306 ], [ 105.820312, 10.833306 ], [ 105.820312, 11.005904 ], [ 105.996094, 11.005904 ], [ 105.996094, 11.350797 ], [ 105.820312, 11.350797 ], [ 105.820312, 11.523088 ], [ 106.171875, 11.523088 ], [ 106.171875, 11.695273 ], [ 106.523438, 11.695273 ], [ 106.523438, 11.867351 ], [ 106.875000, 11.867351 ], [ 106.875000, 12.039321 ], [ 107.226562, 12.039321 ], [ 107.226562, 12.211180 ], [ 107.578125, 12.211180 ], [ 107.578125, 13.923404 ], [ 107.402344, 13.923404 ], [ 107.402344, 14.774883 ], [ 107.578125, 14.774883 ], [ 107.578125, 15.453680 ], [ 107.402344, 15.453680 ], [ 107.402344, 15.792254 ], [ 107.226562, 15.792254 ], [ 107.226562, 15.961329 ], [ 107.050781, 15.961329 ], [ 107.050781, 16.130262 ], [ 106.875000, 16.130262 ], [ 106.875000, 16.299051 ], [ 106.699219, 16.299051 ], [ 106.699219, 16.467695 ], [ 106.523438, 16.467695 ], [ 106.523438, 16.636192 ], [ 106.347656, 16.636192 ], [ 106.347656, 16.972741 ], [ 106.171875, 16.972741 ], [ 106.171875, 17.308688 ], [ 105.996094, 17.308688 ], [ 105.996094, 17.476432 ], [ 105.820312, 17.476432 ], [ 105.820312, 17.811456 ], [ 105.644531, 17.811456 ], [ 105.644531, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 18.145852 ], [ 105.292969, 18.145852 ], [ 105.292969, 18.479609 ], [ 105.117188, 18.479609 ], [ 105.117188, 18.646245 ], [ 104.941406, 18.646245 ], [ 104.941406, 18.812718 ], [ 104.589844, 18.812718 ], [ 104.589844, 18.979026 ], [ 104.238281, 18.979026 ], [ 104.238281, 19.145168 ], [ 103.886719, 19.145168 ], [ 103.886719, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 19.476950 ], [ 104.238281, 19.476950 ], [ 104.238281, 19.642588 ], [ 104.589844, 19.642588 ], [ 104.589844, 19.808054 ], [ 104.765625, 19.808054 ], [ 104.765625, 19.973349 ], [ 104.589844, 19.973349 ], [ 104.589844, 20.468189 ], [ 104.414062, 20.468189 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 103.183594, 20.961440 ], [ 103.007812, 20.961440 ], [ 103.007812, 21.289374 ], [ 102.832031, 21.289374 ], [ 102.832031, 21.616579 ], [ 102.656250, 21.616579 ], [ 102.656250, 21.779905 ], [ 102.480469, 21.779905 ], [ 102.480469, 22.105999 ], [ 102.304688, 22.105999 ], [ 102.304688, 22.268764 ], [ 102.128906, 22.268764 ], [ 102.128906, 22.431340 ], [ 102.304688, 22.431340 ], [ 102.304688, 22.593726 ], [ 102.656250, 22.593726 ], [ 102.656250, 22.755921 ], [ 104.589844, 22.755921 ], [ 104.589844, 22.917923 ], [ 104.765625, 22.917923 ], [ 104.765625, 23.079732 ], [ 105.117188, 23.079732 ], [ 105.117188, 23.241346 ], [ 105.468750, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 23.241346 ], [ 105.468750, 23.079732 ], [ 105.996094, 23.079732 ], [ 105.996094, 22.917923 ], [ 106.699219, 22.917923 ], [ 106.699219, 22.593726 ], [ 106.523438, 22.593726 ], [ 106.523438, 22.105999 ], [ 106.699219, 22.105999 ], [ 106.699219, 21.943046 ], [ 107.050781, 21.943046 ], [ 107.050781, 21.779905 ], [ 107.578125, 21.779905 ], [ 107.578125, 21.616579 ], [ 107.929688, 21.616579 ], [ 107.929688, 21.453069 ], [ 107.578125, 21.453069 ], [ 107.578125, 21.289374 ], [ 107.402344, 21.289374 ], [ 107.402344, 21.125498 ], [ 107.226562, 21.125498 ], [ 107.226562, 20.961440 ], [ 106.875000, 20.961440 ], [ 106.875000, 20.797201 ], [ 106.699219, 20.797201 ], [ 106.699219, 20.632784 ], [ 106.523438, 20.632784 ], [ 106.523438, 20.468189 ], [ 106.347656, 20.468189 ], [ 106.347656, 20.303418 ], [ 106.171875, 20.303418 ], [ 106.171875, 19.973349 ], [ 105.996094, 19.973349 ], [ 105.996094, 19.808054 ], [ 105.820312, 19.808054 ], [ 105.820312, 19.476950 ], [ 105.644531, 19.476950 ], [ 105.644531, 18.979026 ], [ 105.820312, 18.979026 ], [ 105.820312, 18.646245 ], [ 105.996094, 18.646245 ], [ 105.996094, 18.479609 ], [ 106.171875, 18.479609 ], [ 106.171875, 18.145852 ], [ 106.347656, 18.145852 ], [ 106.347656, 17.978733 ], [ 106.523438, 17.978733 ], [ 106.523438, 17.644022 ], [ 106.699219, 17.644022 ], [ 106.699219, 17.476432 ], [ 106.875000, 17.476432 ], [ 106.875000, 17.140790 ], [ 107.050781, 17.140790 ], [ 107.050781, 16.804541 ], [ 107.226562, 16.804541 ], [ 107.226562, 16.636192 ], [ 107.402344, 16.636192 ], [ 107.402344, 16.467695 ], [ 107.753906, 16.467695 ], [ 107.753906, 16.299051 ], [ 107.929688, 16.299051 ], [ 107.929688, 16.130262 ], [ 108.105469, 16.130262 ], [ 108.105469, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 15.792254 ], [ 108.457031, 15.792254 ], [ 108.457031, 15.453680 ], [ 108.632812, 15.453680 ], [ 108.632812, 15.284185 ], [ 108.808594, 15.284185 ], [ 108.808594, 14.944785 ], [ 108.984375, 14.944785 ], [ 108.984375, 14.434680 ], [ 109.160156, 14.434680 ], [ 109.160156, 13.752725 ], [ 109.335938, 13.752725 ], [ 109.335938, 12.554564 ], [ 109.160156, 12.554564 ], [ 109.160156, 11.523088 ], [ 108.984375, 11.523088 ], [ 108.984375, 11.350797 ], [ 108.632812, 11.350797 ], [ 108.632812, 11.178402 ], [ 108.457031, 11.178402 ], [ 108.457031, 11.005904 ], [ 108.105469, 11.005904 ], [ 108.105469, 10.833306 ], [ 107.753906, 10.833306 ], [ 107.753906, 10.660608 ], [ 107.402344, 10.660608 ], [ 107.402344, 10.487812 ], [ 107.050781, 10.487812 ], [ 107.050781, 10.314919 ], [ 106.875000, 10.314919 ], [ 106.875000, 10.141932 ], [ 106.699219, 10.141932 ], [ 106.699219, 9.795678 ], [ 106.523438, 9.795678 ], [ 106.523438, 9.622414 ], [ 106.347656, 9.622414 ], [ 106.347656, 9.449062 ], [ 105.996094, 9.449062 ], [ 105.996094, 9.275622 ], [ 105.820312, 9.275622 ], [ 105.820312, 9.102097 ], [ 105.644531, 9.102097 ], [ 105.644531, 8.928487 ], [ 105.292969, 8.928487 ], [ 105.292969, 8.754795 ], [ 104.941406, 8.754795 ], [ 104.941406, 9.102097 ], [ 104.765625, 9.102097 ], [ 104.765625, 9.622414 ], [ 104.941406, 9.622414 ], [ 104.941406, 9.968851 ], [ 104.765625, 9.968851 ], [ 104.765625, 10.141932 ], [ 104.414062, 10.141932 ], [ 104.414062, 10.314919 ], [ 104.238281, 10.314919 ], [ 104.238281, 10.487812 ], [ 104.414062, 10.487812 ], [ 104.414062, 10.660608 ], [ 104.765625, 10.660608 ], [ 104.765625, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 11.005904 ], [ 105.996094, 11.005904 ], [ 105.996094, 11.350797 ], [ 105.820312, 11.350797 ], [ 105.820312, 11.523088 ], [ 105.644531, 11.523088 ], [ 105.644531, 11.695273 ], [ 105.996094, 11.695273 ], [ 105.996094, 11.867351 ], [ 106.347656, 11.867351 ], [ 106.347656, 12.039321 ], [ 106.875000, 12.039321 ], [ 106.875000, 12.211180 ], [ 107.226562, 12.211180 ], [ 107.226562, 12.382928 ], [ 107.402344, 12.382928 ], [ 107.402344, 12.897489 ], [ 107.578125, 12.897489 ], [ 107.578125, 13.752725 ], [ 107.402344, 13.752725 ], [ 107.402344, 14.093957 ], [ 107.226562, 14.093957 ], [ 107.226562, 14.774883 ], [ 107.402344, 14.774883 ], [ 107.402344, 15.623037 ], [ 107.226562, 15.623037 ], [ 107.226562, 15.961329 ], [ 107.050781, 15.961329 ], [ 107.050781, 16.130262 ], [ 106.875000, 16.130262 ], [ 106.875000, 16.299051 ], [ 106.699219, 16.299051 ], [ 106.699219, 16.467695 ], [ 106.523438, 16.467695 ], [ 106.523438, 16.636192 ], [ 106.347656, 16.636192 ], [ 106.347656, 16.972741 ], [ 106.171875, 16.972741 ], [ 106.171875, 17.140790 ], [ 105.996094, 17.140790 ], [ 105.996094, 17.476432 ], [ 105.820312, 17.476432 ], [ 105.820312, 17.644022 ], [ 105.644531, 17.644022 ], [ 105.644531, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 18.145852 ], [ 105.292969, 18.145852 ], [ 105.292969, 18.312811 ], [ 105.117188, 18.312811 ], [ 105.117188, 18.646245 ], [ 104.941406, 18.646245 ], [ 104.941406, 18.812718 ], [ 104.589844, 18.812718 ], [ 104.589844, 18.979026 ], [ 104.238281, 18.979026 ], [ 104.238281, 19.145168 ], [ 103.886719, 19.145168 ], [ 103.886719, 19.476950 ], [ 104.062500, 19.476950 ], [ 104.062500, 19.642588 ], [ 104.414062, 19.642588 ], [ 104.414062, 19.808054 ], [ 104.765625, 19.808054 ], [ 104.765625, 20.138470 ], [ 104.589844, 20.138470 ], [ 104.589844, 20.468189 ], [ 104.414062, 20.468189 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 103.183594, 20.961440 ], [ 103.007812, 20.961440 ], [ 103.007812, 21.289374 ], [ 102.832031, 21.289374 ], [ 102.832031, 21.616579 ], [ 102.656250, 21.616579 ], [ 102.656250, 21.779905 ], [ 102.480469, 21.779905 ], [ 102.480469, 22.105999 ], [ 102.304688, 22.105999 ], [ 102.304688, 22.431340 ], [ 102.128906, 22.431340 ], [ 102.128906, 22.593726 ], [ 102.480469, 22.593726 ], [ 102.480469, 22.755921 ], [ 104.062500, 22.755921 ], [ 104.062500, 22.917923 ], [ 104.589844, 22.917923 ], [ 104.589844, 23.079732 ], [ 104.941406, 23.079732 ], [ 104.941406, 23.241346 ], [ 105.468750, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.699219, 14.604847 ], [ 106.699219, 14.434680 ], [ 107.050781, 14.434680 ], [ 107.050781, 14.264383 ], [ 107.402344, 14.264383 ], [ 107.402344, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.211180 ], [ 107.226562, 12.211180 ], [ 107.226562, 12.039321 ], [ 106.875000, 12.039321 ], [ 106.875000, 11.867351 ], [ 106.523438, 11.867351 ], [ 106.523438, 11.695273 ], [ 106.171875, 11.695273 ], [ 106.171875, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.350797 ], [ 105.996094, 11.350797 ], [ 105.996094, 11.005904 ], [ 105.820312, 11.005904 ], [ 105.820312, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 10.660608 ], [ 104.765625, 10.660608 ], [ 104.765625, 10.487812 ], [ 103.886719, 10.487812 ], [ 103.886719, 10.660608 ], [ 103.359375, 10.660608 ], [ 103.359375, 10.833306 ], [ 103.183594, 10.833306 ], [ 103.183594, 11.005904 ], [ 103.007812, 11.005904 ], [ 103.007812, 11.350797 ], [ 102.832031, 11.350797 ], [ 102.832031, 11.867351 ], [ 102.656250, 11.867351 ], [ 102.656250, 12.382928 ], [ 102.480469, 12.382928 ], [ 102.480469, 13.068777 ], [ 102.304688, 13.068777 ], [ 102.304688, 13.410994 ], [ 102.480469, 13.410994 ], [ 102.480469, 13.581921 ], [ 102.656250, 13.581921 ], [ 102.656250, 13.923404 ], [ 102.832031, 13.923404 ], [ 102.832031, 14.093957 ], [ 103.007812, 14.093957 ], [ 103.007812, 14.264383 ], [ 103.710938, 14.264383 ], [ 103.710938, 14.434680 ], [ 104.589844, 14.434680 ], [ 104.589844, 14.264383 ], [ 105.292969, 14.264383 ], [ 105.292969, 14.093957 ], [ 105.644531, 14.093957 ], [ 105.644531, 13.923404 ], [ 106.171875, 13.923404 ], [ 106.171875, 14.264383 ], [ 106.347656, 14.264383 ], [ 106.347656, 14.434680 ], [ 106.523438, 14.434680 ], [ 106.523438, 14.604847 ], [ 106.699219, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.523438, 14.604847 ], [ 106.523438, 14.434680 ], [ 106.875000, 14.434680 ], [ 106.875000, 14.264383 ], [ 107.226562, 14.264383 ], [ 107.226562, 14.093957 ], [ 107.402344, 14.093957 ], [ 107.402344, 13.752725 ], [ 107.578125, 13.752725 ], [ 107.578125, 12.897489 ], [ 107.402344, 12.897489 ], [ 107.402344, 12.382928 ], [ 107.226562, 12.382928 ], [ 107.226562, 12.211180 ], [ 106.875000, 12.211180 ], [ 106.875000, 12.039321 ], [ 106.347656, 12.039321 ], [ 106.347656, 11.867351 ], [ 105.996094, 11.867351 ], [ 105.996094, 11.695273 ], [ 105.644531, 11.695273 ], [ 105.644531, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.350797 ], [ 105.996094, 11.350797 ], [ 105.996094, 11.005904 ], [ 105.117188, 11.005904 ], [ 105.117188, 10.833306 ], [ 104.765625, 10.833306 ], [ 104.765625, 10.660608 ], [ 104.414062, 10.660608 ], [ 104.414062, 10.487812 ], [ 103.710938, 10.487812 ], [ 103.710938, 10.660608 ], [ 103.183594, 10.660608 ], [ 103.183594, 11.005904 ], [ 103.007812, 11.005904 ], [ 103.007812, 11.350797 ], [ 102.832031, 11.350797 ], [ 102.832031, 11.695273 ], [ 102.656250, 11.695273 ], [ 102.656250, 12.039321 ], [ 102.480469, 12.039321 ], [ 102.480469, 12.726084 ], [ 102.304688, 12.726084 ], [ 102.304688, 13.410994 ], [ 102.480469, 13.410994 ], [ 102.480469, 13.752725 ], [ 102.656250, 13.752725 ], [ 102.656250, 14.093957 ], [ 102.832031, 14.093957 ], [ 102.832031, 14.264383 ], [ 103.710938, 14.264383 ], [ 103.710938, 14.434680 ], [ 105.117188, 14.434680 ], [ 105.117188, 14.264383 ], [ 105.468750, 14.264383 ], [ 105.468750, 14.093957 ], [ 105.820312, 14.093957 ], [ 105.820312, 13.923404 ], [ 105.996094, 13.923404 ], [ 105.996094, 14.093957 ], [ 106.171875, 14.093957 ], [ 106.171875, 14.434680 ], [ 106.347656, 14.434680 ], [ 106.347656, 14.604847 ], [ 106.523438, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.246094, 6.839170 ], [ 117.246094, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 6.489983 ], [ 117.597656, 6.489983 ], [ 117.597656, 6.140555 ], [ 117.773438, 6.140555 ], [ 117.773438, 5.965754 ], [ 117.949219, 5.965754 ], [ 117.949219, 5.790897 ], [ 118.476562, 5.790897 ], [ 118.476562, 5.615986 ], [ 118.828125, 5.615986 ], [ 118.828125, 5.441022 ], [ 119.179688, 5.441022 ], [ 119.179688, 5.090944 ], [ 119.003906, 5.090944 ], [ 119.003906, 4.915833 ], [ 118.476562, 4.915833 ], [ 118.476562, 4.740675 ], [ 118.652344, 4.740675 ], [ 118.652344, 4.390229 ], [ 118.300781, 4.390229 ], [ 118.300781, 4.214943 ], [ 117.421875, 4.214943 ], [ 117.421875, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.839844, 4.039618 ], [ 115.664062, 4.039618 ], [ 115.664062, 3.337954 ], [ 115.488281, 3.337954 ], [ 115.488281, 2.986927 ], [ 115.312500, 2.986927 ], [ 115.312500, 2.811371 ], [ 115.136719, 2.811371 ], [ 115.136719, 2.460181 ], [ 114.960938, 2.460181 ], [ 114.960938, 2.108899 ], [ 114.785156, 2.108899 ], [ 114.785156, 1.581830 ], [ 114.609375, 1.581830 ], [ 114.609375, 1.406109 ], [ 114.257812, 1.406109 ], [ 114.257812, 1.230374 ], [ 113.378906, 1.230374 ], [ 113.378906, 1.406109 ], [ 113.027344, 1.406109 ], [ 113.027344, 1.581830 ], [ 112.675781, 1.581830 ], [ 112.675781, 1.406109 ], [ 112.324219, 1.406109 ], [ 112.324219, 1.230374 ], [ 112.148438, 1.230374 ], [ 112.148438, 1.054628 ], [ 111.972656, 1.054628 ], [ 111.972656, 0.878872 ], [ 111.269531, 0.878872 ], [ 111.269531, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.878872 ], [ 110.742188, 0.878872 ], [ 110.742188, 0.703107 ], [ 110.390625, 0.703107 ], [ 110.390625, 0.878872 ], [ 110.214844, 0.878872 ], [ 110.214844, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 1.230374 ], [ 109.863281, 1.230374 ], [ 109.863281, 1.581830 ], [ 109.687500, 1.581830 ], [ 109.687500, 1.757537 ], [ 110.039062, 1.757537 ], [ 110.039062, 1.581830 ], [ 110.742188, 1.581830 ], [ 110.742188, 1.757537 ], [ 111.093750, 1.757537 ], [ 111.093750, 2.108899 ], [ 111.269531, 2.108899 ], [ 111.269531, 2.460181 ], [ 111.445312, 2.460181 ], [ 111.445312, 2.635789 ], [ 111.796875, 2.635789 ], [ 111.796875, 2.811371 ], [ 112.148438, 2.811371 ], [ 112.148438, 2.986927 ], [ 112.851562, 2.986927 ], [ 112.851562, 3.162456 ], [ 113.203125, 3.162456 ], [ 113.203125, 3.337954 ], [ 113.378906, 3.337954 ], [ 113.378906, 3.513421 ], [ 113.554688, 3.513421 ], [ 113.554688, 3.688855 ], [ 113.730469, 3.688855 ], [ 113.730469, 3.864255 ], [ 113.906250, 3.864255 ], [ 113.906250, 4.214943 ], [ 114.082031, 4.214943 ], [ 114.082031, 4.390229 ], [ 114.433594, 4.390229 ], [ 114.433594, 4.039618 ], [ 114.609375, 4.039618 ], [ 114.609375, 4.214943 ], [ 114.785156, 4.214943 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.312500, 4.565474 ], [ 115.488281, 4.565474 ], [ 115.488281, 5.441022 ], [ 115.664062, 5.441022 ], [ 115.664062, 5.615986 ], [ 115.839844, 5.615986 ], [ 115.839844, 5.790897 ], [ 116.015625, 5.790897 ], [ 116.015625, 5.965754 ], [ 116.191406, 5.965754 ], [ 116.191406, 6.140555 ], [ 116.367188, 6.140555 ], [ 116.367188, 6.489983 ], [ 116.542969, 6.489983 ], [ 116.542969, 6.664608 ], [ 116.718750, 6.664608 ], [ 116.718750, 6.839170 ], [ 117.246094, 6.839170 ] ] ], [ [ [ 100.546875, 6.489983 ], [ 100.546875, 6.315299 ], [ 100.898438, 6.315299 ], [ 100.898438, 6.140555 ], [ 101.074219, 6.140555 ], [ 101.074219, 5.615986 ], [ 101.601562, 5.615986 ], [ 101.601562, 5.790897 ], [ 101.953125, 5.790897 ], [ 101.953125, 5.965754 ], [ 102.128906, 5.965754 ], [ 102.128906, 6.140555 ], [ 102.304688, 6.140555 ], [ 102.304688, 5.965754 ], [ 102.480469, 5.965754 ], [ 102.480469, 5.790897 ], [ 102.656250, 5.790897 ], [ 102.656250, 5.615986 ], [ 102.832031, 5.615986 ], [ 102.832031, 5.441022 ], [ 103.007812, 5.441022 ], [ 103.007812, 5.266008 ], [ 103.183594, 5.266008 ], [ 103.183594, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 2.986927 ], [ 103.535156, 2.986927 ], [ 103.535156, 2.635789 ], [ 103.710938, 2.635789 ], [ 103.710938, 2.460181 ], [ 103.886719, 2.460181 ], [ 103.886719, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.757537 ], [ 104.238281, 1.757537 ], [ 104.238281, 1.230374 ], [ 103.359375, 1.230374 ], [ 103.359375, 1.406109 ], [ 103.183594, 1.406109 ], [ 103.183594, 1.581830 ], [ 102.832031, 1.581830 ], [ 102.832031, 1.757537 ], [ 102.656250, 1.757537 ], [ 102.656250, 1.933227 ], [ 102.480469, 1.933227 ], [ 102.480469, 2.108899 ], [ 102.128906, 2.108899 ], [ 102.128906, 2.284551 ], [ 101.953125, 2.284551 ], [ 101.953125, 2.460181 ], [ 101.777344, 2.460181 ], [ 101.777344, 2.635789 ], [ 101.425781, 2.635789 ], [ 101.425781, 2.986927 ], [ 101.250000, 2.986927 ], [ 101.250000, 3.337954 ], [ 101.074219, 3.337954 ], [ 101.074219, 3.513421 ], [ 100.898438, 3.513421 ], [ 100.898438, 3.688855 ], [ 100.722656, 3.688855 ], [ 100.722656, 4.214943 ], [ 100.546875, 4.214943 ], [ 100.546875, 4.740675 ], [ 100.371094, 4.740675 ], [ 100.371094, 5.090944 ], [ 100.195312, 5.090944 ], [ 100.195312, 5.615986 ], [ 100.371094, 5.615986 ], [ 100.371094, 5.965754 ], [ 100.195312, 5.965754 ], [ 100.195312, 6.315299 ], [ 100.019531, 6.315299 ], [ 100.019531, 6.489983 ], [ 100.546875, 6.489983 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.070312, 7.013668 ], [ 117.070312, 6.839170 ], [ 117.246094, 6.839170 ], [ 117.246094, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 6.489983 ], [ 117.597656, 6.489983 ], [ 117.597656, 5.965754 ], [ 117.949219, 5.965754 ], [ 117.949219, 5.790897 ], [ 118.476562, 5.790897 ], [ 118.476562, 5.615986 ], [ 118.828125, 5.615986 ], [ 118.828125, 5.441022 ], [ 119.179688, 5.441022 ], [ 119.179688, 5.266008 ], [ 119.003906, 5.266008 ], [ 119.003906, 5.090944 ], [ 118.300781, 5.090944 ], [ 118.300781, 4.740675 ], [ 118.476562, 4.740675 ], [ 118.476562, 4.390229 ], [ 118.125000, 4.390229 ], [ 118.125000, 4.214943 ], [ 117.246094, 4.214943 ], [ 117.246094, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.839844, 4.039618 ], [ 115.664062, 4.039618 ], [ 115.664062, 3.513421 ], [ 115.488281, 3.513421 ], [ 115.488281, 3.162456 ], [ 115.312500, 3.162456 ], [ 115.312500, 2.986927 ], [ 115.136719, 2.986927 ], [ 115.136719, 2.635789 ], [ 114.960938, 2.635789 ], [ 114.960938, 2.284551 ], [ 114.785156, 2.284551 ], [ 114.785156, 1.757537 ], [ 114.609375, 1.757537 ], [ 114.609375, 1.581830 ], [ 114.433594, 1.581830 ], [ 114.433594, 1.406109 ], [ 114.082031, 1.406109 ], [ 114.082031, 1.230374 ], [ 113.378906, 1.230374 ], [ 113.378906, 1.406109 ], [ 113.027344, 1.406109 ], [ 113.027344, 1.581830 ], [ 112.324219, 1.581830 ], [ 112.324219, 1.406109 ], [ 112.148438, 1.406109 ], [ 112.148438, 1.230374 ], [ 111.972656, 1.230374 ], [ 111.972656, 1.054628 ], [ 110.917969, 1.054628 ], [ 110.917969, 0.878872 ], [ 110.214844, 0.878872 ], [ 110.214844, 1.054628 ], [ 109.863281, 1.054628 ], [ 109.863281, 1.230374 ], [ 109.687500, 1.230374 ], [ 109.687500, 1.757537 ], [ 109.511719, 1.757537 ], [ 109.511719, 2.108899 ], [ 109.687500, 2.108899 ], [ 109.687500, 1.933227 ], [ 110.039062, 1.933227 ], [ 110.039062, 1.757537 ], [ 110.917969, 1.757537 ], [ 110.917969, 1.933227 ], [ 111.093750, 1.933227 ], [ 111.093750, 2.284551 ], [ 111.269531, 2.284551 ], [ 111.269531, 2.811371 ], [ 111.621094, 2.811371 ], [ 111.621094, 2.986927 ], [ 112.500000, 2.986927 ], [ 112.500000, 3.162456 ], [ 113.027344, 3.162456 ], [ 113.027344, 3.337954 ], [ 113.203125, 3.337954 ], [ 113.203125, 3.688855 ], [ 113.378906, 3.688855 ], [ 113.378906, 3.864255 ], [ 113.554688, 3.864255 ], [ 113.554688, 4.039618 ], [ 113.730469, 4.039618 ], [ 113.730469, 4.214943 ], [ 113.906250, 4.214943 ], [ 113.906250, 4.390229 ], [ 114.257812, 4.390229 ], [ 114.257812, 4.214943 ], [ 114.433594, 4.214943 ], [ 114.433594, 4.039618 ], [ 114.609375, 4.039618 ], [ 114.609375, 4.214943 ], [ 114.785156, 4.214943 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.312500, 5.615986 ], [ 115.488281, 5.615986 ], [ 115.488281, 5.790897 ], [ 115.839844, 5.790897 ], [ 115.839844, 5.965754 ], [ 116.191406, 5.965754 ], [ 116.191406, 6.140555 ], [ 116.367188, 6.140555 ], [ 116.367188, 6.489983 ], [ 116.542969, 6.489983 ], [ 116.542969, 6.839170 ], [ 116.718750, 6.839170 ], [ 116.718750, 7.013668 ], [ 117.070312, 7.013668 ] ] ], [ [ [ 100.371094, 6.664608 ], [ 100.371094, 6.489983 ], [ 100.722656, 6.489983 ], [ 100.722656, 6.315299 ], [ 101.074219, 6.315299 ], [ 101.074219, 5.790897 ], [ 101.601562, 5.790897 ], [ 101.601562, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 6.140555 ], [ 102.304688, 6.140555 ], [ 102.304688, 5.965754 ], [ 102.480469, 5.965754 ], [ 102.480469, 5.790897 ], [ 102.656250, 5.790897 ], [ 102.656250, 5.615986 ], [ 102.832031, 5.615986 ], [ 102.832031, 5.441022 ], [ 103.007812, 5.441022 ], [ 103.007812, 5.266008 ], [ 103.183594, 5.266008 ], [ 103.183594, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 4.039618 ], [ 103.183594, 4.039618 ], [ 103.183594, 3.688855 ], [ 103.359375, 3.688855 ], [ 103.359375, 2.635789 ], [ 103.710938, 2.635789 ], [ 103.710938, 2.460181 ], [ 103.886719, 2.460181 ], [ 103.886719, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.757537 ], [ 104.238281, 1.757537 ], [ 104.238281, 1.581830 ], [ 104.062500, 1.581830 ], [ 104.062500, 1.406109 ], [ 103.886719, 1.406109 ], [ 103.886719, 1.230374 ], [ 103.183594, 1.230374 ], [ 103.183594, 1.406109 ], [ 103.007812, 1.406109 ], [ 103.007812, 1.581830 ], [ 102.832031, 1.581830 ], [ 102.832031, 1.757537 ], [ 102.656250, 1.757537 ], [ 102.656250, 1.933227 ], [ 102.480469, 1.933227 ], [ 102.480469, 2.108899 ], [ 102.304688, 2.108899 ], [ 102.304688, 2.284551 ], [ 101.953125, 2.284551 ], [ 101.953125, 2.460181 ], [ 101.601562, 2.460181 ], [ 101.601562, 2.635789 ], [ 101.250000, 2.635789 ], [ 101.250000, 3.337954 ], [ 101.074219, 3.337954 ], [ 101.074219, 3.513421 ], [ 100.898438, 3.513421 ], [ 100.898438, 3.688855 ], [ 100.722656, 3.688855 ], [ 100.722656, 3.864255 ], [ 100.546875, 3.864255 ], [ 100.546875, 4.915833 ], [ 100.371094, 4.915833 ], [ 100.371094, 5.266008 ], [ 100.195312, 5.266008 ], [ 100.195312, 6.315299 ], [ 100.019531, 6.315299 ], [ 100.019531, 6.489983 ], [ 100.195312, 6.489983 ], [ 100.195312, 6.664608 ], [ 100.371094, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.816406, 25.165173 ], [ 121.816406, 25.005973 ], [ 121.992188, 25.005973 ], [ 121.992188, 24.686952 ], [ 121.816406, 24.686952 ], [ 121.816406, 24.046464 ], [ 121.640625, 24.046464 ], [ 121.640625, 23.725012 ], [ 121.464844, 23.725012 ], [ 121.464844, 23.241346 ], [ 121.289062, 23.241346 ], [ 121.289062, 22.917923 ], [ 121.113281, 22.917923 ], [ 121.113281, 22.431340 ], [ 120.937500, 22.431340 ], [ 120.937500, 22.105999 ], [ 120.761719, 22.105999 ], [ 120.761719, 21.943046 ], [ 120.585938, 21.943046 ], [ 120.585938, 22.268764 ], [ 120.410156, 22.268764 ], [ 120.410156, 22.593726 ], [ 120.234375, 22.593726 ], [ 120.234375, 23.079732 ], [ 120.058594, 23.079732 ], [ 120.058594, 23.563987 ], [ 120.234375, 23.563987 ], [ 120.234375, 23.885838 ], [ 120.410156, 23.885838 ], [ 120.410156, 24.046464 ], [ 120.585938, 24.046464 ], [ 120.585938, 24.367114 ], [ 120.761719, 24.367114 ], [ 120.761719, 24.527135 ], [ 120.937500, 24.527135 ], [ 120.937500, 24.686952 ], [ 121.113281, 24.686952 ], [ 121.113281, 25.005973 ], [ 121.289062, 25.005973 ], [ 121.289062, 25.165173 ], [ 121.816406, 25.165173 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.640625, 25.165173 ], [ 121.640625, 25.005973 ], [ 121.816406, 25.005973 ], [ 121.816406, 24.686952 ], [ 121.640625, 24.686952 ], [ 121.640625, 24.206890 ], [ 121.464844, 24.206890 ], [ 121.464844, 23.725012 ], [ 121.289062, 23.725012 ], [ 121.289062, 23.079732 ], [ 121.113281, 23.079732 ], [ 121.113281, 22.755921 ], [ 120.937500, 22.755921 ], [ 120.937500, 22.431340 ], [ 120.761719, 22.431340 ], [ 120.761719, 22.105999 ], [ 120.410156, 22.105999 ], [ 120.410156, 22.431340 ], [ 120.234375, 22.431340 ], [ 120.234375, 22.755921 ], [ 120.058594, 22.755921 ], [ 120.058594, 23.725012 ], [ 120.234375, 23.725012 ], [ 120.234375, 24.046464 ], [ 120.410156, 24.046464 ], [ 120.410156, 24.367114 ], [ 120.585938, 24.367114 ], [ 120.585938, 24.686952 ], [ 120.761719, 24.686952 ], [ 120.761719, 24.846565 ], [ 120.937500, 24.846565 ], [ 120.937500, 25.005973 ], [ 121.289062, 25.005973 ], [ 121.289062, 25.165173 ], [ 121.640625, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.726562, 41.640078 ], [ 129.726562, 40.847060 ], [ 129.550781, 40.847060 ], [ 129.550781, 40.713956 ], [ 129.199219, 40.713956 ], [ 129.199219, 40.580585 ], [ 129.023438, 40.580585 ], [ 129.023438, 40.313043 ], [ 128.847656, 40.313043 ], [ 128.847656, 40.178873 ], [ 128.496094, 40.178873 ], [ 128.496094, 40.044438 ], [ 127.968750, 40.044438 ], [ 127.968750, 39.909736 ], [ 127.792969, 39.909736 ], [ 127.792969, 39.774769 ], [ 127.617188, 39.774769 ], [ 127.617188, 39.504041 ], [ 127.441406, 39.504041 ], [ 127.441406, 39.095963 ], [ 127.792969, 39.095963 ], [ 127.792969, 38.959409 ], [ 127.968750, 38.959409 ], [ 127.968750, 38.822591 ], [ 128.144531, 38.822591 ], [ 128.144531, 38.548165 ], [ 128.320312, 38.548165 ], [ 128.320312, 38.410558 ], [ 128.144531, 38.410558 ], [ 128.144531, 38.272689 ], [ 127.089844, 38.272689 ], [ 127.089844, 38.134557 ], [ 126.914062, 38.134557 ], [ 126.914062, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.210938, 37.718590 ], [ 126.035156, 37.718590 ], [ 126.035156, 37.857507 ], [ 125.507812, 37.857507 ], [ 125.507812, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.980469, 37.857507 ], [ 124.980469, 37.996163 ], [ 124.628906, 37.996163 ], [ 124.628906, 38.134557 ], [ 124.804688, 38.134557 ], [ 124.804688, 38.410558 ], [ 124.980469, 38.410558 ], [ 124.980469, 38.548165 ], [ 125.156250, 38.548165 ], [ 125.156250, 39.095963 ], [ 125.332031, 39.095963 ], [ 125.332031, 39.504041 ], [ 124.980469, 39.504041 ], [ 124.980469, 39.639538 ], [ 124.628906, 39.639538 ], [ 124.628906, 39.774769 ], [ 124.277344, 39.774769 ], [ 124.277344, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 40.044438 ], [ 124.628906, 40.044438 ], [ 124.628906, 40.178873 ], [ 124.804688, 40.178873 ], [ 124.804688, 40.313043 ], [ 124.980469, 40.313043 ], [ 124.980469, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.580585 ], [ 125.332031, 40.580585 ], [ 125.332031, 40.713956 ], [ 125.683594, 40.713956 ], [ 125.683594, 40.847060 ], [ 125.859375, 40.847060 ], [ 125.859375, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 41.112469 ], [ 126.386719, 41.112469 ], [ 126.386719, 41.376809 ], [ 126.562500, 41.376809 ], [ 126.562500, 41.508577 ], [ 126.738281, 41.508577 ], [ 126.738281, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.640078 ], [ 129.726562, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.550781, 41.640078 ], [ 129.550781, 40.847060 ], [ 129.199219, 40.847060 ], [ 129.199219, 40.713956 ], [ 129.023438, 40.713956 ], [ 129.023438, 40.580585 ], [ 128.847656, 40.580585 ], [ 128.847656, 40.446947 ], [ 128.671875, 40.446947 ], [ 128.671875, 40.313043 ], [ 128.496094, 40.313043 ], [ 128.496094, 40.178873 ], [ 128.144531, 40.178873 ], [ 128.144531, 40.044438 ], [ 127.968750, 40.044438 ], [ 127.968750, 39.909736 ], [ 127.617188, 39.909736 ], [ 127.617188, 39.774769 ], [ 127.441406, 39.774769 ], [ 127.441406, 39.232253 ], [ 127.265625, 39.232253 ], [ 127.265625, 39.095963 ], [ 127.617188, 39.095963 ], [ 127.617188, 38.959409 ], [ 127.792969, 38.959409 ], [ 127.792969, 38.822591 ], [ 128.144531, 38.822591 ], [ 128.144531, 38.685510 ], [ 128.320312, 38.685510 ], [ 128.320312, 38.548165 ], [ 128.144531, 38.548165 ], [ 128.144531, 38.410558 ], [ 127.441406, 38.410558 ], [ 127.441406, 38.272689 ], [ 126.914062, 38.272689 ], [ 126.914062, 38.134557 ], [ 126.738281, 38.134557 ], [ 126.738281, 37.857507 ], [ 125.507812, 37.857507 ], [ 125.507812, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.980469, 37.857507 ], [ 124.980469, 37.996163 ], [ 124.628906, 37.996163 ], [ 124.628906, 38.134557 ], [ 124.804688, 38.134557 ], [ 124.804688, 38.410558 ], [ 124.980469, 38.410558 ], [ 124.980469, 38.548165 ], [ 125.156250, 38.548165 ], [ 125.156250, 38.822591 ], [ 124.980469, 38.822591 ], [ 124.980469, 39.095963 ], [ 125.156250, 39.095963 ], [ 125.156250, 39.368279 ], [ 125.332031, 39.368279 ], [ 125.332031, 39.504041 ], [ 125.156250, 39.504041 ], [ 125.156250, 39.639538 ], [ 124.804688, 39.639538 ], [ 124.804688, 39.774769 ], [ 124.453125, 39.774769 ], [ 124.453125, 39.909736 ], [ 124.101562, 39.909736 ], [ 124.101562, 40.044438 ], [ 124.277344, 40.044438 ], [ 124.277344, 40.178873 ], [ 124.453125, 40.178873 ], [ 124.453125, 40.313043 ], [ 124.804688, 40.313043 ], [ 124.804688, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.713956 ], [ 125.507812, 40.713956 ], [ 125.507812, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.979898 ], [ 126.035156, 40.979898 ], [ 126.035156, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 41.376809 ], [ 126.386719, 41.376809 ], [ 126.386719, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.640078 ], [ 129.550781, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.496094, 38.410558 ], [ 128.496094, 38.134557 ], [ 128.671875, 38.134557 ], [ 128.671875, 37.996163 ], [ 128.847656, 37.996163 ], [ 128.847656, 37.718590 ], [ 129.023438, 37.718590 ], [ 129.023438, 37.439974 ], [ 129.199219, 37.439974 ], [ 129.199219, 37.020098 ], [ 129.375000, 37.020098 ], [ 129.375000, 36.173357 ], [ 129.550781, 36.173357 ], [ 129.550781, 35.460670 ], [ 129.375000, 35.460670 ], [ 129.375000, 35.317366 ], [ 129.199219, 35.317366 ], [ 129.199219, 35.029996 ], [ 128.671875, 35.029996 ], [ 128.671875, 34.885931 ], [ 128.144531, 34.885931 ], [ 128.144531, 34.741612 ], [ 127.968750, 34.741612 ], [ 127.968750, 34.597042 ], [ 127.617188, 34.597042 ], [ 127.617188, 34.452218 ], [ 126.562500, 34.452218 ], [ 126.562500, 34.597042 ], [ 126.386719, 34.597042 ], [ 126.386719, 35.317366 ], [ 126.562500, 35.317366 ], [ 126.562500, 35.889050 ], [ 126.386719, 35.889050 ], [ 126.386719, 36.173357 ], [ 126.210938, 36.173357 ], [ 126.210938, 36.456636 ], [ 126.035156, 36.456636 ], [ 126.035156, 36.738884 ], [ 126.562500, 36.738884 ], [ 126.562500, 36.879621 ], [ 126.738281, 36.879621 ], [ 126.738281, 37.160317 ], [ 126.562500, 37.160317 ], [ 126.562500, 37.300275 ], [ 126.386719, 37.300275 ], [ 126.386719, 37.579413 ], [ 126.210938, 37.579413 ], [ 126.210938, 37.857507 ], [ 126.914062, 37.857507 ], [ 126.914062, 38.134557 ], [ 127.089844, 38.134557 ], [ 127.089844, 38.272689 ], [ 128.144531, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.496094, 38.410558 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.496094, 38.548165 ], [ 128.496094, 38.272689 ], [ 128.671875, 38.272689 ], [ 128.671875, 37.996163 ], [ 128.847656, 37.996163 ], [ 128.847656, 37.718590 ], [ 129.023438, 37.718590 ], [ 129.023438, 37.439974 ], [ 129.199219, 37.439974 ], [ 129.199219, 37.160317 ], [ 129.375000, 37.160317 ], [ 129.375000, 35.603719 ], [ 129.199219, 35.603719 ], [ 129.199219, 35.317366 ], [ 129.023438, 35.317366 ], [ 129.023438, 35.173808 ], [ 128.671875, 35.173808 ], [ 128.671875, 35.029996 ], [ 128.144531, 35.029996 ], [ 128.144531, 34.885931 ], [ 127.792969, 34.885931 ], [ 127.792969, 34.741612 ], [ 127.441406, 34.741612 ], [ 127.441406, 34.597042 ], [ 126.914062, 34.597042 ], [ 126.914062, 34.452218 ], [ 126.386719, 34.452218 ], [ 126.386719, 34.741612 ], [ 126.210938, 34.741612 ], [ 126.210938, 35.317366 ], [ 126.386719, 35.317366 ], [ 126.386719, 35.889050 ], [ 126.210938, 35.889050 ], [ 126.210938, 36.456636 ], [ 126.035156, 36.456636 ], [ 126.035156, 36.738884 ], [ 126.386719, 36.738884 ], [ 126.386719, 36.879621 ], [ 126.738281, 36.879621 ], [ 126.738281, 37.020098 ], [ 126.562500, 37.020098 ], [ 126.562500, 37.300275 ], [ 126.386719, 37.300275 ], [ 126.386719, 37.439974 ], [ 126.210938, 37.439974 ], [ 126.210938, 37.718590 ], [ 126.035156, 37.718590 ], [ 126.035156, 37.857507 ], [ 126.738281, 37.857507 ], [ 126.738281, 38.134557 ], [ 126.914062, 38.134557 ], [ 126.914062, 38.272689 ], [ 127.441406, 38.272689 ], [ 127.441406, 38.410558 ], [ 128.144531, 38.410558 ], [ 128.144531, 38.548165 ], [ 128.496094, 38.548165 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.683594, 9.622414 ], [ 125.683594, 9.449062 ], [ 126.035156, 9.449062 ], [ 126.035156, 9.275622 ], [ 126.210938, 9.275622 ], [ 126.210938, 8.928487 ], [ 126.386719, 8.928487 ], [ 126.386719, 8.059230 ], [ 126.562500, 8.059230 ], [ 126.562500, 6.839170 ], [ 126.386719, 6.839170 ], [ 126.386719, 6.489983 ], [ 126.035156, 6.489983 ], [ 126.035156, 7.013668 ], [ 125.859375, 7.013668 ], [ 125.859375, 7.188101 ], [ 125.683594, 7.188101 ], [ 125.683594, 7.013668 ], [ 125.507812, 7.013668 ], [ 125.507812, 6.839170 ], [ 125.332031, 6.839170 ], [ 125.332031, 6.489983 ], [ 125.507812, 6.489983 ], [ 125.507812, 6.140555 ], [ 125.683594, 6.140555 ], [ 125.683594, 5.790897 ], [ 125.507812, 5.790897 ], [ 125.507812, 5.615986 ], [ 124.980469, 5.615986 ], [ 124.980469, 5.790897 ], [ 124.628906, 5.790897 ], [ 124.628906, 5.965754 ], [ 124.277344, 5.965754 ], [ 124.277344, 6.315299 ], [ 124.101562, 6.315299 ], [ 124.101562, 6.664608 ], [ 123.925781, 6.664608 ], [ 123.925781, 6.839170 ], [ 124.101562, 6.839170 ], [ 124.101562, 7.188101 ], [ 124.277344, 7.188101 ], [ 124.277344, 7.362467 ], [ 124.101562, 7.362467 ], [ 124.101562, 7.536764 ], [ 123.750000, 7.536764 ], [ 123.750000, 7.710992 ], [ 123.398438, 7.710992 ], [ 123.398438, 7.362467 ], [ 122.695312, 7.362467 ], [ 122.695312, 7.188101 ], [ 122.519531, 7.188101 ], [ 122.519531, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 6.839170 ], [ 122.167969, 6.839170 ], [ 122.167969, 7.013668 ], [ 121.992188, 7.013668 ], [ 121.992188, 7.362467 ], [ 122.167969, 7.362467 ], [ 122.167969, 7.710992 ], [ 122.343750, 7.710992 ], [ 122.343750, 8.059230 ], [ 122.695312, 8.059230 ], [ 122.695312, 8.233237 ], [ 123.046875, 8.233237 ], [ 123.046875, 8.407168 ], [ 123.398438, 8.407168 ], [ 123.398438, 8.581021 ], [ 123.750000, 8.581021 ], [ 123.750000, 8.233237 ], [ 124.277344, 8.233237 ], [ 124.277344, 8.407168 ], [ 124.628906, 8.407168 ], [ 124.628906, 8.754795 ], [ 124.804688, 8.754795 ], [ 124.804688, 8.928487 ], [ 125.507812, 8.928487 ], [ 125.507812, 9.275622 ], [ 125.332031, 9.275622 ], [ 125.332031, 9.622414 ], [ 125.683594, 9.622414 ] ] ], [ [ [ 121.289062, 18.479609 ], [ 121.289062, 18.312811 ], [ 121.640625, 18.312811 ], [ 121.640625, 18.145852 ], [ 121.992188, 18.145852 ], [ 121.992188, 18.312811 ], [ 122.343750, 18.312811 ], [ 122.343750, 17.978733 ], [ 122.167969, 17.978733 ], [ 122.167969, 17.644022 ], [ 122.343750, 17.644022 ], [ 122.343750, 17.308688 ], [ 122.519531, 17.308688 ], [ 122.519531, 16.804541 ], [ 122.343750, 16.804541 ], [ 122.343750, 16.467695 ], [ 122.167969, 16.467695 ], [ 122.167969, 16.130262 ], [ 121.816406, 16.130262 ], [ 121.816406, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 15.453680 ], [ 121.464844, 15.453680 ], [ 121.464844, 14.774883 ], [ 121.640625, 14.774883 ], [ 121.640625, 14.434680 ], [ 121.816406, 14.434680 ], [ 121.816406, 14.264383 ], [ 122.871094, 14.264383 ], [ 122.871094, 14.093957 ], [ 123.222656, 14.093957 ], [ 123.222656, 13.923404 ], [ 123.574219, 13.923404 ], [ 123.574219, 13.752725 ], [ 123.925781, 13.752725 ], [ 123.925781, 13.068777 ], [ 124.101562, 13.068777 ], [ 124.101562, 12.554564 ], [ 123.925781, 12.554564 ], [ 123.925781, 12.726084 ], [ 123.574219, 12.726084 ], [ 123.574219, 12.897489 ], [ 123.222656, 12.897489 ], [ 123.222656, 13.068777 ], [ 123.046875, 13.068777 ], [ 123.046875, 13.410994 ], [ 122.695312, 13.410994 ], [ 122.695312, 13.239945 ], [ 122.519531, 13.239945 ], [ 122.519531, 13.410994 ], [ 122.167969, 13.410994 ], [ 122.167969, 13.581921 ], [ 121.992188, 13.581921 ], [ 121.992188, 13.752725 ], [ 121.640625, 13.752725 ], [ 121.640625, 13.581921 ], [ 120.937500, 13.581921 ], [ 120.937500, 13.752725 ], [ 120.585938, 13.752725 ], [ 120.585938, 14.093957 ], [ 120.761719, 14.093957 ], [ 120.761719, 14.434680 ], [ 120.937500, 14.434680 ], [ 120.937500, 14.604847 ], [ 120.585938, 14.604847 ], [ 120.585938, 14.434680 ], [ 120.410156, 14.434680 ], [ 120.410156, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.774883 ], [ 120.058594, 14.774883 ], [ 120.058594, 15.114553 ], [ 119.882812, 15.114553 ], [ 119.882812, 16.130262 ], [ 120.058594, 16.130262 ], [ 120.058594, 15.961329 ], [ 120.234375, 15.961329 ], [ 120.234375, 16.804541 ], [ 120.410156, 16.804541 ], [ 120.410156, 17.811456 ], [ 120.585938, 17.811456 ], [ 120.585938, 18.145852 ], [ 120.761719, 18.145852 ], [ 120.761719, 18.479609 ], [ 121.289062, 18.479609 ] ] ], [ [ [ 122.167969, 11.695273 ], [ 122.167969, 11.523088 ], [ 123.046875, 11.523088 ], [ 123.046875, 11.005904 ], [ 122.871094, 11.005904 ], [ 122.871094, 10.833306 ], [ 123.398438, 10.833306 ], [ 123.398438, 11.005904 ], [ 123.574219, 11.005904 ], [ 123.574219, 10.660608 ], [ 123.398438, 10.660608 ], [ 123.398438, 10.314919 ], [ 123.574219, 10.314919 ], [ 123.574219, 10.487812 ], [ 123.750000, 10.487812 ], [ 123.750000, 10.833306 ], [ 123.925781, 10.833306 ], [ 123.925781, 11.005904 ], [ 124.101562, 11.005904 ], [ 124.101562, 10.660608 ], [ 123.925781, 10.660608 ], [ 123.925781, 10.141932 ], [ 123.750000, 10.141932 ], [ 123.750000, 9.968851 ], [ 123.574219, 9.968851 ], [ 123.574219, 9.795678 ], [ 123.398438, 9.795678 ], [ 123.398438, 9.449062 ], [ 123.222656, 9.449062 ], [ 123.222656, 9.102097 ], [ 122.871094, 9.102097 ], [ 122.871094, 9.275622 ], [ 122.695312, 9.275622 ], [ 122.695312, 9.449062 ], [ 122.519531, 9.449062 ], [ 122.519531, 9.622414 ], [ 122.343750, 9.622414 ], [ 122.343750, 9.795678 ], [ 122.519531, 9.795678 ], [ 122.519531, 9.968851 ], [ 122.695312, 9.968851 ], [ 122.695312, 10.141932 ], [ 122.871094, 10.141932 ], [ 122.871094, 10.660608 ], [ 122.519531, 10.660608 ], [ 122.519531, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.523088 ], [ 121.816406, 11.523088 ], [ 121.816406, 11.695273 ], [ 122.167969, 11.695273 ] ] ], [ [ [ 117.421875, 8.581021 ], [ 117.421875, 8.407168 ], [ 117.246094, 8.407168 ], [ 117.246094, 8.581021 ], [ 117.421875, 8.581021 ] ] ], [ [ [ 119.531250, 10.833306 ], [ 119.707031, 10.833306 ], [ 119.707031, 10.314919 ], [ 119.531250, 10.314919 ], [ 119.531250, 10.141932 ], [ 119.179688, 10.141932 ], [ 119.179688, 9.968851 ], [ 119.003906, 9.968851 ], [ 119.003906, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 9.622414 ], [ 118.652344, 9.622414 ], [ 118.652344, 9.275622 ], [ 118.476562, 9.275622 ], [ 118.476562, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 8.928487 ], [ 117.949219, 8.928487 ], [ 117.949219, 8.754795 ], [ 117.773438, 8.754795 ], [ 117.773438, 8.581021 ], [ 117.421875, 8.581021 ], [ 117.421875, 8.928487 ], [ 117.597656, 8.928487 ], [ 117.597656, 9.102097 ], [ 117.773438, 9.102097 ], [ 117.773438, 9.275622 ], [ 118.125000, 9.275622 ], [ 118.125000, 9.449062 ], [ 118.300781, 9.449062 ], [ 118.300781, 9.622414 ], [ 118.476562, 9.622414 ], [ 118.476562, 9.795678 ], [ 118.652344, 9.795678 ], [ 118.652344, 9.968851 ], [ 118.828125, 9.968851 ], [ 118.828125, 10.141932 ], [ 119.003906, 10.141932 ], [ 119.003906, 10.487812 ], [ 119.179688, 10.487812 ], [ 119.179688, 10.833306 ], [ 119.355469, 10.833306 ], [ 119.355469, 11.178402 ], [ 119.531250, 11.178402 ], [ 119.531250, 10.833306 ] ] ], [ [ [ 125.156250, 12.554564 ], [ 125.156250, 12.382928 ], [ 125.332031, 12.382928 ], [ 125.332031, 12.211180 ], [ 125.507812, 12.211180 ], [ 125.507812, 11.867351 ], [ 125.683594, 11.867351 ], [ 125.683594, 11.178402 ], [ 125.859375, 11.178402 ], [ 125.859375, 11.005904 ], [ 125.507812, 11.005904 ], [ 125.507812, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 11.350797 ], [ 124.980469, 11.350797 ], [ 124.980469, 10.833306 ], [ 125.156250, 10.833306 ], [ 125.156250, 10.487812 ], [ 125.332031, 10.487812 ], [ 125.332031, 10.314919 ], [ 125.156250, 10.314919 ], [ 125.156250, 10.141932 ], [ 124.804688, 10.141932 ], [ 124.804688, 10.833306 ], [ 124.453125, 10.833306 ], [ 124.453125, 11.178402 ], [ 124.277344, 11.178402 ], [ 124.277344, 11.523088 ], [ 124.453125, 11.523088 ], [ 124.453125, 11.350797 ], [ 124.804688, 11.350797 ], [ 124.804688, 11.867351 ], [ 124.628906, 11.867351 ], [ 124.628906, 12.211180 ], [ 124.453125, 12.211180 ], [ 124.453125, 12.382928 ], [ 124.277344, 12.382928 ], [ 124.277344, 12.554564 ], [ 125.156250, 12.554564 ] ] ], [ [ [ 121.113281, 13.410994 ], [ 121.113281, 13.239945 ], [ 121.289062, 13.239945 ], [ 121.289062, 13.068777 ], [ 121.464844, 13.068777 ], [ 121.464844, 12.554564 ], [ 121.289062, 12.554564 ], [ 121.289062, 12.211180 ], [ 121.113281, 12.211180 ], [ 121.113281, 12.382928 ], [ 120.937500, 12.382928 ], [ 120.937500, 12.554564 ], [ 120.761719, 12.554564 ], [ 120.761719, 12.897489 ], [ 120.585938, 12.897489 ], [ 120.585938, 13.239945 ], [ 120.410156, 13.239945 ], [ 120.410156, 13.410994 ], [ 121.113281, 13.410994 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.507812, 9.795678 ], [ 125.507812, 9.622414 ], [ 125.859375, 9.622414 ], [ 125.859375, 9.449062 ], [ 126.210938, 9.449062 ], [ 126.210938, 8.233237 ], [ 126.386719, 8.233237 ], [ 126.386719, 6.839170 ], [ 126.210938, 6.839170 ], [ 126.210938, 6.489983 ], [ 125.859375, 6.489983 ], [ 125.859375, 7.013668 ], [ 125.683594, 7.013668 ], [ 125.683594, 7.188101 ], [ 125.507812, 7.188101 ], [ 125.507812, 6.839170 ], [ 125.332031, 6.839170 ], [ 125.332031, 6.664608 ], [ 125.507812, 6.664608 ], [ 125.507812, 6.315299 ], [ 125.683594, 6.315299 ], [ 125.683594, 5.965754 ], [ 125.507812, 5.965754 ], [ 125.507812, 5.615986 ], [ 125.156250, 5.615986 ], [ 125.156250, 5.790897 ], [ 124.804688, 5.790897 ], [ 124.804688, 5.965754 ], [ 124.453125, 5.965754 ], [ 124.453125, 6.140555 ], [ 124.101562, 6.140555 ], [ 124.101562, 6.664608 ], [ 123.925781, 6.664608 ], [ 123.925781, 7.188101 ], [ 124.101562, 7.188101 ], [ 124.101562, 7.362467 ], [ 123.925781, 7.362467 ], [ 123.925781, 7.536764 ], [ 123.750000, 7.536764 ], [ 123.750000, 7.710992 ], [ 123.398438, 7.710992 ], [ 123.398438, 7.536764 ], [ 122.695312, 7.536764 ], [ 122.695312, 7.362467 ], [ 122.519531, 7.362467 ], [ 122.519531, 7.188101 ], [ 122.167969, 7.188101 ], [ 122.167969, 7.013668 ], [ 121.992188, 7.013668 ], [ 121.992188, 7.188101 ], [ 121.816406, 7.188101 ], [ 121.816406, 7.536764 ], [ 121.992188, 7.536764 ], [ 121.992188, 7.885147 ], [ 122.167969, 7.885147 ], [ 122.167969, 8.059230 ], [ 122.519531, 8.059230 ], [ 122.519531, 8.233237 ], [ 122.871094, 8.233237 ], [ 122.871094, 8.407168 ], [ 123.046875, 8.407168 ], [ 123.046875, 8.581021 ], [ 123.574219, 8.581021 ], [ 123.574219, 8.407168 ], [ 124.277344, 8.407168 ], [ 124.277344, 8.581021 ], [ 124.453125, 8.581021 ], [ 124.453125, 8.754795 ], [ 124.628906, 8.754795 ], [ 124.628906, 9.102097 ], [ 125.332031, 9.102097 ], [ 125.332031, 9.795678 ], [ 125.507812, 9.795678 ] ] ], [ [ [ 124.101562, 12.726084 ], [ 123.925781, 12.726084 ], [ 123.925781, 12.554564 ], [ 123.750000, 12.554564 ], [ 123.750000, 12.726084 ], [ 123.398438, 12.726084 ], [ 123.398438, 12.897489 ], [ 123.222656, 12.897489 ], [ 123.222656, 13.068777 ], [ 123.046875, 13.068777 ], [ 123.046875, 13.410994 ], [ 122.695312, 13.410994 ], [ 122.695312, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.581921 ], [ 122.167969, 13.581921 ], [ 122.167969, 13.752725 ], [ 121.992188, 13.752725 ], [ 121.992188, 13.923404 ], [ 121.640625, 13.923404 ], [ 121.640625, 13.752725 ], [ 120.761719, 13.752725 ], [ 120.761719, 13.923404 ], [ 120.585938, 13.923404 ], [ 120.585938, 14.434680 ], [ 120.937500, 14.434680 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.944785 ], [ 120.058594, 14.944785 ], [ 120.058594, 15.284185 ], [ 119.882812, 15.284185 ], [ 119.882812, 16.299051 ], [ 120.058594, 16.299051 ], [ 120.058594, 16.130262 ], [ 120.234375, 16.130262 ], [ 120.234375, 17.811456 ], [ 120.410156, 17.811456 ], [ 120.410156, 18.312811 ], [ 120.585938, 18.312811 ], [ 120.585938, 18.646245 ], [ 121.289062, 18.646245 ], [ 121.289062, 18.479609 ], [ 121.640625, 18.479609 ], [ 121.640625, 18.312811 ], [ 122.167969, 18.312811 ], [ 122.167969, 17.476432 ], [ 122.343750, 17.476432 ], [ 122.343750, 16.636192 ], [ 122.167969, 16.636192 ], [ 122.167969, 16.130262 ], [ 121.816406, 16.130262 ], [ 121.816406, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 15.623037 ], [ 121.464844, 15.623037 ], [ 121.464844, 14.774883 ], [ 121.640625, 14.774883 ], [ 121.640625, 14.434680 ], [ 121.816406, 14.434680 ], [ 121.816406, 14.264383 ], [ 122.519531, 14.264383 ], [ 122.519531, 14.434680 ], [ 122.871094, 14.434680 ], [ 122.871094, 14.264383 ], [ 123.222656, 14.264383 ], [ 123.222656, 14.093957 ], [ 123.574219, 14.093957 ], [ 123.574219, 13.923404 ], [ 123.925781, 13.923404 ], [ 123.925781, 13.581921 ], [ 123.750000, 13.581921 ], [ 123.750000, 13.068777 ], [ 124.101562, 13.068777 ], [ 124.101562, 12.726084 ] ] ], [ [ [ 122.167969, 11.867351 ], [ 122.167969, 11.695273 ], [ 123.046875, 11.695273 ], [ 123.046875, 11.005904 ], [ 123.398438, 11.005904 ], [ 123.398438, 10.660608 ], [ 123.574219, 10.660608 ], [ 123.574219, 10.833306 ], [ 123.750000, 10.833306 ], [ 123.750000, 11.178402 ], [ 123.925781, 11.178402 ], [ 123.925781, 10.141932 ], [ 123.750000, 10.141932 ], [ 123.750000, 9.968851 ], [ 123.574219, 9.968851 ], [ 123.574219, 9.795678 ], [ 123.398438, 9.795678 ], [ 123.398438, 9.449062 ], [ 123.222656, 9.449062 ], [ 123.222656, 9.275622 ], [ 123.046875, 9.275622 ], [ 123.046875, 9.102097 ], [ 122.695312, 9.102097 ], [ 122.695312, 9.449062 ], [ 122.519531, 9.449062 ], [ 122.519531, 9.622414 ], [ 122.343750, 9.622414 ], [ 122.343750, 9.968851 ], [ 122.519531, 9.968851 ], [ 122.519531, 10.141932 ], [ 122.695312, 10.141932 ], [ 122.695312, 10.660608 ], [ 122.871094, 10.660608 ], [ 122.871094, 11.005904 ], [ 122.695312, 11.005904 ], [ 122.695312, 10.833306 ], [ 122.519531, 10.833306 ], [ 122.519531, 10.660608 ], [ 122.167969, 10.660608 ], [ 122.167969, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 10.660608 ], [ 121.816406, 10.660608 ], [ 121.816406, 11.178402 ], [ 121.992188, 11.178402 ], [ 121.992188, 11.695273 ], [ 121.816406, 11.695273 ], [ 121.816406, 11.867351 ], [ 122.167969, 11.867351 ] ], [ [ 123.398438, 10.660608 ], [ 123.222656, 10.660608 ], [ 123.222656, 10.314919 ], [ 123.398438, 10.314919 ], [ 123.398438, 10.660608 ] ] ], [ [ [ 119.355469, 11.350797 ], [ 119.355469, 11.005904 ], [ 119.531250, 11.005904 ], [ 119.531250, 10.487812 ], [ 119.355469, 10.487812 ], [ 119.355469, 10.314919 ], [ 119.179688, 10.314919 ], [ 119.179688, 10.141932 ], [ 119.003906, 10.141932 ], [ 119.003906, 9.968851 ], [ 118.828125, 9.968851 ], [ 118.828125, 9.795678 ], [ 118.652344, 9.795678 ], [ 118.652344, 9.449062 ], [ 118.476562, 9.449062 ], [ 118.476562, 9.275622 ], [ 118.300781, 9.275622 ], [ 118.300781, 9.102097 ], [ 117.949219, 9.102097 ], [ 117.949219, 8.928487 ], [ 117.773438, 8.928487 ], [ 117.773438, 8.754795 ], [ 117.597656, 8.754795 ], [ 117.597656, 8.581021 ], [ 117.246094, 8.581021 ], [ 117.246094, 8.754795 ], [ 117.421875, 8.754795 ], [ 117.421875, 8.928487 ], [ 117.597656, 8.928487 ], [ 117.597656, 9.102097 ], [ 117.773438, 9.102097 ], [ 117.773438, 9.275622 ], [ 117.949219, 9.275622 ], [ 117.949219, 9.449062 ], [ 118.125000, 9.449062 ], [ 118.125000, 9.622414 ], [ 118.300781, 9.622414 ], [ 118.300781, 9.795678 ], [ 118.476562, 9.795678 ], [ 118.476562, 10.141932 ], [ 118.652344, 10.141932 ], [ 118.652344, 10.314919 ], [ 118.828125, 10.314919 ], [ 118.828125, 10.660608 ], [ 119.003906, 10.660608 ], [ 119.003906, 11.005904 ], [ 119.179688, 11.005904 ], [ 119.179688, 11.350797 ], [ 119.355469, 11.350797 ] ] ], [ [ [ 124.101562, 12.726084 ], [ 124.453125, 12.726084 ], [ 124.453125, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 12.382928 ], [ 125.332031, 12.382928 ], [ 125.332031, 11.867351 ], [ 125.507812, 11.867351 ], [ 125.507812, 11.350797 ], [ 125.683594, 11.350797 ], [ 125.683594, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 11.350797 ], [ 124.980469, 11.350797 ], [ 124.980469, 10.660608 ], [ 125.156250, 10.660608 ], [ 125.156250, 10.314919 ], [ 124.804688, 10.314919 ], [ 124.804688, 10.141932 ], [ 124.628906, 10.141932 ], [ 124.628906, 11.005904 ], [ 124.453125, 11.005904 ], [ 124.453125, 11.178402 ], [ 124.277344, 11.178402 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.628906, 11.867351 ], [ 124.628906, 12.039321 ], [ 124.453125, 12.039321 ], [ 124.453125, 12.382928 ], [ 124.277344, 12.382928 ], [ 124.277344, 12.554564 ], [ 124.101562, 12.554564 ], [ 124.101562, 12.726084 ] ] ], [ [ [ 121.113281, 13.581921 ], [ 121.113281, 13.410994 ], [ 121.289062, 13.410994 ], [ 121.289062, 13.068777 ], [ 121.464844, 13.068777 ], [ 121.464844, 12.726084 ], [ 121.289062, 12.726084 ], [ 121.289062, 12.382928 ], [ 121.113281, 12.382928 ], [ 121.113281, 12.211180 ], [ 120.937500, 12.211180 ], [ 120.937500, 12.554564 ], [ 120.761719, 12.554564 ], [ 120.761719, 12.726084 ], [ 120.585938, 12.726084 ], [ 120.585938, 13.068777 ], [ 120.410156, 13.068777 ], [ 120.410156, 13.410994 ], [ 120.234375, 13.410994 ], [ 120.234375, 13.581921 ], [ 121.113281, 13.581921 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.488281, 5.266008 ], [ 115.488281, 4.565474 ], [ 115.312500, 4.565474 ], [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.785156, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.039618 ], [ 114.433594, 4.039618 ], [ 114.433594, 4.390229 ], [ 114.257812, 4.390229 ], [ 114.257812, 4.565474 ], [ 114.433594, 4.565474 ], [ 114.433594, 4.740675 ], [ 114.609375, 4.740675 ], [ 114.609375, 4.915833 ], [ 114.785156, 4.915833 ], [ 114.785156, 5.090944 ], [ 115.136719, 5.090944 ], [ 115.136719, 5.266008 ], [ 115.488281, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 5.441022 ], [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.785156, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.039618 ], [ 114.433594, 4.039618 ], [ 114.433594, 4.214943 ], [ 114.257812, 4.214943 ], [ 114.257812, 4.390229 ], [ 114.082031, 4.390229 ], [ 114.082031, 4.565474 ], [ 114.257812, 4.565474 ], [ 114.257812, 4.740675 ], [ 114.433594, 4.740675 ], [ 114.433594, 4.915833 ], [ 114.609375, 4.915833 ], [ 114.609375, 5.090944 ], [ 114.785156, 5.090944 ], [ 114.785156, 5.266008 ], [ 115.136719, 5.266008 ], [ 115.136719, 5.441022 ], [ 115.312500, 5.441022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.945312, 34.307144 ], [ 133.242188, 34.307144 ], [ 133.242188, 34.161818 ], [ 132.890625, 34.161818 ], [ 132.890625, 34.016242 ], [ 132.539062, 34.016242 ], [ 132.539062, 33.870416 ], [ 130.957031, 33.870416 ], [ 130.957031, 33.724340 ], [ 131.132812, 33.724340 ], [ 131.132812, 33.578015 ], [ 131.308594, 33.578015 ], [ 131.308594, 33.431441 ], [ 131.660156, 33.431441 ], [ 131.660156, 33.284620 ], [ 131.835938, 33.284620 ], [ 131.835938, 33.137551 ], [ 132.011719, 33.137551 ], [ 132.011719, 32.842674 ], [ 131.835938, 32.842674 ], [ 131.835938, 32.398516 ], [ 131.660156, 32.398516 ], [ 131.660156, 32.101190 ], [ 131.484375, 32.101190 ], [ 131.484375, 31.653381 ], [ 131.308594, 31.653381 ], [ 131.308594, 31.353637 ], [ 131.132812, 31.353637 ], [ 131.132812, 31.203405 ], [ 130.781250, 31.203405 ], [ 130.781250, 31.052934 ], [ 130.429688, 31.052934 ], [ 130.429688, 31.203405 ], [ 130.253906, 31.203405 ], [ 130.253906, 31.802893 ], [ 130.429688, 31.802893 ], [ 130.429688, 32.249974 ], [ 130.253906, 32.249974 ], [ 130.253906, 32.398516 ], [ 129.902344, 32.398516 ], [ 129.902344, 32.546813 ], [ 129.726562, 32.546813 ], [ 129.726562, 32.842674 ], [ 129.550781, 32.842674 ], [ 129.550781, 33.137551 ], [ 129.375000, 33.137551 ], [ 129.375000, 33.284620 ], [ 129.726562, 33.284620 ], [ 129.726562, 33.431441 ], [ 130.253906, 33.431441 ], [ 130.253906, 33.578015 ], [ 130.605469, 33.578015 ], [ 130.605469, 33.870416 ], [ 130.781250, 33.870416 ], [ 130.781250, 34.016242 ], [ 130.957031, 34.016242 ], [ 130.957031, 34.161818 ], [ 131.132812, 34.161818 ], [ 131.132812, 34.307144 ], [ 131.308594, 34.307144 ], [ 131.308594, 34.452218 ], [ 131.660156, 34.452218 ], [ 131.660156, 34.597042 ], [ 131.835938, 34.597042 ], [ 131.835938, 34.741612 ], [ 132.011719, 34.741612 ], [ 132.011719, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.173808 ], [ 132.363281, 35.173808 ], [ 132.363281, 35.317366 ], [ 132.539062, 35.317366 ], [ 132.539062, 35.460670 ], [ 133.242188, 35.460670 ], [ 133.242188, 35.603719 ], [ 134.296875, 35.603719 ], [ 134.296875, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.351562, 35.603719 ], [ 135.351562, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.603719 ], [ 135.878906, 35.603719 ], [ 135.878906, 33.431441 ], [ 135.703125, 33.431441 ], [ 135.703125, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.175781, 33.724340 ], [ 135.175781, 34.161818 ], [ 135.000000, 34.161818 ], [ 135.000000, 34.597042 ], [ 134.648438, 34.597042 ], [ 134.648438, 34.452218 ], [ 133.945312, 34.452218 ], [ 133.945312, 34.307144 ] ] ], [ [ [ 133.945312, 34.307144 ], [ 134.121094, 34.307144 ], [ 134.121094, 34.161818 ], [ 134.648438, 34.161818 ], [ 134.648438, 34.016242 ], [ 134.824219, 34.016242 ], [ 134.824219, 33.724340 ], [ 134.648438, 33.724340 ], [ 134.648438, 33.578015 ], [ 134.472656, 33.578015 ], [ 134.472656, 33.284620 ], [ 134.296875, 33.284620 ], [ 134.296875, 33.137551 ], [ 133.945312, 33.137551 ], [ 133.945312, 33.431441 ], [ 133.417969, 33.431441 ], [ 133.417969, 33.284620 ], [ 133.242188, 33.284620 ], [ 133.242188, 32.990236 ], [ 133.066406, 32.990236 ], [ 133.066406, 32.694866 ], [ 132.714844, 32.694866 ], [ 132.714844, 32.842674 ], [ 132.363281, 32.842674 ], [ 132.363281, 33.431441 ], [ 132.539062, 33.431441 ], [ 132.539062, 33.724340 ], [ 132.714844, 33.724340 ], [ 132.714844, 33.870416 ], [ 132.890625, 33.870416 ], [ 132.890625, 34.016242 ], [ 133.593750, 34.016242 ], [ 133.593750, 34.161818 ], [ 133.945312, 34.161818 ], [ 133.945312, 34.307144 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 35.746512 ], [ 135.878906, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.597042 ], [ 134.296875, 34.597042 ], [ 134.296875, 34.452218 ], [ 133.066406, 34.452218 ], [ 133.066406, 34.307144 ], [ 132.714844, 34.307144 ], [ 132.714844, 34.161818 ], [ 132.363281, 34.161818 ], [ 132.363281, 34.016242 ], [ 130.957031, 34.016242 ], [ 130.957031, 33.870416 ], [ 131.132812, 33.870416 ], [ 131.132812, 33.724340 ], [ 131.308594, 33.724340 ], [ 131.308594, 33.578015 ], [ 131.484375, 33.578015 ], [ 131.484375, 33.431441 ], [ 131.660156, 33.431441 ], [ 131.660156, 33.284620 ], [ 131.835938, 33.284620 ], [ 131.835938, 32.990236 ], [ 131.660156, 32.990236 ], [ 131.660156, 32.398516 ], [ 131.484375, 32.398516 ], [ 131.484375, 31.802893 ], [ 131.308594, 31.802893 ], [ 131.308594, 31.353637 ], [ 131.132812, 31.353637 ], [ 131.132812, 31.203405 ], [ 130.781250, 31.203405 ], [ 130.781250, 31.052934 ], [ 130.429688, 31.052934 ], [ 130.429688, 31.203405 ], [ 130.253906, 31.203405 ], [ 130.253906, 31.353637 ], [ 130.078125, 31.353637 ], [ 130.078125, 31.653381 ], [ 130.253906, 31.653381 ], [ 130.253906, 32.101190 ], [ 130.429688, 32.101190 ], [ 130.429688, 32.398516 ], [ 130.078125, 32.398516 ], [ 130.078125, 32.546813 ], [ 129.726562, 32.546813 ], [ 129.726562, 32.842674 ], [ 129.550781, 32.842674 ], [ 129.550781, 33.137551 ], [ 129.375000, 33.137551 ], [ 129.375000, 33.431441 ], [ 129.726562, 33.431441 ], [ 129.726562, 33.578015 ], [ 130.078125, 33.578015 ], [ 130.078125, 33.724340 ], [ 130.429688, 33.724340 ], [ 130.429688, 34.016242 ], [ 130.605469, 34.016242 ], [ 130.605469, 34.161818 ], [ 130.781250, 34.161818 ], [ 130.781250, 34.307144 ], [ 130.957031, 34.307144 ], [ 130.957031, 34.452218 ], [ 131.308594, 34.452218 ], [ 131.308594, 34.597042 ], [ 131.484375, 34.597042 ], [ 131.484375, 34.741612 ], [ 131.835938, 34.741612 ], [ 131.835938, 34.885931 ], [ 132.011719, 34.885931 ], [ 132.011719, 35.029996 ], [ 132.187500, 35.029996 ], [ 132.187500, 35.173808 ], [ 132.363281, 35.173808 ], [ 132.363281, 35.317366 ], [ 132.539062, 35.317366 ], [ 132.539062, 35.460670 ], [ 133.066406, 35.460670 ], [ 133.066406, 35.603719 ], [ 134.121094, 35.603719 ], [ 134.121094, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.703125, 35.603719 ], [ 135.703125, 35.746512 ], [ 135.878906, 35.746512 ] ] ], [ [ [ 134.121094, 34.307144 ], [ 134.121094, 34.161818 ], [ 134.472656, 34.161818 ], [ 134.472656, 34.016242 ], [ 134.648438, 34.016242 ], [ 134.648438, 33.724340 ], [ 134.472656, 33.724340 ], [ 134.472656, 33.578015 ], [ 134.296875, 33.578015 ], [ 134.296875, 33.284620 ], [ 133.945312, 33.284620 ], [ 133.945312, 33.431441 ], [ 133.769531, 33.431441 ], [ 133.769531, 33.578015 ], [ 133.593750, 33.578015 ], [ 133.593750, 33.431441 ], [ 133.242188, 33.431441 ], [ 133.242188, 33.284620 ], [ 133.066406, 33.284620 ], [ 133.066406, 32.990236 ], [ 132.890625, 32.990236 ], [ 132.890625, 32.842674 ], [ 132.539062, 32.842674 ], [ 132.539062, 32.990236 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.578015 ], [ 132.539062, 33.578015 ], [ 132.539062, 33.870416 ], [ 132.714844, 33.870416 ], [ 132.714844, 34.016242 ], [ 132.890625, 34.016242 ], [ 132.890625, 34.161818 ], [ 133.066406, 34.161818 ], [ 133.066406, 34.016242 ], [ 133.593750, 34.016242 ], [ 133.593750, 34.307144 ], [ 134.121094, 34.307144 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -0.878872 ], [ 131.484375, -0.878872 ], [ 131.484375, -0.703107 ], [ 132.011719, -0.703107 ], [ 132.011719, -0.527336 ], [ 132.363281, -0.527336 ], [ 132.363281, -0.351560 ], [ 132.714844, -0.351560 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 125.156250, 1.230374 ], [ 124.980469, 1.230374 ], [ 124.980469, 0.878872 ], [ 124.804688, 0.878872 ], [ 124.804688, 0.703107 ], [ 124.628906, 0.703107 ], [ 124.628906, 0.351560 ], [ 124.277344, 0.351560 ], [ 124.277344, 0.175781 ], [ 123.046875, 0.175781 ], [ 123.046875, 0.351560 ], [ 120.761719, 0.351560 ], [ 120.761719, 0.175781 ], [ 120.234375, 0.175781 ], [ 120.234375, -0.175781 ], [ 120.058594, -0.175781 ], [ 120.058594, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -0.878872 ], [ 119.531250, -0.878872 ], [ 119.531250, -0.703107 ], [ 119.707031, -0.703107 ], [ 119.707031, -0.175781 ], [ 119.882812, -0.175781 ], [ 119.882812, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.527336 ], [ 120.234375, 0.527336 ], [ 120.234375, 0.703107 ], [ 120.410156, 0.703107 ], [ 120.410156, 0.878872 ], [ 120.761719, 0.878872 ], [ 120.761719, 1.054628 ], [ 120.937500, 1.054628 ], [ 120.937500, 1.230374 ], [ 121.113281, 1.230374 ], [ 121.113281, 1.054628 ], [ 122.167969, 1.054628 ], [ 122.167969, 0.878872 ], [ 124.277344, 0.878872 ], [ 124.277344, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 1.230374 ], [ 124.804688, 1.230374 ], [ 124.804688, 1.406109 ], [ 125.156250, 1.406109 ] ] ], [ [ [ 127.968750, 1.933227 ], [ 127.968750, 1.581830 ], [ 128.671875, 1.581830 ], [ 128.671875, 0.175781 ], [ 128.320312, 0.175781 ], [ 128.320312, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.527336 ], [ 127.617188, -0.527336 ], [ 127.617188, 0.351560 ], [ 127.441406, 0.351560 ], [ 127.441406, 1.406109 ], [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.792969, 1.757537 ], [ 127.792969, 1.933227 ], [ 127.968750, 1.933227 ] ] ], [ [ [ 117.421875, 4.390229 ], [ 117.421875, 4.214943 ], [ 117.949219, 4.214943 ], [ 117.949219, 4.039618 ], [ 117.773438, 4.039618 ], [ 117.773438, 3.688855 ], [ 117.597656, 3.688855 ], [ 117.597656, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 3.162456 ], [ 117.246094, 3.162456 ], [ 117.246094, 2.986927 ], [ 117.421875, 2.986927 ], [ 117.421875, 2.811371 ], [ 117.597656, 2.811371 ], [ 117.597656, 2.635789 ], [ 117.773438, 2.635789 ], [ 117.773438, 2.460181 ], [ 117.949219, 2.460181 ], [ 117.949219, 2.284551 ], [ 118.125000, 2.284551 ], [ 118.125000, 1.933227 ], [ 117.949219, 1.933227 ], [ 117.949219, 1.581830 ], [ 118.125000, 1.581830 ], [ 118.125000, 1.406109 ], [ 118.300781, 1.406109 ], [ 118.300781, 1.230374 ], [ 118.652344, 1.230374 ], [ 118.652344, 1.054628 ], [ 118.828125, 1.054628 ], [ 118.828125, 0.878872 ], [ 118.476562, 0.878872 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.527336 ], [ 117.597656, 0.527336 ], [ 117.597656, 0.175781 ], [ 117.421875, 0.175781 ], [ 117.421875, -0.351560 ], [ 117.597656, -0.351560 ], [ 117.597656, -0.878872 ], [ 109.335938, -0.878872 ], [ 109.335938, -0.703107 ], [ 109.160156, -0.703107 ], [ 109.160156, -0.175781 ], [ 108.984375, -0.175781 ], [ 108.984375, 1.406109 ], [ 109.160156, 1.406109 ], [ 109.160156, 1.581830 ], [ 109.511719, 1.581830 ], [ 109.511719, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.581830 ], [ 109.863281, 1.581830 ], [ 109.863281, 1.230374 ], [ 110.039062, 1.230374 ], [ 110.039062, 1.054628 ], [ 110.214844, 1.054628 ], [ 110.214844, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.390625, 0.703107 ], [ 110.742188, 0.703107 ], [ 110.742188, 0.878872 ], [ 111.093750, 0.878872 ], [ 111.093750, 1.054628 ], [ 111.269531, 1.054628 ], [ 111.269531, 0.878872 ], [ 111.972656, 0.878872 ], [ 111.972656, 1.054628 ], [ 112.148438, 1.054628 ], [ 112.148438, 1.230374 ], [ 112.324219, 1.230374 ], [ 112.324219, 1.406109 ], [ 112.675781, 1.406109 ], [ 112.675781, 1.581830 ], [ 113.027344, 1.581830 ], [ 113.027344, 1.406109 ], [ 113.378906, 1.406109 ], [ 113.378906, 1.230374 ], [ 114.257812, 1.230374 ], [ 114.257812, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 1.581830 ], [ 114.785156, 1.581830 ], [ 114.785156, 2.108899 ], [ 114.960938, 2.108899 ], [ 114.960938, 2.460181 ], [ 115.136719, 2.460181 ], [ 115.136719, 2.811371 ], [ 115.312500, 2.811371 ], [ 115.312500, 2.986927 ], [ 115.488281, 2.986927 ], [ 115.488281, 3.337954 ], [ 115.664062, 3.337954 ], [ 115.664062, 4.039618 ], [ 115.839844, 4.039618 ], [ 115.839844, 4.390229 ], [ 117.421875, 4.390229 ] ] ], [ [ [ 96.679688, 5.441022 ], [ 96.679688, 5.266008 ], [ 97.558594, 5.266008 ], [ 97.558594, 5.090944 ], [ 97.734375, 5.090944 ], [ 97.734375, 4.915833 ], [ 97.910156, 4.915833 ], [ 97.910156, 4.740675 ], [ 98.085938, 4.740675 ], [ 98.085938, 4.390229 ], [ 98.261719, 4.390229 ], [ 98.261719, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 4.039618 ], [ 98.613281, 4.039618 ], [ 98.613281, 3.864255 ], [ 98.789062, 3.864255 ], [ 98.789062, 3.688855 ], [ 98.964844, 3.688855 ], [ 98.964844, 3.513421 ], [ 99.140625, 3.513421 ], [ 99.140625, 3.337954 ], [ 99.492188, 3.337954 ], [ 99.492188, 3.162456 ], [ 99.667969, 3.162456 ], [ 99.667969, 2.986927 ], [ 99.843750, 2.986927 ], [ 99.843750, 2.811371 ], [ 100.019531, 2.811371 ], [ 100.019531, 2.635789 ], [ 100.195312, 2.635789 ], [ 100.195312, 2.460181 ], [ 100.371094, 2.460181 ], [ 100.371094, 2.284551 ], [ 100.546875, 2.284551 ], [ 100.546875, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.933227 ], [ 101.777344, 1.933227 ], [ 101.777344, 1.757537 ], [ 102.128906, 1.757537 ], [ 102.128906, 1.581830 ], [ 102.304688, 1.581830 ], [ 102.304688, 1.406109 ], [ 102.480469, 1.406109 ], [ 102.480469, 1.230374 ], [ 102.656250, 1.230374 ], [ 102.656250, 0.878872 ], [ 102.832031, 0.878872 ], [ 102.832031, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.886719, 0.175781 ], [ 103.886719, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.535156, -0.351560 ], [ 103.535156, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -0.878872 ], [ 100.195312, -0.878872 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.351560 ], [ 99.140625, 0.351560 ], [ 99.140625, 0.703107 ], [ 98.964844, 0.703107 ], [ 98.964844, 1.230374 ], [ 98.789062, 1.230374 ], [ 98.789062, 1.581830 ], [ 98.613281, 1.581830 ], [ 98.613281, 1.757537 ], [ 98.437500, 1.757537 ], [ 98.437500, 1.933227 ], [ 98.261719, 1.933227 ], [ 98.261719, 2.108899 ], [ 97.910156, 2.108899 ], [ 97.910156, 2.284551 ], [ 97.734375, 2.284551 ], [ 97.734375, 2.460181 ], [ 97.558594, 2.460181 ], [ 97.558594, 2.811371 ], [ 97.382812, 2.811371 ], [ 97.382812, 3.162456 ], [ 97.207031, 3.162456 ], [ 97.207031, 3.337954 ], [ 97.031250, 3.337954 ], [ 97.031250, 3.513421 ], [ 96.679688, 3.513421 ], [ 96.679688, 3.688855 ], [ 96.503906, 3.688855 ], [ 96.503906, 3.864255 ], [ 96.328125, 3.864255 ], [ 96.328125, 4.039618 ], [ 96.152344, 4.039618 ], [ 96.152344, 4.214943 ], [ 95.976562, 4.214943 ], [ 95.976562, 4.390229 ], [ 95.800781, 4.390229 ], [ 95.800781, 4.565474 ], [ 95.625000, 4.565474 ], [ 95.625000, 4.740675 ], [ 95.449219, 4.740675 ], [ 95.449219, 5.090944 ], [ 95.273438, 5.090944 ], [ 95.273438, 5.441022 ], [ 96.679688, 5.441022 ] ] ], [ [ [ 122.695312, -0.878872 ], [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -0.878872 ], [ 122.695312, -0.878872 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -0.878872 ], [ 131.132812, -0.878872 ], [ 131.132812, -0.703107 ], [ 131.660156, -0.703107 ], [ 131.660156, -0.527336 ], [ 132.187500, -0.527336 ], [ 132.187500, -0.351560 ], [ 132.714844, -0.351560 ] ] ], [ [ [ 125.156250, 1.581830 ], [ 125.156250, 1.406109 ], [ 124.980469, 1.406109 ], [ 124.980469, 1.230374 ], [ 124.804688, 1.230374 ], [ 124.804688, 1.054628 ], [ 124.628906, 1.054628 ], [ 124.628906, 0.703107 ], [ 124.453125, 0.703107 ], [ 124.453125, 0.527336 ], [ 124.101562, 0.527336 ], [ 124.101562, 0.351560 ], [ 123.046875, 0.351560 ], [ 123.046875, 0.527336 ], [ 120.585938, 0.527336 ], [ 120.585938, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, -0.527336 ], [ 120.058594, -0.527336 ], [ 120.058594, -0.878872 ], [ 119.355469, -0.878872 ], [ 119.355469, -0.703107 ], [ 119.531250, -0.703107 ], [ 119.531250, -0.175781 ], [ 119.707031, -0.175781 ], [ 119.707031, 0.351560 ], [ 119.882812, 0.351560 ], [ 119.882812, 0.703107 ], [ 120.058594, 0.703107 ], [ 120.058594, 0.878872 ], [ 120.234375, 0.878872 ], [ 120.234375, 1.054628 ], [ 120.585938, 1.054628 ], [ 120.585938, 1.230374 ], [ 120.761719, 1.230374 ], [ 120.761719, 1.406109 ], [ 120.937500, 1.406109 ], [ 120.937500, 1.230374 ], [ 121.289062, 1.230374 ], [ 121.289062, 1.054628 ], [ 122.167969, 1.054628 ], [ 122.167969, 0.878872 ], [ 123.574219, 0.878872 ], [ 123.574219, 1.054628 ], [ 124.101562, 1.054628 ], [ 124.101562, 1.230374 ], [ 124.453125, 1.230374 ], [ 124.453125, 1.406109 ], [ 124.628906, 1.406109 ], [ 124.628906, 1.581830 ], [ 125.156250, 1.581830 ] ] ], [ [ [ 127.792969, 2.108899 ], [ 127.792969, 1.933227 ], [ 127.968750, 1.933227 ], [ 127.968750, 1.757537 ], [ 128.144531, 1.757537 ], [ 128.144531, 1.581830 ], [ 128.496094, 1.581830 ], [ 128.496094, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.703107 ], [ 128.496094, 0.703107 ], [ 128.496094, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.527336 ], [ 127.968750, 0.527336 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.351560 ], [ 127.617188, -0.351560 ], [ 127.617188, 0.000000 ], [ 127.441406, 0.000000 ], [ 127.441406, 0.703107 ], [ 127.265625, 0.703107 ], [ 127.265625, 1.406109 ], [ 127.441406, 1.406109 ], [ 127.441406, 1.933227 ], [ 127.617188, 1.933227 ], [ 127.617188, 2.108899 ], [ 127.792969, 2.108899 ] ] ], [ [ [ 117.246094, 4.390229 ], [ 117.246094, 4.214943 ], [ 117.773438, 4.214943 ], [ 117.773438, 4.039618 ], [ 117.597656, 4.039618 ], [ 117.597656, 3.688855 ], [ 117.421875, 3.688855 ], [ 117.421875, 3.337954 ], [ 117.246094, 3.337954 ], [ 117.246094, 3.162456 ], [ 117.421875, 3.162456 ], [ 117.421875, 2.986927 ], [ 117.597656, 2.986927 ], [ 117.597656, 2.635789 ], [ 117.773438, 2.635789 ], [ 117.773438, 2.460181 ], [ 117.949219, 2.460181 ], [ 117.949219, 2.108899 ], [ 117.773438, 2.108899 ], [ 117.773438, 1.757537 ], [ 117.949219, 1.757537 ], [ 117.949219, 1.581830 ], [ 118.125000, 1.581830 ], [ 118.125000, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 1.230374 ], [ 118.652344, 1.230374 ], [ 118.652344, 1.054628 ], [ 118.476562, 1.054628 ], [ 118.476562, 0.878872 ], [ 117.773438, 0.878872 ], [ 117.773438, 0.703107 ], [ 117.597656, 0.703107 ], [ 117.597656, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -0.878872 ], [ 109.160156, -0.878872 ], [ 109.160156, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 0.000000 ], [ 108.808594, 0.000000 ], [ 108.808594, 0.878872 ], [ 108.984375, 0.878872 ], [ 108.984375, 1.406109 ], [ 109.160156, 1.406109 ], [ 109.160156, 1.757537 ], [ 109.335938, 1.757537 ], [ 109.335938, 1.933227 ], [ 109.511719, 1.933227 ], [ 109.511719, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.230374 ], [ 109.863281, 1.230374 ], [ 109.863281, 1.054628 ], [ 110.214844, 1.054628 ], [ 110.214844, 0.878872 ], [ 110.917969, 0.878872 ], [ 110.917969, 1.054628 ], [ 111.972656, 1.054628 ], [ 111.972656, 1.230374 ], [ 112.148438, 1.230374 ], [ 112.148438, 1.406109 ], [ 112.324219, 1.406109 ], [ 112.324219, 1.581830 ], [ 113.027344, 1.581830 ], [ 113.027344, 1.406109 ], [ 113.378906, 1.406109 ], [ 113.378906, 1.230374 ], [ 114.082031, 1.230374 ], [ 114.082031, 1.406109 ], [ 114.433594, 1.406109 ], [ 114.433594, 1.581830 ], [ 114.609375, 1.581830 ], [ 114.609375, 1.757537 ], [ 114.785156, 1.757537 ], [ 114.785156, 2.284551 ], [ 114.960938, 2.284551 ], [ 114.960938, 2.635789 ], [ 115.136719, 2.635789 ], [ 115.136719, 2.986927 ], [ 115.312500, 2.986927 ], [ 115.312500, 3.162456 ], [ 115.488281, 3.162456 ], [ 115.488281, 3.513421 ], [ 115.664062, 3.513421 ], [ 115.664062, 4.039618 ], [ 115.839844, 4.039618 ], [ 115.839844, 4.390229 ], [ 117.246094, 4.390229 ] ] ], [ [ [ 95.449219, 5.615986 ], [ 95.449219, 5.441022 ], [ 96.503906, 5.441022 ], [ 96.503906, 5.266008 ], [ 97.382812, 5.266008 ], [ 97.382812, 5.090944 ], [ 97.558594, 5.090944 ], [ 97.558594, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.740675 ], [ 97.910156, 4.740675 ], [ 97.910156, 4.565474 ], [ 98.085938, 4.565474 ], [ 98.085938, 4.390229 ], [ 98.261719, 4.390229 ], [ 98.261719, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 4.039618 ], [ 98.789062, 4.039618 ], [ 98.789062, 3.864255 ], [ 98.964844, 3.864255 ], [ 98.964844, 3.688855 ], [ 99.140625, 3.688855 ], [ 99.140625, 3.513421 ], [ 99.492188, 3.513421 ], [ 99.492188, 3.337954 ], [ 99.667969, 3.337954 ], [ 99.667969, 3.162456 ], [ 99.843750, 3.162456 ], [ 99.843750, 2.811371 ], [ 100.019531, 2.811371 ], [ 100.019531, 2.635789 ], [ 100.195312, 2.635789 ], [ 100.195312, 2.460181 ], [ 100.371094, 2.460181 ], [ 100.371094, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.933227 ], [ 101.777344, 1.933227 ], [ 101.777344, 1.757537 ], [ 102.128906, 1.757537 ], [ 102.128906, 1.581830 ], [ 102.304688, 1.581830 ], [ 102.304688, 1.406109 ], [ 102.480469, 1.406109 ], [ 102.480469, 1.230374 ], [ 102.656250, 1.230374 ], [ 102.656250, 1.054628 ], [ 102.832031, 1.054628 ], [ 102.832031, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.710938, 0.175781 ], [ 103.710938, -0.175781 ], [ 103.535156, -0.175781 ], [ 103.535156, -0.527336 ], [ 103.359375, -0.527336 ], [ 103.359375, -0.878872 ], [ 100.195312, -0.878872 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.175781 ], [ 99.140625, 0.175781 ], [ 99.140625, 0.703107 ], [ 98.964844, 0.703107 ], [ 98.964844, 1.054628 ], [ 98.789062, 1.054628 ], [ 98.789062, 1.406109 ], [ 98.613281, 1.406109 ], [ 98.613281, 1.757537 ], [ 98.437500, 1.757537 ], [ 98.437500, 1.933227 ], [ 98.261719, 1.933227 ], [ 98.261719, 2.108899 ], [ 97.910156, 2.108899 ], [ 97.910156, 2.284551 ], [ 97.558594, 2.284551 ], [ 97.558594, 2.460181 ], [ 97.382812, 2.460181 ], [ 97.382812, 2.811371 ], [ 97.207031, 2.811371 ], [ 97.207031, 3.162456 ], [ 97.031250, 3.162456 ], [ 97.031250, 3.337954 ], [ 96.855469, 3.337954 ], [ 96.855469, 3.513421 ], [ 96.679688, 3.513421 ], [ 96.679688, 3.688855 ], [ 96.503906, 3.688855 ], [ 96.503906, 3.864255 ], [ 96.328125, 3.864255 ], [ 96.328125, 4.039618 ], [ 96.152344, 4.039618 ], [ 96.152344, 4.214943 ], [ 95.976562, 4.214943 ], [ 95.976562, 4.390229 ], [ 95.800781, 4.390229 ], [ 95.800781, 4.565474 ], [ 95.625000, 4.565474 ], [ 95.625000, 4.740675 ], [ 95.449219, 4.740675 ], [ 95.449219, 4.915833 ], [ 95.273438, 4.915833 ], [ 95.273438, 5.615986 ], [ 95.449219, 5.615986 ] ] ], [ [ [ 122.343750, -0.878872 ], [ 122.343750, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -0.527336 ], [ 123.222656, -0.527336 ], [ 123.222656, -0.878872 ], [ 122.343750, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.078367 ], [ 135.703125, 55.078367 ], [ 135.703125, 54.977614 ], [ 135.527344, 54.977614 ], [ 135.527344, 54.876607 ], [ 135.351562, 54.876607 ], [ 135.351562, 54.673831 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.213710 ], [ 135.703125, 44.213710 ], [ 135.703125, 43.961191 ], [ 135.527344, 43.961191 ], [ 135.527344, 43.834527 ], [ 135.351562, 43.834527 ], [ 135.351562, 43.707594 ], [ 135.175781, 43.707594 ], [ 135.175781, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.472656, 43.325178 ], [ 134.472656, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 134.121094, 43.068888 ], [ 134.121094, 42.940339 ], [ 133.769531, 42.940339 ], [ 133.769531, 42.811522 ], [ 132.714844, 42.811522 ], [ 132.714844, 43.068888 ], [ 132.539062, 43.068888 ], [ 132.539062, 43.197167 ], [ 132.187500, 43.197167 ], [ 132.187500, 43.068888 ], [ 131.835938, 43.068888 ], [ 131.835938, 42.940339 ], [ 131.660156, 42.940339 ], [ 131.660156, 42.811522 ], [ 131.484375, 42.811522 ], [ 131.484375, 42.682435 ], [ 131.132812, 42.682435 ], [ 131.132812, 42.553080 ], [ 130.957031, 42.553080 ], [ 130.957031, 42.293564 ], [ 130.605469, 42.293564 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.132812, 43.452919 ], [ 131.308594, 43.452919 ], [ 131.308594, 44.213710 ], [ 131.132812, 44.213710 ], [ 131.132812, 44.715514 ], [ 130.957031, 44.715514 ], [ 130.957031, 44.964798 ], [ 131.132812, 44.964798 ], [ 131.132812, 45.089036 ], [ 131.484375, 45.089036 ], [ 131.484375, 45.213004 ], [ 131.835938, 45.213004 ], [ 131.835938, 45.336702 ], [ 132.011719, 45.336702 ], [ 132.011719, 45.213004 ], [ 132.714844, 45.213004 ], [ 132.714844, 45.089036 ], [ 133.066406, 45.089036 ], [ 133.066406, 45.213004 ], [ 133.242188, 45.213004 ], [ 133.242188, 45.460131 ], [ 133.417969, 45.460131 ], [ 133.417969, 45.706179 ], [ 133.593750, 45.706179 ], [ 133.593750, 45.951150 ], [ 133.769531, 45.951150 ], [ 133.769531, 46.316584 ], [ 133.945312, 46.316584 ], [ 133.945312, 46.800059 ], [ 134.121094, 46.800059 ], [ 134.121094, 47.279229 ], [ 134.296875, 47.279229 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 47.989922 ], [ 134.824219, 47.989922 ], [ 134.824219, 48.224673 ], [ 135.000000, 48.224673 ], [ 135.000000, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 48.341646 ], [ 133.945312, 48.341646 ], [ 133.945312, 48.224673 ], [ 133.417969, 48.224673 ], [ 133.417969, 48.107431 ], [ 133.242188, 48.107431 ], [ 133.242188, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 47.872144 ], [ 132.714844, 47.872144 ], [ 132.714844, 47.754098 ], [ 130.957031, 47.754098 ], [ 130.957031, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.605469, 48.458352 ], [ 130.605469, 48.690960 ], [ 130.429688, 48.690960 ], [ 130.429688, 48.806863 ], [ 130.253906, 48.806863 ], [ 130.253906, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 49.037868 ], [ 129.902344, 49.037868 ], [ 129.902344, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 49.267805 ], [ 129.550781, 49.267805 ], [ 129.550781, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.496675 ], [ 128.847656, 49.496675 ], [ 128.847656, 49.610710 ], [ 127.968750, 49.610710 ], [ 127.968750, 49.724479 ], [ 127.617188, 49.724479 ], [ 127.617188, 49.951220 ], [ 127.441406, 49.951220 ], [ 127.441406, 50.401515 ], [ 127.265625, 50.401515 ], [ 127.265625, 50.847573 ], [ 127.089844, 50.847573 ], [ 127.089844, 51.179343 ], [ 126.914062, 51.179343 ], [ 126.914062, 51.508742 ], [ 126.738281, 51.508742 ], [ 126.738281, 51.727028 ], [ 126.562500, 51.727028 ], [ 126.562500, 51.944265 ], [ 126.386719, 51.944265 ], [ 126.386719, 52.160455 ], [ 126.210938, 52.160455 ], [ 126.210938, 52.375599 ], [ 126.035156, 52.375599 ], [ 126.035156, 52.589701 ], [ 125.859375, 52.589701 ], [ 125.859375, 52.802761 ], [ 125.683594, 52.802761 ], [ 125.683594, 52.908902 ], [ 125.332031, 52.908902 ], [ 125.332031, 53.014783 ], [ 124.980469, 53.014783 ], [ 124.980469, 53.120405 ], [ 124.628906, 53.120405 ], [ 124.628906, 53.225768 ], [ 124.101562, 53.225768 ], [ 124.101562, 53.330873 ], [ 123.750000, 53.330873 ], [ 123.750000, 53.435719 ], [ 121.992188, 53.435719 ], [ 121.992188, 53.330873 ], [ 121.289062, 53.330873 ], [ 121.289062, 53.225768 ], [ 120.937500, 53.225768 ], [ 120.937500, 53.120405 ], [ 120.761719, 53.120405 ], [ 120.761719, 53.014783 ], [ 120.585938, 53.014783 ], [ 120.585938, 52.908902 ], [ 120.410156, 52.908902 ], [ 120.410156, 52.802761 ], [ 120.234375, 52.802761 ], [ 120.234375, 52.696361 ], [ 120.410156, 52.696361 ], [ 120.410156, 52.589701 ], [ 120.585938, 52.589701 ], [ 120.585938, 52.482780 ], [ 120.761719, 52.482780 ], [ 120.761719, 51.835778 ], [ 120.585938, 51.835778 ], [ 120.585938, 51.727028 ], [ 120.410156, 51.727028 ], [ 120.410156, 51.618017 ], [ 120.234375, 51.618017 ], [ 120.234375, 51.508742 ], [ 120.058594, 51.508742 ], [ 120.058594, 51.289406 ], [ 119.882812, 51.289406 ], [ 119.882812, 51.069017 ], [ 119.707031, 51.069017 ], [ 119.707031, 50.847573 ], [ 119.531250, 50.847573 ], [ 119.531250, 50.625073 ], [ 119.355469, 50.625073 ], [ 119.355469, 50.064192 ], [ 119.179688, 50.064192 ], [ 119.179688, 49.951220 ], [ 118.828125, 49.951220 ], [ 118.828125, 49.837982 ], [ 118.652344, 49.837982 ], [ 118.652344, 49.724479 ], [ 118.476562, 49.724479 ], [ 118.476562, 49.610710 ], [ 118.125000, 49.610710 ], [ 118.125000, 49.496675 ], [ 117.597656, 49.496675 ], [ 117.597656, 49.610710 ], [ 117.246094, 49.610710 ], [ 117.246094, 49.724479 ], [ 116.894531, 49.724479 ], [ 116.894531, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 49.951220 ], [ 115.136719, 49.951220 ], [ 115.136719, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 50.176898 ], [ 114.609375, 50.176898 ], [ 114.609375, 50.289339 ], [ 114.433594, 50.289339 ], [ 114.433594, 50.176898 ], [ 114.257812, 50.176898 ], [ 114.257812, 50.064192 ], [ 113.906250, 50.064192 ], [ 113.906250, 49.951220 ], [ 113.730469, 49.951220 ], [ 113.730469, 49.837982 ], [ 113.554688, 49.837982 ], [ 113.554688, 49.724479 ], [ 113.203125, 49.724479 ], [ 113.203125, 49.610710 ], [ 113.027344, 49.610710 ], [ 113.027344, 49.496675 ], [ 112.324219, 49.496675 ], [ 112.324219, 49.382373 ], [ 111.445312, 49.382373 ], [ 111.445312, 49.267805 ], [ 111.093750, 49.267805 ], [ 111.093750, 49.152970 ], [ 109.863281, 49.152970 ], [ 109.863281, 49.267805 ], [ 108.281250, 49.267805 ], [ 108.281250, 49.496675 ], [ 108.105469, 49.496675 ], [ 108.105469, 49.724479 ], [ 107.929688, 49.724479 ], [ 107.929688, 49.837982 ], [ 107.753906, 49.837982 ], [ 107.753906, 49.951220 ], [ 107.402344, 49.951220 ], [ 107.402344, 50.064192 ], [ 107.226562, 50.064192 ], [ 107.226562, 50.176898 ], [ 106.875000, 50.176898 ], [ 106.875000, 50.289339 ], [ 106.171875, 50.289339 ], [ 106.171875, 50.401515 ], [ 105.292969, 50.401515 ], [ 105.292969, 50.289339 ], [ 104.414062, 50.289339 ], [ 104.414062, 50.176898 ], [ 104.062500, 50.176898 ], [ 104.062500, 50.064192 ], [ 103.359375, 50.064192 ], [ 103.359375, 50.176898 ], [ 103.007812, 50.176898 ], [ 103.007812, 50.289339 ], [ 102.656250, 50.289339 ], [ 102.656250, 50.401515 ], [ 102.304688, 50.401515 ], [ 102.304688, 50.847573 ], [ 102.128906, 50.847573 ], [ 102.128906, 51.289406 ], [ 101.777344, 51.289406 ], [ 101.777344, 51.399206 ], [ 101.074219, 51.399206 ], [ 101.074219, 51.508742 ], [ 100.371094, 51.508742 ], [ 100.371094, 51.618017 ], [ 99.843750, 51.618017 ], [ 99.843750, 51.727028 ], [ 99.492188, 51.727028 ], [ 99.492188, 51.835778 ], [ 99.140625, 51.835778 ], [ 99.140625, 51.944265 ], [ 98.613281, 51.944265 ], [ 98.613281, 51.727028 ], [ 98.437500, 51.727028 ], [ 98.437500, 51.508742 ], [ 98.261719, 51.508742 ], [ 98.261719, 51.289406 ], [ 98.085938, 51.289406 ], [ 98.085938, 51.069017 ], [ 97.910156, 51.069017 ], [ 97.910156, 50.736455 ], [ 98.085938, 50.736455 ], [ 98.085938, 50.513427 ], [ 98.261719, 50.513427 ], [ 98.261719, 50.289339 ], [ 98.085938, 50.289339 ], [ 98.085938, 50.176898 ], [ 97.910156, 50.176898 ], [ 97.910156, 50.064192 ], [ 97.734375, 50.064192 ], [ 97.734375, 49.951220 ], [ 97.558594, 49.951220 ], [ 97.558594, 49.837982 ], [ 97.382812, 49.837982 ], [ 97.382812, 49.724479 ], [ 96.679688, 49.724479 ], [ 96.679688, 49.837982 ], [ 95.976562, 49.837982 ], [ 95.976562, 49.951220 ], [ 95.097656, 49.951220 ], [ 95.097656, 50.064192 ], [ 94.570312, 50.064192 ], [ 94.570312, 50.289339 ], [ 94.394531, 50.289339 ], [ 94.394531, 50.401515 ], [ 94.218750, 50.401515 ], [ 94.218750, 50.513427 ], [ 92.988281, 50.513427 ], [ 92.988281, 50.625073 ], [ 92.636719, 50.625073 ], [ 92.636719, 50.736455 ], [ 91.933594, 50.736455 ], [ 91.933594, 50.625073 ], [ 91.582031, 50.625073 ], [ 91.582031, 50.513427 ], [ 91.230469, 50.513427 ], [ 91.230469, 50.401515 ], [ 90.878906, 50.401515 ], [ 90.878906, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 89.121094, 49.610710 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.178868 ], [ 135.703125, 55.178868 ], [ 135.703125, 55.078367 ], [ 135.527344, 55.078367 ], [ 135.527344, 54.977614 ], [ 135.351562, 54.977614 ], [ 135.351562, 54.876607 ], [ 135.175781, 54.876607 ], [ 135.175781, 54.775346 ], [ 135.351562, 54.775346 ], [ 135.351562, 54.673831 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.213710 ], [ 135.527344, 44.213710 ], [ 135.527344, 44.087585 ], [ 135.351562, 44.087585 ], [ 135.351562, 43.961191 ], [ 135.175781, 43.961191 ], [ 135.175781, 43.707594 ], [ 135.000000, 43.707594 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.472656, 43.325178 ], [ 134.472656, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 133.945312, 43.068888 ], [ 133.945312, 42.940339 ], [ 133.593750, 42.940339 ], [ 133.593750, 42.811522 ], [ 132.714844, 42.811522 ], [ 132.714844, 42.940339 ], [ 132.539062, 42.940339 ], [ 132.539062, 43.068888 ], [ 132.363281, 43.068888 ], [ 132.363281, 43.197167 ], [ 132.011719, 43.197167 ], [ 132.011719, 43.068888 ], [ 131.660156, 43.068888 ], [ 131.660156, 42.940339 ], [ 131.484375, 42.940339 ], [ 131.484375, 42.811522 ], [ 131.308594, 42.811522 ], [ 131.308594, 42.682435 ], [ 130.957031, 42.682435 ], [ 130.957031, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 42.293564 ], [ 130.605469, 42.293564 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.132812, 44.590467 ], [ 130.957031, 44.590467 ], [ 130.957031, 45.089036 ], [ 131.308594, 45.089036 ], [ 131.308594, 45.213004 ], [ 131.660156, 45.213004 ], [ 131.660156, 45.336702 ], [ 132.363281, 45.336702 ], [ 132.363281, 45.213004 ], [ 133.066406, 45.213004 ], [ 133.066406, 45.336702 ], [ 133.242188, 45.336702 ], [ 133.242188, 45.583290 ], [ 133.417969, 45.583290 ], [ 133.417969, 45.828799 ], [ 133.593750, 45.828799 ], [ 133.593750, 46.073231 ], [ 133.769531, 46.073231 ], [ 133.769531, 46.679594 ], [ 133.945312, 46.679594 ], [ 133.945312, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 47.398349 ], [ 134.296875, 47.398349 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 48.107431 ], [ 134.824219, 48.107431 ], [ 134.824219, 48.341646 ], [ 135.000000, 48.341646 ], [ 135.000000, 48.574790 ], [ 134.824219, 48.574790 ], [ 134.824219, 48.458352 ], [ 134.296875, 48.458352 ], [ 134.296875, 48.341646 ], [ 133.593750, 48.341646 ], [ 133.593750, 48.224673 ], [ 133.242188, 48.224673 ], [ 133.242188, 48.107431 ], [ 132.890625, 48.107431 ], [ 132.890625, 47.989922 ], [ 132.539062, 47.989922 ], [ 132.539062, 47.872144 ], [ 130.957031, 47.872144 ], [ 130.957031, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.341646 ], [ 130.605469, 48.341646 ], [ 130.605469, 48.574790 ], [ 130.429688, 48.574790 ], [ 130.429688, 48.806863 ], [ 130.253906, 48.806863 ], [ 130.253906, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 49.037868 ], [ 129.902344, 49.037868 ], [ 129.902344, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 49.267805 ], [ 129.550781, 49.267805 ], [ 129.550781, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.496675 ], [ 129.023438, 49.496675 ], [ 129.023438, 49.610710 ], [ 128.320312, 49.610710 ], [ 128.320312, 49.724479 ], [ 127.792969, 49.724479 ], [ 127.792969, 49.837982 ], [ 127.617188, 49.837982 ], [ 127.617188, 50.064192 ], [ 127.441406, 50.064192 ], [ 127.441406, 50.513427 ], [ 127.265625, 50.513427 ], [ 127.265625, 50.958427 ], [ 127.089844, 50.958427 ], [ 127.089844, 51.179343 ], [ 126.914062, 51.179343 ], [ 126.914062, 51.508742 ], [ 126.738281, 51.508742 ], [ 126.738281, 51.727028 ], [ 126.562500, 51.727028 ], [ 126.562500, 51.944265 ], [ 126.386719, 51.944265 ], [ 126.386719, 52.160455 ], [ 126.210938, 52.160455 ], [ 126.210938, 52.375599 ], [ 126.035156, 52.375599 ], [ 126.035156, 52.589701 ], [ 125.859375, 52.589701 ], [ 125.859375, 52.802761 ], [ 125.683594, 52.802761 ], [ 125.683594, 52.908902 ], [ 125.507812, 52.908902 ], [ 125.507812, 53.014783 ], [ 125.156250, 53.014783 ], [ 125.156250, 53.120405 ], [ 124.980469, 53.120405 ], [ 124.980469, 53.225768 ], [ 124.628906, 53.225768 ], [ 124.628906, 53.330873 ], [ 124.101562, 53.330873 ], [ 124.101562, 53.435719 ], [ 123.574219, 53.435719 ], [ 123.574219, 53.540307 ], [ 122.871094, 53.540307 ], [ 122.871094, 53.435719 ], [ 121.640625, 53.435719 ], [ 121.640625, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 53.225768 ], [ 120.761719, 53.225768 ], [ 120.761719, 53.120405 ], [ 120.585938, 53.120405 ], [ 120.585938, 53.014783 ], [ 120.410156, 53.014783 ], [ 120.410156, 52.908902 ], [ 120.234375, 52.908902 ], [ 120.234375, 52.802761 ], [ 120.058594, 52.802761 ], [ 120.058594, 52.696361 ], [ 120.410156, 52.696361 ], [ 120.410156, 52.589701 ], [ 120.585938, 52.589701 ], [ 120.585938, 51.944265 ], [ 120.410156, 51.944265 ], [ 120.410156, 51.835778 ], [ 120.234375, 51.835778 ], [ 120.234375, 51.727028 ], [ 120.058594, 51.727028 ], [ 120.058594, 51.618017 ], [ 119.882812, 51.618017 ], [ 119.882812, 51.399206 ], [ 119.707031, 51.399206 ], [ 119.707031, 51.179343 ], [ 119.531250, 51.179343 ], [ 119.531250, 50.958427 ], [ 119.355469, 50.958427 ], [ 119.355469, 50.736455 ], [ 119.179688, 50.736455 ], [ 119.179688, 50.064192 ], [ 118.828125, 50.064192 ], [ 118.828125, 49.951220 ], [ 118.652344, 49.951220 ], [ 118.652344, 49.837982 ], [ 118.300781, 49.837982 ], [ 118.300781, 49.724479 ], [ 117.949219, 49.724479 ], [ 117.949219, 49.610710 ], [ 117.421875, 49.610710 ], [ 117.421875, 49.724479 ], [ 117.070312, 49.724479 ], [ 117.070312, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.951220 ], [ 116.191406, 49.951220 ], [ 116.191406, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 49.951220 ], [ 115.136719, 49.951220 ], [ 115.136719, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 50.176898 ], [ 114.433594, 50.176898 ], [ 114.433594, 50.289339 ], [ 114.257812, 50.289339 ], [ 114.257812, 50.176898 ], [ 114.082031, 50.176898 ], [ 114.082031, 50.064192 ], [ 113.730469, 50.064192 ], [ 113.730469, 49.951220 ], [ 113.554688, 49.951220 ], [ 113.554688, 49.837982 ], [ 113.378906, 49.837982 ], [ 113.378906, 49.724479 ], [ 113.027344, 49.724479 ], [ 113.027344, 49.610710 ], [ 112.675781, 49.610710 ], [ 112.675781, 49.496675 ], [ 111.972656, 49.496675 ], [ 111.972656, 49.382373 ], [ 111.269531, 49.382373 ], [ 111.269531, 49.267805 ], [ 110.917969, 49.267805 ], [ 110.917969, 49.152970 ], [ 110.214844, 49.152970 ], [ 110.214844, 49.267805 ], [ 109.511719, 49.267805 ], [ 109.511719, 49.382373 ], [ 108.281250, 49.382373 ], [ 108.281250, 49.496675 ], [ 108.105469, 49.496675 ], [ 108.105469, 49.610710 ], [ 107.929688, 49.610710 ], [ 107.929688, 49.724479 ], [ 107.753906, 49.724479 ], [ 107.753906, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 49.951220 ], [ 107.402344, 49.951220 ], [ 107.402344, 50.064192 ], [ 107.050781, 50.064192 ], [ 107.050781, 50.176898 ], [ 106.875000, 50.176898 ], [ 106.875000, 50.289339 ], [ 106.523438, 50.289339 ], [ 106.523438, 50.401515 ], [ 105.996094, 50.401515 ], [ 105.996094, 50.513427 ], [ 105.644531, 50.513427 ], [ 105.644531, 50.401515 ], [ 104.941406, 50.401515 ], [ 104.941406, 50.289339 ], [ 104.238281, 50.289339 ], [ 104.238281, 50.176898 ], [ 103.183594, 50.176898 ], [ 103.183594, 50.289339 ], [ 102.656250, 50.289339 ], [ 102.656250, 50.401515 ], [ 102.304688, 50.401515 ], [ 102.304688, 50.513427 ], [ 102.128906, 50.513427 ], [ 102.128906, 50.847573 ], [ 101.953125, 50.847573 ], [ 101.953125, 51.289406 ], [ 101.601562, 51.289406 ], [ 101.601562, 51.399206 ], [ 101.250000, 51.399206 ], [ 101.250000, 51.508742 ], [ 100.898438, 51.508742 ], [ 100.898438, 51.618017 ], [ 100.195312, 51.618017 ], [ 100.195312, 51.727028 ], [ 99.492188, 51.727028 ], [ 99.492188, 51.835778 ], [ 99.140625, 51.835778 ], [ 99.140625, 51.944265 ], [ 98.613281, 51.944265 ], [ 98.613281, 51.727028 ], [ 98.437500, 51.727028 ], [ 98.437500, 51.618017 ], [ 98.261719, 51.618017 ], [ 98.261719, 51.399206 ], [ 98.085938, 51.399206 ], [ 98.085938, 51.289406 ], [ 97.910156, 51.289406 ], [ 97.910156, 51.069017 ], [ 97.734375, 51.069017 ], [ 97.734375, 50.847573 ], [ 97.910156, 50.847573 ], [ 97.910156, 50.625073 ], [ 98.085938, 50.625073 ], [ 98.085938, 50.401515 ], [ 97.910156, 50.401515 ], [ 97.910156, 50.176898 ], [ 97.734375, 50.176898 ], [ 97.734375, 50.064192 ], [ 97.558594, 50.064192 ], [ 97.558594, 49.951220 ], [ 97.382812, 49.951220 ], [ 97.382812, 49.724479 ], [ 96.855469, 49.724479 ], [ 96.855469, 49.837982 ], [ 96.328125, 49.837982 ], [ 96.328125, 49.951220 ], [ 95.976562, 49.951220 ], [ 95.976562, 50.064192 ], [ 94.570312, 50.064192 ], [ 94.570312, 50.176898 ], [ 94.394531, 50.176898 ], [ 94.394531, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 50.401515 ], [ 94.042969, 50.401515 ], [ 94.042969, 50.513427 ], [ 92.812500, 50.513427 ], [ 92.812500, 50.625073 ], [ 92.460938, 50.625073 ], [ 92.460938, 50.736455 ], [ 91.757812, 50.736455 ], [ 91.757812, 50.625073 ], [ 91.406250, 50.625073 ], [ 91.406250, 50.513427 ], [ 91.054688, 50.513427 ], [ 91.054688, 50.401515 ], [ 90.703125, 50.401515 ], [ 90.703125, 50.289339 ], [ 90.351562, 50.289339 ], [ 90.351562, 50.176898 ], [ 90.175781, 50.176898 ], [ 90.175781, 50.064192 ], [ 89.824219, 50.064192 ], [ 89.824219, 49.951220 ], [ 89.648438, 49.951220 ], [ 89.648438, 49.837982 ], [ 89.296875, 49.837982 ], [ 89.296875, 49.724479 ], [ 89.121094, 49.724479 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.140625, 51.944265 ], [ 99.140625, 51.835778 ], [ 99.492188, 51.835778 ], [ 99.492188, 51.727028 ], [ 99.843750, 51.727028 ], [ 99.843750, 51.618017 ], [ 100.371094, 51.618017 ], [ 100.371094, 51.508742 ], [ 101.074219, 51.508742 ], [ 101.074219, 51.399206 ], [ 101.777344, 51.399206 ], [ 101.777344, 51.289406 ], [ 102.128906, 51.289406 ], [ 102.128906, 50.847573 ], [ 102.304688, 50.847573 ], [ 102.304688, 50.401515 ], [ 102.656250, 50.401515 ], [ 102.656250, 50.289339 ], [ 103.007812, 50.289339 ], [ 103.007812, 50.176898 ], [ 103.359375, 50.176898 ], [ 103.359375, 50.064192 ], [ 104.062500, 50.064192 ], [ 104.062500, 50.176898 ], [ 104.414062, 50.176898 ], [ 104.414062, 50.289339 ], [ 105.292969, 50.289339 ], [ 105.292969, 50.401515 ], [ 106.171875, 50.401515 ], [ 106.171875, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.176898 ], [ 107.226562, 50.176898 ], [ 107.226562, 50.064192 ], [ 107.402344, 50.064192 ], [ 107.402344, 49.951220 ], [ 107.753906, 49.951220 ], [ 107.753906, 49.837982 ], [ 107.929688, 49.837982 ], [ 107.929688, 49.724479 ], [ 108.105469, 49.724479 ], [ 108.105469, 49.496675 ], [ 108.281250, 49.496675 ], [ 108.281250, 49.267805 ], [ 109.863281, 49.267805 ], [ 109.863281, 49.152970 ], [ 111.093750, 49.152970 ], [ 111.093750, 49.267805 ], [ 111.445312, 49.267805 ], [ 111.445312, 49.382373 ], [ 112.324219, 49.382373 ], [ 112.324219, 49.496675 ], [ 113.027344, 49.496675 ], [ 113.027344, 49.610710 ], [ 113.203125, 49.610710 ], [ 113.203125, 49.724479 ], [ 113.554688, 49.724479 ], [ 113.554688, 49.837982 ], [ 113.730469, 49.837982 ], [ 113.730469, 49.951220 ], [ 113.906250, 49.951220 ], [ 113.906250, 50.064192 ], [ 114.257812, 50.064192 ], [ 114.257812, 50.176898 ], [ 114.433594, 50.176898 ], [ 114.433594, 50.289339 ], [ 114.609375, 50.289339 ], [ 114.609375, 50.176898 ], [ 114.960938, 50.176898 ], [ 114.960938, 50.064192 ], [ 115.136719, 50.064192 ], [ 115.136719, 49.951220 ], [ 115.312500, 49.951220 ], [ 115.312500, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.724479 ], [ 116.542969, 49.724479 ], [ 116.542969, 49.496675 ], [ 116.367188, 49.496675 ], [ 116.367188, 49.267805 ], [ 116.191406, 49.267805 ], [ 116.191406, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 48.690960 ], [ 115.839844, 48.690960 ], [ 115.839844, 48.458352 ], [ 115.664062, 48.458352 ], [ 115.664062, 48.224673 ], [ 115.488281, 48.224673 ], [ 115.488281, 47.872144 ], [ 115.664062, 47.872144 ], [ 115.664062, 47.754098 ], [ 116.191406, 47.754098 ], [ 116.191406, 47.872144 ], [ 116.718750, 47.872144 ], [ 116.718750, 47.754098 ], [ 117.421875, 47.754098 ], [ 117.421875, 47.872144 ], [ 117.773438, 47.872144 ], [ 117.773438, 47.989922 ], [ 118.300781, 47.989922 ], [ 118.300781, 47.872144 ], [ 118.652344, 47.872144 ], [ 118.652344, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.635784 ], [ 119.003906, 47.635784 ], [ 119.003906, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.398349 ], [ 119.355469, 47.398349 ], [ 119.355469, 47.159840 ], [ 119.531250, 47.159840 ], [ 119.531250, 47.040182 ], [ 119.707031, 47.040182 ], [ 119.707031, 46.679594 ], [ 119.179688, 46.679594 ], [ 119.179688, 46.800059 ], [ 118.300781, 46.800059 ], [ 118.300781, 46.679594 ], [ 117.421875, 46.679594 ], [ 117.421875, 46.558860 ], [ 117.070312, 46.558860 ], [ 117.070312, 46.437857 ], [ 116.718750, 46.437857 ], [ 116.718750, 46.316584 ], [ 116.542969, 46.316584 ], [ 116.542969, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 45.951150 ], [ 116.191406, 45.951150 ], [ 116.191406, 45.706179 ], [ 115.839844, 45.706179 ], [ 115.839844, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.460131 ], [ 114.785156, 45.460131 ], [ 114.785156, 45.336702 ], [ 114.433594, 45.336702 ], [ 114.433594, 45.213004 ], [ 114.082031, 45.213004 ], [ 114.082031, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.964798 ], [ 113.554688, 44.964798 ], [ 113.554688, 44.840291 ], [ 112.851562, 44.840291 ], [ 112.851562, 44.964798 ], [ 111.972656, 44.964798 ], [ 111.972656, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.964798 ], [ 111.621094, 44.964798 ], [ 111.621094, 44.715514 ], [ 111.445312, 44.715514 ], [ 111.445312, 44.465151 ], [ 111.269531, 44.465151 ], [ 111.269531, 44.339565 ], [ 111.445312, 44.339565 ], [ 111.445312, 44.087585 ], [ 111.621094, 44.087585 ], [ 111.621094, 43.834527 ], [ 111.796875, 43.834527 ], [ 111.796875, 43.580391 ], [ 111.445312, 43.580391 ], [ 111.445312, 43.452919 ], [ 111.093750, 43.452919 ], [ 111.093750, 43.325178 ], [ 110.917969, 43.325178 ], [ 110.917969, 43.197167 ], [ 110.742188, 43.197167 ], [ 110.742188, 42.940339 ], [ 110.566406, 42.940339 ], [ 110.566406, 42.811522 ], [ 110.214844, 42.811522 ], [ 110.214844, 42.682435 ], [ 109.511719, 42.682435 ], [ 109.511719, 42.553080 ], [ 108.632812, 42.553080 ], [ 108.632812, 42.423457 ], [ 107.402344, 42.423457 ], [ 107.402344, 42.293564 ], [ 106.699219, 42.293564 ], [ 106.699219, 42.163403 ], [ 106.171875, 42.163403 ], [ 106.171875, 42.032974 ], [ 105.820312, 42.032974 ], [ 105.820312, 41.902277 ], [ 105.468750, 41.902277 ], [ 105.468750, 41.771312 ], [ 105.117188, 41.771312 ], [ 105.117188, 41.640078 ], [ 104.765625, 41.640078 ], [ 104.765625, 41.771312 ], [ 104.589844, 41.771312 ], [ 104.589844, 41.902277 ], [ 103.183594, 41.902277 ], [ 103.183594, 42.032974 ], [ 102.832031, 42.032974 ], [ 102.832031, 42.163403 ], [ 102.480469, 42.163403 ], [ 102.480469, 42.293564 ], [ 102.128906, 42.293564 ], [ 102.128906, 42.423457 ], [ 101.777344, 42.423457 ], [ 101.777344, 42.553080 ], [ 101.250000, 42.553080 ], [ 101.250000, 42.682435 ], [ 100.371094, 42.682435 ], [ 100.371094, 42.553080 ], [ 98.789062, 42.553080 ], [ 98.789062, 42.682435 ], [ 97.734375, 42.682435 ], [ 97.734375, 42.811522 ], [ 97.031250, 42.811522 ], [ 97.031250, 42.682435 ], [ 96.152344, 42.682435 ], [ 96.152344, 42.940339 ], [ 95.976562, 42.940339 ], [ 95.976562, 43.197167 ], [ 95.800781, 43.197167 ], [ 95.800781, 43.452919 ], [ 95.625000, 43.452919 ], [ 95.625000, 43.707594 ], [ 95.449219, 43.707594 ], [ 95.449219, 43.961191 ], [ 95.273438, 43.961191 ], [ 95.273438, 44.213710 ], [ 94.921875, 44.213710 ], [ 94.921875, 44.339565 ], [ 94.570312, 44.339565 ], [ 94.570312, 44.465151 ], [ 94.218750, 44.465151 ], [ 94.218750, 44.590467 ], [ 94.042969, 44.590467 ], [ 94.042969, 44.715514 ], [ 93.867188, 44.715514 ], [ 93.867188, 44.840291 ], [ 93.515625, 44.840291 ], [ 93.515625, 44.964798 ], [ 92.636719, 44.964798 ], [ 92.636719, 45.089036 ], [ 91.757812, 45.089036 ], [ 91.757812, 45.213004 ], [ 91.054688, 45.213004 ], [ 91.054688, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.527344, 45.583290 ], [ 90.527344, 45.828799 ], [ 90.703125, 45.828799 ], [ 90.703125, 46.316584 ], [ 90.878906, 46.316584 ], [ 90.878906, 46.679594 ], [ 91.054688, 46.679594 ], [ 91.054688, 46.920255 ], [ 90.878906, 46.920255 ], [ 90.878906, 47.159840 ], [ 90.703125, 47.159840 ], [ 90.703125, 47.279229 ], [ 90.527344, 47.279229 ], [ 90.527344, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.635784 ], [ 90.000000, 47.635784 ], [ 90.000000, 47.754098 ], [ 89.648438, 47.754098 ], [ 89.648438, 47.872144 ], [ 89.296875, 47.872144 ], [ 89.296875, 47.989922 ], [ 89.121094, 47.989922 ], [ 89.121094, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.724479 ], [ 89.648438, 49.724479 ], [ 89.648438, 49.837982 ], [ 89.824219, 49.837982 ], [ 89.824219, 49.951220 ], [ 90.175781, 49.951220 ], [ 90.175781, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 50.176898 ], [ 90.703125, 50.176898 ], [ 90.703125, 50.289339 ], [ 90.878906, 50.289339 ], [ 90.878906, 50.401515 ], [ 91.230469, 50.401515 ], [ 91.230469, 50.513427 ], [ 91.582031, 50.513427 ], [ 91.582031, 50.625073 ], [ 91.933594, 50.625073 ], [ 91.933594, 50.736455 ], [ 92.636719, 50.736455 ], [ 92.636719, 50.625073 ], [ 92.988281, 50.625073 ], [ 92.988281, 50.513427 ], [ 94.218750, 50.513427 ], [ 94.218750, 50.401515 ], [ 94.394531, 50.401515 ], [ 94.394531, 50.289339 ], [ 94.570312, 50.289339 ], [ 94.570312, 50.064192 ], [ 95.097656, 50.064192 ], [ 95.097656, 49.951220 ], [ 95.976562, 49.951220 ], [ 95.976562, 49.837982 ], [ 96.679688, 49.837982 ], [ 96.679688, 49.724479 ], [ 97.382812, 49.724479 ], [ 97.382812, 49.837982 ], [ 97.558594, 49.837982 ], [ 97.558594, 49.951220 ], [ 97.734375, 49.951220 ], [ 97.734375, 50.064192 ], [ 97.910156, 50.064192 ], [ 97.910156, 50.176898 ], [ 98.085938, 50.176898 ], [ 98.085938, 50.289339 ], [ 98.261719, 50.289339 ], [ 98.261719, 50.513427 ], [ 98.085938, 50.513427 ], [ 98.085938, 50.736455 ], [ 97.910156, 50.736455 ], [ 97.910156, 51.069017 ], [ 98.085938, 51.069017 ], [ 98.085938, 51.289406 ], [ 98.261719, 51.289406 ], [ 98.261719, 51.508742 ], [ 98.437500, 51.508742 ], [ 98.437500, 51.727028 ], [ 98.613281, 51.727028 ], [ 98.613281, 51.944265 ], [ 99.140625, 51.944265 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.140625, 51.944265 ], [ 99.140625, 51.835778 ], [ 99.492188, 51.835778 ], [ 99.492188, 51.727028 ], [ 100.195312, 51.727028 ], [ 100.195312, 51.618017 ], [ 100.898438, 51.618017 ], [ 100.898438, 51.508742 ], [ 101.250000, 51.508742 ], [ 101.250000, 51.399206 ], [ 101.601562, 51.399206 ], [ 101.601562, 51.289406 ], [ 101.953125, 51.289406 ], [ 101.953125, 50.847573 ], [ 102.128906, 50.847573 ], [ 102.128906, 50.513427 ], [ 102.304688, 50.513427 ], [ 102.304688, 50.401515 ], [ 102.656250, 50.401515 ], [ 102.656250, 50.289339 ], [ 103.183594, 50.289339 ], [ 103.183594, 50.176898 ], [ 104.238281, 50.176898 ], [ 104.238281, 50.289339 ], [ 104.941406, 50.289339 ], [ 104.941406, 50.401515 ], [ 105.644531, 50.401515 ], [ 105.644531, 50.513427 ], [ 105.996094, 50.513427 ], [ 105.996094, 50.401515 ], [ 106.523438, 50.401515 ], [ 106.523438, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.176898 ], [ 107.050781, 50.176898 ], [ 107.050781, 50.064192 ], [ 107.402344, 50.064192 ], [ 107.402344, 49.951220 ], [ 107.578125, 49.951220 ], [ 107.578125, 49.837982 ], [ 107.753906, 49.837982 ], [ 107.753906, 49.724479 ], [ 107.929688, 49.724479 ], [ 107.929688, 49.610710 ], [ 108.105469, 49.610710 ], [ 108.105469, 49.496675 ], [ 108.281250, 49.496675 ], [ 108.281250, 49.382373 ], [ 109.511719, 49.382373 ], [ 109.511719, 49.267805 ], [ 110.214844, 49.267805 ], [ 110.214844, 49.152970 ], [ 110.917969, 49.152970 ], [ 110.917969, 49.267805 ], [ 111.269531, 49.267805 ], [ 111.269531, 49.382373 ], [ 111.972656, 49.382373 ], [ 111.972656, 49.496675 ], [ 112.675781, 49.496675 ], [ 112.675781, 49.610710 ], [ 113.027344, 49.610710 ], [ 113.027344, 49.724479 ], [ 113.378906, 49.724479 ], [ 113.378906, 49.837982 ], [ 113.554688, 49.837982 ], [ 113.554688, 49.951220 ], [ 113.730469, 49.951220 ], [ 113.730469, 50.064192 ], [ 114.082031, 50.064192 ], [ 114.082031, 50.176898 ], [ 114.257812, 50.176898 ], [ 114.257812, 50.289339 ], [ 114.433594, 50.289339 ], [ 114.433594, 50.176898 ], [ 114.960938, 50.176898 ], [ 114.960938, 50.064192 ], [ 115.136719, 50.064192 ], [ 115.136719, 49.951220 ], [ 115.312500, 49.951220 ], [ 115.312500, 49.837982 ], [ 116.191406, 49.837982 ], [ 116.191406, 49.951220 ], [ 116.542969, 49.951220 ], [ 116.542969, 49.724479 ], [ 116.367188, 49.724479 ], [ 116.367188, 49.267805 ], [ 116.191406, 49.267805 ], [ 116.191406, 49.037868 ], [ 116.015625, 49.037868 ], [ 116.015625, 48.806863 ], [ 115.839844, 48.806863 ], [ 115.839844, 48.690960 ], [ 115.664062, 48.690960 ], [ 115.664062, 48.458352 ], [ 115.488281, 48.458352 ], [ 115.488281, 48.224673 ], [ 115.312500, 48.224673 ], [ 115.312500, 48.107431 ], [ 115.488281, 48.107431 ], [ 115.488281, 47.872144 ], [ 115.664062, 47.872144 ], [ 115.664062, 47.754098 ], [ 116.015625, 47.754098 ], [ 116.015625, 47.872144 ], [ 116.542969, 47.872144 ], [ 116.542969, 47.754098 ], [ 117.421875, 47.754098 ], [ 117.421875, 47.872144 ], [ 117.773438, 47.872144 ], [ 117.773438, 47.989922 ], [ 118.300781, 47.989922 ], [ 118.300781, 47.872144 ], [ 118.652344, 47.872144 ], [ 118.652344, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.635784 ], [ 119.003906, 47.635784 ], [ 119.003906, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.398349 ], [ 119.355469, 47.398349 ], [ 119.355469, 47.279229 ], [ 119.531250, 47.279229 ], [ 119.531250, 47.159840 ], [ 119.707031, 47.159840 ], [ 119.707031, 46.920255 ], [ 119.531250, 46.920255 ], [ 119.531250, 46.800059 ], [ 119.003906, 46.800059 ], [ 119.003906, 46.920255 ], [ 118.652344, 46.920255 ], [ 118.652344, 46.800059 ], [ 117.949219, 46.800059 ], [ 117.949219, 46.679594 ], [ 117.421875, 46.679594 ], [ 117.421875, 46.558860 ], [ 117.070312, 46.558860 ], [ 117.070312, 46.437857 ], [ 116.718750, 46.437857 ], [ 116.718750, 46.316584 ], [ 116.542969, 46.316584 ], [ 116.542969, 46.195042 ], [ 116.367188, 46.195042 ], [ 116.367188, 46.073231 ], [ 116.191406, 46.073231 ], [ 116.191406, 45.951150 ], [ 116.015625, 45.951150 ], [ 116.015625, 45.828799 ], [ 115.664062, 45.828799 ], [ 115.664062, 45.706179 ], [ 115.312500, 45.706179 ], [ 115.312500, 45.583290 ], [ 114.785156, 45.583290 ], [ 114.785156, 45.460131 ], [ 114.433594, 45.460131 ], [ 114.433594, 45.336702 ], [ 114.257812, 45.336702 ], [ 114.257812, 45.213004 ], [ 114.082031, 45.213004 ], [ 114.082031, 45.089036 ], [ 113.730469, 45.089036 ], [ 113.730469, 44.964798 ], [ 113.554688, 44.964798 ], [ 113.554688, 44.840291 ], [ 113.027344, 44.840291 ], [ 113.027344, 44.964798 ], [ 112.500000, 44.964798 ], [ 112.500000, 45.089036 ], [ 111.972656, 45.089036 ], [ 111.972656, 45.213004 ], [ 111.796875, 45.213004 ], [ 111.796875, 45.089036 ], [ 111.621094, 45.089036 ], [ 111.621094, 44.840291 ], [ 111.445312, 44.840291 ], [ 111.445312, 44.590467 ], [ 111.269531, 44.590467 ], [ 111.269531, 44.339565 ], [ 111.445312, 44.339565 ], [ 111.445312, 44.087585 ], [ 111.621094, 44.087585 ], [ 111.621094, 43.961191 ], [ 111.796875, 43.961191 ], [ 111.796875, 43.707594 ], [ 111.621094, 43.707594 ], [ 111.621094, 43.580391 ], [ 111.269531, 43.580391 ], [ 111.269531, 43.452919 ], [ 111.093750, 43.452919 ], [ 111.093750, 43.325178 ], [ 110.917969, 43.325178 ], [ 110.917969, 43.197167 ], [ 110.742188, 43.197167 ], [ 110.742188, 43.068888 ], [ 110.566406, 43.068888 ], [ 110.566406, 42.940339 ], [ 110.214844, 42.940339 ], [ 110.214844, 42.811522 ], [ 109.863281, 42.811522 ], [ 109.863281, 42.682435 ], [ 109.511719, 42.682435 ], [ 109.511719, 42.553080 ], [ 107.402344, 42.553080 ], [ 107.402344, 42.423457 ], [ 106.875000, 42.423457 ], [ 106.875000, 42.293564 ], [ 106.347656, 42.293564 ], [ 106.347656, 42.163403 ], [ 105.996094, 42.163403 ], [ 105.996094, 42.032974 ], [ 105.644531, 42.032974 ], [ 105.644531, 41.902277 ], [ 105.468750, 41.902277 ], [ 105.468750, 41.771312 ], [ 105.117188, 41.771312 ], [ 105.117188, 41.640078 ], [ 104.765625, 41.640078 ], [ 104.765625, 41.771312 ], [ 104.589844, 41.771312 ], [ 104.589844, 41.902277 ], [ 104.414062, 41.902277 ], [ 104.414062, 42.032974 ], [ 102.832031, 42.032974 ], [ 102.832031, 42.163403 ], [ 102.480469, 42.163403 ], [ 102.480469, 42.293564 ], [ 102.128906, 42.293564 ], [ 102.128906, 42.423457 ], [ 101.777344, 42.423457 ], [ 101.777344, 42.553080 ], [ 101.074219, 42.553080 ], [ 101.074219, 42.682435 ], [ 100.195312, 42.682435 ], [ 100.195312, 42.553080 ], [ 98.789062, 42.553080 ], [ 98.789062, 42.682435 ], [ 97.734375, 42.682435 ], [ 97.734375, 42.811522 ], [ 96.152344, 42.811522 ], [ 96.152344, 42.940339 ], [ 95.976562, 42.940339 ], [ 95.976562, 43.068888 ], [ 95.800781, 43.068888 ], [ 95.800781, 43.197167 ], [ 95.625000, 43.197167 ], [ 95.625000, 43.580391 ], [ 95.449219, 43.580391 ], [ 95.449219, 44.087585 ], [ 95.273438, 44.087585 ], [ 95.273438, 44.339565 ], [ 94.746094, 44.339565 ], [ 94.746094, 44.465151 ], [ 94.394531, 44.465151 ], [ 94.394531, 44.590467 ], [ 94.042969, 44.590467 ], [ 94.042969, 44.715514 ], [ 93.867188, 44.715514 ], [ 93.867188, 44.840291 ], [ 93.691406, 44.840291 ], [ 93.691406, 44.964798 ], [ 93.339844, 44.964798 ], [ 93.339844, 45.089036 ], [ 92.636719, 45.089036 ], [ 92.636719, 45.213004 ], [ 91.406250, 45.213004 ], [ 91.406250, 45.336702 ], [ 90.878906, 45.336702 ], [ 90.878906, 45.460131 ], [ 90.703125, 45.460131 ], [ 90.703125, 45.706179 ], [ 90.527344, 45.706179 ], [ 90.527344, 46.073231 ], [ 90.703125, 46.073231 ], [ 90.703125, 46.558860 ], [ 90.878906, 46.558860 ], [ 90.878906, 46.920255 ], [ 90.703125, 46.920255 ], [ 90.703125, 47.159840 ], [ 90.527344, 47.159840 ], [ 90.527344, 47.398349 ], [ 90.351562, 47.398349 ], [ 90.351562, 47.635784 ], [ 90.175781, 47.635784 ], [ 90.175781, 47.754098 ], [ 89.824219, 47.754098 ], [ 89.824219, 47.872144 ], [ 89.472656, 47.872144 ], [ 89.472656, 47.989922 ], [ 89.121094, 47.989922 ], [ 89.121094, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.401515 ], [ 91.054688, 50.401515 ], [ 91.054688, 50.513427 ], [ 91.406250, 50.513427 ], [ 91.406250, 50.625073 ], [ 91.757812, 50.625073 ], [ 91.757812, 50.736455 ], [ 92.460938, 50.736455 ], [ 92.460938, 50.625073 ], [ 92.812500, 50.625073 ], [ 92.812500, 50.513427 ], [ 94.042969, 50.513427 ], [ 94.042969, 50.401515 ], [ 94.218750, 50.401515 ], [ 94.218750, 50.289339 ], [ 94.394531, 50.289339 ], [ 94.394531, 50.176898 ], [ 94.570312, 50.176898 ], [ 94.570312, 50.064192 ], [ 95.976562, 50.064192 ], [ 95.976562, 49.951220 ], [ 96.328125, 49.951220 ], [ 96.328125, 49.837982 ], [ 96.855469, 49.837982 ], [ 96.855469, 49.724479 ], [ 97.382812, 49.724479 ], [ 97.382812, 49.951220 ], [ 97.558594, 49.951220 ], [ 97.558594, 50.064192 ], [ 97.734375, 50.064192 ], [ 97.734375, 50.176898 ], [ 97.910156, 50.176898 ], [ 97.910156, 50.401515 ], [ 98.085938, 50.401515 ], [ 98.085938, 50.625073 ], [ 97.910156, 50.625073 ], [ 97.910156, 50.847573 ], [ 97.734375, 50.847573 ], [ 97.734375, 51.069017 ], [ 97.910156, 51.069017 ], [ 97.910156, 51.289406 ], [ 98.085938, 51.289406 ], [ 98.085938, 51.399206 ], [ 98.261719, 51.399206 ], [ 98.261719, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 51.727028 ], [ 98.613281, 51.727028 ], [ 98.613281, 51.944265 ], [ 99.140625, 51.944265 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.750000, 53.435719 ], [ 123.750000, 53.330873 ], [ 124.101562, 53.330873 ], [ 124.101562, 53.225768 ], [ 124.628906, 53.225768 ], [ 124.628906, 53.120405 ], [ 124.980469, 53.120405 ], [ 124.980469, 53.014783 ], [ 125.332031, 53.014783 ], [ 125.332031, 52.908902 ], [ 125.683594, 52.908902 ], [ 125.683594, 52.802761 ], [ 125.859375, 52.802761 ], [ 125.859375, 52.589701 ], [ 126.035156, 52.589701 ], [ 126.035156, 52.375599 ], [ 126.210938, 52.375599 ], [ 126.210938, 52.160455 ], [ 126.386719, 52.160455 ], [ 126.386719, 51.944265 ], [ 126.562500, 51.944265 ], [ 126.562500, 51.727028 ], [ 126.738281, 51.727028 ], [ 126.738281, 51.508742 ], [ 126.914062, 51.508742 ], [ 126.914062, 51.179343 ], [ 127.089844, 51.179343 ], [ 127.089844, 50.847573 ], [ 127.265625, 50.847573 ], [ 127.265625, 50.401515 ], [ 127.441406, 50.401515 ], [ 127.441406, 49.951220 ], [ 127.617188, 49.951220 ], [ 127.617188, 49.724479 ], [ 127.968750, 49.724479 ], [ 127.968750, 49.610710 ], [ 128.847656, 49.610710 ], [ 128.847656, 49.496675 ], [ 129.375000, 49.496675 ], [ 129.375000, 49.382373 ], [ 129.550781, 49.382373 ], [ 129.550781, 49.267805 ], [ 129.726562, 49.267805 ], [ 129.726562, 49.152970 ], [ 129.902344, 49.152970 ], [ 129.902344, 49.037868 ], [ 130.078125, 49.037868 ], [ 130.078125, 48.922499 ], [ 130.253906, 48.922499 ], [ 130.253906, 48.806863 ], [ 130.429688, 48.806863 ], [ 130.429688, 48.690960 ], [ 130.605469, 48.690960 ], [ 130.605469, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 130.957031, 47.989922 ], [ 130.957031, 47.754098 ], [ 132.714844, 47.754098 ], [ 132.714844, 47.872144 ], [ 132.890625, 47.872144 ], [ 132.890625, 47.989922 ], [ 133.242188, 47.989922 ], [ 133.242188, 48.107431 ], [ 133.417969, 48.107431 ], [ 133.417969, 48.224673 ], [ 133.945312, 48.224673 ], [ 133.945312, 48.341646 ], [ 134.648438, 48.341646 ], [ 134.648438, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 48.224673 ], [ 134.824219, 48.224673 ], [ 134.824219, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 46.800059 ], [ 133.945312, 46.800059 ], [ 133.945312, 46.316584 ], [ 133.769531, 46.316584 ], [ 133.769531, 45.951150 ], [ 133.593750, 45.951150 ], [ 133.593750, 45.706179 ], [ 133.417969, 45.706179 ], [ 133.417969, 45.460131 ], [ 133.242188, 45.460131 ], [ 133.242188, 45.213004 ], [ 133.066406, 45.213004 ], [ 133.066406, 45.089036 ], [ 132.714844, 45.089036 ], [ 132.714844, 45.213004 ], [ 132.011719, 45.213004 ], [ 132.011719, 45.336702 ], [ 131.835938, 45.336702 ], [ 131.835938, 45.213004 ], [ 131.484375, 45.213004 ], [ 131.484375, 45.089036 ], [ 131.132812, 45.089036 ], [ 131.132812, 44.964798 ], [ 130.957031, 44.964798 ], [ 130.957031, 44.715514 ], [ 131.132812, 44.715514 ], [ 131.132812, 44.213710 ], [ 131.308594, 44.213710 ], [ 131.308594, 43.452919 ], [ 131.132812, 43.452919 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 130.429688, 42.423457 ], [ 130.429688, 42.682435 ], [ 130.253906, 42.682435 ], [ 130.253906, 42.811522 ], [ 129.902344, 42.811522 ], [ 129.902344, 42.682435 ], [ 129.726562, 42.682435 ], [ 129.726562, 42.423457 ], [ 129.375000, 42.423457 ], [ 129.375000, 42.293564 ], [ 128.847656, 42.293564 ], [ 128.847656, 42.163403 ], [ 128.320312, 42.163403 ], [ 128.320312, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.771312 ], [ 128.144531, 41.771312 ], [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 126.738281, 41.640078 ], [ 126.738281, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.244772 ], [ 126.386719, 41.244772 ], [ 126.386719, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.713956 ], [ 125.332031, 40.713956 ], [ 125.332031, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.289062, 40.847060 ], [ 121.289062, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.580585 ], [ 120.761719, 40.580585 ], [ 120.761719, 40.446947 ], [ 120.410156, 40.446947 ], [ 120.410156, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.648438, 47.872144 ], [ 89.648438, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.517201 ], [ 90.527344, 47.517201 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.159840 ], [ 90.878906, 47.159840 ], [ 90.878906, 46.920255 ], [ 91.054688, 46.920255 ], [ 91.054688, 46.679594 ], [ 90.878906, 46.679594 ], [ 90.878906, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.828799 ], [ 90.527344, 45.828799 ], [ 90.527344, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 91.054688, 45.336702 ], [ 91.054688, 45.213004 ], [ 91.757812, 45.213004 ], [ 91.757812, 45.089036 ], [ 92.636719, 45.089036 ], [ 92.636719, 44.964798 ], [ 93.515625, 44.964798 ], [ 93.515625, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.715514 ], [ 94.042969, 44.715514 ], [ 94.042969, 44.590467 ], [ 94.218750, 44.590467 ], [ 94.218750, 44.465151 ], [ 94.570312, 44.465151 ], [ 94.570312, 44.339565 ], [ 94.921875, 44.339565 ], [ 94.921875, 44.213710 ], [ 95.273438, 44.213710 ], [ 95.273438, 43.961191 ], [ 95.449219, 43.961191 ], [ 95.449219, 43.707594 ], [ 95.625000, 43.707594 ], [ 95.625000, 43.452919 ], [ 95.800781, 43.452919 ], [ 95.800781, 43.197167 ], [ 95.976562, 43.197167 ], [ 95.976562, 42.940339 ], [ 96.152344, 42.940339 ], [ 96.152344, 42.682435 ], [ 97.031250, 42.682435 ], [ 97.031250, 42.811522 ], [ 97.734375, 42.811522 ], [ 97.734375, 42.682435 ], [ 98.789062, 42.682435 ], [ 98.789062, 42.553080 ], [ 100.371094, 42.553080 ], [ 100.371094, 42.682435 ], [ 101.250000, 42.682435 ], [ 101.250000, 42.553080 ], [ 101.777344, 42.553080 ], [ 101.777344, 42.423457 ], [ 102.128906, 42.423457 ], [ 102.128906, 42.293564 ], [ 102.480469, 42.293564 ], [ 102.480469, 42.163403 ], [ 102.832031, 42.163403 ], [ 102.832031, 42.032974 ], [ 103.183594, 42.032974 ], [ 103.183594, 41.902277 ], [ 104.589844, 41.902277 ], [ 104.589844, 41.771312 ], [ 104.765625, 41.771312 ], [ 104.765625, 41.640078 ], [ 105.117188, 41.640078 ], [ 105.117188, 41.771312 ], [ 105.468750, 41.771312 ], [ 105.468750, 41.902277 ], [ 105.820312, 41.902277 ], [ 105.820312, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 42.163403 ], [ 106.699219, 42.163403 ], [ 106.699219, 42.293564 ], [ 107.402344, 42.293564 ], [ 107.402344, 42.423457 ], [ 108.632812, 42.423457 ], [ 108.632812, 42.553080 ], [ 109.511719, 42.553080 ], [ 109.511719, 42.682435 ], [ 110.214844, 42.682435 ], [ 110.214844, 42.811522 ], [ 110.566406, 42.811522 ], [ 110.566406, 42.940339 ], [ 110.742188, 42.940339 ], [ 110.742188, 43.197167 ], [ 110.917969, 43.197167 ], [ 110.917969, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.452919 ], [ 111.445312, 43.452919 ], [ 111.445312, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 43.834527 ], [ 111.621094, 43.834527 ], [ 111.621094, 44.087585 ], [ 111.445312, 44.087585 ], [ 111.445312, 44.339565 ], [ 111.269531, 44.339565 ], [ 111.269531, 44.465151 ], [ 111.445312, 44.465151 ], [ 111.445312, 44.715514 ], [ 111.621094, 44.715514 ], [ 111.621094, 44.964798 ], [ 111.796875, 44.964798 ], [ 111.796875, 45.089036 ], [ 111.972656, 45.089036 ], [ 111.972656, 44.964798 ], [ 112.851562, 44.964798 ], [ 112.851562, 44.840291 ], [ 113.554688, 44.840291 ], [ 113.554688, 44.964798 ], [ 113.906250, 44.964798 ], [ 113.906250, 45.089036 ], [ 114.082031, 45.089036 ], [ 114.082031, 45.213004 ], [ 114.433594, 45.213004 ], [ 114.433594, 45.336702 ], [ 114.785156, 45.336702 ], [ 114.785156, 45.460131 ], [ 115.312500, 45.460131 ], [ 115.312500, 45.583290 ], [ 115.839844, 45.583290 ], [ 115.839844, 45.706179 ], [ 116.191406, 45.706179 ], [ 116.191406, 45.951150 ], [ 116.367188, 45.951150 ], [ 116.367188, 46.073231 ], [ 116.542969, 46.073231 ], [ 116.542969, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.437857 ], [ 117.070312, 46.437857 ], [ 117.070312, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.679594 ], [ 118.300781, 46.679594 ], [ 118.300781, 46.800059 ], [ 119.179688, 46.800059 ], [ 119.179688, 46.679594 ], [ 119.707031, 46.679594 ], [ 119.707031, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.159840 ], [ 119.355469, 47.159840 ], [ 119.355469, 47.398349 ], [ 119.179688, 47.398349 ], [ 119.179688, 47.517201 ], [ 119.003906, 47.517201 ], [ 119.003906, 47.635784 ], [ 118.828125, 47.635784 ], [ 118.828125, 47.754098 ], [ 118.652344, 47.754098 ], [ 118.652344, 47.872144 ], [ 118.300781, 47.872144 ], [ 118.300781, 47.989922 ], [ 117.773438, 47.989922 ], [ 117.773438, 47.872144 ], [ 117.421875, 47.872144 ], [ 117.421875, 47.754098 ], [ 116.718750, 47.754098 ], [ 116.718750, 47.872144 ], [ 116.191406, 47.872144 ], [ 116.191406, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.872144 ], [ 115.488281, 47.872144 ], [ 115.488281, 48.224673 ], [ 115.664062, 48.224673 ], [ 115.664062, 48.458352 ], [ 115.839844, 48.458352 ], [ 115.839844, 48.690960 ], [ 116.015625, 48.690960 ], [ 116.015625, 48.922499 ], [ 116.191406, 48.922499 ], [ 116.191406, 49.267805 ], [ 116.367188, 49.267805 ], [ 116.367188, 49.496675 ], [ 116.542969, 49.496675 ], [ 116.542969, 49.724479 ], [ 116.718750, 49.724479 ], [ 116.718750, 49.837982 ], [ 116.894531, 49.837982 ], [ 116.894531, 49.724479 ], [ 117.246094, 49.724479 ], [ 117.246094, 49.610710 ], [ 117.597656, 49.610710 ], [ 117.597656, 49.496675 ], [ 118.125000, 49.496675 ], [ 118.125000, 49.610710 ], [ 118.476562, 49.610710 ], [ 118.476562, 49.724479 ], [ 118.652344, 49.724479 ], [ 118.652344, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 49.951220 ], [ 119.179688, 49.951220 ], [ 119.179688, 50.064192 ], [ 119.355469, 50.064192 ], [ 119.355469, 50.625073 ], [ 119.531250, 50.625073 ], [ 119.531250, 50.847573 ], [ 119.707031, 50.847573 ], [ 119.707031, 51.069017 ], [ 119.882812, 51.069017 ], [ 119.882812, 51.289406 ], [ 120.058594, 51.289406 ], [ 120.058594, 51.508742 ], [ 120.234375, 51.508742 ], [ 120.234375, 51.618017 ], [ 120.410156, 51.618017 ], [ 120.410156, 51.727028 ], [ 120.585938, 51.727028 ], [ 120.585938, 51.835778 ], [ 120.761719, 51.835778 ], [ 120.761719, 52.482780 ], [ 120.585938, 52.482780 ], [ 120.585938, 52.589701 ], [ 120.410156, 52.589701 ], [ 120.410156, 52.696361 ], [ 120.234375, 52.696361 ], [ 120.234375, 52.802761 ], [ 120.410156, 52.802761 ], [ 120.410156, 52.908902 ], [ 120.585938, 52.908902 ], [ 120.585938, 53.014783 ], [ 120.761719, 53.014783 ], [ 120.761719, 53.120405 ], [ 120.937500, 53.120405 ], [ 120.937500, 53.225768 ], [ 121.289062, 53.225768 ], [ 121.289062, 53.330873 ], [ 121.992188, 53.330873 ], [ 121.992188, 53.435719 ], [ 123.750000, 53.435719 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.750000, 53.540307 ], [ 123.750000, 53.435719 ], [ 124.101562, 53.435719 ], [ 124.101562, 53.330873 ], [ 124.628906, 53.330873 ], [ 124.628906, 53.225768 ], [ 124.980469, 53.225768 ], [ 124.980469, 53.120405 ], [ 125.156250, 53.120405 ], [ 125.156250, 53.014783 ], [ 125.507812, 53.014783 ], [ 125.507812, 52.908902 ], [ 125.683594, 52.908902 ], [ 125.683594, 52.802761 ], [ 125.859375, 52.802761 ], [ 125.859375, 52.589701 ], [ 126.035156, 52.589701 ], [ 126.035156, 52.375599 ], [ 126.210938, 52.375599 ], [ 126.210938, 52.160455 ], [ 126.386719, 52.160455 ], [ 126.386719, 51.944265 ], [ 126.562500, 51.944265 ], [ 126.562500, 51.727028 ], [ 126.738281, 51.727028 ], [ 126.738281, 51.508742 ], [ 126.914062, 51.508742 ], [ 126.914062, 51.179343 ], [ 127.089844, 51.179343 ], [ 127.089844, 50.958427 ], [ 127.265625, 50.958427 ], [ 127.265625, 50.513427 ], [ 127.441406, 50.513427 ], [ 127.441406, 50.064192 ], [ 127.617188, 50.064192 ], [ 127.617188, 49.837982 ], [ 127.792969, 49.837982 ], [ 127.792969, 49.724479 ], [ 128.320312, 49.724479 ], [ 128.320312, 49.610710 ], [ 129.023438, 49.610710 ], [ 129.023438, 49.496675 ], [ 129.375000, 49.496675 ], [ 129.375000, 49.382373 ], [ 129.550781, 49.382373 ], [ 129.550781, 49.267805 ], [ 129.726562, 49.267805 ], [ 129.726562, 49.152970 ], [ 129.902344, 49.152970 ], [ 129.902344, 49.037868 ], [ 130.078125, 49.037868 ], [ 130.078125, 48.922499 ], [ 130.253906, 48.922499 ], [ 130.253906, 48.806863 ], [ 130.429688, 48.806863 ], [ 130.429688, 48.574790 ], [ 130.605469, 48.574790 ], [ 130.605469, 48.341646 ], [ 130.781250, 48.341646 ], [ 130.781250, 47.989922 ], [ 130.957031, 47.989922 ], [ 130.957031, 47.872144 ], [ 132.539062, 47.872144 ], [ 132.539062, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 48.107431 ], [ 133.242188, 48.107431 ], [ 133.242188, 48.224673 ], [ 133.593750, 48.224673 ], [ 133.593750, 48.341646 ], [ 134.296875, 48.341646 ], [ 134.296875, 48.458352 ], [ 134.824219, 48.458352 ], [ 134.824219, 48.574790 ], [ 135.000000, 48.574790 ], [ 135.000000, 48.341646 ], [ 134.824219, 48.341646 ], [ 134.824219, 48.107431 ], [ 134.648438, 48.107431 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.398349 ], [ 134.121094, 47.398349 ], [ 134.121094, 47.279229 ], [ 133.945312, 47.279229 ], [ 133.945312, 46.679594 ], [ 133.769531, 46.679594 ], [ 133.769531, 46.073231 ], [ 133.593750, 46.073231 ], [ 133.593750, 45.828799 ], [ 133.417969, 45.828799 ], [ 133.417969, 45.583290 ], [ 133.242188, 45.583290 ], [ 133.242188, 45.336702 ], [ 133.066406, 45.336702 ], [ 133.066406, 45.213004 ], [ 132.363281, 45.213004 ], [ 132.363281, 45.336702 ], [ 131.660156, 45.336702 ], [ 131.660156, 45.213004 ], [ 131.308594, 45.213004 ], [ 131.308594, 45.089036 ], [ 130.957031, 45.089036 ], [ 130.957031, 44.590467 ], [ 131.132812, 44.590467 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 130.429688, 42.423457 ], [ 130.429688, 42.553080 ], [ 130.253906, 42.553080 ], [ 130.253906, 42.811522 ], [ 130.078125, 42.811522 ], [ 130.078125, 42.940339 ], [ 129.902344, 42.940339 ], [ 129.902344, 42.811522 ], [ 129.726562, 42.811522 ], [ 129.726562, 42.553080 ], [ 129.550781, 42.553080 ], [ 129.550781, 42.423457 ], [ 129.375000, 42.423457 ], [ 129.375000, 42.293564 ], [ 128.847656, 42.293564 ], [ 128.847656, 42.163403 ], [ 128.320312, 42.163403 ], [ 128.320312, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.771312 ], [ 128.144531, 41.771312 ], [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 126.914062, 41.640078 ], [ 126.914062, 41.771312 ], [ 126.562500, 41.771312 ], [ 126.562500, 41.508577 ], [ 126.386719, 41.508577 ], [ 126.386719, 41.376809 ], [ 126.210938, 41.376809 ], [ 126.210938, 41.112469 ], [ 126.035156, 41.112469 ], [ 126.035156, 40.979898 ], [ 125.683594, 40.979898 ], [ 125.683594, 40.847060 ], [ 125.507812, 40.847060 ], [ 125.507812, 40.713956 ], [ 125.156250, 40.713956 ], [ 125.156250, 40.580585 ], [ 124.980469, 40.580585 ], [ 124.980469, 40.446947 ], [ 124.804688, 40.446947 ], [ 124.804688, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.640625, 40.847060 ], [ 121.640625, 40.979898 ], [ 121.464844, 40.979898 ], [ 121.464844, 40.847060 ], [ 121.113281, 40.847060 ], [ 121.113281, 40.713956 ], [ 120.761719, 40.713956 ], [ 120.761719, 40.580585 ], [ 120.585938, 40.580585 ], [ 120.585938, 40.446947 ], [ 120.410156, 40.446947 ], [ 120.410156, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.989922 ], [ 89.472656, 47.989922 ], [ 89.472656, 47.872144 ], [ 89.824219, 47.872144 ], [ 89.824219, 47.754098 ], [ 90.175781, 47.754098 ], [ 90.175781, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.398349 ], [ 90.527344, 47.398349 ], [ 90.527344, 47.159840 ], [ 90.703125, 47.159840 ], [ 90.703125, 46.920255 ], [ 90.878906, 46.920255 ], [ 90.878906, 46.558860 ], [ 90.703125, 46.558860 ], [ 90.703125, 46.073231 ], [ 90.527344, 46.073231 ], [ 90.527344, 45.706179 ], [ 90.703125, 45.706179 ], [ 90.703125, 45.460131 ], [ 90.878906, 45.460131 ], [ 90.878906, 45.336702 ], [ 91.406250, 45.336702 ], [ 91.406250, 45.213004 ], [ 92.636719, 45.213004 ], [ 92.636719, 45.089036 ], [ 93.339844, 45.089036 ], [ 93.339844, 44.964798 ], [ 93.691406, 44.964798 ], [ 93.691406, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.715514 ], [ 94.042969, 44.715514 ], [ 94.042969, 44.590467 ], [ 94.394531, 44.590467 ], [ 94.394531, 44.465151 ], [ 94.746094, 44.465151 ], [ 94.746094, 44.339565 ], [ 95.273438, 44.339565 ], [ 95.273438, 44.087585 ], [ 95.449219, 44.087585 ], [ 95.449219, 43.580391 ], [ 95.625000, 43.580391 ], [ 95.625000, 43.197167 ], [ 95.800781, 43.197167 ], [ 95.800781, 43.068888 ], [ 95.976562, 43.068888 ], [ 95.976562, 42.940339 ], [ 96.152344, 42.940339 ], [ 96.152344, 42.811522 ], [ 97.734375, 42.811522 ], [ 97.734375, 42.682435 ], [ 98.789062, 42.682435 ], [ 98.789062, 42.553080 ], [ 100.195312, 42.553080 ], [ 100.195312, 42.682435 ], [ 101.074219, 42.682435 ], [ 101.074219, 42.553080 ], [ 101.777344, 42.553080 ], [ 101.777344, 42.423457 ], [ 102.128906, 42.423457 ], [ 102.128906, 42.293564 ], [ 102.480469, 42.293564 ], [ 102.480469, 42.163403 ], [ 102.832031, 42.163403 ], [ 102.832031, 42.032974 ], [ 104.414062, 42.032974 ], [ 104.414062, 41.902277 ], [ 104.589844, 41.902277 ], [ 104.589844, 41.771312 ], [ 104.765625, 41.771312 ], [ 104.765625, 41.640078 ], [ 105.117188, 41.640078 ], [ 105.117188, 41.771312 ], [ 105.468750, 41.771312 ], [ 105.468750, 41.902277 ], [ 105.644531, 41.902277 ], [ 105.644531, 42.032974 ], [ 105.996094, 42.032974 ], [ 105.996094, 42.163403 ], [ 106.347656, 42.163403 ], [ 106.347656, 42.293564 ], [ 106.875000, 42.293564 ], [ 106.875000, 42.423457 ], [ 107.402344, 42.423457 ], [ 107.402344, 42.553080 ], [ 109.511719, 42.553080 ], [ 109.511719, 42.682435 ], [ 109.863281, 42.682435 ], [ 109.863281, 42.811522 ], [ 110.214844, 42.811522 ], [ 110.214844, 42.940339 ], [ 110.566406, 42.940339 ], [ 110.566406, 43.068888 ], [ 110.742188, 43.068888 ], [ 110.742188, 43.197167 ], [ 110.917969, 43.197167 ], [ 110.917969, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.452919 ], [ 111.269531, 43.452919 ], [ 111.269531, 43.580391 ], [ 111.621094, 43.580391 ], [ 111.621094, 43.707594 ], [ 111.796875, 43.707594 ], [ 111.796875, 43.961191 ], [ 111.621094, 43.961191 ], [ 111.621094, 44.087585 ], [ 111.445312, 44.087585 ], [ 111.445312, 44.339565 ], [ 111.269531, 44.339565 ], [ 111.269531, 44.590467 ], [ 111.445312, 44.590467 ], [ 111.445312, 44.840291 ], [ 111.621094, 44.840291 ], [ 111.621094, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 45.213004 ], [ 111.972656, 45.213004 ], [ 111.972656, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 44.964798 ], [ 113.027344, 44.964798 ], [ 113.027344, 44.840291 ], [ 113.554688, 44.840291 ], [ 113.554688, 44.964798 ], [ 113.730469, 44.964798 ], [ 113.730469, 45.089036 ], [ 114.082031, 45.089036 ], [ 114.082031, 45.213004 ], [ 114.257812, 45.213004 ], [ 114.257812, 45.336702 ], [ 114.433594, 45.336702 ], [ 114.433594, 45.460131 ], [ 114.785156, 45.460131 ], [ 114.785156, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.706179 ], [ 115.664062, 45.706179 ], [ 115.664062, 45.828799 ], [ 116.015625, 45.828799 ], [ 116.015625, 45.951150 ], [ 116.191406, 45.951150 ], [ 116.191406, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 46.195042 ], [ 116.542969, 46.195042 ], [ 116.542969, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.437857 ], [ 117.070312, 46.437857 ], [ 117.070312, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.679594 ], [ 117.949219, 46.679594 ], [ 117.949219, 46.800059 ], [ 118.652344, 46.800059 ], [ 118.652344, 46.920255 ], [ 119.003906, 46.920255 ], [ 119.003906, 46.800059 ], [ 119.531250, 46.800059 ], [ 119.531250, 46.920255 ], [ 119.707031, 46.920255 ], [ 119.707031, 47.159840 ], [ 119.531250, 47.159840 ], [ 119.531250, 47.279229 ], [ 119.355469, 47.279229 ], [ 119.355469, 47.398349 ], [ 119.179688, 47.398349 ], [ 119.179688, 47.517201 ], [ 119.003906, 47.517201 ], [ 119.003906, 47.635784 ], [ 118.828125, 47.635784 ], [ 118.828125, 47.754098 ], [ 118.652344, 47.754098 ], [ 118.652344, 47.872144 ], [ 118.300781, 47.872144 ], [ 118.300781, 47.989922 ], [ 117.773438, 47.989922 ], [ 117.773438, 47.872144 ], [ 117.421875, 47.872144 ], [ 117.421875, 47.754098 ], [ 116.542969, 47.754098 ], [ 116.542969, 47.872144 ], [ 116.015625, 47.872144 ], [ 116.015625, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.872144 ], [ 115.488281, 47.872144 ], [ 115.488281, 48.107431 ], [ 115.312500, 48.107431 ], [ 115.312500, 48.224673 ], [ 115.488281, 48.224673 ], [ 115.488281, 48.458352 ], [ 115.664062, 48.458352 ], [ 115.664062, 48.690960 ], [ 115.839844, 48.690960 ], [ 115.839844, 48.806863 ], [ 116.015625, 48.806863 ], [ 116.015625, 49.037868 ], [ 116.191406, 49.037868 ], [ 116.191406, 49.267805 ], [ 116.367188, 49.267805 ], [ 116.367188, 49.724479 ], [ 116.542969, 49.724479 ], [ 116.542969, 49.951220 ], [ 116.718750, 49.951220 ], [ 116.718750, 49.837982 ], [ 117.070312, 49.837982 ], [ 117.070312, 49.724479 ], [ 117.421875, 49.724479 ], [ 117.421875, 49.610710 ], [ 117.949219, 49.610710 ], [ 117.949219, 49.724479 ], [ 118.300781, 49.724479 ], [ 118.300781, 49.837982 ], [ 118.652344, 49.837982 ], [ 118.652344, 49.951220 ], [ 118.828125, 49.951220 ], [ 118.828125, 50.064192 ], [ 119.179688, 50.064192 ], [ 119.179688, 50.736455 ], [ 119.355469, 50.736455 ], [ 119.355469, 50.958427 ], [ 119.531250, 50.958427 ], [ 119.531250, 51.179343 ], [ 119.707031, 51.179343 ], [ 119.707031, 51.399206 ], [ 119.882812, 51.399206 ], [ 119.882812, 51.618017 ], [ 120.058594, 51.618017 ], [ 120.058594, 51.727028 ], [ 120.234375, 51.727028 ], [ 120.234375, 51.835778 ], [ 120.410156, 51.835778 ], [ 120.410156, 51.944265 ], [ 120.585938, 51.944265 ], [ 120.585938, 52.589701 ], [ 120.410156, 52.589701 ], [ 120.410156, 52.696361 ], [ 120.058594, 52.696361 ], [ 120.058594, 52.802761 ], [ 120.234375, 52.802761 ], [ 120.234375, 52.908902 ], [ 120.410156, 52.908902 ], [ 120.410156, 53.014783 ], [ 120.585938, 53.014783 ], [ 120.585938, 53.120405 ], [ 120.761719, 53.120405 ], [ 120.761719, 53.225768 ], [ 120.937500, 53.225768 ], [ 120.937500, 53.330873 ], [ 121.640625, 53.330873 ], [ 121.640625, 53.435719 ], [ 123.046875, 53.435719 ], [ 123.046875, 53.540307 ], [ 123.750000, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.253906, 42.811522 ], [ 130.253906, 42.682435 ], [ 130.429688, 42.682435 ], [ 130.429688, 42.423457 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.293564 ], [ 130.781250, 42.293564 ], [ 130.781250, 42.163403 ], [ 130.253906, 42.163403 ], [ 130.253906, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.902277 ], [ 129.902344, 41.902277 ], [ 129.902344, 41.771312 ], [ 129.726562, 41.771312 ], [ 129.726562, 40.847060 ], [ 129.550781, 40.847060 ], [ 129.550781, 40.713956 ], [ 129.199219, 40.713956 ], [ 129.199219, 40.580585 ], [ 129.023438, 40.580585 ], [ 129.023438, 40.313043 ], [ 124.980469, 40.313043 ], [ 124.980469, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.580585 ], [ 125.332031, 40.580585 ], [ 125.332031, 40.713956 ], [ 125.683594, 40.713956 ], [ 125.683594, 40.847060 ], [ 125.859375, 40.847060 ], [ 125.859375, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 41.112469 ], [ 126.386719, 41.112469 ], [ 126.386719, 41.244772 ], [ 126.562500, 41.244772 ], [ 126.562500, 41.508577 ], [ 126.738281, 41.508577 ], [ 126.738281, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.771312 ], [ 127.968750, 41.771312 ], [ 127.968750, 42.032974 ], [ 128.320312, 42.032974 ], [ 128.320312, 42.163403 ], [ 128.847656, 42.163403 ], [ 128.847656, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.423457 ], [ 129.726562, 42.423457 ], [ 129.726562, 42.682435 ], [ 129.902344, 42.682435 ], [ 129.902344, 42.811522 ], [ 130.253906, 42.811522 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.078125, 42.940339 ], [ 130.078125, 42.811522 ], [ 130.253906, 42.811522 ], [ 130.253906, 42.553080 ], [ 130.429688, 42.553080 ], [ 130.429688, 42.423457 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.293564 ], [ 130.253906, 42.293564 ], [ 130.253906, 42.163403 ], [ 130.078125, 42.163403 ], [ 130.078125, 42.032974 ], [ 129.902344, 42.032974 ], [ 129.902344, 41.902277 ], [ 129.726562, 41.902277 ], [ 129.726562, 41.640078 ], [ 129.550781, 41.640078 ], [ 129.550781, 40.847060 ], [ 129.199219, 40.847060 ], [ 129.199219, 40.713956 ], [ 129.023438, 40.713956 ], [ 129.023438, 40.580585 ], [ 128.847656, 40.580585 ], [ 128.847656, 40.446947 ], [ 128.671875, 40.446947 ], [ 128.671875, 40.313043 ], [ 124.804688, 40.313043 ], [ 124.804688, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.713956 ], [ 125.507812, 40.713956 ], [ 125.507812, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.979898 ], [ 126.035156, 40.979898 ], [ 126.035156, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 41.376809 ], [ 126.386719, 41.376809 ], [ 126.386719, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.771312 ], [ 126.914062, 41.771312 ], [ 126.914062, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.771312 ], [ 127.968750, 41.771312 ], [ 127.968750, 42.032974 ], [ 128.320312, 42.032974 ], [ 128.320312, 42.163403 ], [ 128.847656, 42.163403 ], [ 128.847656, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.423457 ], [ 129.550781, 42.423457 ], [ 129.550781, 42.553080 ], [ 129.726562, 42.553080 ], [ 129.726562, 42.811522 ], [ 129.902344, 42.811522 ], [ 129.902344, 42.940339 ], [ 130.078125, 42.940339 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.589844, 77.655346 ], [ 104.589844, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.579959 ], [ 104.941406, 77.579959 ], [ 104.941406, 77.542096 ], [ 105.292969, 77.542096 ], [ 105.292969, 77.504119 ], [ 105.468750, 77.504119 ], [ 105.468750, 77.466028 ], [ 105.644531, 77.466028 ], [ 105.644531, 77.427824 ], [ 105.820312, 77.427824 ], [ 105.820312, 77.389504 ], [ 105.996094, 77.389504 ], [ 105.996094, 77.351070 ], [ 105.820312, 77.351070 ], [ 105.820312, 77.312520 ], [ 105.644531, 77.312520 ], [ 105.644531, 77.273855 ], [ 105.468750, 77.273855 ], [ 105.468750, 77.235074 ], [ 105.292969, 77.235074 ], [ 105.292969, 77.196176 ], [ 105.117188, 77.196176 ], [ 105.117188, 77.157163 ], [ 104.941406, 77.157163 ], [ 104.941406, 77.078784 ], [ 105.468750, 77.078784 ], [ 105.468750, 77.039418 ], [ 106.171875, 77.039418 ], [ 106.171875, 76.999935 ], [ 106.699219, 76.999935 ], [ 106.699219, 76.960334 ], [ 107.050781, 76.960334 ], [ 107.050781, 76.720223 ], [ 107.226562, 76.720223 ], [ 107.226562, 76.475773 ], [ 107.402344, 76.475773 ], [ 107.402344, 76.516819 ], [ 107.578125, 76.516819 ], [ 107.578125, 76.598545 ], [ 107.753906, 76.598545 ], [ 107.753906, 76.639226 ], [ 107.929688, 76.639226 ], [ 107.929688, 76.679785 ], [ 108.105469, 76.679785 ], [ 108.105469, 76.720223 ], [ 111.093750, 76.720223 ], [ 111.093750, 76.679785 ], [ 111.269531, 76.679785 ], [ 111.269531, 76.639226 ], [ 111.445312, 76.639226 ], [ 111.445312, 76.598545 ], [ 111.621094, 76.598545 ], [ 111.621094, 76.557743 ], [ 111.796875, 76.557743 ], [ 111.796875, 76.516819 ], [ 111.972656, 76.516819 ], [ 111.972656, 76.475773 ], [ 112.324219, 76.475773 ], [ 112.324219, 76.434604 ], [ 112.500000, 76.434604 ], [ 112.500000, 76.393312 ], [ 112.675781, 76.393312 ], [ 112.675781, 76.351896 ], [ 112.851562, 76.351896 ], [ 112.851562, 76.310358 ], [ 113.027344, 76.310358 ], [ 113.027344, 76.268695 ], [ 113.203125, 76.268695 ], [ 113.203125, 76.226907 ], [ 113.378906, 76.226907 ], [ 113.378906, 76.142958 ], [ 113.554688, 76.142958 ], [ 113.554688, 76.058508 ], [ 113.730469, 76.058508 ], [ 113.730469, 75.973553 ], [ 113.906250, 75.973553 ], [ 113.906250, 75.888091 ], [ 114.082031, 75.888091 ], [ 114.082031, 75.584937 ], [ 113.906250, 75.584937 ], [ 113.906250, 75.275413 ], [ 113.730469, 75.275413 ], [ 113.730469, 75.230667 ], [ 113.554688, 75.230667 ], [ 113.554688, 75.185789 ], [ 113.378906, 75.185789 ], [ 113.378906, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 75.095633 ], [ 113.027344, 75.095633 ], [ 113.027344, 75.050354 ], [ 112.851562, 75.050354 ], [ 112.851562, 75.004940 ], [ 112.675781, 75.004940 ], [ 112.675781, 74.959392 ], [ 112.324219, 74.959392 ], [ 112.324219, 74.913708 ], [ 112.148438, 74.913708 ], [ 112.148438, 74.867889 ], [ 111.972656, 74.867889 ], [ 111.972656, 74.821934 ], [ 111.796875, 74.821934 ], [ 111.796875, 74.775843 ], [ 111.445312, 74.775843 ], [ 111.445312, 74.729615 ], [ 111.269531, 74.729615 ], [ 111.269531, 74.683250 ], [ 111.093750, 74.683250 ], [ 111.093750, 74.636748 ], [ 110.917969, 74.636748 ], [ 110.917969, 74.590108 ], [ 110.566406, 74.590108 ], [ 110.566406, 74.543330 ], [ 110.390625, 74.543330 ], [ 110.390625, 74.496413 ], [ 110.214844, 74.496413 ], [ 110.214844, 74.449358 ], [ 110.039062, 74.449358 ], [ 110.039062, 74.354828 ], [ 109.863281, 74.354828 ], [ 109.863281, 74.307353 ], [ 109.687500, 74.307353 ], [ 109.687500, 74.259738 ], [ 109.511719, 74.259738 ], [ 109.511719, 74.116047 ], [ 109.863281, 74.116047 ], [ 109.863281, 74.067866 ], [ 110.214844, 74.067866 ], [ 110.214844, 74.019543 ], [ 110.566406, 74.019543 ], [ 110.566406, 73.971078 ], [ 110.917969, 73.971078 ], [ 110.917969, 73.922469 ], [ 111.269531, 73.922469 ], [ 111.269531, 73.873717 ], [ 111.621094, 73.873717 ], [ 111.621094, 73.824820 ], [ 111.972656, 73.824820 ], [ 111.972656, 73.775780 ], [ 112.324219, 73.775780 ], [ 112.324219, 73.824820 ], [ 112.500000, 73.824820 ], [ 112.500000, 73.873717 ], [ 112.851562, 73.873717 ], [ 112.851562, 73.922469 ], [ 113.027344, 73.922469 ], [ 113.027344, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.627789 ], [ 113.378906, 73.627789 ], [ 113.378906, 73.428424 ], [ 113.554688, 73.428424 ], [ 113.554688, 73.378215 ], [ 113.730469, 73.378215 ], [ 113.730469, 73.478485 ], [ 113.906250, 73.478485 ], [ 113.906250, 73.578167 ], [ 114.257812, 73.578167 ], [ 114.257812, 73.627789 ], [ 114.609375, 73.627789 ], [ 114.609375, 73.677264 ], [ 114.960938, 73.677264 ], [ 114.960938, 73.726595 ], [ 115.312500, 73.726595 ], [ 115.312500, 73.775780 ], [ 115.839844, 73.775780 ], [ 115.839844, 73.726595 ], [ 116.718750, 73.726595 ], [ 116.718750, 73.677264 ], [ 117.421875, 73.677264 ], [ 117.421875, 73.627789 ], [ 118.300781, 73.627789 ], [ 118.300781, 73.578167 ], [ 118.828125, 73.578167 ], [ 118.828125, 73.327858 ], [ 119.003906, 73.327858 ], [ 119.003906, 73.124945 ], [ 119.531250, 73.124945 ], [ 119.531250, 73.073844 ], [ 120.937500, 73.073844 ], [ 120.937500, 73.022592 ], [ 122.343750, 73.022592 ], [ 122.343750, 72.971189 ], [ 123.222656, 72.971189 ], [ 123.222656, 73.726595 ], [ 123.398438, 73.726595 ], [ 123.398438, 73.677264 ], [ 124.101562, 73.677264 ], [ 124.101562, 73.627789 ], [ 124.804688, 73.627789 ], [ 124.804688, 73.578167 ], [ 126.914062, 73.578167 ], [ 126.914062, 73.528399 ], [ 127.089844, 73.528399 ], [ 127.089844, 73.478485 ], [ 127.265625, 73.478485 ], [ 127.265625, 73.428424 ], [ 127.441406, 73.428424 ], [ 127.441406, 73.378215 ], [ 127.617188, 73.378215 ], [ 127.617188, 73.327858 ], [ 127.792969, 73.327858 ], [ 127.792969, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.175897 ], [ 128.144531, 73.175897 ], [ 128.144531, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.073844 ], [ 128.496094, 73.073844 ], [ 128.496094, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.867930 ], [ 128.847656, 72.867930 ], [ 128.847656, 72.554498 ], [ 129.023438, 72.554498 ], [ 129.023438, 72.289067 ], [ 128.847656, 72.289067 ], [ 128.847656, 72.181804 ], [ 128.671875, 72.181804 ], [ 128.671875, 72.019729 ], [ 128.496094, 72.019729 ], [ 128.496094, 71.910888 ], [ 128.671875, 71.910888 ], [ 128.671875, 71.801410 ], [ 128.847656, 71.801410 ], [ 128.847656, 71.691293 ], [ 129.023438, 71.691293 ], [ 129.023438, 71.580532 ], [ 129.199219, 71.580532 ], [ 129.199219, 71.469124 ], [ 129.375000, 71.469124 ], [ 129.375000, 71.357067 ], [ 129.550781, 71.357067 ], [ 129.550781, 71.244356 ], [ 129.726562, 71.244356 ], [ 129.726562, 71.130988 ], [ 129.902344, 71.130988 ], [ 129.902344, 71.074056 ], [ 130.253906, 71.074056 ], [ 130.253906, 71.016960 ], [ 130.429688, 71.016960 ], [ 130.429688, 70.959697 ], [ 130.605469, 70.959697 ], [ 130.605469, 70.902268 ], [ 130.957031, 70.902268 ], [ 130.957031, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.786910 ], [ 131.308594, 70.786910 ], [ 131.308594, 70.844673 ], [ 131.484375, 70.844673 ], [ 131.484375, 71.074056 ], [ 131.660156, 71.074056 ], [ 131.660156, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.524909 ], [ 132.011719, 71.524909 ], [ 132.011719, 71.746432 ], [ 132.187500, 71.746432 ], [ 132.187500, 71.801410 ], [ 132.363281, 71.801410 ], [ 132.363281, 71.746432 ], [ 132.714844, 71.746432 ], [ 132.714844, 71.691293 ], [ 132.890625, 71.691293 ], [ 132.890625, 71.635993 ], [ 133.066406, 71.635993 ], [ 133.066406, 71.580532 ], [ 133.242188, 71.580532 ], [ 133.242188, 71.524909 ], [ 133.593750, 71.524909 ], [ 133.593750, 71.469124 ], [ 133.769531, 71.469124 ], [ 133.769531, 71.413177 ], [ 134.296875, 71.413177 ], [ 134.296875, 71.469124 ], [ 134.648438, 71.469124 ], [ 134.648438, 71.524909 ], [ 135.000000, 71.524909 ], [ 135.000000, 71.580532 ], [ 135.351562, 71.580532 ], [ 135.351562, 71.635993 ], [ 135.527344, 71.635993 ], [ 135.527344, 71.580532 ], [ 135.878906, 71.580532 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.364506 ], [ 89.296875, 75.364506 ], [ 89.296875, 75.408854 ], [ 89.472656, 75.408854 ], [ 89.472656, 75.453071 ], [ 89.648438, 75.453071 ], [ 89.648438, 75.497157 ], [ 89.824219, 75.497157 ], [ 89.824219, 75.541113 ], [ 90.000000, 75.541113 ], [ 90.000000, 75.584937 ], [ 90.175781, 75.584937 ], [ 90.175781, 75.628632 ], [ 90.703125, 75.628632 ], [ 90.703125, 75.672197 ], [ 91.757812, 75.672197 ], [ 91.757812, 75.715633 ], [ 92.636719, 75.715633 ], [ 92.636719, 75.758940 ], [ 92.988281, 75.758940 ], [ 92.988281, 75.888091 ], [ 93.164062, 75.888091 ], [ 93.164062, 76.058508 ], [ 93.867188, 76.058508 ], [ 93.867188, 76.100796 ], [ 95.273438, 76.100796 ], [ 95.273438, 76.142958 ], [ 95.800781, 76.142958 ], [ 95.800781, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.058508 ], [ 96.152344, 76.058508 ], [ 96.152344, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.973553 ], [ 96.503906, 75.973553 ], [ 96.503906, 75.930885 ], [ 96.855469, 75.930885 ], [ 96.855469, 75.973553 ], [ 97.031250, 75.973553 ], [ 97.031250, 76.016094 ], [ 97.207031, 76.016094 ], [ 97.207031, 76.058508 ], [ 97.382812, 76.058508 ], [ 97.382812, 76.100796 ], [ 97.558594, 76.100796 ], [ 97.558594, 76.142958 ], [ 97.734375, 76.142958 ], [ 97.734375, 76.184995 ], [ 98.085938, 76.184995 ], [ 98.085938, 76.226907 ], [ 98.261719, 76.226907 ], [ 98.261719, 76.268695 ], [ 98.437500, 76.268695 ], [ 98.437500, 76.310358 ], [ 98.613281, 76.310358 ], [ 98.613281, 76.351896 ], [ 98.789062, 76.351896 ], [ 98.789062, 76.393312 ], [ 98.964844, 76.393312 ], [ 98.964844, 76.434604 ], [ 100.722656, 76.434604 ], [ 100.722656, 76.516819 ], [ 100.898438, 76.516819 ], [ 100.898438, 76.760541 ], [ 101.074219, 76.760541 ], [ 101.074219, 76.920614 ], [ 101.250000, 76.920614 ], [ 101.250000, 76.999935 ], [ 101.425781, 76.999935 ], [ 101.425781, 77.078784 ], [ 101.601562, 77.078784 ], [ 101.601562, 77.157163 ], [ 101.777344, 77.157163 ], [ 101.777344, 77.235074 ], [ 101.953125, 77.235074 ], [ 101.953125, 77.273855 ], [ 102.128906, 77.273855 ], [ 102.128906, 77.312520 ], [ 102.304688, 77.312520 ], [ 102.304688, 77.351070 ], [ 102.656250, 77.351070 ], [ 102.656250, 77.389504 ], [ 102.832031, 77.389504 ], [ 102.832031, 77.427824 ], [ 103.007812, 77.427824 ], [ 103.007812, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.504119 ], [ 103.535156, 77.504119 ], [ 103.535156, 77.542096 ], [ 103.710938, 77.542096 ], [ 103.710938, 77.579959 ], [ 103.886719, 77.579959 ], [ 103.886719, 77.617709 ], [ 104.238281, 77.617709 ], [ 104.238281, 77.655346 ], [ 104.589844, 77.655346 ] ] ], [ [ [ 102.304688, 79.335219 ], [ 102.304688, 79.302640 ], [ 102.656250, 79.302640 ], [ 102.656250, 79.269962 ], [ 102.832031, 79.269962 ], [ 102.832031, 79.237185 ], [ 103.007812, 79.237185 ], [ 103.007812, 79.204309 ], [ 103.183594, 79.204309 ], [ 103.183594, 79.138260 ], [ 103.359375, 79.138260 ], [ 103.359375, 79.105086 ], [ 103.535156, 79.105086 ], [ 103.535156, 79.071812 ], [ 103.710938, 79.071812 ], [ 103.710938, 79.038437 ], [ 103.886719, 79.038437 ], [ 103.886719, 79.004962 ], [ 104.062500, 79.004962 ], [ 104.062500, 78.937708 ], [ 104.238281, 78.937708 ], [ 104.238281, 78.903929 ], [ 104.414062, 78.903929 ], [ 104.414062, 78.870048 ], [ 104.589844, 78.870048 ], [ 104.589844, 78.836065 ], [ 104.765625, 78.836065 ], [ 104.765625, 78.801980 ], [ 104.941406, 78.801980 ], [ 104.941406, 78.733501 ], [ 105.117188, 78.733501 ], [ 105.117188, 78.699106 ], [ 105.292969, 78.699106 ], [ 105.292969, 78.490552 ], [ 105.117188, 78.490552 ], [ 105.117188, 78.313860 ], [ 104.941406, 78.313860 ], [ 104.941406, 78.278201 ], [ 104.414062, 78.278201 ], [ 104.414062, 78.242436 ], [ 103.886719, 78.242436 ], [ 103.886719, 78.206563 ], [ 103.359375, 78.206563 ], [ 103.359375, 78.170582 ], [ 102.832031, 78.170582 ], [ 102.832031, 78.134493 ], [ 102.480469, 78.134493 ], [ 102.480469, 78.098296 ], [ 101.953125, 78.098296 ], [ 101.953125, 78.061989 ], [ 101.425781, 78.061989 ], [ 101.425781, 78.025574 ], [ 100.898438, 78.025574 ], [ 100.898438, 77.989049 ], [ 100.371094, 77.989049 ], [ 100.371094, 77.952414 ], [ 99.843750, 77.952414 ], [ 99.843750, 77.915669 ], [ 99.492188, 77.915669 ], [ 99.492188, 77.952414 ], [ 99.667969, 77.952414 ], [ 99.667969, 78.098296 ], [ 99.843750, 78.098296 ], [ 99.843750, 78.242436 ], [ 100.019531, 78.242436 ], [ 100.019531, 78.384855 ], [ 100.195312, 78.384855 ], [ 100.195312, 78.525573 ], [ 100.371094, 78.525573 ], [ 100.371094, 78.630006 ], [ 100.546875, 78.630006 ], [ 100.546875, 78.767792 ], [ 100.722656, 78.767792 ], [ 100.722656, 78.903929 ], [ 100.898438, 78.903929 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.777344, 79.269962 ], [ 101.777344, 79.302640 ], [ 101.953125, 79.302640 ], [ 101.953125, 79.335219 ], [ 102.304688, 79.335219 ] ] ], [ [ [ 100.019531, 79.335219 ], [ 100.019531, 78.870048 ], [ 99.667969, 78.870048 ], [ 99.667969, 78.836065 ], [ 98.964844, 78.836065 ], [ 98.964844, 78.801980 ], [ 98.261719, 78.801980 ], [ 98.261719, 78.767792 ], [ 97.382812, 78.767792 ], [ 97.382812, 78.801980 ], [ 97.031250, 78.801980 ], [ 97.031250, 78.836065 ], [ 96.679688, 78.836065 ], [ 96.679688, 78.870048 ], [ 96.328125, 78.870048 ], [ 96.328125, 78.903929 ], [ 95.976562, 78.903929 ], [ 95.976562, 78.937708 ], [ 95.625000, 78.937708 ], [ 95.625000, 78.971386 ], [ 95.273438, 78.971386 ], [ 95.273438, 79.004962 ], [ 94.921875, 79.004962 ], [ 94.921875, 79.038437 ], [ 94.746094, 79.038437 ], [ 94.746094, 79.071812 ], [ 94.570312, 79.071812 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.204309 ], [ 94.042969, 79.204309 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.335219 ], [ 100.019531, 79.335219 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.414062, 77.692870 ], [ 104.414062, 77.655346 ], [ 104.589844, 77.655346 ], [ 104.589844, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.579959 ], [ 104.941406, 77.579959 ], [ 104.941406, 77.542096 ], [ 105.292969, 77.542096 ], [ 105.292969, 77.504119 ], [ 105.468750, 77.504119 ], [ 105.468750, 77.466028 ], [ 105.644531, 77.466028 ], [ 105.644531, 77.427824 ], [ 105.820312, 77.427824 ], [ 105.820312, 77.389504 ], [ 105.996094, 77.389504 ], [ 105.996094, 77.351070 ], [ 105.820312, 77.351070 ], [ 105.820312, 77.312520 ], [ 105.468750, 77.312520 ], [ 105.468750, 77.273855 ], [ 105.292969, 77.273855 ], [ 105.292969, 77.235074 ], [ 105.117188, 77.235074 ], [ 105.117188, 77.196176 ], [ 104.765625, 77.196176 ], [ 104.765625, 77.118032 ], [ 105.292969, 77.118032 ], [ 105.292969, 77.078784 ], [ 105.996094, 77.078784 ], [ 105.996094, 77.039418 ], [ 106.523438, 77.039418 ], [ 106.523438, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.880775 ], [ 107.050781, 76.880775 ], [ 107.050781, 76.639226 ], [ 107.226562, 76.639226 ], [ 107.226562, 76.516819 ], [ 107.402344, 76.516819 ], [ 107.402344, 76.557743 ], [ 107.578125, 76.557743 ], [ 107.578125, 76.639226 ], [ 107.753906, 76.639226 ], [ 107.753906, 76.679785 ], [ 107.929688, 76.679785 ], [ 107.929688, 76.720223 ], [ 108.105469, 76.720223 ], [ 108.105469, 76.760541 ], [ 109.335938, 76.760541 ], [ 109.335938, 76.720223 ], [ 110.917969, 76.720223 ], [ 110.917969, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.639226 ], [ 111.269531, 76.639226 ], [ 111.269531, 76.598545 ], [ 111.445312, 76.598545 ], [ 111.445312, 76.557743 ], [ 111.621094, 76.557743 ], [ 111.621094, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.475773 ], [ 112.148438, 76.475773 ], [ 112.148438, 76.434604 ], [ 112.324219, 76.434604 ], [ 112.324219, 76.393312 ], [ 112.500000, 76.393312 ], [ 112.500000, 76.351896 ], [ 112.675781, 76.351896 ], [ 112.675781, 76.310358 ], [ 112.851562, 76.310358 ], [ 112.851562, 76.268695 ], [ 113.027344, 76.268695 ], [ 113.027344, 76.226907 ], [ 113.203125, 76.226907 ], [ 113.203125, 76.184995 ], [ 113.378906, 76.184995 ], [ 113.378906, 76.100796 ], [ 113.554688, 76.100796 ], [ 113.554688, 76.058508 ], [ 113.730469, 76.058508 ], [ 113.730469, 75.973553 ], [ 113.906250, 75.973553 ], [ 113.906250, 75.888091 ], [ 114.082031, 75.888091 ], [ 114.082031, 75.758940 ], [ 113.906250, 75.758940 ], [ 113.906250, 75.497157 ], [ 113.730469, 75.497157 ], [ 113.730469, 75.320025 ], [ 113.554688, 75.320025 ], [ 113.554688, 75.275413 ], [ 113.378906, 75.275413 ], [ 113.378906, 75.230667 ], [ 113.203125, 75.230667 ], [ 113.203125, 75.140778 ], [ 113.027344, 75.140778 ], [ 113.027344, 75.095633 ], [ 112.851562, 75.095633 ], [ 112.851562, 75.050354 ], [ 112.675781, 75.050354 ], [ 112.675781, 75.004940 ], [ 112.500000, 75.004940 ], [ 112.500000, 74.959392 ], [ 112.148438, 74.959392 ], [ 112.148438, 74.913708 ], [ 111.972656, 74.913708 ], [ 111.972656, 74.867889 ], [ 111.796875, 74.867889 ], [ 111.796875, 74.821934 ], [ 111.621094, 74.821934 ], [ 111.621094, 74.775843 ], [ 111.269531, 74.775843 ], [ 111.269531, 74.729615 ], [ 111.093750, 74.729615 ], [ 111.093750, 74.683250 ], [ 110.917969, 74.683250 ], [ 110.917969, 74.636748 ], [ 110.742188, 74.636748 ], [ 110.742188, 74.590108 ], [ 110.390625, 74.590108 ], [ 110.390625, 74.543330 ], [ 110.214844, 74.543330 ], [ 110.214844, 74.496413 ], [ 110.039062, 74.496413 ], [ 110.039062, 74.449358 ], [ 109.863281, 74.449358 ], [ 109.863281, 74.354828 ], [ 109.687500, 74.354828 ], [ 109.687500, 74.307353 ], [ 109.511719, 74.307353 ], [ 109.511719, 74.164085 ], [ 109.863281, 74.164085 ], [ 109.863281, 74.116047 ], [ 110.214844, 74.116047 ], [ 110.214844, 74.067866 ], [ 110.566406, 74.067866 ], [ 110.566406, 74.019543 ], [ 110.917969, 74.019543 ], [ 110.917969, 73.971078 ], [ 111.093750, 73.971078 ], [ 111.093750, 73.922469 ], [ 111.445312, 73.922469 ], [ 111.445312, 73.873717 ], [ 111.796875, 73.873717 ], [ 111.796875, 73.824820 ], [ 112.148438, 73.824820 ], [ 112.148438, 73.873717 ], [ 112.324219, 73.873717 ], [ 112.324219, 73.922469 ], [ 112.675781, 73.922469 ], [ 112.675781, 73.971078 ], [ 112.851562, 73.971078 ], [ 112.851562, 73.873717 ], [ 113.027344, 73.873717 ], [ 113.027344, 73.677264 ], [ 113.203125, 73.677264 ], [ 113.203125, 73.478485 ], [ 113.378906, 73.478485 ], [ 113.378906, 73.378215 ], [ 113.554688, 73.378215 ], [ 113.554688, 73.478485 ], [ 113.730469, 73.478485 ], [ 113.730469, 73.578167 ], [ 113.906250, 73.578167 ], [ 113.906250, 73.627789 ], [ 114.257812, 73.627789 ], [ 114.257812, 73.677264 ], [ 114.785156, 73.677264 ], [ 114.785156, 73.726595 ], [ 115.312500, 73.726595 ], [ 115.312500, 73.775780 ], [ 115.839844, 73.775780 ], [ 115.839844, 73.726595 ], [ 116.894531, 73.726595 ], [ 116.894531, 73.677264 ], [ 117.949219, 73.677264 ], [ 117.949219, 73.627789 ], [ 118.652344, 73.627789 ], [ 118.652344, 73.478485 ], [ 118.828125, 73.478485 ], [ 118.828125, 73.226700 ], [ 119.003906, 73.226700 ], [ 119.003906, 73.124945 ], [ 119.531250, 73.124945 ], [ 119.531250, 73.073844 ], [ 120.937500, 73.073844 ], [ 120.937500, 73.022592 ], [ 122.343750, 73.022592 ], [ 122.343750, 72.971189 ], [ 123.046875, 72.971189 ], [ 123.046875, 73.378215 ], [ 123.222656, 73.378215 ], [ 123.222656, 73.775780 ], [ 123.398438, 73.775780 ], [ 123.398438, 73.726595 ], [ 123.925781, 73.726595 ], [ 123.925781, 73.677264 ], [ 124.453125, 73.677264 ], [ 124.453125, 73.627789 ], [ 124.980469, 73.627789 ], [ 124.980469, 73.578167 ], [ 126.914062, 73.578167 ], [ 126.914062, 73.528399 ], [ 127.089844, 73.528399 ], [ 127.089844, 73.478485 ], [ 127.265625, 73.478485 ], [ 127.265625, 73.428424 ], [ 127.441406, 73.428424 ], [ 127.441406, 73.378215 ], [ 127.617188, 73.378215 ], [ 127.617188, 73.327858 ], [ 127.792969, 73.327858 ], [ 127.792969, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.175897 ], [ 128.144531, 73.175897 ], [ 128.144531, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.073844 ], [ 128.496094, 73.073844 ], [ 128.496094, 72.971189 ], [ 128.671875, 72.971189 ], [ 128.671875, 72.764065 ], [ 128.847656, 72.764065 ], [ 128.847656, 72.554498 ], [ 129.023438, 72.554498 ], [ 129.023438, 72.395706 ], [ 128.847656, 72.395706 ], [ 128.847656, 72.289067 ], [ 128.671875, 72.289067 ], [ 128.671875, 72.181804 ], [ 128.496094, 72.181804 ], [ 128.496094, 72.073911 ], [ 128.320312, 72.073911 ], [ 128.320312, 71.965388 ], [ 128.496094, 71.965388 ], [ 128.496094, 71.856229 ], [ 128.671875, 71.856229 ], [ 128.671875, 71.746432 ], [ 128.847656, 71.746432 ], [ 128.847656, 71.635993 ], [ 129.023438, 71.635993 ], [ 129.023438, 71.524909 ], [ 129.199219, 71.524909 ], [ 129.199219, 71.413177 ], [ 129.375000, 71.413177 ], [ 129.375000, 71.300793 ], [ 129.550781, 71.300793 ], [ 129.550781, 71.187754 ], [ 129.726562, 71.187754 ], [ 129.726562, 71.130988 ], [ 129.902344, 71.130988 ], [ 129.902344, 71.074056 ], [ 130.078125, 71.074056 ], [ 130.078125, 71.016960 ], [ 130.429688, 71.016960 ], [ 130.429688, 70.959697 ], [ 130.605469, 70.959697 ], [ 130.605469, 70.902268 ], [ 130.781250, 70.902268 ], [ 130.781250, 70.844673 ], [ 130.957031, 70.844673 ], [ 130.957031, 70.786910 ], [ 131.132812, 70.786910 ], [ 131.132812, 70.844673 ], [ 131.308594, 70.844673 ], [ 131.308594, 71.016960 ], [ 131.484375, 71.016960 ], [ 131.484375, 71.187754 ], [ 131.660156, 71.187754 ], [ 131.660156, 71.413177 ], [ 131.835938, 71.413177 ], [ 131.835938, 71.580532 ], [ 132.011719, 71.580532 ], [ 132.011719, 71.746432 ], [ 132.187500, 71.746432 ], [ 132.187500, 71.801410 ], [ 132.363281, 71.801410 ], [ 132.363281, 71.746432 ], [ 132.539062, 71.746432 ], [ 132.539062, 71.691293 ], [ 132.714844, 71.691293 ], [ 132.714844, 71.635993 ], [ 133.066406, 71.635993 ], [ 133.066406, 71.580532 ], [ 133.242188, 71.580532 ], [ 133.242188, 71.524909 ], [ 133.417969, 71.524909 ], [ 133.417969, 71.469124 ], [ 133.593750, 71.469124 ], [ 133.593750, 71.413177 ], [ 134.121094, 71.413177 ], [ 134.121094, 71.469124 ], [ 134.472656, 71.469124 ], [ 134.472656, 71.524909 ], [ 134.824219, 71.524909 ], [ 134.824219, 71.580532 ], [ 135.175781, 71.580532 ], [ 135.175781, 71.635993 ], [ 135.878906, 71.635993 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.364506 ], [ 89.296875, 75.364506 ], [ 89.296875, 75.408854 ], [ 89.472656, 75.408854 ], [ 89.472656, 75.453071 ], [ 89.648438, 75.453071 ], [ 89.648438, 75.541113 ], [ 89.824219, 75.541113 ], [ 89.824219, 75.584937 ], [ 90.000000, 75.584937 ], [ 90.000000, 75.628632 ], [ 90.175781, 75.628632 ], [ 90.175781, 75.672197 ], [ 90.703125, 75.672197 ], [ 90.703125, 75.715633 ], [ 91.582031, 75.715633 ], [ 91.582031, 75.758940 ], [ 92.460938, 75.758940 ], [ 92.460938, 75.802118 ], [ 92.812500, 75.802118 ], [ 92.812500, 75.845169 ], [ 92.988281, 75.845169 ], [ 92.988281, 75.973553 ], [ 93.164062, 75.973553 ], [ 93.164062, 76.058508 ], [ 93.867188, 76.058508 ], [ 93.867188, 76.100796 ], [ 95.273438, 76.100796 ], [ 95.273438, 76.142958 ], [ 95.800781, 76.142958 ], [ 95.800781, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.058508 ], [ 96.152344, 76.058508 ], [ 96.152344, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.973553 ], [ 96.503906, 75.973553 ], [ 96.503906, 75.930885 ], [ 96.855469, 75.930885 ], [ 96.855469, 75.973553 ], [ 97.031250, 75.973553 ], [ 97.031250, 76.016094 ], [ 97.207031, 76.016094 ], [ 97.207031, 76.058508 ], [ 97.382812, 76.058508 ], [ 97.382812, 76.100796 ], [ 97.558594, 76.100796 ], [ 97.558594, 76.142958 ], [ 97.734375, 76.142958 ], [ 97.734375, 76.226907 ], [ 97.910156, 76.226907 ], [ 97.910156, 76.268695 ], [ 98.085938, 76.268695 ], [ 98.085938, 76.310358 ], [ 98.261719, 76.310358 ], [ 98.261719, 76.351896 ], [ 98.437500, 76.351896 ], [ 98.437500, 76.393312 ], [ 98.613281, 76.393312 ], [ 98.613281, 76.434604 ], [ 98.789062, 76.434604 ], [ 98.789062, 76.475773 ], [ 99.667969, 76.475773 ], [ 99.667969, 76.434604 ], [ 100.722656, 76.434604 ], [ 100.722656, 76.639226 ], [ 100.898438, 76.639226 ], [ 100.898438, 76.880775 ], [ 101.074219, 76.880775 ], [ 101.074219, 76.960334 ], [ 101.250000, 76.960334 ], [ 101.250000, 77.039418 ], [ 101.425781, 77.039418 ], [ 101.425781, 77.118032 ], [ 101.601562, 77.118032 ], [ 101.601562, 77.196176 ], [ 101.777344, 77.196176 ], [ 101.777344, 77.273855 ], [ 101.953125, 77.273855 ], [ 101.953125, 77.312520 ], [ 102.128906, 77.312520 ], [ 102.128906, 77.351070 ], [ 102.304688, 77.351070 ], [ 102.304688, 77.389504 ], [ 102.480469, 77.389504 ], [ 102.480469, 77.427824 ], [ 102.832031, 77.427824 ], [ 102.832031, 77.466028 ], [ 103.007812, 77.466028 ], [ 103.007812, 77.504119 ], [ 103.183594, 77.504119 ], [ 103.183594, 77.542096 ], [ 103.359375, 77.542096 ], [ 103.359375, 77.579959 ], [ 103.535156, 77.579959 ], [ 103.535156, 77.617709 ], [ 103.886719, 77.617709 ], [ 103.886719, 77.655346 ], [ 104.062500, 77.655346 ], [ 104.062500, 77.692870 ], [ 104.414062, 77.692870 ] ] ], [ [ [ 102.304688, 79.335219 ], [ 102.304688, 79.302640 ], [ 102.832031, 79.302640 ], [ 102.832031, 79.269962 ], [ 103.007812, 79.269962 ], [ 103.007812, 79.237185 ], [ 103.183594, 79.237185 ], [ 103.183594, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.138260 ], [ 103.535156, 79.138260 ], [ 103.535156, 79.105086 ], [ 103.710938, 79.105086 ], [ 103.710938, 79.071812 ], [ 103.886719, 79.071812 ], [ 103.886719, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.971386 ], [ 104.238281, 78.971386 ], [ 104.238281, 78.937708 ], [ 104.414062, 78.937708 ], [ 104.414062, 78.903929 ], [ 104.589844, 78.903929 ], [ 104.589844, 78.870048 ], [ 104.765625, 78.870048 ], [ 104.765625, 78.836065 ], [ 104.941406, 78.836065 ], [ 104.941406, 78.767792 ], [ 105.117188, 78.767792 ], [ 105.117188, 78.733501 ], [ 105.292969, 78.733501 ], [ 105.292969, 78.630006 ], [ 105.117188, 78.630006 ], [ 105.117188, 78.420193 ], [ 104.941406, 78.420193 ], [ 104.941406, 78.313860 ], [ 104.765625, 78.313860 ], [ 104.765625, 78.278201 ], [ 104.238281, 78.278201 ], [ 104.238281, 78.242436 ], [ 103.710938, 78.242436 ], [ 103.710938, 78.206563 ], [ 103.007812, 78.206563 ], [ 103.007812, 78.170582 ], [ 102.480469, 78.170582 ], [ 102.480469, 78.134493 ], [ 101.953125, 78.134493 ], [ 101.953125, 78.098296 ], [ 101.425781, 78.098296 ], [ 101.425781, 78.061989 ], [ 100.898438, 78.061989 ], [ 100.898438, 78.025574 ], [ 100.195312, 78.025574 ], [ 100.195312, 77.989049 ], [ 99.667969, 77.989049 ], [ 99.667969, 77.952414 ], [ 99.316406, 77.952414 ], [ 99.316406, 77.989049 ], [ 99.492188, 77.989049 ], [ 99.492188, 78.134493 ], [ 99.667969, 78.134493 ], [ 99.667969, 78.242436 ], [ 99.843750, 78.242436 ], [ 99.843750, 78.349411 ], [ 100.019531, 78.349411 ], [ 100.019531, 78.490552 ], [ 100.195312, 78.490552 ], [ 100.195312, 78.595299 ], [ 100.371094, 78.595299 ], [ 100.371094, 78.699106 ], [ 100.546875, 78.699106 ], [ 100.546875, 78.836065 ], [ 100.722656, 78.836065 ], [ 100.722656, 78.937708 ], [ 100.898438, 78.937708 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.777344, 79.269962 ], [ 101.777344, 79.302640 ], [ 101.953125, 79.302640 ], [ 101.953125, 79.335219 ], [ 102.304688, 79.335219 ] ] ], [ [ [ 100.019531, 79.335219 ], [ 100.019531, 79.105086 ], [ 99.843750, 79.105086 ], [ 99.843750, 78.903929 ], [ 99.667969, 78.903929 ], [ 99.667969, 78.870048 ], [ 99.140625, 78.870048 ], [ 99.140625, 78.836065 ], [ 98.613281, 78.836065 ], [ 98.613281, 78.801980 ], [ 98.085938, 78.801980 ], [ 98.085938, 78.767792 ], [ 97.558594, 78.767792 ], [ 97.558594, 78.801980 ], [ 97.207031, 78.801980 ], [ 97.207031, 78.836065 ], [ 96.855469, 78.836065 ], [ 96.855469, 78.870048 ], [ 96.503906, 78.870048 ], [ 96.503906, 78.903929 ], [ 96.152344, 78.903929 ], [ 96.152344, 78.937708 ], [ 95.976562, 78.937708 ], [ 95.976562, 78.971386 ], [ 95.625000, 78.971386 ], [ 95.625000, 79.004962 ], [ 95.273438, 79.004962 ], [ 95.273438, 79.038437 ], [ 94.921875, 79.038437 ], [ 94.921875, 79.071812 ], [ 94.746094, 79.071812 ], [ 94.746094, 79.105086 ], [ 94.570312, 79.105086 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.204309 ], [ 94.218750, 79.204309 ], [ 94.218750, 79.237185 ], [ 94.042969, 79.237185 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.335219 ], [ 100.019531, 79.335219 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.480469, 79.302640 ], [ 102.480469, 79.269962 ], [ 102.832031, 79.269962 ], [ 102.832031, 79.237185 ], [ 103.007812, 79.237185 ], [ 103.007812, 79.204309 ], [ 103.183594, 79.204309 ], [ 103.183594, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.138260 ], [ 103.535156, 79.138260 ], [ 103.535156, 79.071812 ], [ 103.710938, 79.071812 ], [ 103.710938, 79.038437 ], [ 103.886719, 79.038437 ], [ 103.886719, 79.004962 ], [ 100.898438, 79.004962 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.777344, 79.269962 ], [ 101.777344, 79.302640 ], [ 102.480469, 79.302640 ] ] ], [ [ [ 96.152344, 81.228267 ], [ 96.152344, 81.174491 ], [ 96.328125, 81.174491 ], [ 96.328125, 81.120388 ], [ 96.503906, 81.120388 ], [ 96.503906, 81.093214 ], [ 96.679688, 81.093214 ], [ 96.679688, 81.038617 ], [ 96.855469, 81.038617 ], [ 96.855469, 81.011194 ], [ 97.031250, 81.011194 ], [ 97.031250, 80.956099 ], [ 97.207031, 80.956099 ], [ 97.207031, 80.900669 ], [ 97.382812, 80.900669 ], [ 97.382812, 80.872827 ], [ 97.558594, 80.872827 ], [ 97.558594, 80.816891 ], [ 97.734375, 80.816891 ], [ 97.734375, 80.760615 ], [ 97.910156, 80.760615 ], [ 97.910156, 80.703997 ], [ 98.085938, 80.703997 ], [ 98.085938, 80.647035 ], [ 98.261719, 80.647035 ], [ 98.261719, 80.560943 ], [ 98.437500, 80.560943 ], [ 98.437500, 80.503112 ], [ 98.613281, 80.503112 ], [ 98.613281, 80.415707 ], [ 98.789062, 80.415707 ], [ 98.789062, 80.356995 ], [ 98.964844, 80.356995 ], [ 98.964844, 80.268259 ], [ 99.140625, 80.268259 ], [ 99.140625, 80.178713 ], [ 99.316406, 80.178713 ], [ 99.316406, 80.118564 ], [ 99.492188, 80.118564 ], [ 99.492188, 80.027655 ], [ 99.667969, 80.027655 ], [ 99.667969, 79.966590 ], [ 99.843750, 79.966590 ], [ 99.843750, 79.874297 ], [ 100.019531, 79.874297 ], [ 100.019531, 79.812302 ], [ 100.195312, 79.812302 ], [ 100.195312, 79.400085 ], [ 100.019531, 79.400085 ], [ 100.019531, 79.004962 ], [ 95.097656, 79.004962 ], [ 95.097656, 79.038437 ], [ 94.746094, 79.038437 ], [ 94.746094, 79.105086 ], [ 94.570312, 79.105086 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.237185 ], [ 94.042969, 79.237185 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.367701 ], [ 93.515625, 79.367701 ], [ 93.515625, 79.400085 ], [ 93.339844, 79.400085 ], [ 93.339844, 79.496652 ], [ 93.164062, 79.496652 ], [ 93.164062, 79.624056 ], [ 92.988281, 79.624056 ], [ 92.988281, 79.781164 ], [ 92.812500, 79.781164 ], [ 92.812500, 79.935918 ], [ 92.636719, 79.935918 ], [ 92.636719, 80.058050 ], [ 92.460938, 80.058050 ], [ 92.460938, 80.148684 ], [ 92.285156, 80.148684 ], [ 92.285156, 80.178713 ], [ 92.109375, 80.178713 ], [ 92.109375, 80.208652 ], [ 91.933594, 80.208652 ], [ 91.933594, 80.238501 ], [ 91.582031, 80.238501 ], [ 91.582031, 80.268259 ], [ 91.406250, 80.268259 ], [ 91.406250, 80.297927 ], [ 91.230469, 80.297927 ], [ 91.230469, 80.327506 ], [ 91.406250, 80.327506 ], [ 91.406250, 80.386396 ], [ 91.582031, 80.386396 ], [ 91.582031, 80.444931 ], [ 91.757812, 80.444931 ], [ 91.757812, 80.503112 ], [ 91.933594, 80.503112 ], [ 91.933594, 80.532071 ], [ 92.109375, 80.532071 ], [ 92.109375, 80.589727 ], [ 92.285156, 80.589727 ], [ 92.285156, 80.647035 ], [ 92.460938, 80.647035 ], [ 92.460938, 80.675559 ], [ 92.636719, 80.675559 ], [ 92.636719, 80.732349 ], [ 92.812500, 80.732349 ], [ 92.812500, 80.788795 ], [ 92.988281, 80.788795 ], [ 92.988281, 80.844901 ], [ 93.164062, 80.844901 ], [ 93.164062, 80.872827 ], [ 93.339844, 80.872827 ], [ 93.339844, 80.928426 ], [ 93.515625, 80.928426 ], [ 93.515625, 80.983688 ], [ 93.691406, 80.983688 ], [ 93.691406, 81.011194 ], [ 93.867188, 81.011194 ], [ 93.867188, 81.038617 ], [ 94.218750, 81.038617 ], [ 94.218750, 81.065957 ], [ 94.394531, 81.065957 ], [ 94.394531, 81.093214 ], [ 94.746094, 81.093214 ], [ 94.746094, 81.120388 ], [ 94.921875, 81.120388 ], [ 94.921875, 81.147481 ], [ 95.097656, 81.147481 ], [ 95.097656, 81.174491 ], [ 95.449219, 81.174491 ], [ 95.449219, 81.201420 ], [ 95.625000, 81.201420 ], [ 95.625000, 81.228267 ], [ 96.152344, 81.228267 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.128906, 79.367701 ], [ 102.128906, 79.335219 ], [ 102.480469, 79.335219 ], [ 102.480469, 79.302640 ], [ 102.832031, 79.302640 ], [ 102.832031, 79.269962 ], [ 103.007812, 79.269962 ], [ 103.007812, 79.237185 ], [ 103.183594, 79.237185 ], [ 103.183594, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.138260 ], [ 103.535156, 79.138260 ], [ 103.535156, 79.105086 ], [ 103.710938, 79.105086 ], [ 103.710938, 79.038437 ], [ 103.886719, 79.038437 ], [ 103.886719, 79.004962 ], [ 100.898438, 79.004962 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.601562, 79.269962 ], [ 101.601562, 79.302640 ], [ 101.777344, 79.302640 ], [ 101.777344, 79.335219 ], [ 101.953125, 79.335219 ], [ 101.953125, 79.367701 ], [ 102.128906, 79.367701 ] ] ], [ [ [ 95.976562, 81.228267 ], [ 95.976562, 81.174491 ], [ 96.152344, 81.174491 ], [ 96.152344, 81.120388 ], [ 96.328125, 81.120388 ], [ 96.328125, 81.093214 ], [ 96.503906, 81.093214 ], [ 96.503906, 81.038617 ], [ 96.679688, 81.038617 ], [ 96.679688, 81.011194 ], [ 96.855469, 81.011194 ], [ 96.855469, 80.956099 ], [ 97.031250, 80.956099 ], [ 97.031250, 80.900669 ], [ 97.207031, 80.900669 ], [ 97.207031, 80.872827 ], [ 97.382812, 80.872827 ], [ 97.382812, 80.816891 ], [ 97.558594, 80.816891 ], [ 97.558594, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.703997 ], [ 97.910156, 80.703997 ], [ 97.910156, 80.647035 ], [ 98.085938, 80.647035 ], [ 98.085938, 80.560943 ], [ 98.261719, 80.560943 ], [ 98.261719, 80.503112 ], [ 98.437500, 80.503112 ], [ 98.437500, 80.415707 ], [ 98.613281, 80.415707 ], [ 98.613281, 80.356995 ], [ 98.789062, 80.356995 ], [ 98.789062, 80.268259 ], [ 98.964844, 80.268259 ], [ 98.964844, 80.178713 ], [ 99.140625, 80.178713 ], [ 99.140625, 80.118564 ], [ 99.316406, 80.118564 ], [ 99.316406, 80.027655 ], [ 99.492188, 80.027655 ], [ 99.492188, 79.966590 ], [ 99.667969, 79.966590 ], [ 99.667969, 79.874297 ], [ 99.843750, 79.874297 ], [ 99.843750, 79.812302 ], [ 100.019531, 79.812302 ], [ 100.019531, 79.400085 ], [ 99.843750, 79.400085 ], [ 99.843750, 79.004962 ], [ 95.097656, 79.004962 ], [ 95.097656, 79.038437 ], [ 94.921875, 79.038437 ], [ 94.921875, 79.071812 ], [ 94.746094, 79.071812 ], [ 94.746094, 79.105086 ], [ 94.570312, 79.105086 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.204309 ], [ 94.042969, 79.204309 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.335219 ], [ 93.515625, 79.335219 ], [ 93.515625, 79.367701 ], [ 93.339844, 79.367701 ], [ 93.339844, 79.400085 ], [ 93.164062, 79.400085 ], [ 93.164062, 79.496652 ], [ 92.988281, 79.496652 ], [ 92.988281, 79.687184 ], [ 92.812500, 79.687184 ], [ 92.812500, 79.874297 ], [ 92.636719, 79.874297 ], [ 92.636719, 80.058050 ], [ 92.460938, 80.058050 ], [ 92.460938, 80.148684 ], [ 92.285156, 80.148684 ], [ 92.285156, 80.178713 ], [ 92.109375, 80.178713 ], [ 92.109375, 80.208652 ], [ 91.933594, 80.208652 ], [ 91.933594, 80.238501 ], [ 91.582031, 80.238501 ], [ 91.582031, 80.268259 ], [ 91.406250, 80.268259 ], [ 91.406250, 80.297927 ], [ 91.230469, 80.297927 ], [ 91.230469, 80.327506 ], [ 91.054688, 80.327506 ], [ 91.054688, 80.356995 ], [ 91.230469, 80.356995 ], [ 91.230469, 80.415707 ], [ 91.406250, 80.415707 ], [ 91.406250, 80.474065 ], [ 91.582031, 80.474065 ], [ 91.582031, 80.503112 ], [ 91.757812, 80.503112 ], [ 91.757812, 80.560943 ], [ 91.933594, 80.560943 ], [ 91.933594, 80.589727 ], [ 92.109375, 80.589727 ], [ 92.109375, 80.647035 ], [ 92.285156, 80.647035 ], [ 92.285156, 80.703997 ], [ 92.460938, 80.703997 ], [ 92.460938, 80.732349 ], [ 92.636719, 80.732349 ], [ 92.636719, 80.788795 ], [ 92.812500, 80.788795 ], [ 92.812500, 80.816891 ], [ 92.988281, 80.816891 ], [ 92.988281, 80.872827 ], [ 93.164062, 80.872827 ], [ 93.164062, 80.928426 ], [ 93.339844, 80.928426 ], [ 93.339844, 80.956099 ], [ 93.515625, 80.956099 ], [ 93.515625, 81.011194 ], [ 93.691406, 81.011194 ], [ 93.691406, 81.038617 ], [ 93.867188, 81.038617 ], [ 93.867188, 81.065957 ], [ 94.218750, 81.065957 ], [ 94.218750, 81.093214 ], [ 94.394531, 81.093214 ], [ 94.394531, 81.120388 ], [ 94.746094, 81.120388 ], [ 94.746094, 81.147481 ], [ 94.921875, 81.147481 ], [ 94.921875, 81.174491 ], [ 95.273438, 81.174491 ], [ 95.273438, 81.201420 ], [ 95.449219, 81.201420 ], [ 95.449219, 81.228267 ], [ 95.976562, 81.228267 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, -79.004962 ], [ 164.531250, -79.038437 ], [ 164.355469, -79.038437 ], [ 164.355469, -79.071812 ], [ 164.003906, -79.071812 ], [ 164.003906, -79.105086 ], [ 163.828125, -79.105086 ], [ 163.828125, -79.138260 ], [ 162.773438, -79.138260 ], [ 162.773438, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.237185 ], [ 161.542969, -79.237185 ], [ 161.542969, -79.367701 ], [ 161.367188, -79.367701 ], [ 161.367188, -79.464560 ], [ 161.191406, -79.464560 ], [ 161.191406, -79.560546 ], [ 161.015625, -79.560546 ], [ 161.015625, -79.687184 ], [ 160.839844, -79.687184 ], [ 160.839844, -79.966590 ], [ 160.664062, -79.966590 ], [ 160.664062, -80.297927 ], [ 160.488281, -80.297927 ], [ 160.488281, -80.474065 ], [ 160.312500, -80.474065 ], [ 160.312500, -80.647035 ], [ 160.136719, -80.647035 ], [ 160.136719, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.900669 ], [ 159.785156, -80.900669 ], [ 159.785156, -80.983688 ], [ 159.960938, -80.983688 ], [ 159.960938, -81.038617 ], [ 160.136719, -81.038617 ], [ 160.136719, -81.065957 ], [ 160.312500, -81.065957 ], [ 160.312500, -81.120388 ], [ 160.488281, -81.120388 ], [ 160.488281, -81.147481 ], [ 160.664062, -81.147481 ], [ 160.664062, -81.201420 ], [ 160.839844, -81.201420 ], [ 160.839844, -81.228267 ], [ 161.015625, -81.228267 ], [ 161.015625, -81.281717 ], [ 161.191406, -81.281717 ], [ 161.191406, -81.387650 ], [ 161.367188, -81.387650 ], [ 161.367188, -81.595699 ], [ 161.542969, -81.595699 ], [ 161.542969, -81.748454 ], [ 161.718750, -81.748454 ], [ 161.718750, -81.823794 ], [ 161.894531, -81.823794 ], [ 161.894531, -81.898451 ], [ 162.070312, -81.898451 ], [ 162.070312, -81.972431 ], [ 162.246094, -81.972431 ], [ 162.246094, -82.045740 ], [ 162.421875, -82.045740 ], [ 162.421875, -82.094243 ], [ 162.597656, -82.094243 ], [ 162.597656, -82.142451 ], [ 162.773438, -82.142451 ], [ 162.773438, -82.190368 ], [ 162.949219, -82.190368 ], [ 162.949219, -82.237994 ], [ 163.125000, -82.237994 ], [ 163.125000, -82.285331 ], [ 163.300781, -82.285331 ], [ 163.300781, -82.332382 ], [ 163.476562, -82.332382 ], [ 163.476562, -82.379147 ], [ 163.652344, -82.379147 ], [ 163.652344, -82.425629 ], [ 163.828125, -82.425629 ], [ 163.828125, -82.471829 ], [ 164.003906, -82.471829 ], [ 164.003906, -82.517749 ], [ 164.179688, -82.517749 ], [ 164.179688, -82.540604 ], [ 164.355469, -82.540604 ], [ 164.355469, -82.586106 ], [ 164.531250, -82.586106 ], [ 164.531250, -82.608754 ], [ 164.707031, -82.608754 ], [ 164.707031, -82.653843 ], [ 164.882812, -82.653843 ], [ 164.882812, -82.698659 ], [ 165.058594, -82.698659 ], [ 165.058594, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.410156, -82.765373 ], [ 165.410156, -82.809511 ], [ 165.585938, -82.809511 ], [ 165.585938, -82.831480 ], [ 165.761719, -82.831480 ], [ 165.761719, -82.875218 ], [ 165.937500, -82.875218 ], [ 165.937500, -82.918690 ], [ 166.113281, -82.918690 ], [ 166.113281, -82.940327 ], [ 166.289062, -82.940327 ], [ 166.289062, -82.983404 ], [ 166.464844, -82.983404 ], [ 166.464844, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.047529 ], [ 166.816406, -83.047529 ], [ 166.816406, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.089955 ], [ 167.167969, -83.089955 ], [ 167.167969, -83.132123 ], [ 167.343750, -83.132123 ], [ 167.343750, -83.153111 ], [ 167.519531, -83.153111 ], [ 167.519531, -83.174035 ], [ 167.695312, -83.174035 ], [ 167.695312, -83.194896 ], [ 167.871094, -83.194896 ], [ 167.871094, -83.215693 ], [ 168.046875, -83.215693 ], [ 168.046875, -83.236426 ], [ 168.222656, -83.236426 ], [ 168.222656, -83.257097 ], [ 168.398438, -83.257097 ], [ 168.398438, -83.298250 ], [ 168.574219, -83.298250 ], [ 168.574219, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.339153 ], [ 168.925781, -83.339153 ], [ 168.925781, -83.440326 ], [ 169.101562, -83.440326 ], [ 169.101562, -83.599031 ], [ 169.277344, -83.599031 ], [ 169.277344, -83.753911 ], [ 169.453125, -83.753911 ], [ 169.453125, -83.848810 ], [ 169.804688, -83.848810 ], [ 169.804688, -83.867616 ], [ 169.980469, -83.867616 ], [ 169.980469, -83.886366 ], [ 170.332031, -83.886366 ], [ 170.332031, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.923693 ], [ 170.683594, -83.923693 ], [ 170.683594, -83.942272 ], [ 171.035156, -83.942272 ], [ 171.035156, -83.960794 ], [ 171.210938, -83.960794 ], [ 171.210938, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -83.997669 ], [ 171.738281, -83.997669 ], [ 171.738281, -84.016022 ], [ 172.089844, -84.016022 ], [ 172.089844, -84.034319 ], [ 172.265625, -84.034319 ], [ 172.265625, -84.088878 ], [ 172.441406, -84.088878 ], [ 172.441406, -84.160849 ], [ 172.617188, -84.160849 ], [ 172.617188, -84.231947 ], [ 172.792969, -84.231947 ], [ 172.792969, -84.302183 ], [ 172.968750, -84.302183 ], [ 172.968750, -84.371566 ], [ 173.144531, -84.371566 ], [ 173.144531, -84.405941 ], [ 173.320312, -84.405941 ], [ 173.320312, -84.388780 ], [ 173.496094, -84.388780 ], [ 173.496094, -84.371566 ], [ 173.671875, -84.371566 ], [ 173.671875, -84.354300 ], [ 174.023438, -84.354300 ], [ 174.023438, -84.336980 ], [ 174.199219, -84.336980 ], [ 174.199219, -84.319608 ], [ 174.375000, -84.319608 ], [ 174.375000, -84.302183 ], [ 174.550781, -84.302183 ], [ 174.550781, -84.284704 ], [ 174.726562, -84.284704 ], [ 174.726562, -84.267172 ], [ 174.902344, -84.267172 ], [ 174.902344, -84.249587 ], [ 175.078125, -84.249587 ], [ 175.078125, -84.231947 ], [ 175.429688, -84.231947 ], [ 175.429688, -84.214254 ], [ 175.605469, -84.214254 ], [ 175.605469, -84.196507 ], [ 175.781250, -84.196507 ], [ 175.781250, -84.178705 ], [ 176.132812, -84.178705 ], [ 176.132812, -84.214254 ], [ 176.308594, -84.214254 ], [ 176.308594, -84.231947 ], [ 176.484375, -84.231947 ], [ 176.484375, -84.249587 ], [ 176.660156, -84.249587 ], [ 176.660156, -84.284704 ], [ 176.835938, -84.284704 ], [ 176.835938, -84.302183 ], [ 177.011719, -84.302183 ], [ 177.011719, -84.319608 ], [ 177.187500, -84.319608 ], [ 177.187500, -84.354300 ], [ 177.363281, -84.354300 ], [ 177.363281, -84.371566 ], [ 177.539062, -84.371566 ], [ 177.539062, -84.405941 ], [ 177.714844, -84.405941 ], [ 177.714844, -84.423050 ], [ 177.890625, -84.423050 ], [ 177.890625, -84.440107 ], [ 178.066406, -84.440107 ], [ 178.066406, -84.474065 ], [ 178.242188, -84.474065 ], [ 178.242188, -84.490966 ], [ 178.417969, -84.490966 ], [ 178.417969, -84.524614 ], [ 178.593750, -84.524614 ], [ 178.593750, -84.541361 ], [ 178.769531, -84.541361 ], [ 178.769531, -84.558057 ], [ 178.945312, -84.558057 ], [ 178.945312, -84.591297 ], [ 179.121094, -84.591297 ], [ 179.121094, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.640777 ], [ 179.472656, -84.640777 ], [ 179.472656, -84.657170 ], [ 179.648438, -84.657170 ], [ 179.648438, -84.673513 ], [ 179.824219, -84.673513 ], [ 179.824219, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -84.673513 ], [ 180.175781, -84.673513 ], [ 180.175781, -84.574702 ], [ 180.351562, -84.574702 ], [ 180.351562, -84.457112 ], [ 180.527344, -84.457112 ], [ 180.527344, -84.354300 ], [ 180.703125, -84.354300 ], [ 180.703125, -84.249587 ], [ 180.878906, -84.249587 ], [ 180.878906, -85.126373 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.531250, -79.004962 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.355469, -79.004962 ], [ 164.355469, -79.038437 ], [ 164.179688, -79.038437 ], [ 164.179688, -79.071812 ], [ 163.828125, -79.071812 ], [ 163.828125, -79.105086 ], [ 162.773438, -79.105086 ], [ 162.773438, -79.138260 ], [ 161.718750, -79.138260 ], [ 161.718750, -79.204309 ], [ 161.542969, -79.204309 ], [ 161.542969, -79.335219 ], [ 161.367188, -79.335219 ], [ 161.367188, -79.432371 ], [ 161.191406, -79.432371 ], [ 161.191406, -79.560546 ], [ 161.015625, -79.560546 ], [ 161.015625, -79.687184 ], [ 160.839844, -79.687184 ], [ 160.839844, -79.966590 ], [ 160.664062, -79.966590 ], [ 160.664062, -80.297927 ], [ 160.488281, -80.297927 ], [ 160.488281, -80.474065 ], [ 160.312500, -80.474065 ], [ 160.312500, -80.647035 ], [ 160.136719, -80.647035 ], [ 160.136719, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.872827 ], [ 159.785156, -80.872827 ], [ 159.785156, -80.956099 ], [ 159.960938, -80.956099 ], [ 159.960938, -81.011194 ], [ 160.136719, -81.011194 ], [ 160.136719, -81.065957 ], [ 160.312500, -81.065957 ], [ 160.312500, -81.093214 ], [ 160.488281, -81.093214 ], [ 160.488281, -81.147481 ], [ 160.664062, -81.147481 ], [ 160.664062, -81.201420 ], [ 160.839844, -81.201420 ], [ 160.839844, -81.255032 ], [ 161.015625, -81.255032 ], [ 161.015625, -81.334844 ], [ 161.191406, -81.334844 ], [ 161.191406, -81.466261 ], [ 161.367188, -81.466261 ], [ 161.367188, -81.621352 ], [ 161.542969, -81.621352 ], [ 161.542969, -81.723188 ], [ 161.718750, -81.723188 ], [ 161.718750, -81.798757 ], [ 161.894531, -81.798757 ], [ 161.894531, -81.873641 ], [ 162.070312, -81.873641 ], [ 162.070312, -81.947846 ], [ 162.246094, -81.947846 ], [ 162.246094, -82.021378 ], [ 162.421875, -82.021378 ], [ 162.421875, -82.070028 ], [ 162.597656, -82.070028 ], [ 162.597656, -82.118384 ], [ 162.773438, -82.118384 ], [ 162.773438, -82.166446 ], [ 162.949219, -82.166446 ], [ 162.949219, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.261699 ], [ 163.300781, -82.261699 ], [ 163.300781, -82.308893 ], [ 163.476562, -82.308893 ], [ 163.476562, -82.355800 ], [ 163.652344, -82.355800 ], [ 163.652344, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.448764 ], [ 164.003906, -82.448764 ], [ 164.003906, -82.494824 ], [ 164.179688, -82.494824 ], [ 164.179688, -82.540604 ], [ 164.355469, -82.540604 ], [ 164.355469, -82.563390 ], [ 164.531250, -82.563390 ], [ 164.531250, -82.608754 ], [ 164.707031, -82.608754 ], [ 164.707031, -82.653843 ], [ 164.882812, -82.653843 ], [ 164.882812, -82.698659 ], [ 165.058594, -82.698659 ], [ 165.058594, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.410156, -82.765373 ], [ 165.410156, -82.809511 ], [ 165.585938, -82.809511 ], [ 165.585938, -82.853382 ], [ 165.761719, -82.853382 ], [ 165.761719, -82.875218 ], [ 165.937500, -82.875218 ], [ 165.937500, -82.918690 ], [ 166.113281, -82.918690 ], [ 166.113281, -82.961898 ], [ 166.289062, -82.961898 ], [ 166.289062, -83.004844 ], [ 166.464844, -83.004844 ], [ 166.464844, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.047529 ], [ 166.816406, -83.047529 ], [ 166.816406, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.111071 ], [ 167.167969, -83.111071 ], [ 167.167969, -83.132123 ], [ 167.343750, -83.132123 ], [ 167.343750, -83.153111 ], [ 167.519531, -83.153111 ], [ 167.519531, -83.174035 ], [ 167.695312, -83.174035 ], [ 167.695312, -83.194896 ], [ 167.871094, -83.194896 ], [ 167.871094, -83.215693 ], [ 168.046875, -83.215693 ], [ 168.046875, -83.236426 ], [ 168.222656, -83.236426 ], [ 168.222656, -83.277705 ], [ 168.398438, -83.277705 ], [ 168.398438, -83.298250 ], [ 168.574219, -83.298250 ], [ 168.574219, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.420215 ], [ 168.925781, -83.420215 ], [ 168.925781, -83.579404 ], [ 169.101562, -83.579404 ], [ 169.101562, -83.734757 ], [ 169.277344, -83.734757 ], [ 169.277344, -83.829945 ], [ 169.628906, -83.829945 ], [ 169.628906, -83.848810 ], [ 169.804688, -83.848810 ], [ 169.804688, -83.867616 ], [ 169.980469, -83.867616 ], [ 169.980469, -83.886366 ], [ 170.332031, -83.886366 ], [ 170.332031, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.923693 ], [ 170.859375, -83.923693 ], [ 170.859375, -83.942272 ], [ 171.035156, -83.942272 ], [ 171.035156, -83.960794 ], [ 171.386719, -83.960794 ], [ 171.386719, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -83.997669 ], [ 171.738281, -83.997669 ], [ 171.738281, -84.016022 ], [ 172.089844, -84.016022 ], [ 172.089844, -84.034319 ], [ 172.265625, -84.034319 ], [ 172.265625, -84.070747 ], [ 172.441406, -84.070747 ], [ 172.441406, -84.160849 ], [ 172.617188, -84.160849 ], [ 172.617188, -84.231947 ], [ 172.792969, -84.231947 ], [ 172.792969, -84.302183 ], [ 172.968750, -84.302183 ], [ 172.968750, -84.371566 ], [ 173.144531, -84.371566 ], [ 173.144531, -84.405941 ], [ 173.320312, -84.405941 ], [ 173.320312, -84.388780 ], [ 173.496094, -84.388780 ], [ 173.496094, -84.371566 ], [ 173.671875, -84.371566 ], [ 173.671875, -84.354300 ], [ 173.847656, -84.354300 ], [ 173.847656, -84.336980 ], [ 174.023438, -84.336980 ], [ 174.023438, -84.319608 ], [ 174.199219, -84.319608 ], [ 174.199219, -84.302183 ], [ 174.375000, -84.302183 ], [ 174.375000, -84.284704 ], [ 174.726562, -84.284704 ], [ 174.726562, -84.267172 ], [ 174.902344, -84.267172 ], [ 174.902344, -84.249587 ], [ 175.078125, -84.249587 ], [ 175.078125, -84.231947 ], [ 175.253906, -84.231947 ], [ 175.253906, -84.214254 ], [ 175.429688, -84.214254 ], [ 175.429688, -84.196507 ], [ 175.605469, -84.196507 ], [ 175.605469, -84.178705 ], [ 175.781250, -84.178705 ], [ 175.781250, -84.160849 ], [ 176.132812, -84.160849 ], [ 176.132812, -84.196507 ], [ 176.308594, -84.196507 ], [ 176.308594, -84.214254 ], [ 176.484375, -84.214254 ], [ 176.484375, -84.231947 ], [ 176.660156, -84.231947 ], [ 176.660156, -84.267172 ], [ 176.835938, -84.267172 ], [ 176.835938, -84.284704 ], [ 177.011719, -84.284704 ], [ 177.011719, -84.302183 ], [ 177.187500, -84.302183 ], [ 177.187500, -84.336980 ], [ 177.363281, -84.336980 ], [ 177.363281, -84.354300 ], [ 177.539062, -84.354300 ], [ 177.539062, -84.388780 ], [ 177.714844, -84.388780 ], [ 177.714844, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.423050 ], [ 178.066406, -84.423050 ], [ 178.066406, -84.457112 ], [ 178.242188, -84.457112 ], [ 178.242188, -84.474065 ], [ 178.417969, -84.474065 ], [ 178.417969, -84.507816 ], [ 178.593750, -84.507816 ], [ 178.593750, -84.524614 ], [ 178.769531, -84.524614 ], [ 178.769531, -84.558057 ], [ 178.945312, -84.558057 ], [ 178.945312, -84.574702 ], [ 179.121094, -84.574702 ], [ 179.121094, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.624334 ], [ 179.472656, -84.624334 ], [ 179.472656, -84.657170 ], [ 179.648438, -84.657170 ], [ 179.648438, -84.673513 ], [ 179.824219, -84.673513 ], [ 179.824219, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -84.657170 ], [ 180.175781, -84.657170 ], [ 180.175781, -84.558057 ], [ 180.351562, -84.558057 ], [ 180.351562, -84.457112 ], [ 180.527344, -84.457112 ], [ 180.527344, -84.354300 ], [ 180.703125, -84.354300 ], [ 180.703125, -84.249587 ], [ 180.878906, -84.249587 ], [ 180.878906, -85.126373 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.355469, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.054688, -66.160511 ], [ 136.054688, -66.302205 ], [ 136.230469, -66.302205 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.861082 ], [ 137.109375, -66.861082 ], [ 137.109375, -66.930060 ], [ 139.394531, -66.930060 ], [ 139.394531, -66.861082 ], [ 140.449219, -66.861082 ], [ 140.449219, -66.791909 ], [ 143.613281, -66.791909 ], [ 143.613281, -66.861082 ], [ 144.843750, -66.861082 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -66.998844 ], [ 145.722656, -66.998844 ], [ 145.722656, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.135829 ], [ 146.074219, -67.135829 ], [ 146.074219, -67.204032 ], [ 146.250000, -67.204032 ], [ 146.250000, -67.407487 ], [ 146.074219, -67.407487 ], [ 146.074219, -67.676085 ], [ 146.250000, -67.676085 ], [ 146.250000, -67.742759 ], [ 146.425781, -67.742759 ], [ 146.425781, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -67.941650 ], [ 146.953125, -67.941650 ], [ 146.953125, -68.007571 ], [ 147.128906, -68.007571 ], [ 147.128906, -68.073305 ], [ 147.480469, -68.073305 ], [ 147.480469, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.204212 ], [ 148.007812, -68.204212 ], [ 148.007812, -68.269387 ], [ 148.359375, -68.269387 ], [ 148.359375, -68.334376 ], [ 148.710938, -68.334376 ], [ 148.710938, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.463800 ], [ 149.414062, -68.463800 ], [ 149.414062, -68.528235 ], [ 149.765625, -68.528235 ], [ 149.765625, -68.592487 ], [ 150.292969, -68.592487 ], [ 150.292969, -68.656555 ], [ 150.996094, -68.656555 ], [ 150.996094, -68.720441 ], [ 151.699219, -68.720441 ], [ 151.699219, -68.784144 ], [ 152.226562, -68.784144 ], [ 152.226562, -68.847665 ], [ 152.929688, -68.847665 ], [ 152.929688, -68.911005 ], [ 153.808594, -68.911005 ], [ 153.808594, -68.847665 ], [ 153.984375, -68.847665 ], [ 153.984375, -68.720441 ], [ 154.160156, -68.720441 ], [ 154.160156, -68.656555 ], [ 154.511719, -68.656555 ], [ 154.511719, -68.720441 ], [ 154.863281, -68.720441 ], [ 154.863281, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.847665 ], [ 155.214844, -68.847665 ], [ 155.214844, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -68.974164 ], [ 155.566406, -68.974164 ], [ 155.566406, -69.099940 ], [ 155.742188, -69.099940 ], [ 155.742188, -69.162558 ], [ 155.917969, -69.162558 ], [ 155.917969, -69.224997 ], [ 156.093750, -69.224997 ], [ 156.093750, -69.287257 ], [ 156.445312, -69.287257 ], [ 156.445312, -69.349339 ], [ 156.621094, -69.349339 ], [ 156.621094, -69.411242 ], [ 157.324219, -69.411242 ], [ 157.324219, -69.472969 ], [ 158.203125, -69.472969 ], [ 158.203125, -69.534518 ], [ 158.906250, -69.534518 ], [ 158.906250, -69.595890 ], [ 159.257812, -69.595890 ], [ 159.257812, -69.718107 ], [ 159.433594, -69.718107 ], [ 159.433594, -69.960439 ], [ 159.609375, -69.960439 ], [ 159.609375, -70.020587 ], [ 159.785156, -70.020587 ], [ 159.785156, -70.080562 ], [ 160.136719, -70.080562 ], [ 160.136719, -70.140364 ], [ 160.488281, -70.140364 ], [ 160.488281, -70.199994 ], [ 160.839844, -70.199994 ], [ 160.839844, -70.259452 ], [ 161.015625, -70.259452 ], [ 161.015625, -70.377854 ], [ 161.191406, -70.377854 ], [ 161.191406, -70.436799 ], [ 161.367188, -70.436799 ], [ 161.367188, -70.554179 ], [ 161.718750, -70.554179 ], [ 161.718750, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.670881 ], [ 162.421875, -70.670881 ], [ 162.421875, -70.728979 ], [ 164.179688, -70.728979 ], [ 164.179688, -70.786910 ], [ 165.585938, -70.786910 ], [ 165.585938, -70.728979 ], [ 166.289062, -70.728979 ], [ 166.289062, -70.786910 ], [ 166.992188, -70.786910 ], [ 166.992188, -70.844673 ], [ 167.519531, -70.844673 ], [ 167.519531, -70.902268 ], [ 168.046875, -70.902268 ], [ 168.046875, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.016960 ], [ 168.750000, -71.016960 ], [ 168.750000, -71.074056 ], [ 168.925781, -71.074056 ], [ 168.925781, -71.130988 ], [ 169.277344, -71.130988 ], [ 169.277344, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.244356 ], [ 169.804688, -71.244356 ], [ 169.804688, -71.300793 ], [ 169.980469, -71.300793 ], [ 169.980469, -71.357067 ], [ 170.332031, -71.357067 ], [ 170.332031, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.469124 ], [ 170.683594, -71.469124 ], [ 170.683594, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -71.635993 ], [ 171.035156, -71.635993 ], [ 171.035156, -71.691293 ], [ 171.210938, -71.691293 ], [ 171.210938, -71.910888 ], [ 171.035156, -71.910888 ], [ 171.035156, -72.181804 ], [ 170.859375, -72.181804 ], [ 170.859375, -72.289067 ], [ 170.683594, -72.289067 ], [ 170.683594, -72.395706 ], [ 170.507812, -72.395706 ], [ 170.507812, -72.554498 ], [ 170.332031, -72.554498 ], [ 170.332031, -72.764065 ], [ 170.156250, -72.764065 ], [ 170.156250, -72.971189 ], [ 169.980469, -72.971189 ], [ 169.980469, -73.175897 ], [ 169.804688, -73.175897 ], [ 169.804688, -73.327858 ], [ 169.628906, -73.327858 ], [ 169.628906, -73.478485 ], [ 169.453125, -73.478485 ], [ 169.453125, -73.627789 ], [ 169.277344, -73.627789 ], [ 169.277344, -73.677264 ], [ 169.101562, -73.677264 ], [ 169.101562, -73.726595 ], [ 168.750000, -73.726595 ], [ 168.750000, -73.775780 ], [ 168.398438, -73.775780 ], [ 168.398438, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -73.873717 ], [ 167.871094, -73.873717 ], [ 167.871094, -73.971078 ], [ 167.695312, -73.971078 ], [ 167.695312, -74.067866 ], [ 167.519531, -74.067866 ], [ 167.519531, -74.164085 ], [ 167.343750, -74.164085 ], [ 167.343750, -74.211983 ], [ 166.992188, -74.211983 ], [ 166.992188, -74.259738 ], [ 166.816406, -74.259738 ], [ 166.816406, -74.307353 ], [ 166.640625, -74.307353 ], [ 166.640625, -74.354828 ], [ 166.289062, -74.354828 ], [ 166.289062, -74.402163 ], [ 166.113281, -74.402163 ], [ 166.113281, -74.496413 ], [ 165.937500, -74.496413 ], [ 165.937500, -74.590108 ], [ 165.761719, -74.590108 ], [ 165.761719, -74.729615 ], [ 165.585938, -74.729615 ], [ 165.585938, -74.821934 ], [ 165.410156, -74.821934 ], [ 165.410156, -74.913708 ], [ 165.234375, -74.913708 ], [ 165.234375, -75.004940 ], [ 165.058594, -75.004940 ], [ 165.058594, -75.095633 ], [ 164.882812, -75.095633 ], [ 164.882812, -75.185789 ], [ 164.707031, -75.185789 ], [ 164.707031, -75.275413 ], [ 164.531250, -75.275413 ], [ 164.531250, -75.364506 ], [ 164.355469, -75.364506 ], [ 164.355469, -75.453071 ], [ 164.179688, -75.453071 ], [ 164.179688, -75.584937 ], [ 164.003906, -75.584937 ], [ 164.003906, -75.802118 ], [ 163.828125, -75.802118 ], [ 163.828125, -76.058508 ], [ 163.652344, -76.058508 ], [ 163.652344, -76.475773 ], [ 163.476562, -76.475773 ], [ 163.476562, -77.157163 ], [ 163.652344, -77.157163 ], [ 163.652344, -77.273855 ], [ 163.828125, -77.273855 ], [ 163.828125, -77.427824 ], [ 164.003906, -77.427824 ], [ 164.003906, -77.579959 ], [ 164.179688, -77.579959 ], [ 164.179688, -77.767582 ], [ 164.355469, -77.767582 ], [ 164.355469, -77.952414 ], [ 164.531250, -77.952414 ], [ 164.531250, -78.098296 ], [ 164.707031, -78.098296 ], [ 164.707031, -78.170582 ], [ 164.882812, -78.170582 ], [ 164.882812, -78.206563 ], [ 165.410156, -78.206563 ], [ 165.410156, -78.242436 ], [ 165.761719, -78.242436 ], [ 165.761719, -78.278201 ], [ 166.289062, -78.278201 ], [ 166.289062, -78.313860 ], [ 166.640625, -78.313860 ], [ 166.640625, -78.455425 ], [ 166.816406, -78.455425 ], [ 166.816406, -78.664608 ], [ 166.992188, -78.664608 ], [ 166.992188, -78.767792 ], [ 166.816406, -78.767792 ], [ 166.816406, -78.801980 ], [ 166.464844, -78.801980 ], [ 166.464844, -78.836065 ], [ 165.937500, -78.836065 ], [ 165.937500, -78.870048 ], [ 165.585938, -78.870048 ], [ 165.585938, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -78.937708 ], [ 165.058594, -78.937708 ], [ 165.058594, -78.971386 ], [ 164.707031, -78.971386 ], [ 164.707031, -79.004962 ], [ 164.531250, -79.004962 ], [ 164.531250, -79.038437 ], [ 164.355469, -79.038437 ], [ 164.355469, -79.071812 ], [ 164.003906, -79.071812 ], [ 164.003906, -79.105086 ], [ 163.828125, -79.105086 ], [ 163.828125, -79.138260 ], [ 162.773438, -79.138260 ], [ 162.773438, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.269962 ], [ 161.542969, -79.269962 ], [ 161.542969, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.160511 ], [ 136.054688, -66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -66.302205 ], [ 136.054688, -66.302205 ], [ 136.054688, -66.513260 ], [ 136.230469, -66.513260 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.791909 ], [ 136.933594, -66.791909 ], [ 136.933594, -66.861082 ], [ 137.285156, -66.861082 ], [ 137.285156, -66.930060 ], [ 138.164062, -66.930060 ], [ 138.164062, -66.861082 ], [ 140.449219, -66.861082 ], [ 140.449219, -66.791909 ], [ 144.667969, -66.791909 ], [ 144.667969, -66.861082 ], [ 145.371094, -66.861082 ], [ 145.371094, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -66.998844 ], [ 145.722656, -66.998844 ], [ 145.722656, -67.135829 ], [ 145.898438, -67.135829 ], [ 145.898438, -67.204032 ], [ 146.074219, -67.204032 ], [ 146.074219, -67.407487 ], [ 145.898438, -67.407487 ], [ 145.898438, -67.609221 ], [ 146.074219, -67.609221 ], [ 146.074219, -67.676085 ], [ 146.250000, -67.676085 ], [ 146.250000, -67.809245 ], [ 146.425781, -67.809245 ], [ 146.425781, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -67.941650 ], [ 146.953125, -67.941650 ], [ 146.953125, -68.007571 ], [ 147.304688, -68.007571 ], [ 147.304688, -68.073305 ], [ 147.656250, -68.073305 ], [ 147.656250, -68.138852 ], [ 148.007812, -68.138852 ], [ 148.007812, -68.204212 ], [ 148.183594, -68.204212 ], [ 148.183594, -68.269387 ], [ 148.535156, -68.269387 ], [ 148.535156, -68.334376 ], [ 148.886719, -68.334376 ], [ 148.886719, -68.399180 ], [ 149.238281, -68.399180 ], [ 149.238281, -68.463800 ], [ 149.765625, -68.463800 ], [ 149.765625, -68.528235 ], [ 150.292969, -68.528235 ], [ 150.292969, -68.592487 ], [ 150.996094, -68.592487 ], [ 150.996094, -68.656555 ], [ 151.347656, -68.656555 ], [ 151.347656, -68.720441 ], [ 151.699219, -68.720441 ], [ 151.699219, -68.784144 ], [ 152.050781, -68.784144 ], [ 152.050781, -68.847665 ], [ 153.808594, -68.847665 ], [ 153.808594, -68.720441 ], [ 153.984375, -68.720441 ], [ 153.984375, -68.592487 ], [ 154.335938, -68.592487 ], [ 154.335938, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.720441 ], [ 154.863281, -68.720441 ], [ 154.863281, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.847665 ], [ 155.214844, -68.847665 ], [ 155.214844, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -68.974164 ], [ 155.566406, -68.974164 ], [ 155.566406, -69.037142 ], [ 155.742188, -69.037142 ], [ 155.742188, -69.099940 ], [ 155.917969, -69.099940 ], [ 155.917969, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.224997 ], [ 156.445312, -69.224997 ], [ 156.445312, -69.287257 ], [ 156.621094, -69.287257 ], [ 156.621094, -69.349339 ], [ 156.972656, -69.349339 ], [ 156.972656, -69.411242 ], [ 157.675781, -69.411242 ], [ 157.675781, -69.472969 ], [ 158.203125, -69.472969 ], [ 158.203125, -69.534518 ], [ 158.730469, -69.534518 ], [ 158.730469, -69.595890 ], [ 159.082031, -69.595890 ], [ 159.082031, -69.657086 ], [ 159.257812, -69.657086 ], [ 159.257812, -69.778952 ], [ 159.433594, -69.778952 ], [ 159.433594, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.020587 ], [ 159.960938, -70.020587 ], [ 159.960938, -70.080562 ], [ 160.136719, -70.080562 ], [ 160.136719, -70.140364 ], [ 160.488281, -70.140364 ], [ 160.488281, -70.199994 ], [ 160.664062, -70.199994 ], [ 160.664062, -70.259452 ], [ 160.839844, -70.259452 ], [ 160.839844, -70.318738 ], [ 161.015625, -70.318738 ], [ 161.015625, -70.377854 ], [ 161.191406, -70.377854 ], [ 161.191406, -70.495574 ], [ 161.367188, -70.495574 ], [ 161.367188, -70.554179 ], [ 161.542969, -70.554179 ], [ 161.542969, -70.612614 ], [ 161.894531, -70.612614 ], [ 161.894531, -70.670881 ], [ 162.246094, -70.670881 ], [ 162.246094, -70.728979 ], [ 163.300781, -70.728979 ], [ 163.300781, -70.670881 ], [ 164.179688, -70.670881 ], [ 164.179688, -70.728979 ], [ 166.464844, -70.728979 ], [ 166.464844, -70.786910 ], [ 167.343750, -70.786910 ], [ 167.343750, -70.844673 ], [ 167.695312, -70.844673 ], [ 167.695312, -70.902268 ], [ 168.046875, -70.902268 ], [ 168.046875, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.016960 ], [ 168.750000, -71.016960 ], [ 168.750000, -71.074056 ], [ 168.925781, -71.074056 ], [ 168.925781, -71.130988 ], [ 169.277344, -71.130988 ], [ 169.277344, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.244356 ], [ 169.804688, -71.244356 ], [ 169.804688, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.357067 ], [ 170.332031, -71.357067 ], [ 170.332031, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.524909 ], [ 170.683594, -71.524909 ], [ 170.683594, -71.580532 ], [ 170.859375, -71.580532 ], [ 170.859375, -71.691293 ], [ 171.035156, -71.691293 ], [ 171.035156, -72.127936 ], [ 170.859375, -72.127936 ], [ 170.859375, -72.235514 ], [ 170.683594, -72.235514 ], [ 170.683594, -72.342464 ], [ 170.507812, -72.342464 ], [ 170.507812, -72.501722 ], [ 170.332031, -72.501722 ], [ 170.332031, -72.659588 ], [ 170.156250, -72.659588 ], [ 170.156250, -72.816074 ], [ 169.980469, -72.816074 ], [ 169.980469, -72.971189 ], [ 169.804688, -72.971189 ], [ 169.804688, -73.175897 ], [ 169.628906, -73.175897 ], [ 169.628906, -73.327858 ], [ 169.453125, -73.327858 ], [ 169.453125, -73.528399 ], [ 169.277344, -73.528399 ], [ 169.277344, -73.627789 ], [ 169.101562, -73.627789 ], [ 169.101562, -73.677264 ], [ 168.750000, -73.677264 ], [ 168.750000, -73.726595 ], [ 168.222656, -73.726595 ], [ 168.222656, -73.775780 ], [ 167.871094, -73.775780 ], [ 167.871094, -73.873717 ], [ 167.695312, -73.873717 ], [ 167.695312, -73.971078 ], [ 167.519531, -73.971078 ], [ 167.519531, -74.116047 ], [ 167.343750, -74.116047 ], [ 167.343750, -74.211983 ], [ 166.992188, -74.211983 ], [ 166.992188, -74.259738 ], [ 166.640625, -74.259738 ], [ 166.640625, -74.307353 ], [ 166.289062, -74.307353 ], [ 166.289062, -74.354828 ], [ 165.937500, -74.354828 ], [ 165.937500, -74.449358 ], [ 165.761719, -74.449358 ], [ 165.761719, -74.636748 ], [ 165.585938, -74.636748 ], [ 165.585938, -74.821934 ], [ 165.410156, -74.821934 ], [ 165.410156, -74.913708 ], [ 165.234375, -74.913708 ], [ 165.234375, -75.004940 ], [ 165.058594, -75.004940 ], [ 165.058594, -75.095633 ], [ 164.882812, -75.095633 ], [ 164.882812, -75.185789 ], [ 164.707031, -75.185789 ], [ 164.707031, -75.275413 ], [ 164.531250, -75.275413 ], [ 164.531250, -75.364506 ], [ 164.355469, -75.364506 ], [ 164.355469, -75.453071 ], [ 164.179688, -75.453071 ], [ 164.179688, -75.541113 ], [ 164.003906, -75.541113 ], [ 164.003906, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -75.802118 ], [ 163.652344, -75.802118 ], [ 163.652344, -76.058508 ], [ 163.476562, -76.058508 ], [ 163.476562, -76.475773 ], [ 163.300781, -76.475773 ], [ 163.300781, -76.880775 ], [ 163.476562, -76.880775 ], [ 163.476562, -77.118032 ], [ 163.652344, -77.118032 ], [ 163.652344, -77.235074 ], [ 163.828125, -77.235074 ], [ 163.828125, -77.389504 ], [ 164.003906, -77.389504 ], [ 164.003906, -77.617709 ], [ 164.179688, -77.617709 ], [ 164.179688, -77.878814 ], [ 164.355469, -77.878814 ], [ 164.355469, -77.989049 ], [ 164.531250, -77.989049 ], [ 164.531250, -78.134493 ], [ 164.707031, -78.134493 ], [ 164.707031, -78.170582 ], [ 164.882812, -78.170582 ], [ 164.882812, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.242436 ], [ 165.761719, -78.242436 ], [ 165.761719, -78.278201 ], [ 166.113281, -78.278201 ], [ 166.113281, -78.313860 ], [ 166.464844, -78.313860 ], [ 166.464844, -78.384855 ], [ 166.640625, -78.384855 ], [ 166.640625, -78.525573 ], [ 166.816406, -78.525573 ], [ 166.816406, -78.664608 ], [ 166.992188, -78.664608 ], [ 166.992188, -78.733501 ], [ 166.816406, -78.733501 ], [ 166.816406, -78.767792 ], [ 166.464844, -78.767792 ], [ 166.464844, -78.801980 ], [ 166.113281, -78.801980 ], [ 166.113281, -78.836065 ], [ 165.761719, -78.836065 ], [ 165.761719, -78.870048 ], [ 165.410156, -78.870048 ], [ 165.410156, -78.903929 ], [ 165.058594, -78.903929 ], [ 165.058594, -78.937708 ], [ 164.882812, -78.937708 ], [ 164.882812, -78.971386 ], [ 164.531250, -78.971386 ], [ 164.531250, -79.004962 ], [ 164.355469, -79.004962 ], [ 164.355469, -79.038437 ], [ 164.179688, -79.038437 ], [ 164.179688, -79.071812 ], [ 163.828125, -79.071812 ], [ 163.828125, -79.105086 ], [ 162.773438, -79.105086 ], [ 162.773438, -79.138260 ], [ 161.718750, -79.138260 ], [ 161.718750, -79.204309 ], [ 161.542969, -79.204309 ], [ 161.542969, -79.302640 ], [ 161.367188, -79.302640 ], [ 161.367188, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.231457 ], [ 134.472656, -66.231457 ], [ 134.472656, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.585720 ], [ 135.703125, -65.585720 ], [ 135.703125, -65.802776 ], [ 135.878906, -65.802776 ], [ 135.878906, -66.160511 ], [ 136.054688, -66.160511 ], [ 136.054688, -66.372755 ], [ 136.230469, -66.372755 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.018018 ], [ 135.000000, -66.018018 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ] ] ], [ [ [ 140.625000, -66.861082 ], [ 140.625000, -66.791909 ], [ 143.613281, -66.791909 ], [ 143.613281, -66.861082 ], [ 140.625000, -66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.802776 ], [ 135.703125, -65.802776 ], [ 135.703125, -66.160511 ], [ 135.878906, -66.160511 ], [ 135.878906, -66.372755 ], [ 136.054688, -66.372755 ], [ 136.054688, -66.513260 ], [ 136.230469, -66.513260 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.231457 ], [ 134.472656, -66.231457 ], [ 134.472656, -66.160511 ], [ 134.648438, -66.160511 ], [ 134.648438, -66.089364 ], [ 134.824219, -66.089364 ], [ 134.824219, -65.802776 ], [ 135.000000, -65.802776 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ] ] ], [ [ [ 140.625000, -66.861082 ], [ 140.625000, -66.791909 ], [ 144.316406, -66.791909 ], [ 144.316406, -66.861082 ], [ 140.625000, -66.861082 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.843750, -40.713956 ], [ 144.843750, -40.847060 ], [ 145.546875, -40.847060 ], [ 145.546875, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.777344, -41.112469 ], [ 146.777344, -40.979898 ], [ 147.480469, -40.979898 ], [ 147.480469, -40.847060 ], [ 148.359375, -40.847060 ], [ 148.359375, -42.163403 ], [ 148.183594, -42.163403 ], [ 148.183594, -42.423457 ], [ 148.007812, -42.423457 ], [ 148.007812, -42.811522 ], [ 147.832031, -42.811522 ], [ 147.832031, -43.197167 ], [ 147.656250, -43.197167 ], [ 147.656250, -43.068888 ], [ 147.304688, -43.068888 ], [ 147.304688, -43.325178 ], [ 147.128906, -43.325178 ], [ 147.128906, -43.580391 ], [ 145.898438, -43.580391 ], [ 145.898438, -43.325178 ], [ 145.722656, -43.325178 ], [ 145.722656, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -42.811522 ], [ 145.371094, -42.811522 ], [ 145.371094, -42.032974 ], [ 145.195312, -42.032974 ], [ 145.195312, -41.771312 ], [ 145.019531, -41.771312 ], [ 145.019531, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -41.244772 ], [ 144.667969, -41.244772 ], [ 144.667969, -40.713956 ], [ 144.843750, -40.713956 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.843750, -40.580585 ], [ 144.843750, -40.713956 ], [ 145.371094, -40.713956 ], [ 145.371094, -40.847060 ], [ 145.722656, -40.847060 ], [ 145.722656, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.601562, -41.112469 ], [ 146.601562, -40.979898 ], [ 147.128906, -40.979898 ], [ 147.128906, -40.847060 ], [ 147.480469, -40.847060 ], [ 147.480469, -40.713956 ], [ 147.832031, -40.713956 ], [ 147.832031, -40.847060 ], [ 148.183594, -40.847060 ], [ 148.183594, -41.508577 ], [ 148.359375, -41.508577 ], [ 148.359375, -42.163403 ], [ 148.183594, -42.163403 ], [ 148.183594, -42.293564 ], [ 148.007812, -42.293564 ], [ 148.007812, -42.811522 ], [ 147.832031, -42.811522 ], [ 147.832031, -43.197167 ], [ 147.656250, -43.197167 ], [ 147.656250, -42.940339 ], [ 147.304688, -42.940339 ], [ 147.304688, -43.197167 ], [ 147.128906, -43.197167 ], [ 147.128906, -43.325178 ], [ 146.953125, -43.325178 ], [ 146.953125, -43.580391 ], [ 146.074219, -43.580391 ], [ 146.074219, -43.452919 ], [ 145.898438, -43.452919 ], [ 145.898438, -43.325178 ], [ 145.722656, -43.325178 ], [ 145.722656, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -42.811522 ], [ 145.371094, -42.811522 ], [ 145.371094, -42.423457 ], [ 145.195312, -42.423457 ], [ 145.195312, -41.902277 ], [ 145.019531, -41.902277 ], [ 145.019531, -41.640078 ], [ 144.843750, -41.640078 ], [ 144.843750, -41.376809 ], [ 144.667969, -41.376809 ], [ 144.667969, -40.580585 ], [ 144.843750, -40.580585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.376809 ], [ 173.496094, -41.376809 ], [ 173.496094, -41.244772 ], [ 173.847656, -41.244772 ], [ 173.847656, -41.112469 ], [ 174.023438, -41.112469 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.902277 ], [ 174.023438, -41.902277 ], [ 174.023438, -42.163403 ], [ 173.847656, -42.163403 ], [ 173.847656, -42.423457 ], [ 173.671875, -42.423457 ], [ 173.671875, -42.553080 ], [ 173.496094, -42.553080 ], [ 173.496094, -42.811522 ], [ 173.320312, -42.811522 ], [ 173.320312, -42.940339 ], [ 173.144531, -42.940339 ], [ 173.144531, -43.068888 ], [ 172.968750, -43.068888 ], [ 172.968750, -43.325178 ], [ 172.792969, -43.325178 ], [ 172.792969, -43.452919 ], [ 172.968750, -43.452919 ], [ 172.968750, -43.707594 ], [ 173.144531, -43.707594 ], [ 173.144531, -43.834527 ], [ 172.265625, -43.834527 ], [ 172.265625, -43.961191 ], [ 171.914062, -43.961191 ], [ 171.914062, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -44.213710 ], [ 171.386719, -44.213710 ], [ 171.386719, -44.590467 ], [ 171.210938, -44.590467 ], [ 171.210938, -45.089036 ], [ 171.035156, -45.089036 ], [ 171.035156, -45.460131 ], [ 170.859375, -45.460131 ], [ 170.859375, -45.828799 ], [ 170.683594, -45.828799 ], [ 170.683594, -46.073231 ], [ 170.332031, -46.073231 ], [ 170.332031, -46.195042 ], [ 169.980469, -46.195042 ], [ 169.980469, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.437857 ], [ 169.628906, -46.437857 ], [ 169.628906, -46.558860 ], [ 169.453125, -46.558860 ], [ 169.453125, -46.679594 ], [ 168.222656, -46.679594 ], [ 168.222656, -46.558860 ], [ 167.871094, -46.558860 ], [ 167.871094, -46.437857 ], [ 167.695312, -46.437857 ], [ 167.695312, -46.316584 ], [ 166.992188, -46.316584 ], [ 166.992188, -46.195042 ], [ 166.640625, -46.195042 ], [ 166.640625, -46.073231 ], [ 166.464844, -46.073231 ], [ 166.464844, -45.706179 ], [ 166.640625, -45.706179 ], [ 166.640625, -45.460131 ], [ 166.816406, -45.460131 ], [ 166.816406, -45.213004 ], [ 166.992188, -45.213004 ], [ 166.992188, -45.089036 ], [ 167.167969, -45.089036 ], [ 167.167969, -44.964798 ], [ 167.343750, -44.964798 ], [ 167.343750, -44.840291 ], [ 167.519531, -44.840291 ], [ 167.519531, -44.590467 ], [ 167.695312, -44.590467 ], [ 167.695312, -44.465151 ], [ 167.871094, -44.465151 ], [ 167.871094, -44.339565 ], [ 168.046875, -44.339565 ], [ 168.046875, -44.213710 ], [ 168.222656, -44.213710 ], [ 168.222656, -44.087585 ], [ 168.750000, -44.087585 ], [ 168.750000, -43.961191 ], [ 169.101562, -43.961191 ], [ 169.101562, -43.834527 ], [ 169.453125, -43.834527 ], [ 169.453125, -43.707594 ], [ 169.628906, -43.707594 ], [ 169.628906, -43.580391 ], [ 169.804688, -43.580391 ], [ 169.804688, -43.452919 ], [ 169.980469, -43.452919 ], [ 169.980469, -43.325178 ], [ 170.332031, -43.325178 ], [ 170.332031, -43.197167 ], [ 170.507812, -43.197167 ], [ 170.507812, -43.068888 ], [ 170.683594, -43.068888 ], [ 170.683594, -42.940339 ], [ 170.859375, -42.940339 ], [ 170.859375, -42.811522 ], [ 171.035156, -42.811522 ], [ 171.035156, -42.682435 ], [ 171.210938, -42.682435 ], [ 171.210938, -42.423457 ], [ 171.386719, -42.423457 ], [ 171.386719, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -41.771312 ], [ 171.738281, -41.771312 ], [ 171.738281, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.979898 ], [ 172.265625, -40.979898 ], [ 172.265625, -40.847060 ], [ 172.441406, -40.847060 ], [ 172.441406, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ] ] ], [ [ [ 176.660156, -40.313043 ], [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.781250, -41.376809 ], [ 175.781250, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.640078 ], [ 175.253906, -41.640078 ], [ 175.253906, -41.508577 ], [ 175.078125, -41.508577 ], [ 175.078125, -41.376809 ], [ 174.726562, -41.376809 ], [ 174.726562, -41.112469 ], [ 174.902344, -41.112469 ], [ 174.902344, -40.847060 ], [ 175.078125, -40.847060 ], [ 175.078125, -40.580585 ], [ 175.253906, -40.580585 ], [ 175.253906, -40.446947 ], [ 175.078125, -40.446947 ], [ 175.078125, -40.313043 ], [ 176.660156, -40.313043 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.244772 ], [ 173.320312, -41.244772 ], [ 173.320312, -41.112469 ], [ 173.671875, -41.112469 ], [ 173.671875, -40.979898 ], [ 174.023438, -40.979898 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.902277 ], [ 174.023438, -41.902277 ], [ 174.023438, -42.163403 ], [ 173.847656, -42.163403 ], [ 173.847656, -42.293564 ], [ 173.671875, -42.293564 ], [ 173.671875, -42.553080 ], [ 173.496094, -42.553080 ], [ 173.496094, -42.682435 ], [ 173.320312, -42.682435 ], [ 173.320312, -42.940339 ], [ 173.144531, -42.940339 ], [ 173.144531, -43.068888 ], [ 172.968750, -43.068888 ], [ 172.968750, -43.197167 ], [ 172.792969, -43.197167 ], [ 172.792969, -43.325178 ], [ 172.617188, -43.325178 ], [ 172.617188, -43.452919 ], [ 172.792969, -43.452919 ], [ 172.792969, -43.707594 ], [ 172.968750, -43.707594 ], [ 172.968750, -43.834527 ], [ 172.265625, -43.834527 ], [ 172.265625, -43.961191 ], [ 171.914062, -43.961191 ], [ 171.914062, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -44.213710 ], [ 171.386719, -44.213710 ], [ 171.386719, -44.465151 ], [ 171.210938, -44.465151 ], [ 171.210938, -44.715514 ], [ 171.035156, -44.715514 ], [ 171.035156, -45.089036 ], [ 170.859375, -45.089036 ], [ 170.859375, -45.336702 ], [ 170.683594, -45.336702 ], [ 170.683594, -45.706179 ], [ 170.507812, -45.706179 ], [ 170.507812, -45.951150 ], [ 170.332031, -45.951150 ], [ 170.332031, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -46.195042 ], [ 169.980469, -46.195042 ], [ 169.980469, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.437857 ], [ 169.453125, -46.437857 ], [ 169.453125, -46.558860 ], [ 168.222656, -46.558860 ], [ 168.222656, -46.437857 ], [ 167.871094, -46.437857 ], [ 167.871094, -46.316584 ], [ 167.695312, -46.316584 ], [ 167.695312, -46.195042 ], [ 166.640625, -46.195042 ], [ 166.640625, -46.073231 ], [ 166.464844, -46.073231 ], [ 166.464844, -45.706179 ], [ 166.640625, -45.706179 ], [ 166.640625, -45.460131 ], [ 166.816406, -45.460131 ], [ 166.816406, -45.213004 ], [ 166.992188, -45.213004 ], [ 166.992188, -45.089036 ], [ 167.167969, -45.089036 ], [ 167.167969, -44.964798 ], [ 167.343750, -44.964798 ], [ 167.343750, -44.840291 ], [ 167.519531, -44.840291 ], [ 167.519531, -44.590467 ], [ 167.695312, -44.590467 ], [ 167.695312, -44.465151 ], [ 167.871094, -44.465151 ], [ 167.871094, -44.339565 ], [ 168.046875, -44.339565 ], [ 168.046875, -44.213710 ], [ 168.222656, -44.213710 ], [ 168.222656, -44.087585 ], [ 168.574219, -44.087585 ], [ 168.574219, -43.961191 ], [ 168.925781, -43.961191 ], [ 168.925781, -43.834527 ], [ 169.101562, -43.834527 ], [ 169.101562, -43.707594 ], [ 169.453125, -43.707594 ], [ 169.453125, -43.580391 ], [ 169.628906, -43.580391 ], [ 169.628906, -43.452919 ], [ 169.804688, -43.452919 ], [ 169.804688, -43.325178 ], [ 169.980469, -43.325178 ], [ 169.980469, -43.197167 ], [ 170.332031, -43.197167 ], [ 170.332031, -43.068888 ], [ 170.507812, -43.068888 ], [ 170.507812, -42.940339 ], [ 170.683594, -42.940339 ], [ 170.683594, -42.682435 ], [ 170.859375, -42.682435 ], [ 170.859375, -42.553080 ], [ 171.035156, -42.553080 ], [ 171.035156, -42.293564 ], [ 171.210938, -42.293564 ], [ 171.210938, -42.032974 ], [ 171.386719, -42.032974 ], [ 171.386719, -41.771312 ], [ 171.562500, -41.771312 ], [ 171.562500, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.847060 ], [ 172.265625, -40.847060 ], [ 172.265625, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ] ] ], [ [ [ 176.660156, -40.313043 ], [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.605469, -41.376809 ], [ 175.605469, -41.508577 ], [ 175.253906, -41.508577 ], [ 175.253906, -41.640078 ], [ 175.078125, -41.640078 ], [ 175.078125, -41.508577 ], [ 174.902344, -41.508577 ], [ 174.902344, -41.376809 ], [ 174.550781, -41.376809 ], [ 174.550781, -41.112469 ], [ 174.726562, -41.112469 ], [ 174.726562, -40.847060 ], [ 174.902344, -40.847060 ], [ 174.902344, -40.580585 ], [ 175.078125, -40.580585 ], [ 175.078125, -40.313043 ], [ 176.660156, -40.313043 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.476432 ], [ 178.593750, -17.644022 ], [ 178.769531, -17.644022 ], [ 178.769531, -17.978733 ], [ 178.593750, -17.978733 ], [ 178.593750, -18.145852 ], [ 178.417969, -18.145852 ], [ 178.417969, -18.312811 ], [ 177.539062, -18.312811 ], [ 177.539062, -18.145852 ], [ 177.363281, -18.145852 ], [ 177.363281, -17.644022 ], [ 177.539062, -17.644022 ], [ 177.539062, -17.476432 ], [ 178.593750, -17.476432 ] ] ], [ [ [ 180.000000, -16.299051 ], [ 180.000000, -16.636192 ], [ 179.824219, -16.636192 ], [ 179.824219, -16.804541 ], [ 179.121094, -16.804541 ], [ 179.121094, -16.972741 ], [ 178.769531, -16.972741 ], [ 178.769531, -16.804541 ], [ 178.593750, -16.804541 ], [ 178.593750, -16.636192 ], [ 178.945312, -16.636192 ], [ 178.945312, -16.467695 ], [ 179.472656, -16.467695 ], [ 179.472656, -16.299051 ], [ 179.824219, -16.299051 ], [ 179.824219, -16.130262 ], [ 180.000000, -16.130262 ], [ 180.175781, -16.130262 ], [ 180.175781, -16.299051 ], [ 180.000000, -16.299051 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.714844, -17.308688 ], [ 177.714844, -17.476432 ], [ 178.593750, -17.476432 ], [ 178.593750, -17.811456 ], [ 178.417969, -17.811456 ], [ 178.417969, -18.145852 ], [ 177.363281, -18.145852 ], [ 177.363281, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.644022 ], [ 177.363281, -17.644022 ], [ 177.363281, -17.476432 ], [ 177.539062, -17.476432 ], [ 177.539062, -17.308688 ], [ 177.714844, -17.308688 ] ] ], [ [ [ 180.000000, -16.299051 ], [ 180.000000, -16.467695 ], [ 179.824219, -16.467695 ], [ 179.824219, -16.636192 ], [ 179.296875, -16.636192 ], [ 179.296875, -16.804541 ], [ 178.945312, -16.804541 ], [ 178.945312, -16.972741 ], [ 178.593750, -16.972741 ], [ 178.593750, -16.636192 ], [ 178.769531, -16.636192 ], [ 178.769531, -16.467695 ], [ 178.945312, -16.467695 ], [ 178.945312, -16.299051 ], [ 179.648438, -16.299051 ], [ 179.648438, -16.130262 ], [ 180.000000, -16.130262 ], [ 180.000000, -15.961329 ], [ 180.175781, -15.961329 ], [ 180.175781, -16.299051 ], [ 180.000000, -16.299051 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.515625, -1.757537 ], [ 138.515625, -1.933227 ], [ 138.867188, -1.933227 ], [ 138.867188, -2.108899 ], [ 139.218750, -2.108899 ], [ 139.218750, -2.284551 ], [ 139.570312, -2.284551 ], [ 139.570312, -2.460181 ], [ 140.273438, -2.460181 ], [ 140.273438, -2.635789 ], [ 140.976562, -2.635789 ], [ 140.976562, -9.102097 ], [ 140.800781, -9.102097 ], [ 140.800781, -8.928487 ], [ 140.625000, -8.928487 ], [ 140.625000, -8.754795 ], [ 140.449219, -8.754795 ], [ 140.449219, -8.581021 ], [ 140.273438, -8.581021 ], [ 140.273438, -8.407168 ], [ 140.097656, -8.407168 ], [ 140.097656, -8.233237 ], [ 139.394531, -8.233237 ], [ 139.394531, -8.059230 ], [ 139.042969, -8.059230 ], [ 139.042969, -8.233237 ], [ 138.867188, -8.233237 ], [ 138.867188, -8.407168 ], [ 137.636719, -8.407168 ], [ 137.636719, -8.233237 ], [ 137.812500, -8.233237 ], [ 137.812500, -7.885147 ], [ 137.988281, -7.885147 ], [ 137.988281, -7.536764 ], [ 138.515625, -7.536764 ], [ 138.515625, -7.362467 ], [ 138.691406, -7.362467 ], [ 138.691406, -7.188101 ], [ 138.515625, -7.188101 ], [ 138.515625, -6.664608 ], [ 138.339844, -6.664608 ], [ 138.339844, -6.140555 ], [ 138.164062, -6.140555 ], [ 138.164062, -5.790897 ], [ 137.988281, -5.790897 ], [ 137.988281, -5.441022 ], [ 137.636719, -5.441022 ], [ 137.636719, -5.266008 ], [ 137.285156, -5.266008 ], [ 137.285156, -5.090944 ], [ 136.933594, -5.090944 ], [ 136.933594, -4.915833 ], [ 136.582031, -4.915833 ], [ 136.582031, -4.740675 ], [ 136.230469, -4.740675 ], [ 136.230469, -4.565474 ], [ 135.527344, -4.565474 ], [ 135.527344, -4.390229 ], [ 134.824219, -4.390229 ], [ 134.824219, -4.214943 ], [ 134.472656, -4.214943 ], [ 134.472656, -4.039618 ], [ 134.121094, -4.039618 ], [ 134.121094, -1.757537 ], [ 134.296875, -1.757537 ], [ 134.296875, -2.460181 ], [ 134.472656, -2.460181 ], [ 134.472656, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.703125, -3.337954 ], [ 135.703125, -2.986927 ], [ 135.878906, -2.986927 ], [ 135.878906, -2.811371 ], [ 136.054688, -2.811371 ], [ 136.054688, -2.460181 ], [ 136.230469, -2.460181 ], [ 136.230469, -2.284551 ], [ 136.582031, -2.284551 ], [ 136.582031, -2.108899 ], [ 136.933594, -2.108899 ], [ 136.933594, -1.933227 ], [ 137.285156, -1.933227 ], [ 137.285156, -1.757537 ], [ 138.515625, -1.757537 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.489983 ], [ 134.296875, -6.489983 ], [ 134.296875, -6.839170 ], [ 134.121094, -6.839170 ], [ 134.121094, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.339844, -1.581830 ], [ 138.339844, -1.757537 ], [ 138.691406, -1.757537 ], [ 138.691406, -1.933227 ], [ 139.218750, -1.933227 ], [ 139.218750, -2.108899 ], [ 139.570312, -2.108899 ], [ 139.570312, -2.284551 ], [ 140.273438, -2.284551 ], [ 140.273438, -2.460181 ], [ 140.976562, -2.460181 ], [ 140.976562, -9.102097 ], [ 140.800781, -9.102097 ], [ 140.800781, -8.928487 ], [ 140.625000, -8.928487 ], [ 140.625000, -8.754795 ], [ 140.449219, -8.754795 ], [ 140.449219, -8.581021 ], [ 140.273438, -8.581021 ], [ 140.273438, -8.407168 ], [ 140.097656, -8.407168 ], [ 140.097656, -8.233237 ], [ 139.394531, -8.233237 ], [ 139.394531, -8.059230 ], [ 139.042969, -8.059230 ], [ 139.042969, -8.233237 ], [ 138.339844, -8.233237 ], [ 138.339844, -8.407168 ], [ 137.636719, -8.407168 ], [ 137.636719, -8.059230 ], [ 137.812500, -8.059230 ], [ 137.812500, -7.710992 ], [ 137.988281, -7.710992 ], [ 137.988281, -7.536764 ], [ 138.164062, -7.536764 ], [ 138.164062, -7.362467 ], [ 138.515625, -7.362467 ], [ 138.515625, -6.664608 ], [ 138.339844, -6.664608 ], [ 138.339844, -6.140555 ], [ 138.164062, -6.140555 ], [ 138.164062, -5.790897 ], [ 137.988281, -5.790897 ], [ 137.988281, -5.441022 ], [ 137.812500, -5.441022 ], [ 137.812500, -5.266008 ], [ 137.460938, -5.266008 ], [ 137.460938, -5.090944 ], [ 137.109375, -5.090944 ], [ 137.109375, -4.915833 ], [ 136.757812, -4.915833 ], [ 136.757812, -4.740675 ], [ 136.406250, -4.740675 ], [ 136.406250, -4.565474 ], [ 136.054688, -4.565474 ], [ 136.054688, -4.390229 ], [ 134.824219, -4.390229 ], [ 134.824219, -4.214943 ], [ 134.648438, -4.214943 ], [ 134.648438, -4.039618 ], [ 134.296875, -4.039618 ], [ 134.296875, -3.864255 ], [ 134.121094, -3.864255 ], [ 134.121094, -1.933227 ], [ 134.296875, -1.933227 ], [ 134.296875, -2.811371 ], [ 134.648438, -2.811371 ], [ 134.648438, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.527344, -3.337954 ], [ 135.527344, -3.162456 ], [ 135.703125, -3.162456 ], [ 135.703125, -2.811371 ], [ 135.878906, -2.811371 ], [ 135.878906, -2.635789 ], [ 136.054688, -2.635789 ], [ 136.054688, -2.460181 ], [ 136.230469, -2.460181 ], [ 136.230469, -2.284551 ], [ 136.406250, -2.284551 ], [ 136.406250, -2.108899 ], [ 136.757812, -2.108899 ], [ 136.757812, -1.933227 ], [ 136.933594, -1.933227 ], [ 136.933594, -1.757537 ], [ 137.285156, -1.757537 ], [ 137.285156, -1.581830 ], [ 138.339844, -1.581830 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.489983 ], [ 134.296875, -6.489983 ], [ 134.296875, -6.839170 ], [ 134.121094, -6.839170 ], [ 134.121094, -5.615986 ], [ 134.648438, -5.615986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -40.713956 ], [ 144.843750, -40.847060 ], [ 145.546875, -40.847060 ], [ 145.546875, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.777344, -41.112469 ], [ 146.777344, -40.979898 ], [ 147.480469, -40.979898 ], [ 147.480469, -40.847060 ], [ 148.359375, -40.847060 ], [ 148.359375, -41.640078 ], [ 145.019531, -41.640078 ], [ 145.019531, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -41.244772 ], [ 144.667969, -41.244772 ], [ 144.667969, -40.713956 ], [ 144.843750, -40.713956 ] ] ], [ [ [ 142.558594, -10.833306 ], [ 142.558594, -11.005904 ], [ 142.734375, -11.005904 ], [ 142.734375, -11.523088 ], [ 142.910156, -11.523088 ], [ 142.910156, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.554564 ], [ 143.261719, -12.554564 ], [ 143.261719, -12.897489 ], [ 143.437500, -12.897489 ], [ 143.437500, -13.239945 ], [ 143.613281, -13.239945 ], [ 143.613281, -14.093957 ], [ 143.789062, -14.093957 ], [ 143.789062, -14.434680 ], [ 143.964844, -14.434680 ], [ 143.964844, -14.604847 ], [ 144.140625, -14.604847 ], [ 144.140625, -14.434680 ], [ 144.316406, -14.434680 ], [ 144.316406, -14.264383 ], [ 144.667969, -14.264383 ], [ 144.667969, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -14.774883 ], [ 145.195312, -14.774883 ], [ 145.195312, -14.944785 ], [ 145.371094, -14.944785 ], [ 145.371094, -15.284185 ], [ 145.195312, -15.284185 ], [ 145.195312, -15.792254 ], [ 145.371094, -15.792254 ], [ 145.371094, -16.130262 ], [ 145.546875, -16.130262 ], [ 145.546875, -16.636192 ], [ 145.722656, -16.636192 ], [ 145.722656, -16.972741 ], [ 145.898438, -16.972741 ], [ 145.898438, -17.476432 ], [ 146.074219, -17.476432 ], [ 146.074219, -18.479609 ], [ 146.250000, -18.479609 ], [ 146.250000, -18.812718 ], [ 146.425781, -18.812718 ], [ 146.425781, -19.145168 ], [ 146.777344, -19.145168 ], [ 146.777344, -19.311143 ], [ 147.128906, -19.311143 ], [ 147.128906, -19.476950 ], [ 147.480469, -19.476950 ], [ 147.480469, -19.642588 ], [ 147.656250, -19.642588 ], [ 147.656250, -19.808054 ], [ 148.007812, -19.808054 ], [ 148.007812, -19.973349 ], [ 148.183594, -19.973349 ], [ 148.183594, -20.138470 ], [ 148.359375, -20.138470 ], [ 148.359375, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.468189 ], [ 148.886719, -20.468189 ], [ 148.886719, -20.632784 ], [ 148.710938, -20.632784 ], [ 148.710938, -20.797201 ], [ 148.886719, -20.797201 ], [ 148.886719, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.289374 ], [ 149.238281, -21.289374 ], [ 149.238281, -21.453069 ], [ 149.414062, -21.453069 ], [ 149.414062, -21.779905 ], [ 149.589844, -21.779905 ], [ 149.589844, -22.105999 ], [ 149.765625, -22.105999 ], [ 149.765625, -22.268764 ], [ 150.292969, -22.268764 ], [ 150.292969, -22.593726 ], [ 150.644531, -22.593726 ], [ 150.644531, -22.917923 ], [ 150.820312, -22.917923 ], [ 150.820312, -23.563987 ], [ 150.996094, -23.563987 ], [ 150.996094, -23.725012 ], [ 151.171875, -23.725012 ], [ 151.171875, -23.885838 ], [ 151.347656, -23.885838 ], [ 151.347656, -24.046464 ], [ 151.523438, -24.046464 ], [ 151.523438, -24.206890 ], [ 151.699219, -24.206890 ], [ 151.699219, -24.367114 ], [ 151.875000, -24.367114 ], [ 151.875000, -24.527135 ], [ 152.050781, -24.527135 ], [ 152.050781, -24.686952 ], [ 152.226562, -24.686952 ], [ 152.226562, -24.846565 ], [ 152.402344, -24.846565 ], [ 152.402344, -25.005973 ], [ 152.578125, -25.005973 ], [ 152.578125, -25.165173 ], [ 152.753906, -25.165173 ], [ 152.753906, -25.324167 ], [ 152.929688, -25.324167 ], [ 152.929688, -25.799891 ], [ 153.105469, -25.799891 ], [ 153.105469, -27.371767 ], [ 153.281250, -27.371767 ], [ 153.281250, -27.683528 ], [ 153.457031, -27.683528 ], [ 153.457031, -27.994401 ], [ 153.632812, -27.994401 ], [ 153.632812, -28.613459 ], [ 153.457031, -28.613459 ], [ 153.457031, -29.228890 ], [ 153.281250, -29.228890 ], [ 153.281250, -29.840644 ], [ 153.105469, -29.840644 ], [ 153.105469, -31.353637 ], [ 152.929688, -31.353637 ], [ 152.929688, -31.802893 ], [ 152.753906, -31.802893 ], [ 152.753906, -32.101190 ], [ 152.578125, -32.101190 ], [ 152.578125, -32.398516 ], [ 152.402344, -32.398516 ], [ 152.402344, -32.694866 ], [ 152.226562, -32.694866 ], [ 152.226562, -32.842674 ], [ 151.875000, -32.842674 ], [ 151.875000, -32.990236 ], [ 151.699219, -32.990236 ], [ 151.699219, -33.284620 ], [ 151.523438, -33.284620 ], [ 151.523438, -33.724340 ], [ 151.347656, -33.724340 ], [ 151.347656, -34.016242 ], [ 151.171875, -34.016242 ], [ 151.171875, -34.307144 ], [ 150.996094, -34.307144 ], [ 150.996094, -34.597042 ], [ 150.820312, -34.597042 ], [ 150.820312, -35.029996 ], [ 150.644531, -35.029996 ], [ 150.644531, -35.317366 ], [ 150.468750, -35.317366 ], [ 150.468750, -35.603719 ], [ 150.292969, -35.603719 ], [ 150.292969, -36.031332 ], [ 150.117188, -36.031332 ], [ 150.117188, -36.879621 ], [ 149.941406, -36.879621 ], [ 149.941406, -37.579413 ], [ 149.589844, -37.579413 ], [ 149.589844, -37.718590 ], [ 149.062500, -37.718590 ], [ 149.062500, -37.857507 ], [ 148.359375, -37.857507 ], [ 148.359375, -37.996163 ], [ 148.007812, -37.996163 ], [ 148.007812, -38.134557 ], [ 147.656250, -38.134557 ], [ 147.656250, -38.272689 ], [ 147.304688, -38.272689 ], [ 147.304688, -38.410558 ], [ 147.128906, -38.410558 ], [ 147.128906, -38.548165 ], [ 146.953125, -38.548165 ], [ 146.953125, -38.685510 ], [ 146.777344, -38.685510 ], [ 146.777344, -38.822591 ], [ 146.601562, -38.822591 ], [ 146.601562, -38.959409 ], [ 146.425781, -38.959409 ], [ 146.425781, -39.095963 ], [ 146.074219, -39.095963 ], [ 146.074219, -38.959409 ], [ 145.898438, -38.959409 ], [ 145.898438, -38.822591 ], [ 145.722656, -38.822591 ], [ 145.722656, -38.685510 ], [ 145.546875, -38.685510 ], [ 145.546875, -38.548165 ], [ 145.019531, -38.548165 ], [ 145.019531, -38.410558 ], [ 144.843750, -38.410558 ], [ 144.843750, -38.134557 ], [ 145.019531, -38.134557 ], [ 145.019531, -37.996163 ], [ 144.667969, -37.996163 ], [ 144.667969, -38.134557 ], [ 144.492188, -38.134557 ], [ 144.492188, -38.272689 ], [ 144.316406, -38.272689 ], [ 144.316406, -38.410558 ], [ 144.140625, -38.410558 ], [ 144.140625, -38.548165 ], [ 143.964844, -38.548165 ], [ 143.964844, -38.685510 ], [ 143.789062, -38.685510 ], [ 143.789062, -38.822591 ], [ 143.261719, -38.822591 ], [ 143.261719, -38.685510 ], [ 142.910156, -38.685510 ], [ 142.910156, -38.548165 ], [ 142.382812, -38.548165 ], [ 142.382812, -38.410558 ], [ 141.855469, -38.410558 ], [ 141.855469, -38.272689 ], [ 141.328125, -38.272689 ], [ 141.328125, -38.134557 ], [ 140.800781, -38.134557 ], [ 140.800781, -37.996163 ], [ 140.449219, -37.996163 ], [ 140.449219, -37.857507 ], [ 140.273438, -37.857507 ], [ 140.273438, -37.718590 ], [ 140.097656, -37.718590 ], [ 140.097656, -37.579413 ], [ 139.921875, -37.579413 ], [ 139.921875, -37.020098 ], [ 139.746094, -37.020098 ], [ 139.746094, -36.456636 ], [ 139.570312, -36.456636 ], [ 139.570312, -36.173357 ], [ 139.394531, -36.173357 ], [ 139.394531, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.889050 ], [ 139.042969, -35.889050 ], [ 139.042969, -35.746512 ], [ 138.515625, -35.746512 ], [ 138.515625, -35.603719 ], [ 138.339844, -35.603719 ], [ 138.339844, -35.317366 ], [ 138.515625, -35.317366 ], [ 138.515625, -35.029996 ], [ 138.339844, -35.029996 ], [ 138.339844, -34.741612 ], [ 138.164062, -34.741612 ], [ 138.164062, -34.597042 ], [ 137.988281, -34.597042 ], [ 137.988281, -34.741612 ], [ 137.812500, -34.741612 ], [ 137.812500, -35.029996 ], [ 137.460938, -35.029996 ], [ 137.460938, -35.173808 ], [ 137.109375, -35.173808 ], [ 137.109375, -35.317366 ], [ 136.933594, -35.317366 ], [ 136.933594, -35.029996 ], [ 137.109375, -35.029996 ], [ 137.109375, -34.885931 ], [ 137.285156, -34.885931 ], [ 137.285156, -34.452218 ], [ 137.460938, -34.452218 ], [ 137.460938, -34.016242 ], [ 137.636719, -34.016242 ], [ 137.636719, -33.724340 ], [ 137.812500, -33.724340 ], [ 137.812500, -32.990236 ], [ 137.636719, -32.990236 ], [ 137.636719, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.284620 ], [ 137.285156, -33.284620 ], [ 137.285156, -33.578015 ], [ 137.109375, -33.578015 ], [ 137.109375, -33.724340 ], [ 136.933594, -33.724340 ], [ 136.933594, -33.870416 ], [ 136.757812, -33.870416 ], [ 136.757812, -34.016242 ], [ 136.582031, -34.016242 ], [ 136.582031, -34.161818 ], [ 136.406250, -34.161818 ], [ 136.406250, -34.452218 ], [ 136.230469, -34.452218 ], [ 136.230469, -34.741612 ], [ 136.054688, -34.741612 ], [ 136.054688, -34.885931 ], [ 135.878906, -34.885931 ], [ 135.878906, -34.741612 ], [ 135.527344, -34.741612 ], [ 135.527344, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 134.121094, -32.990236 ], [ 134.121094, -32.694866 ], [ 134.296875, -32.694866 ], [ 134.296875, -32.546813 ], [ 134.121094, -32.546813 ], [ 134.121094, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.703125, -12.211180 ], [ 135.703125, -12.039321 ], [ 136.582031, -12.039321 ], [ 136.582031, -12.211180 ], [ 136.757812, -12.211180 ], [ 136.757812, -12.382928 ], [ 136.933594, -12.382928 ], [ 136.933594, -12.726084 ], [ 136.757812, -12.726084 ], [ 136.757812, -13.068777 ], [ 136.406250, -13.068777 ], [ 136.406250, -13.239945 ], [ 135.878906, -13.239945 ], [ 135.878906, -13.581921 ], [ 136.054688, -13.581921 ], [ 136.054688, -13.923404 ], [ 135.878906, -13.923404 ], [ 135.878906, -14.264383 ], [ 135.703125, -14.264383 ], [ 135.703125, -14.434680 ], [ 135.527344, -14.434680 ], [ 135.527344, -14.774883 ], [ 135.351562, -14.774883 ], [ 135.351562, -14.944785 ], [ 135.527344, -14.944785 ], [ 135.527344, -15.114553 ], [ 135.703125, -15.114553 ], [ 135.703125, -15.284185 ], [ 135.878906, -15.284185 ], [ 135.878906, -15.453680 ], [ 136.054688, -15.453680 ], [ 136.054688, -15.623037 ], [ 136.582031, -15.623037 ], [ 136.582031, -15.792254 ], [ 137.109375, -15.792254 ], [ 137.109375, -15.961329 ], [ 137.285156, -15.961329 ], [ 137.285156, -16.130262 ], [ 137.460938, -16.130262 ], [ 137.460938, -16.299051 ], [ 137.636719, -16.299051 ], [ 137.636719, -16.467695 ], [ 137.812500, -16.467695 ], [ 137.812500, -16.636192 ], [ 138.164062, -16.636192 ], [ 138.164062, -16.804541 ], [ 138.515625, -16.804541 ], [ 138.515625, -16.972741 ], [ 138.867188, -16.972741 ], [ 138.867188, -17.140790 ], [ 139.042969, -17.140790 ], [ 139.042969, -17.308688 ], [ 139.394531, -17.308688 ], [ 139.394531, -17.476432 ], [ 139.921875, -17.476432 ], [ 139.921875, -17.644022 ], [ 140.449219, -17.644022 ], [ 140.449219, -17.476432 ], [ 140.800781, -17.476432 ], [ 140.800781, -17.308688 ], [ 140.976562, -17.308688 ], [ 140.976562, -16.972741 ], [ 141.152344, -16.972741 ], [ 141.152344, -16.636192 ], [ 141.328125, -16.636192 ], [ 141.328125, -15.623037 ], [ 141.503906, -15.623037 ], [ 141.503906, -15.284185 ], [ 141.679688, -15.284185 ], [ 141.679688, -14.944785 ], [ 141.503906, -14.944785 ], [ 141.503906, -14.434680 ], [ 141.679688, -14.434680 ], [ 141.679688, -14.093957 ], [ 141.503906, -14.093957 ], [ 141.503906, -13.410994 ], [ 141.679688, -13.410994 ], [ 141.679688, -12.897489 ], [ 141.855469, -12.897489 ], [ 141.855469, -12.554564 ], [ 141.679688, -12.554564 ], [ 141.679688, -12.211180 ], [ 141.855469, -12.211180 ], [ 141.855469, -11.695273 ], [ 142.031250, -11.695273 ], [ 142.031250, -11.178402 ], [ 142.207031, -11.178402 ], [ 142.207031, -11.005904 ], [ 142.382812, -11.005904 ], [ 142.382812, -10.833306 ], [ 142.558594, -10.833306 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -40.580585 ], [ 144.843750, -40.713956 ], [ 145.371094, -40.713956 ], [ 145.371094, -40.847060 ], [ 145.722656, -40.847060 ], [ 145.722656, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.601562, -41.112469 ], [ 146.601562, -40.979898 ], [ 147.128906, -40.979898 ], [ 147.128906, -40.847060 ], [ 147.480469, -40.847060 ], [ 147.480469, -40.713956 ], [ 147.832031, -40.713956 ], [ 147.832031, -40.847060 ], [ 148.183594, -40.847060 ], [ 148.183594, -41.640078 ], [ 145.019531, -41.640078 ], [ 145.019531, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -41.244772 ], [ 144.667969, -41.244772 ], [ 144.667969, -40.580585 ], [ 144.843750, -40.580585 ] ] ], [ [ [ 142.558594, -10.833306 ], [ 142.558594, -11.005904 ], [ 142.734375, -11.005904 ], [ 142.734375, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.382928 ], [ 143.261719, -12.382928 ], [ 143.261719, -12.726084 ], [ 143.437500, -12.726084 ], [ 143.437500, -13.923404 ], [ 143.613281, -13.923404 ], [ 143.613281, -14.264383 ], [ 143.789062, -14.264383 ], [ 143.789062, -14.434680 ], [ 144.140625, -14.434680 ], [ 144.140625, -14.264383 ], [ 144.667969, -14.264383 ], [ 144.667969, -14.434680 ], [ 144.843750, -14.434680 ], [ 144.843750, -14.604847 ], [ 145.019531, -14.604847 ], [ 145.019531, -14.774883 ], [ 145.195312, -14.774883 ], [ 145.195312, -14.944785 ], [ 145.371094, -14.944785 ], [ 145.371094, -15.114553 ], [ 145.195312, -15.114553 ], [ 145.195312, -15.792254 ], [ 145.371094, -15.792254 ], [ 145.371094, -16.467695 ], [ 145.546875, -16.467695 ], [ 145.546875, -16.804541 ], [ 145.722656, -16.804541 ], [ 145.722656, -17.140790 ], [ 145.898438, -17.140790 ], [ 145.898438, -17.476432 ], [ 146.074219, -17.476432 ], [ 146.074219, -17.978733 ], [ 145.898438, -17.978733 ], [ 145.898438, -18.312811 ], [ 146.074219, -18.312811 ], [ 146.074219, -18.646245 ], [ 146.250000, -18.646245 ], [ 146.250000, -18.979026 ], [ 146.601562, -18.979026 ], [ 146.601562, -19.145168 ], [ 146.777344, -19.145168 ], [ 146.777344, -19.311143 ], [ 147.128906, -19.311143 ], [ 147.128906, -19.476950 ], [ 147.304688, -19.476950 ], [ 147.304688, -19.642588 ], [ 147.656250, -19.642588 ], [ 147.656250, -19.808054 ], [ 148.007812, -19.808054 ], [ 148.007812, -19.973349 ], [ 148.183594, -19.973349 ], [ 148.183594, -20.138470 ], [ 148.535156, -20.138470 ], [ 148.535156, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.797201 ], [ 148.886719, -20.797201 ], [ 148.886719, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.125498 ], [ 149.238281, -21.125498 ], [ 149.238281, -21.453069 ], [ 149.414062, -21.453069 ], [ 149.414062, -22.105999 ], [ 149.589844, -22.105999 ], [ 149.589844, -22.268764 ], [ 150.292969, -22.268764 ], [ 150.292969, -22.431340 ], [ 150.644531, -22.431340 ], [ 150.644531, -22.917923 ], [ 150.820312, -22.917923 ], [ 150.820312, -23.563987 ], [ 150.996094, -23.563987 ], [ 150.996094, -23.725012 ], [ 151.171875, -23.725012 ], [ 151.171875, -23.885838 ], [ 151.347656, -23.885838 ], [ 151.347656, -24.046464 ], [ 151.523438, -24.046464 ], [ 151.523438, -24.206890 ], [ 151.875000, -24.206890 ], [ 151.875000, -24.367114 ], [ 152.050781, -24.367114 ], [ 152.050781, -24.527135 ], [ 152.226562, -24.527135 ], [ 152.226562, -24.686952 ], [ 152.402344, -24.686952 ], [ 152.402344, -25.005973 ], [ 152.578125, -25.005973 ], [ 152.578125, -25.165173 ], [ 152.753906, -25.165173 ], [ 152.753906, -25.482951 ], [ 152.929688, -25.482951 ], [ 152.929688, -25.799891 ], [ 153.105469, -25.799891 ], [ 153.105469, -26.902477 ], [ 152.929688, -26.902477 ], [ 152.929688, -27.371767 ], [ 153.105469, -27.371767 ], [ 153.105469, -27.683528 ], [ 153.281250, -27.683528 ], [ 153.281250, -27.994401 ], [ 153.457031, -27.994401 ], [ 153.457031, -29.228890 ], [ 153.281250, -29.228890 ], [ 153.281250, -29.688053 ], [ 153.105469, -29.688053 ], [ 153.105469, -30.145127 ], [ 152.929688, -30.145127 ], [ 152.929688, -31.203405 ], [ 152.753906, -31.203405 ], [ 152.753906, -31.802893 ], [ 152.578125, -31.802893 ], [ 152.578125, -32.398516 ], [ 152.402344, -32.398516 ], [ 152.402344, -32.694866 ], [ 152.226562, -32.694866 ], [ 152.226562, -32.842674 ], [ 151.875000, -32.842674 ], [ 151.875000, -32.990236 ], [ 151.699219, -32.990236 ], [ 151.699219, -33.137551 ], [ 151.523438, -33.137551 ], [ 151.523438, -33.431441 ], [ 151.347656, -33.431441 ], [ 151.347656, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.016242 ], [ 150.996094, -34.016242 ], [ 150.996094, -34.597042 ], [ 150.820312, -34.597042 ], [ 150.820312, -35.029996 ], [ 150.644531, -35.029996 ], [ 150.644531, -35.317366 ], [ 150.468750, -35.317366 ], [ 150.468750, -35.603719 ], [ 150.292969, -35.603719 ], [ 150.292969, -35.889050 ], [ 150.117188, -35.889050 ], [ 150.117188, -36.173357 ], [ 149.941406, -36.173357 ], [ 149.941406, -37.439974 ], [ 149.765625, -37.439974 ], [ 149.765625, -37.579413 ], [ 149.589844, -37.579413 ], [ 149.589844, -37.718590 ], [ 148.183594, -37.718590 ], [ 148.183594, -37.857507 ], [ 147.832031, -37.857507 ], [ 147.832031, -37.996163 ], [ 147.480469, -37.996163 ], [ 147.480469, -38.134557 ], [ 147.304688, -38.134557 ], [ 147.304688, -38.272689 ], [ 147.128906, -38.272689 ], [ 147.128906, -38.410558 ], [ 146.953125, -38.410558 ], [ 146.953125, -38.548165 ], [ 146.777344, -38.548165 ], [ 146.777344, -38.685510 ], [ 146.601562, -38.685510 ], [ 146.601562, -38.822591 ], [ 146.425781, -38.822591 ], [ 146.425781, -38.959409 ], [ 146.074219, -38.959409 ], [ 146.074219, -38.822591 ], [ 145.722656, -38.822591 ], [ 145.722656, -38.685510 ], [ 145.371094, -38.685510 ], [ 145.371094, -38.548165 ], [ 145.019531, -38.548165 ], [ 145.019531, -38.410558 ], [ 144.843750, -38.410558 ], [ 144.843750, -38.134557 ], [ 145.019531, -38.134557 ], [ 145.019531, -37.857507 ], [ 144.843750, -37.857507 ], [ 144.843750, -37.996163 ], [ 144.316406, -37.996163 ], [ 144.316406, -38.134557 ], [ 144.140625, -38.134557 ], [ 144.140625, -38.272689 ], [ 143.964844, -38.272689 ], [ 143.964844, -38.410558 ], [ 143.789062, -38.410558 ], [ 143.789062, -38.548165 ], [ 143.613281, -38.548165 ], [ 143.613281, -38.685510 ], [ 143.085938, -38.685510 ], [ 143.085938, -38.548165 ], [ 142.734375, -38.548165 ], [ 142.734375, -38.410558 ], [ 142.207031, -38.410558 ], [ 142.207031, -38.272689 ], [ 141.152344, -38.272689 ], [ 141.152344, -38.134557 ], [ 140.800781, -38.134557 ], [ 140.800781, -37.996163 ], [ 140.449219, -37.996163 ], [ 140.449219, -37.857507 ], [ 140.273438, -37.857507 ], [ 140.273438, -37.579413 ], [ 140.097656, -37.579413 ], [ 140.097656, -37.439974 ], [ 139.921875, -37.439974 ], [ 139.921875, -37.020098 ], [ 139.746094, -37.020098 ], [ 139.746094, -36.315125 ], [ 139.570312, -36.315125 ], [ 139.570312, -36.031332 ], [ 139.394531, -36.031332 ], [ 139.394531, -35.889050 ], [ 139.218750, -35.889050 ], [ 139.218750, -35.746512 ], [ 139.042969, -35.746512 ], [ 139.042969, -35.603719 ], [ 137.988281, -35.603719 ], [ 137.988281, -35.460670 ], [ 138.164062, -35.460670 ], [ 138.164062, -35.173808 ], [ 138.339844, -35.173808 ], [ 138.339844, -34.741612 ], [ 138.164062, -34.741612 ], [ 138.164062, -34.452218 ], [ 137.988281, -34.452218 ], [ 137.988281, -34.741612 ], [ 137.812500, -34.741612 ], [ 137.812500, -35.029996 ], [ 137.285156, -35.029996 ], [ 137.285156, -35.173808 ], [ 136.933594, -35.173808 ], [ 136.933594, -34.885931 ], [ 137.109375, -34.885931 ], [ 137.109375, -34.741612 ], [ 137.285156, -34.741612 ], [ 137.285156, -34.307144 ], [ 137.460938, -34.307144 ], [ 137.460938, -34.016242 ], [ 137.636719, -34.016242 ], [ 137.636719, -33.724340 ], [ 137.812500, -33.724340 ], [ 137.812500, -32.990236 ], [ 137.636719, -32.990236 ], [ 137.636719, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.284620 ], [ 137.285156, -33.284620 ], [ 137.285156, -33.578015 ], [ 137.109375, -33.578015 ], [ 137.109375, -33.724340 ], [ 136.933594, -33.724340 ], [ 136.933594, -33.870416 ], [ 136.582031, -33.870416 ], [ 136.582031, -34.016242 ], [ 136.230469, -34.016242 ], [ 136.230469, -34.307144 ], [ 136.054688, -34.307144 ], [ 136.054688, -34.741612 ], [ 135.878906, -34.741612 ], [ 135.878906, -34.885931 ], [ 135.703125, -34.885931 ], [ 135.703125, -34.741612 ], [ 135.351562, -34.741612 ], [ 135.351562, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -33.870416 ], [ 135.000000, -33.870416 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 134.121094, -32.990236 ], [ 134.121094, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.527344, -12.211180 ], [ 135.527344, -12.039321 ], [ 136.230469, -12.039321 ], [ 136.230469, -11.867351 ], [ 136.582031, -11.867351 ], [ 136.582031, -12.039321 ], [ 136.757812, -12.039321 ], [ 136.757812, -12.211180 ], [ 136.933594, -12.211180 ], [ 136.933594, -12.382928 ], [ 136.757812, -12.382928 ], [ 136.757812, -12.726084 ], [ 136.582031, -12.726084 ], [ 136.582031, -12.897489 ], [ 136.406250, -12.897489 ], [ 136.406250, -13.239945 ], [ 135.878906, -13.239945 ], [ 135.878906, -13.410994 ], [ 136.054688, -13.410994 ], [ 136.054688, -13.752725 ], [ 135.878906, -13.752725 ], [ 135.878906, -14.093957 ], [ 135.703125, -14.093957 ], [ 135.703125, -14.264383 ], [ 135.527344, -14.264383 ], [ 135.527344, -14.604847 ], [ 135.351562, -14.604847 ], [ 135.351562, -15.114553 ], [ 135.703125, -15.114553 ], [ 135.703125, -15.284185 ], [ 136.054688, -15.284185 ], [ 136.054688, -15.453680 ], [ 136.230469, -15.453680 ], [ 136.230469, -15.623037 ], [ 136.582031, -15.623037 ], [ 136.582031, -15.792254 ], [ 136.933594, -15.792254 ], [ 136.933594, -15.961329 ], [ 137.285156, -15.961329 ], [ 137.285156, -16.130262 ], [ 137.460938, -16.130262 ], [ 137.460938, -16.299051 ], [ 137.636719, -16.299051 ], [ 137.636719, -16.467695 ], [ 137.812500, -16.467695 ], [ 137.812500, -16.636192 ], [ 137.988281, -16.636192 ], [ 137.988281, -16.804541 ], [ 138.691406, -16.804541 ], [ 138.691406, -16.972741 ], [ 139.042969, -16.972741 ], [ 139.042969, -17.140790 ], [ 139.218750, -17.140790 ], [ 139.218750, -17.308688 ], [ 139.394531, -17.308688 ], [ 139.394531, -17.476432 ], [ 139.746094, -17.476432 ], [ 139.746094, -17.644022 ], [ 140.449219, -17.644022 ], [ 140.449219, -17.476432 ], [ 140.800781, -17.476432 ], [ 140.800781, -17.140790 ], [ 140.976562, -17.140790 ], [ 140.976562, -16.636192 ], [ 141.152344, -16.636192 ], [ 141.152344, -16.130262 ], [ 141.328125, -16.130262 ], [ 141.328125, -15.623037 ], [ 141.503906, -15.623037 ], [ 141.503906, -15.284185 ], [ 141.679688, -15.284185 ], [ 141.679688, -14.774883 ], [ 141.503906, -14.774883 ], [ 141.503906, -12.897489 ], [ 141.679688, -12.897489 ], [ 141.679688, -12.211180 ], [ 141.855469, -12.211180 ], [ 141.855469, -11.523088 ], [ 142.031250, -11.523088 ], [ 142.031250, -11.005904 ], [ 142.207031, -11.005904 ], [ 142.207031, -10.833306 ], [ 142.558594, -10.833306 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.152344, -2.635789 ], [ 141.152344, -2.811371 ], [ 141.503906, -2.811371 ], [ 141.503906, -2.986927 ], [ 142.031250, -2.986927 ], [ 142.031250, -3.162456 ], [ 142.382812, -3.162456 ], [ 142.382812, -3.337954 ], [ 142.910156, -3.337954 ], [ 142.910156, -3.513421 ], [ 143.613281, -3.513421 ], [ 143.613281, -3.688855 ], [ 144.316406, -3.688855 ], [ 144.316406, -3.864255 ], [ 144.667969, -3.864255 ], [ 144.667969, -4.039618 ], [ 144.843750, -4.039618 ], [ 144.843750, -4.214943 ], [ 145.019531, -4.214943 ], [ 145.019531, -4.390229 ], [ 145.195312, -4.390229 ], [ 145.195312, -4.565474 ], [ 145.371094, -4.565474 ], [ 145.371094, -4.740675 ], [ 145.722656, -4.740675 ], [ 145.722656, -4.915833 ], [ 145.898438, -4.915833 ], [ 145.898438, -5.441022 ], [ 146.074219, -5.441022 ], [ 146.074219, -5.615986 ], [ 146.425781, -5.615986 ], [ 146.425781, -5.790897 ], [ 146.953125, -5.790897 ], [ 146.953125, -5.965754 ], [ 147.304688, -5.965754 ], [ 147.304688, -6.140555 ], [ 147.656250, -6.140555 ], [ 147.656250, -6.489983 ], [ 147.832031, -6.489983 ], [ 147.832031, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.013668 ], [ 147.128906, -7.013668 ], [ 147.128906, -7.536764 ], [ 147.304688, -7.536764 ], [ 147.304688, -7.710992 ], [ 147.656250, -7.710992 ], [ 147.656250, -7.885147 ], [ 147.832031, -7.885147 ], [ 147.832031, -8.059230 ], [ 148.007812, -8.059230 ], [ 148.007812, -8.233237 ], [ 148.183594, -8.233237 ], [ 148.183594, -8.581021 ], [ 148.359375, -8.581021 ], [ 148.359375, -8.754795 ], [ 148.535156, -8.754795 ], [ 148.535156, -9.102097 ], [ 149.238281, -9.102097 ], [ 149.238281, -9.449062 ], [ 149.589844, -9.449062 ], [ 149.589844, -9.622414 ], [ 150.117188, -9.622414 ], [ 150.117188, -9.795678 ], [ 149.765625, -9.795678 ], [ 149.765625, -9.968851 ], [ 150.117188, -9.968851 ], [ 150.117188, -10.141932 ], [ 150.468750, -10.141932 ], [ 150.468750, -10.314919 ], [ 150.820312, -10.314919 ], [ 150.820312, -10.487812 ], [ 150.644531, -10.487812 ], [ 150.644531, -10.660608 ], [ 149.941406, -10.660608 ], [ 149.941406, -10.487812 ], [ 149.765625, -10.487812 ], [ 149.765625, -10.314919 ], [ 148.183594, -10.314919 ], [ 148.183594, -10.141932 ], [ 147.656250, -10.141932 ], [ 147.656250, -9.968851 ], [ 147.480469, -9.968851 ], [ 147.480469, -9.795678 ], [ 147.304688, -9.795678 ], [ 147.304688, -9.622414 ], [ 147.128906, -9.622414 ], [ 147.128906, -9.449062 ], [ 146.953125, -9.449062 ], [ 146.953125, -9.275622 ], [ 146.777344, -9.275622 ], [ 146.777344, -9.102097 ], [ 146.601562, -9.102097 ], [ 146.601562, -8.928487 ], [ 146.425781, -8.928487 ], [ 146.425781, -8.581021 ], [ 146.250000, -8.581021 ], [ 146.250000, -8.233237 ], [ 146.074219, -8.233237 ], [ 146.074219, -8.059230 ], [ 145.546875, -8.059230 ], [ 145.546875, -7.885147 ], [ 144.843750, -7.885147 ], [ 144.843750, -7.710992 ], [ 144.492188, -7.710992 ], [ 144.492188, -7.885147 ], [ 143.964844, -7.885147 ], [ 143.964844, -8.059230 ], [ 143.613281, -8.059230 ], [ 143.613281, -8.233237 ], [ 143.261719, -8.233237 ], [ 143.261719, -8.581021 ], [ 143.437500, -8.581021 ], [ 143.437500, -8.928487 ], [ 143.261719, -8.928487 ], [ 143.261719, -9.102097 ], [ 142.910156, -9.102097 ], [ 142.910156, -9.275622 ], [ 142.207031, -9.275622 ], [ 142.207031, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.635789 ], [ 141.152344, -2.635789 ] ] ], [ [ [ 152.050781, -4.214943 ], [ 152.050781, -4.390229 ], [ 152.402344, -4.390229 ], [ 152.402344, -5.090944 ], [ 152.226562, -5.090944 ], [ 152.226562, -5.441022 ], [ 151.875000, -5.441022 ], [ 151.875000, -5.615986 ], [ 151.523438, -5.615986 ], [ 151.523438, -5.790897 ], [ 151.347656, -5.790897 ], [ 151.347656, -5.965754 ], [ 150.996094, -5.965754 ], [ 150.996094, -6.140555 ], [ 150.644531, -6.140555 ], [ 150.644531, -6.315299 ], [ 149.414062, -6.315299 ], [ 149.414062, -6.140555 ], [ 149.062500, -6.140555 ], [ 149.062500, -5.965754 ], [ 148.535156, -5.965754 ], [ 148.535156, -5.790897 ], [ 148.359375, -5.790897 ], [ 148.359375, -5.441022 ], [ 148.710938, -5.441022 ], [ 148.710938, -5.615986 ], [ 149.589844, -5.615986 ], [ 149.589844, -5.441022 ], [ 149.765625, -5.441022 ], [ 149.765625, -5.266008 ], [ 149.941406, -5.266008 ], [ 149.941406, -5.090944 ], [ 150.117188, -5.090944 ], [ 150.117188, -5.266008 ], [ 150.292969, -5.266008 ], [ 150.292969, -5.615986 ], [ 150.644531, -5.615986 ], [ 150.644531, -5.441022 ], [ 150.996094, -5.441022 ], [ 150.996094, -5.266008 ], [ 151.171875, -5.266008 ], [ 151.171875, -5.090944 ], [ 151.347656, -5.090944 ], [ 151.347656, -4.915833 ], [ 151.699219, -4.915833 ], [ 151.699219, -4.565474 ], [ 151.523438, -4.565474 ], [ 151.523438, -4.214943 ], [ 152.050781, -4.214943 ] ] ], [ [ [ 154.687500, -5.090944 ], [ 154.687500, -5.441022 ], [ 154.863281, -5.441022 ], [ 154.863281, -5.615986 ], [ 155.039062, -5.615986 ], [ 155.039062, -5.790897 ], [ 155.214844, -5.790897 ], [ 155.214844, -5.965754 ], [ 155.390625, -5.965754 ], [ 155.390625, -6.140555 ], [ 155.566406, -6.140555 ], [ 155.566406, -6.315299 ], [ 155.917969, -6.315299 ], [ 155.917969, -6.489983 ], [ 156.093750, -6.489983 ], [ 156.093750, -6.664608 ], [ 155.917969, -6.664608 ], [ 155.917969, -6.839170 ], [ 155.390625, -6.839170 ], [ 155.390625, -6.664608 ], [ 155.214844, -6.664608 ], [ 155.214844, -6.489983 ], [ 155.039062, -6.489983 ], [ 155.039062, -6.315299 ], [ 154.863281, -6.315299 ], [ 154.863281, -6.140555 ], [ 154.687500, -6.140555 ], [ 154.687500, -5.615986 ], [ 154.511719, -5.615986 ], [ 154.511719, -5.090944 ], [ 154.687500, -5.090944 ] ] ], [ [ [ 151.347656, -2.635789 ], [ 151.347656, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -2.986927 ], [ 151.875000, -2.986927 ], [ 151.875000, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.337954 ], [ 152.402344, -3.337954 ], [ 152.402344, -3.688855 ], [ 152.578125, -3.688855 ], [ 152.578125, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.039618 ], [ 153.105469, -4.039618 ], [ 153.105469, -4.740675 ], [ 152.753906, -4.740675 ], [ 152.753906, -4.565474 ], [ 152.578125, -4.565474 ], [ 152.578125, -4.039618 ], [ 152.402344, -4.039618 ], [ 152.402344, -3.864255 ], [ 152.226562, -3.864255 ], [ 152.226562, -3.688855 ], [ 151.875000, -3.688855 ], [ 151.875000, -3.513421 ], [ 151.699219, -3.513421 ], [ 151.699219, -3.337954 ], [ 151.523438, -3.337954 ], [ 151.523438, -3.162456 ], [ 151.347656, -3.162456 ], [ 151.347656, -2.986927 ], [ 150.820312, -2.986927 ], [ 150.820312, -2.635789 ], [ 151.347656, -2.635789 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.152344, -2.460181 ], [ 141.152344, -2.635789 ], [ 141.503906, -2.635789 ], [ 141.503906, -2.811371 ], [ 142.031250, -2.811371 ], [ 142.031250, -2.986927 ], [ 142.382812, -2.986927 ], [ 142.382812, -3.162456 ], [ 142.910156, -3.162456 ], [ 142.910156, -3.337954 ], [ 143.437500, -3.337954 ], [ 143.437500, -3.513421 ], [ 144.140625, -3.513421 ], [ 144.140625, -3.688855 ], [ 144.492188, -3.688855 ], [ 144.492188, -3.864255 ], [ 144.667969, -3.864255 ], [ 144.667969, -4.039618 ], [ 145.019531, -4.039618 ], [ 145.019531, -4.214943 ], [ 145.195312, -4.214943 ], [ 145.195312, -4.390229 ], [ 145.371094, -4.390229 ], [ 145.371094, -4.565474 ], [ 145.546875, -4.565474 ], [ 145.546875, -4.740675 ], [ 145.722656, -4.740675 ], [ 145.722656, -5.090944 ], [ 145.898438, -5.090944 ], [ 145.898438, -5.441022 ], [ 146.074219, -5.441022 ], [ 146.074219, -5.615986 ], [ 146.601562, -5.615986 ], [ 146.601562, -5.790897 ], [ 147.128906, -5.790897 ], [ 147.128906, -5.965754 ], [ 147.480469, -5.965754 ], [ 147.480469, -6.140555 ], [ 147.656250, -6.140555 ], [ 147.656250, -6.489983 ], [ 147.480469, -6.489983 ], [ 147.480469, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.013668 ], [ 147.128906, -7.013668 ], [ 147.128906, -7.536764 ], [ 147.480469, -7.536764 ], [ 147.480469, -7.710992 ], [ 147.832031, -7.710992 ], [ 147.832031, -7.885147 ], [ 148.007812, -7.885147 ], [ 148.007812, -8.059230 ], [ 148.183594, -8.059230 ], [ 148.183594, -8.407168 ], [ 148.359375, -8.407168 ], [ 148.359375, -8.754795 ], [ 148.535156, -8.754795 ], [ 148.535156, -9.102097 ], [ 149.062500, -9.102097 ], [ 149.062500, -8.928487 ], [ 149.238281, -8.928487 ], [ 149.238281, -9.449062 ], [ 149.414062, -9.449062 ], [ 149.414062, -9.622414 ], [ 149.941406, -9.622414 ], [ 149.941406, -9.795678 ], [ 149.765625, -9.795678 ], [ 149.765625, -9.968851 ], [ 150.292969, -9.968851 ], [ 150.292969, -10.141932 ], [ 150.644531, -10.141932 ], [ 150.644531, -10.487812 ], [ 149.765625, -10.487812 ], [ 149.765625, -10.314919 ], [ 149.238281, -10.314919 ], [ 149.238281, -10.141932 ], [ 148.183594, -10.141932 ], [ 148.183594, -9.968851 ], [ 147.656250, -9.968851 ], [ 147.656250, -9.795678 ], [ 147.304688, -9.795678 ], [ 147.304688, -9.622414 ], [ 147.128906, -9.622414 ], [ 147.128906, -9.449062 ], [ 146.953125, -9.449062 ], [ 146.953125, -9.275622 ], [ 146.601562, -9.275622 ], [ 146.601562, -9.102097 ], [ 146.425781, -9.102097 ], [ 146.425781, -8.928487 ], [ 146.250000, -8.928487 ], [ 146.250000, -8.581021 ], [ 146.074219, -8.581021 ], [ 146.074219, -8.233237 ], [ 145.898438, -8.233237 ], [ 145.898438, -8.059230 ], [ 145.546875, -8.059230 ], [ 145.546875, -7.885147 ], [ 145.195312, -7.885147 ], [ 145.195312, -7.710992 ], [ 144.843750, -7.710992 ], [ 144.843750, -7.536764 ], [ 144.492188, -7.536764 ], [ 144.492188, -7.710992 ], [ 144.140625, -7.710992 ], [ 144.140625, -7.885147 ], [ 143.789062, -7.885147 ], [ 143.789062, -8.059230 ], [ 143.437500, -8.059230 ], [ 143.437500, -8.233237 ], [ 143.261719, -8.233237 ], [ 143.261719, -9.102097 ], [ 142.910156, -9.102097 ], [ 142.910156, -9.275622 ], [ 142.207031, -9.275622 ], [ 142.207031, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.460181 ], [ 141.152344, -2.460181 ] ] ], [ [ [ 152.050781, -4.039618 ], [ 152.050781, -4.214943 ], [ 152.226562, -4.214943 ], [ 152.226562, -4.915833 ], [ 152.050781, -4.915833 ], [ 152.050781, -5.266008 ], [ 151.875000, -5.266008 ], [ 151.875000, -5.441022 ], [ 151.347656, -5.441022 ], [ 151.347656, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -5.790897 ], [ 150.996094, -5.790897 ], [ 150.996094, -5.965754 ], [ 150.644531, -5.965754 ], [ 150.644531, -6.140555 ], [ 150.292969, -6.140555 ], [ 150.292969, -6.315299 ], [ 149.238281, -6.315299 ], [ 149.238281, -6.140555 ], [ 148.886719, -6.140555 ], [ 148.886719, -5.965754 ], [ 148.535156, -5.965754 ], [ 148.535156, -5.790897 ], [ 148.183594, -5.790897 ], [ 148.183594, -5.441022 ], [ 148.359375, -5.441022 ], [ 148.359375, -5.266008 ], [ 148.710938, -5.266008 ], [ 148.710938, -5.441022 ], [ 149.765625, -5.441022 ], [ 149.765625, -5.266008 ], [ 149.941406, -5.266008 ], [ 149.941406, -4.915833 ], [ 150.117188, -4.915833 ], [ 150.117188, -5.441022 ], [ 150.820312, -5.441022 ], [ 150.820312, -5.266008 ], [ 150.996094, -5.266008 ], [ 150.996094, -5.090944 ], [ 151.171875, -5.090944 ], [ 151.171875, -4.915833 ], [ 151.523438, -4.915833 ], [ 151.523438, -4.039618 ], [ 152.050781, -4.039618 ] ] ], [ [ [ 154.687500, -5.441022 ], [ 155.039062, -5.441022 ], [ 155.039062, -5.615986 ], [ 155.214844, -5.615986 ], [ 155.214844, -5.965754 ], [ 155.390625, -5.965754 ], [ 155.390625, -6.315299 ], [ 155.742188, -6.315299 ], [ 155.742188, -6.489983 ], [ 155.917969, -6.489983 ], [ 155.917969, -6.664608 ], [ 155.742188, -6.664608 ], [ 155.742188, -6.839170 ], [ 155.390625, -6.839170 ], [ 155.390625, -6.664608 ], [ 155.039062, -6.664608 ], [ 155.039062, -6.315299 ], [ 154.863281, -6.315299 ], [ 154.863281, -5.965754 ], [ 154.687500, -5.965754 ], [ 154.687500, -5.441022 ] ] ], [ [ [ 150.996094, -2.460181 ], [ 150.996094, -2.635789 ], [ 151.347656, -2.635789 ], [ 151.347656, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -2.986927 ], [ 151.875000, -2.986927 ], [ 151.875000, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.337954 ], [ 152.402344, -3.337954 ], [ 152.402344, -3.513421 ], [ 152.578125, -3.513421 ], [ 152.578125, -3.688855 ], [ 152.753906, -3.688855 ], [ 152.753906, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.214943 ], [ 153.105469, -4.214943 ], [ 153.105469, -4.565474 ], [ 152.929688, -4.565474 ], [ 152.929688, -4.740675 ], [ 152.753906, -4.740675 ], [ 152.753906, -4.390229 ], [ 152.578125, -4.390229 ], [ 152.578125, -3.864255 ], [ 152.402344, -3.864255 ], [ 152.402344, -3.688855 ], [ 152.226562, -3.688855 ], [ 152.226562, -3.513421 ], [ 151.875000, -3.513421 ], [ 151.875000, -3.337954 ], [ 151.699219, -3.337954 ], [ 151.699219, -3.162456 ], [ 151.347656, -3.162456 ], [ 151.347656, -2.986927 ], [ 150.996094, -2.986927 ], [ 150.996094, -2.811371 ], [ 150.644531, -2.811371 ], [ 150.644531, -2.635789 ], [ 150.820312, -2.635789 ], [ 150.820312, -2.460181 ], [ 150.996094, -2.460181 ] ] ], [ [ [ 154.687500, -5.441022 ], [ 154.511719, -5.441022 ], [ 154.511719, -5.090944 ], [ 154.687500, -5.090944 ], [ 154.687500, -5.441022 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.718750, -10.314919 ], [ 161.718750, -10.487812 ], [ 162.070312, -10.487812 ], [ 162.070312, -10.660608 ], [ 162.246094, -10.660608 ], [ 162.246094, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.718750, -10.660608 ], [ 161.542969, -10.660608 ], [ 161.542969, -10.314919 ], [ 161.718750, -10.314919 ] ] ], [ [ [ 159.960938, -9.275622 ], [ 159.960938, -9.449062 ], [ 160.312500, -9.449062 ], [ 160.312500, -9.622414 ], [ 160.664062, -9.622414 ], [ 160.664062, -9.795678 ], [ 160.839844, -9.795678 ], [ 160.839844, -9.968851 ], [ 159.960938, -9.968851 ], [ 159.960938, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.449062 ], [ 159.785156, -9.449062 ], [ 159.785156, -9.275622 ], [ 159.960938, -9.275622 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 160.839844, -8.407168 ], [ 161.015625, -8.407168 ], [ 161.015625, -8.754795 ], [ 161.191406, -8.754795 ], [ 161.191406, -9.102097 ], [ 161.367188, -9.102097 ], [ 161.367188, -9.275622 ], [ 161.542969, -9.275622 ], [ 161.542969, -9.622414 ], [ 161.718750, -9.622414 ], [ 161.718750, -9.795678 ], [ 161.367188, -9.795678 ], [ 161.367188, -9.622414 ], [ 161.191406, -9.622414 ], [ 161.191406, -9.275622 ], [ 161.015625, -9.275622 ], [ 161.015625, -9.102097 ], [ 160.839844, -9.102097 ], [ 160.839844, -8.581021 ], [ 160.664062, -8.581021 ], [ 160.664062, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 159.785156, -8.407168 ], [ 159.433594, -8.407168 ], [ 159.433594, -8.233237 ], [ 159.082031, -8.233237 ], [ 159.082031, -8.059230 ], [ 158.906250, -8.059230 ], [ 158.906250, -7.885147 ], [ 158.554688, -7.885147 ], [ 158.554688, -7.710992 ], [ 158.378906, -7.710992 ], [ 158.378906, -7.536764 ], [ 158.203125, -7.536764 ], [ 158.203125, -7.362467 ], [ 158.554688, -7.362467 ], [ 158.554688, -7.536764 ], [ 158.906250, -7.536764 ], [ 158.906250, -7.710992 ], [ 159.082031, -7.710992 ], [ 159.082031, -7.885147 ], [ 159.433594, -7.885147 ], [ 159.433594, -8.059230 ], [ 159.609375, -8.059230 ], [ 159.609375, -8.233237 ], [ 159.785156, -8.233237 ], [ 159.785156, -8.407168 ] ] ], [ [ [ 156.972656, -6.839170 ], [ 156.972656, -7.013668 ], [ 157.148438, -7.013668 ], [ 157.148438, -7.188101 ], [ 157.324219, -7.188101 ], [ 157.324219, -7.362467 ], [ 156.972656, -7.362467 ], [ 156.972656, -7.188101 ], [ 156.796875, -7.188101 ], [ 156.796875, -7.013668 ], [ 156.445312, -7.013668 ], [ 156.445312, -6.839170 ], [ 156.972656, -6.839170 ] ] ], [ [ [ 159.785156, -8.407168 ], [ 159.960938, -8.407168 ], [ 159.960938, -8.581021 ], [ 159.785156, -8.581021 ], [ 159.785156, -8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.367188, -10.314919 ], [ 162.070312, -10.314919 ], [ 162.070312, -10.487812 ], [ 162.246094, -10.487812 ], [ 162.246094, -10.660608 ], [ 161.367188, -10.660608 ], [ 161.367188, -10.314919 ] ] ], [ [ [ 159.785156, -9.102097 ], [ 159.785156, -9.275622 ], [ 160.312500, -9.275622 ], [ 160.312500, -9.449062 ], [ 160.664062, -9.449062 ], [ 160.664062, -9.622414 ], [ 160.839844, -9.622414 ], [ 160.839844, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.102097 ], [ 159.785156, -9.102097 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 160.839844, -8.581021 ], [ 161.015625, -8.581021 ], [ 161.015625, -8.928487 ], [ 161.191406, -8.928487 ], [ 161.191406, -9.275622 ], [ 161.367188, -9.275622 ], [ 161.367188, -9.449062 ], [ 161.542969, -9.449062 ], [ 161.542969, -9.622414 ], [ 161.191406, -9.622414 ], [ 161.191406, -9.449062 ], [ 161.015625, -9.449062 ], [ 161.015625, -9.102097 ], [ 160.839844, -9.102097 ], [ 160.839844, -8.928487 ], [ 160.664062, -8.928487 ], [ 160.664062, -8.581021 ], [ 160.488281, -8.581021 ], [ 160.488281, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 158.554688, -7.362467 ], [ 158.554688, -7.536764 ], [ 158.906250, -7.536764 ], [ 158.906250, -7.710992 ], [ 159.257812, -7.710992 ], [ 159.257812, -7.885147 ], [ 159.609375, -7.885147 ], [ 159.609375, -8.059230 ], [ 159.785156, -8.059230 ], [ 159.785156, -8.407168 ], [ 159.433594, -8.407168 ], [ 159.433594, -8.233237 ], [ 159.082031, -8.233237 ], [ 159.082031, -8.059230 ], [ 158.906250, -8.059230 ], [ 158.906250, -7.885147 ], [ 158.554688, -7.885147 ], [ 158.554688, -7.710992 ], [ 158.378906, -7.710992 ], [ 158.378906, -7.536764 ], [ 158.203125, -7.536764 ], [ 158.203125, -7.362467 ], [ 158.554688, -7.362467 ] ] ], [ [ [ 156.621094, -6.839170 ], [ 156.445312, -6.839170 ], [ 156.445312, -6.664608 ], [ 156.621094, -6.664608 ], [ 156.621094, -6.839170 ] ] ], [ [ [ 157.148438, -7.188101 ], [ 157.500000, -7.188101 ], [ 157.500000, -7.362467 ], [ 157.148438, -7.362467 ], [ 157.148438, -7.188101 ] ] ], [ [ [ 156.796875, -7.013668 ], [ 157.148438, -7.013668 ], [ 157.148438, -7.188101 ], [ 156.796875, -7.188101 ], [ 156.796875, -7.013668 ] ] ], [ [ [ 161.367188, -10.314919 ], [ 161.191406, -10.314919 ], [ 161.191406, -10.141932 ], [ 161.367188, -10.141932 ], [ 161.367188, -10.314919 ] ] ], [ [ [ 156.621094, -6.839170 ], [ 156.796875, -6.839170 ], [ 156.796875, -7.013668 ], [ 156.621094, -7.013668 ], [ 156.621094, -6.839170 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.343750, -16.299051 ], [ 167.695312, -16.299051 ], [ 167.695312, -16.467695 ], [ 167.871094, -16.467695 ], [ 167.871094, -16.636192 ], [ 167.343750, -16.636192 ], [ 167.343750, -16.299051 ] ] ], [ [ [ 166.992188, -14.774883 ], [ 166.992188, -14.944785 ], [ 167.167969, -14.944785 ], [ 167.167969, -15.453680 ], [ 167.343750, -15.453680 ], [ 167.343750, -15.792254 ], [ 166.992188, -15.792254 ], [ 166.992188, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.774883 ], [ 166.992188, -14.774883 ] ] ], [ [ [ 167.343750, -16.299051 ], [ 167.167969, -16.299051 ], [ 167.167969, -16.130262 ], [ 167.343750, -16.130262 ], [ 167.343750, -16.299051 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.343750, -15.961329 ], [ 167.343750, -16.130262 ], [ 167.519531, -16.130262 ], [ 167.519531, -16.467695 ], [ 167.343750, -16.467695 ], [ 167.343750, -16.299051 ], [ 167.167969, -16.299051 ], [ 167.167969, -15.961329 ], [ 167.343750, -15.961329 ] ] ], [ [ [ 166.640625, -14.604847 ], [ 166.640625, -14.774883 ], [ 166.992188, -14.774883 ], [ 166.992188, -15.284185 ], [ 167.167969, -15.284185 ], [ 167.167969, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.944785 ], [ 166.464844, -14.944785 ], [ 166.464844, -14.604847 ], [ 166.640625, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, -20.138470 ], [ 164.531250, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.468189 ], [ 165.058594, -20.468189 ], [ 165.058594, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.797201 ], [ 165.410156, -20.797201 ], [ 165.410156, -20.961440 ], [ 165.585938, -20.961440 ], [ 165.585938, -21.125498 ], [ 165.761719, -21.125498 ], [ 165.761719, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.453069 ], [ 166.289062, -21.453069 ], [ 166.289062, -21.616579 ], [ 166.464844, -21.616579 ], [ 166.464844, -21.779905 ], [ 166.640625, -21.779905 ], [ 166.640625, -21.943046 ], [ 166.992188, -21.943046 ], [ 166.992188, -22.105999 ], [ 167.167969, -22.105999 ], [ 167.167969, -22.268764 ], [ 166.992188, -22.268764 ], [ 166.992188, -22.431340 ], [ 166.464844, -22.431340 ], [ 166.464844, -22.268764 ], [ 166.113281, -22.268764 ], [ 166.113281, -22.105999 ], [ 165.937500, -22.105999 ], [ 165.937500, -21.943046 ], [ 165.585938, -21.943046 ], [ 165.585938, -21.779905 ], [ 165.410156, -21.779905 ], [ 165.410156, -21.616579 ], [ 165.234375, -21.616579 ], [ 165.234375, -21.453069 ], [ 165.058594, -21.453069 ], [ 165.058594, -21.289374 ], [ 164.882812, -21.289374 ], [ 164.882812, -21.125498 ], [ 164.707031, -21.125498 ], [ 164.707031, -20.961440 ], [ 164.531250, -20.961440 ], [ 164.531250, -20.797201 ], [ 164.355469, -20.797201 ], [ 164.355469, -20.632784 ], [ 164.179688, -20.632784 ], [ 164.179688, -20.303418 ], [ 164.003906, -20.303418 ], [ 164.003906, -20.138470 ], [ 164.531250, -20.138470 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.355469, -19.973349 ], [ 164.355469, -20.138470 ], [ 164.707031, -20.138470 ], [ 164.707031, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.468189 ], [ 165.058594, -20.468189 ], [ 165.058594, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.797201 ], [ 165.410156, -20.797201 ], [ 165.410156, -20.961440 ], [ 165.761719, -20.961440 ], [ 165.761719, -21.125498 ], [ 165.937500, -21.125498 ], [ 165.937500, -21.289374 ], [ 166.113281, -21.289374 ], [ 166.113281, -21.453069 ], [ 166.289062, -21.453069 ], [ 166.289062, -21.616579 ], [ 166.464844, -21.616579 ], [ 166.464844, -21.779905 ], [ 166.640625, -21.779905 ], [ 166.640625, -21.943046 ], [ 166.816406, -21.943046 ], [ 166.816406, -22.105999 ], [ 166.992188, -22.105999 ], [ 166.992188, -22.268764 ], [ 166.289062, -22.268764 ], [ 166.289062, -22.105999 ], [ 165.937500, -22.105999 ], [ 165.937500, -21.943046 ], [ 165.585938, -21.943046 ], [ 165.585938, -21.779905 ], [ 165.410156, -21.779905 ], [ 165.410156, -21.616579 ], [ 165.234375, -21.616579 ], [ 165.234375, -21.453069 ], [ 164.882812, -21.453069 ], [ 164.882812, -21.289374 ], [ 164.707031, -21.289374 ], [ 164.707031, -21.125498 ], [ 164.531250, -21.125498 ], [ 164.531250, -20.961440 ], [ 164.355469, -20.961440 ], [ 164.355469, -20.632784 ], [ 164.179688, -20.632784 ], [ 164.179688, -20.468189 ], [ 164.003906, -20.468189 ], [ 164.003906, -19.973349 ], [ 164.355469, -19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.376809 ], [ 173.496094, -41.376809 ], [ 173.496094, -41.244772 ], [ 173.847656, -41.244772 ], [ 173.847656, -41.112469 ], [ 174.023438, -41.112469 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.979898 ], [ 172.265625, -40.979898 ], [ 172.265625, -40.847060 ], [ 172.441406, -40.847060 ], [ 172.441406, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ] ] ], [ [ [ 173.144531, -34.597042 ], [ 173.144531, -34.741612 ], [ 173.320312, -34.741612 ], [ 173.320312, -35.029996 ], [ 173.671875, -35.029996 ], [ 173.671875, -35.173808 ], [ 174.023438, -35.173808 ], [ 174.023438, -35.317366 ], [ 174.375000, -35.317366 ], [ 174.375000, -35.746512 ], [ 174.550781, -35.746512 ], [ 174.550781, -36.315125 ], [ 174.726562, -36.315125 ], [ 174.726562, -36.597889 ], [ 174.902344, -36.597889 ], [ 174.902344, -36.879621 ], [ 175.078125, -36.879621 ], [ 175.078125, -37.160317 ], [ 175.253906, -37.160317 ], [ 175.253906, -36.879621 ], [ 175.429688, -36.879621 ], [ 175.429688, -36.597889 ], [ 175.605469, -36.597889 ], [ 175.605469, -36.738884 ], [ 175.781250, -36.738884 ], [ 175.781250, -37.160317 ], [ 175.957031, -37.160317 ], [ 175.957031, -37.579413 ], [ 176.132812, -37.579413 ], [ 176.132812, -37.718590 ], [ 176.484375, -37.718590 ], [ 176.484375, -37.857507 ], [ 177.011719, -37.857507 ], [ 177.011719, -37.996163 ], [ 177.539062, -37.996163 ], [ 177.539062, -37.857507 ], [ 177.890625, -37.857507 ], [ 177.890625, -37.718590 ], [ 178.066406, -37.718590 ], [ 178.066406, -37.579413 ], [ 178.242188, -37.579413 ], [ 178.242188, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -37.996163 ], [ 178.417969, -37.996163 ], [ 178.417969, -38.410558 ], [ 178.242188, -38.410558 ], [ 178.242188, -38.822591 ], [ 178.066406, -38.822591 ], [ 178.066406, -39.095963 ], [ 177.890625, -39.095963 ], [ 177.890625, -39.232253 ], [ 177.363281, -39.232253 ], [ 177.363281, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.368279 ], [ 177.011719, -39.368279 ], [ 177.011719, -40.044438 ], [ 176.835938, -40.044438 ], [ 176.835938, -40.178873 ], [ 176.660156, -40.178873 ], [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.781250, -41.376809 ], [ 175.781250, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.640078 ], [ 175.253906, -41.640078 ], [ 175.253906, -41.508577 ], [ 175.078125, -41.508577 ], [ 175.078125, -41.376809 ], [ 174.726562, -41.376809 ], [ 174.726562, -41.112469 ], [ 174.902344, -41.112469 ], [ 174.902344, -40.847060 ], [ 175.078125, -40.847060 ], [ 175.078125, -40.580585 ], [ 175.253906, -40.580585 ], [ 175.253906, -40.313043 ], [ 175.078125, -40.313043 ], [ 175.078125, -40.044438 ], [ 174.902344, -40.044438 ], [ 174.902344, -39.909736 ], [ 174.550781, -39.909736 ], [ 174.550781, -39.774769 ], [ 174.199219, -39.774769 ], [ 174.199219, -39.639538 ], [ 173.847656, -39.639538 ], [ 173.847656, -39.095963 ], [ 174.199219, -39.095963 ], [ 174.199219, -38.959409 ], [ 174.550781, -38.959409 ], [ 174.550781, -38.410558 ], [ 174.726562, -38.410558 ], [ 174.726562, -37.300275 ], [ 174.550781, -37.300275 ], [ 174.550781, -37.020098 ], [ 174.375000, -37.020098 ], [ 174.375000, -36.597889 ], [ 174.199219, -36.597889 ], [ 174.199219, -36.456636 ], [ 174.023438, -36.456636 ], [ 174.023438, -36.315125 ], [ 173.847656, -36.315125 ], [ 173.847656, -36.173357 ], [ 173.671875, -36.173357 ], [ 173.671875, -35.889050 ], [ 173.496094, -35.889050 ], [ 173.496094, -35.746512 ], [ 173.320312, -35.746512 ], [ 173.320312, -35.603719 ], [ 173.144531, -35.603719 ], [ 173.144531, -35.317366 ], [ 172.968750, -35.317366 ], [ 172.968750, -35.029996 ], [ 172.792969, -35.029996 ], [ 172.792969, -34.741612 ], [ 172.617188, -34.741612 ], [ 172.617188, -34.597042 ], [ 173.144531, -34.597042 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.244772 ], [ 173.320312, -41.244772 ], [ 173.320312, -41.112469 ], [ 173.671875, -41.112469 ], [ 173.671875, -40.979898 ], [ 174.023438, -40.979898 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.847060 ], [ 172.265625, -40.847060 ], [ 172.265625, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ] ] ], [ [ [ 172.968750, -34.452218 ], [ 172.968750, -34.597042 ], [ 173.144531, -34.597042 ], [ 173.144531, -34.741612 ], [ 173.320312, -34.741612 ], [ 173.320312, -34.885931 ], [ 173.496094, -34.885931 ], [ 173.496094, -35.029996 ], [ 173.847656, -35.029996 ], [ 173.847656, -35.173808 ], [ 174.199219, -35.173808 ], [ 174.199219, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -35.889050 ], [ 174.550781, -35.889050 ], [ 174.550781, -36.173357 ], [ 174.726562, -36.173357 ], [ 174.726562, -36.456636 ], [ 174.902344, -36.456636 ], [ 174.902344, -36.738884 ], [ 175.078125, -36.738884 ], [ 175.078125, -37.020098 ], [ 175.253906, -37.020098 ], [ 175.253906, -36.597889 ], [ 175.605469, -36.597889 ], [ 175.605469, -36.738884 ], [ 175.781250, -36.738884 ], [ 175.781250, -37.160317 ], [ 175.957031, -37.160317 ], [ 175.957031, -37.579413 ], [ 176.132812, -37.579413 ], [ 176.132812, -37.718590 ], [ 176.484375, -37.718590 ], [ 176.484375, -37.857507 ], [ 177.539062, -37.857507 ], [ 177.539062, -37.718590 ], [ 177.890625, -37.718590 ], [ 177.890625, -37.579413 ], [ 178.417969, -37.579413 ], [ 178.417969, -38.134557 ], [ 178.242188, -38.134557 ], [ 178.242188, -38.685510 ], [ 178.066406, -38.685510 ], [ 178.066406, -38.959409 ], [ 177.890625, -38.959409 ], [ 177.890625, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.232253 ], [ 177.011719, -39.232253 ], [ 177.011719, -39.368279 ], [ 176.835938, -39.368279 ], [ 176.835938, -39.639538 ], [ 177.011719, -39.639538 ], [ 177.011719, -39.909736 ], [ 176.835938, -39.909736 ], [ 176.835938, -40.178873 ], [ 176.660156, -40.178873 ], [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.781250, -41.376809 ], [ 175.781250, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.640078 ], [ 175.078125, -41.640078 ], [ 175.078125, -41.508577 ], [ 174.902344, -41.508577 ], [ 174.902344, -41.376809 ], [ 174.550781, -41.376809 ], [ 174.550781, -41.112469 ], [ 174.726562, -41.112469 ], [ 174.726562, -40.847060 ], [ 174.902344, -40.847060 ], [ 174.902344, -40.580585 ], [ 175.078125, -40.580585 ], [ 175.078125, -40.178873 ], [ 174.902344, -40.178873 ], [ 174.902344, -39.909736 ], [ 174.550781, -39.909736 ], [ 174.550781, -39.774769 ], [ 174.199219, -39.774769 ], [ 174.199219, -39.639538 ], [ 173.847656, -39.639538 ], [ 173.847656, -39.504041 ], [ 173.671875, -39.504041 ], [ 173.671875, -39.368279 ], [ 173.847656, -39.368279 ], [ 173.847656, -39.095963 ], [ 174.023438, -39.095963 ], [ 174.023438, -38.959409 ], [ 174.375000, -38.959409 ], [ 174.375000, -38.822591 ], [ 174.550781, -38.822591 ], [ 174.550781, -38.410558 ], [ 174.726562, -38.410558 ], [ 174.726562, -37.718590 ], [ 174.550781, -37.718590 ], [ 174.550781, -37.160317 ], [ 174.375000, -37.160317 ], [ 174.375000, -36.879621 ], [ 174.199219, -36.879621 ], [ 174.199219, -36.456636 ], [ 174.023438, -36.456636 ], [ 174.023438, -36.315125 ], [ 173.847656, -36.315125 ], [ 173.847656, -36.173357 ], [ 173.671875, -36.173357 ], [ 173.671875, -36.031332 ], [ 173.496094, -36.031332 ], [ 173.496094, -35.746512 ], [ 173.320312, -35.746512 ], [ 173.320312, -35.603719 ], [ 173.144531, -35.603719 ], [ 173.144531, -35.317366 ], [ 172.968750, -35.317366 ], [ 172.968750, -35.029996 ], [ 172.792969, -35.029996 ], [ 172.792969, -34.741612 ], [ 172.617188, -34.741612 ], [ 172.617188, -34.452218 ], [ 172.968750, -34.452218 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.296875, 34.307144 ], [ 134.296875, 34.161818 ], [ 134.648438, 34.161818 ], [ 134.648438, 34.016242 ], [ 134.824219, 34.016242 ], [ 134.824219, 33.724340 ], [ 134.648438, 33.724340 ], [ 134.648438, 33.578015 ], [ 134.472656, 33.578015 ], [ 134.472656, 33.284620 ], [ 134.296875, 33.284620 ], [ 134.296875, 33.137551 ], [ 134.121094, 33.137551 ], [ 134.121094, 34.307144 ], [ 134.296875, 34.307144 ] ] ], [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.713956 ], [ 141.679688, 40.713956 ], [ 141.679688, 40.178873 ], [ 141.855469, 40.178873 ], [ 141.855469, 39.095963 ], [ 141.679688, 39.095963 ], [ 141.679688, 38.822591 ], [ 141.503906, 38.822591 ], [ 141.503906, 38.685510 ], [ 141.328125, 38.685510 ], [ 141.328125, 38.410558 ], [ 141.152344, 38.410558 ], [ 141.152344, 38.134557 ], [ 140.976562, 38.134557 ], [ 140.976562, 36.879621 ], [ 140.800781, 36.879621 ], [ 140.800781, 36.456636 ], [ 140.625000, 36.456636 ], [ 140.625000, 36.031332 ], [ 140.800781, 36.031332 ], [ 140.800781, 35.746512 ], [ 140.625000, 35.746512 ], [ 140.625000, 35.460670 ], [ 140.449219, 35.460670 ], [ 140.449219, 35.173808 ], [ 140.273438, 35.173808 ], [ 140.273438, 35.029996 ], [ 139.921875, 35.029996 ], [ 139.921875, 34.885931 ], [ 139.570312, 34.885931 ], [ 139.570312, 34.741612 ], [ 139.218750, 34.741612 ], [ 139.218750, 34.597042 ], [ 137.285156, 34.597042 ], [ 137.285156, 34.452218 ], [ 137.109375, 34.452218 ], [ 137.109375, 34.307144 ], [ 136.933594, 34.307144 ], [ 136.933594, 34.161818 ], [ 136.757812, 34.161818 ], [ 136.757812, 34.016242 ], [ 136.582031, 34.016242 ], [ 136.582031, 33.870416 ], [ 136.406250, 33.870416 ], [ 136.406250, 33.724340 ], [ 136.230469, 33.724340 ], [ 136.230469, 33.578015 ], [ 136.054688, 33.578015 ], [ 136.054688, 33.431441 ], [ 135.703125, 33.431441 ], [ 135.703125, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.175781, 33.724340 ], [ 135.175781, 34.161818 ], [ 135.000000, 34.161818 ], [ 135.000000, 34.597042 ], [ 134.648438, 34.597042 ], [ 134.648438, 34.452218 ], [ 134.121094, 34.452218 ], [ 134.121094, 35.603719 ], [ 134.472656, 35.603719 ], [ 134.472656, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.351562, 35.603719 ], [ 135.351562, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.603719 ], [ 135.878906, 35.603719 ], [ 135.878906, 35.889050 ], [ 136.054688, 35.889050 ], [ 136.054688, 36.173357 ], [ 136.230469, 36.173357 ], [ 136.230469, 36.456636 ], [ 136.406250, 36.456636 ], [ 136.406250, 36.738884 ], [ 136.582031, 36.738884 ], [ 136.582031, 37.020098 ], [ 136.757812, 37.020098 ], [ 136.757812, 37.160317 ], [ 136.933594, 37.160317 ], [ 136.933594, 37.020098 ], [ 137.285156, 37.020098 ], [ 137.285156, 36.879621 ], [ 137.636719, 36.879621 ], [ 137.636719, 37.020098 ], [ 137.812500, 37.020098 ], [ 137.812500, 37.160317 ], [ 137.988281, 37.160317 ], [ 137.988281, 37.300275 ], [ 138.339844, 37.300275 ], [ 138.339844, 37.439974 ], [ 138.515625, 37.439974 ], [ 138.515625, 37.579413 ], [ 138.691406, 37.579413 ], [ 138.691406, 37.718590 ], [ 138.867188, 37.718590 ], [ 138.867188, 37.857507 ], [ 139.042969, 37.857507 ], [ 139.042969, 37.996163 ], [ 139.218750, 37.996163 ], [ 139.218750, 38.134557 ], [ 139.394531, 38.134557 ], [ 139.394531, 38.410558 ], [ 139.570312, 38.410558 ], [ 139.570312, 38.685510 ], [ 139.746094, 38.685510 ], [ 139.746094, 38.959409 ], [ 139.921875, 38.959409 ], [ 139.921875, 39.232253 ], [ 140.097656, 39.232253 ], [ 140.097656, 40.044438 ], [ 139.921875, 40.044438 ], [ 139.921875, 40.713956 ], [ 140.097656, 40.713956 ], [ 140.097656, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 140.625000, 41.640078 ], [ 140.625000, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 41.640078 ], [ 140.625000, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.472656, 34.161818 ], [ 134.472656, 34.016242 ], [ 134.648438, 34.016242 ], [ 134.648438, 33.724340 ], [ 134.472656, 33.724340 ], [ 134.472656, 33.578015 ], [ 134.296875, 33.578015 ], [ 134.296875, 33.284620 ], [ 134.121094, 33.284620 ], [ 134.121094, 34.161818 ], [ 134.472656, 34.161818 ] ] ], [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.713956 ], [ 141.679688, 40.713956 ], [ 141.679688, 40.178873 ], [ 141.855469, 40.178873 ], [ 141.855469, 39.095963 ], [ 141.679688, 39.095963 ], [ 141.679688, 38.959409 ], [ 141.503906, 38.959409 ], [ 141.503906, 38.822591 ], [ 141.328125, 38.822591 ], [ 141.328125, 38.548165 ], [ 141.152344, 38.548165 ], [ 141.152344, 38.410558 ], [ 140.976562, 38.410558 ], [ 140.976562, 38.272689 ], [ 140.800781, 38.272689 ], [ 140.800781, 37.718590 ], [ 140.976562, 37.718590 ], [ 140.976562, 37.020098 ], [ 140.800781, 37.020098 ], [ 140.800781, 36.738884 ], [ 140.625000, 36.738884 ], [ 140.625000, 36.456636 ], [ 140.449219, 36.456636 ], [ 140.449219, 36.173357 ], [ 140.625000, 36.173357 ], [ 140.625000, 35.746512 ], [ 140.449219, 35.746512 ], [ 140.449219, 35.460670 ], [ 140.273438, 35.460670 ], [ 140.273438, 35.173808 ], [ 139.921875, 35.173808 ], [ 139.921875, 35.029996 ], [ 139.570312, 35.029996 ], [ 139.570312, 34.885931 ], [ 139.218750, 34.885931 ], [ 139.218750, 34.741612 ], [ 137.109375, 34.741612 ], [ 137.109375, 34.597042 ], [ 136.933594, 34.597042 ], [ 136.933594, 34.452218 ], [ 136.757812, 34.452218 ], [ 136.757812, 34.307144 ], [ 136.582031, 34.307144 ], [ 136.582031, 34.161818 ], [ 136.406250, 34.161818 ], [ 136.406250, 34.016242 ], [ 136.230469, 34.016242 ], [ 136.230469, 33.870416 ], [ 136.054688, 33.870416 ], [ 136.054688, 33.724340 ], [ 135.878906, 33.724340 ], [ 135.878906, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.597042 ], [ 134.121094, 34.597042 ], [ 134.121094, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.527344, 35.603719 ], [ 135.527344, 35.746512 ], [ 135.703125, 35.746512 ], [ 135.703125, 36.031332 ], [ 135.878906, 36.031332 ], [ 135.878906, 36.315125 ], [ 136.054688, 36.315125 ], [ 136.054688, 36.597889 ], [ 136.230469, 36.597889 ], [ 136.230469, 36.879621 ], [ 136.406250, 36.879621 ], [ 136.406250, 37.160317 ], [ 136.582031, 37.160317 ], [ 136.582031, 37.300275 ], [ 136.757812, 37.300275 ], [ 136.757812, 37.160317 ], [ 136.933594, 37.160317 ], [ 136.933594, 37.020098 ], [ 137.109375, 37.020098 ], [ 137.109375, 36.879621 ], [ 137.460938, 36.879621 ], [ 137.460938, 37.020098 ], [ 137.636719, 37.020098 ], [ 137.636719, 37.160317 ], [ 137.812500, 37.160317 ], [ 137.812500, 37.300275 ], [ 138.164062, 37.300275 ], [ 138.164062, 37.439974 ], [ 138.339844, 37.439974 ], [ 138.339844, 37.579413 ], [ 138.515625, 37.579413 ], [ 138.515625, 37.718590 ], [ 138.691406, 37.718590 ], [ 138.691406, 37.857507 ], [ 138.867188, 37.857507 ], [ 138.867188, 37.996163 ], [ 139.218750, 37.996163 ], [ 139.218750, 38.134557 ], [ 139.394531, 38.134557 ], [ 139.394531, 38.410558 ], [ 139.570312, 38.410558 ], [ 139.570312, 38.822591 ], [ 139.746094, 38.822591 ], [ 139.746094, 39.232253 ], [ 139.921875, 39.232253 ], [ 139.921875, 40.044438 ], [ 139.746094, 40.044438 ], [ 139.746094, 40.580585 ], [ 139.921875, 40.580585 ], [ 139.921875, 40.847060 ], [ 140.097656, 40.847060 ], [ 140.097656, 41.112469 ], [ 140.273438, 41.112469 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 65.072130 ], [ 180.000000, 64.923542 ], [ 179.824219, 64.923542 ], [ 179.824219, 64.848937 ], [ 179.648438, 64.848937 ], [ 179.648438, 64.774125 ], [ 179.296875, 64.774125 ], [ 179.296875, 64.699105 ], [ 179.121094, 64.699105 ], [ 179.121094, 64.623877 ], [ 178.945312, 64.623877 ], [ 178.945312, 64.548440 ], [ 177.890625, 64.548440 ], [ 177.890625, 64.623877 ], [ 177.363281, 64.623877 ], [ 177.363281, 64.548440 ], [ 177.539062, 64.548440 ], [ 177.539062, 64.396938 ], [ 177.714844, 64.396938 ], [ 177.714844, 64.320872 ], [ 177.890625, 64.320872 ], [ 177.890625, 64.244595 ], [ 178.066406, 64.244595 ], [ 178.066406, 64.091408 ], [ 178.242188, 64.091408 ], [ 178.242188, 63.937372 ], [ 178.417969, 63.937372 ], [ 178.417969, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.548552 ], [ 178.769531, 63.548552 ], [ 178.769531, 63.312683 ], [ 178.945312, 63.312683 ], [ 178.945312, 63.154355 ], [ 179.121094, 63.154355 ], [ 179.121094, 62.995158 ], [ 179.296875, 62.995158 ], [ 179.296875, 62.754726 ], [ 179.472656, 62.754726 ], [ 179.472656, 62.431074 ], [ 179.296875, 62.431074 ], [ 179.296875, 62.267923 ], [ 178.945312, 62.267923 ], [ 178.945312, 62.349609 ], [ 178.242188, 62.349609 ], [ 178.242188, 62.431074 ], [ 177.539062, 62.431074 ], [ 177.539062, 62.512318 ], [ 177.363281, 62.512318 ], [ 177.363281, 62.431074 ], [ 177.011719, 62.431074 ], [ 177.011719, 62.349609 ], [ 176.660156, 62.349609 ], [ 176.660156, 62.267923 ], [ 176.308594, 62.267923 ], [ 176.308594, 62.186014 ], [ 176.132812, 62.186014 ], [ 176.132812, 62.103883 ], [ 175.781250, 62.103883 ], [ 175.781250, 62.021528 ], [ 175.429688, 62.021528 ], [ 175.429688, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.856149 ], [ 174.726562, 61.856149 ], [ 174.726562, 61.773123 ], [ 174.199219, 61.773123 ], [ 174.199219, 61.689872 ], [ 173.671875, 61.689872 ], [ 173.671875, 61.606396 ], [ 173.496094, 61.606396 ], [ 173.496094, 61.522695 ], [ 173.320312, 61.522695 ], [ 173.320312, 61.438767 ], [ 173.144531, 61.438767 ], [ 173.144531, 61.354614 ], [ 172.968750, 61.354614 ], [ 172.968750, 61.270233 ], [ 172.792969, 61.270233 ], [ 172.792969, 61.185625 ], [ 172.617188, 61.185625 ], [ 172.617188, 61.100789 ], [ 172.441406, 61.100789 ], [ 172.441406, 61.015725 ], [ 172.265625, 61.015725 ], [ 172.265625, 60.930432 ], [ 172.089844, 60.930432 ], [ 172.089844, 60.844911 ], [ 171.914062, 60.844911 ], [ 171.914062, 60.759160 ], [ 171.738281, 60.759160 ], [ 171.738281, 60.673179 ], [ 171.562500, 60.673179 ], [ 171.562500, 60.586967 ], [ 171.210938, 60.586967 ], [ 171.210938, 60.500525 ], [ 171.035156, 60.500525 ], [ 171.035156, 60.413852 ], [ 170.859375, 60.413852 ], [ 170.859375, 60.326948 ], [ 170.683594, 60.326948 ], [ 170.683594, 60.152442 ], [ 170.507812, 60.152442 ], [ 170.507812, 59.977005 ], [ 170.332031, 59.977005 ], [ 170.332031, 59.888937 ], [ 170.156250, 59.888937 ], [ 170.156250, 59.977005 ], [ 169.980469, 59.977005 ], [ 169.980469, 60.064840 ], [ 169.804688, 60.064840 ], [ 169.804688, 60.152442 ], [ 169.628906, 60.152442 ], [ 169.628906, 60.239811 ], [ 169.453125, 60.239811 ], [ 169.453125, 60.326948 ], [ 169.277344, 60.326948 ], [ 169.277344, 60.413852 ], [ 169.101562, 60.413852 ], [ 169.101562, 60.500525 ], [ 168.574219, 60.500525 ], [ 168.574219, 60.413852 ], [ 168.222656, 60.413852 ], [ 168.222656, 60.326948 ], [ 168.046875, 60.326948 ], [ 168.046875, 60.239811 ], [ 167.695312, 60.239811 ], [ 167.695312, 60.152442 ], [ 167.343750, 60.152442 ], [ 167.343750, 60.064840 ], [ 167.167969, 60.064840 ], [ 167.167969, 59.977005 ], [ 166.816406, 59.977005 ], [ 166.816406, 59.888937 ], [ 166.464844, 59.888937 ], [ 166.464844, 59.800634 ], [ 166.113281, 59.800634 ], [ 166.113281, 59.977005 ], [ 165.937500, 59.977005 ], [ 165.937500, 60.064840 ], [ 165.585938, 60.064840 ], [ 165.585938, 59.977005 ], [ 165.410156, 59.977005 ], [ 165.410156, 59.888937 ], [ 165.234375, 59.888937 ], [ 165.234375, 59.800634 ], [ 165.058594, 59.800634 ], [ 165.058594, 59.712097 ], [ 164.355469, 59.712097 ], [ 164.355469, 59.800634 ], [ 163.652344, 59.800634 ], [ 163.652344, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.534318 ], [ 163.300781, 59.534318 ], [ 163.300781, 59.085739 ], [ 163.125000, 59.085739 ], [ 163.125000, 58.904646 ], [ 162.949219, 58.904646 ], [ 162.949219, 58.813742 ], [ 162.773438, 58.813742 ], [ 162.773438, 58.722599 ], [ 162.597656, 58.722599 ], [ 162.597656, 58.539595 ], [ 162.421875, 58.539595 ], [ 162.421875, 58.447733 ], [ 162.246094, 58.447733 ], [ 162.246094, 58.263287 ], [ 162.070312, 58.263287 ], [ 162.070312, 57.797944 ], [ 162.246094, 57.797944 ], [ 162.246094, 57.704147 ], [ 162.773438, 57.704147 ], [ 162.773438, 57.610107 ], [ 163.125000, 57.610107 ], [ 163.125000, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.875311 ], [ 161.894531, 55.875311 ], [ 161.894531, 55.478853 ], [ 161.718750, 55.478853 ], [ 161.718750, 55.178868 ], [ 161.894531, 55.178868 ], [ 161.894531, 54.977614 ], [ 162.070312, 54.977614 ], [ 162.070312, 54.775346 ], [ 161.718750, 54.775346 ], [ 161.718750, 54.673831 ], [ 161.367188, 54.673831 ], [ 161.367188, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.470038 ], [ 160.664062, 54.470038 ], [ 160.664062, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 54.059388 ], [ 160.136719, 54.059388 ], [ 160.136719, 53.435719 ], [ 159.960938, 53.435719 ], [ 159.960938, 53.225768 ], [ 159.785156, 53.225768 ], [ 159.785156, 53.120405 ], [ 159.433594, 53.120405 ], [ 159.433594, 53.014783 ], [ 158.906250, 53.014783 ], [ 158.906250, 52.908902 ], [ 158.554688, 52.908902 ], [ 158.554688, 52.589701 ], [ 158.378906, 52.589701 ], [ 158.378906, 52.160455 ], [ 158.203125, 52.160455 ], [ 158.203125, 51.835778 ], [ 158.027344, 51.835778 ], [ 158.027344, 51.727028 ], [ 157.851562, 51.727028 ], [ 157.851562, 51.618017 ], [ 157.675781, 51.618017 ], [ 157.675781, 51.508742 ], [ 157.500000, 51.508742 ], [ 157.500000, 51.289406 ], [ 157.324219, 51.289406 ], [ 157.324219, 51.179343 ], [ 157.148438, 51.179343 ], [ 157.148438, 51.069017 ], [ 156.972656, 51.069017 ], [ 156.972656, 50.958427 ], [ 156.796875, 50.958427 ], [ 156.796875, 51.069017 ], [ 156.621094, 51.069017 ], [ 156.621094, 51.508742 ], [ 156.445312, 51.508742 ], [ 156.445312, 51.944265 ], [ 156.269531, 51.944265 ], [ 156.269531, 52.375599 ], [ 156.093750, 52.375599 ], [ 156.093750, 52.802761 ], [ 155.917969, 52.802761 ], [ 155.917969, 53.435719 ], [ 155.742188, 53.435719 ], [ 155.742188, 54.265224 ], [ 155.566406, 54.265224 ], [ 155.566406, 54.977614 ], [ 155.390625, 54.977614 ], [ 155.390625, 55.578345 ], [ 155.566406, 55.578345 ], [ 155.566406, 56.072035 ], [ 155.742188, 56.072035 ], [ 155.742188, 56.462490 ], [ 155.917969, 56.462490 ], [ 155.917969, 56.752723 ], [ 156.093750, 56.752723 ], [ 156.093750, 56.848972 ], [ 156.269531, 56.848972 ], [ 156.269531, 57.040730 ], [ 156.445312, 57.040730 ], [ 156.445312, 57.136239 ], [ 156.621094, 57.136239 ], [ 156.621094, 57.231503 ], [ 156.796875, 57.231503 ], [ 156.796875, 57.797944 ], [ 157.148438, 57.797944 ], [ 157.148438, 57.891497 ], [ 157.675781, 57.891497 ], [ 157.675781, 57.984808 ], [ 158.203125, 57.984808 ], [ 158.203125, 58.077876 ], [ 158.554688, 58.077876 ], [ 158.554688, 58.263287 ], [ 158.730469, 58.263287 ], [ 158.730469, 58.355630 ], [ 158.906250, 58.355630 ], [ 158.906250, 58.447733 ], [ 159.082031, 58.447733 ], [ 159.082031, 58.631217 ], [ 159.257812, 58.631217 ], [ 159.257812, 58.722599 ], [ 159.433594, 58.722599 ], [ 159.433594, 58.904646 ], [ 159.609375, 58.904646 ], [ 159.609375, 58.995311 ], [ 159.785156, 58.995311 ], [ 159.785156, 59.085739 ], [ 159.960938, 59.085739 ], [ 159.960938, 59.265881 ], [ 160.136719, 59.265881 ], [ 160.136719, 59.355596 ], [ 160.312500, 59.355596 ], [ 160.312500, 59.445075 ], [ 160.488281, 59.445075 ], [ 160.488281, 59.534318 ], [ 160.664062, 59.534318 ], [ 160.664062, 59.623325 ], [ 160.839844, 59.623325 ], [ 160.839844, 59.712097 ], [ 161.015625, 59.712097 ], [ 161.015625, 59.888937 ], [ 161.191406, 59.888937 ], [ 161.191406, 59.977005 ], [ 161.367188, 59.977005 ], [ 161.367188, 60.064840 ], [ 161.542969, 60.064840 ], [ 161.542969, 60.152442 ], [ 161.718750, 60.152442 ], [ 161.718750, 60.239811 ], [ 161.894531, 60.239811 ], [ 161.894531, 60.326948 ], [ 162.070312, 60.326948 ], [ 162.070312, 60.413852 ], [ 162.246094, 60.413852 ], [ 162.246094, 60.500525 ], [ 162.421875, 60.500525 ], [ 162.421875, 60.586967 ], [ 162.597656, 60.586967 ], [ 162.597656, 60.673179 ], [ 162.949219, 60.673179 ], [ 162.949219, 60.759160 ], [ 163.125000, 60.759160 ], [ 163.125000, 60.844911 ], [ 163.300781, 60.844911 ], [ 163.300781, 60.930432 ], [ 163.476562, 60.930432 ], [ 163.476562, 61.015725 ], [ 163.652344, 61.015725 ], [ 163.652344, 61.185625 ], [ 163.828125, 61.185625 ], [ 163.828125, 61.522695 ], [ 164.003906, 61.522695 ], [ 164.003906, 61.773123 ], [ 164.179688, 61.773123 ], [ 164.179688, 62.021528 ], [ 164.355469, 62.021528 ], [ 164.355469, 62.349609 ], [ 164.531250, 62.349609 ], [ 164.531250, 62.512318 ], [ 164.003906, 62.512318 ], [ 164.003906, 62.431074 ], [ 163.300781, 62.431074 ], [ 163.300781, 62.267923 ], [ 163.125000, 62.267923 ], [ 163.125000, 62.103883 ], [ 162.949219, 62.103883 ], [ 162.949219, 61.856149 ], [ 162.773438, 61.856149 ], [ 162.773438, 61.689872 ], [ 162.597656, 61.689872 ], [ 162.597656, 61.522695 ], [ 162.421875, 61.522695 ], [ 162.421875, 61.438767 ], [ 162.246094, 61.438767 ], [ 162.246094, 61.354614 ], [ 161.894531, 61.354614 ], [ 161.894531, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 61.185625 ], [ 161.542969, 61.185625 ], [ 161.542969, 61.100789 ], [ 161.367188, 61.100789 ], [ 161.367188, 61.015725 ], [ 161.191406, 61.015725 ], [ 161.191406, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.844911 ], [ 160.664062, 60.844911 ], [ 160.664062, 60.759160 ], [ 160.488281, 60.759160 ], [ 160.488281, 60.673179 ], [ 160.312500, 60.673179 ], [ 160.312500, 60.586967 ], [ 160.136719, 60.586967 ], [ 160.136719, 60.673179 ], [ 159.960938, 60.673179 ], [ 159.960938, 60.930432 ], [ 159.785156, 60.930432 ], [ 159.785156, 61.185625 ], [ 159.609375, 61.185625 ], [ 159.609375, 61.354614 ], [ 159.433594, 61.354614 ], [ 159.433594, 61.606396 ], [ 159.257812, 61.606396 ], [ 159.257812, 61.773123 ], [ 159.082031, 61.773123 ], [ 159.082031, 61.689872 ], [ 158.378906, 61.689872 ], [ 158.378906, 61.606396 ], [ 157.851562, 61.606396 ], [ 157.851562, 61.522695 ], [ 157.148438, 61.522695 ], [ 157.148438, 61.438767 ], [ 156.796875, 61.438767 ], [ 156.796875, 61.354614 ], [ 156.621094, 61.354614 ], [ 156.621094, 61.270233 ], [ 156.445312, 61.270233 ], [ 156.445312, 61.100789 ], [ 156.269531, 61.100789 ], [ 156.269531, 61.015725 ], [ 156.093750, 61.015725 ], [ 156.093750, 60.930432 ], [ 155.917969, 60.930432 ], [ 155.917969, 60.844911 ], [ 155.742188, 60.844911 ], [ 155.742188, 60.673179 ], [ 155.566406, 60.673179 ], [ 155.566406, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.500525 ], [ 155.214844, 60.500525 ], [ 155.214844, 60.326948 ], [ 155.039062, 60.326948 ], [ 155.039062, 60.239811 ], [ 154.863281, 60.239811 ], [ 154.863281, 60.152442 ], [ 154.687500, 60.152442 ], [ 154.687500, 60.064840 ], [ 154.511719, 60.064840 ], [ 154.511719, 59.888937 ], [ 154.335938, 59.888937 ], [ 154.335938, 59.800634 ], [ 154.160156, 59.800634 ], [ 154.160156, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.511719, 59.534318 ], [ 154.511719, 59.445075 ], [ 154.687500, 59.445075 ], [ 154.687500, 59.355596 ], [ 154.863281, 59.355596 ], [ 154.863281, 59.175928 ], [ 154.687500, 59.175928 ], [ 154.687500, 59.085739 ], [ 153.984375, 59.085739 ], [ 153.984375, 58.995311 ], [ 153.281250, 58.995311 ], [ 153.281250, 58.904646 ], [ 152.226562, 58.904646 ], [ 152.226562, 58.813742 ], [ 151.347656, 58.813742 ], [ 151.347656, 59.534318 ], [ 150.468750, 59.534318 ], [ 150.468750, 59.623325 ], [ 149.765625, 59.623325 ], [ 149.765625, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.445075 ], [ 149.238281, 59.445075 ], [ 149.238281, 59.355596 ], [ 149.062500, 59.355596 ], [ 149.062500, 59.265881 ], [ 148.710938, 59.265881 ], [ 148.710938, 59.175928 ], [ 147.656250, 59.175928 ], [ 147.656250, 59.265881 ], [ 146.250000, 59.265881 ], [ 146.250000, 59.355596 ], [ 145.195312, 59.355596 ], [ 145.195312, 59.265881 ], [ 144.316406, 59.265881 ], [ 144.316406, 59.175928 ], [ 143.613281, 59.175928 ], [ 143.613281, 59.085739 ], [ 142.734375, 59.085739 ], [ 142.734375, 58.995311 ], [ 142.207031, 58.995311 ], [ 142.207031, 58.904646 ], [ 142.031250, 58.904646 ], [ 142.031250, 58.813742 ], [ 141.855469, 58.813742 ], [ 141.855469, 58.722599 ], [ 141.679688, 58.722599 ], [ 141.679688, 58.539595 ], [ 141.503906, 58.539595 ], [ 141.503906, 58.447733 ], [ 141.328125, 58.447733 ], [ 141.328125, 58.355630 ], [ 141.152344, 58.355630 ], [ 141.152344, 58.263287 ], [ 140.976562, 58.263287 ], [ 140.976562, 58.170702 ], [ 140.800781, 58.170702 ], [ 140.800781, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.891497 ], [ 140.449219, 57.891497 ], [ 140.449219, 57.797944 ], [ 140.273438, 57.797944 ], [ 140.273438, 57.704147 ], [ 140.097656, 57.704147 ], [ 140.097656, 57.610107 ], [ 139.921875, 57.610107 ], [ 139.921875, 57.515823 ], [ 139.746094, 57.515823 ], [ 139.746094, 57.421294 ], [ 139.570312, 57.421294 ], [ 139.570312, 57.231503 ], [ 139.394531, 57.231503 ], [ 139.394531, 57.136239 ], [ 139.218750, 57.136239 ], [ 139.218750, 57.040730 ], [ 139.042969, 57.040730 ], [ 139.042969, 56.944974 ], [ 138.867188, 56.944974 ], [ 138.867188, 56.848972 ], [ 138.691406, 56.848972 ], [ 138.691406, 56.752723 ], [ 138.515625, 56.752723 ], [ 138.515625, 56.656226 ], [ 138.339844, 56.656226 ], [ 138.339844, 56.559482 ], [ 138.164062, 56.559482 ], [ 138.164062, 56.462490 ], [ 137.988281, 56.462490 ], [ 137.988281, 56.365250 ], [ 137.812500, 56.365250 ], [ 137.812500, 56.267761 ], [ 137.636719, 56.267761 ], [ 137.636719, 56.170023 ], [ 137.460938, 56.170023 ], [ 137.460938, 56.072035 ], [ 137.285156, 56.072035 ], [ 137.285156, 55.973798 ], [ 137.109375, 55.973798 ], [ 137.109375, 55.776573 ], [ 136.933594, 55.776573 ], [ 136.933594, 55.677584 ], [ 136.757812, 55.677584 ], [ 136.757812, 55.578345 ], [ 136.582031, 55.578345 ], [ 136.582031, 55.478853 ], [ 136.406250, 55.478853 ], [ 136.406250, 55.379110 ], [ 136.230469, 55.379110 ], [ 136.230469, 55.279115 ], [ 136.054688, 55.279115 ], [ 136.054688, 55.178868 ], [ 135.878906, 55.178868 ], [ 135.878906, 55.078367 ], [ 135.703125, 55.078367 ], [ 135.703125, 54.977614 ], [ 135.527344, 54.977614 ], [ 135.527344, 54.876607 ], [ 135.351562, 54.876607 ], [ 135.351562, 54.775346 ], [ 135.527344, 54.775346 ], [ 135.527344, 54.673831 ], [ 136.230469, 54.673831 ], [ 136.230469, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.367759 ], [ 136.933594, 54.367759 ], [ 136.933594, 54.059388 ], [ 137.109375, 54.059388 ], [ 137.109375, 53.956086 ], [ 137.285156, 53.956086 ], [ 137.285156, 53.852527 ], [ 137.812500, 53.852527 ], [ 137.812500, 53.748711 ], [ 138.339844, 53.748711 ], [ 138.339844, 53.852527 ], [ 138.515625, 53.852527 ], [ 138.515625, 54.059388 ], [ 138.691406, 54.059388 ], [ 138.691406, 54.162434 ], [ 138.867188, 54.162434 ], [ 138.867188, 54.265224 ], [ 139.218750, 54.265224 ], [ 139.218750, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 54.059388 ], [ 140.097656, 54.059388 ], [ 140.097656, 53.956086 ], [ 140.273438, 53.956086 ], [ 140.273438, 53.748711 ], [ 140.449219, 53.748711 ], [ 140.449219, 53.644638 ], [ 140.625000, 53.644638 ], [ 140.625000, 53.540307 ], [ 140.800781, 53.540307 ], [ 140.800781, 53.435719 ], [ 140.976562, 53.435719 ], [ 140.976562, 53.225768 ], [ 141.152344, 53.225768 ], [ 141.152344, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.052490 ], [ 141.152344, 52.052490 ], [ 141.152344, 51.835778 ], [ 140.976562, 51.835778 ], [ 140.976562, 51.618017 ], [ 140.800781, 51.618017 ], [ 140.800781, 51.399206 ], [ 140.625000, 51.399206 ], [ 140.625000, 50.625073 ], [ 140.449219, 50.625073 ], [ 140.449219, 49.610710 ], [ 140.273438, 49.610710 ], [ 140.273438, 48.806863 ], [ 140.097656, 48.806863 ], [ 140.097656, 48.341646 ], [ 139.921875, 48.341646 ], [ 139.921875, 48.224673 ], [ 139.746094, 48.224673 ], [ 139.746094, 47.989922 ], [ 139.570312, 47.989922 ], [ 139.570312, 47.872144 ], [ 139.394531, 47.872144 ], [ 139.394531, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.517201 ], [ 139.042969, 47.517201 ], [ 139.042969, 47.398349 ], [ 138.867188, 47.398349 ], [ 138.867188, 47.279229 ], [ 138.691406, 47.279229 ], [ 138.691406, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.800059 ], [ 138.339844, 46.800059 ], [ 138.339844, 46.437857 ], [ 138.164062, 46.437857 ], [ 138.164062, 46.195042 ], [ 137.988281, 46.195042 ], [ 137.988281, 45.951150 ], [ 137.812500, 45.951150 ], [ 137.812500, 45.828799 ], [ 137.636719, 45.828799 ], [ 137.636719, 45.706179 ], [ 137.460938, 45.706179 ], [ 137.460938, 45.460131 ], [ 137.285156, 45.460131 ], [ 137.285156, 45.336702 ], [ 137.109375, 45.336702 ], [ 137.109375, 45.089036 ], [ 136.933594, 45.089036 ], [ 136.933594, 44.964798 ], [ 136.757812, 44.964798 ], [ 136.757812, 44.840291 ], [ 136.582031, 44.840291 ], [ 136.582031, 44.715514 ], [ 136.406250, 44.715514 ], [ 136.406250, 44.590467 ], [ 136.230469, 44.590467 ], [ 136.230469, 44.339565 ], [ 136.054688, 44.339565 ], [ 136.054688, 44.213710 ], [ 135.878906, 44.213710 ], [ 135.878906, 44.087585 ], [ 135.703125, 44.087585 ], [ 135.703125, 43.961191 ], [ 135.527344, 43.961191 ], [ 135.527344, 43.834527 ], [ 135.351562, 43.834527 ], [ 135.351562, 43.707594 ], [ 135.175781, 43.707594 ], [ 135.175781, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.648438, 43.325178 ], [ 134.648438, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 134.121094, 43.068888 ], [ 134.121094, 47.279229 ], [ 134.296875, 47.279229 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 47.989922 ], [ 134.824219, 47.989922 ], [ 134.824219, 48.224673 ], [ 135.000000, 48.224673 ], [ 135.000000, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 48.341646 ], [ 134.121094, 48.341646 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ], [ 180.878906, 66.861082 ], [ 180.878906, 65.946472 ], [ 180.527344, 65.946472 ], [ 180.527344, 65.874725 ], [ 180.175781, 65.874725 ], [ 180.175781, 65.730626 ], [ 180.351562, 65.730626 ], [ 180.351562, 65.512963 ], [ 180.527344, 65.512963 ], [ 180.527344, 65.366837 ], [ 180.351562, 65.366837 ], [ 180.351562, 65.219894 ], [ 180.175781, 65.219894 ], [ 180.175781, 65.072130 ], [ 180.000000, 65.072130 ] ] ], [ [ [ 142.734375, 54.367759 ], [ 142.734375, 54.059388 ], [ 142.910156, 54.059388 ], [ 142.910156, 53.435719 ], [ 143.085938, 53.435719 ], [ 143.085938, 52.908902 ], [ 143.261719, 52.908902 ], [ 143.261719, 51.399206 ], [ 143.437500, 51.399206 ], [ 143.437500, 50.958427 ], [ 143.613281, 50.958427 ], [ 143.613281, 50.513427 ], [ 143.789062, 50.513427 ], [ 143.789062, 50.289339 ], [ 143.964844, 50.289339 ], [ 143.964844, 49.951220 ], [ 144.140625, 49.951220 ], [ 144.140625, 49.610710 ], [ 144.316406, 49.610710 ], [ 144.316406, 49.382373 ], [ 144.492188, 49.382373 ], [ 144.492188, 49.037868 ], [ 144.667969, 49.037868 ], [ 144.667969, 48.922499 ], [ 144.316406, 48.922499 ], [ 144.316406, 49.037868 ], [ 143.789062, 49.037868 ], [ 143.789062, 49.152970 ], [ 143.437500, 49.152970 ], [ 143.437500, 49.267805 ], [ 143.261719, 49.267805 ], [ 143.261719, 49.037868 ], [ 143.085938, 49.037868 ], [ 143.085938, 48.690960 ], [ 142.910156, 48.690960 ], [ 142.910156, 48.341646 ], [ 142.734375, 48.341646 ], [ 142.734375, 47.989922 ], [ 142.558594, 47.989922 ], [ 142.558594, 47.754098 ], [ 142.734375, 47.754098 ], [ 142.734375, 47.517201 ], [ 142.910156, 47.517201 ], [ 142.910156, 47.398349 ], [ 143.085938, 47.398349 ], [ 143.085938, 47.159840 ], [ 143.261719, 47.159840 ], [ 143.261719, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.800059 ], [ 143.613281, 46.800059 ], [ 143.613281, 46.437857 ], [ 143.437500, 46.437857 ], [ 143.437500, 46.195042 ], [ 143.261719, 46.195042 ], [ 143.261719, 46.316584 ], [ 143.085938, 46.316584 ], [ 143.085938, 46.558860 ], [ 142.910156, 46.558860 ], [ 142.910156, 46.679594 ], [ 142.558594, 46.679594 ], [ 142.558594, 46.437857 ], [ 142.382812, 46.437857 ], [ 142.382812, 46.195042 ], [ 142.207031, 46.195042 ], [ 142.207031, 45.951150 ], [ 142.031250, 45.951150 ], [ 142.031250, 46.316584 ], [ 141.855469, 46.316584 ], [ 141.855469, 47.279229 ], [ 142.031250, 47.279229 ], [ 142.031250, 48.224673 ], [ 141.855469, 48.224673 ], [ 141.855469, 48.922499 ], [ 142.031250, 48.922499 ], [ 142.031250, 49.382373 ], [ 142.207031, 49.382373 ], [ 142.207031, 51.069017 ], [ 142.031250, 51.069017 ], [ 142.031250, 51.399206 ], [ 141.855469, 51.399206 ], [ 141.855469, 51.727028 ], [ 141.679688, 51.727028 ], [ 141.679688, 53.330873 ], [ 141.855469, 53.330873 ], [ 141.855469, 53.435719 ], [ 142.031250, 53.435719 ], [ 142.031250, 53.540307 ], [ 142.382812, 53.540307 ], [ 142.382812, 53.644638 ], [ 142.558594, 53.644638 ], [ 142.558594, 53.852527 ], [ 142.382812, 53.852527 ], [ 142.382812, 54.059388 ], [ 142.207031, 54.059388 ], [ 142.207031, 54.265224 ], [ 142.558594, 54.265224 ], [ 142.558594, 54.367759 ], [ 142.734375, 54.367759 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 66.861082 ], [ 180.878906, 66.861082 ], [ 180.878906, 66.018018 ], [ 180.527344, 66.018018 ], [ 180.527344, 65.946472 ], [ 180.175781, 65.946472 ], [ 180.175781, 65.874725 ], [ 180.000000, 65.874725 ], [ 180.000000, 65.802776 ], [ 180.175781, 65.802776 ], [ 180.175781, 65.658275 ], [ 180.351562, 65.658275 ], [ 180.351562, 65.512963 ], [ 180.527344, 65.512963 ], [ 180.527344, 65.366837 ], [ 180.351562, 65.366837 ], [ 180.351562, 65.219894 ], [ 180.175781, 65.219894 ], [ 180.175781, 65.072130 ], [ 180.000000, 65.072130 ], [ 180.000000, 64.997939 ], [ 179.824219, 64.997939 ], [ 179.824219, 64.923542 ], [ 179.648438, 64.923542 ], [ 179.648438, 64.848937 ], [ 179.472656, 64.848937 ], [ 179.472656, 64.774125 ], [ 179.121094, 64.774125 ], [ 179.121094, 64.699105 ], [ 178.945312, 64.699105 ], [ 178.945312, 64.623877 ], [ 178.769531, 64.623877 ], [ 178.769531, 64.548440 ], [ 177.890625, 64.548440 ], [ 177.890625, 64.623877 ], [ 177.363281, 64.623877 ], [ 177.363281, 64.548440 ], [ 177.539062, 64.548440 ], [ 177.539062, 64.396938 ], [ 177.714844, 64.396938 ], [ 177.714844, 64.320872 ], [ 177.890625, 64.320872 ], [ 177.890625, 64.244595 ], [ 178.066406, 64.244595 ], [ 178.066406, 64.091408 ], [ 178.242188, 64.091408 ], [ 178.242188, 63.937372 ], [ 178.417969, 63.937372 ], [ 178.417969, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.391522 ], [ 178.769531, 63.391522 ], [ 178.769531, 63.233627 ], [ 178.945312, 63.233627 ], [ 178.945312, 63.154355 ], [ 179.121094, 63.154355 ], [ 179.121094, 62.995158 ], [ 179.296875, 62.995158 ], [ 179.296875, 62.754726 ], [ 179.472656, 62.754726 ], [ 179.472656, 62.512318 ], [ 179.296875, 62.512318 ], [ 179.296875, 62.349609 ], [ 178.769531, 62.349609 ], [ 178.769531, 62.431074 ], [ 178.066406, 62.431074 ], [ 178.066406, 62.512318 ], [ 177.539062, 62.512318 ], [ 177.539062, 62.593341 ], [ 177.363281, 62.593341 ], [ 177.363281, 62.512318 ], [ 177.011719, 62.512318 ], [ 177.011719, 62.431074 ], [ 176.835938, 62.431074 ], [ 176.835938, 62.349609 ], [ 176.484375, 62.349609 ], [ 176.484375, 62.267923 ], [ 176.132812, 62.267923 ], [ 176.132812, 62.186014 ], [ 175.957031, 62.186014 ], [ 175.957031, 62.103883 ], [ 175.605469, 62.103883 ], [ 175.605469, 62.021528 ], [ 175.429688, 62.021528 ], [ 175.429688, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.856149 ], [ 174.726562, 61.856149 ], [ 174.726562, 61.773123 ], [ 174.199219, 61.773123 ], [ 174.199219, 61.689872 ], [ 173.671875, 61.689872 ], [ 173.671875, 61.606396 ], [ 173.496094, 61.606396 ], [ 173.496094, 61.522695 ], [ 173.320312, 61.522695 ], [ 173.320312, 61.438767 ], [ 173.144531, 61.438767 ], [ 173.144531, 61.354614 ], [ 172.792969, 61.354614 ], [ 172.792969, 61.270233 ], [ 172.617188, 61.270233 ], [ 172.617188, 61.185625 ], [ 172.441406, 61.185625 ], [ 172.441406, 61.100789 ], [ 172.265625, 61.100789 ], [ 172.265625, 61.015725 ], [ 172.089844, 61.015725 ], [ 172.089844, 60.930432 ], [ 171.914062, 60.930432 ], [ 171.914062, 60.844911 ], [ 171.738281, 60.844911 ], [ 171.738281, 60.759160 ], [ 171.562500, 60.759160 ], [ 171.562500, 60.673179 ], [ 171.210938, 60.673179 ], [ 171.210938, 60.586967 ], [ 171.035156, 60.586967 ], [ 171.035156, 60.500525 ], [ 170.859375, 60.500525 ], [ 170.859375, 60.413852 ], [ 170.683594, 60.413852 ], [ 170.683594, 60.239811 ], [ 170.507812, 60.239811 ], [ 170.507812, 59.977005 ], [ 170.332031, 59.977005 ], [ 170.332031, 59.888937 ], [ 170.156250, 59.888937 ], [ 170.156250, 59.977005 ], [ 169.980469, 59.977005 ], [ 169.980469, 60.064840 ], [ 169.804688, 60.064840 ], [ 169.804688, 60.152442 ], [ 169.628906, 60.152442 ], [ 169.628906, 60.239811 ], [ 169.277344, 60.239811 ], [ 169.277344, 60.326948 ], [ 169.101562, 60.326948 ], [ 169.101562, 60.413852 ], [ 168.925781, 60.413852 ], [ 168.925781, 60.500525 ], [ 168.398438, 60.500525 ], [ 168.398438, 60.413852 ], [ 168.222656, 60.413852 ], [ 168.222656, 60.326948 ], [ 167.871094, 60.326948 ], [ 167.871094, 60.239811 ], [ 167.695312, 60.239811 ], [ 167.695312, 60.152442 ], [ 167.343750, 60.152442 ], [ 167.343750, 60.064840 ], [ 166.992188, 60.064840 ], [ 166.992188, 59.977005 ], [ 166.816406, 59.977005 ], [ 166.816406, 59.888937 ], [ 166.464844, 59.888937 ], [ 166.464844, 59.800634 ], [ 166.113281, 59.800634 ], [ 166.113281, 59.977005 ], [ 165.937500, 59.977005 ], [ 165.937500, 60.152442 ], [ 165.585938, 60.152442 ], [ 165.585938, 60.064840 ], [ 165.410156, 60.064840 ], [ 165.410156, 59.977005 ], [ 165.058594, 59.977005 ], [ 165.058594, 59.888937 ], [ 164.882812, 59.888937 ], [ 164.882812, 59.800634 ], [ 164.003906, 59.800634 ], [ 164.003906, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.712097 ], [ 163.300781, 59.712097 ], [ 163.300781, 59.355596 ], [ 163.125000, 59.355596 ], [ 163.125000, 59.175928 ], [ 162.949219, 59.175928 ], [ 162.949219, 58.995311 ], [ 162.773438, 58.995311 ], [ 162.773438, 58.904646 ], [ 162.597656, 58.904646 ], [ 162.597656, 58.722599 ], [ 162.421875, 58.722599 ], [ 162.421875, 58.539595 ], [ 162.246094, 58.539595 ], [ 162.246094, 58.447733 ], [ 162.070312, 58.447733 ], [ 162.070312, 58.263287 ], [ 161.894531, 58.263287 ], [ 161.894531, 57.891497 ], [ 162.070312, 57.891497 ], [ 162.070312, 57.797944 ], [ 162.773438, 57.797944 ], [ 162.773438, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.944974 ], [ 162.949219, 56.944974 ], [ 162.949219, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.973798 ], [ 161.894531, 55.973798 ], [ 161.894531, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 55.478853 ], [ 161.542969, 55.478853 ], [ 161.542969, 55.279115 ], [ 161.718750, 55.279115 ], [ 161.718750, 55.078367 ], [ 161.894531, 55.078367 ], [ 161.894531, 54.876607 ], [ 162.070312, 54.876607 ], [ 162.070312, 54.775346 ], [ 161.718750, 54.775346 ], [ 161.718750, 54.673831 ], [ 161.367188, 54.673831 ], [ 161.367188, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.470038 ], [ 160.664062, 54.470038 ], [ 160.664062, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 54.059388 ], [ 160.136719, 54.059388 ], [ 160.136719, 53.435719 ], [ 159.960938, 53.435719 ], [ 159.960938, 53.225768 ], [ 159.609375, 53.225768 ], [ 159.609375, 53.120405 ], [ 158.906250, 53.120405 ], [ 158.906250, 53.014783 ], [ 158.378906, 53.014783 ], [ 158.378906, 52.482780 ], [ 158.203125, 52.482780 ], [ 158.203125, 51.835778 ], [ 158.027344, 51.835778 ], [ 158.027344, 51.727028 ], [ 157.851562, 51.727028 ], [ 157.851562, 51.618017 ], [ 157.675781, 51.618017 ], [ 157.675781, 51.508742 ], [ 157.324219, 51.508742 ], [ 157.324219, 51.399206 ], [ 157.148438, 51.399206 ], [ 157.148438, 51.289406 ], [ 156.972656, 51.289406 ], [ 156.972656, 51.179343 ], [ 156.796875, 51.179343 ], [ 156.796875, 51.069017 ], [ 156.621094, 51.069017 ], [ 156.621094, 51.179343 ], [ 156.445312, 51.179343 ], [ 156.445312, 51.508742 ], [ 156.269531, 51.508742 ], [ 156.269531, 52.052490 ], [ 156.093750, 52.052490 ], [ 156.093750, 52.802761 ], [ 155.917969, 52.802761 ], [ 155.917969, 53.540307 ], [ 155.742188, 53.540307 ], [ 155.742188, 54.367759 ], [ 155.566406, 54.367759 ], [ 155.566406, 55.078367 ], [ 155.390625, 55.078367 ], [ 155.390625, 55.776573 ], [ 155.566406, 55.776573 ], [ 155.566406, 56.462490 ], [ 155.742188, 56.462490 ], [ 155.742188, 56.848972 ], [ 155.917969, 56.848972 ], [ 155.917969, 56.944974 ], [ 156.093750, 56.944974 ], [ 156.093750, 57.136239 ], [ 156.269531, 57.136239 ], [ 156.269531, 57.231503 ], [ 156.445312, 57.231503 ], [ 156.445312, 57.326521 ], [ 156.621094, 57.326521 ], [ 156.621094, 57.610107 ], [ 156.796875, 57.610107 ], [ 156.796875, 57.891497 ], [ 157.324219, 57.891497 ], [ 157.324219, 57.984808 ], [ 158.027344, 57.984808 ], [ 158.027344, 58.077876 ], [ 158.378906, 58.077876 ], [ 158.378906, 58.170702 ], [ 158.554688, 58.170702 ], [ 158.554688, 58.355630 ], [ 158.730469, 58.355630 ], [ 158.730469, 58.447733 ], [ 158.906250, 58.447733 ], [ 158.906250, 58.539595 ], [ 159.082031, 58.539595 ], [ 159.082031, 58.722599 ], [ 159.257812, 58.722599 ], [ 159.257812, 58.813742 ], [ 159.433594, 58.813742 ], [ 159.433594, 58.904646 ], [ 159.609375, 58.904646 ], [ 159.609375, 58.995311 ], [ 159.785156, 58.995311 ], [ 159.785156, 59.175928 ], [ 159.960938, 59.175928 ], [ 159.960938, 59.265881 ], [ 160.136719, 59.265881 ], [ 160.136719, 59.355596 ], [ 160.312500, 59.355596 ], [ 160.312500, 59.534318 ], [ 160.488281, 59.534318 ], [ 160.488281, 59.623325 ], [ 160.664062, 59.623325 ], [ 160.664062, 59.712097 ], [ 160.839844, 59.712097 ], [ 160.839844, 59.888937 ], [ 161.015625, 59.888937 ], [ 161.015625, 59.977005 ], [ 161.191406, 59.977005 ], [ 161.191406, 60.064840 ], [ 161.367188, 60.064840 ], [ 161.367188, 60.239811 ], [ 161.542969, 60.239811 ], [ 161.542969, 60.326948 ], [ 161.718750, 60.326948 ], [ 161.718750, 60.413852 ], [ 161.894531, 60.413852 ], [ 161.894531, 60.500525 ], [ 162.070312, 60.500525 ], [ 162.070312, 60.586967 ], [ 162.421875, 60.586967 ], [ 162.421875, 60.673179 ], [ 162.597656, 60.673179 ], [ 162.597656, 60.759160 ], [ 162.773438, 60.759160 ], [ 162.773438, 60.844911 ], [ 162.949219, 60.844911 ], [ 162.949219, 60.930432 ], [ 163.125000, 60.930432 ], [ 163.125000, 61.015725 ], [ 163.476562, 61.015725 ], [ 163.476562, 61.100789 ], [ 163.652344, 61.100789 ], [ 163.652344, 61.354614 ], [ 163.828125, 61.354614 ], [ 163.828125, 61.689872 ], [ 164.003906, 61.689872 ], [ 164.003906, 62.021528 ], [ 164.179688, 62.021528 ], [ 164.179688, 62.349609 ], [ 164.355469, 62.349609 ], [ 164.355469, 62.593341 ], [ 163.828125, 62.593341 ], [ 163.828125, 62.512318 ], [ 163.125000, 62.512318 ], [ 163.125000, 62.349609 ], [ 162.949219, 62.349609 ], [ 162.949219, 62.103883 ], [ 162.773438, 62.103883 ], [ 162.773438, 61.773123 ], [ 162.597656, 61.773123 ], [ 162.597656, 61.606396 ], [ 162.421875, 61.606396 ], [ 162.421875, 61.522695 ], [ 162.246094, 61.522695 ], [ 162.246094, 61.438767 ], [ 161.894531, 61.438767 ], [ 161.894531, 61.354614 ], [ 161.718750, 61.354614 ], [ 161.718750, 61.270233 ], [ 161.542969, 61.270233 ], [ 161.542969, 61.185625 ], [ 161.367188, 61.185625 ], [ 161.367188, 61.100789 ], [ 161.191406, 61.100789 ], [ 161.191406, 61.015725 ], [ 161.015625, 61.015725 ], [ 161.015625, 60.930432 ], [ 160.839844, 60.930432 ], [ 160.839844, 60.844911 ], [ 160.488281, 60.844911 ], [ 160.488281, 60.759160 ], [ 160.312500, 60.759160 ], [ 160.312500, 60.673179 ], [ 160.136719, 60.673179 ], [ 160.136719, 60.586967 ], [ 159.960938, 60.586967 ], [ 159.960938, 60.673179 ], [ 159.785156, 60.673179 ], [ 159.785156, 61.015725 ], [ 159.609375, 61.015725 ], [ 159.609375, 61.270233 ], [ 159.433594, 61.270233 ], [ 159.433594, 61.606396 ], [ 159.257812, 61.606396 ], [ 159.257812, 61.773123 ], [ 159.082031, 61.773123 ], [ 159.082031, 61.689872 ], [ 158.378906, 61.689872 ], [ 158.378906, 61.606396 ], [ 157.675781, 61.606396 ], [ 157.675781, 61.522695 ], [ 156.972656, 61.522695 ], [ 156.972656, 61.438767 ], [ 156.621094, 61.438767 ], [ 156.621094, 61.354614 ], [ 156.445312, 61.354614 ], [ 156.445312, 61.185625 ], [ 156.269531, 61.185625 ], [ 156.269531, 61.100789 ], [ 156.093750, 61.100789 ], [ 156.093750, 61.015725 ], [ 155.917969, 61.015725 ], [ 155.917969, 60.844911 ], [ 155.742188, 60.844911 ], [ 155.742188, 60.759160 ], [ 155.566406, 60.759160 ], [ 155.566406, 60.673179 ], [ 155.390625, 60.673179 ], [ 155.390625, 60.500525 ], [ 155.214844, 60.500525 ], [ 155.214844, 60.413852 ], [ 155.039062, 60.413852 ], [ 155.039062, 60.326948 ], [ 154.863281, 60.326948 ], [ 154.863281, 60.152442 ], [ 154.687500, 60.152442 ], [ 154.687500, 60.064840 ], [ 154.511719, 60.064840 ], [ 154.511719, 59.977005 ], [ 154.335938, 59.977005 ], [ 154.335938, 59.800634 ], [ 154.160156, 59.800634 ], [ 154.160156, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.511719, 59.534318 ], [ 154.511719, 59.445075 ], [ 154.687500, 59.445075 ], [ 154.687500, 59.355596 ], [ 154.863281, 59.355596 ], [ 154.863281, 59.175928 ], [ 154.687500, 59.175928 ], [ 154.687500, 59.085739 ], [ 153.984375, 59.085739 ], [ 153.984375, 58.995311 ], [ 153.281250, 58.995311 ], [ 153.281250, 58.904646 ], [ 152.050781, 58.904646 ], [ 152.050781, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 150.644531, 59.534318 ], [ 150.644531, 59.623325 ], [ 149.941406, 59.623325 ], [ 149.941406, 59.712097 ], [ 149.765625, 59.712097 ], [ 149.765625, 59.623325 ], [ 149.589844, 59.623325 ], [ 149.589844, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.445075 ], [ 149.062500, 59.445075 ], [ 149.062500, 59.355596 ], [ 148.886719, 59.355596 ], [ 148.886719, 59.265881 ], [ 148.710938, 59.265881 ], [ 148.710938, 59.175928 ], [ 147.656250, 59.175928 ], [ 147.656250, 59.265881 ], [ 146.074219, 59.265881 ], [ 146.074219, 59.355596 ], [ 144.843750, 59.355596 ], [ 144.843750, 59.265881 ], [ 143.789062, 59.265881 ], [ 143.789062, 59.175928 ], [ 142.734375, 59.175928 ], [ 142.734375, 59.085739 ], [ 142.031250, 59.085739 ], [ 142.031250, 58.995311 ], [ 141.855469, 58.995311 ], [ 141.855469, 58.904646 ], [ 141.679688, 58.904646 ], [ 141.679688, 58.813742 ], [ 141.503906, 58.813742 ], [ 141.503906, 58.631217 ], [ 141.328125, 58.631217 ], [ 141.328125, 58.539595 ], [ 141.152344, 58.539595 ], [ 141.152344, 58.447733 ], [ 140.976562, 58.447733 ], [ 140.976562, 58.355630 ], [ 140.800781, 58.355630 ], [ 140.800781, 58.263287 ], [ 140.625000, 58.263287 ], [ 140.625000, 58.170702 ], [ 140.449219, 58.170702 ], [ 140.449219, 57.984808 ], [ 140.273438, 57.984808 ], [ 140.273438, 57.891497 ], [ 140.097656, 57.891497 ], [ 140.097656, 57.797944 ], [ 139.921875, 57.797944 ], [ 139.921875, 57.704147 ], [ 139.746094, 57.704147 ], [ 139.746094, 57.610107 ], [ 139.570312, 57.610107 ], [ 139.570312, 57.515823 ], [ 139.394531, 57.515823 ], [ 139.394531, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 57.231503 ], [ 139.042969, 57.231503 ], [ 139.042969, 57.136239 ], [ 138.867188, 57.136239 ], [ 138.867188, 57.040730 ], [ 138.691406, 57.040730 ], [ 138.691406, 56.944974 ], [ 138.515625, 56.944974 ], [ 138.515625, 56.848972 ], [ 138.339844, 56.848972 ], [ 138.339844, 56.752723 ], [ 138.164062, 56.752723 ], [ 138.164062, 56.656226 ], [ 137.988281, 56.656226 ], [ 137.988281, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 56.365250 ], [ 137.636719, 56.365250 ], [ 137.636719, 56.267761 ], [ 137.460938, 56.267761 ], [ 137.460938, 56.170023 ], [ 137.285156, 56.170023 ], [ 137.285156, 56.072035 ], [ 137.109375, 56.072035 ], [ 137.109375, 55.973798 ], [ 136.933594, 55.973798 ], [ 136.933594, 55.875311 ], [ 136.757812, 55.875311 ], [ 136.757812, 55.776573 ], [ 136.582031, 55.776573 ], [ 136.582031, 55.677584 ], [ 136.406250, 55.677584 ], [ 136.406250, 55.578345 ], [ 136.230469, 55.578345 ], [ 136.230469, 55.478853 ], [ 136.054688, 55.478853 ], [ 136.054688, 55.379110 ], [ 135.878906, 55.379110 ], [ 135.878906, 55.178868 ], [ 135.703125, 55.178868 ], [ 135.703125, 55.078367 ], [ 135.527344, 55.078367 ], [ 135.527344, 54.977614 ], [ 135.351562, 54.977614 ], [ 135.351562, 54.876607 ], [ 135.175781, 54.876607 ], [ 135.175781, 54.775346 ], [ 135.703125, 54.775346 ], [ 135.703125, 54.673831 ], [ 136.582031, 54.673831 ], [ 136.582031, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.367759 ], [ 136.933594, 54.367759 ], [ 136.933594, 54.162434 ], [ 137.109375, 54.162434 ], [ 137.109375, 54.059388 ], [ 137.285156, 54.059388 ], [ 137.285156, 53.956086 ], [ 137.812500, 53.956086 ], [ 137.812500, 53.852527 ], [ 138.339844, 53.852527 ], [ 138.339844, 54.059388 ], [ 138.515625, 54.059388 ], [ 138.515625, 54.162434 ], [ 138.691406, 54.162434 ], [ 138.691406, 54.265224 ], [ 139.746094, 54.265224 ], [ 139.746094, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 54.059388 ], [ 140.097656, 54.059388 ], [ 140.097656, 53.852527 ], [ 140.273438, 53.852527 ], [ 140.273438, 53.748711 ], [ 140.449219, 53.748711 ], [ 140.449219, 53.644638 ], [ 140.625000, 53.644638 ], [ 140.625000, 53.540307 ], [ 140.800781, 53.540307 ], [ 140.800781, 53.435719 ], [ 140.976562, 53.435719 ], [ 140.976562, 53.225768 ], [ 141.152344, 53.225768 ], [ 141.152344, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.160455 ], [ 141.152344, 52.160455 ], [ 141.152344, 51.944265 ], [ 140.976562, 51.944265 ], [ 140.976562, 51.727028 ], [ 140.800781, 51.727028 ], [ 140.800781, 51.508742 ], [ 140.625000, 51.508742 ], [ 140.625000, 51.289406 ], [ 140.449219, 51.289406 ], [ 140.449219, 49.724479 ], [ 140.273438, 49.724479 ], [ 140.273438, 49.267805 ], [ 140.097656, 49.267805 ], [ 140.097656, 48.690960 ], [ 139.921875, 48.690960 ], [ 139.921875, 48.341646 ], [ 139.746094, 48.341646 ], [ 139.746094, 48.107431 ], [ 139.570312, 48.107431 ], [ 139.570312, 47.989922 ], [ 139.394531, 47.989922 ], [ 139.394531, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.635784 ], [ 139.042969, 47.635784 ], [ 139.042969, 47.398349 ], [ 138.867188, 47.398349 ], [ 138.867188, 47.279229 ], [ 138.691406, 47.279229 ], [ 138.691406, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.800059 ], [ 138.339844, 46.800059 ], [ 138.339844, 46.437857 ], [ 138.164062, 46.437857 ], [ 138.164062, 46.195042 ], [ 137.988281, 46.195042 ], [ 137.988281, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.951150 ], [ 137.636719, 45.951150 ], [ 137.636719, 45.828799 ], [ 137.460938, 45.828799 ], [ 137.460938, 45.583290 ], [ 137.285156, 45.583290 ], [ 137.285156, 45.460131 ], [ 137.109375, 45.460131 ], [ 137.109375, 45.336702 ], [ 136.933594, 45.336702 ], [ 136.933594, 45.213004 ], [ 136.757812, 45.213004 ], [ 136.757812, 45.089036 ], [ 136.582031, 45.089036 ], [ 136.582031, 44.964798 ], [ 136.406250, 44.964798 ], [ 136.406250, 44.840291 ], [ 136.230469, 44.840291 ], [ 136.230469, 44.715514 ], [ 136.054688, 44.715514 ], [ 136.054688, 44.465151 ], [ 135.878906, 44.465151 ], [ 135.878906, 44.339565 ], [ 135.703125, 44.339565 ], [ 135.703125, 44.213710 ], [ 135.527344, 44.213710 ], [ 135.527344, 44.087585 ], [ 135.351562, 44.087585 ], [ 135.351562, 43.961191 ], [ 135.175781, 43.961191 ], [ 135.175781, 43.707594 ], [ 135.000000, 43.707594 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.648438, 43.325178 ], [ 134.648438, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 134.121094, 43.068888 ], [ 134.121094, 47.279229 ], [ 134.296875, 47.279229 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 48.107431 ], [ 134.824219, 48.107431 ], [ 134.824219, 48.341646 ], [ 135.000000, 48.341646 ], [ 135.000000, 48.574790 ], [ 134.824219, 48.574790 ], [ 134.824219, 48.458352 ], [ 134.472656, 48.458352 ], [ 134.472656, 48.341646 ], [ 134.121094, 48.341646 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ] ] ], [ [ [ 142.558594, 54.265224 ], [ 142.558594, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 53.852527 ], [ 142.910156, 53.852527 ], [ 142.910156, 53.435719 ], [ 143.085938, 53.435719 ], [ 143.085938, 53.014783 ], [ 143.261719, 53.014783 ], [ 143.261719, 52.268157 ], [ 143.085938, 52.268157 ], [ 143.085938, 51.618017 ], [ 143.261719, 51.618017 ], [ 143.261719, 51.289406 ], [ 143.437500, 51.289406 ], [ 143.437500, 50.958427 ], [ 143.613281, 50.958427 ], [ 143.613281, 50.625073 ], [ 143.789062, 50.625073 ], [ 143.789062, 50.289339 ], [ 143.964844, 50.289339 ], [ 143.964844, 49.951220 ], [ 144.140625, 49.951220 ], [ 144.140625, 49.496675 ], [ 144.316406, 49.496675 ], [ 144.316406, 49.152970 ], [ 144.492188, 49.152970 ], [ 144.492188, 49.037868 ], [ 144.140625, 49.037868 ], [ 144.140625, 49.152970 ], [ 143.613281, 49.152970 ], [ 143.613281, 49.267805 ], [ 143.261719, 49.267805 ], [ 143.261719, 49.382373 ], [ 143.085938, 49.382373 ], [ 143.085938, 49.037868 ], [ 142.910156, 49.037868 ], [ 142.910156, 48.574790 ], [ 142.734375, 48.574790 ], [ 142.734375, 48.107431 ], [ 142.558594, 48.107431 ], [ 142.558594, 47.754098 ], [ 142.734375, 47.754098 ], [ 142.734375, 47.517201 ], [ 142.910156, 47.517201 ], [ 142.910156, 47.398349 ], [ 143.085938, 47.398349 ], [ 143.085938, 47.159840 ], [ 143.261719, 47.159840 ], [ 143.261719, 46.920255 ], [ 143.437500, 46.920255 ], [ 143.437500, 46.195042 ], [ 143.261719, 46.195042 ], [ 143.261719, 46.316584 ], [ 143.085938, 46.316584 ], [ 143.085938, 46.558860 ], [ 142.910156, 46.558860 ], [ 142.910156, 46.679594 ], [ 142.558594, 46.679594 ], [ 142.558594, 46.437857 ], [ 142.382812, 46.437857 ], [ 142.382812, 46.316584 ], [ 142.207031, 46.316584 ], [ 142.207031, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 46.437857 ], [ 141.855469, 46.437857 ], [ 141.855469, 49.267805 ], [ 142.031250, 49.267805 ], [ 142.031250, 51.069017 ], [ 141.855469, 51.069017 ], [ 141.855469, 51.399206 ], [ 141.679688, 51.399206 ], [ 141.679688, 51.727028 ], [ 141.503906, 51.727028 ], [ 141.503906, 52.589701 ], [ 141.679688, 52.589701 ], [ 141.679688, 53.330873 ], [ 141.855469, 53.330873 ], [ 141.855469, 53.435719 ], [ 142.031250, 53.435719 ], [ 142.031250, 53.540307 ], [ 142.207031, 53.540307 ], [ 142.207031, 53.644638 ], [ 142.382812, 53.644638 ], [ 142.382812, 53.748711 ], [ 142.558594, 53.748711 ], [ 142.558594, 53.956086 ], [ 142.382812, 53.956086 ], [ 142.382812, 54.162434 ], [ 142.207031, 54.162434 ], [ 142.207031, 54.265224 ], [ 142.558594, 54.265224 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.458352 ], [ 135.000000, 48.224673 ], [ 134.824219, 48.224673 ], [ 134.824219, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 48.341646 ], [ 134.648438, 48.341646 ], [ 134.648438, 48.458352 ], [ 135.000000, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.574790 ], [ 135.000000, 48.341646 ], [ 134.824219, 48.341646 ], [ 134.824219, 48.107431 ], [ 134.648438, 48.107431 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 48.341646 ], [ 134.472656, 48.341646 ], [ 134.472656, 48.458352 ], [ 134.824219, 48.458352 ], [ 134.824219, 48.574790 ], [ 135.000000, 48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.847060 ], [ 141.679688, 40.847060 ], [ 141.679688, 40.446947 ], [ 141.855469, 40.446947 ], [ 141.855469, 40.313043 ], [ 139.921875, 40.313043 ], [ 139.921875, 40.713956 ], [ 140.097656, 40.713956 ], [ 140.097656, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 142.207031, 45.460131 ], [ 142.207031, 45.213004 ], [ 142.382812, 45.213004 ], [ 142.382812, 45.089036 ], [ 142.558594, 45.089036 ], [ 142.558594, 44.840291 ], [ 142.734375, 44.840291 ], [ 142.734375, 44.715514 ], [ 142.910156, 44.715514 ], [ 142.910156, 44.465151 ], [ 143.261719, 44.465151 ], [ 143.261719, 44.339565 ], [ 143.613281, 44.339565 ], [ 143.613281, 44.213710 ], [ 143.964844, 44.213710 ], [ 143.964844, 44.087585 ], [ 144.316406, 44.087585 ], [ 144.316406, 43.961191 ], [ 144.843750, 43.961191 ], [ 144.843750, 44.087585 ], [ 145.195312, 44.087585 ], [ 145.195312, 44.213710 ], [ 145.371094, 44.213710 ], [ 145.371094, 43.834527 ], [ 145.546875, 43.834527 ], [ 145.546875, 43.325178 ], [ 145.371094, 43.325178 ], [ 145.371094, 43.197167 ], [ 145.019531, 43.197167 ], [ 145.019531, 43.068888 ], [ 144.492188, 43.068888 ], [ 144.492188, 42.940339 ], [ 144.140625, 42.940339 ], [ 144.140625, 42.811522 ], [ 143.964844, 42.811522 ], [ 143.964844, 42.553080 ], [ 143.789062, 42.553080 ], [ 143.789062, 42.423457 ], [ 143.613281, 42.423457 ], [ 143.613281, 42.293564 ], [ 143.437500, 42.293564 ], [ 143.437500, 42.032974 ], [ 143.085938, 42.032974 ], [ 143.085938, 42.163403 ], [ 142.734375, 42.163403 ], [ 142.734375, 42.293564 ], [ 142.382812, 42.293564 ], [ 142.382812, 42.423457 ], [ 142.031250, 42.423457 ], [ 142.031250, 42.553080 ], [ 141.679688, 42.553080 ], [ 141.679688, 42.423457 ], [ 141.503906, 42.423457 ], [ 141.503906, 42.163403 ], [ 141.328125, 42.163403 ], [ 141.328125, 41.771312 ], [ 141.152344, 41.771312 ], [ 141.152344, 41.640078 ], [ 140.625000, 41.640078 ], [ 140.625000, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.032974 ], [ 139.746094, 42.032974 ], [ 139.746094, 42.682435 ], [ 139.921875, 42.682435 ], [ 139.921875, 42.940339 ], [ 140.097656, 42.940339 ], [ 140.097656, 43.197167 ], [ 140.273438, 43.197167 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 141.328125, 43.580391 ], [ 141.503906, 43.580391 ], [ 141.503906, 44.339565 ], [ 141.679688, 44.339565 ], [ 141.679688, 44.840291 ], [ 141.855469, 44.840291 ], [ 141.855469, 45.336702 ], [ 142.031250, 45.336702 ], [ 142.031250, 45.460131 ], [ 142.207031, 45.460131 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.580585 ], [ 141.679688, 40.580585 ], [ 141.679688, 40.313043 ], [ 139.746094, 40.313043 ], [ 139.746094, 40.580585 ], [ 139.921875, 40.580585 ], [ 139.921875, 40.847060 ], [ 140.097656, 40.847060 ], [ 140.097656, 41.112469 ], [ 140.273438, 41.112469 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 142.031250, 45.460131 ], [ 142.031250, 45.336702 ], [ 142.207031, 45.336702 ], [ 142.207031, 45.213004 ], [ 142.382812, 45.213004 ], [ 142.382812, 45.089036 ], [ 142.558594, 45.089036 ], [ 142.558594, 44.840291 ], [ 142.734375, 44.840291 ], [ 142.734375, 44.715514 ], [ 142.910156, 44.715514 ], [ 142.910156, 44.590467 ], [ 143.085938, 44.590467 ], [ 143.085938, 44.465151 ], [ 143.261719, 44.465151 ], [ 143.261719, 44.339565 ], [ 143.613281, 44.339565 ], [ 143.613281, 44.213710 ], [ 143.789062, 44.213710 ], [ 143.789062, 44.087585 ], [ 144.140625, 44.087585 ], [ 144.140625, 43.961191 ], [ 144.667969, 43.961191 ], [ 144.667969, 44.087585 ], [ 144.843750, 44.087585 ], [ 144.843750, 44.213710 ], [ 145.019531, 44.213710 ], [ 145.019531, 44.339565 ], [ 145.195312, 44.339565 ], [ 145.195312, 43.834527 ], [ 145.371094, 43.834527 ], [ 145.371094, 43.325178 ], [ 145.195312, 43.325178 ], [ 145.195312, 43.197167 ], [ 144.492188, 43.197167 ], [ 144.492188, 43.068888 ], [ 143.964844, 43.068888 ], [ 143.964844, 42.940339 ], [ 143.789062, 42.940339 ], [ 143.789062, 42.682435 ], [ 143.613281, 42.682435 ], [ 143.613281, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.293564 ], [ 143.261719, 42.293564 ], [ 143.261719, 42.032974 ], [ 142.910156, 42.032974 ], [ 142.910156, 42.163403 ], [ 142.558594, 42.163403 ], [ 142.558594, 42.293564 ], [ 142.207031, 42.293564 ], [ 142.207031, 42.423457 ], [ 141.855469, 42.423457 ], [ 141.855469, 42.553080 ], [ 141.503906, 42.553080 ], [ 141.503906, 42.423457 ], [ 141.328125, 42.423457 ], [ 141.328125, 42.163403 ], [ 141.152344, 42.163403 ], [ 141.152344, 41.771312 ], [ 140.976562, 41.771312 ], [ 140.976562, 41.640078 ], [ 139.921875, 41.640078 ], [ 139.921875, 42.163403 ], [ 139.746094, 42.163403 ], [ 139.746094, 42.811522 ], [ 139.921875, 42.811522 ], [ 139.921875, 43.068888 ], [ 140.097656, 43.068888 ], [ 140.097656, 43.325178 ], [ 140.273438, 43.325178 ], [ 140.273438, 43.452919 ], [ 141.328125, 43.452919 ], [ 141.328125, 44.087585 ], [ 141.503906, 44.087585 ], [ 141.503906, 44.964798 ], [ 141.679688, 44.964798 ], [ 141.679688, 45.336702 ], [ 141.855469, 45.336702 ], [ 141.855469, 45.460131 ], [ 142.031250, 45.460131 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.625000, 72.867930 ], [ 140.625000, 72.816074 ], [ 141.328125, 72.816074 ], [ 141.328125, 72.764065 ], [ 142.031250, 72.764065 ], [ 142.031250, 72.711903 ], [ 142.734375, 72.711903 ], [ 142.734375, 72.659588 ], [ 143.437500, 72.659588 ], [ 143.437500, 72.607120 ], [ 144.140625, 72.607120 ], [ 144.140625, 72.554498 ], [ 144.843750, 72.554498 ], [ 144.843750, 72.501722 ], [ 145.546875, 72.501722 ], [ 145.546875, 72.448792 ], [ 146.250000, 72.448792 ], [ 146.250000, 72.395706 ], [ 146.953125, 72.395706 ], [ 146.953125, 72.342464 ], [ 147.656250, 72.342464 ], [ 147.656250, 72.289067 ], [ 148.359375, 72.289067 ], [ 148.359375, 72.235514 ], [ 149.062500, 72.235514 ], [ 149.062500, 72.181804 ], [ 149.414062, 72.181804 ], [ 149.414062, 72.073911 ], [ 149.589844, 72.073911 ], [ 149.589844, 71.965388 ], [ 149.765625, 71.965388 ], [ 149.765625, 71.856229 ], [ 149.941406, 71.856229 ], [ 149.941406, 71.746432 ], [ 150.117188, 71.746432 ], [ 150.117188, 71.635993 ], [ 150.292969, 71.635993 ], [ 150.292969, 71.524909 ], [ 150.468750, 71.524909 ], [ 150.468750, 71.469124 ], [ 150.644531, 71.469124 ], [ 150.644531, 71.413177 ], [ 150.996094, 71.413177 ], [ 150.996094, 71.357067 ], [ 151.171875, 71.357067 ], [ 151.171875, 71.300793 ], [ 151.347656, 71.300793 ], [ 151.347656, 71.244356 ], [ 151.523438, 71.244356 ], [ 151.523438, 71.187754 ], [ 151.699219, 71.187754 ], [ 151.699219, 71.130988 ], [ 151.875000, 71.130988 ], [ 151.875000, 71.074056 ], [ 152.050781, 71.074056 ], [ 152.050781, 71.016960 ], [ 152.402344, 71.016960 ], [ 152.402344, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.902268 ], [ 152.753906, 70.902268 ], [ 152.753906, 70.844673 ], [ 153.632812, 70.844673 ], [ 153.632812, 70.902268 ], [ 155.039062, 70.902268 ], [ 155.039062, 70.959697 ], [ 156.445312, 70.959697 ], [ 156.445312, 71.016960 ], [ 157.148438, 71.016960 ], [ 157.148438, 70.959697 ], [ 157.851562, 70.959697 ], [ 157.851562, 70.902268 ], [ 158.554688, 70.902268 ], [ 158.554688, 70.844673 ], [ 159.082031, 70.844673 ], [ 159.082031, 70.786910 ], [ 159.257812, 70.786910 ], [ 159.257812, 70.670881 ], [ 159.433594, 70.670881 ], [ 159.433594, 70.554179 ], [ 159.609375, 70.554179 ], [ 159.609375, 70.436799 ], [ 159.785156, 70.436799 ], [ 159.785156, 69.657086 ], [ 160.136719, 69.657086 ], [ 160.136719, 69.595890 ], [ 160.312500, 69.595890 ], [ 160.312500, 69.534518 ], [ 160.488281, 69.534518 ], [ 160.488281, 69.472969 ], [ 160.839844, 69.472969 ], [ 160.839844, 69.411242 ], [ 161.191406, 69.411242 ], [ 161.191406, 69.472969 ], [ 161.542969, 69.472969 ], [ 161.542969, 69.534518 ], [ 161.894531, 69.534518 ], [ 161.894531, 69.595890 ], [ 162.246094, 69.595890 ], [ 162.246094, 69.657086 ], [ 164.179688, 69.657086 ], [ 164.179688, 69.595890 ], [ 164.882812, 69.595890 ], [ 164.882812, 69.534518 ], [ 165.585938, 69.534518 ], [ 165.585938, 69.472969 ], [ 166.464844, 69.472969 ], [ 166.464844, 69.534518 ], [ 167.519531, 69.534518 ], [ 167.519531, 69.595890 ], [ 167.871094, 69.595890 ], [ 167.871094, 69.534518 ], [ 168.046875, 69.534518 ], [ 168.046875, 69.411242 ], [ 168.222656, 69.411242 ], [ 168.222656, 69.349339 ], [ 168.398438, 69.349339 ], [ 168.398438, 69.287257 ], [ 168.574219, 69.287257 ], [ 168.574219, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 69.099940 ], [ 168.925781, 69.099940 ], [ 168.925781, 68.974164 ], [ 169.101562, 68.974164 ], [ 169.101562, 68.911005 ], [ 169.277344, 68.911005 ], [ 169.277344, 68.847665 ], [ 169.453125, 68.847665 ], [ 169.453125, 68.720441 ], [ 169.804688, 68.720441 ], [ 169.804688, 68.784144 ], [ 170.156250, 68.784144 ], [ 170.156250, 68.847665 ], [ 170.332031, 68.847665 ], [ 170.332031, 68.911005 ], [ 170.507812, 68.911005 ], [ 170.507812, 68.974164 ], [ 170.859375, 68.974164 ], [ 170.859375, 69.099940 ], [ 170.683594, 69.099940 ], [ 170.683594, 69.224997 ], [ 170.507812, 69.224997 ], [ 170.507812, 69.349339 ], [ 170.332031, 69.349339 ], [ 170.332031, 69.472969 ], [ 170.156250, 69.472969 ], [ 170.156250, 69.595890 ], [ 169.980469, 69.595890 ], [ 169.980469, 69.718107 ], [ 170.156250, 69.718107 ], [ 170.156250, 69.839622 ], [ 170.332031, 69.839622 ], [ 170.332031, 69.960439 ], [ 170.507812, 69.960439 ], [ 170.507812, 70.080562 ], [ 170.859375, 70.080562 ], [ 170.859375, 70.020587 ], [ 171.562500, 70.020587 ], [ 171.562500, 69.960439 ], [ 172.441406, 69.960439 ], [ 172.441406, 69.900118 ], [ 173.144531, 69.900118 ], [ 173.144531, 69.839622 ], [ 174.902344, 69.839622 ], [ 174.902344, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.839622 ], [ 176.132812, 69.839622 ], [ 176.132812, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.718107 ], [ 176.835938, 69.718107 ], [ 176.835938, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.595890 ], [ 177.539062, 69.595890 ], [ 177.539062, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.472969 ], [ 178.242188, 69.472969 ], [ 178.242188, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.349339 ], [ 178.769531, 69.349339 ], [ 178.769531, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.224997 ], [ 179.121094, 69.224997 ], [ 179.121094, 69.162558 ], [ 179.472656, 69.162558 ], [ 179.472656, 69.099940 ], [ 179.648438, 69.099940 ], [ 179.648438, 69.037142 ], [ 179.824219, 69.037142 ], [ 179.824219, 68.974164 ], [ 180.000000, 68.974164 ], [ 180.000000, 68.911005 ], [ 180.175781, 68.911005 ], [ 180.175781, 68.847665 ], [ 180.527344, 68.847665 ], [ 180.527344, 68.784144 ], [ 180.703125, 68.784144 ], [ 180.703125, 68.720441 ], [ 180.878906, 68.720441 ], [ 180.878906, 66.160511 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.413177 ], [ 134.472656, 71.413177 ], [ 134.472656, 71.469124 ], [ 134.824219, 71.469124 ], [ 134.824219, 71.524909 ], [ 135.175781, 71.524909 ], [ 135.175781, 71.580532 ], [ 135.527344, 71.580532 ], [ 135.527344, 71.635993 ], [ 135.703125, 71.635993 ], [ 135.703125, 71.580532 ], [ 136.054688, 71.580532 ], [ 136.054688, 71.524909 ], [ 136.406250, 71.524909 ], [ 136.406250, 71.469124 ], [ 136.757812, 71.469124 ], [ 136.757812, 71.413177 ], [ 137.109375, 71.413177 ], [ 137.109375, 71.357067 ], [ 137.636719, 71.357067 ], [ 137.636719, 71.413177 ], [ 137.812500, 71.413177 ], [ 137.812500, 71.524909 ], [ 137.988281, 71.524909 ], [ 137.988281, 71.580532 ], [ 138.164062, 71.580532 ], [ 138.164062, 71.635993 ], [ 138.339844, 71.635993 ], [ 138.339844, 71.580532 ], [ 138.867188, 71.580532 ], [ 138.867188, 71.524909 ], [ 139.570312, 71.524909 ], [ 139.570312, 71.469124 ], [ 139.921875, 71.469124 ], [ 139.921875, 71.580532 ], [ 139.746094, 71.580532 ], [ 139.746094, 71.801410 ], [ 139.570312, 71.801410 ], [ 139.570312, 72.019729 ], [ 139.394531, 72.019729 ], [ 139.394531, 72.235514 ], [ 139.218750, 72.235514 ], [ 139.218750, 72.395706 ], [ 139.394531, 72.395706 ], [ 139.394531, 72.448792 ], [ 139.570312, 72.448792 ], [ 139.570312, 72.554498 ], [ 139.746094, 72.554498 ], [ 139.746094, 72.607120 ], [ 139.921875, 72.607120 ], [ 139.921875, 72.659588 ], [ 140.097656, 72.659588 ], [ 140.097656, 72.764065 ], [ 140.273438, 72.764065 ], [ 140.273438, 72.816074 ], [ 140.449219, 72.816074 ], [ 140.449219, 72.867930 ], [ 140.625000, 72.867930 ] ] ], [ [ [ 140.097656, 76.142958 ], [ 140.097656, 76.100796 ], [ 141.503906, 76.100796 ], [ 141.503906, 76.058508 ], [ 141.855469, 76.058508 ], [ 141.855469, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.973553 ], [ 142.382812, 75.973553 ], [ 142.382812, 75.930885 ], [ 142.558594, 75.930885 ], [ 142.558594, 75.888091 ], [ 142.910156, 75.888091 ], [ 142.910156, 75.845169 ], [ 143.085938, 75.845169 ], [ 143.085938, 75.802118 ], [ 143.437500, 75.802118 ], [ 143.437500, 75.758940 ], [ 143.789062, 75.758940 ], [ 143.789062, 75.715633 ], [ 143.964844, 75.715633 ], [ 143.964844, 75.672197 ], [ 144.316406, 75.672197 ], [ 144.316406, 75.628632 ], [ 144.492188, 75.628632 ], [ 144.492188, 75.584937 ], [ 144.843750, 75.584937 ], [ 144.843750, 75.541113 ], [ 145.019531, 75.541113 ], [ 145.019531, 75.453071 ], [ 144.843750, 75.453071 ], [ 144.843750, 75.275413 ], [ 144.667969, 75.275413 ], [ 144.667969, 75.095633 ], [ 144.492188, 75.095633 ], [ 144.492188, 74.913708 ], [ 144.316406, 74.913708 ], [ 144.316406, 74.821934 ], [ 142.382812, 74.821934 ], [ 142.382812, 74.867889 ], [ 140.625000, 74.867889 ], [ 140.625000, 74.821934 ], [ 140.273438, 74.821934 ], [ 140.273438, 74.775843 ], [ 140.097656, 74.775843 ], [ 140.097656, 74.729615 ], [ 139.746094, 74.729615 ], [ 139.746094, 74.683250 ], [ 139.570312, 74.683250 ], [ 139.570312, 74.636748 ], [ 139.218750, 74.636748 ], [ 139.218750, 74.590108 ], [ 138.867188, 74.590108 ], [ 138.867188, 74.636748 ], [ 138.691406, 74.636748 ], [ 138.691406, 74.729615 ], [ 138.515625, 74.729615 ], [ 138.515625, 74.775843 ], [ 138.339844, 74.775843 ], [ 138.339844, 74.821934 ], [ 138.164062, 74.821934 ], [ 138.164062, 74.867889 ], [ 137.988281, 74.867889 ], [ 137.988281, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.004940 ], [ 137.636719, 75.004940 ], [ 137.636719, 75.050354 ], [ 137.460938, 75.050354 ], [ 137.460938, 75.095633 ], [ 137.285156, 75.095633 ], [ 137.285156, 75.185789 ], [ 137.109375, 75.185789 ], [ 137.109375, 75.230667 ], [ 136.933594, 75.230667 ], [ 136.933594, 75.364506 ], [ 137.109375, 75.364506 ], [ 137.109375, 75.584937 ], [ 137.285156, 75.584937 ], [ 137.285156, 75.802118 ], [ 137.460938, 75.802118 ], [ 137.460938, 75.930885 ], [ 137.636719, 75.930885 ], [ 137.636719, 75.973553 ], [ 137.988281, 75.973553 ], [ 137.988281, 76.016094 ], [ 138.339844, 76.016094 ], [ 138.339844, 76.058508 ], [ 138.515625, 76.058508 ], [ 138.515625, 76.100796 ], [ 138.867188, 76.100796 ], [ 138.867188, 76.142958 ], [ 140.097656, 76.142958 ] ] ], [ [ [ 180.878906, 71.580532 ], [ 180.878906, 70.902268 ], [ 180.527344, 70.902268 ], [ 180.527344, 70.844673 ], [ 180.000000, 70.844673 ], [ 179.648438, 70.844673 ], [ 179.648438, 70.786910 ], [ 178.945312, 70.786910 ], [ 178.945312, 70.902268 ], [ 178.769531, 70.902268 ], [ 178.769531, 71.074056 ], [ 178.945312, 71.074056 ], [ 178.945312, 71.130988 ], [ 179.121094, 71.130988 ], [ 179.121094, 71.187754 ], [ 179.296875, 71.187754 ], [ 179.296875, 71.300793 ], [ 179.472656, 71.300793 ], [ 179.472656, 71.357067 ], [ 179.648438, 71.357067 ], [ 179.648438, 71.413177 ], [ 179.824219, 71.413177 ], [ 179.824219, 71.469124 ], [ 180.000000, 71.469124 ], [ 180.000000, 71.524909 ], [ 180.175781, 71.524909 ], [ 180.175781, 71.580532 ], [ 180.878906, 71.580532 ] ] ], [ [ [ 146.601562, 75.497157 ], [ 146.601562, 75.453071 ], [ 147.128906, 75.453071 ], [ 147.128906, 75.408854 ], [ 147.832031, 75.408854 ], [ 147.832031, 75.364506 ], [ 148.359375, 75.364506 ], [ 148.359375, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.275413 ], [ 149.062500, 75.275413 ], [ 149.062500, 75.230667 ], [ 149.589844, 75.230667 ], [ 149.589844, 75.185789 ], [ 149.941406, 75.185789 ], [ 149.941406, 75.140778 ], [ 150.292969, 75.140778 ], [ 150.292969, 75.095633 ], [ 150.644531, 75.095633 ], [ 150.644531, 75.050354 ], [ 150.468750, 75.050354 ], [ 150.468750, 74.959392 ], [ 150.292969, 74.959392 ], [ 150.292969, 74.913708 ], [ 150.117188, 74.913708 ], [ 150.117188, 74.821934 ], [ 149.941406, 74.821934 ], [ 149.941406, 74.775843 ], [ 149.765625, 74.775843 ], [ 149.765625, 74.683250 ], [ 149.062500, 74.683250 ], [ 149.062500, 74.729615 ], [ 148.359375, 74.729615 ], [ 148.359375, 74.775843 ], [ 147.832031, 74.775843 ], [ 147.832031, 74.821934 ], [ 147.656250, 74.821934 ], [ 147.656250, 74.867889 ], [ 147.304688, 74.867889 ], [ 147.304688, 74.913708 ], [ 147.128906, 74.913708 ], [ 147.128906, 74.959392 ], [ 146.953125, 74.959392 ], [ 146.953125, 75.004940 ], [ 146.777344, 75.004940 ], [ 146.777344, 75.050354 ], [ 146.601562, 75.050354 ], [ 146.601562, 75.095633 ], [ 146.250000, 75.095633 ], [ 146.250000, 75.140778 ], [ 146.074219, 75.140778 ], [ 146.074219, 75.230667 ], [ 146.250000, 75.230667 ], [ 146.250000, 75.408854 ], [ 146.425781, 75.408854 ], [ 146.425781, 75.497157 ], [ 146.601562, 75.497157 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 142.031250, 73.824820 ], [ 142.207031, 73.824820 ], [ 142.207031, 73.775780 ], [ 142.382812, 73.775780 ], [ 142.382812, 73.726595 ], [ 142.558594, 73.726595 ], [ 142.558594, 73.677264 ], [ 142.734375, 73.677264 ], [ 142.734375, 73.627789 ], [ 142.910156, 73.627789 ], [ 142.910156, 73.578167 ], [ 143.085938, 73.578167 ], [ 143.085938, 73.528399 ], [ 143.261719, 73.528399 ], [ 143.261719, 73.478485 ], [ 143.437500, 73.478485 ], [ 143.437500, 73.327858 ], [ 143.613281, 73.327858 ], [ 143.613281, 73.226700 ], [ 141.503906, 73.226700 ], [ 141.503906, 73.277353 ], [ 140.449219, 73.277353 ], [ 140.449219, 73.327858 ], [ 139.921875, 73.327858 ], [ 139.921875, 73.378215 ], [ 140.097656, 73.378215 ], [ 140.097656, 73.478485 ], [ 140.273438, 73.478485 ], [ 140.273438, 73.578167 ], [ 140.449219, 73.578167 ], [ 140.449219, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.726595 ], [ 140.800781, 73.726595 ], [ 140.800781, 73.775780 ], [ 141.152344, 73.775780 ], [ 141.152344, 73.824820 ], [ 141.855469, 73.824820 ], [ 141.855469, 73.873717 ], [ 142.031250, 73.873717 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.800781, 72.867930 ], [ 140.800781, 72.816074 ], [ 141.503906, 72.816074 ], [ 141.503906, 72.764065 ], [ 142.207031, 72.764065 ], [ 142.207031, 72.711903 ], [ 142.910156, 72.711903 ], [ 142.910156, 72.659588 ], [ 143.789062, 72.659588 ], [ 143.789062, 72.607120 ], [ 144.492188, 72.607120 ], [ 144.492188, 72.554498 ], [ 145.195312, 72.554498 ], [ 145.195312, 72.501722 ], [ 145.898438, 72.501722 ], [ 145.898438, 72.448792 ], [ 146.777344, 72.448792 ], [ 146.777344, 72.395706 ], [ 147.480469, 72.395706 ], [ 147.480469, 72.342464 ], [ 148.183594, 72.342464 ], [ 148.183594, 72.289067 ], [ 148.886719, 72.289067 ], [ 148.886719, 72.235514 ], [ 149.414062, 72.235514 ], [ 149.414062, 72.127936 ], [ 149.589844, 72.127936 ], [ 149.589844, 72.019729 ], [ 149.765625, 72.019729 ], [ 149.765625, 71.910888 ], [ 149.941406, 71.910888 ], [ 149.941406, 71.801410 ], [ 150.117188, 71.801410 ], [ 150.117188, 71.691293 ], [ 150.292969, 71.691293 ], [ 150.292969, 71.580532 ], [ 150.468750, 71.580532 ], [ 150.468750, 71.524909 ], [ 150.644531, 71.524909 ], [ 150.644531, 71.469124 ], [ 150.820312, 71.469124 ], [ 150.820312, 71.413177 ], [ 150.996094, 71.413177 ], [ 150.996094, 71.357067 ], [ 151.171875, 71.357067 ], [ 151.171875, 71.300793 ], [ 151.347656, 71.300793 ], [ 151.347656, 71.244356 ], [ 151.699219, 71.244356 ], [ 151.699219, 71.187754 ], [ 151.875000, 71.187754 ], [ 151.875000, 71.130988 ], [ 152.050781, 71.130988 ], [ 152.050781, 71.074056 ], [ 152.226562, 71.074056 ], [ 152.226562, 71.016960 ], [ 152.402344, 71.016960 ], [ 152.402344, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.902268 ], [ 152.753906, 70.902268 ], [ 152.753906, 70.844673 ], [ 153.457031, 70.844673 ], [ 153.457031, 70.902268 ], [ 154.511719, 70.902268 ], [ 154.511719, 70.959697 ], [ 155.566406, 70.959697 ], [ 155.566406, 71.016960 ], [ 156.621094, 71.016960 ], [ 156.621094, 71.074056 ], [ 157.148438, 71.074056 ], [ 157.148438, 71.016960 ], [ 157.851562, 71.016960 ], [ 157.851562, 70.959697 ], [ 158.554688, 70.959697 ], [ 158.554688, 70.902268 ], [ 158.906250, 70.902268 ], [ 158.906250, 70.844673 ], [ 159.082031, 70.844673 ], [ 159.082031, 70.728979 ], [ 159.257812, 70.728979 ], [ 159.257812, 70.670881 ], [ 159.433594, 70.670881 ], [ 159.433594, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 70.495574 ], [ 159.785156, 70.495574 ], [ 159.785156, 70.140364 ], [ 159.609375, 70.140364 ], [ 159.609375, 69.718107 ], [ 159.960938, 69.718107 ], [ 159.960938, 69.657086 ], [ 160.136719, 69.657086 ], [ 160.136719, 69.595890 ], [ 160.312500, 69.595890 ], [ 160.312500, 69.534518 ], [ 160.664062, 69.534518 ], [ 160.664062, 69.472969 ], [ 161.191406, 69.472969 ], [ 161.191406, 69.534518 ], [ 161.718750, 69.534518 ], [ 161.718750, 69.595890 ], [ 162.070312, 69.595890 ], [ 162.070312, 69.657086 ], [ 163.300781, 69.657086 ], [ 163.300781, 69.718107 ], [ 164.179688, 69.718107 ], [ 164.179688, 69.657086 ], [ 164.707031, 69.657086 ], [ 164.707031, 69.595890 ], [ 165.058594, 69.595890 ], [ 165.058594, 69.534518 ], [ 165.585938, 69.534518 ], [ 165.585938, 69.472969 ], [ 166.464844, 69.472969 ], [ 166.464844, 69.534518 ], [ 167.343750, 69.534518 ], [ 167.343750, 69.595890 ], [ 167.695312, 69.595890 ], [ 167.695312, 69.534518 ], [ 167.871094, 69.534518 ], [ 167.871094, 69.411242 ], [ 168.046875, 69.411242 ], [ 168.046875, 69.349339 ], [ 168.222656, 69.349339 ], [ 168.222656, 69.287257 ], [ 168.398438, 69.287257 ], [ 168.398438, 69.162558 ], [ 168.574219, 69.162558 ], [ 168.574219, 69.099940 ], [ 168.750000, 69.099940 ], [ 168.750000, 68.974164 ], [ 168.925781, 68.974164 ], [ 168.925781, 68.911005 ], [ 169.101562, 68.911005 ], [ 169.101562, 68.847665 ], [ 169.277344, 68.847665 ], [ 169.277344, 68.720441 ], [ 169.628906, 68.720441 ], [ 169.628906, 68.784144 ], [ 169.980469, 68.784144 ], [ 169.980469, 68.847665 ], [ 170.156250, 68.847665 ], [ 170.156250, 68.911005 ], [ 170.332031, 68.911005 ], [ 170.332031, 68.974164 ], [ 170.683594, 68.974164 ], [ 170.683594, 69.099940 ], [ 170.507812, 69.099940 ], [ 170.507812, 69.224997 ], [ 170.332031, 69.224997 ], [ 170.332031, 69.411242 ], [ 170.156250, 69.411242 ], [ 170.156250, 69.534518 ], [ 169.980469, 69.534518 ], [ 169.980469, 69.778952 ], [ 170.156250, 69.778952 ], [ 170.156250, 70.020587 ], [ 170.332031, 70.020587 ], [ 170.332031, 70.140364 ], [ 170.507812, 70.140364 ], [ 170.507812, 70.080562 ], [ 171.210938, 70.080562 ], [ 171.210938, 70.020587 ], [ 171.738281, 70.020587 ], [ 171.738281, 69.960439 ], [ 172.441406, 69.960439 ], [ 172.441406, 69.900118 ], [ 173.144531, 69.900118 ], [ 173.144531, 69.839622 ], [ 174.726562, 69.839622 ], [ 174.726562, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.839622 ], [ 176.132812, 69.839622 ], [ 176.132812, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.718107 ], [ 176.835938, 69.718107 ], [ 176.835938, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.595890 ], [ 177.539062, 69.595890 ], [ 177.539062, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.472969 ], [ 178.242188, 69.472969 ], [ 178.242188, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.349339 ], [ 178.769531, 69.349339 ], [ 178.769531, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.224997 ], [ 179.121094, 69.224997 ], [ 179.121094, 69.162558 ], [ 179.472656, 69.162558 ], [ 179.472656, 69.099940 ], [ 179.648438, 69.099940 ], [ 179.648438, 69.037142 ], [ 179.824219, 69.037142 ], [ 179.824219, 68.974164 ], [ 180.000000, 68.974164 ], [ 180.000000, 68.911005 ], [ 180.175781, 68.911005 ], [ 180.175781, 68.847665 ], [ 180.527344, 68.847665 ], [ 180.527344, 68.784144 ], [ 180.703125, 68.784144 ], [ 180.703125, 68.720441 ], [ 180.878906, 68.720441 ], [ 180.878906, 66.160511 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.469124 ], [ 134.472656, 71.469124 ], [ 134.472656, 71.524909 ], [ 134.824219, 71.524909 ], [ 134.824219, 71.580532 ], [ 135.175781, 71.580532 ], [ 135.175781, 71.635993 ], [ 135.878906, 71.635993 ], [ 135.878906, 71.580532 ], [ 136.230469, 71.580532 ], [ 136.230469, 71.524909 ], [ 136.582031, 71.524909 ], [ 136.582031, 71.469124 ], [ 136.933594, 71.469124 ], [ 136.933594, 71.413177 ], [ 137.285156, 71.413177 ], [ 137.285156, 71.357067 ], [ 137.636719, 71.357067 ], [ 137.636719, 71.413177 ], [ 137.812500, 71.413177 ], [ 137.812500, 71.524909 ], [ 137.988281, 71.524909 ], [ 137.988281, 71.580532 ], [ 138.164062, 71.580532 ], [ 138.164062, 71.635993 ], [ 138.515625, 71.635993 ], [ 138.515625, 71.580532 ], [ 139.218750, 71.580532 ], [ 139.218750, 71.524909 ], [ 139.746094, 71.524909 ], [ 139.746094, 71.635993 ], [ 139.570312, 71.635993 ], [ 139.570312, 71.856229 ], [ 139.394531, 71.856229 ], [ 139.394531, 72.073911 ], [ 139.218750, 72.073911 ], [ 139.218750, 72.289067 ], [ 139.042969, 72.289067 ], [ 139.042969, 72.448792 ], [ 139.218750, 72.448792 ], [ 139.218750, 72.501722 ], [ 139.394531, 72.501722 ], [ 139.394531, 72.554498 ], [ 139.570312, 72.554498 ], [ 139.570312, 72.607120 ], [ 139.746094, 72.607120 ], [ 139.746094, 72.659588 ], [ 139.921875, 72.659588 ], [ 139.921875, 72.711903 ], [ 140.097656, 72.711903 ], [ 140.097656, 72.764065 ], [ 140.273438, 72.764065 ], [ 140.273438, 72.816074 ], [ 140.449219, 72.816074 ], [ 140.449219, 72.867930 ], [ 140.800781, 72.867930 ] ] ], [ [ [ 139.921875, 76.142958 ], [ 139.921875, 76.100796 ], [ 141.328125, 76.100796 ], [ 141.328125, 76.058508 ], [ 141.679688, 76.058508 ], [ 141.679688, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.973553 ], [ 142.382812, 75.973553 ], [ 142.382812, 75.930885 ], [ 142.558594, 75.930885 ], [ 142.558594, 75.888091 ], [ 142.910156, 75.888091 ], [ 142.910156, 75.845169 ], [ 143.261719, 75.845169 ], [ 143.261719, 75.802118 ], [ 143.613281, 75.802118 ], [ 143.613281, 75.758940 ], [ 143.789062, 75.758940 ], [ 143.789062, 75.715633 ], [ 144.140625, 75.715633 ], [ 144.140625, 75.672197 ], [ 144.492188, 75.672197 ], [ 144.492188, 75.628632 ], [ 144.843750, 75.628632 ], [ 144.843750, 75.584937 ], [ 145.019531, 75.584937 ], [ 145.019531, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 75.320025 ], [ 144.667969, 75.320025 ], [ 144.667969, 75.185789 ], [ 144.492188, 75.185789 ], [ 144.492188, 75.050354 ], [ 144.316406, 75.050354 ], [ 144.316406, 74.867889 ], [ 144.140625, 74.867889 ], [ 144.140625, 74.821934 ], [ 142.207031, 74.821934 ], [ 142.207031, 74.867889 ], [ 140.449219, 74.867889 ], [ 140.449219, 74.821934 ], [ 140.097656, 74.821934 ], [ 140.097656, 74.775843 ], [ 139.746094, 74.775843 ], [ 139.746094, 74.729615 ], [ 139.394531, 74.729615 ], [ 139.394531, 74.683250 ], [ 139.042969, 74.683250 ], [ 139.042969, 74.636748 ], [ 138.691406, 74.636748 ], [ 138.691406, 74.683250 ], [ 138.515625, 74.683250 ], [ 138.515625, 74.775843 ], [ 138.339844, 74.775843 ], [ 138.339844, 74.821934 ], [ 138.164062, 74.821934 ], [ 138.164062, 74.867889 ], [ 137.988281, 74.867889 ], [ 137.988281, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.004940 ], [ 137.636719, 75.004940 ], [ 137.636719, 75.050354 ], [ 137.460938, 75.050354 ], [ 137.460938, 75.095633 ], [ 137.285156, 75.095633 ], [ 137.285156, 75.185789 ], [ 137.109375, 75.185789 ], [ 137.109375, 75.230667 ], [ 136.933594, 75.230667 ], [ 136.933594, 75.364506 ], [ 137.109375, 75.364506 ], [ 137.109375, 75.628632 ], [ 137.285156, 75.628632 ], [ 137.285156, 75.845169 ], [ 137.460938, 75.845169 ], [ 137.460938, 75.973553 ], [ 137.636719, 75.973553 ], [ 137.636719, 76.016094 ], [ 137.988281, 76.016094 ], [ 137.988281, 76.058508 ], [ 138.339844, 76.058508 ], [ 138.339844, 76.100796 ], [ 138.691406, 76.100796 ], [ 138.691406, 76.142958 ], [ 139.921875, 76.142958 ] ] ], [ [ [ 180.878906, 71.580532 ], [ 180.878906, 70.902268 ], [ 180.527344, 70.902268 ], [ 180.527344, 70.844673 ], [ 180.000000, 70.844673 ], [ 179.472656, 70.844673 ], [ 179.472656, 70.786910 ], [ 178.769531, 70.786910 ], [ 178.769531, 70.959697 ], [ 178.593750, 70.959697 ], [ 178.593750, 71.130988 ], [ 178.769531, 71.130988 ], [ 178.769531, 71.187754 ], [ 178.945312, 71.187754 ], [ 178.945312, 71.244356 ], [ 179.121094, 71.244356 ], [ 179.121094, 71.300793 ], [ 179.472656, 71.300793 ], [ 179.472656, 71.357067 ], [ 179.648438, 71.357067 ], [ 179.648438, 71.413177 ], [ 179.824219, 71.413177 ], [ 179.824219, 71.469124 ], [ 180.000000, 71.469124 ], [ 180.000000, 71.580532 ], [ 180.878906, 71.580532 ] ] ], [ [ [ 146.425781, 75.497157 ], [ 146.425781, 75.453071 ], [ 147.128906, 75.453071 ], [ 147.128906, 75.408854 ], [ 147.832031, 75.408854 ], [ 147.832031, 75.364506 ], [ 148.359375, 75.364506 ], [ 148.359375, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.275413 ], [ 149.062500, 75.275413 ], [ 149.062500, 75.230667 ], [ 149.589844, 75.230667 ], [ 149.589844, 75.185789 ], [ 149.941406, 75.185789 ], [ 149.941406, 75.140778 ], [ 150.292969, 75.140778 ], [ 150.292969, 75.095633 ], [ 150.644531, 75.095633 ], [ 150.644531, 75.050354 ], [ 150.468750, 75.050354 ], [ 150.468750, 75.004940 ], [ 150.292969, 75.004940 ], [ 150.292969, 74.959392 ], [ 150.117188, 74.959392 ], [ 150.117188, 74.913708 ], [ 149.941406, 74.913708 ], [ 149.941406, 74.821934 ], [ 149.765625, 74.821934 ], [ 149.765625, 74.775843 ], [ 149.589844, 74.775843 ], [ 149.589844, 74.729615 ], [ 148.886719, 74.729615 ], [ 148.886719, 74.775843 ], [ 148.183594, 74.775843 ], [ 148.183594, 74.821934 ], [ 147.656250, 74.821934 ], [ 147.656250, 74.867889 ], [ 147.480469, 74.867889 ], [ 147.480469, 74.913708 ], [ 147.128906, 74.913708 ], [ 147.128906, 74.959392 ], [ 146.953125, 74.959392 ], [ 146.953125, 75.004940 ], [ 146.777344, 75.004940 ], [ 146.777344, 75.050354 ], [ 146.601562, 75.050354 ], [ 146.601562, 75.095633 ], [ 146.250000, 75.095633 ], [ 146.250000, 75.140778 ], [ 146.074219, 75.140778 ], [ 146.074219, 75.320025 ], [ 146.250000, 75.320025 ], [ 146.250000, 75.497157 ], [ 146.425781, 75.497157 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 142.031250, 73.824820 ], [ 142.207031, 73.824820 ], [ 142.207031, 73.775780 ], [ 142.382812, 73.775780 ], [ 142.382812, 73.726595 ], [ 142.558594, 73.726595 ], [ 142.558594, 73.677264 ], [ 142.734375, 73.677264 ], [ 142.734375, 73.627789 ], [ 142.910156, 73.627789 ], [ 142.910156, 73.578167 ], [ 143.085938, 73.578167 ], [ 143.085938, 73.528399 ], [ 143.261719, 73.528399 ], [ 143.261719, 73.478485 ], [ 143.437500, 73.478485 ], [ 143.437500, 73.226700 ], [ 141.328125, 73.226700 ], [ 141.328125, 73.277353 ], [ 140.273438, 73.277353 ], [ 140.273438, 73.327858 ], [ 139.746094, 73.327858 ], [ 139.746094, 73.378215 ], [ 139.921875, 73.378215 ], [ 139.921875, 73.478485 ], [ 140.097656, 73.478485 ], [ 140.097656, 73.528399 ], [ 140.273438, 73.528399 ], [ 140.273438, 73.578167 ], [ 140.449219, 73.578167 ], [ 140.449219, 73.677264 ], [ 140.625000, 73.677264 ], [ 140.625000, 73.726595 ], [ 140.800781, 73.726595 ], [ 140.800781, 73.775780 ], [ 141.152344, 73.775780 ], [ 141.152344, 73.824820 ], [ 141.855469, 73.824820 ], [ 141.855469, 73.873717 ], [ 142.031250, 73.873717 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -162.306519, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.439453, -85.088894 ], [ -180.439453, -84.652564 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.237466 ], [ -167.019653, -84.570546 ], [ -164.179688, -84.825314 ], [ -162.575684, -85.051129 ], [ -162.301025, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.439453, -85.088894 ], [ -180.439453, -84.652564 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139574 ], [ -177.258911, -84.452865 ], [ -176.083374, -84.099052 ], [ -175.946045, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.380493, -84.534564 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.061093 ], [ -169.953003, -83.884610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.125488, -79.633945 ], [ -162.438354, -79.281206 ], [ -162.630615, -79.171335 ], [ -162.767944, -79.088462 ], [ -159.461060, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.223392 ], [ -161.246338, -78.380430 ], [ -160.246582, -78.693722 ], [ -159.483032, -79.046790 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.487793, -79.253586 ], [ -162.625122, -79.171335 ], [ -163.026123, -78.929273 ], [ -163.064575, -78.870048 ], [ -163.712769, -78.595299 ], [ -163.108521, -78.223392 ] ] ], [ [ [ -158.362427, -76.889500 ], [ -157.873535, -76.987572 ], [ -157.500000, -77.118032 ], [ -157.060547, -77.270224 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.049316, -78.025574 ], [ -158.362427, -76.889500 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.439453, -16.720385 ], [ -180.439453, -16.299051 ], [ -180.000000, -16.066929 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, -16.066929 ], [ -179.791260, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.557227 ], [ -180.439453, -16.720385 ], [ -180.439453, -16.299051 ], [ -180.000000, -16.066929 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.217701 ], [ -157.060547, 21.202337 ], [ -157.060547, 21.089625 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.461060, 21.881890 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ], [ -158.252563, 21.534847 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.461060, 21.881890 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.548706, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ] ] ], [ [ [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.901809 ], [ -157.060547, 56.815914 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.526245, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.390197 ], [ -157.060547, 58.901809 ] ] ], [ [ [ -157.060547, 58.915992 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.915992 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.010986, 64.974712 ], [ -180.439453, 64.830254 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -175.001221, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.827917 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ] ] ], [ [ [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.723755, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ] ] ], [ [ [ -161.971436, 66.337505 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.971436, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.439453, 66.337505 ], [ -180.439453, 69.103859 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.439453, 70.814007 ], [ -180.439453, 71.374619 ], [ -180.000000, 71.516203 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.347534, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.439453, 66.337505 ], [ -180.439453, 69.101899 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.347534, 66.337505 ] ] ], [ [ [ -174.347534, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.912834 ], [ -171.013184, 66.513260 ], [ -170.645142, 66.337505 ], [ -174.347534, 66.337505 ] ] ], [ [ [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.022217, 71.556217 ], [ -177.577515, 71.269067 ], [ -177.665405, 71.132764 ], [ -178.692627, 70.893280 ], [ -180.000000, 70.832051 ], [ -180.439453, 70.812202 ], [ -180.439453, 71.374619 ], [ -180.000000, 71.516203 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570546 ], [ -146.826782, -84.531424 ], [ -150.062256, -84.296181 ], [ -150.902710, -83.904475 ], [ -153.588867, -83.688427 ], [ -153.407593, -83.237720 ], [ -153.039551, -82.826680 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.454537 ], [ -152.863770, -82.042699 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.835327, -81.101715 ], [ -154.407349, -81.160996 ], [ -152.100220, -81.004326 ], [ -150.650024, -81.337327 ], [ -148.864746, -81.043750 ], [ -147.222290, -80.671108 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.062744, -79.651722 ], [ -149.529419, -79.358575 ], [ -151.589355, -79.299580 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.857788, -79.088462 ], [ -134.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.214233, -74.302895 ], [ -135.000000, -74.317750 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.199097, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.064520 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.075617 ], [ -157.939453, -76.973960 ], [ -157.873535, -76.987572 ], [ -157.500000, -77.118032 ], [ -156.972656, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.742676, -77.065265 ], [ -152.918701, -77.496986 ], [ -151.331177, -77.399095 ], [ -150.001831, -77.182779 ], [ -148.749390, -76.909421 ], [ -147.612305, -76.575609 ], [ -146.101685, -76.478342 ], [ -146.145630, -76.106073 ], [ -146.497192, -75.733242 ], [ -146.200562, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.321899, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.087153 ], [ -140.207520, -75.067349 ], [ -138.856201, -74.969367 ], [ -137.504883, -74.733955 ], [ -136.428223, -74.518423 ], [ -135.214233, -74.302895 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ] ] ] ] } } ] } ] } , @@ -2280,17 +2269,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.040555 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.786816 ], [ -136.477661, 59.464617 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.040555 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -157.500000, 56.668302 ], [ -157.939453, 56.523140 ], [ -157.939453, 57.468589 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.390197 ], [ -157.044067, 58.918828 ], [ -157.500000, 58.799516 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.897165 ], [ -135.626221, 69.314440 ], [ -135.000000, 69.476821 ], [ -134.560547, 69.590144 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.357067 ] ] ] } } ] } ] } , @@ -2308,49 +2297,49 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -113.296509, -74.028615 ], [ -112.944946, -74.381471 ], [ -112.500000, -74.609072 ], [ -112.296753, -74.713693 ], [ -112.060547, -74.646932 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.341490 ], [ -135.214233, -74.302895 ], [ -135.000000, -74.317750 ], [ -134.428711, -74.360753 ], [ -133.747559, -74.440519 ], [ -132.258911, -74.302895 ], [ -130.924072, -74.478784 ], [ -129.556274, -74.459663 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.518423 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.518423 ], [ -119.701538, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.028615 ], [ -116.218872, -74.243338 ], [ -115.021362, -74.067866 ], [ -114.873047, -74.019543 ], [ -114.505005, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.525757, -73.898111 ], [ -119.976196, -74.019543 ], [ -120.234375, -74.088963 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.525757, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ] ] ], [ [ [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.471313, -74.028615 ], [ -116.828613, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.028615 ] ] ], [ [ [ -115.515747, -74.140084 ], [ -115.021362, -74.067866 ], [ -114.873047, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.296509, -74.028615 ], [ -113.186646, -74.140084 ], [ -115.515747, -74.140084 ] ] ], [ [ [ -122.404175, -73.324706 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.723755, -73.481609 ], [ -119.289551, -73.833999 ], [ -119.976196, -74.019543 ], [ -120.234375, -74.088963 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.404175, -73.324706 ] ] ], [ [ [ -126.557007, -73.245712 ], [ -125.557251, -73.481609 ], [ -124.030151, -73.873717 ], [ -124.617920, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.282104, -73.461293 ], [ -126.557007, -73.245712 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.189453, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.719238, 32.722599 ], [ -114.812622, 32.523658 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.269287, 29.267233 ], [ -112.500000, 29.592565 ], [ -112.807617, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.148193, 31.170510 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.522361 ], [ -114.774170, 31.798224 ], [ -114.938965, 31.391158 ], [ -114.768677, 30.911651 ], [ -114.675293, 30.164126 ], [ -114.329224, 29.750071 ], [ -113.587646, 29.060971 ], [ -113.422852, 28.825425 ], [ -113.274536, 28.753213 ], [ -113.142700, 28.410728 ], [ -112.961426, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.566721 ], [ -112.456055, 27.527758 ], [ -112.247314, 27.171582 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.676970 ], [ -112.181396, 24.736853 ], [ -112.148438, 25.468074 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.637639 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.054321, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.197388, 28.115594 ], [ -114.164429, 28.565225 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.554345 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.634676 ], [ -117.125244, 32.537552 ], [ -115.993652, 32.611616 ], [ -114.719238, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.296358 ], [ -125.414429, 49.951220 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.181703 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.446655, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 48.998240 ], [ -112.500000, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.716819 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.756243 ], [ -129.303589, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.534058, 54.803851 ], [ -129.979248, 55.285372 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.168866 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 48.998240 ], [ -112.060547, 40.647304 ], [ -124.310303, 40.647304 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -112.060547, 48.998240 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.061157, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.990234, 55.528631 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.692406 ], [ -133.357544, 58.410345 ], [ -134.269409, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.750861 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.750861 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.990234, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.750861 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.139038, 70.484566 ], [ -127.446899, 70.377854 ], [ -125.755005, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.063354, 69.563308 ], [ -122.684326, 69.854762 ], [ -121.470337, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.224365, 68.841718 ], [ -115.246582, 68.905074 ], [ -113.895264, 68.399180 ], [ -115.307007, 67.902421 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.732354 ], [ -112.060547, 67.751080 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.362895 ], [ -135.000000, 69.476821 ], [ -134.412231, 69.626510 ], [ -132.929077, 69.505689 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.194411 ], [ -129.105835, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.164429, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.500000, 72.947042 ], [ -112.439575, 72.955095 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.312988, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.219116, 69.279484 ], [ -116.109009, 69.168419 ], [ -117.339478, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.599846 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.399414, 71.557955 ], [ -118.564453, 72.307440 ], [ -117.866821, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.510254, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.218140, 72.519882 ], [ -120.459595, 71.820272 ], [ -120.459595, 71.383389 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.930786, 71.868199 ], [ -125.502319, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.678345, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.053213 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ] ] ], [ [ [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ] ] ], [ [ [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.536255, 74.449358 ], [ -120.108032, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.292489 ], [ -121.536255, 74.449358 ] ] ], [ [ [ -112.060547, 75.106932 ], [ -112.060547, 74.446412 ], [ -112.225342, 74.416926 ], [ -112.500000, 74.413974 ], [ -113.741455, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.014886 ], [ -112.060547, 75.106932 ] ] ], [ [ [ -116.196899, 77.644772 ], [ -116.334229, 76.877034 ], [ -117.108765, 76.529621 ], [ -118.042603, 76.480910 ], [ -119.899292, 76.053213 ], [ -121.497803, 75.900140 ], [ -122.854614, 76.116622 ], [ -121.157227, 76.864556 ], [ -119.102783, 77.512436 ], [ -117.570190, 77.498175 ], [ -116.196899, 77.644772 ] ] ], [ [ [ -112.060547, 75.156266 ], [ -112.500000, 75.143595 ], [ -116.312256, 75.043267 ], [ -117.713013, 75.222263 ], [ -116.345215, 76.199417 ], [ -115.405884, 76.478342 ], [ -112.587891, 76.141643 ], [ -112.500000, 76.113985 ], [ -112.060547, 75.968226 ], [ -112.060547, 75.156266 ] ] ], [ [ [ -112.060547, 78.097163 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.508873 ], [ -113.532715, 77.732617 ], [ -112.725220, 78.050621 ], [ -112.500000, 78.066533 ], [ -112.060547, 78.097163 ] ] ], [ [ [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ] ] ] ] } } ] } ] } , @@ -2368,63 +2357,63 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.382950 ], [ -112.500000, -74.609072 ], [ -112.296753, -74.713693 ], [ -111.258545, -74.419877 ], [ -110.066528, -74.793143 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.875488, -74.949410 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.761108, -74.537473 ], [ -101.250000, -74.185058 ], [ -102.546387, -74.107024 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -72.853361 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.310669, -72.754296 ], [ -99.135132, -72.911567 ], [ -98.118896, -73.206079 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.616947 ], [ -95.042725, -73.480047 ], [ -93.674927, -73.283674 ], [ -92.438965, -73.166355 ], [ -91.422729, -73.401769 ], [ -90.087891, -73.323130 ], [ -90.000000, -73.245712 ], [ -89.560547, -72.859838 ], [ -89.560547, -74.140084 ], [ -102.002563, -74.140084 ], [ -102.546387, -74.107024 ], [ -102.683716, -74.019543 ], [ -103.112183, -73.734289 ], [ -103.326416, -73.362494 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.981323, -71.933048 ], [ -97.882690, -72.070530 ], [ -96.789551, -71.953479 ], [ -96.201782, -72.521532 ], [ -96.981812, -72.442164 ], [ -98.195801, -72.481891 ], [ -99.431763, -72.442164 ], [ -100.783081, -72.501722 ], [ -101.799316, -72.305771 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.844238, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.897181 ], [ -97.388306, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.890723 ], [ -96.289673, 19.321511 ], [ -95.899658, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.548584, 18.422290 ], [ -92.785034, 18.526492 ], [ -92.037964, 18.703489 ], [ -91.406250, 18.875103 ], [ -90.774536, 19.285221 ], [ -90.532837, 19.864894 ], [ -90.450439, 20.709877 ], [ -90.280151, 20.997343 ], [ -90.000000, 21.110125 ], [ -89.598999, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -90.999756, 17.816686 ], [ -90.999756, 17.256236 ], [ -91.455688, 17.250990 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.598755, 16.472963 ], [ -90.439453, 16.409740 ], [ -90.466919, 16.066929 ], [ -91.746826, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.202759, 14.827991 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.872681, 15.940202 ], [ -94.691162, 16.198850 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.749963 ], [ -96.558838, 15.654776 ], [ -97.261963, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.695435, 16.704602 ], [ -100.827026, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.916023 ], [ -102.480469, 17.973508 ], [ -103.502197, 18.291950 ], [ -103.919678, 18.750310 ], [ -104.990845, 19.316327 ], [ -105.490723, 19.947533 ], [ -105.732422, 20.432160 ], [ -105.397339, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.265503, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.268764 ], [ -105.748901, 22.350076 ], [ -97.844238, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.370834 ], [ -89.588013, 14.360191 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.232438 ], [ -89.719849, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.093384, 13.736717 ], [ -90.609741, 13.907408 ], [ -91.230469, 13.928736 ], [ -91.691895, 14.125922 ], [ -92.230225, 14.541050 ], [ -92.202759, 14.827991 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.746826, 16.066929 ], [ -90.466919, 16.066929 ], [ -90.439453, 16.409740 ], [ -90.598755, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.250990 ], [ -90.999756, 17.256236 ], [ -90.999756, 17.816686 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.237762 ] ] ], [ [ [ -89.560547, 14.301647 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ], [ -89.560547, 14.301647 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.232438 ], [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.093384, 13.736717 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.719849, 14.136576 ], [ -89.560547, 14.232438 ] ] ], [ [ [ -89.560547, 14.301647 ], [ -89.588013, 14.360191 ], [ -89.560547, 14.370834 ], [ -89.560547, 14.301647 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.173625 ], [ -89.593506, 30.159377 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ] ] ], [ [ [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.306503 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.022339, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.237305, 31.756196 ], [ -106.506958, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.034790, 30.642638 ], [ -104.705200, 30.121373 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.969701 ], [ -102.480469, 29.759609 ], [ -101.661987, 29.778682 ], [ -100.958862, 29.382175 ], [ -100.453491, 28.695406 ], [ -100.107422, 28.110749 ], [ -99.519653, 27.542371 ], [ -99.299927, 26.838776 ], [ -99.019775, 26.372185 ], [ -98.239746, 26.061718 ], [ -97.531128, 25.839449 ], [ -97.141113, 25.869109 ], [ -97.525635, 24.991037 ], [ -97.701416, 24.272005 ], [ -97.778320, 22.933101 ], [ -97.871704, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.897181 ], [ -97.470703, 21.534847 ], [ -105.353394, 21.534847 ], [ -105.600586, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.268764 ], [ -106.029053, 22.776182 ], [ -106.907959, 23.770264 ], [ -107.913208, 24.547123 ], [ -108.402100, 25.170145 ], [ -109.259033, 25.582085 ], [ -109.445801, 25.824617 ], [ -109.291992, 26.441066 ], [ -109.802856, 26.676913 ], [ -110.390625, 27.161808 ], [ -110.643311, 27.858504 ], [ -111.181641, 27.941034 ], [ -111.758423, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.269287, 29.267233 ], [ -112.500000, 29.592565 ], [ -112.807617, 30.021544 ], [ -112.939453, 30.306503 ] ] ], [ [ [ -112.939453, 28.357568 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.566721 ], [ -112.456055, 27.527758 ], [ -112.247314, 27.171582 ], [ -111.615601, 26.662187 ], [ -111.286011, 25.730633 ], [ -110.989380, 25.294371 ], [ -110.709229, 24.826625 ], [ -110.654297, 24.297040 ], [ -110.170898, 24.266997 ], [ -109.769897, 23.810475 ], [ -109.407349, 23.362429 ], [ -109.434814, 23.185813 ], [ -109.852295, 22.816694 ], [ -110.033569, 22.821757 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.670532, 24.482149 ], [ -112.181396, 24.736853 ], [ -112.148438, 25.468074 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.357568 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.011975 ], [ -89.598999, 48.008300 ], [ -90.000000, 48.096426 ], [ -90.829468, 48.268569 ], [ -91.642456, 48.140432 ], [ -92.609253, 48.451066 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.641724, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.158081, 48.998240 ], [ -112.939453, 48.998240 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.050575 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.703125, 63.609658 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.024105 ], [ -94.240723, 60.898388 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.213501, 58.782438 ], [ -92.763062, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.895386, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -89.560547, 72.993696 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.993696 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.521606, 70.190688 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.497994 ], [ -90.549316, 68.475895 ], [ -90.000000, 68.802028 ], [ -89.560547, 69.058749 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.732354 ], [ -110.797119, 67.805095 ], [ -109.945679, 67.980813 ], [ -108.880005, 67.382150 ], [ -107.792358, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.165894, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.342407, 68.560384 ], [ -104.337158, 68.017854 ], [ -103.222046, 68.097907 ], [ -101.453247, 67.646855 ], [ -99.904175, 67.805095 ], [ -98.442993, 67.782258 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.578447 ], [ -96.119385, 68.238859 ], [ -96.124878, 67.293256 ], [ -95.487671, 68.089709 ], [ -94.685669, 68.063046 ], [ -94.235229, 69.068563 ], [ -95.306396, 69.685711 ], [ -96.470947, 70.089918 ], [ -96.388550, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.075443 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.463501, 70.993717 ], [ -102.788086, 70.497408 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.431030, 68.752315 ], [ -104.238281, 68.909028 ], [ -105.957642, 69.180137 ], [ -107.122192, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.533203, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.556368 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.888954 ], [ -112.500000, 72.947042 ], [ -112.439575, 72.955095 ], [ -111.049805, 72.450448 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.187866, 71.651562 ], [ -107.687988, 72.065456 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -100.354614, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.377319, 73.760425 ], [ -97.119141, 73.470673 ], [ -98.052979, 72.990483 ], [ -96.542358, 72.559438 ], [ -96.718140, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.321899, 71.357067 ], [ -100.014038, 71.737827 ], [ -102.502441, 72.509979 ], [ -102.480469, 72.830674 ], [ -100.437012, 72.705372 ], [ -101.541138, 73.359348 ], [ -100.354614, 73.843173 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.267700, 68.756296 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.915405, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.099501 ], [ -91.790771, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.268188, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.031494, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -89.560547, 72.987269 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.585738 ], [ -90.203247, 72.235514 ], [ -90.000000, 72.476930 ], [ -89.560547, 72.987269 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.099501 ], [ -91.790771, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.366821, 73.898111 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.209839, 76.202037 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.880737, 75.969558 ], [ -105.704956, 75.479263 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -112.500000, 74.413974 ], [ -112.939453, 74.406593 ], [ -112.939453, 74.920855 ], [ -112.500000, 75.014886 ], [ -111.796875, 75.161894 ], [ -112.500000, 75.143595 ], [ -112.939453, 75.132323 ], [ -112.939453, 76.184995 ], [ -112.587891, 76.141643 ], [ -112.500000, 76.113985 ], [ -110.813599, 75.549340 ], [ -109.066772, 75.473753 ], [ -110.494995, 76.429449 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.160825 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.604004, 76.778142 ], [ -90.741577, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.750830 ], [ -89.560547, 74.500817 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -92.422485, 74.837747 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.960083, 76.441044 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.160825 ] ] ], [ [ [ -94.850464, 75.647708 ], [ -93.977051, 75.296341 ], [ -93.614502, 74.979336 ], [ -94.158325, 74.593027 ], [ -95.608521, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.850464, 75.647708 ] ] ], [ [ [ -98.497925, 76.720223 ], [ -97.734375, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.157349, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.881958, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.562866, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.981079, 76.646840 ], [ -98.574829, 76.588356 ], [ -98.497925, 76.720223 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.949585, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.768311, 79.171335 ], [ -93.526611, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.623047, 79.171335 ], [ -103.529663, 79.165141 ], [ -100.827026, 78.800913 ], [ -100.057983, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.018734 ], [ -102.947388, 78.342753 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.419312, 78.918720 ], [ -105.468750, 79.171335 ], [ -105.485229, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 76.959094 ], [ -89.560547, 76.745436 ], [ -89.615479, 76.951655 ], [ -89.560547, 76.959094 ] ] ], [ [ [ -111.264038, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.187378, 77.697553 ], [ -112.049561, 77.408678 ], [ -112.500000, 77.508873 ], [ -112.939453, 77.604745 ], [ -112.939453, 77.967310 ], [ -112.725220, 78.050621 ], [ -112.500000, 78.066533 ], [ -111.264038, 78.152551 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.421997, 77.819847 ], [ -93.718872, 77.634189 ], [ -93.839722, 77.519561 ], [ -94.295654, 77.491038 ], [ -96.168823, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.629761, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.828247, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082425 ], [ -98.552856, 78.457624 ], [ -98.629761, 78.872169 ] ] ], [ [ [ -111.500244, 78.849883 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.879517, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.849883 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.490723, 79.301620 ], [ -103.623047, 79.171335 ], [ -103.529663, 79.165141 ], [ -102.958374, 79.088462 ], [ -105.452271, 79.088462 ], [ -105.468750, 79.171335 ], [ -105.490723, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.131592, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.938599, 79.088462 ], [ -93.933105, 79.113389 ], [ -93.768311, 79.171335 ], [ -93.147583, 79.379856 ], [ -94.971313, 79.372767 ], [ -96.075439, 79.704870 ], [ -96.707153, 80.158078 ], [ -96.015015, 80.602293 ], [ -95.322876, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.735107, 81.206460 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ], [ -90.000000, 81.165215 ], [ -90.197754, 81.260042 ], [ -91.367798, 81.553040 ], [ -91.587524, 81.894580 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ] ] ] ] } } ] } ] } , @@ -2436,289 +2425,289 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.259898 ], [ -73.245850, -80.416622 ], [ -71.444092, -80.690677 ], [ -70.015869, -81.004326 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.388473 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.192383, -75.791336 ], [ -67.500000, -75.843825 ], [ -68.444824, -76.006799 ], [ -69.796143, -76.222983 ], [ -70.598145, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.239380, -76.712650 ], [ -76.926270, -77.104554 ], [ -75.399170, -77.281113 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.790239 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.376953, -73.898111 ], [ -76.223145, -73.969561 ], [ -75.245361, -73.898111 ], [ -67.060547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -66.772419 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.342036 ], [ -90.087891, -73.323130 ], [ -90.000000, -73.245712 ], [ -89.225464, -72.559438 ], [ -88.423462, -73.009755 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.088231 ], [ -85.193481, -73.480047 ], [ -83.880615, -73.519052 ], [ -82.666626, -73.637077 ], [ -81.469116, -73.852342 ], [ -80.689087, -73.480047 ], [ -80.293579, -73.126540 ], [ -79.299316, -73.519052 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.637077 ], [ -76.223145, -73.969561 ], [ -74.888306, -73.872191 ], [ -73.850098, -73.655637 ], [ -72.833862, -73.401769 ], [ -71.619873, -73.264704 ], [ -70.208130, -73.147255 ], [ -68.933716, -73.009755 ], [ -67.955933, -72.793339 ], [ -67.500000, -72.549557 ], [ -67.368164, -72.480238 ], [ -67.131958, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.328950 ], [ -67.565918, -71.246122 ], [ -67.917480, -70.853683 ], [ -68.230591, -70.462534 ], [ -68.483276, -70.108616 ], [ -68.543701, -69.718107 ], [ -68.444824, -69.326079 ], [ -67.977905, -68.952473 ], [ -67.582397, -68.542306 ], [ -67.500000, -68.332348 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.327160 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.876188 ], [ -67.060547, -66.772419 ] ] ], [ [ [ -70.252075, -68.879358 ], [ -69.724731, -69.250312 ], [ -69.488525, -69.622685 ], [ -69.060059, -70.074947 ], [ -68.724976, -70.504742 ], [ -68.450317, -70.956113 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.092500 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.367441 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.661935 ], [ -73.916016, -71.269067 ], [ -73.229370, -71.152294 ], [ -72.075806, -71.191296 ], [ -71.779175, -70.681787 ], [ -71.724243, -70.309486 ], [ -71.740723, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.252075, -68.879358 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.917480, -55.528631 ], [ -68.148193, -55.612487 ], [ -68.642578, -55.581450 ], [ -69.016113, -55.528631 ], [ -67.917480, -55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.519564 ], [ -68.631592, -52.636397 ], [ -68.631592, -54.870285 ], [ -67.500000, -54.870285 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.148193, -55.612487 ], [ -68.642578, -55.581450 ], [ -69.230347, -55.497527 ], [ -69.955444, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.262573, -54.495568 ], [ -73.284302, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.716216 ], [ -71.109009, -54.075506 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.932086 ], [ -69.345703, -52.519564 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.746216, -42.053372 ], [ -72.147217, -42.252918 ], [ -71.916504, -43.409038 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.328735, -44.406316 ], [ -71.224365, -44.785734 ], [ -71.658325, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.916504, -46.886477 ], [ -72.449341, -47.739323 ], [ -72.328491, -48.242967 ], [ -72.647095, -48.879167 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.380502 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.677316 ], [ -72.328491, -51.426614 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.143602 ], [ -68.571167, -52.298402 ], [ -69.461060, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.004639, -53.833081 ], [ -71.427612, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.701782, -52.835958 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.976196, -51.044848 ], [ -75.481567, -50.376999 ], [ -75.607910, -48.672826 ], [ -75.184937, -47.713458 ], [ -74.124756, -46.939012 ], [ -75.646362, -46.649436 ], [ -74.690552, -45.763691 ], [ -74.349976, -44.103365 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.118599 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.225193 ], [ -74.020386, -41.795888 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.631592, -52.636397 ], [ -68.252563, -53.100621 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.168866 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.870285 ], [ -68.631592, -54.870285 ], [ -68.631592, -52.636397 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.398450 ], [ -67.291260, -45.552525 ], [ -67.500000, -46.088472 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.647428 ], [ -67.164917, -48.698212 ], [ -67.500000, -49.300054 ], [ -67.818604, -49.869857 ], [ -68.730469, -50.264765 ], [ -69.136963, -50.732978 ], [ -68.812866, -51.771239 ], [ -68.148193, -52.348763 ], [ -68.571167, -52.298402 ], [ -69.499512, -52.143602 ], [ -71.916504, -52.008555 ], [ -72.328491, -51.426614 ], [ -72.312012, -50.677316 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.380502 ], [ -73.416138, -49.317961 ], [ -72.647095, -48.879167 ], [ -72.328491, -48.242967 ], [ -72.449341, -47.739323 ], [ -71.916504, -46.886477 ], [ -71.553955, -45.560218 ], [ -71.658325, -44.972571 ], [ -71.224365, -44.785734 ], [ -71.328735, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.409038 ], [ -72.147217, -42.252918 ], [ -71.746216, -42.053372 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.208618, -21.534847 ], [ -68.093262, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.104492, -22.735657 ], [ -67.060547, -22.826820 ], [ -67.060547, -23.216107 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -68.417358, -24.517139 ], [ -68.384399, -26.185018 ], [ -68.593140, -26.504989 ], [ -68.296509, -26.897578 ], [ -68.999634, -27.522887 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.916992, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.091542 ], [ -69.812622, -33.275435 ], [ -69.818115, -34.193630 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.119995, -36.659606 ], [ -71.119995, -37.575059 ], [ -70.812378, -38.552461 ], [ -71.411133, -38.916682 ], [ -71.680298, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.943436 ], [ -73.218384, -39.257778 ], [ -73.504028, -38.281313 ], [ -73.586426, -37.155939 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.509872 ], [ -71.861572, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.921076 ], [ -71.372681, -30.097613 ], [ -71.488037, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.724487, -25.705888 ], [ -70.405884, -23.629427 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.208618, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.684984 ], [ -67.104492, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.093262, -21.943046 ], [ -68.208618, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ] ] ], [ [ [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.216107 ], [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.680298, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.812378, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.119995, -36.659606 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.193630 ], [ -69.812622, -33.275435 ], [ -70.076294, -33.091542 ], [ -70.537720, -31.363018 ], [ -69.916992, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -68.999634, -27.522887 ], [ -68.296509, -26.897578 ], [ -68.593140, -26.504989 ], [ -68.384399, -26.185018 ], [ -68.417358, -24.517139 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -67.060547, -23.216107 ] ] ], [ [ [ -67.060547, -22.826820 ], [ -67.104492, -22.735657 ], [ -67.060547, -22.684984 ], [ -67.060547, -22.826820 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.691528, -3.743671 ], [ -70.048828, -2.723583 ], [ -70.812378, -2.257106 ], [ -71.411133, -2.344926 ], [ -71.773682, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.070068, -2.306506 ], [ -73.657837, -1.257834 ], [ -74.124756, -1.005197 ], [ -74.443359, -0.532829 ], [ -75.108032, -0.054932 ], [ -75.371704, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.294556, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.800171, 0.082397 ], [ -75.651855, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.234375, -0.911827 ], [ -75.547485, -1.559866 ], [ -76.635132, -2.608352 ], [ -77.838135, -3.003384 ], [ -78.453369, -3.875216 ], [ -78.640137, -4.549046 ], [ -79.205933, -4.959615 ], [ -79.623413, -4.455951 ], [ -80.029907, -4.346411 ], [ -80.441895, -4.423090 ], [ -80.469360, -4.061536 ], [ -80.183716, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.657738 ], [ -79.985962, -2.218684 ], [ -80.370483, -2.685174 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.966167 ], [ -80.936279, -1.060120 ], [ -80.584717, -0.906334 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.362546 ], [ -80.035400, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.532829 ], [ -74.124756, -1.005197 ], [ -73.657837, -1.257834 ], [ -73.070068, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.773682, -2.169281 ], [ -71.411133, -2.344926 ], [ -70.812378, -2.257106 ], [ -70.048828, -2.723583 ], [ -70.691528, -3.743671 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.253290 ], [ -70.927734, -4.401183 ], [ -71.746216, -4.592852 ], [ -72.894287, -5.276948 ], [ -72.965698, -5.741708 ], [ -73.218384, -6.091398 ], [ -73.119507, -6.631870 ], [ -73.723755, -6.920974 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.525873 ], [ -73.569946, -8.423470 ], [ -73.015137, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.055403 ], [ -71.301270, -10.077037 ], [ -70.482788, -9.492408 ], [ -70.548706, -11.011297 ], [ -70.092773, -11.124507 ], [ -69.526978, -10.951978 ], [ -68.664551, -12.559925 ], [ -68.878784, -12.897489 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.340210, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.581194 ], [ -69.856567, -18.093644 ], [ -70.372925, -18.349312 ], [ -71.372681, -17.774843 ], [ -71.460571, -17.361125 ], [ -73.443604, -16.357039 ], [ -75.239868, -15.268288 ], [ -76.008911, -14.647368 ], [ -76.420898, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.535278, -6.539103 ], [ -81.249390, -6.135093 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.183716, -3.820408 ], [ -80.469360, -4.061536 ], [ -80.441895, -4.423090 ], [ -80.029907, -4.346411 ], [ -79.623413, -4.455951 ], [ -79.205933, -4.959615 ], [ -78.640137, -4.549046 ], [ -78.453369, -3.875216 ], [ -77.838135, -3.003384 ], [ -76.635132, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.911827 ], [ -75.371704, -0.153808 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.581194 ], [ -69.098511, -18.260653 ], [ -68.966675, -18.984220 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.219604, -21.493964 ], [ -68.093262, -21.943046 ], [ -67.977905, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.164185, -19.756364 ], [ -70.372925, -18.349312 ], [ -69.856567, -18.093644 ], [ -69.592896, -17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ], [ -67.977905, -22.350076 ], [ -68.093262, -21.943046 ], [ -68.219604, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.966675, -18.984220 ], [ -69.098511, -18.260653 ], [ -69.592896, -17.581194 ], [ -68.961182, -16.499299 ], [ -69.389648, -15.660065 ], [ -69.158936, -15.326572 ], [ -69.340210, -14.955399 ], [ -68.950195, -14.455958 ], [ -68.928223, -13.603278 ], [ -68.878784, -12.897489 ], [ -68.664551, -12.559925 ], [ -69.526978, -10.951978 ], [ -68.785400, -11.038255 ], [ -68.269043, -11.016689 ], [ -68.049316, -10.714587 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.714587 ], [ -68.269043, -11.016689 ], [ -68.785400, -11.038255 ], [ -69.526978, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.011297 ], [ -70.482788, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.185669, -10.055403 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.525873 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.920974 ], [ -73.119507, -6.631870 ], [ -73.218384, -6.091398 ], [ -72.965698, -5.741708 ], [ -72.894287, -5.276948 ], [ -71.746216, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.253290 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.050171, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.434692, 19.471771 ], [ -87.588501, 19.041349 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.516075 ], [ -88.489380, 18.484819 ], [ -88.846436, 17.884659 ], [ -89.027710, 17.999632 ], [ -89.148560, 17.957832 ], [ -89.143066, 17.806226 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.730428 ], [ -90.280151, 20.997343 ], [ -90.000000, 21.110125 ], [ -89.598999, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.458181 ], [ -87.050171, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.014768 ], [ -89.230957, 15.887376 ], [ -88.928833, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.588013, 14.360191 ], [ -89.533081, 14.243087 ], [ -89.719849, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.093384, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.104858, 18.349312 ], [ -88.121338, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.302612, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.357544, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.731079, 16.235772 ], [ -88.928833, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.148560, 17.014768 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.957832 ], [ -89.027710, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.489380, 18.484819 ], [ -88.302612, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.351807, 14.424040 ], [ -89.060669, 14.338904 ], [ -88.840942, 14.141902 ], [ -88.538818, 13.982046 ], [ -88.505859, 13.843414 ], [ -88.066406, 13.966054 ], [ -87.857666, 13.891411 ], [ -87.725830, 13.784737 ], [ -87.791748, 13.384276 ], [ -87.901611, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.840942, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.093384, 13.736717 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.719849, 14.136576 ], [ -89.533081, 14.243087 ], [ -89.588013, 14.360191 ], [ -89.351807, 14.424040 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.855674 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.776245, 15.421910 ], [ -83.408203, 15.268288 ], [ -83.144531, 14.997852 ], [ -83.490601, 15.013769 ], [ -83.627930, 14.881087 ], [ -83.973999, 14.748323 ], [ -84.226685, 14.748323 ], [ -84.451904, 14.620794 ], [ -84.649658, 14.668626 ], [ -84.819946, 14.817371 ], [ -84.924316, 14.790817 ], [ -85.050659, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.512085, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.094360, 14.040673 ], [ -86.314087, 13.768731 ], [ -86.522827, 13.779402 ], [ -86.753540, 13.752725 ], [ -86.731567, 13.261333 ], [ -86.879883, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.983148 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.725830, 13.784737 ], [ -87.857666, 13.891411 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.843414 ], [ -88.538818, 13.982046 ], [ -88.840942, 14.141902 ], [ -89.060669, 14.338904 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.866242 ], [ -87.615967, 15.876809 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.845105 ], [ -86.901855, 15.755249 ], [ -86.440430, 15.781682 ], [ -86.121826, 15.892659 ], [ -86.000977, 16.003576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.013769 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.281860, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.518066, 13.565902 ], [ -83.551025, 13.127629 ], [ -83.496094, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.318536 ], [ -83.721313, 11.894228 ], [ -83.649902, 11.630716 ], [ -83.853149, 11.372339 ], [ -83.809204, 11.102947 ], [ -83.655396, 10.941192 ], [ -83.897095, 10.725381 ], [ -84.188232, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.216122 ], [ -85.709839, 11.086775 ], [ -86.055908, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.141376 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.555542, 13.063426 ], [ -87.390747, 12.913552 ], [ -87.319336, 12.983148 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.255986 ], [ -86.731567, 13.261333 ], [ -86.753540, 13.752725 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.768731 ], [ -86.094360, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.512085, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.050659, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.817371 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.620794 ], [ -84.226685, 14.748323 ], [ -83.973999, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.013769 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ] ] ], [ [ [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.991943, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.875226 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.111816, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.248901, 22.350076 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.364014, 22.350076 ], [ -83.248901, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.216122 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.358521, 11.000512 ], [ -84.188232, 10.795537 ], [ -83.897095, 10.725381 ], [ -83.655396, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.990491 ], [ -82.545776, 9.568251 ], [ -82.930298, 9.476154 ], [ -82.924805, 9.074976 ], [ -82.721558, 8.923060 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.624472 ], [ -82.913818, 8.423470 ], [ -82.963257, 8.222364 ], [ -83.507080, 8.445205 ], [ -83.710327, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.908081, 9.291886 ], [ -84.303589, 9.486990 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.973755, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.833567 ], [ -85.660400, 9.930977 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.439196 ], [ -85.660400, 10.752366 ], [ -85.940552, 10.892648 ], [ -85.561523, 11.216122 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.934115 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.509535 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.385431 ], [ -78.623657, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.133789, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.963257, 8.222364 ], [ -82.913818, 8.423470 ], [ -82.831421, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.923060 ], [ -82.924805, 9.074976 ], [ -82.930298, 9.476154 ], [ -82.545776, 9.568251 ], [ -82.188721, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.716309, 9.031578 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.524292, 9.112945 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -77.568970, 18.490029 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.870060 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.943970, 18.615013 ], [ -71.685791, 18.318026 ], [ -71.707764, 18.046644 ], [ -72.372437, 18.213698 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.921509, 18.030975 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.449097, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.789917, 19.103648 ], [ -72.784424, 19.482129 ], [ -73.416138, 19.637414 ], [ -73.190918, 19.916548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.295590 ], [ -69.224854, 19.311143 ], [ -69.252319, 19.015384 ], [ -68.807373, 18.979026 ], [ -68.318481, 18.609807 ], [ -68.692017, 18.203262 ], [ -69.164429, 18.422290 ], [ -69.625854, 18.380592 ], [ -69.955444, 18.427502 ], [ -70.131226, 18.245003 ], [ -70.515747, 18.182388 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.281518 ], [ -71.400146, 17.596903 ], [ -71.658325, 17.759150 ], [ -71.707764, 18.046644 ], [ -71.685791, 18.318026 ], [ -71.943970, 18.615013 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.377563 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.775948 ], [ -71.971436, 11.609193 ], [ -72.229614, 11.108337 ], [ -72.614136, 10.822515 ], [ -72.905273, 10.450000 ], [ -73.026123, 9.736128 ], [ -73.306274, 9.150909 ], [ -72.789917, 9.085824 ], [ -72.658081, 8.624472 ], [ -72.438354, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.443848, 7.422389 ], [ -72.196655, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.102322 ], [ -68.983154, 6.206090 ], [ -68.263550, 6.151478 ], [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.096860 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.716264 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.822344 ], [ -67.500000, 2.641276 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.861855 ], [ -67.066040, 1.131518 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.219360, 0.983228 ], [ -69.252319, 0.604237 ], [ -69.450073, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.713745, -0.439449 ], [ -74.575195, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.371704, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.294556, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.667847, 0.823946 ], [ -77.854614, 0.807468 ], [ -78.854370, 1.378651 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.268084 ], [ -78.425903, 2.630301 ], [ -77.931519, 2.696148 ], [ -77.508545, 3.326986 ], [ -77.129517, 3.847812 ], [ -77.497559, 4.088932 ], [ -77.305298, 4.669505 ], [ -77.530518, 5.583184 ], [ -77.316284, 5.845545 ], [ -77.475586, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.934115 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.640765 ], [ -76.085815, 9.335252 ], [ -75.673828, 9.443643 ], [ -75.662842, 9.774025 ], [ -75.481567, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.196167, 11.313094 ], [ -73.416138, 11.226898 ], [ -72.625122, 11.732924 ], [ -72.240601, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.581909, 11.458491 ], [ -68.884277, 11.442339 ], [ -68.230591, 10.887254 ], [ -68.192139, 10.552622 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.861855 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.500000, 2.641276 ], [ -67.807617, 2.822344 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.716264 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.340698, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -68.263550, 6.151478 ], [ -68.983154, 6.206090 ], [ -69.389648, 6.102322 ], [ -70.092773, 6.959144 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.196655, 7.340675 ], [ -72.443848, 7.422389 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.438354, 8.407168 ], [ -72.658081, 8.624472 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.150909 ], [ -73.026123, 9.736128 ], [ -72.905273, 10.450000 ], [ -72.614136, 10.822515 ], [ -72.229614, 11.108337 ], [ -71.971436, 11.609193 ], [ -71.334229, 11.775948 ], [ -71.361694, 11.539234 ], [ -71.949463, 11.420802 ], [ -71.619873, 10.968157 ], [ -71.630859, 10.444598 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.069551 ], [ -71.262817, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.400146, 10.968157 ], [ -70.153198, 11.377724 ], [ -70.296021, 11.845847 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.854370, 1.378651 ], [ -77.854614, 0.807468 ], [ -77.667847, 0.823946 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.800171, 0.082397 ], [ -75.651855, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.322266, -0.439449 ], [ -80.447388, -0.439449 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.983228 ], [ -78.854370, 1.378651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.575195, -0.439449 ], [ -75.322266, -0.439449 ], [ -75.371704, -0.153808 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.450073, 0.708600 ], [ -69.252319, 0.604237 ], [ -69.219360, 0.983228 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.938477, 41.310824 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.569946, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.328247, 40.979898 ], [ -72.240601, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.938477, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.050171, 21.545066 ], [ -87.039185, 21.534847 ], [ -87.127075, 21.534847 ], [ -87.050171, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ] ] ], [ [ [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ] ] ], [ [ [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.209911 ], [ -77.887573, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.777710, 23.709924 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.209911 ] ] ], [ [ [ -77.788696, 27.039557 ], [ -76.997681, 26.588527 ], [ -77.173462, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.338257, 26.529565 ], [ -77.788696, 26.926968 ], [ -77.788696, 27.039557 ] ] ], [ [ [ -78.508301, 26.868181 ], [ -77.849121, 26.838776 ], [ -77.821655, 26.578702 ], [ -78.909302, 26.421390 ], [ -78.980713, 26.789751 ], [ -78.508301, 26.868181 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.190863 ], [ -81.403198, 23.115102 ], [ -80.617676, 23.104997 ], [ -79.678345, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.991943, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.981201, 21.534847 ], [ -78.700562, 21.534847 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.172241, 22.385635 ], [ -81.793213, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.232178, 22.563293 ], [ -83.776245, 22.786311 ], [ -83.265381, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.265625, 23.190863 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.664072 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.421694 ], [ -68.510742, 49.066668 ], [ -69.955444, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.648071, 48.301467 ], [ -67.500000, 48.759810 ], [ -67.060547, 48.933326 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.185979 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.658569, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.350220, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.821899, 43.628123 ], [ -78.722534, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.441406, 41.677015 ], [ -82.688599, 41.677015 ], [ -83.029175, 41.832735 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.897339, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.144287, 46.513516 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.874878, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.301467 ], [ -89.274902, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.188063 ], [ -90.439453, 56.022948 ], [ -87.363281, 56.022948 ], [ -87.324829, 55.998381 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.278353 ], [ -81.403198, 52.157085 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.532669 ], [ -78.601685, 52.562995 ], [ -79.123535, 54.139915 ], [ -79.832153, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.570904 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.770137 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.569946, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.328247, 40.979898 ], [ -72.240601, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.267822, 40.647304 ], [ -73.981934, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.069824, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ] ] ], [ [ [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 63.753350 ], [ -90.439453, 66.687784 ], [ -82.584229, 66.687784 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -86.066895, 66.055946 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.098607 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.439453, 63.753350 ] ] ], [ [ [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.201759 ], [ -77.299805, 58.051725 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.772217, 60.759160 ], [ -78.107300, 62.319003 ], [ -77.409668, 62.550325 ], [ -75.695801, 62.278146 ], [ -74.668579, 62.180887 ], [ -73.839111, 62.443783 ], [ -72.910767, 62.103883 ], [ -71.674805, 61.525314 ], [ -71.372681, 61.137933 ], [ -69.592896, 61.060944 ], [ -69.620361, 60.220719 ], [ -69.285278, 58.958507 ], [ -68.373413, 58.802362 ], [ -67.648315, 58.211238 ], [ -67.500000, 58.269066 ], [ -67.060547, 58.439108 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ] ] ], [ [ [ -79.931030, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.157806 ], [ -79.656372, 61.632507 ], [ -80.101318, 61.718515 ], [ -80.359497, 62.016374 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.385277 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.313242 ], [ -68.016357, 66.262434 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.339347 ], [ -67.088013, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.967709 ], [ -67.060547, 62.709425 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.329208 ], [ -71.021118, 62.910230 ], [ -72.235107, 63.398902 ], [ -71.883545, 63.680377 ], [ -73.377686, 64.194423 ], [ -74.833374, 64.677969 ], [ -74.816895, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.572037 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.453697 ], [ -74.295044, 65.811781 ], [ -73.943481, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.248901, 62.915233 ], [ -81.875610, 62.905227 ], [ -81.897583, 62.711944 ], [ -83.067627, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.248901, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.160522, 65.658275 ], [ -84.973755, 65.217591 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.787476, 64.767101 ], [ -81.639404, 64.456218 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.726615 ], [ -80.991211, 63.411198 ], [ -82.545776, 63.651136 ], [ -83.106079, 64.101007 ], [ -84.100342, 63.570566 ], [ -85.523071, 63.052470 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.541211 ], [ -86.352539, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ], [ -89.038696, 56.851976 ], [ -88.038940, 56.471594 ], [ -87.324829, 55.998381 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.354004, 73.760425 ], [ -78.063354, 73.652545 ], [ -76.338501, 73.102607 ], [ -76.250610, 72.825808 ], [ -77.316284, 72.854981 ], [ -78.392944, 72.876019 ], [ -79.486084, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.875854, 73.332585 ], [ -80.831909, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -85.523071, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.963501, 68.132715 ], [ -81.260376, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -85.902100, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.542306 ], [ -90.000000, 68.802028 ], [ -89.214478, 69.258095 ], [ -88.016968, 68.614531 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.578003, 68.784144 ], [ -85.523071, 69.881231 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.775757, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.315063, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.749410 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767067 ], [ -74.097290, 71.330709 ], [ -72.240601, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.281428 ], [ -67.060547, 69.164512 ], [ -67.500000, 69.052858 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.360725 ], [ -67.060547, 68.238859 ], [ -67.060547, 66.357339 ], [ -67.247314, 66.337505 ], [ -73.910522, 66.337505 ], [ -73.679810, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.844360, 68.554359 ], [ -76.871338, 68.895187 ], [ -76.228638, 69.146920 ], [ -77.288818, 69.769456 ], [ -78.167725, 69.826365 ], [ -78.958740, 70.166473 ], [ -79.491577, 69.871782 ], [ -81.304321, 69.742846 ], [ -84.946289, 69.966086 ], [ -87.061157, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.511108, 70.761586 ], [ -88.467407, 71.217844 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.585738 ], [ -90.203247, 72.235514 ], [ -90.000000, 72.476930 ], [ -89.434204, 73.129728 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -75.893555, 68.287684 ], [ -75.113525, 68.009628 ], [ -75.102539, 67.582003 ], [ -75.217896, 67.443336 ], [ -75.866089, 67.148632 ], [ -76.986694, 67.099518 ], [ -77.233887, 67.588287 ], [ -76.810913, 68.149077 ], [ -75.893555, 68.287684 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.598864 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.146240, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.146240, 79.253586 ] ] ], [ [ [ -86.209717, 79.253586 ], [ -86.588745, 79.171335 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.249150 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.209717, 79.253586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.369100 ] ] ], [ [ [ -67.060547, 77.395499 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.163075 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.395499 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.637210 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.588745, 79.171335 ], [ -86.967773, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.637210 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.650118 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.000000, 81.165215 ], [ -90.197754, 81.260042 ], [ -90.439453, 81.321593 ], [ -90.439453, 82.042699 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.688599, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ] ] ], [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.065796, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.021851, 80.117621 ], [ -67.500000, 80.359755 ], [ -67.153931, 80.515792 ], [ -67.060547, 80.535685 ], [ -67.060547, 79.991442 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.501099, 82.652438 ], [ -84.732056, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -82.765503, 82.620052 ], [ -82.688599, 82.676285 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.304810, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.717773, 83.064132 ], [ -72.833862, 83.233191 ], [ -68.499756, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.765503, 82.620052 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.188843, -82.620052 ], [ -59.073486, -82.676285 ], [ -58.710938, -82.845861 ], [ -58.222046, -83.218288 ], [ -57.008057, -82.865673 ], [ -55.942383, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ] ] ], [ [ [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ], [ -65.703735, -81.474408 ], [ -63.253784, -81.748454 ], [ -61.550903, -82.042699 ], [ -59.688721, -82.375504 ], [ -59.073486, -82.676285 ], [ -58.958130, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -56.255493, -82.732092 ], [ -55.942383, -82.676285 ], [ -55.365601, -82.571917 ], [ -53.618774, -82.258000 ], [ -51.542358, -82.003822 ], [ -49.762573, -81.729511 ], [ -47.274170, -81.709734 ], [ -45.000000, -81.836284 ], [ -44.824219, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.255493, -82.732092 ] ] ], [ [ [ -44.560547, -79.088462 ], [ -44.560547, -80.274756 ], [ -44.879150, -80.339497 ], [ -45.000000, -80.357916 ], [ -46.505127, -80.594217 ], [ -48.383789, -80.829156 ], [ -50.482178, -81.025773 ], [ -52.849731, -80.966455 ], [ -54.162598, -80.633634 ], [ -53.986816, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ] ] ], [ [ [ -60.611572, -79.629002 ], [ -59.573364, -80.040014 ], [ -59.864502, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.254028, -80.863237 ], [ -64.489746, -80.922361 ], [ -65.742188, -80.588829 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.256180 ], [ -64.039307, -80.295150 ], [ -61.885986, -80.392815 ], [ -61.138916, -79.980935 ], [ -60.611572, -79.629002 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.664429, -77.831431 ], [ -45.153809, -78.047209 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.811577 ], [ -49.306641, -78.458723 ], [ -48.658447, -78.047209 ], [ -48.153076, -78.047209 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.094971, -73.898111 ], [ -61.259766, -74.019543 ], [ -61.375122, -74.107024 ], [ -61.962891, -74.440519 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.352417, -75.262841 ], [ -65.863037, -75.635448 ], [ -67.192383, -75.791336 ], [ -67.500000, -75.843825 ], [ -67.939453, -75.920199 ], [ -67.939453, -73.898111 ], [ -61.094971, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.550659, -66.337505 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.837326 ], [ -64.879761, -67.150765 ], [ -65.505981, -67.582003 ], [ -65.665283, -67.954025 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.914958 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.992415 ], [ -62.276001, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.512451, -71.088305 ], [ -61.375122, -72.009552 ], [ -61.083984, -72.382410 ], [ -61.001587, -72.773828 ], [ -60.688477, -73.166355 ], [ -60.825806, -73.695780 ], [ -61.259766, -74.019543 ], [ -61.375122, -74.107024 ], [ -61.435547, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.783586 ], [ -67.500000, -72.549557 ], [ -67.368164, -72.480238 ], [ -67.131958, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.328950 ], [ -67.565918, -71.246122 ], [ -67.939453, -70.824836 ], [ -67.939453, -68.911005 ], [ -67.582397, -68.542306 ], [ -67.500000, -68.332348 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.327160 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.876188 ], [ -66.582642, -66.513260 ], [ -66.280518, -66.337505 ], [ -62.550659, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.928467, -55.528631 ], [ -67.939453, -55.531739 ], [ -67.939453, -55.528631 ], [ -67.928467, -55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.917480, -55.528631 ], [ -67.939453, -55.534848 ], [ -67.939453, -55.528631 ], [ -67.917480, -55.528631 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.857616 ], [ -58.612061, -64.151347 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.601609 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.939453, -55.534848 ], [ -67.939453, -54.870285 ], [ -67.500000, -54.870285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.200818 ], [ -66.450806, -55.250946 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.870285 ], [ -67.939453, -54.870285 ], [ -67.939453, -53.569676 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.144165, -40.676472 ], [ -62.666016, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.045213 ], [ -63.457031, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.496768 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.038597 ], [ -66.511230, -45.038597 ], [ -67.291260, -45.552525 ], [ -67.500000, -46.088472 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.983887, -48.133101 ], [ -67.164917, -48.698212 ], [ -67.500000, -49.300054 ], [ -67.818604, -49.869857 ], [ -67.939453, -49.919399 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.100073 ], [ -57.749634, -51.549751 ], [ -58.051758, -51.900223 ], [ -59.397583, -52.200874 ], [ -59.848022, -51.849353 ], [ -60.699463, -52.298402 ], [ -61.199341, -51.849353 ], [ -60.001831, -51.251601 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.100073 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.482106 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.482106 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.451782, -21.534847 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.374390, -22.796439 ], [ -64.962158, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.104492, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.482106 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.327124 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.176469 ], [ -48.663940, -28.188244 ], [ -48.889160, -28.676130 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.982319 ], [ -51.575317, -31.779547 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.197328 ], [ -53.371582, -33.770015 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.975342, -30.883369 ], [ -56.975098, -30.111870 ], [ -57.623291, -30.216355 ], [ -56.288452, -28.854296 ], [ -55.162354, -27.882784 ], [ -54.492188, -27.474161 ], [ -53.646240, -26.922070 ], [ -53.629761, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.160201 ], [ -54.294434, -24.572104 ], [ -54.294434, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.030518, -24.001308 ], [ -55.398560, -23.956136 ], [ -55.519409, -23.574057 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.914429, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.914429, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.030518, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.294434, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.160201 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.386401 ], [ -56.486206, -27.547242 ], [ -57.612305, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.160201 ], [ -58.809814, -24.771772 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.914429, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.771772 ], [ -57.777100, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.617554, -27.122702 ], [ -57.612305, -27.396155 ], [ -56.486206, -27.547242 ], [ -55.695190, -27.386401 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.629761, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.045333 ], [ -58.134155, -33.040903 ], [ -58.348389, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.359619, -35.978006 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.666016, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.975098, -30.111870 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.461277 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.261657 ], [ -58.134155, -33.040903 ], [ -58.145142, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.335693, -9.763198 ], [ -65.445557, -10.509417 ], [ -65.319214, -10.898042 ], [ -65.401611, -11.566144 ], [ -64.313965, -12.463396 ], [ -63.198853, -12.629618 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.491131 ], [ -61.083984, -13.480448 ], [ -60.501709, -13.774066 ], [ -60.457764, -14.354870 ], [ -60.265503, -14.647368 ], [ -60.249023, -15.077428 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.238525, -16.299051 ], [ -58.386841, -16.878147 ], [ -58.282471, -17.271973 ], [ -57.733154, -17.555009 ], [ -57.496948, -18.171950 ], [ -57.678223, -18.963442 ], [ -57.947388, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.870060 ], [ -59.117432, -19.357794 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.265015, -20.514499 ], [ -62.292480, -21.053744 ], [ -62.583618, -21.943046 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.160156, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.962158, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.752930, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.660608 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.335693, -9.763198 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.619995, -0.236205 ], [ -48.587036, -1.235866 ], [ -47.823486, -0.582265 ], [ -46.565552, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.554375 ], [ -44.560547, -1.966167 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.870483, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.947388, -19.399249 ], [ -57.678223, -18.963442 ], [ -57.496948, -18.171950 ], [ -57.733154, -17.555009 ], [ -58.282471, -17.271973 ], [ -58.386841, -16.878147 ], [ -58.238525, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.249023, -15.077428 ], [ -60.265503, -14.647368 ], [ -60.457764, -14.354870 ], [ -60.501709, -13.774066 ], [ -61.083984, -13.480448 ], [ -61.715698, -13.491131 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.629618 ], [ -64.313965, -12.463396 ], [ -65.401611, -11.566144 ], [ -65.319214, -10.898042 ], [ -65.445557, -10.509417 ], [ -65.335693, -9.763198 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.939453, -10.660608 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.357794 ], [ -58.183594, -19.870060 ], [ -58.167114, -20.174567 ], [ -57.870483, -20.730428 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.572632, -22.350076 ], [ -62.682495, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.292480, -21.053744 ], [ -62.265015, -20.514499 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.752930, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -64.160156, -22.350076 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.160156, -22.350076 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.096860 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.716264 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.822344 ], [ -67.500000, 2.641276 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.066040, 1.131518 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -67.939453, 1.697139 ], [ -67.939453, 6.222473 ], [ -67.697754, 6.266158 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.098999, 18.521283 ], [ -66.280518, 18.516075 ], [ -65.769653, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.846558, 17.973508 ], [ -66.599121, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.880493, 10.714587 ], [ -62.731934, 10.417586 ], [ -62.385864, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.292969, 7.046379 ], [ -60.545654, 6.855532 ], [ -61.160889, 6.697343 ], [ -61.138916, 6.233395 ], [ -61.408081, 5.960290 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.968628, 4.538094 ], [ -62.083740, 4.160158 ], [ -62.803345, 4.006740 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.627075, 4.149201 ], [ -64.813843, 4.056056 ], [ -64.368896, 3.798484 ], [ -64.407349, 3.124061 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.410787 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.198608, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.352173, 1.093073 ], [ -65.549927, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.500000, 2.641276 ], [ -67.807617, 2.822344 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.716264 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.340698, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -67.939453, 6.222473 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.201407 ], [ -64.890747, 10.077037 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.639014 ], [ -63.078003, 10.703792 ], [ -61.880493, 10.714587 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.854886 ], [ -60.935669, 10.109486 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.087854 ], [ -61.660767, 10.363555 ], [ -61.682739, 10.757763 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.100952, 7.999397 ], [ -58.480225, 7.346123 ], [ -58.452759, 6.833716 ], [ -58.079224, 6.806444 ], [ -57.145386, 5.971217 ], [ -57.304688, 5.074529 ], [ -57.914429, 4.811839 ], [ -57.859497, 4.576425 ], [ -58.046265, 4.061536 ], [ -57.601318, 3.332470 ], [ -57.282715, 3.332470 ], [ -57.150879, 2.767478 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.861855 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.680667 ], [ -58.112183, 1.504954 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.784990 ], [ -59.716187, 2.251617 ], [ -59.974365, 2.756504 ], [ -59.815063, 3.606625 ], [ -59.540405, 3.957421 ], [ -59.765625, 4.423090 ], [ -60.111694, 4.576425 ], [ -59.979858, 5.014339 ], [ -60.216064, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.408081, 5.960290 ], [ -61.138916, 6.233395 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.855532 ], [ -60.292969, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.030518, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.398804, 4.214943 ], [ -54.008789, 3.617589 ], [ -54.179077, 3.189879 ], [ -54.266968, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.096436, 2.526037 ], [ -55.568848, 2.421764 ], [ -55.975342, 2.509573 ], [ -56.074219, 2.218684 ], [ -55.903931, 2.021065 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.767478 ], [ -57.282715, 3.332470 ], [ -57.601318, 3.332470 ], [ -58.046265, 4.061536 ], [ -57.859497, 4.576425 ], [ -57.914429, 4.811839 ], [ -57.304688, 5.074529 ], [ -57.145386, 5.971217 ], [ -55.947876, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.030518, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.154679 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.937622, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.552856, 2.333949 ], [ -53.778076, 2.377857 ], [ -54.085693, 2.103409 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.398804, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.244128 ], [ -59.979858, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.540405, 3.957421 ], [ -59.815063, 3.606625 ], [ -59.974365, 2.756504 ], [ -59.716187, 2.251617 ], [ -59.644775, 1.784990 ], [ -59.029541, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.112183, 1.504954 ], [ -57.661743, 1.680667 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.861855 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.903931, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.085693, 2.103409 ], [ -53.778076, 2.377857 ], [ -53.552856, 2.333949 ], [ -53.421021, 2.054003 ], [ -52.937622, 2.125367 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.154679 ], [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.949341, 1.043643 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.619995, -0.236205 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.697139 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.352173, 1.093073 ], [ -64.610596, 1.329226 ], [ -64.198608, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.410787 ], [ -64.270020, 2.498597 ], [ -64.407349, 3.124061 ], [ -64.368896, 3.798484 ], [ -64.813843, 4.056056 ], [ -64.627075, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.803345, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.968628, 4.538094 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.267805 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.781181 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.721191, 50.081820 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.421694 ], [ -67.939453, 49.267805 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.409546, 51.587310 ], [ -55.601807, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.145630, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.585787 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.158757 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.519897, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.754098 ], [ -55.398560, 46.886477 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.390912 ], [ -56.250000, 47.632082 ], [ -57.326660, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.798828, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -67.939453, 48.585692 ], [ -67.500000, 48.759810 ], [ -66.555176, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.740693 ], [ -61.523438, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.253784, 44.668653 ], [ -64.248047, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.585692 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.106242 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.958288 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -67.500000, 44.570904 ], [ -67.939453, 44.367060 ], [ -67.939453, 47.163575 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ] ] ], [ [ [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.450607 ], [ -67.648315, 58.211238 ], [ -67.500000, 58.269066 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ] ] ], [ [ [ -67.939453, 66.271278 ], [ -67.939453, 66.687784 ], [ -61.929932, 66.687784 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.271278 ] ] ], [ [ [ -67.939453, 65.581179 ], [ -67.500000, 65.339347 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.581179 ] ] ], [ [ [ -67.939453, 63.236101 ], [ -67.500000, 62.967709 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.236101 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.235229, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.278442, 65.176112 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.083740, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.719971, 66.388161 ], [ -67.247314, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.942607 ], [ -67.939453, 70.132898 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -66.967163, 69.185993 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.942607 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.300171, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.426691 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.360352, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.570631 ], [ -53.107910, 71.205460 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.655020 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.530151, 74.019543 ], [ -57.321167, 74.710796 ], [ -58.595581, 75.098458 ], [ -58.584595, 75.517778 ], [ -61.270752, 76.102116 ], [ -63.391113, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.078346 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.357083 ], [ -66.763916, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.105086 ], [ -67.500000, 79.163075 ], [ -67.434082, 79.171335 ], [ -66.802368, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.545166, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.899800 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.545166, 82.732092 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.105086 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.107245 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.359755 ], [ -67.153931, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.670037 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.200065 ], [ -46.763306, 82.627809 ], [ -46.505127, 82.676285 ], [ -46.203003, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.670037 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.026219 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.505127, 82.676285 ], [ -45.000000, 82.948424 ], [ -44.560547, 83.026219 ] ] ] } } ] } ] } , @@ -2730,41 +2719,41 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ] ] ], [ [ [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.812068 ], [ -45.000000, -81.836284 ], [ -44.824219, -81.846419 ], [ -42.808228, -82.082145 ], [ -42.160034, -81.650916 ], [ -40.770264, -81.357161 ], [ -38.243408, -81.337327 ], [ -36.265869, -81.122084 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.769430 ], [ -30.097046, -80.592421 ], [ -28.547974, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.685059, -79.632957 ], [ -29.685059, -79.259730 ], [ -31.624146, -79.299580 ], [ -33.678589, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ] ] ], [ [ [ -43.489380, -79.088462 ], [ -43.374023, -79.516660 ], [ -43.335571, -80.025752 ], [ -44.879150, -80.339497 ], [ -45.000000, -80.357916 ], [ -45.439453, -80.427590 ], [ -45.439453, -79.088462 ], [ -43.489380, -79.088462 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ] ] ], [ [ [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.439453, -78.006183 ], [ -45.153809, -78.047209 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.478489 ], [ -43.489380, -79.085342 ], [ -43.467407, -79.171335 ], [ -43.445435, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.006183 ] ] ], [ [ [ -22.060547, -76.042617 ], [ -22.060547, -79.253586 ], [ -35.793457, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.084302 ], [ -35.776978, -78.339423 ], [ -35.326538, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.211914, -77.652997 ], [ -30.997925, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.509766, -76.497594 ], [ -26.158447, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.242592 ], [ -22.500000, -76.110030 ], [ -22.456055, -76.106073 ], [ -22.060547, -76.042617 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.880127, -21.534847 ], [ -40.946045, -21.937950 ], [ -40.957031, -21.943046 ], [ -41.753540, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.968509 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.880127, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.554375 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.417969, -2.383346 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.221680, -4.822786 ], [ -36.452637, -5.107358 ], [ -35.595703, -5.151128 ], [ -35.233154, -5.462896 ], [ -34.898071, -6.735531 ], [ -34.727783, -7.340675 ], [ -35.128784, -8.999026 ], [ -35.639648, -9.649492 ], [ -37.045898, -11.038255 ], [ -37.683105, -12.173595 ], [ -38.424683, -13.036669 ], [ -38.671875, -13.058075 ], [ -38.952026, -13.795406 ], [ -38.880615, -15.665354 ], [ -39.160767, -17.209017 ], [ -39.265137, -17.868975 ], [ -39.583740, -18.260653 ], [ -39.759521, -19.601194 ], [ -40.775757, -20.905003 ], [ -40.946045, -21.937950 ], [ -40.957031, -21.943046 ], [ -41.720581, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.189453, 66.687784 ], [ -34.200439, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.353760, 65.977798 ], [ -37.045898, 65.937514 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.682373, 64.139369 ], [ -41.187744, 63.482410 ], [ -42.819214, 62.681707 ], [ -42.418213, 61.900165 ], [ -43.379517, 60.097718 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.439453, 60.403002 ], [ -45.439453, 66.687784 ], [ -34.189453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ] ] ], [ [ [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.277992 ], [ -22.060547, 63.881808 ], [ -22.763672, 63.959085 ], [ -22.500000, 64.079404 ], [ -22.060547, 64.277992 ] ] ], [ [ [ -22.060547, 64.465691 ], [ -22.500000, 64.564960 ], [ -23.955688, 64.890928 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.225342, 65.378282 ], [ -22.500000, 65.410303 ], [ -24.323730, 65.610684 ], [ -23.648071, 66.262434 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.410154 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.465691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.321553 ], [ -22.170410, 73.308936 ], [ -22.500000, 73.308936 ], [ -23.565674, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.183484 ], [ -22.500000, 72.225455 ], [ -24.279785, 72.597266 ], [ -24.790649, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642914 ], [ -22.131958, 71.469124 ], [ -22.060547, 71.320155 ], [ -22.060547, 70.630841 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.543213, 71.430678 ], [ -25.202637, 70.752534 ], [ -26.361694, 70.226028 ], [ -23.724976, 70.183241 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.129165 ], [ -22.500000, 70.082434 ], [ -25.026855, 69.258095 ], [ -27.745972, 68.469848 ], [ -30.673828, 68.124529 ], [ -31.777954, 68.120435 ], [ -32.810669, 67.734435 ], [ -34.200439, 66.679087 ], [ -34.716797, 66.513260 ], [ -35.260620, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.410154 ], [ -22.060547, 66.377158 ], [ -22.060547, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.410154 ] ] ] } } ] } ] } , @@ -2776,13 +2765,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.515503, 82.297857 ], [ -31.898804, 82.200065 ], [ -31.398926, 82.021378 ], [ -27.855835, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.901001, 82.093487 ], [ -22.500000, 81.922414 ], [ -22.071533, 81.734251 ], [ -22.500000, 81.512599 ], [ -23.170166, 81.152551 ], [ -22.500000, 81.252526 ], [ -22.060547, 81.316618 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.806589 ], [ -45.000000, 81.737409 ], [ -44.522095, 81.660482 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.873641 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.097778, 83.519542 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888151 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.869765 ], [ -45.000000, 82.948424 ], [ -43.406982, 83.225420 ], [ -39.896851, 83.179909 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , @@ -2800,115 +2789,115 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.150850 ], [ -22.500000, -76.110030 ], [ -22.456055, -76.106073 ], [ -21.225586, -75.909504 ], [ -20.011597, -75.674916 ], [ -18.912964, -75.439268 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.793143 ], [ -15.699463, -74.497881 ], [ -15.408325, -74.107024 ], [ -15.803833, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.866455, -70.932798 ], [ -5.789795, -71.029464 ], [ -5.537109, -71.402669 ], [ -4.339600, -71.462140 ], [ -3.048706, -71.284936 ], [ -1.796265, -71.168259 ], [ -0.659180, -71.226685 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.107024 ], [ -15.803833, -74.019543 ], [ -16.463013, -73.872191 ], [ -16.111450, -73.459729 ], [ -15.446777, -73.147255 ], [ -14.408569, -72.950264 ], [ -13.309937, -72.715168 ], [ -12.293701, -72.402350 ], [ -11.508179, -72.009552 ], [ -11.019287, -71.540569 ], [ -10.294189, -71.265539 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.415771, -71.696469 ], [ -7.377319, -71.323674 ], [ -6.866455, -70.932798 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -13.013306, 21.943046 ], [ -12.930908, 21.325198 ], [ -16.847534, 21.335432 ], [ -17.061768, 20.997343 ], [ -17.017822, 21.422390 ], [ -14.749146, 21.499075 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.749146, 21.499075 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.468506, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.143678 ], [ -11.469727, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.388294 ], [ -12.205811, 12.463396 ], [ -12.277222, 12.356100 ], [ -12.496948, 12.334636 ], [ -13.216553, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.814819, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.046021, 13.795406 ], [ -14.375610, 13.624633 ], [ -14.688721, 13.629972 ], [ -15.084229, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.715698, 13.592600 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.623037 ], [ -16.463013, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.875413 ], [ -14.688721, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.795406 ], [ -13.842773, 13.507155 ], [ -14.276733, 13.282719 ], [ -14.710693, 13.298757 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.277373 ], [ -15.688477, 13.272026 ], [ -15.930176, 13.127629 ], [ -16.842041, 13.149027 ], [ -16.715698, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.397339, 13.859414 ], [ -15.084229, 13.875413 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.248760 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.173595 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.549202 ], [ -15.814819, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.334636 ], [ -12.277222, 12.356100 ], [ -12.205811, 12.463396 ], [ -11.656494, 12.388294 ], [ -11.513672, 12.441941 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.129639, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.410034, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.223267, 8.124491 ], [ -8.278198, 7.689217 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.248760 ], [ -13.699951, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.395153 ], [ -11.200562, 7.106344 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.622414 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.860628 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.501326 ], [ -9.552612, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.331870 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.801439 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.133667, 16.588817 ], [ -15.622559, 16.367580 ], [ -16.122437, 16.457159 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.098458 ], [ -16.375122, 19.596019 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.325198 ], [ -13.013306, 21.943046 ], [ -13.068237, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.225220, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.519517 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.163330, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.439453, 13.976715 ], [ 0.439453, 11.011297 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.763550, 10.935798 ], [ -1.203003, 11.011297 ], [ -2.938843, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.510132, 9.898510 ], [ -3.982544, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.377724 ], [ -5.218506, 11.711410 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.004517, 13.475106 ], [ -3.521118, 13.336175 ], [ -3.103638, 13.539201 ], [ -2.966309, 13.800741 ], [ -2.191772, 14.248411 ], [ -1.999512, 14.557001 ], [ -1.065674, 14.971320 ], [ -0.516357, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.206543, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.437500, 7.683773 ], [ -8.486938, 7.395153 ], [ -8.388062, 6.910067 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.195168 ], [ -7.992554, 6.124170 ], [ -7.569580, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.362843 ], [ -7.976074, 4.357366 ], [ -9.003296, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.395153 ], [ -10.695190, 7.939556 ], [ -10.228271, 8.407168 ], [ -10.014038, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.047974, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.328613, 9.611582 ], [ -3.982544, 9.860628 ], [ -3.510132, 9.898510 ], [ -2.828979, 9.644077 ], [ -2.559814, 8.216927 ], [ -2.982788, 7.378810 ], [ -3.246460, 6.249776 ], [ -2.812500, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.531372, 4.702354 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.362843 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.569580, 5.708914 ], [ -7.992554, 6.124170 ], [ -8.311157, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.388062, 6.910067 ], [ -8.486938, 7.395153 ], [ -8.437500, 7.683773 ], [ -8.278198, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.314777 ], [ -8.201294, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.849976, 10.136524 ], [ -6.668701, 10.428391 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.925011 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.868790 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.065674, 4.997922 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.246460, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.559814, 8.216927 ], [ -2.966309, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.011297 ], [ -0.763550, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.519517 ], [ 0.000000, 21.800308 ], [ -0.225220, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.934170 ], [ 0.439453, 13.976715 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 0.439453, 14.934170 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.439453, 11.011297 ], [ 0.439453, 8.868790 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.649811 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.925011 ], [ 0.021973, 11.016689 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.654338 ], [ -8.662720, 27.591066 ], [ -8.684692, 27.396155 ], [ -8.684692, 25.878994 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.372514 ], [ -12.875977, 23.286765 ], [ -13.117676, 22.771117 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.738159, 21.534847 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.502441, 24.771772 ], [ -12.030029, 26.032106 ], [ -11.716919, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.794556, 27.122702 ], [ -8.816528, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.509399, 41.310824 ], [ -6.849976, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.025757, 40.183070 ], [ -7.064209, 39.711413 ], [ -7.498169, 39.631077 ], [ -7.097168, 39.031986 ], [ -7.371826, 38.371809 ], [ -7.031250, 38.074041 ], [ -7.168579, 37.805444 ], [ -7.536621, 37.426888 ], [ -7.454224, 37.099003 ], [ -7.855225, 36.840065 ], [ -8.382568, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.653383 ], [ -8.838501, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.047241, 39.753657 ], [ -8.975830, 40.157885 ], [ -8.767090, 40.759741 ], [ -8.783569, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.865967, 41.310824 ], [ -6.509399, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.655488 ], [ -0.466919, 38.294248 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.672825 ], [ -3.416748, 36.659606 ], [ -4.367065, 36.677231 ], [ -4.993286, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.234741, 36.368222 ], [ -6.520386, 36.941111 ], [ -7.454224, 37.099003 ], [ -7.536621, 37.426888 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.371809 ], [ -7.097168, 39.031986 ], [ -7.498169, 39.631077 ], [ -7.064209, 39.711413 ], [ -7.025757, 40.183070 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.509399, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.759886 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.398006 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.790771, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.307373, 32.263911 ], [ -2.614746, 32.096536 ], [ -3.070679, 31.723495 ], [ -3.647461, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.500751 ], [ -5.240479, 30.002517 ], [ -6.058960, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.839862 ], [ -8.668213, 27.654338 ], [ -8.816528, 27.654338 ], [ -8.794556, 27.122702 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.106121 ], [ -12.030029, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.738159, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.679916 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.798584, 25.636574 ], [ -14.441528, 26.254010 ], [ -13.771362, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.830238 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.036020 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.651978, 33.696923 ], [ -6.910400, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.759886 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.119385, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ -1.549072, 22.791375 ], [ -0.225220, 21.943046 ], [ 0.406494, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.261992 ], [ 0.439453, 21.534847 ], [ 0.406494, 21.534847 ], [ -0.225220, 21.943046 ], [ -1.549072, 22.791375 ], [ -4.921875, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.662720, 27.591066 ], [ -8.673706, 28.839862 ], [ -7.058716, 29.578234 ], [ -6.058960, 29.730992 ], [ -5.240479, 30.002517 ], [ -4.861450, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.639352 ], [ -3.070679, 31.723495 ], [ -2.614746, 32.096536 ], [ -1.307373, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.790771, 34.529187 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.261992 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.131790 ], [ -7.366333, 54.594345 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.868725 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.669148 ], [ -9.975586, 51.818803 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.569580, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.909194 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.673934 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.975108 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.778809, 50.159305 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.062641 ], [ -4.718628, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.782751 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.663452, 54.556137 ], [ -6.196289, 53.868725 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.830896 ], [ 0.439453, 42.642041 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.032761 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.192017, 46.016039 ], [ -2.224731, 47.062638 ], [ -2.960815, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.643798 ], [ -1.933594, 49.777717 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.439453, 49.830896 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.881831 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.860962, 40.647304 ], [ -8.811035, 40.647304 ], [ -8.767090, 40.759741 ], [ -8.783569, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.992310, 41.541478 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.261719, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.568452 ], [ -5.410767, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.456906 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.032761 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.581400 ], [ 0.439453, 42.642041 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.881831 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.261719, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.024730 ], [ -7.976074, 43.747289 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.166382, 66.526392 ], [ -15.858765, 66.513260 ], [ -14.507446, 66.456275 ], [ -14.738159, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.908447, 64.363685 ], [ -17.792358, 63.677942 ], [ -18.654785, 63.497122 ], [ -22.500000, 63.930131 ], [ -22.763672, 63.959085 ], [ -22.500000, 64.079404 ], [ -21.780396, 64.401685 ], [ -22.500000, 64.564960 ], [ -22.939453, 64.663868 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.225342, 65.378282 ], [ -22.500000, 65.410303 ], [ -22.939453, 65.458261 ], [ -22.939453, 66.333095 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.410154 ], [ -20.577393, 65.732884 ], [ -19.055786, 66.275698 ], [ -17.797852, 65.993447 ], [ -16.210327, 66.513260 ], [ -16.166382, 66.526392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.004761, 58.634076 ], [ -4.075928, 57.554155 ], [ -3.054199, 57.689470 ], [ -1.961060, 57.683597 ], [ -2.219238, 56.869994 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.909194 ], [ -1.988525, 55.776573 ], [ -1.796265, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.782751 ], [ -5.059204, 55.776573 ], [ -5.339355, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.273861 ], [ -6.152344, 56.785836 ], [ -5.784302, 57.818429 ], [ -5.009766, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.004761, 58.634076 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ] ] ], [ [ [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.170410, 73.308936 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.500000, 71.642914 ], [ -22.131958, 71.469124 ], [ -21.752930, 70.663607 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.972798 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.183484 ], [ -22.500000, 72.225455 ], [ -22.939453, 72.319122 ], [ -22.939453, 72.972798 ] ] ], [ [ [ -22.939453, 70.153423 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.129165 ], [ -22.500000, 70.082434 ], [ -22.939453, 69.941607 ], [ -22.939453, 70.153423 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.410154 ], [ -21.972656, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.410154 ] ] ], [ [ [ -16.754150, 66.337505 ], [ -16.210327, 66.513260 ], [ -16.166382, 66.526392 ], [ -15.858765, 66.513260 ], [ -14.507446, 66.456275 ], [ -14.556885, 66.337505 ], [ -16.754150, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.088745, 79.253586 ], [ -19.193115, 79.171335 ], [ -19.703979, 78.751731 ], [ -19.671021, 77.638894 ], [ -18.473511, 76.985098 ], [ -20.033569, 76.944212 ], [ -21.681519, 76.627796 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.295463 ], [ -21.593628, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.088745, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ] ] ], [ [ [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ] ] ], [ [ [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.890503, 82.732092 ], [ -20.846558, 82.726530 ], [ -21.093750, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ] ] ], [ [ [ -22.939453, 81.187124 ], [ -22.500000, 81.252526 ], [ -20.621338, 81.524751 ], [ -15.770874, 81.912374 ], [ -12.771606, 81.719233 ], [ -12.205811, 81.291703 ], [ -16.287231, 80.579842 ], [ -16.847534, 80.349631 ], [ -20.044556, 80.176839 ], [ -17.731934, 80.128928 ], [ -18.901978, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.297485, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187124 ] ] ], [ [ [ -22.939453, 82.088196 ], [ -22.901001, 82.093487 ], [ -22.500000, 81.922414 ], [ -22.071533, 81.734251 ], [ -22.500000, 81.512599 ], [ -22.939453, 81.278386 ], [ -22.939453, 82.088196 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.726530 ], [ -21.368408, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } ] } ] } , @@ -2932,201 +2921,201 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.204346, -69.873672 ], [ 19.259033, -69.894454 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.923218, -70.403663 ], [ 22.500000, -70.663607 ], [ 22.571411, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.437674 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 3.021240, -70.991928 ], [ 4.136353, -70.853683 ], [ 5.158081, -70.618084 ], [ 6.273193, -70.462534 ], [ 7.135620, -70.246460 ], [ 7.745361, -69.894454 ], [ 8.486938, -70.147827 ], [ 9.525146, -70.011201 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.425293, -69.971730 ], [ 14.732666, -70.031846 ], [ 15.128174, -70.403663 ], [ 15.946655, -70.031846 ], [ 17.028809, -69.913328 ], [ 18.204346, -69.873672 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.000854, -28.974507 ], [ 18.462524, -29.046566 ], [ 17.836304, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.221069, -28.357568 ], [ 16.825562, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.210571, -27.093364 ], [ 14.990845, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.408569, -23.850674 ], [ 14.386597, -22.654572 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.765869, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.443275 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.890503, -26.828973 ], [ 20.665283, -26.475490 ], [ 20.758667, -25.869109 ], [ 20.165405, -24.916331 ], [ 19.896240, -24.766785 ], [ 19.896240, -21.851302 ], [ 20.879517, -21.815608 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.896240, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.758667, -25.869109 ], [ 20.665283, -26.475490 ], [ 20.890503, -26.828973 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 22.939453, -25.443275 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.888658 ], [ 21.544189, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.858032, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.611616 ], [ 18.248291, -32.430977 ], [ 18.220825, -31.662733 ], [ 17.567139, -30.727671 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.825562, -28.081674 ], [ 17.221069, -28.357568 ], [ 17.385864, -28.782104 ], [ 17.836304, -28.854296 ], [ 18.462524, -29.046566 ], [ 19.000854, -28.974507 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.038452 ], [ 13.870239, 0.000000 ], [ 14.315186, -0.554801 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.112183, -2.427252 ], [ 12.573853, -1.949697 ], [ 12.496948, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.979341 ], [ 10.063477, -2.970470 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.827515, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.340934 ], [ 14.584351, -4.970560 ], [ 14.210815, -4.795417 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.778995 ], [ 12.623291, -4.439521 ], [ 12.321167, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.096191, -3.979341 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.394322 ], [ 12.573853, -1.949697 ], [ 13.112183, -2.427252 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.554801 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.991089, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.802368, -8.906780 ], [ 21.950684, -8.303906 ], [ 21.747437, -7.917793 ], [ 21.725464, -7.291639 ], [ 20.516968, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.462524, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.778995 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.340934 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.666016, -0.060425 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.861939 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.462524, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.516968, -7.297088 ], [ 21.725464, -7.291639 ], [ 21.747437, -7.917793 ], [ 21.950684, -8.303906 ], [ 21.802368, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.897489 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.825574 ], [ 22.560425, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.581194 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.350638 ], [ 14.057007, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.733154, -5.965754 ], [ 13.024292, -5.982144 ], [ 13.375854, -5.861939 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.778995 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.036227 ], [ 12.321167, -4.603803 ], [ 12.623291, -4.439521 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.815552, -16.941215 ], [ 13.463745, -16.972741 ], [ 14.057007, -17.424029 ], [ 14.210815, -17.350638 ], [ 18.264771, -17.308688 ], [ 18.956909, -17.790535 ], [ 21.379395, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.581194 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.912476, -18.250220 ], [ 20.879517, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -22.350076 ], [ 14.315186, -22.350076 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.353882, -20.874210 ], [ 12.826538, -19.673626 ], [ 12.606812, -19.046541 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.303443 ], [ 12.216797, -17.109293 ], [ 12.815552, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, -12.897489 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.261482 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.825574 ], [ 21.890259, -16.082764 ], [ 21.934204, -12.897489 ], [ 22.500000, -12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.896240, -22.350076 ], [ 19.896240, -21.851302 ], [ 20.879517, -21.815608 ], [ 20.912476, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ], [ 1.823730, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.686157, 19.854561 ], [ 3.147583, 19.694314 ], [ 3.158569, 19.056926 ], [ 4.268188, 19.155547 ], [ 4.268188, 16.851862 ], [ 3.724365, 16.183024 ], [ 3.636475, 15.570128 ], [ 2.752075, 15.411319 ], [ 1.384277, 15.321274 ], [ 1.016235, 14.966013 ], [ 0.373535, 14.928862 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.994263, 13.336175 ], [ 1.021729, 12.849293 ], [ 2.175293, 12.624258 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.108337 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.439453, 15.061515 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.925011 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.314777 ], [ 0.488892, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.097556 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.574829, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.686157, 19.854561 ], [ 2.059937, 20.143628 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.493964 ], [ 18.912964, 21.943046 ], [ 18.067017, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.298462, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.998037 ], [ 13.952637, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.210815, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.463396 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.597939 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.330830 ], [ 10.991821, 13.389620 ], [ 10.700684, 13.245293 ], [ 10.112915, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.116930 ], [ 6.443481, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.657616 ], [ 2.850952, 12.238023 ], [ 2.488403, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.624258 ], [ 1.021729, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.268188, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.774536, 10.471607 ], [ 1.422729, 9.822742 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.620483, 6.833716 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.488892, 7.411495 ], [ 0.714111, 8.314777 ], [ 0.461426, 8.678779 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.649811 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.925011 ], [ 0.021973, 11.016689 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.850952, 12.238023 ], [ 3.609009, 11.657616 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.140063 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.868823 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.620483, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.822742 ], [ 0.774536, 10.471607 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.108337 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.232655 ], [ 2.850952, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.443481, 13.491131 ], [ 6.822510, 13.116930 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.389620 ], [ 11.530151, 13.330830 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.597939 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.463396 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.087667 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.800933 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.216797, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.837769, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.057282 ], [ 10.118408, 7.040927 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.446318 ], [ 8.756104, 5.479300 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.899658, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.610519 ], [ 4.323120, 6.271618 ], [ 3.576050, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.598022, 10.331132 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.657616 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.533860 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.651489, 2.284551 ], [ 11.277466, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.158979 ], [ 9.651489, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.067017, 22.350076 ], [ 18.912964, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.934204, 12.586732 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.725464, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.962646, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.798225 ], [ 14.545898, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.172363, 10.022948 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.957886, 11.555380 ], [ 14.891968, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.352210 ], [ 13.958130, 13.998037 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.298462, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.067017, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.891968, 12.216549 ], [ 14.957886, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.694661 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.479980, 4.735201 ], [ 14.952393, 4.209465 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.749878, 2.328460 ], [ 11.277466, 2.262595 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.486938, 4.494285 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.479300 ], [ 9.234009, 6.446318 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.040927 ], [ 10.497437, 7.057282 ], [ 11.057739, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.837769, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.952881, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.800933 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.087667 ], [ 14.183350, 12.484850 ], [ 14.210815, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.691404 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.451538, 3.502455 ], [ 17.808838, 3.562765 ], [ 17.133179, 3.727227 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.890588 ], [ 18.391113, 8.282163 ], [ 18.912964, 8.629903 ], [ 18.814087, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.725464, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.140677 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.548960 ], [ 22.939453, 10.860281 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 21.934204, 12.586732 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.870239, 0.000000 ], [ 14.221802, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.896729, 1.741065 ], [ 17.775879, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.627563, -0.439449 ], [ 14.221802, -0.439449 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.024048, 1.395126 ], [ 13.282471, 1.312751 ], [ 13.002319, 1.828913 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.941162, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.133179, 3.727227 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.324501 ], [ 21.659546, 4.225900 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 22.939453, 4.691404 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.666016, -0.060425 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.391113, 2.899153 ], [ 18.451538, 3.502455 ], [ 18.544922, 4.203986 ], [ 18.934937, 4.707828 ], [ 19.467773, 5.030755 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.213745, 41.310824 ], [ 2.092896, 41.224118 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.719604, 40.676472 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.655488 ], [ -0.439453, 38.315801 ], [ -0.439453, 41.310824 ], [ 2.213745, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.229550 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.337158, 36.998166 ], [ 13.826294, 37.103384 ], [ 12.431030, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.035112 ], [ 15.518188, 38.229550 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.265015, 40.979898 ], [ 17.517700, 40.876141 ], [ 18.374634, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.171631, 39.423464 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.216604 ], [ 15.891724, 38.749799 ], [ 16.111450, 38.963680 ], [ 15.721436, 39.542176 ], [ 15.413818, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.705200, 40.605612 ], [ 14.062500, 40.784701 ], [ 13.848267, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.782593, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.501269 ], [ 9.667969, 39.176917 ], [ 9.217529, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.000366, 40.580585 ], [ 20.676270, 40.434405 ], [ 20.615845, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.694507 ], [ 19.962158, 39.913950 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.346924, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.785645, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.785645, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.348326 ], [ 10.211792, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.030273, 37.090240 ], [ 11.101685, 36.901587 ], [ 10.601807, 36.408021 ], [ 10.590820, 35.946883 ], [ 10.936890, 35.697456 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.329828 ], [ 10.338135, 33.783713 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.760867 ], [ 9.948120, 31.377089 ], [ 10.057983, 30.963479 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.058228, 32.101190 ], [ 8.437500, 32.505129 ], [ 8.432007, 32.750323 ], [ 7.613525, 33.344296 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.377075, 35.478565 ], [ 8.217773, 36.434542 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.348326 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.884014 ], [ 8.421021, 36.945502 ], [ 8.217773, 36.434542 ], [ 8.377075, 35.478565 ], [ 8.140869, 34.655804 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.344296 ], [ 8.432007, 32.750323 ], [ 8.437500, 32.505129 ], [ 9.058228, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.142257 ], [ 9.717407, 26.509905 ], [ 9.321899, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.772095, 24.562112 ], [ 11.563110, 24.096619 ], [ 11.997070, 23.473324 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.840082 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.505371, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.817505, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.262207, 37.112146 ], [ 7.327881, 37.116526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.791892 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.243530, 32.263911 ], [ 15.715942, 31.377089 ], [ 16.611328, 31.179910 ], [ 18.023071, 30.765439 ], [ 19.088745, 30.268556 ], [ 19.572144, 30.524413 ], [ 20.055542, 30.987028 ], [ 19.819336, 31.751525 ], [ 20.132446, 32.236036 ], [ 20.852051, 32.708733 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.758911, 21.534847 ], [ 18.912964, 21.943046 ], [ 15.858765, 23.407806 ], [ 14.853516, 22.862256 ], [ 14.144897, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.563110, 24.096619 ], [ 10.772095, 24.562112 ], [ 10.305176, 24.377121 ], [ 9.948120, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.321899, 26.096255 ], [ 9.717407, 26.509905 ], [ 9.629517, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.684448, 28.144660 ], [ 9.860229, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.306503 ], [ 9.970093, 30.538608 ], [ 10.057983, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.760867 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.039298 ], [ 14.144897, 22.492257 ], [ 14.853516, 22.862256 ], [ 14.996338, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.407806 ], [ 18.912964, 21.943046 ], [ 19.758911, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.996338, 21.943046 ], [ 14.853516, 22.862256 ], [ 15.858765, 23.407806 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 22.939453, 39.580290 ], [ 22.939453, 37.335224 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.311491 ], [ 20.731201, 38.771216 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.626846 ], [ 20.615845, 40.111689 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.466845 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.673934 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.805218 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.774682 ], [ -0.439453, 54.466845 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.008664 ], [ 9.558105, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.710015 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.695680 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.535904 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.515869, 51.148340 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 42.795401 ], [ 1.829224, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.037720, 41.894100 ], [ 2.092896, 41.224118 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.719604, 40.676472 ], [ 0.686646, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.581400 ], [ 0.703125, 42.795401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.952386 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.867124 ], [ 21.269531, 55.191412 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 11.975098, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.534912, 56.022948 ], [ 14.359131, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.360381 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.534912, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.157837, 50.802463 ], [ 5.608521, 51.037940 ], [ 4.971313, 51.474540 ], [ 4.048462, 51.268789 ], [ 3.312378, 51.344339 ], [ 3.828735, 51.621427 ], [ 4.707642, 53.090725 ], [ 6.075439, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.474540 ], [ 5.608521, 51.037940 ], [ 6.157837, 50.802463 ], [ 6.042480, 50.127622 ], [ 5.784302, 50.088869 ], [ 5.674438, 49.528774 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.125610, 50.781629 ], [ 2.658691, 50.795519 ], [ 2.515869, 51.148340 ], [ 3.312378, 51.344339 ], [ 4.048462, 51.268789 ], [ 4.971313, 51.474540 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.899658, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.784302, 50.088869 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.007769 ], [ 11.958618, 54.197797 ], [ 12.518921, 54.470038 ], [ 13.645020, 54.075506 ], [ 14.117432, 53.758454 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 51.003386 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.485474 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.518921, 49.546598 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.635784 ], [ 12.930908, 47.468950 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.852746 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.396550 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.596558, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.103784 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.365601, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.441642 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.698730, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ], [ 22.939453, 54.284469 ], [ 22.939453, 49.866317 ], [ 22.516479, 49.475263 ], [ 22.774658, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 21.610107, 49.471694 ], [ 20.890503, 49.328702 ], [ 20.418091, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.649536, 50.050085 ], [ 17.556152, 50.362985 ], [ 16.869507, 50.474987 ], [ 16.721191, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.744038 ], [ 14.683228, 52.089633 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.804077, 54.049714 ], [ 16.364136, 54.514704 ], [ 17.622070, 54.851315 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.103784 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.635784 ], [ 12.881470, 48.290503 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.337158, 48.556614 ], [ 14.902954, 48.965794 ], [ 15.254517, 49.037868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.467836 ], [ 13.716431, 45.498647 ], [ 13.936157, 45.590978 ], [ 13.699951, 46.016039 ], [ 13.804321, 46.509735 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.012573, 46.683363 ], [ 16.204834, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.804321, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.936157, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.590332, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.924683, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.265015, 40.979898 ], [ 17.517700, 40.876141 ], [ 17.891235, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.848267, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.189575, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.921637 ], [ 9.700928, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.695680 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.800537, 45.710015 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.751153 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.069641 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.213004 ], [ 16.320190, 45.003651 ], [ 15.957642, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.237793, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.913452, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.077400 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.733025 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.224673 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.995241 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.594116, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.627563, 45.951150 ], [ 16.880493, 46.381044 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 17.490234, 47.868459 ], [ 17.858276, 47.757791 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.081749 ], [ 19.176636, 48.111099 ], [ 19.660034, 48.264913 ], [ 19.769897, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.473022, 48.563885 ], [ 20.802612, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.432413 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.802612, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.264913 ], [ 19.176636, 48.111099 ], [ 18.775635, 48.081749 ], [ 18.698730, 47.879513 ], [ 17.858276, 47.757791 ], [ 17.490234, 47.868459 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.100220, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.232349 ], [ 17.863770, 45.069641 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.422011 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.220581, 43.524655 ], [ 19.033813, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.561401, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.297974, 43.444943 ], [ 16.913452, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.816916 ], [ 15.957642, 45.232349 ], [ 16.320190, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.232349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.220581, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.632568, 43.213183 ], [ 19.956665, 43.104994 ], [ 20.341187, 42.900113 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.686473 ], [ 19.302979, 42.195969 ], [ 19.374390, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.281373 ], [ 18.451538, 42.480200 ], [ 18.561401, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.033813, 43.432977 ], [ 19.220581, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.417732 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.249204 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.322001 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.678397 ], [ 21.439819, 42.863886 ], [ 21.275024, 42.908160 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.129052 ], [ 20.813599, 43.273206 ], [ 20.637817, 43.217187 ], [ 20.494995, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.341187, 42.900113 ], [ 19.956665, 43.104994 ], [ 19.632568, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.220581, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.422011 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.129052 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.908160 ], [ 21.439819, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.544189, 42.322001 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.208176 ], [ 20.764160, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.216314 ], [ 20.286255, 42.322001 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.811522 ], [ 20.494995, 42.884015 ], [ 20.637817, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.686473 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.286255, 42.322001 ], [ 20.522461, 42.216314 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.005859, 40.647304 ], [ 19.330444, 40.647304 ], [ 19.319458, 40.726446 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.718030 ], [ 19.374390, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.686473 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.764160, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.952386 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 21.560669, 44.770137 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ] ] ], [ [ [ 22.939453, 43.249204 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.249204 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.866317 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.224673 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 22.939453, 49.866317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ], [ 15.106201, 66.193792 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.573608, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.991577, 61.799093 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.116882 ], [ 11.469727, 59.431110 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.382568, 58.312374 ], [ 7.047729, 58.077876 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.662192 ], [ 4.993286, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.552856, 63.452964 ], [ 10.530396, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.123169, 66.513260 ], [ 13.337402, 66.687784 ], [ 15.540161, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.216634 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.610909 ], [ 10.914917, 56.459455 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.091431, 56.541315 ], [ 8.256226, 56.809901 ], [ 8.541870, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.105747 ], [ 14.666748, 56.200593 ], [ 14.359131, 55.776573 ], [ 14.183350, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.469727, 59.431110 ], [ 12.299194, 60.116882 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.573608, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.193792 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.718885 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.538696, 63.189064 ], [ 22.445068, 63.818864 ], [ 22.939453, 64.057785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.203369, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.782827 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.203369, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.203369, 56.337856 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.379395, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.205576 ], [ 22.939453, 68.865498 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 21.247559, 69.370638 ], [ 20.643311, 69.105818 ], [ 20.022583, 69.064638 ], [ 19.879761, 68.407268 ], [ 17.995605, 68.566406 ], [ 17.726440, 68.009628 ], [ 16.770630, 68.013742 ], [ 16.111450, 67.301737 ], [ 15.386353, 66.513260 ], [ 15.232544, 66.337505 ], [ 12.908936, 66.337505 ], [ 13.123169, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.562391 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.255741 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.105818 ], [ 21.978149, 68.616534 ], [ 22.500000, 68.391090 ], [ 22.939453, 68.200133 ], [ 22.939453, 66.337505 ], [ 15.232544, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.111450, 67.301737 ], [ 16.770630, 68.013742 ], [ 17.726440, 68.009628 ], [ 17.995605, 68.566406 ], [ 19.879761, 68.407268 ], [ 20.022583, 69.064638 ], [ 20.643311, 69.105818 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.247559, 69.370638 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 22.939453, 68.865498 ], [ 22.939453, 68.200133 ], [ 22.500000, 68.391090 ], [ 21.978149, 68.616534 ], [ 20.643311, 69.105818 ], [ 21.247559, 69.370638 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.253296, 79.253586 ], [ 20.610352, 79.171335 ], [ 21.544189, 78.955612 ], [ 19.028320, 78.562667 ], [ 18.473511, 77.826799 ], [ 17.594604, 77.637718 ], [ 17.116699, 76.809516 ], [ 15.913696, 76.770602 ], [ 13.760376, 77.379906 ], [ 14.672241, 77.736118 ], [ 13.172607, 78.024434 ], [ 11.222534, 78.868988 ], [ 10.920410, 79.171335 ], [ 10.838013, 79.253586 ], [ 20.253296, 79.253586 ] ] ], [ [ [ 22.884521, 78.455425 ], [ 22.939453, 78.404746 ], [ 22.939453, 77.529054 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.444552 ], [ 20.725708, 77.676467 ], [ 21.417847, 77.935203 ], [ 20.813599, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.884521, 78.455425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.990356, 80.050460 ], [ 18.253784, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.008301, 79.088462 ], [ 10.925903, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.172607, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.144653, 79.674392 ], [ 15.523682, 80.016233 ], [ 16.990356, 80.050460 ] ] ], [ [ [ 22.917480, 80.656850 ], [ 22.939453, 80.655066 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.077515, 79.566517 ], [ 19.896240, 79.842378 ], [ 18.462524, 79.859801 ], [ 17.369385, 80.319196 ], [ 20.456543, 80.597807 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.656850 ] ] ] ] } } ] } ] } , @@ -3150,225 +3139,225 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -67.896221 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.464371 ], [ 22.500000, -70.663607 ], [ 22.571411, -70.696320 ], [ 23.664551, -70.521234 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.462534 ], [ 28.092041, -70.324288 ], [ 29.152222, -70.207436 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.992188, -69.658996 ], [ 32.755737, -69.384181 ], [ 33.305054, -68.835769 ], [ 33.870850, -68.502080 ], [ 34.909058, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.649902, -69.777053 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.924072, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.940063, -68.463800 ], [ 44.115601, -68.267353 ], [ 45.000000, -68.021966 ], [ 45.439453, -67.896221 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.278809, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.271606, -21.534847 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.535278, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.040894, -24.477150 ], [ 34.216919, -24.816654 ], [ 33.013916, -25.358919 ], [ 32.574463, -25.725684 ], [ 32.662354, -26.150507 ], [ 32.915039, -26.214591 ], [ 32.832642, -26.740705 ], [ 32.069092, -26.735799 ], [ 31.986694, -26.293415 ], [ 31.838379, -25.844393 ], [ 31.750488, -25.482951 ], [ 31.931763, -24.367114 ], [ 31.668091, -23.659619 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.271606, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.278809, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.278809, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.668091, -23.659619 ], [ 31.931763, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.679321, -26.396790 ], [ 30.684814, -26.745610 ], [ 31.283569, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.832642, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.299544 ], [ 32.200928, -28.753213 ], [ 31.519775, -29.257649 ], [ 31.327515, -29.401320 ], [ 30.899048, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.053101, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.224903 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.175171, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.593140, -33.792844 ], [ 22.988892, -33.916013 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.388698 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.849485 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.873992 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.976440, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.293415 ], [ 32.069092, -26.735799 ], [ 31.865845, -27.176469 ], [ 31.283569, -27.283926 ], [ 30.684814, -26.745610 ], [ 30.679321, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.542480, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.257649 ], [ 29.020386, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.548070 ], [ 27.751465, -30.647364 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.849485 ], [ 28.542480, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.413509 ], [ 44.038696, -24.986058 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.950274 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.016182 ], [ 30.421143, -1.137010 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.586182, -0.587758 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.797974, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.674980 ], [ 37.765503, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.984497, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 0.439449 ], [ 43.137817, 0.291136 ], [ 42.868652, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.995483, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.984497, 0.439449 ], [ 43.313599, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.289551, -1.620267 ], [ 29.256592, -2.213195 ], [ 29.119263, -2.290039 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.938436 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.361466 ], [ 29.613647, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.932495, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.152466, -12.270231 ], [ 27.388916, -12.130635 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.329253 ], [ 24.785156, -11.237674 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 22.060547, -9.725300 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.725300 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.237674 ], [ 23.906250, -11.722167 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.913552 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.825574 ], [ 22.560425, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.680662 ], [ 22.060547, -17.780074 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.298199 ], [ 24.680786, -17.355882 ], [ 25.076294, -17.581194 ], [ 25.081787, -17.659726 ], [ 24.521484, -17.884659 ], [ 24.219360, -17.889887 ], [ 23.576660, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.780074 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.298199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.421143, -1.137010 ], [ 30.816650, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.470581, -2.416276 ], [ 29.937744, -2.350415 ], [ 29.630127, -2.915611 ], [ 29.025879, -2.838804 ], [ 29.119263, -2.290039 ], [ 29.256592, -2.213195 ], [ 29.289551, -1.620267 ], [ 29.580688, -1.340210 ], [ 29.822388, -1.444549 ], [ 30.421143, -1.137010 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.350415 ], [ 30.470581, -2.416276 ], [ 30.525513, -2.805885 ], [ 30.745239, -3.036298 ], [ 30.750732, -3.359889 ], [ 30.503540, -3.568248 ], [ 30.119019, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.350415 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.238674 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.558228, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.112793, -11.609193 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.689819, -13.715372 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.948975, -16.040534 ], [ 28.828125, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.292954 ], [ 27.042847, -17.936929 ], [ 26.707764, -17.963058 ], [ 26.383667, -17.848061 ], [ 25.263062, -17.738223 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.581194 ], [ 24.680786, -17.355882 ], [ 24.032593, -17.298199 ], [ 23.214111, -17.523583 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.825574 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.913552 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.722167 ], [ 24.016113, -11.237674 ], [ 23.911743, -10.925011 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.786703 ], [ 26.553955, -11.926478 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.526001, -12.699292 ], [ 28.932495, -13.250640 ], [ 29.701538, -13.255986 ], [ 29.613647, -12.178965 ], [ 29.338989, -12.361466 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.167179 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.238674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.849365, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.729492, -20.853679 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.295590 ], [ 25.850830, -18.713894 ], [ 25.647583, -18.536909 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 34.074097, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.765503, -3.677892 ], [ 39.204712, -4.674980 ], [ 38.743286, -5.911117 ], [ 38.798218, -6.473609 ], [ 39.440918, -6.839170 ], [ 39.468384, -7.100893 ], [ 39.193726, -7.705548 ], [ 39.254150, -8.010276 ], [ 39.188232, -8.483239 ], [ 39.534302, -9.112945 ], [ 39.951782, -10.098670 ], [ 40.314331, -10.314919 ], [ 39.523315, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.825928, -11.270000 ], [ 37.468872, -11.566144 ], [ 36.776733, -11.593051 ], [ 36.513062, -11.722167 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.189941, -8.928487 ], [ 31.558228, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.421387, -5.938436 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.119019, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.359889 ], [ 30.745239, -3.036298 ], [ 30.525513, -2.805885 ], [ 30.470581, -2.416276 ], [ 30.756226, -2.284551 ], [ 30.816650, -1.697139 ], [ 30.421143, -1.137010 ], [ 30.767212, -1.016182 ], [ 31.865845, -1.027167 ], [ 33.903809, -0.950274 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.280966 ], [ 34.557495, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.266113, -13.886079 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.337524, -16.109153 ], [ 35.035400, -16.799282 ], [ 34.381714, -16.183024 ], [ 34.304810, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.063110, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.479126, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.200488 ], [ 40.775757, -14.689881 ], [ 40.479126, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.540039, -17.098792 ], [ 37.408447, -17.586431 ], [ 36.282349, -18.661859 ], [ 35.897827, -18.843913 ], [ 35.200195, -19.554614 ], [ 34.788208, -19.782211 ], [ 34.700317, -20.499064 ], [ 35.178223, -21.253542 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.551758, -22.350076 ], [ 31.217651, -22.350076 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.656860, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.715124 ], [ 32.327271, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.360191 ], [ 34.458618, -14.615478 ], [ 34.519043, -15.013769 ], [ 34.304810, -15.480151 ], [ 34.381714, -16.183024 ], [ 35.035400, -16.799282 ], [ 35.337524, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.689087, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.909058, -13.565902 ], [ 34.557495, -13.581921 ], [ 34.277344, -12.280966 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.722167 ], [ 36.776733, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.270000 ], [ 38.430176, -11.286161 ], [ 39.523315, -10.898042 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.738223 ], [ 25.647583, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.932495, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.576660, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.217651, -22.350076 ], [ 28.932495, -22.350076 ], [ 29.432373, -22.090730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.408305 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.214675 ], [ 44.945068, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.993015 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.840332, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ] ] ], [ [ [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.608176 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.461304, 8.955619 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.227801 ], [ 25.114746, 7.825289 ], [ 25.125732, 7.498643 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.949363 ], [ 27.213135, 5.550381 ], [ 27.372437, 5.233187 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.173011 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.899414 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.140677 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.496582, 22.350076 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.350076 ], [ 36.496582, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.881104, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.479858, 18.615013 ], [ 37.864380, 18.370166 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.430664, 14.424040 ], [ 36.271362, 13.565902 ], [ 35.864868, 12.576010 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.733276, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.964233, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.826904, 9.481572 ], [ 33.843384, 9.979671 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.673340, 12.023203 ], [ 32.074585, 11.974845 ], [ 32.316284, 11.679135 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.811916 ], [ 30.838623, 9.709057 ], [ 29.998169, 10.293301 ], [ 29.619141, 10.082446 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.971191, 9.400291 ], [ 27.833862, 9.606166 ], [ 27.114258, 9.638661 ], [ 26.751709, 9.465317 ], [ 26.477051, 9.552000 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.811916 ], [ 24.537964, 8.917634 ], [ 24.191895, 8.727648 ], [ 23.884277, 8.619041 ], [ 23.807373, 8.667918 ], [ 23.461304, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.554688, 9.681984 ], [ 23.554688, 10.087854 ], [ 22.977905, 10.714587 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.480591, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.175455 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.674072, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.877319, 0.598744 ], [ 30.086060, 1.060120 ], [ 30.470581, 1.581830 ], [ 30.855103, 1.850874 ], [ 31.173706, 2.202216 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.814453, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.737061, 13.923404 ], [ 42.588501, 12.999205 ], [ 43.082886, 12.699292 ], [ 42.780762, 12.458033 ], [ 42.352295, 12.543840 ], [ 42.011719, 12.865360 ], [ 41.599731, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.120595 ], [ 40.028687, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.743011 ], [ 38.512573, 14.503826 ], [ 37.908325, 14.960706 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.754761, 16.293779 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.261482 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.082886, 12.699292 ], [ 43.319092, 12.388294 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.925011 ], [ 42.555542, 11.102947 ], [ 42.313843, 11.032864 ], [ 41.753540, 11.049038 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.098410 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.082886, 12.699292 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 40.984497, -0.439449 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.337114 ], [ 35.815430, 4.778995 ], [ 36.161499, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.122559, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.671875, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.420208 ], [ 39.852905, 3.836851 ], [ 40.770264, 4.258768 ], [ 41.171265, 3.919060 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.480591, 3.557283 ], [ 34.002686, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.098410 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.775269, 10.925011 ], [ 42.561035, 10.574222 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.676147, 9.183447 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.852905, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.161499, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.255371, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.565902 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.060669, 17.408305 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.068777 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.801439 ], [ 42.604980, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.913791 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.472900, 11.275387 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.775269, 10.925011 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.517575 ], [ 45.439453, 1.960677 ], [ 45.000000, 1.675176 ], [ 44.066162, 1.054628 ], [ 43.137817, 0.291136 ], [ 42.868652, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.783938 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.427124, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.850874 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.674072, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.899414 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.173011 ], [ 25.653076, 5.255068 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.785645, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.785645, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.938721, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.938721, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.189560 ], [ 23.609619, 32.189560 ], [ 23.928223, 32.017392 ], [ 24.922485, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.661541 ], [ 24.702759, 30.045322 ], [ 24.999390, 29.238477 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.921971 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.340454, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.972222 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.785645, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.938721, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.670685 ], [ 33.898315, 35.245619 ], [ 33.975220, 35.056980 ], [ 33.865356, 35.092945 ], [ 33.673096, 35.016501 ], [ 33.524780, 35.038992 ], [ 33.475342, 34.998504 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.920532, 35.088451 ], [ 32.733765, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.384572 ], [ 33.667603, 35.371135 ], [ 34.573975, 35.670685 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 34.998504 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.016501 ], [ 33.865356, 35.092945 ], [ 33.975220, 35.056980 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.492065, 34.700977 ], [ 32.255859, 35.101934 ], [ 32.733765, 35.137879 ], [ 32.920532, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.460327, 31.320794 ], [ 28.449097, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.475524 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.415560 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.491333, 23.750154 ], [ 35.524292, 23.099944 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.955444, 30.661541 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.632202, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.654175, 40.254377 ], [ 44.401245, 40.006580 ], [ 44.791260, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.257563 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.567012 ], [ 34.716797, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.646385 ], [ 30.618896, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.822632, 40.459487 ], [ 29.102783, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.552734, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.221436, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.589478, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.039429, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.948975, 41.310824 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.948975, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.592520 ], [ 36.611938, 34.202716 ], [ 36.068115, 33.824794 ], [ 35.820923, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.086939 ], [ 35.128784, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.980225, 34.610606 ], [ 35.996704, 34.646766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.292114, 36.359375 ], [ 41.385498, 35.630512 ], [ 41.006470, 34.420505 ], [ 38.792725, 33.376412 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.837402, 32.870360 ], [ 35.820923, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.592520 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.150513, 35.822267 ], [ 36.683350, 36.257563 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.671387, 37.090240 ], [ 41.209717, 37.072710 ], [ 42.352295, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.061761 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.934245 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.780762, 37.383253 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.760891 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.973561 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.420505 ], [ 41.385498, 35.630512 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.722046, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 34.974976, 31.868228 ], [ 35.227661, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.920044, 29.501769 ], [ 34.266357, 31.217499 ], [ 34.557495, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.755249, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.128784, 33.091542 ], [ 35.458374, 33.086939 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.275435 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.784217 ], [ 35.397949, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.227661, 31.756196 ], [ 34.974976, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.193726, 32.161663 ], [ 39.006958, 32.008076 ], [ 37.001953, 31.508313 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.002517 ], [ 36.738281, 29.864465 ], [ 36.502075, 29.506549 ], [ 36.068115, 29.195328 ], [ 34.958496, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.784217 ], [ 35.546265, 32.393878 ], [ 35.722046, 32.708733 ], [ 36.831665, 32.314991 ], [ 38.792725, 33.376412 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.012939, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.881104, 21.943046 ], [ 37.012939, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.663973 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.509623 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.401245, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.632202, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.663973 ], [ 45.439453, 40.509623 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.663973 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ] ] ], [ [ [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.043557 ], [ 45.439453, 33.938803 ], [ 45.417480, 33.966142 ], [ 45.439453, 34.043557 ] ] ], [ [ [ 45.439453, 35.973561 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.760891 ], [ 44.774780, 37.169072 ], [ 44.225464, 37.970185 ], [ 44.423218, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.973561 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.402222, 31.891551 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.067383, 22.578510 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.128784, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.608637 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.358239 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.506549 ], [ 36.738281, 29.864465 ], [ 37.501831, 30.002517 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.193726, 32.161663 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.710696 ], [ 43.928833, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.552529 ], [ 39.957275, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.677856, 45.243953 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.638122 ], [ 39.149780, 47.043926 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.824220 ], [ 39.737549, 47.897931 ], [ 39.896851, 48.231991 ], [ 39.677124, 48.785152 ], [ 40.078125, 49.307217 ], [ 40.067139, 49.600030 ], [ 38.594971, 49.926472 ], [ 38.012695, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.774682 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.140015, 51.566827 ], [ 34.392700, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.237892 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.541748, 52.742943 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.305298, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.404175, 53.618579 ], [ 31.734009, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.156001 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.081512 ], [ 30.871582, 55.550388 ], [ 29.943237, 55.776573 ], [ 29.893799, 55.788929 ], [ 29.371948, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.952386 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.326135 ], [ 23.241577, 54.220285 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.807373, 53.090725 ], [ 23.801880, 52.689702 ], [ 23.197632, 52.486125 ], [ 23.510742, 52.022078 ], [ 23.527222, 51.577070 ], [ 24.032593, 50.705156 ], [ 23.922729, 50.426019 ], [ 23.428345, 50.306884 ], [ 22.516479, 49.475263 ], [ 22.774658, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.088013, 48.421910 ], [ 22.500000, 48.224673 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.410972 ], [ 22.088013, 48.421910 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 22.060547, 48.410972 ], [ 22.060547, 49.289306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.461548, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.209180 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 42.309815 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.762451, 56.022948 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.680542, 56.022948 ], [ 27.762451, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.762939, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.680542, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.768433, 54.848153 ], [ 25.537720, 54.281262 ], [ 24.450073, 53.904338 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.220285 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.952386 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.680542, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.371948, 55.671389 ], [ 29.893799, 55.788929 ], [ 29.943237, 55.776573 ], [ 30.871582, 55.550388 ], [ 30.970459, 55.081512 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.156001 ], [ 31.788940, 53.975474 ], [ 31.734009, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.305298, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.305542, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.320314 ], [ 30.157471, 51.416338 ], [ 29.256592, 51.368351 ], [ 28.992920, 51.600960 ], [ 28.619385, 51.426614 ], [ 28.240356, 51.573656 ], [ 27.454834, 51.590723 ], [ 26.339722, 51.832383 ], [ 25.328979, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.527222, 51.577070 ], [ 23.510742, 52.022078 ], [ 23.197632, 52.486125 ], [ 23.801880, 52.689702 ], [ 23.807373, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.904338 ], [ 25.537720, 54.281262 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.166319 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 27.762451, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.921997, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.157959, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.305803 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.240601, 44.174325 ], [ 26.065063, 43.945372 ], [ 25.570679, 43.687736 ], [ 24.098511, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.867554, 47.739323 ], [ 25.208130, 47.890564 ], [ 25.944214, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.659302, 44.233393 ], [ 22.944946, 43.822638 ], [ 23.334961, 43.897892 ], [ 24.098511, 43.739352 ], [ 25.570679, 43.687736 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.558960, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.998657, 42.008489 ], [ 27.136230, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.197144, 41.236511 ], [ 24.494019, 41.582580 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.209180 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.155093 ], [ 28.668823, 48.118434 ], [ 29.124756, 47.850031 ], [ 29.053345, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.910278, 46.675826 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.517296 ], [ 28.861084, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.939691 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.487095 ], [ 28.053589, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.130493, 46.811339 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.921997, 48.122101 ], [ 26.619873, 48.221013 ], [ 26.856079, 48.367198 ], [ 27.520752, 48.465637 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.392700, 51.767840 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.600030 ], [ 40.078125, 49.307217 ], [ 39.677124, 48.785152 ], [ 39.896851, 48.231991 ], [ 39.737549, 47.897931 ], [ 38.770752, 47.824220 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.021461 ], [ 36.760254, 46.698435 ], [ 35.826416, 46.645665 ], [ 34.963989, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.337280, 45.112300 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.327026, 44.563077 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.517895 ], [ 33.590698, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.331758 ], [ 31.673584, 46.705969 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.031296 ], [ 29.602661, 45.294211 ], [ 29.152222, 45.463983 ], [ 28.679810, 45.305803 ], [ 28.234863, 45.487095 ], [ 28.487549, 45.598666 ], [ 28.657837, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.517296 ], [ 29.168701, 46.381044 ], [ 29.761963, 46.350719 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.524855 ], [ 29.910278, 46.675826 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.053345, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.155093 ], [ 27.520752, 48.465637 ], [ 26.856079, 48.367198 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.224673 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 23.428345, 50.306884 ], [ 23.922729, 50.426019 ], [ 24.032593, 50.705156 ], [ 23.527222, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.328979, 51.910391 ], [ 26.339722, 51.832383 ], [ 27.454834, 51.590723 ], [ 28.240356, 51.573656 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.600960 ], [ 29.256592, 51.368351 ], [ 30.157471, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.237892 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.552529 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.928833, 42.553080 ], [ 44.538574, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 42.621460, 41.582580 ], [ 41.555786, 41.537366 ], [ 41.704102, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.012681 ], [ 40.319824, 43.129052 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.552529 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.589478, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.555786, 41.537366 ], [ 42.621460, 41.582580 ], [ 43.582764, 41.091772 ], [ 43.632202, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.731079, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.102783, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.734429 ], [ 33.513794, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.143042 ], [ 27.998657, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 27.125244, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.215854 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.663973 ], [ 45.422974, 40.647304 ], [ 43.731079, 40.647304 ], [ 43.753052, 40.738933 ], [ 43.632202, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.663973 ], [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.663973 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.215854 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.550388 ], [ 29.943237, 55.776573 ], [ 29.893799, 55.788929 ], [ 29.371948, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.855835, 56.758746 ], [ 27.767944, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.725451 ], [ 28.130493, 59.299552 ], [ 27.982178, 59.475779 ], [ 29.119263, 60.029186 ], [ 28.070068, 60.503230 ], [ 30.212402, 61.780916 ], [ 31.140747, 62.357256 ], [ 31.514282, 62.867674 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.203987 ], [ 29.542236, 64.949139 ], [ 30.217896, 65.805028 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.497314, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.899410 ], [ 34.876099, 65.435435 ], [ 34.942017, 64.413549 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.143806 ], [ 39.594727, 64.520097 ], [ 40.435181, 64.764759 ], [ 39.765015, 65.497020 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.950806, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.472656, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.902100, 66.687784 ], [ 40.534058, 66.513260 ], [ 40.017700, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.375977, 66.513260 ], [ 34.343262, 66.687784 ], [ 40.902100, 66.687784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.006852 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.637889 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ], [ 30.217896, 65.805028 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.203987 ], [ 30.036621, 63.553446 ], [ 31.514282, 62.867674 ], [ 31.140747, 62.357256 ], [ 30.212402, 61.780916 ], [ 28.070068, 60.503230 ], [ 26.257324, 60.424699 ], [ 24.494019, 60.056616 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.553446 ], [ 22.445068, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.400391, 65.111460 ], [ 25.296021, 65.533446 ], [ 23.900757, 66.006852 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.466064, 57.477450 ], [ 27.290039, 57.474497 ], [ 27.767944, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.174438, 56.170023 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 24.999390, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.203369, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.299552 ], [ 27.421875, 58.725451 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.477450 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.614056 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 24.999390, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.203369, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.371948, 55.671389 ], [ 29.893799, 55.788929 ], [ 29.943237, 55.776573 ], [ 30.871582, 55.550388 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ] ] ], [ [ [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ] ] ], [ [ [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.408691, 66.337505 ], [ 35.375977, 66.513260 ], [ 33.920288, 66.759418 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.064638 ], [ 29.399414, 69.156695 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.905780 ], [ 33.777466, 69.300853 ], [ 36.513062, 69.062675 ], [ 40.292358, 67.933397 ], [ 41.061401, 67.458082 ], [ 41.127319, 66.791909 ], [ 40.534058, 66.513260 ], [ 40.160522, 66.337505 ], [ 36.408691, 66.337505 ] ] ], [ [ [ 41.753540, 66.337505 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.231201, 66.337505 ], [ 41.753540, 66.337505 ] ] ], [ [ [ 44.170532, 66.337505 ], [ 44.318848, 66.513260 ], [ 44.533081, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.570421 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.170532, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.294556, 70.453346 ], [ 30.003662, 70.186965 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.156695 ], [ 28.591919, 69.064638 ], [ 29.014893, 69.765657 ], [ 27.734985, 70.164610 ], [ 26.180420, 69.824471 ], [ 25.691528, 69.092100 ], [ 24.735718, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 22.060547, 68.985986 ], [ 22.060547, 70.233460 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.201855 ], [ 24.548950, 71.031249 ], [ 26.372681, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.582459 ], [ 22.500000, 68.391090 ], [ 23.538208, 67.935460 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.582459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.734985, 70.164610 ], [ 29.014893, 69.765657 ], [ 28.591919, 69.064638 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.935460 ], [ 22.500000, 68.391090 ], [ 22.060547, 68.582459 ], [ 22.060547, 68.985986 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 23.664551, 68.891231 ], [ 24.735718, 68.648556 ], [ 25.691528, 69.092100 ], [ 26.180420, 69.824471 ], [ 27.734985, 70.164610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.884521, 78.455425 ], [ 23.280029, 78.079021 ], [ 24.724731, 77.853412 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.444552 ], [ 22.060547, 77.501742 ], [ 22.060547, 78.376004 ], [ 22.500000, 78.419091 ], [ 22.884521, 78.455425 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.646142 ], [ 45.439453, 80.582539 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.589727 ], [ 45.000000, 80.604983 ], [ 45.439453, 80.646142 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.656850 ], [ 25.449829, 80.407473 ], [ 27.405396, 80.056153 ], [ 25.922241, 79.517660 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.656850 ] ] ] } } ] } ] } , @@ -3392,123 +3381,123 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.172852, -66.337505 ], [ 57.211304, -66.513260 ], [ 57.255249, -66.681261 ], [ 58.139648, -67.013864 ], [ 58.743896, -67.286894 ], [ 59.941406, -67.405377 ], [ 60.606079, -67.680257 ], [ 61.430054, -67.954025 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.817542 ], [ 64.050293, -67.405377 ], [ 64.995117, -67.621772 ], [ 65.972900, -67.738597 ], [ 66.912231, -67.856914 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.244604 ], [ 67.813110, -70.305784 ], [ 67.939453, -70.663607 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.142942 ], [ 45.000000, -68.021966 ], [ 45.719604, -67.817542 ], [ 46.505127, -67.600849 ], [ 47.444458, -67.717778 ], [ 48.345337, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.932861, -67.112340 ], [ 50.751343, -66.876188 ], [ 50.949097, -66.524204 ], [ 50.982056, -66.513260 ], [ 51.520386, -66.337505 ], [ 57.172852, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.536133, -65.818532 ], [ 55.415039, -65.876970 ], [ 56.354370, -65.975562 ], [ 57.156372, -66.249163 ], [ 57.211304, -66.513260 ], [ 57.255249, -66.681261 ], [ 57.271729, -66.687784 ], [ 50.855713, -66.687784 ], [ 50.949097, -66.524204 ], [ 50.982056, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.613525, -66.053716 ], [ 53.613281, -65.897167 ], [ 54.536133, -65.818532 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.208008, -21.534847 ], [ 48.076172, -21.943046 ], [ 47.933350, -22.390714 ], [ 47.548828, -23.780318 ], [ 47.098389, -24.941238 ], [ 46.279907, -25.180088 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.413509 ], [ 44.835205, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.208008, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.196777, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.897489 ], [ 50.059204, -13.555222 ], [ 50.218506, -14.758947 ], [ 50.476685, -15.225889 ], [ 50.377808, -15.707663 ], [ 50.202026, -15.998295 ], [ 49.861450, -15.416615 ], [ 49.674683, -15.707663 ], [ 49.861450, -16.451891 ], [ 49.773560, -16.872890 ], [ 49.498901, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.042969, -19.119219 ], [ 48.548584, -20.499064 ], [ 48.076172, -21.943046 ], [ 47.944336, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.945068, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.505371, -15.971892 ], [ 45.873413, -15.792254 ], [ 46.312866, -15.781682 ], [ 46.884155, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.295898, -13.784737 ], [ 48.845215, -13.090179 ], [ 48.861694, -12.490214 ], [ 49.196777, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.868790 ], [ 45.000000, 8.711359 ], [ 46.950073, 7.999397 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.868790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 54.997559, 19.999160 ], [ 51.998291, 18.999803 ], [ 49.114380, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.466431, 17.114543 ], [ 46.999512, 16.951724 ], [ 46.752319, 17.282464 ], [ 46.367798, 17.235252 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.424029 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 18.999803 ], [ 52.783813, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.168579, 15.596584 ], [ 51.174316, 15.172879 ], [ 49.575806, 14.711135 ], [ 48.680420, 14.003367 ], [ 48.240967, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.356567, 13.592600 ], [ 46.719360, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.699292 ], [ 44.560547, 12.720726 ], [ 44.560547, 17.424029 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 46.367798, 17.235252 ], [ 46.752319, 17.282464 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.114543 ], [ 48.186035, 18.166730 ], [ 49.114380, 18.615013 ], [ 51.998291, 18.999803 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.713576 ], [ 59.282227, 21.432617 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.427013 ], [ 58.035278, 20.483628 ], [ 57.826538, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.067310 ], [ 57.694702, 18.942660 ], [ 57.233276, 18.947856 ], [ 56.607056, 18.573362 ], [ 56.513672, 18.088423 ], [ 56.282959, 17.874203 ], [ 55.662231, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.999160 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.949585, 11.410033 ], [ 48.938599, 10.984335 ], [ 48.938599, 9.449062 ], [ 48.488159, 8.836223 ], [ 47.790527, 8.004837 ], [ 46.950073, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.868790 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.949585, 11.410033 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.806444 ], [ 48.592529, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.675176 ], [ 44.560547, 1.384143 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.790527, 8.004837 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.984335 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.256958, 11.679135 ], [ 50.729370, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.062786 ], [ 45.961304, 41.124884 ], [ 45.472412, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 41.310824 ], [ 45.065918, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ] ] ], [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 39.618384 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.618384 ] ] ], [ [ [ 44.560547, 37.483577 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.774780, 37.169072 ], [ 45.000000, 36.760891 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.679610 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.987028 ], [ 48.004761, 30.987028 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.971802, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.774780, 37.169072 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ], [ 66.714478, 41.170384 ], [ 66.676025, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.676025, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.240763 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.243448 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.292969, 41.310824 ], [ 66.676025, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.559721 ], [ 45.889893, 40.216635 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.626846 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.321550 ], [ 45.741577, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.075928, 41.310824 ], [ 49.108887, 41.281935 ], [ 49.323120, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.258569 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.626846 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.216635 ], [ 45.357056, 40.559721 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.472412, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.922363, 41.310824 ], [ 49.075928, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.030786 ], [ 58.436279, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.678640 ], [ 60.963135, 33.527658 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.381779 ], [ 61.781616, 30.737114 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.376645 ], [ 63.231812, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.495972, 25.080624 ], [ 59.617310, 25.378772 ], [ 58.524170, 25.611810 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.966142 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.983487 ], [ 48.938599, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.987028 ], [ 47.686157, 30.987028 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.679610 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.760891 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.618384 ], [ 44.791260, 39.711413 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.973970 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.550751 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.571045, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.691637 ], [ 50.213013, 26.278640 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.811768, 24.756808 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.619263, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.608276, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.113892, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.015015, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.398315, 24.926295 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.530396, 23.936055 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.206299, 22.710323 ], [ 55.008545, 22.497332 ], [ 51.998291, 22.998852 ], [ 51.619263, 24.016362 ], [ 51.580811, 24.246965 ], [ 51.756592, 24.292034 ], [ 51.795044, 24.021379 ], [ 52.575073, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.695435, 24.796708 ], [ 55.437012, 25.438314 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.292969, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.929932, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.250000, 41.310824 ], [ 60.292969, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.177856, 22.993795 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.713576 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ] ] ], [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ] ] ], [ [ [ 67.939453, 38.976492 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.240763 ], [ 67.703247, 39.580290 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.976492 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.516724, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.243448 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.306715 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.319931 ], [ 60.875244, 29.831114 ], [ 61.781616, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.545771 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.527658 ], [ 60.529175, 33.678640 ], [ 60.803833, 34.402377 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.272532 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.009117 ], [ 64.544678, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.931034 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.528198, 25.234758 ], [ 62.907715, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.875000, 26.239229 ], [ 63.314209, 26.755421 ], [ 63.231812, 27.215556 ], [ 62.753906, 27.376645 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.550659, 29.319931 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.737114 ], [ 66.939697, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.600710 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.737915, 52.719658 ], [ 60.924683, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.044848 ], [ 55.717163, 50.621588 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.576050, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.466675, 48.392738 ], [ 47.312622, 47.717154 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.562637 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.587036, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.706660 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.706660 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.406250, 41.861379 ], [ 46.148071, 41.722131 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.062786 ], [ 45.961304, 41.124884 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 42.706660 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.714478, 41.170384 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.099243, 42.996612 ], [ 64.901733, 43.727445 ], [ 63.187866, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.931396, 44.995883 ], [ 55.969849, 41.306698 ], [ 55.453491, 41.261291 ], [ 54.755859, 42.045213 ], [ 54.080200, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.783601 ], [ 52.448730, 42.028894 ], [ 52.690430, 42.443728 ], [ 52.503662, 42.791370 ], [ 51.344604, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.516093 ], [ 51.317139, 45.247821 ], [ 52.168579, 45.410020 ], [ 53.041992, 45.259422 ], [ 53.223267, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.047669 ], [ 50.031738, 46.607941 ], [ 49.103394, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.696899, 47.073863 ], [ 48.059692, 47.743017 ], [ 47.312622, 47.717154 ], [ 46.466675, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.752319, 49.357334 ], [ 47.548828, 50.454007 ], [ 48.576050, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.717163, 50.621588 ], [ 56.777344, 51.044848 ], [ 58.364868, 51.062113 ], [ 59.644775, 50.544854 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.272226 ], [ 59.968872, 51.961192 ], [ 60.924683, 52.445966 ], [ 60.737915, 52.719658 ], [ 61.699219, 52.978416 ], [ 60.979614, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.600710 ], [ 67.500000, 54.873446 ], [ 67.939453, 54.939766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.215854 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.988281, 41.405656 ], [ 48.587036, 41.808173 ], [ 49.108887, 41.281935 ], [ 49.323120, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.215854 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.148071, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ] ] ], [ [ [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.794556, 40.647304 ], [ 52.855225, 40.647304 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 53.904419, 40.647304 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.915649, 41.869561 ], [ 52.816772, 41.137296 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.114524 ], [ 54.080200, 42.326062 ], [ 54.755859, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.824549 ], [ 57.788086, 42.171546 ], [ 58.628540, 42.751046 ], [ 59.974365, 42.224450 ], [ 60.084229, 41.426253 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.904419, 40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.301880, 66.687784 ], [ 46.351318, 66.668211 ], [ 46.488647, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ] ] ], [ [ [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ] ] ], [ [ [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 68.277521 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.252441, 68.249040 ], [ 46.823730, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.009574 ], [ 46.351318, 66.668211 ], [ 47.894897, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.229492, 67.999341 ], [ 53.717651, 68.857574 ], [ 54.470215, 68.807986 ], [ 53.486938, 68.202172 ], [ 54.728394, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.465816 ], [ 58.804321, 68.881337 ], [ 59.941406, 68.277521 ], [ 61.078491, 68.940633 ], [ 60.029297, 69.519147 ], [ 60.551147, 69.849086 ], [ 63.506470, 69.547958 ], [ 64.890747, 69.234737 ], [ 67.500000, 68.417373 ], [ 67.939453, 68.277521 ] ] ], [ [ [ 58.211060, 74.140084 ], [ 58.024292, 74.019543 ], [ 56.986084, 73.332585 ], [ 55.420532, 72.370768 ], [ 55.623779, 71.540569 ], [ 57.535400, 70.719913 ], [ 56.947632, 70.632662 ], [ 53.679199, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.602783, 71.474361 ], [ 51.454468, 72.014641 ], [ 52.476196, 72.228809 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.508911, 73.749668 ], [ 54.228516, 74.019543 ], [ 54.552612, 74.140084 ], [ 58.211060, 74.140084 ] ] ], [ [ [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.453698 ], [ 67.258301, 69.928415 ], [ 66.725464, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.925585 ], [ 67.939453, 76.200727 ], [ 67.500000, 76.140327 ], [ 64.638062, 75.737303 ], [ 61.583862, 75.261444 ], [ 58.474731, 74.308839 ], [ 58.024292, 74.019543 ], [ 57.837524, 73.898111 ], [ 53.904419, 73.898111 ], [ 54.228516, 74.019543 ], [ 55.903931, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.870483, 75.609532 ], [ 61.171875, 76.251734 ], [ 64.500732, 76.438468 ], [ 66.209106, 76.809516 ], [ 67.500000, 76.895728 ], [ 67.939453, 76.925585 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.699559 ], [ 51.135864, 80.547420 ], [ 49.795532, 80.415707 ], [ 48.894653, 80.339497 ], [ 48.757324, 80.175902 ], [ 47.587280, 80.010518 ], [ 46.505127, 80.246879 ], [ 47.070923, 80.559141 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.589727 ], [ 45.000000, 80.604983 ], [ 46.801758, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.097900, 80.753556 ], [ 50.037231, 80.918894 ] ] ] } } ] } ] } , @@ -3532,91 +3521,91 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.154297, -66.337505 ], [ 88.357544, -66.484784 ], [ 88.385010, -66.513260 ], [ 88.829956, -66.953727 ], [ 89.670410, -67.150765 ], [ 90.000000, -67.176348 ], [ 90.439453, -67.212544 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.867265 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.713745, -68.972193 ], [ 69.675293, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.598633, -69.932185 ], [ 67.813110, -70.305784 ], [ 67.950439, -70.696320 ], [ 69.065552, -70.678153 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.950439, -71.852807 ], [ 68.713989, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.026611, -72.089122 ], [ 71.575928, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.454834, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.364937 ], [ 73.866577, -69.873672 ], [ 74.492798, -69.777053 ], [ 75.629883, -69.737140 ], [ 76.624146, -69.618859 ], [ 77.645874, -69.463336 ], [ 78.134766, -69.070526 ], [ 78.425903, -68.698500 ], [ 79.112549, -68.326262 ], [ 80.095825, -68.071253 ], [ 80.936279, -67.875541 ], [ 81.485596, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.776489, -67.208289 ], [ 83.776245, -67.308095 ], [ 84.677124, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.753540, -67.150765 ], [ 87.478638, -66.876188 ], [ 87.753296, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.484784 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.621460, -66.687784 ], [ 87.753296, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.625647 ], [ 69.581909, -48.940543 ], [ 70.526733, -49.066668 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.710273 ], [ 68.746948, -49.774170 ], [ 68.719482, -49.242707 ], [ 68.933716, -48.625647 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 86.973267, 21.493964 ], [ 87.033691, 20.745840 ], [ 86.500854, 20.153942 ], [ 85.061646, 19.476950 ], [ 83.941040, 18.302381 ], [ 83.188477, 17.670194 ], [ 82.194214, 17.014768 ], [ 82.188721, 16.557227 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.326538, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.865112, 12.055437 ], [ 79.859619, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.887329, 9.546583 ], [ 79.189453, 9.215982 ], [ 78.277588, 8.933914 ], [ 77.942505, 8.254983 ], [ 77.541504, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.298706 ], [ 75.745239, 11.307708 ], [ 75.393677, 11.781325 ], [ 74.866333, 12.742158 ], [ 74.619141, 13.992706 ], [ 74.443359, 14.615478 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.926476 ], [ 72.822876, 19.207429 ], [ 72.822876, 20.421865 ], [ 72.630615, 21.355897 ], [ 71.174927, 20.756114 ], [ 70.471802, 20.879343 ], [ 69.323730, 21.943046 ], [ 69.164429, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.822742 ], [ 80.837402, 9.270201 ], [ 81.304321, 8.564726 ], [ 81.787720, 7.520427 ], [ 81.639404, 6.479067 ], [ 81.216431, 6.195168 ], [ 80.348511, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.822742 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.021606, 41.310824 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.021606, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.603638, 40.216635 ], [ 70.460815, 40.497092 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.010620, 40.086477 ], [ 68.538208, 39.533703 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.240763 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.899583 ], [ 68.389893, 38.156157 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.243448 ], [ 67.077026, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.818359, 40.979898 ], [ 69.021606, 41.310824 ], [ 70.834351, 41.310824 ], [ 71.158447, 41.145570 ], [ 71.630859, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ] ] ], [ [ [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.465088, 40.563895 ], [ 74.778442, 40.367474 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.605688 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.630859, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.834351, 41.310824 ], [ 71.630859, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.245992 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.866333, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.496652 ], [ 72.636108, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.856812, 37.343959 ], [ 68.137207, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.240763 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.496652 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.721274 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.500000, 37.243448 ], [ 67.829590, 37.147182 ], [ 68.137207, 37.024484 ], [ 68.856812, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.448853, 32.764181 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.614624, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.931034 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.075742 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.463514 ], [ 83.897095, 29.319931 ], [ 84.232178, 28.839862 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.202768 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.444916 ], [ 88.176270, 26.809364 ], [ 88.060913, 26.416470 ], [ 87.225952, 26.396790 ], [ 86.022949, 26.632729 ], [ 85.253906, 26.725987 ], [ 84.677124, 27.235095 ], [ 83.303833, 27.366889 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.415560 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.112061, 30.183122 ], [ 81.524048, 30.424993 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838135, 35.491984 ], [ 78.914795, 34.320755 ], [ 78.810425, 33.504759 ], [ 79.211426, 32.994843 ], [ 79.178467, 32.481963 ], [ 78.458862, 32.616243 ], [ 78.739014, 31.517679 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.730992 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.415560 ], [ 82.001953, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.677124, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.396790 ], [ 88.060913, 26.416470 ], [ 88.176270, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.877928 ], [ 88.731079, 28.086520 ], [ 88.835449, 27.098254 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.373535, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.357300, 26.012361 ], [ 88.560791, 26.445984 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.308105, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.231938 ], [ 88.527832, 23.629427 ], [ 88.873901, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 87.209473, 21.534847 ], [ 69.763184, 21.534847 ], [ 69.164429, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.351196, 22.842008 ], [ 68.175659, 23.689805 ], [ 68.840332, 24.357105 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.285034, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.515991, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.779175, 27.911913 ], [ 72.822876, 28.960089 ], [ 73.449097, 29.978729 ], [ 74.421387, 30.977609 ], [ 74.404907, 31.690782 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.764181 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.491984 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.373535, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.298571 ], [ 89.478149, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.445984 ], [ 89.357300, 26.012361 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.439453, 25.195000 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.873901, 22.877440 ], [ 88.527832, 23.629427 ], [ 88.698120, 24.231938 ], [ 88.082886, 24.502145 ], [ 88.308105, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.445984 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.839862 ], [ 83.897095, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.517679 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.190186, 35.897950 ], [ 75.899048, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.827881, 37.991834 ], [ 74.866333, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.426042 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.471694 ], [ 87.753296, 49.296472 ], [ 87.357788, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.539551, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.380737, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.178512 ], [ 76.893311, 54.489187 ], [ 74.382935, 53.546836 ], [ 73.427124, 53.491314 ], [ 73.509521, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.065552, 55.385352 ], [ 68.170166, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.867310, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.036812 ], [ 73.427124, 53.491314 ], [ 74.382935, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.525269, 54.178512 ], [ 77.799683, 53.402982 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.380737, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.116577, 50.117056 ], [ 85.539551, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.357788, 49.214009 ], [ 86.599731, 48.549342 ], [ 85.770264, 48.454709 ], [ 85.720825, 47.454094 ], [ 85.166016, 47.002734 ], [ 83.182983, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.645386, 42.496403 ], [ 79.140015, 42.855833 ], [ 77.656860, 42.960443 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.875964 ], [ 74.212646, 43.297198 ], [ 73.646851, 43.092961 ], [ 73.487549, 42.500453 ], [ 71.845093, 42.843751 ], [ 71.185913, 42.702623 ], [ 70.960693, 42.265114 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.873446 ], [ 68.170166, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.265114 ], [ 71.257324, 42.167475 ], [ 70.422363, 41.520917 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.658081, 40.647304 ], [ 70.526733, 40.647304 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.265114 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.635376, 42.875964 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.960443 ], [ 79.140015, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.117798, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.658081, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.520917 ], [ 71.257324, 42.167475 ], [ 70.960693, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.487549, 42.500453 ], [ 73.646851, 43.092961 ], [ 74.212646, 43.297198 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.526733, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.208549 ], [ 90.439453, 47.513491 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.753296, 49.296472 ], [ 88.807983, 49.471694 ], [ 90.000000, 50.011269 ], [ 90.439453, 50.208549 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.753296, 49.296472 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.513491 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.122673 ], [ 80.260620, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.182983, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.720825, 47.454094 ], [ 85.770264, 48.454709 ], [ 86.599731, 48.549342 ], [ 87.357788, 49.214009 ], [ 87.753296, 49.296472 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.773682, 66.687784 ], [ 71.537476, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.171609 ], [ 72.795410, 66.513260 ], [ 72.822876, 66.532956 ], [ 73.482056, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.850586, 71.409675 ], [ 72.471313, 71.090085 ], [ 72.789917, 70.390763 ], [ 72.564697, 69.021414 ], [ 73.668823, 68.407268 ], [ 73.240356, 67.740678 ], [ 71.537476, 66.513260 ], [ 71.301270, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.417373 ], [ 68.510742, 68.091759 ], [ 69.180908, 68.616534 ], [ 68.164673, 69.144965 ], [ 68.137207, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.444056 ], [ 67.060547, 69.645625 ], [ 67.258301, 69.928415 ], [ 67.060547, 70.222311 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.197388, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 72.603149, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.822876, 66.532956 ], [ 73.921509, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.053101, 67.761477 ], [ 74.470825, 68.328291 ], [ 74.937744, 68.989925 ], [ 73.844604, 69.070526 ], [ 73.602905, 69.628422 ], [ 74.399414, 70.630841 ], [ 73.103027, 71.446415 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.684814, 72.300761 ], [ 75.289307, 71.335983 ], [ 76.360474, 71.152294 ], [ 75.904541, 71.873327 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.502075, 71.749873 ], [ 80.612183, 72.582473 ], [ 80.513306, 73.647906 ], [ 82.249146, 73.849286 ], [ 84.655151, 73.806447 ], [ 86.824951, 73.936155 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.603149, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 75.650431 ], [ 90.439453, 73.898111 ], [ 86.182251, 73.898111 ], [ 86.824951, 73.936155 ], [ 86.693115, 74.019543 ], [ 86.011963, 74.459663 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.143595 ], [ 90.000000, 75.575362 ], [ 90.258179, 75.639536 ], [ 90.439453, 75.650431 ] ] ], [ [ [ 68.159180, 76.939247 ], [ 68.851318, 76.544967 ], [ 68.181152, 76.233445 ], [ 67.500000, 76.140327 ], [ 67.060547, 76.079668 ], [ 67.060547, 76.867052 ], [ 67.500000, 76.895728 ], [ 68.159180, 76.939247 ] ] ] ] } } ] } ] } , @@ -3640,71 +3629,71 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.150765 ], [ 90.000000, -67.176348 ], [ 90.631714, -67.229559 ], [ 91.587524, -67.112340 ], [ 92.609253, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.112340 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.386375 ], [ 96.679688, -67.248686 ], [ 97.761841, -67.248686 ], [ 98.679199, -67.112340 ], [ 99.717407, -67.248686 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.583217 ], [ 101.508179, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ], [ 106.182861, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.083496, -66.953727 ], [ 109.160156, -66.837326 ], [ 110.236816, -66.700824 ], [ 110.797119, -66.513260 ], [ 111.060791, -66.425537 ], [ 111.264038, -66.337505 ], [ 112.939453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.480225, -65.701258 ], [ 104.243774, -65.975562 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.583217 ], [ 101.579590, -66.308828 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 110.275269, -66.687784 ], [ 110.797119, -66.513260 ], [ 111.060791, -66.425537 ], [ 111.741943, -66.131631 ], [ 112.500000, -66.102719 ], [ 112.862549, -66.091591 ], [ 112.939453, -66.069318 ], [ 112.939453, -66.687784 ], [ 110.275269, -66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.265015, -5.954827 ], [ 108.072510, -6.348056 ], [ 108.484497, -6.424484 ], [ 108.621826, -6.779171 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.615356, -6.948239 ], [ 112.939453, -7.525873 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.522217, -8.303906 ], [ 110.588379, -8.124491 ], [ 109.429321, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.357019 ], [ 106.281738, -6.926427 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.276978, 0.439449 ], [ 103.837280, 0.104370 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.714093 ], [ 104.013062, -1.060120 ], [ 104.370117, -1.087581 ], [ 104.540405, -1.784990 ], [ 104.886475, -2.339438 ], [ 105.622559, -2.427252 ], [ 106.105957, -3.063725 ], [ 105.858765, -4.308069 ], [ 105.820312, -5.851010 ], [ 104.710693, -5.872868 ], [ 103.870239, -5.036227 ], [ 102.584839, -4.220421 ], [ 102.156372, -3.612107 ], [ 101.398315, -2.800398 ], [ 100.903931, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.181274 ], [ 99.173584, 0.439449 ], [ 103.276978, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.480523 ], [ 111.703491, -2.992413 ], [ 111.049805, -3.047268 ], [ 110.225830, -2.932069 ], [ 110.072021, -1.592812 ], [ 109.572144, -1.312751 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.675171, 22.039822 ], [ 92.570801, 22.350076 ], [ 93.142090, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ] ] ], [ [ [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.570801, 22.350076 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.325198 ], [ 92.301636, 21.473518 ], [ 92.367554, 20.668766 ], [ 92.081909, 21.192094 ], [ 92.026978, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.713867, 22.350076 ], [ 92.570801, 22.350076 ] ] ], [ [ [ 90.560303, 22.350076 ], [ 90.329590, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 22.350076 ], [ 90.560303, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.076570 ], [ 111.011353, 19.694314 ], [ 110.571899, 19.254108 ], [ 110.341187, 18.677471 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.505657 ], [ 108.627319, 19.368159 ], [ 109.121704, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.943046 ], [ 112.500000, 21.785006 ], [ 111.846313, 21.550175 ], [ 110.786133, 21.396819 ], [ 110.445557, 20.339476 ], [ 109.890747, 20.282809 ], [ 109.627075, 21.007599 ], [ 109.863281, 21.396819 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.885986, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.600342, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.804810, 21.176729 ], [ 101.271973, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.580078, 21.943046 ], [ 99.239502, 22.116177 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.316406, 22.350076 ], [ 99.239502, 22.116177 ], [ 99.580078, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.541626, 20.184879 ], [ 98.959351, 19.751194 ], [ 98.256226, 19.709829 ], [ 97.800293, 18.625425 ], [ 97.377319, 18.443136 ], [ 97.860718, 17.565484 ], [ 98.492432, 16.836090 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.266680 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.930977 ], [ 98.459473, 10.676803 ], [ 98.767090, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.366821, 15.712951 ], [ 94.806519, 15.802825 ], [ 94.191284, 16.040534 ], [ 94.531860, 17.277219 ], [ 94.323120, 18.213698 ], [ 93.543091, 19.368159 ], [ 93.663940, 19.725342 ], [ 93.076172, 19.854561 ], [ 92.367554, 20.668766 ], [ 92.301636, 21.473518 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.755127, 21.672744 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.761250 ], [ 104.820557, 19.885557 ], [ 104.183350, 19.627066 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.204687 ], [ 107.380371, 14.200488 ], [ 106.495972, 14.572951 ], [ 106.045532, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 102.996826, 17.963058 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.600342, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.885986, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.278886 ], [ 109.335938, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.402588, 9.530332 ], [ 105.155640, 8.597316 ], [ 104.793091, 9.243093 ], [ 105.078735, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.334636 ], [ 107.616577, 13.533860 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.204687 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.885557 ], [ 104.436035, 20.761250 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.672744 ], [ 102.551880, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.600342, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.616577, 13.533860 ], [ 107.490234, 12.334636 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.887254 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.282227, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.045532, 13.880746 ], [ 106.495972, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.096636 ], [ 112.939453, 1.477497 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.004596 ], [ 110.396118, 1.664195 ], [ 111.170654, 1.850874 ], [ 111.368408, 2.696148 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.096636 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.156616, 5.692516 ], [ 101.815796, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.523043 ], [ 103.381348, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.227295, 1.290784 ], [ 103.518677, 1.224882 ], [ 102.573853, 1.966167 ], [ 101.392822, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.557861, 4.768047 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.462693 ], [ 100.261230, 6.642783 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.441022 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.656494, 2.081451 ], [ 102.496948, 1.400617 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.915161, -0.439449 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.454693 ], [ 97.179565, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.453948 ], [ 96.586304, 28.830238 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.260844 ], [ 97.404785, 27.882784 ], [ 97.053223, 27.698120 ], [ 97.135620, 27.083582 ], [ 96.421509, 27.264396 ], [ 95.125122, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.603271, 25.160201 ], [ 94.553833, 24.676970 ], [ 94.108887, 23.850674 ], [ 93.323364, 24.076559 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.675171, 22.039822 ], [ 92.147827, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.708374, 22.983681 ], [ 91.159058, 23.503552 ], [ 91.466675, 24.071544 ], [ 91.917114, 24.131715 ], [ 92.378540, 24.976099 ], [ 91.801758, 25.145285 ], [ 90.873413, 25.130366 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.560547, 25.992612 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.373535, 26.877981 ], [ 91.219482, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.103882, 27.454665 ], [ 91.697388, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.276816 ], [ 95.405273, 29.032158 ], [ 96.119385, 29.453948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.730591, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.697388, 27.771051 ], [ 92.103882, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.219482, 26.809364 ], [ 90.373535, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.081674 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.992612 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.873413, 25.130366 ], [ 91.801758, 25.145285 ], [ 92.378540, 24.976099 ], [ 91.917114, 24.131715 ], [ 91.466675, 24.071544 ], [ 91.159058, 23.503552 ], [ 91.708374, 22.983681 ], [ 91.867676, 23.624395 ], [ 92.147827, 23.629427 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.658691, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.026978, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.587769, 22.390714 ], [ 90.329590, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 25.992612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.943046 ], [ 111.846313, 21.550175 ], [ 111.736450, 21.534847 ], [ 109.275513, 21.534847 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.885986, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.726685, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.331421, 23.352343 ], [ 104.474487, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.172852, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.755371, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.580078, 21.943046 ], [ 99.239502, 22.116177 ], [ 99.530640, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.662720, 24.061512 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.673706, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.684692, 27.508271 ], [ 98.245239, 27.746746 ], [ 97.910156, 28.338230 ], [ 97.327881, 28.260844 ], [ 96.251221, 28.410728 ], [ 96.586304, 28.830238 ], [ 96.119385, 29.453948 ], [ 95.405273, 29.032158 ], [ 94.564819, 29.276816 ], [ 93.411255, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.697388, 27.771051 ], [ 91.257935, 28.042895 ], [ 90.730591, 28.067133 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.560547, 28.081674 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.746746 ], [ 98.684692, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.673706, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.662720, 24.061512 ], [ 98.898926, 23.140360 ], [ 99.530640, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.580078, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.658691, 21.534847 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.076559 ], [ 94.108887, 23.850674 ], [ 94.553833, 24.676970 ], [ 94.603271, 25.160201 ], [ 95.152588, 26.002487 ], [ 95.125122, 26.573790 ], [ 96.421509, 27.264396 ], [ 97.135620, 27.083582 ], [ 97.053223, 27.698120 ], [ 97.404785, 27.882784 ], [ 97.327881, 28.260844 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.755127, 21.672744 ], [ 102.821045, 21.534847 ], [ 101.755371, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.172852, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.012085, 21.534847 ], [ 102.815552, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.331421, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.726685, 22.796439 ], [ 106.567383, 22.217920 ], [ 106.885986, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 108.023071, 21.534847 ], [ 102.821045, 21.534847 ], [ 102.755127, 21.672744 ], [ 102.551880, 21.943046 ], [ 102.172852, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.816694 ], [ 105.331421, 23.352343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.564415 ], [ 112.895508, 49.543034 ], [ 112.500000, 49.496675 ], [ 111.582642, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.292889 ], [ 108.473511, 49.282140 ], [ 107.869263, 49.795450 ], [ 106.891479, 50.275299 ], [ 105.886230, 50.405017 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.088869 ], [ 102.255249, 50.509933 ], [ 102.062988, 51.258477 ], [ 100.887451, 51.515580 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.045734 ], [ 97.827759, 51.010299 ], [ 98.234253, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.975955 ], [ 94.817505, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.235718, 50.802463 ], [ 90.714111, 50.331436 ], [ 89.560547, 49.813176 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.045734 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.515580 ], [ 102.062988, 51.258477 ], [ 102.255249, 50.509933 ], [ 103.677979, 50.088869 ], [ 104.622803, 50.275299 ], [ 105.886230, 50.405017 ], [ 106.891479, 50.275299 ], [ 107.869263, 49.795450 ], [ 108.473511, 49.282140 ], [ 109.401855, 49.292889 ], [ 110.659790, 49.131408 ], [ 111.582642, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.543034 ], [ 112.939453, 49.564415 ], [ 112.939453, 44.914249 ], [ 112.500000, 44.999767 ], [ 111.873779, 45.100669 ], [ 111.346436, 44.457310 ], [ 111.665039, 44.071800 ], [ 111.829834, 43.743321 ], [ 111.132202, 43.405047 ], [ 110.412598, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.480200 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.523926, 41.906365 ], [ 103.309937, 41.906365 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.662241 ], [ 99.514160, 42.524748 ], [ 97.454224, 42.747012 ], [ 96.350098, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.241264 ], [ 94.691162, 44.351350 ], [ 93.482666, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.587769, 45.721522 ], [ 90.972290, 46.886477 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.813176 ], [ 90.714111, 50.331436 ], [ 92.235718, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.817505, 50.014799 ], [ 95.811768, 49.975955 ], [ 97.261963, 49.724479 ], [ 98.234253, 50.422519 ], [ 97.827759, 51.010299 ], [ 98.860474, 52.045734 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.972290, 46.886477 ], [ 90.587769, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.482666, 44.976457 ], [ 94.691162, 44.351350 ], [ 95.306396, 44.241264 ], [ 95.762329, 43.321181 ], [ 96.350098, 42.726839 ], [ 97.454224, 42.747012 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.662241 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.906365 ], [ 104.523926, 41.906365 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.480200 ], [ 109.242554, 42.520700 ], [ 110.412598, 42.871938 ], [ 111.132202, 43.405047 ], [ 111.829834, 43.743321 ], [ 111.665039, 44.071800 ], [ 111.346436, 44.457310 ], [ 111.873779, 45.100669 ], [ 112.500000, 44.999767 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } ] } ] } , @@ -3716,19 +3705,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.758911, 74.140084 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.120972, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.960457 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.758911, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ] ] ], [ [ [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ] ] ], [ [ [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.353638, 77.697553 ], [ 106.067505, 77.373904 ], [ 104.705200, 77.127825 ], [ 106.968384, 76.973960 ], [ 107.237549, 76.479626 ], [ 108.154907, 76.722747 ], [ 111.077271, 76.710125 ], [ 112.500000, 76.403646 ], [ 112.939453, 76.307757 ], [ 112.939453, 75.075840 ], [ 112.780151, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.401855, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.464105 ], [ 90.000000, 75.575362 ], [ 90.258179, 75.639536 ], [ 92.900391, 75.773797 ], [ 93.235474, 76.046592 ], [ 95.861206, 76.140327 ], [ 96.679688, 75.914852 ], [ 98.920898, 76.447482 ], [ 100.761108, 76.430738 ], [ 101.035767, 76.862059 ], [ 101.991577, 77.287159 ], [ 104.353638, 77.697553 ] ] ], [ [ [ 112.642822, 73.898111 ], [ 112.939453, 73.960457 ], [ 112.939453, 73.898111 ], [ 112.642822, 73.898111 ] ] ], [ [ [ 102.958374, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.713091 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.173096, 79.171335 ], [ 101.266479, 79.234107 ], [ 101.403809, 79.253586 ], [ 102.958374, 79.253586 ] ] ], [ [ [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ], [ 99.937134, 78.880647 ], [ 97.756348, 78.756016 ], [ 94.971313, 79.044703 ], [ 94.421997, 79.171335 ], [ 94.064941, 79.253586 ], [ 100.030518, 79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.346396 ], [ 102.837524, 79.281206 ], [ 103.331909, 79.171335 ], [ 103.705444, 79.088462 ], [ 101.052246, 79.088462 ], [ 101.173096, 79.171335 ], [ 101.266479, 79.234107 ], [ 102.084961, 79.346396 ] ] ], [ [ [ 95.943604, 81.250020 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.014038, 79.171335 ], [ 99.992065, 79.088462 ], [ 94.779053, 79.088462 ], [ 94.421997, 79.171335 ], [ 93.312378, 79.426325 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.341340 ], [ 93.779297, 81.024916 ], [ 95.943604, 81.250020 ] ] ] ] } } ] } ] } , @@ -3752,71 +3741,71 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.603638, -66.700824 ], [ 116.696777, -66.661684 ], [ 117.383423, -66.914988 ], [ 118.580933, -67.169955 ], [ 119.833374, -67.267798 ], [ 120.871582, -67.189129 ], [ 121.657104, -66.876188 ], [ 122.321777, -66.563562 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.484784 ], [ 123.403931, -66.513260 ], [ 124.123535, -66.622482 ], [ 125.161743, -66.720370 ], [ 126.101074, -66.563562 ], [ 127.001953, -66.563562 ], [ 127.880859, -66.661684 ], [ 128.803711, -66.759418 ], [ 129.704590, -66.583217 ], [ 130.182495, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.395996, -66.337505 ], [ 135.439453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ] ] ], [ [ [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ] ] ], [ [ [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ] ] ], [ [ [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ] ] ], [ [ [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.876970 ], [ 114.389648, -66.073774 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.862549, -66.091591 ], [ 113.604126, -65.876970 ] ] ], [ [ [ 115.966187, -66.687784 ], [ 116.696777, -66.661684 ], [ 116.762695, -66.687784 ], [ 115.966187, -66.687784 ] ] ], [ [ [ 122.052612, -66.687784 ], [ 122.321777, -66.563562 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.484784 ], [ 123.403931, -66.513260 ], [ 124.123535, -66.622482 ], [ 124.815674, -66.687784 ], [ 122.052612, -66.687784 ] ] ], [ [ [ 125.354004, -66.687784 ], [ 126.101074, -66.563562 ], [ 127.001953, -66.563562 ], [ 128.122559, -66.687784 ], [ 125.354004, -66.687784 ] ] ], [ [ [ 129.166260, -66.687784 ], [ 129.704590, -66.583217 ], [ 130.182495, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.857422, -66.288955 ], [ 134.758301, -66.209308 ], [ 135.000000, -65.777998 ], [ 135.032959, -65.719335 ], [ 135.071411, -65.309535 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.166260, -66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.224903 ], [ 134.088135, -32.847289 ], [ 134.274902, -32.616243 ], [ 132.989502, -32.012734 ], [ 132.286377, -31.984783 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.592574 ], [ 128.243408, -31.947501 ], [ 127.100830, -32.282489 ], [ 126.150513, -32.217449 ], [ 125.090332, -32.727220 ], [ 124.222412, -32.957977 ], [ 124.030151, -33.481854 ], [ 123.662109, -33.888658 ], [ 122.810669, -33.916013 ], [ 122.184448, -34.002581 ], [ 121.300049, -33.820230 ], [ 120.580444, -33.929688 ], [ 119.893799, -33.975253 ], [ 119.300537, -34.511083 ], [ 119.009399, -34.465806 ], [ 118.504028, -34.746126 ], [ 118.026123, -35.065973 ], [ 117.295532, -35.025498 ], [ 116.625366, -35.025498 ], [ 115.565186, -34.384246 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.623768 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.261657 ], [ 115.680542, -32.902650 ], [ 115.801392, -32.203505 ], [ 115.691528, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.999390, -30.031055 ], [ 115.037842, -29.458731 ], [ 114.642334, -28.810987 ], [ 114.614868, -28.516969 ], [ 114.175415, -28.120439 ], [ 114.049072, -27.332735 ], [ 113.477783, -26.544309 ], [ 113.340454, -26.115986 ], [ 113.779907, -26.549223 ], [ 113.439331, -25.621716 ], [ 113.939209, -25.913585 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -25.000994 ], [ 113.626099, -24.681961 ], [ 113.395386, -24.387127 ], [ 113.499756, -23.805450 ], [ 113.708496, -23.558952 ], [ 113.845825, -23.059516 ], [ 113.735962, -22.477030 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.517631 ], [ 114.576416, -21.943046 ], [ 114.647827, -21.830907 ], [ 115.361938, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ] ] ], [ [ [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.969482, -8.890499 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.436646, -10.141932 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.552246, -9.898510 ], [ 123.980713, -9.291886 ], [ 124.969482, -8.890499 ] ] ], [ [ [ 119.899292, -9.362353 ], [ 120.426636, -9.665738 ], [ 120.778198, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.294800, -10.260871 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.362353 ] ] ], [ [ [ 117.899780, -8.097300 ], [ 118.262329, -8.363693 ], [ 118.877563, -8.282163 ], [ 119.124756, -8.705929 ], [ 117.971191, -8.906780 ], [ 117.279053, -9.042428 ], [ 116.740723, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.450639 ], [ 117.899780, -8.097300 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.755737, -8.651626 ], [ 121.256104, -8.933914 ], [ 119.926758, -8.809082 ], [ 119.921265, -8.445205 ], [ 120.717773, -8.238674 ], [ 121.343994, -8.537565 ], [ 122.008667, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 112.060547, -6.800990 ], [ 112.500000, -6.915521 ], [ 112.615356, -6.948239 ], [ 112.977905, -7.596663 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.369127 ], [ 114.565430, -8.749366 ], [ 113.466797, -8.347388 ], [ 112.560425, -8.374562 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.800990 ] ] ], [ [ [ 117.641602, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.488480 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.496972 ], [ 113.757935, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.480523 ], [ 112.060547, -3.469557 ], [ 112.060547, 0.439449 ], [ 117.641602, 0.439449 ] ] ], [ [ [ 134.500122, -5.446491 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.291382, -5.785432 ], [ 134.500122, -5.446491 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.135498, 0.000000 ], [ 120.042114, -0.521843 ], [ 120.937500, -1.411600 ], [ 121.475830, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.261108, -1.076597 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.905776 ], [ 122.453613, -3.184394 ], [ 122.272339, -3.529869 ], [ 123.173218, -4.685930 ], [ 123.162231, -5.342583 ], [ 122.629395, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.187551 ], [ 120.899048, -3.601142 ], [ 120.970459, -2.630301 ], [ 120.305786, -2.932069 ], [ 120.388184, -4.099890 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.676117 ], [ 119.366455, -5.380867 ], [ 119.652100, -4.461427 ], [ 119.498291, -3.496972 ], [ 119.080811, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.147324 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 119.970703, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.423218, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.164795, -4.461427 ], [ 135.000000, -4.357366 ], [ 133.665161, -3.540835 ], [ 133.368530, -4.023179 ], [ 132.984009, -4.110848 ], [ 132.758789, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.698120, -2.213195 ], [ 132.231445, -2.213195 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.433566 ], [ 130.517578, -0.939289 ], [ 131.868896, -0.697615 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.473633, -3.091151 ], [ 130.836182, -3.858774 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.365373 ], [ 128.589478, -3.431175 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 128.644409, 0.439449 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.380737, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.269164 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.644409, 0.439449 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.249146, -3.458591 ], [ 126.875610, -3.793003 ], [ 126.183472, -3.606625 ], [ 125.991211, -3.178910 ], [ 127.001953, -3.129546 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.271291 ], [ 127.337036, -8.396300 ], [ 126.968994, -8.667918 ], [ 125.925293, -9.107521 ], [ 125.090332, -9.394871 ], [ 125.068359, -9.091249 ], [ 124.969482, -8.890499 ], [ 125.084839, -8.657057 ], [ 125.947266, -8.434338 ], [ 126.644897, -8.396300 ], [ 126.958008, -8.271291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.807373, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 114.323730, -22.350076 ], [ 114.576416, -21.943046 ], [ 114.647827, -21.830907 ], [ 115.460815, -21.493964 ], [ 115.949707, -21.069123 ], [ 116.713257, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.443848, -20.745840 ], [ 118.229370, -20.375527 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.045611 ], [ 119.251099, -19.952696 ], [ 119.805908, -19.978511 ], [ 120.855103, -19.683970 ], [ 121.398926, -19.238550 ], [ 121.657104, -18.703489 ], [ 122.239380, -18.198044 ], [ 122.288818, -17.800996 ], [ 122.310791, -17.256236 ], [ 123.013916, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.859863, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.260864, -16.325411 ], [ 124.381714, -15.564836 ], [ 124.925537, -15.077428 ], [ 125.167236, -14.679254 ], [ 125.672607, -14.509144 ], [ 125.683594, -14.232438 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 126.584473, -13.955392 ], [ 127.067871, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.870469 ], [ 128.984985, -14.875778 ], [ 129.622192, -14.971320 ], [ 129.407959, -14.418720 ], [ 129.891357, -13.619295 ], [ 130.341797, -13.357554 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.538478 ], [ 131.226196, -12.184334 ], [ 131.737061, -12.302435 ], [ 132.577515, -12.114523 ], [ 132.555542, -11.603813 ], [ 131.824951, -11.275387 ], [ 132.357788, -11.129897 ], [ 133.016968, -11.377724 ], [ 133.549805, -11.786703 ], [ 134.395752, -12.044693 ], [ 134.675903, -11.942601 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.248760 ], [ 135.439453, -12.178965 ], [ 135.439453, -14.700508 ], [ 135.428467, -14.716448 ], [ 135.439453, -14.758947 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ] ] ], [ [ [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.582153, 22.350076 ], [ 113.241577, 22.050005 ], [ 112.939453, 21.943046 ], [ 112.500000, 21.785006 ], [ 112.060547, 21.631899 ], [ 112.060547, 22.350076 ], [ 113.582153, 22.350076 ] ] ], [ [ [ 114.323730, 22.350076 ], [ 114.153442, 22.223005 ], [ 114.016113, 22.350076 ], [ 114.323730, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.014339 ], [ 118.438110, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.308069 ], [ 115.867310, 4.308069 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.867554, 4.346411 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.446491 ], [ 116.218872, 6.140555 ], [ 116.724243, 6.926427 ], [ 117.130737, 6.926427 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.942993, 22.350076 ], [ 120.745239, 21.968519 ], [ 120.503540, 22.350076 ], [ 120.942993, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.414429, 9.757784 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.781940 ], [ 126.375732, 8.412602 ], [ 126.480103, 7.749094 ], [ 126.535034, 7.188101 ], [ 126.194458, 6.271618 ], [ 125.831909, 7.291639 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.047699 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.612671, 7.836173 ], [ 123.294067, 7.416942 ], [ 122.827148, 7.455071 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.942505, 8.314777 ], [ 123.486328, 8.695069 ], [ 123.843384, 8.238674 ], [ 124.601440, 8.515836 ], [ 124.766235, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.414429, 9.757784 ] ] ], [ [ [ 121.322021, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.338257, 18.224134 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.262141 ], [ 121.662598, 15.929638 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.261353, 14.216464 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.183960, 12.999205 ], [ 124.079590, 12.538478 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.555222 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.679321, 14.269707 ], [ 120.992432, 14.525098 ], [ 120.695801, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.921265, 15.406024 ], [ 119.882812, 16.362310 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.596903 ], [ 120.717773, 18.505657 ], [ 121.322021, 18.505657 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.227661, 12.533115 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.043647 ], [ 125.013428, 11.313094 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.799194, 10.136524 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.887254 ], [ 124.304810, 11.496174 ], [ 124.892578, 11.415418 ], [ 124.876099, 11.792080 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.277086 ], [ 123.623657, 9.952620 ], [ 123.310547, 9.318990 ], [ 122.997437, 9.020728 ], [ 122.382202, 9.714472 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.497314, 10.941192 ], [ 123.338013, 10.266276 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.690552, 10.552622 ], [ 119.031372, 10.001310 ], [ 118.504028, 9.318990 ], [ 117.174683, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.681984 ], [ 118.987427, 10.374362 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.582288 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.741572 ], [ 122.003174, 10.439196 ], [ 121.964722, 10.903436 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.068777 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.346411 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.238647, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.135498, 0.000000 ], [ 120.053101, -0.439449 ], [ 119.624634, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.016182 ], [ 122.926025, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.594971, 1.543392 ], [ 128.688354, 1.131518 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.111572, -0.439449 ], [ 127.798462, -0.439449 ], [ 127.694092, -0.269164 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.600708, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.015381, 4.308069 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.290039 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.308069 ], [ 117.015381, 4.308069 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.375732, 41.310824 ], [ 126.183472, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.079346, 40.568067 ], [ 124.266357, 39.926588 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.168400 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.359785 ], [ 121.376953, 39.749434 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.767212, 40.593100 ], [ 119.641113, 39.897094 ], [ 119.025879, 39.253525 ], [ 118.042603, 39.202462 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.061067 ], [ 118.877563, 37.896530 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.155939 ], [ 120.822144, 37.870517 ], [ 121.712036, 37.479217 ], [ 122.360229, 37.453057 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.650793 ], [ 120.635376, 36.111253 ], [ 119.663086, 35.608185 ], [ 119.152222, 34.908458 ], [ 120.228882, 34.361576 ], [ 120.618896, 33.376412 ], [ 121.228638, 32.458791 ], [ 121.909790, 31.690782 ], [ 121.893311, 30.949347 ], [ 121.261597, 30.675715 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.831114 ], [ 121.937256, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.124268, 28.134972 ], [ 120.393677, 27.054234 ], [ 119.586182, 25.740529 ], [ 118.657837, 24.547123 ], [ 117.279053, 23.624395 ], [ 115.889282, 22.781246 ], [ 114.763184, 22.669779 ], [ 114.153442, 22.223005 ], [ 113.807373, 22.548074 ], [ 113.241577, 22.050005 ], [ 112.939453, 21.943046 ], [ 112.060547, 21.631899 ], [ 112.060547, 41.310824 ], [ 126.375732, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.294371 ], [ 121.953735, 24.996016 ], [ 121.777954, 24.392130 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.968519 ], [ 120.217896, 22.816694 ], [ 120.108032, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.492310, 25.294371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.188232, 40.659806 ], [ 129.012451, 40.484560 ], [ 128.633423, 40.191463 ], [ 127.968750, 40.023408 ], [ 127.534790, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.049052 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.781982, 38.302870 ], [ 127.073364, 38.255436 ], [ 126.683350, 37.805444 ], [ 126.238403, 37.840157 ], [ 126.172485, 37.749001 ], [ 125.689087, 37.939865 ], [ 125.568237, 37.753344 ], [ 125.277100, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.948529 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.548165 ], [ 125.222168, 38.664067 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.389509 ], [ 125.321045, 39.550648 ], [ 124.738770, 39.660685 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.568067 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.375732, 41.310824 ], [ 129.677124, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.468384, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.890437 ], [ 127.386475, 34.474864 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.935482 ], [ 126.557007, 35.684072 ], [ 126.117554, 36.725677 ], [ 126.859131, 36.892801 ], [ 126.172485, 37.749001 ], [ 126.238403, 37.840157 ], [ 126.683350, 37.805444 ], [ 127.073364, 38.255436 ], [ 127.781982, 38.302870 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.609985, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.669497 ], [ 135.120850, 33.847608 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.375179 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.884097 ], [ 132.000732, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.687866, 31.029401 ], [ 130.204468, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.885376, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.609985, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.148181 ], [ 134.763794, 33.806538 ], [ 134.203491, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.280640, 33.289212 ], [ 133.016968, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.368774, 33.463525 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.366111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.930298 ], [ 135.126343, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.921637 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.907104, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.928274 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.968684 ], [ 131.885376, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.115134 ], [ 134.110107, 47.212106 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.432845 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.472921 ], [ 133.374023, 48.184401 ], [ 132.506104, 47.787326 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.730832 ], [ 129.396973, 49.439557 ], [ 127.655640, 49.759978 ], [ 127.287598, 50.739932 ], [ 126.941528, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.947266, 52.792797 ], [ 125.068359, 53.159947 ], [ 123.568726, 53.458620 ], [ 122.244873, 53.432447 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.752919 ], [ 120.723267, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.641885 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.877808, 49.510944 ], [ 116.680298, 49.887557 ], [ 115.488281, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.247205 ], [ 112.895508, 49.543034 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.439557 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.247205 ], [ 114.960938, 50.141706 ], [ 115.488281, 49.806087 ], [ 116.680298, 49.887557 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.295532, 47.698672 ], [ 118.064575, 48.067068 ], [ 118.866577, 47.746711 ], [ 119.772949, 47.047669 ], [ 119.663086, 46.690899 ], [ 118.872070, 46.803820 ], [ 117.421875, 46.672056 ], [ 116.718750, 46.388622 ], [ 115.982666, 45.725356 ], [ 114.461060, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.011419 ], [ 112.060547, 45.073521 ], [ 112.060547, 49.439557 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.543034 ], [ 114.362183, 50.247205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.458620 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.792797 ], [ 126.562500, 51.784834 ], [ 126.941528, 51.354631 ], [ 127.287598, 50.739932 ], [ 127.655640, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.730832 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.787326 ], [ 133.374023, 48.184401 ], [ 135.000000, 48.472921 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.432845 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.212106 ], [ 133.769531, 46.115134 ], [ 133.099365, 45.143305 ], [ 131.885376, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.111254 ], [ 131.143799, 42.928274 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.995728, 42.984558 ], [ 129.594727, 42.423457 ], [ 128.051147, 41.996243 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.870117, 41.816361 ], [ 126.183472, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.238647, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.640625, 40.946714 ], [ 120.899048, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.073521 ], [ 112.500000, 44.999767 ], [ 113.461304, 44.809122 ], [ 114.461060, 45.340563 ], [ 115.982666, 45.725356 ], [ 116.718750, 46.388622 ], [ 117.421875, 46.672056 ], [ 118.872070, 46.803820 ], [ 119.663086, 46.690899 ], [ 119.772949, 47.047669 ], [ 118.866577, 47.746711 ], [ 118.064575, 48.067068 ], [ 117.295532, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.680298, 49.887557 ], [ 117.877808, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.641885 ], [ 120.739746, 51.964577 ], [ 120.723267, 52.516221 ], [ 120.179443, 52.752919 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.574219, 53.458620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.995728, 42.984558 ], [ 130.638428, 42.395066 ], [ 130.781250, 42.220382 ], [ 130.402222, 42.281373 ], [ 129.968262, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.188232, 40.659806 ], [ 129.171753, 40.647304 ], [ 125.238647, 40.647304 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.870117, 41.816361 ], [ 127.342529, 41.504464 ], [ 128.210449, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.423457 ], [ 129.995728, 42.984558 ] ] ] } } ] } ] } , @@ -3828,13 +3817,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.021851, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.752742 ], [ 118.778687, 73.587482 ], [ 119.020386, 73.120161 ], [ 123.200684, 72.971189 ], [ 123.255615, 73.734289 ], [ 125.381470, 73.559522 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.038624 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.786910 ], [ 132.253418, 71.835691 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.120972, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.021851, 73.977144 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.642822, 73.898111 ], [ 113.021851, 73.977144 ], [ 113.082275, 73.898111 ], [ 112.642822, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.403646 ], [ 113.329468, 76.221675 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.780151, 75.031921 ], [ 112.500000, 74.975064 ], [ 112.060547, 74.882222 ], [ 112.060547, 76.500159 ] ] ] ] } } ] } ] } , @@ -3858,139 +3847,139 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.115112, -66.337505 ], [ 136.208496, -66.445302 ], [ 136.290894, -66.513260 ], [ 136.620483, -66.778918 ], [ 137.460938, -66.953727 ], [ 138.598022, -66.895596 ], [ 139.910889, -66.876188 ], [ 140.811768, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.798403 ], [ 144.371338, -66.837326 ], [ 145.491943, -66.914988 ], [ 146.195068, -67.229559 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.130668 ], [ 148.837280, -68.385020 ], [ 150.133667, -68.560384 ], [ 151.484985, -68.718447 ], [ 152.501221, -68.875399 ], [ 153.638306, -68.895187 ], [ 154.286499, -68.560384 ], [ 155.165405, -68.835769 ], [ 155.928955, -69.148876 ], [ 156.813354, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.474895 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.071411, -65.309535 ], [ 135.697632, -65.583449 ], [ 135.873413, -66.033642 ], [ 136.208496, -66.445302 ], [ 136.290894, -66.513260 ], [ 136.505127, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.758301, -66.209308 ], [ 135.000000, -65.777998 ], [ 135.032959, -65.719335 ], [ 135.071411, -65.309535 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.744873, -40.705628 ], [ 145.398560, -40.793019 ], [ 145.920410, -40.979898 ], [ 146.365356, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.689209, -40.809652 ], [ 148.287964, -40.876141 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.018799, -42.407235 ], [ 147.914429, -43.213183 ], [ 147.562866, -42.936318 ], [ 146.870728, -43.636075 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.694549 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.744873, -40.705628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.744873, -40.705628 ], [ 145.398560, -40.793019 ], [ 145.920410, -40.979898 ], [ 146.365356, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.689209, -40.809652 ], [ 148.287964, -40.876141 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.744873, -40.705628 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.344995 ], [ 150.078735, -22.121266 ], [ 150.485229, -22.558220 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.463246 ], [ 151.611328, -24.076559 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.269536 ], [ 153.138428, -26.071586 ], [ 153.160400, -26.642549 ], [ 153.094482, -27.259513 ], [ 153.566895, -28.110749 ], [ 153.511963, -28.993727 ], [ 153.341675, -29.458731 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.925789 ], [ 152.891235, -31.639352 ], [ 152.451782, -32.551444 ], [ 151.710205, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.012573, -34.311681 ], [ 150.715942, -35.173808 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.421282 ], [ 149.946899, -37.107765 ], [ 149.996338, -37.426888 ], [ 149.425049, -37.770715 ], [ 148.304443, -37.809784 ], [ 147.381592, -38.220920 ], [ 146.920166, -38.608286 ], [ 146.315918, -39.036253 ], [ 145.491943, -38.595407 ], [ 144.876709, -38.419166 ], [ 145.030518, -37.896530 ], [ 144.486694, -38.087013 ], [ 143.607788, -38.809751 ], [ 142.745361, -38.539573 ], [ 142.179565, -38.380422 ], [ 141.608276, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.993286, -37.405074 ], [ 139.806519, -36.641978 ], [ 139.575806, -36.137875 ], [ 139.081421, -35.733136 ], [ 138.120117, -35.612651 ], [ 138.449707, -35.128894 ], [ 138.208008, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.129995 ], [ 137.889404, -33.642063 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.751748 ], [ 136.373291, -34.093610 ], [ 135.988770, -34.890437 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.224903 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.185791, -2.054003 ], [ 139.927368, -2.410787 ], [ 140.998535, -2.602864 ], [ 141.031494, -9.118368 ], [ 140.141602, -8.298470 ], [ 139.125366, -8.097300 ], [ 138.883667, -8.379997 ], [ 137.614746, -8.412602 ], [ 138.037720, -7.596663 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.233395 ], [ 137.927856, -5.391805 ], [ 135.988770, -4.549046 ], [ 135.164795, -4.461427 ], [ 135.000000, -4.357366 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.096636 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.560547, -6.429942 ], [ 134.560547, -5.523043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.786703 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.563843, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.376587, -14.987240 ], [ 145.272217, -15.427206 ], [ 145.486450, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.162109, -17.759150 ], [ 146.063232, -18.281518 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.482129 ], [ 148.178101, -19.957860 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.344995 ], [ 150.078735, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.980218 ], [ 134.675903, -11.942601 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.248760 ], [ 135.884399, -11.964097 ], [ 136.257935, -12.050065 ], [ 136.494141, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.686401, -12.886780 ], [ 136.307373, -13.293411 ], [ 135.961304, -13.325485 ], [ 136.076660, -13.726045 ], [ 135.785522, -14.221789 ], [ 135.428467, -14.716448 ], [ 135.499878, -14.997852 ], [ 136.296387, -15.548960 ], [ 137.065430, -15.871525 ], [ 137.581787, -16.214675 ], [ 138.301392, -16.809800 ], [ 138.587036, -16.804541 ], [ 139.108887, -17.062036 ], [ 139.262695, -17.371610 ], [ 140.213013, -17.712061 ], [ 140.877686, -17.371610 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.399536, -15.839820 ], [ 141.701660, -15.045601 ], [ 141.564331, -14.562318 ], [ 141.635742, -14.269707 ], [ 141.520386, -13.699362 ], [ 141.652222, -12.945676 ], [ 141.844482, -12.742158 ], [ 141.685181, -12.409754 ], [ 141.926880, -11.878102 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.043647 ], [ 142.514648, -10.666006 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.602864 ], [ 142.734375, -3.288598 ], [ 144.585571, -3.858774 ], [ 145.272217, -4.373798 ], [ 145.832520, -4.877521 ], [ 145.980835, -5.462896 ], [ 147.650757, -6.085936 ], [ 147.892456, -6.615501 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.389705 ], [ 148.084717, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.040283, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.803833, -10.293301 ], [ 150.688477, -10.585022 ], [ 150.029297, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.925171, -10.282491 ], [ 147.914429, -10.131117 ], [ 147.134399, -9.492408 ], [ 146.568604, -8.944767 ], [ 146.046753, -8.070107 ], [ 144.744873, -7.629331 ], [ 143.898926, -7.917793 ], [ 143.283691, -8.244110 ], [ 143.415527, -8.982749 ], [ 142.630005, -9.324411 ], [ 142.069702, -9.161756 ], [ 141.031494, -9.118368 ], [ 140.998535, -2.602864 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.313546 ], [ 152.319946, -4.866574 ], [ 151.984863, -5.479300 ], [ 151.457520, -5.561315 ], [ 151.303711, -5.840081 ], [ 150.243530, -6.315299 ], [ 149.710693, -6.315299 ], [ 148.892212, -6.025848 ], [ 148.320923, -5.747174 ], [ 148.403320, -5.435554 ], [ 149.298706, -5.583184 ], [ 149.848022, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.533978 ], [ 150.809326, -5.457427 ], [ 151.089478, -5.112830 ], [ 151.649780, -4.757098 ], [ 151.539917, -4.165637 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 154.654541, -5.041699 ], [ 154.758911, -5.342583 ], [ 155.061035, -5.566783 ], [ 155.549927, -6.200629 ], [ 156.022339, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.920974 ], [ 155.165405, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.140186 ], [ 154.654541, -5.041699 ] ] ], [ [ [ 150.941162, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.820068, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.661446 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.768047 ], [ 152.638550, -4.176594 ], [ 152.407837, -3.787522 ], [ 151.951904, -3.464074 ], [ 151.386108, -3.036298 ], [ 150.661011, -2.740044 ], [ 150.941162, -2.498597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.544189, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.313433 ], [ 157.538452, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.340698, -7.406048 ], [ 156.901245, -7.177201 ], [ 156.489258, -6.768261 ], [ 156.544189, -6.599131 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.388550, 41.310824 ], [ 141.520386, 40.979898 ], [ 141.915894, 39.989747 ], [ 141.882935, 39.181175 ], [ 140.960083, 38.173433 ], [ 140.976562, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.137879 ], [ 138.977051, 34.669359 ], [ 137.219238, 34.606085 ], [ 135.791016, 33.463525 ], [ 135.120850, 33.847608 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.609985, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.724854, 37.304645 ], [ 137.389526, 36.826875 ], [ 139.427490, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.883423, 40.563895 ], [ 140.158081, 40.979898 ], [ 140.306396, 41.195190 ], [ 140.976562, 41.310824 ], [ 141.388550, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.148181 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.197266, 56.022948 ], [ 136.796265, 55.776573 ], [ 135.126343, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.806763, 54.255598 ], [ 139.899902, 54.188155 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.237892 ], [ 140.597534, 51.241286 ], [ 140.515137, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 46.998988 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.143305 ], [ 135.516357, 43.988862 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.397065 ], [ 134.560547, 43.265206 ], [ 134.560547, 47.683881 ], [ 135.000000, 48.432845 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.472921 ], [ 134.560547, 48.396385 ], [ 134.560547, 56.022948 ], [ 137.197266, 56.022948 ] ] ], [ [ [ 142.657471, 54.364558 ], [ 142.915649, 53.703211 ], [ 143.261719, 52.739618 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.746884 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.861089 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.739861 ], [ 142.091675, 45.966425 ], [ 141.904907, 46.807580 ], [ 142.020264, 47.779943 ], [ 141.904907, 48.857487 ], [ 142.135620, 49.614269 ], [ 142.179565, 50.951506 ], [ 141.591797, 51.934105 ], [ 141.685181, 53.301338 ], [ 142.608032, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.364558 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.757640 ], [ 157.500000, 51.474540 ], [ 156.791382, 51.010299 ], [ 156.417847, 51.699800 ], [ 155.989380, 53.159947 ], [ 155.434570, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.027466, 48.476563 ], [ 135.000000, 48.432845 ], [ 134.560547, 47.683881 ], [ 134.560547, 48.396385 ], [ 135.000000, 48.472921 ], [ 135.027466, 48.476563 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.376809 ], [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.938354, 40.647304 ], [ 140.158081, 40.979898 ], [ 140.306396, 41.195190 ], [ 141.366577, 41.376809 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.321655, 44.386692 ], [ 145.541382, 43.261206 ], [ 144.058228, 42.988576 ], [ 143.184814, 41.996243 ], [ 141.613770, 42.678397 ], [ 141.069946, 41.582580 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.333169 ], [ 141.383057, 43.389082 ], [ 141.674194, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ] ] ], [ [ [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.939453, 61.595946 ], [ 157.500000, 61.538406 ], [ 156.719971, 61.433515 ], [ 154.220581, 59.759162 ], [ 155.044556, 59.144952 ], [ 152.814331, 58.884781 ], [ 151.265259, 58.779591 ], [ 151.336670, 59.503667 ], [ 149.782104, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.486450, 59.335991 ], [ 142.196045, 59.040555 ], [ 138.960571, 57.088515 ], [ 136.796265, 55.776573 ], [ 136.395264, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.595946 ] ] ], [ [ [ 157.939453, 57.996455 ], [ 157.939453, 55.528631 ], [ 155.484009, 55.528631 ], [ 155.566406, 55.776573 ], [ 155.912476, 56.767778 ], [ 156.758423, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.932351 ], [ 157.939453, 57.996455 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.465698, 72.850122 ], [ 149.501953, 72.200284 ], [ 150.353394, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.031249 ], [ 157.500000, 70.991928 ], [ 157.939453, 70.954320 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.000000, 71.568378 ], [ 135.560303, 71.655020 ], [ 137.499390, 71.348285 ], [ 138.235474, 71.627338 ], [ 139.872437, 71.488319 ], [ 139.147339, 72.415631 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.064209, 73.856925 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.212427 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.316823 ], [ 139.861450, 73.370356 ], [ 140.811768, 73.765033 ], [ 142.064209, 73.856925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.828735, 76.136379 ], [ 141.470947, 76.092877 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.614014, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.261444 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.136379 ] ] ], [ [ [ 146.359863, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.732422, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.359863, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.054932, -84.721232 ], [ 180.439453, -84.475122 ], [ 180.439453, -85.088894 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.696045, -82.620052 ], [ 164.948730, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.898315, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413967 ], [ 175.984497, -84.159172 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.054932, -84.721232 ], [ 180.439453, -84.475122 ], [ 180.439453, -85.088894 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.696045, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.910522, -79.088462 ], [ 163.668823, -79.122722 ], [ 161.768188, -79.162043 ], [ 161.751709, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.201176 ], [ 160.317993, -80.572647 ], [ 159.790649, -80.945731 ], [ 161.119995, -81.278386 ], [ 161.630859, -81.689909 ], [ 162.493286, -82.062446 ], [ 163.707275, -82.395157 ], [ 164.948730, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.910522, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.832642, -73.898111 ], [ 167.629395, -74.019543 ], [ 167.387695, -74.165584 ], [ 166.096802, -74.381471 ], [ 165.646362, -74.772958 ], [ 164.959717, -75.145003 ], [ 164.234619, -75.458589 ], [ 163.822632, -75.870669 ], [ 163.569946, -76.242592 ], [ 163.471069, -76.693699 ], [ 163.487549, -77.065265 ], [ 164.058838, -77.457681 ], [ 164.273071, -77.830273 ], [ 164.745483, -78.182963 ], [ 166.602173, -78.319421 ], [ 166.997681, -78.750659 ], [ 165.195923, -78.907100 ], [ 163.668823, -79.122722 ], [ 161.768188, -79.162043 ], [ 161.751709, -79.171335 ], [ 161.630859, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.832642, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ], [ 158.027344, -69.482597 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.992415 ], [ 160.806885, -70.226028 ], [ 161.570435, -70.579765 ], [ 162.685547, -70.736230 ], [ 163.844604, -70.716285 ], [ 164.921265, -70.776061 ], [ 166.113281, -70.756155 ], [ 167.310791, -70.833855 ], [ 168.425903, -70.972238 ], [ 169.464111, -71.207229 ], [ 170.502319, -71.402669 ], [ 171.205444, -71.696469 ], [ 171.090088, -72.089122 ], [ 170.562744, -72.440507 ], [ 169.755249, -73.244129 ], [ 169.288330, -73.655637 ], [ 167.975464, -73.812574 ], [ 167.629395, -74.019543 ], [ 167.426147, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.248901, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.248657, -41.347948 ], [ 174.248657, -41.771312 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.373112 ], [ 173.078613, -43.854336 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.898687 ], [ 170.617676, -45.909122 ], [ 169.332275, -46.641894 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.679077, -46.221652 ], [ 166.508789, -45.851760 ], [ 167.047119, -45.112300 ], [ 168.305054, -44.123085 ], [ 168.947754, -43.937462 ], [ 169.667358, -43.556510 ], [ 170.524292, -43.032761 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.290190 ], [ 175.237427, -41.689322 ], [ 175.067139, -41.426253 ], [ 174.649658, -41.281935 ], [ 174.858398, -40.979898 ], [ 175.094604, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.382446, -21.534847 ], [ 166.602173, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.161971 ], [ 166.739502, -22.400872 ], [ 166.190186, -22.131443 ], [ 165.888062, -21.943046 ], [ 165.476074, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.382446, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ], [ [ [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.232422, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.007202, -34.452218 ], [ 173.551025, -35.007503 ], [ 174.331055, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.358276, -36.527295 ], [ 175.808716, -36.800488 ], [ 175.957031, -37.553288 ], [ 176.764526, -37.879189 ], [ 177.440186, -37.961523 ], [ 178.011475, -37.579413 ], [ 178.516846, -37.696861 ], [ 178.275146, -38.582526 ], [ 177.973022, -39.168400 ], [ 177.209473, -39.147103 ], [ 176.940308, -39.448919 ], [ 177.033691, -39.880235 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.290190 ], [ 175.968018, -41.310824 ], [ 174.732056, -41.310824 ], [ 174.649658, -41.281935 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.459487 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.508279 ], [ 173.853149, -39.147103 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.699097, -37.383253 ], [ 174.292603, -36.712467 ], [ 174.320068, -36.536123 ], [ 173.842163, -36.120128 ], [ 173.056641, -35.236646 ], [ 172.633667, -34.529187 ], [ 173.007202, -34.452218 ] ] ], [ [ [ 173.281860, -41.310824 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.221191, -41.310824 ], [ 173.281860, -41.310824 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.203247, -16.019416 ], [ 180.082397, -16.499299 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.340152 ], [ 178.720093, -17.628317 ], [ 178.555298, -18.151072 ], [ 177.934570, -18.286734 ], [ 177.379761, -18.166730 ], [ 177.286377, -17.722526 ], [ 177.670898, -17.382095 ], [ 178.126831, -17.502628 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.208740, -16.019416 ], [ 180.082397, -16.499299 ], [ 180.000000, -16.557227 ], [ 179.362793, -16.799282 ], [ 178.725586, -17.009515 ], [ 178.599243, -16.641455 ], [ 179.099121, -16.436085 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.119751, -10.482410 ], [ 162.399902, -10.827911 ], [ 161.702271, -10.822515 ], [ 161.317749, -10.206813 ] ] ], [ [ [ 159.702759, -9.243093 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.611582 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.638661 ], [ 159.702759, -9.243093 ] ] ], [ [ [ 160.922241, -8.320212 ], [ 161.279297, -9.118368 ], [ 161.680298, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.790405, -8.917634 ], [ 160.581665, -8.320212 ], [ 160.922241, -8.320212 ] ] ], [ [ [ 158.362427, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.642334, -8.021155 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.208618, -7.422389 ], [ 158.362427, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.313433 ], [ 157.538452, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.340698, -7.406048 ], [ 157.060547, -7.258945 ], [ 157.060547, -6.964597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.217407, -15.892659 ], [ 167.843628, -16.467695 ], [ 167.514038, -16.599346 ], [ 167.178955, -16.161921 ], [ 167.217407, -15.892659 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.107544, -14.934170 ], [ 167.272339, -15.739388 ], [ 167.003174, -15.612456 ], [ 166.794434, -15.670643 ], [ 166.651611, -15.390136 ], [ 166.629639, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.031372, -20.107523 ], [ 164.459839, -20.117840 ], [ 165.020142, -20.457896 ], [ 165.459595, -20.802337 ], [ 165.778198, -21.079375 ], [ 166.602173, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.161971 ], [ 166.816406, -22.350076 ], [ 166.635132, -22.350076 ], [ 166.190186, -22.131443 ], [ 165.888062, -21.943046 ], [ 165.476074, -21.677848 ], [ 164.827881, -21.151115 ], [ 164.168701, -20.442455 ], [ 164.031372, -20.107523 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.075806, 56.022948 ], [ 161.949463, 55.776573 ], [ 161.702271, 55.285372 ], [ 162.119751, 54.854478 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.532715, 52.958566 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.474540 ], [ 157.060547, 51.189673 ], [ 157.060547, 56.022948 ], [ 162.075806, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.439453, 66.687784 ], [ 180.439453, 65.941993 ], [ 180.115356, 65.874725 ], [ 180.439453, 65.540270 ], [ 180.439453, 65.311829 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.439453, 66.687784 ], [ 180.439453, 65.939754 ], [ 180.115356, 65.874725 ], [ 180.439453, 65.537996 ], [ 180.439453, 65.309535 ], [ 180.000000, 64.979359 ], [ 180.000000, 66.513260 ], [ 179.994507, 64.974712 ], [ 178.709106, 64.534272 ], [ 177.412720, 64.607393 ], [ 178.313599, 64.077003 ], [ 178.906860, 63.250939 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.150269, 60.949110 ], [ 170.700073, 60.335105 ], [ 170.332031, 59.880668 ], [ 168.898315, 60.573476 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.877319, 59.731485 ], [ 163.536987, 59.869641 ], [ 163.218384, 59.209688 ], [ 162.015381, 58.243055 ], [ 162.053833, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.130737, 56.121060 ], [ 161.949463, 55.776573 ], [ 161.823120, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.932351 ], [ 158.362427, 58.054632 ], [ 160.153198, 59.313571 ], [ 161.872559, 60.343260 ], [ 163.668823, 61.140584 ], [ 164.470825, 62.550325 ], [ 163.256836, 62.466646 ], [ 162.658081, 61.642945 ], [ 160.120239, 60.543775 ], [ 159.301758, 61.773123 ], [ 157.500000, 61.538406 ], [ 157.060547, 61.480760 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.439453, 68.829818 ], [ 180.439453, 66.337505 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.126343, 71.557955 ], [ 180.439453, 71.557955 ], [ 180.439453, 70.855485 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.060547, 71.027678 ], [ 157.500000, 70.991928 ], [ 158.999634, 70.866291 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.721915 ], [ 160.938721, 69.436340 ], [ 162.279053, 69.641804 ], [ 164.053345, 69.668541 ], [ 165.942993, 69.471042 ], [ 167.838135, 69.582480 ], [ 169.579468, 68.694509 ], [ 170.815430, 69.013546 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.644409, 69.816891 ], [ 175.726318, 69.877452 ], [ 178.599243, 69.399649 ], [ 180.000000, 68.964307 ], [ 180.439453, 68.829818 ], [ 180.439453, 66.337505 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.027678 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.126343, 71.557955 ], [ 180.439453, 71.557955 ], [ 180.439453, 70.853683 ], [ 180.000000, 70.832051 ], [ 178.901367, 70.781486 ], [ 178.725586, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } ] } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json index cd092c615..d9f56fef5 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json @@ -3,6 +3,7 @@ "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json.check.mbtiles -z4 -yname --no-tiny-polygon-reduction tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]}]}]}}", "maxzoom": "4", "minzoom": "0", @@ -152,7 +153,7 @@ , { "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.302734, 42.940339 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json index a92938020..a717ca987 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json @@ -3,6 +3,7 @@ "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json.check.mbtiles -z4 -yname -S4 tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]}]}]}}", "maxzoom": "4", "minzoom": "0", diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json index 115e781f5..37f269819 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json @@ -3,6 +3,7 @@ "center": "-101.250000,70.266402,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json.check.mbtiles -z4 -yname -pD tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]}]}]}}", "maxzoom": "4", "minzoom": "0", @@ -152,7 +153,7 @@ , { "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.302734, 42.940339 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json index 03521d437..2306b5815 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json @@ -3,6 +3,7 @@ "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json.check.mbtiles -z4 -yname -pc tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]}]}]}}", "maxzoom": "4", "minzoom": "0", @@ -152,7 +153,7 @@ , { "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.302734, 42.940339 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json index 06d609106..d4aeabb6f 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json.check.mbtiles -z5 -M5000 --coalesce-densest-as-needed tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"formal_fr\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_alt\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_adm0\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 61,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afg.\",\"Alb.\",\"Alg.\",\"Ang.\",\"Ant.\",\"Arg.\",\"Arm.\",\"Aust.\",\"Auz.\",\"Aze.\",\"B.F.\",\"B.H.\",\"Bang.\",\"Bela.\",\"Belg.\",\"Belize\",\"Benin\",\"Bhs.\",\"Bhutan\",\"Bolivia\",\"Brazil\",\"Brunei\",\"Bulg.\",\"Bur.\",\"Bwa.\",\"C.A.R.\",\"C.R.\",\"Cam.\",\"Camb.\",\"Can.\",\"Chad\",\"Chile\",\"China\",\"Col.\",\"Cro.\",\"Cuba\",\"Cyp.\",\"Cz. Rep.\",\"D.R.C.\",\"Den.\",\"Dji.\",\"Dom. Rep.\",\"Ecu.\",\"Egypt\",\"El. S.\",\"Eq. G.\",\"Erit.\",\"Est.\",\"Eth.\",\"Fiji\",\"Fin.\",\"Flk. Is.\",\"Fr.\",\"Fr. S.A.L.\",\"Gabon\",\"Gambia\",\"Geo.\",\"Ger.\",\"Ghana\",\"Gin.\",\"GnB.\",\"Greece\",\"Grlnd.\",\"Guat.\",\"Guy.\",\"Haiti\",\"Hond.\",\"Hun.\",\"I.C.\",\"Iceland\",\"India\",\"Indo.\",\"Iran\",\"Iraq\",\"Ire.\",\"Isr.\",\"Italy\",\"Jam.\",\"Japan\",\"Jord.\",\"Kaz.\",\"Ken.\",\"Kgz.\",\"Kos.\",\"Kwt.\",\"Laos\",\"Lat.\",\"Leb.\",\"Les.\",\"Liberia\",\"Libya\",\"Lith.\",\"Lux.\",\"Mad.\",\"Mal.\",\"Malay.\",\"Mali\",\"Mda.\",\"Mex.\",\"Mkd.\"]},{\"attribute\": \"abbrev_len\",\"count\": 8,\"type\": \"number\",\"values\": [10,3,4,5,6,7,8,9],\"min\": 3,\"max\": 10},{\"attribute\": \"adm0_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 173,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 175,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"brk_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"B12\",\"B20\",\"B28\",\"B30\",\"B57\",\"B77\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. and Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\"]},{\"attribute\": \"continent\",\"count\": 8,\"type\": \"string\",\"values\": [\"Africa\",\"Antarctica\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"Seven seas (open ocean)\",\"South America\"]},{\"attribute\": \"economy\",\"count\": 7,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"2. Developed region: nonG7\",\"3. Emerging region: BRIC\",\"4. Emerging region: MIKT\",\"5. Emerging region: G20\",\"6. Developing region\",\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 174,\"type\": \"string\",\"values\": [\"Arab Republic of Egypt\",\"Argentine Republic\",\"Belize\",\"Bolivarian Republic of Venezuela\",\"Bosnia and Herzegovina\",\"Burkina Faso\",\"Canada\",\"Central African Republic\",\"Co-operative Republic of Guyana\",\"Commonwealth of Australia\",\"Commonwealth of Puerto Rico\",\"Commonwealth of the Bahamas\",\"Czech Republic\",\"Democratic People's Republic of Korea\",\"Democratic Republic of Timor-Leste\",\"Democratic Republic of the Congo\",\"Democratic Socialist Republic of Sri Lanka\",\"Dominican Republic\",\"Falkland Islands\",\"Federal Democratic Republic of Ethiopia\",\"Federal Republic of Germany\",\"Federal Republic of Nigeria\",\"Federal Republic of Somalia\",\"Federative Republic of Brazil\",\"Former Yugoslav Republic of Macedonia\",\"French Republic\",\"Gabonese Republic\",\"Georgia\",\"Grand Duchy of Luxembourg\",\"Greenland\",\"Hashemite Kingdom of Jordan\",\"Hellenic Republic\",\"Independent State of Papua New Guinea\",\"Ireland\",\"Islamic Republic of Iran\",\"Islamic Republic of Mauritania\",\"Islamic Republic of Pakistan\",\"Islamic State of Afghanistan\",\"Italian Republic\",\"Jamaica\",\"Japan\",\"Kingdom of Belgium\",\"Kingdom of Bhutan\",\"Kingdom of Cambodia\",\"Kingdom of Denmark\",\"Kingdom of Lesotho\",\"Kingdom of Morocco\",\"Kingdom of Norway\",\"Kingdom of Saudi Arabia\",\"Kingdom of Spain\",\"Kingdom of Swaziland\",\"Kingdom of Sweden\",\"Kingdom of Thailand\",\"Kingdom of the Netherlands\",\"Kyrgyz Republic\",\"Lao People's Democratic Republic\",\"Lebanese Republic\",\"Libya\",\"Malaysia\",\"Mongolia\",\"Montenegro\",\"Negara Brunei Darussalam\",\"Nepal\",\"New Caledonia\",\"New Zealand\",\"Oriental Republic of Uruguay\",\"People's Democratic Republic of Algeria\",\"People's Republic of Angola\",\"People's Republic of Bangladesh\",\"People's Republic of China\",\"Plurinational State of Bolivia\",\"Portuguese Republic\",\"Republic of Albania\",\"Republic of Armenia\",\"Republic of Austria\",\"Republic of Azerbaijan\",\"Republic of Belarus\",\"Republic of Benin\",\"Republic of Botswana\",\"Republic of Bulgaria\",\"Republic of Burundi\",\"Republic of Cameroon\",\"Republic of Chad\",\"Republic of Chile\",\"Republic of Colombia\",\"Republic of Congo\",\"Republic of Costa Rica\",\"Republic of Croatia\",\"Republic of Cuba\",\"Republic of Cyprus\",\"Republic of Djibouti\",\"Republic of Ecuador\",\"Republic of El Salvador\",\"Republic of Equatorial Guinea\",\"Republic of Estonia\",\"Republic of Fiji\",\"Republic of Finland\",\"Republic of Ghana\",\"Republic of Guatemala\",\"Republic of Guinea\"]},{\"attribute\": \"formal_fr\",\"count\": 4,\"type\": \"string\",\"values\": [\"Nouvelle-Calédonie\",\"Republic of Cote D'Ivoire\",\"República Bolivariana de Venezuela\",\"République Togolaise\"]},{\"attribute\": \"gdp_md_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10040,103900,105.1,10600,10670,107700,1078,108200,1100,110300,114100,11500,11610,116700,11810,11950.77,119500,12250,12710,12830,1300000,13160,13210,13227,13250,1335000,136600,13980,1403000,14060,14590,149100,15094000,1526,15350,1563000,15860,16,16790,17500,175800,17820,1823000,184300,18770,18780,188400,1885,18940,193500,196600,1977704,1993000,20130,201400,20250,203600,20640,208627,20910,21110,2128000,21510,21810,21980,22270,224000,2266000,22700,2272,232900,241700,244500,247300,2520,2536,265200,27060,271400,27410,276400,27940,28890,29010,2918000,2966,29700,29780,3102,31080,3158,31610,316700,317500,3198,3293,329500,3297000,335400],\"min\": -99,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 3,\"type\": \"number\",\"values\": [-99,0,2009],\"min\": -99,\"max\": 2009},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"gu_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"homepart\",\"count\": 2,\"type\": \"number\",\"values\": [-99,1],\"min\": -99,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 5,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\",\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AQ\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FK\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\"]},{\"attribute\": \"iso_a3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESH\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"iso_n3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"004\",\"008\",\"010\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"158\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"260\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\"]},{\"attribute\": \"labelrank\",\"count\": 6,\"type\": \"number\",\"values\": [2,3,4,5,6,7],\"min\": 2,\"max\": 7},{\"attribute\": \"lastcensus\",\"count\": 27,\"type\": \"number\",\"values\": [-99,1970,1979,1981,1983,1984,1987,1989,1991,1993,1995,1996,1997,1998,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012],\"min\": -99,\"max\": 2012},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 21,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,20,22,24,32,35,4,5,6,7,8,9],\"min\": 4,\"max\": 35},{\"attribute\": \"mapcolor13\",\"count\": 14,\"type\": \"number\",\"values\": [-99,1,10,11,12,13,2,3,4,5,6,7,8,9],\"min\": -99,\"max\": 13},{\"attribute\": \"mapcolor7\",\"count\": 7,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7],\"min\": 1,\"max\": 7},{\"attribute\": \"mapcolor8\",\"count\": 8,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8],\"min\": 1,\"max\": 8},{\"attribute\": \"mapcolor9\",\"count\": 9,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 9},{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]},{\"attribute\": \"name_alt\",\"count\": 2,\"type\": \"string\",\"values\": [\"East Timor\",\"Islas Malvinas\"]},{\"attribute\": \"name_len\",\"count\": 16,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,19,20,22,4,5,6,7,8,9],\"min\": 4,\"max\": 22},{\"attribute\": \"name_long\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"name_sort\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo, Dem. Rep.\",\"Congo, Rep.\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Cyprus, Northern\",\"Czech Republic\",\"Côte d'Ivoire\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt, Arab Rep.\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran, Islamic Rep.\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea, Dem. Rep.\",\"Korea, Rep.\",\"Kosovo\",\"Kuwait\",\"Kyrgyz Republic\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia, FYR\",\"Madagascar\",\"Malawi\"]},{\"attribute\": \"note_adm0\",\"count\": 6,\"type\": \"string\",\"values\": [\"Commonwealth of U.S.A.\",\"Den.\",\"Fr.\",\"Partial self-admin.\",\"Self admin.\",\"U.K.\"]},{\"attribute\": \"note_brk\",\"count\": 8,\"type\": \"string\",\"values\": [\"Admin. by U.K.; Claimed by Argentina\",\"Multiple claims held in abeyance\",\"Partial self-admin.\",\"Self admin.; Claimed by China\",\"Self admin.; Claimed by Cyprus\",\"Self admin.; Claimed by Morocco\",\"Self admin.; Claimed by Serbia\",\"Self admin.; Claimed by Somalia\"]},{\"attribute\": \"pop_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10057975,10211904,10329208,10414336,10473282,10486339,10625176,10707924,10737428,111211789,1123913,1131612,11451652,1166079220,11862740,12619600,12666987,127078679,12799293,1299371,1310000,13276517,1338612970,13711597,140,140041247,14268711,14494293,14573101,149229090,1514993,15306252,1533964,15399437,156050883,15746232,16601707,16715999,176242949,1782893,1804838,18879301,198739269,1990876,2005692,20178485,20617068,20653556,2066718,2108665,21262641,2130819,21324791,21669278,218519,22215421,2231503,22665345,227436,22974347,23822783,23832495,240271522,25715819,25946220,265100,26814843,2691158,27606007,2825928,28400000,28563377,28686633,29546963,2967004,3041142,306694,307899,309156,31129225,3129486,313973000,3140,32369558,33487208,3360474,34178188,3418085,3441790,34859364,3494382,3500000,3555179,3639453,3802,38482919,388190,39002772,3971020],\"min\": -99,\"max\": 1338612970},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 172,\"type\": \"string\",\"values\": [\"A\",\"AE\",\"AF\",\"AL\",\"AO\",\"AQ\",\"AR\",\"ARM\",\"AU\",\"AZ\",\"B\",\"BD\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"BiH\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"D\",\"DJ\",\"DK\",\"DO\",\"DRC\",\"DZ\",\"E\",\"EC\",\"EG\",\"ER\",\"EST\",\"ET\",\"F\",\"FIN\",\"FJ\",\"FK\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"I\",\"IND\",\"INDO\",\"IRL\",\"IRN\",\"IRQ\",\"IS\",\"J\",\"KE\",\"KG\",\"KH\",\"KO\",\"KP\",\"KR\",\"KW\",\"KZ\",\"L\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\",\"MG\",\"MK\"]},{\"attribute\": \"region_un\",\"count\": 7,\"type\": \"string\",\"values\": [\"Africa\",\"Americas\",\"Antarctica\",\"Asia\",\"Europe\",\"Oceania\",\"Seven seas (open ocean)\"]},{\"attribute\": \"region_wb\",\"count\": 8,\"type\": \"string\",\"values\": [\"Antarctica\",\"East Asia & Pacific\",\"Europe & Central Asia\",\"Latin America & Caribbean\",\"Middle East & North Africa\",\"North America\",\"South Asia\",\"Sub-Saharan Africa\"]},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [1,3],\"min\": 1,\"max\": 3},{\"attribute\": \"sov_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"AU1\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CH1\",\"CHE\",\"CHL\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DN1\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FI1\",\"FJI\",\"FR1\",\"GAB\",\"GB1\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\"]},{\"attribute\": \"sovereignt\",\"count\": 171,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\",\"Moldova\",\"Mongolia\",\"Montenegro\"]},{\"attribute\": \"su_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"su_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"subregion\",\"count\": 22,\"type\": \"string\",\"values\": [\"Antarctica\",\"Australia and New Zealand\",\"Caribbean\",\"Central America\",\"Central Asia\",\"Eastern Africa\",\"Eastern Asia\",\"Eastern Europe\",\"Melanesia\",\"Middle Africa\",\"Northern Africa\",\"Northern America\",\"Northern Europe\",\"Seven seas (open ocean)\",\"South America\",\"South-Eastern Asia\",\"Southern Africa\",\"Southern Asia\",\"Southern Europe\",\"Western Africa\",\"Western Asia\",\"Western Europe\"]},{\"attribute\": \"subunit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"tiny\",\"count\": 5,\"type\": \"number\",\"values\": [-99,2,3,4,5],\"min\": -99,\"max\": 5},{\"attribute\": \"type\",\"count\": 5,\"type\": \"string\",\"values\": [\"Country\",\"Dependency\",\"Disputed\",\"Indeterminate\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 172,\"type\": \"string\",\"values\": [\"-099\",\"004\",\"008\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\",\"458\",\"466\",\"478\"]},{\"attribute\": \"wb_a2\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"GZ\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KV\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\"]},{\"attribute\": \"wb_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KSV\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\",\"MKD\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "5", "minzoom": "0", @@ -12,7 +13,7 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 512 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.171875, -79.560546 ], [ -59.765625, -79.935918 ], [ -60.468750, -80.983688 ], [ -64.687500, -80.872827 ], [ -66.796875, -80.178713 ], [ -62.578125, -80.297927 ], [ -61.171875, -79.560546 ] ] ], [ [ [ -47.109375, -77.767582 ], [ -45.703125, -77.915669 ], [ -44.296875, -78.349411 ], [ -43.593750, -79.935918 ], [ -48.515625, -80.760615 ], [ -50.625000, -80.983688 ], [ -53.437500, -80.872827 ], [ -54.843750, -80.532071 ], [ -54.140625, -80.178713 ], [ -52.031250, -79.935918 ], [ -49.218750, -77.915669 ], [ -47.109375, -77.767582 ] ] ], [ [ [ -180.000000, -84.673513 ], [ -179.296875, -84.124973 ], [ -177.890625, -84.405941 ], [ -176.484375, -84.052561 ], [ -175.078125, -84.474065 ], [ -172.968750, -84.052561 ], [ -170.156250, -83.829945 ], [ -167.343750, -84.541361 ], [ -163.125000, -85.051129 ], [ -158.203125, -85.345325 ], [ -155.390625, -85.051129 ], [ -151.171875, -85.287916 ], [ -149.062500, -85.568066 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.541361 ], [ -146.953125, -84.474065 ], [ -150.468750, -84.267172 ], [ -151.171875, -83.829945 ], [ -153.984375, -83.676943 ], [ -153.281250, -82.021378 ], [ -157.500000, -81.093214 ], [ -152.578125, -80.983688 ], [ -151.171875, -81.308321 ], [ -147.656250, -80.647035 ], [ -146.953125, -79.812302 ], [ -149.765625, -79.302640 ], [ -155.390625, -79.038437 ], [ -158.203125, -77.915669 ], [ -158.906250, -76.840816 ], [ -157.500000, -77.157163 ], [ -153.984375, -76.999935 ], [ -153.281250, -77.466028 ], [ -151.875000, -77.312520 ], [ -146.250000, -76.351896 ], [ -146.250000, -75.320025 ], [ -145.546875, -75.140778 ], [ -144.843750, -75.497157 ], [ -135.703125, -74.211983 ], [ -121.640625, -74.402163 ], [ -118.125000, -74.019543 ], [ -116.718750, -74.211983 ], [ -114.609375, -73.627789 ], [ -112.500000, -74.590108 ], [ -111.796875, -74.402163 ], [ -107.578125, -75.140778 ], [ -105.468750, -74.775843 ], [ -101.250000, -75.140778 ], [ -100.546875, -74.775843 ], [ -101.953125, -74.019543 ], [ -102.656250, -74.019543 ], [ -104.062500, -72.607120 ], [ -99.140625, -72.816074 ], [ -97.734375, -73.428424 ], [ -97.031250, -73.428424 ], [ -92.812500, -73.022592 ], [ -90.703125, -73.226700 ], [ -89.296875, -72.395706 ], [ -88.593750, -72.816074 ], [ -81.562500, -73.824820 ], [ -80.859375, -73.022592 ], [ -76.640625, -73.824820 ], [ -75.234375, -73.824820 ], [ -67.500000, -72.395706 ], [ -68.906250, -69.657086 ], [ -67.500000, -66.791909 ], [ -63.281250, -64.472794 ], [ -58.359375, -63.233627 ], [ -57.656250, -63.233627 ], [ -59.062500, -63.860036 ], [ -62.578125, -64.774125 ], [ -62.578125, -65.946472 ], [ -63.984375, -66.231457 ], [ -66.093750, -67.875541 ], [ -63.281250, -69.162558 ], [ -61.875000, -71.074056 ], [ -61.171875, -73.022592 ], [ -61.875000, -74.019543 ], [ -64.687500, -75.140778 ], [ -70.312500, -76.184995 ], [ -71.015625, -76.516819 ], [ -77.343750, -76.679785 ], [ -73.828125, -77.767582 ], [ -75.234375, -78.206563 ], [ -76.640625, -78.061989 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.171335 ], [ -75.937500, -80.178713 ], [ -73.828125, -80.415707 ], [ -68.203125, -81.308321 ], [ -63.281250, -81.723188 ], [ -59.765625, -82.308893 ], [ -58.359375, -83.194896 ], [ -54.140625, -82.214217 ], [ -49.921875, -81.723188 ], [ -47.812500, -81.621352 ], [ -42.890625, -82.021378 ], [ -40.781250, -81.308321 ], [ -38.671875, -81.308321 ], [ -28.828125, -80.297927 ], [ -30.234375, -79.171335 ], [ -35.859375, -79.432371 ], [ -35.859375, -78.061989 ], [ -29.531250, -76.516819 ], [ -22.500000, -76.016094 ], [ -17.578125, -74.959392 ], [ -16.171875, -74.402163 ], [ -16.171875, -73.428424 ], [ -12.656250, -72.395706 ], [ -10.546875, -71.074056 ], [ -7.734375, -71.524909 ], [ -7.031250, -70.844673 ], [ -4.921875, -71.300793 ], [ -0.703125, -71.074056 ], [ -0.703125, -71.524909 ], [ 7.734375, -69.657086 ], [ 9.140625, -69.900118 ], [ 10.546875, -70.612614 ], [ 13.359375, -69.900118 ], [ 14.765625, -70.377854 ], [ 16.875000, -69.900118 ], [ 21.093750, -69.900118 ], [ 22.500000, -70.612614 ], [ 26.718750, -70.377854 ], [ 31.640625, -69.657086 ], [ 33.750000, -68.399180 ], [ 37.968750, -69.657086 ], [ 41.484375, -68.399180 ], [ 54.140625, -65.658275 ], [ 56.250000, -65.946472 ], [ 61.171875, -67.875541 ], [ 63.984375, -67.339861 ], [ 68.203125, -67.875541 ], [ 69.609375, -69.162558 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 67.500000, -71.746432 ], [ 69.609375, -72.181804 ], [ 71.015625, -71.965388 ], [ 73.828125, -69.657086 ], [ 77.343750, -69.411242 ], [ 78.750000, -68.138852 ], [ 81.562500, -67.339861 ], [ 86.484375, -67.067433 ], [ 87.890625, -65.946472 ], [ 89.296875, -67.067433 ], [ 95.625000, -67.339861 ], [ 99.140625, -67.067433 ], [ 102.656250, -65.366837 ], [ 106.171875, -66.791909 ], [ 109.687500, -66.513260 ], [ 113.203125, -65.658275 ], [ 115.312500, -66.513260 ], [ 119.531250, -67.067433 ], [ 123.046875, -66.231457 ], [ 128.671875, -66.513260 ], [ 134.296875, -65.946472 ], [ 135.000000, -65.072130 ], [ 137.109375, -66.791909 ], [ 144.843750, -66.791909 ], [ 146.250000, -67.875541 ], [ 148.359375, -68.138852 ], [ 151.875000, -68.656555 ], [ 153.984375, -68.399180 ], [ 158.906250, -69.411242 ], [ 161.015625, -70.377854 ], [ 166.640625, -70.612614 ], [ 170.859375, -71.524909 ], [ 168.750000, -73.627789 ], [ 165.937500, -74.211983 ], [ 163.125000, -76.184995 ], [ 164.531250, -78.061989 ], [ 165.937500, -78.206563 ], [ 166.640625, -78.630006 ], [ 161.718750, -79.038437 ], [ 159.609375, -80.872827 ], [ 163.125000, -82.308893 ], [ 168.750000, -83.277705 ], [ 168.750000, -83.753911 ], [ 172.265625, -83.979259 ], [ 172.968750, -84.405941 ], [ 175.781250, -84.124973 ], [ 180.000000, -84.673513 ], [ 180.703125, -84.124973 ], [ 182.109375, -84.405941 ], [ 183.515625, -84.052561 ], [ 184.921875, -84.474065 ], [ 187.031250, -84.052561 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.405941 ], [ -184.218750, -84.124973 ], [ -180.000000, -84.673513 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -160.312500, -78.630006 ], [ -159.609375, -79.432371 ], [ -161.718750, -79.560546 ], [ -163.125000, -79.171335 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -123.046875, -73.226700 ], [ -121.640625, -73.428424 ], [ -118.828125, -73.428424 ], [ -120.234375, -74.019543 ], [ -123.046875, -73.627789 ], [ -123.046875, -73.226700 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -124.453125, -73.824820 ], [ -127.968750, -73.428424 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -97.031250, -71.746432 ], [ -96.328125, -72.395706 ], [ -101.250000, -72.395706 ], [ -102.656250, -71.746432 ], [ -97.031250, -71.746432 ] ] ], [ [ [ -70.312500, -68.656555 ], [ -68.906250, -70.844673 ], [ -68.906250, -71.965388 ], [ -72.421875, -72.395706 ], [ -72.421875, -71.965388 ], [ -74.531250, -72.181804 ], [ -75.234375, -71.965388 ], [ -74.531250, -71.074056 ], [ -72.421875, -71.074056 ], [ -72.421875, -69.411242 ], [ -70.312500, -68.656555 ] ] ], [ [ [ 68.906250, -48.458352 ], [ 70.312500, -48.922499 ], [ 69.609375, -49.382373 ], [ 68.203125, -49.382373 ], [ 68.906250, -48.458352 ] ] ], [ [ [ -68.906250, -52.482780 ], [ -68.203125, -53.748711 ], [ -65.390625, -54.572062 ], [ -66.093750, -54.977614 ], [ -67.500000, -54.572062 ], [ -68.203125, -55.379110 ], [ -71.015625, -54.977614 ], [ -75.234375, -52.482780 ], [ -71.718750, -53.748711 ], [ -70.312500, -52.908902 ], [ -68.906250, -52.482780 ] ] ], [ [ [ 50.625000, 26.431228 ], [ 51.328125, 25.799891 ], [ 50.625000, 25.165173 ], [ 50.625000, 26.431228 ] ] ], [ [ [ 43.593750, 10.487812 ], [ 48.515625, 11.867351 ], [ 48.515625, 11.178402 ], [ 49.218750, 11.867351 ], [ 50.625000, 12.554564 ], [ 50.625000, 11.178402 ], [ 48.515625, 5.615986 ], [ 41.484375, -1.406109 ], [ 38.671875, -4.214943 ], [ 38.671875, -8.407168 ], [ 40.078125, -9.795678 ], [ 40.078125, -14.604847 ], [ 34.453125, -19.311143 ], [ 35.156250, -23.885838 ], [ 32.343750, -26.431228 ], [ 30.937500, -28.921631 ], [ 27.421875, -33.137551 ], [ 18.984375, -34.307144 ], [ 18.281250, -33.724340 ], [ 17.578125, -31.353637 ], [ 16.171875, -28.304381 ], [ 11.250000, -16.636192 ], [ 13.359375, -11.178402 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 11.953125, -4.214943 ], [ 10.546875, -3.513421 ], [ 8.437500, -0.703107 ], [ 9.140625, 1.406109 ], [ 9.140625, 2.811371 ], [ 8.437500, 4.915833 ], [ 5.625000, 4.915833 ], [ 4.218750, 6.315299 ], [ 2.109375, 6.315299 ], [ 1.406250, 6.315299 ], [ 0.703125, 6.315299 ], [ -3.515625, 5.615986 ], [ -7.734375, 4.915833 ], [ -11.953125, 7.013668 ], [ -13.359375, 9.102097 ], [ -15.468750, 11.178402 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -14.765625, 13.923404 ], [ -16.875000, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 16.636192 ], [ -17.578125, 21.289374 ], [ -14.765625, 21.943046 ], [ -17.578125, 21.943046 ], [ -14.765625, 26.431228 ], [ -9.843750, 30.145127 ], [ -9.843750, 33.137551 ], [ -5.625000, 36.031332 ], [ -7.734375, 37.718590 ], [ -7.031250, 40.979898 ], [ -8.437500, 37.160317 ], [ -9.140625, 37.160317 ], [ -9.843750, 38.822591 ], [ -9.140625, 42.032974 ], [ -9.843750, 43.068888 ], [ -8.437500, 44.087585 ], [ -2.109375, 43.580391 ], [ -1.406250, 46.073231 ], [ -4.921875, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.837982 ], [ -1.406250, 49.382373 ], [ 2.109375, 51.179343 ], [ 2.812500, 51.618017 ], [ 4.218750, 53.330873 ], [ 5.625000, 53.748711 ], [ 6.328125, 53.748711 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 8.437500, 57.326521 ], [ 10.546875, 58.077876 ], [ 10.546875, 56.559482 ], [ 10.546875, 56.170023 ], [ 11.953125, 56.170023 ], [ 10.546875, 59.175928 ], [ 9.843750, 59.534318 ], [ 7.734375, 58.447733 ], [ 5.625000, 58.813742 ], [ 4.921875, 62.267923 ], [ 9.843750, 64.774125 ], [ 14.062500, 67.875541 ], [ 18.984375, 69.900118 ], [ 22.500000, 70.377854 ], [ 23.906250, 71.074056 ], [ 28.125000, 71.300793 ], [ 30.937500, 70.612614 ], [ 29.531250, 70.377854 ], [ 30.234375, 69.900118 ], [ 31.640625, 70.140364 ], [ 40.078125, 68.138852 ], [ 40.781250, 66.791909 ], [ 37.968750, 66.231457 ], [ 33.046875, 66.791909 ], [ 34.453125, 65.946472 ], [ 34.453125, 64.472794 ], [ 36.562500, 63.860036 ], [ 36.562500, 65.366837 ], [ 39.375000, 64.774125 ], [ 40.078125, 64.774125 ], [ 39.375000, 65.658275 ], [ 41.484375, 66.513260 ], [ 43.593750, 66.231457 ], [ 44.296875, 66.791909 ], [ 42.890625, 68.656555 ], [ 45.703125, 68.399180 ], [ 46.406250, 67.875541 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ], [ 45.703125, 66.791909 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 53.437500, 68.399180 ], [ 58.359375, 68.911005 ], [ 59.765625, 68.399180 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.900118 ], [ 63.281250, 69.657086 ], [ 68.203125, 68.138852 ], [ 68.906250, 68.656555 ], [ 66.796875, 69.657086 ], [ 66.093750, 71.074056 ], [ 69.609375, 73.226700 ], [ 72.421875, 72.816074 ], [ 71.718750, 71.524909 ], [ 72.421875, 69.162558 ], [ 73.125000, 68.656555 ], [ 71.015625, 66.513260 ], [ 72.421875, 66.231457 ], [ 74.531250, 67.875541 ], [ 74.531250, 69.162558 ], [ 73.828125, 69.162558 ], [ 73.125000, 69.657086 ], [ 73.828125, 70.844673 ], [ 72.421875, 71.524909 ], [ 74.531250, 72.181804 ], [ 74.531250, 73.022592 ], [ 75.234375, 72.395706 ], [ 75.234375, 71.965388 ], [ 77.343750, 72.395706 ], [ 79.453125, 72.395706 ], [ 80.859375, 71.965388 ], [ 80.156250, 73.824820 ], [ 86.484375, 74.019543 ], [ 85.781250, 74.590108 ], [ 86.484375, 75.140778 ], [ 92.812500, 75.845169 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 96.328125, 76.016094 ], [ 98.437500, 76.516819 ], [ 100.546875, 76.516819 ], [ 101.953125, 77.312520 ], [ 104.062500, 77.767582 ], [ 105.468750, 77.466028 ], [ 104.062500, 77.157163 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.516819 ], [ 107.578125, 76.840816 ], [ 110.390625, 76.840816 ], [ 113.906250, 76.016094 ], [ 113.203125, 75.497157 ], [ 108.984375, 74.211983 ], [ 111.796875, 73.824820 ], [ 112.500000, 74.019543 ], [ 113.203125, 73.428424 ], [ 115.312500, 73.824820 ], [ 118.125000, 73.627789 ], [ 118.828125, 73.226700 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 126.562500, 73.627789 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.181804 ], [ 130.781250, 70.844673 ], [ 132.187500, 71.965388 ], [ 133.593750, 71.524909 ], [ 135.000000, 71.746432 ], [ 137.109375, 71.524909 ], [ 137.812500, 71.746432 ], [ 139.218750, 71.524909 ], [ 138.515625, 72.607120 ], [ 139.921875, 73.022592 ], [ 149.062500, 72.395706 ], [ 152.578125, 70.844673 ], [ 158.906250, 71.074056 ], [ 159.609375, 69.900118 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 169.453125, 68.911005 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 178.593750, 69.411242 ], [ 180.000000, 69.162558 ], [ 184.921875, 67.339861 ], [ 184.921875, 67.067433 ], [ 187.031250, 67.067433 ], [ 187.031250, 64.472794 ], [ 183.515625, 65.366837 ], [ 181.406250, 65.658275 ], [ 180.703125, 66.231457 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.072130 ], [ 177.187500, 64.774125 ], [ 178.593750, 62.593341 ], [ 177.187500, 62.593341 ], [ 173.671875, 61.938950 ], [ 170.156250, 59.888937 ], [ 168.750000, 60.586967 ], [ 165.937500, 59.888937 ], [ 165.234375, 60.239811 ], [ 163.125000, 59.888937 ], [ 161.718750, 58.447733 ], [ 163.125000, 57.704147 ], [ 161.718750, 54.977614 ], [ 160.312500, 54.572062 ], [ 159.609375, 53.330873 ], [ 158.203125, 53.330873 ], [ 156.093750, 51.179343 ], [ 155.390625, 56.944974 ], [ 163.125000, 61.270233 ], [ 163.828125, 62.593341 ], [ 163.125000, 62.593341 ], [ 159.609375, 60.586967 ], [ 158.906250, 61.938950 ], [ 156.093750, 61.606396 ], [ 153.984375, 59.888937 ], [ 154.687500, 59.175928 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.888937 ], [ 148.359375, 59.175928 ], [ 142.031250, 59.175928 ], [ 135.000000, 54.977614 ], [ 137.812500, 54.162434 ], [ 139.218750, 54.572062 ], [ 141.328125, 53.330873 ], [ 139.921875, 48.458352 ], [ 134.296875, 43.580391 ], [ 132.890625, 43.068888 ], [ 132.187500, 43.580391 ], [ 130.078125, 42.553080 ], [ 127.265625, 39.909736 ], [ 127.968750, 38.822591 ], [ 129.375000, 36.031332 ], [ 125.859375, 34.885931 ], [ 125.859375, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 39.909736 ], [ 123.750000, 40.446947 ], [ 120.937500, 39.368279 ], [ 120.937500, 40.979898 ], [ 117.421875, 38.822591 ], [ 119.531250, 37.160317 ], [ 120.234375, 38.272689 ], [ 122.343750, 37.718590 ], [ 118.828125, 35.460670 ], [ 121.640625, 31.952162 ], [ 121.640625, 28.304381 ], [ 118.125000, 25.165173 ], [ 110.390625, 21.943046 ], [ 110.390625, 20.632784 ], [ 107.578125, 21.943046 ], [ 105.468750, 19.311143 ], [ 108.281250, 15.284185 ], [ 108.984375, 11.867351 ], [ 104.765625, 9.102097 ], [ 104.062500, 10.487812 ], [ 104.765625, 11.178402 ], [ 103.359375, 11.178402 ], [ 101.953125, 13.239945 ], [ 101.953125, 12.554564 ], [ 99.843750, 13.923404 ], [ 99.140625, 10.487812 ], [ 101.953125, 6.315299 ], [ 100.546875, 6.315299 ], [ 99.843750, 7.013668 ], [ 97.734375, 8.407168 ], [ 98.437500, 10.487812 ], [ 97.734375, 15.284185 ], [ 97.031250, 17.308688 ], [ 93.515625, 16.636192 ], [ 94.218750, 18.646245 ], [ 92.109375, 21.289374 ], [ 92.109375, 21.943046 ], [ 92.109375, 22.593726 ], [ 91.406250, 23.241346 ], [ 88.593750, 22.593726 ], [ 88.593750, 21.943046 ], [ 86.484375, 21.943046 ], [ 86.484375, 20.632784 ], [ 80.156250, 15.961329 ], [ 79.453125, 10.487812 ], [ 77.343750, 8.407168 ], [ 73.125000, 16.636192 ], [ 72.421875, 21.943046 ], [ 70.312500, 21.289374 ], [ 67.500000, 23.885838 ], [ 66.093750, 25.799891 ], [ 61.171875, 25.165173 ], [ 56.953125, 25.799891 ], [ 56.250000, 27.683528 ], [ 53.437500, 27.059126 ], [ 49.921875, 30.751278 ], [ 48.515625, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 50.625000, 25.165173 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 53.437500, 24.527135 ], [ 55.546875, 25.165173 ], [ 59.765625, 22.593726 ], [ 58.359375, 21.289374 ], [ 57.656250, 19.311143 ], [ 52.734375, 17.308688 ], [ 43.593750, 13.239945 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 34.453125, 28.304381 ], [ 33.750000, 27.683528 ], [ 36.562500, 22.593726 ], [ 37.968750, 18.646245 ], [ 38.671875, 15.961329 ], [ 41.484375, 13.923404 ], [ 42.890625, 13.239945 ], [ 42.890625, 11.867351 ], [ 43.593750, 10.487812 ] ], [ [ 13.359375, 46.073231 ], [ 11.953125, 45.583290 ], [ 11.953125, 44.590467 ], [ 18.281250, 40.446947 ], [ 16.171875, 40.446947 ], [ 15.468750, 38.272689 ], [ 14.765625, 40.446947 ], [ 10.546875, 42.553080 ], [ 9.843750, 44.087585 ], [ 8.437500, 44.590467 ], [ 7.031250, 44.087585 ], [ 1.406250, 42.553080 ], [ 2.812500, 42.032974 ], [ 0.703125, 41.508577 ], [ -0.703125, 37.718590 ], [ -5.625000, 36.031332 ], [ -2.812500, 35.460670 ], [ -1.406250, 36.031332 ], [ 7.734375, 37.160317 ], [ 9.140625, 37.718590 ], [ 10.546875, 37.160317 ], [ 9.843750, 34.885931 ], [ 11.250000, 33.137551 ], [ 18.984375, 30.751278 ], [ 20.390625, 33.137551 ], [ 24.609375, 31.952162 ], [ 33.750000, 31.353637 ], [ 34.453125, 33.137551 ], [ 35.156250, 33.724340 ], [ 35.859375, 34.885931 ], [ 35.859375, 36.031332 ], [ 35.859375, 37.160317 ], [ 34.453125, 37.160317 ], [ 29.531250, 36.597889 ], [ 27.421875, 37.160317 ], [ 26.015625, 38.272689 ], [ 26.015625, 39.909736 ], [ 28.125000, 41.508577 ], [ 26.718750, 40.979898 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.979898 ], [ 23.203125, 40.979898 ], [ 22.500000, 40.979898 ], [ 23.203125, 40.446947 ], [ 23.906250, 37.718590 ], [ 22.500000, 38.272689 ], [ 22.500000, 36.597889 ], [ 21.093750, 37.160317 ], [ 19.687500, 39.909736 ], [ 19.687500, 42.553080 ], [ 18.984375, 42.032974 ], [ 18.281250, 42.553080 ], [ 13.359375, 45.583290 ], [ 13.359375, 46.073231 ] ], [ [ 23.203125, 66.231457 ], [ 21.796875, 65.946472 ], [ 21.093750, 64.472794 ], [ 17.578125, 62.915233 ], [ 16.875000, 61.606396 ], [ 18.281250, 60.239811 ], [ 16.171875, 58.813742 ], [ 15.468750, 56.170023 ], [ 12.656250, 55.379110 ], [ 11.953125, 54.977614 ], [ 10.546875, 56.170023 ], [ 9.843750, 55.379110 ], [ 10.546875, 54.162434 ], [ 11.953125, 54.572062 ], [ 14.062500, 53.330873 ], [ 14.765625, 54.162434 ], [ 17.578125, 54.977614 ], [ 19.687500, 54.977614 ], [ 21.093750, 55.379110 ], [ 20.390625, 56.170023 ], [ 21.093750, 57.704147 ], [ 22.500000, 58.077876 ], [ 23.906250, 57.326521 ], [ 24.609375, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.203125, 59.534318 ], [ 27.421875, 59.534318 ], [ 26.718750, 57.704147 ], [ 28.828125, 60.239811 ], [ 27.421875, 60.586967 ], [ 22.500000, 59.888937 ], [ 21.093750, 60.930432 ], [ 20.390625, 62.915233 ], [ 25.312500, 65.366837 ], [ 23.203125, 66.231457 ] ], [ [ 27.421875, 42.032974 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 33.046875, 42.032974 ], [ 36.562500, 41.508577 ], [ 42.890625, 41.508577 ], [ 41.484375, 42.032974 ], [ 39.375000, 43.580391 ], [ 44.296875, 42.553080 ], [ 37.265625, 45.089036 ], [ 36.562500, 45.583290 ], [ 38.671875, 47.517201 ], [ 34.453125, 46.558860 ], [ 35.859375, 45.583290 ], [ 33.750000, 44.590467 ], [ 32.343750, 45.583290 ], [ 33.046875, 46.073231 ], [ 31.640625, 47.040182 ], [ 29.531250, 45.583290 ], [ 28.125000, 44.087585 ], [ 27.421875, 42.032974 ] ], [ [ 48.515625, 47.040182 ], [ 48.515625, 46.558860 ], [ 46.406250, 45.089036 ], [ 48.515625, 42.032974 ], [ 49.921875, 40.446947 ], [ 48.515625, 38.822591 ], [ 48.515625, 37.718590 ], [ 50.625000, 37.160317 ], [ 53.437500, 37.718590 ], [ 52.031250, 40.446947 ], [ 52.734375, 40.979898 ], [ 54.140625, 40.979898 ], [ 53.437500, 42.553080 ], [ 52.734375, 41.508577 ], [ 52.031250, 42.032974 ], [ 49.921875, 45.089036 ], [ 52.734375, 45.583290 ], [ 52.734375, 47.040182 ], [ 48.515625, 47.040182 ] ], [ [ 11.953125, 23.885838 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 11.953125, 23.885838 ] ], [ [ -7.734375, 4.915833 ], [ -8.437500, 10.487812 ], [ -9.140625, 7.710992 ], [ -7.734375, 4.915833 ] ], [ [ 2.109375, 12.554564 ], [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 2.812500, 11.867351 ], [ 2.812500, 12.554564 ], [ 2.109375, 12.554564 ] ], [ [ 73.828125, 38.822591 ], [ 74.531250, 37.718590 ], [ 73.828125, 37.718590 ], [ 74.531250, 37.160317 ], [ 77.343750, 36.031332 ], [ 73.828125, 38.822591 ] ], [ [ 24.609375, -11.178402 ], [ 29.531250, -13.239945 ], [ 26.718750, -11.178402 ], [ 24.609375, -11.178402 ] ], [ [ 16.875000, 47.989922 ], [ 15.468750, 47.040182 ], [ 14.062500, 46.558860 ], [ 16.171875, 46.558860 ], [ 18.281250, 46.073231 ], [ 16.171875, 47.040182 ], [ 16.875000, 47.989922 ] ], [ [ 37.968750, 4.214943 ], [ 32.343750, 8.407168 ], [ 35.156250, 5.615986 ], [ 37.968750, 4.214943 ] ], [ [ 26.015625, 55.776573 ], [ 25.312500, 54.572062 ], [ 28.125000, 56.170023 ], [ 26.015625, 55.776573 ] ], [ [ 29.531250, -14.604847 ], [ 26.718750, -17.308688 ], [ 30.234375, -15.284185 ], [ 29.531250, -14.604847 ] ], [ [ 23.203125, 68.138852 ], [ 21.796875, 68.911005 ], [ 20.390625, 69.162558 ], [ 20.390625, 68.911005 ], [ 23.203125, 68.138852 ] ], [ [ 32.343750, -9.102097 ], [ 30.234375, -7.710992 ], [ 28.828125, -8.407168 ], [ 32.343750, -9.102097 ] ], [ [ 18.984375, 5.615986 ], [ 16.875000, 4.214943 ], [ 18.281250, 3.513421 ], [ 18.984375, 5.615986 ] ], [ [ 45.703125, 36.031332 ], [ 44.296875, 38.822591 ], [ 44.296875, 37.718590 ], [ 45.000000, 36.031332 ], [ 45.703125, 36.031332 ] ], [ [ 9.140625, 47.517201 ], [ 9.843750, 46.558860 ], [ 11.953125, 47.040182 ], [ 9.140625, 47.517201 ] ], [ [ 31.640625, 4.214943 ], [ 28.125000, 4.915833 ], [ 30.234375, 3.513421 ], [ 31.640625, 4.214943 ] ], [ [ 30.234375, -2.811371 ], [ 28.828125, -4.214943 ], [ 29.531250, -5.615986 ], [ 30.234375, -2.811371 ] ], [ [ 70.312500, 38.822591 ], [ 67.500000, 37.160317 ], [ 68.906250, 37.160317 ], [ 70.312500, 38.822591 ] ], [ [ 55.546875, 41.508577 ], [ 56.953125, 41.508577 ], [ 58.359375, 43.068888 ], [ 55.546875, 41.508577 ] ], [ [ -6.328125, 10.487812 ], [ -3.515625, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 11.867351 ], [ -6.328125, 10.487812 ] ], [ [ 60.468750, 36.597889 ], [ 60.468750, 33.137551 ], [ 61.171875, 36.031332 ], [ 60.468750, 36.597889 ] ], [ [ 7.031250, 34.307144 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.751278 ], [ 7.031250, 34.307144 ] ], [ [ -5.625000, 15.961329 ], [ -5.625000, 16.636192 ], [ -9.140625, 15.961329 ], [ -5.625000, 15.961329 ] ], [ [ 79.453125, 45.089036 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.580391 ], [ 79.453125, 45.089036 ] ], [ [ 119.531250, 51.618017 ], [ 117.421875, 49.837982 ], [ 118.828125, 50.289339 ], [ 119.531250, 51.618017 ] ], [ [ 120.937500, 53.330873 ], [ 119.531250, 52.908902 ], [ 120.234375, 52.052490 ], [ 120.937500, 53.330873 ] ], [ [ 41.484375, 4.915833 ], [ 37.968750, 4.214943 ], [ 41.484375, 4.214943 ], [ 41.484375, 4.915833 ] ], [ [ 12.656250, 47.517201 ], [ 9.140625, 47.989922 ], [ 9.140625, 47.517201 ], [ 12.656250, 47.517201 ] ], [ [ 21.796875, 42.553080 ], [ 22.500000, 41.508577 ], [ 22.500000, 44.087585 ], [ 21.796875, 42.553080 ] ], [ [ 12.656250, 13.923404 ], [ 13.359375, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 13.239945 ], [ 12.656250, 13.923404 ] ], [ [ 21.796875, 42.553080 ], [ 21.093750, 43.068888 ], [ 20.390625, 42.553080 ], [ 20.390625, 42.032974 ], [ 21.796875, 42.553080 ] ], [ [ -10.546875, 8.407168 ], [ -11.250000, 10.487812 ], [ -11.953125, 10.487812 ], [ -10.546875, 8.407168 ] ], [ [ 104.765625, 14.604847 ], [ 104.765625, 15.284185 ], [ 102.656250, 14.604847 ], [ 104.765625, 14.604847 ] ], [ [ 101.250000, 21.289374 ], [ 100.546875, 21.943046 ], [ 99.843750, 20.632784 ], [ 101.250000, 21.289374 ] ], [ [ 91.406250, 27.059126 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.059126 ], [ 91.406250, 27.059126 ] ], [ [ 119.531250, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.125000, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.517201 ] ], [ [ 115.312500, 48.458352 ], [ 115.312500, 47.989922 ], [ 117.421875, 48.458352 ], [ 115.312500, 48.458352 ] ], [ [ 25.312500, 54.572062 ], [ 23.203125, 54.572062 ], [ 23.203125, 54.162434 ], [ 25.312500, 54.572062 ] ], [ [ 41.484375, -1.406109 ], [ 40.781250, 1.406109 ], [ 40.781250, -0.703107 ], [ 41.484375, -1.406109 ] ], [ [ 42.187500, 12.554564 ], [ 41.484375, 13.239945 ], [ 41.484375, 11.178402 ], [ 42.187500, 12.554564 ] ], [ [ 97.031250, 28.304381 ], [ 94.921875, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.031250, 28.304381 ] ], [ [ 87.890625, 27.059126 ], [ 88.593750, 27.683528 ], [ 88.593750, 28.304381 ], [ 87.890625, 28.304381 ], [ 87.890625, 27.059126 ] ], [ [ 44.296875, 29.535230 ], [ 47.812500, 28.921631 ], [ 46.406250, 29.535230 ], [ 44.296875, 29.535230 ] ], [ [ 16.171875, 48.922499 ], [ 14.765625, 49.382373 ], [ 14.062500, 48.922499 ], [ 16.171875, 48.922499 ] ], [ [ 14.062500, 48.922499 ], [ 11.953125, 50.289339 ], [ 13.359375, 48.922499 ], [ 14.062500, 48.922499 ] ], [ [ 30.937500, -25.165173 ], [ 31.640625, -25.799891 ], [ 31.640625, -24.527135 ], [ 30.937500, -25.165173 ] ], [ [ 19.687500, -23.885838 ], [ 19.687500, -24.527135 ], [ 19.687500, -25.165173 ], [ 20.390625, -25.165173 ], [ 19.687500, -23.885838 ] ], [ [ 55.546875, 23.885838 ], [ 54.843750, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 23.885838 ] ], [ [ 45.000000, 39.368279 ], [ 45.000000, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ] ], [ [ 67.500000, 39.909736 ], [ 66.796875, 39.368279 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.909736 ] ], [ [ 22.500000, 47.989922 ], [ 23.906250, 47.989922 ], [ 22.500000, 48.458352 ], [ 22.500000, 47.989922 ] ], [ [ 17.578125, 68.656555 ], [ 16.875000, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.656555 ] ], [ [ 32.343750, -9.102097 ], [ 33.046875, -11.867351 ], [ 33.046875, -10.487812 ], [ 32.343750, -9.102097 ] ], [ [ 12.656250, -4.214943 ], [ 12.656250, -4.915833 ], [ 14.062500, -4.915833 ], [ 12.656250, -4.214943 ] ], [ [ 11.250000, 2.811371 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.811371 ], [ 11.250000, 2.811371 ] ], [ [ 42.890625, 41.508577 ], [ 45.000000, 40.979898 ], [ 44.296875, 41.508577 ], [ 42.890625, 41.508577 ] ], [ [ 75.234375, 71.965388 ], [ 75.234375, 71.524909 ], [ 75.937500, 71.300793 ], [ 75.234375, 71.965388 ] ], [ [ 43.593750, 10.487812 ], [ 42.187500, 11.178402 ], [ 43.593750, 9.795678 ], [ 43.593750, 10.487812 ] ], [ [ 29.531250, -21.943046 ], [ 28.125000, -21.289374 ], [ 28.828125, -21.943046 ], [ 29.531250, -21.943046 ] ], [ [ 45.703125, 42.032974 ], [ 46.406250, 41.508577 ], [ 47.109375, 41.508577 ], [ 45.703125, 42.032974 ] ], [ [ 35.156250, 33.137551 ], [ 35.156250, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.156250, 33.137551 ] ], [ [ 19.687500, 43.068888 ], [ 19.687500, 42.553080 ], [ 20.390625, 42.553080 ], [ 19.687500, 43.068888 ] ] ], [ [ [ 15.468750, 38.272689 ], [ 14.765625, 37.160317 ], [ 11.953125, 37.718590 ], [ 11.953125, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 9.140625, 41.508577 ], [ 9.140625, 39.368279 ], [ 8.437500, 39.368279 ], [ 7.734375, 40.979898 ], [ 9.140625, 41.508577 ] ] ], [ [ [ -59.062500, -50.736455 ], [ -58.359375, -51.179343 ], [ -59.765625, -52.052490 ], [ -61.875000, -51.618017 ], [ -59.062500, -50.736455 ] ] ], [ [ [ -187.031250, -40.446947 ], [ -186.328125, -41.508577 ], [ -187.031250, -43.580391 ], [ -187.031250, -40.446947 ] ] ], [ [ [ 172.968750, -40.446947 ], [ 173.671875, -41.508577 ], [ 170.156250, -45.583290 ], [ 168.750000, -46.558860 ], [ 166.640625, -46.073231 ], [ 166.640625, -45.089036 ], [ 172.968750, -40.446947 ] ] ], [ [ [ 123.750000, 11.867351 ], [ 123.750000, 10.487812 ], [ 122.343750, 9.102097 ], [ 122.343750, 9.795678 ], [ 123.750000, 11.867351 ] ] ], [ [ [ 147.656250, -40.446947 ], [ 147.656250, -43.068888 ], [ 145.546875, -43.068888 ], [ 144.140625, -40.979898 ], [ 144.843750, -40.446947 ], [ 147.656250, -40.446947 ] ] ], [ [ [ 67.500000, 76.999935 ], [ 67.500000, 76.351896 ], [ 61.171875, 75.320025 ], [ 58.359375, 74.402163 ], [ 54.843750, 72.395706 ], [ 55.546875, 71.746432 ], [ 56.953125, 70.844673 ], [ 53.437500, 70.844673 ], [ 52.734375, 71.300793 ], [ 51.328125, 71.524909 ], [ 51.328125, 72.181804 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.824820 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.140778 ], [ 60.468750, 76.351896 ], [ 67.500000, 76.999935 ] ] ], [ [ [ 172.265625, -34.307144 ], [ 176.484375, -37.718590 ], [ 177.890625, -37.160317 ], [ 175.078125, -41.508577 ], [ 174.375000, -39.368279 ], [ 173.671875, -39.368279 ], [ 174.375000, -37.160317 ], [ 172.265625, -34.307144 ] ] ], [ [ [ -187.031250, -34.307144 ], [ -185.625000, -36.031332 ], [ -183.515625, -37.718590 ], [ -182.109375, -37.160317 ], [ -184.921875, -41.508577 ], [ -185.625000, -39.368279 ], [ -186.328125, -39.368279 ], [ -185.625000, -37.160317 ], [ -187.031250, -34.307144 ] ] ], [ [ [ 113.906250, -21.943046 ], [ 116.015625, -20.632784 ], [ 120.234375, -19.311143 ], [ 125.156250, -13.923404 ], [ 129.375000, -14.604847 ], [ 130.078125, -11.867351 ], [ 132.187500, -11.867351 ], [ 131.484375, -11.178402 ], [ 136.406250, -11.178402 ], [ 135.000000, -14.604847 ], [ 139.921875, -17.308688 ], [ 142.031250, -10.487812 ], [ 143.437500, -13.239945 ], [ 144.843750, -14.604847 ], [ 146.250000, -18.646245 ], [ 148.359375, -19.973349 ], [ 152.578125, -25.799891 ], [ 152.578125, -30.751278 ], [ 149.765625, -37.160317 ], [ 146.250000, -38.822591 ], [ 144.843750, -37.718590 ], [ 143.437500, -38.272689 ], [ 140.625000, -37.718590 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.885931 ], [ 137.109375, -32.546813 ], [ 135.703125, -34.885931 ], [ 133.593750, -32.546813 ], [ 130.781250, -31.353637 ], [ 125.859375, -31.952162 ], [ 123.046875, -33.724340 ], [ 119.531250, -33.724340 ], [ 117.421875, -34.885931 ], [ 114.609375, -33.724340 ], [ 115.312500, -31.353637 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.203125, -23.885838 ], [ 113.906250, -21.943046 ] ] ], [ [ [ -82.265625, 62.915233 ], [ -84.375000, 62.267923 ], [ -83.671875, 62.915233 ], [ -82.265625, 62.915233 ] ] ], [ [ [ -115.312500, 73.428424 ], [ -114.609375, 73.226700 ], [ -115.312500, 72.816074 ], [ -112.500000, 73.022592 ], [ -111.093750, 72.607120 ], [ -110.390625, 73.022592 ], [ -108.281250, 71.746432 ], [ -108.984375, 73.226700 ], [ -106.875000, 73.226700 ], [ -104.765625, 71.074056 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -103.359375, 69.657086 ], [ -102.656250, 68.911005 ], [ -106.171875, 69.411242 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -116.718750, 69.411242 ], [ -117.421875, 70.140364 ], [ -112.500000, 70.377854 ], [ -118.125000, 70.612614 ], [ -118.828125, 71.074056 ], [ -116.718750, 71.524909 ], [ -119.531250, 71.746432 ], [ -118.125000, 72.816074 ], [ -115.312500, 73.428424 ] ] ], [ [ [ -98.437500, 70.377854 ], [ -96.328125, 69.162558 ], [ -96.328125, 68.911005 ], [ -99.843750, 69.411242 ], [ -98.437500, 70.377854 ] ] ], [ [ [ -121.640625, 74.590108 ], [ -118.125000, 74.211983 ], [ -116.015625, 73.627789 ], [ -118.125000, 72.816074 ], [ -119.531250, 72.607120 ], [ -120.937500, 71.524909 ], [ -123.750000, 71.074056 ], [ -126.562500, 71.965388 ], [ -124.453125, 73.824820 ], [ -125.156250, 74.402163 ], [ -121.640625, 74.590108 ] ] ], [ [ [ -100.546875, 74.019543 ], [ -97.734375, 73.824820 ], [ -97.734375, 73.627789 ], [ -98.437500, 73.022592 ], [ -97.031250, 72.607120 ], [ -97.031250, 71.746432 ], [ -98.437500, 71.300793 ], [ -102.656250, 72.607120 ], [ -102.656250, 73.022592 ], [ -100.546875, 72.816074 ], [ -101.953125, 73.428424 ], [ -100.546875, 74.019543 ] ] ], [ [ [ 117.421875, -7.710992 ], [ 118.828125, -8.407168 ], [ 116.718750, -8.407168 ], [ 117.421875, -7.710992 ] ] ], [ [ [ -130.781250, 54.977614 ], [ -134.296875, 58.447733 ], [ -137.109375, 58.447733 ], [ -142.734375, 60.239811 ], [ -147.656250, 60.930432 ], [ -148.359375, 60.930432 ], [ -148.359375, 60.239811 ], [ -151.875000, 59.175928 ], [ -151.171875, 61.606396 ], [ -154.687500, 59.534318 ], [ -153.984375, 59.175928 ], [ -154.687500, 58.447733 ], [ -158.906250, 56.170023 ], [ -165.234375, 54.572062 ], [ -158.906250, 57.326521 ], [ -157.500000, 59.175928 ], [ -159.609375, 58.447733 ], [ -161.015625, 59.175928 ], [ -162.421875, 58.813742 ], [ -163.125000, 60.239811 ], [ -163.828125, 59.888937 ], [ -165.937500, 60.586967 ], [ -165.937500, 62.267923 ], [ -165.234375, 63.233627 ], [ -161.015625, 63.860036 ], [ -161.718750, 64.472794 ], [ -161.015625, 65.072130 ], [ -165.234375, 64.472794 ], [ -168.750000, 65.946472 ], [ -164.531250, 66.791909 ], [ -163.828125, 66.791909 ], [ -163.828125, 66.231457 ], [ -161.718750, 66.231457 ], [ -167.343750, 68.399180 ], [ -166.640625, 68.911005 ], [ -163.828125, 69.411242 ], [ -162.421875, 70.377854 ], [ -156.796875, 71.524909 ], [ -155.390625, 71.300793 ], [ -154.687500, 70.844673 ], [ -152.578125, 70.844673 ], [ -151.171875, 70.612614 ], [ -144.140625, 70.377854 ], [ -141.328125, 69.900118 ], [ -137.109375, 68.911005 ], [ -135.000000, 69.657086 ], [ -133.593750, 69.657086 ], [ -130.078125, 70.377854 ], [ -129.375000, 69.900118 ], [ -128.671875, 70.612614 ], [ -125.859375, 69.657086 ], [ -124.453125, 70.377854 ], [ -124.453125, 69.411242 ], [ -121.640625, 69.900118 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.656555 ], [ -113.906250, 68.399180 ], [ -115.312500, 68.138852 ], [ -113.906250, 67.875541 ], [ -110.390625, 68.138852 ], [ -108.984375, 67.609221 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.656555 ], [ -106.171875, 68.911005 ], [ -104.765625, 68.138852 ], [ -101.953125, 67.875541 ], [ -99.140625, 67.875541 ], [ -97.734375, 68.656555 ], [ -96.328125, 68.399180 ], [ -96.328125, 67.339861 ], [ -94.921875, 69.162558 ], [ -97.031250, 70.140364 ], [ -95.625000, 71.965388 ], [ -93.515625, 71.524909 ], [ -92.109375, 70.377854 ], [ -92.812500, 69.900118 ], [ -90.703125, 69.657086 ], [ -90.703125, 68.656555 ], [ -89.296875, 69.411242 ], [ -87.890625, 67.339861 ], [ -85.781250, 69.900118 ], [ -82.968750, 69.900118 ], [ -81.562500, 69.162558 ], [ -81.562500, 67.339861 ], [ -83.671875, 66.513260 ], [ -85.781250, 66.791909 ], [ -86.484375, 65.946472 ], [ -87.890625, 65.072130 ], [ -93.515625, 62.267923 ], [ -94.921875, 59.175928 ], [ -93.515625, 58.813742 ], [ -92.812500, 57.326521 ], [ -91.406250, 57.326521 ], [ -85.078125, 55.379110 ], [ -82.968750, 55.379110 ], [ -82.265625, 53.330873 ], [ -80.156250, 51.618017 ], [ -78.750000, 52.908902 ], [ -80.156250, 54.977614 ], [ -76.640625, 56.559482 ], [ -78.750000, 58.813742 ], [ -77.343750, 59.888937 ], [ -78.750000, 62.593341 ], [ -74.531250, 62.593341 ], [ -71.718750, 61.270233 ], [ -69.609375, 61.270233 ], [ -69.609375, 59.175928 ], [ -68.203125, 58.447733 ], [ -64.687500, 60.586967 ], [ -61.875000, 57.326521 ], [ -61.875000, 56.559482 ], [ -57.656250, 54.977614 ], [ -56.250000, 52.482780 ], [ -60.468750, 50.289339 ], [ -66.796875, 50.289339 ], [ -71.718750, 47.040182 ], [ -69.609375, 47.517201 ], [ -65.390625, 49.382373 ], [ -64.687500, 48.922499 ], [ -65.390625, 48.458352 ], [ -64.687500, 46.558860 ], [ -61.875000, 46.073231 ], [ -61.171875, 47.040182 ], [ -60.468750, 46.073231 ], [ -61.171875, 45.583290 ], [ -66.796875, 44.087585 ], [ -66.796875, 44.590467 ], [ -64.687500, 45.583290 ], [ -67.500000, 45.583290 ], [ -67.500000, 45.089036 ], [ -70.312500, 44.087585 ], [ -71.015625, 42.553080 ], [ -70.312500, 42.032974 ], [ -73.828125, 40.979898 ], [ -74.531250, 40.979898 ], [ -75.234375, 39.368279 ], [ -75.937500, 39.909736 ], [ -76.640625, 37.718590 ], [ -75.937500, 36.031332 ], [ -81.562500, 31.952162 ], [ -80.156250, 27.059126 ], [ -80.859375, 25.165173 ], [ -84.375000, 30.145127 ], [ -86.484375, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.921875, 29.535230 ], [ -97.734375, 28.304381 ], [ -97.734375, 26.431228 ], [ -97.734375, 21.943046 ], [ -94.921875, 18.646245 ], [ -91.406250, 19.311143 ], [ -90.703125, 21.289374 ], [ -87.187500, 21.943046 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -89.296875, 15.961329 ], [ -88.593750, 15.961329 ], [ -85.078125, 16.636192 ], [ -83.671875, 15.284185 ], [ -85.078125, 15.284185 ], [ -87.890625, 13.239945 ], [ -88.593750, 13.923404 ], [ -90.703125, 13.923404 ], [ -92.812500, 14.604847 ], [ -94.218750, 15.961329 ], [ -97.031250, 15.961329 ], [ -105.468750, 19.973349 ], [ -106.171875, 23.241346 ], [ -112.500000, 29.535230 ], [ -113.203125, 31.353637 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.751278 ], [ -109.687500, 23.885838 ], [ -110.390625, 23.241346 ], [ -112.500000, 26.431228 ], [ -115.312500, 28.304381 ], [ -114.609375, 28.921631 ], [ -117.421875, 32.546813 ], [ -120.937500, 34.885931 ], [ -123.750000, 39.368279 ], [ -125.156250, 48.458352 ], [ -123.750000, 48.458352 ], [ -123.046875, 47.517201 ], [ -123.046875, 49.382373 ], [ -125.156250, 50.289339 ], [ -123.750000, 48.922499 ], [ -125.859375, 48.922499 ], [ -128.671875, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 52.482780 ], [ -130.781250, 54.572062 ], [ -130.781250, 54.977614 ] ], [ [ -101.250000, 29.535230 ], [ -99.140625, 26.431228 ], [ -98.437500, 26.431228 ], [ -101.250000, 29.535230 ] ], [ [ -76.640625, 37.718590 ], [ -76.640625, 39.368279 ], [ -77.343750, 38.272689 ], [ -76.640625, 37.718590 ] ] ], [ [ [ -35.156250, 83.676943 ], [ -27.421875, 83.520162 ], [ -21.093750, 82.765373 ], [ -23.203125, 82.402423 ], [ -32.343750, 82.214217 ], [ -31.640625, 82.118384 ], [ -28.125000, 82.214217 ], [ -25.312500, 81.823794 ], [ -23.203125, 82.118384 ], [ -22.500000, 81.823794 ], [ -23.203125, 81.201420 ], [ -16.171875, 81.923186 ], [ -13.359375, 81.723188 ], [ -12.656250, 81.308321 ], [ -16.875000, 80.415707 ], [ -20.390625, 80.178713 ], [ -18.281250, 80.178713 ], [ -20.390625, 78.767792 ], [ -19.687500, 77.767582 ], [ -18.984375, 76.999935 ], [ -21.796875, 76.679785 ], [ -20.390625, 76.184995 ], [ -19.687500, 75.320025 ], [ -21.093750, 75.320025 ], [ -19.687500, 74.402163 ], [ -21.796875, 74.402163 ], [ -21.093750, 73.627789 ], [ -23.906250, 73.428424 ], [ -22.500000, 72.395706 ], [ -24.609375, 72.607120 ], [ -25.312500, 72.395706 ], [ -22.500000, 71.524909 ], [ -21.796875, 70.844673 ], [ -23.906250, 70.612614 ], [ -26.015625, 71.524909 ], [ -25.312500, 70.844673 ], [ -26.718750, 70.377854 ], [ -22.500000, 70.140364 ], [ -28.125000, 68.656555 ], [ -32.343750, 68.138852 ], [ -36.562500, 66.231457 ], [ -40.078125, 65.658275 ], [ -41.484375, 63.548552 ], [ -42.890625, 62.915233 ], [ -43.593750, 60.239811 ], [ -45.000000, 60.239811 ], [ -49.921875, 61.606396 ], [ -54.140625, 66.231457 ], [ -54.140625, 67.339861 ], [ -53.437500, 68.399180 ], [ -52.031250, 68.911005 ], [ -51.328125, 70.140364 ], [ -54.140625, 69.411242 ], [ -54.843750, 69.657086 ], [ -54.843750, 70.844673 ], [ -52.031250, 70.612614 ], [ -54.140625, 71.746432 ], [ -56.250000, 71.746432 ], [ -54.843750, 72.607120 ], [ -59.062500, 75.672197 ], [ -61.875000, 76.184995 ], [ -68.906250, 76.184995 ], [ -71.718750, 77.157163 ], [ -66.796875, 77.466028 ], [ -71.718750, 77.767582 ], [ -73.828125, 78.061989 ], [ -73.828125, 78.490552 ], [ -66.093750, 79.432371 ], [ -65.390625, 79.812302 ], [ -68.203125, 80.178713 ], [ -67.500000, 80.532071 ], [ -62.578125, 81.413933 ], [ -63.281250, 81.823794 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -53.437500, 81.923186 ], [ -50.625000, 82.494824 ], [ -45.000000, 81.723188 ], [ -47.109375, 82.214217 ], [ -47.109375, 82.676285 ], [ -43.593750, 83.277705 ], [ -40.078125, 83.194896 ], [ -38.671875, 83.599031 ], [ -35.156250, 83.676943 ] ] ], [ [ [ 49.218750, -11.867351 ], [ 49.921875, -15.284185 ], [ 46.406250, -24.527135 ], [ 45.000000, -25.165173 ], [ 43.593750, -24.527135 ], [ 42.890625, -22.593726 ], [ 44.296875, -19.311143 ], [ 43.593750, -17.308688 ], [ 49.218750, -11.867351 ] ] ], [ [ [ -62.578125, 10.487812 ], [ -59.765625, 8.407168 ], [ -57.656250, 6.315299 ], [ -54.140625, 6.315299 ], [ -52.031250, 4.915833 ], [ -52.734375, 3.513421 ], [ -51.328125, 4.214943 ], [ -50.625000, 2.108899 ], [ -50.625000, 0.000000 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -40.078125, -2.811371 ], [ -35.859375, -4.915833 ], [ -35.156250, -7.013668 ], [ -39.375000, -12.554564 ], [ -41.484375, -21.289374 ], [ -47.812500, -24.527135 ], [ -49.218750, -28.304381 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -54.140625, -31.952162 ], [ -54.140625, -34.307144 ], [ -56.250000, -34.307144 ], [ -59.062500, -33.724340 ], [ -59.062500, -34.307144 ], [ -56.953125, -36.031332 ], [ -58.359375, -37.718590 ], [ -62.578125, -38.822591 ], [ -62.578125, -40.446947 ], [ -65.390625, -40.979898 ], [ -65.390625, -42.032974 ], [ -63.984375, -42.553080 ], [ -65.390625, -43.068888 ], [ -66.093750, -44.590467 ], [ -67.500000, -45.089036 ], [ -68.203125, -46.073231 ], [ -66.093750, -47.040182 ], [ -69.609375, -50.289339 ], [ -68.203125, -52.052490 ], [ -68.906250, -52.052490 ], [ -71.015625, -52.482780 ], [ -71.718750, -53.748711 ], [ -75.234375, -52.052490 ], [ -75.937500, -48.458352 ], [ -74.531250, -46.558860 ], [ -75.937500, -46.558860 ], [ -74.531250, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.125000, -42.032974 ], [ -74.531250, -43.068888 ], [ -73.828125, -36.597889 ], [ -71.718750, -31.952162 ], [ -69.609375, -17.308688 ], [ -71.015625, -17.978733 ], [ -76.640625, -14.604847 ], [ -80.156250, -7.013668 ], [ -81.562500, -5.615986 ], [ -81.562500, -3.513421 ], [ -80.859375, -2.811371 ], [ -80.156250, -2.108899 ], [ -81.562500, -2.108899 ], [ -81.562500, -0.703107 ], [ -80.156250, 1.406109 ], [ -79.453125, 1.406109 ], [ -75.937500, 0.000000 ], [ -79.453125, 2.108899 ], [ -77.343750, 4.214943 ], [ -78.046875, 7.710992 ], [ -75.234375, 11.178402 ], [ -71.718750, 12.554564 ], [ -71.718750, 11.867351 ], [ -71.718750, 9.102097 ], [ -70.312500, 12.554564 ], [ -68.203125, 11.178402 ], [ -62.578125, 11.178402 ], [ -62.578125, 10.487812 ] ], [ [ -70.312500, -33.724340 ], [ -70.312500, -29.535230 ], [ -71.015625, -31.353637 ], [ -70.312500, -33.724340 ] ], [ [ -69.609375, -10.487812 ], [ -71.015625, -10.487812 ], [ -68.906250, -12.554564 ], [ -69.609375, -10.487812 ] ], [ [ -61.171875, 5.615986 ], [ -65.390625, 4.214943 ], [ -63.281250, 4.214943 ], [ -61.171875, 5.615986 ] ], [ [ -57.656250, 6.315299 ], [ -58.359375, 4.214943 ], [ -57.656250, 3.513421 ], [ -57.656250, 6.315299 ] ], [ [ -54.843750, -24.527135 ], [ -54.843750, -25.799891 ], [ -54.140625, -25.799891 ], [ -54.140625, -25.165173 ], [ -54.843750, -24.527135 ] ], [ [ -57.656250, 2.108899 ], [ -59.062500, 2.108899 ], [ -59.062500, 1.406109 ], [ -57.656250, 2.108899 ] ], [ [ -75.937500, 0.000000 ], [ -75.937500, -0.703107 ], [ -75.234375, 0.000000 ], [ -75.937500, 0.000000 ] ] ], [ [ [ 177.890625, -17.308688 ], [ 177.890625, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.308688 ], [ 177.890625, -17.308688 ] ] ], [ [ [ -182.109375, -17.308688 ], [ -182.109375, -17.978733 ], [ -182.812500, -17.978733 ], [ -182.812500, -17.308688 ], [ -182.109375, -17.308688 ] ] ], [ [ [ -73.125000, 83.277705 ], [ -68.906250, 83.111071 ], [ -63.984375, 82.940327 ], [ -61.875000, 82.676285 ], [ -62.578125, 82.402423 ], [ -68.203125, 81.518272 ], [ -66.093750, 81.518272 ], [ -69.609375, 80.647035 ], [ -71.718750, 79.812302 ], [ -74.531250, 79.432371 ], [ -77.343750, 79.432371 ], [ -75.937500, 79.302640 ], [ -76.640625, 79.038437 ], [ -75.937500, 78.630006 ], [ -80.156250, 77.312520 ], [ -80.156250, 76.999935 ], [ -78.046875, 77.157163 ], [ -78.046875, 76.840816 ], [ -80.859375, 76.184995 ], [ -83.671875, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.999935 ], [ -87.890625, 77.312520 ], [ -88.593750, 77.915669 ], [ -85.078125, 77.617709 ], [ -86.484375, 78.206563 ], [ -88.593750, 78.490552 ], [ -85.781250, 79.432371 ], [ -87.187500, 80.297927 ], [ -83.671875, 80.178713 ], [ -82.265625, 80.532071 ], [ -87.890625, 80.532071 ], [ -90.000000, 80.872827 ], [ -92.109375, 81.923186 ], [ -87.187500, 82.308893 ], [ -85.781250, 82.676285 ], [ -83.671875, 82.402423 ], [ -82.968750, 82.940327 ], [ -79.453125, 83.194896 ], [ -76.640625, 83.194896 ], [ -75.937500, 83.111071 ], [ -73.125000, 83.277705 ] ] ], [ [ [ -82.968750, 73.824820 ], [ -80.859375, 72.816074 ], [ -80.859375, 72.181804 ], [ -78.046875, 72.816074 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -72.421875, 71.746432 ], [ -68.203125, 70.140364 ], [ -67.500000, 69.411242 ], [ -68.906250, 68.911005 ], [ -65.390625, 67.875541 ], [ -63.984375, 67.067433 ], [ -61.875000, 67.067433 ], [ -63.984375, 65.072130 ], [ -66.796875, 66.513260 ], [ -68.203125, 66.513260 ], [ -68.203125, 65.946472 ], [ -64.687500, 63.548552 ], [ -65.390625, 62.915233 ], [ -68.906250, 63.860036 ], [ -66.796875, 61.938950 ], [ -71.718750, 62.915233 ], [ -75.234375, 64.774125 ], [ -78.046875, 64.472794 ], [ -78.750000, 64.774125 ], [ -78.046875, 65.366837 ], [ -74.531250, 65.658275 ], [ -73.125000, 67.875541 ], [ -75.937500, 68.399180 ], [ -77.343750, 68.911005 ], [ -76.640625, 69.162558 ], [ -79.453125, 70.377854 ], [ -81.562500, 69.900118 ], [ -82.968750, 69.900118 ], [ -89.296875, 70.612614 ], [ -90.000000, 70.844673 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.703125, 72.395706 ], [ -88.593750, 73.627789 ], [ -86.484375, 73.824820 ], [ -87.187500, 73.226700 ], [ -85.781250, 72.607120 ], [ -85.078125, 73.428424 ], [ -82.968750, 73.824820 ] ] ], [ [ [ -175.078125, 67.067433 ], [ -172.265625, 67.067433 ], [ -170.156250, 66.231457 ], [ -172.968750, 65.658275 ], [ -172.968750, 64.472794 ], [ -176.484375, 65.366837 ], [ -178.593750, 65.658275 ], [ -179.296875, 66.231457 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.072130 ], [ -182.812500, 64.774125 ], [ -181.406250, 62.593341 ], [ -182.812500, 62.593341 ], [ -187.031250, 61.606396 ], [ -187.031250, 69.900118 ], [ -184.921875, 69.900118 ], [ -180.000000, 69.162558 ], [ -175.078125, 67.339861 ], [ -175.078125, 67.067433 ] ] ], [ [ [ -92.812500, 81.308321 ], [ -91.406250, 80.760615 ], [ -87.890625, 80.415707 ], [ -87.187500, 79.687184 ], [ -86.484375, 79.432371 ], [ -88.593750, 78.490552 ], [ -89.296875, 78.349411 ], [ -93.515625, 78.349411 ], [ -94.218750, 78.767792 ], [ -93.515625, 79.432371 ], [ -95.625000, 79.432371 ], [ -97.031250, 80.178713 ], [ -95.625000, 80.983688 ], [ -94.921875, 80.983688 ], [ -94.921875, 81.308321 ], [ -92.812500, 81.308321 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 17.578125, 79.812302 ], [ 21.093750, 79.038437 ], [ 18.984375, 78.630006 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 13.359375, 77.466028 ], [ 14.062500, 77.767582 ], [ 10.546875, 78.903929 ], [ 9.843750, 79.687184 ], [ 12.656250, 80.058050 ], [ 13.359375, 79.687184 ], [ 14.765625, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ -97.031250, 77.312520 ], [ -94.921875, 77.157163 ], [ -94.218750, 76.840816 ], [ -92.109375, 76.840816 ], [ -91.406250, 76.184995 ], [ -89.296875, 75.672197 ], [ -81.562500, 75.845169 ], [ -80.156250, 75.497157 ], [ -80.859375, 74.775843 ], [ -88.593750, 74.402163 ], [ -92.812500, 74.959392 ], [ -94.218750, 76.351896 ], [ -97.734375, 76.840816 ], [ -97.031250, 77.312520 ] ] ], [ [ [ 95.625000, 81.308321 ], [ 99.843750, 79.812302 ], [ 99.843750, 78.903929 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.171335 ], [ 90.703125, 80.415707 ], [ 93.515625, 81.093214 ], [ 95.625000, 81.308321 ] ] ], [ [ [ 140.625000, -9.102097 ], [ 137.109375, -8.407168 ], [ 138.515625, -7.013668 ], [ 137.812500, -4.915833 ], [ 133.593750, -3.513421 ], [ 132.890625, -3.513421 ], [ 131.484375, -2.811371 ], [ 133.593750, -2.108899 ], [ 130.078125, -0.703107 ], [ 133.593750, -0.703107 ], [ 135.000000, -2.811371 ], [ 137.109375, -1.406109 ], [ 140.625000, -2.108899 ], [ 146.953125, -5.615986 ], [ 146.953125, -7.013668 ], [ 150.468750, -10.487812 ], [ 147.656250, -9.795678 ], [ 144.140625, -7.013668 ], [ 142.031250, -9.102097 ], [ 140.625000, -9.102097 ] ] ], [ [ [ 115.312500, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.828125, 5.615986 ], [ 118.125000, 4.915833 ], [ 115.312500, 4.915833 ], [ 117.421875, 4.214943 ], [ 117.421875, 2.108899 ], [ 118.828125, 1.406109 ], [ 117.421875, 1.406109 ], [ 116.015625, -3.513421 ], [ 109.687500, -2.811371 ], [ 108.984375, 0.000000 ], [ 108.984375, 2.108899 ], [ 109.687500, 1.406109 ], [ 110.390625, 1.406109 ], [ 113.906250, 4.915833 ], [ 115.312500, 5.615986 ] ] ], [ [ [ -5.625000, 56.170023 ], [ -6.328125, 56.944974 ], [ -5.625000, 58.813742 ], [ -3.515625, 58.813742 ], [ -4.218750, 57.704147 ], [ -2.109375, 57.704147 ], [ -3.515625, 56.170023 ], [ -2.109375, 56.170023 ], [ 0.000000, 53.330873 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ -5.625000, 50.289339 ], [ -3.515625, 51.618017 ], [ -5.625000, 52.052490 ], [ -4.921875, 52.482780 ], [ -4.921875, 53.748711 ], [ -3.515625, 53.748711 ], [ -3.515625, 54.162434 ], [ -4.921875, 54.977614 ], [ -5.625000, 56.170023 ] ] ], [ [ [ -109.687500, 76.840816 ], [ -108.281250, 76.351896 ], [ -108.281250, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.875000, 75.140778 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -111.796875, 75.320025 ], [ -118.125000, 75.320025 ], [ -116.015625, 76.516819 ], [ -113.203125, 76.184995 ], [ -111.093750, 75.672197 ], [ -109.687500, 75.497157 ], [ -111.093750, 76.516819 ], [ -109.687500, 76.840816 ] ] ], [ [ [ 127.265625, -7.710992 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.407168 ], [ 127.265625, -7.710992 ] ] ], [ [ [ 122.343750, -7.710992 ], [ 119.531250, -8.407168 ], [ 120.234375, -7.710992 ], [ 122.343750, -7.710992 ] ] ], [ [ [ -78.046875, 25.799891 ], [ -78.046875, 23.885838 ], [ -78.750000, 25.799891 ], [ -78.046875, 25.799891 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 108.281250, -6.315299 ], [ 110.390625, -6.315299 ], [ 115.312500, -7.710992 ], [ 104.765625, -6.315299 ], [ 105.468750, -5.615986 ] ] ], [ [ [ -16.171875, 66.791909 ], [ -14.765625, 66.513260 ], [ -14.062500, 65.366837 ], [ -18.984375, 63.548552 ], [ -23.203125, 64.168107 ], [ -21.796875, 64.472794 ], [ -24.609375, 65.072130 ], [ -22.500000, 65.366837 ], [ -24.609375, 65.658275 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -21.093750, 65.946472 ], [ -19.687500, 66.513260 ], [ -18.281250, 66.231457 ], [ -16.171875, 66.791909 ] ] ], [ [ [ 151.171875, -3.513421 ], [ 151.875000, -4.214943 ], [ 151.875000, -4.915833 ], [ 149.765625, -6.315299 ], [ 147.656250, -5.615986 ], [ 150.468750, -4.915833 ], [ 151.171875, -3.513421 ] ] ], [ [ [ 97.031250, 5.615986 ], [ 101.250000, 2.811371 ], [ 103.359375, 0.703107 ], [ 103.359375, -0.703107 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 101.953125, -4.214943 ], [ 94.921875, 5.615986 ], [ 97.031250, 5.615986 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 120.234375, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.108899 ], [ 120.234375, -4.915833 ], [ 118.828125, -4.915833 ], [ 118.125000, -2.108899 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 22.500000, 80.760615 ], [ 25.312500, 80.415707 ], [ 26.718750, 80.058050 ], [ 25.312500, 79.560546 ], [ 22.500000, 79.432371 ], [ 19.687500, 79.687184 ], [ 16.875000, 80.415707 ], [ 20.390625, 80.647035 ], [ 21.796875, 80.415707 ], [ 22.500000, 80.760615 ] ] ], [ [ [ 141.328125, 76.184995 ], [ 144.843750, 75.672197 ], [ 144.140625, 74.959392 ], [ 138.515625, 74.775843 ], [ 136.406250, 75.320025 ], [ 137.109375, 76.016094 ], [ 138.515625, 76.184995 ], [ 141.328125, 76.184995 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 36.031332 ], [ 136.406250, 37.718590 ], [ 137.109375, 37.160317 ], [ 139.218750, 38.272689 ], [ 139.218750, 40.979898 ], [ 141.328125, 41.508577 ], [ 141.328125, 39.368279 ], [ 140.625000, 37.160317 ], [ 139.921875, 35.460670 ], [ 135.703125, 33.724340 ], [ 135.000000, 34.885931 ], [ 132.890625, 34.307144 ], [ 130.781250, 34.307144 ] ] ], [ [ [ -116.718750, 77.767582 ], [ -117.421875, 76.679785 ], [ -121.640625, 76.016094 ], [ -123.046875, 76.184995 ], [ -119.531250, 77.617709 ], [ -116.718750, 77.767582 ] ] ], [ [ [ 130.078125, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.265625, -2.811371 ], [ 130.078125, -2.811371 ] ] ], [ [ [ -85.781250, 11.178402 ], [ -87.890625, 13.239945 ], [ -83.671875, 15.284185 ], [ -83.671875, 11.178402 ], [ -82.968750, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.046875, 7.710992 ], [ -79.453125, 9.102097 ], [ -80.859375, 7.710992 ], [ -82.968750, 8.407168 ], [ -85.781250, 11.178402 ] ] ], [ [ [ -94.921875, 74.211983 ], [ -90.703125, 74.019543 ], [ -94.921875, 72.181804 ], [ -95.625000, 72.181804 ], [ -96.328125, 73.627789 ], [ -94.921875, 74.211983 ] ] ], [ [ [ 127.265625, 2.811371 ], [ 128.671875, 1.406109 ], [ 127.968750, -0.703107 ], [ 127.265625, 2.811371 ] ] ], [ [ [ -99.140625, 76.840816 ], [ -98.437500, 75.140778 ], [ -99.843750, 74.959392 ], [ -101.250000, 75.140778 ], [ -101.250000, 75.672197 ], [ -102.656250, 75.672197 ], [ -102.656250, 76.351896 ], [ -99.140625, 76.840816 ] ] ], [ [ [ 101.953125, 79.432371 ], [ 104.765625, 78.767792 ], [ 104.765625, 78.349411 ], [ 99.140625, 78.061989 ], [ 101.953125, 79.432371 ] ] ], [ [ [ -86.484375, 65.946472 ], [ -85.781250, 65.658275 ], [ -80.156250, 63.860036 ], [ -81.562500, 63.548552 ], [ -83.671875, 64.168107 ], [ -85.781250, 63.233627 ], [ -86.484375, 63.860036 ], [ -87.890625, 63.548552 ], [ -86.484375, 65.946472 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -56.953125, 49.837982 ], [ -54.140625, 49.382373 ], [ -53.437500, 47.040182 ], [ -54.843750, 47.040182 ], [ -54.843750, 47.989922 ], [ -55.546875, 47.040182 ], [ -56.953125, 47.989922 ], [ -59.765625, 47.989922 ], [ -57.656250, 50.736455 ], [ -55.546875, 51.618017 ] ] ], [ [ [ -106.171875, 79.302640 ], [ -101.250000, 78.903929 ], [ -100.546875, 78.349411 ], [ -99.843750, 77.915669 ], [ -105.468750, 78.490552 ], [ -104.765625, 78.767792 ], [ -106.171875, 79.302640 ] ] ], [ [ [ -7.734375, 55.379110 ], [ -7.031250, 55.379110 ], [ -6.328125, 54.572062 ], [ -6.328125, 54.162434 ], [ -7.031250, 52.482780 ], [ -10.546875, 52.052490 ], [ -9.843750, 54.162434 ], [ -7.734375, 55.379110 ] ] ], [ [ [ 141.328125, 45.583290 ], [ 143.437500, 44.590467 ], [ 144.843750, 44.590467 ], [ 144.843750, 43.580391 ], [ 142.734375, 42.032974 ], [ 141.328125, 43.068888 ], [ 140.625000, 42.032974 ], [ 139.921875, 42.032974 ], [ 141.328125, 45.583290 ] ] ], [ [ [ 123.046875, 8.407168 ], [ 125.156250, 9.795678 ], [ 125.859375, 9.102097 ], [ 125.156250, 5.615986 ], [ 123.046875, 8.407168 ] ] ], [ [ [ 49.921875, 80.983688 ], [ 51.328125, 80.760615 ], [ 47.109375, 80.058050 ], [ 46.406250, 80.297927 ], [ 46.406250, 80.647035 ], [ 44.296875, 80.647035 ], [ 47.812500, 80.872827 ], [ 48.515625, 80.532071 ], [ 49.921875, 80.983688 ] ] ], [ [ [ 123.750000, 13.239945 ], [ 125.156250, 12.554564 ], [ 124.453125, 10.487812 ], [ 123.750000, 11.867351 ], [ 123.750000, 12.554564 ], [ 120.937500, 13.923404 ], [ 119.531250, 15.284185 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 122.343750, 17.308688 ], [ 121.640625, 14.604847 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 141.328125, 53.330873 ], [ 142.031250, 54.572062 ], [ 144.140625, 49.382373 ], [ 142.734375, 49.382373 ], [ 142.031250, 47.989922 ] ] ], [ [ [ 79.453125, 10.487812 ], [ 80.156250, 9.795678 ], [ 81.562500, 7.710992 ], [ 80.156250, 6.315299 ], [ 79.453125, 10.487812 ] ] ], [ [ [ 22.500000, 78.490552 ], [ 24.609375, 77.915669 ], [ 21.796875, 77.466028 ], [ 20.390625, 77.767582 ], [ 20.390625, 78.349411 ], [ 22.500000, 78.490552 ] ] ], [ [ [ -78.750000, 73.824820 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.022592 ], [ -78.046875, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.859375, 73.824820 ], [ -78.750000, 73.824820 ] ] ], [ [ [ -99.140625, 78.903929 ], [ -97.031250, 78.767792 ], [ -95.625000, 78.490552 ], [ -96.328125, 78.061989 ], [ -97.031250, 77.915669 ], [ -97.734375, 77.915669 ], [ -98.437500, 78.206563 ], [ -99.140625, 78.903929 ] ] ], [ [ [ 100.546875, 6.315299 ], [ 102.656250, 5.615986 ], [ 104.062500, 1.406109 ], [ 101.250000, 2.811371 ], [ 100.546875, 6.315299 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 150.468750, 75.140778 ], [ 149.062500, 74.775843 ], [ 147.656250, 74.959392 ], [ 145.546875, 75.320025 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ -111.796875, 78.206563 ], [ -110.390625, 78.061989 ], [ -110.390625, 77.767582 ], [ -112.500000, 77.466028 ], [ -113.906250, 77.767582 ], [ -111.796875, 78.206563 ] ] ], [ [ [ -81.562500, 23.241346 ], [ -78.750000, 22.593726 ], [ -74.531250, 20.632784 ], [ -78.046875, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.750000, 21.943046 ], [ -81.562500, 23.241346 ] ] ], [ [ [ 118.828125, 11.867351 ], [ 119.531250, 11.178402 ], [ 116.718750, 8.407168 ], [ 118.828125, 11.867351 ] ] ], [ [ [ -105.468750, 73.824820 ], [ -104.765625, 73.428424 ], [ -105.468750, 72.816074 ], [ -106.875000, 73.226700 ], [ -107.578125, 73.627789 ], [ -105.468750, 73.824820 ] ] ], [ [ [ 142.031250, 74.019543 ], [ 143.437500, 73.226700 ], [ 139.218750, 73.428424 ], [ 142.031250, 74.019543 ] ] ], [ [ [ 121.640625, 12.554564 ], [ 123.046875, 11.867351 ], [ 121.640625, 10.487812 ], [ 121.640625, 12.554564 ] ] ], [ [ [ -71.718750, 19.973349 ], [ -68.906250, 18.646245 ], [ -71.718750, 17.978733 ], [ -71.718750, 18.646245 ], [ -74.531250, 18.646245 ], [ -72.421875, 19.311143 ], [ -73.828125, 19.973349 ], [ -71.718750, 19.973349 ] ] ], [ [ [ -61.875000, 11.178402 ], [ -61.171875, 10.487812 ], [ -62.578125, 10.487812 ], [ -61.875000, 11.178402 ] ] ], [ [ [ -180.000000, 71.524909 ], [ -180.000000, 71.746432 ], [ -177.890625, 71.300793 ], [ -179.296875, 71.074056 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.300793 ], [ -180.000000, 71.524909 ] ] ], [ [ [ -94.921875, 75.672197 ], [ -94.218750, 75.140778 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.959392 ], [ -94.921875, 75.672197 ] ] ], [ [ [ 134.296875, 34.307144 ], [ 133.593750, 33.724340 ], [ 132.187500, 33.137551 ], [ 132.890625, 34.307144 ], [ 134.296875, 34.307144 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 182.109375, 71.300793 ], [ 180.703125, 71.074056 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.300793 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 131.484375, 33.724340 ], [ 130.781250, 31.952162 ], [ 130.078125, 31.952162 ], [ 129.375000, 33.724340 ], [ 130.781250, 34.307144 ] ] ], [ [ [ 120.937500, 25.799891 ], [ 121.640625, 24.527135 ], [ 120.234375, 22.593726 ], [ 119.531250, 23.885838 ], [ 120.937500, 25.799891 ] ] ], [ [ [ -75.937500, 68.399180 ], [ -75.234375, 68.138852 ], [ -75.937500, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.609221 ], [ -75.937500, 68.399180 ] ] ], [ [ [ 120.937500, 13.923404 ], [ 120.937500, 12.554564 ], [ 120.234375, 13.923404 ], [ 120.937500, 13.923404 ] ] ], [ [ [ -133.593750, 54.572062 ], [ -132.187500, 54.162434 ], [ -131.484375, 52.482780 ], [ -133.593750, 53.748711 ], [ -133.593750, 54.572062 ] ] ], [ [ [ -111.796875, 78.903929 ], [ -109.687500, 78.630006 ], [ -113.203125, 78.490552 ], [ -111.796875, 78.903929 ] ] ], [ [ [ -94.921875, 77.915669 ], [ -94.218750, 77.617709 ], [ -96.328125, 77.617709 ], [ -97.031250, 77.915669 ], [ -94.921875, 77.915669 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 125.156250, 2.108899 ], [ 123.046875, 0.703107 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 110.390625, 20.632784 ], [ 109.687500, 19.311143 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.973349 ], [ 110.390625, 20.632784 ] ] ], [ [ [ -152.578125, 58.077876 ], [ -153.281250, 57.326521 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.704147 ], [ -152.578125, 58.077876 ] ] ], [ [ [ 120.937500, -2.108899 ], [ 123.046875, -4.915833 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.108899 ] ] ], [ [ [ -61.171875, 49.837982 ], [ -61.171875, 48.922499 ], [ -62.578125, 48.922499 ], [ -62.578125, 49.837982 ], [ -61.171875, 49.837982 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 142.734375, 47.040182 ], [ 142.031250, 46.073231 ], [ 142.031250, 47.989922 ] ] ], [ [ [ -165.937500, 60.586967 ], [ -165.937500, 60.239811 ], [ -168.046875, 60.239811 ], [ -165.937500, 60.586967 ] ] ], [ [ [ -66.093750, 18.646245 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ], [ [ [ -156.093750, 20.632784 ], [ -155.390625, 19.973349 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.171875, -79.560546 ], [ -59.765625, -79.935918 ], [ -60.468750, -80.983688 ], [ -64.687500, -80.872827 ], [ -66.796875, -80.178713 ], [ -62.578125, -80.297927 ], [ -61.171875, -79.560546 ] ] ], [ [ [ -47.109375, -77.767582 ], [ -45.703125, -77.915669 ], [ -44.296875, -78.349411 ], [ -43.593750, -79.935918 ], [ -48.515625, -80.760615 ], [ -50.625000, -80.983688 ], [ -53.437500, -80.872827 ], [ -54.843750, -80.532071 ], [ -54.140625, -80.178713 ], [ -52.031250, -79.935918 ], [ -49.218750, -77.915669 ], [ -47.109375, -77.767582 ] ] ], [ [ [ -58.359375, -63.233627 ], [ -59.062500, -63.860036 ], [ -62.578125, -64.774125 ], [ -62.578125, -65.946472 ], [ -63.984375, -66.231457 ], [ -66.093750, -67.875541 ], [ -63.281250, -69.162558 ], [ -61.875000, -71.074056 ], [ -61.171875, -73.022592 ], [ -61.875000, -74.019543 ], [ -64.687500, -75.140778 ], [ -70.312500, -76.184995 ], [ -71.015625, -76.516819 ], [ -77.343750, -76.679785 ], [ -73.828125, -77.767582 ], [ -75.234375, -78.206563 ], [ -76.640625, -78.061989 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.171335 ], [ -75.937500, -80.178713 ], [ -73.828125, -80.415707 ], [ -68.203125, -81.308321 ], [ -63.281250, -81.723188 ], [ -59.765625, -82.308893 ], [ -58.359375, -83.194896 ], [ -54.140625, -82.214217 ], [ -49.921875, -81.723188 ], [ -47.812500, -81.621352 ], [ -42.890625, -82.021378 ], [ -40.781250, -81.308321 ], [ -38.671875, -81.308321 ], [ -28.828125, -80.297927 ], [ -30.234375, -79.171335 ], [ -35.859375, -79.432371 ], [ -35.859375, -78.061989 ], [ -29.531250, -76.516819 ], [ -22.500000, -76.016094 ], [ -17.578125, -74.959392 ], [ -16.171875, -74.402163 ], [ -16.171875, -73.428424 ], [ -12.656250, -72.395706 ], [ -10.546875, -71.074056 ], [ -7.734375, -71.524909 ], [ -7.031250, -70.844673 ], [ -4.921875, -71.300793 ], [ -0.703125, -71.074056 ], [ -0.703125, -71.524909 ], [ 7.734375, -69.657086 ], [ 9.140625, -69.900118 ], [ 10.546875, -70.612614 ], [ 13.359375, -69.900118 ], [ 14.765625, -70.377854 ], [ 16.875000, -69.900118 ], [ 21.093750, -69.900118 ], [ 22.500000, -70.612614 ], [ 26.718750, -70.377854 ], [ 31.640625, -69.657086 ], [ 33.750000, -68.399180 ], [ 37.968750, -69.657086 ], [ 41.484375, -68.399180 ], [ 54.140625, -65.658275 ], [ 56.250000, -65.946472 ], [ 61.171875, -67.875541 ], [ 63.984375, -67.339861 ], [ 68.203125, -67.875541 ], [ 69.609375, -69.162558 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 67.500000, -71.746432 ], [ 69.609375, -72.181804 ], [ 71.015625, -71.965388 ], [ 73.828125, -69.657086 ], [ 77.343750, -69.411242 ], [ 78.750000, -68.138852 ], [ 81.562500, -67.339861 ], [ 86.484375, -67.067433 ], [ 87.890625, -65.946472 ], [ 89.296875, -67.067433 ], [ 95.625000, -67.339861 ], [ 99.140625, -67.067433 ], [ 102.656250, -65.366837 ], [ 106.171875, -66.791909 ], [ 109.687500, -66.513260 ], [ 113.203125, -65.658275 ], [ 115.312500, -66.513260 ], [ 119.531250, -67.067433 ], [ 123.046875, -66.231457 ], [ 128.671875, -66.513260 ], [ 134.296875, -65.946472 ], [ 135.000000, -65.072130 ], [ 137.109375, -66.791909 ], [ 144.843750, -66.791909 ], [ 146.250000, -67.875541 ], [ 148.359375, -68.138852 ], [ 151.875000, -68.656555 ], [ 153.984375, -68.399180 ], [ 158.906250, -69.411242 ], [ 161.015625, -70.377854 ], [ 166.640625, -70.612614 ], [ 170.859375, -71.524909 ], [ 168.750000, -73.627789 ], [ 165.937500, -74.211983 ], [ 163.125000, -76.184995 ], [ 164.531250, -78.061989 ], [ 165.937500, -78.206563 ], [ 166.640625, -78.630006 ], [ 161.718750, -79.038437 ], [ 159.609375, -80.872827 ], [ 163.125000, -82.308893 ], [ 168.750000, -83.277705 ], [ 168.750000, -83.753911 ], [ 172.265625, -83.979259 ], [ 172.968750, -84.405941 ], [ 175.781250, -84.124973 ], [ 180.000000, -84.673513 ], [ 180.703125, -84.124973 ], [ 182.109375, -84.405941 ], [ 183.515625, -84.052561 ], [ 184.921875, -84.474065 ], [ 187.031250, -84.052561 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.405941 ], [ -184.218750, -84.124973 ], [ -180.000000, -84.673513 ], [ -179.296875, -84.124973 ], [ -177.890625, -84.405941 ], [ -176.484375, -84.052561 ], [ -175.078125, -84.474065 ], [ -172.968750, -84.052561 ], [ -170.156250, -83.829945 ], [ -167.343750, -84.541361 ], [ -163.125000, -85.051129 ], [ -158.203125, -85.345325 ], [ -155.390625, -85.051129 ], [ -151.171875, -85.287916 ], [ -149.062500, -85.568066 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.541361 ], [ -146.953125, -84.474065 ], [ -150.468750, -84.267172 ], [ -151.171875, -83.829945 ], [ -153.984375, -83.676943 ], [ -153.281250, -82.021378 ], [ -157.500000, -81.093214 ], [ -152.578125, -80.983688 ], [ -151.171875, -81.308321 ], [ -147.656250, -80.647035 ], [ -146.953125, -79.812302 ], [ -149.765625, -79.302640 ], [ -155.390625, -79.038437 ], [ -158.203125, -77.915669 ], [ -158.906250, -76.840816 ], [ -157.500000, -77.157163 ], [ -153.984375, -76.999935 ], [ -153.281250, -77.466028 ], [ -151.875000, -77.312520 ], [ -146.250000, -76.351896 ], [ -146.250000, -75.320025 ], [ -145.546875, -75.140778 ], [ -144.843750, -75.497157 ], [ -135.703125, -74.211983 ], [ -121.640625, -74.402163 ], [ -118.125000, -74.019543 ], [ -116.718750, -74.211983 ], [ -114.609375, -73.627789 ], [ -112.500000, -74.590108 ], [ -111.796875, -74.402163 ], [ -107.578125, -75.140778 ], [ -105.468750, -74.775843 ], [ -101.250000, -75.140778 ], [ -100.546875, -74.775843 ], [ -101.953125, -74.019543 ], [ -102.656250, -74.019543 ], [ -104.062500, -72.607120 ], [ -99.140625, -72.816074 ], [ -97.734375, -73.428424 ], [ -97.031250, -73.428424 ], [ -92.812500, -73.022592 ], [ -90.703125, -73.226700 ], [ -89.296875, -72.395706 ], [ -88.593750, -72.816074 ], [ -81.562500, -73.824820 ], [ -80.859375, -73.022592 ], [ -76.640625, -73.824820 ], [ -75.234375, -73.824820 ], [ -67.500000, -72.395706 ], [ -68.906250, -69.657086 ], [ -67.500000, -66.791909 ], [ -63.281250, -64.472794 ], [ -58.359375, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -160.312500, -78.630006 ], [ -159.609375, -79.432371 ], [ -161.718750, -79.560546 ], [ -163.125000, -79.171335 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -123.046875, -73.226700 ], [ -121.640625, -73.428424 ], [ -118.828125, -73.428424 ], [ -120.234375, -74.019543 ], [ -123.046875, -73.627789 ], [ -123.046875, -73.226700 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -124.453125, -73.824820 ], [ -127.968750, -73.428424 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -97.031250, -71.746432 ], [ -96.328125, -72.395706 ], [ -101.250000, -72.395706 ], [ -102.656250, -71.746432 ], [ -97.031250, -71.746432 ] ] ], [ [ [ -70.312500, -68.656555 ], [ -68.906250, -70.844673 ], [ -68.906250, -71.965388 ], [ -72.421875, -72.395706 ], [ -72.421875, -71.965388 ], [ -74.531250, -72.181804 ], [ -75.234375, -71.965388 ], [ -74.531250, -71.074056 ], [ -72.421875, -71.074056 ], [ -72.421875, -69.411242 ], [ -70.312500, -68.656555 ] ] ], [ [ [ 68.906250, -48.458352 ], [ 70.312500, -48.922499 ], [ 69.609375, -49.382373 ], [ 68.203125, -49.382373 ], [ 68.906250, -48.458352 ] ] ], [ [ [ -68.906250, -52.482780 ], [ -68.203125, -53.748711 ], [ -65.390625, -54.572062 ], [ -66.093750, -54.977614 ], [ -67.500000, -54.572062 ], [ -68.203125, -55.379110 ], [ -71.015625, -54.977614 ], [ -75.234375, -52.482780 ], [ -71.718750, -53.748711 ], [ -70.312500, -52.908902 ], [ -68.906250, -52.482780 ] ] ], [ [ [ 50.625000, 26.431228 ], [ 51.328125, 25.799891 ], [ 50.625000, 25.165173 ], [ 50.625000, 26.431228 ] ] ], [ [ [ 43.593750, 10.487812 ], [ 48.515625, 11.867351 ], [ 48.515625, 11.178402 ], [ 49.218750, 11.867351 ], [ 50.625000, 12.554564 ], [ 50.625000, 11.178402 ], [ 48.515625, 5.615986 ], [ 41.484375, -1.406109 ], [ 38.671875, -4.214943 ], [ 38.671875, -8.407168 ], [ 40.078125, -9.795678 ], [ 40.078125, -14.604847 ], [ 34.453125, -19.311143 ], [ 35.156250, -23.885838 ], [ 32.343750, -26.431228 ], [ 30.937500, -28.921631 ], [ 27.421875, -33.137551 ], [ 18.984375, -34.307144 ], [ 18.281250, -33.724340 ], [ 17.578125, -31.353637 ], [ 16.171875, -28.304381 ], [ 11.250000, -16.636192 ], [ 13.359375, -11.178402 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 11.953125, -4.214943 ], [ 10.546875, -3.513421 ], [ 8.437500, -0.703107 ], [ 9.140625, 1.406109 ], [ 9.140625, 2.811371 ], [ 8.437500, 4.915833 ], [ 5.625000, 4.915833 ], [ 4.218750, 6.315299 ], [ 2.109375, 6.315299 ], [ 1.406250, 6.315299 ], [ 0.703125, 6.315299 ], [ -3.515625, 5.615986 ], [ -7.734375, 4.915833 ], [ -11.953125, 7.013668 ], [ -13.359375, 9.102097 ], [ -15.468750, 11.178402 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -14.765625, 13.923404 ], [ -16.875000, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 16.636192 ], [ -17.578125, 21.289374 ], [ -14.765625, 21.943046 ], [ -17.578125, 21.943046 ], [ -14.765625, 26.431228 ], [ -9.843750, 30.145127 ], [ -9.843750, 33.137551 ], [ -5.625000, 36.031332 ], [ -7.734375, 37.718590 ], [ -7.031250, 40.979898 ], [ -8.437500, 37.160317 ], [ -9.140625, 37.160317 ], [ -9.843750, 38.822591 ], [ -9.140625, 42.032974 ], [ -9.843750, 43.068888 ], [ -8.437500, 44.087585 ], [ -2.109375, 43.580391 ], [ -1.406250, 46.073231 ], [ -4.921875, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.837982 ], [ -1.406250, 49.382373 ], [ 2.109375, 51.179343 ], [ 2.812500, 51.618017 ], [ 4.218750, 53.330873 ], [ 5.625000, 53.748711 ], [ 6.328125, 53.748711 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 8.437500, 57.326521 ], [ 10.546875, 58.077876 ], [ 10.546875, 56.559482 ], [ 10.546875, 56.170023 ], [ 11.953125, 56.170023 ], [ 10.546875, 59.175928 ], [ 9.843750, 59.534318 ], [ 7.734375, 58.447733 ], [ 5.625000, 58.813742 ], [ 4.921875, 62.267923 ], [ 9.843750, 64.774125 ], [ 14.062500, 67.875541 ], [ 18.984375, 69.900118 ], [ 22.500000, 70.377854 ], [ 23.906250, 71.074056 ], [ 28.125000, 71.300793 ], [ 30.937500, 70.612614 ], [ 29.531250, 70.377854 ], [ 30.234375, 69.900118 ], [ 31.640625, 70.140364 ], [ 40.078125, 68.138852 ], [ 40.781250, 66.791909 ], [ 37.968750, 66.231457 ], [ 33.046875, 66.791909 ], [ 34.453125, 65.946472 ], [ 34.453125, 64.472794 ], [ 36.562500, 63.860036 ], [ 36.562500, 65.366837 ], [ 39.375000, 64.774125 ], [ 40.078125, 64.774125 ], [ 39.375000, 65.658275 ], [ 41.484375, 66.513260 ], [ 43.593750, 66.231457 ], [ 44.296875, 66.791909 ], [ 42.890625, 68.656555 ], [ 45.703125, 68.399180 ], [ 46.406250, 67.875541 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ], [ 45.703125, 66.791909 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 53.437500, 68.399180 ], [ 58.359375, 68.911005 ], [ 59.765625, 68.399180 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.900118 ], [ 63.281250, 69.657086 ], [ 68.203125, 68.138852 ], [ 68.906250, 68.656555 ], [ 66.796875, 69.657086 ], [ 66.093750, 71.074056 ], [ 69.609375, 73.226700 ], [ 72.421875, 72.816074 ], [ 71.718750, 71.524909 ], [ 72.421875, 69.162558 ], [ 73.125000, 68.656555 ], [ 71.015625, 66.513260 ], [ 72.421875, 66.231457 ], [ 74.531250, 67.875541 ], [ 74.531250, 69.162558 ], [ 73.828125, 69.162558 ], [ 73.125000, 69.657086 ], [ 73.828125, 70.844673 ], [ 72.421875, 71.524909 ], [ 74.531250, 72.181804 ], [ 74.531250, 73.022592 ], [ 75.234375, 72.395706 ], [ 75.234375, 71.965388 ], [ 77.343750, 72.395706 ], [ 79.453125, 72.395706 ], [ 80.859375, 71.965388 ], [ 80.156250, 73.824820 ], [ 86.484375, 74.019543 ], [ 85.781250, 74.590108 ], [ 86.484375, 75.140778 ], [ 92.812500, 75.845169 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 96.328125, 76.016094 ], [ 98.437500, 76.516819 ], [ 100.546875, 76.516819 ], [ 101.953125, 77.312520 ], [ 104.062500, 77.767582 ], [ 105.468750, 77.466028 ], [ 104.062500, 77.157163 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.516819 ], [ 107.578125, 76.840816 ], [ 110.390625, 76.840816 ], [ 113.906250, 76.016094 ], [ 113.203125, 75.497157 ], [ 108.984375, 74.211983 ], [ 111.796875, 73.824820 ], [ 112.500000, 74.019543 ], [ 113.203125, 73.428424 ], [ 115.312500, 73.824820 ], [ 118.125000, 73.627789 ], [ 118.828125, 73.226700 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 126.562500, 73.627789 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.181804 ], [ 130.781250, 70.844673 ], [ 132.187500, 71.965388 ], [ 133.593750, 71.524909 ], [ 135.000000, 71.746432 ], [ 137.109375, 71.524909 ], [ 137.812500, 71.746432 ], [ 139.218750, 71.524909 ], [ 138.515625, 72.607120 ], [ 139.921875, 73.022592 ], [ 149.062500, 72.395706 ], [ 152.578125, 70.844673 ], [ 158.906250, 71.074056 ], [ 159.609375, 69.900118 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 169.453125, 68.911005 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 178.593750, 69.411242 ], [ 180.000000, 69.162558 ], [ 184.921875, 67.339861 ], [ 184.921875, 67.067433 ], [ 187.031250, 67.067433 ], [ 187.031250, 64.472794 ], [ 183.515625, 65.366837 ], [ 181.406250, 65.658275 ], [ 180.703125, 66.231457 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.072130 ], [ 177.187500, 64.774125 ], [ 178.593750, 62.593341 ], [ 177.187500, 62.593341 ], [ 173.671875, 61.938950 ], [ 170.156250, 59.888937 ], [ 168.750000, 60.586967 ], [ 165.937500, 59.888937 ], [ 165.234375, 60.239811 ], [ 163.125000, 59.888937 ], [ 161.718750, 58.447733 ], [ 163.125000, 57.704147 ], [ 161.718750, 54.977614 ], [ 160.312500, 54.572062 ], [ 159.609375, 53.330873 ], [ 158.203125, 53.330873 ], [ 156.093750, 51.179343 ], [ 155.390625, 56.944974 ], [ 163.125000, 61.270233 ], [ 163.828125, 62.593341 ], [ 163.125000, 62.593341 ], [ 159.609375, 60.586967 ], [ 158.906250, 61.938950 ], [ 156.093750, 61.606396 ], [ 153.984375, 59.888937 ], [ 154.687500, 59.175928 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.888937 ], [ 148.359375, 59.175928 ], [ 142.031250, 59.175928 ], [ 135.000000, 54.977614 ], [ 137.812500, 54.162434 ], [ 139.218750, 54.572062 ], [ 141.328125, 53.330873 ], [ 139.921875, 48.458352 ], [ 134.296875, 43.580391 ], [ 132.890625, 43.068888 ], [ 132.187500, 43.580391 ], [ 130.078125, 42.553080 ], [ 127.265625, 39.909736 ], [ 127.968750, 38.822591 ], [ 129.375000, 36.031332 ], [ 125.859375, 34.885931 ], [ 125.859375, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 39.909736 ], [ 123.750000, 40.446947 ], [ 120.937500, 39.368279 ], [ 120.937500, 40.979898 ], [ 117.421875, 38.822591 ], [ 119.531250, 37.160317 ], [ 120.234375, 38.272689 ], [ 122.343750, 37.718590 ], [ 118.828125, 35.460670 ], [ 121.640625, 31.952162 ], [ 121.640625, 28.304381 ], [ 118.125000, 25.165173 ], [ 110.390625, 21.943046 ], [ 110.390625, 20.632784 ], [ 107.578125, 21.943046 ], [ 105.468750, 19.311143 ], [ 108.281250, 15.284185 ], [ 108.984375, 11.867351 ], [ 104.765625, 9.102097 ], [ 104.062500, 10.487812 ], [ 104.765625, 11.178402 ], [ 103.359375, 11.178402 ], [ 101.953125, 13.239945 ], [ 101.953125, 12.554564 ], [ 99.843750, 13.923404 ], [ 99.140625, 12.554564 ], [ 99.140625, 10.487812 ], [ 101.953125, 6.315299 ], [ 102.656250, 5.615986 ], [ 104.062500, 1.406109 ], [ 101.250000, 2.811371 ], [ 100.546875, 6.315299 ], [ 99.843750, 7.013668 ], [ 97.734375, 8.407168 ], [ 98.437500, 10.487812 ], [ 97.734375, 15.284185 ], [ 97.031250, 17.308688 ], [ 93.515625, 16.636192 ], [ 94.218750, 18.646245 ], [ 92.109375, 21.289374 ], [ 92.109375, 21.943046 ], [ 92.109375, 22.593726 ], [ 91.406250, 23.241346 ], [ 88.593750, 22.593726 ], [ 88.593750, 21.943046 ], [ 86.484375, 21.943046 ], [ 86.484375, 20.632784 ], [ 80.156250, 15.961329 ], [ 79.453125, 10.487812 ], [ 77.343750, 8.407168 ], [ 73.125000, 16.636192 ], [ 72.421875, 21.943046 ], [ 70.312500, 21.289374 ], [ 67.500000, 23.885838 ], [ 66.093750, 25.799891 ], [ 61.171875, 25.165173 ], [ 56.953125, 25.799891 ], [ 56.250000, 27.683528 ], [ 53.437500, 27.059126 ], [ 49.921875, 30.751278 ], [ 48.515625, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 50.625000, 25.165173 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 53.437500, 24.527135 ], [ 55.546875, 25.165173 ], [ 59.765625, 22.593726 ], [ 58.359375, 21.289374 ], [ 57.656250, 19.311143 ], [ 52.734375, 17.308688 ], [ 43.593750, 13.239945 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 34.453125, 28.304381 ], [ 33.750000, 27.683528 ], [ 36.562500, 22.593726 ], [ 37.968750, 18.646245 ], [ 38.671875, 15.961329 ], [ 41.484375, 13.923404 ], [ 42.890625, 13.239945 ], [ 42.187500, 12.554564 ], [ 42.890625, 11.867351 ], [ 43.593750, 10.487812 ] ], [ [ 13.359375, 46.073231 ], [ 11.953125, 45.583290 ], [ 11.953125, 44.590467 ], [ 18.281250, 40.446947 ], [ 16.171875, 40.446947 ], [ 15.468750, 38.272689 ], [ 14.765625, 40.446947 ], [ 10.546875, 42.553080 ], [ 9.843750, 44.087585 ], [ 8.437500, 44.590467 ], [ 7.031250, 44.087585 ], [ 1.406250, 42.553080 ], [ 2.812500, 42.032974 ], [ 0.703125, 41.508577 ], [ -0.703125, 37.718590 ], [ -5.625000, 36.031332 ], [ -2.812500, 35.460670 ], [ -1.406250, 36.031332 ], [ 7.734375, 37.160317 ], [ 9.140625, 37.718590 ], [ 10.546875, 37.160317 ], [ 9.843750, 34.885931 ], [ 11.250000, 33.137551 ], [ 18.984375, 30.751278 ], [ 20.390625, 33.137551 ], [ 24.609375, 31.952162 ], [ 33.750000, 31.353637 ], [ 34.453125, 33.137551 ], [ 35.156250, 33.724340 ], [ 35.859375, 34.885931 ], [ 35.859375, 36.031332 ], [ 35.859375, 37.160317 ], [ 34.453125, 37.160317 ], [ 29.531250, 36.597889 ], [ 27.421875, 37.160317 ], [ 26.015625, 38.272689 ], [ 26.015625, 39.909736 ], [ 28.125000, 41.508577 ], [ 26.718750, 40.979898 ], [ 26.015625, 40.979898 ], [ 23.203125, 40.979898 ], [ 22.500000, 40.979898 ], [ 23.203125, 40.446947 ], [ 23.906250, 37.718590 ], [ 22.500000, 38.272689 ], [ 22.500000, 36.597889 ], [ 21.093750, 37.160317 ], [ 19.687500, 39.909736 ], [ 19.687500, 42.553080 ], [ 18.984375, 42.032974 ], [ 18.281250, 42.553080 ], [ 13.359375, 45.583290 ], [ 13.359375, 46.073231 ] ], [ [ 23.203125, 66.231457 ], [ 21.796875, 65.946472 ], [ 21.093750, 64.472794 ], [ 17.578125, 62.915233 ], [ 16.875000, 61.606396 ], [ 18.281250, 60.239811 ], [ 16.171875, 58.813742 ], [ 15.468750, 56.170023 ], [ 12.656250, 55.379110 ], [ 11.953125, 54.977614 ], [ 10.546875, 56.170023 ], [ 9.843750, 55.379110 ], [ 10.546875, 54.162434 ], [ 11.953125, 54.572062 ], [ 14.062500, 53.330873 ], [ 14.765625, 54.162434 ], [ 17.578125, 54.977614 ], [ 19.687500, 54.977614 ], [ 21.093750, 55.379110 ], [ 20.390625, 56.170023 ], [ 21.093750, 57.704147 ], [ 22.500000, 58.077876 ], [ 23.906250, 57.326521 ], [ 24.609375, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.203125, 59.534318 ], [ 27.421875, 59.534318 ], [ 26.718750, 57.704147 ], [ 28.828125, 60.239811 ], [ 27.421875, 60.586967 ], [ 22.500000, 59.888937 ], [ 21.093750, 60.930432 ], [ 20.390625, 62.915233 ], [ 25.312500, 65.366837 ], [ 23.203125, 66.231457 ] ], [ [ 27.421875, 42.032974 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 33.046875, 42.032974 ], [ 36.562500, 41.508577 ], [ 42.890625, 41.508577 ], [ 41.484375, 42.032974 ], [ 39.375000, 43.580391 ], [ 44.296875, 42.553080 ], [ 37.265625, 45.089036 ], [ 36.562500, 45.583290 ], [ 38.671875, 47.517201 ], [ 34.453125, 46.558860 ], [ 35.859375, 45.583290 ], [ 33.750000, 44.590467 ], [ 32.343750, 45.583290 ], [ 33.046875, 46.073231 ], [ 31.640625, 47.040182 ], [ 29.531250, 45.583290 ], [ 28.125000, 44.087585 ], [ 27.421875, 42.032974 ] ], [ [ 48.515625, 47.040182 ], [ 48.515625, 46.558860 ], [ 46.406250, 45.089036 ], [ 48.515625, 42.032974 ], [ 49.921875, 40.446947 ], [ 48.515625, 38.822591 ], [ 48.515625, 37.718590 ], [ 50.625000, 37.160317 ], [ 53.437500, 37.718590 ], [ 52.031250, 40.446947 ], [ 52.734375, 40.979898 ], [ 54.140625, 40.979898 ], [ 53.437500, 42.553080 ], [ 52.734375, 41.508577 ], [ 52.031250, 42.032974 ], [ 49.921875, 45.089036 ], [ 52.734375, 45.583290 ], [ 52.734375, 47.040182 ], [ 48.515625, 47.040182 ] ], [ [ 11.953125, 23.885838 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 11.953125, 23.885838 ] ], [ [ -7.734375, 4.915833 ], [ -8.437500, 10.487812 ], [ -9.140625, 7.710992 ], [ -7.734375, 4.915833 ] ], [ [ 24.609375, -11.178402 ], [ 29.531250, -13.239945 ], [ 26.718750, -11.178402 ], [ 24.609375, -11.178402 ] ], [ [ 16.875000, 47.989922 ], [ 15.468750, 47.040182 ], [ 14.062500, 46.558860 ], [ 16.171875, 46.558860 ], [ 18.281250, 46.073231 ], [ 16.171875, 47.040182 ], [ 16.875000, 47.989922 ] ], [ [ 29.531250, -14.604847 ], [ 26.718750, -17.308688 ], [ 30.234375, -15.284185 ], [ 29.531250, -14.604847 ] ], [ [ 37.968750, 4.214943 ], [ 32.343750, 8.407168 ], [ 35.156250, 5.615986 ], [ 37.968750, 4.214943 ] ], [ [ 26.015625, 55.776573 ], [ 25.312500, 54.572062 ], [ 28.125000, 56.170023 ], [ 26.015625, 55.776573 ] ], [ [ 32.343750, -9.102097 ], [ 30.234375, -7.710992 ], [ 28.828125, -8.407168 ], [ 32.343750, -9.102097 ] ], [ [ 18.984375, 5.615986 ], [ 16.875000, 4.214943 ], [ 18.281250, 3.513421 ], [ 18.984375, 5.615986 ] ], [ [ 9.140625, 47.517201 ], [ 9.843750, 46.558860 ], [ 11.953125, 47.040182 ], [ 9.140625, 47.517201 ] ], [ [ 31.640625, 4.214943 ], [ 28.125000, 4.915833 ], [ 30.234375, 3.513421 ], [ 31.640625, 4.214943 ] ], [ [ 30.234375, -2.811371 ], [ 28.828125, -4.214943 ], [ 29.531250, -5.615986 ], [ 30.234375, -2.811371 ] ], [ [ 70.312500, 38.822591 ], [ 67.500000, 37.160317 ], [ 68.906250, 37.160317 ], [ 70.312500, 38.822591 ] ], [ [ 55.546875, 41.508577 ], [ 56.953125, 41.508577 ], [ 58.359375, 43.068888 ], [ 55.546875, 41.508577 ] ], [ [ -6.328125, 10.487812 ], [ -3.515625, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 11.867351 ], [ -6.328125, 10.487812 ] ], [ [ 60.468750, 36.597889 ], [ 60.468750, 33.137551 ], [ 61.171875, 36.031332 ], [ 60.468750, 36.597889 ] ], [ [ 7.031250, 34.307144 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.751278 ], [ 7.031250, 34.307144 ] ], [ [ 20.390625, 68.911005 ], [ 23.203125, 68.138852 ], [ 21.796875, 68.911005 ], [ 20.390625, 68.911005 ] ], [ [ -5.625000, 15.961329 ], [ -5.625000, 16.636192 ], [ -9.140625, 15.961329 ], [ -5.625000, 15.961329 ] ], [ [ 79.453125, 45.089036 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.580391 ], [ 79.453125, 45.089036 ] ], [ [ 119.531250, 51.618017 ], [ 117.421875, 49.837982 ], [ 118.828125, 50.289339 ], [ 119.531250, 51.618017 ] ], [ [ 120.937500, 53.330873 ], [ 119.531250, 52.908902 ], [ 120.234375, 52.052490 ], [ 120.937500, 53.330873 ] ], [ [ 41.484375, 4.915833 ], [ 37.968750, 4.214943 ], [ 41.484375, 4.214943 ], [ 41.484375, 4.915833 ] ], [ [ 74.531250, 37.718590 ], [ 73.828125, 37.718590 ], [ 74.531250, 37.160317 ], [ 77.343750, 36.031332 ], [ 74.531250, 37.718590 ] ], [ [ 12.656250, 47.517201 ], [ 9.140625, 47.989922 ], [ 9.140625, 47.517201 ], [ 12.656250, 47.517201 ] ], [ [ 21.796875, 42.553080 ], [ 22.500000, 41.508577 ], [ 22.500000, 44.087585 ], [ 21.796875, 42.553080 ] ], [ [ 2.109375, 12.554564 ], [ 0.703125, 11.178402 ], [ 2.812500, 11.867351 ], [ 2.109375, 12.554564 ] ], [ [ 33.046875, -10.487812 ], [ 34.453125, -11.178402 ], [ 33.046875, -9.102097 ], [ 33.046875, -10.487812 ] ], [ [ 21.796875, 42.553080 ], [ 21.093750, 43.068888 ], [ 20.390625, 42.553080 ], [ 20.390625, 42.032974 ], [ 21.796875, 42.553080 ] ], [ [ -10.546875, 8.407168 ], [ -11.250000, 10.487812 ], [ -11.953125, 10.487812 ], [ -10.546875, 8.407168 ] ], [ [ 13.359375, 12.554564 ], [ 14.062500, 13.239945 ], [ 12.656250, 13.923404 ], [ 13.359375, 12.554564 ] ], [ [ 104.765625, 14.604847 ], [ 104.765625, 15.284185 ], [ 102.656250, 14.604847 ], [ 104.765625, 14.604847 ] ], [ [ 101.250000, 21.289374 ], [ 100.546875, 21.943046 ], [ 99.843750, 20.632784 ], [ 101.250000, 21.289374 ] ], [ [ 91.406250, 27.059126 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.059126 ], [ 91.406250, 27.059126 ] ], [ [ 44.296875, 37.718590 ], [ 45.000000, 36.031332 ], [ 45.703125, 36.031332 ], [ 44.296875, 37.718590 ] ], [ [ 119.531250, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.125000, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.517201 ] ], [ [ 115.312500, 48.458352 ], [ 115.312500, 47.989922 ], [ 117.421875, 48.458352 ], [ 115.312500, 48.458352 ] ], [ [ 25.312500, 54.572062 ], [ 23.203125, 54.572062 ], [ 23.203125, 54.162434 ], [ 25.312500, 54.572062 ] ], [ [ 41.484375, -1.406109 ], [ 40.781250, 1.406109 ], [ 40.781250, -0.703107 ], [ 41.484375, -1.406109 ] ], [ [ 42.187500, 12.554564 ], [ 41.484375, 13.239945 ], [ 41.484375, 11.178402 ], [ 42.187500, 12.554564 ] ], [ [ 97.031250, 28.304381 ], [ 94.921875, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.031250, 28.304381 ] ], [ [ 87.890625, 27.059126 ], [ 88.593750, 27.683528 ], [ 88.593750, 28.304381 ], [ 87.890625, 28.304381 ], [ 87.890625, 27.059126 ] ], [ [ 16.171875, 48.922499 ], [ 14.765625, 49.382373 ], [ 14.062500, 48.922499 ], [ 16.171875, 48.922499 ] ], [ [ 30.937500, -25.165173 ], [ 31.640625, -25.799891 ], [ 31.640625, -24.527135 ], [ 30.937500, -25.165173 ] ], [ [ 19.687500, -23.885838 ], [ 19.687500, -24.527135 ], [ 19.687500, -25.165173 ], [ 20.390625, -25.165173 ], [ 19.687500, -23.885838 ] ], [ [ 55.546875, 23.885838 ], [ 54.843750, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 23.885838 ] ], [ [ 45.000000, 39.368279 ], [ 45.000000, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ] ], [ [ 67.500000, 39.909736 ], [ 66.796875, 39.368279 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.909736 ] ], [ [ 22.500000, 47.989922 ], [ 23.906250, 47.989922 ], [ 22.500000, 48.458352 ], [ 22.500000, 47.989922 ] ], [ [ 17.578125, 68.656555 ], [ 16.875000, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.656555 ] ], [ [ 12.656250, -4.214943 ], [ 12.656250, -4.915833 ], [ 14.062500, -4.915833 ], [ 12.656250, -4.214943 ] ], [ [ 11.250000, 2.811371 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.811371 ], [ 11.250000, 2.811371 ] ], [ [ 33.046875, -10.487812 ], [ 32.343750, -9.102097 ], [ 33.046875, -11.867351 ], [ 33.046875, -10.487812 ] ], [ [ 43.593750, 10.487812 ], [ 42.187500, 11.178402 ], [ 43.593750, 9.795678 ], [ 43.593750, 10.487812 ] ], [ [ 45.703125, 42.032974 ], [ 46.406250, 41.508577 ], [ 47.109375, 41.508577 ], [ 45.703125, 42.032974 ] ], [ [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 0.703125, 11.178402 ] ], [ [ 35.156250, 33.137551 ], [ 35.156250, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.156250, 33.137551 ] ] ], [ [ [ 15.468750, 38.272689 ], [ 14.765625, 37.160317 ], [ 11.953125, 37.718590 ], [ 11.953125, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 9.140625, 41.508577 ], [ 9.140625, 39.368279 ], [ 8.437500, 39.368279 ], [ 7.734375, 40.979898 ], [ 9.140625, 41.508577 ] ] ], [ [ [ -59.062500, -50.736455 ], [ -58.359375, -51.179343 ], [ -59.765625, -52.052490 ], [ -61.875000, -51.618017 ], [ -59.062500, -50.736455 ] ] ], [ [ [ -187.031250, -40.446947 ], [ -186.328125, -41.508577 ], [ -187.031250, -43.580391 ], [ -187.031250, -40.446947 ] ] ], [ [ [ 172.968750, -40.446947 ], [ 173.671875, -41.508577 ], [ 170.156250, -45.583290 ], [ 168.750000, -46.558860 ], [ 166.640625, -46.073231 ], [ 166.640625, -45.089036 ], [ 172.968750, -40.446947 ] ] ], [ [ [ 121.640625, 12.554564 ], [ 123.046875, 11.867351 ], [ 121.640625, 10.487812 ], [ 121.640625, 12.554564 ] ] ], [ [ [ 147.656250, -40.446947 ], [ 147.656250, -43.068888 ], [ 145.546875, -43.068888 ], [ 144.140625, -40.979898 ], [ 144.843750, -40.446947 ], [ 147.656250, -40.446947 ] ] ], [ [ [ 67.500000, 76.999935 ], [ 67.500000, 76.351896 ], [ 61.171875, 75.320025 ], [ 58.359375, 74.402163 ], [ 54.843750, 72.395706 ], [ 55.546875, 71.746432 ], [ 56.953125, 70.844673 ], [ 53.437500, 70.844673 ], [ 52.734375, 71.300793 ], [ 51.328125, 71.524909 ], [ 51.328125, 72.181804 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.824820 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.140778 ], [ 60.468750, 76.351896 ], [ 67.500000, 76.999935 ] ] ], [ [ [ 172.265625, -34.307144 ], [ 176.484375, -37.718590 ], [ 177.890625, -37.160317 ], [ 175.078125, -41.508577 ], [ 174.375000, -39.368279 ], [ 173.671875, -39.368279 ], [ 174.375000, -37.160317 ], [ 172.265625, -34.307144 ] ] ], [ [ [ -187.031250, -34.307144 ], [ -185.625000, -36.031332 ], [ -183.515625, -37.718590 ], [ -182.109375, -37.160317 ], [ -184.921875, -41.508577 ], [ -185.625000, -39.368279 ], [ -186.328125, -39.368279 ], [ -185.625000, -37.160317 ], [ -187.031250, -34.307144 ] ] ], [ [ [ 113.906250, -21.943046 ], [ 116.015625, -20.632784 ], [ 120.234375, -19.311143 ], [ 125.156250, -13.923404 ], [ 129.375000, -14.604847 ], [ 130.078125, -11.867351 ], [ 132.187500, -11.867351 ], [ 131.484375, -11.178402 ], [ 136.406250, -11.178402 ], [ 135.000000, -14.604847 ], [ 139.921875, -17.308688 ], [ 142.031250, -10.487812 ], [ 143.437500, -13.239945 ], [ 144.843750, -14.604847 ], [ 146.250000, -18.646245 ], [ 148.359375, -19.973349 ], [ 152.578125, -25.799891 ], [ 152.578125, -30.751278 ], [ 149.765625, -37.160317 ], [ 146.250000, -38.822591 ], [ 144.843750, -37.718590 ], [ 143.437500, -38.272689 ], [ 140.625000, -37.718590 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.885931 ], [ 137.109375, -32.546813 ], [ 135.703125, -34.885931 ], [ 133.593750, -32.546813 ], [ 130.781250, -31.353637 ], [ 125.859375, -31.952162 ], [ 123.046875, -33.724340 ], [ 119.531250, -33.724340 ], [ 117.421875, -34.885931 ], [ 114.609375, -33.724340 ], [ 115.312500, -31.353637 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.203125, -23.885838 ], [ 113.906250, -21.943046 ] ] ], [ [ [ -82.265625, 62.915233 ], [ -84.375000, 62.267923 ], [ -83.671875, 62.915233 ], [ -82.265625, 62.915233 ] ] ], [ [ [ -115.312500, 73.428424 ], [ -114.609375, 73.226700 ], [ -115.312500, 72.816074 ], [ -112.500000, 73.022592 ], [ -111.093750, 72.607120 ], [ -110.390625, 73.022592 ], [ -108.281250, 71.746432 ], [ -108.984375, 73.226700 ], [ -106.875000, 73.226700 ], [ -104.765625, 71.074056 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -103.359375, 69.657086 ], [ -102.656250, 68.911005 ], [ -106.171875, 69.411242 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -116.718750, 69.411242 ], [ -117.421875, 70.140364 ], [ -112.500000, 70.377854 ], [ -118.125000, 70.612614 ], [ -118.828125, 71.074056 ], [ -116.718750, 71.524909 ], [ -119.531250, 71.746432 ], [ -118.125000, 72.816074 ], [ -115.312500, 73.428424 ] ] ], [ [ [ -98.437500, 70.377854 ], [ -96.328125, 69.162558 ], [ -96.328125, 68.911005 ], [ -99.843750, 69.411242 ], [ -98.437500, 70.377854 ] ] ], [ [ [ -121.640625, 74.590108 ], [ -118.125000, 74.211983 ], [ -116.015625, 73.627789 ], [ -118.125000, 72.816074 ], [ -119.531250, 72.607120 ], [ -120.937500, 71.524909 ], [ -123.750000, 71.074056 ], [ -126.562500, 71.965388 ], [ -124.453125, 73.824820 ], [ -125.156250, 74.402163 ], [ -121.640625, 74.590108 ] ] ], [ [ [ -100.546875, 74.019543 ], [ -97.734375, 73.824820 ], [ -97.734375, 73.627789 ], [ -98.437500, 73.022592 ], [ -97.031250, 72.607120 ], [ -97.031250, 71.746432 ], [ -98.437500, 71.300793 ], [ -102.656250, 72.607120 ], [ -102.656250, 73.022592 ], [ -100.546875, 72.816074 ], [ -101.953125, 73.428424 ], [ -100.546875, 74.019543 ] ] ], [ [ [ 117.421875, -7.710992 ], [ 118.828125, -8.407168 ], [ 116.718750, -8.407168 ], [ 117.421875, -7.710992 ] ] ], [ [ [ -163.828125, 66.791909 ], [ -167.343750, 68.399180 ], [ -166.640625, 68.911005 ], [ -163.828125, 69.411242 ], [ -162.421875, 70.377854 ], [ -156.796875, 71.524909 ], [ -155.390625, 71.300793 ], [ -154.687500, 70.844673 ], [ -152.578125, 70.844673 ], [ -151.171875, 70.612614 ], [ -144.140625, 70.377854 ], [ -141.328125, 69.900118 ], [ -137.109375, 68.911005 ], [ -135.000000, 69.657086 ], [ -133.593750, 69.657086 ], [ -130.078125, 70.377854 ], [ -129.375000, 69.900118 ], [ -128.671875, 70.612614 ], [ -125.859375, 69.657086 ], [ -124.453125, 70.377854 ], [ -124.453125, 69.411242 ], [ -121.640625, 69.900118 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.656555 ], [ -113.906250, 68.399180 ], [ -115.312500, 68.138852 ], [ -113.906250, 67.875541 ], [ -110.390625, 68.138852 ], [ -108.984375, 67.609221 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.656555 ], [ -106.171875, 68.911005 ], [ -104.765625, 68.138852 ], [ -101.953125, 67.875541 ], [ -99.140625, 67.875541 ], [ -97.734375, 68.656555 ], [ -96.328125, 68.399180 ], [ -96.328125, 67.339861 ], [ -94.921875, 69.162558 ], [ -97.031250, 70.140364 ], [ -95.625000, 71.965388 ], [ -93.515625, 71.524909 ], [ -92.109375, 70.377854 ], [ -92.812500, 69.900118 ], [ -90.703125, 69.657086 ], [ -90.703125, 68.656555 ], [ -89.296875, 69.411242 ], [ -87.890625, 67.339861 ], [ -85.781250, 69.900118 ], [ -82.968750, 69.900118 ], [ -81.562500, 69.162558 ], [ -81.562500, 67.339861 ], [ -83.671875, 66.513260 ], [ -85.781250, 66.791909 ], [ -86.484375, 65.946472 ], [ -87.890625, 65.072130 ], [ -93.515625, 62.267923 ], [ -94.921875, 59.175928 ], [ -93.515625, 58.813742 ], [ -92.812500, 57.326521 ], [ -91.406250, 57.326521 ], [ -85.078125, 55.379110 ], [ -82.968750, 55.379110 ], [ -82.265625, 53.330873 ], [ -80.156250, 51.618017 ], [ -78.750000, 52.908902 ], [ -80.156250, 54.977614 ], [ -76.640625, 56.559482 ], [ -78.750000, 58.813742 ], [ -77.343750, 59.888937 ], [ -78.750000, 62.593341 ], [ -74.531250, 62.593341 ], [ -71.718750, 61.270233 ], [ -69.609375, 61.270233 ], [ -69.609375, 59.175928 ], [ -68.203125, 58.447733 ], [ -64.687500, 60.586967 ], [ -61.875000, 57.326521 ], [ -61.875000, 56.559482 ], [ -57.656250, 54.977614 ], [ -56.250000, 52.482780 ], [ -60.468750, 50.289339 ], [ -66.796875, 50.289339 ], [ -71.718750, 47.040182 ], [ -69.609375, 47.517201 ], [ -65.390625, 49.382373 ], [ -64.687500, 48.922499 ], [ -65.390625, 48.458352 ], [ -64.687500, 46.558860 ], [ -61.875000, 46.073231 ], [ -61.171875, 47.040182 ], [ -60.468750, 46.073231 ], [ -61.171875, 45.583290 ], [ -66.796875, 44.087585 ], [ -66.796875, 44.590467 ], [ -64.687500, 45.583290 ], [ -67.500000, 45.583290 ], [ -67.500000, 45.089036 ], [ -70.312500, 44.087585 ], [ -71.015625, 42.553080 ], [ -70.312500, 42.032974 ], [ -73.828125, 40.979898 ], [ -74.531250, 40.979898 ], [ -75.234375, 39.368279 ], [ -75.937500, 39.909736 ], [ -76.640625, 37.718590 ], [ -75.937500, 36.031332 ], [ -81.562500, 31.952162 ], [ -80.156250, 27.059126 ], [ -80.859375, 25.165173 ], [ -84.375000, 30.145127 ], [ -86.484375, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.921875, 29.535230 ], [ -97.734375, 28.304381 ], [ -97.734375, 26.431228 ], [ -97.734375, 21.943046 ], [ -94.921875, 18.646245 ], [ -91.406250, 19.311143 ], [ -90.703125, 21.289374 ], [ -87.187500, 21.943046 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -89.296875, 15.961329 ], [ -88.593750, 15.961329 ], [ -85.078125, 16.636192 ], [ -83.671875, 15.284185 ], [ -85.078125, 15.284185 ], [ -87.890625, 13.239945 ], [ -88.593750, 13.923404 ], [ -90.703125, 13.923404 ], [ -92.812500, 14.604847 ], [ -94.218750, 15.961329 ], [ -97.031250, 15.961329 ], [ -105.468750, 19.973349 ], [ -106.171875, 23.241346 ], [ -112.500000, 29.535230 ], [ -113.203125, 31.353637 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.751278 ], [ -109.687500, 23.885838 ], [ -110.390625, 23.241346 ], [ -112.500000, 26.431228 ], [ -115.312500, 28.304381 ], [ -114.609375, 28.921631 ], [ -117.421875, 32.546813 ], [ -120.937500, 34.885931 ], [ -123.750000, 39.368279 ], [ -125.156250, 48.458352 ], [ -123.750000, 48.458352 ], [ -123.046875, 47.517201 ], [ -123.046875, 49.382373 ], [ -125.156250, 50.289339 ], [ -123.750000, 48.922499 ], [ -125.859375, 48.922499 ], [ -128.671875, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 52.482780 ], [ -130.781250, 54.572062 ], [ -130.781250, 54.977614 ], [ -134.296875, 58.447733 ], [ -137.109375, 58.447733 ], [ -142.734375, 60.239811 ], [ -147.656250, 60.930432 ], [ -148.359375, 60.930432 ], [ -148.359375, 60.239811 ], [ -151.875000, 59.175928 ], [ -151.171875, 61.606396 ], [ -154.687500, 59.534318 ], [ -153.984375, 59.175928 ], [ -154.687500, 58.447733 ], [ -158.906250, 56.170023 ], [ -165.234375, 54.572062 ], [ -158.906250, 57.326521 ], [ -157.500000, 59.175928 ], [ -159.609375, 58.447733 ], [ -161.015625, 59.175928 ], [ -162.421875, 58.813742 ], [ -163.125000, 60.239811 ], [ -163.828125, 59.888937 ], [ -165.937500, 60.586967 ], [ -165.937500, 62.267923 ], [ -165.234375, 63.233627 ], [ -161.015625, 63.860036 ], [ -161.718750, 64.472794 ], [ -161.015625, 65.072130 ], [ -165.234375, 64.472794 ], [ -168.750000, 65.946472 ], [ -164.531250, 66.791909 ], [ -163.828125, 66.791909 ] ], [ [ -163.828125, 66.791909 ], [ -163.828125, 66.231457 ], [ -161.718750, 66.231457 ], [ -163.828125, 66.791909 ] ], [ [ -101.250000, 29.535230 ], [ -99.140625, 26.431228 ], [ -98.437500, 26.431228 ], [ -101.250000, 29.535230 ] ], [ [ -76.640625, 37.718590 ], [ -76.640625, 39.368279 ], [ -77.343750, 38.272689 ], [ -76.640625, 37.718590 ] ] ], [ [ [ -35.156250, 83.676943 ], [ -27.421875, 83.520162 ], [ -21.093750, 82.765373 ], [ -23.203125, 82.402423 ], [ -32.343750, 82.214217 ], [ -31.640625, 82.118384 ], [ -28.125000, 82.214217 ], [ -25.312500, 81.823794 ], [ -23.203125, 82.118384 ], [ -22.500000, 81.823794 ], [ -23.203125, 81.201420 ], [ -16.171875, 81.923186 ], [ -13.359375, 81.723188 ], [ -12.656250, 81.308321 ], [ -16.875000, 80.415707 ], [ -20.390625, 80.178713 ], [ -18.281250, 80.178713 ], [ -20.390625, 78.767792 ], [ -19.687500, 77.767582 ], [ -18.984375, 76.999935 ], [ -21.796875, 76.679785 ], [ -20.390625, 76.184995 ], [ -19.687500, 75.320025 ], [ -21.093750, 75.320025 ], [ -19.687500, 74.402163 ], [ -21.796875, 74.402163 ], [ -21.093750, 73.627789 ], [ -23.906250, 73.428424 ], [ -22.500000, 72.395706 ], [ -24.609375, 72.607120 ], [ -25.312500, 72.395706 ], [ -22.500000, 71.524909 ], [ -21.796875, 70.844673 ], [ -23.906250, 70.612614 ], [ -26.015625, 71.524909 ], [ -25.312500, 70.844673 ], [ -26.718750, 70.377854 ], [ -22.500000, 70.140364 ], [ -28.125000, 68.656555 ], [ -32.343750, 68.138852 ], [ -36.562500, 66.231457 ], [ -40.078125, 65.658275 ], [ -41.484375, 63.548552 ], [ -42.890625, 62.915233 ], [ -43.593750, 60.239811 ], [ -45.000000, 60.239811 ], [ -49.921875, 61.606396 ], [ -54.140625, 66.231457 ], [ -54.140625, 67.339861 ], [ -53.437500, 68.399180 ], [ -52.031250, 68.911005 ], [ -51.328125, 70.140364 ], [ -54.140625, 69.411242 ], [ -54.843750, 69.657086 ], [ -54.843750, 70.844673 ], [ -52.031250, 70.612614 ], [ -54.140625, 71.746432 ], [ -56.250000, 71.746432 ], [ -54.843750, 72.607120 ], [ -59.062500, 75.672197 ], [ -61.875000, 76.184995 ], [ -68.906250, 76.184995 ], [ -71.718750, 77.157163 ], [ -66.796875, 77.466028 ], [ -71.718750, 77.767582 ], [ -73.828125, 78.061989 ], [ -73.828125, 78.490552 ], [ -66.093750, 79.432371 ], [ -65.390625, 79.812302 ], [ -68.203125, 80.178713 ], [ -67.500000, 80.532071 ], [ -62.578125, 81.413933 ], [ -63.281250, 81.823794 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -53.437500, 81.923186 ], [ -50.625000, 82.494824 ], [ -45.000000, 81.723188 ], [ -47.109375, 82.214217 ], [ -47.109375, 82.676285 ], [ -43.593750, 83.277705 ], [ -40.078125, 83.194896 ], [ -38.671875, 83.599031 ], [ -35.156250, 83.676943 ] ] ], [ [ [ 49.218750, -11.867351 ], [ 49.921875, -15.284185 ], [ 46.406250, -24.527135 ], [ 45.000000, -25.165173 ], [ 43.593750, -24.527135 ], [ 42.890625, -22.593726 ], [ 44.296875, -19.311143 ], [ 43.593750, -17.308688 ], [ 49.218750, -11.867351 ] ] ], [ [ [ -62.578125, 10.487812 ], [ -59.765625, 8.407168 ], [ -57.656250, 6.315299 ], [ -54.140625, 6.315299 ], [ -52.031250, 4.915833 ], [ -52.734375, 3.513421 ], [ -51.328125, 4.214943 ], [ -50.625000, 2.108899 ], [ -50.625000, 0.000000 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -40.078125, -2.811371 ], [ -35.859375, -4.915833 ], [ -35.156250, -7.013668 ], [ -39.375000, -12.554564 ], [ -41.484375, -21.289374 ], [ -47.812500, -24.527135 ], [ -49.218750, -28.304381 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -54.140625, -31.952162 ], [ -54.140625, -34.307144 ], [ -56.250000, -34.307144 ], [ -59.062500, -33.724340 ], [ -59.062500, -34.307144 ], [ -56.953125, -36.031332 ], [ -58.359375, -37.718590 ], [ -62.578125, -38.822591 ], [ -62.578125, -40.446947 ], [ -65.390625, -40.979898 ], [ -65.390625, -42.032974 ], [ -63.984375, -42.553080 ], [ -65.390625, -43.068888 ], [ -66.093750, -44.590467 ], [ -67.500000, -45.089036 ], [ -68.203125, -46.073231 ], [ -66.093750, -47.040182 ], [ -69.609375, -50.289339 ], [ -68.203125, -52.052490 ], [ -68.906250, -52.052490 ], [ -71.015625, -52.482780 ], [ -71.718750, -53.748711 ], [ -75.234375, -52.052490 ], [ -75.937500, -48.458352 ], [ -74.531250, -46.558860 ], [ -75.937500, -46.558860 ], [ -74.531250, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.125000, -42.032974 ], [ -74.531250, -43.068888 ], [ -73.828125, -36.597889 ], [ -71.718750, -31.952162 ], [ -69.609375, -17.308688 ], [ -71.015625, -17.978733 ], [ -76.640625, -14.604847 ], [ -80.156250, -7.013668 ], [ -81.562500, -5.615986 ], [ -81.562500, -3.513421 ], [ -80.859375, -2.811371 ], [ -80.156250, -2.108899 ], [ -81.562500, -2.108899 ], [ -81.562500, -0.703107 ], [ -80.156250, 1.406109 ], [ -79.453125, 1.406109 ], [ -75.937500, 0.000000 ], [ -79.453125, 2.108899 ], [ -77.343750, 4.214943 ], [ -78.046875, 7.710992 ], [ -75.234375, 11.178402 ], [ -71.718750, 12.554564 ], [ -71.718750, 11.867351 ], [ -71.718750, 9.102097 ], [ -70.312500, 12.554564 ], [ -68.203125, 11.178402 ], [ -62.578125, 11.178402 ], [ -61.875000, 11.178402 ], [ -61.171875, 10.487812 ], [ -62.578125, 10.487812 ] ], [ [ -70.312500, -33.724340 ], [ -70.312500, -29.535230 ], [ -71.015625, -31.353637 ], [ -70.312500, -33.724340 ] ], [ [ -69.609375, -10.487812 ], [ -71.015625, -10.487812 ], [ -68.906250, -12.554564 ], [ -69.609375, -10.487812 ] ], [ [ -61.171875, 5.615986 ], [ -65.390625, 4.214943 ], [ -63.281250, 4.214943 ], [ -61.171875, 5.615986 ] ], [ [ -57.656250, 6.315299 ], [ -58.359375, 4.214943 ], [ -57.656250, 3.513421 ], [ -57.656250, 6.315299 ] ], [ [ -54.843750, -24.527135 ], [ -54.843750, -25.799891 ], [ -54.140625, -25.799891 ], [ -54.140625, -25.165173 ], [ -54.843750, -24.527135 ] ], [ [ -57.656250, 2.108899 ], [ -59.062500, 2.108899 ], [ -59.062500, 1.406109 ], [ -57.656250, 2.108899 ] ], [ [ -68.203125, 3.513421 ], [ -68.203125, 2.108899 ], [ -67.500000, 2.108899 ], [ -68.203125, 3.513421 ] ], [ [ -75.937500, 0.000000 ], [ -75.937500, -0.703107 ], [ -75.234375, 0.000000 ], [ -75.937500, 0.000000 ] ], [ [ -67.500000, 2.108899 ], [ -67.500000, 1.406109 ], [ -66.796875, 1.406109 ], [ -67.500000, 2.108899 ] ] ], [ [ [ 177.890625, -17.308688 ], [ 177.890625, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.308688 ], [ 177.890625, -17.308688 ] ] ], [ [ [ -182.109375, -17.308688 ], [ -182.109375, -17.978733 ], [ -182.812500, -17.978733 ], [ -182.812500, -17.308688 ], [ -182.109375, -17.308688 ] ] ], [ [ [ -73.125000, 83.277705 ], [ -68.906250, 83.111071 ], [ -63.984375, 82.940327 ], [ -61.875000, 82.676285 ], [ -62.578125, 82.402423 ], [ -68.203125, 81.518272 ], [ -66.093750, 81.518272 ], [ -69.609375, 80.647035 ], [ -71.718750, 79.812302 ], [ -74.531250, 79.432371 ], [ -77.343750, 79.432371 ], [ -75.937500, 79.302640 ], [ -76.640625, 79.038437 ], [ -75.937500, 78.630006 ], [ -80.156250, 77.312520 ], [ -80.156250, 76.999935 ], [ -78.046875, 77.157163 ], [ -78.046875, 76.840816 ], [ -80.859375, 76.184995 ], [ -83.671875, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.999935 ], [ -87.890625, 77.312520 ], [ -88.593750, 77.915669 ], [ -85.078125, 77.617709 ], [ -86.484375, 78.206563 ], [ -88.593750, 78.490552 ], [ -85.781250, 79.432371 ], [ -87.187500, 80.297927 ], [ -83.671875, 80.178713 ], [ -82.265625, 80.532071 ], [ -87.890625, 80.532071 ], [ -90.000000, 80.872827 ], [ -92.109375, 81.923186 ], [ -87.187500, 82.308893 ], [ -85.781250, 82.676285 ], [ -83.671875, 82.402423 ], [ -82.968750, 82.940327 ], [ -79.453125, 83.194896 ], [ -76.640625, 83.194896 ], [ -75.937500, 83.111071 ], [ -73.125000, 83.277705 ] ] ], [ [ [ -82.968750, 73.824820 ], [ -80.859375, 72.816074 ], [ -80.859375, 72.181804 ], [ -78.046875, 72.816074 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -72.421875, 71.746432 ], [ -68.203125, 70.140364 ], [ -67.500000, 69.411242 ], [ -68.906250, 68.911005 ], [ -65.390625, 67.875541 ], [ -63.984375, 67.067433 ], [ -61.875000, 67.067433 ], [ -63.984375, 65.072130 ], [ -66.796875, 66.513260 ], [ -68.203125, 66.513260 ], [ -68.203125, 65.946472 ], [ -64.687500, 63.548552 ], [ -65.390625, 62.915233 ], [ -68.906250, 63.860036 ], [ -66.796875, 61.938950 ], [ -71.718750, 62.915233 ], [ -75.234375, 64.774125 ], [ -78.046875, 64.472794 ], [ -78.750000, 64.774125 ], [ -78.046875, 65.366837 ], [ -74.531250, 65.658275 ], [ -73.125000, 67.875541 ], [ -75.937500, 68.399180 ], [ -77.343750, 68.911005 ], [ -76.640625, 69.162558 ], [ -79.453125, 70.377854 ], [ -81.562500, 69.900118 ], [ -82.968750, 69.900118 ], [ -89.296875, 70.612614 ], [ -90.000000, 70.844673 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.703125, 72.395706 ], [ -88.593750, 73.627789 ], [ -86.484375, 73.824820 ], [ -87.187500, 73.226700 ], [ -85.781250, 72.607120 ], [ -85.078125, 73.428424 ], [ -82.968750, 73.824820 ] ] ], [ [ [ -175.078125, 67.067433 ], [ -172.265625, 67.067433 ], [ -170.156250, 66.231457 ], [ -172.968750, 65.658275 ], [ -172.968750, 64.472794 ], [ -176.484375, 65.366837 ], [ -178.593750, 65.658275 ], [ -179.296875, 66.231457 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.072130 ], [ -182.812500, 64.774125 ], [ -181.406250, 62.593341 ], [ -182.812500, 62.593341 ], [ -187.031250, 61.606396 ], [ -187.031250, 69.900118 ], [ -184.921875, 69.900118 ], [ -180.000000, 69.162558 ], [ -175.078125, 67.339861 ], [ -175.078125, 67.067433 ] ] ], [ [ [ -92.812500, 81.308321 ], [ -91.406250, 80.760615 ], [ -87.890625, 80.415707 ], [ -87.187500, 79.687184 ], [ -86.484375, 79.432371 ], [ -88.593750, 78.490552 ], [ -89.296875, 78.349411 ], [ -93.515625, 78.349411 ], [ -94.218750, 78.767792 ], [ -93.515625, 79.432371 ], [ -95.625000, 79.432371 ], [ -97.031250, 80.178713 ], [ -95.625000, 80.983688 ], [ -94.921875, 80.983688 ], [ -94.921875, 81.308321 ], [ -92.812500, 81.308321 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 17.578125, 79.812302 ], [ 21.093750, 79.038437 ], [ 18.984375, 78.630006 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 13.359375, 77.466028 ], [ 14.062500, 77.767582 ], [ 10.546875, 78.903929 ], [ 9.843750, 79.687184 ], [ 12.656250, 80.058050 ], [ 13.359375, 79.687184 ], [ 14.765625, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ -97.031250, 77.312520 ], [ -94.921875, 77.157163 ], [ -94.218750, 76.840816 ], [ -92.109375, 76.840816 ], [ -91.406250, 76.184995 ], [ -89.296875, 75.672197 ], [ -81.562500, 75.845169 ], [ -80.156250, 75.497157 ], [ -80.859375, 74.775843 ], [ -88.593750, 74.402163 ], [ -92.812500, 74.959392 ], [ -94.218750, 76.351896 ], [ -97.734375, 76.840816 ], [ -97.031250, 77.312520 ] ] ], [ [ [ 95.625000, 81.308321 ], [ 99.843750, 79.812302 ], [ 99.843750, 78.903929 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.171335 ], [ 90.703125, 80.415707 ], [ 93.515625, 81.093214 ], [ 95.625000, 81.308321 ] ] ], [ [ [ 140.625000, -9.102097 ], [ 137.109375, -8.407168 ], [ 138.515625, -7.013668 ], [ 137.812500, -4.915833 ], [ 133.593750, -3.513421 ], [ 132.890625, -3.513421 ], [ 131.484375, -2.811371 ], [ 133.593750, -2.108899 ], [ 130.078125, -0.703107 ], [ 133.593750, -0.703107 ], [ 135.000000, -2.811371 ], [ 137.109375, -1.406109 ], [ 140.625000, -2.108899 ], [ 146.953125, -5.615986 ], [ 146.953125, -7.013668 ], [ 150.468750, -10.487812 ], [ 147.656250, -9.795678 ], [ 144.140625, -7.013668 ], [ 142.031250, -9.102097 ], [ 140.625000, -9.102097 ] ] ], [ [ [ 115.312500, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.828125, 5.615986 ], [ 118.125000, 4.915833 ], [ 115.312500, 4.915833 ], [ 117.421875, 4.214943 ], [ 117.421875, 2.108899 ], [ 118.828125, 1.406109 ], [ 117.421875, 1.406109 ], [ 116.015625, -3.513421 ], [ 109.687500, -2.811371 ], [ 108.984375, 0.000000 ], [ 108.984375, 2.108899 ], [ 109.687500, 1.406109 ], [ 110.390625, 1.406109 ], [ 113.906250, 4.915833 ], [ 115.312500, 5.615986 ] ] ], [ [ [ -5.625000, 55.379110 ], [ -5.625000, 56.170023 ], [ -6.328125, 56.944974 ], [ -5.625000, 58.813742 ], [ -3.515625, 58.813742 ], [ -4.218750, 57.704147 ], [ -2.109375, 57.704147 ], [ -3.515625, 56.170023 ], [ -2.109375, 56.170023 ], [ 0.000000, 53.330873 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ -5.625000, 50.289339 ], [ -3.515625, 51.618017 ], [ -5.625000, 52.052490 ], [ -4.921875, 52.482780 ], [ -4.921875, 53.748711 ], [ -3.515625, 53.748711 ], [ -3.515625, 54.162434 ], [ -4.921875, 54.977614 ], [ -5.625000, 55.379110 ] ] ], [ [ [ -109.687500, 76.840816 ], [ -108.281250, 76.351896 ], [ -108.281250, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.875000, 75.140778 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -111.796875, 75.320025 ], [ -118.125000, 75.320025 ], [ -116.015625, 76.516819 ], [ -113.203125, 76.184995 ], [ -111.093750, 75.672197 ], [ -109.687500, 75.497157 ], [ -111.093750, 76.516819 ], [ -109.687500, 76.840816 ] ] ], [ [ [ 127.265625, -7.710992 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.407168 ], [ 127.265625, -7.710992 ] ] ], [ [ [ 122.343750, -7.710992 ], [ 119.531250, -8.407168 ], [ 120.234375, -7.710992 ], [ 122.343750, -7.710992 ] ] ], [ [ [ -78.046875, 25.799891 ], [ -78.046875, 23.885838 ], [ -78.750000, 25.799891 ], [ -78.046875, 25.799891 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 108.281250, -6.315299 ], [ 110.390625, -6.315299 ], [ 115.312500, -7.710992 ], [ 104.765625, -6.315299 ], [ 105.468750, -5.615986 ] ] ], [ [ [ -16.171875, 66.791909 ], [ -14.765625, 66.513260 ], [ -14.062500, 65.366837 ], [ -18.984375, 63.548552 ], [ -23.203125, 64.168107 ], [ -21.796875, 64.472794 ], [ -24.609375, 65.072130 ], [ -22.500000, 65.366837 ], [ -24.609375, 65.658275 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -21.093750, 65.946472 ], [ -19.687500, 66.513260 ], [ -18.281250, 66.231457 ], [ -16.171875, 66.791909 ] ] ], [ [ [ 151.875000, -2.811371 ], [ 152.578125, -4.214943 ], [ 151.875000, -4.214943 ], [ 151.875000, -4.915833 ], [ 149.765625, -6.315299 ], [ 147.656250, -5.615986 ], [ 150.468750, -4.915833 ], [ 151.171875, -3.513421 ], [ 151.875000, -2.811371 ] ] ], [ [ [ 97.031250, 5.615986 ], [ 101.250000, 2.811371 ], [ 103.359375, 0.703107 ], [ 103.359375, -0.703107 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 101.953125, -4.214943 ], [ 94.921875, 5.615986 ], [ 97.031250, 5.615986 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 120.234375, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.108899 ], [ 120.234375, -4.915833 ], [ 118.828125, -4.915833 ], [ 118.125000, -2.108899 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 22.500000, 80.760615 ], [ 25.312500, 80.415707 ], [ 26.718750, 80.058050 ], [ 25.312500, 79.560546 ], [ 22.500000, 79.432371 ], [ 19.687500, 79.687184 ], [ 16.875000, 80.415707 ], [ 20.390625, 80.647035 ], [ 21.796875, 80.415707 ], [ 22.500000, 80.760615 ] ] ], [ [ [ 141.328125, 76.184995 ], [ 144.843750, 75.672197 ], [ 144.140625, 74.959392 ], [ 138.515625, 74.775843 ], [ 136.406250, 75.320025 ], [ 137.109375, 76.016094 ], [ 138.515625, 76.184995 ], [ 141.328125, 76.184995 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 36.031332 ], [ 136.406250, 37.718590 ], [ 137.109375, 37.160317 ], [ 139.218750, 38.272689 ], [ 139.218750, 40.979898 ], [ 141.328125, 41.508577 ], [ 141.328125, 39.368279 ], [ 140.625000, 37.160317 ], [ 139.921875, 35.460670 ], [ 135.703125, 33.724340 ], [ 135.000000, 34.885931 ], [ 132.890625, 34.307144 ], [ 130.781250, 34.307144 ] ] ], [ [ [ -116.718750, 77.767582 ], [ -117.421875, 76.679785 ], [ -121.640625, 76.016094 ], [ -123.046875, 76.184995 ], [ -119.531250, 77.617709 ], [ -116.718750, 77.767582 ] ] ], [ [ [ 130.078125, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.265625, -2.811371 ], [ 130.078125, -2.811371 ] ] ], [ [ [ -85.781250, 11.178402 ], [ -86.484375, 11.178402 ], [ -87.890625, 13.239945 ], [ -83.671875, 15.284185 ], [ -83.671875, 11.178402 ], [ -82.968750, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.046875, 7.710992 ], [ -79.453125, 9.102097 ], [ -80.859375, 7.710992 ], [ -82.968750, 8.407168 ], [ -85.781250, 11.178402 ] ] ], [ [ [ -94.921875, 74.211983 ], [ -90.703125, 74.019543 ], [ -94.921875, 72.181804 ], [ -95.625000, 72.181804 ], [ -96.328125, 73.627789 ], [ -94.921875, 74.211983 ] ] ], [ [ [ 127.265625, 2.811371 ], [ 128.671875, 1.406109 ], [ 127.968750, -0.703107 ], [ 127.265625, 2.811371 ] ] ], [ [ [ -99.140625, 76.840816 ], [ -98.437500, 75.140778 ], [ -99.843750, 74.959392 ], [ -101.250000, 75.140778 ], [ -101.250000, 75.672197 ], [ -102.656250, 75.672197 ], [ -102.656250, 76.351896 ], [ -99.140625, 76.840816 ] ] ], [ [ [ 101.953125, 79.432371 ], [ 104.765625, 78.767792 ], [ 104.765625, 78.349411 ], [ 99.140625, 78.061989 ], [ 101.953125, 79.432371 ] ] ], [ [ [ -86.484375, 65.946472 ], [ -85.781250, 65.658275 ], [ -80.156250, 63.860036 ], [ -81.562500, 63.548552 ], [ -83.671875, 64.168107 ], [ -85.781250, 63.233627 ], [ -86.484375, 63.860036 ], [ -87.890625, 63.548552 ], [ -86.484375, 65.946472 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -56.953125, 49.837982 ], [ -54.140625, 49.382373 ], [ -53.437500, 47.040182 ], [ -54.843750, 47.040182 ], [ -54.843750, 47.989922 ], [ -55.546875, 47.040182 ], [ -56.953125, 47.989922 ], [ -59.765625, 47.989922 ], [ -57.656250, 50.736455 ], [ -55.546875, 51.618017 ] ] ], [ [ [ -106.171875, 79.302640 ], [ -101.250000, 78.903929 ], [ -100.546875, 78.349411 ], [ -99.843750, 77.915669 ], [ -105.468750, 78.490552 ], [ -104.765625, 78.767792 ], [ -106.171875, 79.302640 ] ] ], [ [ [ -7.734375, 55.379110 ], [ -7.031250, 55.379110 ], [ -6.328125, 54.572062 ], [ -6.328125, 54.162434 ], [ -7.031250, 52.482780 ], [ -10.546875, 52.052490 ], [ -9.843750, 54.162434 ], [ -7.734375, 55.379110 ] ] ], [ [ [ 141.328125, 45.583290 ], [ 143.437500, 44.590467 ], [ 144.843750, 44.590467 ], [ 144.843750, 43.580391 ], [ 142.734375, 42.032974 ], [ 141.328125, 43.068888 ], [ 140.625000, 42.032974 ], [ 139.921875, 42.032974 ], [ 141.328125, 45.583290 ] ] ], [ [ [ 123.046875, 8.407168 ], [ 125.156250, 9.795678 ], [ 125.859375, 9.102097 ], [ 125.156250, 5.615986 ], [ 123.046875, 8.407168 ] ] ], [ [ [ 49.921875, 80.983688 ], [ 51.328125, 80.760615 ], [ 47.109375, 80.058050 ], [ 46.406250, 80.297927 ], [ 46.406250, 80.647035 ], [ 44.296875, 80.647035 ], [ 47.812500, 80.872827 ], [ 48.515625, 80.532071 ], [ 49.921875, 80.983688 ] ] ], [ [ [ 123.750000, 13.239945 ], [ 125.156250, 12.554564 ], [ 124.453125, 10.487812 ], [ 123.750000, 11.867351 ], [ 123.750000, 12.554564 ], [ 120.937500, 13.923404 ], [ 119.531250, 15.284185 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 122.343750, 17.308688 ], [ 121.640625, 14.604847 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 141.328125, 53.330873 ], [ 142.031250, 54.572062 ], [ 144.140625, 49.382373 ], [ 142.734375, 49.382373 ], [ 142.031250, 47.989922 ] ] ], [ [ [ 79.453125, 10.487812 ], [ 80.156250, 9.795678 ], [ 81.562500, 7.710992 ], [ 80.156250, 6.315299 ], [ 79.453125, 10.487812 ] ] ], [ [ [ 22.500000, 78.490552 ], [ 24.609375, 77.915669 ], [ 21.796875, 77.466028 ], [ 20.390625, 77.767582 ], [ 20.390625, 78.349411 ], [ 22.500000, 78.490552 ] ] ], [ [ [ -78.750000, 73.824820 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.022592 ], [ -78.046875, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.859375, 73.824820 ], [ -78.750000, 73.824820 ] ] ], [ [ [ -99.140625, 78.903929 ], [ -97.031250, 78.767792 ], [ -95.625000, 78.490552 ], [ -96.328125, 78.061989 ], [ -97.031250, 77.915669 ], [ -97.734375, 77.915669 ], [ -98.437500, 78.206563 ], [ -99.140625, 78.903929 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 150.468750, 75.140778 ], [ 149.062500, 74.775843 ], [ 147.656250, 74.959392 ], [ 145.546875, 75.320025 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ -111.796875, 78.206563 ], [ -110.390625, 78.061989 ], [ -110.390625, 77.767582 ], [ -112.500000, 77.466028 ], [ -113.906250, 77.767582 ], [ -111.796875, 78.206563 ] ] ], [ [ [ -81.562500, 23.241346 ], [ -78.750000, 22.593726 ], [ -74.531250, 20.632784 ], [ -78.046875, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.750000, 21.943046 ], [ -81.562500, 23.241346 ] ] ], [ [ [ -105.468750, 73.824820 ], [ -104.765625, 73.428424 ], [ -105.468750, 72.816074 ], [ -106.875000, 73.226700 ], [ -107.578125, 73.627789 ], [ -105.468750, 73.824820 ] ] ], [ [ [ 118.828125, 11.867351 ], [ 119.531250, 11.178402 ], [ 116.718750, 8.407168 ], [ 118.828125, 11.867351 ] ] ], [ [ [ 142.031250, 74.019543 ], [ 143.437500, 73.226700 ], [ 139.218750, 73.428424 ], [ 142.031250, 74.019543 ] ] ], [ [ [ -71.718750, 19.973349 ], [ -68.906250, 18.646245 ], [ -71.718750, 17.978733 ], [ -71.718750, 18.646245 ], [ -74.531250, 18.646245 ], [ -72.421875, 19.311143 ], [ -73.828125, 19.973349 ], [ -71.718750, 19.973349 ] ] ], [ [ [ 122.343750, 9.795678 ], [ 123.750000, 11.867351 ], [ 123.750000, 10.487812 ], [ 122.343750, 9.795678 ] ] ], [ [ [ -180.000000, 71.524909 ], [ -180.000000, 71.746432 ], [ -177.890625, 71.300793 ], [ -179.296875, 71.074056 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.300793 ], [ -180.000000, 71.524909 ] ] ], [ [ [ -94.921875, 75.672197 ], [ -94.218750, 75.140778 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.959392 ], [ -94.921875, 75.672197 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 182.109375, 71.300793 ], [ 180.703125, 71.074056 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.300793 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 131.484375, 33.724340 ], [ 130.781250, 31.952162 ], [ 130.078125, 31.952162 ], [ 129.375000, 33.724340 ], [ 130.781250, 34.307144 ] ] ], [ [ [ 134.296875, 34.307144 ], [ 133.593750, 33.724340 ], [ 132.187500, 33.137551 ], [ 132.890625, 34.307144 ], [ 134.296875, 34.307144 ] ] ], [ [ [ 120.937500, 25.799891 ], [ 121.640625, 24.527135 ], [ 120.234375, 22.593726 ], [ 119.531250, 23.885838 ], [ 120.937500, 25.799891 ] ] ], [ [ [ -75.937500, 68.399180 ], [ -75.234375, 68.138852 ], [ -75.937500, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.609221 ], [ -75.937500, 68.399180 ] ] ], [ [ [ -133.593750, 54.572062 ], [ -132.187500, 54.162434 ], [ -131.484375, 52.482780 ], [ -133.593750, 53.748711 ], [ -133.593750, 54.572062 ] ] ], [ [ [ -111.796875, 78.903929 ], [ -109.687500, 78.630006 ], [ -113.203125, 78.490552 ], [ -111.796875, 78.903929 ] ] ], [ [ [ 120.937500, 13.923404 ], [ 120.937500, 12.554564 ], [ 120.234375, 13.923404 ], [ 120.937500, 13.923404 ] ] ], [ [ [ -94.921875, 77.915669 ], [ -94.218750, 77.617709 ], [ -96.328125, 77.617709 ], [ -97.031250, 77.915669 ], [ -94.921875, 77.915669 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 125.156250, 2.108899 ], [ 123.046875, 0.703107 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 110.390625, 20.632784 ], [ 109.687500, 19.311143 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.973349 ], [ 110.390625, 20.632784 ] ] ], [ [ [ -152.578125, 58.077876 ], [ -153.281250, 57.326521 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.704147 ], [ -152.578125, 58.077876 ] ] ], [ [ [ 120.937500, -2.108899 ], [ 123.046875, -4.915833 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.108899 ] ] ], [ [ [ -61.171875, 49.837982 ], [ -61.171875, 48.922499 ], [ -62.578125, 48.922499 ], [ -62.578125, 49.837982 ], [ -61.171875, 49.837982 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 142.734375, 47.040182 ], [ 142.031250, 46.073231 ], [ 142.031250, 47.989922 ] ] ], [ [ [ -165.937500, 60.586967 ], [ -165.937500, 60.239811 ], [ -168.046875, 60.239811 ], [ -165.937500, 60.586967 ] ] ], [ [ [ -66.093750, 18.646245 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ], [ [ [ -156.093750, 20.632784 ], [ -155.390625, 19.973349 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json index af24d9528..2788f06c3 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json.check.mbtiles -z5 -M5000 --coalesce-fraction-as-needed tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"formal_fr\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_alt\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_adm0\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 61,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afg.\",\"Alb.\",\"Alg.\",\"Ang.\",\"Ant.\",\"Arg.\",\"Arm.\",\"Aust.\",\"Auz.\",\"Aze.\",\"B.F.\",\"B.H.\",\"Bang.\",\"Bela.\",\"Belg.\",\"Belize\",\"Benin\",\"Bhs.\",\"Bhutan\",\"Bolivia\",\"Brazil\",\"Brunei\",\"Bulg.\",\"Bur.\",\"Bwa.\",\"C.A.R.\",\"C.R.\",\"Cam.\",\"Camb.\",\"Can.\",\"Chad\",\"Chile\",\"China\",\"Col.\",\"Cro.\",\"Cuba\",\"Cyp.\",\"Cz. Rep.\",\"D.R.C.\",\"Den.\",\"Dji.\",\"Dom. Rep.\",\"Ecu.\",\"Egypt\",\"El. S.\",\"Eq. G.\",\"Erit.\",\"Est.\",\"Eth.\",\"Fiji\",\"Fin.\",\"Flk. Is.\",\"Fr.\",\"Fr. S.A.L.\",\"Gabon\",\"Gambia\",\"Geo.\",\"Ger.\",\"Ghana\",\"Gin.\",\"GnB.\",\"Greece\",\"Grlnd.\",\"Guat.\",\"Guy.\",\"Haiti\",\"Hond.\",\"Hun.\",\"I.C.\",\"Iceland\",\"India\",\"Indo.\",\"Iran\",\"Iraq\",\"Ire.\",\"Isr.\",\"Italy\",\"Jam.\",\"Japan\",\"Jord.\",\"Kaz.\",\"Ken.\",\"Kgz.\",\"Kos.\",\"Kwt.\",\"Laos\",\"Lat.\",\"Leb.\",\"Les.\",\"Liberia\",\"Libya\",\"Lith.\",\"Lux.\",\"Mad.\",\"Mal.\",\"Malay.\",\"Mali\",\"Mda.\",\"Mex.\",\"Mkd.\"]},{\"attribute\": \"abbrev_len\",\"count\": 8,\"type\": \"number\",\"values\": [10,3,4,5,6,7,8,9],\"min\": 3,\"max\": 10},{\"attribute\": \"adm0_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 173,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 175,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"brk_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"B12\",\"B20\",\"B28\",\"B30\",\"B57\",\"B77\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. and Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\"]},{\"attribute\": \"continent\",\"count\": 8,\"type\": \"string\",\"values\": [\"Africa\",\"Antarctica\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"Seven seas (open ocean)\",\"South America\"]},{\"attribute\": \"economy\",\"count\": 7,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"2. Developed region: nonG7\",\"3. Emerging region: BRIC\",\"4. Emerging region: MIKT\",\"5. Emerging region: G20\",\"6. Developing region\",\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 174,\"type\": \"string\",\"values\": [\"Arab Republic of Egypt\",\"Argentine Republic\",\"Belize\",\"Bolivarian Republic of Venezuela\",\"Bosnia and Herzegovina\",\"Burkina Faso\",\"Canada\",\"Central African Republic\",\"Co-operative Republic of Guyana\",\"Commonwealth of Australia\",\"Commonwealth of Puerto Rico\",\"Commonwealth of the Bahamas\",\"Czech Republic\",\"Democratic People's Republic of Korea\",\"Democratic Republic of Timor-Leste\",\"Democratic Republic of the Congo\",\"Democratic Socialist Republic of Sri Lanka\",\"Dominican Republic\",\"Falkland Islands\",\"Federal Democratic Republic of Ethiopia\",\"Federal Republic of Germany\",\"Federal Republic of Nigeria\",\"Federal Republic of Somalia\",\"Federative Republic of Brazil\",\"Former Yugoslav Republic of Macedonia\",\"French Republic\",\"Gabonese Republic\",\"Georgia\",\"Grand Duchy of Luxembourg\",\"Greenland\",\"Hashemite Kingdom of Jordan\",\"Hellenic Republic\",\"Independent State of Papua New Guinea\",\"Ireland\",\"Islamic Republic of Iran\",\"Islamic Republic of Mauritania\",\"Islamic Republic of Pakistan\",\"Islamic State of Afghanistan\",\"Italian Republic\",\"Jamaica\",\"Japan\",\"Kingdom of Belgium\",\"Kingdom of Bhutan\",\"Kingdom of Cambodia\",\"Kingdom of Denmark\",\"Kingdom of Lesotho\",\"Kingdom of Morocco\",\"Kingdom of Norway\",\"Kingdom of Saudi Arabia\",\"Kingdom of Spain\",\"Kingdom of Swaziland\",\"Kingdom of Sweden\",\"Kingdom of Thailand\",\"Kingdom of the Netherlands\",\"Kyrgyz Republic\",\"Lao People's Democratic Republic\",\"Lebanese Republic\",\"Libya\",\"Malaysia\",\"Mongolia\",\"Montenegro\",\"Negara Brunei Darussalam\",\"Nepal\",\"New Caledonia\",\"New Zealand\",\"Oriental Republic of Uruguay\",\"People's Democratic Republic of Algeria\",\"People's Republic of Angola\",\"People's Republic of Bangladesh\",\"People's Republic of China\",\"Plurinational State of Bolivia\",\"Portuguese Republic\",\"Republic of Albania\",\"Republic of Armenia\",\"Republic of Austria\",\"Republic of Azerbaijan\",\"Republic of Belarus\",\"Republic of Benin\",\"Republic of Botswana\",\"Republic of Bulgaria\",\"Republic of Burundi\",\"Republic of Cameroon\",\"Republic of Chad\",\"Republic of Chile\",\"Republic of Colombia\",\"Republic of Congo\",\"Republic of Costa Rica\",\"Republic of Croatia\",\"Republic of Cuba\",\"Republic of Cyprus\",\"Republic of Djibouti\",\"Republic of Ecuador\",\"Republic of El Salvador\",\"Republic of Equatorial Guinea\",\"Republic of Estonia\",\"Republic of Fiji\",\"Republic of Finland\",\"Republic of Ghana\",\"Republic of Guatemala\",\"Republic of Guinea\"]},{\"attribute\": \"formal_fr\",\"count\": 4,\"type\": \"string\",\"values\": [\"Nouvelle-Calédonie\",\"Republic of Cote D'Ivoire\",\"República Bolivariana de Venezuela\",\"République Togolaise\"]},{\"attribute\": \"gdp_md_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10040,103900,105.1,10600,10670,107700,1078,108200,1100,110300,114100,11500,11610,116700,11810,11950.77,119500,12250,12710,12830,1300000,13160,13210,13227,13250,1335000,136600,13980,1403000,14060,14590,149100,15094000,1526,15350,1563000,15860,16,16790,17500,175800,17820,1823000,184300,18770,18780,188400,1885,18940,193500,196600,1977704,1993000,20130,201400,20250,203600,20640,208627,20910,21110,2128000,21510,21810,21980,22270,224000,2266000,22700,2272,232900,241700,244500,247300,2520,2536,265200,27060,271400,27410,276400,27940,28890,29010,2918000,2966,29700,29780,3102,31080,3158,31610,316700,317500,3198,3293,329500,3297000,335400],\"min\": -99,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 3,\"type\": \"number\",\"values\": [-99,0,2009],\"min\": -99,\"max\": 2009},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"gu_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"homepart\",\"count\": 2,\"type\": \"number\",\"values\": [-99,1],\"min\": -99,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 5,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\",\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AQ\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FK\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\"]},{\"attribute\": \"iso_a3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESH\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"iso_n3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"004\",\"008\",\"010\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"158\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"260\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\"]},{\"attribute\": \"labelrank\",\"count\": 6,\"type\": \"number\",\"values\": [2,3,4,5,6,7],\"min\": 2,\"max\": 7},{\"attribute\": \"lastcensus\",\"count\": 27,\"type\": \"number\",\"values\": [-99,1970,1979,1981,1983,1984,1987,1989,1991,1993,1995,1996,1997,1998,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012],\"min\": -99,\"max\": 2012},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 21,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,20,22,24,32,35,4,5,6,7,8,9],\"min\": 4,\"max\": 35},{\"attribute\": \"mapcolor13\",\"count\": 14,\"type\": \"number\",\"values\": [-99,1,10,11,12,13,2,3,4,5,6,7,8,9],\"min\": -99,\"max\": 13},{\"attribute\": \"mapcolor7\",\"count\": 7,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7],\"min\": 1,\"max\": 7},{\"attribute\": \"mapcolor8\",\"count\": 8,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8],\"min\": 1,\"max\": 8},{\"attribute\": \"mapcolor9\",\"count\": 9,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 9},{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]},{\"attribute\": \"name_alt\",\"count\": 2,\"type\": \"string\",\"values\": [\"East Timor\",\"Islas Malvinas\"]},{\"attribute\": \"name_len\",\"count\": 16,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,19,20,22,4,5,6,7,8,9],\"min\": 4,\"max\": 22},{\"attribute\": \"name_long\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"name_sort\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo, Dem. Rep.\",\"Congo, Rep.\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Cyprus, Northern\",\"Czech Republic\",\"Côte d'Ivoire\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt, Arab Rep.\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran, Islamic Rep.\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea, Dem. Rep.\",\"Korea, Rep.\",\"Kosovo\",\"Kuwait\",\"Kyrgyz Republic\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia, FYR\",\"Madagascar\",\"Malawi\"]},{\"attribute\": \"note_adm0\",\"count\": 6,\"type\": \"string\",\"values\": [\"Commonwealth of U.S.A.\",\"Den.\",\"Fr.\",\"Partial self-admin.\",\"Self admin.\",\"U.K.\"]},{\"attribute\": \"note_brk\",\"count\": 8,\"type\": \"string\",\"values\": [\"Admin. by U.K.; Claimed by Argentina\",\"Multiple claims held in abeyance\",\"Partial self-admin.\",\"Self admin.; Claimed by China\",\"Self admin.; Claimed by Cyprus\",\"Self admin.; Claimed by Morocco\",\"Self admin.; Claimed by Serbia\",\"Self admin.; Claimed by Somalia\"]},{\"attribute\": \"pop_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10057975,10211904,10329208,10414336,10473282,10486339,10625176,10707924,10737428,111211789,1123913,1131612,11451652,1166079220,11862740,12619600,12666987,127078679,12799293,1299371,1310000,13276517,1338612970,13711597,140,140041247,14268711,14494293,14573101,149229090,1514993,15306252,1533964,15399437,156050883,15746232,16601707,16715999,176242949,1782893,1804838,18879301,198739269,1990876,2005692,20178485,20617068,20653556,2066718,2108665,21262641,2130819,21324791,21669278,218519,22215421,2231503,22665345,227436,22974347,23822783,23832495,240271522,25715819,25946220,265100,26814843,2691158,27606007,2825928,28400000,28563377,28686633,29546963,2967004,3041142,306694,307899,309156,31129225,3129486,313973000,3140,32369558,33487208,3360474,34178188,3418085,3441790,34859364,3494382,3500000,3555179,3639453,3802,38482919,388190,39002772,3971020],\"min\": -99,\"max\": 1338612970},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 172,\"type\": \"string\",\"values\": [\"A\",\"AE\",\"AF\",\"AL\",\"AO\",\"AQ\",\"AR\",\"ARM\",\"AU\",\"AZ\",\"B\",\"BD\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"BiH\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"D\",\"DJ\",\"DK\",\"DO\",\"DRC\",\"DZ\",\"E\",\"EC\",\"EG\",\"ER\",\"EST\",\"ET\",\"F\",\"FIN\",\"FJ\",\"FK\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"I\",\"IND\",\"INDO\",\"IRL\",\"IRN\",\"IRQ\",\"IS\",\"J\",\"KE\",\"KG\",\"KH\",\"KO\",\"KP\",\"KR\",\"KW\",\"KZ\",\"L\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\",\"MG\",\"MK\"]},{\"attribute\": \"region_un\",\"count\": 7,\"type\": \"string\",\"values\": [\"Africa\",\"Americas\",\"Antarctica\",\"Asia\",\"Europe\",\"Oceania\",\"Seven seas (open ocean)\"]},{\"attribute\": \"region_wb\",\"count\": 8,\"type\": \"string\",\"values\": [\"Antarctica\",\"East Asia & Pacific\",\"Europe & Central Asia\",\"Latin America & Caribbean\",\"Middle East & North Africa\",\"North America\",\"South Asia\",\"Sub-Saharan Africa\"]},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [1,3],\"min\": 1,\"max\": 3},{\"attribute\": \"sov_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"AU1\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CH1\",\"CHE\",\"CHL\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DN1\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FI1\",\"FJI\",\"FR1\",\"GAB\",\"GB1\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\"]},{\"attribute\": \"sovereignt\",\"count\": 171,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\",\"Moldova\",\"Mongolia\",\"Montenegro\"]},{\"attribute\": \"su_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"su_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"subregion\",\"count\": 22,\"type\": \"string\",\"values\": [\"Antarctica\",\"Australia and New Zealand\",\"Caribbean\",\"Central America\",\"Central Asia\",\"Eastern Africa\",\"Eastern Asia\",\"Eastern Europe\",\"Melanesia\",\"Middle Africa\",\"Northern Africa\",\"Northern America\",\"Northern Europe\",\"Seven seas (open ocean)\",\"South America\",\"South-Eastern Asia\",\"Southern Africa\",\"Southern Asia\",\"Southern Europe\",\"Western Africa\",\"Western Asia\",\"Western Europe\"]},{\"attribute\": \"subunit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"tiny\",\"count\": 5,\"type\": \"number\",\"values\": [-99,2,3,4,5],\"min\": -99,\"max\": 5},{\"attribute\": \"type\",\"count\": 5,\"type\": \"string\",\"values\": [\"Country\",\"Dependency\",\"Disputed\",\"Indeterminate\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 172,\"type\": \"string\",\"values\": [\"-099\",\"004\",\"008\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\",\"458\",\"466\",\"478\"]},{\"attribute\": \"wb_a2\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"GZ\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KV\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\"]},{\"attribute\": \"wb_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KSV\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\",\"MKD\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "5", "minzoom": "0", @@ -12,7 +13,7 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 512 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.171875, -79.560546 ], [ -59.765625, -79.935918 ], [ -60.468750, -80.983688 ], [ -64.687500, -80.872827 ], [ -66.796875, -80.178713 ], [ -62.578125, -80.297927 ], [ -61.171875, -79.560546 ] ] ], [ [ [ -47.109375, -77.767582 ], [ -45.703125, -77.915669 ], [ -44.296875, -78.349411 ], [ -43.593750, -79.935918 ], [ -48.515625, -80.760615 ], [ -50.625000, -80.983688 ], [ -53.437500, -80.872827 ], [ -54.843750, -80.532071 ], [ -54.140625, -80.178713 ], [ -52.031250, -79.935918 ], [ -49.218750, -77.915669 ], [ -47.109375, -77.767582 ] ] ], [ [ [ -180.000000, -84.673513 ], [ -179.296875, -84.124973 ], [ -177.890625, -84.405941 ], [ -176.484375, -84.052561 ], [ -175.078125, -84.474065 ], [ -172.968750, -84.052561 ], [ -170.156250, -83.829945 ], [ -167.343750, -84.541361 ], [ -163.125000, -85.051129 ], [ -158.203125, -85.345325 ], [ -155.390625, -85.051129 ], [ -151.171875, -85.287916 ], [ -149.062500, -85.568066 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.541361 ], [ -146.953125, -84.474065 ], [ -150.468750, -84.267172 ], [ -151.171875, -83.829945 ], [ -153.984375, -83.676943 ], [ -153.281250, -82.021378 ], [ -157.500000, -81.093214 ], [ -152.578125, -80.983688 ], [ -151.171875, -81.308321 ], [ -147.656250, -80.647035 ], [ -146.953125, -79.812302 ], [ -149.765625, -79.302640 ], [ -155.390625, -79.038437 ], [ -158.203125, -77.915669 ], [ -158.906250, -76.840816 ], [ -157.500000, -77.157163 ], [ -153.984375, -76.999935 ], [ -153.281250, -77.466028 ], [ -151.875000, -77.312520 ], [ -146.250000, -76.351896 ], [ -146.250000, -75.320025 ], [ -145.546875, -75.140778 ], [ -144.843750, -75.497157 ], [ -135.703125, -74.211983 ], [ -121.640625, -74.402163 ], [ -118.125000, -74.019543 ], [ -116.718750, -74.211983 ], [ -114.609375, -73.627789 ], [ -112.500000, -74.590108 ], [ -111.796875, -74.402163 ], [ -107.578125, -75.140778 ], [ -105.468750, -74.775843 ], [ -101.250000, -75.140778 ], [ -100.546875, -74.775843 ], [ -101.953125, -74.019543 ], [ -102.656250, -74.019543 ], [ -104.062500, -72.607120 ], [ -99.140625, -72.816074 ], [ -97.734375, -73.428424 ], [ -97.031250, -73.428424 ], [ -92.812500, -73.022592 ], [ -90.703125, -73.226700 ], [ -89.296875, -72.395706 ], [ -88.593750, -72.816074 ], [ -81.562500, -73.824820 ], [ -80.859375, -73.022592 ], [ -76.640625, -73.824820 ], [ -75.234375, -73.824820 ], [ -67.500000, -72.395706 ], [ -68.906250, -69.657086 ], [ -67.500000, -66.791909 ], [ -63.281250, -64.472794 ], [ -58.359375, -63.233627 ], [ -57.656250, -63.233627 ], [ -59.062500, -63.860036 ], [ -62.578125, -64.774125 ], [ -62.578125, -65.946472 ], [ -63.984375, -66.231457 ], [ -66.093750, -67.875541 ], [ -63.281250, -69.162558 ], [ -61.875000, -71.074056 ], [ -61.171875, -73.022592 ], [ -61.875000, -74.019543 ], [ -64.687500, -75.140778 ], [ -70.312500, -76.184995 ], [ -71.015625, -76.516819 ], [ -77.343750, -76.679785 ], [ -73.828125, -77.767582 ], [ -75.234375, -78.206563 ], [ -76.640625, -78.061989 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.171335 ], [ -75.937500, -80.178713 ], [ -73.828125, -80.415707 ], [ -68.203125, -81.308321 ], [ -63.281250, -81.723188 ], [ -59.765625, -82.308893 ], [ -58.359375, -83.194896 ], [ -54.140625, -82.214217 ], [ -49.921875, -81.723188 ], [ -47.812500, -81.621352 ], [ -42.890625, -82.021378 ], [ -40.781250, -81.308321 ], [ -38.671875, -81.308321 ], [ -28.828125, -80.297927 ], [ -30.234375, -79.171335 ], [ -35.859375, -79.432371 ], [ -35.859375, -78.061989 ], [ -29.531250, -76.516819 ], [ -22.500000, -76.016094 ], [ -17.578125, -74.959392 ], [ -16.171875, -74.402163 ], [ -16.171875, -73.428424 ], [ -12.656250, -72.395706 ], [ -10.546875, -71.074056 ], [ -7.734375, -71.524909 ], [ -7.031250, -70.844673 ], [ -4.921875, -71.300793 ], [ -0.703125, -71.074056 ], [ -0.703125, -71.524909 ], [ 7.734375, -69.657086 ], [ 9.140625, -69.900118 ], [ 10.546875, -70.612614 ], [ 13.359375, -69.900118 ], [ 14.765625, -70.377854 ], [ 16.875000, -69.900118 ], [ 21.093750, -69.900118 ], [ 22.500000, -70.612614 ], [ 26.718750, -70.377854 ], [ 31.640625, -69.657086 ], [ 33.750000, -68.399180 ], [ 37.968750, -69.657086 ], [ 41.484375, -68.399180 ], [ 54.140625, -65.658275 ], [ 56.250000, -65.946472 ], [ 61.171875, -67.875541 ], [ 63.984375, -67.339861 ], [ 68.203125, -67.875541 ], [ 69.609375, -69.162558 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 67.500000, -71.746432 ], [ 69.609375, -72.181804 ], [ 71.015625, -71.965388 ], [ 73.828125, -69.657086 ], [ 77.343750, -69.411242 ], [ 78.750000, -68.138852 ], [ 81.562500, -67.339861 ], [ 86.484375, -67.067433 ], [ 87.890625, -65.946472 ], [ 89.296875, -67.067433 ], [ 95.625000, -67.339861 ], [ 99.140625, -67.067433 ], [ 102.656250, -65.366837 ], [ 106.171875, -66.791909 ], [ 109.687500, -66.513260 ], [ 113.203125, -65.658275 ], [ 115.312500, -66.513260 ], [ 119.531250, -67.067433 ], [ 123.046875, -66.231457 ], [ 128.671875, -66.513260 ], [ 134.296875, -65.946472 ], [ 135.000000, -65.072130 ], [ 137.109375, -66.791909 ], [ 144.843750, -66.791909 ], [ 146.250000, -67.875541 ], [ 148.359375, -68.138852 ], [ 151.875000, -68.656555 ], [ 153.984375, -68.399180 ], [ 158.906250, -69.411242 ], [ 161.015625, -70.377854 ], [ 166.640625, -70.612614 ], [ 170.859375, -71.524909 ], [ 168.750000, -73.627789 ], [ 165.937500, -74.211983 ], [ 163.125000, -76.184995 ], [ 164.531250, -78.061989 ], [ 165.937500, -78.206563 ], [ 166.640625, -78.630006 ], [ 161.718750, -79.038437 ], [ 159.609375, -80.872827 ], [ 163.125000, -82.308893 ], [ 168.750000, -83.277705 ], [ 168.750000, -83.753911 ], [ 172.265625, -83.979259 ], [ 172.968750, -84.405941 ], [ 175.781250, -84.124973 ], [ 180.000000, -84.673513 ], [ 180.703125, -84.124973 ], [ 182.109375, -84.405941 ], [ 183.515625, -84.052561 ], [ 184.921875, -84.474065 ], [ 187.031250, -84.052561 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.405941 ], [ -184.218750, -84.124973 ], [ -180.000000, -84.673513 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -160.312500, -78.630006 ], [ -159.609375, -79.432371 ], [ -161.718750, -79.560546 ], [ -163.125000, -79.171335 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -123.046875, -73.226700 ], [ -121.640625, -73.428424 ], [ -118.828125, -73.428424 ], [ -120.234375, -74.019543 ], [ -123.046875, -73.627789 ], [ -123.046875, -73.226700 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -124.453125, -73.824820 ], [ -127.968750, -73.428424 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -97.031250, -71.746432 ], [ -96.328125, -72.395706 ], [ -101.250000, -72.395706 ], [ -102.656250, -71.746432 ], [ -97.031250, -71.746432 ] ] ], [ [ [ -70.312500, -68.656555 ], [ -68.906250, -70.844673 ], [ -68.906250, -71.965388 ], [ -72.421875, -72.395706 ], [ -72.421875, -71.965388 ], [ -74.531250, -72.181804 ], [ -75.234375, -71.965388 ], [ -74.531250, -71.074056 ], [ -72.421875, -71.074056 ], [ -72.421875, -69.411242 ], [ -70.312500, -68.656555 ] ] ], [ [ [ 68.906250, -48.458352 ], [ 70.312500, -48.922499 ], [ 69.609375, -49.382373 ], [ 68.203125, -49.382373 ], [ 68.906250, -48.458352 ] ] ], [ [ [ -68.906250, -52.482780 ], [ -68.203125, -53.748711 ], [ -65.390625, -54.572062 ], [ -66.093750, -54.977614 ], [ -67.500000, -54.572062 ], [ -68.203125, -55.379110 ], [ -71.015625, -54.977614 ], [ -75.234375, -52.482780 ], [ -71.718750, -53.748711 ], [ -70.312500, -52.908902 ], [ -68.906250, -52.482780 ] ] ], [ [ [ 50.625000, 26.431228 ], [ 51.328125, 25.799891 ], [ 50.625000, 25.165173 ], [ 50.625000, 26.431228 ] ] ], [ [ [ 43.593750, 10.487812 ], [ 48.515625, 11.867351 ], [ 48.515625, 11.178402 ], [ 49.218750, 11.867351 ], [ 50.625000, 12.554564 ], [ 50.625000, 11.178402 ], [ 48.515625, 5.615986 ], [ 41.484375, -1.406109 ], [ 38.671875, -4.214943 ], [ 38.671875, -8.407168 ], [ 40.078125, -9.795678 ], [ 40.078125, -14.604847 ], [ 34.453125, -19.311143 ], [ 35.156250, -23.885838 ], [ 32.343750, -26.431228 ], [ 30.937500, -28.921631 ], [ 27.421875, -33.137551 ], [ 18.984375, -34.307144 ], [ 18.281250, -33.724340 ], [ 17.578125, -31.353637 ], [ 16.171875, -28.304381 ], [ 11.250000, -16.636192 ], [ 13.359375, -11.178402 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 11.953125, -4.214943 ], [ 10.546875, -3.513421 ], [ 8.437500, -0.703107 ], [ 9.140625, 1.406109 ], [ 9.140625, 2.811371 ], [ 8.437500, 4.915833 ], [ 5.625000, 4.915833 ], [ 4.218750, 6.315299 ], [ 2.109375, 6.315299 ], [ 1.406250, 6.315299 ], [ 0.703125, 6.315299 ], [ -3.515625, 5.615986 ], [ -7.734375, 4.915833 ], [ -11.953125, 7.013668 ], [ -13.359375, 9.102097 ], [ -15.468750, 11.178402 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -14.765625, 13.923404 ], [ -16.875000, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 16.636192 ], [ -17.578125, 21.289374 ], [ -14.765625, 21.943046 ], [ -17.578125, 21.943046 ], [ -14.765625, 26.431228 ], [ -9.843750, 30.145127 ], [ -9.843750, 33.137551 ], [ -5.625000, 36.031332 ], [ -7.734375, 37.718590 ], [ -7.031250, 40.979898 ], [ -8.437500, 37.160317 ], [ -9.140625, 37.160317 ], [ -9.843750, 38.822591 ], [ -9.140625, 42.032974 ], [ -9.843750, 43.068888 ], [ -8.437500, 44.087585 ], [ -2.109375, 43.580391 ], [ -1.406250, 46.073231 ], [ -4.921875, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.837982 ], [ -1.406250, 49.382373 ], [ 2.109375, 51.179343 ], [ 2.812500, 51.618017 ], [ 4.218750, 53.330873 ], [ 5.625000, 53.748711 ], [ 6.328125, 53.748711 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 8.437500, 57.326521 ], [ 10.546875, 58.077876 ], [ 10.546875, 56.559482 ], [ 10.546875, 56.170023 ], [ 11.953125, 56.170023 ], [ 10.546875, 59.175928 ], [ 9.843750, 59.534318 ], [ 7.734375, 58.447733 ], [ 5.625000, 58.813742 ], [ 4.921875, 62.267923 ], [ 9.843750, 64.774125 ], [ 14.062500, 67.875541 ], [ 18.984375, 69.900118 ], [ 22.500000, 70.377854 ], [ 23.906250, 71.074056 ], [ 28.125000, 71.300793 ], [ 30.937500, 70.612614 ], [ 29.531250, 70.377854 ], [ 30.234375, 69.900118 ], [ 31.640625, 70.140364 ], [ 40.078125, 68.138852 ], [ 40.781250, 66.791909 ], [ 37.968750, 66.231457 ], [ 33.046875, 66.791909 ], [ 34.453125, 65.946472 ], [ 34.453125, 64.472794 ], [ 36.562500, 63.860036 ], [ 36.562500, 65.366837 ], [ 39.375000, 64.774125 ], [ 40.078125, 64.774125 ], [ 39.375000, 65.658275 ], [ 41.484375, 66.513260 ], [ 43.593750, 66.231457 ], [ 44.296875, 66.791909 ], [ 42.890625, 68.656555 ], [ 45.703125, 68.399180 ], [ 46.406250, 67.875541 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ], [ 45.703125, 66.791909 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 53.437500, 68.399180 ], [ 58.359375, 68.911005 ], [ 59.765625, 68.399180 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.900118 ], [ 63.281250, 69.657086 ], [ 68.203125, 68.138852 ], [ 68.906250, 68.656555 ], [ 66.796875, 69.657086 ], [ 66.093750, 71.074056 ], [ 69.609375, 73.226700 ], [ 72.421875, 72.816074 ], [ 71.718750, 71.524909 ], [ 72.421875, 69.162558 ], [ 73.125000, 68.656555 ], [ 71.015625, 66.513260 ], [ 72.421875, 66.231457 ], [ 74.531250, 67.875541 ], [ 74.531250, 69.162558 ], [ 73.828125, 69.162558 ], [ 73.125000, 69.657086 ], [ 73.828125, 70.844673 ], [ 72.421875, 71.524909 ], [ 74.531250, 72.181804 ], [ 74.531250, 73.022592 ], [ 75.234375, 72.395706 ], [ 75.234375, 71.965388 ], [ 77.343750, 72.395706 ], [ 79.453125, 72.395706 ], [ 80.859375, 71.965388 ], [ 80.156250, 73.824820 ], [ 86.484375, 74.019543 ], [ 85.781250, 74.590108 ], [ 86.484375, 75.140778 ], [ 92.812500, 75.845169 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 96.328125, 76.016094 ], [ 98.437500, 76.516819 ], [ 100.546875, 76.516819 ], [ 101.953125, 77.312520 ], [ 104.062500, 77.767582 ], [ 105.468750, 77.466028 ], [ 104.062500, 77.157163 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.516819 ], [ 107.578125, 76.840816 ], [ 110.390625, 76.840816 ], [ 113.906250, 76.016094 ], [ 113.203125, 75.497157 ], [ 108.984375, 74.211983 ], [ 111.796875, 73.824820 ], [ 112.500000, 74.019543 ], [ 113.203125, 73.428424 ], [ 115.312500, 73.824820 ], [ 118.125000, 73.627789 ], [ 118.828125, 73.226700 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 126.562500, 73.627789 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.181804 ], [ 130.781250, 70.844673 ], [ 132.187500, 71.965388 ], [ 133.593750, 71.524909 ], [ 135.000000, 71.746432 ], [ 137.109375, 71.524909 ], [ 137.812500, 71.746432 ], [ 139.218750, 71.524909 ], [ 138.515625, 72.607120 ], [ 139.921875, 73.022592 ], [ 149.062500, 72.395706 ], [ 152.578125, 70.844673 ], [ 158.906250, 71.074056 ], [ 159.609375, 69.900118 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 169.453125, 68.911005 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 178.593750, 69.411242 ], [ 180.000000, 69.162558 ], [ 184.921875, 67.339861 ], [ 184.921875, 67.067433 ], [ 187.031250, 67.067433 ], [ 187.031250, 64.472794 ], [ 183.515625, 65.366837 ], [ 181.406250, 65.658275 ], [ 180.703125, 66.231457 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.072130 ], [ 177.187500, 64.774125 ], [ 178.593750, 62.593341 ], [ 177.187500, 62.593341 ], [ 173.671875, 61.938950 ], [ 170.156250, 59.888937 ], [ 168.750000, 60.586967 ], [ 165.937500, 59.888937 ], [ 165.234375, 60.239811 ], [ 163.125000, 59.888937 ], [ 161.718750, 58.447733 ], [ 163.125000, 57.704147 ], [ 161.718750, 54.977614 ], [ 160.312500, 54.572062 ], [ 159.609375, 53.330873 ], [ 158.203125, 53.330873 ], [ 156.093750, 51.179343 ], [ 155.390625, 56.944974 ], [ 163.125000, 61.270233 ], [ 163.828125, 62.593341 ], [ 163.125000, 62.593341 ], [ 159.609375, 60.586967 ], [ 158.906250, 61.938950 ], [ 156.093750, 61.606396 ], [ 153.984375, 59.888937 ], [ 154.687500, 59.175928 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.888937 ], [ 148.359375, 59.175928 ], [ 142.031250, 59.175928 ], [ 135.000000, 54.977614 ], [ 137.812500, 54.162434 ], [ 139.218750, 54.572062 ], [ 141.328125, 53.330873 ], [ 139.921875, 48.458352 ], [ 134.296875, 43.580391 ], [ 132.890625, 43.068888 ], [ 132.187500, 43.580391 ], [ 130.078125, 42.553080 ], [ 127.265625, 39.909736 ], [ 127.968750, 38.822591 ], [ 129.375000, 36.031332 ], [ 125.859375, 34.885931 ], [ 125.859375, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 39.909736 ], [ 123.750000, 40.446947 ], [ 120.937500, 39.368279 ], [ 120.937500, 40.979898 ], [ 117.421875, 38.822591 ], [ 119.531250, 37.160317 ], [ 120.234375, 38.272689 ], [ 122.343750, 37.718590 ], [ 118.828125, 35.460670 ], [ 121.640625, 31.952162 ], [ 121.640625, 28.304381 ], [ 118.125000, 25.165173 ], [ 110.390625, 21.943046 ], [ 110.390625, 20.632784 ], [ 107.578125, 21.943046 ], [ 105.468750, 19.311143 ], [ 108.281250, 15.284185 ], [ 108.984375, 11.867351 ], [ 104.765625, 9.102097 ], [ 104.062500, 10.487812 ], [ 104.765625, 11.178402 ], [ 103.359375, 11.178402 ], [ 101.953125, 13.239945 ], [ 101.953125, 12.554564 ], [ 99.843750, 13.923404 ], [ 99.140625, 10.487812 ], [ 101.953125, 6.315299 ], [ 100.546875, 6.315299 ], [ 99.843750, 7.013668 ], [ 97.734375, 8.407168 ], [ 98.437500, 10.487812 ], [ 97.734375, 15.284185 ], [ 97.031250, 17.308688 ], [ 93.515625, 16.636192 ], [ 94.218750, 18.646245 ], [ 92.109375, 21.289374 ], [ 92.109375, 21.943046 ], [ 92.109375, 22.593726 ], [ 91.406250, 23.241346 ], [ 88.593750, 22.593726 ], [ 88.593750, 21.943046 ], [ 86.484375, 21.943046 ], [ 86.484375, 20.632784 ], [ 80.156250, 15.961329 ], [ 79.453125, 10.487812 ], [ 77.343750, 8.407168 ], [ 73.125000, 16.636192 ], [ 72.421875, 21.943046 ], [ 70.312500, 21.289374 ], [ 67.500000, 23.885838 ], [ 66.093750, 25.799891 ], [ 61.171875, 25.165173 ], [ 56.953125, 25.799891 ], [ 56.250000, 27.683528 ], [ 53.437500, 27.059126 ], [ 49.921875, 30.751278 ], [ 48.515625, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 50.625000, 25.165173 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 53.437500, 24.527135 ], [ 55.546875, 25.165173 ], [ 59.765625, 22.593726 ], [ 58.359375, 21.289374 ], [ 57.656250, 19.311143 ], [ 52.734375, 17.308688 ], [ 43.593750, 13.239945 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 34.453125, 28.304381 ], [ 33.750000, 27.683528 ], [ 36.562500, 22.593726 ], [ 37.968750, 18.646245 ], [ 38.671875, 15.961329 ], [ 41.484375, 13.923404 ], [ 42.890625, 13.239945 ], [ 42.890625, 11.867351 ], [ 43.593750, 10.487812 ] ], [ [ 13.359375, 46.073231 ], [ 11.953125, 45.583290 ], [ 11.953125, 44.590467 ], [ 18.281250, 40.446947 ], [ 16.171875, 40.446947 ], [ 15.468750, 38.272689 ], [ 14.765625, 40.446947 ], [ 10.546875, 42.553080 ], [ 9.843750, 44.087585 ], [ 8.437500, 44.590467 ], [ 7.031250, 44.087585 ], [ 1.406250, 42.553080 ], [ 2.812500, 42.032974 ], [ 0.703125, 41.508577 ], [ -0.703125, 37.718590 ], [ -5.625000, 36.031332 ], [ -2.812500, 35.460670 ], [ -1.406250, 36.031332 ], [ 7.734375, 37.160317 ], [ 9.140625, 37.718590 ], [ 10.546875, 37.160317 ], [ 9.843750, 34.885931 ], [ 11.250000, 33.137551 ], [ 18.984375, 30.751278 ], [ 20.390625, 33.137551 ], [ 24.609375, 31.952162 ], [ 33.750000, 31.353637 ], [ 34.453125, 33.137551 ], [ 35.156250, 33.724340 ], [ 35.859375, 34.885931 ], [ 35.859375, 36.031332 ], [ 35.859375, 37.160317 ], [ 34.453125, 37.160317 ], [ 29.531250, 36.597889 ], [ 27.421875, 37.160317 ], [ 26.015625, 38.272689 ], [ 26.015625, 39.909736 ], [ 28.125000, 41.508577 ], [ 26.718750, 40.979898 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.979898 ], [ 23.203125, 40.979898 ], [ 22.500000, 40.979898 ], [ 23.203125, 40.446947 ], [ 23.906250, 37.718590 ], [ 22.500000, 38.272689 ], [ 22.500000, 36.597889 ], [ 21.093750, 37.160317 ], [ 19.687500, 39.909736 ], [ 19.687500, 42.553080 ], [ 18.984375, 42.032974 ], [ 18.281250, 42.553080 ], [ 13.359375, 45.583290 ], [ 13.359375, 46.073231 ] ], [ [ 23.203125, 66.231457 ], [ 21.796875, 65.946472 ], [ 21.093750, 64.472794 ], [ 17.578125, 62.915233 ], [ 16.875000, 61.606396 ], [ 18.281250, 60.239811 ], [ 16.171875, 58.813742 ], [ 15.468750, 56.170023 ], [ 12.656250, 55.379110 ], [ 11.953125, 54.977614 ], [ 10.546875, 56.170023 ], [ 9.843750, 55.379110 ], [ 10.546875, 54.162434 ], [ 11.953125, 54.572062 ], [ 14.062500, 53.330873 ], [ 14.765625, 54.162434 ], [ 17.578125, 54.977614 ], [ 19.687500, 54.977614 ], [ 21.093750, 55.379110 ], [ 20.390625, 56.170023 ], [ 21.093750, 57.704147 ], [ 22.500000, 58.077876 ], [ 23.906250, 57.326521 ], [ 24.609375, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.203125, 59.534318 ], [ 27.421875, 59.534318 ], [ 26.718750, 57.704147 ], [ 28.828125, 60.239811 ], [ 27.421875, 60.586967 ], [ 22.500000, 59.888937 ], [ 21.093750, 60.930432 ], [ 20.390625, 62.915233 ], [ 25.312500, 65.366837 ], [ 23.203125, 66.231457 ] ], [ [ 27.421875, 42.032974 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 33.046875, 42.032974 ], [ 36.562500, 41.508577 ], [ 42.890625, 41.508577 ], [ 41.484375, 42.032974 ], [ 39.375000, 43.580391 ], [ 44.296875, 42.553080 ], [ 37.265625, 45.089036 ], [ 36.562500, 45.583290 ], [ 38.671875, 47.517201 ], [ 34.453125, 46.558860 ], [ 35.859375, 45.583290 ], [ 33.750000, 44.590467 ], [ 32.343750, 45.583290 ], [ 33.046875, 46.073231 ], [ 31.640625, 47.040182 ], [ 29.531250, 45.583290 ], [ 28.125000, 44.087585 ], [ 27.421875, 42.032974 ] ], [ [ 48.515625, 47.040182 ], [ 48.515625, 46.558860 ], [ 46.406250, 45.089036 ], [ 48.515625, 42.032974 ], [ 49.921875, 40.446947 ], [ 48.515625, 38.822591 ], [ 48.515625, 37.718590 ], [ 50.625000, 37.160317 ], [ 53.437500, 37.718590 ], [ 52.031250, 40.446947 ], [ 52.734375, 40.979898 ], [ 54.140625, 40.979898 ], [ 53.437500, 42.553080 ], [ 52.734375, 41.508577 ], [ 52.031250, 42.032974 ], [ 49.921875, 45.089036 ], [ 52.734375, 45.583290 ], [ 52.734375, 47.040182 ], [ 48.515625, 47.040182 ] ], [ [ 11.953125, 23.885838 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 11.953125, 23.885838 ] ], [ [ -7.734375, 4.915833 ], [ -8.437500, 10.487812 ], [ -9.140625, 7.710992 ], [ -7.734375, 4.915833 ] ], [ [ 2.109375, 12.554564 ], [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 2.812500, 11.867351 ], [ 2.812500, 12.554564 ], [ 2.109375, 12.554564 ] ], [ [ 73.828125, 38.822591 ], [ 74.531250, 37.718590 ], [ 73.828125, 37.718590 ], [ 74.531250, 37.160317 ], [ 77.343750, 36.031332 ], [ 73.828125, 38.822591 ] ], [ [ 24.609375, -11.178402 ], [ 29.531250, -13.239945 ], [ 26.718750, -11.178402 ], [ 24.609375, -11.178402 ] ], [ [ 16.875000, 47.989922 ], [ 15.468750, 47.040182 ], [ 14.062500, 46.558860 ], [ 16.171875, 46.558860 ], [ 18.281250, 46.073231 ], [ 16.171875, 47.040182 ], [ 16.875000, 47.989922 ] ], [ [ 37.968750, 4.214943 ], [ 32.343750, 8.407168 ], [ 35.156250, 5.615986 ], [ 37.968750, 4.214943 ] ], [ [ 26.015625, 55.776573 ], [ 25.312500, 54.572062 ], [ 28.125000, 56.170023 ], [ 26.015625, 55.776573 ] ], [ [ 29.531250, -14.604847 ], [ 26.718750, -17.308688 ], [ 30.234375, -15.284185 ], [ 29.531250, -14.604847 ] ], [ [ 23.203125, 68.138852 ], [ 21.796875, 68.911005 ], [ 20.390625, 69.162558 ], [ 20.390625, 68.911005 ], [ 23.203125, 68.138852 ] ], [ [ 32.343750, -9.102097 ], [ 30.234375, -7.710992 ], [ 28.828125, -8.407168 ], [ 32.343750, -9.102097 ] ], [ [ 18.984375, 5.615986 ], [ 16.875000, 4.214943 ], [ 18.281250, 3.513421 ], [ 18.984375, 5.615986 ] ], [ [ 45.703125, 36.031332 ], [ 44.296875, 38.822591 ], [ 44.296875, 37.718590 ], [ 45.000000, 36.031332 ], [ 45.703125, 36.031332 ] ], [ [ 9.140625, 47.517201 ], [ 9.843750, 46.558860 ], [ 11.953125, 47.040182 ], [ 9.140625, 47.517201 ] ], [ [ 31.640625, 4.214943 ], [ 28.125000, 4.915833 ], [ 30.234375, 3.513421 ], [ 31.640625, 4.214943 ] ], [ [ 30.234375, -2.811371 ], [ 28.828125, -4.214943 ], [ 29.531250, -5.615986 ], [ 30.234375, -2.811371 ] ], [ [ 70.312500, 38.822591 ], [ 67.500000, 37.160317 ], [ 68.906250, 37.160317 ], [ 70.312500, 38.822591 ] ], [ [ 55.546875, 41.508577 ], [ 56.953125, 41.508577 ], [ 58.359375, 43.068888 ], [ 55.546875, 41.508577 ] ], [ [ -6.328125, 10.487812 ], [ -3.515625, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 11.867351 ], [ -6.328125, 10.487812 ] ], [ [ 60.468750, 36.597889 ], [ 60.468750, 33.137551 ], [ 61.171875, 36.031332 ], [ 60.468750, 36.597889 ] ], [ [ 7.031250, 34.307144 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.751278 ], [ 7.031250, 34.307144 ] ], [ [ -5.625000, 15.961329 ], [ -5.625000, 16.636192 ], [ -9.140625, 15.961329 ], [ -5.625000, 15.961329 ] ], [ [ 79.453125, 45.089036 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.580391 ], [ 79.453125, 45.089036 ] ], [ [ 119.531250, 51.618017 ], [ 117.421875, 49.837982 ], [ 118.828125, 50.289339 ], [ 119.531250, 51.618017 ] ], [ [ 120.937500, 53.330873 ], [ 119.531250, 52.908902 ], [ 120.234375, 52.052490 ], [ 120.937500, 53.330873 ] ], [ [ 41.484375, 4.915833 ], [ 37.968750, 4.214943 ], [ 41.484375, 4.214943 ], [ 41.484375, 4.915833 ] ], [ [ 12.656250, 47.517201 ], [ 9.140625, 47.989922 ], [ 9.140625, 47.517201 ], [ 12.656250, 47.517201 ] ], [ [ 21.796875, 42.553080 ], [ 22.500000, 41.508577 ], [ 22.500000, 44.087585 ], [ 21.796875, 42.553080 ] ], [ [ 12.656250, 13.923404 ], [ 13.359375, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 13.239945 ], [ 12.656250, 13.923404 ] ], [ [ 21.796875, 42.553080 ], [ 21.093750, 43.068888 ], [ 20.390625, 42.553080 ], [ 20.390625, 42.032974 ], [ 21.796875, 42.553080 ] ], [ [ -10.546875, 8.407168 ], [ -11.250000, 10.487812 ], [ -11.953125, 10.487812 ], [ -10.546875, 8.407168 ] ], [ [ 104.765625, 14.604847 ], [ 104.765625, 15.284185 ], [ 102.656250, 14.604847 ], [ 104.765625, 14.604847 ] ], [ [ 101.250000, 21.289374 ], [ 100.546875, 21.943046 ], [ 99.843750, 20.632784 ], [ 101.250000, 21.289374 ] ], [ [ 91.406250, 27.059126 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.059126 ], [ 91.406250, 27.059126 ] ], [ [ 119.531250, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.125000, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.517201 ] ], [ [ 115.312500, 48.458352 ], [ 115.312500, 47.989922 ], [ 117.421875, 48.458352 ], [ 115.312500, 48.458352 ] ], [ [ 25.312500, 54.572062 ], [ 23.203125, 54.572062 ], [ 23.203125, 54.162434 ], [ 25.312500, 54.572062 ] ], [ [ 41.484375, -1.406109 ], [ 40.781250, 1.406109 ], [ 40.781250, -0.703107 ], [ 41.484375, -1.406109 ] ], [ [ 42.187500, 12.554564 ], [ 41.484375, 13.239945 ], [ 41.484375, 11.178402 ], [ 42.187500, 12.554564 ] ], [ [ 97.031250, 28.304381 ], [ 94.921875, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.031250, 28.304381 ] ], [ [ 87.890625, 27.059126 ], [ 88.593750, 27.683528 ], [ 88.593750, 28.304381 ], [ 87.890625, 28.304381 ], [ 87.890625, 27.059126 ] ], [ [ 44.296875, 29.535230 ], [ 47.812500, 28.921631 ], [ 46.406250, 29.535230 ], [ 44.296875, 29.535230 ] ], [ [ 16.171875, 48.922499 ], [ 14.765625, 49.382373 ], [ 14.062500, 48.922499 ], [ 16.171875, 48.922499 ] ], [ [ 14.062500, 48.922499 ], [ 11.953125, 50.289339 ], [ 13.359375, 48.922499 ], [ 14.062500, 48.922499 ] ], [ [ 30.937500, -25.165173 ], [ 31.640625, -25.799891 ], [ 31.640625, -24.527135 ], [ 30.937500, -25.165173 ] ], [ [ 19.687500, -23.885838 ], [ 19.687500, -24.527135 ], [ 19.687500, -25.165173 ], [ 20.390625, -25.165173 ], [ 19.687500, -23.885838 ] ], [ [ 55.546875, 23.885838 ], [ 54.843750, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 23.885838 ] ], [ [ 45.000000, 39.368279 ], [ 45.000000, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ] ], [ [ 67.500000, 39.909736 ], [ 66.796875, 39.368279 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.909736 ] ], [ [ 22.500000, 47.989922 ], [ 23.906250, 47.989922 ], [ 22.500000, 48.458352 ], [ 22.500000, 47.989922 ] ], [ [ 17.578125, 68.656555 ], [ 16.875000, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.656555 ] ], [ [ 32.343750, -9.102097 ], [ 33.046875, -11.867351 ], [ 33.046875, -10.487812 ], [ 32.343750, -9.102097 ] ], [ [ 12.656250, -4.214943 ], [ 12.656250, -4.915833 ], [ 14.062500, -4.915833 ], [ 12.656250, -4.214943 ] ], [ [ 11.250000, 2.811371 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.811371 ], [ 11.250000, 2.811371 ] ], [ [ 42.890625, 41.508577 ], [ 45.000000, 40.979898 ], [ 44.296875, 41.508577 ], [ 42.890625, 41.508577 ] ], [ [ 75.234375, 71.965388 ], [ 75.234375, 71.524909 ], [ 75.937500, 71.300793 ], [ 75.234375, 71.965388 ] ], [ [ 43.593750, 10.487812 ], [ 42.187500, 11.178402 ], [ 43.593750, 9.795678 ], [ 43.593750, 10.487812 ] ], [ [ 29.531250, -21.943046 ], [ 28.125000, -21.289374 ], [ 28.828125, -21.943046 ], [ 29.531250, -21.943046 ] ], [ [ 45.703125, 42.032974 ], [ 46.406250, 41.508577 ], [ 47.109375, 41.508577 ], [ 45.703125, 42.032974 ] ], [ [ 35.156250, 33.137551 ], [ 35.156250, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.156250, 33.137551 ] ], [ [ 19.687500, 43.068888 ], [ 19.687500, 42.553080 ], [ 20.390625, 42.553080 ], [ 19.687500, 43.068888 ] ] ], [ [ [ 15.468750, 38.272689 ], [ 14.765625, 37.160317 ], [ 11.953125, 37.718590 ], [ 11.953125, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 9.140625, 41.508577 ], [ 9.140625, 39.368279 ], [ 8.437500, 39.368279 ], [ 7.734375, 40.979898 ], [ 9.140625, 41.508577 ] ] ], [ [ [ -59.062500, -50.736455 ], [ -58.359375, -51.179343 ], [ -59.765625, -52.052490 ], [ -61.875000, -51.618017 ], [ -59.062500, -50.736455 ] ] ], [ [ [ -187.031250, -40.446947 ], [ -186.328125, -41.508577 ], [ -187.031250, -43.580391 ], [ -187.031250, -40.446947 ] ] ], [ [ [ 172.968750, -40.446947 ], [ 173.671875, -41.508577 ], [ 170.156250, -45.583290 ], [ 168.750000, -46.558860 ], [ 166.640625, -46.073231 ], [ 166.640625, -45.089036 ], [ 172.968750, -40.446947 ] ] ], [ [ [ 123.750000, 11.867351 ], [ 123.750000, 10.487812 ], [ 122.343750, 9.102097 ], [ 122.343750, 9.795678 ], [ 123.750000, 11.867351 ] ] ], [ [ [ 147.656250, -40.446947 ], [ 147.656250, -43.068888 ], [ 145.546875, -43.068888 ], [ 144.140625, -40.979898 ], [ 144.843750, -40.446947 ], [ 147.656250, -40.446947 ] ] ], [ [ [ 67.500000, 76.999935 ], [ 67.500000, 76.351896 ], [ 61.171875, 75.320025 ], [ 58.359375, 74.402163 ], [ 54.843750, 72.395706 ], [ 55.546875, 71.746432 ], [ 56.953125, 70.844673 ], [ 53.437500, 70.844673 ], [ 52.734375, 71.300793 ], [ 51.328125, 71.524909 ], [ 51.328125, 72.181804 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.824820 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.140778 ], [ 60.468750, 76.351896 ], [ 67.500000, 76.999935 ] ] ], [ [ [ 172.265625, -34.307144 ], [ 176.484375, -37.718590 ], [ 177.890625, -37.160317 ], [ 175.078125, -41.508577 ], [ 174.375000, -39.368279 ], [ 173.671875, -39.368279 ], [ 174.375000, -37.160317 ], [ 172.265625, -34.307144 ] ] ], [ [ [ -187.031250, -34.307144 ], [ -185.625000, -36.031332 ], [ -183.515625, -37.718590 ], [ -182.109375, -37.160317 ], [ -184.921875, -41.508577 ], [ -185.625000, -39.368279 ], [ -186.328125, -39.368279 ], [ -185.625000, -37.160317 ], [ -187.031250, -34.307144 ] ] ], [ [ [ 113.906250, -21.943046 ], [ 116.015625, -20.632784 ], [ 120.234375, -19.311143 ], [ 125.156250, -13.923404 ], [ 129.375000, -14.604847 ], [ 130.078125, -11.867351 ], [ 132.187500, -11.867351 ], [ 131.484375, -11.178402 ], [ 136.406250, -11.178402 ], [ 135.000000, -14.604847 ], [ 139.921875, -17.308688 ], [ 142.031250, -10.487812 ], [ 143.437500, -13.239945 ], [ 144.843750, -14.604847 ], [ 146.250000, -18.646245 ], [ 148.359375, -19.973349 ], [ 152.578125, -25.799891 ], [ 152.578125, -30.751278 ], [ 149.765625, -37.160317 ], [ 146.250000, -38.822591 ], [ 144.843750, -37.718590 ], [ 143.437500, -38.272689 ], [ 140.625000, -37.718590 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.885931 ], [ 137.109375, -32.546813 ], [ 135.703125, -34.885931 ], [ 133.593750, -32.546813 ], [ 130.781250, -31.353637 ], [ 125.859375, -31.952162 ], [ 123.046875, -33.724340 ], [ 119.531250, -33.724340 ], [ 117.421875, -34.885931 ], [ 114.609375, -33.724340 ], [ 115.312500, -31.353637 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.203125, -23.885838 ], [ 113.906250, -21.943046 ] ] ], [ [ [ -82.265625, 62.915233 ], [ -84.375000, 62.267923 ], [ -83.671875, 62.915233 ], [ -82.265625, 62.915233 ] ] ], [ [ [ -115.312500, 73.428424 ], [ -114.609375, 73.226700 ], [ -115.312500, 72.816074 ], [ -112.500000, 73.022592 ], [ -111.093750, 72.607120 ], [ -110.390625, 73.022592 ], [ -108.281250, 71.746432 ], [ -108.984375, 73.226700 ], [ -106.875000, 73.226700 ], [ -104.765625, 71.074056 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -103.359375, 69.657086 ], [ -102.656250, 68.911005 ], [ -106.171875, 69.411242 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -116.718750, 69.411242 ], [ -117.421875, 70.140364 ], [ -112.500000, 70.377854 ], [ -118.125000, 70.612614 ], [ -118.828125, 71.074056 ], [ -116.718750, 71.524909 ], [ -119.531250, 71.746432 ], [ -118.125000, 72.816074 ], [ -115.312500, 73.428424 ] ] ], [ [ [ -98.437500, 70.377854 ], [ -96.328125, 69.162558 ], [ -96.328125, 68.911005 ], [ -99.843750, 69.411242 ], [ -98.437500, 70.377854 ] ] ], [ [ [ -121.640625, 74.590108 ], [ -118.125000, 74.211983 ], [ -116.015625, 73.627789 ], [ -118.125000, 72.816074 ], [ -119.531250, 72.607120 ], [ -120.937500, 71.524909 ], [ -123.750000, 71.074056 ], [ -126.562500, 71.965388 ], [ -124.453125, 73.824820 ], [ -125.156250, 74.402163 ], [ -121.640625, 74.590108 ] ] ], [ [ [ -100.546875, 74.019543 ], [ -97.734375, 73.824820 ], [ -97.734375, 73.627789 ], [ -98.437500, 73.022592 ], [ -97.031250, 72.607120 ], [ -97.031250, 71.746432 ], [ -98.437500, 71.300793 ], [ -102.656250, 72.607120 ], [ -102.656250, 73.022592 ], [ -100.546875, 72.816074 ], [ -101.953125, 73.428424 ], [ -100.546875, 74.019543 ] ] ], [ [ [ 117.421875, -7.710992 ], [ 118.828125, -8.407168 ], [ 116.718750, -8.407168 ], [ 117.421875, -7.710992 ] ] ], [ [ [ -130.781250, 54.977614 ], [ -134.296875, 58.447733 ], [ -137.109375, 58.447733 ], [ -142.734375, 60.239811 ], [ -147.656250, 60.930432 ], [ -148.359375, 60.930432 ], [ -148.359375, 60.239811 ], [ -151.875000, 59.175928 ], [ -151.171875, 61.606396 ], [ -154.687500, 59.534318 ], [ -153.984375, 59.175928 ], [ -154.687500, 58.447733 ], [ -158.906250, 56.170023 ], [ -165.234375, 54.572062 ], [ -158.906250, 57.326521 ], [ -157.500000, 59.175928 ], [ -159.609375, 58.447733 ], [ -161.015625, 59.175928 ], [ -162.421875, 58.813742 ], [ -163.125000, 60.239811 ], [ -163.828125, 59.888937 ], [ -165.937500, 60.586967 ], [ -165.937500, 62.267923 ], [ -165.234375, 63.233627 ], [ -161.015625, 63.860036 ], [ -161.718750, 64.472794 ], [ -161.015625, 65.072130 ], [ -165.234375, 64.472794 ], [ -168.750000, 65.946472 ], [ -164.531250, 66.791909 ], [ -163.828125, 66.791909 ], [ -163.828125, 66.231457 ], [ -161.718750, 66.231457 ], [ -167.343750, 68.399180 ], [ -166.640625, 68.911005 ], [ -163.828125, 69.411242 ], [ -162.421875, 70.377854 ], [ -156.796875, 71.524909 ], [ -155.390625, 71.300793 ], [ -154.687500, 70.844673 ], [ -152.578125, 70.844673 ], [ -151.171875, 70.612614 ], [ -144.140625, 70.377854 ], [ -141.328125, 69.900118 ], [ -137.109375, 68.911005 ], [ -135.000000, 69.657086 ], [ -133.593750, 69.657086 ], [ -130.078125, 70.377854 ], [ -129.375000, 69.900118 ], [ -128.671875, 70.612614 ], [ -125.859375, 69.657086 ], [ -124.453125, 70.377854 ], [ -124.453125, 69.411242 ], [ -121.640625, 69.900118 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.656555 ], [ -113.906250, 68.399180 ], [ -115.312500, 68.138852 ], [ -113.906250, 67.875541 ], [ -110.390625, 68.138852 ], [ -108.984375, 67.609221 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.656555 ], [ -106.171875, 68.911005 ], [ -104.765625, 68.138852 ], [ -101.953125, 67.875541 ], [ -99.140625, 67.875541 ], [ -97.734375, 68.656555 ], [ -96.328125, 68.399180 ], [ -96.328125, 67.339861 ], [ -94.921875, 69.162558 ], [ -97.031250, 70.140364 ], [ -95.625000, 71.965388 ], [ -93.515625, 71.524909 ], [ -92.109375, 70.377854 ], [ -92.812500, 69.900118 ], [ -90.703125, 69.657086 ], [ -90.703125, 68.656555 ], [ -89.296875, 69.411242 ], [ -87.890625, 67.339861 ], [ -85.781250, 69.900118 ], [ -82.968750, 69.900118 ], [ -81.562500, 69.162558 ], [ -81.562500, 67.339861 ], [ -83.671875, 66.513260 ], [ -85.781250, 66.791909 ], [ -86.484375, 65.946472 ], [ -87.890625, 65.072130 ], [ -93.515625, 62.267923 ], [ -94.921875, 59.175928 ], [ -93.515625, 58.813742 ], [ -92.812500, 57.326521 ], [ -91.406250, 57.326521 ], [ -85.078125, 55.379110 ], [ -82.968750, 55.379110 ], [ -82.265625, 53.330873 ], [ -80.156250, 51.618017 ], [ -78.750000, 52.908902 ], [ -80.156250, 54.977614 ], [ -76.640625, 56.559482 ], [ -78.750000, 58.813742 ], [ -77.343750, 59.888937 ], [ -78.750000, 62.593341 ], [ -74.531250, 62.593341 ], [ -71.718750, 61.270233 ], [ -69.609375, 61.270233 ], [ -69.609375, 59.175928 ], [ -68.203125, 58.447733 ], [ -64.687500, 60.586967 ], [ -61.875000, 57.326521 ], [ -61.875000, 56.559482 ], [ -57.656250, 54.977614 ], [ -56.250000, 52.482780 ], [ -60.468750, 50.289339 ], [ -66.796875, 50.289339 ], [ -71.718750, 47.040182 ], [ -69.609375, 47.517201 ], [ -65.390625, 49.382373 ], [ -64.687500, 48.922499 ], [ -65.390625, 48.458352 ], [ -64.687500, 46.558860 ], [ -61.875000, 46.073231 ], [ -61.171875, 47.040182 ], [ -60.468750, 46.073231 ], [ -61.171875, 45.583290 ], [ -66.796875, 44.087585 ], [ -66.796875, 44.590467 ], [ -64.687500, 45.583290 ], [ -67.500000, 45.583290 ], [ -67.500000, 45.089036 ], [ -70.312500, 44.087585 ], [ -71.015625, 42.553080 ], [ -70.312500, 42.032974 ], [ -73.828125, 40.979898 ], [ -74.531250, 40.979898 ], [ -75.234375, 39.368279 ], [ -75.937500, 39.909736 ], [ -76.640625, 37.718590 ], [ -75.937500, 36.031332 ], [ -81.562500, 31.952162 ], [ -80.156250, 27.059126 ], [ -80.859375, 25.165173 ], [ -84.375000, 30.145127 ], [ -86.484375, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.921875, 29.535230 ], [ -97.734375, 28.304381 ], [ -97.734375, 26.431228 ], [ -97.734375, 21.943046 ], [ -94.921875, 18.646245 ], [ -91.406250, 19.311143 ], [ -90.703125, 21.289374 ], [ -87.187500, 21.943046 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -89.296875, 15.961329 ], [ -88.593750, 15.961329 ], [ -85.078125, 16.636192 ], [ -83.671875, 15.284185 ], [ -85.078125, 15.284185 ], [ -87.890625, 13.239945 ], [ -88.593750, 13.923404 ], [ -90.703125, 13.923404 ], [ -92.812500, 14.604847 ], [ -94.218750, 15.961329 ], [ -97.031250, 15.961329 ], [ -105.468750, 19.973349 ], [ -106.171875, 23.241346 ], [ -112.500000, 29.535230 ], [ -113.203125, 31.353637 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.751278 ], [ -109.687500, 23.885838 ], [ -110.390625, 23.241346 ], [ -112.500000, 26.431228 ], [ -115.312500, 28.304381 ], [ -114.609375, 28.921631 ], [ -117.421875, 32.546813 ], [ -120.937500, 34.885931 ], [ -123.750000, 39.368279 ], [ -125.156250, 48.458352 ], [ -123.750000, 48.458352 ], [ -123.046875, 47.517201 ], [ -123.046875, 49.382373 ], [ -125.156250, 50.289339 ], [ -123.750000, 48.922499 ], [ -125.859375, 48.922499 ], [ -128.671875, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 52.482780 ], [ -130.781250, 54.572062 ], [ -130.781250, 54.977614 ] ], [ [ -101.250000, 29.535230 ], [ -99.140625, 26.431228 ], [ -98.437500, 26.431228 ], [ -101.250000, 29.535230 ] ], [ [ -76.640625, 37.718590 ], [ -76.640625, 39.368279 ], [ -77.343750, 38.272689 ], [ -76.640625, 37.718590 ] ] ], [ [ [ -35.156250, 83.676943 ], [ -27.421875, 83.520162 ], [ -21.093750, 82.765373 ], [ -23.203125, 82.402423 ], [ -32.343750, 82.214217 ], [ -31.640625, 82.118384 ], [ -28.125000, 82.214217 ], [ -25.312500, 81.823794 ], [ -23.203125, 82.118384 ], [ -22.500000, 81.823794 ], [ -23.203125, 81.201420 ], [ -16.171875, 81.923186 ], [ -13.359375, 81.723188 ], [ -12.656250, 81.308321 ], [ -16.875000, 80.415707 ], [ -20.390625, 80.178713 ], [ -18.281250, 80.178713 ], [ -20.390625, 78.767792 ], [ -19.687500, 77.767582 ], [ -18.984375, 76.999935 ], [ -21.796875, 76.679785 ], [ -20.390625, 76.184995 ], [ -19.687500, 75.320025 ], [ -21.093750, 75.320025 ], [ -19.687500, 74.402163 ], [ -21.796875, 74.402163 ], [ -21.093750, 73.627789 ], [ -23.906250, 73.428424 ], [ -22.500000, 72.395706 ], [ -24.609375, 72.607120 ], [ -25.312500, 72.395706 ], [ -22.500000, 71.524909 ], [ -21.796875, 70.844673 ], [ -23.906250, 70.612614 ], [ -26.015625, 71.524909 ], [ -25.312500, 70.844673 ], [ -26.718750, 70.377854 ], [ -22.500000, 70.140364 ], [ -28.125000, 68.656555 ], [ -32.343750, 68.138852 ], [ -36.562500, 66.231457 ], [ -40.078125, 65.658275 ], [ -41.484375, 63.548552 ], [ -42.890625, 62.915233 ], [ -43.593750, 60.239811 ], [ -45.000000, 60.239811 ], [ -49.921875, 61.606396 ], [ -54.140625, 66.231457 ], [ -54.140625, 67.339861 ], [ -53.437500, 68.399180 ], [ -52.031250, 68.911005 ], [ -51.328125, 70.140364 ], [ -54.140625, 69.411242 ], [ -54.843750, 69.657086 ], [ -54.843750, 70.844673 ], [ -52.031250, 70.612614 ], [ -54.140625, 71.746432 ], [ -56.250000, 71.746432 ], [ -54.843750, 72.607120 ], [ -59.062500, 75.672197 ], [ -61.875000, 76.184995 ], [ -68.906250, 76.184995 ], [ -71.718750, 77.157163 ], [ -66.796875, 77.466028 ], [ -71.718750, 77.767582 ], [ -73.828125, 78.061989 ], [ -73.828125, 78.490552 ], [ -66.093750, 79.432371 ], [ -65.390625, 79.812302 ], [ -68.203125, 80.178713 ], [ -67.500000, 80.532071 ], [ -62.578125, 81.413933 ], [ -63.281250, 81.823794 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -53.437500, 81.923186 ], [ -50.625000, 82.494824 ], [ -45.000000, 81.723188 ], [ -47.109375, 82.214217 ], [ -47.109375, 82.676285 ], [ -43.593750, 83.277705 ], [ -40.078125, 83.194896 ], [ -38.671875, 83.599031 ], [ -35.156250, 83.676943 ] ] ], [ [ [ 49.218750, -11.867351 ], [ 49.921875, -15.284185 ], [ 46.406250, -24.527135 ], [ 45.000000, -25.165173 ], [ 43.593750, -24.527135 ], [ 42.890625, -22.593726 ], [ 44.296875, -19.311143 ], [ 43.593750, -17.308688 ], [ 49.218750, -11.867351 ] ] ], [ [ [ -62.578125, 10.487812 ], [ -59.765625, 8.407168 ], [ -57.656250, 6.315299 ], [ -54.140625, 6.315299 ], [ -52.031250, 4.915833 ], [ -52.734375, 3.513421 ], [ -51.328125, 4.214943 ], [ -50.625000, 2.108899 ], [ -50.625000, 0.000000 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -40.078125, -2.811371 ], [ -35.859375, -4.915833 ], [ -35.156250, -7.013668 ], [ -39.375000, -12.554564 ], [ -41.484375, -21.289374 ], [ -47.812500, -24.527135 ], [ -49.218750, -28.304381 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -54.140625, -31.952162 ], [ -54.140625, -34.307144 ], [ -56.250000, -34.307144 ], [ -59.062500, -33.724340 ], [ -59.062500, -34.307144 ], [ -56.953125, -36.031332 ], [ -58.359375, -37.718590 ], [ -62.578125, -38.822591 ], [ -62.578125, -40.446947 ], [ -65.390625, -40.979898 ], [ -65.390625, -42.032974 ], [ -63.984375, -42.553080 ], [ -65.390625, -43.068888 ], [ -66.093750, -44.590467 ], [ -67.500000, -45.089036 ], [ -68.203125, -46.073231 ], [ -66.093750, -47.040182 ], [ -69.609375, -50.289339 ], [ -68.203125, -52.052490 ], [ -68.906250, -52.052490 ], [ -71.015625, -52.482780 ], [ -71.718750, -53.748711 ], [ -75.234375, -52.052490 ], [ -75.937500, -48.458352 ], [ -74.531250, -46.558860 ], [ -75.937500, -46.558860 ], [ -74.531250, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.125000, -42.032974 ], [ -74.531250, -43.068888 ], [ -73.828125, -36.597889 ], [ -71.718750, -31.952162 ], [ -69.609375, -17.308688 ], [ -71.015625, -17.978733 ], [ -76.640625, -14.604847 ], [ -80.156250, -7.013668 ], [ -81.562500, -5.615986 ], [ -81.562500, -3.513421 ], [ -80.859375, -2.811371 ], [ -80.156250, -2.108899 ], [ -81.562500, -2.108899 ], [ -81.562500, -0.703107 ], [ -80.156250, 1.406109 ], [ -79.453125, 1.406109 ], [ -75.937500, 0.000000 ], [ -79.453125, 2.108899 ], [ -77.343750, 4.214943 ], [ -78.046875, 7.710992 ], [ -75.234375, 11.178402 ], [ -71.718750, 12.554564 ], [ -71.718750, 11.867351 ], [ -71.718750, 9.102097 ], [ -70.312500, 12.554564 ], [ -68.203125, 11.178402 ], [ -62.578125, 11.178402 ], [ -62.578125, 10.487812 ] ], [ [ -70.312500, -33.724340 ], [ -70.312500, -29.535230 ], [ -71.015625, -31.353637 ], [ -70.312500, -33.724340 ] ], [ [ -69.609375, -10.487812 ], [ -71.015625, -10.487812 ], [ -68.906250, -12.554564 ], [ -69.609375, -10.487812 ] ], [ [ -61.171875, 5.615986 ], [ -65.390625, 4.214943 ], [ -63.281250, 4.214943 ], [ -61.171875, 5.615986 ] ], [ [ -57.656250, 6.315299 ], [ -58.359375, 4.214943 ], [ -57.656250, 3.513421 ], [ -57.656250, 6.315299 ] ], [ [ -54.843750, -24.527135 ], [ -54.843750, -25.799891 ], [ -54.140625, -25.799891 ], [ -54.140625, -25.165173 ], [ -54.843750, -24.527135 ] ], [ [ -57.656250, 2.108899 ], [ -59.062500, 2.108899 ], [ -59.062500, 1.406109 ], [ -57.656250, 2.108899 ] ], [ [ -75.937500, 0.000000 ], [ -75.937500, -0.703107 ], [ -75.234375, 0.000000 ], [ -75.937500, 0.000000 ] ] ], [ [ [ 177.890625, -17.308688 ], [ 177.890625, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.308688 ], [ 177.890625, -17.308688 ] ] ], [ [ [ -182.109375, -17.308688 ], [ -182.109375, -17.978733 ], [ -182.812500, -17.978733 ], [ -182.812500, -17.308688 ], [ -182.109375, -17.308688 ] ] ], [ [ [ -73.125000, 83.277705 ], [ -68.906250, 83.111071 ], [ -63.984375, 82.940327 ], [ -61.875000, 82.676285 ], [ -62.578125, 82.402423 ], [ -68.203125, 81.518272 ], [ -66.093750, 81.518272 ], [ -69.609375, 80.647035 ], [ -71.718750, 79.812302 ], [ -74.531250, 79.432371 ], [ -77.343750, 79.432371 ], [ -75.937500, 79.302640 ], [ -76.640625, 79.038437 ], [ -75.937500, 78.630006 ], [ -80.156250, 77.312520 ], [ -80.156250, 76.999935 ], [ -78.046875, 77.157163 ], [ -78.046875, 76.840816 ], [ -80.859375, 76.184995 ], [ -83.671875, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.999935 ], [ -87.890625, 77.312520 ], [ -88.593750, 77.915669 ], [ -85.078125, 77.617709 ], [ -86.484375, 78.206563 ], [ -88.593750, 78.490552 ], [ -85.781250, 79.432371 ], [ -87.187500, 80.297927 ], [ -83.671875, 80.178713 ], [ -82.265625, 80.532071 ], [ -87.890625, 80.532071 ], [ -90.000000, 80.872827 ], [ -92.109375, 81.923186 ], [ -87.187500, 82.308893 ], [ -85.781250, 82.676285 ], [ -83.671875, 82.402423 ], [ -82.968750, 82.940327 ], [ -79.453125, 83.194896 ], [ -76.640625, 83.194896 ], [ -75.937500, 83.111071 ], [ -73.125000, 83.277705 ] ] ], [ [ [ -82.968750, 73.824820 ], [ -80.859375, 72.816074 ], [ -80.859375, 72.181804 ], [ -78.046875, 72.816074 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -72.421875, 71.746432 ], [ -68.203125, 70.140364 ], [ -67.500000, 69.411242 ], [ -68.906250, 68.911005 ], [ -65.390625, 67.875541 ], [ -63.984375, 67.067433 ], [ -61.875000, 67.067433 ], [ -63.984375, 65.072130 ], [ -66.796875, 66.513260 ], [ -68.203125, 66.513260 ], [ -68.203125, 65.946472 ], [ -64.687500, 63.548552 ], [ -65.390625, 62.915233 ], [ -68.906250, 63.860036 ], [ -66.796875, 61.938950 ], [ -71.718750, 62.915233 ], [ -75.234375, 64.774125 ], [ -78.046875, 64.472794 ], [ -78.750000, 64.774125 ], [ -78.046875, 65.366837 ], [ -74.531250, 65.658275 ], [ -73.125000, 67.875541 ], [ -75.937500, 68.399180 ], [ -77.343750, 68.911005 ], [ -76.640625, 69.162558 ], [ -79.453125, 70.377854 ], [ -81.562500, 69.900118 ], [ -82.968750, 69.900118 ], [ -89.296875, 70.612614 ], [ -90.000000, 70.844673 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.703125, 72.395706 ], [ -88.593750, 73.627789 ], [ -86.484375, 73.824820 ], [ -87.187500, 73.226700 ], [ -85.781250, 72.607120 ], [ -85.078125, 73.428424 ], [ -82.968750, 73.824820 ] ] ], [ [ [ -175.078125, 67.067433 ], [ -172.265625, 67.067433 ], [ -170.156250, 66.231457 ], [ -172.968750, 65.658275 ], [ -172.968750, 64.472794 ], [ -176.484375, 65.366837 ], [ -178.593750, 65.658275 ], [ -179.296875, 66.231457 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.072130 ], [ -182.812500, 64.774125 ], [ -181.406250, 62.593341 ], [ -182.812500, 62.593341 ], [ -187.031250, 61.606396 ], [ -187.031250, 69.900118 ], [ -184.921875, 69.900118 ], [ -180.000000, 69.162558 ], [ -175.078125, 67.339861 ], [ -175.078125, 67.067433 ] ] ], [ [ [ -92.812500, 81.308321 ], [ -91.406250, 80.760615 ], [ -87.890625, 80.415707 ], [ -87.187500, 79.687184 ], [ -86.484375, 79.432371 ], [ -88.593750, 78.490552 ], [ -89.296875, 78.349411 ], [ -93.515625, 78.349411 ], [ -94.218750, 78.767792 ], [ -93.515625, 79.432371 ], [ -95.625000, 79.432371 ], [ -97.031250, 80.178713 ], [ -95.625000, 80.983688 ], [ -94.921875, 80.983688 ], [ -94.921875, 81.308321 ], [ -92.812500, 81.308321 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 17.578125, 79.812302 ], [ 21.093750, 79.038437 ], [ 18.984375, 78.630006 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 13.359375, 77.466028 ], [ 14.062500, 77.767582 ], [ 10.546875, 78.903929 ], [ 9.843750, 79.687184 ], [ 12.656250, 80.058050 ], [ 13.359375, 79.687184 ], [ 14.765625, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ -97.031250, 77.312520 ], [ -94.921875, 77.157163 ], [ -94.218750, 76.840816 ], [ -92.109375, 76.840816 ], [ -91.406250, 76.184995 ], [ -89.296875, 75.672197 ], [ -81.562500, 75.845169 ], [ -80.156250, 75.497157 ], [ -80.859375, 74.775843 ], [ -88.593750, 74.402163 ], [ -92.812500, 74.959392 ], [ -94.218750, 76.351896 ], [ -97.734375, 76.840816 ], [ -97.031250, 77.312520 ] ] ], [ [ [ 95.625000, 81.308321 ], [ 99.843750, 79.812302 ], [ 99.843750, 78.903929 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.171335 ], [ 90.703125, 80.415707 ], [ 93.515625, 81.093214 ], [ 95.625000, 81.308321 ] ] ], [ [ [ 140.625000, -9.102097 ], [ 137.109375, -8.407168 ], [ 138.515625, -7.013668 ], [ 137.812500, -4.915833 ], [ 133.593750, -3.513421 ], [ 132.890625, -3.513421 ], [ 131.484375, -2.811371 ], [ 133.593750, -2.108899 ], [ 130.078125, -0.703107 ], [ 133.593750, -0.703107 ], [ 135.000000, -2.811371 ], [ 137.109375, -1.406109 ], [ 140.625000, -2.108899 ], [ 146.953125, -5.615986 ], [ 146.953125, -7.013668 ], [ 150.468750, -10.487812 ], [ 147.656250, -9.795678 ], [ 144.140625, -7.013668 ], [ 142.031250, -9.102097 ], [ 140.625000, -9.102097 ] ] ], [ [ [ 115.312500, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.828125, 5.615986 ], [ 118.125000, 4.915833 ], [ 115.312500, 4.915833 ], [ 117.421875, 4.214943 ], [ 117.421875, 2.108899 ], [ 118.828125, 1.406109 ], [ 117.421875, 1.406109 ], [ 116.015625, -3.513421 ], [ 109.687500, -2.811371 ], [ 108.984375, 0.000000 ], [ 108.984375, 2.108899 ], [ 109.687500, 1.406109 ], [ 110.390625, 1.406109 ], [ 113.906250, 4.915833 ], [ 115.312500, 5.615986 ] ] ], [ [ [ -5.625000, 56.170023 ], [ -6.328125, 56.944974 ], [ -5.625000, 58.813742 ], [ -3.515625, 58.813742 ], [ -4.218750, 57.704147 ], [ -2.109375, 57.704147 ], [ -3.515625, 56.170023 ], [ -2.109375, 56.170023 ], [ 0.000000, 53.330873 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ -5.625000, 50.289339 ], [ -3.515625, 51.618017 ], [ -5.625000, 52.052490 ], [ -4.921875, 52.482780 ], [ -4.921875, 53.748711 ], [ -3.515625, 53.748711 ], [ -3.515625, 54.162434 ], [ -4.921875, 54.977614 ], [ -5.625000, 56.170023 ] ] ], [ [ [ -109.687500, 76.840816 ], [ -108.281250, 76.351896 ], [ -108.281250, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.875000, 75.140778 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -111.796875, 75.320025 ], [ -118.125000, 75.320025 ], [ -116.015625, 76.516819 ], [ -113.203125, 76.184995 ], [ -111.093750, 75.672197 ], [ -109.687500, 75.497157 ], [ -111.093750, 76.516819 ], [ -109.687500, 76.840816 ] ] ], [ [ [ 127.265625, -7.710992 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.407168 ], [ 127.265625, -7.710992 ] ] ], [ [ [ 122.343750, -7.710992 ], [ 119.531250, -8.407168 ], [ 120.234375, -7.710992 ], [ 122.343750, -7.710992 ] ] ], [ [ [ -78.046875, 25.799891 ], [ -78.046875, 23.885838 ], [ -78.750000, 25.799891 ], [ -78.046875, 25.799891 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 108.281250, -6.315299 ], [ 110.390625, -6.315299 ], [ 115.312500, -7.710992 ], [ 104.765625, -6.315299 ], [ 105.468750, -5.615986 ] ] ], [ [ [ -16.171875, 66.791909 ], [ -14.765625, 66.513260 ], [ -14.062500, 65.366837 ], [ -18.984375, 63.548552 ], [ -23.203125, 64.168107 ], [ -21.796875, 64.472794 ], [ -24.609375, 65.072130 ], [ -22.500000, 65.366837 ], [ -24.609375, 65.658275 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -21.093750, 65.946472 ], [ -19.687500, 66.513260 ], [ -18.281250, 66.231457 ], [ -16.171875, 66.791909 ] ] ], [ [ [ 151.171875, -3.513421 ], [ 151.875000, -4.214943 ], [ 151.875000, -4.915833 ], [ 149.765625, -6.315299 ], [ 147.656250, -5.615986 ], [ 150.468750, -4.915833 ], [ 151.171875, -3.513421 ] ] ], [ [ [ 97.031250, 5.615986 ], [ 101.250000, 2.811371 ], [ 103.359375, 0.703107 ], [ 103.359375, -0.703107 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 101.953125, -4.214943 ], [ 94.921875, 5.615986 ], [ 97.031250, 5.615986 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 120.234375, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.108899 ], [ 120.234375, -4.915833 ], [ 118.828125, -4.915833 ], [ 118.125000, -2.108899 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 22.500000, 80.760615 ], [ 25.312500, 80.415707 ], [ 26.718750, 80.058050 ], [ 25.312500, 79.560546 ], [ 22.500000, 79.432371 ], [ 19.687500, 79.687184 ], [ 16.875000, 80.415707 ], [ 20.390625, 80.647035 ], [ 21.796875, 80.415707 ], [ 22.500000, 80.760615 ] ] ], [ [ [ 141.328125, 76.184995 ], [ 144.843750, 75.672197 ], [ 144.140625, 74.959392 ], [ 138.515625, 74.775843 ], [ 136.406250, 75.320025 ], [ 137.109375, 76.016094 ], [ 138.515625, 76.184995 ], [ 141.328125, 76.184995 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 36.031332 ], [ 136.406250, 37.718590 ], [ 137.109375, 37.160317 ], [ 139.218750, 38.272689 ], [ 139.218750, 40.979898 ], [ 141.328125, 41.508577 ], [ 141.328125, 39.368279 ], [ 140.625000, 37.160317 ], [ 139.921875, 35.460670 ], [ 135.703125, 33.724340 ], [ 135.000000, 34.885931 ], [ 132.890625, 34.307144 ], [ 130.781250, 34.307144 ] ] ], [ [ [ -116.718750, 77.767582 ], [ -117.421875, 76.679785 ], [ -121.640625, 76.016094 ], [ -123.046875, 76.184995 ], [ -119.531250, 77.617709 ], [ -116.718750, 77.767582 ] ] ], [ [ [ 130.078125, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.265625, -2.811371 ], [ 130.078125, -2.811371 ] ] ], [ [ [ -85.781250, 11.178402 ], [ -87.890625, 13.239945 ], [ -83.671875, 15.284185 ], [ -83.671875, 11.178402 ], [ -82.968750, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.046875, 7.710992 ], [ -79.453125, 9.102097 ], [ -80.859375, 7.710992 ], [ -82.968750, 8.407168 ], [ -85.781250, 11.178402 ] ] ], [ [ [ -94.921875, 74.211983 ], [ -90.703125, 74.019543 ], [ -94.921875, 72.181804 ], [ -95.625000, 72.181804 ], [ -96.328125, 73.627789 ], [ -94.921875, 74.211983 ] ] ], [ [ [ 127.265625, 2.811371 ], [ 128.671875, 1.406109 ], [ 127.968750, -0.703107 ], [ 127.265625, 2.811371 ] ] ], [ [ [ -99.140625, 76.840816 ], [ -98.437500, 75.140778 ], [ -99.843750, 74.959392 ], [ -101.250000, 75.140778 ], [ -101.250000, 75.672197 ], [ -102.656250, 75.672197 ], [ -102.656250, 76.351896 ], [ -99.140625, 76.840816 ] ] ], [ [ [ 101.953125, 79.432371 ], [ 104.765625, 78.767792 ], [ 104.765625, 78.349411 ], [ 99.140625, 78.061989 ], [ 101.953125, 79.432371 ] ] ], [ [ [ -86.484375, 65.946472 ], [ -85.781250, 65.658275 ], [ -80.156250, 63.860036 ], [ -81.562500, 63.548552 ], [ -83.671875, 64.168107 ], [ -85.781250, 63.233627 ], [ -86.484375, 63.860036 ], [ -87.890625, 63.548552 ], [ -86.484375, 65.946472 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -56.953125, 49.837982 ], [ -54.140625, 49.382373 ], [ -53.437500, 47.040182 ], [ -54.843750, 47.040182 ], [ -54.843750, 47.989922 ], [ -55.546875, 47.040182 ], [ -56.953125, 47.989922 ], [ -59.765625, 47.989922 ], [ -57.656250, 50.736455 ], [ -55.546875, 51.618017 ] ] ], [ [ [ -106.171875, 79.302640 ], [ -101.250000, 78.903929 ], [ -100.546875, 78.349411 ], [ -99.843750, 77.915669 ], [ -105.468750, 78.490552 ], [ -104.765625, 78.767792 ], [ -106.171875, 79.302640 ] ] ], [ [ [ -7.734375, 55.379110 ], [ -7.031250, 55.379110 ], [ -6.328125, 54.572062 ], [ -6.328125, 54.162434 ], [ -7.031250, 52.482780 ], [ -10.546875, 52.052490 ], [ -9.843750, 54.162434 ], [ -7.734375, 55.379110 ] ] ], [ [ [ 141.328125, 45.583290 ], [ 143.437500, 44.590467 ], [ 144.843750, 44.590467 ], [ 144.843750, 43.580391 ], [ 142.734375, 42.032974 ], [ 141.328125, 43.068888 ], [ 140.625000, 42.032974 ], [ 139.921875, 42.032974 ], [ 141.328125, 45.583290 ] ] ], [ [ [ 123.046875, 8.407168 ], [ 125.156250, 9.795678 ], [ 125.859375, 9.102097 ], [ 125.156250, 5.615986 ], [ 123.046875, 8.407168 ] ] ], [ [ [ 49.921875, 80.983688 ], [ 51.328125, 80.760615 ], [ 47.109375, 80.058050 ], [ 46.406250, 80.297927 ], [ 46.406250, 80.647035 ], [ 44.296875, 80.647035 ], [ 47.812500, 80.872827 ], [ 48.515625, 80.532071 ], [ 49.921875, 80.983688 ] ] ], [ [ [ 123.750000, 13.239945 ], [ 125.156250, 12.554564 ], [ 124.453125, 10.487812 ], [ 123.750000, 11.867351 ], [ 123.750000, 12.554564 ], [ 120.937500, 13.923404 ], [ 119.531250, 15.284185 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 122.343750, 17.308688 ], [ 121.640625, 14.604847 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 141.328125, 53.330873 ], [ 142.031250, 54.572062 ], [ 144.140625, 49.382373 ], [ 142.734375, 49.382373 ], [ 142.031250, 47.989922 ] ] ], [ [ [ 79.453125, 10.487812 ], [ 80.156250, 9.795678 ], [ 81.562500, 7.710992 ], [ 80.156250, 6.315299 ], [ 79.453125, 10.487812 ] ] ], [ [ [ 22.500000, 78.490552 ], [ 24.609375, 77.915669 ], [ 21.796875, 77.466028 ], [ 20.390625, 77.767582 ], [ 20.390625, 78.349411 ], [ 22.500000, 78.490552 ] ] ], [ [ [ -78.750000, 73.824820 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.022592 ], [ -78.046875, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.859375, 73.824820 ], [ -78.750000, 73.824820 ] ] ], [ [ [ -99.140625, 78.903929 ], [ -97.031250, 78.767792 ], [ -95.625000, 78.490552 ], [ -96.328125, 78.061989 ], [ -97.031250, 77.915669 ], [ -97.734375, 77.915669 ], [ -98.437500, 78.206563 ], [ -99.140625, 78.903929 ] ] ], [ [ [ 100.546875, 6.315299 ], [ 102.656250, 5.615986 ], [ 104.062500, 1.406109 ], [ 101.250000, 2.811371 ], [ 100.546875, 6.315299 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 150.468750, 75.140778 ], [ 149.062500, 74.775843 ], [ 147.656250, 74.959392 ], [ 145.546875, 75.320025 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ -111.796875, 78.206563 ], [ -110.390625, 78.061989 ], [ -110.390625, 77.767582 ], [ -112.500000, 77.466028 ], [ -113.906250, 77.767582 ], [ -111.796875, 78.206563 ] ] ], [ [ [ -81.562500, 23.241346 ], [ -78.750000, 22.593726 ], [ -74.531250, 20.632784 ], [ -78.046875, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.750000, 21.943046 ], [ -81.562500, 23.241346 ] ] ], [ [ [ 118.828125, 11.867351 ], [ 119.531250, 11.178402 ], [ 116.718750, 8.407168 ], [ 118.828125, 11.867351 ] ] ], [ [ [ -105.468750, 73.824820 ], [ -104.765625, 73.428424 ], [ -105.468750, 72.816074 ], [ -106.875000, 73.226700 ], [ -107.578125, 73.627789 ], [ -105.468750, 73.824820 ] ] ], [ [ [ 142.031250, 74.019543 ], [ 143.437500, 73.226700 ], [ 139.218750, 73.428424 ], [ 142.031250, 74.019543 ] ] ], [ [ [ 121.640625, 12.554564 ], [ 123.046875, 11.867351 ], [ 121.640625, 10.487812 ], [ 121.640625, 12.554564 ] ] ], [ [ [ -71.718750, 19.973349 ], [ -68.906250, 18.646245 ], [ -71.718750, 17.978733 ], [ -71.718750, 18.646245 ], [ -74.531250, 18.646245 ], [ -72.421875, 19.311143 ], [ -73.828125, 19.973349 ], [ -71.718750, 19.973349 ] ] ], [ [ [ -61.875000, 11.178402 ], [ -61.171875, 10.487812 ], [ -62.578125, 10.487812 ], [ -61.875000, 11.178402 ] ] ], [ [ [ -180.000000, 71.524909 ], [ -180.000000, 71.746432 ], [ -177.890625, 71.300793 ], [ -179.296875, 71.074056 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.300793 ], [ -180.000000, 71.524909 ] ] ], [ [ [ -94.921875, 75.672197 ], [ -94.218750, 75.140778 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.959392 ], [ -94.921875, 75.672197 ] ] ], [ [ [ 134.296875, 34.307144 ], [ 133.593750, 33.724340 ], [ 132.187500, 33.137551 ], [ 132.890625, 34.307144 ], [ 134.296875, 34.307144 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 182.109375, 71.300793 ], [ 180.703125, 71.074056 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.300793 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 131.484375, 33.724340 ], [ 130.781250, 31.952162 ], [ 130.078125, 31.952162 ], [ 129.375000, 33.724340 ], [ 130.781250, 34.307144 ] ] ], [ [ [ 120.937500, 25.799891 ], [ 121.640625, 24.527135 ], [ 120.234375, 22.593726 ], [ 119.531250, 23.885838 ], [ 120.937500, 25.799891 ] ] ], [ [ [ -75.937500, 68.399180 ], [ -75.234375, 68.138852 ], [ -75.937500, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.609221 ], [ -75.937500, 68.399180 ] ] ], [ [ [ 120.937500, 13.923404 ], [ 120.937500, 12.554564 ], [ 120.234375, 13.923404 ], [ 120.937500, 13.923404 ] ] ], [ [ [ -133.593750, 54.572062 ], [ -132.187500, 54.162434 ], [ -131.484375, 52.482780 ], [ -133.593750, 53.748711 ], [ -133.593750, 54.572062 ] ] ], [ [ [ -111.796875, 78.903929 ], [ -109.687500, 78.630006 ], [ -113.203125, 78.490552 ], [ -111.796875, 78.903929 ] ] ], [ [ [ -94.921875, 77.915669 ], [ -94.218750, 77.617709 ], [ -96.328125, 77.617709 ], [ -97.031250, 77.915669 ], [ -94.921875, 77.915669 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 125.156250, 2.108899 ], [ 123.046875, 0.703107 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 110.390625, 20.632784 ], [ 109.687500, 19.311143 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.973349 ], [ 110.390625, 20.632784 ] ] ], [ [ [ -152.578125, 58.077876 ], [ -153.281250, 57.326521 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.704147 ], [ -152.578125, 58.077876 ] ] ], [ [ [ 120.937500, -2.108899 ], [ 123.046875, -4.915833 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.108899 ] ] ], [ [ [ -61.171875, 49.837982 ], [ -61.171875, 48.922499 ], [ -62.578125, 48.922499 ], [ -62.578125, 49.837982 ], [ -61.171875, 49.837982 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 142.734375, 47.040182 ], [ 142.031250, 46.073231 ], [ 142.031250, 47.989922 ] ] ], [ [ [ -165.937500, 60.586967 ], [ -165.937500, 60.239811 ], [ -168.046875, 60.239811 ], [ -165.937500, 60.586967 ] ] ], [ [ [ -66.093750, 18.646245 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ], [ [ [ -156.093750, 20.632784 ], [ -155.390625, 19.973349 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.171875, -79.560546 ], [ -59.765625, -79.935918 ], [ -60.468750, -80.983688 ], [ -64.687500, -80.872827 ], [ -66.796875, -80.178713 ], [ -62.578125, -80.297927 ], [ -61.171875, -79.560546 ] ] ], [ [ [ -47.109375, -77.767582 ], [ -45.703125, -77.915669 ], [ -44.296875, -78.349411 ], [ -43.593750, -79.935918 ], [ -48.515625, -80.760615 ], [ -50.625000, -80.983688 ], [ -53.437500, -80.872827 ], [ -54.843750, -80.532071 ], [ -54.140625, -80.178713 ], [ -52.031250, -79.935918 ], [ -49.218750, -77.915669 ], [ -47.109375, -77.767582 ] ] ], [ [ [ -58.359375, -63.233627 ], [ -59.062500, -63.860036 ], [ -62.578125, -64.774125 ], [ -62.578125, -65.946472 ], [ -63.984375, -66.231457 ], [ -66.093750, -67.875541 ], [ -63.281250, -69.162558 ], [ -61.875000, -71.074056 ], [ -61.171875, -73.022592 ], [ -61.875000, -74.019543 ], [ -64.687500, -75.140778 ], [ -70.312500, -76.184995 ], [ -71.015625, -76.516819 ], [ -77.343750, -76.679785 ], [ -73.828125, -77.767582 ], [ -75.234375, -78.206563 ], [ -76.640625, -78.061989 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.171335 ], [ -75.937500, -80.178713 ], [ -73.828125, -80.415707 ], [ -68.203125, -81.308321 ], [ -63.281250, -81.723188 ], [ -59.765625, -82.308893 ], [ -58.359375, -83.194896 ], [ -54.140625, -82.214217 ], [ -49.921875, -81.723188 ], [ -47.812500, -81.621352 ], [ -42.890625, -82.021378 ], [ -40.781250, -81.308321 ], [ -38.671875, -81.308321 ], [ -28.828125, -80.297927 ], [ -30.234375, -79.171335 ], [ -35.859375, -79.432371 ], [ -35.859375, -78.061989 ], [ -29.531250, -76.516819 ], [ -22.500000, -76.016094 ], [ -17.578125, -74.959392 ], [ -16.171875, -74.402163 ], [ -16.171875, -73.428424 ], [ -12.656250, -72.395706 ], [ -10.546875, -71.074056 ], [ -7.734375, -71.524909 ], [ -7.031250, -70.844673 ], [ -4.921875, -71.300793 ], [ -0.703125, -71.074056 ], [ -0.703125, -71.524909 ], [ 7.734375, -69.657086 ], [ 9.140625, -69.900118 ], [ 10.546875, -70.612614 ], [ 13.359375, -69.900118 ], [ 14.765625, -70.377854 ], [ 16.875000, -69.900118 ], [ 21.093750, -69.900118 ], [ 22.500000, -70.612614 ], [ 26.718750, -70.377854 ], [ 31.640625, -69.657086 ], [ 33.750000, -68.399180 ], [ 37.968750, -69.657086 ], [ 41.484375, -68.399180 ], [ 54.140625, -65.658275 ], [ 56.250000, -65.946472 ], [ 61.171875, -67.875541 ], [ 63.984375, -67.339861 ], [ 68.203125, -67.875541 ], [ 69.609375, -69.162558 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 67.500000, -71.746432 ], [ 69.609375, -72.181804 ], [ 71.015625, -71.965388 ], [ 73.828125, -69.657086 ], [ 77.343750, -69.411242 ], [ 78.750000, -68.138852 ], [ 81.562500, -67.339861 ], [ 86.484375, -67.067433 ], [ 87.890625, -65.946472 ], [ 89.296875, -67.067433 ], [ 95.625000, -67.339861 ], [ 99.140625, -67.067433 ], [ 102.656250, -65.366837 ], [ 106.171875, -66.791909 ], [ 109.687500, -66.513260 ], [ 113.203125, -65.658275 ], [ 115.312500, -66.513260 ], [ 119.531250, -67.067433 ], [ 123.046875, -66.231457 ], [ 128.671875, -66.513260 ], [ 134.296875, -65.946472 ], [ 135.000000, -65.072130 ], [ 137.109375, -66.791909 ], [ 144.843750, -66.791909 ], [ 146.250000, -67.875541 ], [ 148.359375, -68.138852 ], [ 151.875000, -68.656555 ], [ 153.984375, -68.399180 ], [ 158.906250, -69.411242 ], [ 161.015625, -70.377854 ], [ 166.640625, -70.612614 ], [ 170.859375, -71.524909 ], [ 168.750000, -73.627789 ], [ 165.937500, -74.211983 ], [ 163.125000, -76.184995 ], [ 164.531250, -78.061989 ], [ 165.937500, -78.206563 ], [ 166.640625, -78.630006 ], [ 161.718750, -79.038437 ], [ 159.609375, -80.872827 ], [ 163.125000, -82.308893 ], [ 168.750000, -83.277705 ], [ 168.750000, -83.753911 ], [ 172.265625, -83.979259 ], [ 172.968750, -84.405941 ], [ 175.781250, -84.124973 ], [ 180.000000, -84.673513 ], [ 180.703125, -84.124973 ], [ 182.109375, -84.405941 ], [ 183.515625, -84.052561 ], [ 184.921875, -84.474065 ], [ 187.031250, -84.052561 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.405941 ], [ -184.218750, -84.124973 ], [ -180.000000, -84.673513 ], [ -179.296875, -84.124973 ], [ -177.890625, -84.405941 ], [ -176.484375, -84.052561 ], [ -175.078125, -84.474065 ], [ -172.968750, -84.052561 ], [ -170.156250, -83.829945 ], [ -167.343750, -84.541361 ], [ -163.125000, -85.051129 ], [ -158.203125, -85.345325 ], [ -155.390625, -85.051129 ], [ -151.171875, -85.287916 ], [ -149.062500, -85.568066 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.541361 ], [ -146.953125, -84.474065 ], [ -150.468750, -84.267172 ], [ -151.171875, -83.829945 ], [ -153.984375, -83.676943 ], [ -153.281250, -82.021378 ], [ -157.500000, -81.093214 ], [ -152.578125, -80.983688 ], [ -151.171875, -81.308321 ], [ -147.656250, -80.647035 ], [ -146.953125, -79.812302 ], [ -149.765625, -79.302640 ], [ -155.390625, -79.038437 ], [ -158.203125, -77.915669 ], [ -158.906250, -76.840816 ], [ -157.500000, -77.157163 ], [ -153.984375, -76.999935 ], [ -153.281250, -77.466028 ], [ -151.875000, -77.312520 ], [ -146.250000, -76.351896 ], [ -146.250000, -75.320025 ], [ -145.546875, -75.140778 ], [ -144.843750, -75.497157 ], [ -135.703125, -74.211983 ], [ -121.640625, -74.402163 ], [ -118.125000, -74.019543 ], [ -116.718750, -74.211983 ], [ -114.609375, -73.627789 ], [ -112.500000, -74.590108 ], [ -111.796875, -74.402163 ], [ -107.578125, -75.140778 ], [ -105.468750, -74.775843 ], [ -101.250000, -75.140778 ], [ -100.546875, -74.775843 ], [ -101.953125, -74.019543 ], [ -102.656250, -74.019543 ], [ -104.062500, -72.607120 ], [ -99.140625, -72.816074 ], [ -97.734375, -73.428424 ], [ -97.031250, -73.428424 ], [ -92.812500, -73.022592 ], [ -90.703125, -73.226700 ], [ -89.296875, -72.395706 ], [ -88.593750, -72.816074 ], [ -81.562500, -73.824820 ], [ -80.859375, -73.022592 ], [ -76.640625, -73.824820 ], [ -75.234375, -73.824820 ], [ -67.500000, -72.395706 ], [ -68.906250, -69.657086 ], [ -67.500000, -66.791909 ], [ -63.281250, -64.472794 ], [ -58.359375, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -160.312500, -78.630006 ], [ -159.609375, -79.432371 ], [ -161.718750, -79.560546 ], [ -163.125000, -79.171335 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -123.046875, -73.226700 ], [ -121.640625, -73.428424 ], [ -118.828125, -73.428424 ], [ -120.234375, -74.019543 ], [ -123.046875, -73.627789 ], [ -123.046875, -73.226700 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -124.453125, -73.824820 ], [ -127.968750, -73.428424 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -97.031250, -71.746432 ], [ -96.328125, -72.395706 ], [ -101.250000, -72.395706 ], [ -102.656250, -71.746432 ], [ -97.031250, -71.746432 ] ] ], [ [ [ -70.312500, -68.656555 ], [ -68.906250, -70.844673 ], [ -68.906250, -71.965388 ], [ -72.421875, -72.395706 ], [ -72.421875, -71.965388 ], [ -74.531250, -72.181804 ], [ -75.234375, -71.965388 ], [ -74.531250, -71.074056 ], [ -72.421875, -71.074056 ], [ -72.421875, -69.411242 ], [ -70.312500, -68.656555 ] ] ], [ [ [ 68.906250, -48.458352 ], [ 70.312500, -48.922499 ], [ 69.609375, -49.382373 ], [ 68.203125, -49.382373 ], [ 68.906250, -48.458352 ] ] ], [ [ [ -68.906250, -52.482780 ], [ -68.203125, -53.748711 ], [ -65.390625, -54.572062 ], [ -66.093750, -54.977614 ], [ -67.500000, -54.572062 ], [ -68.203125, -55.379110 ], [ -71.015625, -54.977614 ], [ -75.234375, -52.482780 ], [ -71.718750, -53.748711 ], [ -70.312500, -52.908902 ], [ -68.906250, -52.482780 ] ] ], [ [ [ 50.625000, 26.431228 ], [ 51.328125, 25.799891 ], [ 50.625000, 25.165173 ], [ 50.625000, 26.431228 ] ] ], [ [ [ 43.593750, 10.487812 ], [ 48.515625, 11.867351 ], [ 48.515625, 11.178402 ], [ 49.218750, 11.867351 ], [ 50.625000, 12.554564 ], [ 50.625000, 11.178402 ], [ 48.515625, 5.615986 ], [ 41.484375, -1.406109 ], [ 38.671875, -4.214943 ], [ 38.671875, -8.407168 ], [ 40.078125, -9.795678 ], [ 40.078125, -14.604847 ], [ 34.453125, -19.311143 ], [ 35.156250, -23.885838 ], [ 32.343750, -26.431228 ], [ 30.937500, -28.921631 ], [ 27.421875, -33.137551 ], [ 18.984375, -34.307144 ], [ 18.281250, -33.724340 ], [ 17.578125, -31.353637 ], [ 16.171875, -28.304381 ], [ 11.250000, -16.636192 ], [ 13.359375, -11.178402 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 11.953125, -4.214943 ], [ 10.546875, -3.513421 ], [ 8.437500, -0.703107 ], [ 9.140625, 1.406109 ], [ 9.140625, 2.811371 ], [ 8.437500, 4.915833 ], [ 5.625000, 4.915833 ], [ 4.218750, 6.315299 ], [ 2.109375, 6.315299 ], [ 1.406250, 6.315299 ], [ 0.703125, 6.315299 ], [ -3.515625, 5.615986 ], [ -7.734375, 4.915833 ], [ -11.953125, 7.013668 ], [ -13.359375, 9.102097 ], [ -15.468750, 11.178402 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -14.765625, 13.923404 ], [ -16.875000, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 16.636192 ], [ -17.578125, 21.289374 ], [ -14.765625, 21.943046 ], [ -17.578125, 21.943046 ], [ -14.765625, 26.431228 ], [ -9.843750, 30.145127 ], [ -9.843750, 33.137551 ], [ -5.625000, 36.031332 ], [ -7.734375, 37.718590 ], [ -7.031250, 40.979898 ], [ -8.437500, 37.160317 ], [ -9.140625, 37.160317 ], [ -9.843750, 38.822591 ], [ -9.140625, 42.032974 ], [ -9.843750, 43.068888 ], [ -8.437500, 44.087585 ], [ -2.109375, 43.580391 ], [ -1.406250, 46.073231 ], [ -4.921875, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.837982 ], [ -1.406250, 49.382373 ], [ 2.109375, 51.179343 ], [ 2.812500, 51.618017 ], [ 4.218750, 53.330873 ], [ 5.625000, 53.748711 ], [ 6.328125, 53.748711 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 8.437500, 57.326521 ], [ 10.546875, 58.077876 ], [ 10.546875, 56.559482 ], [ 10.546875, 56.170023 ], [ 11.953125, 56.170023 ], [ 10.546875, 59.175928 ], [ 9.843750, 59.534318 ], [ 7.734375, 58.447733 ], [ 5.625000, 58.813742 ], [ 4.921875, 62.267923 ], [ 9.843750, 64.774125 ], [ 14.062500, 67.875541 ], [ 18.984375, 69.900118 ], [ 22.500000, 70.377854 ], [ 23.906250, 71.074056 ], [ 28.125000, 71.300793 ], [ 30.937500, 70.612614 ], [ 29.531250, 70.377854 ], [ 30.234375, 69.900118 ], [ 31.640625, 70.140364 ], [ 40.078125, 68.138852 ], [ 40.781250, 66.791909 ], [ 37.968750, 66.231457 ], [ 33.046875, 66.791909 ], [ 34.453125, 65.946472 ], [ 34.453125, 64.472794 ], [ 36.562500, 63.860036 ], [ 36.562500, 65.366837 ], [ 39.375000, 64.774125 ], [ 40.078125, 64.774125 ], [ 39.375000, 65.658275 ], [ 41.484375, 66.513260 ], [ 43.593750, 66.231457 ], [ 44.296875, 66.791909 ], [ 42.890625, 68.656555 ], [ 45.703125, 68.399180 ], [ 46.406250, 67.875541 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ], [ 45.703125, 66.791909 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 53.437500, 68.399180 ], [ 58.359375, 68.911005 ], [ 59.765625, 68.399180 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.900118 ], [ 63.281250, 69.657086 ], [ 68.203125, 68.138852 ], [ 68.906250, 68.656555 ], [ 66.796875, 69.657086 ], [ 66.093750, 71.074056 ], [ 69.609375, 73.226700 ], [ 72.421875, 72.816074 ], [ 71.718750, 71.524909 ], [ 72.421875, 69.162558 ], [ 73.125000, 68.656555 ], [ 71.015625, 66.513260 ], [ 72.421875, 66.231457 ], [ 74.531250, 67.875541 ], [ 74.531250, 69.162558 ], [ 73.828125, 69.162558 ], [ 73.125000, 69.657086 ], [ 73.828125, 70.844673 ], [ 72.421875, 71.524909 ], [ 74.531250, 72.181804 ], [ 74.531250, 73.022592 ], [ 75.234375, 72.395706 ], [ 75.234375, 71.965388 ], [ 77.343750, 72.395706 ], [ 79.453125, 72.395706 ], [ 80.859375, 71.965388 ], [ 80.156250, 73.824820 ], [ 86.484375, 74.019543 ], [ 85.781250, 74.590108 ], [ 86.484375, 75.140778 ], [ 92.812500, 75.845169 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 96.328125, 76.016094 ], [ 98.437500, 76.516819 ], [ 100.546875, 76.516819 ], [ 101.953125, 77.312520 ], [ 104.062500, 77.767582 ], [ 105.468750, 77.466028 ], [ 104.062500, 77.157163 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.516819 ], [ 107.578125, 76.840816 ], [ 110.390625, 76.840816 ], [ 113.906250, 76.016094 ], [ 113.203125, 75.497157 ], [ 108.984375, 74.211983 ], [ 111.796875, 73.824820 ], [ 112.500000, 74.019543 ], [ 113.203125, 73.428424 ], [ 115.312500, 73.824820 ], [ 118.125000, 73.627789 ], [ 118.828125, 73.226700 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 126.562500, 73.627789 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.181804 ], [ 130.781250, 70.844673 ], [ 132.187500, 71.965388 ], [ 133.593750, 71.524909 ], [ 135.000000, 71.746432 ], [ 137.109375, 71.524909 ], [ 137.812500, 71.746432 ], [ 139.218750, 71.524909 ], [ 138.515625, 72.607120 ], [ 139.921875, 73.022592 ], [ 149.062500, 72.395706 ], [ 152.578125, 70.844673 ], [ 158.906250, 71.074056 ], [ 159.609375, 69.900118 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 169.453125, 68.911005 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 178.593750, 69.411242 ], [ 180.000000, 69.162558 ], [ 184.921875, 67.339861 ], [ 184.921875, 67.067433 ], [ 187.031250, 67.067433 ], [ 187.031250, 64.472794 ], [ 183.515625, 65.366837 ], [ 181.406250, 65.658275 ], [ 180.703125, 66.231457 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.072130 ], [ 177.187500, 64.774125 ], [ 178.593750, 62.593341 ], [ 177.187500, 62.593341 ], [ 173.671875, 61.938950 ], [ 170.156250, 59.888937 ], [ 168.750000, 60.586967 ], [ 165.937500, 59.888937 ], [ 165.234375, 60.239811 ], [ 163.125000, 59.888937 ], [ 161.718750, 58.447733 ], [ 163.125000, 57.704147 ], [ 161.718750, 54.977614 ], [ 160.312500, 54.572062 ], [ 159.609375, 53.330873 ], [ 158.203125, 53.330873 ], [ 156.093750, 51.179343 ], [ 155.390625, 56.944974 ], [ 163.125000, 61.270233 ], [ 163.828125, 62.593341 ], [ 163.125000, 62.593341 ], [ 159.609375, 60.586967 ], [ 158.906250, 61.938950 ], [ 156.093750, 61.606396 ], [ 153.984375, 59.888937 ], [ 154.687500, 59.175928 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.888937 ], [ 148.359375, 59.175928 ], [ 142.031250, 59.175928 ], [ 135.000000, 54.977614 ], [ 137.812500, 54.162434 ], [ 139.218750, 54.572062 ], [ 141.328125, 53.330873 ], [ 139.921875, 48.458352 ], [ 134.296875, 43.580391 ], [ 132.890625, 43.068888 ], [ 132.187500, 43.580391 ], [ 130.078125, 42.553080 ], [ 127.265625, 39.909736 ], [ 127.968750, 38.822591 ], [ 129.375000, 36.031332 ], [ 125.859375, 34.885931 ], [ 125.859375, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 39.909736 ], [ 123.750000, 40.446947 ], [ 120.937500, 39.368279 ], [ 120.937500, 40.979898 ], [ 117.421875, 38.822591 ], [ 119.531250, 37.160317 ], [ 120.234375, 38.272689 ], [ 122.343750, 37.718590 ], [ 118.828125, 35.460670 ], [ 121.640625, 31.952162 ], [ 121.640625, 28.304381 ], [ 118.125000, 25.165173 ], [ 110.390625, 21.943046 ], [ 110.390625, 20.632784 ], [ 107.578125, 21.943046 ], [ 105.468750, 19.311143 ], [ 108.281250, 15.284185 ], [ 108.984375, 11.867351 ], [ 104.765625, 9.102097 ], [ 104.062500, 10.487812 ], [ 104.765625, 11.178402 ], [ 103.359375, 11.178402 ], [ 101.953125, 13.239945 ], [ 101.953125, 12.554564 ], [ 99.843750, 13.923404 ], [ 99.140625, 12.554564 ], [ 99.140625, 10.487812 ], [ 101.953125, 6.315299 ], [ 102.656250, 5.615986 ], [ 104.062500, 1.406109 ], [ 101.250000, 2.811371 ], [ 100.546875, 6.315299 ], [ 99.843750, 7.013668 ], [ 97.734375, 8.407168 ], [ 98.437500, 10.487812 ], [ 97.734375, 15.284185 ], [ 97.031250, 17.308688 ], [ 93.515625, 16.636192 ], [ 94.218750, 18.646245 ], [ 92.109375, 21.289374 ], [ 92.109375, 21.943046 ], [ 92.109375, 22.593726 ], [ 91.406250, 23.241346 ], [ 88.593750, 22.593726 ], [ 88.593750, 21.943046 ], [ 86.484375, 21.943046 ], [ 86.484375, 20.632784 ], [ 80.156250, 15.961329 ], [ 79.453125, 10.487812 ], [ 77.343750, 8.407168 ], [ 73.125000, 16.636192 ], [ 72.421875, 21.943046 ], [ 70.312500, 21.289374 ], [ 67.500000, 23.885838 ], [ 66.093750, 25.799891 ], [ 61.171875, 25.165173 ], [ 56.953125, 25.799891 ], [ 56.250000, 27.683528 ], [ 53.437500, 27.059126 ], [ 49.921875, 30.751278 ], [ 48.515625, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 50.625000, 25.165173 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 53.437500, 24.527135 ], [ 55.546875, 25.165173 ], [ 59.765625, 22.593726 ], [ 58.359375, 21.289374 ], [ 57.656250, 19.311143 ], [ 52.734375, 17.308688 ], [ 43.593750, 13.239945 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 34.453125, 28.304381 ], [ 33.750000, 27.683528 ], [ 36.562500, 22.593726 ], [ 37.968750, 18.646245 ], [ 38.671875, 15.961329 ], [ 41.484375, 13.923404 ], [ 42.890625, 13.239945 ], [ 42.187500, 12.554564 ], [ 42.890625, 11.867351 ], [ 43.593750, 10.487812 ] ], [ [ 13.359375, 46.073231 ], [ 11.953125, 45.583290 ], [ 11.953125, 44.590467 ], [ 18.281250, 40.446947 ], [ 16.171875, 40.446947 ], [ 15.468750, 38.272689 ], [ 14.765625, 40.446947 ], [ 10.546875, 42.553080 ], [ 9.843750, 44.087585 ], [ 8.437500, 44.590467 ], [ 7.031250, 44.087585 ], [ 1.406250, 42.553080 ], [ 2.812500, 42.032974 ], [ 0.703125, 41.508577 ], [ -0.703125, 37.718590 ], [ -5.625000, 36.031332 ], [ -2.812500, 35.460670 ], [ -1.406250, 36.031332 ], [ 7.734375, 37.160317 ], [ 9.140625, 37.718590 ], [ 10.546875, 37.160317 ], [ 9.843750, 34.885931 ], [ 11.250000, 33.137551 ], [ 18.984375, 30.751278 ], [ 20.390625, 33.137551 ], [ 24.609375, 31.952162 ], [ 33.750000, 31.353637 ], [ 34.453125, 33.137551 ], [ 35.156250, 33.724340 ], [ 35.859375, 34.885931 ], [ 35.859375, 36.031332 ], [ 35.859375, 37.160317 ], [ 34.453125, 37.160317 ], [ 29.531250, 36.597889 ], [ 27.421875, 37.160317 ], [ 26.015625, 38.272689 ], [ 26.015625, 39.909736 ], [ 28.125000, 41.508577 ], [ 26.718750, 40.979898 ], [ 26.015625, 40.979898 ], [ 23.203125, 40.979898 ], [ 22.500000, 40.979898 ], [ 23.203125, 40.446947 ], [ 23.906250, 37.718590 ], [ 22.500000, 38.272689 ], [ 22.500000, 36.597889 ], [ 21.093750, 37.160317 ], [ 19.687500, 39.909736 ], [ 19.687500, 42.553080 ], [ 18.984375, 42.032974 ], [ 18.281250, 42.553080 ], [ 13.359375, 45.583290 ], [ 13.359375, 46.073231 ] ], [ [ 23.203125, 66.231457 ], [ 21.796875, 65.946472 ], [ 21.093750, 64.472794 ], [ 17.578125, 62.915233 ], [ 16.875000, 61.606396 ], [ 18.281250, 60.239811 ], [ 16.171875, 58.813742 ], [ 15.468750, 56.170023 ], [ 12.656250, 55.379110 ], [ 11.953125, 54.977614 ], [ 10.546875, 56.170023 ], [ 9.843750, 55.379110 ], [ 10.546875, 54.162434 ], [ 11.953125, 54.572062 ], [ 14.062500, 53.330873 ], [ 14.765625, 54.162434 ], [ 17.578125, 54.977614 ], [ 19.687500, 54.977614 ], [ 21.093750, 55.379110 ], [ 20.390625, 56.170023 ], [ 21.093750, 57.704147 ], [ 22.500000, 58.077876 ], [ 23.906250, 57.326521 ], [ 24.609375, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.203125, 59.534318 ], [ 27.421875, 59.534318 ], [ 26.718750, 57.704147 ], [ 28.828125, 60.239811 ], [ 27.421875, 60.586967 ], [ 22.500000, 59.888937 ], [ 21.093750, 60.930432 ], [ 20.390625, 62.915233 ], [ 25.312500, 65.366837 ], [ 23.203125, 66.231457 ] ], [ [ 27.421875, 42.032974 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 33.046875, 42.032974 ], [ 36.562500, 41.508577 ], [ 42.890625, 41.508577 ], [ 41.484375, 42.032974 ], [ 39.375000, 43.580391 ], [ 44.296875, 42.553080 ], [ 37.265625, 45.089036 ], [ 36.562500, 45.583290 ], [ 38.671875, 47.517201 ], [ 34.453125, 46.558860 ], [ 35.859375, 45.583290 ], [ 33.750000, 44.590467 ], [ 32.343750, 45.583290 ], [ 33.046875, 46.073231 ], [ 31.640625, 47.040182 ], [ 29.531250, 45.583290 ], [ 28.125000, 44.087585 ], [ 27.421875, 42.032974 ] ], [ [ 48.515625, 47.040182 ], [ 48.515625, 46.558860 ], [ 46.406250, 45.089036 ], [ 48.515625, 42.032974 ], [ 49.921875, 40.446947 ], [ 48.515625, 38.822591 ], [ 48.515625, 37.718590 ], [ 50.625000, 37.160317 ], [ 53.437500, 37.718590 ], [ 52.031250, 40.446947 ], [ 52.734375, 40.979898 ], [ 54.140625, 40.979898 ], [ 53.437500, 42.553080 ], [ 52.734375, 41.508577 ], [ 52.031250, 42.032974 ], [ 49.921875, 45.089036 ], [ 52.734375, 45.583290 ], [ 52.734375, 47.040182 ], [ 48.515625, 47.040182 ] ], [ [ 11.953125, 23.885838 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 11.953125, 23.885838 ] ], [ [ -7.734375, 4.915833 ], [ -8.437500, 10.487812 ], [ -9.140625, 7.710992 ], [ -7.734375, 4.915833 ] ], [ [ 24.609375, -11.178402 ], [ 29.531250, -13.239945 ], [ 26.718750, -11.178402 ], [ 24.609375, -11.178402 ] ], [ [ 16.875000, 47.989922 ], [ 15.468750, 47.040182 ], [ 14.062500, 46.558860 ], [ 16.171875, 46.558860 ], [ 18.281250, 46.073231 ], [ 16.171875, 47.040182 ], [ 16.875000, 47.989922 ] ], [ [ 29.531250, -14.604847 ], [ 26.718750, -17.308688 ], [ 30.234375, -15.284185 ], [ 29.531250, -14.604847 ] ], [ [ 37.968750, 4.214943 ], [ 32.343750, 8.407168 ], [ 35.156250, 5.615986 ], [ 37.968750, 4.214943 ] ], [ [ 26.015625, 55.776573 ], [ 25.312500, 54.572062 ], [ 28.125000, 56.170023 ], [ 26.015625, 55.776573 ] ], [ [ 32.343750, -9.102097 ], [ 30.234375, -7.710992 ], [ 28.828125, -8.407168 ], [ 32.343750, -9.102097 ] ], [ [ 18.984375, 5.615986 ], [ 16.875000, 4.214943 ], [ 18.281250, 3.513421 ], [ 18.984375, 5.615986 ] ], [ [ 9.140625, 47.517201 ], [ 9.843750, 46.558860 ], [ 11.953125, 47.040182 ], [ 9.140625, 47.517201 ] ], [ [ 31.640625, 4.214943 ], [ 28.125000, 4.915833 ], [ 30.234375, 3.513421 ], [ 31.640625, 4.214943 ] ], [ [ 30.234375, -2.811371 ], [ 28.828125, -4.214943 ], [ 29.531250, -5.615986 ], [ 30.234375, -2.811371 ] ], [ [ 70.312500, 38.822591 ], [ 67.500000, 37.160317 ], [ 68.906250, 37.160317 ], [ 70.312500, 38.822591 ] ], [ [ 55.546875, 41.508577 ], [ 56.953125, 41.508577 ], [ 58.359375, 43.068888 ], [ 55.546875, 41.508577 ] ], [ [ -6.328125, 10.487812 ], [ -3.515625, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 11.867351 ], [ -6.328125, 10.487812 ] ], [ [ 60.468750, 36.597889 ], [ 60.468750, 33.137551 ], [ 61.171875, 36.031332 ], [ 60.468750, 36.597889 ] ], [ [ 7.031250, 34.307144 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.751278 ], [ 7.031250, 34.307144 ] ], [ [ 20.390625, 68.911005 ], [ 23.203125, 68.138852 ], [ 21.796875, 68.911005 ], [ 20.390625, 68.911005 ] ], [ [ -5.625000, 15.961329 ], [ -5.625000, 16.636192 ], [ -9.140625, 15.961329 ], [ -5.625000, 15.961329 ] ], [ [ 79.453125, 45.089036 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.580391 ], [ 79.453125, 45.089036 ] ], [ [ 119.531250, 51.618017 ], [ 117.421875, 49.837982 ], [ 118.828125, 50.289339 ], [ 119.531250, 51.618017 ] ], [ [ 120.937500, 53.330873 ], [ 119.531250, 52.908902 ], [ 120.234375, 52.052490 ], [ 120.937500, 53.330873 ] ], [ [ 41.484375, 4.915833 ], [ 37.968750, 4.214943 ], [ 41.484375, 4.214943 ], [ 41.484375, 4.915833 ] ], [ [ 74.531250, 37.718590 ], [ 73.828125, 37.718590 ], [ 74.531250, 37.160317 ], [ 77.343750, 36.031332 ], [ 74.531250, 37.718590 ] ], [ [ 12.656250, 47.517201 ], [ 9.140625, 47.989922 ], [ 9.140625, 47.517201 ], [ 12.656250, 47.517201 ] ], [ [ 21.796875, 42.553080 ], [ 22.500000, 41.508577 ], [ 22.500000, 44.087585 ], [ 21.796875, 42.553080 ] ], [ [ 2.109375, 12.554564 ], [ 0.703125, 11.178402 ], [ 2.812500, 11.867351 ], [ 2.109375, 12.554564 ] ], [ [ 33.046875, -10.487812 ], [ 34.453125, -11.178402 ], [ 33.046875, -9.102097 ], [ 33.046875, -10.487812 ] ], [ [ 21.796875, 42.553080 ], [ 21.093750, 43.068888 ], [ 20.390625, 42.553080 ], [ 20.390625, 42.032974 ], [ 21.796875, 42.553080 ] ], [ [ -10.546875, 8.407168 ], [ -11.250000, 10.487812 ], [ -11.953125, 10.487812 ], [ -10.546875, 8.407168 ] ], [ [ 13.359375, 12.554564 ], [ 14.062500, 13.239945 ], [ 12.656250, 13.923404 ], [ 13.359375, 12.554564 ] ], [ [ 104.765625, 14.604847 ], [ 104.765625, 15.284185 ], [ 102.656250, 14.604847 ], [ 104.765625, 14.604847 ] ], [ [ 101.250000, 21.289374 ], [ 100.546875, 21.943046 ], [ 99.843750, 20.632784 ], [ 101.250000, 21.289374 ] ], [ [ 91.406250, 27.059126 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.059126 ], [ 91.406250, 27.059126 ] ], [ [ 44.296875, 37.718590 ], [ 45.000000, 36.031332 ], [ 45.703125, 36.031332 ], [ 44.296875, 37.718590 ] ], [ [ 119.531250, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.125000, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.517201 ] ], [ [ 115.312500, 48.458352 ], [ 115.312500, 47.989922 ], [ 117.421875, 48.458352 ], [ 115.312500, 48.458352 ] ], [ [ 25.312500, 54.572062 ], [ 23.203125, 54.572062 ], [ 23.203125, 54.162434 ], [ 25.312500, 54.572062 ] ], [ [ 41.484375, -1.406109 ], [ 40.781250, 1.406109 ], [ 40.781250, -0.703107 ], [ 41.484375, -1.406109 ] ], [ [ 42.187500, 12.554564 ], [ 41.484375, 13.239945 ], [ 41.484375, 11.178402 ], [ 42.187500, 12.554564 ] ], [ [ 97.031250, 28.304381 ], [ 94.921875, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.031250, 28.304381 ] ], [ [ 87.890625, 27.059126 ], [ 88.593750, 27.683528 ], [ 88.593750, 28.304381 ], [ 87.890625, 28.304381 ], [ 87.890625, 27.059126 ] ], [ [ 16.171875, 48.922499 ], [ 14.765625, 49.382373 ], [ 14.062500, 48.922499 ], [ 16.171875, 48.922499 ] ], [ [ 30.937500, -25.165173 ], [ 31.640625, -25.799891 ], [ 31.640625, -24.527135 ], [ 30.937500, -25.165173 ] ], [ [ 19.687500, -23.885838 ], [ 19.687500, -24.527135 ], [ 19.687500, -25.165173 ], [ 20.390625, -25.165173 ], [ 19.687500, -23.885838 ] ], [ [ 55.546875, 23.885838 ], [ 54.843750, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 23.885838 ] ], [ [ 45.000000, 39.368279 ], [ 45.000000, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ] ], [ [ 67.500000, 39.909736 ], [ 66.796875, 39.368279 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.909736 ] ], [ [ 22.500000, 47.989922 ], [ 23.906250, 47.989922 ], [ 22.500000, 48.458352 ], [ 22.500000, 47.989922 ] ], [ [ 17.578125, 68.656555 ], [ 16.875000, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.656555 ] ], [ [ 12.656250, -4.214943 ], [ 12.656250, -4.915833 ], [ 14.062500, -4.915833 ], [ 12.656250, -4.214943 ] ], [ [ 11.250000, 2.811371 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.811371 ], [ 11.250000, 2.811371 ] ], [ [ 33.046875, -10.487812 ], [ 32.343750, -9.102097 ], [ 33.046875, -11.867351 ], [ 33.046875, -10.487812 ] ], [ [ 43.593750, 10.487812 ], [ 42.187500, 11.178402 ], [ 43.593750, 9.795678 ], [ 43.593750, 10.487812 ] ], [ [ 45.703125, 42.032974 ], [ 46.406250, 41.508577 ], [ 47.109375, 41.508577 ], [ 45.703125, 42.032974 ] ], [ [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 0.703125, 11.178402 ] ], [ [ 35.156250, 33.137551 ], [ 35.156250, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.156250, 33.137551 ] ] ], [ [ [ 15.468750, 38.272689 ], [ 14.765625, 37.160317 ], [ 11.953125, 37.718590 ], [ 11.953125, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 9.140625, 41.508577 ], [ 9.140625, 39.368279 ], [ 8.437500, 39.368279 ], [ 7.734375, 40.979898 ], [ 9.140625, 41.508577 ] ] ], [ [ [ -59.062500, -50.736455 ], [ -58.359375, -51.179343 ], [ -59.765625, -52.052490 ], [ -61.875000, -51.618017 ], [ -59.062500, -50.736455 ] ] ], [ [ [ -187.031250, -40.446947 ], [ -186.328125, -41.508577 ], [ -187.031250, -43.580391 ], [ -187.031250, -40.446947 ] ] ], [ [ [ 172.968750, -40.446947 ], [ 173.671875, -41.508577 ], [ 170.156250, -45.583290 ], [ 168.750000, -46.558860 ], [ 166.640625, -46.073231 ], [ 166.640625, -45.089036 ], [ 172.968750, -40.446947 ] ] ], [ [ [ 121.640625, 12.554564 ], [ 123.046875, 11.867351 ], [ 121.640625, 10.487812 ], [ 121.640625, 12.554564 ] ] ], [ [ [ 147.656250, -40.446947 ], [ 147.656250, -43.068888 ], [ 145.546875, -43.068888 ], [ 144.140625, -40.979898 ], [ 144.843750, -40.446947 ], [ 147.656250, -40.446947 ] ] ], [ [ [ 67.500000, 76.999935 ], [ 67.500000, 76.351896 ], [ 61.171875, 75.320025 ], [ 58.359375, 74.402163 ], [ 54.843750, 72.395706 ], [ 55.546875, 71.746432 ], [ 56.953125, 70.844673 ], [ 53.437500, 70.844673 ], [ 52.734375, 71.300793 ], [ 51.328125, 71.524909 ], [ 51.328125, 72.181804 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.824820 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.140778 ], [ 60.468750, 76.351896 ], [ 67.500000, 76.999935 ] ] ], [ [ [ 172.265625, -34.307144 ], [ 176.484375, -37.718590 ], [ 177.890625, -37.160317 ], [ 175.078125, -41.508577 ], [ 174.375000, -39.368279 ], [ 173.671875, -39.368279 ], [ 174.375000, -37.160317 ], [ 172.265625, -34.307144 ] ] ], [ [ [ -187.031250, -34.307144 ], [ -185.625000, -36.031332 ], [ -183.515625, -37.718590 ], [ -182.109375, -37.160317 ], [ -184.921875, -41.508577 ], [ -185.625000, -39.368279 ], [ -186.328125, -39.368279 ], [ -185.625000, -37.160317 ], [ -187.031250, -34.307144 ] ] ], [ [ [ 113.906250, -21.943046 ], [ 116.015625, -20.632784 ], [ 120.234375, -19.311143 ], [ 125.156250, -13.923404 ], [ 129.375000, -14.604847 ], [ 130.078125, -11.867351 ], [ 132.187500, -11.867351 ], [ 131.484375, -11.178402 ], [ 136.406250, -11.178402 ], [ 135.000000, -14.604847 ], [ 139.921875, -17.308688 ], [ 142.031250, -10.487812 ], [ 143.437500, -13.239945 ], [ 144.843750, -14.604847 ], [ 146.250000, -18.646245 ], [ 148.359375, -19.973349 ], [ 152.578125, -25.799891 ], [ 152.578125, -30.751278 ], [ 149.765625, -37.160317 ], [ 146.250000, -38.822591 ], [ 144.843750, -37.718590 ], [ 143.437500, -38.272689 ], [ 140.625000, -37.718590 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.885931 ], [ 137.109375, -32.546813 ], [ 135.703125, -34.885931 ], [ 133.593750, -32.546813 ], [ 130.781250, -31.353637 ], [ 125.859375, -31.952162 ], [ 123.046875, -33.724340 ], [ 119.531250, -33.724340 ], [ 117.421875, -34.885931 ], [ 114.609375, -33.724340 ], [ 115.312500, -31.353637 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.203125, -23.885838 ], [ 113.906250, -21.943046 ] ] ], [ [ [ -82.265625, 62.915233 ], [ -84.375000, 62.267923 ], [ -83.671875, 62.915233 ], [ -82.265625, 62.915233 ] ] ], [ [ [ -115.312500, 73.428424 ], [ -114.609375, 73.226700 ], [ -115.312500, 72.816074 ], [ -112.500000, 73.022592 ], [ -111.093750, 72.607120 ], [ -110.390625, 73.022592 ], [ -108.281250, 71.746432 ], [ -108.984375, 73.226700 ], [ -106.875000, 73.226700 ], [ -104.765625, 71.074056 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -103.359375, 69.657086 ], [ -102.656250, 68.911005 ], [ -106.171875, 69.411242 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -116.718750, 69.411242 ], [ -117.421875, 70.140364 ], [ -112.500000, 70.377854 ], [ -118.125000, 70.612614 ], [ -118.828125, 71.074056 ], [ -116.718750, 71.524909 ], [ -119.531250, 71.746432 ], [ -118.125000, 72.816074 ], [ -115.312500, 73.428424 ] ] ], [ [ [ -98.437500, 70.377854 ], [ -96.328125, 69.162558 ], [ -96.328125, 68.911005 ], [ -99.843750, 69.411242 ], [ -98.437500, 70.377854 ] ] ], [ [ [ -121.640625, 74.590108 ], [ -118.125000, 74.211983 ], [ -116.015625, 73.627789 ], [ -118.125000, 72.816074 ], [ -119.531250, 72.607120 ], [ -120.937500, 71.524909 ], [ -123.750000, 71.074056 ], [ -126.562500, 71.965388 ], [ -124.453125, 73.824820 ], [ -125.156250, 74.402163 ], [ -121.640625, 74.590108 ] ] ], [ [ [ -100.546875, 74.019543 ], [ -97.734375, 73.824820 ], [ -97.734375, 73.627789 ], [ -98.437500, 73.022592 ], [ -97.031250, 72.607120 ], [ -97.031250, 71.746432 ], [ -98.437500, 71.300793 ], [ -102.656250, 72.607120 ], [ -102.656250, 73.022592 ], [ -100.546875, 72.816074 ], [ -101.953125, 73.428424 ], [ -100.546875, 74.019543 ] ] ], [ [ [ 117.421875, -7.710992 ], [ 118.828125, -8.407168 ], [ 116.718750, -8.407168 ], [ 117.421875, -7.710992 ] ] ], [ [ [ -163.828125, 66.791909 ], [ -167.343750, 68.399180 ], [ -166.640625, 68.911005 ], [ -163.828125, 69.411242 ], [ -162.421875, 70.377854 ], [ -156.796875, 71.524909 ], [ -155.390625, 71.300793 ], [ -154.687500, 70.844673 ], [ -152.578125, 70.844673 ], [ -151.171875, 70.612614 ], [ -144.140625, 70.377854 ], [ -141.328125, 69.900118 ], [ -137.109375, 68.911005 ], [ -135.000000, 69.657086 ], [ -133.593750, 69.657086 ], [ -130.078125, 70.377854 ], [ -129.375000, 69.900118 ], [ -128.671875, 70.612614 ], [ -125.859375, 69.657086 ], [ -124.453125, 70.377854 ], [ -124.453125, 69.411242 ], [ -121.640625, 69.900118 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.656555 ], [ -113.906250, 68.399180 ], [ -115.312500, 68.138852 ], [ -113.906250, 67.875541 ], [ -110.390625, 68.138852 ], [ -108.984375, 67.609221 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.656555 ], [ -106.171875, 68.911005 ], [ -104.765625, 68.138852 ], [ -101.953125, 67.875541 ], [ -99.140625, 67.875541 ], [ -97.734375, 68.656555 ], [ -96.328125, 68.399180 ], [ -96.328125, 67.339861 ], [ -94.921875, 69.162558 ], [ -97.031250, 70.140364 ], [ -95.625000, 71.965388 ], [ -93.515625, 71.524909 ], [ -92.109375, 70.377854 ], [ -92.812500, 69.900118 ], [ -90.703125, 69.657086 ], [ -90.703125, 68.656555 ], [ -89.296875, 69.411242 ], [ -87.890625, 67.339861 ], [ -85.781250, 69.900118 ], [ -82.968750, 69.900118 ], [ -81.562500, 69.162558 ], [ -81.562500, 67.339861 ], [ -83.671875, 66.513260 ], [ -85.781250, 66.791909 ], [ -86.484375, 65.946472 ], [ -87.890625, 65.072130 ], [ -93.515625, 62.267923 ], [ -94.921875, 59.175928 ], [ -93.515625, 58.813742 ], [ -92.812500, 57.326521 ], [ -91.406250, 57.326521 ], [ -85.078125, 55.379110 ], [ -82.968750, 55.379110 ], [ -82.265625, 53.330873 ], [ -80.156250, 51.618017 ], [ -78.750000, 52.908902 ], [ -80.156250, 54.977614 ], [ -76.640625, 56.559482 ], [ -78.750000, 58.813742 ], [ -77.343750, 59.888937 ], [ -78.750000, 62.593341 ], [ -74.531250, 62.593341 ], [ -71.718750, 61.270233 ], [ -69.609375, 61.270233 ], [ -69.609375, 59.175928 ], [ -68.203125, 58.447733 ], [ -64.687500, 60.586967 ], [ -61.875000, 57.326521 ], [ -61.875000, 56.559482 ], [ -57.656250, 54.977614 ], [ -56.250000, 52.482780 ], [ -60.468750, 50.289339 ], [ -66.796875, 50.289339 ], [ -71.718750, 47.040182 ], [ -69.609375, 47.517201 ], [ -65.390625, 49.382373 ], [ -64.687500, 48.922499 ], [ -65.390625, 48.458352 ], [ -64.687500, 46.558860 ], [ -61.875000, 46.073231 ], [ -61.171875, 47.040182 ], [ -60.468750, 46.073231 ], [ -61.171875, 45.583290 ], [ -66.796875, 44.087585 ], [ -66.796875, 44.590467 ], [ -64.687500, 45.583290 ], [ -67.500000, 45.583290 ], [ -67.500000, 45.089036 ], [ -70.312500, 44.087585 ], [ -71.015625, 42.553080 ], [ -70.312500, 42.032974 ], [ -73.828125, 40.979898 ], [ -74.531250, 40.979898 ], [ -75.234375, 39.368279 ], [ -75.937500, 39.909736 ], [ -76.640625, 37.718590 ], [ -75.937500, 36.031332 ], [ -81.562500, 31.952162 ], [ -80.156250, 27.059126 ], [ -80.859375, 25.165173 ], [ -84.375000, 30.145127 ], [ -86.484375, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.921875, 29.535230 ], [ -97.734375, 28.304381 ], [ -97.734375, 26.431228 ], [ -97.734375, 21.943046 ], [ -94.921875, 18.646245 ], [ -91.406250, 19.311143 ], [ -90.703125, 21.289374 ], [ -87.187500, 21.943046 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -89.296875, 15.961329 ], [ -88.593750, 15.961329 ], [ -85.078125, 16.636192 ], [ -83.671875, 15.284185 ], [ -85.078125, 15.284185 ], [ -87.890625, 13.239945 ], [ -88.593750, 13.923404 ], [ -90.703125, 13.923404 ], [ -92.812500, 14.604847 ], [ -94.218750, 15.961329 ], [ -97.031250, 15.961329 ], [ -105.468750, 19.973349 ], [ -106.171875, 23.241346 ], [ -112.500000, 29.535230 ], [ -113.203125, 31.353637 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.751278 ], [ -109.687500, 23.885838 ], [ -110.390625, 23.241346 ], [ -112.500000, 26.431228 ], [ -115.312500, 28.304381 ], [ -114.609375, 28.921631 ], [ -117.421875, 32.546813 ], [ -120.937500, 34.885931 ], [ -123.750000, 39.368279 ], [ -125.156250, 48.458352 ], [ -123.750000, 48.458352 ], [ -123.046875, 47.517201 ], [ -123.046875, 49.382373 ], [ -125.156250, 50.289339 ], [ -123.750000, 48.922499 ], [ -125.859375, 48.922499 ], [ -128.671875, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 52.482780 ], [ -130.781250, 54.572062 ], [ -130.781250, 54.977614 ], [ -134.296875, 58.447733 ], [ -137.109375, 58.447733 ], [ -142.734375, 60.239811 ], [ -147.656250, 60.930432 ], [ -148.359375, 60.930432 ], [ -148.359375, 60.239811 ], [ -151.875000, 59.175928 ], [ -151.171875, 61.606396 ], [ -154.687500, 59.534318 ], [ -153.984375, 59.175928 ], [ -154.687500, 58.447733 ], [ -158.906250, 56.170023 ], [ -165.234375, 54.572062 ], [ -158.906250, 57.326521 ], [ -157.500000, 59.175928 ], [ -159.609375, 58.447733 ], [ -161.015625, 59.175928 ], [ -162.421875, 58.813742 ], [ -163.125000, 60.239811 ], [ -163.828125, 59.888937 ], [ -165.937500, 60.586967 ], [ -165.937500, 62.267923 ], [ -165.234375, 63.233627 ], [ -161.015625, 63.860036 ], [ -161.718750, 64.472794 ], [ -161.015625, 65.072130 ], [ -165.234375, 64.472794 ], [ -168.750000, 65.946472 ], [ -164.531250, 66.791909 ], [ -163.828125, 66.791909 ] ], [ [ -163.828125, 66.791909 ], [ -163.828125, 66.231457 ], [ -161.718750, 66.231457 ], [ -163.828125, 66.791909 ] ], [ [ -101.250000, 29.535230 ], [ -99.140625, 26.431228 ], [ -98.437500, 26.431228 ], [ -101.250000, 29.535230 ] ], [ [ -76.640625, 37.718590 ], [ -76.640625, 39.368279 ], [ -77.343750, 38.272689 ], [ -76.640625, 37.718590 ] ] ], [ [ [ -35.156250, 83.676943 ], [ -27.421875, 83.520162 ], [ -21.093750, 82.765373 ], [ -23.203125, 82.402423 ], [ -32.343750, 82.214217 ], [ -31.640625, 82.118384 ], [ -28.125000, 82.214217 ], [ -25.312500, 81.823794 ], [ -23.203125, 82.118384 ], [ -22.500000, 81.823794 ], [ -23.203125, 81.201420 ], [ -16.171875, 81.923186 ], [ -13.359375, 81.723188 ], [ -12.656250, 81.308321 ], [ -16.875000, 80.415707 ], [ -20.390625, 80.178713 ], [ -18.281250, 80.178713 ], [ -20.390625, 78.767792 ], [ -19.687500, 77.767582 ], [ -18.984375, 76.999935 ], [ -21.796875, 76.679785 ], [ -20.390625, 76.184995 ], [ -19.687500, 75.320025 ], [ -21.093750, 75.320025 ], [ -19.687500, 74.402163 ], [ -21.796875, 74.402163 ], [ -21.093750, 73.627789 ], [ -23.906250, 73.428424 ], [ -22.500000, 72.395706 ], [ -24.609375, 72.607120 ], [ -25.312500, 72.395706 ], [ -22.500000, 71.524909 ], [ -21.796875, 70.844673 ], [ -23.906250, 70.612614 ], [ -26.015625, 71.524909 ], [ -25.312500, 70.844673 ], [ -26.718750, 70.377854 ], [ -22.500000, 70.140364 ], [ -28.125000, 68.656555 ], [ -32.343750, 68.138852 ], [ -36.562500, 66.231457 ], [ -40.078125, 65.658275 ], [ -41.484375, 63.548552 ], [ -42.890625, 62.915233 ], [ -43.593750, 60.239811 ], [ -45.000000, 60.239811 ], [ -49.921875, 61.606396 ], [ -54.140625, 66.231457 ], [ -54.140625, 67.339861 ], [ -53.437500, 68.399180 ], [ -52.031250, 68.911005 ], [ -51.328125, 70.140364 ], [ -54.140625, 69.411242 ], [ -54.843750, 69.657086 ], [ -54.843750, 70.844673 ], [ -52.031250, 70.612614 ], [ -54.140625, 71.746432 ], [ -56.250000, 71.746432 ], [ -54.843750, 72.607120 ], [ -59.062500, 75.672197 ], [ -61.875000, 76.184995 ], [ -68.906250, 76.184995 ], [ -71.718750, 77.157163 ], [ -66.796875, 77.466028 ], [ -71.718750, 77.767582 ], [ -73.828125, 78.061989 ], [ -73.828125, 78.490552 ], [ -66.093750, 79.432371 ], [ -65.390625, 79.812302 ], [ -68.203125, 80.178713 ], [ -67.500000, 80.532071 ], [ -62.578125, 81.413933 ], [ -63.281250, 81.823794 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -53.437500, 81.923186 ], [ -50.625000, 82.494824 ], [ -45.000000, 81.723188 ], [ -47.109375, 82.214217 ], [ -47.109375, 82.676285 ], [ -43.593750, 83.277705 ], [ -40.078125, 83.194896 ], [ -38.671875, 83.599031 ], [ -35.156250, 83.676943 ] ] ], [ [ [ 49.218750, -11.867351 ], [ 49.921875, -15.284185 ], [ 46.406250, -24.527135 ], [ 45.000000, -25.165173 ], [ 43.593750, -24.527135 ], [ 42.890625, -22.593726 ], [ 44.296875, -19.311143 ], [ 43.593750, -17.308688 ], [ 49.218750, -11.867351 ] ] ], [ [ [ -62.578125, 10.487812 ], [ -59.765625, 8.407168 ], [ -57.656250, 6.315299 ], [ -54.140625, 6.315299 ], [ -52.031250, 4.915833 ], [ -52.734375, 3.513421 ], [ -51.328125, 4.214943 ], [ -50.625000, 2.108899 ], [ -50.625000, 0.000000 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -40.078125, -2.811371 ], [ -35.859375, -4.915833 ], [ -35.156250, -7.013668 ], [ -39.375000, -12.554564 ], [ -41.484375, -21.289374 ], [ -47.812500, -24.527135 ], [ -49.218750, -28.304381 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -54.140625, -31.952162 ], [ -54.140625, -34.307144 ], [ -56.250000, -34.307144 ], [ -59.062500, -33.724340 ], [ -59.062500, -34.307144 ], [ -56.953125, -36.031332 ], [ -58.359375, -37.718590 ], [ -62.578125, -38.822591 ], [ -62.578125, -40.446947 ], [ -65.390625, -40.979898 ], [ -65.390625, -42.032974 ], [ -63.984375, -42.553080 ], [ -65.390625, -43.068888 ], [ -66.093750, -44.590467 ], [ -67.500000, -45.089036 ], [ -68.203125, -46.073231 ], [ -66.093750, -47.040182 ], [ -69.609375, -50.289339 ], [ -68.203125, -52.052490 ], [ -68.906250, -52.052490 ], [ -71.015625, -52.482780 ], [ -71.718750, -53.748711 ], [ -75.234375, -52.052490 ], [ -75.937500, -48.458352 ], [ -74.531250, -46.558860 ], [ -75.937500, -46.558860 ], [ -74.531250, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.125000, -42.032974 ], [ -74.531250, -43.068888 ], [ -73.828125, -36.597889 ], [ -71.718750, -31.952162 ], [ -69.609375, -17.308688 ], [ -71.015625, -17.978733 ], [ -76.640625, -14.604847 ], [ -80.156250, -7.013668 ], [ -81.562500, -5.615986 ], [ -81.562500, -3.513421 ], [ -80.859375, -2.811371 ], [ -80.156250, -2.108899 ], [ -81.562500, -2.108899 ], [ -81.562500, -0.703107 ], [ -80.156250, 1.406109 ], [ -79.453125, 1.406109 ], [ -75.937500, 0.000000 ], [ -79.453125, 2.108899 ], [ -77.343750, 4.214943 ], [ -78.046875, 7.710992 ], [ -75.234375, 11.178402 ], [ -71.718750, 12.554564 ], [ -71.718750, 11.867351 ], [ -71.718750, 9.102097 ], [ -70.312500, 12.554564 ], [ -68.203125, 11.178402 ], [ -62.578125, 11.178402 ], [ -61.875000, 11.178402 ], [ -61.171875, 10.487812 ], [ -62.578125, 10.487812 ] ], [ [ -70.312500, -33.724340 ], [ -70.312500, -29.535230 ], [ -71.015625, -31.353637 ], [ -70.312500, -33.724340 ] ], [ [ -69.609375, -10.487812 ], [ -71.015625, -10.487812 ], [ -68.906250, -12.554564 ], [ -69.609375, -10.487812 ] ], [ [ -61.171875, 5.615986 ], [ -65.390625, 4.214943 ], [ -63.281250, 4.214943 ], [ -61.171875, 5.615986 ] ], [ [ -57.656250, 6.315299 ], [ -58.359375, 4.214943 ], [ -57.656250, 3.513421 ], [ -57.656250, 6.315299 ] ], [ [ -54.843750, -24.527135 ], [ -54.843750, -25.799891 ], [ -54.140625, -25.799891 ], [ -54.140625, -25.165173 ], [ -54.843750, -24.527135 ] ], [ [ -57.656250, 2.108899 ], [ -59.062500, 2.108899 ], [ -59.062500, 1.406109 ], [ -57.656250, 2.108899 ] ], [ [ -68.203125, 3.513421 ], [ -68.203125, 2.108899 ], [ -67.500000, 2.108899 ], [ -68.203125, 3.513421 ] ], [ [ -75.937500, 0.000000 ], [ -75.937500, -0.703107 ], [ -75.234375, 0.000000 ], [ -75.937500, 0.000000 ] ], [ [ -67.500000, 2.108899 ], [ -67.500000, 1.406109 ], [ -66.796875, 1.406109 ], [ -67.500000, 2.108899 ] ] ], [ [ [ 177.890625, -17.308688 ], [ 177.890625, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.308688 ], [ 177.890625, -17.308688 ] ] ], [ [ [ -182.109375, -17.308688 ], [ -182.109375, -17.978733 ], [ -182.812500, -17.978733 ], [ -182.812500, -17.308688 ], [ -182.109375, -17.308688 ] ] ], [ [ [ -73.125000, 83.277705 ], [ -68.906250, 83.111071 ], [ -63.984375, 82.940327 ], [ -61.875000, 82.676285 ], [ -62.578125, 82.402423 ], [ -68.203125, 81.518272 ], [ -66.093750, 81.518272 ], [ -69.609375, 80.647035 ], [ -71.718750, 79.812302 ], [ -74.531250, 79.432371 ], [ -77.343750, 79.432371 ], [ -75.937500, 79.302640 ], [ -76.640625, 79.038437 ], [ -75.937500, 78.630006 ], [ -80.156250, 77.312520 ], [ -80.156250, 76.999935 ], [ -78.046875, 77.157163 ], [ -78.046875, 76.840816 ], [ -80.859375, 76.184995 ], [ -83.671875, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.999935 ], [ -87.890625, 77.312520 ], [ -88.593750, 77.915669 ], [ -85.078125, 77.617709 ], [ -86.484375, 78.206563 ], [ -88.593750, 78.490552 ], [ -85.781250, 79.432371 ], [ -87.187500, 80.297927 ], [ -83.671875, 80.178713 ], [ -82.265625, 80.532071 ], [ -87.890625, 80.532071 ], [ -90.000000, 80.872827 ], [ -92.109375, 81.923186 ], [ -87.187500, 82.308893 ], [ -85.781250, 82.676285 ], [ -83.671875, 82.402423 ], [ -82.968750, 82.940327 ], [ -79.453125, 83.194896 ], [ -76.640625, 83.194896 ], [ -75.937500, 83.111071 ], [ -73.125000, 83.277705 ] ] ], [ [ [ -82.968750, 73.824820 ], [ -80.859375, 72.816074 ], [ -80.859375, 72.181804 ], [ -78.046875, 72.816074 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -72.421875, 71.746432 ], [ -68.203125, 70.140364 ], [ -67.500000, 69.411242 ], [ -68.906250, 68.911005 ], [ -65.390625, 67.875541 ], [ -63.984375, 67.067433 ], [ -61.875000, 67.067433 ], [ -63.984375, 65.072130 ], [ -66.796875, 66.513260 ], [ -68.203125, 66.513260 ], [ -68.203125, 65.946472 ], [ -64.687500, 63.548552 ], [ -65.390625, 62.915233 ], [ -68.906250, 63.860036 ], [ -66.796875, 61.938950 ], [ -71.718750, 62.915233 ], [ -75.234375, 64.774125 ], [ -78.046875, 64.472794 ], [ -78.750000, 64.774125 ], [ -78.046875, 65.366837 ], [ -74.531250, 65.658275 ], [ -73.125000, 67.875541 ], [ -75.937500, 68.399180 ], [ -77.343750, 68.911005 ], [ -76.640625, 69.162558 ], [ -79.453125, 70.377854 ], [ -81.562500, 69.900118 ], [ -82.968750, 69.900118 ], [ -89.296875, 70.612614 ], [ -90.000000, 70.844673 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.703125, 72.395706 ], [ -88.593750, 73.627789 ], [ -86.484375, 73.824820 ], [ -87.187500, 73.226700 ], [ -85.781250, 72.607120 ], [ -85.078125, 73.428424 ], [ -82.968750, 73.824820 ] ] ], [ [ [ -175.078125, 67.067433 ], [ -172.265625, 67.067433 ], [ -170.156250, 66.231457 ], [ -172.968750, 65.658275 ], [ -172.968750, 64.472794 ], [ -176.484375, 65.366837 ], [ -178.593750, 65.658275 ], [ -179.296875, 66.231457 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.072130 ], [ -182.812500, 64.774125 ], [ -181.406250, 62.593341 ], [ -182.812500, 62.593341 ], [ -187.031250, 61.606396 ], [ -187.031250, 69.900118 ], [ -184.921875, 69.900118 ], [ -180.000000, 69.162558 ], [ -175.078125, 67.339861 ], [ -175.078125, 67.067433 ] ] ], [ [ [ -92.812500, 81.308321 ], [ -91.406250, 80.760615 ], [ -87.890625, 80.415707 ], [ -87.187500, 79.687184 ], [ -86.484375, 79.432371 ], [ -88.593750, 78.490552 ], [ -89.296875, 78.349411 ], [ -93.515625, 78.349411 ], [ -94.218750, 78.767792 ], [ -93.515625, 79.432371 ], [ -95.625000, 79.432371 ], [ -97.031250, 80.178713 ], [ -95.625000, 80.983688 ], [ -94.921875, 80.983688 ], [ -94.921875, 81.308321 ], [ -92.812500, 81.308321 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 17.578125, 79.812302 ], [ 21.093750, 79.038437 ], [ 18.984375, 78.630006 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 13.359375, 77.466028 ], [ 14.062500, 77.767582 ], [ 10.546875, 78.903929 ], [ 9.843750, 79.687184 ], [ 12.656250, 80.058050 ], [ 13.359375, 79.687184 ], [ 14.765625, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ -97.031250, 77.312520 ], [ -94.921875, 77.157163 ], [ -94.218750, 76.840816 ], [ -92.109375, 76.840816 ], [ -91.406250, 76.184995 ], [ -89.296875, 75.672197 ], [ -81.562500, 75.845169 ], [ -80.156250, 75.497157 ], [ -80.859375, 74.775843 ], [ -88.593750, 74.402163 ], [ -92.812500, 74.959392 ], [ -94.218750, 76.351896 ], [ -97.734375, 76.840816 ], [ -97.031250, 77.312520 ] ] ], [ [ [ 95.625000, 81.308321 ], [ 99.843750, 79.812302 ], [ 99.843750, 78.903929 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.171335 ], [ 90.703125, 80.415707 ], [ 93.515625, 81.093214 ], [ 95.625000, 81.308321 ] ] ], [ [ [ 140.625000, -9.102097 ], [ 137.109375, -8.407168 ], [ 138.515625, -7.013668 ], [ 137.812500, -4.915833 ], [ 133.593750, -3.513421 ], [ 132.890625, -3.513421 ], [ 131.484375, -2.811371 ], [ 133.593750, -2.108899 ], [ 130.078125, -0.703107 ], [ 133.593750, -0.703107 ], [ 135.000000, -2.811371 ], [ 137.109375, -1.406109 ], [ 140.625000, -2.108899 ], [ 146.953125, -5.615986 ], [ 146.953125, -7.013668 ], [ 150.468750, -10.487812 ], [ 147.656250, -9.795678 ], [ 144.140625, -7.013668 ], [ 142.031250, -9.102097 ], [ 140.625000, -9.102097 ] ] ], [ [ [ 115.312500, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.828125, 5.615986 ], [ 118.125000, 4.915833 ], [ 115.312500, 4.915833 ], [ 117.421875, 4.214943 ], [ 117.421875, 2.108899 ], [ 118.828125, 1.406109 ], [ 117.421875, 1.406109 ], [ 116.015625, -3.513421 ], [ 109.687500, -2.811371 ], [ 108.984375, 0.000000 ], [ 108.984375, 2.108899 ], [ 109.687500, 1.406109 ], [ 110.390625, 1.406109 ], [ 113.906250, 4.915833 ], [ 115.312500, 5.615986 ] ] ], [ [ [ -5.625000, 55.379110 ], [ -5.625000, 56.170023 ], [ -6.328125, 56.944974 ], [ -5.625000, 58.813742 ], [ -3.515625, 58.813742 ], [ -4.218750, 57.704147 ], [ -2.109375, 57.704147 ], [ -3.515625, 56.170023 ], [ -2.109375, 56.170023 ], [ 0.000000, 53.330873 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ -5.625000, 50.289339 ], [ -3.515625, 51.618017 ], [ -5.625000, 52.052490 ], [ -4.921875, 52.482780 ], [ -4.921875, 53.748711 ], [ -3.515625, 53.748711 ], [ -3.515625, 54.162434 ], [ -4.921875, 54.977614 ], [ -5.625000, 55.379110 ] ] ], [ [ [ -109.687500, 76.840816 ], [ -108.281250, 76.351896 ], [ -108.281250, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.875000, 75.140778 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -111.796875, 75.320025 ], [ -118.125000, 75.320025 ], [ -116.015625, 76.516819 ], [ -113.203125, 76.184995 ], [ -111.093750, 75.672197 ], [ -109.687500, 75.497157 ], [ -111.093750, 76.516819 ], [ -109.687500, 76.840816 ] ] ], [ [ [ 127.265625, -7.710992 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.407168 ], [ 127.265625, -7.710992 ] ] ], [ [ [ 122.343750, -7.710992 ], [ 119.531250, -8.407168 ], [ 120.234375, -7.710992 ], [ 122.343750, -7.710992 ] ] ], [ [ [ -78.046875, 25.799891 ], [ -78.046875, 23.885838 ], [ -78.750000, 25.799891 ], [ -78.046875, 25.799891 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 108.281250, -6.315299 ], [ 110.390625, -6.315299 ], [ 115.312500, -7.710992 ], [ 104.765625, -6.315299 ], [ 105.468750, -5.615986 ] ] ], [ [ [ -16.171875, 66.791909 ], [ -14.765625, 66.513260 ], [ -14.062500, 65.366837 ], [ -18.984375, 63.548552 ], [ -23.203125, 64.168107 ], [ -21.796875, 64.472794 ], [ -24.609375, 65.072130 ], [ -22.500000, 65.366837 ], [ -24.609375, 65.658275 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -21.093750, 65.946472 ], [ -19.687500, 66.513260 ], [ -18.281250, 66.231457 ], [ -16.171875, 66.791909 ] ] ], [ [ [ 151.875000, -2.811371 ], [ 152.578125, -4.214943 ], [ 151.875000, -4.214943 ], [ 151.875000, -4.915833 ], [ 149.765625, -6.315299 ], [ 147.656250, -5.615986 ], [ 150.468750, -4.915833 ], [ 151.171875, -3.513421 ], [ 151.875000, -2.811371 ] ] ], [ [ [ 97.031250, 5.615986 ], [ 101.250000, 2.811371 ], [ 103.359375, 0.703107 ], [ 103.359375, -0.703107 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 101.953125, -4.214943 ], [ 94.921875, 5.615986 ], [ 97.031250, 5.615986 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 120.234375, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.108899 ], [ 120.234375, -4.915833 ], [ 118.828125, -4.915833 ], [ 118.125000, -2.108899 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 22.500000, 80.760615 ], [ 25.312500, 80.415707 ], [ 26.718750, 80.058050 ], [ 25.312500, 79.560546 ], [ 22.500000, 79.432371 ], [ 19.687500, 79.687184 ], [ 16.875000, 80.415707 ], [ 20.390625, 80.647035 ], [ 21.796875, 80.415707 ], [ 22.500000, 80.760615 ] ] ], [ [ [ 141.328125, 76.184995 ], [ 144.843750, 75.672197 ], [ 144.140625, 74.959392 ], [ 138.515625, 74.775843 ], [ 136.406250, 75.320025 ], [ 137.109375, 76.016094 ], [ 138.515625, 76.184995 ], [ 141.328125, 76.184995 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 36.031332 ], [ 136.406250, 37.718590 ], [ 137.109375, 37.160317 ], [ 139.218750, 38.272689 ], [ 139.218750, 40.979898 ], [ 141.328125, 41.508577 ], [ 141.328125, 39.368279 ], [ 140.625000, 37.160317 ], [ 139.921875, 35.460670 ], [ 135.703125, 33.724340 ], [ 135.000000, 34.885931 ], [ 132.890625, 34.307144 ], [ 130.781250, 34.307144 ] ] ], [ [ [ -116.718750, 77.767582 ], [ -117.421875, 76.679785 ], [ -121.640625, 76.016094 ], [ -123.046875, 76.184995 ], [ -119.531250, 77.617709 ], [ -116.718750, 77.767582 ] ] ], [ [ [ 130.078125, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.265625, -2.811371 ], [ 130.078125, -2.811371 ] ] ], [ [ [ -85.781250, 11.178402 ], [ -86.484375, 11.178402 ], [ -87.890625, 13.239945 ], [ -83.671875, 15.284185 ], [ -83.671875, 11.178402 ], [ -82.968750, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.046875, 7.710992 ], [ -79.453125, 9.102097 ], [ -80.859375, 7.710992 ], [ -82.968750, 8.407168 ], [ -85.781250, 11.178402 ] ] ], [ [ [ -94.921875, 74.211983 ], [ -90.703125, 74.019543 ], [ -94.921875, 72.181804 ], [ -95.625000, 72.181804 ], [ -96.328125, 73.627789 ], [ -94.921875, 74.211983 ] ] ], [ [ [ 127.265625, 2.811371 ], [ 128.671875, 1.406109 ], [ 127.968750, -0.703107 ], [ 127.265625, 2.811371 ] ] ], [ [ [ -99.140625, 76.840816 ], [ -98.437500, 75.140778 ], [ -99.843750, 74.959392 ], [ -101.250000, 75.140778 ], [ -101.250000, 75.672197 ], [ -102.656250, 75.672197 ], [ -102.656250, 76.351896 ], [ -99.140625, 76.840816 ] ] ], [ [ [ 101.953125, 79.432371 ], [ 104.765625, 78.767792 ], [ 104.765625, 78.349411 ], [ 99.140625, 78.061989 ], [ 101.953125, 79.432371 ] ] ], [ [ [ -86.484375, 65.946472 ], [ -85.781250, 65.658275 ], [ -80.156250, 63.860036 ], [ -81.562500, 63.548552 ], [ -83.671875, 64.168107 ], [ -85.781250, 63.233627 ], [ -86.484375, 63.860036 ], [ -87.890625, 63.548552 ], [ -86.484375, 65.946472 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -56.953125, 49.837982 ], [ -54.140625, 49.382373 ], [ -53.437500, 47.040182 ], [ -54.843750, 47.040182 ], [ -54.843750, 47.989922 ], [ -55.546875, 47.040182 ], [ -56.953125, 47.989922 ], [ -59.765625, 47.989922 ], [ -57.656250, 50.736455 ], [ -55.546875, 51.618017 ] ] ], [ [ [ -106.171875, 79.302640 ], [ -101.250000, 78.903929 ], [ -100.546875, 78.349411 ], [ -99.843750, 77.915669 ], [ -105.468750, 78.490552 ], [ -104.765625, 78.767792 ], [ -106.171875, 79.302640 ] ] ], [ [ [ -7.734375, 55.379110 ], [ -7.031250, 55.379110 ], [ -6.328125, 54.572062 ], [ -6.328125, 54.162434 ], [ -7.031250, 52.482780 ], [ -10.546875, 52.052490 ], [ -9.843750, 54.162434 ], [ -7.734375, 55.379110 ] ] ], [ [ [ 141.328125, 45.583290 ], [ 143.437500, 44.590467 ], [ 144.843750, 44.590467 ], [ 144.843750, 43.580391 ], [ 142.734375, 42.032974 ], [ 141.328125, 43.068888 ], [ 140.625000, 42.032974 ], [ 139.921875, 42.032974 ], [ 141.328125, 45.583290 ] ] ], [ [ [ 123.046875, 8.407168 ], [ 125.156250, 9.795678 ], [ 125.859375, 9.102097 ], [ 125.156250, 5.615986 ], [ 123.046875, 8.407168 ] ] ], [ [ [ 49.921875, 80.983688 ], [ 51.328125, 80.760615 ], [ 47.109375, 80.058050 ], [ 46.406250, 80.297927 ], [ 46.406250, 80.647035 ], [ 44.296875, 80.647035 ], [ 47.812500, 80.872827 ], [ 48.515625, 80.532071 ], [ 49.921875, 80.983688 ] ] ], [ [ [ 123.750000, 13.239945 ], [ 125.156250, 12.554564 ], [ 124.453125, 10.487812 ], [ 123.750000, 11.867351 ], [ 123.750000, 12.554564 ], [ 120.937500, 13.923404 ], [ 119.531250, 15.284185 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 122.343750, 17.308688 ], [ 121.640625, 14.604847 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 141.328125, 53.330873 ], [ 142.031250, 54.572062 ], [ 144.140625, 49.382373 ], [ 142.734375, 49.382373 ], [ 142.031250, 47.989922 ] ] ], [ [ [ 79.453125, 10.487812 ], [ 80.156250, 9.795678 ], [ 81.562500, 7.710992 ], [ 80.156250, 6.315299 ], [ 79.453125, 10.487812 ] ] ], [ [ [ 22.500000, 78.490552 ], [ 24.609375, 77.915669 ], [ 21.796875, 77.466028 ], [ 20.390625, 77.767582 ], [ 20.390625, 78.349411 ], [ 22.500000, 78.490552 ] ] ], [ [ [ -78.750000, 73.824820 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.022592 ], [ -78.046875, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.859375, 73.824820 ], [ -78.750000, 73.824820 ] ] ], [ [ [ -99.140625, 78.903929 ], [ -97.031250, 78.767792 ], [ -95.625000, 78.490552 ], [ -96.328125, 78.061989 ], [ -97.031250, 77.915669 ], [ -97.734375, 77.915669 ], [ -98.437500, 78.206563 ], [ -99.140625, 78.903929 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 150.468750, 75.140778 ], [ 149.062500, 74.775843 ], [ 147.656250, 74.959392 ], [ 145.546875, 75.320025 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ -111.796875, 78.206563 ], [ -110.390625, 78.061989 ], [ -110.390625, 77.767582 ], [ -112.500000, 77.466028 ], [ -113.906250, 77.767582 ], [ -111.796875, 78.206563 ] ] ], [ [ [ -81.562500, 23.241346 ], [ -78.750000, 22.593726 ], [ -74.531250, 20.632784 ], [ -78.046875, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.750000, 21.943046 ], [ -81.562500, 23.241346 ] ] ], [ [ [ -105.468750, 73.824820 ], [ -104.765625, 73.428424 ], [ -105.468750, 72.816074 ], [ -106.875000, 73.226700 ], [ -107.578125, 73.627789 ], [ -105.468750, 73.824820 ] ] ], [ [ [ 118.828125, 11.867351 ], [ 119.531250, 11.178402 ], [ 116.718750, 8.407168 ], [ 118.828125, 11.867351 ] ] ], [ [ [ 142.031250, 74.019543 ], [ 143.437500, 73.226700 ], [ 139.218750, 73.428424 ], [ 142.031250, 74.019543 ] ] ], [ [ [ -71.718750, 19.973349 ], [ -68.906250, 18.646245 ], [ -71.718750, 17.978733 ], [ -71.718750, 18.646245 ], [ -74.531250, 18.646245 ], [ -72.421875, 19.311143 ], [ -73.828125, 19.973349 ], [ -71.718750, 19.973349 ] ] ], [ [ [ 122.343750, 9.795678 ], [ 123.750000, 11.867351 ], [ 123.750000, 10.487812 ], [ 122.343750, 9.795678 ] ] ], [ [ [ -180.000000, 71.524909 ], [ -180.000000, 71.746432 ], [ -177.890625, 71.300793 ], [ -179.296875, 71.074056 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.300793 ], [ -180.000000, 71.524909 ] ] ], [ [ [ -94.921875, 75.672197 ], [ -94.218750, 75.140778 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.959392 ], [ -94.921875, 75.672197 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 182.109375, 71.300793 ], [ 180.703125, 71.074056 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.300793 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 131.484375, 33.724340 ], [ 130.781250, 31.952162 ], [ 130.078125, 31.952162 ], [ 129.375000, 33.724340 ], [ 130.781250, 34.307144 ] ] ], [ [ [ 134.296875, 34.307144 ], [ 133.593750, 33.724340 ], [ 132.187500, 33.137551 ], [ 132.890625, 34.307144 ], [ 134.296875, 34.307144 ] ] ], [ [ [ 120.937500, 25.799891 ], [ 121.640625, 24.527135 ], [ 120.234375, 22.593726 ], [ 119.531250, 23.885838 ], [ 120.937500, 25.799891 ] ] ], [ [ [ -75.937500, 68.399180 ], [ -75.234375, 68.138852 ], [ -75.937500, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.609221 ], [ -75.937500, 68.399180 ] ] ], [ [ [ -133.593750, 54.572062 ], [ -132.187500, 54.162434 ], [ -131.484375, 52.482780 ], [ -133.593750, 53.748711 ], [ -133.593750, 54.572062 ] ] ], [ [ [ -111.796875, 78.903929 ], [ -109.687500, 78.630006 ], [ -113.203125, 78.490552 ], [ -111.796875, 78.903929 ] ] ], [ [ [ 120.937500, 13.923404 ], [ 120.937500, 12.554564 ], [ 120.234375, 13.923404 ], [ 120.937500, 13.923404 ] ] ], [ [ [ -94.921875, 77.915669 ], [ -94.218750, 77.617709 ], [ -96.328125, 77.617709 ], [ -97.031250, 77.915669 ], [ -94.921875, 77.915669 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 125.156250, 2.108899 ], [ 123.046875, 0.703107 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 110.390625, 20.632784 ], [ 109.687500, 19.311143 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.973349 ], [ 110.390625, 20.632784 ] ] ], [ [ [ -152.578125, 58.077876 ], [ -153.281250, 57.326521 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.704147 ], [ -152.578125, 58.077876 ] ] ], [ [ [ 120.937500, -2.108899 ], [ 123.046875, -4.915833 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.108899 ] ] ], [ [ [ -61.171875, 49.837982 ], [ -61.171875, 48.922499 ], [ -62.578125, 48.922499 ], [ -62.578125, 49.837982 ], [ -61.171875, 49.837982 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 142.734375, 47.040182 ], [ 142.031250, 46.073231 ], [ 142.031250, 47.989922 ] ] ], [ [ [ -165.937500, 60.586967 ], [ -165.937500, 60.239811 ], [ -168.046875, 60.239811 ], [ -165.937500, 60.586967 ] ] ], [ [ [ -66.093750, 18.646245 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ], [ [ [ -156.093750, 20.632784 ], [ -155.390625, 19.973349 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json index 1b3620ca2..d5311497a 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json.check.mbtiles -z5 -M5000 --coalesce-smallest-as-needed tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"formal_fr\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_alt\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_adm0\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 61,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afg.\",\"Alb.\",\"Alg.\",\"Ang.\",\"Ant.\",\"Arg.\",\"Arm.\",\"Aust.\",\"Auz.\",\"Aze.\",\"B.F.\",\"B.H.\",\"Bang.\",\"Bela.\",\"Belg.\",\"Belize\",\"Benin\",\"Bhs.\",\"Bhutan\",\"Bolivia\",\"Brazil\",\"Brunei\",\"Bulg.\",\"Bur.\",\"Bwa.\",\"C.A.R.\",\"C.R.\",\"Cam.\",\"Camb.\",\"Can.\",\"Chad\",\"Chile\",\"China\",\"Col.\",\"Cro.\",\"Cuba\",\"Cyp.\",\"Cz. Rep.\",\"D.R.C.\",\"Den.\",\"Dji.\",\"Dom. Rep.\",\"Ecu.\",\"Egypt\",\"El. S.\",\"Eq. G.\",\"Erit.\",\"Est.\",\"Eth.\",\"Fiji\",\"Fin.\",\"Flk. Is.\",\"Fr.\",\"Fr. S.A.L.\",\"Gabon\",\"Gambia\",\"Geo.\",\"Ger.\",\"Ghana\",\"Gin.\",\"GnB.\",\"Greece\",\"Grlnd.\",\"Guat.\",\"Guy.\",\"Haiti\",\"Hond.\",\"Hun.\",\"I.C.\",\"Iceland\",\"India\",\"Indo.\",\"Iran\",\"Iraq\",\"Ire.\",\"Isr.\",\"Italy\",\"Jam.\",\"Japan\",\"Jord.\",\"Kaz.\",\"Ken.\",\"Kgz.\",\"Kos.\",\"Kwt.\",\"Laos\",\"Lat.\",\"Leb.\",\"Les.\",\"Liberia\",\"Libya\",\"Lith.\",\"Lux.\",\"Mad.\",\"Mal.\",\"Malay.\",\"Mali\",\"Mda.\",\"Mex.\",\"Mkd.\"]},{\"attribute\": \"abbrev_len\",\"count\": 8,\"type\": \"number\",\"values\": [10,3,4,5,6,7,8,9],\"min\": 3,\"max\": 10},{\"attribute\": \"adm0_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 173,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 175,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"brk_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"B12\",\"B20\",\"B28\",\"B30\",\"B57\",\"B77\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. and Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\"]},{\"attribute\": \"continent\",\"count\": 8,\"type\": \"string\",\"values\": [\"Africa\",\"Antarctica\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"Seven seas (open ocean)\",\"South America\"]},{\"attribute\": \"economy\",\"count\": 7,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"2. Developed region: nonG7\",\"3. Emerging region: BRIC\",\"4. Emerging region: MIKT\",\"5. Emerging region: G20\",\"6. Developing region\",\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 174,\"type\": \"string\",\"values\": [\"Arab Republic of Egypt\",\"Argentine Republic\",\"Belize\",\"Bolivarian Republic of Venezuela\",\"Bosnia and Herzegovina\",\"Burkina Faso\",\"Canada\",\"Central African Republic\",\"Co-operative Republic of Guyana\",\"Commonwealth of Australia\",\"Commonwealth of Puerto Rico\",\"Commonwealth of the Bahamas\",\"Czech Republic\",\"Democratic People's Republic of Korea\",\"Democratic Republic of Timor-Leste\",\"Democratic Republic of the Congo\",\"Democratic Socialist Republic of Sri Lanka\",\"Dominican Republic\",\"Falkland Islands\",\"Federal Democratic Republic of Ethiopia\",\"Federal Republic of Germany\",\"Federal Republic of Nigeria\",\"Federal Republic of Somalia\",\"Federative Republic of Brazil\",\"Former Yugoslav Republic of Macedonia\",\"French Republic\",\"Gabonese Republic\",\"Georgia\",\"Grand Duchy of Luxembourg\",\"Greenland\",\"Hashemite Kingdom of Jordan\",\"Hellenic Republic\",\"Independent State of Papua New Guinea\",\"Ireland\",\"Islamic Republic of Iran\",\"Islamic Republic of Mauritania\",\"Islamic Republic of Pakistan\",\"Islamic State of Afghanistan\",\"Italian Republic\",\"Jamaica\",\"Japan\",\"Kingdom of Belgium\",\"Kingdom of Bhutan\",\"Kingdom of Cambodia\",\"Kingdom of Denmark\",\"Kingdom of Lesotho\",\"Kingdom of Morocco\",\"Kingdom of Norway\",\"Kingdom of Saudi Arabia\",\"Kingdom of Spain\",\"Kingdom of Swaziland\",\"Kingdom of Sweden\",\"Kingdom of Thailand\",\"Kingdom of the Netherlands\",\"Kyrgyz Republic\",\"Lao People's Democratic Republic\",\"Lebanese Republic\",\"Libya\",\"Malaysia\",\"Mongolia\",\"Montenegro\",\"Negara Brunei Darussalam\",\"Nepal\",\"New Caledonia\",\"New Zealand\",\"Oriental Republic of Uruguay\",\"People's Democratic Republic of Algeria\",\"People's Republic of Angola\",\"People's Republic of Bangladesh\",\"People's Republic of China\",\"Plurinational State of Bolivia\",\"Portuguese Republic\",\"Republic of Albania\",\"Republic of Armenia\",\"Republic of Austria\",\"Republic of Azerbaijan\",\"Republic of Belarus\",\"Republic of Benin\",\"Republic of Botswana\",\"Republic of Bulgaria\",\"Republic of Burundi\",\"Republic of Cameroon\",\"Republic of Chad\",\"Republic of Chile\",\"Republic of Colombia\",\"Republic of Congo\",\"Republic of Costa Rica\",\"Republic of Croatia\",\"Republic of Cuba\",\"Republic of Cyprus\",\"Republic of Djibouti\",\"Republic of Ecuador\",\"Republic of El Salvador\",\"Republic of Equatorial Guinea\",\"Republic of Estonia\",\"Republic of Fiji\",\"Republic of Finland\",\"Republic of Ghana\",\"Republic of Guatemala\",\"Republic of Guinea\"]},{\"attribute\": \"formal_fr\",\"count\": 4,\"type\": \"string\",\"values\": [\"Nouvelle-Calédonie\",\"Republic of Cote D'Ivoire\",\"República Bolivariana de Venezuela\",\"République Togolaise\"]},{\"attribute\": \"gdp_md_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10040,103900,105.1,10600,10670,107700,1078,108200,1100,110300,114100,11500,11610,116700,11810,11950.77,119500,12250,12710,12830,1300000,13160,13210,13227,13250,1335000,136600,13980,1403000,14060,14590,149100,15094000,1526,15350,1563000,15860,16,16790,17500,175800,17820,1823000,184300,18770,18780,188400,1885,18940,193500,196600,1977704,1993000,20130,201400,20250,203600,20640,208627,20910,21110,2128000,21510,21810,21980,22270,224000,2266000,22700,2272,232900,241700,244500,247300,2520,2536,265200,27060,271400,27410,276400,27940,28890,29010,2918000,2966,29700,29780,3102,31080,3158,31610,316700,317500,3198,3293,329500,3297000,335400],\"min\": -99,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 3,\"type\": \"number\",\"values\": [-99,0,2009],\"min\": -99,\"max\": 2009},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"gu_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"homepart\",\"count\": 2,\"type\": \"number\",\"values\": [-99,1],\"min\": -99,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 5,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\",\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AQ\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FK\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\"]},{\"attribute\": \"iso_a3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESH\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"iso_n3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"004\",\"008\",\"010\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"158\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"260\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\"]},{\"attribute\": \"labelrank\",\"count\": 6,\"type\": \"number\",\"values\": [2,3,4,5,6,7],\"min\": 2,\"max\": 7},{\"attribute\": \"lastcensus\",\"count\": 27,\"type\": \"number\",\"values\": [-99,1970,1979,1981,1983,1984,1987,1989,1991,1993,1995,1996,1997,1998,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012],\"min\": -99,\"max\": 2012},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 21,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,20,22,24,32,35,4,5,6,7,8,9],\"min\": 4,\"max\": 35},{\"attribute\": \"mapcolor13\",\"count\": 14,\"type\": \"number\",\"values\": [-99,1,10,11,12,13,2,3,4,5,6,7,8,9],\"min\": -99,\"max\": 13},{\"attribute\": \"mapcolor7\",\"count\": 7,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7],\"min\": 1,\"max\": 7},{\"attribute\": \"mapcolor8\",\"count\": 8,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8],\"min\": 1,\"max\": 8},{\"attribute\": \"mapcolor9\",\"count\": 9,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 9},{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]},{\"attribute\": \"name_alt\",\"count\": 2,\"type\": \"string\",\"values\": [\"East Timor\",\"Islas Malvinas\"]},{\"attribute\": \"name_len\",\"count\": 16,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,19,20,22,4,5,6,7,8,9],\"min\": 4,\"max\": 22},{\"attribute\": \"name_long\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"name_sort\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo, Dem. Rep.\",\"Congo, Rep.\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Cyprus, Northern\",\"Czech Republic\",\"Côte d'Ivoire\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt, Arab Rep.\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran, Islamic Rep.\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea, Dem. Rep.\",\"Korea, Rep.\",\"Kosovo\",\"Kuwait\",\"Kyrgyz Republic\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia, FYR\",\"Madagascar\",\"Malawi\"]},{\"attribute\": \"note_adm0\",\"count\": 6,\"type\": \"string\",\"values\": [\"Commonwealth of U.S.A.\",\"Den.\",\"Fr.\",\"Partial self-admin.\",\"Self admin.\",\"U.K.\"]},{\"attribute\": \"note_brk\",\"count\": 8,\"type\": \"string\",\"values\": [\"Admin. by U.K.; Claimed by Argentina\",\"Multiple claims held in abeyance\",\"Partial self-admin.\",\"Self admin.; Claimed by China\",\"Self admin.; Claimed by Cyprus\",\"Self admin.; Claimed by Morocco\",\"Self admin.; Claimed by Serbia\",\"Self admin.; Claimed by Somalia\"]},{\"attribute\": \"pop_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10057975,10211904,10329208,10414336,10473282,10486339,10625176,10707924,10737428,111211789,1123913,1131612,11451652,1166079220,11862740,12619600,12666987,127078679,12799293,1299371,1310000,13276517,1338612970,13711597,140,140041247,14268711,14494293,14573101,149229090,1514993,15306252,1533964,15399437,156050883,15746232,16601707,16715999,176242949,1782893,1804838,18879301,198739269,1990876,2005692,20178485,20617068,20653556,2066718,2108665,21262641,2130819,21324791,21669278,218519,22215421,2231503,22665345,227436,22974347,23822783,23832495,240271522,25715819,25946220,265100,26814843,2691158,27606007,2825928,28400000,28563377,28686633,29546963,2967004,3041142,306694,307899,309156,31129225,3129486,313973000,3140,32369558,33487208,3360474,34178188,3418085,3441790,34859364,3494382,3500000,3555179,3639453,3802,38482919,388190,39002772,3971020],\"min\": -99,\"max\": 1338612970},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 172,\"type\": \"string\",\"values\": [\"A\",\"AE\",\"AF\",\"AL\",\"AO\",\"AQ\",\"AR\",\"ARM\",\"AU\",\"AZ\",\"B\",\"BD\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"BiH\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"D\",\"DJ\",\"DK\",\"DO\",\"DRC\",\"DZ\",\"E\",\"EC\",\"EG\",\"ER\",\"EST\",\"ET\",\"F\",\"FIN\",\"FJ\",\"FK\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"I\",\"IND\",\"INDO\",\"IRL\",\"IRN\",\"IRQ\",\"IS\",\"J\",\"KE\",\"KG\",\"KH\",\"KO\",\"KP\",\"KR\",\"KW\",\"KZ\",\"L\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\",\"MG\",\"MK\"]},{\"attribute\": \"region_un\",\"count\": 7,\"type\": \"string\",\"values\": [\"Africa\",\"Americas\",\"Antarctica\",\"Asia\",\"Europe\",\"Oceania\",\"Seven seas (open ocean)\"]},{\"attribute\": \"region_wb\",\"count\": 8,\"type\": \"string\",\"values\": [\"Antarctica\",\"East Asia & Pacific\",\"Europe & Central Asia\",\"Latin America & Caribbean\",\"Middle East & North Africa\",\"North America\",\"South Asia\",\"Sub-Saharan Africa\"]},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [1,3],\"min\": 1,\"max\": 3},{\"attribute\": \"sov_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"AU1\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CH1\",\"CHE\",\"CHL\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DN1\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FI1\",\"FJI\",\"FR1\",\"GAB\",\"GB1\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\"]},{\"attribute\": \"sovereignt\",\"count\": 171,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\",\"Moldova\",\"Mongolia\",\"Montenegro\"]},{\"attribute\": \"su_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"su_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"subregion\",\"count\": 22,\"type\": \"string\",\"values\": [\"Antarctica\",\"Australia and New Zealand\",\"Caribbean\",\"Central America\",\"Central Asia\",\"Eastern Africa\",\"Eastern Asia\",\"Eastern Europe\",\"Melanesia\",\"Middle Africa\",\"Northern Africa\",\"Northern America\",\"Northern Europe\",\"Seven seas (open ocean)\",\"South America\",\"South-Eastern Asia\",\"Southern Africa\",\"Southern Asia\",\"Southern Europe\",\"Western Africa\",\"Western Asia\",\"Western Europe\"]},{\"attribute\": \"subunit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"tiny\",\"count\": 5,\"type\": \"number\",\"values\": [-99,2,3,4,5],\"min\": -99,\"max\": 5},{\"attribute\": \"type\",\"count\": 5,\"type\": \"string\",\"values\": [\"Country\",\"Dependency\",\"Disputed\",\"Indeterminate\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 172,\"type\": \"string\",\"values\": [\"-099\",\"004\",\"008\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\",\"458\",\"466\",\"478\"]},{\"attribute\": \"wb_a2\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"GZ\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KV\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\"]},{\"attribute\": \"wb_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KSV\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\",\"MKD\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "5", "minzoom": "0", @@ -12,15 +13,15 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 512 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.906250, -52.482780 ], [ -68.906250, -54.572062 ], [ -67.500000, -54.572062 ], [ -68.203125, -55.379110 ], [ -71.015625, -54.977614 ], [ -75.234375, -52.482780 ], [ -71.718750, -53.748711 ], [ -70.312500, -52.908902 ], [ -68.906250, -52.482780 ] ] ], [ [ [ -130.781250, 54.977614 ], [ -134.296875, 58.447733 ], [ -137.109375, 58.447733 ], [ -142.734375, 60.239811 ], [ -147.656250, 60.930432 ], [ -148.359375, 60.930432 ], [ -148.359375, 60.239811 ], [ -151.875000, 59.175928 ], [ -151.171875, 61.606396 ], [ -154.687500, 59.534318 ], [ -153.984375, 59.175928 ], [ -154.687500, 58.447733 ], [ -158.906250, 56.170023 ], [ -165.234375, 54.572062 ], [ -158.906250, 57.326521 ], [ -157.500000, 59.175928 ], [ -159.609375, 58.447733 ], [ -161.015625, 59.175928 ], [ -162.421875, 58.813742 ], [ -163.125000, 60.239811 ], [ -163.828125, 59.888937 ], [ -165.937500, 60.586967 ], [ -165.937500, 62.267923 ], [ -165.234375, 63.233627 ], [ -161.015625, 63.860036 ], [ -161.718750, 64.472794 ], [ -161.015625, 65.072130 ], [ -165.234375, 64.472794 ], [ -168.750000, 65.946472 ], [ -164.531250, 66.791909 ], [ -163.828125, 66.791909 ], [ -163.828125, 66.231457 ], [ -161.718750, 66.231457 ], [ -167.343750, 68.399180 ], [ -166.640625, 68.911005 ], [ -163.828125, 69.411242 ], [ -162.421875, 70.377854 ], [ -156.796875, 71.524909 ], [ -155.390625, 71.300793 ], [ -154.687500, 70.844673 ], [ -152.578125, 70.844673 ], [ -151.171875, 70.612614 ], [ -144.140625, 70.377854 ], [ -141.328125, 69.900118 ], [ -137.109375, 68.911005 ], [ -135.000000, 69.657086 ], [ -133.593750, 69.657086 ], [ -130.078125, 70.377854 ], [ -129.375000, 69.900118 ], [ -128.671875, 70.612614 ], [ -125.859375, 69.657086 ], [ -124.453125, 70.377854 ], [ -124.453125, 69.411242 ], [ -121.640625, 69.900118 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.656555 ], [ -113.906250, 68.399180 ], [ -115.312500, 68.138852 ], [ -113.906250, 67.875541 ], [ -110.390625, 68.138852 ], [ -108.984375, 67.609221 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.656555 ], [ -106.171875, 68.911005 ], [ -104.765625, 68.138852 ], [ -101.953125, 67.875541 ], [ -99.140625, 67.875541 ], [ -97.734375, 68.656555 ], [ -96.328125, 68.399180 ], [ -96.328125, 67.339861 ], [ -94.921875, 69.162558 ], [ -97.031250, 70.140364 ], [ -95.625000, 71.965388 ], [ -93.515625, 71.524909 ], [ -92.109375, 70.377854 ], [ -92.812500, 69.900118 ], [ -90.703125, 69.657086 ], [ -90.703125, 68.656555 ], [ -89.296875, 69.411242 ], [ -87.890625, 67.339861 ], [ -85.781250, 69.900118 ], [ -82.968750, 69.900118 ], [ -81.562500, 69.162558 ], [ -81.562500, 67.339861 ], [ -83.671875, 66.513260 ], [ -85.781250, 66.791909 ], [ -86.484375, 65.946472 ], [ -87.890625, 65.072130 ], [ -93.515625, 62.267923 ], [ -94.921875, 59.175928 ], [ -93.515625, 58.813742 ], [ -92.812500, 57.326521 ], [ -91.406250, 57.326521 ], [ -85.078125, 55.379110 ], [ -82.968750, 55.379110 ], [ -82.265625, 53.330873 ], [ -80.156250, 51.618017 ], [ -78.750000, 52.908902 ], [ -80.156250, 54.977614 ], [ -76.640625, 56.559482 ], [ -78.750000, 58.813742 ], [ -77.343750, 59.888937 ], [ -78.750000, 62.593341 ], [ -74.531250, 62.593341 ], [ -71.718750, 61.270233 ], [ -69.609375, 61.270233 ], [ -69.609375, 59.175928 ], [ -68.203125, 58.447733 ], [ -64.687500, 60.586967 ], [ -61.875000, 57.326521 ], [ -61.875000, 56.559482 ], [ -57.656250, 54.977614 ], [ -56.250000, 52.482780 ], [ -60.468750, 50.289339 ], [ -66.796875, 50.289339 ], [ -71.718750, 47.040182 ], [ -69.609375, 47.517201 ], [ -65.390625, 49.382373 ], [ -64.687500, 48.922499 ], [ -65.390625, 48.458352 ], [ -64.687500, 46.558860 ], [ -61.875000, 46.073231 ], [ -61.171875, 47.040182 ], [ -60.468750, 46.073231 ], [ -61.171875, 45.583290 ], [ -66.796875, 44.087585 ], [ -66.796875, 44.590467 ], [ -64.687500, 45.583290 ], [ -67.500000, 45.583290 ], [ -67.500000, 45.089036 ], [ -70.312500, 44.087585 ], [ -71.015625, 42.553080 ], [ -70.312500, 42.032974 ], [ -73.828125, 40.979898 ], [ -74.531250, 40.979898 ], [ -75.234375, 39.368279 ], [ -75.937500, 39.909736 ], [ -76.640625, 37.718590 ], [ -75.937500, 36.031332 ], [ -81.562500, 31.952162 ], [ -80.156250, 27.059126 ], [ -80.859375, 25.165173 ], [ -84.375000, 30.145127 ], [ -86.484375, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.921875, 29.535230 ], [ -97.734375, 28.304381 ], [ -97.734375, 26.431228 ], [ -97.734375, 21.943046 ], [ -94.921875, 18.646245 ], [ -91.406250, 19.311143 ], [ -90.703125, 21.289374 ], [ -87.187500, 21.943046 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -89.296875, 15.961329 ], [ -88.593750, 15.961329 ], [ -85.078125, 16.636192 ], [ -83.671875, 15.284185 ], [ -85.078125, 15.284185 ], [ -87.890625, 13.239945 ], [ -88.593750, 13.923404 ], [ -90.703125, 13.923404 ], [ -92.812500, 14.604847 ], [ -94.218750, 15.961329 ], [ -97.031250, 15.961329 ], [ -105.468750, 19.973349 ], [ -106.171875, 23.241346 ], [ -112.500000, 29.535230 ], [ -113.203125, 31.353637 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.751278 ], [ -109.687500, 23.885838 ], [ -110.390625, 23.241346 ], [ -112.500000, 26.431228 ], [ -115.312500, 28.304381 ], [ -114.609375, 28.921631 ], [ -117.421875, 32.546813 ], [ -120.937500, 34.885931 ], [ -123.750000, 39.368279 ], [ -125.156250, 48.458352 ], [ -123.750000, 48.458352 ], [ -123.046875, 47.517201 ], [ -123.046875, 49.382373 ], [ -125.156250, 50.289339 ], [ -123.750000, 48.922499 ], [ -125.859375, 48.922499 ], [ -128.671875, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 52.482780 ], [ -130.781250, 54.572062 ], [ -130.781250, 54.977614 ] ], [ [ -101.250000, 29.535230 ], [ -99.140625, 26.431228 ], [ -98.437500, 26.431228 ], [ -101.250000, 29.535230 ] ], [ [ -76.640625, 37.718590 ], [ -76.640625, 39.368279 ], [ -77.343750, 38.272689 ], [ -76.640625, 37.718590 ] ] ], [ [ [ -82.265625, 62.915233 ], [ -84.375000, 62.267923 ], [ -83.671875, 62.915233 ], [ -82.265625, 62.915233 ] ] ], [ [ [ -115.312500, 73.428424 ], [ -114.609375, 73.226700 ], [ -115.312500, 72.816074 ], [ -112.500000, 73.022592 ], [ -111.093750, 72.607120 ], [ -110.390625, 73.022592 ], [ -108.281250, 71.746432 ], [ -108.984375, 73.226700 ], [ -106.875000, 73.226700 ], [ -104.765625, 71.074056 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -103.359375, 69.657086 ], [ -102.656250, 68.911005 ], [ -106.171875, 69.411242 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -116.718750, 69.411242 ], [ -117.421875, 70.140364 ], [ -112.500000, 70.377854 ], [ -118.125000, 70.612614 ], [ -118.828125, 71.074056 ], [ -116.718750, 71.524909 ], [ -119.531250, 71.746432 ], [ -118.125000, 72.816074 ], [ -115.312500, 73.428424 ] ] ], [ [ [ -62.578125, 10.487812 ], [ -59.765625, 8.407168 ], [ -57.656250, 6.315299 ], [ -54.140625, 6.315299 ], [ -52.031250, 4.915833 ], [ -52.734375, 2.811371 ], [ -54.843750, 2.811371 ], [ -56.953125, 2.108899 ], [ -59.765625, 2.108899 ], [ -60.468750, 5.615986 ], [ -61.171875, 5.615986 ], [ -65.390625, 4.214943 ], [ -63.984375, 2.811371 ], [ -66.796875, 1.406109 ], [ -68.203125, 3.513421 ], [ -67.500000, 1.406109 ], [ -70.312500, 2.108899 ], [ -70.312500, -2.108899 ], [ -70.312500, -4.214943 ], [ -73.125000, -4.915833 ], [ -74.531250, -7.013668 ], [ -72.421875, -9.795678 ], [ -71.015625, -9.102097 ], [ -71.015625, -10.487812 ], [ -68.906250, -12.554564 ], [ -69.609375, -10.487812 ], [ -65.390625, -9.102097 ], [ -66.093750, -11.178402 ], [ -61.171875, -13.239945 ], [ -60.468750, -15.961329 ], [ -58.359375, -15.961329 ], [ -58.359375, -19.311143 ], [ -61.875000, -19.311143 ], [ -63.281250, -21.943046 ], [ -64.687500, -22.593726 ], [ -66.796875, -21.289374 ], [ -67.500000, -22.593726 ], [ -68.906250, -23.885838 ], [ -68.906250, -26.431228 ], [ -71.015625, -31.353637 ], [ -70.312500, -33.724340 ], [ -72.421875, -42.032974 ], [ -71.718750, -44.590467 ], [ -73.828125, -48.922499 ], [ -72.421875, -51.618017 ], [ -68.906250, -52.052490 ], [ -71.015625, -52.482780 ], [ -71.718750, -53.748711 ], [ -75.234375, -52.052490 ], [ -75.937500, -48.458352 ], [ -74.531250, -46.558860 ], [ -75.937500, -46.558860 ], [ -74.531250, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.125000, -42.032974 ], [ -74.531250, -43.068888 ], [ -73.828125, -36.597889 ], [ -71.718750, -31.952162 ], [ -69.609375, -17.308688 ], [ -71.015625, -17.978733 ], [ -76.640625, -14.604847 ], [ -80.156250, -7.013668 ], [ -81.562500, -5.615986 ], [ -81.562500, -3.513421 ], [ -80.859375, -2.811371 ], [ -80.156250, -2.108899 ], [ -81.562500, -2.108899 ], [ -81.562500, -0.703107 ], [ -80.156250, 1.406109 ], [ -79.453125, 1.406109 ], [ -75.937500, 0.000000 ], [ -79.453125, 2.108899 ], [ -77.343750, 4.214943 ], [ -78.046875, 7.710992 ], [ -75.234375, 11.178402 ], [ -71.718750, 12.554564 ], [ -71.718750, 11.867351 ], [ -71.718750, 9.102097 ], [ -70.312500, 12.554564 ], [ -68.203125, 11.178402 ], [ -62.578125, 11.178402 ], [ -62.578125, 10.487812 ] ], [ [ -57.656250, 6.315299 ], [ -58.359375, 4.214943 ], [ -57.656250, 3.513421 ], [ -57.656250, 6.315299 ] ], [ [ -75.937500, 0.000000 ], [ -75.937500, -0.703107 ], [ -75.234375, 0.000000 ], [ -75.937500, 0.000000 ] ] ], [ [ [ -98.437500, 70.377854 ], [ -96.328125, 69.162558 ], [ -96.328125, 68.911005 ], [ -99.843750, 69.411242 ], [ -98.437500, 70.377854 ] ] ], [ [ [ -121.640625, 74.590108 ], [ -118.125000, 74.211983 ], [ -116.015625, 73.627789 ], [ -118.125000, 72.816074 ], [ -119.531250, 72.607120 ], [ -120.937500, 71.524909 ], [ -123.750000, 71.074056 ], [ -126.562500, 71.965388 ], [ -124.453125, 73.824820 ], [ -125.156250, 74.402163 ], [ -121.640625, 74.590108 ] ] ], [ [ [ -35.156250, 83.676943 ], [ -27.421875, 83.520162 ], [ -21.093750, 82.765373 ], [ -23.203125, 82.402423 ], [ -32.343750, 82.214217 ], [ -31.640625, 82.118384 ], [ -28.125000, 82.214217 ], [ -25.312500, 81.823794 ], [ -23.203125, 82.118384 ], [ -22.500000, 81.823794 ], [ -23.203125, 81.201420 ], [ -16.171875, 81.923186 ], [ -13.359375, 81.723188 ], [ -12.656250, 81.308321 ], [ -16.875000, 80.415707 ], [ -20.390625, 80.178713 ], [ -18.281250, 80.178713 ], [ -20.390625, 78.767792 ], [ -19.687500, 77.767582 ], [ -18.984375, 76.999935 ], [ -21.796875, 76.679785 ], [ -20.390625, 76.184995 ], [ -19.687500, 75.320025 ], [ -21.093750, 75.320025 ], [ -19.687500, 74.402163 ], [ -21.796875, 74.402163 ], [ -21.093750, 73.627789 ], [ -23.906250, 73.428424 ], [ -22.500000, 72.395706 ], [ -24.609375, 72.607120 ], [ -25.312500, 72.395706 ], [ -22.500000, 71.524909 ], [ -21.796875, 70.844673 ], [ -23.906250, 70.612614 ], [ -26.015625, 71.524909 ], [ -25.312500, 70.844673 ], [ -26.718750, 70.377854 ], [ -22.500000, 70.140364 ], [ -28.125000, 68.656555 ], [ -32.343750, 68.138852 ], [ -36.562500, 66.231457 ], [ -40.078125, 65.658275 ], [ -41.484375, 63.548552 ], [ -42.890625, 62.915233 ], [ -43.593750, 60.239811 ], [ -45.000000, 60.239811 ], [ -49.921875, 61.606396 ], [ -54.140625, 66.231457 ], [ -54.140625, 67.339861 ], [ -53.437500, 68.399180 ], [ -52.031250, 68.911005 ], [ -51.328125, 70.140364 ], [ -54.140625, 69.411242 ], [ -54.843750, 69.657086 ], [ -54.843750, 70.844673 ], [ -52.031250, 70.612614 ], [ -54.140625, 71.746432 ], [ -56.250000, 71.746432 ], [ -54.843750, 72.607120 ], [ -59.062500, 75.672197 ], [ -61.875000, 76.184995 ], [ -68.906250, 76.184995 ], [ -71.718750, 77.157163 ], [ -66.796875, 77.466028 ], [ -71.718750, 77.767582 ], [ -73.828125, 78.061989 ], [ -73.828125, 78.490552 ], [ -66.093750, 79.432371 ], [ -65.390625, 79.812302 ], [ -68.203125, 80.178713 ], [ -67.500000, 80.532071 ], [ -62.578125, 81.413933 ], [ -63.281250, 81.823794 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -53.437500, 81.923186 ], [ -50.625000, 82.494824 ], [ -45.000000, 81.723188 ], [ -47.109375, 82.214217 ], [ -47.109375, 82.676285 ], [ -43.593750, 83.277705 ], [ -40.078125, 83.194896 ], [ -38.671875, 83.599031 ], [ -35.156250, 83.676943 ] ] ], [ [ [ -73.125000, 83.277705 ], [ -68.906250, 83.111071 ], [ -63.984375, 82.940327 ], [ -61.875000, 82.676285 ], [ -62.578125, 82.402423 ], [ -68.203125, 81.518272 ], [ -66.093750, 81.518272 ], [ -69.609375, 80.647035 ], [ -71.718750, 79.812302 ], [ -74.531250, 79.432371 ], [ -77.343750, 79.432371 ], [ -75.937500, 79.302640 ], [ -76.640625, 79.038437 ], [ -75.937500, 78.630006 ], [ -80.156250, 77.312520 ], [ -80.156250, 76.999935 ], [ -78.046875, 77.157163 ], [ -78.046875, 76.840816 ], [ -80.859375, 76.184995 ], [ -83.671875, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.999935 ], [ -87.890625, 77.312520 ], [ -88.593750, 77.915669 ], [ -85.078125, 77.617709 ], [ -86.484375, 78.206563 ], [ -88.593750, 78.490552 ], [ -85.781250, 79.432371 ], [ -87.187500, 80.297927 ], [ -83.671875, 80.178713 ], [ -82.265625, 80.532071 ], [ -87.890625, 80.532071 ], [ -90.000000, 80.872827 ], [ -92.109375, 81.923186 ], [ -87.187500, 82.308893 ], [ -85.781250, 82.676285 ], [ -83.671875, 82.402423 ], [ -82.968750, 82.940327 ], [ -79.453125, 83.194896 ], [ -76.640625, 83.194896 ], [ -75.937500, 83.111071 ], [ -73.125000, 83.277705 ] ] ], [ [ [ -7.734375, 4.915833 ], [ -11.953125, 7.013668 ], [ -13.359375, 9.102097 ], [ -15.468750, 11.178402 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -14.765625, 13.923404 ], [ -16.875000, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 16.636192 ], [ -17.578125, 21.289374 ], [ -14.765625, 21.943046 ], [ -17.578125, 21.943046 ], [ -14.765625, 26.431228 ], [ -9.843750, 30.145127 ], [ -9.843750, 33.137551 ], [ -5.625000, 36.031332 ], [ -2.812500, 35.460670 ], [ -1.406250, 32.546813 ], [ -9.140625, 28.921631 ], [ -9.140625, 27.683528 ], [ -5.625000, 25.165173 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 3.515625, 15.961329 ], [ 0.000000, 15.284185 ], [ 2.109375, 12.554564 ], [ 0.703125, 11.178402 ], [ 0.000000, 11.178402 ], [ 0.703125, 6.315299 ], [ -3.515625, 5.615986 ], [ -7.734375, 4.915833 ] ], [ [ -7.734375, 4.915833 ], [ -8.437500, 10.487812 ], [ -9.140625, 7.710992 ], [ -7.734375, 4.915833 ] ], [ [ -6.328125, 10.487812 ], [ -3.515625, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 11.867351 ], [ -6.328125, 10.487812 ] ], [ [ -5.625000, 15.961329 ], [ -5.625000, 16.636192 ], [ -9.140625, 15.961329 ], [ -5.625000, 15.961329 ] ], [ [ -10.546875, 8.407168 ], [ -11.250000, 10.487812 ], [ -11.953125, 10.487812 ], [ -10.546875, 8.407168 ] ] ], [ [ [ -82.968750, 73.824820 ], [ -80.859375, 72.816074 ], [ -80.859375, 72.181804 ], [ -78.046875, 72.816074 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -72.421875, 71.746432 ], [ -68.203125, 70.140364 ], [ -67.500000, 69.411242 ], [ -68.906250, 68.911005 ], [ -65.390625, 67.875541 ], [ -63.984375, 67.067433 ], [ -61.875000, 67.067433 ], [ -63.984375, 65.072130 ], [ -66.796875, 66.513260 ], [ -68.203125, 66.513260 ], [ -68.203125, 65.946472 ], [ -64.687500, 63.548552 ], [ -65.390625, 62.915233 ], [ -68.906250, 63.860036 ], [ -66.796875, 61.938950 ], [ -71.718750, 62.915233 ], [ -75.234375, 64.774125 ], [ -78.046875, 64.472794 ], [ -78.750000, 64.774125 ], [ -78.046875, 65.366837 ], [ -74.531250, 65.658275 ], [ -73.125000, 67.875541 ], [ -75.937500, 68.399180 ], [ -77.343750, 68.911005 ], [ -76.640625, 69.162558 ], [ -79.453125, 70.377854 ], [ -81.562500, 69.900118 ], [ -82.968750, 69.900118 ], [ -89.296875, 70.612614 ], [ -90.000000, 70.844673 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.703125, 72.395706 ], [ -88.593750, 73.627789 ], [ -86.484375, 73.824820 ], [ -87.187500, 73.226700 ], [ -85.781250, 72.607120 ], [ -85.078125, 73.428424 ], [ -82.968750, 73.824820 ] ] ], [ [ [ 1.406250, 42.553080 ], [ 2.812500, 42.032974 ], [ 0.703125, 41.508577 ], [ -0.703125, 37.718590 ], [ -5.625000, 36.031332 ], [ -7.734375, 37.718590 ], [ -7.031250, 40.979898 ], [ -8.437500, 37.160317 ], [ -9.140625, 37.160317 ], [ -9.843750, 38.822591 ], [ -9.140625, 42.032974 ], [ -9.843750, 43.068888 ], [ -8.437500, 44.087585 ], [ -2.109375, 43.580391 ], [ -1.406250, 46.073231 ], [ -4.921875, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.837982 ], [ -1.406250, 49.382373 ], [ 2.109375, 51.179343 ], [ 7.734375, 49.382373 ], [ 5.625000, 47.040182 ], [ 7.031250, 44.087585 ], [ 1.406250, 42.553080 ] ] ], [ [ [ -92.812500, 81.308321 ], [ -91.406250, 80.760615 ], [ -87.890625, 80.415707 ], [ -87.187500, 79.687184 ], [ -86.484375, 79.432371 ], [ -88.593750, 78.490552 ], [ -89.296875, 78.349411 ], [ -93.515625, 78.349411 ], [ -94.218750, 78.767792 ], [ -93.515625, 79.432371 ], [ -95.625000, 79.432371 ], [ -97.031250, 80.178713 ], [ -95.625000, 80.983688 ], [ -94.921875, 80.983688 ], [ -94.921875, 81.308321 ], [ -92.812500, 81.308321 ] ] ], [ [ [ -78.046875, 25.799891 ], [ -78.046875, 23.885838 ], [ -78.750000, 25.799891 ], [ -78.046875, 25.799891 ] ] ], [ [ [ -100.546875, 74.019543 ], [ -97.734375, 73.824820 ], [ -97.734375, 73.627789 ], [ -98.437500, 73.022592 ], [ -97.031250, 72.607120 ], [ -97.031250, 71.746432 ], [ -98.437500, 71.300793 ], [ -102.656250, 72.607120 ], [ -102.656250, 73.022592 ], [ -100.546875, 72.816074 ], [ -101.953125, 73.428424 ], [ -100.546875, 74.019543 ] ] ], [ [ [ -97.031250, 77.312520 ], [ -94.921875, 77.157163 ], [ -94.218750, 76.840816 ], [ -92.109375, 76.840816 ], [ -91.406250, 76.184995 ], [ -89.296875, 75.672197 ], [ -81.562500, 75.845169 ], [ -80.156250, 75.497157 ], [ -80.859375, 74.775843 ], [ -88.593750, 74.402163 ], [ -92.812500, 74.959392 ], [ -94.218750, 76.351896 ], [ -97.734375, 76.840816 ], [ -97.031250, 77.312520 ] ] ], [ [ [ -5.625000, 56.170023 ], [ -6.328125, 56.944974 ], [ -5.625000, 58.813742 ], [ -3.515625, 58.813742 ], [ -4.218750, 57.704147 ], [ -2.109375, 57.704147 ], [ -3.515625, 56.170023 ], [ -2.109375, 56.170023 ], [ 0.000000, 53.330873 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ -5.625000, 50.289339 ], [ -3.515625, 51.618017 ], [ -5.625000, 52.052490 ], [ -4.921875, 52.482780 ], [ -4.921875, 53.748711 ], [ -3.515625, 53.748711 ], [ -3.515625, 54.162434 ], [ -4.921875, 54.977614 ], [ -5.625000, 56.170023 ] ] ], [ [ [ -109.687500, 76.840816 ], [ -108.281250, 76.351896 ], [ -108.281250, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.875000, 75.140778 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -111.796875, 75.320025 ], [ -118.125000, 75.320025 ], [ -116.015625, 76.516819 ], [ -113.203125, 76.184995 ], [ -111.093750, 75.672197 ], [ -109.687500, 75.497157 ], [ -111.093750, 76.516819 ], [ -109.687500, 76.840816 ] ] ], [ [ [ -85.781250, 11.178402 ], [ -87.890625, 13.239945 ], [ -83.671875, 15.284185 ], [ -83.671875, 11.178402 ], [ -82.968750, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.046875, 7.710992 ], [ -79.453125, 9.102097 ], [ -80.859375, 7.710992 ], [ -82.968750, 8.407168 ], [ -85.781250, 11.178402 ] ] ], [ [ [ -16.171875, 66.791909 ], [ -14.765625, 66.513260 ], [ -14.062500, 65.366837 ], [ -18.984375, 63.548552 ], [ -23.203125, 64.168107 ], [ -21.796875, 64.472794 ], [ -24.609375, 65.072130 ], [ -22.500000, 65.366837 ], [ -24.609375, 65.658275 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -21.093750, 65.946472 ], [ -19.687500, 66.513260 ], [ -18.281250, 66.231457 ], [ -16.171875, 66.791909 ] ] ], [ [ [ -116.718750, 77.767582 ], [ -117.421875, 76.679785 ], [ -121.640625, 76.016094 ], [ -123.046875, 76.184995 ], [ -119.531250, 77.617709 ], [ -116.718750, 77.767582 ] ] ], [ [ [ -61.875000, 11.178402 ], [ -61.171875, 10.487812 ], [ -62.578125, 10.487812 ], [ -61.875000, 11.178402 ] ] ], [ [ [ -94.921875, 74.211983 ], [ -90.703125, 74.019543 ], [ -94.921875, 72.181804 ], [ -95.625000, 72.181804 ], [ -96.328125, 73.627789 ], [ -94.921875, 74.211983 ] ] ], [ [ [ -99.140625, 76.840816 ], [ -98.437500, 75.140778 ], [ -99.843750, 74.959392 ], [ -101.250000, 75.140778 ], [ -101.250000, 75.672197 ], [ -102.656250, 75.672197 ], [ -102.656250, 76.351896 ], [ -99.140625, 76.840816 ] ] ], [ [ [ -86.484375, 65.946472 ], [ -85.781250, 65.658275 ], [ -80.156250, 63.860036 ], [ -81.562500, 63.548552 ], [ -83.671875, 64.168107 ], [ -85.781250, 63.233627 ], [ -86.484375, 63.860036 ], [ -87.890625, 63.548552 ], [ -86.484375, 65.946472 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -56.953125, 49.837982 ], [ -54.140625, 49.382373 ], [ -53.437500, 47.040182 ], [ -54.843750, 47.040182 ], [ -54.843750, 47.989922 ], [ -55.546875, 47.040182 ], [ -56.953125, 47.989922 ], [ -59.765625, 47.989922 ], [ -57.656250, 50.736455 ], [ -55.546875, 51.618017 ] ] ], [ [ [ -106.171875, 79.302640 ], [ -101.250000, 78.903929 ], [ -100.546875, 78.349411 ], [ -99.843750, 77.915669 ], [ -105.468750, 78.490552 ], [ -104.765625, 78.767792 ], [ -106.171875, 79.302640 ] ] ], [ [ [ -7.734375, 55.379110 ], [ -7.031250, 55.379110 ], [ -6.328125, 54.572062 ], [ -6.328125, 54.162434 ], [ -7.031250, 52.482780 ], [ -10.546875, 52.052490 ], [ -9.843750, 54.162434 ], [ -7.734375, 55.379110 ] ] ], [ [ [ -78.750000, 73.824820 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.022592 ], [ -78.046875, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.859375, 73.824820 ], [ -78.750000, 73.824820 ] ] ], [ [ [ -99.140625, 78.903929 ], [ -97.031250, 78.767792 ], [ -95.625000, 78.490552 ], [ -96.328125, 78.061989 ], [ -97.031250, 77.915669 ], [ -97.734375, 77.915669 ], [ -98.437500, 78.206563 ], [ -99.140625, 78.903929 ] ] ], [ [ [ -71.718750, 19.973349 ], [ -68.906250, 18.646245 ], [ -71.718750, 17.978733 ], [ -71.718750, 18.646245 ], [ -74.531250, 18.646245 ], [ -72.421875, 19.311143 ], [ -73.828125, 19.973349 ], [ -71.718750, 19.973349 ] ] ], [ [ [ -66.093750, 18.646245 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ], [ [ [ -111.796875, 78.206563 ], [ -110.390625, 78.061989 ], [ -110.390625, 77.767582 ], [ -112.500000, 77.466028 ], [ -113.906250, 77.767582 ], [ -111.796875, 78.206563 ] ] ], [ [ [ -156.093750, 20.632784 ], [ -155.390625, 19.973349 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ] ] ], [ [ [ -81.562500, 23.241346 ], [ -78.750000, 22.593726 ], [ -74.531250, 20.632784 ], [ -78.046875, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.750000, 21.943046 ], [ -81.562500, 23.241346 ] ] ], [ [ [ -105.468750, 73.824820 ], [ -104.765625, 73.428424 ], [ -105.468750, 72.816074 ], [ -106.875000, 73.226700 ], [ -107.578125, 73.627789 ], [ -105.468750, 73.824820 ] ] ], [ [ [ -94.921875, 75.672197 ], [ -94.218750, 75.140778 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.959392 ], [ -94.921875, 75.672197 ] ] ], [ [ [ -75.937500, 68.399180 ], [ -75.234375, 68.138852 ], [ -75.937500, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.609221 ], [ -75.937500, 68.399180 ] ] ], [ [ [ -133.593750, 54.572062 ], [ -132.187500, 54.162434 ], [ -131.484375, 52.482780 ], [ -133.593750, 53.748711 ], [ -133.593750, 54.572062 ] ] ], [ [ [ -165.937500, 60.586967 ], [ -165.937500, 60.239811 ], [ -168.046875, 60.239811 ], [ -165.937500, 60.586967 ] ] ], [ [ [ -111.796875, 78.903929 ], [ -109.687500, 78.630006 ], [ -113.203125, 78.490552 ], [ -111.796875, 78.903929 ] ] ], [ [ [ -94.921875, 77.915669 ], [ -94.218750, 77.617709 ], [ -96.328125, 77.617709 ], [ -97.031250, 77.915669 ], [ -94.921875, 77.915669 ] ] ], [ [ [ -152.578125, 58.077876 ], [ -153.281250, 57.326521 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.704147 ], [ -152.578125, 58.077876 ] ] ], [ [ [ -61.171875, 49.837982 ], [ -61.171875, 48.922499 ], [ -62.578125, 48.922499 ], [ -62.578125, 49.837982 ], [ -61.171875, 49.837982 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.906250, -52.482780 ], [ -68.906250, -54.572062 ], [ -67.500000, -54.572062 ], [ -68.203125, -55.379110 ], [ -71.015625, -54.977614 ], [ -75.234375, -52.482780 ], [ -71.718750, -53.748711 ], [ -70.312500, -52.908902 ], [ -68.906250, -52.482780 ] ] ], [ [ [ -163.828125, 66.791909 ], [ -167.343750, 68.399180 ], [ -166.640625, 68.911005 ], [ -163.828125, 69.411242 ], [ -162.421875, 70.377854 ], [ -156.796875, 71.524909 ], [ -155.390625, 71.300793 ], [ -154.687500, 70.844673 ], [ -152.578125, 70.844673 ], [ -151.171875, 70.612614 ], [ -144.140625, 70.377854 ], [ -141.328125, 69.900118 ], [ -137.109375, 68.911005 ], [ -135.000000, 69.657086 ], [ -133.593750, 69.657086 ], [ -130.078125, 70.377854 ], [ -129.375000, 69.900118 ], [ -128.671875, 70.612614 ], [ -125.859375, 69.657086 ], [ -124.453125, 70.377854 ], [ -124.453125, 69.411242 ], [ -121.640625, 69.900118 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.656555 ], [ -113.906250, 68.399180 ], [ -115.312500, 68.138852 ], [ -113.906250, 67.875541 ], [ -110.390625, 68.138852 ], [ -108.984375, 67.609221 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.656555 ], [ -106.171875, 68.911005 ], [ -104.765625, 68.138852 ], [ -101.953125, 67.875541 ], [ -99.140625, 67.875541 ], [ -97.734375, 68.656555 ], [ -96.328125, 68.399180 ], [ -96.328125, 67.339861 ], [ -94.921875, 69.162558 ], [ -97.031250, 70.140364 ], [ -95.625000, 71.965388 ], [ -93.515625, 71.524909 ], [ -92.109375, 70.377854 ], [ -92.812500, 69.900118 ], [ -90.703125, 69.657086 ], [ -90.703125, 68.656555 ], [ -89.296875, 69.411242 ], [ -87.890625, 67.339861 ], [ -85.781250, 69.900118 ], [ -82.968750, 69.900118 ], [ -81.562500, 69.162558 ], [ -81.562500, 67.339861 ], [ -83.671875, 66.513260 ], [ -85.781250, 66.791909 ], [ -86.484375, 65.946472 ], [ -87.890625, 65.072130 ], [ -93.515625, 62.267923 ], [ -94.921875, 59.175928 ], [ -93.515625, 58.813742 ], [ -92.812500, 57.326521 ], [ -91.406250, 57.326521 ], [ -85.078125, 55.379110 ], [ -82.968750, 55.379110 ], [ -82.265625, 53.330873 ], [ -80.156250, 51.618017 ], [ -78.750000, 52.908902 ], [ -80.156250, 54.977614 ], [ -76.640625, 56.559482 ], [ -78.750000, 58.813742 ], [ -77.343750, 59.888937 ], [ -78.750000, 62.593341 ], [ -74.531250, 62.593341 ], [ -71.718750, 61.270233 ], [ -69.609375, 61.270233 ], [ -69.609375, 59.175928 ], [ -68.203125, 58.447733 ], [ -64.687500, 60.586967 ], [ -61.875000, 57.326521 ], [ -61.875000, 56.559482 ], [ -57.656250, 54.977614 ], [ -56.250000, 52.482780 ], [ -60.468750, 50.289339 ], [ -66.796875, 50.289339 ], [ -71.718750, 47.040182 ], [ -69.609375, 47.517201 ], [ -65.390625, 49.382373 ], [ -64.687500, 48.922499 ], [ -65.390625, 48.458352 ], [ -64.687500, 46.558860 ], [ -61.875000, 46.073231 ], [ -61.171875, 47.040182 ], [ -60.468750, 46.073231 ], [ -61.171875, 45.583290 ], [ -66.796875, 44.087585 ], [ -66.796875, 44.590467 ], [ -64.687500, 45.583290 ], [ -67.500000, 45.583290 ], [ -67.500000, 45.089036 ], [ -70.312500, 44.087585 ], [ -71.015625, 42.553080 ], [ -70.312500, 42.032974 ], [ -73.828125, 40.979898 ], [ -74.531250, 40.979898 ], [ -75.234375, 39.368279 ], [ -75.937500, 39.909736 ], [ -76.640625, 37.718590 ], [ -75.937500, 36.031332 ], [ -81.562500, 31.952162 ], [ -80.156250, 27.059126 ], [ -80.859375, 25.165173 ], [ -84.375000, 30.145127 ], [ -86.484375, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.921875, 29.535230 ], [ -97.734375, 28.304381 ], [ -97.734375, 26.431228 ], [ -97.734375, 21.943046 ], [ -94.921875, 18.646245 ], [ -91.406250, 19.311143 ], [ -90.703125, 21.289374 ], [ -87.187500, 21.943046 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -89.296875, 15.961329 ], [ -88.593750, 15.961329 ], [ -85.078125, 16.636192 ], [ -83.671875, 15.284185 ], [ -85.078125, 15.284185 ], [ -87.890625, 13.239945 ], [ -88.593750, 13.923404 ], [ -90.703125, 13.923404 ], [ -92.812500, 14.604847 ], [ -94.218750, 15.961329 ], [ -97.031250, 15.961329 ], [ -105.468750, 19.973349 ], [ -106.171875, 23.241346 ], [ -112.500000, 29.535230 ], [ -113.203125, 31.353637 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.751278 ], [ -109.687500, 23.885838 ], [ -110.390625, 23.241346 ], [ -112.500000, 26.431228 ], [ -115.312500, 28.304381 ], [ -114.609375, 28.921631 ], [ -117.421875, 32.546813 ], [ -120.937500, 34.885931 ], [ -123.750000, 39.368279 ], [ -125.156250, 48.458352 ], [ -123.750000, 48.458352 ], [ -123.046875, 47.517201 ], [ -123.046875, 49.382373 ], [ -125.156250, 50.289339 ], [ -123.750000, 48.922499 ], [ -125.859375, 48.922499 ], [ -128.671875, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 52.482780 ], [ -130.781250, 54.572062 ], [ -130.781250, 54.977614 ], [ -134.296875, 58.447733 ], [ -137.109375, 58.447733 ], [ -142.734375, 60.239811 ], [ -147.656250, 60.930432 ], [ -148.359375, 60.930432 ], [ -148.359375, 60.239811 ], [ -151.875000, 59.175928 ], [ -151.171875, 61.606396 ], [ -154.687500, 59.534318 ], [ -153.984375, 59.175928 ], [ -154.687500, 58.447733 ], [ -158.906250, 56.170023 ], [ -165.234375, 54.572062 ], [ -158.906250, 57.326521 ], [ -157.500000, 59.175928 ], [ -159.609375, 58.447733 ], [ -161.015625, 59.175928 ], [ -162.421875, 58.813742 ], [ -163.125000, 60.239811 ], [ -163.828125, 59.888937 ], [ -165.937500, 60.586967 ], [ -165.937500, 62.267923 ], [ -165.234375, 63.233627 ], [ -161.015625, 63.860036 ], [ -161.718750, 64.472794 ], [ -161.015625, 65.072130 ], [ -165.234375, 64.472794 ], [ -168.750000, 65.946472 ], [ -164.531250, 66.791909 ], [ -163.828125, 66.791909 ] ], [ [ -163.828125, 66.791909 ], [ -163.828125, 66.231457 ], [ -161.718750, 66.231457 ], [ -163.828125, 66.791909 ] ], [ [ -101.250000, 29.535230 ], [ -99.140625, 26.431228 ], [ -98.437500, 26.431228 ], [ -101.250000, 29.535230 ] ], [ [ -76.640625, 37.718590 ], [ -76.640625, 39.368279 ], [ -77.343750, 38.272689 ], [ -76.640625, 37.718590 ] ] ], [ [ [ -82.265625, 62.915233 ], [ -84.375000, 62.267923 ], [ -83.671875, 62.915233 ], [ -82.265625, 62.915233 ] ] ], [ [ [ -115.312500, 73.428424 ], [ -114.609375, 73.226700 ], [ -115.312500, 72.816074 ], [ -112.500000, 73.022592 ], [ -111.093750, 72.607120 ], [ -110.390625, 73.022592 ], [ -108.281250, 71.746432 ], [ -108.984375, 73.226700 ], [ -106.875000, 73.226700 ], [ -104.765625, 71.074056 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -103.359375, 69.657086 ], [ -102.656250, 68.911005 ], [ -106.171875, 69.411242 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -116.718750, 69.411242 ], [ -117.421875, 70.140364 ], [ -112.500000, 70.377854 ], [ -118.125000, 70.612614 ], [ -118.828125, 71.074056 ], [ -116.718750, 71.524909 ], [ -119.531250, 71.746432 ], [ -118.125000, 72.816074 ], [ -115.312500, 73.428424 ] ] ], [ [ [ -62.578125, 10.487812 ], [ -59.765625, 8.407168 ], [ -57.656250, 6.315299 ], [ -54.140625, 6.315299 ], [ -52.031250, 4.915833 ], [ -52.734375, 2.811371 ], [ -54.843750, 2.811371 ], [ -56.953125, 2.108899 ], [ -59.765625, 2.108899 ], [ -60.468750, 5.615986 ], [ -61.171875, 5.615986 ], [ -65.390625, 4.214943 ], [ -63.984375, 2.811371 ], [ -66.796875, 1.406109 ], [ -68.203125, 3.513421 ], [ -67.500000, 1.406109 ], [ -70.312500, 2.108899 ], [ -70.312500, -2.108899 ], [ -70.312500, -4.214943 ], [ -73.125000, -4.915833 ], [ -74.531250, -7.013668 ], [ -72.421875, -9.795678 ], [ -71.015625, -9.102097 ], [ -71.015625, -10.487812 ], [ -68.906250, -12.554564 ], [ -69.609375, -10.487812 ], [ -65.390625, -9.102097 ], [ -66.093750, -11.178402 ], [ -61.171875, -13.239945 ], [ -60.468750, -15.961329 ], [ -58.359375, -15.961329 ], [ -58.359375, -19.311143 ], [ -61.875000, -19.311143 ], [ -63.281250, -21.943046 ], [ -64.687500, -22.593726 ], [ -66.796875, -21.289374 ], [ -67.500000, -22.593726 ], [ -68.203125, -22.593726 ], [ -68.906250, -23.885838 ], [ -68.906250, -26.431228 ], [ -71.015625, -31.353637 ], [ -70.312500, -33.724340 ], [ -72.421875, -42.032974 ], [ -71.718750, -44.590467 ], [ -73.828125, -48.922499 ], [ -72.421875, -51.618017 ], [ -68.906250, -52.052490 ], [ -71.015625, -52.482780 ], [ -71.718750, -53.748711 ], [ -75.234375, -52.052490 ], [ -75.937500, -48.458352 ], [ -74.531250, -46.558860 ], [ -75.937500, -46.558860 ], [ -74.531250, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.125000, -42.032974 ], [ -74.531250, -43.068888 ], [ -73.828125, -36.597889 ], [ -71.718750, -31.952162 ], [ -69.609375, -17.308688 ], [ -71.015625, -17.978733 ], [ -76.640625, -14.604847 ], [ -80.156250, -7.013668 ], [ -81.562500, -5.615986 ], [ -81.562500, -3.513421 ], [ -80.859375, -2.811371 ], [ -80.156250, -2.108899 ], [ -81.562500, -2.108899 ], [ -81.562500, -0.703107 ], [ -80.156250, 1.406109 ], [ -79.453125, 1.406109 ], [ -75.937500, 0.000000 ], [ -79.453125, 2.108899 ], [ -77.343750, 4.214943 ], [ -78.046875, 7.710992 ], [ -75.234375, 11.178402 ], [ -71.718750, 12.554564 ], [ -71.718750, 11.867351 ], [ -71.718750, 9.102097 ], [ -70.312500, 12.554564 ], [ -68.203125, 11.178402 ], [ -62.578125, 11.178402 ], [ -61.875000, 11.178402 ], [ -61.171875, 10.487812 ], [ -62.578125, 10.487812 ] ], [ [ -57.656250, 6.315299 ], [ -58.359375, 4.214943 ], [ -57.656250, 3.513421 ], [ -57.656250, 6.315299 ] ], [ [ -75.937500, 0.000000 ], [ -75.937500, -0.703107 ], [ -75.234375, 0.000000 ], [ -75.937500, 0.000000 ] ] ], [ [ [ -98.437500, 70.377854 ], [ -96.328125, 69.162558 ], [ -96.328125, 68.911005 ], [ -99.843750, 69.411242 ], [ -98.437500, 70.377854 ] ] ], [ [ [ -121.640625, 74.590108 ], [ -118.125000, 74.211983 ], [ -116.015625, 73.627789 ], [ -118.125000, 72.816074 ], [ -119.531250, 72.607120 ], [ -120.937500, 71.524909 ], [ -123.750000, 71.074056 ], [ -126.562500, 71.965388 ], [ -124.453125, 73.824820 ], [ -125.156250, 74.402163 ], [ -121.640625, 74.590108 ] ] ], [ [ [ -35.156250, 83.676943 ], [ -27.421875, 83.520162 ], [ -21.093750, 82.765373 ], [ -23.203125, 82.402423 ], [ -32.343750, 82.214217 ], [ -31.640625, 82.118384 ], [ -28.125000, 82.214217 ], [ -25.312500, 81.823794 ], [ -23.203125, 82.118384 ], [ -22.500000, 81.823794 ], [ -23.203125, 81.201420 ], [ -16.171875, 81.923186 ], [ -13.359375, 81.723188 ], [ -12.656250, 81.308321 ], [ -16.875000, 80.415707 ], [ -20.390625, 80.178713 ], [ -18.281250, 80.178713 ], [ -20.390625, 78.767792 ], [ -19.687500, 77.767582 ], [ -18.984375, 76.999935 ], [ -21.796875, 76.679785 ], [ -20.390625, 76.184995 ], [ -19.687500, 75.320025 ], [ -21.093750, 75.320025 ], [ -19.687500, 74.402163 ], [ -21.796875, 74.402163 ], [ -21.093750, 73.627789 ], [ -23.906250, 73.428424 ], [ -22.500000, 72.395706 ], [ -24.609375, 72.607120 ], [ -25.312500, 72.395706 ], [ -22.500000, 71.524909 ], [ -21.796875, 70.844673 ], [ -23.906250, 70.612614 ], [ -26.015625, 71.524909 ], [ -25.312500, 70.844673 ], [ -26.718750, 70.377854 ], [ -22.500000, 70.140364 ], [ -28.125000, 68.656555 ], [ -32.343750, 68.138852 ], [ -36.562500, 66.231457 ], [ -40.078125, 65.658275 ], [ -41.484375, 63.548552 ], [ -42.890625, 62.915233 ], [ -43.593750, 60.239811 ], [ -45.000000, 60.239811 ], [ -49.921875, 61.606396 ], [ -54.140625, 66.231457 ], [ -54.140625, 67.339861 ], [ -53.437500, 68.399180 ], [ -52.031250, 68.911005 ], [ -51.328125, 70.140364 ], [ -54.140625, 69.411242 ], [ -54.843750, 69.657086 ], [ -54.843750, 70.844673 ], [ -52.031250, 70.612614 ], [ -54.140625, 71.746432 ], [ -56.250000, 71.746432 ], [ -54.843750, 72.607120 ], [ -59.062500, 75.672197 ], [ -61.875000, 76.184995 ], [ -68.906250, 76.184995 ], [ -71.718750, 77.157163 ], [ -66.796875, 77.466028 ], [ -71.718750, 77.767582 ], [ -73.828125, 78.061989 ], [ -73.828125, 78.490552 ], [ -66.093750, 79.432371 ], [ -65.390625, 79.812302 ], [ -68.203125, 80.178713 ], [ -67.500000, 80.532071 ], [ -62.578125, 81.413933 ], [ -63.281250, 81.823794 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -53.437500, 81.923186 ], [ -50.625000, 82.494824 ], [ -45.000000, 81.723188 ], [ -47.109375, 82.214217 ], [ -47.109375, 82.676285 ], [ -43.593750, 83.277705 ], [ -40.078125, 83.194896 ], [ -38.671875, 83.599031 ], [ -35.156250, 83.676943 ] ] ], [ [ [ -73.125000, 83.277705 ], [ -68.906250, 83.111071 ], [ -63.984375, 82.940327 ], [ -61.875000, 82.676285 ], [ -62.578125, 82.402423 ], [ -68.203125, 81.518272 ], [ -66.093750, 81.518272 ], [ -69.609375, 80.647035 ], [ -71.718750, 79.812302 ], [ -74.531250, 79.432371 ], [ -77.343750, 79.432371 ], [ -75.937500, 79.302640 ], [ -76.640625, 79.038437 ], [ -75.937500, 78.630006 ], [ -80.156250, 77.312520 ], [ -80.156250, 76.999935 ], [ -78.046875, 77.157163 ], [ -78.046875, 76.840816 ], [ -80.859375, 76.184995 ], [ -83.671875, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.999935 ], [ -87.890625, 77.312520 ], [ -88.593750, 77.915669 ], [ -85.078125, 77.617709 ], [ -86.484375, 78.206563 ], [ -88.593750, 78.490552 ], [ -85.781250, 79.432371 ], [ -87.187500, 80.297927 ], [ -83.671875, 80.178713 ], [ -82.265625, 80.532071 ], [ -87.890625, 80.532071 ], [ -90.000000, 80.872827 ], [ -92.109375, 81.923186 ], [ -87.187500, 82.308893 ], [ -85.781250, 82.676285 ], [ -83.671875, 82.402423 ], [ -82.968750, 82.940327 ], [ -79.453125, 83.194896 ], [ -76.640625, 83.194896 ], [ -75.937500, 83.111071 ], [ -73.125000, 83.277705 ] ] ], [ [ [ -7.734375, 4.915833 ], [ -11.953125, 7.013668 ], [ -13.359375, 9.102097 ], [ -15.468750, 11.178402 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -14.765625, 13.923404 ], [ -16.875000, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 16.636192 ], [ -17.578125, 21.289374 ], [ -14.765625, 21.943046 ], [ -17.578125, 21.943046 ], [ -14.765625, 26.431228 ], [ -9.843750, 30.145127 ], [ -9.843750, 33.137551 ], [ -5.625000, 36.031332 ], [ -2.812500, 35.460670 ], [ -1.406250, 32.546813 ], [ -9.140625, 28.921631 ], [ -9.140625, 27.683528 ], [ -5.625000, 25.165173 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 3.515625, 15.961329 ], [ 0.000000, 15.284185 ], [ 2.109375, 12.554564 ], [ 0.703125, 11.178402 ], [ 0.000000, 11.178402 ], [ 0.703125, 6.315299 ], [ -3.515625, 5.615986 ], [ -7.734375, 4.915833 ] ], [ [ -7.734375, 4.915833 ], [ -8.437500, 10.487812 ], [ -9.140625, 7.710992 ], [ -7.734375, 4.915833 ] ], [ [ -6.328125, 10.487812 ], [ -3.515625, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 11.867351 ], [ -6.328125, 10.487812 ] ], [ [ -5.625000, 15.961329 ], [ -5.625000, 16.636192 ], [ -9.140625, 15.961329 ], [ -5.625000, 15.961329 ] ], [ [ -10.546875, 8.407168 ], [ -11.250000, 10.487812 ], [ -11.953125, 10.487812 ], [ -10.546875, 8.407168 ] ] ], [ [ [ -82.968750, 73.824820 ], [ -80.859375, 72.816074 ], [ -80.859375, 72.181804 ], [ -78.046875, 72.816074 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -72.421875, 71.746432 ], [ -68.203125, 70.140364 ], [ -67.500000, 69.411242 ], [ -68.906250, 68.911005 ], [ -65.390625, 67.875541 ], [ -63.984375, 67.067433 ], [ -61.875000, 67.067433 ], [ -63.984375, 65.072130 ], [ -66.796875, 66.513260 ], [ -68.203125, 66.513260 ], [ -68.203125, 65.946472 ], [ -64.687500, 63.548552 ], [ -65.390625, 62.915233 ], [ -68.906250, 63.860036 ], [ -66.796875, 61.938950 ], [ -71.718750, 62.915233 ], [ -75.234375, 64.774125 ], [ -78.046875, 64.472794 ], [ -78.750000, 64.774125 ], [ -78.046875, 65.366837 ], [ -74.531250, 65.658275 ], [ -73.125000, 67.875541 ], [ -75.937500, 68.399180 ], [ -77.343750, 68.911005 ], [ -76.640625, 69.162558 ], [ -79.453125, 70.377854 ], [ -81.562500, 69.900118 ], [ -82.968750, 69.900118 ], [ -89.296875, 70.612614 ], [ -90.000000, 70.844673 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.703125, 72.395706 ], [ -88.593750, 73.627789 ], [ -86.484375, 73.824820 ], [ -87.187500, 73.226700 ], [ -85.781250, 72.607120 ], [ -85.078125, 73.428424 ], [ -82.968750, 73.824820 ] ] ], [ [ [ 1.406250, 42.553080 ], [ 2.812500, 42.032974 ], [ 0.703125, 41.508577 ], [ -0.703125, 37.718590 ], [ -5.625000, 36.031332 ], [ -7.734375, 37.718590 ], [ -7.031250, 40.979898 ], [ -8.437500, 37.160317 ], [ -9.140625, 37.160317 ], [ -9.843750, 38.822591 ], [ -9.140625, 42.032974 ], [ -9.843750, 43.068888 ], [ -8.437500, 44.087585 ], [ -2.109375, 43.580391 ], [ -1.406250, 46.073231 ], [ -4.921875, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.837982 ], [ -1.406250, 49.382373 ], [ 2.109375, 51.179343 ], [ 7.734375, 49.382373 ], [ 5.625000, 47.040182 ], [ 7.031250, 44.087585 ], [ 1.406250, 42.553080 ] ] ], [ [ [ -92.812500, 81.308321 ], [ -91.406250, 80.760615 ], [ -87.890625, 80.415707 ], [ -87.187500, 79.687184 ], [ -86.484375, 79.432371 ], [ -88.593750, 78.490552 ], [ -89.296875, 78.349411 ], [ -93.515625, 78.349411 ], [ -94.218750, 78.767792 ], [ -93.515625, 79.432371 ], [ -95.625000, 79.432371 ], [ -97.031250, 80.178713 ], [ -95.625000, 80.983688 ], [ -94.921875, 80.983688 ], [ -94.921875, 81.308321 ], [ -92.812500, 81.308321 ] ] ], [ [ [ -78.046875, 25.799891 ], [ -78.046875, 23.885838 ], [ -78.750000, 25.799891 ], [ -78.046875, 25.799891 ] ] ], [ [ [ -100.546875, 74.019543 ], [ -97.734375, 73.824820 ], [ -97.734375, 73.627789 ], [ -98.437500, 73.022592 ], [ -97.031250, 72.607120 ], [ -97.031250, 71.746432 ], [ -98.437500, 71.300793 ], [ -102.656250, 72.607120 ], [ -102.656250, 73.022592 ], [ -100.546875, 72.816074 ], [ -101.953125, 73.428424 ], [ -100.546875, 74.019543 ] ] ], [ [ [ -97.031250, 77.312520 ], [ -94.921875, 77.157163 ], [ -94.218750, 76.840816 ], [ -92.109375, 76.840816 ], [ -91.406250, 76.184995 ], [ -89.296875, 75.672197 ], [ -81.562500, 75.845169 ], [ -80.156250, 75.497157 ], [ -80.859375, 74.775843 ], [ -88.593750, 74.402163 ], [ -92.812500, 74.959392 ], [ -94.218750, 76.351896 ], [ -97.734375, 76.840816 ], [ -97.031250, 77.312520 ] ] ], [ [ [ -5.625000, 55.379110 ], [ -5.625000, 56.170023 ], [ -6.328125, 56.944974 ], [ -5.625000, 58.813742 ], [ -3.515625, 58.813742 ], [ -4.218750, 57.704147 ], [ -2.109375, 57.704147 ], [ -3.515625, 56.170023 ], [ -2.109375, 56.170023 ], [ 0.000000, 53.330873 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ -5.625000, 50.289339 ], [ -3.515625, 51.618017 ], [ -5.625000, 52.052490 ], [ -4.921875, 52.482780 ], [ -4.921875, 53.748711 ], [ -3.515625, 53.748711 ], [ -3.515625, 54.162434 ], [ -4.921875, 54.977614 ], [ -5.625000, 55.379110 ] ] ], [ [ [ -109.687500, 76.840816 ], [ -108.281250, 76.351896 ], [ -108.281250, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.875000, 75.140778 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -111.796875, 75.320025 ], [ -118.125000, 75.320025 ], [ -116.015625, 76.516819 ], [ -113.203125, 76.184995 ], [ -111.093750, 75.672197 ], [ -109.687500, 75.497157 ], [ -111.093750, 76.516819 ], [ -109.687500, 76.840816 ] ] ], [ [ [ -85.781250, 11.178402 ], [ -86.484375, 11.178402 ], [ -87.890625, 13.239945 ], [ -83.671875, 15.284185 ], [ -83.671875, 11.178402 ], [ -82.968750, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.046875, 7.710992 ], [ -79.453125, 9.102097 ], [ -80.859375, 7.710992 ], [ -82.968750, 8.407168 ], [ -85.781250, 11.178402 ] ] ], [ [ [ -16.171875, 66.791909 ], [ -14.765625, 66.513260 ], [ -14.062500, 65.366837 ], [ -18.984375, 63.548552 ], [ -23.203125, 64.168107 ], [ -21.796875, 64.472794 ], [ -24.609375, 65.072130 ], [ -22.500000, 65.366837 ], [ -24.609375, 65.658275 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -21.093750, 65.946472 ], [ -19.687500, 66.513260 ], [ -18.281250, 66.231457 ], [ -16.171875, 66.791909 ] ] ], [ [ [ -116.718750, 77.767582 ], [ -117.421875, 76.679785 ], [ -121.640625, 76.016094 ], [ -123.046875, 76.184995 ], [ -119.531250, 77.617709 ], [ -116.718750, 77.767582 ] ] ], [ [ [ -94.921875, 74.211983 ], [ -90.703125, 74.019543 ], [ -94.921875, 72.181804 ], [ -95.625000, 72.181804 ], [ -96.328125, 73.627789 ], [ -94.921875, 74.211983 ] ] ], [ [ [ -99.140625, 76.840816 ], [ -98.437500, 75.140778 ], [ -99.843750, 74.959392 ], [ -101.250000, 75.140778 ], [ -101.250000, 75.672197 ], [ -102.656250, 75.672197 ], [ -102.656250, 76.351896 ], [ -99.140625, 76.840816 ] ] ], [ [ [ -86.484375, 65.946472 ], [ -85.781250, 65.658275 ], [ -80.156250, 63.860036 ], [ -81.562500, 63.548552 ], [ -83.671875, 64.168107 ], [ -85.781250, 63.233627 ], [ -86.484375, 63.860036 ], [ -87.890625, 63.548552 ], [ -86.484375, 65.946472 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -56.953125, 49.837982 ], [ -54.140625, 49.382373 ], [ -53.437500, 47.040182 ], [ -54.843750, 47.040182 ], [ -54.843750, 47.989922 ], [ -55.546875, 47.040182 ], [ -56.953125, 47.989922 ], [ -59.765625, 47.989922 ], [ -57.656250, 50.736455 ], [ -55.546875, 51.618017 ] ] ], [ [ [ -106.171875, 79.302640 ], [ -101.250000, 78.903929 ], [ -100.546875, 78.349411 ], [ -99.843750, 77.915669 ], [ -105.468750, 78.490552 ], [ -104.765625, 78.767792 ], [ -106.171875, 79.302640 ] ] ], [ [ [ -7.734375, 55.379110 ], [ -7.031250, 55.379110 ], [ -6.328125, 54.572062 ], [ -6.328125, 54.162434 ], [ -7.031250, 52.482780 ], [ -10.546875, 52.052490 ], [ -9.843750, 54.162434 ], [ -7.734375, 55.379110 ] ] ], [ [ [ -78.750000, 73.824820 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.022592 ], [ -78.046875, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.859375, 73.824820 ], [ -78.750000, 73.824820 ] ] ], [ [ [ -99.140625, 78.903929 ], [ -97.031250, 78.767792 ], [ -95.625000, 78.490552 ], [ -96.328125, 78.061989 ], [ -97.031250, 77.915669 ], [ -97.734375, 77.915669 ], [ -98.437500, 78.206563 ], [ -99.140625, 78.903929 ] ] ], [ [ [ -111.796875, 78.206563 ], [ -110.390625, 78.061989 ], [ -110.390625, 77.767582 ], [ -112.500000, 77.466028 ], [ -113.906250, 77.767582 ], [ -111.796875, 78.206563 ] ] ], [ [ [ -71.718750, 19.973349 ], [ -68.906250, 18.646245 ], [ -71.718750, 17.978733 ], [ -71.718750, 18.646245 ], [ -74.531250, 18.646245 ], [ -72.421875, 19.311143 ], [ -73.828125, 19.973349 ], [ -71.718750, 19.973349 ] ] ], [ [ [ -66.093750, 18.646245 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ], [ [ [ -81.562500, 23.241346 ], [ -78.750000, 22.593726 ], [ -74.531250, 20.632784 ], [ -78.046875, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.750000, 21.943046 ], [ -81.562500, 23.241346 ] ] ], [ [ [ -156.093750, 20.632784 ], [ -155.390625, 19.973349 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ] ] ], [ [ [ -105.468750, 73.824820 ], [ -104.765625, 73.428424 ], [ -105.468750, 72.816074 ], [ -106.875000, 73.226700 ], [ -107.578125, 73.627789 ], [ -105.468750, 73.824820 ] ] ], [ [ [ -94.921875, 75.672197 ], [ -94.218750, 75.140778 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.959392 ], [ -94.921875, 75.672197 ] ] ], [ [ [ -75.937500, 68.399180 ], [ -75.234375, 68.138852 ], [ -75.937500, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.609221 ], [ -75.937500, 68.399180 ] ] ], [ [ [ -133.593750, 54.572062 ], [ -132.187500, 54.162434 ], [ -131.484375, 52.482780 ], [ -133.593750, 53.748711 ], [ -133.593750, 54.572062 ] ] ], [ [ [ -111.796875, 78.903929 ], [ -109.687500, 78.630006 ], [ -113.203125, 78.490552 ], [ -111.796875, 78.903929 ] ] ], [ [ [ -165.937500, 60.586967 ], [ -165.937500, 60.239811 ], [ -168.046875, 60.239811 ], [ -165.937500, 60.586967 ] ] ], [ [ [ -94.921875, 77.915669 ], [ -94.218750, 77.617709 ], [ -96.328125, 77.617709 ], [ -97.031250, 77.915669 ], [ -94.921875, 77.915669 ] ] ], [ [ [ -152.578125, 58.077876 ], [ -153.281250, 57.326521 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.704147 ], [ -152.578125, 58.077876 ] ] ], [ [ [ -61.171875, 49.837982 ], [ -61.171875, 48.922499 ], [ -62.578125, 48.922499 ], [ -62.578125, 49.837982 ], [ -61.171875, 49.837982 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.906250, -52.482780 ], [ -68.203125, -53.748711 ], [ -65.390625, -54.572062 ], [ -66.093750, -54.977614 ], [ -68.906250, -54.572062 ], [ -68.906250, -52.482780 ] ] ], [ [ [ -54.140625, -31.952162 ], [ -54.140625, -34.307144 ], [ -56.250000, -34.307144 ], [ -59.062500, -33.724340 ], [ -59.062500, -34.307144 ], [ -56.953125, -36.031332 ], [ -58.359375, -37.718590 ], [ -62.578125, -38.822591 ], [ -62.578125, -40.446947 ], [ -65.390625, -40.979898 ], [ -65.390625, -42.032974 ], [ -63.984375, -42.553080 ], [ -65.390625, -43.068888 ], [ -66.093750, -44.590467 ], [ -67.500000, -45.089036 ], [ -68.203125, -46.073231 ], [ -66.093750, -47.040182 ], [ -69.609375, -50.289339 ], [ -68.203125, -52.052490 ], [ -72.421875, -51.618017 ], [ -73.828125, -48.922499 ], [ -71.718750, -44.590467 ], [ -72.421875, -42.032974 ], [ -70.312500, -33.724340 ], [ -70.312500, -28.921631 ], [ -68.906250, -26.431228 ], [ -68.906250, -23.885838 ], [ -66.796875, -21.289374 ], [ -65.390625, -21.943046 ], [ -64.687500, -22.593726 ], [ -63.281250, -21.943046 ], [ -61.875000, -19.311143 ], [ -58.359375, -19.311143 ], [ -58.359375, -15.961329 ], [ -60.468750, -15.961329 ], [ -61.171875, -13.239945 ], [ -66.093750, -11.178402 ], [ -65.390625, -9.102097 ], [ -71.015625, -10.487812 ], [ -71.015625, -9.102097 ], [ -72.421875, -9.795678 ], [ -74.531250, -7.013668 ], [ -73.125000, -4.915833 ], [ -70.312500, -4.214943 ], [ -70.312500, 2.108899 ], [ -68.203125, 2.108899 ], [ -66.093750, 1.406109 ], [ -63.984375, 2.811371 ], [ -65.390625, 4.214943 ], [ -63.281250, 4.214943 ], [ -60.468750, 5.615986 ], [ -59.062500, 1.406109 ], [ -56.250000, 2.811371 ], [ -53.437500, 2.811371 ], [ -51.328125, 4.214943 ], [ -50.625000, 2.108899 ], [ -50.625000, 0.000000 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -40.078125, -2.811371 ], [ -35.859375, -4.915833 ], [ -35.156250, -7.013668 ], [ -39.375000, -12.554564 ], [ -41.484375, -21.289374 ], [ -47.812500, -24.527135 ], [ -49.218750, -28.304381 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -54.140625, -31.952162 ] ], [ [ -54.843750, -24.527135 ], [ -54.843750, -25.799891 ], [ -54.140625, -25.799891 ], [ -54.140625, -25.165173 ], [ -54.843750, -24.527135 ] ] ], [ [ [ -59.062500, -50.736455 ], [ -58.359375, -51.179343 ], [ -59.765625, -52.052490 ], [ -61.875000, -51.618017 ], [ -59.062500, -50.736455 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.171875, -79.560546 ], [ -59.765625, -79.935918 ], [ -60.468750, -80.983688 ], [ -64.687500, -80.872827 ], [ -66.796875, -80.178713 ], [ -62.578125, -80.297927 ], [ -61.171875, -79.560546 ] ] ], [ [ [ -47.109375, -77.767582 ], [ -45.703125, -77.915669 ], [ -44.296875, -78.349411 ], [ -43.593750, -79.935918 ], [ -48.515625, -80.760615 ], [ -50.625000, -80.983688 ], [ -53.437500, -80.872827 ], [ -54.843750, -80.532071 ], [ -54.140625, -80.178713 ], [ -52.031250, -79.935918 ], [ -49.218750, -77.915669 ], [ -47.109375, -77.767582 ] ] ], [ [ [ -180.000000, -84.673513 ], [ -179.296875, -84.124973 ], [ -177.890625, -84.405941 ], [ -176.484375, -84.052561 ], [ -175.078125, -84.474065 ], [ -172.968750, -84.052561 ], [ -170.156250, -83.829945 ], [ -167.343750, -84.541361 ], [ -163.125000, -85.051129 ], [ -158.203125, -85.345325 ], [ -155.390625, -85.051129 ], [ -151.171875, -85.287916 ], [ -149.062500, -85.568066 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.541361 ], [ -146.953125, -84.474065 ], [ -150.468750, -84.267172 ], [ -151.171875, -83.829945 ], [ -153.984375, -83.676943 ], [ -153.281250, -82.021378 ], [ -157.500000, -81.093214 ], [ -152.578125, -80.983688 ], [ -151.171875, -81.308321 ], [ -147.656250, -80.647035 ], [ -146.953125, -79.812302 ], [ -149.765625, -79.302640 ], [ -155.390625, -79.038437 ], [ -158.203125, -77.915669 ], [ -158.906250, -76.840816 ], [ -157.500000, -77.157163 ], [ -153.984375, -76.999935 ], [ -153.281250, -77.466028 ], [ -151.875000, -77.312520 ], [ -146.250000, -76.351896 ], [ -146.250000, -75.320025 ], [ -145.546875, -75.140778 ], [ -144.843750, -75.497157 ], [ -135.703125, -74.211983 ], [ -121.640625, -74.402163 ], [ -118.125000, -74.019543 ], [ -116.718750, -74.211983 ], [ -114.609375, -73.627789 ], [ -112.500000, -74.590108 ], [ -111.796875, -74.402163 ], [ -107.578125, -75.140778 ], [ -105.468750, -74.775843 ], [ -101.250000, -75.140778 ], [ -100.546875, -74.775843 ], [ -101.953125, -74.019543 ], [ -102.656250, -74.019543 ], [ -104.062500, -72.607120 ], [ -99.140625, -72.816074 ], [ -97.734375, -73.428424 ], [ -97.031250, -73.428424 ], [ -92.812500, -73.022592 ], [ -90.703125, -73.226700 ], [ -89.296875, -72.395706 ], [ -88.593750, -72.816074 ], [ -81.562500, -73.824820 ], [ -80.859375, -73.022592 ], [ -76.640625, -73.824820 ], [ -75.234375, -73.824820 ], [ -67.500000, -72.395706 ], [ -68.906250, -69.657086 ], [ -67.500000, -66.791909 ], [ -63.281250, -64.472794 ], [ -58.359375, -63.233627 ], [ -57.656250, -63.233627 ], [ -59.062500, -63.860036 ], [ -62.578125, -64.774125 ], [ -62.578125, -65.946472 ], [ -63.984375, -66.231457 ], [ -66.093750, -67.875541 ], [ -63.281250, -69.162558 ], [ -61.875000, -71.074056 ], [ -61.171875, -73.022592 ], [ -61.875000, -74.019543 ], [ -64.687500, -75.140778 ], [ -70.312500, -76.184995 ], [ -71.015625, -76.516819 ], [ -77.343750, -76.679785 ], [ -73.828125, -77.767582 ], [ -75.234375, -78.206563 ], [ -76.640625, -78.061989 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.171335 ], [ -75.937500, -80.178713 ], [ -73.828125, -80.415707 ], [ -68.203125, -81.308321 ], [ -63.281250, -81.723188 ], [ -59.765625, -82.308893 ], [ -58.359375, -83.194896 ], [ -54.140625, -82.214217 ], [ -49.921875, -81.723188 ], [ -47.812500, -81.621352 ], [ -42.890625, -82.021378 ], [ -40.781250, -81.308321 ], [ -38.671875, -81.308321 ], [ -28.828125, -80.297927 ], [ -30.234375, -79.171335 ], [ -35.859375, -79.432371 ], [ -35.859375, -78.061989 ], [ -29.531250, -76.516819 ], [ -22.500000, -76.016094 ], [ -17.578125, -74.959392 ], [ -16.171875, -74.402163 ], [ -16.171875, -73.428424 ], [ -12.656250, -72.395706 ], [ -10.546875, -71.074056 ], [ -7.734375, -71.524909 ], [ -7.031250, -70.844673 ], [ -4.921875, -71.300793 ], [ -0.703125, -71.074056 ], [ -0.703125, -71.524909 ], [ 7.734375, -69.657086 ], [ 9.140625, -69.900118 ], [ 10.546875, -70.612614 ], [ 13.359375, -69.900118 ], [ 14.765625, -70.377854 ], [ 16.875000, -69.900118 ], [ 21.093750, -69.900118 ], [ 22.500000, -70.612614 ], [ 26.718750, -70.377854 ], [ 31.640625, -69.657086 ], [ 33.750000, -68.399180 ], [ 37.968750, -69.657086 ], [ 41.484375, -68.399180 ], [ 54.140625, -65.658275 ], [ 56.250000, -65.946472 ], [ 61.171875, -67.875541 ], [ 63.984375, -67.339861 ], [ 68.203125, -67.875541 ], [ 69.609375, -69.162558 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 67.500000, -71.746432 ], [ 69.609375, -72.181804 ], [ 71.015625, -71.965388 ], [ 73.828125, -69.657086 ], [ 77.343750, -69.411242 ], [ 78.750000, -68.138852 ], [ 81.562500, -67.339861 ], [ 86.484375, -67.067433 ], [ 87.890625, -65.946472 ], [ 89.296875, -67.067433 ], [ 95.625000, -67.339861 ], [ 99.140625, -67.067433 ], [ 102.656250, -65.366837 ], [ 106.171875, -66.791909 ], [ 109.687500, -66.513260 ], [ 113.203125, -65.658275 ], [ 115.312500, -66.513260 ], [ 119.531250, -67.067433 ], [ 123.046875, -66.231457 ], [ 128.671875, -66.513260 ], [ 134.296875, -65.946472 ], [ 135.000000, -65.072130 ], [ 137.109375, -66.791909 ], [ 144.843750, -66.791909 ], [ 146.250000, -67.875541 ], [ 148.359375, -68.138852 ], [ 151.875000, -68.656555 ], [ 153.984375, -68.399180 ], [ 158.906250, -69.411242 ], [ 161.015625, -70.377854 ], [ 166.640625, -70.612614 ], [ 170.859375, -71.524909 ], [ 168.750000, -73.627789 ], [ 165.937500, -74.211983 ], [ 163.125000, -76.184995 ], [ 164.531250, -78.061989 ], [ 165.937500, -78.206563 ], [ 166.640625, -78.630006 ], [ 161.718750, -79.038437 ], [ 159.609375, -80.872827 ], [ 163.125000, -82.308893 ], [ 168.750000, -83.277705 ], [ 168.750000, -83.753911 ], [ 172.265625, -83.979259 ], [ 172.968750, -84.405941 ], [ 175.781250, -84.124973 ], [ 180.000000, -84.673513 ], [ 180.703125, -84.124973 ], [ 182.109375, -84.405941 ], [ 183.515625, -84.052561 ], [ 184.921875, -84.474065 ], [ 187.031250, -84.052561 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.405941 ], [ -184.218750, -84.124973 ], [ -180.000000, -84.673513 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -160.312500, -78.630006 ], [ -159.609375, -79.432371 ], [ -161.718750, -79.560546 ], [ -163.125000, -79.171335 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -123.046875, -73.226700 ], [ -121.640625, -73.428424 ], [ -118.828125, -73.428424 ], [ -120.234375, -74.019543 ], [ -123.046875, -73.627789 ], [ -123.046875, -73.226700 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -124.453125, -73.824820 ], [ -127.968750, -73.428424 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -97.031250, -71.746432 ], [ -96.328125, -72.395706 ], [ -101.250000, -72.395706 ], [ -102.656250, -71.746432 ], [ -97.031250, -71.746432 ] ] ], [ [ [ -70.312500, -68.656555 ], [ -68.906250, -70.844673 ], [ -68.906250, -71.965388 ], [ -72.421875, -72.395706 ], [ -72.421875, -71.965388 ], [ -74.531250, -72.181804 ], [ -75.234375, -71.965388 ], [ -74.531250, -71.074056 ], [ -72.421875, -71.074056 ], [ -72.421875, -69.411242 ], [ -70.312500, -68.656555 ] ] ], [ [ [ 75.234375, 71.965388 ], [ 77.343750, 72.395706 ], [ 79.453125, 72.395706 ], [ 80.859375, 71.965388 ], [ 80.156250, 73.824820 ], [ 86.484375, 74.019543 ], [ 85.781250, 74.590108 ], [ 86.484375, 75.140778 ], [ 92.812500, 75.845169 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 96.328125, 76.016094 ], [ 98.437500, 76.516819 ], [ 100.546875, 76.516819 ], [ 101.953125, 77.312520 ], [ 104.062500, 77.767582 ], [ 105.468750, 77.466028 ], [ 104.062500, 77.157163 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.516819 ], [ 107.578125, 76.840816 ], [ 110.390625, 76.840816 ], [ 113.906250, 76.016094 ], [ 113.203125, 75.497157 ], [ 108.984375, 74.211983 ], [ 111.796875, 73.824820 ], [ 112.500000, 74.019543 ], [ 113.203125, 73.428424 ], [ 115.312500, 73.824820 ], [ 118.125000, 73.627789 ], [ 118.828125, 73.226700 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 126.562500, 73.627789 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.181804 ], [ 130.781250, 70.844673 ], [ 132.187500, 71.965388 ], [ 133.593750, 71.524909 ], [ 135.000000, 71.746432 ], [ 137.109375, 71.524909 ], [ 137.812500, 71.746432 ], [ 139.218750, 71.524909 ], [ 138.515625, 72.607120 ], [ 139.921875, 73.022592 ], [ 149.062500, 72.395706 ], [ 152.578125, 70.844673 ], [ 158.906250, 71.074056 ], [ 159.609375, 69.900118 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 169.453125, 68.911005 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 178.593750, 69.411242 ], [ 180.000000, 69.162558 ], [ 184.921875, 67.339861 ], [ 184.921875, 67.067433 ], [ 187.031250, 67.067433 ], [ 187.031250, 64.472794 ], [ 183.515625, 65.366837 ], [ 181.406250, 65.658275 ], [ 180.703125, 66.231457 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.072130 ], [ 177.187500, 64.774125 ], [ 178.593750, 62.593341 ], [ 177.187500, 62.593341 ], [ 173.671875, 61.938950 ], [ 170.156250, 59.888937 ], [ 168.750000, 60.586967 ], [ 165.937500, 59.888937 ], [ 165.234375, 60.239811 ], [ 163.125000, 59.888937 ], [ 161.718750, 58.447733 ], [ 163.125000, 57.704147 ], [ 161.718750, 54.977614 ], [ 160.312500, 54.572062 ], [ 159.609375, 53.330873 ], [ 158.203125, 53.330873 ], [ 156.093750, 51.179343 ], [ 155.390625, 56.944974 ], [ 163.125000, 61.270233 ], [ 163.828125, 62.593341 ], [ 163.125000, 62.593341 ], [ 159.609375, 60.586967 ], [ 158.906250, 61.938950 ], [ 156.093750, 61.606396 ], [ 153.984375, 59.888937 ], [ 154.687500, 59.175928 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.888937 ], [ 148.359375, 59.175928 ], [ 142.031250, 59.175928 ], [ 135.000000, 54.977614 ], [ 137.812500, 54.162434 ], [ 139.218750, 54.572062 ], [ 141.328125, 53.330873 ], [ 139.921875, 48.458352 ], [ 134.296875, 43.580391 ], [ 132.890625, 43.068888 ], [ 132.187500, 43.580391 ], [ 130.078125, 42.553080 ], [ 130.781250, 45.089036 ], [ 132.890625, 45.583290 ], [ 135.000000, 48.922499 ], [ 130.781250, 47.989922 ], [ 129.375000, 49.837982 ], [ 127.265625, 49.837982 ], [ 125.859375, 52.908902 ], [ 123.046875, 53.748711 ], [ 119.531250, 52.908902 ], [ 120.234375, 52.052490 ], [ 117.421875, 49.837982 ], [ 113.906250, 50.289339 ], [ 110.390625, 49.382373 ], [ 108.281250, 49.382373 ], [ 106.875000, 50.289339 ], [ 103.359375, 50.289339 ], [ 98.437500, 52.052490 ], [ 97.031250, 49.837982 ], [ 92.109375, 51.179343 ], [ 87.187500, 49.382373 ], [ 82.968750, 51.179343 ], [ 80.156250, 51.618017 ], [ 79.453125, 51.179343 ], [ 76.640625, 54.572062 ], [ 73.125000, 53.748711 ], [ 73.125000, 54.162434 ], [ 71.015625, 54.162434 ], [ 70.312500, 55.379110 ], [ 68.906250, 55.776573 ], [ 61.171875, 54.162434 ], [ 61.171875, 53.330873 ], [ 59.765625, 52.052490 ], [ 61.171875, 51.179343 ], [ 55.546875, 50.736455 ], [ 50.625000, 52.052490 ], [ 48.515625, 50.289339 ], [ 47.109375, 50.736455 ], [ 46.406250, 48.458352 ], [ 48.515625, 46.558860 ], [ 46.406250, 45.089036 ], [ 48.515625, 42.032974 ], [ 47.812500, 41.508577 ], [ 37.265625, 45.089036 ], [ 36.562500, 45.583290 ], [ 38.671875, 47.517201 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 49.837982 ], [ 35.156250, 50.736455 ], [ 33.750000, 52.482780 ], [ 31.640625, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.748711 ], [ 30.234375, 55.776573 ], [ 28.125000, 56.170023 ], [ 26.718750, 57.704147 ], [ 28.828125, 60.239811 ], [ 27.421875, 60.586967 ], [ 30.937500, 62.915233 ], [ 29.531250, 63.860036 ], [ 29.531250, 65.946472 ], [ 28.828125, 67.067433 ], [ 29.531250, 67.875541 ], [ 28.125000, 68.399180 ], [ 28.125000, 69.162558 ], [ 31.640625, 70.140364 ], [ 40.078125, 68.138852 ], [ 40.781250, 66.791909 ], [ 37.968750, 66.231457 ], [ 33.046875, 66.791909 ], [ 34.453125, 65.946472 ], [ 34.453125, 64.472794 ], [ 36.562500, 63.860036 ], [ 36.562500, 65.366837 ], [ 39.375000, 64.774125 ], [ 40.078125, 64.774125 ], [ 39.375000, 65.658275 ], [ 41.484375, 66.513260 ], [ 43.593750, 66.231457 ], [ 44.296875, 66.791909 ], [ 42.890625, 68.656555 ], [ 45.703125, 68.399180 ], [ 46.406250, 67.875541 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ], [ 45.703125, 66.791909 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 53.437500, 68.399180 ], [ 58.359375, 68.911005 ], [ 59.765625, 68.399180 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.900118 ], [ 63.281250, 69.657086 ], [ 68.203125, 68.138852 ], [ 68.906250, 68.656555 ], [ 66.796875, 69.657086 ], [ 66.093750, 71.074056 ], [ 69.609375, 73.226700 ], [ 72.421875, 72.816074 ], [ 71.718750, 71.524909 ], [ 72.421875, 69.162558 ], [ 73.125000, 68.656555 ], [ 71.015625, 66.513260 ], [ 72.421875, 66.231457 ], [ 74.531250, 67.875541 ], [ 74.531250, 69.162558 ], [ 73.828125, 69.162558 ], [ 73.125000, 69.657086 ], [ 73.828125, 70.844673 ], [ 72.421875, 71.524909 ], [ 74.531250, 72.181804 ], [ 74.531250, 73.022592 ], [ 75.234375, 72.395706 ], [ 75.234375, 71.965388 ] ], [ [ 75.234375, 71.965388 ], [ 75.234375, 71.524909 ], [ 75.937500, 71.300793 ], [ 75.234375, 71.965388 ] ] ], [ [ [ -175.078125, 67.067433 ], [ -172.265625, 67.067433 ], [ -170.156250, 66.231457 ], [ -172.968750, 65.658275 ], [ -172.968750, 64.472794 ], [ -176.484375, 65.366837 ], [ -178.593750, 65.658275 ], [ -179.296875, 66.231457 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.072130 ], [ -182.812500, 64.774125 ], [ -181.406250, 62.593341 ], [ -182.812500, 62.593341 ], [ -187.031250, 61.606396 ], [ -187.031250, 69.900118 ], [ -184.921875, 69.900118 ], [ -180.000000, 69.162558 ], [ -175.078125, 67.339861 ], [ -175.078125, 67.067433 ] ] ], [ [ [ 67.500000, 76.999935 ], [ 67.500000, 76.351896 ], [ 61.171875, 75.320025 ], [ 58.359375, 74.402163 ], [ 54.843750, 72.395706 ], [ 55.546875, 71.746432 ], [ 56.953125, 70.844673 ], [ 53.437500, 70.844673 ], [ 52.734375, 71.300793 ], [ 51.328125, 71.524909 ], [ 51.328125, 72.181804 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.824820 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.140778 ], [ 60.468750, 76.351896 ], [ 67.500000, 76.999935 ] ] ], [ [ [ 95.625000, 81.308321 ], [ 99.843750, 79.812302 ], [ 99.843750, 78.903929 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.171335 ], [ 90.703125, 80.415707 ], [ 93.515625, 81.093214 ], [ 95.625000, 81.308321 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 141.328125, 53.330873 ], [ 142.031250, 54.572062 ], [ 144.140625, 49.382373 ], [ 142.734375, 49.382373 ], [ 142.031250, 47.989922 ] ] ], [ [ [ 141.328125, 76.184995 ], [ 144.843750, 75.672197 ], [ 144.140625, 74.959392 ], [ 138.515625, 74.775843 ], [ 136.406250, 75.320025 ], [ 137.109375, 76.016094 ], [ 138.515625, 76.184995 ], [ 141.328125, 76.184995 ] ] ], [ [ [ 101.953125, 79.432371 ], [ 104.765625, 78.767792 ], [ 104.765625, 78.349411 ], [ 99.140625, 78.061989 ], [ 101.953125, 79.432371 ] ] ], [ [ [ 49.921875, 80.983688 ], [ 51.328125, 80.760615 ], [ 47.109375, 80.058050 ], [ 46.406250, 80.297927 ], [ 46.406250, 80.647035 ], [ 44.296875, 80.647035 ], [ 47.812500, 80.872827 ], [ 48.515625, 80.532071 ], [ 49.921875, 80.983688 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 150.468750, 75.140778 ], [ 149.062500, 74.775843 ], [ 147.656250, 74.959392 ], [ 145.546875, 75.320025 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ 142.031250, 74.019543 ], [ 143.437500, 73.226700 ], [ 139.218750, 73.428424 ], [ 142.031250, 74.019543 ] ] ], [ [ [ -180.000000, 71.524909 ], [ -180.000000, 71.746432 ], [ -177.890625, 71.300793 ], [ -179.296875, 71.074056 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.300793 ], [ -180.000000, 71.524909 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 182.109375, 71.300793 ], [ 180.703125, 71.074056 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.300793 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 21.093750, 55.379110 ], [ 22.500000, 54.572062 ], [ 18.984375, 54.572062 ], [ 21.093750, 55.379110 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 142.734375, 47.040182 ], [ 142.031250, 46.073231 ], [ 142.031250, 47.989922 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.171875, -79.560546 ], [ -59.765625, -79.935918 ], [ -60.468750, -80.983688 ], [ -64.687500, -80.872827 ], [ -66.796875, -80.178713 ], [ -62.578125, -80.297927 ], [ -61.171875, -79.560546 ] ] ], [ [ [ -47.109375, -77.767582 ], [ -45.703125, -77.915669 ], [ -44.296875, -78.349411 ], [ -43.593750, -79.935918 ], [ -48.515625, -80.760615 ], [ -50.625000, -80.983688 ], [ -53.437500, -80.872827 ], [ -54.843750, -80.532071 ], [ -54.140625, -80.178713 ], [ -52.031250, -79.935918 ], [ -49.218750, -77.915669 ], [ -47.109375, -77.767582 ] ] ], [ [ [ -58.359375, -63.233627 ], [ -59.062500, -63.860036 ], [ -62.578125, -64.774125 ], [ -62.578125, -65.946472 ], [ -63.984375, -66.231457 ], [ -66.093750, -67.875541 ], [ -63.281250, -69.162558 ], [ -61.875000, -71.074056 ], [ -61.171875, -73.022592 ], [ -61.875000, -74.019543 ], [ -64.687500, -75.140778 ], [ -70.312500, -76.184995 ], [ -71.015625, -76.516819 ], [ -77.343750, -76.679785 ], [ -73.828125, -77.767582 ], [ -75.234375, -78.206563 ], [ -76.640625, -78.061989 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.171335 ], [ -75.937500, -80.178713 ], [ -73.828125, -80.415707 ], [ -68.203125, -81.308321 ], [ -63.281250, -81.723188 ], [ -59.765625, -82.308893 ], [ -58.359375, -83.194896 ], [ -54.140625, -82.214217 ], [ -49.921875, -81.723188 ], [ -47.812500, -81.621352 ], [ -42.890625, -82.021378 ], [ -40.781250, -81.308321 ], [ -38.671875, -81.308321 ], [ -28.828125, -80.297927 ], [ -30.234375, -79.171335 ], [ -35.859375, -79.432371 ], [ -35.859375, -78.061989 ], [ -29.531250, -76.516819 ], [ -22.500000, -76.016094 ], [ -17.578125, -74.959392 ], [ -16.171875, -74.402163 ], [ -16.171875, -73.428424 ], [ -12.656250, -72.395706 ], [ -10.546875, -71.074056 ], [ -7.734375, -71.524909 ], [ -7.031250, -70.844673 ], [ -4.921875, -71.300793 ], [ -0.703125, -71.074056 ], [ -0.703125, -71.524909 ], [ 7.734375, -69.657086 ], [ 9.140625, -69.900118 ], [ 10.546875, -70.612614 ], [ 13.359375, -69.900118 ], [ 14.765625, -70.377854 ], [ 16.875000, -69.900118 ], [ 21.093750, -69.900118 ], [ 22.500000, -70.612614 ], [ 26.718750, -70.377854 ], [ 31.640625, -69.657086 ], [ 33.750000, -68.399180 ], [ 37.968750, -69.657086 ], [ 41.484375, -68.399180 ], [ 54.140625, -65.658275 ], [ 56.250000, -65.946472 ], [ 61.171875, -67.875541 ], [ 63.984375, -67.339861 ], [ 68.203125, -67.875541 ], [ 69.609375, -69.162558 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 67.500000, -71.746432 ], [ 69.609375, -72.181804 ], [ 71.015625, -71.965388 ], [ 73.828125, -69.657086 ], [ 77.343750, -69.411242 ], [ 78.750000, -68.138852 ], [ 81.562500, -67.339861 ], [ 86.484375, -67.067433 ], [ 87.890625, -65.946472 ], [ 89.296875, -67.067433 ], [ 95.625000, -67.339861 ], [ 99.140625, -67.067433 ], [ 102.656250, -65.366837 ], [ 106.171875, -66.791909 ], [ 109.687500, -66.513260 ], [ 113.203125, -65.658275 ], [ 115.312500, -66.513260 ], [ 119.531250, -67.067433 ], [ 123.046875, -66.231457 ], [ 128.671875, -66.513260 ], [ 134.296875, -65.946472 ], [ 135.000000, -65.072130 ], [ 137.109375, -66.791909 ], [ 144.843750, -66.791909 ], [ 146.250000, -67.875541 ], [ 148.359375, -68.138852 ], [ 151.875000, -68.656555 ], [ 153.984375, -68.399180 ], [ 158.906250, -69.411242 ], [ 161.015625, -70.377854 ], [ 166.640625, -70.612614 ], [ 170.859375, -71.524909 ], [ 168.750000, -73.627789 ], [ 165.937500, -74.211983 ], [ 163.125000, -76.184995 ], [ 164.531250, -78.061989 ], [ 165.937500, -78.206563 ], [ 166.640625, -78.630006 ], [ 161.718750, -79.038437 ], [ 159.609375, -80.872827 ], [ 163.125000, -82.308893 ], [ 168.750000, -83.277705 ], [ 168.750000, -83.753911 ], [ 172.265625, -83.979259 ], [ 172.968750, -84.405941 ], [ 175.781250, -84.124973 ], [ 180.000000, -84.673513 ], [ 180.703125, -84.124973 ], [ 182.109375, -84.405941 ], [ 183.515625, -84.052561 ], [ 184.921875, -84.474065 ], [ 187.031250, -84.052561 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.405941 ], [ -184.218750, -84.124973 ], [ -180.000000, -84.673513 ], [ -179.296875, -84.124973 ], [ -177.890625, -84.405941 ], [ -176.484375, -84.052561 ], [ -175.078125, -84.474065 ], [ -172.968750, -84.052561 ], [ -170.156250, -83.829945 ], [ -167.343750, -84.541361 ], [ -163.125000, -85.051129 ], [ -158.203125, -85.345325 ], [ -155.390625, -85.051129 ], [ -151.171875, -85.287916 ], [ -149.062500, -85.568066 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.541361 ], [ -146.953125, -84.474065 ], [ -150.468750, -84.267172 ], [ -151.171875, -83.829945 ], [ -153.984375, -83.676943 ], [ -153.281250, -82.021378 ], [ -157.500000, -81.093214 ], [ -152.578125, -80.983688 ], [ -151.171875, -81.308321 ], [ -147.656250, -80.647035 ], [ -146.953125, -79.812302 ], [ -149.765625, -79.302640 ], [ -155.390625, -79.038437 ], [ -158.203125, -77.915669 ], [ -158.906250, -76.840816 ], [ -157.500000, -77.157163 ], [ -153.984375, -76.999935 ], [ -153.281250, -77.466028 ], [ -151.875000, -77.312520 ], [ -146.250000, -76.351896 ], [ -146.250000, -75.320025 ], [ -145.546875, -75.140778 ], [ -144.843750, -75.497157 ], [ -135.703125, -74.211983 ], [ -121.640625, -74.402163 ], [ -118.125000, -74.019543 ], [ -116.718750, -74.211983 ], [ -114.609375, -73.627789 ], [ -112.500000, -74.590108 ], [ -111.796875, -74.402163 ], [ -107.578125, -75.140778 ], [ -105.468750, -74.775843 ], [ -101.250000, -75.140778 ], [ -100.546875, -74.775843 ], [ -101.953125, -74.019543 ], [ -102.656250, -74.019543 ], [ -104.062500, -72.607120 ], [ -99.140625, -72.816074 ], [ -97.734375, -73.428424 ], [ -97.031250, -73.428424 ], [ -92.812500, -73.022592 ], [ -90.703125, -73.226700 ], [ -89.296875, -72.395706 ], [ -88.593750, -72.816074 ], [ -81.562500, -73.824820 ], [ -80.859375, -73.022592 ], [ -76.640625, -73.824820 ], [ -75.234375, -73.824820 ], [ -67.500000, -72.395706 ], [ -68.906250, -69.657086 ], [ -67.500000, -66.791909 ], [ -63.281250, -64.472794 ], [ -58.359375, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -160.312500, -78.630006 ], [ -159.609375, -79.432371 ], [ -161.718750, -79.560546 ], [ -163.125000, -79.171335 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -123.046875, -73.226700 ], [ -121.640625, -73.428424 ], [ -118.828125, -73.428424 ], [ -120.234375, -74.019543 ], [ -123.046875, -73.627789 ], [ -123.046875, -73.226700 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -124.453125, -73.824820 ], [ -127.968750, -73.428424 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -97.031250, -71.746432 ], [ -96.328125, -72.395706 ], [ -101.250000, -72.395706 ], [ -102.656250, -71.746432 ], [ -97.031250, -71.746432 ] ] ], [ [ [ -70.312500, -68.656555 ], [ -68.906250, -70.844673 ], [ -68.906250, -71.965388 ], [ -72.421875, -72.395706 ], [ -72.421875, -71.965388 ], [ -74.531250, -72.181804 ], [ -75.234375, -71.965388 ], [ -74.531250, -71.074056 ], [ -72.421875, -71.074056 ], [ -72.421875, -69.411242 ], [ -70.312500, -68.656555 ] ] ], [ [ [ 75.234375, 71.965388 ], [ 77.343750, 72.395706 ], [ 79.453125, 72.395706 ], [ 80.859375, 71.965388 ], [ 80.156250, 73.824820 ], [ 86.484375, 74.019543 ], [ 85.781250, 74.590108 ], [ 86.484375, 75.140778 ], [ 92.812500, 75.845169 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 96.328125, 76.016094 ], [ 98.437500, 76.516819 ], [ 100.546875, 76.516819 ], [ 101.953125, 77.312520 ], [ 104.062500, 77.767582 ], [ 105.468750, 77.466028 ], [ 104.062500, 77.157163 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.516819 ], [ 107.578125, 76.840816 ], [ 110.390625, 76.840816 ], [ 113.906250, 76.016094 ], [ 113.203125, 75.497157 ], [ 108.984375, 74.211983 ], [ 111.796875, 73.824820 ], [ 112.500000, 74.019543 ], [ 113.203125, 73.428424 ], [ 115.312500, 73.824820 ], [ 118.125000, 73.627789 ], [ 118.828125, 73.226700 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 126.562500, 73.627789 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.181804 ], [ 130.781250, 70.844673 ], [ 132.187500, 71.965388 ], [ 133.593750, 71.524909 ], [ 135.000000, 71.746432 ], [ 137.109375, 71.524909 ], [ 137.812500, 71.746432 ], [ 139.218750, 71.524909 ], [ 138.515625, 72.607120 ], [ 139.921875, 73.022592 ], [ 149.062500, 72.395706 ], [ 152.578125, 70.844673 ], [ 158.906250, 71.074056 ], [ 159.609375, 69.900118 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 169.453125, 68.911005 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 178.593750, 69.411242 ], [ 180.000000, 69.162558 ], [ 184.921875, 67.339861 ], [ 184.921875, 67.067433 ], [ 187.031250, 67.067433 ], [ 187.031250, 64.472794 ], [ 183.515625, 65.366837 ], [ 181.406250, 65.658275 ], [ 180.703125, 66.231457 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.072130 ], [ 177.187500, 64.774125 ], [ 178.593750, 62.593341 ], [ 177.187500, 62.593341 ], [ 173.671875, 61.938950 ], [ 170.156250, 59.888937 ], [ 168.750000, 60.586967 ], [ 165.937500, 59.888937 ], [ 165.234375, 60.239811 ], [ 163.125000, 59.888937 ], [ 161.718750, 58.447733 ], [ 163.125000, 57.704147 ], [ 161.718750, 54.977614 ], [ 160.312500, 54.572062 ], [ 159.609375, 53.330873 ], [ 158.203125, 53.330873 ], [ 156.093750, 51.179343 ], [ 155.390625, 56.944974 ], [ 163.125000, 61.270233 ], [ 163.828125, 62.593341 ], [ 163.125000, 62.593341 ], [ 159.609375, 60.586967 ], [ 158.906250, 61.938950 ], [ 156.093750, 61.606396 ], [ 153.984375, 59.888937 ], [ 154.687500, 59.175928 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.888937 ], [ 148.359375, 59.175928 ], [ 142.031250, 59.175928 ], [ 135.000000, 54.977614 ], [ 137.812500, 54.162434 ], [ 139.218750, 54.572062 ], [ 141.328125, 53.330873 ], [ 139.921875, 48.458352 ], [ 134.296875, 43.580391 ], [ 132.890625, 43.068888 ], [ 132.187500, 43.580391 ], [ 130.078125, 42.553080 ], [ 130.781250, 45.089036 ], [ 132.890625, 45.583290 ], [ 135.000000, 48.922499 ], [ 130.781250, 47.989922 ], [ 129.375000, 49.837982 ], [ 127.265625, 49.837982 ], [ 125.859375, 52.908902 ], [ 123.046875, 53.748711 ], [ 119.531250, 52.908902 ], [ 120.234375, 52.052490 ], [ 117.421875, 49.837982 ], [ 113.906250, 50.289339 ], [ 110.390625, 49.382373 ], [ 108.281250, 49.382373 ], [ 106.875000, 50.289339 ], [ 103.359375, 50.289339 ], [ 98.437500, 52.052490 ], [ 97.031250, 49.837982 ], [ 92.109375, 51.179343 ], [ 87.187500, 49.382373 ], [ 82.968750, 51.179343 ], [ 80.156250, 51.618017 ], [ 79.453125, 51.179343 ], [ 76.640625, 54.572062 ], [ 73.125000, 53.748711 ], [ 73.125000, 54.162434 ], [ 71.015625, 54.162434 ], [ 70.312500, 55.379110 ], [ 68.906250, 55.776573 ], [ 61.171875, 54.162434 ], [ 61.171875, 53.330873 ], [ 59.765625, 52.052490 ], [ 61.171875, 51.179343 ], [ 55.546875, 50.736455 ], [ 50.625000, 52.052490 ], [ 48.515625, 50.289339 ], [ 47.109375, 50.736455 ], [ 46.406250, 48.458352 ], [ 48.515625, 46.558860 ], [ 46.406250, 45.089036 ], [ 48.515625, 42.032974 ], [ 47.812500, 41.508577 ], [ 37.265625, 45.089036 ], [ 36.562500, 45.583290 ], [ 38.671875, 47.517201 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 49.837982 ], [ 35.156250, 50.736455 ], [ 33.750000, 52.482780 ], [ 31.640625, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.748711 ], [ 30.234375, 55.776573 ], [ 28.125000, 56.170023 ], [ 26.718750, 57.704147 ], [ 28.828125, 60.239811 ], [ 27.421875, 60.586967 ], [ 30.937500, 62.915233 ], [ 29.531250, 63.860036 ], [ 29.531250, 65.946472 ], [ 28.828125, 67.067433 ], [ 29.531250, 67.875541 ], [ 28.125000, 68.399180 ], [ 28.125000, 69.162558 ], [ 31.640625, 70.140364 ], [ 40.078125, 68.138852 ], [ 40.781250, 66.791909 ], [ 37.968750, 66.231457 ], [ 33.046875, 66.791909 ], [ 34.453125, 65.946472 ], [ 34.453125, 64.472794 ], [ 36.562500, 63.860036 ], [ 36.562500, 65.366837 ], [ 39.375000, 64.774125 ], [ 40.078125, 64.774125 ], [ 39.375000, 65.658275 ], [ 41.484375, 66.513260 ], [ 43.593750, 66.231457 ], [ 44.296875, 66.791909 ], [ 42.890625, 68.656555 ], [ 45.703125, 68.399180 ], [ 46.406250, 67.875541 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ], [ 45.703125, 66.791909 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 53.437500, 68.399180 ], [ 58.359375, 68.911005 ], [ 59.765625, 68.399180 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.900118 ], [ 63.281250, 69.657086 ], [ 68.203125, 68.138852 ], [ 68.906250, 68.656555 ], [ 66.796875, 69.657086 ], [ 66.093750, 71.074056 ], [ 69.609375, 73.226700 ], [ 72.421875, 72.816074 ], [ 71.718750, 71.524909 ], [ 72.421875, 69.162558 ], [ 73.125000, 68.656555 ], [ 71.015625, 66.513260 ], [ 72.421875, 66.231457 ], [ 74.531250, 67.875541 ], [ 74.531250, 69.162558 ], [ 73.828125, 69.162558 ], [ 73.125000, 69.657086 ], [ 73.828125, 70.844673 ], [ 72.421875, 71.524909 ], [ 74.531250, 72.181804 ], [ 74.531250, 73.022592 ], [ 75.234375, 72.395706 ], [ 75.234375, 71.965388 ] ] ], [ [ [ -175.078125, 67.067433 ], [ -172.265625, 67.067433 ], [ -170.156250, 66.231457 ], [ -172.968750, 65.658275 ], [ -172.968750, 64.472794 ], [ -176.484375, 65.366837 ], [ -178.593750, 65.658275 ], [ -179.296875, 66.231457 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.072130 ], [ -182.812500, 64.774125 ], [ -181.406250, 62.593341 ], [ -182.812500, 62.593341 ], [ -187.031250, 61.606396 ], [ -187.031250, 69.900118 ], [ -184.921875, 69.900118 ], [ -180.000000, 69.162558 ], [ -175.078125, 67.339861 ], [ -175.078125, 67.067433 ] ] ], [ [ [ 67.500000, 76.999935 ], [ 67.500000, 76.351896 ], [ 61.171875, 75.320025 ], [ 58.359375, 74.402163 ], [ 54.843750, 72.395706 ], [ 55.546875, 71.746432 ], [ 56.953125, 70.844673 ], [ 53.437500, 70.844673 ], [ 52.734375, 71.300793 ], [ 51.328125, 71.524909 ], [ 51.328125, 72.181804 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.824820 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.140778 ], [ 60.468750, 76.351896 ], [ 67.500000, 76.999935 ] ] ], [ [ [ 95.625000, 81.308321 ], [ 99.843750, 79.812302 ], [ 99.843750, 78.903929 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.171335 ], [ 90.703125, 80.415707 ], [ 93.515625, 81.093214 ], [ 95.625000, 81.308321 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 141.328125, 53.330873 ], [ 142.031250, 54.572062 ], [ 144.140625, 49.382373 ], [ 142.734375, 49.382373 ], [ 142.031250, 47.989922 ] ] ], [ [ [ 141.328125, 76.184995 ], [ 144.843750, 75.672197 ], [ 144.140625, 74.959392 ], [ 138.515625, 74.775843 ], [ 136.406250, 75.320025 ], [ 137.109375, 76.016094 ], [ 138.515625, 76.184995 ], [ 141.328125, 76.184995 ] ] ], [ [ [ 101.953125, 79.432371 ], [ 104.765625, 78.767792 ], [ 104.765625, 78.349411 ], [ 99.140625, 78.061989 ], [ 101.953125, 79.432371 ] ] ], [ [ [ 49.921875, 80.983688 ], [ 51.328125, 80.760615 ], [ 47.109375, 80.058050 ], [ 46.406250, 80.297927 ], [ 46.406250, 80.647035 ], [ 44.296875, 80.647035 ], [ 47.812500, 80.872827 ], [ 48.515625, 80.532071 ], [ 49.921875, 80.983688 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 150.468750, 75.140778 ], [ 149.062500, 74.775843 ], [ 147.656250, 74.959392 ], [ 145.546875, 75.320025 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ 142.031250, 74.019543 ], [ 143.437500, 73.226700 ], [ 139.218750, 73.428424 ], [ 142.031250, 74.019543 ] ] ], [ [ [ -180.000000, 71.524909 ], [ -180.000000, 71.746432 ], [ -177.890625, 71.300793 ], [ -179.296875, 71.074056 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.300793 ], [ -180.000000, 71.524909 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 182.109375, 71.300793 ], [ 180.703125, 71.074056 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.300793 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 21.093750, 55.379110 ], [ 22.500000, 54.572062 ], [ 18.984375, 54.572062 ], [ 21.093750, 55.379110 ] ] ], [ [ [ 142.031250, 47.989922 ], [ 142.734375, 47.040182 ], [ 142.031250, 46.073231 ], [ 142.031250, 47.989922 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.890625, -17.308688 ], [ 177.890625, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.308688 ], [ 177.890625, -17.308688 ] ] ], [ [ [ 50.625000, 26.431228 ], [ 51.328125, 25.799891 ], [ 50.625000, 25.165173 ], [ 50.625000, 26.431228 ] ] ], [ [ [ 43.593750, 10.487812 ], [ 48.515625, 11.867351 ], [ 48.515625, 11.178402 ], [ 49.218750, 11.867351 ], [ 50.625000, 12.554564 ], [ 50.625000, 11.178402 ], [ 48.515625, 5.615986 ], [ 41.484375, -1.406109 ], [ 38.671875, -4.214943 ], [ 38.671875, -8.407168 ], [ 40.078125, -9.795678 ], [ 40.078125, -14.604847 ], [ 34.453125, -19.311143 ], [ 35.156250, -23.885838 ], [ 31.640625, -26.431228 ], [ 30.937500, -21.943046 ], [ 27.421875, -21.289374 ], [ 24.609375, -17.308688 ], [ 23.203125, -17.308688 ], [ 20.390625, -17.978733 ], [ 19.687500, -28.304381 ], [ 16.171875, -28.304381 ], [ 11.250000, -16.636192 ], [ 13.359375, -11.178402 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 11.953125, -4.214943 ], [ 10.546875, -3.513421 ], [ 8.437500, -0.703107 ], [ 9.140625, 1.406109 ], [ 9.140625, 2.811371 ], [ 8.437500, 4.915833 ], [ 5.625000, 4.915833 ], [ 4.218750, 6.315299 ], [ 2.109375, 6.315299 ], [ 1.406250, 6.315299 ], [ 0.000000, 7.013668 ], [ 0.000000, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 2.812500, 11.867351 ], [ 2.812500, 12.554564 ], [ 2.109375, 12.554564 ], [ 0.000000, 15.284185 ], [ 3.515625, 15.961329 ], [ 4.218750, 19.311143 ], [ 11.953125, 23.885838 ], [ 2.812500, 19.311143 ], [ -9.140625, 27.683528 ], [ -9.140625, 28.921631 ], [ -1.406250, 32.546813 ], [ -2.812500, 35.460670 ], [ -1.406250, 36.031332 ], [ 7.734375, 37.160317 ], [ 9.140625, 37.718590 ], [ 10.546875, 37.160317 ], [ 9.843750, 34.885931 ], [ 11.250000, 33.137551 ], [ 18.984375, 30.751278 ], [ 20.390625, 33.137551 ], [ 24.609375, 31.952162 ], [ 33.750000, 31.353637 ], [ 34.453125, 33.137551 ], [ 35.156250, 33.724340 ], [ 35.859375, 34.885931 ], [ 35.859375, 36.031332 ], [ 35.859375, 37.160317 ], [ 34.453125, 37.160317 ], [ 29.531250, 36.597889 ], [ 27.421875, 37.160317 ], [ 26.015625, 38.272689 ], [ 26.015625, 39.909736 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 33.046875, 42.032974 ], [ 36.562500, 41.508577 ], [ 42.890625, 41.508577 ], [ 41.484375, 42.032974 ], [ 39.375000, 43.580391 ], [ 45.000000, 42.553080 ], [ 45.703125, 42.032974 ], [ 46.406250, 41.508577 ], [ 47.109375, 41.508577 ], [ 48.515625, 42.032974 ], [ 49.921875, 40.446947 ], [ 48.515625, 38.822591 ], [ 48.515625, 37.718590 ], [ 50.625000, 37.160317 ], [ 53.437500, 37.718590 ], [ 52.031250, 40.446947 ], [ 52.734375, 40.979898 ], [ 54.140625, 40.979898 ], [ 53.437500, 42.553080 ], [ 52.734375, 41.508577 ], [ 52.031250, 42.032974 ], [ 49.921875, 45.089036 ], [ 52.734375, 45.583290 ], [ 52.734375, 47.040182 ], [ 48.515625, 47.040182 ], [ 46.406250, 48.458352 ], [ 46.406250, 49.382373 ], [ 47.109375, 50.736455 ], [ 48.515625, 50.289339 ], [ 50.625000, 52.052490 ], [ 55.546875, 50.736455 ], [ 61.171875, 51.179343 ], [ 59.765625, 52.052490 ], [ 61.171875, 53.330873 ], [ 61.171875, 54.162434 ], [ 68.906250, 55.776573 ], [ 70.312500, 55.379110 ], [ 71.015625, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 53.748711 ], [ 76.640625, 54.572062 ], [ 79.453125, 51.179343 ], [ 80.156250, 51.618017 ], [ 82.968750, 51.179343 ], [ 87.187500, 49.382373 ], [ 92.109375, 51.179343 ], [ 97.031250, 49.837982 ], [ 98.437500, 52.052490 ], [ 103.359375, 50.289339 ], [ 106.875000, 50.289339 ], [ 108.281250, 49.382373 ], [ 110.390625, 49.382373 ], [ 113.906250, 50.289339 ], [ 116.015625, 50.289339 ], [ 117.421875, 49.837982 ], [ 118.828125, 50.289339 ], [ 120.937500, 53.330873 ], [ 123.046875, 53.748711 ], [ 125.859375, 52.908902 ], [ 127.265625, 49.837982 ], [ 129.375000, 49.837982 ], [ 130.781250, 47.989922 ], [ 135.000000, 48.922499 ], [ 133.593750, 46.558860 ], [ 132.890625, 45.583290 ], [ 130.781250, 45.089036 ], [ 130.078125, 42.553080 ], [ 127.265625, 39.909736 ], [ 127.968750, 38.822591 ], [ 129.375000, 36.031332 ], [ 125.859375, 34.885931 ], [ 125.859375, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 39.909736 ], [ 123.750000, 40.446947 ], [ 120.937500, 39.368279 ], [ 120.937500, 40.979898 ], [ 117.421875, 38.822591 ], [ 119.531250, 37.160317 ], [ 120.234375, 38.272689 ], [ 122.343750, 37.718590 ], [ 118.828125, 35.460670 ], [ 121.640625, 31.952162 ], [ 121.640625, 28.304381 ], [ 118.125000, 25.165173 ], [ 110.390625, 21.943046 ], [ 110.390625, 20.632784 ], [ 107.578125, 21.943046 ], [ 105.468750, 19.311143 ], [ 108.281250, 15.284185 ], [ 108.984375, 11.867351 ], [ 104.765625, 9.102097 ], [ 104.062500, 10.487812 ], [ 104.765625, 11.178402 ], [ 103.359375, 11.178402 ], [ 101.953125, 13.239945 ], [ 101.953125, 12.554564 ], [ 99.843750, 13.923404 ], [ 99.140625, 10.487812 ], [ 101.953125, 6.315299 ], [ 100.546875, 6.315299 ], [ 99.843750, 7.013668 ], [ 97.734375, 8.407168 ], [ 98.437500, 10.487812 ], [ 97.734375, 15.284185 ], [ 97.031250, 17.308688 ], [ 93.515625, 16.636192 ], [ 94.218750, 18.646245 ], [ 92.109375, 21.289374 ], [ 92.109375, 21.943046 ], [ 92.109375, 22.593726 ], [ 91.406250, 23.241346 ], [ 88.593750, 22.593726 ], [ 88.593750, 21.943046 ], [ 86.484375, 21.943046 ], [ 86.484375, 20.632784 ], [ 80.156250, 15.961329 ], [ 79.453125, 10.487812 ], [ 77.343750, 8.407168 ], [ 73.125000, 16.636192 ], [ 72.421875, 21.943046 ], [ 70.312500, 21.289374 ], [ 67.500000, 23.885838 ], [ 66.093750, 25.799891 ], [ 61.171875, 25.165173 ], [ 56.953125, 25.799891 ], [ 56.250000, 27.683528 ], [ 53.437500, 27.059126 ], [ 49.921875, 30.751278 ], [ 48.515625, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 50.625000, 25.165173 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 53.437500, 24.527135 ], [ 55.546875, 25.165173 ], [ 59.765625, 22.593726 ], [ 58.359375, 21.289374 ], [ 57.656250, 19.311143 ], [ 52.734375, 17.308688 ], [ 43.593750, 13.239945 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 34.453125, 28.304381 ], [ 33.750000, 27.683528 ], [ 36.562500, 22.593726 ], [ 37.968750, 18.646245 ], [ 38.671875, 15.961329 ], [ 41.484375, 13.923404 ], [ 42.890625, 13.239945 ], [ 42.890625, 11.867351 ], [ 43.593750, 10.487812 ] ], [ [ 73.828125, 38.822591 ], [ 74.531250, 37.718590 ], [ 73.828125, 37.718590 ], [ 74.531250, 37.160317 ], [ 77.343750, 36.031332 ], [ 73.828125, 38.822591 ] ], [ [ 24.609375, -11.178402 ], [ 29.531250, -13.239945 ], [ 26.718750, -11.178402 ], [ 24.609375, -11.178402 ] ], [ [ 37.968750, 4.214943 ], [ 32.343750, 8.407168 ], [ 35.156250, 5.615986 ], [ 37.968750, 4.214943 ] ], [ [ 29.531250, -14.604847 ], [ 26.718750, -17.308688 ], [ 30.234375, -15.284185 ], [ 29.531250, -14.604847 ] ], [ [ 32.343750, -9.102097 ], [ 30.234375, -7.710992 ], [ 28.828125, -8.407168 ], [ 32.343750, -9.102097 ] ], [ [ 18.984375, 5.615986 ], [ 16.875000, 4.214943 ], [ 18.281250, 3.513421 ], [ 18.984375, 5.615986 ] ], [ [ 45.703125, 36.031332 ], [ 44.296875, 38.822591 ], [ 44.296875, 37.718590 ], [ 45.000000, 36.031332 ], [ 45.703125, 36.031332 ] ], [ [ 31.640625, 4.214943 ], [ 28.125000, 4.915833 ], [ 30.234375, 3.513421 ], [ 31.640625, 4.214943 ] ], [ [ 30.234375, -2.811371 ], [ 28.828125, -4.214943 ], [ 29.531250, -5.615986 ], [ 30.234375, -2.811371 ] ], [ [ 70.312500, 38.822591 ], [ 67.500000, 37.160317 ], [ 68.906250, 37.160317 ], [ 70.312500, 38.822591 ] ], [ [ 55.546875, 41.508577 ], [ 56.953125, 41.508577 ], [ 58.359375, 43.068888 ], [ 55.546875, 41.508577 ] ], [ [ 60.468750, 36.597889 ], [ 60.468750, 33.137551 ], [ 61.171875, 36.031332 ], [ 60.468750, 36.597889 ] ], [ [ 7.031250, 34.307144 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.751278 ], [ 7.031250, 34.307144 ] ], [ [ 79.453125, 45.089036 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.580391 ], [ 79.453125, 45.089036 ] ], [ [ 41.484375, 4.915833 ], [ 37.968750, 4.214943 ], [ 41.484375, 4.214943 ], [ 41.484375, 4.915833 ] ], [ [ 12.656250, 13.923404 ], [ 13.359375, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 13.239945 ], [ 12.656250, 13.923404 ] ], [ [ 42.187500, 12.554564 ], [ 41.484375, 13.239945 ], [ 41.484375, 11.178402 ], [ 42.187500, 12.554564 ] ], [ [ 104.765625, 14.604847 ], [ 104.765625, 15.284185 ], [ 102.656250, 14.604847 ], [ 104.765625, 14.604847 ] ], [ [ 101.250000, 21.289374 ], [ 100.546875, 21.943046 ], [ 99.843750, 20.632784 ], [ 101.250000, 21.289374 ] ], [ [ 91.406250, 27.059126 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.059126 ], [ 91.406250, 27.059126 ] ], [ [ 119.531250, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.125000, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.517201 ] ], [ [ 115.312500, 48.458352 ], [ 115.312500, 47.989922 ], [ 117.421875, 48.458352 ], [ 115.312500, 48.458352 ] ], [ [ 41.484375, -1.406109 ], [ 40.781250, 1.406109 ], [ 40.781250, -0.703107 ], [ 41.484375, -1.406109 ] ], [ [ 97.031250, 28.304381 ], [ 94.921875, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.031250, 28.304381 ] ], [ [ 87.890625, 27.059126 ], [ 88.593750, 27.683528 ], [ 88.593750, 28.304381 ], [ 87.890625, 28.304381 ], [ 87.890625, 27.059126 ] ], [ [ 44.296875, 29.535230 ], [ 47.812500, 28.921631 ], [ 46.406250, 29.535230 ], [ 44.296875, 29.535230 ] ], [ [ 55.546875, 23.885838 ], [ 54.843750, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 23.885838 ] ], [ [ 45.000000, 39.368279 ], [ 45.000000, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ] ], [ [ 67.500000, 39.909736 ], [ 66.796875, 39.368279 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.909736 ] ], [ [ 32.343750, -9.102097 ], [ 33.046875, -11.867351 ], [ 33.046875, -10.487812 ], [ 32.343750, -9.102097 ] ], [ [ 12.656250, -4.214943 ], [ 12.656250, -4.915833 ], [ 14.062500, -4.915833 ], [ 12.656250, -4.214943 ] ], [ [ 11.250000, 2.811371 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.811371 ], [ 11.250000, 2.811371 ] ], [ [ 42.890625, 41.508577 ], [ 45.000000, 40.979898 ], [ 44.296875, 41.508577 ], [ 42.890625, 41.508577 ] ], [ [ 43.593750, 10.487812 ], [ 42.187500, 11.178402 ], [ 43.593750, 9.795678 ], [ 43.593750, 10.487812 ] ], [ [ 35.156250, 33.137551 ], [ 35.156250, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.156250, 33.137551 ] ] ], [ [ [ -182.109375, -17.308688 ], [ -182.109375, -17.978733 ], [ -182.812500, -17.978733 ], [ -182.812500, -17.308688 ], [ -182.109375, -17.308688 ] ] ], [ [ [ 120.937500, 13.923404 ], [ 120.937500, 12.554564 ], [ 120.234375, 13.923404 ], [ 120.937500, 13.923404 ] ] ], [ [ [ 26.718750, 57.704147 ], [ 27.421875, 57.326521 ], [ 28.125000, 56.170023 ], [ 30.234375, 55.776573 ], [ 32.343750, 53.748711 ], [ 30.937500, 53.330873 ], [ 31.640625, 52.482780 ], [ 33.750000, 52.482780 ], [ 35.156250, 50.736455 ], [ 39.375000, 49.837982 ], [ 39.375000, 47.989922 ], [ 34.453125, 46.558860 ], [ 35.859375, 45.583290 ], [ 33.750000, 44.590467 ], [ 32.343750, 45.583290 ], [ 33.046875, 46.073231 ], [ 31.640625, 47.040182 ], [ 29.531250, 45.583290 ], [ 28.125000, 44.087585 ], [ 27.421875, 42.032974 ], [ 28.125000, 41.508577 ], [ 26.718750, 40.979898 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.979898 ], [ 23.203125, 40.979898 ], [ 22.500000, 40.979898 ], [ 23.203125, 40.446947 ], [ 23.906250, 37.718590 ], [ 22.500000, 38.272689 ], [ 22.500000, 36.597889 ], [ 21.093750, 37.160317 ], [ 19.687500, 39.909736 ], [ 19.687500, 42.553080 ], [ 18.984375, 42.032974 ], [ 18.281250, 42.553080 ], [ 13.359375, 45.583290 ], [ 13.359375, 46.073231 ], [ 11.953125, 45.583290 ], [ 11.953125, 44.590467 ], [ 18.281250, 40.446947 ], [ 16.171875, 40.446947 ], [ 15.468750, 38.272689 ], [ 14.765625, 40.446947 ], [ 10.546875, 42.553080 ], [ 9.843750, 44.087585 ], [ 8.437500, 44.590467 ], [ 7.031250, 44.087585 ], [ 6.328125, 44.590467 ], [ 6.328125, 46.073231 ], [ 5.625000, 46.558860 ], [ 6.328125, 47.989922 ], [ 7.031250, 47.989922 ], [ 7.734375, 49.382373 ], [ 5.625000, 49.837982 ], [ 2.109375, 51.179343 ], [ 2.812500, 51.618017 ], [ 4.218750, 53.330873 ], [ 5.625000, 53.748711 ], [ 6.328125, 53.748711 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 8.437500, 57.326521 ], [ 10.546875, 58.077876 ], [ 10.546875, 56.559482 ], [ 10.546875, 56.170023 ], [ 9.843750, 55.379110 ], [ 10.546875, 54.162434 ], [ 11.953125, 54.572062 ], [ 14.062500, 53.330873 ], [ 14.765625, 54.162434 ], [ 17.578125, 54.977614 ], [ 22.500000, 54.572062 ], [ 20.390625, 56.170023 ], [ 21.093750, 57.704147 ], [ 22.500000, 58.077876 ], [ 23.906250, 57.326521 ], [ 24.609375, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.203125, 59.534318 ], [ 27.421875, 59.534318 ], [ 26.718750, 57.704147 ] ], [ [ 16.875000, 47.989922 ], [ 15.468750, 47.040182 ], [ 14.062500, 46.558860 ], [ 16.171875, 46.558860 ], [ 18.281250, 46.073231 ], [ 16.171875, 47.040182 ], [ 16.875000, 47.989922 ] ], [ [ 28.125000, 56.170023 ], [ 26.015625, 55.776573 ], [ 25.312500, 54.572062 ], [ 28.125000, 56.170023 ] ], [ [ 9.140625, 47.517201 ], [ 9.843750, 46.558860 ], [ 11.953125, 47.040182 ], [ 9.140625, 47.517201 ] ], [ [ 12.656250, 47.517201 ], [ 9.140625, 47.989922 ], [ 9.140625, 47.517201 ], [ 12.656250, 47.517201 ] ], [ [ 21.796875, 42.553080 ], [ 22.500000, 41.508577 ], [ 22.500000, 44.087585 ], [ 21.796875, 42.553080 ] ], [ [ 21.796875, 42.553080 ], [ 21.093750, 43.068888 ], [ 20.390625, 42.553080 ], [ 20.390625, 42.032974 ], [ 21.796875, 42.553080 ] ], [ [ 25.312500, 54.572062 ], [ 23.203125, 54.572062 ], [ 23.203125, 54.162434 ], [ 25.312500, 54.572062 ] ], [ [ 16.171875, 48.922499 ], [ 14.765625, 49.382373 ], [ 14.062500, 48.922499 ], [ 16.171875, 48.922499 ] ], [ [ 14.062500, 48.922499 ], [ 11.953125, 50.289339 ], [ 13.359375, 48.922499 ], [ 14.062500, 48.922499 ] ], [ [ 22.500000, 47.989922 ], [ 23.906250, 47.989922 ], [ 22.500000, 48.458352 ], [ 22.500000, 47.989922 ] ], [ [ 19.687500, 43.068888 ], [ 19.687500, 42.553080 ], [ 20.390625, 42.553080 ], [ 19.687500, 43.068888 ] ] ], [ [ [ 28.125000, 69.162558 ], [ 28.125000, 68.399180 ], [ 29.531250, 67.875541 ], [ 28.828125, 67.067433 ], [ 29.531250, 65.946472 ], [ 29.531250, 63.860036 ], [ 30.937500, 62.915233 ], [ 27.421875, 60.586967 ], [ 22.500000, 59.888937 ], [ 21.093750, 60.930432 ], [ 20.390625, 62.915233 ], [ 25.312500, 65.366837 ], [ 23.203125, 66.231457 ], [ 21.796875, 65.946472 ], [ 21.093750, 64.472794 ], [ 17.578125, 62.915233 ], [ 16.875000, 61.606396 ], [ 18.281250, 60.239811 ], [ 16.171875, 58.813742 ], [ 15.468750, 56.170023 ], [ 12.656250, 55.379110 ], [ 11.953125, 54.977614 ], [ 10.546875, 56.170023 ], [ 11.953125, 56.170023 ], [ 10.546875, 59.175928 ], [ 9.843750, 59.534318 ], [ 7.734375, 58.447733 ], [ 5.625000, 58.813742 ], [ 4.921875, 62.267923 ], [ 9.843750, 64.774125 ], [ 14.062500, 67.875541 ], [ 18.984375, 69.900118 ], [ 22.500000, 70.377854 ], [ 23.906250, 71.074056 ], [ 28.125000, 71.300793 ], [ 30.937500, 70.612614 ], [ 29.531250, 70.377854 ], [ 30.937500, 69.657086 ], [ 28.125000, 69.162558 ] ], [ [ 23.203125, 68.138852 ], [ 21.796875, 68.911005 ], [ 20.390625, 69.162558 ], [ 20.390625, 68.911005 ], [ 23.203125, 68.138852 ] ], [ [ 17.578125, 68.656555 ], [ 16.875000, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.656555 ] ] ], [ [ [ 123.750000, 11.867351 ], [ 123.750000, 10.487812 ], [ 122.343750, 9.102097 ], [ 122.343750, 9.795678 ], [ 123.750000, 11.867351 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 17.578125, 79.812302 ], [ 21.093750, 79.038437 ], [ 18.984375, 78.630006 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 13.359375, 77.466028 ], [ 14.062500, 77.767582 ], [ 10.546875, 78.903929 ], [ 9.843750, 79.687184 ], [ 12.656250, 80.058050 ], [ 13.359375, 79.687184 ], [ 14.765625, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 22.500000, 80.760615 ], [ 25.312500, 80.415707 ], [ 26.718750, 80.058050 ], [ 25.312500, 79.560546 ], [ 22.500000, 79.432371 ], [ 19.687500, 79.687184 ], [ 16.875000, 80.415707 ], [ 20.390625, 80.647035 ], [ 21.796875, 80.415707 ], [ 22.500000, 80.760615 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 36.031332 ], [ 136.406250, 37.718590 ], [ 137.109375, 37.160317 ], [ 139.218750, 38.272689 ], [ 139.218750, 40.979898 ], [ 141.328125, 41.508577 ], [ 141.328125, 39.368279 ], [ 140.625000, 37.160317 ], [ 139.921875, 35.460670 ], [ 135.703125, 33.724340 ], [ 135.000000, 34.885931 ], [ 132.890625, 34.307144 ], [ 130.781250, 34.307144 ] ] ], [ [ [ 115.312500, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.828125, 5.615986 ], [ 118.125000, 4.915833 ], [ 115.312500, 4.915833 ], [ 114.609375, 2.108899 ], [ 109.687500, 1.406109 ], [ 113.906250, 4.915833 ], [ 115.312500, 5.615986 ] ] ], [ [ [ 141.328125, 45.583290 ], [ 143.437500, 44.590467 ], [ 144.843750, 44.590467 ], [ 144.843750, 43.580391 ], [ 142.734375, 42.032974 ], [ 141.328125, 43.068888 ], [ 140.625000, 42.032974 ], [ 139.921875, 42.032974 ], [ 141.328125, 45.583290 ] ] ], [ [ [ 123.750000, 13.239945 ], [ 125.156250, 12.554564 ], [ 124.453125, 10.487812 ], [ 123.750000, 11.867351 ], [ 123.750000, 12.554564 ], [ 120.937500, 13.923404 ], [ 119.531250, 15.284185 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 122.343750, 17.308688 ], [ 121.640625, 14.604847 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ] ] ], [ [ [ 22.500000, 78.490552 ], [ 24.609375, 77.915669 ], [ 21.796875, 77.466028 ], [ 20.390625, 77.767582 ], [ 20.390625, 78.349411 ], [ 22.500000, 78.490552 ] ] ], [ [ [ 123.046875, 8.407168 ], [ 125.156250, 9.795678 ], [ 125.859375, 9.102097 ], [ 125.156250, 5.615986 ], [ 123.046875, 8.407168 ] ] ], [ [ [ 100.546875, 6.315299 ], [ 102.656250, 5.615986 ], [ 104.062500, 1.406109 ], [ 101.250000, 2.811371 ], [ 100.546875, 6.315299 ] ] ], [ [ [ 79.453125, 10.487812 ], [ 80.156250, 9.795678 ], [ 81.562500, 7.710992 ], [ 80.156250, 6.315299 ], [ 79.453125, 10.487812 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 131.484375, 33.724340 ], [ 130.781250, 31.952162 ], [ 130.078125, 31.952162 ], [ 129.375000, 33.724340 ], [ 130.781250, 34.307144 ] ] ], [ [ [ 120.937500, 25.799891 ], [ 121.640625, 24.527135 ], [ 120.234375, 22.593726 ], [ 119.531250, 23.885838 ], [ 120.937500, 25.799891 ] ] ], [ [ [ 15.468750, 38.272689 ], [ 14.765625, 37.160317 ], [ 11.953125, 37.718590 ], [ 11.953125, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 9.140625, 41.508577 ], [ 9.140625, 39.368279 ], [ 8.437500, 39.368279 ], [ 7.734375, 40.979898 ], [ 9.140625, 41.508577 ] ] ], [ [ [ 118.828125, 11.867351 ], [ 119.531250, 11.178402 ], [ 116.718750, 8.407168 ], [ 118.828125, 11.867351 ] ] ], [ [ [ 110.390625, 20.632784 ], [ 109.687500, 19.311143 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.973349 ], [ 110.390625, 20.632784 ] ] ], [ [ [ 121.640625, 12.554564 ], [ 123.046875, 11.867351 ], [ 121.640625, 10.487812 ], [ 121.640625, 12.554564 ] ] ], [ [ [ 134.296875, 34.307144 ], [ 133.593750, 33.724340 ], [ 132.187500, 33.137551 ], [ 132.890625, 34.307144 ], [ 134.296875, 34.307144 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.890625, -17.308688 ], [ 177.890625, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.308688 ], [ 177.890625, -17.308688 ] ] ], [ [ [ 50.625000, 26.431228 ], [ 51.328125, 25.799891 ], [ 50.625000, 25.165173 ], [ 50.625000, 26.431228 ] ] ], [ [ [ 43.593750, 10.487812 ], [ 48.515625, 11.867351 ], [ 48.515625, 11.178402 ], [ 49.218750, 11.867351 ], [ 50.625000, 12.554564 ], [ 50.625000, 11.178402 ], [ 48.515625, 5.615986 ], [ 41.484375, -1.406109 ], [ 38.671875, -4.214943 ], [ 38.671875, -8.407168 ], [ 40.078125, -9.795678 ], [ 40.078125, -14.604847 ], [ 34.453125, -19.311143 ], [ 35.156250, -23.885838 ], [ 31.640625, -26.431228 ], [ 30.937500, -21.943046 ], [ 27.421875, -21.289374 ], [ 24.609375, -17.308688 ], [ 23.203125, -17.308688 ], [ 20.390625, -17.978733 ], [ 19.687500, -28.304381 ], [ 16.171875, -28.304381 ], [ 11.250000, -16.636192 ], [ 13.359375, -11.178402 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 11.953125, -4.214943 ], [ 10.546875, -3.513421 ], [ 8.437500, -0.703107 ], [ 9.140625, 1.406109 ], [ 9.140625, 2.811371 ], [ 8.437500, 4.915833 ], [ 5.625000, 4.915833 ], [ 4.218750, 6.315299 ], [ 2.109375, 6.315299 ], [ 1.406250, 6.315299 ], [ 0.000000, 7.013668 ], [ 0.000000, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 2.812500, 11.867351 ], [ 2.109375, 12.554564 ], [ 0.000000, 15.284185 ], [ 3.515625, 15.961329 ], [ 4.218750, 19.311143 ], [ 11.953125, 23.885838 ], [ 2.812500, 19.311143 ], [ -9.140625, 27.683528 ], [ -9.140625, 28.921631 ], [ -1.406250, 32.546813 ], [ -2.812500, 35.460670 ], [ -1.406250, 36.031332 ], [ 7.734375, 37.160317 ], [ 9.140625, 37.718590 ], [ 10.546875, 37.160317 ], [ 9.843750, 34.885931 ], [ 11.250000, 33.137551 ], [ 18.984375, 30.751278 ], [ 20.390625, 33.137551 ], [ 24.609375, 31.952162 ], [ 33.750000, 31.353637 ], [ 34.453125, 33.137551 ], [ 35.156250, 33.724340 ], [ 35.859375, 34.885931 ], [ 35.859375, 36.031332 ], [ 35.859375, 37.160317 ], [ 34.453125, 37.160317 ], [ 29.531250, 36.597889 ], [ 27.421875, 37.160317 ], [ 26.015625, 38.272689 ], [ 26.015625, 39.909736 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 33.046875, 42.032974 ], [ 36.562500, 41.508577 ], [ 42.890625, 41.508577 ], [ 41.484375, 42.032974 ], [ 39.375000, 43.580391 ], [ 45.000000, 42.553080 ], [ 45.703125, 42.032974 ], [ 46.406250, 41.508577 ], [ 47.109375, 41.508577 ], [ 48.515625, 42.032974 ], [ 49.921875, 40.446947 ], [ 48.515625, 38.822591 ], [ 48.515625, 37.718590 ], [ 50.625000, 37.160317 ], [ 53.437500, 37.718590 ], [ 52.031250, 40.446947 ], [ 52.734375, 40.979898 ], [ 54.140625, 40.979898 ], [ 53.437500, 42.553080 ], [ 52.734375, 41.508577 ], [ 52.031250, 42.032974 ], [ 49.921875, 45.089036 ], [ 52.734375, 45.583290 ], [ 52.734375, 47.040182 ], [ 48.515625, 47.040182 ], [ 46.406250, 48.458352 ], [ 46.406250, 49.382373 ], [ 47.109375, 50.736455 ], [ 48.515625, 50.289339 ], [ 50.625000, 52.052490 ], [ 55.546875, 50.736455 ], [ 61.171875, 51.179343 ], [ 59.765625, 52.052490 ], [ 61.171875, 53.330873 ], [ 61.171875, 54.162434 ], [ 68.906250, 55.776573 ], [ 70.312500, 55.379110 ], [ 71.015625, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 53.748711 ], [ 76.640625, 54.572062 ], [ 79.453125, 51.179343 ], [ 80.156250, 51.618017 ], [ 82.968750, 51.179343 ], [ 87.187500, 49.382373 ], [ 92.109375, 51.179343 ], [ 97.031250, 49.837982 ], [ 98.437500, 52.052490 ], [ 103.359375, 50.289339 ], [ 106.875000, 50.289339 ], [ 108.281250, 49.382373 ], [ 110.390625, 49.382373 ], [ 113.906250, 50.289339 ], [ 116.015625, 50.289339 ], [ 117.421875, 49.837982 ], [ 118.828125, 50.289339 ], [ 120.937500, 53.330873 ], [ 123.046875, 53.748711 ], [ 125.859375, 52.908902 ], [ 127.265625, 49.837982 ], [ 129.375000, 49.837982 ], [ 130.781250, 47.989922 ], [ 135.000000, 48.922499 ], [ 133.593750, 46.558860 ], [ 132.890625, 45.583290 ], [ 130.781250, 45.089036 ], [ 130.078125, 42.553080 ], [ 127.265625, 39.909736 ], [ 127.968750, 38.822591 ], [ 129.375000, 36.031332 ], [ 125.859375, 34.885931 ], [ 125.859375, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 39.909736 ], [ 123.750000, 40.446947 ], [ 120.937500, 39.368279 ], [ 120.937500, 40.979898 ], [ 117.421875, 38.822591 ], [ 119.531250, 37.160317 ], [ 120.234375, 38.272689 ], [ 122.343750, 37.718590 ], [ 118.828125, 35.460670 ], [ 121.640625, 31.952162 ], [ 121.640625, 28.304381 ], [ 118.125000, 25.165173 ], [ 110.390625, 21.943046 ], [ 110.390625, 20.632784 ], [ 107.578125, 21.943046 ], [ 105.468750, 19.311143 ], [ 108.281250, 15.284185 ], [ 108.984375, 11.867351 ], [ 104.765625, 9.102097 ], [ 104.062500, 10.487812 ], [ 104.765625, 11.178402 ], [ 103.359375, 11.178402 ], [ 101.953125, 13.239945 ], [ 101.953125, 12.554564 ], [ 99.843750, 13.923404 ], [ 99.140625, 12.554564 ], [ 99.140625, 10.487812 ], [ 101.953125, 6.315299 ], [ 102.656250, 5.615986 ], [ 104.062500, 1.406109 ], [ 101.250000, 2.811371 ], [ 100.546875, 6.315299 ], [ 99.843750, 7.013668 ], [ 97.734375, 8.407168 ], [ 98.437500, 10.487812 ], [ 97.734375, 15.284185 ], [ 97.031250, 17.308688 ], [ 93.515625, 16.636192 ], [ 94.218750, 18.646245 ], [ 92.109375, 21.289374 ], [ 92.109375, 21.943046 ], [ 92.109375, 22.593726 ], [ 91.406250, 23.241346 ], [ 88.593750, 22.593726 ], [ 88.593750, 21.943046 ], [ 86.484375, 21.943046 ], [ 86.484375, 20.632784 ], [ 80.156250, 15.961329 ], [ 79.453125, 10.487812 ], [ 77.343750, 8.407168 ], [ 73.125000, 16.636192 ], [ 72.421875, 21.943046 ], [ 70.312500, 21.289374 ], [ 67.500000, 23.885838 ], [ 66.093750, 25.799891 ], [ 61.171875, 25.165173 ], [ 56.953125, 25.799891 ], [ 56.250000, 27.683528 ], [ 53.437500, 27.059126 ], [ 49.921875, 30.751278 ], [ 48.515625, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 50.625000, 25.165173 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 53.437500, 24.527135 ], [ 55.546875, 25.165173 ], [ 59.765625, 22.593726 ], [ 58.359375, 21.289374 ], [ 57.656250, 19.311143 ], [ 52.734375, 17.308688 ], [ 43.593750, 13.239945 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 34.453125, 28.304381 ], [ 33.750000, 27.683528 ], [ 36.562500, 22.593726 ], [ 37.968750, 18.646245 ], [ 38.671875, 15.961329 ], [ 41.484375, 13.923404 ], [ 42.890625, 13.239945 ], [ 42.187500, 12.554564 ], [ 42.890625, 11.867351 ], [ 43.593750, 10.487812 ] ], [ [ 24.609375, -11.178402 ], [ 29.531250, -13.239945 ], [ 26.718750, -11.178402 ], [ 24.609375, -11.178402 ] ], [ [ 37.968750, 4.214943 ], [ 32.343750, 8.407168 ], [ 35.156250, 5.615986 ], [ 37.968750, 4.214943 ] ], [ [ 29.531250, -14.604847 ], [ 26.718750, -17.308688 ], [ 30.234375, -15.284185 ], [ 29.531250, -14.604847 ] ], [ [ 32.343750, -9.102097 ], [ 30.234375, -7.710992 ], [ 28.828125, -8.407168 ], [ 32.343750, -9.102097 ] ], [ [ 18.984375, 5.615986 ], [ 16.875000, 4.214943 ], [ 18.281250, 3.513421 ], [ 18.984375, 5.615986 ] ], [ [ 31.640625, 4.214943 ], [ 28.125000, 4.915833 ], [ 30.234375, 3.513421 ], [ 31.640625, 4.214943 ] ], [ [ 30.234375, -2.811371 ], [ 28.828125, -4.214943 ], [ 29.531250, -5.615986 ], [ 30.234375, -2.811371 ] ], [ [ 70.312500, 38.822591 ], [ 67.500000, 37.160317 ], [ 68.906250, 37.160317 ], [ 70.312500, 38.822591 ] ], [ [ 55.546875, 41.508577 ], [ 56.953125, 41.508577 ], [ 58.359375, 43.068888 ], [ 55.546875, 41.508577 ] ], [ [ 60.468750, 36.597889 ], [ 60.468750, 33.137551 ], [ 61.171875, 36.031332 ], [ 60.468750, 36.597889 ] ], [ [ 7.031250, 34.307144 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.751278 ], [ 7.031250, 34.307144 ] ], [ [ 79.453125, 45.089036 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.580391 ], [ 79.453125, 45.089036 ] ], [ [ 41.484375, 4.915833 ], [ 37.968750, 4.214943 ], [ 41.484375, 4.214943 ], [ 41.484375, 4.915833 ] ], [ [ 74.531250, 37.718590 ], [ 73.828125, 37.718590 ], [ 74.531250, 37.160317 ], [ 77.343750, 36.031332 ], [ 74.531250, 37.718590 ] ], [ [ 33.046875, -10.487812 ], [ 34.453125, -11.178402 ], [ 33.046875, -9.102097 ], [ 33.046875, -10.487812 ] ], [ [ 42.187500, 12.554564 ], [ 41.484375, 13.239945 ], [ 41.484375, 11.178402 ], [ 42.187500, 12.554564 ] ], [ [ 13.359375, 12.554564 ], [ 14.062500, 13.239945 ], [ 12.656250, 13.923404 ], [ 13.359375, 12.554564 ] ], [ [ 104.765625, 14.604847 ], [ 104.765625, 15.284185 ], [ 102.656250, 14.604847 ], [ 104.765625, 14.604847 ] ], [ [ 101.250000, 21.289374 ], [ 100.546875, 21.943046 ], [ 99.843750, 20.632784 ], [ 101.250000, 21.289374 ] ], [ [ 91.406250, 27.059126 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.059126 ], [ 91.406250, 27.059126 ] ], [ [ 44.296875, 37.718590 ], [ 45.000000, 36.031332 ], [ 45.703125, 36.031332 ], [ 44.296875, 37.718590 ] ], [ [ 119.531250, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.125000, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.517201 ] ], [ [ 115.312500, 48.458352 ], [ 115.312500, 47.989922 ], [ 117.421875, 48.458352 ], [ 115.312500, 48.458352 ] ], [ [ 41.484375, -1.406109 ], [ 40.781250, 1.406109 ], [ 40.781250, -0.703107 ], [ 41.484375, -1.406109 ] ], [ [ 97.031250, 28.304381 ], [ 94.921875, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.031250, 28.304381 ] ], [ [ 87.890625, 27.059126 ], [ 88.593750, 27.683528 ], [ 88.593750, 28.304381 ], [ 87.890625, 28.304381 ], [ 87.890625, 27.059126 ] ], [ [ 55.546875, 23.885838 ], [ 54.843750, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 23.885838 ] ], [ [ 45.000000, 39.368279 ], [ 45.000000, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ] ], [ [ 67.500000, 39.909736 ], [ 66.796875, 39.368279 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.909736 ] ], [ [ 12.656250, -4.214943 ], [ 12.656250, -4.915833 ], [ 14.062500, -4.915833 ], [ 12.656250, -4.214943 ] ], [ [ 11.250000, 2.811371 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.811371 ], [ 11.250000, 2.811371 ] ], [ [ 33.046875, -10.487812 ], [ 32.343750, -9.102097 ], [ 33.046875, -11.867351 ], [ 33.046875, -10.487812 ] ], [ [ 43.593750, 10.487812 ], [ 42.187500, 11.178402 ], [ 43.593750, 9.795678 ], [ 43.593750, 10.487812 ] ], [ [ 35.156250, 33.137551 ], [ 35.156250, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.156250, 33.137551 ] ] ], [ [ [ -182.109375, -17.308688 ], [ -182.109375, -17.978733 ], [ -182.812500, -17.978733 ], [ -182.812500, -17.308688 ], [ -182.109375, -17.308688 ] ] ], [ [ [ 120.937500, 13.923404 ], [ 120.937500, 12.554564 ], [ 120.234375, 13.923404 ], [ 120.937500, 13.923404 ] ] ], [ [ [ 26.718750, 57.704147 ], [ 27.421875, 57.326521 ], [ 28.125000, 56.170023 ], [ 30.234375, 55.776573 ], [ 32.343750, 53.748711 ], [ 30.937500, 53.330873 ], [ 31.640625, 52.482780 ], [ 33.750000, 52.482780 ], [ 35.156250, 50.736455 ], [ 39.375000, 49.837982 ], [ 39.375000, 47.989922 ], [ 34.453125, 46.558860 ], [ 35.859375, 45.583290 ], [ 33.750000, 44.590467 ], [ 32.343750, 45.583290 ], [ 33.046875, 46.073231 ], [ 31.640625, 47.040182 ], [ 29.531250, 45.583290 ], [ 28.125000, 44.087585 ], [ 27.421875, 42.032974 ], [ 28.125000, 41.508577 ], [ 26.718750, 40.979898 ], [ 26.015625, 40.979898 ], [ 23.203125, 40.979898 ], [ 22.500000, 40.979898 ], [ 23.203125, 40.446947 ], [ 23.906250, 37.718590 ], [ 22.500000, 38.272689 ], [ 22.500000, 36.597889 ], [ 21.093750, 37.160317 ], [ 19.687500, 39.909736 ], [ 19.687500, 42.553080 ], [ 18.984375, 42.032974 ], [ 18.281250, 42.553080 ], [ 13.359375, 45.583290 ], [ 13.359375, 46.073231 ], [ 11.953125, 45.583290 ], [ 11.953125, 44.590467 ], [ 18.281250, 40.446947 ], [ 16.171875, 40.446947 ], [ 15.468750, 38.272689 ], [ 14.765625, 40.446947 ], [ 10.546875, 42.553080 ], [ 9.843750, 44.087585 ], [ 8.437500, 44.590467 ], [ 7.031250, 44.087585 ], [ 6.328125, 44.590467 ], [ 6.328125, 46.073231 ], [ 5.625000, 46.558860 ], [ 6.328125, 47.989922 ], [ 7.031250, 47.989922 ], [ 7.734375, 49.382373 ], [ 5.625000, 49.837982 ], [ 2.109375, 51.179343 ], [ 2.812500, 51.618017 ], [ 4.218750, 53.330873 ], [ 5.625000, 53.748711 ], [ 6.328125, 53.748711 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 8.437500, 57.326521 ], [ 10.546875, 58.077876 ], [ 10.546875, 56.559482 ], [ 10.546875, 56.170023 ], [ 9.843750, 55.379110 ], [ 10.546875, 54.162434 ], [ 11.953125, 54.572062 ], [ 14.062500, 53.330873 ], [ 14.765625, 54.162434 ], [ 17.578125, 54.977614 ], [ 22.500000, 54.572062 ], [ 20.390625, 56.170023 ], [ 21.093750, 57.704147 ], [ 22.500000, 58.077876 ], [ 23.906250, 57.326521 ], [ 24.609375, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.203125, 59.534318 ], [ 27.421875, 59.534318 ], [ 26.718750, 57.704147 ] ], [ [ 16.875000, 47.989922 ], [ 15.468750, 47.040182 ], [ 14.062500, 46.558860 ], [ 16.171875, 46.558860 ], [ 18.281250, 46.073231 ], [ 16.171875, 47.040182 ], [ 16.875000, 47.989922 ] ], [ [ 28.125000, 56.170023 ], [ 26.015625, 55.776573 ], [ 25.312500, 54.572062 ], [ 28.125000, 56.170023 ] ], [ [ 9.140625, 47.517201 ], [ 9.843750, 46.558860 ], [ 11.953125, 47.040182 ], [ 9.140625, 47.517201 ] ], [ [ 12.656250, 47.517201 ], [ 9.140625, 47.989922 ], [ 9.140625, 47.517201 ], [ 12.656250, 47.517201 ] ], [ [ 21.796875, 42.553080 ], [ 22.500000, 41.508577 ], [ 22.500000, 44.087585 ], [ 21.796875, 42.553080 ] ], [ [ 21.796875, 42.553080 ], [ 21.093750, 43.068888 ], [ 20.390625, 42.553080 ], [ 20.390625, 42.032974 ], [ 21.796875, 42.553080 ] ], [ [ 25.312500, 54.572062 ], [ 23.203125, 54.572062 ], [ 23.203125, 54.162434 ], [ 25.312500, 54.572062 ] ], [ [ 16.171875, 48.922499 ], [ 14.765625, 49.382373 ], [ 14.062500, 48.922499 ], [ 16.171875, 48.922499 ] ], [ [ 22.500000, 47.989922 ], [ 23.906250, 47.989922 ], [ 22.500000, 48.458352 ], [ 22.500000, 47.989922 ] ] ], [ [ [ 28.125000, 69.162558 ], [ 28.125000, 68.399180 ], [ 29.531250, 67.875541 ], [ 28.828125, 67.067433 ], [ 29.531250, 65.946472 ], [ 29.531250, 63.860036 ], [ 30.937500, 62.915233 ], [ 27.421875, 60.586967 ], [ 22.500000, 59.888937 ], [ 21.093750, 60.930432 ], [ 20.390625, 62.915233 ], [ 25.312500, 65.366837 ], [ 23.203125, 66.231457 ], [ 21.796875, 65.946472 ], [ 21.093750, 64.472794 ], [ 17.578125, 62.915233 ], [ 16.875000, 61.606396 ], [ 18.281250, 60.239811 ], [ 16.171875, 58.813742 ], [ 15.468750, 56.170023 ], [ 12.656250, 55.379110 ], [ 11.953125, 54.977614 ], [ 10.546875, 56.170023 ], [ 11.953125, 56.170023 ], [ 10.546875, 59.175928 ], [ 9.843750, 59.534318 ], [ 7.734375, 58.447733 ], [ 5.625000, 58.813742 ], [ 4.921875, 62.267923 ], [ 9.843750, 64.774125 ], [ 14.062500, 67.875541 ], [ 18.984375, 69.900118 ], [ 22.500000, 70.377854 ], [ 23.906250, 71.074056 ], [ 28.125000, 71.300793 ], [ 30.937500, 70.612614 ], [ 29.531250, 70.377854 ], [ 30.937500, 69.657086 ], [ 28.125000, 69.162558 ] ], [ [ 20.390625, 68.911005 ], [ 23.203125, 68.138852 ], [ 21.796875, 68.911005 ], [ 20.390625, 68.911005 ] ], [ [ 17.578125, 68.656555 ], [ 16.875000, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.656555 ] ] ], [ [ [ 134.296875, 34.307144 ], [ 133.593750, 33.724340 ], [ 132.187500, 33.137551 ], [ 132.890625, 34.307144 ], [ 134.296875, 34.307144 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 17.578125, 79.812302 ], [ 21.093750, 79.038437 ], [ 18.984375, 78.630006 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 13.359375, 77.466028 ], [ 14.062500, 77.767582 ], [ 10.546875, 78.903929 ], [ 9.843750, 79.687184 ], [ 12.656250, 80.058050 ], [ 13.359375, 79.687184 ], [ 14.765625, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 22.500000, 80.760615 ], [ 25.312500, 80.415707 ], [ 26.718750, 80.058050 ], [ 25.312500, 79.560546 ], [ 22.500000, 79.432371 ], [ 19.687500, 79.687184 ], [ 16.875000, 80.415707 ], [ 20.390625, 80.647035 ], [ 21.796875, 80.415707 ], [ 22.500000, 80.760615 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 36.031332 ], [ 136.406250, 37.718590 ], [ 137.109375, 37.160317 ], [ 139.218750, 38.272689 ], [ 139.218750, 40.979898 ], [ 141.328125, 41.508577 ], [ 141.328125, 39.368279 ], [ 140.625000, 37.160317 ], [ 139.921875, 35.460670 ], [ 135.703125, 33.724340 ], [ 135.000000, 34.885931 ], [ 132.890625, 34.307144 ], [ 130.781250, 34.307144 ] ] ], [ [ [ 115.312500, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.828125, 5.615986 ], [ 118.125000, 4.915833 ], [ 115.312500, 4.915833 ], [ 114.609375, 2.108899 ], [ 109.687500, 1.406109 ], [ 113.906250, 4.915833 ], [ 115.312500, 5.615986 ] ] ], [ [ [ 141.328125, 45.583290 ], [ 143.437500, 44.590467 ], [ 144.843750, 44.590467 ], [ 144.843750, 43.580391 ], [ 142.734375, 42.032974 ], [ 141.328125, 43.068888 ], [ 140.625000, 42.032974 ], [ 139.921875, 42.032974 ], [ 141.328125, 45.583290 ] ] ], [ [ [ 123.750000, 13.239945 ], [ 125.156250, 12.554564 ], [ 124.453125, 10.487812 ], [ 123.750000, 11.867351 ], [ 123.750000, 12.554564 ], [ 120.937500, 13.923404 ], [ 119.531250, 15.284185 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 122.343750, 17.308688 ], [ 121.640625, 14.604847 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ] ] ], [ [ [ 22.500000, 78.490552 ], [ 24.609375, 77.915669 ], [ 21.796875, 77.466028 ], [ 20.390625, 77.767582 ], [ 20.390625, 78.349411 ], [ 22.500000, 78.490552 ] ] ], [ [ [ 123.046875, 8.407168 ], [ 125.156250, 9.795678 ], [ 125.859375, 9.102097 ], [ 125.156250, 5.615986 ], [ 123.046875, 8.407168 ] ] ], [ [ [ 79.453125, 10.487812 ], [ 80.156250, 9.795678 ], [ 81.562500, 7.710992 ], [ 80.156250, 6.315299 ], [ 79.453125, 10.487812 ] ] ], [ [ [ 130.781250, 34.307144 ], [ 131.484375, 33.724340 ], [ 130.781250, 31.952162 ], [ 130.078125, 31.952162 ], [ 129.375000, 33.724340 ], [ 130.781250, 34.307144 ] ] ], [ [ [ 120.937500, 25.799891 ], [ 121.640625, 24.527135 ], [ 120.234375, 22.593726 ], [ 119.531250, 23.885838 ], [ 120.937500, 25.799891 ] ] ], [ [ [ 15.468750, 38.272689 ], [ 14.765625, 37.160317 ], [ 11.953125, 37.718590 ], [ 11.953125, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 9.140625, 41.508577 ], [ 9.140625, 39.368279 ], [ 8.437500, 39.368279 ], [ 7.734375, 40.979898 ], [ 9.140625, 41.508577 ] ] ], [ [ [ 110.390625, 20.632784 ], [ 109.687500, 19.311143 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.973349 ], [ 110.390625, 20.632784 ] ] ], [ [ [ 118.828125, 11.867351 ], [ 119.531250, 11.178402 ], [ 116.718750, 8.407168 ], [ 118.828125, 11.867351 ] ] ], [ [ [ 121.640625, 12.554564 ], [ 123.046875, 11.867351 ], [ 121.640625, 10.487812 ], [ 121.640625, 12.554564 ] ] ], [ [ [ 122.343750, 9.795678 ], [ 123.750000, 11.867351 ], [ 123.750000, 10.487812 ], [ 122.343750, 9.795678 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.906250, -48.458352 ], [ 70.312500, -48.922499 ], [ 69.609375, -49.382373 ], [ 68.203125, -49.382373 ], [ 68.906250, -48.458352 ] ] ], [ [ [ 172.968750, -40.446947 ], [ 173.671875, -41.508577 ], [ 170.156250, -45.583290 ], [ 168.750000, -46.558860 ], [ 166.640625, -46.073231 ], [ 166.640625, -45.089036 ], [ 172.968750, -40.446947 ] ] ], [ [ [ -187.031250, -40.446947 ], [ -186.328125, -41.508577 ], [ -187.031250, -43.580391 ], [ -187.031250, -40.446947 ] ] ], [ [ [ 147.656250, -40.446947 ], [ 147.656250, -43.068888 ], [ 145.546875, -43.068888 ], [ 144.140625, -40.979898 ], [ 144.843750, -40.446947 ], [ 147.656250, -40.446947 ] ] ], [ [ [ 172.265625, -34.307144 ], [ 176.484375, -37.718590 ], [ 177.890625, -37.160317 ], [ 175.078125, -41.508577 ], [ 174.375000, -39.368279 ], [ 173.671875, -39.368279 ], [ 174.375000, -37.160317 ], [ 172.265625, -34.307144 ] ] ], [ [ [ -187.031250, -34.307144 ], [ -185.625000, -36.031332 ], [ -183.515625, -37.718590 ], [ -182.109375, -37.160317 ], [ -184.921875, -41.508577 ], [ -185.625000, -39.368279 ], [ -186.328125, -39.368279 ], [ -185.625000, -37.160317 ], [ -187.031250, -34.307144 ] ] ], [ [ [ 113.906250, -21.943046 ], [ 116.015625, -20.632784 ], [ 120.234375, -19.311143 ], [ 125.156250, -13.923404 ], [ 129.375000, -14.604847 ], [ 130.078125, -11.867351 ], [ 132.187500, -11.867351 ], [ 131.484375, -11.178402 ], [ 136.406250, -11.178402 ], [ 135.000000, -14.604847 ], [ 139.921875, -17.308688 ], [ 142.031250, -10.487812 ], [ 143.437500, -13.239945 ], [ 144.843750, -14.604847 ], [ 146.250000, -18.646245 ], [ 148.359375, -19.973349 ], [ 152.578125, -25.799891 ], [ 152.578125, -30.751278 ], [ 149.765625, -37.160317 ], [ 146.250000, -38.822591 ], [ 144.843750, -37.718590 ], [ 143.437500, -38.272689 ], [ 140.625000, -37.718590 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.885931 ], [ 137.109375, -32.546813 ], [ 135.703125, -34.885931 ], [ 133.593750, -32.546813 ], [ 130.781250, -31.353637 ], [ 125.859375, -31.952162 ], [ 123.046875, -33.724340 ], [ 119.531250, -33.724340 ], [ 117.421875, -34.885931 ], [ 114.609375, -33.724340 ], [ 115.312500, -31.353637 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.203125, -23.885838 ], [ 113.906250, -21.943046 ] ] ], [ [ [ 28.828125, -21.943046 ], [ 29.531250, -21.943046 ], [ 30.937500, -21.943046 ], [ 31.640625, -23.885838 ], [ 30.937500, -25.165173 ], [ 31.640625, -25.799891 ], [ 31.640625, -26.431228 ], [ 32.343750, -26.431228 ], [ 30.937500, -28.921631 ], [ 27.421875, -33.137551 ], [ 18.984375, -34.307144 ], [ 18.281250, -33.724340 ], [ 17.578125, -31.353637 ], [ 16.171875, -28.304381 ], [ 19.687500, -28.304381 ], [ 19.687500, -24.527135 ], [ 20.390625, -25.165173 ], [ 19.687500, -21.289374 ], [ 20.390625, -21.289374 ], [ 20.390625, -17.978733 ], [ 24.609375, -17.308688 ], [ 25.312500, -17.978733 ], [ 28.828125, -21.943046 ] ] ], [ [ [ 140.625000, -9.102097 ], [ 137.109375, -8.407168 ], [ 138.515625, -7.013668 ], [ 137.812500, -4.915833 ], [ 133.593750, -3.513421 ], [ 132.890625, -3.513421 ], [ 131.484375, -2.811371 ], [ 133.593750, -2.108899 ], [ 130.078125, -0.703107 ], [ 133.593750, -0.703107 ], [ 135.000000, -2.811371 ], [ 137.109375, -1.406109 ], [ 140.625000, -2.108899 ], [ 146.953125, -5.615986 ], [ 146.953125, -7.013668 ], [ 150.468750, -10.487812 ], [ 147.656250, -9.795678 ], [ 144.140625, -7.013668 ], [ 142.031250, -9.102097 ], [ 140.625000, -9.102097 ] ] ], [ [ [ 49.218750, -11.867351 ], [ 49.921875, -15.284185 ], [ 46.406250, -24.527135 ], [ 45.000000, -25.165173 ], [ 43.593750, -24.527135 ], [ 42.890625, -22.593726 ], [ 44.296875, -19.311143 ], [ 43.593750, -17.308688 ], [ 49.218750, -11.867351 ] ] ], [ [ [ 115.312500, 4.915833 ], [ 117.421875, 4.214943 ], [ 117.421875, 2.108899 ], [ 118.828125, 1.406109 ], [ 117.421875, 1.406109 ], [ 116.015625, -3.513421 ], [ 109.687500, -2.811371 ], [ 108.984375, 0.000000 ], [ 108.984375, 2.108899 ], [ 110.390625, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 4.915833 ] ] ], [ [ [ 97.031250, 5.615986 ], [ 103.359375, 0.703107 ], [ 103.359375, -0.703107 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 101.953125, -4.214943 ], [ 94.921875, 5.615986 ], [ 97.031250, 5.615986 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 120.234375, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.108899 ], [ 120.234375, -4.915833 ], [ 118.828125, -4.915833 ], [ 118.125000, -2.108899 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 108.281250, -6.315299 ], [ 110.390625, -6.315299 ], [ 115.312500, -7.710992 ], [ 104.765625, -6.315299 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 151.171875, -3.513421 ], [ 151.875000, -4.214943 ], [ 151.875000, -4.915833 ], [ 149.765625, -6.315299 ], [ 147.656250, -5.615986 ], [ 150.468750, -4.915833 ], [ 151.171875, -3.513421 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 125.156250, 2.108899 ], [ 123.046875, 0.703107 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 120.937500, -2.108899 ], [ 123.046875, -4.915833 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.108899 ] ] ], [ [ [ 127.265625, 2.811371 ], [ 128.671875, 1.406109 ], [ 127.968750, -0.703107 ], [ 127.265625, 2.811371 ] ] ], [ [ [ 127.265625, -7.710992 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.407168 ], [ 127.265625, -7.710992 ] ] ], [ [ [ 130.078125, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.265625, -2.811371 ], [ 130.078125, -2.811371 ] ] ], [ [ [ 117.421875, -7.710992 ], [ 118.828125, -8.407168 ], [ 116.718750, -8.407168 ], [ 117.421875, -7.710992 ] ] ], [ [ [ 122.343750, -7.710992 ], [ 119.531250, -8.407168 ], [ 120.234375, -7.710992 ], [ 122.343750, -7.710992 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.906250, -48.458352 ], [ 70.312500, -48.922499 ], [ 69.609375, -49.382373 ], [ 68.203125, -49.382373 ], [ 68.906250, -48.458352 ] ] ], [ [ [ 172.968750, -40.446947 ], [ 173.671875, -41.508577 ], [ 170.156250, -45.583290 ], [ 168.750000, -46.558860 ], [ 166.640625, -46.073231 ], [ 166.640625, -45.089036 ], [ 172.968750, -40.446947 ] ] ], [ [ [ -187.031250, -40.446947 ], [ -186.328125, -41.508577 ], [ -187.031250, -43.580391 ], [ -187.031250, -40.446947 ] ] ], [ [ [ 147.656250, -40.446947 ], [ 147.656250, -43.068888 ], [ 145.546875, -43.068888 ], [ 144.140625, -40.979898 ], [ 144.843750, -40.446947 ], [ 147.656250, -40.446947 ] ] ], [ [ [ 172.265625, -34.307144 ], [ 176.484375, -37.718590 ], [ 177.890625, -37.160317 ], [ 175.078125, -41.508577 ], [ 174.375000, -39.368279 ], [ 173.671875, -39.368279 ], [ 174.375000, -37.160317 ], [ 172.265625, -34.307144 ] ] ], [ [ [ -187.031250, -34.307144 ], [ -185.625000, -36.031332 ], [ -183.515625, -37.718590 ], [ -182.109375, -37.160317 ], [ -184.921875, -41.508577 ], [ -185.625000, -39.368279 ], [ -186.328125, -39.368279 ], [ -185.625000, -37.160317 ], [ -187.031250, -34.307144 ] ] ], [ [ [ 113.906250, -21.943046 ], [ 116.015625, -20.632784 ], [ 120.234375, -19.311143 ], [ 125.156250, -13.923404 ], [ 129.375000, -14.604847 ], [ 130.078125, -11.867351 ], [ 132.187500, -11.867351 ], [ 131.484375, -11.178402 ], [ 136.406250, -11.178402 ], [ 135.000000, -14.604847 ], [ 139.921875, -17.308688 ], [ 142.031250, -10.487812 ], [ 143.437500, -13.239945 ], [ 144.843750, -14.604847 ], [ 146.250000, -18.646245 ], [ 148.359375, -19.973349 ], [ 152.578125, -25.799891 ], [ 152.578125, -30.751278 ], [ 149.765625, -37.160317 ], [ 146.250000, -38.822591 ], [ 144.843750, -37.718590 ], [ 143.437500, -38.272689 ], [ 140.625000, -37.718590 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.885931 ], [ 137.109375, -32.546813 ], [ 135.703125, -34.885931 ], [ 133.593750, -32.546813 ], [ 130.781250, -31.353637 ], [ 125.859375, -31.952162 ], [ 123.046875, -33.724340 ], [ 119.531250, -33.724340 ], [ 117.421875, -34.885931 ], [ 114.609375, -33.724340 ], [ 115.312500, -31.353637 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.203125, -23.885838 ], [ 113.906250, -21.943046 ] ] ], [ [ [ 28.828125, -21.943046 ], [ 29.531250, -21.943046 ], [ 30.937500, -21.943046 ], [ 31.640625, -23.885838 ], [ 30.937500, -25.165173 ], [ 31.640625, -25.799891 ], [ 31.640625, -26.431228 ], [ 32.343750, -26.431228 ], [ 30.937500, -28.921631 ], [ 27.421875, -33.137551 ], [ 18.984375, -34.307144 ], [ 18.281250, -33.724340 ], [ 17.578125, -31.353637 ], [ 16.171875, -28.304381 ], [ 19.687500, -28.304381 ], [ 19.687500, -24.527135 ], [ 20.390625, -25.165173 ], [ 19.687500, -21.289374 ], [ 20.390625, -21.289374 ], [ 20.390625, -17.978733 ], [ 24.609375, -17.308688 ], [ 25.312500, -17.978733 ], [ 28.828125, -21.943046 ] ] ], [ [ [ 140.625000, -9.102097 ], [ 137.109375, -8.407168 ], [ 138.515625, -7.013668 ], [ 137.812500, -4.915833 ], [ 133.593750, -3.513421 ], [ 132.890625, -3.513421 ], [ 131.484375, -2.811371 ], [ 133.593750, -2.108899 ], [ 130.078125, -0.703107 ], [ 133.593750, -0.703107 ], [ 135.000000, -2.811371 ], [ 137.109375, -1.406109 ], [ 140.625000, -2.108899 ], [ 146.953125, -5.615986 ], [ 146.953125, -7.013668 ], [ 150.468750, -10.487812 ], [ 147.656250, -9.795678 ], [ 144.140625, -7.013668 ], [ 142.031250, -9.102097 ], [ 140.625000, -9.102097 ] ] ], [ [ [ 49.218750, -11.867351 ], [ 49.921875, -15.284185 ], [ 46.406250, -24.527135 ], [ 45.000000, -25.165173 ], [ 43.593750, -24.527135 ], [ 42.890625, -22.593726 ], [ 44.296875, -19.311143 ], [ 43.593750, -17.308688 ], [ 49.218750, -11.867351 ] ] ], [ [ [ 115.312500, 4.915833 ], [ 117.421875, 4.214943 ], [ 117.421875, 2.108899 ], [ 118.828125, 1.406109 ], [ 117.421875, 1.406109 ], [ 116.015625, -3.513421 ], [ 109.687500, -2.811371 ], [ 108.984375, 0.000000 ], [ 108.984375, 2.108899 ], [ 110.390625, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 4.915833 ] ] ], [ [ [ 97.031250, 5.615986 ], [ 103.359375, 0.703107 ], [ 103.359375, -0.703107 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 101.953125, -4.214943 ], [ 94.921875, 5.615986 ], [ 97.031250, 5.615986 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 120.234375, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.108899 ], [ 120.234375, -4.915833 ], [ 118.828125, -4.915833 ], [ 118.125000, -2.108899 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 108.281250, -6.315299 ], [ 110.390625, -6.315299 ], [ 115.312500, -7.710992 ], [ 104.765625, -6.315299 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 151.875000, -2.811371 ], [ 152.578125, -4.214943 ], [ 151.875000, -4.214943 ], [ 151.875000, -4.915833 ], [ 149.765625, -6.315299 ], [ 147.656250, -5.615986 ], [ 150.468750, -4.915833 ], [ 151.171875, -3.513421 ], [ 151.875000, -2.811371 ] ] ], [ [ [ 119.531250, 0.703107 ], [ 125.156250, 2.108899 ], [ 123.046875, 0.703107 ], [ 119.531250, 0.703107 ] ] ], [ [ [ 120.937500, -2.108899 ], [ 123.046875, -4.915833 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.108899 ] ] ], [ [ [ 127.265625, 2.811371 ], [ 128.671875, 1.406109 ], [ 127.968750, -0.703107 ], [ 127.265625, 2.811371 ] ] ], [ [ [ 127.265625, -7.710992 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.407168 ], [ 127.265625, -7.710992 ] ] ], [ [ [ 130.078125, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.265625, -2.811371 ], [ 130.078125, -2.811371 ] ] ], [ [ [ 117.421875, -7.710992 ], [ 118.828125, -8.407168 ], [ 116.718750, -8.407168 ], [ 117.421875, -7.710992 ] ] ], [ [ [ 122.343750, -7.710992 ], [ 119.531250, -8.407168 ], [ 120.234375, -7.710992 ], [ 122.343750, -7.710992 ] ] ] ] } } ] } ] } , @@ -54,13 +55,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 512 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.109375, 43.580391 ], [ -1.406250, 46.073231 ], [ -3.515625, 47.754098 ], [ -3.515625, 48.922499 ], [ -1.757812, 48.690960 ], [ -2.109375, 49.837982 ], [ -1.054688, 49.382373 ], [ 1.054688, 50.289339 ], [ 1.406250, 50.958427 ], [ 2.460938, 51.179343 ], [ 2.460938, 50.958427 ], [ 3.515625, 50.513427 ], [ 4.218750, 50.064192 ], [ 8.085938, 49.152970 ], [ 7.382812, 47.754098 ], [ 6.679688, 47.754098 ], [ 5.976562, 46.800059 ], [ 5.976562, 46.316584 ], [ 6.328125, 46.558860 ], [ 6.679688, 46.073231 ], [ 7.382812, 43.834527 ], [ 6.328125, 43.325178 ], [ 4.218750, 43.580391 ], [ 2.812500, 43.325178 ], [ 2.812500, 42.553080 ], [ 2.812500, 42.032974 ], [ 0.703125, 41.244772 ], [ 0.000000, 39.909736 ], [ 0.000000, 38.822591 ], [ -2.460938, 36.879621 ], [ -3.515625, 36.879621 ], [ -3.515625, 43.580391 ], [ -2.109375, 43.580391 ] ] ], [ [ [ -3.515625, 13.581921 ], [ -3.515625, 24.206890 ], [ 0.000000, 21.943046 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.972741 ], [ 3.515625, 15.623037 ], [ 0.000000, 14.944785 ], [ 0.703125, 12.897489 ], [ 2.109375, 12.897489 ], [ 1.054688, 11.178402 ], [ 0.000000, 11.178402 ], [ 0.000000, 10.833306 ], [ 0.351562, 7.013668 ], [ 0.703125, 6.315299 ], [ 1.054688, 5.965754 ], [ -2.109375, 4.915833 ], [ -3.164062, 5.266008 ], [ -3.515625, 5.266008 ], [ -3.515625, 6.315299 ], [ -3.515625, 10.141932 ], [ -3.515625, 13.581921 ] ] ], [ [ [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.973798 ], [ 0.000000, 53.748711 ], [ 0.351562, 53.120405 ], [ 1.406250, 52.908902 ], [ 0.703125, 51.835778 ], [ 1.406250, 51.399206 ], [ 0.000000, 50.958427 ], [ -3.164062, 50.736455 ], [ -3.515625, 50.513427 ], [ -3.515625, 53.540307 ], [ -3.164062, 53.540307 ], [ -3.164062, 54.162434 ], [ -3.515625, 54.572062 ], [ -3.515625, 57.704147 ] ] ], [ [ [ -3.515625, 35.460670 ], [ -2.460938, 35.173808 ], [ -1.406250, 32.842674 ], [ -3.515625, 31.952162 ], [ -3.515625, 35.460670 ] ] ], [ [ [ 9.140625, 43.068888 ], [ 9.492188, 42.293564 ], [ 9.140625, 41.508577 ], [ 8.437500, 41.771312 ], [ 8.437500, 42.293564 ], [ 9.140625, 43.068888 ] ] ], [ [ [ -3.164062, 58.813742 ], [ -3.515625, 57.704147 ], [ -3.515625, 58.631217 ], [ -3.164062, 58.813742 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 75.585938, 71.965388 ], [ 77.343750, 72.289067 ], [ 79.453125, 72.395706 ], [ 81.210938, 71.856229 ], [ 80.507812, 72.607120 ], [ 80.507812, 73.726595 ], [ 81.914062, 73.922469 ], [ 86.484375, 74.019543 ], [ 85.781250, 74.496413 ], [ 86.835938, 75.140778 ], [ 88.242188, 75.230667 ], [ 90.000000, 75.672197 ], [ 92.812500, 75.845169 ], [ 93.164062, 76.100796 ], [ 95.625000, 76.184995 ], [ 96.328125, 75.930885 ], [ 98.789062, 76.516819 ], [ 100.546875, 76.434604 ], [ 101.953125, 77.312520 ], [ 104.062500, 77.767582 ], [ 105.820312, 77.389504 ], [ 104.414062, 77.157163 ], [ 106.875000, 76.999935 ], [ 107.226562, 76.516819 ], [ 107.929688, 76.760541 ], [ 110.742188, 76.760541 ], [ 113.203125, 76.268695 ], [ 113.906250, 75.930885 ], [ 113.554688, 75.408854 ], [ 109.335938, 74.211983 ], [ 111.796875, 73.824820 ], [ 112.851562, 74.019543 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.627789 ], [ 115.312500, 73.824820 ], [ 118.476562, 73.627789 ], [ 118.828125, 73.124945 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 126.914062, 73.627789 ], [ 128.320312, 73.124945 ], [ 129.023438, 72.501722 ], [ 128.320312, 72.073911 ], [ 129.375000, 71.300793 ], [ 131.132812, 70.844673 ], [ 132.187500, 71.856229 ], [ 133.593750, 71.413177 ], [ 135.351562, 71.746432 ], [ 137.460938, 71.413177 ], [ 138.164062, 71.635993 ], [ 139.570312, 71.524909 ], [ 138.867188, 72.501722 ], [ 140.273438, 72.919635 ], [ 149.414062, 72.289067 ], [ 150.117188, 71.635993 ], [ 152.929688, 70.844673 ], [ 156.796875, 71.074056 ], [ 158.906250, 70.959697 ], [ 159.609375, 70.495574 ], [ 159.609375, 69.778952 ], [ 160.664062, 69.534518 ], [ 162.070312, 69.657086 ], [ 165.937500, 69.534518 ], [ 167.695312, 69.657086 ], [ 169.453125, 68.784144 ], [ 170.507812, 69.037142 ], [ 169.804688, 69.657086 ], [ 170.156250, 70.140364 ], [ 173.320312, 69.900118 ], [ 175.429688, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 69.037142 ], [ 182.109375, 68.269387 ], [ 183.515625, 67.875541 ], [ 183.515625, 65.512963 ], [ 181.406250, 65.512963 ], [ 181.054688, 65.802776 ], [ 181.054688, 66.231457 ], [ 180.000000, 65.946472 ], [ 180.351562, 65.512963 ], [ 180.000000, 65.072130 ], [ 178.593750, 64.623877 ], [ 177.187500, 64.623877 ], [ 179.296875, 63.074866 ], [ 178.945312, 62.431074 ], [ 177.187500, 62.593341 ], [ 173.671875, 61.773123 ], [ 170.156250, 59.888937 ], [ 168.750000, 60.586967 ], [ 166.289062, 59.888937 ], [ 165.585938, 60.239811 ], [ 164.531250, 59.888937 ], [ 163.476562, 59.888937 ], [ 161.718750, 58.263287 ], [ 161.718750, 57.891497 ], [ 163.125000, 57.704147 ], [ 162.773438, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.367188, 55.379110 ], [ 162.070312, 54.977614 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.330873 ], [ 158.203125, 53.120405 ], [ 158.203125, 52.052490 ], [ 156.445312, 51.179343 ], [ 155.390625, 55.578345 ], [ 155.742188, 56.944974 ], [ 156.796875, 57.891497 ], [ 158.203125, 58.077876 ], [ 163.476562, 61.270233 ], [ 164.179688, 62.593341 ], [ 163.125000, 62.593341 ], [ 162.421875, 61.773123 ], [ 159.960938, 60.586967 ], [ 159.257812, 61.938950 ], [ 156.445312, 61.438767 ], [ 153.984375, 59.888937 ], [ 155.039062, 59.175928 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.712097 ], [ 148.359375, 59.175928 ], [ 145.195312, 59.355596 ], [ 142.031250, 59.175928 ], [ 135.000000, 54.775346 ], [ 136.406250, 54.775346 ], [ 137.109375, 54.162434 ], [ 138.164062, 53.956086 ], [ 138.515625, 54.367759 ], [ 139.570312, 54.367759 ], [ 141.328125, 53.120405 ], [ 139.921875, 48.458352 ], [ 134.648438, 43.580391 ], [ 133.242188, 42.811522 ], [ 132.187500, 43.325178 ], [ 130.429688, 42.293564 ], [ 130.781250, 45.089036 ], [ 131.835938, 45.336702 ], [ 132.890625, 45.336702 ], [ 135.000000, 48.690960 ], [ 132.187500, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.429688, 48.922499 ], [ 129.375000, 49.610710 ], [ 127.617188, 49.837982 ], [ 125.859375, 52.908902 ], [ 123.398438, 53.540307 ], [ 120.937500, 53.330873 ], [ 119.882812, 52.908902 ], [ 120.585938, 52.052490 ], [ 119.179688, 50.289339 ], [ 117.773438, 49.610710 ], [ 114.257812, 50.289339 ], [ 112.851562, 49.610710 ], [ 110.390625, 49.152970 ], [ 108.281250, 49.382373 ], [ 106.875000, 50.289339 ], [ 103.359375, 50.289339 ], [ 101.953125, 50.513427 ], [ 101.953125, 51.399206 ], [ 98.789062, 52.052490 ], [ 97.734375, 51.179343 ], [ 98.085938, 50.513427 ], [ 97.031250, 49.837982 ], [ 94.570312, 50.064192 ], [ 93.867188, 50.513427 ], [ 92.109375, 50.958427 ], [ 87.187500, 49.382373 ], [ 86.484375, 49.837982 ], [ 85.429688, 49.837982 ], [ 83.320312, 51.179343 ], [ 81.914062, 50.958427 ], [ 80.507812, 51.399206 ], [ 79.804688, 50.958427 ], [ 77.695312, 53.540307 ], [ 76.289062, 54.367759 ], [ 73.125000, 53.540307 ], [ 73.476562, 54.162434 ], [ 72.070312, 54.572062 ], [ 71.015625, 54.162434 ], [ 70.664062, 55.178868 ], [ 68.906250, 55.578345 ], [ 65.039062, 54.367759 ], [ 61.171875, 54.162434 ], [ 60.820312, 53.748711 ], [ 61.523438, 53.120405 ], [ 60.468750, 52.908902 ], [ 60.820312, 52.482780 ], [ 59.765625, 52.052490 ], [ 61.523438, 51.399206 ], [ 61.171875, 50.958427 ], [ 59.765625, 50.958427 ], [ 59.414062, 50.736455 ], [ 58.359375, 51.179343 ], [ 56.601562, 51.179343 ], [ 55.546875, 50.736455 ], [ 52.031250, 51.835778 ], [ 50.625000, 51.835778 ], [ 48.515625, 50.736455 ], [ 48.515625, 50.064192 ], [ 47.460938, 50.513427 ], [ 46.406250, 48.458352 ], [ 47.109375, 47.754098 ], [ 47.812500, 47.754098 ], [ 48.867188, 46.558860 ], [ 46.406250, 44.840291 ], [ 48.515625, 42.032974 ], [ 47.812500, 41.244772 ], [ 45.351562, 42.553080 ], [ 39.726562, 43.580391 ], [ 37.265625, 44.840291 ], [ 36.562500, 45.336702 ], [ 37.968750, 46.316584 ], [ 37.617188, 46.800059 ], [ 39.023438, 47.279229 ], [ 37.968750, 47.279229 ], [ 37.968750, 47.754098 ], [ 39.726562, 47.989922 ], [ 39.726562, 49.610710 ], [ 35.156250, 50.736455 ], [ 34.804688, 51.399206 ], [ 34.101562, 51.399206 ], [ 34.101562, 51.835778 ], [ 33.750000, 52.482780 ], [ 31.640625, 52.268157 ], [ 30.585938, 52.052490 ], [ 30.234375, 51.399206 ], [ 25.312500, 52.052490 ], [ 23.554688, 51.618017 ], [ 23.906250, 50.736455 ], [ 22.500000, 49.610710 ], [ 22.500000, 49.152970 ], [ 21.796875, 48.458352 ], [ 22.500000, 48.224673 ], [ 22.500000, 47.989922 ], [ 22.851562, 48.224673 ], [ 24.609375, 47.754098 ], [ 26.367188, 48.224673 ], [ 26.718750, 48.224673 ], [ 27.421875, 48.690960 ], [ 28.476562, 48.224673 ], [ 29.882812, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.125000, 45.583290 ], [ 29.531250, 45.336702 ], [ 28.828125, 45.089036 ], [ 28.476562, 43.834527 ], [ 27.421875, 42.811522 ], [ 27.773438, 42.032974 ], [ 26.015625, 42.032974 ], [ 26.015625, 41.508577 ], [ 22.851562, 41.508577 ], [ 20.742188, 40.979898 ], [ 20.742188, 40.713956 ], [ 20.039062, 39.639538 ], [ 18.984375, 40.979898 ], [ 19.335938, 42.032974 ], [ 18.281250, 42.553080 ], [ 15.820312, 43.580391 ], [ 14.765625, 45.089036 ], [ 14.062500, 45.336702 ], [ 13.710938, 44.840291 ], [ 13.359375, 45.336702 ], [ 13.710938, 45.583290 ], [ 13.710938, 45.828799 ], [ 12.304688, 45.583290 ], [ 12.304688, 44.339565 ], [ 15.117188, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.771312 ], [ 18.281250, 40.178873 ], [ 18.281250, 39.909736 ], [ 16.523438, 40.446947 ], [ 16.171875, 39.909736 ], [ 16.875000, 39.639538 ], [ 16.875000, 39.095963 ], [ 15.820312, 37.996163 ], [ 15.468750, 37.996163 ], [ 14.765625, 36.879621 ], [ 12.304688, 37.718590 ], [ 12.304688, 38.272689 ], [ 15.468750, 38.272689 ], [ 15.820312, 39.095963 ], [ 15.117188, 40.178873 ], [ 10.898438, 42.553080 ], [ 10.195312, 44.087585 ], [ 8.789062, 44.590467 ], [ 7.382812, 43.834527 ], [ 7.382812, 44.339565 ], [ 6.679688, 44.339565 ], [ 6.679688, 46.073231 ], [ 6.328125, 46.558860 ], [ 6.679688, 47.754098 ], [ 7.382812, 47.754098 ], [ 8.085938, 49.152970 ], [ 5.976562, 49.610710 ], [ 5.976562, 50.289339 ], [ 5.625000, 49.610710 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 3.164062, 51.399206 ], [ 4.570312, 53.120405 ], [ 5.976562, 53.540307 ], [ 6.679688, 53.540307 ], [ 7.734375, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.162434 ], [ 8.437500, 54.977614 ], [ 8.085938, 56.559482 ], [ 8.437500, 57.136239 ], [ 10.546875, 57.891497 ], [ 10.195312, 56.944974 ], [ 10.898438, 56.559482 ], [ 9.492188, 55.578345 ], [ 9.843750, 55.178868 ], [ 10.898438, 54.162434 ], [ 12.304688, 54.572062 ], [ 13.359375, 54.162434 ], [ 14.062500, 53.330873 ], [ 14.062500, 53.956086 ], [ 17.578125, 54.977614 ], [ 18.632812, 54.572062 ], [ 19.335938, 54.572062 ], [ 19.687500, 54.977614 ], [ 21.093750, 55.379110 ], [ 20.742188, 56.170023 ], [ 21.445312, 57.515823 ], [ 22.500000, 57.891497 ], [ 23.203125, 57.136239 ], [ 23.906250, 57.136239 ], [ 24.257812, 57.891497 ], [ 24.257812, 58.447733 ], [ 23.906250, 58.263287 ], [ 23.203125, 58.631217 ], [ 23.203125, 59.355596 ], [ 25.664062, 59.712097 ], [ 27.773438, 59.534318 ], [ 27.773438, 59.175928 ], [ 28.828125, 60.064840 ], [ 27.773438, 60.586967 ], [ 22.851562, 59.888937 ], [ 21.093750, 60.759160 ], [ 21.445312, 61.773123 ], [ 20.742188, 62.754726 ], [ 22.148438, 63.860036 ], [ 25.312500, 65.219894 ], [ 24.960938, 65.658275 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.089364 ], [ 22.148438, 65.802776 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.472794 ], [ 17.578125, 62.754726 ], [ 16.875000, 61.438767 ], [ 18.632812, 60.239811 ], [ 17.578125, 58.995311 ], [ 16.523438, 58.813742 ], [ 15.820312, 56.170023 ], [ 14.414062, 56.365250 ], [ 14.062500, 55.578345 ], [ 12.656250, 55.379110 ], [ 12.656250, 55.578345 ], [ 11.953125, 54.977614 ], [ 10.898438, 55.973798 ], [ 12.304688, 56.170023 ], [ 10.898438, 58.995311 ], [ 10.195312, 59.534318 ], [ 8.085938, 58.447733 ], [ 7.031250, 58.263287 ], [ 5.625000, 58.631217 ], [ 4.921875, 62.103883 ], [ 10.195312, 64.623877 ], [ 14.414062, 67.875541 ], [ 18.984375, 69.900118 ], [ 21.093750, 70.259452 ], [ 22.851562, 70.259452 ], [ 24.257812, 71.074056 ], [ 26.367188, 71.074056 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.495574 ], [ 29.882812, 70.259452 ], [ 30.937500, 69.778952 ], [ 31.992188, 70.020587 ], [ 33.750000, 69.411242 ], [ 36.210938, 69.162558 ], [ 40.078125, 68.007571 ], [ 40.781250, 67.474922 ], [ 40.781250, 66.791909 ], [ 39.726562, 66.372755 ], [ 38.320312, 66.089364 ], [ 33.750000, 66.791909 ], [ 33.046875, 66.652977 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.472794 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.472794 ], [ 36.210938, 64.774125 ], [ 36.914062, 65.219894 ], [ 39.375000, 64.623877 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 41.835938, 66.513260 ], [ 43.945312, 66.089364 ], [ 44.296875, 66.791909 ], [ 43.593750, 67.474922 ], [ 43.945312, 68.007571 ], [ 43.242188, 68.656555 ], [ 46.054688, 68.269387 ], [ 46.757812, 67.742759 ], [ 45.351562, 67.609221 ], [ 45.351562, 67.067433 ], [ 46.054688, 66.791909 ], [ 47.812500, 66.930060 ], [ 47.812500, 67.609221 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 53.437500, 68.269387 ], [ 54.492188, 68.138852 ], [ 55.195312, 68.528235 ], [ 57.304688, 68.528235 ], [ 58.710938, 68.911005 ], [ 59.765625, 68.399180 ], [ 60.820312, 69.037142 ], [ 59.765625, 69.534518 ], [ 60.468750, 69.900118 ], [ 63.281250, 69.657086 ], [ 68.203125, 68.138852 ], [ 68.906250, 68.656555 ], [ 67.851562, 69.411242 ], [ 66.796875, 69.534518 ], [ 67.148438, 70.020587 ], [ 66.445312, 71.074056 ], [ 68.203125, 71.965388 ], [ 68.906250, 72.919635 ], [ 69.609375, 73.124945 ], [ 72.421875, 72.816074 ], [ 72.773438, 72.289067 ], [ 71.718750, 71.413177 ], [ 72.773438, 70.495574 ], [ 72.421875, 69.037142 ], [ 73.476562, 68.528235 ], [ 71.015625, 66.372755 ], [ 72.421875, 66.231457 ], [ 73.828125, 66.791909 ], [ 74.882812, 67.875541 ], [ 74.179688, 68.399180 ], [ 74.882812, 69.037142 ], [ 73.828125, 69.162558 ], [ 73.476562, 69.657086 ], [ 74.179688, 70.728979 ], [ 72.773438, 71.524909 ], [ 74.882812, 72.181804 ], [ 74.531250, 72.919635 ], [ 74.882812, 72.919635 ], [ 75.585938, 72.395706 ], [ 75.585938, 71.965388 ] ], [ [ 75.585938, 71.965388 ], [ 75.234375, 71.413177 ], [ 76.289062, 71.187754 ], [ 75.585938, 71.965388 ] ], [ [ 20.039062, 42.811522 ], [ 19.687500, 42.811522 ], [ 20.390625, 42.032974 ], [ 20.742188, 42.293564 ], [ 20.039062, 42.811522 ] ], [ [ 22.500000, 44.339565 ], [ 22.148438, 44.087585 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.834527 ], [ 22.500000, 44.339565 ] ], [ [ 16.171875, 47.040182 ], [ 16.523438, 46.558860 ], [ 17.578125, 46.073231 ], [ 16.171875, 47.040182 ] ], [ [ 16.875000, 48.224673 ], [ 16.875000, 48.690960 ], [ 16.171875, 48.922499 ], [ 16.875000, 48.224673 ] ], [ [ 21.445312, 42.811522 ], [ 20.742188, 42.293564 ], [ 21.445312, 42.293564 ], [ 21.445312, 42.811522 ] ], [ [ 20.390625, 69.162558 ], [ 21.093750, 69.411242 ], [ 19.687500, 69.162558 ], [ 20.390625, 69.162558 ] ], [ [ 23.203125, 52.696361 ], [ 22.851562, 52.696361 ], [ 23.203125, 52.052490 ], [ 23.203125, 52.696361 ] ], [ [ 9.492188, 47.754098 ], [ 9.140625, 47.279229 ], [ 9.843750, 47.754098 ], [ 9.492188, 47.754098 ] ], [ [ 27.070312, 57.515823 ], [ 27.421875, 57.891497 ], [ 27.421875, 58.263287 ], [ 27.070312, 57.515823 ] ], [ [ 22.500000, 44.590467 ], [ 21.445312, 44.840291 ], [ 21.796875, 44.590467 ], [ 22.500000, 44.590467 ] ], [ [ 20.039062, 43.068888 ], [ 20.039062, 42.811522 ], [ 20.742188, 43.325178 ], [ 20.039062, 43.068888 ] ], [ [ 16.875000, 48.224673 ], [ 16.523438, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 48.224673 ] ], [ [ 14.765625, 51.179343 ], [ 14.414062, 51.179343 ], [ 15.117188, 50.958427 ], [ 14.765625, 51.179343 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 17.929688, 79.749932 ], [ 21.445312, 78.971386 ], [ 18.984375, 78.630006 ], [ 18.281250, 77.841848 ], [ 17.578125, 77.692870 ], [ 16.875000, 76.840816 ], [ 15.820312, 76.840816 ], [ 13.710938, 77.389504 ], [ 14.414062, 77.767582 ], [ 13.007812, 78.061989 ], [ 10.898438, 78.903929 ], [ 10.195312, 79.687184 ], [ 13.007812, 80.058050 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 9.140625, 41.244772 ], [ 9.492188, 40.713956 ], [ 9.492188, 39.368279 ], [ 8.789062, 39.095963 ], [ 8.085938, 40.979898 ], [ 9.140625, 41.244772 ] ] ], [ [ [ 67.851562, 76.999935 ], [ 68.554688, 76.598545 ], [ 67.851562, 76.268695 ], [ 61.523438, 75.320025 ], [ 58.359375, 74.402163 ], [ 55.195312, 72.395706 ], [ 55.546875, 71.635993 ], [ 57.304688, 70.728979 ], [ 53.437500, 70.844673 ], [ 53.085938, 71.300793 ], [ 51.328125, 71.524909 ], [ 51.328125, 72.073911 ], [ 52.382812, 72.289067 ], [ 52.382812, 72.816074 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.824820 ], [ 55.898438, 74.683250 ], [ 55.546875, 75.140778 ], [ 60.820312, 76.268695 ], [ 64.335938, 76.516819 ], [ 66.093750, 76.840816 ], [ 67.851562, 76.999935 ] ] ], [ [ [ 95.625000, 81.255032 ], [ 97.734375, 80.760615 ], [ 99.843750, 79.812302 ], [ 99.843750, 78.903929 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.105086 ], [ 93.164062, 79.432371 ], [ 92.460938, 80.178713 ], [ 91.054688, 80.356995 ], [ 93.515625, 81.038617 ], [ 95.625000, 81.255032 ] ] ], [ [ [ 22.851562, 80.703997 ], [ 25.312500, 80.415707 ], [ 27.070312, 80.058050 ], [ 25.664062, 79.560546 ], [ 22.851562, 79.432371 ], [ 20.039062, 79.624056 ], [ 19.687500, 79.874297 ], [ 18.281250, 79.874297 ], [ 17.226562, 80.356995 ], [ 20.390625, 80.647035 ], [ 21.796875, 80.415707 ], [ 22.851562, 80.703997 ] ] ], [ [ [ 138.515625, 76.184995 ], [ 141.328125, 76.100796 ], [ 144.843750, 75.584937 ], [ 144.140625, 74.867889 ], [ 140.273438, 74.867889 ], [ 138.867188, 74.683250 ], [ 136.757812, 75.320025 ], [ 137.460938, 76.016094 ], [ 138.515625, 76.184995 ] ] ], [ [ [ 101.953125, 79.367701 ], [ 105.117188, 78.767792 ], [ 104.765625, 78.349411 ], [ 99.140625, 77.989049 ], [ 101.250000, 79.237185 ], [ 101.953125, 79.367701 ] ] ], [ [ [ 142.382812, 53.956086 ], [ 143.437500, 50.958427 ], [ 144.492188, 49.152970 ], [ 143.085938, 49.382373 ], [ 142.382812, 47.989922 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.316584 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.073231 ], [ 142.031250, 50.958427 ], [ 141.328125, 52.052490 ], [ 141.679688, 53.330873 ], [ 142.382812, 53.956086 ] ] ], [ [ [ 49.921875, 80.928426 ], [ 51.328125, 80.703997 ], [ 50.976562, 80.589727 ], [ 48.867188, 80.356995 ], [ 48.515625, 80.178713 ], [ 47.460938, 80.058050 ], [ 46.406250, 80.297927 ], [ 46.757812, 80.589727 ], [ 44.648438, 80.647035 ], [ 46.757812, 80.816891 ], [ 48.164062, 80.816891 ], [ 48.515625, 80.532071 ], [ 49.921875, 80.928426 ] ] ], [ [ [ 22.851562, 78.490552 ], [ 23.203125, 78.134493 ], [ 24.609375, 77.915669 ], [ 22.148438, 77.466028 ], [ 20.390625, 77.692870 ], [ 21.093750, 77.989049 ], [ 20.742188, 78.278201 ], [ 22.851562, 78.490552 ] ] ], [ [ [ 146.250000, 75.497157 ], [ 148.007812, 75.408854 ], [ 150.468750, 75.140778 ], [ 149.414062, 74.775843 ], [ 147.656250, 74.867889 ], [ 145.898438, 75.230667 ], [ 146.250000, 75.497157 ] ] ], [ [ [ 142.031250, 73.922469 ], [ 143.437500, 73.528399 ], [ 143.437500, 73.226700 ], [ 139.570312, 73.428424 ], [ 140.625000, 73.824820 ], [ 142.031250, 73.922469 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.703125, 71.635993 ], [ 182.109375, 71.300793 ], [ 182.109375, 71.187754 ], [ 181.054688, 70.959697 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.187754 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 142.382812, 53.956086 ], [ 142.031250, 54.367759 ], [ 142.382812, 54.367759 ], [ 142.382812, 53.956086 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 75.585938, 71.965388 ], [ 77.343750, 72.289067 ], [ 79.453125, 72.395706 ], [ 81.210938, 71.856229 ], [ 80.507812, 72.607120 ], [ 80.507812, 73.726595 ], [ 81.914062, 73.922469 ], [ 86.484375, 74.019543 ], [ 85.781250, 74.496413 ], [ 86.835938, 75.140778 ], [ 88.242188, 75.230667 ], [ 90.000000, 75.672197 ], [ 92.812500, 75.845169 ], [ 93.164062, 76.100796 ], [ 95.625000, 76.184995 ], [ 96.328125, 75.930885 ], [ 98.789062, 76.516819 ], [ 100.546875, 76.434604 ], [ 101.953125, 77.312520 ], [ 104.062500, 77.767582 ], [ 105.820312, 77.389504 ], [ 104.414062, 77.157163 ], [ 106.875000, 76.999935 ], [ 107.226562, 76.516819 ], [ 107.929688, 76.760541 ], [ 110.742188, 76.760541 ], [ 113.203125, 76.268695 ], [ 113.906250, 75.930885 ], [ 113.554688, 75.408854 ], [ 109.335938, 74.211983 ], [ 111.796875, 73.824820 ], [ 112.851562, 74.019543 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.627789 ], [ 115.312500, 73.824820 ], [ 118.476562, 73.627789 ], [ 118.828125, 73.124945 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 126.914062, 73.627789 ], [ 128.320312, 73.124945 ], [ 129.023438, 72.501722 ], [ 128.320312, 72.073911 ], [ 129.375000, 71.300793 ], [ 131.132812, 70.844673 ], [ 132.187500, 71.856229 ], [ 133.593750, 71.413177 ], [ 135.351562, 71.746432 ], [ 137.460938, 71.413177 ], [ 138.164062, 71.635993 ], [ 139.570312, 71.524909 ], [ 138.867188, 72.501722 ], [ 140.273438, 72.919635 ], [ 149.414062, 72.289067 ], [ 150.117188, 71.635993 ], [ 152.929688, 70.844673 ], [ 156.796875, 71.074056 ], [ 158.906250, 70.959697 ], [ 159.609375, 70.495574 ], [ 159.609375, 69.778952 ], [ 160.664062, 69.534518 ], [ 162.070312, 69.657086 ], [ 165.937500, 69.534518 ], [ 167.695312, 69.657086 ], [ 169.453125, 68.784144 ], [ 170.507812, 69.037142 ], [ 169.804688, 69.657086 ], [ 170.156250, 70.140364 ], [ 173.320312, 69.900118 ], [ 175.429688, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 69.037142 ], [ 182.109375, 68.269387 ], [ 183.515625, 67.875541 ], [ 183.515625, 65.512963 ], [ 181.406250, 65.512963 ], [ 181.054688, 65.802776 ], [ 181.054688, 66.231457 ], [ 180.000000, 65.946472 ], [ 180.351562, 65.512963 ], [ 180.000000, 65.072130 ], [ 178.593750, 64.623877 ], [ 177.187500, 64.623877 ], [ 179.296875, 63.074866 ], [ 178.945312, 62.431074 ], [ 177.187500, 62.593341 ], [ 173.671875, 61.773123 ], [ 170.156250, 59.888937 ], [ 168.750000, 60.586967 ], [ 166.289062, 59.888937 ], [ 165.585938, 60.239811 ], [ 164.531250, 59.888937 ], [ 163.476562, 59.888937 ], [ 161.718750, 58.263287 ], [ 161.718750, 57.891497 ], [ 163.125000, 57.704147 ], [ 162.773438, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.367188, 55.379110 ], [ 162.070312, 54.977614 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.330873 ], [ 158.203125, 53.120405 ], [ 158.203125, 52.052490 ], [ 156.445312, 51.179343 ], [ 155.390625, 55.578345 ], [ 155.742188, 56.944974 ], [ 156.796875, 57.891497 ], [ 158.203125, 58.077876 ], [ 163.476562, 61.270233 ], [ 164.179688, 62.593341 ], [ 163.125000, 62.593341 ], [ 162.421875, 61.773123 ], [ 159.960938, 60.586967 ], [ 159.257812, 61.938950 ], [ 156.445312, 61.438767 ], [ 153.984375, 59.888937 ], [ 155.039062, 59.175928 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.712097 ], [ 148.359375, 59.175928 ], [ 145.195312, 59.355596 ], [ 142.031250, 59.175928 ], [ 135.000000, 54.775346 ], [ 136.406250, 54.775346 ], [ 137.109375, 54.162434 ], [ 138.164062, 53.956086 ], [ 138.515625, 54.367759 ], [ 139.570312, 54.367759 ], [ 141.328125, 53.120405 ], [ 139.921875, 48.458352 ], [ 134.648438, 43.580391 ], [ 133.242188, 42.811522 ], [ 132.187500, 43.325178 ], [ 130.429688, 42.293564 ], [ 130.781250, 45.089036 ], [ 131.835938, 45.336702 ], [ 132.890625, 45.336702 ], [ 135.000000, 48.690960 ], [ 132.187500, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.429688, 48.922499 ], [ 129.375000, 49.610710 ], [ 127.617188, 49.837982 ], [ 125.859375, 52.908902 ], [ 123.398438, 53.540307 ], [ 120.937500, 53.330873 ], [ 119.882812, 52.908902 ], [ 120.585938, 52.052490 ], [ 119.179688, 50.289339 ], [ 117.773438, 49.610710 ], [ 114.257812, 50.289339 ], [ 112.851562, 49.610710 ], [ 110.390625, 49.152970 ], [ 108.281250, 49.382373 ], [ 106.875000, 50.289339 ], [ 103.359375, 50.289339 ], [ 101.953125, 50.513427 ], [ 101.953125, 51.399206 ], [ 98.789062, 52.052490 ], [ 97.734375, 51.179343 ], [ 98.085938, 50.513427 ], [ 97.031250, 49.837982 ], [ 94.570312, 50.064192 ], [ 93.867188, 50.513427 ], [ 92.109375, 50.958427 ], [ 87.187500, 49.382373 ], [ 86.484375, 49.837982 ], [ 85.429688, 49.837982 ], [ 83.320312, 51.179343 ], [ 81.914062, 50.958427 ], [ 80.507812, 51.399206 ], [ 79.804688, 50.958427 ], [ 77.695312, 53.540307 ], [ 76.289062, 54.367759 ], [ 73.125000, 53.540307 ], [ 73.476562, 54.162434 ], [ 72.070312, 54.572062 ], [ 71.015625, 54.162434 ], [ 70.664062, 55.178868 ], [ 68.906250, 55.578345 ], [ 65.039062, 54.367759 ], [ 61.171875, 54.162434 ], [ 60.820312, 53.748711 ], [ 61.523438, 53.120405 ], [ 60.468750, 52.908902 ], [ 60.820312, 52.482780 ], [ 59.765625, 52.052490 ], [ 61.523438, 51.399206 ], [ 61.171875, 50.958427 ], [ 59.765625, 50.958427 ], [ 59.414062, 50.736455 ], [ 58.359375, 51.179343 ], [ 56.601562, 51.179343 ], [ 55.546875, 50.736455 ], [ 52.031250, 51.835778 ], [ 50.625000, 51.835778 ], [ 48.515625, 50.736455 ], [ 48.515625, 50.064192 ], [ 47.460938, 50.513427 ], [ 46.406250, 48.458352 ], [ 47.109375, 47.754098 ], [ 47.812500, 47.754098 ], [ 48.867188, 46.558860 ], [ 46.406250, 44.840291 ], [ 48.515625, 42.032974 ], [ 47.812500, 41.244772 ], [ 45.351562, 42.553080 ], [ 39.726562, 43.580391 ], [ 37.265625, 44.840291 ], [ 36.562500, 45.336702 ], [ 37.968750, 46.316584 ], [ 37.617188, 46.800059 ], [ 39.023438, 47.279229 ], [ 37.968750, 47.279229 ], [ 37.968750, 47.754098 ], [ 39.726562, 47.989922 ], [ 39.726562, 49.610710 ], [ 35.156250, 50.736455 ], [ 34.804688, 51.399206 ], [ 34.101562, 51.399206 ], [ 34.101562, 51.835778 ], [ 33.750000, 52.482780 ], [ 31.640625, 52.268157 ], [ 30.585938, 52.052490 ], [ 30.234375, 51.399206 ], [ 25.312500, 52.052490 ], [ 23.554688, 51.618017 ], [ 23.906250, 50.736455 ], [ 22.500000, 49.610710 ], [ 22.500000, 49.152970 ], [ 21.796875, 48.458352 ], [ 22.500000, 48.224673 ], [ 22.851562, 48.224673 ], [ 24.609375, 47.754098 ], [ 26.367188, 48.224673 ], [ 26.718750, 48.224673 ], [ 27.421875, 48.690960 ], [ 28.476562, 48.224673 ], [ 29.882812, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.125000, 45.583290 ], [ 29.531250, 45.336702 ], [ 28.828125, 45.089036 ], [ 28.476562, 43.834527 ], [ 27.421875, 42.811522 ], [ 27.773438, 42.032974 ], [ 26.015625, 42.032974 ], [ 26.015625, 41.508577 ], [ 22.851562, 41.508577 ], [ 20.742188, 40.979898 ], [ 20.742188, 40.713956 ], [ 20.039062, 39.639538 ], [ 18.984375, 40.979898 ], [ 19.335938, 42.032974 ], [ 18.281250, 42.553080 ], [ 15.820312, 43.580391 ], [ 14.765625, 45.089036 ], [ 14.062500, 45.336702 ], [ 13.710938, 44.840291 ], [ 13.359375, 45.336702 ], [ 13.710938, 45.583290 ], [ 13.710938, 45.828799 ], [ 12.304688, 45.583290 ], [ 12.304688, 44.339565 ], [ 15.117188, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.771312 ], [ 18.281250, 40.178873 ], [ 18.281250, 39.909736 ], [ 16.523438, 40.446947 ], [ 16.171875, 39.909736 ], [ 16.875000, 39.639538 ], [ 16.875000, 39.095963 ], [ 15.820312, 37.996163 ], [ 15.468750, 37.996163 ], [ 14.765625, 36.879621 ], [ 12.304688, 37.718590 ], [ 12.304688, 38.272689 ], [ 15.468750, 38.272689 ], [ 15.820312, 39.095963 ], [ 15.117188, 40.178873 ], [ 10.898438, 42.553080 ], [ 10.195312, 44.087585 ], [ 8.789062, 44.590467 ], [ 7.382812, 43.834527 ], [ 7.382812, 44.339565 ], [ 6.679688, 44.339565 ], [ 6.679688, 46.073231 ], [ 6.328125, 46.558860 ], [ 6.679688, 47.754098 ], [ 7.382812, 47.754098 ], [ 8.085938, 49.152970 ], [ 5.976562, 49.610710 ], [ 5.976562, 50.289339 ], [ 5.625000, 49.610710 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 3.164062, 51.399206 ], [ 4.570312, 53.120405 ], [ 5.976562, 53.540307 ], [ 6.679688, 53.540307 ], [ 7.734375, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.162434 ], [ 8.437500, 54.977614 ], [ 8.085938, 56.559482 ], [ 8.437500, 57.136239 ], [ 10.546875, 57.891497 ], [ 10.195312, 56.944974 ], [ 10.898438, 56.559482 ], [ 9.492188, 55.578345 ], [ 9.843750, 55.178868 ], [ 10.898438, 54.162434 ], [ 12.304688, 54.572062 ], [ 13.359375, 54.162434 ], [ 14.062500, 53.330873 ], [ 14.062500, 53.956086 ], [ 17.578125, 54.977614 ], [ 18.632812, 54.572062 ], [ 19.335938, 54.572062 ], [ 19.687500, 54.977614 ], [ 21.093750, 55.379110 ], [ 20.742188, 56.170023 ], [ 21.445312, 57.515823 ], [ 22.500000, 57.891497 ], [ 23.203125, 57.136239 ], [ 23.906250, 57.136239 ], [ 24.257812, 57.891497 ], [ 24.257812, 58.447733 ], [ 23.906250, 58.263287 ], [ 23.203125, 58.631217 ], [ 23.203125, 59.355596 ], [ 25.664062, 59.712097 ], [ 27.773438, 59.534318 ], [ 28.828125, 60.064840 ], [ 27.773438, 60.586967 ], [ 22.851562, 59.888937 ], [ 21.093750, 60.759160 ], [ 21.445312, 61.773123 ], [ 20.742188, 62.754726 ], [ 22.148438, 63.860036 ], [ 25.312500, 65.219894 ], [ 24.960938, 65.658275 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.089364 ], [ 22.148438, 65.802776 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.472794 ], [ 17.578125, 62.754726 ], [ 16.875000, 61.438767 ], [ 18.632812, 60.239811 ], [ 17.578125, 58.995311 ], [ 16.523438, 58.813742 ], [ 15.820312, 56.170023 ], [ 14.414062, 56.365250 ], [ 14.062500, 55.578345 ], [ 12.656250, 55.379110 ], [ 12.656250, 55.578345 ], [ 11.953125, 54.977614 ], [ 10.898438, 55.973798 ], [ 12.304688, 56.170023 ], [ 10.898438, 58.995311 ], [ 10.195312, 59.534318 ], [ 8.085938, 58.447733 ], [ 7.031250, 58.263287 ], [ 5.625000, 58.631217 ], [ 4.921875, 62.103883 ], [ 10.195312, 64.623877 ], [ 14.414062, 67.875541 ], [ 18.984375, 69.900118 ], [ 21.093750, 70.259452 ], [ 22.851562, 70.259452 ], [ 24.257812, 71.074056 ], [ 26.367188, 71.074056 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.495574 ], [ 29.882812, 70.259452 ], [ 30.937500, 69.778952 ], [ 31.992188, 70.020587 ], [ 33.750000, 69.411242 ], [ 36.210938, 69.162558 ], [ 40.078125, 68.007571 ], [ 40.781250, 67.474922 ], [ 40.781250, 66.791909 ], [ 39.726562, 66.372755 ], [ 38.320312, 66.089364 ], [ 33.750000, 66.791909 ], [ 33.046875, 66.652977 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.472794 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.472794 ], [ 36.210938, 64.774125 ], [ 36.914062, 65.219894 ], [ 39.375000, 64.623877 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 41.835938, 66.513260 ], [ 43.945312, 66.089364 ], [ 44.296875, 66.791909 ], [ 43.593750, 67.474922 ], [ 43.945312, 68.007571 ], [ 43.242188, 68.656555 ], [ 46.054688, 68.269387 ], [ 46.757812, 67.742759 ], [ 45.351562, 67.609221 ], [ 45.351562, 67.067433 ], [ 46.054688, 66.791909 ], [ 47.812500, 66.930060 ], [ 47.812500, 67.609221 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 53.437500, 68.269387 ], [ 54.492188, 68.138852 ], [ 55.195312, 68.528235 ], [ 57.304688, 68.528235 ], [ 58.710938, 68.911005 ], [ 59.765625, 68.399180 ], [ 60.820312, 69.037142 ], [ 59.765625, 69.534518 ], [ 60.468750, 69.900118 ], [ 63.281250, 69.657086 ], [ 68.203125, 68.138852 ], [ 68.906250, 68.656555 ], [ 67.851562, 69.411242 ], [ 66.796875, 69.534518 ], [ 67.148438, 70.020587 ], [ 66.445312, 71.074056 ], [ 68.203125, 71.965388 ], [ 68.906250, 72.919635 ], [ 69.609375, 73.124945 ], [ 72.421875, 72.816074 ], [ 72.773438, 72.289067 ], [ 71.718750, 71.413177 ], [ 72.773438, 70.495574 ], [ 72.421875, 69.037142 ], [ 73.476562, 68.528235 ], [ 71.015625, 66.372755 ], [ 72.421875, 66.231457 ], [ 73.828125, 66.791909 ], [ 74.882812, 67.875541 ], [ 74.179688, 68.399180 ], [ 74.882812, 69.037142 ], [ 73.828125, 69.162558 ], [ 73.476562, 69.657086 ], [ 74.179688, 70.728979 ], [ 72.773438, 71.524909 ], [ 74.882812, 72.181804 ], [ 74.531250, 72.919635 ], [ 74.882812, 72.919635 ], [ 75.585938, 72.395706 ], [ 75.585938, 71.965388 ] ], [ [ 75.585938, 71.965388 ], [ 75.234375, 71.413177 ], [ 76.289062, 71.187754 ], [ 75.585938, 71.965388 ] ], [ [ 22.500000, 44.339565 ], [ 22.148438, 44.087585 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.834527 ], [ 22.500000, 44.339565 ] ], [ [ 20.039062, 42.811522 ], [ 19.687500, 42.811522 ], [ 20.390625, 42.032974 ], [ 20.742188, 42.293564 ], [ 20.039062, 42.811522 ] ], [ [ 16.171875, 47.040182 ], [ 16.523438, 46.558860 ], [ 17.578125, 46.073231 ], [ 16.171875, 47.040182 ] ], [ [ 16.875000, 48.224673 ], [ 16.875000, 48.690960 ], [ 16.171875, 48.922499 ], [ 16.875000, 48.224673 ] ], [ [ 21.445312, 42.811522 ], [ 20.742188, 42.293564 ], [ 21.445312, 42.293564 ], [ 21.445312, 42.811522 ] ], [ [ 20.390625, 69.162558 ], [ 21.093750, 69.411242 ], [ 19.687500, 69.162558 ], [ 20.390625, 69.162558 ] ], [ [ 23.203125, 52.696361 ], [ 22.851562, 52.696361 ], [ 23.203125, 52.052490 ], [ 23.203125, 52.696361 ] ], [ [ 27.070312, 57.515823 ], [ 27.421875, 57.891497 ], [ 27.421875, 58.263287 ], [ 27.070312, 57.515823 ] ], [ [ 16.875000, 48.224673 ], [ 16.523438, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 48.224673 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 17.929688, 79.749932 ], [ 21.445312, 78.971386 ], [ 18.984375, 78.630006 ], [ 18.281250, 77.841848 ], [ 17.578125, 77.692870 ], [ 16.875000, 76.840816 ], [ 15.820312, 76.840816 ], [ 13.710938, 77.389504 ], [ 14.414062, 77.767582 ], [ 13.007812, 78.061989 ], [ 10.898438, 78.903929 ], [ 10.195312, 79.687184 ], [ 13.007812, 80.058050 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 9.140625, 41.244772 ], [ 9.492188, 40.713956 ], [ 9.492188, 39.368279 ], [ 8.789062, 39.095963 ], [ 8.085938, 40.979898 ], [ 9.140625, 41.244772 ] ] ], [ [ [ 67.851562, 76.999935 ], [ 68.554688, 76.598545 ], [ 67.851562, 76.268695 ], [ 61.523438, 75.320025 ], [ 58.359375, 74.402163 ], [ 55.195312, 72.395706 ], [ 55.546875, 71.635993 ], [ 57.304688, 70.728979 ], [ 53.437500, 70.844673 ], [ 53.085938, 71.300793 ], [ 51.328125, 71.524909 ], [ 51.328125, 72.073911 ], [ 52.382812, 72.289067 ], [ 52.382812, 72.816074 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.824820 ], [ 55.898438, 74.683250 ], [ 55.546875, 75.140778 ], [ 60.820312, 76.268695 ], [ 64.335938, 76.516819 ], [ 66.093750, 76.840816 ], [ 67.851562, 76.999935 ] ] ], [ [ [ 95.625000, 81.255032 ], [ 97.734375, 80.760615 ], [ 99.843750, 79.812302 ], [ 99.843750, 78.903929 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.105086 ], [ 93.164062, 79.432371 ], [ 92.460938, 80.178713 ], [ 91.054688, 80.356995 ], [ 93.515625, 81.038617 ], [ 95.625000, 81.255032 ] ] ], [ [ [ 22.851562, 80.703997 ], [ 25.312500, 80.415707 ], [ 27.070312, 80.058050 ], [ 25.664062, 79.560546 ], [ 22.851562, 79.432371 ], [ 20.039062, 79.624056 ], [ 19.687500, 79.874297 ], [ 18.281250, 79.874297 ], [ 17.226562, 80.356995 ], [ 20.390625, 80.647035 ], [ 21.796875, 80.415707 ], [ 22.851562, 80.703997 ] ] ], [ [ [ 138.515625, 76.184995 ], [ 141.328125, 76.100796 ], [ 144.843750, 75.584937 ], [ 144.140625, 74.867889 ], [ 140.273438, 74.867889 ], [ 138.867188, 74.683250 ], [ 136.757812, 75.320025 ], [ 137.460938, 76.016094 ], [ 138.515625, 76.184995 ] ] ], [ [ [ 101.953125, 79.367701 ], [ 105.117188, 78.767792 ], [ 104.765625, 78.349411 ], [ 99.140625, 77.989049 ], [ 101.250000, 79.237185 ], [ 101.953125, 79.367701 ] ] ], [ [ [ 142.382812, 53.956086 ], [ 143.437500, 50.958427 ], [ 144.492188, 49.152970 ], [ 143.085938, 49.382373 ], [ 142.382812, 47.989922 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.316584 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.073231 ], [ 142.031250, 50.958427 ], [ 141.328125, 52.052490 ], [ 141.679688, 53.330873 ], [ 142.382812, 53.956086 ] ] ], [ [ [ 49.921875, 80.928426 ], [ 51.328125, 80.703997 ], [ 50.976562, 80.589727 ], [ 48.867188, 80.356995 ], [ 48.515625, 80.178713 ], [ 47.460938, 80.058050 ], [ 46.406250, 80.297927 ], [ 46.757812, 80.589727 ], [ 44.648438, 80.647035 ], [ 46.757812, 80.816891 ], [ 48.164062, 80.816891 ], [ 48.515625, 80.532071 ], [ 49.921875, 80.928426 ] ] ], [ [ [ 22.851562, 78.490552 ], [ 23.203125, 78.134493 ], [ 24.609375, 77.915669 ], [ 22.148438, 77.466028 ], [ 20.390625, 77.692870 ], [ 21.093750, 77.989049 ], [ 20.742188, 78.278201 ], [ 22.851562, 78.490552 ] ] ], [ [ [ 146.250000, 75.497157 ], [ 148.007812, 75.408854 ], [ 150.468750, 75.140778 ], [ 149.414062, 74.775843 ], [ 147.656250, 74.867889 ], [ 145.898438, 75.230667 ], [ 146.250000, 75.497157 ] ] ], [ [ [ 142.031250, 73.922469 ], [ 143.437500, 73.528399 ], [ 143.437500, 73.226700 ], [ 139.570312, 73.428424 ], [ 140.625000, 73.824820 ], [ 142.031250, 73.922469 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.703125, 71.635993 ], [ 182.109375, 71.300793 ], [ 182.109375, 71.187754 ], [ 181.054688, 70.959697 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.187754 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 142.382812, 53.956086 ], [ 142.031250, 54.367759 ], [ 142.382812, 54.367759 ], [ 142.382812, 53.956086 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.539062, 41.771312 ], [ 41.484375, 41.771312 ], [ 41.132812, 42.811522 ], [ 39.726562, 43.580391 ], [ 45.351562, 42.553080 ], [ 46.406250, 41.244772 ], [ 45.000000, 41.508577 ], [ 43.242188, 41.244772 ], [ 43.593750, 40.446947 ], [ 44.648438, 39.909736 ], [ 43.945312, 39.639538 ], [ 44.648438, 37.439974 ], [ 45.351562, 36.031332 ], [ 46.054688, 35.173808 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.137551 ], [ 47.109375, 32.546813 ], [ 48.515625, 30.145127 ], [ 47.109375, 30.145127 ], [ 46.406250, 29.228890 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.353637 ], [ 39.023438, 32.249974 ], [ 36.914062, 31.653381 ], [ 37.968750, 30.751278 ], [ 35.859375, 29.228890 ], [ 34.804688, 29.535230 ], [ 33.750000, 27.683528 ], [ 31.992188, 29.840644 ], [ 35.507812, 24.206890 ], [ 35.507812, 23.241346 ], [ 36.562500, 22.268764 ], [ 24.960938, 22.268764 ], [ 24.960938, 20.303418 ], [ 23.554688, 20.303418 ], [ 23.554688, 19.642588 ], [ 23.554688, 15.623037 ], [ 22.851562, 15.961329 ], [ 21.796875, 12.897489 ], [ 22.851562, 11.178402 ], [ 23.203125, 10.141932 ], [ 23.203125, 9.102097 ], [ 27.070312, 5.266008 ], [ 24.257812, 5.266008 ], [ 22.500000, 4.915833 ], [ 22.148438, 4.214943 ], [ 19.335938, 5.266008 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.864255 ], [ 15.820312, 2.460181 ], [ 15.820312, 1.757537 ], [ 13.007812, 2.460181 ], [ 11.250000, 2.460181 ], [ 11.250000, 1.406109 ], [ 9.492188, 1.054628 ], [ 9.492188, 2.460181 ], [ 9.492188, 3.162456 ], [ 8.437500, 4.915833 ], [ 5.625000, 4.565474 ], [ 4.218750, 6.315299 ], [ 2.460938, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.351562, 7.013668 ], [ 0.000000, 10.833306 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ], [ 1.054688, 10.833306 ], [ 1.406250, 11.867351 ], [ 2.109375, 12.211180 ], [ 2.109375, 12.897489 ], [ 0.703125, 12.897489 ], [ 0.351562, 14.944785 ], [ 3.515625, 15.623037 ], [ 4.218750, 16.972741 ], [ 4.218750, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 0.000000, 21.943046 ], [ -3.515625, 24.206890 ], [ -3.515625, 31.952162 ], [ -1.406250, 32.546813 ], [ -2.460938, 35.173808 ], [ 0.000000, 36.031332 ], [ 1.406250, 36.879621 ], [ 8.085938, 37.160317 ], [ 9.492188, 37.439974 ], [ 10.195312, 37.439974 ], [ 9.843750, 36.879621 ], [ 10.898438, 37.160317 ], [ 10.546875, 36.597889 ], [ 10.546875, 34.885931 ], [ 9.843750, 34.597042 ], [ 11.250000, 33.137551 ], [ 15.117188, 32.546813 ], [ 15.468750, 31.653381 ], [ 18.984375, 30.448674 ], [ 20.039062, 31.052934 ], [ 19.687500, 31.952162 ], [ 20.742188, 32.842674 ], [ 22.851562, 32.842674 ], [ 23.203125, 32.249974 ], [ 24.609375, 31.952162 ], [ 24.609375, 30.448674 ], [ 24.960938, 31.653381 ], [ 28.828125, 31.052934 ], [ 30.937500, 31.653381 ], [ 31.640625, 31.052934 ], [ 34.101562, 31.353637 ], [ 34.804688, 33.137551 ], [ 35.859375, 34.885931 ], [ 36.562500, 34.307144 ], [ 35.859375, 35.460670 ], [ 36.562500, 36.879621 ], [ 35.859375, 36.031332 ], [ 35.507812, 36.315125 ], [ 35.859375, 36.879621 ], [ 34.453125, 36.879621 ], [ 33.750000, 36.315125 ], [ 32.343750, 36.315125 ], [ 30.585938, 36.879621 ], [ 29.531250, 36.315125 ], [ 27.421875, 36.879621 ], [ 26.015625, 38.272689 ], [ 26.718750, 39.095963 ], [ 26.015625, 39.639538 ], [ 27.070312, 40.446947 ], [ 28.476562, 40.713956 ], [ 29.179688, 41.244772 ], [ 30.937500, 41.244772 ], [ 33.398438, 42.032974 ], [ 35.156250, 42.293564 ], [ 36.562500, 41.508577 ], [ 40.078125, 41.244772 ], [ 42.539062, 41.771312 ] ], [ [ 10.546875, 24.846565 ], [ 11.953125, 23.563987 ], [ 14.062500, 22.593726 ], [ 10.546875, 24.846565 ] ], [ [ 13.710938, 9.795678 ], [ 15.117188, 7.710992 ], [ 14.765625, 9.102097 ], [ 13.710938, 9.795678 ] ], [ [ 3.515625, 10.833306 ], [ 2.460938, 8.754795 ], [ 3.515625, 10.141932 ], [ 3.515625, 10.833306 ] ], [ [ 14.414062, 12.897489 ], [ 14.062500, 12.554564 ], [ 14.414062, 12.211180 ], [ 14.414062, 12.897489 ] ], [ [ 9.492188, 29.535230 ], [ 9.140625, 26.115986 ], [ 9.843750, 29.228890 ], [ 9.492188, 29.535230 ] ], [ [ 10.898438, 13.581921 ], [ 8.789062, 12.897489 ], [ 11.601562, 13.239945 ], [ 10.898438, 13.581921 ] ], [ [ 1.757812, 6.315299 ], [ 1.406250, 9.449062 ], [ 1.406250, 7.013668 ], [ 1.757812, 6.315299 ] ], [ [ 3.515625, 11.867351 ], [ 2.812500, 12.554564 ], [ 3.515625, 10.833306 ], [ 3.515625, 11.867351 ] ], [ [ 13.359375, 14.604847 ], [ 13.710938, 13.581921 ], [ 14.062500, 13.581921 ], [ 13.359375, 14.604847 ] ], [ [ 36.562500, 34.307144 ], [ 35.507812, 33.431441 ], [ 35.507812, 32.842674 ], [ 36.562500, 34.307144 ] ], [ [ 13.007812, 13.581921 ], [ 13.007812, 13.923404 ], [ 12.304688, 13.581921 ], [ 13.007812, 13.581921 ] ], [ [ 35.507812, 32.546813 ], [ 35.156250, 32.249974 ], [ 35.156250, 31.653381 ], [ 35.507812, 32.546813 ] ] ], [ [ [ 33.750000, 52.482780 ], [ 34.101562, 51.835778 ], [ 34.101562, 51.399206 ], [ 34.804688, 51.399206 ], [ 35.156250, 50.736455 ], [ 39.726562, 49.610710 ], [ 39.726562, 47.989922 ], [ 38.671875, 47.989922 ], [ 37.968750, 47.279229 ], [ 34.804688, 46.316584 ], [ 34.804688, 45.828799 ], [ 36.210938, 45.583290 ], [ 36.210938, 45.336702 ], [ 33.750000, 44.590467 ], [ 33.046875, 44.590467 ], [ 33.398438, 45.089036 ], [ 32.343750, 45.336702 ], [ 33.398438, 46.073231 ], [ 31.640625, 46.558860 ], [ 31.640625, 46.800059 ], [ 30.585938, 46.800059 ], [ 29.531250, 45.336702 ], [ 28.125000, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.882812, 46.558860 ], [ 28.476562, 48.224673 ], [ 27.421875, 48.690960 ], [ 24.609375, 47.754098 ], [ 22.851562, 48.224673 ], [ 22.500000, 47.989922 ], [ 21.796875, 48.458352 ], [ 22.500000, 49.152970 ], [ 22.500000, 49.610710 ], [ 23.906250, 50.513427 ], [ 23.203125, 51.618017 ], [ 25.312500, 52.052490 ], [ 30.234375, 51.399206 ], [ 30.585938, 52.052490 ], [ 31.640625, 52.268157 ], [ 33.750000, 52.482780 ] ] ], [ [ [ 26.015625, 42.032974 ], [ 27.773438, 42.032974 ], [ 28.828125, 41.508577 ], [ 28.476562, 41.244772 ], [ 27.070312, 40.713956 ], [ 26.015625, 40.178873 ], [ 26.015625, 40.979898 ], [ 23.554688, 40.713956 ], [ 24.257812, 40.178873 ], [ 23.554688, 40.178873 ], [ 22.500000, 40.713956 ], [ 23.203125, 39.368279 ], [ 22.851562, 39.095963 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 22.851562, 37.996163 ], [ 23.203125, 37.439974 ], [ 22.500000, 37.439974 ], [ 22.851562, 36.597889 ], [ 21.445312, 36.879621 ], [ 20.039062, 39.639538 ], [ 20.742188, 40.979898 ], [ 24.257812, 41.771312 ], [ 26.015625, 41.508577 ], [ 26.015625, 42.032974 ] ] ], [ [ [ 32.695312, 35.173808 ], [ 34.453125, 35.746512 ], [ 33.750000, 35.173808 ], [ 32.695312, 34.597042 ], [ 31.992188, 35.173808 ], [ 32.695312, 35.173808 ] ] ], [ [ [ 23.554688, 35.746512 ], [ 26.015625, 35.460670 ], [ 24.609375, 35.173808 ], [ 23.203125, 35.460670 ], [ 23.554688, 35.746512 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.539062, 41.771312 ], [ 41.484375, 41.771312 ], [ 41.132812, 42.811522 ], [ 39.726562, 43.580391 ], [ 45.351562, 42.553080 ], [ 46.406250, 41.244772 ], [ 45.000000, 41.508577 ], [ 43.242188, 41.244772 ], [ 43.593750, 40.446947 ], [ 44.648438, 39.909736 ], [ 43.945312, 39.639538 ], [ 44.648438, 37.439974 ], [ 45.351562, 36.031332 ], [ 46.054688, 35.173808 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.137551 ], [ 47.109375, 32.546813 ], [ 48.515625, 30.145127 ], [ 47.109375, 30.145127 ], [ 46.406250, 29.228890 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.353637 ], [ 39.023438, 32.249974 ], [ 36.914062, 31.653381 ], [ 37.968750, 30.751278 ], [ 35.859375, 29.228890 ], [ 34.804688, 29.535230 ], [ 33.750000, 27.683528 ], [ 31.992188, 29.840644 ], [ 35.507812, 24.206890 ], [ 35.507812, 23.241346 ], [ 36.562500, 22.268764 ], [ 24.960938, 22.268764 ], [ 24.960938, 20.303418 ], [ 23.554688, 20.303418 ], [ 23.554688, 19.642588 ], [ 23.554688, 15.623037 ], [ 22.851562, 15.961329 ], [ 21.796875, 12.897489 ], [ 22.851562, 11.178402 ], [ 23.203125, 10.141932 ], [ 23.203125, 9.102097 ], [ 27.070312, 5.266008 ], [ 24.257812, 5.266008 ], [ 22.500000, 4.915833 ], [ 22.148438, 4.214943 ], [ 19.335938, 5.266008 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.864255 ], [ 15.820312, 2.460181 ], [ 15.820312, 1.757537 ], [ 13.007812, 2.460181 ], [ 11.250000, 2.460181 ], [ 11.250000, 1.406109 ], [ 9.492188, 1.054628 ], [ 9.492188, 2.460181 ], [ 9.492188, 3.162456 ], [ 8.437500, 4.915833 ], [ 5.625000, 4.565474 ], [ 4.218750, 6.315299 ], [ 2.460938, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.351562, 7.013668 ], [ 0.000000, 10.833306 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ], [ 1.054688, 10.833306 ], [ 1.406250, 11.867351 ], [ 2.109375, 12.211180 ], [ 2.109375, 12.897489 ], [ 0.703125, 12.897489 ], [ 0.351562, 14.944785 ], [ 3.515625, 15.623037 ], [ 4.218750, 16.972741 ], [ 4.218750, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 0.000000, 21.943046 ], [ -3.515625, 24.206890 ], [ -3.515625, 31.952162 ], [ -1.406250, 32.546813 ], [ -2.460938, 35.173808 ], [ 0.000000, 36.031332 ], [ 1.406250, 36.879621 ], [ 8.085938, 37.160317 ], [ 9.492188, 37.439974 ], [ 10.195312, 37.439974 ], [ 9.843750, 36.879621 ], [ 10.898438, 37.160317 ], [ 10.546875, 36.597889 ], [ 10.546875, 34.885931 ], [ 9.843750, 34.597042 ], [ 11.250000, 33.137551 ], [ 15.117188, 32.546813 ], [ 15.468750, 31.653381 ], [ 18.984375, 30.448674 ], [ 20.039062, 31.052934 ], [ 19.687500, 31.952162 ], [ 20.742188, 32.842674 ], [ 22.851562, 32.842674 ], [ 23.203125, 32.249974 ], [ 24.609375, 31.952162 ], [ 24.609375, 30.448674 ], [ 24.960938, 31.653381 ], [ 28.828125, 31.052934 ], [ 30.937500, 31.653381 ], [ 31.640625, 31.052934 ], [ 34.101562, 31.353637 ], [ 34.804688, 33.137551 ], [ 35.859375, 34.885931 ], [ 36.562500, 34.307144 ], [ 35.859375, 35.460670 ], [ 36.562500, 36.879621 ], [ 35.859375, 36.031332 ], [ 35.507812, 36.315125 ], [ 35.859375, 36.879621 ], [ 34.453125, 36.879621 ], [ 33.750000, 36.315125 ], [ 32.343750, 36.315125 ], [ 30.585938, 36.879621 ], [ 29.531250, 36.315125 ], [ 27.421875, 36.879621 ], [ 26.015625, 38.272689 ], [ 26.718750, 39.095963 ], [ 26.015625, 39.639538 ], [ 27.070312, 40.446947 ], [ 28.476562, 40.713956 ], [ 29.179688, 41.244772 ], [ 30.937500, 41.244772 ], [ 33.398438, 42.032974 ], [ 35.156250, 42.293564 ], [ 36.562500, 41.508577 ], [ 40.078125, 41.244772 ], [ 42.539062, 41.771312 ] ], [ [ 10.546875, 24.846565 ], [ 11.953125, 23.563987 ], [ 14.062500, 22.593726 ], [ 10.546875, 24.846565 ] ], [ [ 13.710938, 9.795678 ], [ 15.117188, 7.710992 ], [ 14.765625, 9.102097 ], [ 13.710938, 9.795678 ] ], [ [ 3.515625, 10.833306 ], [ 2.460938, 8.754795 ], [ 3.515625, 10.141932 ], [ 3.515625, 10.833306 ] ], [ [ 14.414062, 12.897489 ], [ 14.062500, 12.554564 ], [ 14.414062, 12.211180 ], [ 14.414062, 12.897489 ] ], [ [ 9.492188, 29.535230 ], [ 9.140625, 26.115986 ], [ 9.843750, 29.228890 ], [ 9.492188, 29.535230 ] ], [ [ 10.898438, 13.581921 ], [ 8.789062, 12.897489 ], [ 11.601562, 13.239945 ], [ 10.898438, 13.581921 ] ], [ [ 1.757812, 6.315299 ], [ 1.406250, 9.449062 ], [ 1.406250, 7.013668 ], [ 1.757812, 6.315299 ] ], [ [ 3.515625, 11.867351 ], [ 2.812500, 12.554564 ], [ 3.515625, 10.833306 ], [ 3.515625, 11.867351 ] ], [ [ 36.562500, 34.307144 ], [ 35.507812, 33.431441 ], [ 35.507812, 32.842674 ], [ 36.562500, 34.307144 ] ], [ [ 13.007812, 13.581921 ], [ 13.007812, 13.923404 ], [ 12.304688, 13.581921 ], [ 13.007812, 13.581921 ] ], [ [ 35.507812, 32.546813 ], [ 35.156250, 32.249974 ], [ 35.156250, 31.653381 ], [ 35.507812, 32.546813 ] ] ], [ [ [ 33.750000, 52.482780 ], [ 34.101562, 51.835778 ], [ 34.101562, 51.399206 ], [ 34.804688, 51.399206 ], [ 35.156250, 50.736455 ], [ 39.726562, 49.610710 ], [ 39.726562, 47.989922 ], [ 38.671875, 47.989922 ], [ 37.968750, 47.279229 ], [ 34.804688, 46.316584 ], [ 34.804688, 45.828799 ], [ 36.210938, 45.583290 ], [ 36.210938, 45.336702 ], [ 33.750000, 44.590467 ], [ 33.046875, 44.590467 ], [ 33.398438, 45.089036 ], [ 32.343750, 45.336702 ], [ 33.398438, 46.073231 ], [ 31.640625, 46.558860 ], [ 31.640625, 46.800059 ], [ 30.585938, 46.800059 ], [ 29.531250, 45.336702 ], [ 28.125000, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.882812, 46.558860 ], [ 28.476562, 48.224673 ], [ 27.421875, 48.690960 ], [ 24.609375, 47.754098 ], [ 22.851562, 48.224673 ], [ 22.500000, 47.989922 ], [ 21.796875, 48.458352 ], [ 22.500000, 49.152970 ], [ 22.500000, 49.610710 ], [ 23.906250, 50.513427 ], [ 23.203125, 51.618017 ], [ 25.312500, 52.052490 ], [ 30.234375, 51.399206 ], [ 30.585938, 52.052490 ], [ 31.640625, 52.268157 ], [ 33.750000, 52.482780 ] ] ], [ [ [ 26.015625, 42.032974 ], [ 27.773438, 42.032974 ], [ 28.828125, 41.508577 ], [ 28.476562, 41.244772 ], [ 27.070312, 40.713956 ], [ 26.015625, 40.178873 ], [ 26.015625, 40.979898 ], [ 23.554688, 40.713956 ], [ 24.257812, 40.178873 ], [ 23.554688, 40.178873 ], [ 22.500000, 40.713956 ], [ 23.203125, 39.368279 ], [ 22.851562, 39.095963 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 22.851562, 37.996163 ], [ 23.203125, 37.439974 ], [ 22.500000, 37.439974 ], [ 22.851562, 36.597889 ], [ 21.445312, 36.879621 ], [ 20.039062, 39.639538 ], [ 20.742188, 40.979898 ], [ 24.257812, 41.771312 ], [ 26.015625, 41.508577 ], [ 26.015625, 42.032974 ] ] ], [ [ [ 32.695312, 35.173808 ], [ 34.453125, 35.746512 ], [ 33.750000, 35.173808 ], [ 32.695312, 34.597042 ], [ 31.992188, 35.173808 ], [ 32.695312, 35.173808 ] ] ], [ [ [ 23.554688, 35.746512 ], [ 26.015625, 35.460670 ], [ 24.609375, 35.173808 ], [ 23.203125, 35.460670 ], [ 23.554688, 35.746512 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.890625, 12.897489 ], [ 42.539062, 11.178402 ], [ 42.539062, 10.833306 ], [ 43.593750, 9.449062 ], [ 47.460938, 8.059230 ], [ 44.648438, 5.266008 ], [ 43.593750, 5.266008 ], [ 41.835938, 4.214943 ], [ 40.781250, 2.811371 ], [ 40.781250, -0.703107 ], [ 41.484375, -1.406109 ], [ 40.078125, -2.460181 ], [ 39.726562, -3.513421 ], [ 37.617188, -3.513421 ], [ 33.750000, -0.703107 ], [ 31.640625, -0.703107 ], [ 29.531250, -1.054628 ], [ 29.531250, 0.000000 ], [ 30.937500, 2.460181 ], [ 30.585938, 2.460181 ], [ 30.585938, 3.513421 ], [ 29.531250, 4.915833 ], [ 27.773438, 4.565474 ], [ 23.554688, 8.754795 ], [ 24.257812, 9.102097 ], [ 23.203125, 9.102097 ], [ 23.203125, 10.141932 ], [ 21.796875, 12.897489 ], [ 22.851562, 15.961329 ], [ 23.554688, 15.623037 ], [ 23.554688, 20.303418 ], [ 24.960938, 20.303418 ], [ 24.960938, 22.268764 ], [ 36.562500, 22.268764 ], [ 37.265625, 18.646245 ], [ 38.320312, 18.312811 ], [ 39.023438, 15.961329 ], [ 42.890625, 12.897489 ] ], [ [ 33.750000, 9.795678 ], [ 33.750000, 8.407168 ], [ 34.101562, 10.141932 ], [ 33.750000, 9.795678 ] ] ], [ [ [ 76.289062, 54.367759 ], [ 77.695312, 53.540307 ], [ 79.804688, 50.958427 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.958427 ], [ 83.320312, 51.179343 ], [ 85.429688, 49.837982 ], [ 86.484375, 49.837982 ], [ 87.187500, 49.382373 ], [ 86.484375, 48.690960 ], [ 85.429688, 48.458352 ], [ 85.429688, 47.517201 ], [ 85.078125, 47.040182 ], [ 82.968750, 47.517201 ], [ 82.265625, 45.583290 ], [ 79.804688, 45.089036 ], [ 80.859375, 43.325178 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.553080 ], [ 78.046875, 41.244772 ], [ 76.640625, 41.244772 ], [ 76.289062, 40.446947 ], [ 75.234375, 40.713956 ], [ 73.476562, 39.909736 ], [ 73.476562, 39.639538 ], [ 71.718750, 39.368279 ], [ 69.257812, 39.639538 ], [ 69.257812, 40.178873 ], [ 71.718750, 40.178873 ], [ 70.312500, 40.446947 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.979898 ], [ 68.203125, 39.639538 ], [ 67.500000, 39.639538 ], [ 67.148438, 39.368279 ], [ 67.851562, 39.095963 ], [ 68.203125, 38.272689 ], [ 67.500000, 37.160317 ], [ 66.445312, 37.439974 ], [ 66.445312, 37.996163 ], [ 63.984375, 39.095963 ], [ 62.226562, 40.178873 ], [ 61.875000, 41.244772 ], [ 60.117188, 41.244772 ], [ 59.765625, 42.293564 ], [ 58.359375, 42.811522 ], [ 56.601562, 42.032974 ], [ 56.953125, 41.508577 ], [ 55.898438, 41.508577 ], [ 55.195312, 41.508577 ], [ 53.789062, 42.553080 ], [ 52.382812, 42.032974 ], [ 52.382812, 42.811522 ], [ 51.328125, 43.325178 ], [ 50.273438, 44.840291 ], [ 50.976562, 44.590467 ], [ 50.976562, 45.336702 ], [ 52.734375, 45.336702 ], [ 52.734375, 47.040182 ], [ 50.976562, 47.279229 ], [ 48.867188, 46.558860 ], [ 48.515625, 46.800059 ], [ 47.812500, 47.754098 ], [ 47.109375, 47.754098 ], [ 46.406250, 48.458352 ], [ 46.406250, 49.382373 ], [ 47.460938, 50.513427 ], [ 48.515625, 50.064192 ], [ 48.515625, 50.736455 ], [ 50.625000, 51.835778 ], [ 52.031250, 51.835778 ], [ 55.546875, 50.736455 ], [ 56.601562, 51.179343 ], [ 58.359375, 51.179343 ], [ 59.414062, 50.736455 ], [ 59.765625, 50.958427 ], [ 61.171875, 50.958427 ], [ 61.523438, 51.399206 ], [ 59.765625, 52.052490 ], [ 60.820312, 52.482780 ], [ 60.468750, 52.908902 ], [ 61.523438, 53.120405 ], [ 60.820312, 53.748711 ], [ 61.171875, 54.162434 ], [ 65.039062, 54.367759 ], [ 68.906250, 55.578345 ], [ 70.664062, 55.178868 ], [ 71.015625, 54.162434 ], [ 72.070312, 54.572062 ], [ 73.476562, 54.162434 ], [ 73.125000, 53.540307 ], [ 76.289062, 54.367759 ] ] ], [ [ [ 47.812500, 38.822591 ], [ 48.867188, 37.718590 ], [ 50.625000, 36.879621 ], [ 52.031250, 36.879621 ], [ 53.789062, 37.439974 ], [ 56.601562, 38.272689 ], [ 60.820312, 36.597889 ], [ 60.468750, 33.137551 ], [ 60.820312, 31.653381 ], [ 61.523438, 31.653381 ], [ 61.523438, 30.751278 ], [ 60.820312, 29.840644 ], [ 62.578125, 28.304381 ], [ 63.281250, 27.059126 ], [ 61.523438, 26.431228 ], [ 61.171875, 25.165173 ], [ 57.304688, 25.799891 ], [ 56.250000, 27.371767 ], [ 54.492188, 26.745610 ], [ 53.437500, 27.059126 ], [ 51.328125, 27.994401 ], [ 49.921875, 30.448674 ], [ 48.867188, 30.448674 ], [ 48.515625, 30.145127 ], [ 47.109375, 32.546813 ], [ 46.054688, 33.137551 ], [ 45.351562, 34.016242 ], [ 46.054688, 35.746512 ], [ 43.945312, 37.996163 ], [ 43.945312, 39.639538 ], [ 44.648438, 39.909736 ], [ 43.593750, 40.446947 ], [ 43.242188, 41.244772 ], [ 44.648438, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.054688, 42.032974 ], [ 47.109375, 41.244772 ], [ 48.515625, 42.032974 ], [ 50.273438, 40.446947 ], [ 49.218750, 40.178873 ], [ 48.867188, 38.548165 ], [ 47.812500, 38.822591 ] ], [ [ 45.351562, 39.909736 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.351562, 39.909736 ] ] ], [ [ [ 47.812500, 30.145127 ], [ 48.164062, 28.613459 ], [ 46.406250, 29.228890 ], [ 47.109375, 30.145127 ], [ 47.812500, 30.145127 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.890625, 12.897489 ], [ 42.539062, 11.178402 ], [ 42.539062, 10.833306 ], [ 43.593750, 9.449062 ], [ 47.460938, 8.059230 ], [ 44.648438, 5.266008 ], [ 43.593750, 5.266008 ], [ 41.835938, 4.214943 ], [ 40.781250, 2.811371 ], [ 40.781250, -0.703107 ], [ 41.484375, -1.406109 ], [ 40.078125, -2.460181 ], [ 39.726562, -3.513421 ], [ 37.617188, -3.513421 ], [ 33.750000, -0.703107 ], [ 31.640625, -0.703107 ], [ 29.531250, -1.054628 ], [ 29.531250, 0.000000 ], [ 30.937500, 2.460181 ], [ 30.585938, 2.460181 ], [ 30.585938, 3.513421 ], [ 29.531250, 4.915833 ], [ 27.773438, 4.565474 ], [ 23.554688, 8.754795 ], [ 24.257812, 9.102097 ], [ 23.203125, 9.102097 ], [ 23.203125, 10.141932 ], [ 21.796875, 12.897489 ], [ 22.851562, 15.961329 ], [ 23.554688, 15.623037 ], [ 23.554688, 20.303418 ], [ 24.960938, 20.303418 ], [ 24.960938, 22.268764 ], [ 36.562500, 22.268764 ], [ 37.265625, 18.646245 ], [ 38.320312, 18.312811 ], [ 39.023438, 15.961329 ], [ 42.890625, 12.897489 ] ] ], [ [ [ 76.289062, 54.367759 ], [ 77.695312, 53.540307 ], [ 79.804688, 50.958427 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.958427 ], [ 83.320312, 51.179343 ], [ 85.429688, 49.837982 ], [ 86.484375, 49.837982 ], [ 87.187500, 49.382373 ], [ 86.484375, 48.690960 ], [ 85.429688, 48.458352 ], [ 85.429688, 47.517201 ], [ 85.078125, 47.040182 ], [ 82.968750, 47.517201 ], [ 82.265625, 45.583290 ], [ 79.804688, 45.089036 ], [ 80.859375, 43.325178 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.553080 ], [ 78.046875, 41.244772 ], [ 76.640625, 41.244772 ], [ 76.289062, 40.446947 ], [ 75.234375, 40.713956 ], [ 73.476562, 39.909736 ], [ 73.476562, 39.639538 ], [ 71.718750, 39.368279 ], [ 69.257812, 39.639538 ], [ 69.257812, 40.178873 ], [ 71.718750, 40.178873 ], [ 70.312500, 40.446947 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.979898 ], [ 68.203125, 39.639538 ], [ 67.500000, 39.639538 ], [ 67.148438, 39.368279 ], [ 67.851562, 39.095963 ], [ 68.203125, 38.272689 ], [ 67.500000, 37.160317 ], [ 66.445312, 37.439974 ], [ 66.445312, 37.996163 ], [ 63.984375, 39.095963 ], [ 62.226562, 40.178873 ], [ 61.875000, 41.244772 ], [ 60.117188, 41.244772 ], [ 59.765625, 42.293564 ], [ 58.359375, 42.811522 ], [ 56.601562, 42.032974 ], [ 56.953125, 41.508577 ], [ 55.898438, 41.508577 ], [ 55.195312, 41.508577 ], [ 53.789062, 42.553080 ], [ 52.382812, 42.032974 ], [ 52.382812, 42.811522 ], [ 51.328125, 43.325178 ], [ 50.273438, 44.840291 ], [ 50.976562, 44.590467 ], [ 50.976562, 45.336702 ], [ 52.734375, 45.336702 ], [ 52.734375, 47.040182 ], [ 50.976562, 47.279229 ], [ 48.867188, 46.558860 ], [ 48.515625, 46.800059 ], [ 47.812500, 47.754098 ], [ 47.109375, 47.754098 ], [ 46.406250, 48.458352 ], [ 46.406250, 49.382373 ], [ 47.460938, 50.513427 ], [ 48.515625, 50.064192 ], [ 48.515625, 50.736455 ], [ 50.625000, 51.835778 ], [ 52.031250, 51.835778 ], [ 55.546875, 50.736455 ], [ 56.601562, 51.179343 ], [ 58.359375, 51.179343 ], [ 59.414062, 50.736455 ], [ 59.765625, 50.958427 ], [ 61.171875, 50.958427 ], [ 61.523438, 51.399206 ], [ 59.765625, 52.052490 ], [ 60.820312, 52.482780 ], [ 60.468750, 52.908902 ], [ 61.523438, 53.120405 ], [ 60.820312, 53.748711 ], [ 61.171875, 54.162434 ], [ 65.039062, 54.367759 ], [ 68.906250, 55.578345 ], [ 70.664062, 55.178868 ], [ 71.015625, 54.162434 ], [ 72.070312, 54.572062 ], [ 73.476562, 54.162434 ], [ 73.125000, 53.540307 ], [ 76.289062, 54.367759 ] ] ], [ [ [ 47.812500, 38.822591 ], [ 48.867188, 37.718590 ], [ 50.625000, 36.879621 ], [ 52.031250, 36.879621 ], [ 53.789062, 37.439974 ], [ 56.601562, 38.272689 ], [ 60.820312, 36.597889 ], [ 60.468750, 33.137551 ], [ 60.820312, 31.653381 ], [ 61.523438, 31.653381 ], [ 61.523438, 30.751278 ], [ 60.820312, 29.840644 ], [ 62.578125, 28.304381 ], [ 63.281250, 27.059126 ], [ 61.523438, 26.431228 ], [ 61.171875, 25.165173 ], [ 57.304688, 25.799891 ], [ 56.250000, 27.371767 ], [ 54.492188, 26.745610 ], [ 53.437500, 27.059126 ], [ 51.328125, 27.994401 ], [ 49.921875, 30.448674 ], [ 48.867188, 30.448674 ], [ 48.515625, 30.145127 ], [ 47.109375, 32.546813 ], [ 46.054688, 33.137551 ], [ 45.351562, 34.016242 ], [ 46.054688, 35.746512 ], [ 43.945312, 37.996163 ], [ 43.945312, 39.639538 ], [ 44.648438, 39.909736 ], [ 43.593750, 40.446947 ], [ 43.242188, 41.244772 ], [ 44.648438, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.054688, 42.032974 ], [ 47.109375, 41.244772 ], [ 48.515625, 42.032974 ], [ 50.273438, 40.446947 ], [ 49.218750, 40.178873 ], [ 48.867188, 38.548165 ], [ 47.812500, 38.822591 ] ], [ [ 45.351562, 39.909736 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.351562, 39.909736 ] ] ], [ [ [ 47.812500, 30.145127 ], [ 48.164062, 28.613459 ], [ 46.406250, 29.228890 ], [ 47.109375, 30.145127 ], [ 47.812500, 30.145127 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 50.976562, 12.211180 ], [ 50.976562, 10.833306 ], [ 48.515625, 5.615986 ], [ 46.406250, 3.162456 ], [ 42.539062, 0.000000 ], [ 41.484375, -1.406109 ], [ 40.781250, 0.000000 ], [ 40.781250, 2.811371 ], [ 41.835938, 4.565474 ], [ 44.648438, 5.266008 ], [ 47.109375, 8.059230 ], [ 46.757812, 8.059230 ], [ 43.593750, 9.449062 ], [ 42.539062, 10.833306 ], [ 42.890625, 11.523088 ], [ 43.945312, 10.487812 ], [ 48.867188, 11.523088 ], [ 49.570312, 11.867351 ], [ 50.976562, 12.211180 ] ] ], [ [ [ 79.804688, 10.141932 ], [ 80.507812, 9.449062 ], [ 81.562500, 7.710992 ], [ 81.562500, 6.664608 ], [ 80.156250, 6.315299 ], [ 79.453125, 8.407168 ], [ 79.804688, 10.141932 ] ] ], [ [ [ 53.437500, 42.293564 ], [ 53.789062, 42.553080 ], [ 55.195312, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.601562, 42.032974 ], [ 58.359375, 42.811522 ], [ 59.765625, 42.293564 ], [ 60.117188, 41.244772 ], [ 61.875000, 41.244772 ], [ 62.226562, 40.178873 ], [ 63.984375, 39.095963 ], [ 66.445312, 37.996163 ], [ 66.445312, 37.718590 ], [ 66.445312, 37.439974 ], [ 67.500000, 37.439974 ], [ 68.203125, 38.272689 ], [ 67.851562, 39.095963 ], [ 67.148438, 39.368279 ], [ 67.500000, 39.639538 ], [ 68.203125, 39.639538 ], [ 69.257812, 40.979898 ], [ 70.664062, 40.979898 ], [ 70.312500, 40.713956 ], [ 70.664062, 40.446947 ], [ 70.312500, 40.178873 ], [ 69.257812, 40.178873 ], [ 69.257812, 39.639538 ], [ 73.476562, 39.639538 ], [ 73.828125, 38.548165 ], [ 74.531250, 38.548165 ], [ 74.882812, 37.439974 ], [ 73.125000, 37.718590 ], [ 74.882812, 37.160317 ], [ 75.937500, 36.031332 ], [ 77.695312, 35.746512 ], [ 78.750000, 34.597042 ], [ 79.101562, 33.137551 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.842674 ], [ 78.398438, 31.653381 ], [ 80.859375, 30.448674 ], [ 79.804688, 28.921631 ], [ 81.210938, 30.448674 ], [ 85.781250, 28.304381 ], [ 87.890625, 27.994401 ], [ 88.593750, 28.304381 ], [ 88.593750, 27.371767 ], [ 90.000000, 28.304381 ], [ 91.406250, 27.994401 ], [ 94.218750, 29.535230 ], [ 95.273438, 29.228890 ], [ 95.976562, 29.535230 ], [ 96.328125, 28.921631 ], [ 95.976562, 28.613459 ], [ 97.382812, 27.994401 ], [ 97.031250, 27.371767 ], [ 96.328125, 27.371767 ], [ 94.921875, 26.745610 ], [ 93.867188, 23.885838 ], [ 93.164062, 24.206890 ], [ 93.164062, 22.593726 ], [ 92.460938, 22.268764 ], [ 92.109375, 20.961440 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.000000, 21.943046 ], [ 88.945312, 22.268764 ], [ 88.593750, 24.527135 ], [ 88.593750, 21.943046 ], [ 86.835938, 21.616579 ], [ 86.484375, 20.303418 ], [ 84.726562, 19.642588 ], [ 81.914062, 16.636192 ], [ 80.156250, 15.961329 ], [ 79.804688, 10.487812 ], [ 79.804688, 10.141932 ], [ 77.343750, 8.059230 ], [ 76.289062, 9.102097 ], [ 73.476562, 16.299051 ], [ 72.421875, 21.616579 ], [ 70.312500, 20.961440 ], [ 68.906250, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.257812, 22.917923 ], [ 67.851562, 23.885838 ], [ 66.093750, 25.482951 ], [ 61.171875, 25.165173 ], [ 61.523438, 26.431228 ], [ 63.281250, 27.059126 ], [ 62.578125, 28.304381 ], [ 60.820312, 29.840644 ], [ 61.523438, 30.751278 ], [ 61.523438, 31.653381 ], [ 60.820312, 31.653381 ], [ 60.468750, 33.137551 ], [ 61.171875, 35.746512 ], [ 60.820312, 36.597889 ], [ 57.304688, 38.272689 ], [ 55.195312, 37.996163 ], [ 53.789062, 37.439974 ], [ 53.789062, 39.095963 ], [ 53.085938, 39.368279 ], [ 53.085938, 40.178873 ], [ 52.382812, 40.178873 ], [ 52.734375, 40.979898 ], [ 53.789062, 40.713956 ], [ 54.492188, 40.979898 ], [ 53.437500, 42.293564 ] ], [ [ 88.593750, 27.371767 ], [ 89.648438, 26.745610 ], [ 91.757812, 27.059126 ], [ 88.593750, 27.371767 ] ], [ [ 71.015625, 34.597042 ], [ 69.609375, 34.307144 ], [ 70.664062, 34.016242 ], [ 71.015625, 34.597042 ] ], [ [ 60.820312, 29.840644 ], [ 62.226562, 29.535230 ], [ 62.929688, 29.535230 ], [ 60.820312, 29.840644 ] ] ], [ [ [ 98.789062, 52.052490 ], [ 101.953125, 51.399206 ], [ 101.953125, 50.513427 ], [ 103.359375, 50.289339 ], [ 106.875000, 50.289339 ], [ 108.281250, 49.382373 ], [ 110.390625, 49.152970 ], [ 112.851562, 49.610710 ], [ 114.257812, 50.289339 ], [ 115.312500, 49.837982 ], [ 116.367188, 50.064192 ], [ 115.312500, 48.224673 ], [ 115.664062, 47.754098 ], [ 117.070312, 47.754098 ], [ 117.773438, 48.224673 ], [ 119.531250, 47.279229 ], [ 119.531250, 46.800059 ], [ 117.070312, 46.800059 ], [ 113.203125, 44.840291 ], [ 111.796875, 45.336702 ], [ 111.093750, 44.590467 ], [ 111.796875, 43.834527 ], [ 110.390625, 43.068888 ], [ 104.765625, 41.771312 ], [ 100.546875, 42.811522 ], [ 96.328125, 42.811522 ], [ 95.273438, 44.339565 ], [ 93.164062, 45.089036 ], [ 90.703125, 45.336702 ], [ 90.351562, 45.828799 ], [ 90.703125, 47.040182 ], [ 90.000000, 47.754098 ], [ 87.890625, 48.690960 ], [ 87.539062, 49.382373 ], [ 92.109375, 50.958427 ], [ 93.867188, 50.513427 ], [ 94.570312, 50.064192 ], [ 97.031250, 49.837982 ], [ 98.085938, 50.513427 ], [ 97.734375, 51.179343 ], [ 98.789062, 52.052490 ] ] ], [ [ [ 53.085938, 16.972741 ], [ 52.382812, 16.636192 ], [ 52.031250, 15.623037 ], [ 48.515625, 14.264383 ], [ 43.945312, 12.897489 ], [ 43.242188, 12.897489 ], [ 42.539062, 15.284185 ], [ 43.242188, 17.644022 ], [ 42.539062, 16.636192 ], [ 40.781250, 19.642588 ], [ 39.023438, 21.616579 ], [ 38.320312, 23.885838 ], [ 37.265625, 24.527135 ], [ 34.804688, 28.304381 ], [ 34.453125, 28.304381 ], [ 34.804688, 29.535230 ], [ 35.859375, 29.228890 ], [ 37.968750, 30.751278 ], [ 36.914062, 31.653381 ], [ 39.023438, 32.249974 ], [ 41.835938, 31.353637 ], [ 44.648438, 29.228890 ], [ 48.164062, 28.613459 ], [ 49.921875, 26.745610 ], [ 49.921875, 25.799891 ], [ 50.625000, 25.165173 ], [ 50.976562, 26.115986 ], [ 51.328125, 25.482951 ], [ 51.328125, 24.846565 ], [ 51.328125, 24.527135 ], [ 53.789062, 24.206890 ], [ 55.898438, 26.115986 ], [ 56.250000, 25.799891 ], [ 56.250000, 25.165173 ], [ 55.546875, 25.165173 ], [ 59.765625, 22.593726 ], [ 58.710938, 21.289374 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 54.492188, 16.972741 ], [ 53.085938, 16.972741 ] ] ], [ [ [ 52.734375, 42.032974 ], [ 52.734375, 41.244772 ], [ 52.382812, 42.032974 ], [ 52.734375, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 50.976562, 12.211180 ], [ 50.976562, 10.833306 ], [ 48.515625, 5.615986 ], [ 46.406250, 3.162456 ], [ 42.539062, 0.000000 ], [ 41.484375, -1.406109 ], [ 40.781250, 0.000000 ], [ 40.781250, 2.811371 ], [ 41.835938, 4.565474 ], [ 44.648438, 5.266008 ], [ 47.109375, 8.059230 ], [ 46.757812, 8.059230 ], [ 43.593750, 9.449062 ], [ 42.539062, 10.833306 ], [ 42.890625, 11.523088 ], [ 43.945312, 10.487812 ], [ 48.867188, 11.523088 ], [ 49.570312, 11.867351 ], [ 50.976562, 12.211180 ] ] ], [ [ [ 79.804688, 10.141932 ], [ 80.507812, 9.449062 ], [ 81.562500, 7.710992 ], [ 81.562500, 6.664608 ], [ 80.156250, 6.315299 ], [ 79.453125, 8.407168 ], [ 79.804688, 10.141932 ] ] ], [ [ [ 53.437500, 42.293564 ], [ 53.789062, 42.553080 ], [ 55.195312, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.601562, 42.032974 ], [ 58.359375, 42.811522 ], [ 59.765625, 42.293564 ], [ 60.117188, 41.244772 ], [ 61.875000, 41.244772 ], [ 62.226562, 40.178873 ], [ 63.984375, 39.095963 ], [ 66.445312, 37.996163 ], [ 66.445312, 37.718590 ], [ 66.445312, 37.439974 ], [ 67.500000, 37.439974 ], [ 68.203125, 38.272689 ], [ 67.851562, 39.095963 ], [ 67.148438, 39.368279 ], [ 67.500000, 39.639538 ], [ 68.203125, 39.639538 ], [ 69.257812, 40.979898 ], [ 70.664062, 40.979898 ], [ 70.312500, 40.713956 ], [ 70.664062, 40.446947 ], [ 70.312500, 40.178873 ], [ 69.257812, 40.178873 ], [ 69.257812, 39.639538 ], [ 73.476562, 39.639538 ], [ 73.828125, 38.548165 ], [ 74.531250, 38.548165 ], [ 74.882812, 37.439974 ], [ 73.125000, 37.718590 ], [ 74.882812, 37.160317 ], [ 75.937500, 36.031332 ], [ 77.695312, 35.746512 ], [ 78.750000, 34.597042 ], [ 79.101562, 33.137551 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.842674 ], [ 78.398438, 31.653381 ], [ 80.859375, 30.448674 ], [ 79.804688, 28.921631 ], [ 81.210938, 30.448674 ], [ 85.781250, 28.304381 ], [ 87.890625, 27.994401 ], [ 88.593750, 28.304381 ], [ 88.593750, 27.371767 ], [ 90.000000, 28.304381 ], [ 91.406250, 27.994401 ], [ 94.218750, 29.535230 ], [ 95.273438, 29.228890 ], [ 95.976562, 29.535230 ], [ 96.328125, 28.921631 ], [ 95.976562, 28.613459 ], [ 97.382812, 27.994401 ], [ 97.031250, 27.371767 ], [ 96.328125, 27.371767 ], [ 94.921875, 26.745610 ], [ 93.867188, 23.885838 ], [ 93.164062, 24.206890 ], [ 93.164062, 22.593726 ], [ 92.460938, 22.268764 ], [ 92.109375, 20.961440 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.000000, 21.943046 ], [ 88.945312, 22.268764 ], [ 88.593750, 24.527135 ], [ 88.593750, 21.943046 ], [ 86.835938, 21.616579 ], [ 86.484375, 20.303418 ], [ 84.726562, 19.642588 ], [ 81.914062, 16.636192 ], [ 80.156250, 15.961329 ], [ 79.804688, 10.487812 ], [ 79.804688, 10.141932 ], [ 77.343750, 8.059230 ], [ 76.289062, 9.102097 ], [ 73.476562, 16.299051 ], [ 72.421875, 21.616579 ], [ 70.312500, 20.961440 ], [ 68.906250, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.257812, 22.917923 ], [ 67.851562, 23.885838 ], [ 66.093750, 25.482951 ], [ 61.171875, 25.165173 ], [ 61.523438, 26.431228 ], [ 63.281250, 27.059126 ], [ 62.578125, 28.304381 ], [ 60.820312, 29.840644 ], [ 61.523438, 30.751278 ], [ 61.523438, 31.653381 ], [ 60.820312, 31.653381 ], [ 60.468750, 33.137551 ], [ 61.171875, 35.746512 ], [ 60.820312, 36.597889 ], [ 57.304688, 38.272689 ], [ 55.195312, 37.996163 ], [ 53.789062, 37.439974 ], [ 53.789062, 39.095963 ], [ 53.085938, 39.368279 ], [ 53.085938, 40.178873 ], [ 52.382812, 40.178873 ], [ 52.734375, 40.979898 ], [ 53.789062, 40.713956 ], [ 54.492188, 40.979898 ], [ 53.437500, 42.293564 ] ], [ [ 88.593750, 27.371767 ], [ 89.648438, 26.745610 ], [ 91.757812, 27.059126 ], [ 88.593750, 27.371767 ] ], [ [ 71.015625, 34.597042 ], [ 69.609375, 34.307144 ], [ 70.664062, 34.016242 ], [ 71.015625, 34.597042 ] ] ], [ [ [ 98.789062, 52.052490 ], [ 101.953125, 51.399206 ], [ 101.953125, 50.513427 ], [ 103.359375, 50.289339 ], [ 106.875000, 50.289339 ], [ 108.281250, 49.382373 ], [ 110.390625, 49.152970 ], [ 112.851562, 49.610710 ], [ 114.257812, 50.289339 ], [ 115.312500, 49.837982 ], [ 116.367188, 50.064192 ], [ 115.312500, 48.224673 ], [ 115.664062, 47.754098 ], [ 117.070312, 47.754098 ], [ 117.773438, 48.224673 ], [ 119.531250, 47.279229 ], [ 119.531250, 46.800059 ], [ 117.070312, 46.800059 ], [ 113.203125, 44.840291 ], [ 111.796875, 45.336702 ], [ 111.093750, 44.590467 ], [ 111.796875, 43.834527 ], [ 110.390625, 43.068888 ], [ 104.765625, 41.771312 ], [ 100.546875, 42.811522 ], [ 96.328125, 42.811522 ], [ 95.273438, 44.339565 ], [ 93.164062, 45.089036 ], [ 90.703125, 45.336702 ], [ 90.351562, 45.828799 ], [ 90.703125, 47.040182 ], [ 90.000000, 47.754098 ], [ 87.890625, 48.690960 ], [ 87.539062, 49.382373 ], [ 92.109375, 50.958427 ], [ 93.867188, 50.513427 ], [ 94.570312, 50.064192 ], [ 97.031250, 49.837982 ], [ 98.085938, 50.513427 ], [ 97.734375, 51.179343 ], [ 98.789062, 52.052490 ] ] ], [ [ [ 53.085938, 16.972741 ], [ 52.382812, 16.636192 ], [ 52.031250, 15.623037 ], [ 48.515625, 14.264383 ], [ 43.945312, 12.897489 ], [ 43.242188, 12.897489 ], [ 42.539062, 15.284185 ], [ 43.242188, 17.644022 ], [ 42.539062, 16.636192 ], [ 40.781250, 19.642588 ], [ 39.023438, 21.616579 ], [ 38.320312, 23.885838 ], [ 37.265625, 24.527135 ], [ 34.804688, 28.304381 ], [ 34.453125, 28.304381 ], [ 34.804688, 29.535230 ], [ 35.859375, 29.228890 ], [ 37.968750, 30.751278 ], [ 36.914062, 31.653381 ], [ 39.023438, 32.249974 ], [ 41.835938, 31.353637 ], [ 44.648438, 29.228890 ], [ 48.164062, 28.613459 ], [ 49.921875, 26.745610 ], [ 49.921875, 25.799891 ], [ 50.625000, 25.165173 ], [ 50.976562, 26.115986 ], [ 51.328125, 25.482951 ], [ 51.328125, 24.846565 ], [ 51.328125, 24.527135 ], [ 53.789062, 24.206890 ], [ 55.898438, 26.115986 ], [ 56.250000, 25.799891 ], [ 56.250000, 25.165173 ], [ 55.546875, 25.165173 ], [ 59.765625, 22.593726 ], [ 58.710938, 21.289374 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 54.492188, 16.972741 ], [ 53.085938, 16.972741 ] ] ], [ [ [ 52.734375, 42.032974 ], [ 52.734375, 41.244772 ], [ 52.382812, 42.032974 ], [ 52.734375, 42.032974 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.429688, 42.553080 ], [ 129.375000, 41.771312 ], [ 129.375000, 40.979898 ], [ 127.265625, 39.909736 ], [ 127.265625, 39.368279 ], [ 127.968750, 38.548165 ], [ 128.320312, 38.822591 ], [ 129.375000, 36.879621 ], [ 129.375000, 35.746512 ], [ 129.023438, 35.173808 ], [ 126.210938, 34.597042 ], [ 125.859375, 36.879621 ], [ 126.562500, 37.160317 ], [ 125.859375, 37.996163 ], [ 125.156250, 37.718590 ], [ 124.453125, 38.272689 ], [ 125.156250, 39.639538 ], [ 124.101562, 40.178873 ], [ 120.937500, 39.095963 ], [ 121.992188, 40.446947 ], [ 121.289062, 40.979898 ], [ 117.421875, 38.822591 ], [ 119.531250, 37.160317 ], [ 120.585938, 37.996163 ], [ 122.343750, 37.718590 ], [ 122.343750, 37.160317 ], [ 120.937500, 36.879621 ], [ 118.828125, 35.173808 ], [ 119.882812, 34.597042 ], [ 121.640625, 31.952162 ], [ 121.640625, 31.052934 ], [ 120.937500, 30.751278 ], [ 121.992188, 29.840644 ], [ 121.640625, 28.304381 ], [ 120.937500, 28.304381 ], [ 118.476562, 24.846565 ], [ 115.664062, 22.917923 ], [ 110.742188, 21.616579 ], [ 110.390625, 20.632784 ], [ 109.687500, 20.303418 ], [ 109.687500, 21.616579 ], [ 106.875000, 21.943046 ], [ 107.929688, 21.616579 ], [ 106.523438, 20.961440 ], [ 105.468750, 19.311143 ], [ 108.632812, 15.284185 ], [ 108.984375, 11.867351 ], [ 105.117188, 8.754795 ], [ 104.765625, 10.141932 ], [ 104.062500, 10.487812 ], [ 106.171875, 11.178402 ], [ 103.359375, 10.833306 ], [ 102.304688, 13.581921 ], [ 102.304688, 12.211180 ], [ 100.546875, 12.897489 ], [ 100.898438, 13.581921 ], [ 99.843750, 13.581921 ], [ 99.492188, 12.211180 ], [ 98.437500, 10.141932 ], [ 98.437500, 13.239945 ], [ 97.031250, 16.972741 ], [ 95.273438, 15.961329 ], [ 93.867188, 16.299051 ], [ 94.218750, 18.312811 ], [ 93.515625, 19.973349 ], [ 92.109375, 20.961440 ], [ 92.109375, 21.616579 ], [ 92.460938, 21.616579 ], [ 93.164062, 22.593726 ], [ 93.164062, 24.206890 ], [ 93.867188, 23.885838 ], [ 94.921875, 26.745610 ], [ 96.328125, 27.371767 ], [ 97.031250, 27.371767 ], [ 97.031250, 28.304381 ], [ 97.734375, 28.613459 ], [ 95.976562, 28.613459 ], [ 96.328125, 28.921631 ], [ 95.976562, 29.535230 ], [ 95.273438, 29.228890 ], [ 94.218750, 29.535230 ], [ 92.460938, 27.994401 ], [ 90.000000, 28.304381 ], [ 88.593750, 27.371767 ], [ 88.593750, 28.304381 ], [ 85.781250, 28.304381 ], [ 82.265625, 30.145127 ], [ 80.859375, 30.448674 ], [ 78.398438, 31.653381 ], [ 78.398438, 32.842674 ], [ 79.101562, 32.546813 ], [ 79.101562, 33.137551 ], [ 78.750000, 34.597042 ], [ 77.695312, 35.746512 ], [ 75.937500, 36.031332 ], [ 74.882812, 37.439974 ], [ 74.531250, 38.548165 ], [ 73.828125, 38.548165 ], [ 73.476562, 39.909736 ], [ 75.234375, 40.713956 ], [ 76.289062, 40.446947 ], [ 76.640625, 41.244772 ], [ 78.046875, 41.244772 ], [ 79.804688, 42.293564 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.325178 ], [ 79.804688, 45.089036 ], [ 82.265625, 45.583290 ], [ 82.968750, 47.517201 ], [ 85.078125, 47.040182 ], [ 85.429688, 47.517201 ], [ 85.429688, 48.458352 ], [ 87.539062, 49.382373 ], [ 87.890625, 48.690960 ], [ 90.000000, 47.754098 ], [ 90.703125, 47.040182 ], [ 90.351562, 45.828799 ], [ 90.703125, 45.336702 ], [ 93.164062, 45.089036 ], [ 95.273438, 44.339565 ], [ 96.328125, 42.811522 ], [ 100.546875, 42.811522 ], [ 104.765625, 41.771312 ], [ 110.390625, 43.068888 ], [ 111.796875, 43.834527 ], [ 111.093750, 44.590467 ], [ 111.796875, 45.336702 ], [ 113.203125, 44.840291 ], [ 117.070312, 46.800059 ], [ 119.531250, 46.800059 ], [ 119.531250, 47.279229 ], [ 117.773438, 48.224673 ], [ 117.070312, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.312500, 48.224673 ], [ 116.367188, 50.064192 ], [ 117.773438, 49.610710 ], [ 119.179688, 50.289339 ], [ 120.585938, 52.052490 ], [ 119.882812, 52.908902 ], [ 120.937500, 53.330873 ], [ 123.398438, 53.540307 ], [ 125.859375, 52.908902 ], [ 127.617188, 49.837982 ], [ 129.375000, 49.610710 ], [ 130.429688, 48.922499 ], [ 130.781250, 47.989922 ], [ 132.187500, 47.989922 ], [ 135.000000, 48.690960 ], [ 133.593750, 46.316584 ], [ 132.890625, 45.336702 ], [ 131.835938, 45.336702 ], [ 130.781250, 45.089036 ], [ 131.132812, 43.068888 ], [ 130.429688, 43.068888 ], [ 130.429688, 42.553080 ] ], [ [ 102.656250, 14.264383 ], [ 105.820312, 13.923404 ], [ 105.117188, 14.604847 ], [ 102.656250, 14.264383 ] ], [ [ 104.765625, 16.636192 ], [ 105.468750, 15.284185 ], [ 105.468750, 15.623037 ], [ 104.765625, 16.636192 ] ], [ [ 103.710938, 18.312811 ], [ 103.359375, 18.312811 ], [ 104.062500, 17.978733 ], [ 103.710938, 18.312811 ] ] ], [ [ [ 13.007812, 2.460181 ], [ 15.820312, 1.757537 ], [ 16.875000, 3.864255 ], [ 18.281250, 3.513421 ], [ 18.281250, 4.214943 ], [ 19.335938, 5.266008 ], [ 22.148438, 4.214943 ], [ 22.500000, 4.915833 ], [ 24.257812, 5.266008 ], [ 27.070312, 5.266008 ], [ 27.773438, 4.565474 ], [ 29.531250, 4.915833 ], [ 30.585938, 3.513421 ], [ 30.585938, 2.460181 ], [ 30.937500, 2.460181 ], [ 29.531250, 0.000000 ], [ 29.179688, -1.406109 ], [ 30.234375, -1.054628 ], [ 33.750000, -0.703107 ], [ 37.617188, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -3.162456 ], [ 29.179688, -3.513421 ], [ 15.820312, -3.513421 ], [ 11.601562, -3.513421 ], [ 11.601562, -3.162456 ], [ 10.546875, -3.513421 ], [ 8.789062, -1.054628 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.460181 ], [ 13.007812, 2.460181 ] ], [ [ 30.585938, -2.108899 ], [ 30.234375, -2.108899 ], [ 30.234375, -2.460181 ], [ 30.585938, -2.108899 ] ] ], [ [ [ 113.906250, 4.565474 ], [ 115.312500, 5.615986 ], [ 116.718750, 7.013668 ], [ 119.179688, 5.615986 ], [ 118.125000, 5.266008 ], [ 118.476562, 4.565474 ], [ 115.664062, 4.565474 ], [ 117.773438, 4.214943 ], [ 117.070312, 3.513421 ], [ 117.773438, 2.108899 ], [ 118.828125, 1.054628 ], [ 117.773438, 1.054628 ], [ 117.421875, 0.000000 ], [ 117.421875, -0.703107 ], [ 116.367188, -1.406109 ], [ 116.015625, -3.513421 ], [ 113.203125, -2.811371 ], [ 111.796875, -3.162456 ], [ 111.445312, -2.811371 ], [ 110.039062, -2.811371 ], [ 110.039062, -1.406109 ], [ 108.984375, 0.000000 ], [ 108.984375, 1.406109 ], [ 109.335938, 2.108899 ], [ 111.093750, 2.108899 ], [ 111.093750, 2.811371 ], [ 112.851562, 3.162456 ], [ 113.906250, 4.565474 ] ] ], [ [ [ 132.187500, -0.351560 ], [ 133.945312, -1.054628 ], [ 134.296875, -2.460181 ], [ 135.351562, -3.162456 ], [ 136.054688, -2.108899 ], [ 138.164062, -1.406109 ], [ 140.976562, -2.460181 ], [ 143.437500, -3.513421 ], [ 140.976562, -3.513421 ], [ 132.539062, -3.513421 ], [ 131.835938, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 130.429688, -0.703107 ], [ 132.187500, -0.351560 ] ] ], [ [ [ 141.328125, 41.508577 ], [ 141.679688, 39.368279 ], [ 140.625000, 38.272689 ], [ 140.625000, 37.160317 ], [ 139.921875, 35.173808 ], [ 137.109375, 34.885931 ], [ 135.703125, 33.724340 ], [ 135.000000, 34.016242 ], [ 135.000000, 34.597042 ], [ 132.890625, 34.307144 ], [ 130.781250, 34.016242 ], [ 131.835938, 33.431441 ], [ 131.132812, 31.653381 ], [ 130.429688, 31.052934 ], [ 130.078125, 31.653381 ], [ 130.429688, 32.546813 ], [ 129.375000, 33.431441 ], [ 132.539062, 35.460670 ], [ 135.351562, 35.746512 ], [ 136.406250, 37.439974 ], [ 137.109375, 36.879621 ], [ 139.218750, 38.272689 ], [ 139.921875, 39.639538 ], [ 139.570312, 40.713956 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.508577 ] ] ], [ [ [ 95.273438, 5.615986 ], [ 97.382812, 5.266008 ], [ 100.546875, 2.108899 ], [ 101.601562, 2.108899 ], [ 103.710938, 0.000000 ], [ 103.359375, -0.703107 ], [ 104.062500, -1.054628 ], [ 104.765625, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.820312, -3.513421 ], [ 101.953125, -3.513421 ], [ 99.140625, 0.000000 ], [ 98.437500, 2.108899 ], [ 95.273438, 5.615986 ] ] ], [ [ [ 99.492188, 12.211180 ], [ 99.140625, 10.141932 ], [ 100.195312, 7.710992 ], [ 101.953125, 6.315299 ], [ 102.656250, 5.615986 ], [ 104.062500, 1.406109 ], [ 103.359375, 1.406109 ], [ 101.250000, 2.811371 ], [ 99.843750, 6.664608 ], [ 98.085938, 8.407168 ], [ 99.492188, 12.211180 ] ] ], [ [ [ 141.679688, 45.583290 ], [ 143.789062, 44.339565 ], [ 144.492188, 44.087585 ], [ 145.195312, 44.590467 ], [ 145.195312, 43.325178 ], [ 143.789062, 43.068888 ], [ 143.085938, 42.032974 ], [ 141.328125, 42.811522 ], [ 140.976562, 41.771312 ], [ 139.921875, 41.771312 ], [ 139.570312, 42.811522 ], [ 140.273438, 43.580391 ], [ 141.328125, 43.580391 ], [ 141.679688, 45.583290 ] ] ], [ [ [ 125.156250, 1.757537 ], [ 124.101562, 0.703107 ], [ 119.882812, 0.000000 ], [ 120.585938, -1.406109 ], [ 123.046875, -0.351560 ], [ 121.289062, -1.757537 ], [ 121.992188, -3.513421 ], [ 120.585938, -3.513421 ], [ 120.937500, -2.460181 ], [ 120.234375, -2.811371 ], [ 120.234375, -3.513421 ], [ 118.828125, -3.162456 ], [ 118.476562, -2.460181 ], [ 119.531250, 0.000000 ], [ 120.585938, 1.406109 ], [ 122.695312, 1.054628 ], [ 125.156250, 1.757537 ] ] ], [ [ [ 121.992188, 18.646245 ], [ 122.343750, 17.308688 ], [ 121.640625, 15.961329 ], [ 121.640625, 14.604847 ], [ 123.750000, 13.923404 ], [ 123.750000, 12.554564 ], [ 122.695312, 13.581921 ], [ 122.343750, 13.239945 ], [ 121.992188, 13.923404 ], [ 120.585938, 13.923404 ], [ 120.937500, 14.604847 ], [ 119.882812, 15.284185 ], [ 119.882812, 16.636192 ], [ 120.234375, 16.299051 ], [ 120.585938, 18.646245 ], [ 121.992188, 18.646245 ] ] ], [ [ [ 130.429688, -2.811371 ], [ 130.429688, -3.513421 ], [ 127.617188, -3.162456 ], [ 127.968750, -2.811371 ], [ 130.429688, -2.811371 ] ] ], [ [ [ 125.156250, 9.795678 ], [ 126.210938, 9.449062 ], [ 126.210938, 7.362467 ], [ 125.859375, 6.315299 ], [ 125.507812, 7.362467 ], [ 125.156250, 7.013668 ], [ 125.156250, 5.615986 ], [ 124.101562, 6.315299 ], [ 124.101562, 7.362467 ], [ 123.398438, 8.059230 ], [ 121.640625, 7.362467 ], [ 123.398438, 8.754795 ], [ 123.750000, 8.407168 ], [ 125.156250, 9.102097 ], [ 125.156250, 9.795678 ] ] ], [ [ [ 121.289062, 25.482951 ], [ 121.640625, 24.527135 ], [ 120.585938, 22.268764 ], [ 119.882812, 23.563987 ], [ 121.289062, 25.482951 ] ] ], [ [ [ 126.914062, -2.811371 ], [ 126.914062, -3.162456 ], [ 125.859375, -3.162456 ], [ 126.914062, -2.811371 ] ] ], [ [ [ 110.742188, 20.303418 ], [ 110.039062, 18.979026 ], [ 109.335938, 18.312811 ], [ 108.632812, 18.646245 ], [ 108.281250, 19.642588 ], [ 110.742188, 20.303418 ] ] ], [ [ [ 127.617188, 2.460181 ], [ 127.968750, 1.757537 ], [ 128.671875, 1.406109 ], [ 128.320312, 0.351560 ], [ 127.968750, 0.000000 ], [ 127.968750, -0.703107 ], [ 127.617188, 0.000000 ], [ 127.265625, 1.054628 ], [ 127.617188, 2.460181 ] ] ], [ [ [ 134.296875, 34.307144 ], [ 133.945312, 33.431441 ], [ 133.593750, 33.724340 ], [ 132.890625, 32.842674 ], [ 132.187500, 33.137551 ], [ 132.890625, 34.307144 ], [ 134.296875, 34.307144 ] ] ], [ [ [ 123.398438, 11.178402 ], [ 123.750000, 11.523088 ], [ 123.750000, 10.487812 ], [ 122.695312, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.695312, 11.178402 ], [ 123.398438, 11.178402 ] ] ], [ [ [ 119.179688, 11.523088 ], [ 119.531250, 10.833306 ], [ 118.476562, 9.449062 ], [ 117.070312, 8.407168 ], [ 119.179688, 11.523088 ] ] ], [ [ [ 124.101562, 12.897489 ], [ 125.156250, 12.211180 ], [ 125.507812, 11.178402 ], [ 124.804688, 11.523088 ], [ 125.156250, 10.487812 ], [ 124.453125, 10.141932 ], [ 124.101562, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.101562, 12.897489 ] ] ], [ [ [ 121.640625, 12.211180 ], [ 123.046875, 11.867351 ], [ 122.695312, 11.178402 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.523088 ], [ 121.640625, 12.211180 ] ] ], [ [ [ 120.937500, 13.581921 ], [ 121.289062, 13.239945 ], [ 120.937500, 12.211180 ], [ 120.234375, 13.581921 ], [ 120.937500, 13.581921 ] ] ] ] } } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json index 357519c59..3a04a03c0 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json.check.mbtiles -z5 -M5000 --drop-smallest-as-needed tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"formal_fr\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_alt\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_adm0\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 61,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afg.\",\"Alb.\",\"Alg.\",\"Ang.\",\"Ant.\",\"Arg.\",\"Arm.\",\"Aust.\",\"Auz.\",\"Aze.\",\"B.F.\",\"B.H.\",\"Bang.\",\"Bela.\",\"Belg.\",\"Belize\",\"Benin\",\"Bhs.\",\"Bhutan\",\"Bolivia\",\"Brazil\",\"Brunei\",\"Bulg.\",\"Bur.\",\"Bwa.\",\"C.A.R.\",\"C.R.\",\"Cam.\",\"Camb.\",\"Can.\",\"Chad\",\"Chile\",\"China\",\"Col.\",\"Cro.\",\"Cuba\",\"Cyp.\",\"Cz. Rep.\",\"D.R.C.\",\"Den.\",\"Dji.\",\"Dom. Rep.\",\"Ecu.\",\"Egypt\",\"El. S.\",\"Eq. G.\",\"Erit.\",\"Est.\",\"Eth.\",\"Fiji\",\"Fin.\",\"Flk. Is.\",\"Fr.\",\"Fr. S.A.L.\",\"Gabon\",\"Gambia\",\"Geo.\",\"Ger.\",\"Ghana\",\"Gin.\",\"GnB.\",\"Greece\",\"Grlnd.\",\"Guat.\",\"Guy.\",\"Haiti\",\"Hond.\",\"Hun.\",\"I.C.\",\"Iceland\",\"India\",\"Indo.\",\"Iran\",\"Iraq\",\"Ire.\",\"Isr.\",\"Italy\",\"Jam.\",\"Japan\",\"Jord.\",\"Kaz.\",\"Ken.\",\"Kgz.\",\"Kos.\",\"Kwt.\",\"Laos\",\"Lat.\",\"Leb.\",\"Les.\",\"Liberia\",\"Libya\",\"Lith.\",\"Lux.\",\"Mad.\",\"Mal.\",\"Malay.\",\"Mali\",\"Mda.\",\"Mex.\",\"Mkd.\"]},{\"attribute\": \"abbrev_len\",\"count\": 8,\"type\": \"number\",\"values\": [10,3,4,5,6,7,8,9],\"min\": 3,\"max\": 10},{\"attribute\": \"adm0_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 173,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 175,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"admin\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"brk_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"B12\",\"B20\",\"B28\",\"B30\",\"B57\",\"B77\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\"]},{\"attribute\": \"brk_diff\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"brk_name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. and Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\"]},{\"attribute\": \"continent\",\"count\": 8,\"type\": \"string\",\"values\": [\"Africa\",\"Antarctica\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"Seven seas (open ocean)\",\"South America\"]},{\"attribute\": \"economy\",\"count\": 7,\"type\": \"string\",\"values\": [\"1. Developed region: G7\",\"2. Developed region: nonG7\",\"3. Emerging region: BRIC\",\"4. Emerging region: MIKT\",\"5. Emerging region: G20\",\"6. Developing region\",\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 174,\"type\": \"string\",\"values\": [\"Arab Republic of Egypt\",\"Argentine Republic\",\"Belize\",\"Bolivarian Republic of Venezuela\",\"Bosnia and Herzegovina\",\"Burkina Faso\",\"Canada\",\"Central African Republic\",\"Co-operative Republic of Guyana\",\"Commonwealth of Australia\",\"Commonwealth of Puerto Rico\",\"Commonwealth of the Bahamas\",\"Czech Republic\",\"Democratic People's Republic of Korea\",\"Democratic Republic of Timor-Leste\",\"Democratic Republic of the Congo\",\"Democratic Socialist Republic of Sri Lanka\",\"Dominican Republic\",\"Falkland Islands\",\"Federal Democratic Republic of Ethiopia\",\"Federal Republic of Germany\",\"Federal Republic of Nigeria\",\"Federal Republic of Somalia\",\"Federative Republic of Brazil\",\"Former Yugoslav Republic of Macedonia\",\"French Republic\",\"Gabonese Republic\",\"Georgia\",\"Grand Duchy of Luxembourg\",\"Greenland\",\"Hashemite Kingdom of Jordan\",\"Hellenic Republic\",\"Independent State of Papua New Guinea\",\"Ireland\",\"Islamic Republic of Iran\",\"Islamic Republic of Mauritania\",\"Islamic Republic of Pakistan\",\"Islamic State of Afghanistan\",\"Italian Republic\",\"Jamaica\",\"Japan\",\"Kingdom of Belgium\",\"Kingdom of Bhutan\",\"Kingdom of Cambodia\",\"Kingdom of Denmark\",\"Kingdom of Lesotho\",\"Kingdom of Morocco\",\"Kingdom of Norway\",\"Kingdom of Saudi Arabia\",\"Kingdom of Spain\",\"Kingdom of Swaziland\",\"Kingdom of Sweden\",\"Kingdom of Thailand\",\"Kingdom of the Netherlands\",\"Kyrgyz Republic\",\"Lao People's Democratic Republic\",\"Lebanese Republic\",\"Libya\",\"Malaysia\",\"Mongolia\",\"Montenegro\",\"Negara Brunei Darussalam\",\"Nepal\",\"New Caledonia\",\"New Zealand\",\"Oriental Republic of Uruguay\",\"People's Democratic Republic of Algeria\",\"People's Republic of Angola\",\"People's Republic of Bangladesh\",\"People's Republic of China\",\"Plurinational State of Bolivia\",\"Portuguese Republic\",\"Republic of Albania\",\"Republic of Armenia\",\"Republic of Austria\",\"Republic of Azerbaijan\",\"Republic of Belarus\",\"Republic of Benin\",\"Republic of Botswana\",\"Republic of Bulgaria\",\"Republic of Burundi\",\"Republic of Cameroon\",\"Republic of Chad\",\"Republic of Chile\",\"Republic of Colombia\",\"Republic of Congo\",\"Republic of Costa Rica\",\"Republic of Croatia\",\"Republic of Cuba\",\"Republic of Cyprus\",\"Republic of Djibouti\",\"Republic of Ecuador\",\"Republic of El Salvador\",\"Republic of Equatorial Guinea\",\"Republic of Estonia\",\"Republic of Fiji\",\"Republic of Finland\",\"Republic of Ghana\",\"Republic of Guatemala\",\"Republic of Guinea\"]},{\"attribute\": \"formal_fr\",\"count\": 4,\"type\": \"string\",\"values\": [\"Nouvelle-Calédonie\",\"Republic of Cote D'Ivoire\",\"República Bolivariana de Venezuela\",\"République Togolaise\"]},{\"attribute\": \"gdp_md_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10040,103900,105.1,10600,10670,107700,1078,108200,1100,110300,114100,11500,11610,116700,11810,11950.77,119500,12250,12710,12830,1300000,13160,13210,13227,13250,1335000,136600,13980,1403000,14060,14590,149100,15094000,1526,15350,1563000,15860,16,16790,17500,175800,17820,1823000,184300,18770,18780,188400,1885,18940,193500,196600,1977704,1993000,20130,201400,20250,203600,20640,208627,20910,21110,2128000,21510,21810,21980,22270,224000,2266000,22700,2272,232900,241700,244500,247300,2520,2536,265200,27060,271400,27410,276400,27940,28890,29010,2918000,2966,29700,29780,3102,31080,3158,31610,316700,317500,3198,3293,329500,3297000,335400],\"min\": -99,\"max\": 15094000},{\"attribute\": \"gdp_year\",\"count\": 3,\"type\": \"number\",\"values\": [-99,0,2009],\"min\": -99,\"max\": 2009},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"gu_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"homepart\",\"count\": 2,\"type\": \"number\",\"values\": [-99,1],\"min\": -99,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 5,\"type\": \"string\",\"values\": [\"1. High income: OECD\",\"2. High income: nonOECD\",\"3. Upper middle income\",\"4. Lower middle income\",\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AQ\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FK\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\"]},{\"attribute\": \"iso_a3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESH\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"iso_n3\",\"count\": 175,\"type\": \"string\",\"values\": [\"-99\",\"004\",\"008\",\"010\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"158\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"260\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\"]},{\"attribute\": \"labelrank\",\"count\": 6,\"type\": \"number\",\"values\": [2,3,4,5,6,7],\"min\": 2,\"max\": 7},{\"attribute\": \"lastcensus\",\"count\": 27,\"type\": \"number\",\"values\": [-99,1970,1979,1981,1983,1984,1987,1989,1991,1993,1995,1996,1997,1998,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012],\"min\": -99,\"max\": 2012},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 21,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,17,18,19,20,22,24,32,35,4,5,6,7,8,9],\"min\": 4,\"max\": 35},{\"attribute\": \"mapcolor13\",\"count\": 14,\"type\": \"number\",\"values\": [-99,1,10,11,12,13,2,3,4,5,6,7,8,9],\"min\": -99,\"max\": 13},{\"attribute\": \"mapcolor7\",\"count\": 7,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7],\"min\": 1,\"max\": 7},{\"attribute\": \"mapcolor8\",\"count\": 8,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8],\"min\": 1,\"max\": 8},{\"attribute\": \"mapcolor9\",\"count\": 9,\"type\": \"number\",\"values\": [1,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 9},{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]},{\"attribute\": \"name_alt\",\"count\": 2,\"type\": \"string\",\"values\": [\"East Timor\",\"Islas Malvinas\"]},{\"attribute\": \"name_len\",\"count\": 16,\"type\": \"number\",\"values\": [10,11,12,13,14,15,16,19,20,22,4,5,6,7,8,9],\"min\": 4,\"max\": 22},{\"attribute\": \"name_long\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Côte d'Ivoire\",\"Dem. Rep. Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"name_sort\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo, Dem. Rep.\",\"Congo, Rep.\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Cyprus, Northern\",\"Czech Republic\",\"Côte d'Ivoire\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"Ecuador\",\"Egypt, Arab Rep.\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran, Islamic Rep.\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea, Dem. Rep.\",\"Korea, Rep.\",\"Kosovo\",\"Kuwait\",\"Kyrgyz Republic\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia, FYR\",\"Madagascar\",\"Malawi\"]},{\"attribute\": \"note_adm0\",\"count\": 6,\"type\": \"string\",\"values\": [\"Commonwealth of U.S.A.\",\"Den.\",\"Fr.\",\"Partial self-admin.\",\"Self admin.\",\"U.K.\"]},{\"attribute\": \"note_brk\",\"count\": 8,\"type\": \"string\",\"values\": [\"Admin. by U.K.; Claimed by Argentina\",\"Multiple claims held in abeyance\",\"Partial self-admin.\",\"Self admin.; Claimed by China\",\"Self admin.; Claimed by Cyprus\",\"Self admin.; Claimed by Morocco\",\"Self admin.; Claimed by Serbia\",\"Self admin.; Claimed by Somalia\"]},{\"attribute\": \"pop_est\",\"count\": 177,\"type\": \"number\",\"values\": [-99,10057975,10211904,10329208,10414336,10473282,10486339,10625176,10707924,10737428,111211789,1123913,1131612,11451652,1166079220,11862740,12619600,12666987,127078679,12799293,1299371,1310000,13276517,1338612970,13711597,140,140041247,14268711,14494293,14573101,149229090,1514993,15306252,1533964,15399437,156050883,15746232,16601707,16715999,176242949,1782893,1804838,18879301,198739269,1990876,2005692,20178485,20617068,20653556,2066718,2108665,21262641,2130819,21324791,21669278,218519,22215421,2231503,22665345,227436,22974347,23822783,23832495,240271522,25715819,25946220,265100,26814843,2691158,27606007,2825928,28400000,28563377,28686633,29546963,2967004,3041142,306694,307899,309156,31129225,3129486,313973000,3140,32369558,33487208,3360474,34178188,3418085,3441790,34859364,3494382,3500000,3555179,3639453,3802,38482919,388190,39002772,3971020],\"min\": -99,\"max\": 1338612970},{\"attribute\": \"pop_year\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"postal\",\"count\": 172,\"type\": \"string\",\"values\": [\"A\",\"AE\",\"AF\",\"AL\",\"AO\",\"AQ\",\"AR\",\"ARM\",\"AU\",\"AZ\",\"B\",\"BD\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"BiH\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"D\",\"DJ\",\"DK\",\"DO\",\"DRC\",\"DZ\",\"E\",\"EC\",\"EG\",\"ER\",\"EST\",\"ET\",\"F\",\"FIN\",\"FJ\",\"FK\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HN\",\"HR\",\"HT\",\"HU\",\"I\",\"IND\",\"INDO\",\"IRL\",\"IRN\",\"IRQ\",\"IS\",\"J\",\"KE\",\"KG\",\"KH\",\"KO\",\"KP\",\"KR\",\"KW\",\"KZ\",\"L\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\",\"MG\",\"MK\"]},{\"attribute\": \"region_un\",\"count\": 7,\"type\": \"string\",\"values\": [\"Africa\",\"Americas\",\"Antarctica\",\"Asia\",\"Europe\",\"Oceania\",\"Seven seas (open ocean)\"]},{\"attribute\": \"region_wb\",\"count\": 8,\"type\": \"string\",\"values\": [\"Antarctica\",\"East Asia & Pacific\",\"Europe & Central Asia\",\"Latin America & Caribbean\",\"Middle East & North Africa\",\"North America\",\"South Asia\",\"Sub-Saharan Africa\"]},{\"attribute\": \"scalerank\",\"count\": 2,\"type\": \"number\",\"values\": [1,3],\"min\": 1,\"max\": 3},{\"attribute\": \"sov_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"AU1\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CH1\",\"CHE\",\"CHL\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DN1\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FI1\",\"FJI\",\"FR1\",\"GAB\",\"GB1\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\"]},{\"attribute\": \"sovereignt\",\"count\": 171,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\",\"Moldova\",\"Mongolia\",\"Montenegro\"]},{\"attribute\": \"su_a3\",\"count\": 177,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"ATA\",\"ATF\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYN\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FLK\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\"]},{\"attribute\": \"su_dif\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"subregion\",\"count\": 22,\"type\": \"string\",\"values\": [\"Antarctica\",\"Australia and New Zealand\",\"Caribbean\",\"Central America\",\"Central Asia\",\"Eastern Africa\",\"Eastern Asia\",\"Eastern Europe\",\"Melanesia\",\"Middle Africa\",\"Northern Africa\",\"Northern America\",\"Northern Europe\",\"Seven seas (open ocean)\",\"South America\",\"South-Eastern Asia\",\"Southern Africa\",\"Southern Asia\",\"Southern Europe\",\"Western Africa\",\"Western Asia\",\"Western Europe\"]},{\"attribute\": \"subunit\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Southern and Antarctic Lands\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Mali\",\"Mauritania\",\"Mexico\"]},{\"attribute\": \"tiny\",\"count\": 5,\"type\": \"number\",\"values\": [-99,2,3,4,5],\"min\": -99,\"max\": 5},{\"attribute\": \"type\",\"count\": 5,\"type\": \"string\",\"values\": [\"Country\",\"Dependency\",\"Disputed\",\"Indeterminate\",\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 172,\"type\": \"string\",\"values\": [\"-099\",\"004\",\"008\",\"012\",\"024\",\"031\",\"032\",\"036\",\"040\",\"044\",\"050\",\"051\",\"056\",\"064\",\"068\",\"070\",\"072\",\"076\",\"084\",\"090\",\"096\",\"100\",\"104\",\"108\",\"112\",\"116\",\"120\",\"124\",\"140\",\"144\",\"148\",\"152\",\"156\",\"170\",\"178\",\"180\",\"188\",\"191\",\"192\",\"196\",\"203\",\"204\",\"208\",\"214\",\"218\",\"222\",\"226\",\"231\",\"232\",\"233\",\"238\",\"242\",\"246\",\"250\",\"262\",\"266\",\"268\",\"270\",\"275\",\"276\",\"288\",\"300\",\"304\",\"320\",\"324\",\"328\",\"332\",\"340\",\"348\",\"352\",\"356\",\"360\",\"364\",\"368\",\"372\",\"376\",\"380\",\"384\",\"388\",\"392\",\"398\",\"400\",\"404\",\"408\",\"410\",\"414\",\"417\",\"418\",\"422\",\"426\",\"428\",\"430\",\"434\",\"440\",\"442\",\"450\",\"454\",\"458\",\"466\",\"478\"]},{\"attribute\": \"wb_a2\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AE\",\"AF\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BD\",\"BE\",\"BF\",\"BG\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FR\",\"GA\",\"GB\",\"GE\",\"GH\",\"GL\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"GZ\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KP\",\"KR\",\"KV\",\"KW\",\"KZ\",\"LA\",\"LB\",\"LK\",\"LR\",\"LS\",\"LT\",\"LU\",\"LV\",\"LY\",\"MA\",\"MD\",\"ME\"]},{\"attribute\": \"wb_a3\",\"count\": 171,\"type\": \"string\",\"values\": [\"-99\",\"AFG\",\"AGO\",\"ALB\",\"ARE\",\"ARG\",\"ARM\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COG\",\"COL\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRL\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KOR\",\"KSV\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\",\"LKA\",\"LSO\",\"LTU\",\"LUX\",\"LVA\",\"MAR\",\"MDA\",\"MDG\",\"MEX\",\"MKD\"]},{\"attribute\": \"wikipedia\",\"count\": 2,\"type\": \"number\",\"values\": [-99,0],\"min\": -99,\"max\": 0},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_admin_0_countries/out/-zg_-yname.json b/tests/ne_110m_admin_0_countries/out/-zg_-yname.json index 394439d52..110a411e0 100644 --- a/tests/ne_110m_admin_0_countries/out/-zg_-yname.json +++ b/tests/ne_110m_admin_0_countries/out/-zg_-yname.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/ne_110m_admin_0_countries/out/-zg_-yname.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-zg_-yname.json.check.mbtiles -zg -yname tests/ne_110m_admin_0_countries/in.json.gz", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"name\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 177,\"geometry\": \"Polygon\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"name\",\"count\": 177,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Angola\",\"Antarctica\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herz.\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Central African Rep.\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Rep.\",\"Côte d'Ivoire\",\"Dem. Rep. Congo\",\"Dem. Rep. Korea\",\"Denmark\",\"Djibouti\",\"Dominican Rep.\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Eq. Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Falkland Is.\",\"Fiji\",\"Finland\",\"Fr. S. Antarctic Lands\",\"France\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Greenland\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Korea\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Lao PDR\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Lithuania\",\"Luxembourg\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\"]}]}]}}", "maxzoom": "0", "minzoom": "0", @@ -152,7 +153,7 @@ , { "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 19.599609, 43.261206 ], [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.599609, 43.261206 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 19.599609, 43.261206 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.302734, 42.940339 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-X_-z4.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-X_-z4.json index f57c47a88..0152b6847 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-X_-z4.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-X_-z4.json @@ -3,6 +3,7 @@ "center": "-78.750000,31.461472,4", "description": "tests/ne_110m_admin_1_states_provinces_lines/out/-X_-z4.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_1_states_provinces_lines/out/-X_-z4.json.check.mbtiles -X -z4 tests/ne_110m_admin_1_states_provinces_lines/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 110,\"geometry\": \"LineString\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "4", "minzoom": "0", diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json index 962006b1f..854ef78a8 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json @@ -3,6 +3,7 @@ "center": "-82.968750,37.710240,7", "description": "tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json.check.mbtiles -lcountries -P -Z1 -z7 -b4 -xfeaturecla -xscalerank -acrol -ps tests/ne_110m_admin_1_states_provinces_lines/in.json", "json": "{\"vector_layers\": [ { \"id\": \"countries\", \"description\": \"\", \"minzoom\": 1, \"maxzoom\": 7, \"fields\": {\"adm0_a3\": \"String\", \"adm0_name\": \"String\", \"mapcolor13\": \"Number\", \"mapcolor9\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"countries\",\"count\": 110,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"adm0_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"USA\"]},{\"attribute\": \"adm0_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States of America\"]},{\"attribute\": \"mapcolor13\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"mapcolor9\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1}]}]}}", "maxzoom": "7", "minzoom": "1", diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-z0_--clip-bounding-box_-110,27,-92,52.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-z0_--clip-bounding-box_-110,27,-92,52.json index cf14e55e9..75e915ff2 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-z0_--clip-bounding-box_-110,27,-92,52.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-z0_--clip-bounding-box_-110,27,-92,52.json @@ -3,6 +3,7 @@ "center": "-92.021484,29.764377,0", "description": "tests/ne_110m_admin_1_states_provinces_lines/out/-z0_--clip-bounding-box_-110,27,-92,52.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_1_states_provinces_lines/out/-z0_--clip-bounding-box_-110,27,-92,52.json.check.mbtiles -z0 --clip-bounding-box -110,27,-92,52 tests/ne_110m_admin_1_states_provinces_lines/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"adm0_a3\": \"String\", \"adm0_name\": \"String\", \"featurecla\": \"String\", \"mapcolor13\": \"Number\", \"mapcolor9\": \"Number\", \"scalerank\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 36,\"geometry\": \"LineString\",\"attributeCount\": 6,\"attributes\": [{\"attribute\": \"adm0_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"USA\"]},{\"attribute\": \"adm0_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States of America\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-1 boundary\"]},{\"attribute\": \"mapcolor13\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"mapcolor9\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-M500_--drop-smallest-as-needed.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-M500_--drop-smallest-as-needed.json index a5ce88a64..803e8b24c 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-M500_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-M500_--drop-smallest-as-needed.json @@ -3,6 +3,7 @@ "center": "-95.625000,44.951199,5", "description": "tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-M500_--drop-smallest-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-M500_--drop-smallest-as-needed.json.check.mbtiles -z5 -M500 --drop-smallest-as-needed tests/ne_110m_admin_1_states_provinces_lines/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"adm0_a3\": \"String\", \"adm0_name\": \"String\", \"featurecla\": \"String\", \"mapcolor13\": \"Number\", \"mapcolor9\": \"Number\", \"scalerank\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 110,\"geometry\": \"LineString\",\"attributeCount\": 6,\"attributes\": [{\"attribute\": \"adm0_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"USA\"]},{\"attribute\": \"adm0_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States of America\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-1 boundary\"]},{\"attribute\": \"mapcolor13\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"mapcolor9\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-ymapcolor13_-ymapcolor9_-pSi_-d8_-D16.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-ymapcolor13_-ymapcolor9_-pSi_-d8_-D16.json index 86f013179..765aa85d3 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-ymapcolor13_-ymapcolor9_-pSi_-d8_-D16.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-ymapcolor13_-ymapcolor9_-pSi_-d8_-D16.json @@ -3,6 +3,7 @@ "center": "-84.375000,36.466030,5", "description": "tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-ymapcolor13_-ymapcolor9_-pSi_-d8_-D16.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-ymapcolor13_-ymapcolor9_-pSi_-d8_-D16.json.check.mbtiles -z5 -ymapcolor13 -ymapcolor9 -pSi -d8 -D16 tests/ne_110m_admin_1_states_provinces_lines/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"mapcolor13\": \"Number\", \"mapcolor9\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 110,\"geometry\": \"LineString\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"mapcolor13\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"mapcolor9\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-r1_-z8_-J_tests%feature-filter%places-filter.json b/tests/ne_110m_populated_places/out/-r1_-z8_-J_tests%feature-filter%places-filter.json index 1f42c89f8..c35b6321b 100644 --- a/tests/ne_110m_populated_places/out/-r1_-z8_-J_tests%feature-filter%places-filter.json +++ b/tests/ne_110m_populated_places/out/-r1_-z8_-J_tests%feature-filter%places-filter.json @@ -3,6 +3,7 @@ "center": "-62.578125,17.307462,8", "description": "tests/ne_110m_populated_places/out/-r1_-z8_-J_tests%feature-filter%places-filter.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-r1_-z8_-J_tests%feature-filter%places-filter.json.check.mbtiles -r1 -z8 -J tests/feature-filter/places-filter tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 8, \"fields\": {\"ADM0CAP\": \"Number\", \"ADM0NAME\": \"String\", \"ADM0_A3\": \"String\", \"ADM1NAME\": \"String\", \"ADMIN1_COD\": \"Number\", \"CAPALT\": \"Number\", \"CAPIN\": \"String\", \"CHANGED\": \"Number\", \"CHECKME\": \"Number\", \"CITYALT\": \"String\", \"COMPARE\": \"Number\", \"DIFFASCII\": \"Number\", \"DIFFNOTE\": \"String\", \"ELEVATION\": \"Number\", \"FEATURECLA\": \"String\", \"FEATURE_CL\": \"String\", \"FEATURE_CO\": \"String\", \"GEONAMEID\": \"Number\", \"GEONAMESNO\": \"String\", \"GN_ASCII\": \"String\", \"GN_POP\": \"Number\", \"GTOPO30\": \"Number\", \"ISO_A2\": \"String\", \"LABELRANK\": \"Number\", \"LATITUDE\": \"Number\", \"LONGITUDE\": \"Number\", \"LS_MATCH\": \"Number\", \"LS_NAME\": \"String\", \"MAX_AREAKM\": \"Number\", \"MAX_AREAMI\": \"Number\", \"MAX_BBXMAX\": \"Number\", \"MAX_BBXMIN\": \"Number\", \"MAX_BBYMAX\": \"Number\", \"MAX_BBYMIN\": \"Number\", \"MAX_NATSCA\": \"Number\", \"MAX_PERKM\": \"Number\", \"MAX_PERMI\": \"Number\", \"MAX_POP10\": \"Number\", \"MAX_POP20\": \"Number\", \"MAX_POP300\": \"Number\", \"MAX_POP310\": \"Number\", \"MAX_POP50\": \"Number\", \"MEAN_BBXC\": \"Number\", \"MEAN_BBYC\": \"Number\", \"MEGACITY\": \"Number\", \"MEGANAME\": \"String\", \"MIN_AREAKM\": \"Number\", \"MIN_AREAMI\": \"Number\", \"MIN_BBXMAX\": \"Number\", \"MIN_BBXMIN\": \"Number\", \"MIN_BBYMAX\": \"Number\", \"MIN_BBYMIN\": \"Number\", \"MIN_PERKM\": \"Number\", \"MIN_PERMI\": \"Number\", \"NAME\": \"String\", \"NAMEALT\": \"String\", \"NAMEASCII\": \"String\", \"NAMEDIFF\": \"Number\", \"NAMEPAR\": \"String\", \"NATSCALE\": \"Number\", \"POP1950\": \"Number\", \"POP1955\": \"Number\", \"POP1960\": \"Number\", \"POP1965\": \"Number\", \"POP1970\": \"Number\", \"POP1975\": \"Number\", \"POP1980\": \"Number\", \"POP1985\": \"Number\", \"POP1990\": \"Number\", \"POP1995\": \"Number\", \"POP2000\": \"Number\", \"POP2005\": \"Number\", \"POP2010\": \"Number\", \"POP2015\": \"Number\", \"POP2020\": \"Number\", \"POP2025\": \"Number\", \"POP2050\": \"Number\", \"POP_MAX\": \"Number\", \"POP_MIN\": \"Number\", \"POP_OTHER\": \"Number\", \"RANK_MAX\": \"Number\", \"RANK_MIN\": \"Number\", \"SCALERANK\": \"Number\", \"SOV0NAME\": \"String\", \"SOV_A3\": \"String\", \"TIMEZONE\": \"String\", \"UN_ADM0\": \"String\", \"UN_FID\": \"Number\", \"UN_LAT\": \"Number\", \"UN_LONG\": \"Number\", \"WORLDCITY\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 243,\"geometry\": \"Point\",\"attributeCount\": 91,\"attributes\": [{\"attribute\": \"ADM0CAP\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"ADM0NAME\",\"count\": 198,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\": \"ADM0_A3\",\"count\": 198,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\": \"ADM1NAME\",\"count\": 204,\"type\": \"string\",\"values\": [\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunción\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavský\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrës\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazán\",\"Gauteng\",\"Genève\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\": \"ADMIN1_COD\",\"count\": 53,\"type\": \"number\",\"values\": [0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,32,33,34,36,37,38,39,4,40,42,44,45,49,5,50,52,53,57,6,61,65,68,7,78,8,81,82,9],\"min\": 0,\"max\": 82},{\"attribute\": \"CAPALT\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"CAPIN\",\"count\": 20,\"type\": \"string\",\"values\": [\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\": \"CHANGED\",\"count\": 7,\"type\": \"number\",\"values\": [0,1,20,3,4,40,5],\"min\": 0,\"max\": 40},{\"attribute\": \"CHECKME\",\"count\": 2,\"type\": \"number\",\"values\": [0,5],\"min\": 0,\"max\": 5},{\"attribute\": \"CITYALT\",\"count\": 53,\"type\": \"string\",\"values\": [\"Algiers\",\"Asuncion\",\"Athens\",\"Bangkok\",\"Beirut\",\"Belgrade\",\"Bogota\",\"Bombay\",\"Brasilia\",\"Brussels\",\"Bucharest\",\"Cairo\",\"Calcutta\",\"Casablanca\",\"Copenhagen\",\"Damascus\",\"Denver\",\"Dubai\",\"Guatemala\",\"Hanoi\",\"Havana\",\"Khartoum\",\"Kiev\",\"Kuwait\",\"Lisbon\",\"Lome\",\"Los Angeles\",\"Mexico City\",\"Mogadishu\",\"Moscow\",\"Ndjamena\",\"New York\",\"Osaka\",\"Ottawa\",\"Panama\",\"Phnom Penh\",\"Prague\",\"Rangoon\",\"Riyadh\",\"Rome\",\"San Francisco\",\"San Jose\",\"Sanaa\",\"Sao Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Tripoli\",\"Urumqi\",\"Valparaiso\",\"Vienna\",\"Warsaw\",\"Washington D.C.\",\"Yaounde\"]},{\"attribute\": \"COMPARE\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"DIFFASCII\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"DIFFNOTE\",\"count\": 12,\"type\": \"string\",\"values\": [\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\": \"ELEVATION\",\"count\": 19,\"type\": \"number\",\"values\": [0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\": 0,\"max\": 2320},{\"attribute\": \"FEATURECLA\",\"count\": 6,\"type\": \"string\",\"values\": [\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\": \"FEATURE_CL\",\"count\": 1,\"type\": \"string\",\"values\": [\"P\"]},{\"attribute\": \"FEATURE_CO\",\"count\": 4,\"type\": \"string\",\"values\": [\"PPL\",\"PPLA\",\"PPLC\",\"PPLG\"]},{\"attribute\": \"GEONAMEID\",\"count\": 242,\"type\": \"number\",\"values\": [-1,1018725,1040652,1070940,108410,112931,1138958,1176615,1185241,1221874,1238992,1252416,1261481,1275004,1275339,1277333,1283240,1298824,146268,1512569,1526273,1528675,1529102,1559804,1581130,160196,160263,1609350,162183,1642911,1645457,1651944,1668341,1690681,1701668,170654,1728930,1730025,1735161,1796236,1815286,1816670,1819729,1820906,1821306,1835848,184745,1850147,1853909,1857910,1871859,1880252,202061,2028462,2075807,2081986,2088122,2108502,2110079,2110394,2113779,2135171,2144168,2147714,2158177,2172517,2193733,2198148,2220957,223817,2240449,2253354,2260535,2267057,2274895,2279755,2293538,2306104,2309527,2314302,2322794,232422,2357048,2365267,2374775,2377450,2389853,2392087,2394819,2399697,2408770,241131,2413876,2422465,2427123,2440485,2460596,2462881,2464470,250441],\"min\": -1,\"max\": 6942553},{\"attribute\": \"GEONAMESNO\",\"count\": 8,\"type\": \"string\",\"values\": [\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames rough area, rough name, requires further research.\",\"GeoNames rough area, rough name.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\",\"No GeoNames match due to small population, not in GeoNames, or poor NEV placement.\"]},{\"attribute\": \"GN_ASCII\",\"count\": 239,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Bengaluru\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Den Haag\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Ejbei Uad el Aabd\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneve\",\"Georgetown\",\"Guatemala City\",\"Ha Noi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\"]},{\"attribute\": \"GN_POP\",\"count\": 236,\"type\": \"number\",\"values\": [0,10021295,1019022,1020,1024027,10349312,10356500,10444527,1049498,1086505,1093485,1116513,11174257,11177,1122874,11285654,113364,1137347,113906,1152556,1153615,115826,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1273651,1275857,1284609,12920,1297281,1299369,13076300,13381,1353189,136473,13768,1391433,1399814,1431270,1442271,1453975,1459640,14608512,147074,150000,1508225,1536,1542813,155226,155963,1573544,15938,1619438,162135,1655753,16571,1662,1691468,1696128,1702139,1724,1742124,1767200,180541,1815679,1837969,183981,1877155,188084,1916100,194530,1963264,196731,1974647,1977663,1978028,200452,2026469,20500,208411,2087,2138,2163824,217,217000,2207718,223757,22400,224838,227940,22881,229398,234168,235017,24226],\"min\": 0,\"max\": 14608512},{\"attribute\": \"GTOPO30\",\"count\": 166,\"type\": \"number\",\"values\": [-2,-9999,0,1,10,100,1002,1006,1025,103,104,108,1092,11,110,111,1129,1149,115,1156,12,1206,1247,125,1277,128,1282,1289,1299,13,1304,131,132,133,1398,14,1448,1468,1481,1482,15,151,152,1533,156,1561,1568,159,16,164,169,17,1722,1724,173,174,1775,1808,181,183,19,199,2,20,2004,203,205,21,219,22,2216,224,228,23,235,2360,2363,24,2400,246,259,26,2620,2737,2759,2764,28,284,290,3,30,304,305,306,307,31,339,35,350,373],\"min\": -9999,\"max\": 3829},{\"attribute\": \"ISO_A2\",\"count\": 196,\"type\": \"string\",\"values\": [\"-99\",\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"]},{\"attribute\": \"LABELRANK\",\"count\": 8,\"type\": \"number\",\"values\": [0,1,2,3,5,6,7,8],\"min\": 0,\"max\": 8},{\"attribute\": \"LATITUDE\",\"count\": 242,\"type\": \"number\",\"values\": [-0.214988,-1.283347,-1.95359,-11.704158,-12.048013,-13.841545,-13.983295,-15.416644,-15.78334,-16.497974,-17.73335,-17.81779,-18.133016,-18.916637,-19.040971,-20.166639,-21.138512,-22.570006,-22.925023,-23.55868,-24.646313,-25.296403,-25.706921,-25.955277,-26.170044999999999,-26.316651,-26.466667,-29.119994,-29.316674,-3.376087,-33.047764,-33.450014,-33.920011,-34.602502,-34.858042,-35.283029,-36.850013,-37.820031,-4.259186,-4.329724,-4.616632,-41.299974,-6.174418,-6.183306,-6.800013,-8.516652,-8.559388,-8.838286,-9.437994,-9.464708,0.316659,0.333402,0.385389,1.293033,1.338188,10.500999,10.651997,11.55003,11.595014,11.865024,12.052633,12.113097,12.153017,12.370316,12.650015,12.969995,13.102003,13.148279,13.453876,13.516706,13.710002,13.749999,14.001973,14.102045,14.604159,14.621135,14.715832,14.916698,15.301016,15.333339,15.354733,15.588078,16.429991,16.783354,17.118037,17.252034,17.30203,17.966693,17.977077,18.086427,18.470073,18.541025,19.01699,19.442442,19.766557,2.066681,2.91402,21.033327,22.304981,22.494969],\"min\": -41.299974,\"max\": 64.150024},{\"attribute\": \"LONGITUDE\",\"count\": 243,\"type\": \"number\",\"values\": [-0.116722,-0.216716,-1.524724,-10.804752,-100.329985,-104.984016,-118.179981,-122.459978,-123.121644,-13.200006,-13.234216,-13.680235,-15.598361,-15.97534,-16.591701,-17.47313,-171.738642,-175.220564,-21.950014,-23.516689,-3.683352,-4.040048,-43.225021,-46.62502,-47.916052,-5.275503,-55.167031,-56.171052,-57.641505,-58.167029,-58.397531,-59.616527,-6.248906,-6.836131,-61.000008,-61.212062,-61.387013,-61.517031,-61.741643,-61.850034,-62.717009,-65.259516,-66.917037,-68.149985,-69.900085,-7.616367,-70.667041,-71.621014,-72.336035,-73.980017,-74.083344,-75.700015,-76.767434,-77.009419,-77.050062,-77.350044,-78.500051,-79.420021,-79.533037,-8.000039,-80.224106,-82.364182,-84.084051,-84.399949,-86.268492,-87.217529,-87.750055,-88.767073,-89.203041,-9.144866,-9.652522,-90.526966,-95.339979,-99.130988,1.222757,1.516486,10.179678,10.749979,100.516645,101.699983,101.701947,102.59998,103.855821,104.070019,104.916634,105.850014,106.829438,106.916616,11.516651,114.185009,114.933284,116.388286,12.447808,12.46667,12.483258,12.563486,120.569943,120.982217,121.436505,121.568333],\"min\": -175.220564,\"max\": 179.216647},{\"attribute\": \"LS_MATCH\",\"count\": 3,\"type\": \"number\",\"values\": [0,1,2],\"min\": 0,\"max\": 2},{\"attribute\": \"LS_NAME\",\"count\": 242,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\": \"MAX_AREAKM\",\"count\": 212,\"type\": \"number\",\"values\": [0,1,10,1021,103,104,105,106,10661,108,109,112,113,114,1182,118844,12,120,122,126,1275,128,130,131,1327,1332,1345,135,1373,14049,1409,141,143,145,1471,1472,1479,148,15,152,1554,157,16,160,1614,1639,16400,17,1700,1708,171,172,174,1748,177,178,179,18,181,183,184,186559,191,19435,195,197,2080,209,21,211,217,2286,23,2344,2350,236,237,2415,24244,243,244,2447,245,246,249,25,251,2667,27,270,2718,28,2836,2843,2861,2907,3,30,300,302],\"min\": 0,\"max\": 186559},{\"attribute\": \"MAX_AREAMI\",\"count\": 181,\"type\": \"number\",\"values\": [0,1,10,1030,104,1049,1095,1098,11,1105,1122,116,117,1174,12,121,122,123,1235,126,13,130,133,1331,134,135,138,139,14,140,141,143,144,146,15,154,157,1578,16,160,162,165,166,168,169,17,173,174,176,179,180,182,183,1855,188,1892,191,19271,194,195,196,198,2,20,202,20591,206,209,21,210,2109,2148,215,2220,223,224,2241,227,229,23,2408,243,245,248,251,264,266,268,27,270,272,273,274,277,28,29,3,30,305,310],\"min\": 0,\"max\": 72030},{\"attribute\": \"MAX_BBXMAX\",\"count\": 240,\"type\": \"number\",\"values\": [-1.433333,-10.658333,-100.125,-104.708333,-117.008333,-121.733333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.125,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.15,-46.108333,-47.783333,-5.216667,-55.1,-55.8,-57.316667,-57.816667,-58.116667,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.325,-72.033333,-72.716667,-74.008333,-75.45,-76.4,-76.733333,-76.833333,-77.258333,-78.291667,-78.608333,-79.4,-8.958333,-80.025,-82.208333,-83.858333,-83.975,-86.158333,-87.125,-87.141667,-88.75,-88.966667,-90.425,-95,-98.808333,0,0.033333,0.816667,1.483333,1.591667,10.575,101.016667,101.891667,102.816667,104,105,105.375,106.808333,107.041667,109.808333,11.091667,11.6,114.775,114.991667,117.325,12.481009,12.541667,12.658333,12.766667,120.65,121.333333,121.816667,121.9,125.608333],\"min\": -175.166667,\"max\": 178.533333},{\"attribute\": \"MAX_BBXMIN\",\"count\": 241,\"type\": \"number\",\"values\": [-0.35,-0.546866,-1.616667,-10.816667,-100.5,-105.241667,-118.966667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.499182,-47.056372,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-58.757731,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-66.993057,-68.258333,-7.116667,-7.7,-70.208333,-70.8,-71.658333,-72.441667,-74.091431,-74.266667,-75.983333,-76.866667,-77.153161,-77.308333,-77.4,-78.591667,-79.576315,-79.806554,-8.058333,-80.441667,-82.533333,-84.166667,-84.608333,-86.383333,-87.266667,-88.03629,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,10.440355,100.216667,101.491667,101.575,102.491667,103.383333,103.658333,104.441667,105.616287,106.473854,106.725,11.433333,113.983333,114.825,116.058333,12.316667,12.333333,12.391667,12.450494,12.983333,120.541667,120.925,121.013757,121.325],\"min\": -175.233333,\"max\": 178.425},{\"attribute\": \"MAX_BBYMAX\",\"count\": 239,\"type\": \"number\",\"values\": [-1.075,-1.083333,-11.475,-11.808333,-13.641667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.544862,-20.108333,-21.125,-22.491667,-22.575,-23.241667,-24.6,-25.1,-25.641667,-25.75,-25.941667,-26.283333,-26.391667,-29.058333,-29.241667,-32.916667,-33.175,-33.6,-33.808333,-34.366667,-34.65,-35.183333,-36.8,-37.566667,-4.15,-4.291667,-4.6,-41.2,-5.875,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.475,10.05,10.541667,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.9,14.025,14.133333,14.158333,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.825,16.416667,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.491667,19.783333,19.908333,2.116667,21.783333,23.183333,23.641667],\"min\": -41.2,\"max\": 64.166667},{\"attribute\": \"MAX_BBYMIN\",\"count\": 240,\"type\": \"number\",\"values\": [-0.30257,-1.433333,-11.758333,-12.281801,-13.866667,-14.408333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.075,-20.248073,-21.166667,-22.625,-23.033333,-23.842331,-24.7,-25.391667,-25.891667,-25.983333,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.675,-33.075,-33.556142,-34.091667,-34.108333,-34.933333,-35.008333,-35.455764,-36.964958,-38.0105,-4.333333,-4.478678,-4.65,-41.35,-6.208333,-6.383127,-6.933333,-8.583333,-8.933333,-9.441667,-9.508333,0,0.166719,0.283333,0.3,1.25,1.325,10.408333,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.516667,13.591667,13.975,14.033333,14.441667,14.571814,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.875,17.958333,18.033333,18.316667,18.491667,18.891667,19.233333,19.633333,2,2.708333,20.620237,22.056849,22.2],\"min\": -41.35,\"max\": 64.05},{\"attribute\": \"MAX_NATSCA\",\"count\": 5,\"type\": \"number\",\"values\": [0,100,20,300,50],\"min\": 0,\"max\": 300},{\"attribute\": \"MAX_PERKM\",\"count\": 198,\"type\": \"number\",\"values\": [0,101,102,1021,10224,10267,105,106,1064,107,1086,1087,109,1100,1111,112,1135,116,1161,119,11900,1192,120,1202,121,122,123,12342,13,130296,131,132,1325,133,1354,142,144,149,15,151,153,154,155,16,160,162,164,1658,166,173,174,177,1773,179,18,184,186,1891,1898,190,1901,19314,196,199,202,205,208,210,215,218,219,22,2202,223,2284,234,2388,239,2412,2440,245,2459,249,25,250,256,26,261,266,27,270,278,28,283,286,287,288,2946,296,2982],\"min\": 0,\"max\": 130296},{\"attribute\": \"MAX_PERMI\",\"count\": 189,\"type\": \"number\",\"values\": [0,10,101,102,103,1030,108,11,110,1101,111,114,115,116,1175,1179,118,1181,12001,122,123,126,127,129,130,134,135,136,1369,138,14,1419,145,1484,149,1499,1516,152,1528,155,159,16,162,165,166,168,17,172,173,176,177,179,18,1830,184,1853,187,189,19,192,194,197,198,2,20,206,21,212,213,214,215,22054,222,223,224,227,23,238,239,24,240,243,25,251,255,2581,263,27,274,28,284,285,286,292,295,309,31,3102,311,3113],\"min\": 0,\"max\": 80962},{\"attribute\": \"MAX_POP10\",\"count\": 241,\"type\": \"number\",\"values\": [0,1005257,1014546,10169723,10190861,1042928,1046787,1060587,107260,1072902,1073782,1074311,10811002,108543,1086244,10929146,11029015,1105973,1115771,111975,1122682,1123733,1124323,112927,1154222,1163890,1173386,1193251,1200842,12322855,12495084,12814908,128698,1289566,1291613,1316564,1337078,1369629,13762740,1381747,143230,144164,144390,1444949,1450902,14548962,145850,1472051,14936123,1504217,15220,1548599,1551977,1561335,1577138,1581087,1590116,1590482,159243,160966,16172884,166212,1662508,1712125,1727538,1732952,1742194,1759840,176365,1788020,1831176,1832316,1833439,1835853,1838722,1904377,191152,1946052,194824,1951272,1990917,2010175,2037124,206499,2066046,2084,2129163,2143900,2150614,2155592,218269,2182723,21887,2189383,219674,221736,224300,22534,2324568,23336],\"min\": 0,\"max\": 16172884},{\"attribute\": \"MAX_POP20\",\"count\": 241,\"type\": \"number\",\"values\": [0,1005257,1014546,10259448,1060587,107260,1072902,1073782,1074311,1076471,108543,1086244,10991915,11030955,1105973,11120470,1115771,111975,112927,1130999,11359674,1163890,1173386,11947707,1200842,1230007,128698,1289566,1291613,13143622,1316564,1337078,13414375,1381747,143230,144164,1443206,1444949,145850,1504217,15074060,15091561,15220,1551977,1577138,15779579,1581475,1588839,1590482,159243,160966,1610331,16172884,166212,1662508,1712468,17250245,1727538,1742194,17425624,176365,1788020,1823845,1826034,1829910,1831176,1831921,1833439,1835853,1836390,18577087,1874437,1892286,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2100407,2129163,21394172,2140496,2142805,2143900,2150614,2153391,218269,21887,219674,221736,2240256,224300,2244726,22534,2263899,2297630],\"min\": 0,\"max\": 24218878},{\"attribute\": \"MAX_POP300\",\"count\": 219,\"type\": \"number\",\"values\": [0,10011551,1007529,10140950,1014546,1060587,1073782,1074311,1086244,1105973,1108173,1113489,1115771,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,1337078,1381747,143230,144164,1444949,145850,14870543,1504217,15220,1551977,15645640,1577138,1581475,1590116,1590482,159243,160966,1610331,166212,1662508,16718429,1727538,1740692,1742194,1788020,18203351,1823845,1826034,1831921,1835853,1838722,1838972,1839463,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,2066046,2084,2129163,2141255,2142805,2150614,2174327,21887,219674,21991959,22031364,221736,224300,2244726,22534,2297630,2322955,23336,23366503,23647944,23700631,2419489,2443605,2445384,244896,2498797,251136,254169,2564188,262796,264350,265361,2660614,26631586],\"min\": 0,\"max\": 87652060},{\"attribute\": \"MAX_POP310\",\"count\": 45,\"type\": \"number\",\"values\": [0,10011551,10140950,1108173,11547877,1256924,12611862,1337078,137121250,14903021,15645640,1610331,18203351,18924578,18948089,20149761,21991959,2244726,224908923,2666328,26749011,30696820,31303497,3164008,3503466,3576473,3767139,3910939,40576904,4207001,42594594,44354170,4561697,4983714,5187749,5190755,5451385,5678280,6333154,8450289,8889292,9206246,9212245,968976,9960588],\"min\": 0,\"max\": 224908923},{\"attribute\": \"MAX_POP50\",\"count\": 238,\"type\": \"number\",\"values\": [0,10011551,1007529,10140950,1014546,1060587,107260,1073782,1074311,1076471,108543,1086244,1105973,1108173,1115771,111975,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,13292739,1337078,1371285,1381747,143230,144164,1444949,145850,14868745,1504217,15220,1551977,1577138,1581475,1590116,1590482,159243,160966,1610331,16406759,16510327,1651113,166212,1662508,16718429,1727538,1740692,1742194,176365,1788020,18203351,1822603,1826034,1831921,1833439,1835853,1838722,1838972,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2129163,21387676,2141255,2142805,2150614,2174327,218269,21887,219674,22017580,221736,224300,2244726,22534,2297630,2312867,2322955,2324568,23336,2395309,2419489,24374217,2443605],\"min\": 0,\"max\": 53845691},{\"attribute\": \"MEAN_BBXC\",\"count\": 242,\"type\": \"number\",\"values\": [-0.169651,-0.188893,-1.521746,-10.734923,-100.290632,-104.993967,-118.107478,-122.301354,-122.982768,-13.194643,-13.230082,-13.588647,-15.612698,-15.960139,-16.58125,-17.343779,-171.781117,-175.206798,-21.8825,-23.514907,-3.749399,-4.019846,-43.407551,-46.651489,-47.9714,-5.263708,-55.188737,-56.12273,-57.535385,-58.153788,-58.50845,-59.589731,-6.278983,-6.87491,-60.988377,-61.202183,-61.3775,-61.383365,-61.745833,-61.824059,-62.726389,-65.260317,-66.917919,-68.157765,-69.980546,-7.518511,-7.987419,-70.66127,-71.541251,-72.222424,-73.815782,-74.116517,-75.717666,-76.798044,-77.002668,-77.010199,-77.335571,-78.460061,-79.464213,-79.494919,-80.236416,-82.354344,-84.111698,-84.328739,-86.263402,-87.19911,-87.85874,-88.767803,-89.176042,-9.232769,-90.54419,-95.431928,-99.116655,0,1.190359,1.535473,10.202041,10.756508,100.545047,101.644598,101.716617,102.648054,103.821508,104.039242,104.78577,105.892881,106.883013,106.989399,11.518344,114.035195,114.908824,115.929521,12.419907,12.437175,12.462153,12.561474,120.598765,120.915044,121.053901,121.292375],\"min\": -175.206798,\"max\": 178.472885},{\"attribute\": \"MEAN_BBYC\",\"count\": 242,\"type\": \"number\",\"values\": [-0.198438,-1.249679,-11.639931,-12.041474,-13.837855,-14.028166,-15.403941,-15.824583,-16.506439,-17.728125,-17.832399,-18.106731,-18.875473,-19.030556,-2.034427,-20.221833,-21.142325,-22.551143,-22.856463,-23.558961,-24.656793,-25.307462,-25.755716,-25.880831,-26.187259,-26.315428,-26.430254,-29.128155,-29.350222,-3.227847,-33.034648,-33.461735,-33.846724,-33.954979,-34.681331,-34.828337,-35.309627,-36.896818,-37.835257,-4.251293,-4.384467,-4.626389,-41.285539,-6.162244,-6.313824,-6.833434,-8.559115,-8.851964,-9.42996,-9.433491,0,0.323809,0.338176,0.395238,1.33869,1.352586,10.451672,10.638816,11.488418,11.5715,11.871032,12.046528,12.120479,12.13336,12.365975,12.626173,12.841733,13.128773,13.145833,13.455208,13.522591,13.738798,13.761017,14.005921,14.083298,14.603015,14.742828,14.823118,14.938056,15.298056,15.327408,15.376031,15.559101,16.421065,16.85864,17.120565,17.248864,17.306019,17.967124,18.018509,18.092569,18.467176,18.56946,19.189154,19.473748,19.720606,2.054239,2.915909,20.873406,22.616509],\"min\": -41.285539,\"max\": 64.116125},{\"attribute\": \"MEGACITY\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"MEGANAME\",\"count\": 145,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asunción\",\"Athínai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogotá\",\"Brasília\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá (Panama City)\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazaïr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hong Kong\",\"Houston\",\"Hà Noi\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"København\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomé\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djaména\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\",\"Osaka-Kobe\"]},{\"attribute\": \"MIN_AREAKM\",\"count\": 200,\"type\": \"number\",\"values\": [0,1,10,1010,1035,104,105,1054,106,1078,108,109,1093,1100,1114,112,1121,1124,113,1137,114,12,120,122,1249,126,1265,128,130,1303,131,1338,1345,141,143,1432,1434,145,1479,148,15,1561,16,160,166,1675,169,17,171,172,174,177,178,179,18,181,183,184,187,191,1914,192,195,197,202,209,21,211,2130,217,218,224,226,23,233,236,237,2388,244,2443,245,246,2490,25,2512,257,264,27,270,275,2761,278,28,3,30,305,310,316,317,32],\"min\": 0,\"max\": 5912},{\"attribute\": \"MIN_AREAMI\",\"count\": 166,\"type\": \"number\",\"values\": [0,1,10,102,104,106,1066,107,11,118,12,120,122,125,127,129,13,131,133,134,135,1362,139,14,144,146,1464,147,15,156,158,16,160,165,166,168,169,17,171,172,174,178,179,183,185,188,189,191,194,195,196,198,2,20,202,205,206,207,21,215,220,227,2283,229,23,232,247,257,26,266,268,269,27,270,273,279,28,29,298,3,30,310,313,315,32,330,334,34,342,345,347,35,351,37,375,38,390,4,40,400],\"min\": 0,\"max\": 2283},{\"attribute\": \"MIN_BBXMAX\",\"count\": 240,\"type\": \"number\",\"values\": [-0.098725,-1.433333,-10.658333,-100.125,-104.866667,-117.857183,-122.358333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.2,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.158333,-46.383333,-47.783333,-5.216667,-55.107566,-55.8,-57.543999,-58.116667,-58.175,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.57441,-72.033333,-73.574946,-74.008333,-75.45,-76.733333,-76.752653,-76.85,-77.258333,-78.291667,-79.130272,-79.4,-8.958333,-80.175719,-82.208333,-83.879976,-83.983333,-86.158333,-87.141667,-87.528138,-88.75,-88.966667,-90.425,-95.133333,-99.018165,0,0.307108,1.483333,1.591667,10.497585,100.844293,101.841667,101.891667,102.725,104,104.433333,105,106.2294,106.932506,107.041667,11.091667,11.6,114.3,114.991667,117.208333,12.481009,12.541667,12.658333,12.766667,120.65,121.038985,121.622484,121.9],\"min\": -175.166667,\"max\": 178.533333},{\"attribute\": \"MIN_BBXMIN\",\"count\": 238,\"type\": \"number\",\"values\": [-0.35,-1.091667,-1.616667,-10.816667,-100.5,-105.241667,-118.991667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.75,-47.058333,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-59.016667,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-67.133333,-68.258333,-7.116667,-7.7,-70.208333,-70.958333,-71.658333,-72.441667,-74.266667,-74.75,-75.983333,-76.866667,-77.166667,-77.4,-77.533333,-78.591667,-79.591667,-8.058333,-80.008333,-80.466667,-82.533333,-84.366667,-84.875,-86.383333,-87.266667,-88.408333,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,1.658333,10.333333,101.358333,102.491667,103.125,103.633333,104.441667,104.975,105.891667,106.725,11.433333,111.441667,112.533333,114.825,119.016667,12.116667,12.333333,12.391667,12.958333,12.983333,120.141667,120.541667,120.741667,125.516667],\"min\": -175.233333,\"max\": 178.425},{\"attribute\": \"MIN_BBYMAX\",\"count\": 241,\"type\": \"number\",\"values\": [-1.083333,-1.76663,-11.475,-11.808333,-13.691667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.95,-20.108333,-21.125,-22.491667,-22.837896,-23.358333,-24.6,-25.208333,-25.641667,-25.75,-25.991667,-26.283333,-26.391667,-29.058333,-29.241667,-33.016667,-33.175,-33.641667,-33.808333,-34.375,-34.65,-35.183333,-36.825,-37.589905,-4.15,-4.291667,-4.6,-41.2,-6.016667,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.425,10.041667,10.533671,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.872295,13.9,14.025,14.133333,14.702876,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.699422,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.308333,19.640315,19.783333,2.116667,21.319209,22.4,22.575491],\"min\": -41.2,\"max\": 64.166667},{\"attribute\": \"MIN_BBYMIN\",\"count\": 237,\"type\": \"number\",\"values\": [-0.391667,-1.433333,-11.758333,-12.316667,-13.866667,-14.433333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.991667,-20.333333,-21.166667,-22.625,-23.033333,-23.891667,-24.7,-25.491667,-25.891667,-25.991667,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.841667,-33.075,-33.7,-34.091667,-34.108333,-34.933333,-35.008333,-35.483333,-37.091667,-38.208333,-4.333333,-4.5,-4.65,-41.35,-6.208333,-6.933333,-7.716667,-8.583333,-8.933333,-9.441667,-9.508333,0,0.033333,0.283333,0.3,1.25,1.325,10.325,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.5,13.591667,13.975,14.016667,14.033333,14.433333,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.8,17.958333,18.033333,18.316667,18.491667,18.891667,19.2,19.283333,19.633333,19.866667,2,2.7,21.925],\"min\": -41.35,\"max\": 64.05},{\"attribute\": \"MIN_PERKM\",\"count\": 192,\"type\": \"number\",\"values\": [0,101,102,105,106,109,112,1148,116,1175,1180,119,120,121,122,123,1257,126,128,13,130,131,132,133,136,1360,1365,137,142,1439,144,149,1494,15,153,155,156,158,16,160,162,164,166,170,173,174,175,177,18,1837,184,186,190,1908,196,199,201,203,205,208,215,217,219,22,2219,222,223,228,2296,233,237,239,240,244,245,249,25,250,251,256,258,26,261,266,27,274,28,280,287,288,293,295,30,304,309,31,310,311,315,318],\"min\": 0,\"max\": 2296},{\"attribute\": \"MIN_PERMI\",\"count\": 181,\"type\": \"number\",\"values\": [0,10,100,101,102,103,106,108,109,11,110,114,1141,115,116,118,1186,122,123,124,125,126,127,129,130,134,135,136,1379,138,14,142,1427,145,147,149,152,155,156,159,16,160,162,165,17,170,174,179,18,182,183,189,19,192,193,196,197,198,2,20,21,211,215,216,217,219,221,222,224,227,23,231,234,238,24,240,243,247,248,25,251,254,255,27,274,276,28,285,286,289,29,290,291,293,295,300,302,309,31,317],\"min\": 0,\"max\": 1427},{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\": \"NAMEALT\",\"count\": 43,\"type\": \"string\",\"values\": [\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asunción\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogotá\",\"Brasília\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de México\",\"Ciudad de Panamá|Panama City|Panama\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazaïr\",\"Hà Noi\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lomé\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djaména\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Pénh\",\"San Francisco-Oakland\",\"San José\",\"Sana'a'\",\"Sao Paulo|São Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaíso\",\"Washington D.C.\",\"Yangon\",\"Yaoundé\",\"Ürümqi|Wulumqi\"]},{\"attribute\": \"NAMEASCII\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\": \"NAMEDIFF\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"NAMEPAR\",\"count\": 12,\"type\": \"string\",\"values\": [\"Athínai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\": \"NATSCALE\",\"count\": 8,\"type\": \"number\",\"values\": [10,110,20,200,30,300,50,600],\"min\": 10,\"max\": 600},{\"attribute\": \"POP1950\",\"count\": 135,\"type\": \"number\",\"values\": [0,1002,1016,1021,104,1041,106,1066,1068,110,111,1116,11275,1212,1216,12338,129,1298,1302,1304,1322,133,1332,1347,1360,137,138,1415,143,145,1452,148,15,150,1544,1618,1682,1690,1700,171,177,18,183,1855,1884,194,20,202,206,208,2086,211,219,22,2334,24,2494,253,258,275,280,281,282,284,2857,287,2883,2950,305,31,319,32,322,328,33,3352,336,341,356,36,364,366,367,392,4046,411,4147,418,4331,4513,46,468,4999,505,5098,513,516,522,5356,556],\"min\": 0,\"max\": 12338},{\"attribute\": \"POP1955\",\"count\": 139,\"type\": \"number\",\"values\": [0,1016,104,106,1091,110,111,112,1227,1248,1249,125,1289,129,1306,131,13219,136,1365,1368,13713,1396,140,1405,1440,1449,148,1539,1553,1563,1574,1618,1712,1714,174,182,184,186,1872,189,1906,192,1972,201,2018,2021,2087,21,2121,2143,220,235,246,25,252,257,265,27,28,281,292,3029,3044,312,314,3299,34,340,342,3432,3592,37,370,374,376,377,3801,387,40,405,409,41,414,425,431,439,451,46,461,4628,468,49,498,501,5055,5120,5154,53,533,556],\"min\": 0,\"max\": 13713},{\"attribute\": \"POP1960\",\"count\": 141,\"type\": \"number\",\"values\": [0,1001,1002,1005,1019,1106,1119,112,1147,1151,1163,1165,1166,119,124,1269,128,1284,1285,130,1316,1361,137,14164,1436,1453,1485,1514,156,1592,162,1634,16679,174,1744,1756,179,181,1811,1814,1823,1851,1873,192,1980,199,2089,2135,2151,218,219,2200,2274,23,230,233,236,2361,2392,2456,247,248,252,2620,263,2679,283,293,311,319,3260,34,344,347,359,3680,382,384,389,393,3970,40,4060,415,419,433,4374,438,440,443,446,448,45,476,4945,5012,508,519,538,551],\"min\": 0,\"max\": 16679},{\"attribute\": \"POP1965\",\"count\": 143,\"type\": \"number\",\"values\": [0,1003,1038,1049,109,111,112,1132,1135,1154,1165,1206,121,1212,1229,1230,1288,132,1323,1327,1373,1377,138,1389,1396,146,148,15177,1525,158,1598,160,1614,1657,169,1709,172,1760,1780,1878,1880,2001,20284,2068,208,2080,2093,2121,2135,222,227,2284,2294,233,235,2361,2390,248,2511,2584,259,268,269,2780,2829,287,2898,29,298,299,303,310,315,319,3191,322,3232,3297,337,339,3452,360,369,394,399,404,436,45,461,472,473,4738,477,478,481,482,4854,488,499,51],\"min\": 0,\"max\": 20284},{\"attribute\": \"POP1970\",\"count\": 138,\"type\": \"number\",\"values\": [0,1029,1035,1045,1054,1070,1076,111,1114,1182,1254,1267,1274,129,1298,1300,1307,1341,1362,1374,1380,1396,1403,1414,1444,147,1505,155,1568,1592,1615,16191,163,164,1655,1693,1741,1779,1817,183,192,1946,206,2060,2070,2075,2141,222,223,23298,2334,238,2383,2485,2488,2529,2535,2647,2667,272,2772,278,298,2980,3110,3135,3206,3290,340,3458,3521,3534,357,359,363,366,371,388,3915,398,408,417,433,451,455,459,460,472,48,494,500,501,507,525,531,5312,532,548,552,553],\"min\": 0,\"max\": 23298},{\"attribute\": \"POP1975\",\"count\": 142,\"type\": \"number\",\"values\": [0,100,1015,1016,10690,107,1120,1122,1126,1150,1172,1198,1206,1339,1348,1386,1403,141,1429,1444,1482,149,1499,1500,1547,15880,1589,1610,1612,1622,167,1702,1709,1793,180,1848,1884,1890,1911,1926,198,2005,2023,2030,2059,2103,2111,2151,2221,226,2263,231,2342,240,2561,257,2590,2620,2626,26615,2738,2770,284,292,2960,3040,3130,3138,329,3300,356,3600,363,3696,3842,385,3890,3943,398,4273,440,443,445,454,456,4813,485,4999,500,528,530,532,572,575,581,582,596,6034,611,624],\"min\": 0,\"max\": 26615},{\"attribute\": \"POP1980\",\"count\": 143,\"type\": \"number\",\"values\": [0,1042,1055,1057,1074,1090,1096,1164,1175,1179,12089,1240,1247,125,128,1293,13010,1318,1356,1376,1384,1416,1454,15601,1565,1574,1609,1621,1623,1625,1654,1656,1701,1818,1842,1865,189,1891,1913,1992,2049,2053,2057,2109,2201,2217,225,2293,2378,238,2415,2424,2449,254,257,2572,2575,2606,2656,274,2765,2777,2812,28549,2987,3008,3056,3122,3145,3227,324,325,3266,337,3390,344,3525,361,371,3721,415,423,4253,4397,4438,446,4609,469,4723,489,5079,525,526,533,538,550,551,580,5955,5984],\"min\": 0,\"max\": 28549},{\"attribute\": \"POP1985\",\"count\": 144,\"type\": \"number\",\"values\": [0,1012,1013,1016,10181,1029,10341,10350,1046,1056,1090,1121,1122,1123,1160,1162,1177,1181,1197,1295,13395,1359,1396,14109,1437,1474,1476,1508,1546,1559,1566,15827,1585,1596,1611,1654,1660,1672,168,1681,1714,1716,1773,1879,1925,1950,1958,2005,2036,204,2069,2195,2213,2273,2406,2410,2446,2518,260,2629,2639,2658,2693,2709,2793,2805,2854,2935,297,30304,3047,3060,3063,3355,3395,3429,3432,344,345,3500,3521,3607,393,402,4087,412,4201,424,427,4355,460,466,4660,471,492,5070,5116,514,5279,5407],\"min\": 0,\"max\": 30304},{\"attribute\": \"POP1990\",\"count\": 144,\"type\": \"number\",\"values\": [0,1035,1038,1042,1047,10513,10544,1062,1088,10883,10890,1091,11035,1120,1134,1161,1162,1174,1175,1191,1197,1212,1224,12308,1293,1306,1316,1380,1392,1405,14776,1500,1522,1528,15312,1546,1559,1568,1607,16086,1628,1680,1691,1733,1760,1791,1863,1898,1908,2005,2026,2040,2096,2100,2102,2108,2155,2184,219,2325,2360,2526,2537,2561,2574,2594,2682,2711,2767,2907,2922,2955,2961,3016,3070,3117,3126,32530,330,3376,3422,343,3448,3450,3632,3807,3969,398,4036,4092,432,4414,4616,473,4740,4764,477,504,529,537],\"min\": 0,\"max\": 32530},{\"attribute\": \"POP1995\",\"count\": 144,\"type\": \"number\",\"values\": [0,10174,10256,1034,10423,1045,1048,11052,1107,11154,11339,1138,1142,1147,1149,1160,1168,1169,1190,11924,1194,1213,1217,1255,1267,1268,1287,1379,14111,1415,1417,1427,1584,15948,1616,1649,1652,1668,1670,1678,16811,1688,16943,1715,1747,1755,1766,1789,1804,1849,1893,1953,2018,2116,2127,2157,2183,2257,2265,2295,2394,2442,2535,2590,2600,2676,2781,2816,2838,2842,289,2951,2961,3035,3095,3122,3213,3242,3257,3353,33587,3403,3424,3425,3471,3478,3651,3839,4197,4431,4447,452,4598,464,4701,4744,4964,509,526,542],\"min\": 0,\"max\": 33587},{\"attribute\": \"POP2000\",\"count\": 141,\"type\": \"number\",\"values\": [0,10016,1005,1007,1019,1023,10285,1032,10534,1063,1072,1073,1077,1079,10803,1084,1096,1097,1100,1110,1111,11165,1127,1128,1160,1172,11814,11847,1192,1201,1206,1219,1233,13058,1306,13243,1357,1361,1365,1379,1390,1487,1499,1507,1561,16086,1653,1666,1674,1700,17099,1730,1733,17846,1787,18022,1806,1854,1877,1949,1959,1963,1998,2029,2044,2116,2135,2158,2187,2233,2493,2591,2606,2640,2672,2715,2732,2746,2752,2754,2864,3032,3043,3117,3179,3236,3266,3384,3385,3433,34450,3542,3553,3567,3752,3849,3919,3949,4017,4078],\"min\": 0,\"max\": 34450},{\"attribute\": \"POP2005\",\"count\": 143,\"type\": \"number\",\"values\": [0,1023,1037,10416,1042,1044,10717,10761,1085,1093,1094,1103,1106,1119,11258,1140,11469,11487,1164,1166,1189,1216,1217,12307,1248,12553,12576,1261,1272,1273,1315,1318,1334,1363,1368,1374,1405,1409,1415,14282,14503,1489,1515,1525,1527,1590,1593,1647,1693,1742,1762,1775,1777,1801,1805,18202,18333,1867,18732,18735,1885,1888,1936,1984,2025,2062,2093,2098,2158,2189,2241,2264,2330,2434,2606,2672,2679,2762,2787,2902,2930,2994,3012,3087,3138,3199,3230,3258,3265,3341,3348,3387,3391,35327,3533,3564,3572,3579,3641,3928],\"min\": 0,\"max\": 35327},{\"attribute\": \"POP2010\",\"count\": 143,\"type\": \"number\",\"values\": [0,10061,1024,1031,1041,10452,1059,1060,1085,1099,1100,1102,11100,11106,1115,11294,1145,1149,1162,11748,1185,11893,1245,12500,1264,12795,1281,1284,1328,1338,13485,1355,1379,1420,1433,1446,1448,1452,1466,14787,1494,14987,1513,1572,1576,1590,1611,1679,1697,1701,1705,1707,1743,1805,1846,1870,18845,1892,18978,19028,19040,1942,1998,2008,2063,2121,2146,2151,2154,2174,2184,2189,2313,2315,2466,2603,2604,2709,2812,2930,2985,3010,3100,3112,3181,3215,3242,3277,3300,3339,3354,3406,3435,3450,35676,3599,3712,3716,3728,3802],\"min\": 0,\"max\": 35676},{\"attribute\": \"POP2015\",\"count\": 144,\"type\": \"number\",\"values\": [0,1022,1024,1027,1029,1044,10495,10530,10572,1087,1096,1098,1102,1104,1106,1108,1127,11337,1139,1160,11662,11741,1182,1185,1212,12171,12503,12773,1285,13089,1321,1324,1374,1379,1409,1421,14796,1500,1504,1505,1516,1519,1520,15577,15789,1597,1621,1645,1651,1663,1664,1669,1692,1708,1724,1744,1787,1793,1804,1846,1877,1931,1941,19441,1947,19485,19582,1994,20072,2030,2159,2209,2219,2247,2298,2305,2322,2332,2340,2345,2385,2396,2651,2675,2748,2856,2890,3098,3256,3267,3319,3333,3346,3357,3363,3423,3453,3544,3574,36094],\"min\": 0,\"max\": 36094},{\"attribute\": \"POP2020\",\"count\": 143,\"type\": \"number\",\"values\": [0,10007,1004,1015,1029,10524,1064,10792,1092,1102,1108,1113,11177,11313,11365,1152,1159,1165,1169,1177,1185,1232,1233,12403,1258,12775,12786,1281,1284,12842,1308,13160,13432,13465,1398,1405,1457,1482,1506,1527,1587,1649,1655,1670,1676,17015,17039,1709,17214,1729,1735,1744,1794,1804,1839,1864,1879,1921,1938,1949,1979,1984,19974,2006,20189,2028,2035,2038,2051,20544,2058,2130,2151,21946,2229,2277,2310,2416,2451,2502,2525,2532,2558,2592,2620,2621,2688,2770,2862,2955,2981,2996,3275,3278,3306,3330,3434,3453,3475,3504],\"min\": 0,\"max\": 36371},{\"attribute\": \"POP2025\",\"count\": 144,\"type\": \"number\",\"values\": [0,10031,1011,1044,10526,1078,1095,1102,1104,1114,1132,11368,1148,1159,11689,11695,1195,1196,1200,1236,1257,1268,1274,1317,13179,1321,1326,13461,13653,13807,13875,13892,1413,14134,1441,14451,1481,1515,1544,1578,1580,1627,1653,1655,1736,1744,1753,1776,1797,1804,1820,18466,18707,1883,1894,1938,19422,1949,2027,2037,20370,20695,2083,2097,2111,21124,2119,2142,2150,2189,2235,2312,2380,2393,24051,2410,2457,2476,2506,2590,2633,2636,2642,2713,2722,2772,2790,2851,2971,3012,3041,3058,3104,3293,3300,3330,3436,3482,3537,3600],\"min\": 0,\"max\": 36399},{\"attribute\": \"POP2050\",\"count\": 143,\"type\": \"number\",\"values\": [0,10036,10526,1089,1096,1102,1112,1114,11368,1159,1163,1193,12102,1220,1236,12363,1315,1320,1332,13413,1343,1359,13672,13768,1406,1411,14545,1461,1472,1475,14808,1520,15561,15796,1604,1655,16762,1690,1715,1736,1737,1744,1759,1804,1883,1902,1907,1938,19412,1949,2028,2047,20560,20628,2077,2083,21009,21428,2150,2172,2173,2178,2187,22015,2222,2247,2316,2444,2496,2529,2549,2560,2632,26385,2661,2715,2772,2791,2855,2856,2885,2892,2911,2956,3038,3086,3118,3198,3214,3305,3326,3330,3346,3358,3382,3436,3605,3619,3630,36400],\"min\": 0,\"max\": 36400},{\"attribute\": \"POP_MAX\",\"count\": 240,\"type\": \"number\",\"values\": [10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,1245000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\": 500,\"max\": 35676000},{\"attribute\": \"POP_MIN\",\"count\": 243,\"type\": \"number\",\"values\": [10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,199200,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226],\"min\": 200,\"max\": 14608512},{\"attribute\": \"POP_OTHER\",\"count\": 218,\"type\": \"number\",\"values\": [0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,140594,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,243794,2456292,2470140],\"min\": 0,\"max\": 16803572},{\"attribute\": \"RANK_MAX\",\"count\": 12,\"type\": \"number\",\"values\": [10,11,12,13,14,2,4,5,6,7,8,9],\"min\": 2,\"max\": 14},{\"attribute\": \"RANK_MIN\",\"count\": 14,\"type\": \"number\",\"values\": [1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\": 1,\"max\": 14},{\"attribute\": \"SCALERANK\",\"count\": 8,\"type\": \"number\",\"values\": [0,1,2,3,4,6,7,8],\"min\": 0,\"max\": 8},{\"attribute\": \"SOV0NAME\",\"count\": 197,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\": \"SOV_A3\",\"count\": 197,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\": \"TIMEZONE\",\"count\": 187,\"type\": \"string\",\"values\": [\"Africa/Abidjan\",\"Africa/Accra\",\"Africa/Addis_Ababa\",\"Africa/Algiers\",\"Africa/Asmara\",\"Africa/Bamako\",\"Africa/Bangui\",\"Africa/Banjul\",\"Africa/Bissau\",\"Africa/Blantyre\",\"Africa/Brazzaville\",\"Africa/Bujumbura\",\"Africa/Cairo\",\"Africa/Casablanca\",\"Africa/Conakry\",\"Africa/Dakar\",\"Africa/Dar_es_Salaam\",\"Africa/Djibouti\",\"Africa/Douala\",\"Africa/El_Aaiun\",\"Africa/Freetown\",\"Africa/Gaborone\",\"Africa/Harare\",\"Africa/Johannesburg\",\"Africa/Kampala\",\"Africa/Khartoum\",\"Africa/Kigali\",\"Africa/Kinshasa\",\"Africa/Lagos\",\"Africa/Libreville\",\"Africa/Lome\",\"Africa/Luanda\",\"Africa/Lusaka\",\"Africa/Malabo\",\"Africa/Maputo\",\"Africa/Maseru\",\"Africa/Mbabane\",\"Africa/Mogadishu\",\"Africa/Monrovia\",\"Africa/Nairobi\",\"Africa/Ndjamena\",\"Africa/Niamey\",\"Africa/Nouakchott\",\"Africa/Ouagadougou\",\"Africa/Porto-Novo\",\"Africa/Tunis\",\"Africa/Windhoek\",\"America/Antigua\",\"America/Argentina/Buenos_Aires\",\"America/Belize\",\"America/Bogota\",\"America/Caracas\",\"America/Chicago\",\"America/Dominica\",\"America/Fortaleza\",\"America/Grenada\",\"America/Guatemala\",\"America/Guayaquil\",\"America/Guyana\",\"America/Havana\",\"America/Jamaica\",\"America/La_Paz\",\"America/Lima\",\"America/Los_Angeles\",\"America/Managua\",\"America/Mexico_City\",\"America/Monterrey\",\"America/Montreal\",\"America/Nassau\",\"America/New_York\",\"America/Panama\",\"America/Paramaribo\",\"America/Port-au-Prince\",\"America/Port_of_Spain\",\"America/Sao_Paulo\",\"America/St_Kitts\",\"America/Tegucigalpa\",\"America/Toronto\",\"America/Vancouver\",\"Asia/Amman\",\"Asia/Ashgabat\",\"Asia/Baghdad\",\"Asia/Bahrain\",\"Asia/Baku\",\"Asia/Bangkok\",\"Asia/Beirut\",\"Asia/Bishkek\",\"Asia/Brunei\",\"Asia/Chongqing\",\"Asia/Colombo\",\"Asia/Dhaka\",\"Asia/Dili\",\"Asia/Dubai\",\"Asia/Dushanbe\",\"Asia/Harbin\",\"Asia/Ho_Chi_Minh\",\"Asia/Hong_Kong\",\"Asia/Jakarta\",\"Asia/Jerusalem\",\"Asia/Kabul\"]},{\"attribute\": \"UN_ADM0\",\"count\": 116,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Algeria\",\"Angola\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Benin\",\"Bolivia\",\"Brazil\",\"Bulgaria\",\"Burkina Faso\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Chad\",\"Chile\",\"China\",\"China, Hong Kong Special Administrative Region\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Cuba\",\"Czech Republic\",\"Côte d'Ivoire\",\"Democratic People's Republic of Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Ethiopia\",\"Finland\",\"France\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Haiti\",\"Honduras\",\"Hungary\",\"India\",\"Indonesia\",\"Iran (Islamic Republic of)\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Japan\",\"Jordan\",\"Kenya\",\"Kuwait\",\"Kyrgyzstan\",\"Lebanon\",\"Liberia\",\"Libyan Arab Jamahiriya\",\"Madagascar\",\"Malaysia\",\"Mali\",\"Mexico\",\"Mongolia\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Nepal\",\"Netherlands\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"Norway\",\"Pakistan\",\"Panama\",\"Paraguay\",\"Peru\",\"Philippines\",\"Poland\",\"Portugal\",\"Republic of Korea\",\"Romania\",\"Russian Federation\",\"Rwanda\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Sierra Leone\",\"Singapore\",\"Somalia\",\"South Africa\",\"Spain\",\"Sudan\",\"Sweden\",\"Syrian Arab Republic\"]},{\"attribute\": \"UN_FID\",\"count\": 145,\"type\": \"number\",\"values\": [0,111,118,13,14,15,16,161,166,168,17,171,172,173,174,175,176,178,179,18,180,182,183,189,191,192,196,198,2,200,201,206,207,208,209,210,211,219,24,245,253,274,276,280,297,3,300,302,304,308,31,310,313,315,318,320,321,322,324,327,336,339,340,341,342,344,345,348,349,352,359,367,369,372,375,376,377,378,379,381,382,384,385,386,392,397,4,401,408,409,411,414,418,419,422,426,439,440,444,447],\"min\": 0,\"max\": 589},{\"attribute\": \"UN_LAT\",\"count\": 145,\"type\": \"number\",\"values\": [-0.22,-1.26,-1.95,-12.08,-15.42,-15.79,-17.82,-18.9,-22.72,-23.58,-25.3,-25.73,-25.96,-26.17,-33.02,-33.88,-33.97,-34.62,-34.92,-36.9,-37.85,-4.28,-4.32,-6.16,-6.81,-8.81,0,0.32,1.26,10.49,11.56,12.1,12.15,12.48,12.65,12.97,13.51,13.7,13.75,14.09,14.61,14.68,15.36,15.55,16.87,18.48,18.52,19.07,19.42,19.75,2.04,21.03,22.27,22.54,23.04,23.7,24.15,24.65,25.03,25.27,25.67,25.83,27.71,29.38,29.77,3.14,3.86,30.07,30.67,31.24,31.94,32.04,33.33,33.49,33.6,33.71,33.79,33.88,34,34.01,34.34,34.53,34.63,35,35.68,35.77,36.78,37.54,37.79,37.94,38.72,38.89,39.02,39.57,39.9,39.92,4.63,40.2,40.32,40.44],\"min\": -37.85,\"max\": 60.19},{\"attribute\": \"UN_LONG\",\"count\": 144,\"type\": \"number\",\"values\": [-0.17,-0.2,-1.67,-10.79,-100.31,-105.07,-110.3,-118.25,-122.38,-122.96,-13.23,-13.67,-17.45,-3.69,-4.02,-43.45,-46.62,-47.89,-56.16,-57.62,-58.44,-6.25,-6.83,-66.89,-69.89,-7.63,-7.98,-71.55,-72.34,-73.9,-74.08,-75.65,-76.95,-77.04,-78.52,-79.41,-79.51,-80.27,-80.96,-82.41,-84.07,-84.34,-86.27,-87.2,-87.64,-89.2,-9.12,-90.52,-95.4,-99.12,0,1.2,10.71,100.51,101.7,103.83,104.07,104.91,105.82,106.8,106.91,11.51,114.17,116.38,12.51,12.54,120.96,121.47,121.5,125.75,126.93,13.23,13.32,135.51,135.75,139.8,14.45,145.07,15.24,15.28,15.29,151.02,16.32,17.99,174.76,18.48,19.09,2.12,2.43,20.41,21.01,23.33,23.65,24.97,26.12,27.57,28,28.17,28.21,29],\"min\": -122.96,\"max\": 174.76},{\"attribute\": \"WORLDCITY\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1}]}]}}", "maxzoom": "8", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME.json b/tests/ne_110m_populated_places/out/-yNAME.json index 4ccdfa576..e0ea53384 100644 --- a/tests/ne_110m_populated_places/out/-yNAME.json +++ b/tests/ne_110m_populated_places/out/-yNAME.json @@ -3,6 +3,7 @@ "center": "-175.220564,-21.135745,14", "description": "tests/ne_110m_populated_places/out/-yNAME.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME.json.check.mbtiles -yNAME tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 14, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 243,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "14", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json b/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json index 21e900d5e..1b8826219 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json.check.mbtiles -yNAME -Ccat -z5 tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1559,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z0_-c.%tests%filter%null.json b/tests/ne_110m_populated_places/out/-yNAME_-z0_-c.%tests%filter%null.json index af4c5cb13..44b295d4a 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z0_-c.%tests%filter%null.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z0_-c.%tests%filter%null.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/ne_110m_populated_places/out/-yNAME_-z0_-c.%tests%filter%null.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z0_-c.%tests%filter%null.json.check.mbtiles -yNAME -z0 -c./tests/filter/null tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"unknown\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"unknown\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 57,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afg.\"]},{\"attribute\": \"abbrev_len\",\"count\": 1,\"type\": \"number\",\"values\": [4],\"min\": 4,\"max\": 4},{\"attribute\": \"adm0_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"admin\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"brk_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"brk_diff\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"brk_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"continent\",\"count\": 1,\"type\": \"string\",\"values\": [\"Asia\"]},{\"attribute\": \"economy\",\"count\": 1,\"type\": \"string\",\"values\": [\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 1,\"type\": \"string\",\"values\": [\"Islamic State of Afghanistan\"]},{\"attribute\": \"gdp_md_est\",\"count\": 1,\"type\": \"number\",\"values\": [22270],\"min\": 22270,\"max\": 22270},{\"attribute\": \"gdp_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"gu_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"homepart\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 1,\"type\": \"string\",\"values\": [\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 1,\"type\": \"string\",\"values\": [\"AF\"]},{\"attribute\": \"iso_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"iso_n3\",\"count\": 1,\"type\": \"string\",\"values\": [\"004\"]},{\"attribute\": \"labelrank\",\"count\": 1,\"type\": \"number\",\"values\": [3],\"min\": 3,\"max\": 3},{\"attribute\": \"lastcensus\",\"count\": 1,\"type\": \"number\",\"values\": [1979],\"min\": 1979,\"max\": 1979},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 1,\"type\": \"number\",\"values\": [11],\"min\": 11,\"max\": 11},{\"attribute\": \"mapcolor13\",\"count\": 1,\"type\": \"number\",\"values\": [7],\"min\": 7,\"max\": 7},{\"attribute\": \"mapcolor7\",\"count\": 1,\"type\": \"number\",\"values\": [5],\"min\": 5,\"max\": 5},{\"attribute\": \"mapcolor8\",\"count\": 1,\"type\": \"number\",\"values\": [6],\"min\": 6,\"max\": 6},{\"attribute\": \"mapcolor9\",\"count\": 1,\"type\": \"number\",\"values\": [8],\"min\": 8,\"max\": 8},{\"attribute\": \"name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"name_len\",\"count\": 1,\"type\": \"number\",\"values\": [11],\"min\": 11,\"max\": 11},{\"attribute\": \"name_long\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"name_sort\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"pop_est\",\"count\": 1,\"type\": \"number\",\"values\": [28400000],\"min\": 28400000,\"max\": 28400000},{\"attribute\": \"pop_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"postal\",\"count\": 1,\"type\": \"string\",\"values\": [\"AF\"]},{\"attribute\": \"region_un\",\"count\": 1,\"type\": \"string\",\"values\": [\"Asia\"]},{\"attribute\": \"region_wb\",\"count\": 1,\"type\": \"string\",\"values\": [\"South Asia\"]},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"sov_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"sovereignt\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"su_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"su_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"subregion\",\"count\": 1,\"type\": \"string\",\"values\": [\"Southern Asia\"]},{\"attribute\": \"subunit\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"tiny\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"type\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"004\"]},{\"attribute\": \"wb_a2\",\"count\": 1,\"type\": \"string\",\"values\": [\"AF\"]},{\"attribute\": \"wb_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"wikipedia\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json index d65888c08..a3772b7a4 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json @@ -3,6 +3,7 @@ "center": "11.250000,48.378236,4", "description": "tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json.check.mbtiles -yNAME -z4 --no-tile-stats tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"NAME\": \"String\"} } ]}", "maxzoom": "4", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%remove.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%remove.json index 18d867f7c..030407aff 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%remove.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%remove.json @@ -3,6 +3,7 @@ "center": "11.250000,48.378236,4", "description": "tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%remove.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%remove.json.check.mbtiles -yNAME -z4 -C./tests/filter/remove tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"unknown\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"unknown\",\"count\": 1303,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "4", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename.json index ffd101c5b..4b06d2ce1 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename.json @@ -3,6 +3,7 @@ "center": "11.250000,48.378236,4", "description": "tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename.json.check.mbtiles -yNAME -z4 -C./tests/filter/rename tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"renamed\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"renamed\",\"count\": 1303,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "4", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename_-c.%tests%filter%rename2.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename_-c.%tests%filter%rename2.json index 33d0594e3..c7f6630c1 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename_-c.%tests%filter%rename2.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename_-c.%tests%filter%rename2.json @@ -3,6 +3,7 @@ "center": "11.250000,48.378236,4", "description": "tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename_-c.%tests%filter%rename2.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%tests%filter%rename_-c.%tests%filter%rename2.json.check.mbtiles -yNAME -z4 -C./tests/filter/rename -c./tests/filter/rename2 tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"renamed_again\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"renamed_again\",\"count\": 458,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "4", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5.json b/tests/ne_110m_populated_places/out/-yNAME_-z5.json index 13973742a..58df11375 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_populated_places/out/-yNAME_-z5.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z5.json.check.mbtiles -yNAME -z5 tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 243,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json index 2c4d5670f..34ff7d1ce 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json.check.mbtiles -yNAME -z5 --drop-smallest-as-needed tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 243,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json index f9f770a73..0c596e57e 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json.check.mbtiles -yNAME -z5 -B3 tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 243,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%tests%filter%rename.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%tests%filter%rename.json index cdb6e7a40..87ca15a70 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%tests%filter%rename.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%tests%filter%rename.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%tests%filter%rename.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%tests%filter%rename.json.check.mbtiles -yNAME -z5 -c./tests/filter/rename tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"renamed\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"renamed\",\"count\": 493,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json index f977e0418..a028edc3d 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json.check.mbtiles -yNAME -z5 -ccat tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 493,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json index 8c654f3d5..6a567723c 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json @@ -3,6 +3,7 @@ "center": "16.875000,44.951199,5", "description": "tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json.check.mbtiles -yNAME -z5 -r1.5 tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 243,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "5", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-z0_--clip-bounding-box_-110,27,-92,52.json b/tests/ne_110m_populated_places/out/-z0_--clip-bounding-box_-110,27,-92,52.json index f570b7dbf..cf64a2e63 100644 --- a/tests/ne_110m_populated_places/out/-z0_--clip-bounding-box_-110,27,-92,52.json +++ b/tests/ne_110m_populated_places/out/-z0_--clip-bounding-box_-110,27,-92,52.json @@ -3,6 +3,7 @@ "center": "-95.361328,29.840644,0", "description": "tests/ne_110m_populated_places/out/-z0_--clip-bounding-box_-110,27,-92,52.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z0_--clip-bounding-box_-110,27,-92,52.json.check.mbtiles -z0 --clip-bounding-box -110,27,-92,52 tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"ADM0CAP\": \"Number\", \"ADM0NAME\": \"String\", \"ADM0_A3\": \"String\", \"ADM1NAME\": \"String\", \"ADMIN1_COD\": \"Number\", \"CAPALT\": \"Number\", \"CHANGED\": \"Number\", \"CHECKME\": \"Number\", \"CITYALT\": \"String\", \"COMPARE\": \"Number\", \"DIFFASCII\": \"Number\", \"DIFFNOTE\": \"String\", \"ELEVATION\": \"Number\", \"FEATURECLA\": \"String\", \"GEONAMEID\": \"Number\", \"GEONAMESNO\": \"String\", \"GN_ASCII\": \"String\", \"GN_POP\": \"Number\", \"GTOPO30\": \"Number\", \"ISO_A2\": \"String\", \"LABELRANK\": \"Number\", \"LATITUDE\": \"Number\", \"LONGITUDE\": \"Number\", \"LS_MATCH\": \"Number\", \"LS_NAME\": \"String\", \"MAX_AREAKM\": \"Number\", \"MAX_AREAMI\": \"Number\", \"MAX_BBXMAX\": \"Number\", \"MAX_BBXMIN\": \"Number\", \"MAX_BBYMAX\": \"Number\", \"MAX_BBYMIN\": \"Number\", \"MAX_NATSCA\": \"Number\", \"MAX_PERKM\": \"Number\", \"MAX_PERMI\": \"Number\", \"MAX_POP10\": \"Number\", \"MAX_POP20\": \"Number\", \"MAX_POP300\": \"Number\", \"MAX_POP310\": \"Number\", \"MAX_POP50\": \"Number\", \"MEAN_BBXC\": \"Number\", \"MEAN_BBYC\": \"Number\", \"MEGACITY\": \"Number\", \"MEGANAME\": \"String\", \"MIN_AREAKM\": \"Number\", \"MIN_AREAMI\": \"Number\", \"MIN_BBXMAX\": \"Number\", \"MIN_BBXMIN\": \"Number\", \"MIN_BBYMAX\": \"Number\", \"MIN_BBYMIN\": \"Number\", \"MIN_PERKM\": \"Number\", \"MIN_PERMI\": \"Number\", \"NAME\": \"String\", \"NAMEALT\": \"String\", \"NAMEASCII\": \"String\", \"NAMEDIFF\": \"Number\", \"NATSCALE\": \"Number\", \"POP1950\": \"Number\", \"POP1955\": \"Number\", \"POP1960\": \"Number\", \"POP1965\": \"Number\", \"POP1970\": \"Number\", \"POP1975\": \"Number\", \"POP1980\": \"Number\", \"POP1985\": \"Number\", \"POP1990\": \"Number\", \"POP1995\": \"Number\", \"POP2000\": \"Number\", \"POP2005\": \"Number\", \"POP2010\": \"Number\", \"POP2015\": \"Number\", \"POP2020\": \"Number\", \"POP2025\": \"Number\", \"POP2050\": \"Number\", \"POP_MAX\": \"Number\", \"POP_MIN\": \"Number\", \"POP_OTHER\": \"Number\", \"RANK_MAX\": \"Number\", \"RANK_MIN\": \"Number\", \"SCALERANK\": \"Number\", \"SOV0NAME\": \"String\", \"SOV_A3\": \"String\", \"UN_ADM0\": \"String\", \"UN_FID\": \"Number\", \"UN_LAT\": \"Number\", \"UN_LONG\": \"Number\", \"WORLDCITY\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 2,\"geometry\": \"Point\",\"attributeCount\": 86,\"attributes\": [{\"attribute\": \"ADM0CAP\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"ADM0NAME\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States of America\"]},{\"attribute\": \"ADM0_A3\",\"count\": 1,\"type\": \"string\",\"values\": [\"USA\"]},{\"attribute\": \"ADM1NAME\",\"count\": 2,\"type\": \"string\",\"values\": [\"Colorado\",\"Texas\"]},{\"attribute\": \"ADMIN1_COD\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"CAPALT\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"CHANGED\",\"count\": 1,\"type\": \"number\",\"values\": [5],\"min\": 5,\"max\": 5},{\"attribute\": \"CHECKME\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"CITYALT\",\"count\": 1,\"type\": \"string\",\"values\": [\"Denver\"]},{\"attribute\": \"COMPARE\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"DIFFASCII\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"DIFFNOTE\",\"count\": 1,\"type\": \"string\",\"values\": [\"Changed scale rank.\"]},{\"attribute\": \"ELEVATION\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"FEATURECLA\",\"count\": 2,\"type\": \"string\",\"values\": [\"Admin-1 capital\",\"Populated place\"]},{\"attribute\": \"GEONAMEID\",\"count\": 2,\"type\": \"number\",\"values\": [4699066,5419384],\"min\": 4699066,\"max\": 5419384},{\"attribute\": \"GEONAMESNO\",\"count\": 1,\"type\": \"string\",\"values\": [\"GeoNames match general + researched.\"]},{\"attribute\": \"GN_ASCII\",\"count\": 2,\"type\": \"string\",\"values\": [\"Denver\",\"Houston\"]},{\"attribute\": \"GN_POP\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"GTOPO30\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"ISO_A2\",\"count\": 1,\"type\": \"string\",\"values\": [\"US\"]},{\"attribute\": \"LABELRANK\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"LATITUDE\",\"count\": 2,\"type\": \"number\",\"values\": [29.819974,39.739188],\"min\": 29.819974,\"max\": 39.739188},{\"attribute\": \"LONGITUDE\",\"count\": 2,\"type\": \"number\",\"values\": [-104.984016,-95.339979],\"min\": -104.984016,\"max\": -95.339979},{\"attribute\": \"LS_MATCH\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"LS_NAME\",\"count\": 2,\"type\": \"string\",\"values\": [\"Denver\",\"Houston\"]},{\"attribute\": \"MAX_AREAKM\",\"count\": 2,\"type\": \"number\",\"values\": [1345,3041],\"min\": 1345,\"max\": 3041},{\"attribute\": \"MAX_AREAMI\",\"count\": 2,\"type\": \"number\",\"values\": [1174,519],\"min\": 519,\"max\": 1174},{\"attribute\": \"MAX_BBXMAX\",\"count\": 2,\"type\": \"number\",\"values\": [-104.708333,-95],\"min\": -104.708333,\"max\": -95},{\"attribute\": \"MAX_BBXMIN\",\"count\": 2,\"type\": \"number\",\"values\": [-105.241667,-95.841667],\"min\": -105.241667,\"max\": -95.841667},{\"attribute\": \"MAX_BBYMAX\",\"count\": 2,\"type\": \"number\",\"values\": [30.266667,40.025],\"min\": 30.266667,\"max\": 40.025},{\"attribute\": \"MAX_BBYMIN\",\"count\": 2,\"type\": \"number\",\"values\": [29.491667,39.5],\"min\": 29.491667,\"max\": 39.5},{\"attribute\": \"MAX_NATSCA\",\"count\": 1,\"type\": \"number\",\"values\": [100],\"min\": 100,\"max\": 100},{\"attribute\": \"MAX_PERKM\",\"count\": 2,\"type\": \"number\",\"values\": [1773,606],\"min\": 606,\"max\": 1773},{\"attribute\": \"MAX_PERMI\",\"count\": 2,\"type\": \"number\",\"values\": [1101,376],\"min\": 376,\"max\": 1101},{\"attribute\": \"MAX_POP10\",\"count\": 2,\"type\": \"number\",\"values\": [1548599,3647574],\"min\": 1548599,\"max\": 3647574},{\"attribute\": \"MAX_POP20\",\"count\": 2,\"type\": \"number\",\"values\": [2100407,4287078],\"min\": 2100407,\"max\": 4287078},{\"attribute\": \"MAX_POP300\",\"count\": 2,\"type\": \"number\",\"values\": [2174327,4352341],\"min\": 2174327,\"max\": 4352341},{\"attribute\": \"MAX_POP310\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"MAX_POP50\",\"count\": 2,\"type\": \"number\",\"values\": [2174327,4352341],\"min\": 2174327,\"max\": 4352341},{\"attribute\": \"MEAN_BBXC\",\"count\": 2,\"type\": \"number\",\"values\": [-104.993967,-95.431928],\"min\": -104.993967,\"max\": -95.431928},{\"attribute\": \"MEAN_BBYC\",\"count\": 2,\"type\": \"number\",\"values\": [29.810477,39.72985],\"min\": 29.810477,\"max\": 39.72985},{\"attribute\": \"MEGACITY\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"MEGANAME\",\"count\": 2,\"type\": \"string\",\"values\": [\"Denver-Aurora\",\"Houston\"]},{\"attribute\": \"MIN_AREAKM\",\"count\": 2,\"type\": \"number\",\"values\": [2388,909],\"min\": 909,\"max\": 2388},{\"attribute\": \"MIN_AREAMI\",\"count\": 2,\"type\": \"number\",\"values\": [351,922],\"min\": 351,\"max\": 922},{\"attribute\": \"MIN_BBXMAX\",\"count\": 2,\"type\": \"number\",\"values\": [-104.866667,-95.133333],\"min\": -104.866667,\"max\": -95.133333},{\"attribute\": \"MIN_BBXMIN\",\"count\": 2,\"type\": \"number\",\"values\": [-105.241667,-95.841667],\"min\": -105.241667,\"max\": -95.841667},{\"attribute\": \"MIN_BBYMAX\",\"count\": 2,\"type\": \"number\",\"values\": [30.258915,39.958333],\"min\": 30.258915,\"max\": 39.958333},{\"attribute\": \"MIN_BBYMIN\",\"count\": 2,\"type\": \"number\",\"values\": [29.475,39.5],\"min\": 29.475,\"max\": 39.5},{\"attribute\": \"MIN_PERKM\",\"count\": 2,\"type\": \"number\",\"values\": [1257,371],\"min\": 371,\"max\": 1257},{\"attribute\": \"MIN_PERMI\",\"count\": 2,\"type\": \"number\",\"values\": [231,781],\"min\": 231,\"max\": 781},{\"attribute\": \"NAME\",\"count\": 2,\"type\": \"string\",\"values\": [\"Denver\",\"Houston\"]},{\"attribute\": \"NAMEALT\",\"count\": 1,\"type\": \"string\",\"values\": [\"Denver-Aurora\"]},{\"attribute\": \"NAMEASCII\",\"count\": 2,\"type\": \"string\",\"values\": [\"Denver\",\"Houston\"]},{\"attribute\": \"NAMEDIFF\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"NATSCALE\",\"count\": 1,\"type\": \"number\",\"values\": [300],\"min\": 300,\"max\": 300},{\"attribute\": \"POP1950\",\"count\": 2,\"type\": \"number\",\"values\": [505,709],\"min\": 505,\"max\": 709},{\"attribute\": \"POP1955\",\"count\": 2,\"type\": \"number\",\"values\": [641,904],\"min\": 641,\"max\": 904},{\"attribute\": \"POP1960\",\"count\": 2,\"type\": \"number\",\"values\": [1151,809],\"min\": 809,\"max\": 1151},{\"attribute\": \"POP1965\",\"count\": 2,\"type\": \"number\",\"values\": [1396,923],\"min\": 923,\"max\": 1396},{\"attribute\": \"POP1970\",\"count\": 2,\"type\": \"number\",\"values\": [1054,1693],\"min\": 1054,\"max\": 1693},{\"attribute\": \"POP1975\",\"count\": 2,\"type\": \"number\",\"values\": [1198,2030],\"min\": 1198,\"max\": 2030},{\"attribute\": \"POP1980\",\"count\": 2,\"type\": \"number\",\"values\": [1356,2424],\"min\": 1356,\"max\": 2424},{\"attribute\": \"POP1985\",\"count\": 2,\"type\": \"number\",\"values\": [1437,2658],\"min\": 1437,\"max\": 2658},{\"attribute\": \"POP1990\",\"count\": 2,\"type\": \"number\",\"values\": [1528,2922],\"min\": 1528,\"max\": 2922},{\"attribute\": \"POP1995\",\"count\": 2,\"type\": \"number\",\"values\": [1747,3353],\"min\": 1747,\"max\": 3353},{\"attribute\": \"POP2000\",\"count\": 2,\"type\": \"number\",\"values\": [1998,3849],\"min\": 1998,\"max\": 3849},{\"attribute\": \"POP2005\",\"count\": 2,\"type\": \"number\",\"values\": [2241,4324],\"min\": 2241,\"max\": 4324},{\"attribute\": \"POP2010\",\"count\": 2,\"type\": \"number\",\"values\": [2313,4459],\"min\": 2313,\"max\": 4459},{\"attribute\": \"POP2015\",\"count\": 2,\"type\": \"number\",\"values\": [2396,4609],\"min\": 2396,\"max\": 4609},{\"attribute\": \"POP2020\",\"count\": 2,\"type\": \"number\",\"values\": [2502,4790],\"min\": 2502,\"max\": 4790},{\"attribute\": \"POP2025\",\"count\": 2,\"type\": \"number\",\"values\": [2590,4936],\"min\": 2590,\"max\": 4936},{\"attribute\": \"POP2050\",\"count\": 2,\"type\": \"number\",\"values\": [2661,5049],\"min\": 2661,\"max\": 5049},{\"attribute\": \"POP_MAX\",\"count\": 2,\"type\": \"number\",\"values\": [2313000,4459000],\"min\": 2313000,\"max\": 4459000},{\"attribute\": \"POP_MIN\",\"count\": 2,\"type\": \"number\",\"values\": [1548599,3647574],\"min\": 1548599,\"max\": 3647574},{\"attribute\": \"POP_OTHER\",\"count\": 2,\"type\": \"number\",\"values\": [1521278,3607616],\"min\": 1521278,\"max\": 3607616},{\"attribute\": \"RANK_MAX\",\"count\": 1,\"type\": \"number\",\"values\": [12],\"min\": 12,\"max\": 12},{\"attribute\": \"RANK_MIN\",\"count\": 1,\"type\": \"number\",\"values\": [12],\"min\": 12,\"max\": 12},{\"attribute\": \"SCALERANK\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"SOV0NAME\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States\"]},{\"attribute\": \"SOV_A3\",\"count\": 1,\"type\": \"string\",\"values\": [\"USA\"]},{\"attribute\": \"UN_ADM0\",\"count\": 1,\"type\": \"string\",\"values\": [\"United States of America\"]},{\"attribute\": \"UN_FID\",\"count\": 2,\"type\": \"number\",\"values\": [537,542],\"min\": 537,\"max\": 542},{\"attribute\": \"UN_LAT\",\"count\": 2,\"type\": \"number\",\"values\": [29.77,39.57],\"min\": 29.77,\"max\": 39.57},{\"attribute\": \"UN_LONG\",\"count\": 2,\"type\": \"number\",\"values\": [-105.07,-95.4],\"min\": -105.07,\"max\": -95.4},{\"attribute\": \"WORLDCITY\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-z0_--tile-stats-attributes-limit_5_--tile-stats-sample-values-limit_200_--tile-stats-values-limit_20.json b/tests/ne_110m_populated_places/out/-z0_--tile-stats-attributes-limit_5_--tile-stats-sample-values-limit_200_--tile-stats-values-limit_20.json index edbfd8c87..97a0492d2 100644 --- a/tests/ne_110m_populated_places/out/-z0_--tile-stats-attributes-limit_5_--tile-stats-sample-values-limit_200_--tile-stats-values-limit_20.json +++ b/tests/ne_110m_populated_places/out/-z0_--tile-stats-attributes-limit_5_--tile-stats-sample-values-limit_200_--tile-stats-values-limit_20.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/ne_110m_populated_places/out/-z0_--tile-stats-attributes-limit_5_--tile-stats-sample-values-limit_200_--tile-stats-values-limit_20.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z0_--tile-stats-attributes-limit_5_--tile-stats-sample-values-limit_200_--tile-stats-values-limit_20.json.check.mbtiles -z0 --tile-stats-attributes-limit 5 --tile-stats-sample-values-limit 200 --tile-stats-values-limit 20 tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"ADM0CAP\": \"Number\", \"ADM0NAME\": \"String\", \"ADM0_A3\": \"String\", \"ADM1NAME\": \"String\", \"ADMIN1_COD\": \"Number\", \"CAPALT\": \"Number\", \"CAPIN\": \"String\", \"CHANGED\": \"Number\", \"CHECKME\": \"Number\", \"CITYALT\": \"String\", \"COMPARE\": \"Number\", \"DIFFASCII\": \"Number\", \"DIFFNOTE\": \"String\", \"ELEVATION\": \"Number\", \"FEATURECLA\": \"String\", \"FEATURE_CL\": \"String\", \"FEATURE_CO\": \"String\", \"GEONAMEID\": \"Number\", \"GEONAMESNO\": \"String\", \"GN_ASCII\": \"String\", \"GN_POP\": \"Number\", \"GTOPO30\": \"Number\", \"ISO_A2\": \"String\", \"LABELRANK\": \"Number\", \"LATITUDE\": \"Number\", \"LONGITUDE\": \"Number\", \"LS_MATCH\": \"Number\", \"LS_NAME\": \"String\", \"MAX_AREAKM\": \"Number\", \"MAX_AREAMI\": \"Number\", \"MAX_BBXMAX\": \"Number\", \"MAX_BBXMIN\": \"Number\", \"MAX_BBYMAX\": \"Number\", \"MAX_BBYMIN\": \"Number\", \"MAX_NATSCA\": \"Number\", \"MAX_PERKM\": \"Number\", \"MAX_PERMI\": \"Number\", \"MAX_POP10\": \"Number\", \"MAX_POP20\": \"Number\", \"MAX_POP300\": \"Number\", \"MAX_POP310\": \"Number\", \"MAX_POP50\": \"Number\", \"MEAN_BBXC\": \"Number\", \"MEAN_BBYC\": \"Number\", \"MEGACITY\": \"Number\", \"MEGANAME\": \"String\", \"MIN_AREAKM\": \"Number\", \"MIN_AREAMI\": \"Number\", \"MIN_BBXMAX\": \"Number\", \"MIN_BBXMIN\": \"Number\", \"MIN_BBYMAX\": \"Number\", \"MIN_BBYMIN\": \"Number\", \"MIN_PERKM\": \"Number\", \"MIN_PERMI\": \"Number\", \"NAME\": \"String\", \"NAMEALT\": \"String\", \"NAMEASCII\": \"String\", \"NAMEDIFF\": \"Number\", \"NAMEPAR\": \"String\", \"NATSCALE\": \"Number\", \"POP1950\": \"Number\", \"POP1955\": \"Number\", \"POP1960\": \"Number\", \"POP1965\": \"Number\", \"POP1970\": \"Number\", \"POP1975\": \"Number\", \"POP1980\": \"Number\", \"POP1985\": \"Number\", \"POP1990\": \"Number\", \"POP1995\": \"Number\", \"POP2000\": \"Number\", \"POP2005\": \"Number\", \"POP2010\": \"Number\", \"POP2015\": \"Number\", \"POP2020\": \"Number\", \"POP2025\": \"Number\", \"POP2050\": \"Number\", \"POP_MAX\": \"Number\", \"POP_MIN\": \"Number\", \"POP_OTHER\": \"Number\", \"RANK_MAX\": \"Number\", \"RANK_MIN\": \"Number\", \"SCALERANK\": \"Number\", \"SOV0NAME\": \"String\", \"SOV_A3\": \"String\", \"TIMEZONE\": \"String\", \"UN_ADM0\": \"String\", \"UN_FID\": \"Number\", \"UN_LAT\": \"Number\", \"UN_LONG\": \"Number\", \"WORLDCITY\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 243,\"geometry\": \"Point\",\"attributeCount\": 5,\"attributes\": [{\"attribute\": \"ADM0CAP\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"ADM0NAME\",\"count\": 198,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\"]},{\"attribute\": \"ADM0_A3\",\"count\": 198,\"type\": \"string\",\"values\": [\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\"]},{\"attribute\": \"ADM1NAME\",\"count\": 200,\"type\": \"string\",\"values\": [\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunción\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\"]},{\"attribute\": \"ADMIN1_COD\",\"count\": 53,\"type\": \"number\",\"values\": [0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26],\"min\": 0,\"max\": 82},{\"attribute\": \"CAPALT\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"CAPIN\",\"count\": 20,\"type\": \"string\",\"values\": [\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\": \"CHANGED\",\"count\": 7,\"type\": \"number\",\"values\": [0,1,20,3,4,40,5],\"min\": 0,\"max\": 40},{\"attribute\": \"CHECKME\",\"count\": 2,\"type\": \"number\",\"values\": [0,5],\"min\": 0,\"max\": 5},{\"attribute\": \"CITYALT\",\"count\": 53,\"type\": \"string\",\"values\": [\"Algiers\",\"Asuncion\",\"Athens\",\"Bangkok\",\"Beirut\",\"Belgrade\",\"Bogota\",\"Bombay\",\"Brasilia\",\"Brussels\",\"Bucharest\",\"Cairo\",\"Calcutta\",\"Casablanca\",\"Copenhagen\",\"Damascus\",\"Denver\",\"Dubai\",\"Guatemala\",\"Hanoi\"]},{\"attribute\": \"COMPARE\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"DIFFASCII\",\"count\": 2,\"type\": \"number\",\"values\": [0,1],\"min\": 0,\"max\": 1},{\"attribute\": \"DIFFNOTE\",\"count\": 12,\"type\": \"string\",\"values\": [\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\": \"ELEVATION\",\"count\": 19,\"type\": \"number\",\"values\": [0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\": 0,\"max\": 2320},{\"attribute\": \"FEATURECLA\",\"count\": 6,\"type\": \"string\",\"values\": [\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\": \"FEATURE_CL\",\"count\": 1,\"type\": \"string\",\"values\": [\"P\"]},{\"attribute\": \"FEATURE_CO\",\"count\": 4,\"type\": \"string\",\"values\": [\"PPL\",\"PPLA\",\"PPLC\",\"PPLG\"]},{\"attribute\": \"GEONAMEID\",\"count\": 200,\"type\": \"number\",\"values\": [-1,1018725,1040652,1070940,108410,112931,1138958,1176615,1185241,1221874,1238992,1252416,1261481,1275004,1275339,1277333,1283240,1298824,146268,1512569],\"min\": -1,\"max\": 6942553},{\"attribute\": \"GEONAMESNO\",\"count\": 8,\"type\": \"string\",\"values\": [\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames rough area, rough name, requires further research.\",\"GeoNames rough area, rough name.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\",\"No GeoNames match due to small population, not in GeoNames, or poor NEV placement.\"]},{\"attribute\": \"GN_ASCII\",\"count\": 200,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\"]}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-z0_-C.%tests%filter%null.json b/tests/ne_110m_populated_places/out/-z0_-C.%tests%filter%null.json index 1ea4d48ad..7fde384ab 100644 --- a/tests/ne_110m_populated_places/out/-z0_-C.%tests%filter%null.json +++ b/tests/ne_110m_populated_places/out/-z0_-C.%tests%filter%null.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/ne_110m_populated_places/out/-z0_-C.%tests%filter%null.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z0_-C.%tests%filter%null.json.check.mbtiles -z0 -C./tests/filter/null tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"unknown\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"unknown\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 57,\"attributes\": [{\"attribute\": \"abbrev\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afg.\"]},{\"attribute\": \"abbrev_len\",\"count\": 1,\"type\": \"number\",\"values\": [4],\"min\": 4,\"max\": 4},{\"attribute\": \"adm0_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"adm0_a3_is\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"adm0_a3_un\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_a3_us\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"adm0_a3_wb\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"adm0_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"admin\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"brk_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"brk_diff\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"brk_name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"continent\",\"count\": 1,\"type\": \"string\",\"values\": [\"Asia\"]},{\"attribute\": \"economy\",\"count\": 1,\"type\": \"string\",\"values\": [\"7. Least developed region\"]},{\"attribute\": \"featurecla\",\"count\": 1,\"type\": \"string\",\"values\": [\"Admin-0 country\"]},{\"attribute\": \"formal_en\",\"count\": 1,\"type\": \"string\",\"values\": [\"Islamic State of Afghanistan\"]},{\"attribute\": \"gdp_md_est\",\"count\": 1,\"type\": \"number\",\"values\": [22270],\"min\": 22270,\"max\": 22270},{\"attribute\": \"gdp_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"geou_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"geounit\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"gu_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"homepart\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"income_grp\",\"count\": 1,\"type\": \"string\",\"values\": [\"5. Low income\"]},{\"attribute\": \"iso_a2\",\"count\": 1,\"type\": \"string\",\"values\": [\"AF\"]},{\"attribute\": \"iso_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"iso_n3\",\"count\": 1,\"type\": \"string\",\"values\": [\"004\"]},{\"attribute\": \"labelrank\",\"count\": 1,\"type\": \"number\",\"values\": [3],\"min\": 3,\"max\": 3},{\"attribute\": \"lastcensus\",\"count\": 1,\"type\": \"number\",\"values\": [1979],\"min\": 1979,\"max\": 1979},{\"attribute\": \"level\",\"count\": 1,\"type\": \"number\",\"values\": [2],\"min\": 2,\"max\": 2},{\"attribute\": \"long_len\",\"count\": 1,\"type\": \"number\",\"values\": [11],\"min\": 11,\"max\": 11},{\"attribute\": \"mapcolor13\",\"count\": 1,\"type\": \"number\",\"values\": [7],\"min\": 7,\"max\": 7},{\"attribute\": \"mapcolor7\",\"count\": 1,\"type\": \"number\",\"values\": [5],\"min\": 5,\"max\": 5},{\"attribute\": \"mapcolor8\",\"count\": 1,\"type\": \"number\",\"values\": [6],\"min\": 6,\"max\": 6},{\"attribute\": \"mapcolor9\",\"count\": 1,\"type\": \"number\",\"values\": [8],\"min\": 8,\"max\": 8},{\"attribute\": \"name\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"name_len\",\"count\": 1,\"type\": \"number\",\"values\": [11],\"min\": 11,\"max\": 11},{\"attribute\": \"name_long\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"name_sort\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"pop_est\",\"count\": 1,\"type\": \"number\",\"values\": [28400000],\"min\": 28400000,\"max\": 28400000},{\"attribute\": \"pop_year\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"postal\",\"count\": 1,\"type\": \"string\",\"values\": [\"AF\"]},{\"attribute\": \"region_un\",\"count\": 1,\"type\": \"string\",\"values\": [\"Asia\"]},{\"attribute\": \"region_wb\",\"count\": 1,\"type\": \"string\",\"values\": [\"South Asia\"]},{\"attribute\": \"scalerank\",\"count\": 1,\"type\": \"number\",\"values\": [1],\"min\": 1,\"max\": 1},{\"attribute\": \"sov_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"sovereignt\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"su_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"su_dif\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"subregion\",\"count\": 1,\"type\": \"string\",\"values\": [\"Southern Asia\"]},{\"attribute\": \"subunit\",\"count\": 1,\"type\": \"string\",\"values\": [\"Afghanistan\"]},{\"attribute\": \"tiny\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"type\",\"count\": 1,\"type\": \"string\",\"values\": [\"Sovereign country\"]},{\"attribute\": \"un_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"004\"]},{\"attribute\": \"wb_a2\",\"count\": 1,\"type\": \"string\",\"values\": [\"AF\"]},{\"attribute\": \"wb_a3\",\"count\": 1,\"type\": \"string\",\"values\": [\"AFG\"]},{\"attribute\": \"wikipedia\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99},{\"attribute\": \"woe_id\",\"count\": 1,\"type\": \"number\",\"values\": [-99],\"min\": -99,\"max\": -99}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-z0_-r1_-yNAME_-ySOV0NAME_-yELEVATION_-YNAME@City_-YSOV0NAME@Country.json b/tests/ne_110m_populated_places/out/-z0_-r1_-yNAME_-ySOV0NAME_-yELEVATION_-YNAME@City_-YSOV0NAME@Country.json index 720ee9791..6e896f296 100644 --- a/tests/ne_110m_populated_places/out/-z0_-r1_-yNAME_-ySOV0NAME_-yELEVATION_-YNAME@City_-YSOV0NAME@Country.json +++ b/tests/ne_110m_populated_places/out/-z0_-r1_-yNAME_-ySOV0NAME_-yELEVATION_-YNAME@City_-YSOV0NAME@Country.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/ne_110m_populated_places/out/-z0_-r1_-yNAME_-ySOV0NAME_-yELEVATION_-YNAME@City_-YSOV0NAME@Country.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z0_-r1_-yNAME_-ySOV0NAME_-yELEVATION_-YNAME@City_-YSOV0NAME@Country.json.check.mbtiles -z0 -r1 -yNAME -ySOV0NAME -yELEVATION -YNAME:City -YSOV0NAME:Country tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"ELEVATION\": \"Number\", \"NAME\": \"City\", \"SOV0NAME\": \"Country\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 243,\"geometry\": \"Point\",\"attributeCount\": 3,\"attributes\": [{\"attribute\": \"ELEVATION\",\"count\": 19,\"type\": \"number\",\"values\": [0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\": 0,\"max\": 2320},{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\": \"SOV0NAME\",\"count\": 197,\"type\": \"string\",\"values\": [\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%tests%filter%remove.json b/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%tests%filter%remove.json index dab6d65ee..ea74df706 100644 --- a/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%tests%filter%remove.json +++ b/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%tests%filter%remove.json @@ -3,6 +3,7 @@ "center": "11.250000,48.378236,4", "description": "tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%tests%filter%remove.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%tests%filter%remove.json.check.mbtiles -z4 -yNAME -c./tests/filter/remove tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"unknown\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {\"NAME\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"unknown\",\"count\": 458,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "4", "minzoom": "0", diff --git a/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME.json b/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME.json index d597579a8..ab0021ea5 100644 --- a/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME.json +++ b/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME.json @@ -3,6 +3,7 @@ "center": "22.500000,20.489949,3", "description": "tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME.json.check.mbtiles -zg -K20 -r1 -yNAME tests/ne_110m_populated_places/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {\"NAME\": \"String\", \"clustered\": \"Boolean\", \"point_count\": \"Number\", \"sqrt_point_count\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 243,\"geometry\": \"Point\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"NAME\",\"count\": 243,\"type\": \"string\",\"values\": [\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\": \"clustered\",\"count\": 1,\"type\": \"boolean\",\"values\": [true]},{\"attribute\": \"point_count\",\"count\": 15,\"type\": \"number\",\"values\": [10,11,12,13,14,15,19,2,29,3,4,5,6,8,9],\"min\": 2,\"max\": 29},{\"attribute\": \"sqrt_point_count\",\"count\": 15,\"type\": \"number\",\"values\": [1.410000,1.730000,2.000000,2.240000,2.450000,2.830000,3.000000,3.160000,3.320000,3.460000,3.610000,3.740000,3.870000,4.360000,5.390000],\"min\": 1.41,\"max\": 5.39}]}]}}", "maxzoom": "3", "minzoom": "0", diff --git a/tests/nested/out/-z0_--preserve-input-order.json b/tests/nested/out/-z0_--preserve-input-order.json index 6539e987d..33dc17817 100644 --- a/tests/nested/out/-z0_--preserve-input-order.json +++ b/tests/nested/out/-z0_--preserve-input-order.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/nested/out/-z0_--preserve-input-order.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/nested/out/-z0_--preserve-input-order.json.check.mbtiles -z0 --preserve-input-order tests/nested/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"deeper\": \"String\", \"deeper2\": \"String\", \"more\": \"String\", \"more2\": \"String\", \"nested\": \"String\", \"nested2\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 7,\"geometry\": \"LineString\",\"attributeCount\": 6,\"attributes\": [{\"attribute\": \"deeper\",\"count\": 1,\"type\": \"string\",\"values\": [\"[{\\\"type\\\":\\\"Feature\\\",\\\"properties\\\":{},\\\"geometry\\\":{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[2,2]}}]\"]},{\"attribute\": \"deeper2\",\"count\": 1,\"type\": \"string\",\"values\": [\"[{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[2,2]}]\"]},{\"attribute\": \"more\",\"count\": 1,\"type\": \"string\",\"values\": [\"{\\\"something\\\":{\\\"type\\\":\\\"Feature\\\",\\\"properties\\\":{},\\\"geometry\\\":{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[2,2]}}}\"]},{\"attribute\": \"more2\",\"count\": 1,\"type\": \"string\",\"values\": [\"{\\\"something\\\":{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[2,2]}}\"]},{\"attribute\": \"nested\",\"count\": 1,\"type\": \"string\",\"values\": [\"{\\\"type\\\":\\\"Feature\\\",\\\"properties\\\":{},\\\"geometry\\\":{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[2,2]}}\"]},{\"attribute\": \"nested2\",\"count\": 1,\"type\": \"string\",\"values\": [\"{\\\"type\\\":\\\"Point\\\",\\\"coordinates\\\":[2,2]}\"]}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/nonascii/out/-z0.json b/tests/nonascii/out/-z0.json index 33774e964..11b24e731 100644 --- a/tests/nonascii/out/-z0.json +++ b/tests/nonascii/out/-z0.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/nonascii/out/-z0.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/nonascii/out/-z0.json.check.mbtiles -z0 tests/nonascii/@@@.json 'tests/nonascii/堤防.json'", "json": "{\"vector_layers\": [ { \"id\": \"unknown0\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} }, { \"id\": \"堤防\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"unknown0\",\"count\": 1,\"geometry\": \"LineString\",\"attributeCount\": 0,\"attributes\": []},{\"layer\": \"堤防\",\"count\": 1,\"geometry\": \"LineString\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/nullisland/out/-b0_-z4.json b/tests/nullisland/out/-b0_-z4.json index 8e149f957..bd7755459 100644 --- a/tests/nullisland/out/-b0_-z4.json +++ b/tests/nullisland/out/-b0_-z4.json @@ -3,6 +3,7 @@ "center": "-1.000000,1.000000,4", "description": "tests/nullisland/out/-b0_-z4.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/nullisland/out/-b0_-z4.json.check.mbtiles -b0 -z4 tests/nullisland/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 13,\"geometry\": \"Point\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "4", "minzoom": "0", diff --git a/tests/nullisland/out/-b0_-z4_-ANullIsland.json b/tests/nullisland/out/-b0_-z4_-ANullIsland.json index 137c258f6..1594821a0 100644 --- a/tests/nullisland/out/-b0_-z4_-ANullIsland.json +++ b/tests/nullisland/out/-b0_-z4_-ANullIsland.json @@ -4,6 +4,7 @@ "center": "-1.000000,1.000000,4", "description": "tests/nullisland/out/-b0_-z4_-ANullIsland.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/nullisland/out/-b0_-z4_-ANullIsland.json.check.mbtiles -b0 -z4 -ANullIsland tests/nullisland/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 13,\"geometry\": \"Point\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "4", "minzoom": "0", diff --git a/tests/nullisland/out/-b0_-z4_-NNullIsland.json b/tests/nullisland/out/-b0_-z4_-NNullIsland.json index d660513df..97876b43e 100644 --- a/tests/nullisland/out/-b0_-z4_-NNullIsland.json +++ b/tests/nullisland/out/-b0_-z4_-NNullIsland.json @@ -3,6 +3,7 @@ "center": "-1.000000,1.000000,4", "description": "NullIsland", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/nullisland/out/-b0_-z4_-NNullIsland.json.check.mbtiles -b0 -z4 -NNullIsland tests/nullisland/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 4, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 13,\"geometry\": \"Point\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "4", "minzoom": "0", diff --git a/tests/overflow/out/-z0.json b/tests/overflow/out/-z0.json index 0b79124e5..d360ba2cc 100644 --- a/tests/overflow/out/-z0.json +++ b/tests/overflow/out/-z0.json @@ -3,6 +3,7 @@ "center": "0.000000,0.000000,0", "description": "tests/overflow/out/-z0.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/overflow/out/-z0.json.check.mbtiles -z0 tests/overflow/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"excess\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 15,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"excess\",\"count\": 14,\"type\": \"number\",\"values\": [-18446744073709553000,-2147483647,-2147483648,-9223372036854775807,-9223372036854775808,18446744073709551615,18446744073709553000,2.2222222222222223e+291,2.2e+292,2.5,2147483647,2147483648,9223372036854775807,9223372036854775808],\"min\": -18446744073709553000,\"max\": 2.2e+292}]}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/overlap/out/-z0.json b/tests/overlap/out/-z0.json index c8b1fa1e8..3dffe6817 100644 --- a/tests/overlap/out/-z0.json +++ b/tests/overlap/out/-z0.json @@ -3,6 +3,7 @@ "center": "-3.000000,0.000000,0", "description": "tests/overlap/out/-z0.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/overlap/out/-z0.json.check.mbtiles -z0 tests/overlap/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 2,\"geometry\": \"Polygon\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/overlap/out/-z0_--coalesce.json b/tests/overlap/out/-z0_--coalesce.json index 5c8b9c956..9ac380f66 100644 --- a/tests/overlap/out/-z0_--coalesce.json +++ b/tests/overlap/out/-z0_--coalesce.json @@ -3,6 +3,7 @@ "center": "-3.000000,0.000000,0", "description": "tests/overlap/out/-z0_--coalesce.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/overlap/out/-z0_--coalesce.json.check.mbtiles -z0 --coalesce tests/overlap/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 2,\"geometry\": \"Polygon\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/overlap/out/-z0_-pC.json b/tests/overlap/out/-z0_-pC.json index e8dcdb6f6..88774f4d6 100644 --- a/tests/overlap/out/-z0_-pC.json +++ b/tests/overlap/out/-z0_-pC.json @@ -3,6 +3,7 @@ "center": "-3.000000,0.000000,0", "description": "tests/overlap/out/-z0_-pC.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/overlap/out/-z0_-pC.json.check.mbtiles -z0 -pC tests/overlap/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 2,\"geometry\": \"Polygon\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/polygon-winding/out/-z0.json b/tests/polygon-winding/out/-z0.json index c46816a2b..db98fa99f 100644 --- a/tests/polygon-winding/out/-z0.json +++ b/tests/polygon-winding/out/-z0.json @@ -3,6 +3,7 @@ "center": "100.000000,0.000000,0", "description": "tests/polygon-winding/out/-z0.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/polygon-winding/out/-z0.json.check.mbtiles -z0 tests/polygon-winding/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/polygon-winding/out/-z0_--reverse-source-polygon-winding.json b/tests/polygon-winding/out/-z0_--reverse-source-polygon-winding.json index 6e638f124..a3e4402b2 100644 --- a/tests/polygon-winding/out/-z0_--reverse-source-polygon-winding.json +++ b/tests/polygon-winding/out/-z0_--reverse-source-polygon-winding.json @@ -3,6 +3,7 @@ "center": "100.000000,0.000000,0", "description": "tests/polygon-winding/out/-z0_--reverse-source-polygon-winding.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/polygon-winding/out/-z0_--reverse-source-polygon-winding.json.check.mbtiles -z0 --reverse-source-polygon-winding tests/polygon-winding/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/polygon-winding/out/-z0_--use-source-polygon-winding.json b/tests/polygon-winding/out/-z0_--use-source-polygon-winding.json index bb6d8cb18..fbe72cb35 100644 --- a/tests/polygon-winding/out/-z0_--use-source-polygon-winding.json +++ b/tests/polygon-winding/out/-z0_--use-source-polygon-winding.json @@ -3,6 +3,7 @@ "center": "100.000000,0.000000,0", "description": "tests/polygon-winding/out/-z0_--use-source-polygon-winding.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/polygon-winding/out/-z0_--use-source-polygon-winding.json.check.mbtiles -z0 --use-source-polygon-winding tests/polygon-winding/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "0", "minzoom": "0", diff --git a/tests/raw-tiles/nothing.json b/tests/raw-tiles/nothing.json index 8c91ef887..d2c7bb14f 100644 --- a/tests/raw-tiles/nothing.json +++ b/tests/raw-tiles/nothing.json @@ -3,6 +3,7 @@ "center": "-179.989014,85.051129,14", "description": "tests/raw-tiles/nothing", "format": "pbf", +"generator_options": "./tippecanoe -q -f -e tests/raw-tiles/nothing tests/raw-tiles/nothing.geojson", "json": "{\"vector_layers\": [ { \"id\": \"nothing\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 14, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"nothing\",\"count\": 1,\"geometry\": \"Point\",\"attributeCount\": 0,\"attributes\": []}]}}", "maxzoom": "14", "minzoom": "0", diff --git a/tests/raw-tiles/raw-tiles-z67-join.json b/tests/raw-tiles/raw-tiles-z67-join.json new file mode 100644 index 000000000..ad8b596c3 --- /dev/null +++ b/tests/raw-tiles/raw-tiles-z67-join.json @@ -0,0 +1,37 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-123.750000,45.089036,-120.937500,47.040182", +"center": "-122.662354,45.514045,7", +"description": "tests/raw-tiles/raw-tiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -f -e tests/raw-tiles/raw-tiles -r1 -pC tests/raw-tiles/hackspots.geojson; ./tile-join -q -f -Z6 -z7 -e tests/raw-tiles/raw-tiles-z67 tests/raw-tiles/raw-tiles", +"json": "{\"vector_layers\": [ { \"id\": \"hackspots\", \"description\": \"\", \"minzoom\": 6, \"maxzoom\": 7, \"fields\": {\"Address\": \"String\", \"Name\": \"String\", \"Notes\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"hackspots\",\"count\": 8,\"geometry\": \"Point\",\"attributeCount\": 3,\"attributes\": [{\"attribute\": \"Address\",\"count\": 4,\"type\": \"string\",\"values\": [\"1507 N Rosa Parks Way Portland, OR 97217\",\"201 SE 12th Ave, Portland, OR 97214\",\"4637 N Albina Ave Portland, OR 97217\",\"915 SE Hawthorne Blvd. Portland, OR 97214\"]},{\"attribute\": \"Name\",\"count\": 4,\"type\": \"string\",\"values\": [\"Albina Press\",\"Arbor Lodge\",\"Lucky Labrador Brew Pub\",\"Three Friends Coffeehouse\"]},{\"attribute\": \"Notes\",\"count\": 3,\"type\": \"string\",\"values\": [\"\",\"Dog friendly\",\"usually busy, outlets on side wall only\"]}]}]}}", +"maxzoom": "7", +"minzoom": "6", +"name": "tests/raw-tiles/raw-tiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 22 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "hackspots", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Name": "Arbor Lodge", "Address": "1507 N Rosa Parks Way Portland, OR 97217", "Notes": "" }, "geometry": { "type": "Point", "coordinates": [ -122.682953, 45.570794 ] } } +, +{ "type": "Feature", "properties": { "Name": "Albina Press", "Address": "4637 N Albina Ave Portland, OR 97217", "Notes": "usually busy, outlets on side wall only" }, "geometry": { "type": "Point", "coordinates": [ -122.676086, 45.557333 ] } } +, +{ "type": "Feature", "properties": { "Name": "Three Friends Coffeehouse", "Address": "201 SE 12th Ave, Portland, OR 97214", "Notes": "" }, "geometry": { "type": "Point", "coordinates": [ -122.655487, 45.521744 ] } } +, +{ "type": "Feature", "properties": { "Name": "Lucky Labrador Brew Pub", "Address": "915 SE Hawthorne Blvd. Portland, OR 97214", "Notes": "Dog friendly" }, "geometry": { "type": "Point", "coordinates": [ -122.656860, 45.513084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 45 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "hackspots", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Name": "Arbor Lodge", "Address": "1507 N Rosa Parks Way Portland, OR 97217", "Notes": "" }, "geometry": { "type": "Point", "coordinates": [ -122.682953, 45.570313 ] } } +, +{ "type": "Feature", "properties": { "Name": "Albina Press", "Address": "4637 N Albina Ave Portland, OR 97217", "Notes": "usually busy, outlets on side wall only" }, "geometry": { "type": "Point", "coordinates": [ -122.675400, 45.556853 ] } } +, +{ "type": "Feature", "properties": { "Name": "Three Friends Coffeehouse", "Address": "201 SE 12th Ave, Portland, OR 97214", "Notes": "" }, "geometry": { "type": "Point", "coordinates": [ -122.655487, 45.521263 ] } } +, +{ "type": "Feature", "properties": { "Name": "Lucky Labrador Brew Pub", "Address": "915 SE Hawthorne Blvd. Portland, OR 97214", "Notes": "Dog friendly" }, "geometry": { "type": "Point", "coordinates": [ -122.656860, 45.512602 ] } } +] } +] } +] } diff --git a/tests/raw-tiles/raw-tiles-z67.json b/tests/raw-tiles/raw-tiles-z67.json new file mode 100644 index 000000000..b16760b41 --- /dev/null +++ b/tests/raw-tiles/raw-tiles-z67.json @@ -0,0 +1,37 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-122.682427,45.512331,-122.654961,45.569975", +"center": "-122.662354,45.514045,14", +"description": "tests/raw-tiles/raw-tiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -f -e tests/raw-tiles/raw-tiles -r1 -pC tests/raw-tiles/hackspots.geojson", +"json": "{\"vector_layers\": [ { \"id\": \"hackspots\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 14, \"fields\": {\"Address\": \"String\", \"Name\": \"String\", \"Notes\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"hackspots\",\"count\": 4,\"geometry\": \"Point\",\"attributeCount\": 3,\"attributes\": [{\"attribute\": \"Address\",\"count\": 4,\"type\": \"string\",\"values\": [\"1507 N Rosa Parks Way Portland, OR 97217\",\"201 SE 12th Ave, Portland, OR 97214\",\"4637 N Albina Ave Portland, OR 97217\",\"915 SE Hawthorne Blvd. Portland, OR 97214\"]},{\"attribute\": \"Name\",\"count\": 4,\"type\": \"string\",\"values\": [\"Albina Press\",\"Arbor Lodge\",\"Lucky Labrador Brew Pub\",\"Three Friends Coffeehouse\"]},{\"attribute\": \"Notes\",\"count\": 3,\"type\": \"string\",\"values\": [\"\",\"Dog friendly\",\"usually busy, outlets on side wall only\"]}]}]}}", +"maxzoom": "14", +"minzoom": "0", +"name": "tests/raw-tiles/raw-tiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 22, "compressed": false }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "hackspots", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Name": "Arbor Lodge", "Address": "1507 N Rosa Parks Way Portland, OR 97217", "Notes": "" }, "geometry": { "type": "Point", "coordinates": [ -122.682953, 45.570794 ] } } +, +{ "type": "Feature", "properties": { "Name": "Albina Press", "Address": "4637 N Albina Ave Portland, OR 97217", "Notes": "usually busy, outlets on side wall only" }, "geometry": { "type": "Point", "coordinates": [ -122.676086, 45.557333 ] } } +, +{ "type": "Feature", "properties": { "Name": "Three Friends Coffeehouse", "Address": "201 SE 12th Ave, Portland, OR 97214", "Notes": "" }, "geometry": { "type": "Point", "coordinates": [ -122.655487, 45.521744 ] } } +, +{ "type": "Feature", "properties": { "Name": "Lucky Labrador Brew Pub", "Address": "915 SE Hawthorne Blvd. Portland, OR 97214", "Notes": "Dog friendly" }, "geometry": { "type": "Point", "coordinates": [ -122.656860, 45.513084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 45, "compressed": false }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "hackspots", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Name": "Arbor Lodge", "Address": "1507 N Rosa Parks Way Portland, OR 97217", "Notes": "" }, "geometry": { "type": "Point", "coordinates": [ -122.682953, 45.570313 ] } } +, +{ "type": "Feature", "properties": { "Name": "Albina Press", "Address": "4637 N Albina Ave Portland, OR 97217", "Notes": "usually busy, outlets on side wall only" }, "geometry": { "type": "Point", "coordinates": [ -122.675400, 45.556853 ] } } +, +{ "type": "Feature", "properties": { "Name": "Three Friends Coffeehouse", "Address": "201 SE 12th Ave, Portland, OR 97214", "Notes": "" }, "geometry": { "type": "Point", "coordinates": [ -122.655487, 45.521263 ] } } +, +{ "type": "Feature", "properties": { "Name": "Lucky Labrador Brew Pub", "Address": "915 SE Hawthorne Blvd. Portland, OR 97214", "Notes": "Dog friendly" }, "geometry": { "type": "Point", "coordinates": [ -122.656860, 45.512602 ] } } +] } +] } +] } diff --git a/tests/raw-tiles/raw-tiles.json b/tests/raw-tiles/raw-tiles.json index a685c644f..76c8f7cad 100644 --- a/tests/raw-tiles/raw-tiles.json +++ b/tests/raw-tiles/raw-tiles.json @@ -3,6 +3,7 @@ "center": "-122.662354,45.514045,14", "description": "tests/raw-tiles/raw-tiles", "format": "pbf", +"generator_options": "./tippecanoe -q -f -e tests/raw-tiles/raw-tiles -r1 -pC tests/raw-tiles/hackspots.geojson", "json": "{\"vector_layers\": [ { \"id\": \"hackspots\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 14, \"fields\": {\"Address\": \"String\", \"Name\": \"String\", \"Notes\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"hackspots\",\"count\": 4,\"geometry\": \"Point\",\"attributeCount\": 3,\"attributes\": [{\"attribute\": \"Address\",\"count\": 4,\"type\": \"string\",\"values\": [\"1507 N Rosa Parks Way Portland, OR 97217\",\"201 SE 12th Ave, Portland, OR 97214\",\"4637 N Albina Ave Portland, OR 97217\",\"915 SE Hawthorne Blvd. Portland, OR 97214\"]},{\"attribute\": \"Name\",\"count\": 4,\"type\": \"string\",\"values\": [\"Albina Press\",\"Arbor Lodge\",\"Lucky Labrador Brew Pub\",\"Three Friends Coffeehouse\"]},{\"attribute\": \"Notes\",\"count\": 3,\"type\": \"string\",\"values\": [\"\",\"Dog friendly\",\"usually busy, outlets on side wall only\"]}]}]}}", "maxzoom": "14", "minzoom": "0", diff --git a/tests/stable/out/-z20_-Z20.json b/tests/stable/out/-z20_-Z20.json index fa9c6260c..d9179711d 100644 --- a/tests/stable/out/-z20_-Z20.json +++ b/tests/stable/out/-z20_-Z20.json @@ -3,6 +3,7 @@ "center": "132.187328,-22.268605,20", "description": "tests/stable/out/-z20_-Z20.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/stable/out/-z20_-Z20.json.check.mbtiles -z20 -Z20 tests/stable/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 20, \"maxzoom\": 20, \"fields\": {\"order\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 15,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"order\",\"count\": 9,\"type\": \"string\",\"values\": [\"eight\",\"five\",\"four\",\"nine\",\"one\",\"seven\",\"six\",\"three\",\"two\"]}]}]}}", "maxzoom": "20", "minzoom": "20", diff --git a/tests/stable/out/-z3_-B0.json b/tests/stable/out/-z3_-B0.json index d5b9a26fd..945ba3cbf 100644 --- a/tests/stable/out/-z3_-B0.json +++ b/tests/stable/out/-z3_-B0.json @@ -3,6 +3,7 @@ "center": "112.500000,-20.489949,3", "description": "tests/stable/out/-z3_-B0.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/stable/out/-z3_-B0.json.check.mbtiles -z3 -B0 tests/stable/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 3, \"fields\": {\"order\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 15,\"geometry\": \"Point\",\"attributeCount\": 1,\"attributes\": [{\"attribute\": \"order\",\"count\": 9,\"type\": \"string\",\"values\": [\"eight\",\"five\",\"four\",\"nine\",\"one\",\"seven\",\"six\",\"three\",\"two\"]}]}]}}", "maxzoom": "3", "minzoom": "0", diff --git a/tests/stringid/in.json b/tests/stringid/in.json new file mode 100644 index 000000000..9c93409ae --- /dev/null +++ b/tests/stringid/in.json @@ -0,0 +1,12 @@ +{ "type": "Feature", "id": 12345, "properties": {}, "geometry": { "type": "Point", "coordinates": [ 1, 1 ] } } +{ "type": "Feature", "id": "12345", "properties": {}, "geometry": { "type": "Point", "coordinates": [ 2, 1 ] } } +{ "type": "Feature", "id": "12345.6789", "properties": {}, "geometry": { "type": "Point", "coordinates": [ 3, 1 ] } } +{ "type": "Feature", "id": "9837489273489273894728943728903480989080938597489274389", "properties": {}, "geometry": { "type": "Point", "coordinates": [ 4, 1 ] } } +{ "type": "Feature", "id": 9837489273489273894728943728903480989080938597489274389, "properties": {}, "geometry": { "type": "Point", "coordinates": [ 5, 1 ] } } +{ "type": "Feature", "id": "1e5", "properties": {}, "geometry": { "type": "Point", "coordinates": [ 6, 1 ] } } +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 27, "something": false }, "geometry": { "type": "Point", "coordinates": [ 7, 1 ] } } +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": "27", "something": false }, "geometry": { "type": "Point", "coordinates": [ 8, 1 ] } } +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 27.5, "something": false }, "geometry": { "type": "Point", "coordinates": [ 9, 1 ] } } +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 98237489273489274389728497289472839478297489274892734892, "something": false }, "geometry": { "type": "Point", "coordinates": [ 10, 1 ] } } +{ "type": "Feature", "properties": { "yes": "no", "special": 27, "something": false }, "geometry": { "type": "Point", "coordinates": [ 11, 1 ] } } +{ "type": "Feature", "properties": { "yes": "no", "special": "01005", "something": false }, "geometry": { "type": "Point", "coordinates": [ 12, 1 ] } } diff --git a/tests/stringid/out/-z0.json b/tests/stringid/out/-z0.json new file mode 100644 index 000000000..b6f3356c8 --- /dev/null +++ b/tests/stringid/out/-z0.json @@ -0,0 +1,41 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "1.000000,1.000000,12.000000,1.000000", +"center": "1.000000,1.000000,0", +"description": "tests/stringid/out/-z0.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/stringid/out/-z0.json.check.mbtiles -z0 tests/stringid/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"something\": \"Boolean\", \"special\": \"Mixed\", \"yes\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 12,\"geometry\": \"Point\",\"attributeCount\": 3,\"attributes\": [{\"attribute\": \"something\",\"count\": 1,\"type\": \"boolean\",\"values\": [false]},{\"attribute\": \"special\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"01005\",\"27\",27,27.5,9.823748927348929e+55],\"min\": 27,\"max\": 9.823748927348929e+55},{\"attribute\": \"yes\",\"count\": 1,\"type\": \"string\",\"values\": [\"no\"]}]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/stringid/out/-z0.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "id": 12345, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 1.933594, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 2.988281, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 3.955078, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 5.976562, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 27, "something": false }, "geometry": { "type": "Point", "coordinates": [ 6.943359, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": "27", "something": false }, "geometry": { "type": "Point", "coordinates": [ 7.998047, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 27.5, "something": false }, "geometry": { "type": "Point", "coordinates": [ 8.964844, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 9.823748927348929e+55, "something": false }, "geometry": { "type": "Point", "coordinates": [ 9.931641, 1.054628 ] } } +, +{ "type": "Feature", "properties": { "yes": "no", "special": 27, "something": false }, "geometry": { "type": "Point", "coordinates": [ 10.986328, 1.054628 ] } } +, +{ "type": "Feature", "properties": { "yes": "no", "special": "01005", "something": false }, "geometry": { "type": "Point", "coordinates": [ 11.953125, 1.054628 ] } } +] } +] } +] } diff --git a/tests/stringid/out/-z0_--use-attribute-for-id_special.json b/tests/stringid/out/-z0_--use-attribute-for-id_special.json new file mode 100644 index 000000000..7bf36be48 --- /dev/null +++ b/tests/stringid/out/-z0_--use-attribute-for-id_special.json @@ -0,0 +1,41 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "1.000000,1.000000,12.000000,1.000000", +"center": "1.000000,1.000000,0", +"description": "tests/stringid/out/-z0_--use-attribute-for-id_special.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/stringid/out/-z0_--use-attribute-for-id_special.json.check.mbtiles -z0 --use-attribute-for-id special tests/stringid/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"something\": \"Boolean\", \"special\": \"Mixed\", \"yes\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 12,\"geometry\": \"Point\",\"attributeCount\": 3,\"attributes\": [{\"attribute\": \"something\",\"count\": 1,\"type\": \"boolean\",\"values\": [false]},{\"attribute\": \"special\",\"count\": 4,\"type\": \"mixed\",\"values\": [\"01005\",\"27\",27.5,9.823748927348929e+55],\"min\": 27.5,\"max\": 9.823748927348929e+55},{\"attribute\": \"yes\",\"count\": 1,\"type\": \"string\",\"values\": [\"no\"]}]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/stringid/out/-z0_--use-attribute-for-id_special.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "id": 12345, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 1.933594, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 2.988281, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 3.955078, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 5.976562, 1.054628 ] } } +, +{ "type": "Feature", "id": 27, "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 6.943359, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": "27", "something": false }, "geometry": { "type": "Point", "coordinates": [ 7.998047, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 27.5, "something": false }, "geometry": { "type": "Point", "coordinates": [ 8.964844, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 9.823748927348929e+55, "something": false }, "geometry": { "type": "Point", "coordinates": [ 9.931641, 1.054628 ] } } +, +{ "type": "Feature", "id": 27, "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 10.986328, 1.054628 ] } } +, +{ "type": "Feature", "properties": { "yes": "no", "special": "01005", "something": false }, "geometry": { "type": "Point", "coordinates": [ 11.953125, 1.054628 ] } } +] } +] } +] } diff --git a/tests/stringid/out/-z0_--use-attribute-for-id_special_-X.json b/tests/stringid/out/-z0_--use-attribute-for-id_special_-X.json new file mode 100644 index 000000000..50e6540aa --- /dev/null +++ b/tests/stringid/out/-z0_--use-attribute-for-id_special_-X.json @@ -0,0 +1,41 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "1.000000,1.000000,12.000000,1.000000", +"center": "1.000000,1.000000,0", +"description": "tests/stringid/out/-z0_--use-attribute-for-id_special_-X.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/stringid/out/-z0_--use-attribute-for-id_special_-X.json.check.mbtiles -z0 --use-attribute-for-id special -X tests/stringid/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 12,\"geometry\": \"Point\",\"attributeCount\": 0,\"attributes\": []}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/stringid/out/-z0_--use-attribute-for-id_special_-X.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "id": 12345, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 1.933594, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 2.988281, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 3.955078, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 5.976562, 1.054628 ] } } +, +{ "type": "Feature", "id": 27, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 6.943359, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 7.998047, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 8.964844, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 9.931641, 1.054628 ] } } +, +{ "type": "Feature", "id": 27, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 10.986328, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 11.953125, 1.054628 ] } } +] } +] } +] } diff --git a/tests/stringid/out/-z0_--use-attribute-for-id_special_-xspecial.json b/tests/stringid/out/-z0_--use-attribute-for-id_special_-xspecial.json new file mode 100644 index 000000000..3ed67e7c2 --- /dev/null +++ b/tests/stringid/out/-z0_--use-attribute-for-id_special_-xspecial.json @@ -0,0 +1,41 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "1.000000,1.000000,12.000000,1.000000", +"center": "1.000000,1.000000,0", +"description": "tests/stringid/out/-z0_--use-attribute-for-id_special_-xspecial.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/stringid/out/-z0_--use-attribute-for-id_special_-xspecial.json.check.mbtiles -z0 --use-attribute-for-id special -xspecial tests/stringid/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"something\": \"Boolean\", \"yes\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 12,\"geometry\": \"Point\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"something\",\"count\": 1,\"type\": \"boolean\",\"values\": [false]},{\"attribute\": \"yes\",\"count\": 1,\"type\": \"string\",\"values\": [\"no\"]}]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/stringid/out/-z0_--use-attribute-for-id_special_-xspecial.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "id": 12345, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 1.933594, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 2.988281, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 3.955078, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 5.976562, 1.054628 ] } } +, +{ "type": "Feature", "id": 27, "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 6.943359, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 7.998047, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 8.964844, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 9.931641, 1.054628 ] } } +, +{ "type": "Feature", "id": 27, "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 10.986328, 1.054628 ] } } +, +{ "type": "Feature", "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 11.953125, 1.054628 ] } } +] } +] } +] } diff --git a/tests/stringid/out/-z0_--use-attribute-for-id_special_-yother.json b/tests/stringid/out/-z0_--use-attribute-for-id_special_-yother.json new file mode 100644 index 000000000..0d454f1ad --- /dev/null +++ b/tests/stringid/out/-z0_--use-attribute-for-id_special_-yother.json @@ -0,0 +1,41 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "1.000000,1.000000,12.000000,1.000000", +"center": "1.000000,1.000000,0", +"description": "tests/stringid/out/-z0_--use-attribute-for-id_special_-yother.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/stringid/out/-z0_--use-attribute-for-id_special_-yother.json.check.mbtiles -z0 --use-attribute-for-id special -yother tests/stringid/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 12,\"geometry\": \"Point\",\"attributeCount\": 0,\"attributes\": []}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/stringid/out/-z0_--use-attribute-for-id_special_-yother.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "id": 12345, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 1.933594, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 2.988281, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 3.955078, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 5.976562, 1.054628 ] } } +, +{ "type": "Feature", "id": 27, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 6.943359, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 7.998047, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 8.964844, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 9.931641, 1.054628 ] } } +, +{ "type": "Feature", "id": 27, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 10.986328, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 11.953125, 1.054628 ] } } +] } +] } +] } diff --git a/tests/stringid/out/-z0_-aI.json b/tests/stringid/out/-z0_-aI.json new file mode 100644 index 000000000..00e06148b --- /dev/null +++ b/tests/stringid/out/-z0_-aI.json @@ -0,0 +1,41 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "1.000000,1.000000,12.000000,1.000000", +"center": "1.000000,1.000000,0", +"description": "tests/stringid/out/-z0_-aI.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/stringid/out/-z0_-aI.json.check.mbtiles -z0 -aI tests/stringid/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"something\": \"Boolean\", \"special\": \"Mixed\", \"yes\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 12,\"geometry\": \"Point\",\"attributeCount\": 3,\"attributes\": [{\"attribute\": \"something\",\"count\": 1,\"type\": \"boolean\",\"values\": [false]},{\"attribute\": \"special\",\"count\": 5,\"type\": \"mixed\",\"values\": [\"01005\",\"27\",27,27.5,9.823748927348929e+55],\"min\": 27,\"max\": 9.823748927348929e+55},{\"attribute\": \"yes\",\"count\": 1,\"type\": \"string\",\"values\": [\"no\"]}]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/stringid/out/-z0_-aI.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "id": 12345, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 1.054628 ] } } +, +{ "type": "Feature", "id": 12345, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 1.933594, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 2.988281, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 3.955078, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 5.976562, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 27, "something": false }, "geometry": { "type": "Point", "coordinates": [ 6.943359, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": "27", "something": false }, "geometry": { "type": "Point", "coordinates": [ 7.998047, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 27.5, "something": false }, "geometry": { "type": "Point", "coordinates": [ 8.964844, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 9.823748927348929e+55, "something": false }, "geometry": { "type": "Point", "coordinates": [ 9.931641, 1.054628 ] } } +, +{ "type": "Feature", "properties": { "yes": "no", "special": 27, "something": false }, "geometry": { "type": "Point", "coordinates": [ 10.986328, 1.054628 ] } } +, +{ "type": "Feature", "properties": { "yes": "no", "special": "01005", "something": false }, "geometry": { "type": "Point", "coordinates": [ 11.953125, 1.054628 ] } } +] } +] } +] } diff --git a/tests/stringid/out/-z0_-aI_--use-attribute-for-id_special.json b/tests/stringid/out/-z0_-aI_--use-attribute-for-id_special.json new file mode 100644 index 000000000..9970acd39 --- /dev/null +++ b/tests/stringid/out/-z0_-aI_--use-attribute-for-id_special.json @@ -0,0 +1,41 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "1.000000,1.000000,12.000000,1.000000", +"center": "1.000000,1.000000,0", +"description": "tests/stringid/out/-z0_-aI_--use-attribute-for-id_special.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/stringid/out/-z0_-aI_--use-attribute-for-id_special.json.check.mbtiles -z0 -aI --use-attribute-for-id special tests/stringid/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"something\": \"Boolean\", \"special\": \"Number\", \"yes\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 12,\"geometry\": \"Point\",\"attributeCount\": 3,\"attributes\": [{\"attribute\": \"something\",\"count\": 1,\"type\": \"boolean\",\"values\": [false]},{\"attribute\": \"special\",\"count\": 2,\"type\": \"number\",\"values\": [27.5,9.823748927348929e+55],\"min\": 27.5,\"max\": 9.823748927348929e+55},{\"attribute\": \"yes\",\"count\": 1,\"type\": \"string\",\"values\": [\"no\"]}]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/stringid/out/-z0_-aI_--use-attribute-for-id_special.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "id": 12345, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 1.054628 ] } } +, +{ "type": "Feature", "id": 12345, "properties": { }, "geometry": { "type": "Point", "coordinates": [ 1.933594, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 2.988281, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 3.955078, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 1.054628 ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 5.976562, 1.054628 ] } } +, +{ "type": "Feature", "id": 27, "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 6.943359, 1.054628 ] } } +, +{ "type": "Feature", "id": 27, "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 7.998047, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 27.5, "something": false }, "geometry": { "type": "Point", "coordinates": [ 8.964844, 1.054628 ] } } +, +{ "type": "Feature", "id": 1234, "properties": { "yes": "no", "special": 9.823748927348929e+55, "something": false }, "geometry": { "type": "Point", "coordinates": [ 9.931641, 1.054628 ] } } +, +{ "type": "Feature", "id": 27, "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 10.986328, 1.054628 ] } } +, +{ "type": "Feature", "id": 1005, "properties": { "yes": "no", "something": false }, "geometry": { "type": "Point", "coordinates": [ 11.953125, 1.054628 ] } } +] } +] } +] } diff --git a/tests/tl_2015_us_county/out/-z8.json b/tests/tl_2015_us_county/out/-z8.json index 68db8b376..6fc5cca66 100644 --- a/tests/tl_2015_us_county/out/-z8.json +++ b/tests/tl_2015_us_county/out/-z8.json @@ -3,6 +3,7 @@ "center": "-69.609375,45.581133,8", "description": "tests/tl_2015_us_county/out/-z8.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/tl_2015_us_county/out/-z8.json.check.mbtiles -z8 tests/tl_2015_us_county/piscataquis.json tests/tl_2015_us_county/somerset.json", "json": "{\"vector_layers\": [ { \"id\": \"piscataquis\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 8, \"fields\": {\"ALAND\": \"Number\", \"AWATER\": \"Number\", \"CLASSFP\": \"String\", \"COUNTYFP\": \"String\", \"COUNTYNS\": \"String\", \"FUNCSTAT\": \"String\", \"GEOID\": \"String\", \"INTPTLAT\": \"String\", \"INTPTLON\": \"String\", \"LSAD\": \"String\", \"MTFCC\": \"String\", \"NAME\": \"String\", \"NAMELSAD\": \"String\", \"STATEFP\": \"String\"} }, { \"id\": \"somerset\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 8, \"fields\": {\"ALAND\": \"Number\", \"AWATER\": \"Number\", \"CLASSFP\": \"String\", \"COUNTYFP\": \"String\", \"COUNTYNS\": \"String\", \"FUNCSTAT\": \"String\", \"GEOID\": \"String\", \"INTPTLAT\": \"String\", \"INTPTLON\": \"String\", \"LSAD\": \"String\", \"MTFCC\": \"String\", \"NAME\": \"String\", \"NAMELSAD\": \"String\", \"STATEFP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"piscataquis\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 14,\"attributes\": [{\"attribute\": \"ALAND\",\"count\": 1,\"type\": \"number\",\"values\": [10258678459],\"min\": 10258678459,\"max\": 10258678459},{\"attribute\": \"AWATER\",\"count\": 1,\"type\": \"number\",\"values\": [1080563045],\"min\": 1080563045,\"max\": 1080563045},{\"attribute\": \"CLASSFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"H1\"]},{\"attribute\": \"COUNTYFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"021\"]},{\"attribute\": \"COUNTYNS\",\"count\": 1,\"type\": \"string\",\"values\": [\"00581296\"]},{\"attribute\": \"FUNCSTAT\",\"count\": 1,\"type\": \"string\",\"values\": [\"A\"]},{\"attribute\": \"GEOID\",\"count\": 1,\"type\": \"string\",\"values\": [\"23021\"]},{\"attribute\": \"INTPTLAT\",\"count\": 1,\"type\": \"string\",\"values\": [\"+45.917685\"]},{\"attribute\": \"INTPTLON\",\"count\": 1,\"type\": \"string\",\"values\": [\"-069.104535\"]},{\"attribute\": \"LSAD\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"MTFCC\",\"count\": 1,\"type\": \"string\",\"values\": [\"G4020\"]},{\"attribute\": \"NAME\",\"count\": 1,\"type\": \"string\",\"values\": [\"Piscataquis\"]},{\"attribute\": \"NAMELSAD\",\"count\": 1,\"type\": \"string\",\"values\": [\"Piscataquis County\"]},{\"attribute\": \"STATEFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"23\"]}]},{\"layer\": \"somerset\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 14,\"attributes\": [{\"attribute\": \"ALAND\",\"count\": 1,\"type\": \"number\",\"values\": [10164314642],\"min\": 10164314642,\"max\": 10164314642},{\"attribute\": \"AWATER\",\"count\": 1,\"type\": \"number\",\"values\": [437895944],\"min\": 437895944,\"max\": 437895944},{\"attribute\": \"CLASSFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"H1\"]},{\"attribute\": \"COUNTYFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"025\"]},{\"attribute\": \"COUNTYNS\",\"count\": 1,\"type\": \"string\",\"values\": [\"00581298\"]},{\"attribute\": \"FUNCSTAT\",\"count\": 1,\"type\": \"string\",\"values\": [\"A\"]},{\"attribute\": \"GEOID\",\"count\": 1,\"type\": \"string\",\"values\": [\"23025\"]},{\"attribute\": \"INTPTLAT\",\"count\": 1,\"type\": \"string\",\"values\": [\"+45.507482\"]},{\"attribute\": \"INTPTLON\",\"count\": 1,\"type\": \"string\",\"values\": [\"-069.976039\"]},{\"attribute\": \"LSAD\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"MTFCC\",\"count\": 1,\"type\": \"string\",\"values\": [\"G4020\"]},{\"attribute\": \"NAME\",\"count\": 1,\"type\": \"string\",\"values\": [\"Somerset\"]},{\"attribute\": \"NAMELSAD\",\"count\": 1,\"type\": \"string\",\"values\": [\"Somerset County\"]},{\"attribute\": \"STATEFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"23\"]}]}]}}", "maxzoom": "8", "minzoom": "0", @@ -42,31 +43,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.782848 ], [ -69.774170, 45.767523 ], [ -69.730225, 45.767523 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.790509 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.836454 ], [ -69.708252, 45.851760 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.890008 ], [ -69.686279, 45.851760 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.989329 ], [ -69.730225, 45.981695 ], [ -69.730225, 46.581518 ], [ -68.829346, 46.573967 ], [ -68.829346, 45.690833 ], [ -68.961182, 45.667805 ], [ -68.972168, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.785400, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.143305 ], [ -69.510498, 45.058001 ], [ -69.499512, 45.042478 ], [ -69.521484, 45.034715 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.708252, 45.298075 ], [ -69.785156, 45.544831 ], [ -69.719238, 45.590978 ], [ -69.730225, 45.621722 ], [ -69.708252, 45.629405 ], [ -69.719238, 45.652448 ], [ -69.697266, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.752197, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.818115, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.752193 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.790509 ], [ -69.785156, 45.782848 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.782848 ], [ -69.774170, 45.767523 ], [ -69.730225, 45.767523 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.790509 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.836454 ], [ -69.708252, 45.851760 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.890008 ], [ -69.686279, 45.851760 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.989329 ], [ -69.730225, 45.981695 ], [ -69.730225, 46.581518 ], [ -68.829346, 46.573967 ], [ -68.829346, 45.690833 ], [ -68.961182, 45.667805 ], [ -68.972168, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.785400, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.143305 ], [ -69.510498, 45.058001 ], [ -69.499512, 45.042478 ], [ -69.521484, 45.034715 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.708252, 45.298075 ], [ -69.785156, 45.544831 ], [ -69.719238, 45.590978 ], [ -69.730225, 45.621722 ], [ -69.708252, 45.629405 ], [ -69.719238, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.752197, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.818115, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.752193 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.790509 ], [ -69.785156, 45.782848 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 45.782848 ], [ -69.796143, 45.752193 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.818115, 45.721522 ], [ -69.785156, 45.690833 ], [ -69.741211, 45.683158 ], [ -69.752197, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.697266, 45.652448 ], [ -69.719238, 45.652448 ], [ -69.708252, 45.629405 ], [ -69.730225, 45.621722 ], [ -69.719238, 45.590978 ], [ -69.785156, 45.544831 ], [ -69.631348, 45.011419 ], [ -69.521484, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.042478 ], [ -69.510498, 45.058001 ], [ -69.356689, 45.073521 ], [ -69.268799, 44.723320 ], [ -69.334717, 44.715514 ], [ -69.345703, 44.754535 ], [ -69.389648, 44.754535 ], [ -69.422607, 44.707706 ], [ -69.477539, 44.699898 ], [ -69.477539, 44.723320 ], [ -69.488525, 44.723320 ], [ -69.642334, 44.707706 ], [ -69.620361, 44.660839 ], [ -69.587402, 44.629573 ], [ -69.609375, 44.582643 ], [ -69.785156, 44.613934 ], [ -69.796143, 44.582643 ], [ -69.829102, 44.582643 ], [ -69.829102, 44.613934 ], [ -69.862061, 44.621754 ], [ -69.938965, 44.613934 ], [ -69.971924, 44.668653 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.015869, 44.762337 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.793531 ], [ -70.015869, 44.793531 ], [ -70.037842, 44.809122 ], [ -70.037842, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.169678, 45.135555 ], [ -70.301514, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.532227, 45.667805 ], [ -70.466309, 45.713851 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.378418, 45.836454 ], [ -70.268555, 45.890008 ], [ -70.268555, 45.928230 ], [ -70.246582, 45.943511 ], [ -70.268555, 45.966425 ], [ -70.323486, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.323486, 46.019853 ], [ -70.279541, 46.057985 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.246582, 46.149394 ], [ -70.301514, 46.195042 ], [ -70.235596, 46.293816 ], [ -70.213623, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.354511 ], [ -70.136719, 46.369674 ], [ -70.103760, 46.415139 ], [ -70.059814, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.730225, 46.581518 ], [ -69.730225, 45.981695 ], [ -69.686279, 45.989329 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.851760 ], [ -69.708252, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.851760 ], [ -69.719238, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.790509 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.767523 ], [ -69.774170, 45.767523 ], [ -69.785156, 45.782848 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.790509 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.782848 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 45.782848 ], [ -69.796143, 45.752193 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.818115, 45.721522 ], [ -69.785156, 45.690833 ], [ -69.741211, 45.683158 ], [ -69.752197, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.719238, 45.652448 ], [ -69.708252, 45.629405 ], [ -69.730225, 45.621722 ], [ -69.719238, 45.590978 ], [ -69.785156, 45.544831 ], [ -69.631348, 45.011419 ], [ -69.521484, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.042478 ], [ -69.510498, 45.058001 ], [ -69.356689, 45.073521 ], [ -69.268799, 44.723320 ], [ -69.334717, 44.715514 ], [ -69.345703, 44.754535 ], [ -69.389648, 44.754535 ], [ -69.422607, 44.707706 ], [ -69.477539, 44.699898 ], [ -69.477539, 44.723320 ], [ -69.488525, 44.723320 ], [ -69.642334, 44.707706 ], [ -69.620361, 44.660839 ], [ -69.587402, 44.629573 ], [ -69.609375, 44.582643 ], [ -69.785156, 44.613934 ], [ -69.796143, 44.582643 ], [ -69.829102, 44.582643 ], [ -69.829102, 44.613934 ], [ -69.862061, 44.621754 ], [ -69.938965, 44.613934 ], [ -69.971924, 44.668653 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.015869, 44.762337 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.793531 ], [ -70.015869, 44.793531 ], [ -70.037842, 44.809122 ], [ -70.037842, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.169678, 45.135555 ], [ -70.301514, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.532227, 45.667805 ], [ -70.466309, 45.713851 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.378418, 45.836454 ], [ -70.268555, 45.890008 ], [ -70.268555, 45.928230 ], [ -70.246582, 45.943511 ], [ -70.268555, 45.966425 ], [ -70.323486, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.323486, 46.019853 ], [ -70.279541, 46.057985 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.246582, 46.149394 ], [ -70.301514, 46.195042 ], [ -70.235596, 46.293816 ], [ -70.213623, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.354511 ], [ -70.136719, 46.369674 ], [ -70.103760, 46.415139 ], [ -70.059814, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.730225, 46.581518 ], [ -69.730225, 45.981695 ], [ -69.686279, 45.989329 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.851760 ], [ -69.708252, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.851760 ], [ -69.719238, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.790509 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.767523 ], [ -69.774170, 45.767523 ], [ -69.785156, 45.782848 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.790509 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.782848 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.785156, 45.779017 ], [ -69.774170, 45.763691 ], [ -69.752197, 45.767523 ], [ -69.741211, 45.756026 ], [ -69.730225, 45.763691 ], [ -69.730225, 45.775186 ], [ -69.741211, 45.782848 ], [ -69.724731, 45.786679 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.832627 ], [ -69.708252, 45.847934 ], [ -69.735718, 45.878537 ], [ -69.702759, 45.886185 ], [ -69.702759, 45.874712 ], [ -69.686279, 45.851760 ], [ -69.675293, 45.855586 ], [ -69.675293, 45.863238 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.735718, 46.396200 ], [ -69.724731, 46.396200 ], [ -69.724731, 46.577743 ], [ -68.823853, 46.573967 ], [ -68.829346, 45.686996 ], [ -68.961182, 45.663966 ], [ -68.955688, 45.640928 ], [ -68.955688, 45.583290 ], [ -68.966675, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.779907, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.856812, 45.143305 ], [ -69.505005, 45.054121 ], [ -69.499512, 45.038597 ], [ -69.521484, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.625854, 45.011419 ], [ -69.691772, 45.209134 ], [ -69.713745, 45.294211 ], [ -69.702759, 45.294211 ], [ -69.785156, 45.544831 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.556372 ], [ -69.735718, 45.567910 ], [ -69.719238, 45.587134 ], [ -69.724731, 45.617880 ], [ -69.713745, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.719238, 45.640928 ], [ -69.719238, 45.648608 ], [ -69.713745, 45.652448 ], [ -69.697266, 45.640928 ], [ -69.697266, 45.648608 ], [ -69.724731, 45.660127 ], [ -69.746704, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.757690, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.713851 ], [ -69.818115, 45.721522 ], [ -69.807129, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.829102, 45.744527 ], [ -69.818115, 45.748360 ], [ -69.790649, 45.748360 ], [ -69.796143, 45.759859 ], [ -69.785156, 45.771355 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.779017 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.785156, 45.779017 ], [ -69.774170, 45.763691 ], [ -69.752197, 45.767523 ], [ -69.741211, 45.756026 ], [ -69.730225, 45.763691 ], [ -69.730225, 45.775186 ], [ -69.741211, 45.782848 ], [ -69.724731, 45.786679 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.832627 ], [ -69.708252, 45.847934 ], [ -69.735718, 45.878537 ], [ -69.702759, 45.886185 ], [ -69.702759, 45.874712 ], [ -69.686279, 45.851760 ], [ -69.675293, 45.855586 ], [ -69.675293, 45.863238 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.735718, 46.396200 ], [ -69.724731, 46.396200 ], [ -69.724731, 46.577743 ], [ -68.823853, 46.573967 ], [ -68.829346, 45.686996 ], [ -68.961182, 45.663966 ], [ -68.955688, 45.640928 ], [ -68.955688, 45.583290 ], [ -68.966675, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.779907, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.856812, 45.143305 ], [ -69.505005, 45.054121 ], [ -69.499512, 45.038597 ], [ -69.521484, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.625854, 45.011419 ], [ -69.691772, 45.209134 ], [ -69.713745, 45.294211 ], [ -69.702759, 45.294211 ], [ -69.785156, 45.544831 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.556372 ], [ -69.735718, 45.567910 ], [ -69.719238, 45.587134 ], [ -69.724731, 45.617880 ], [ -69.713745, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.719238, 45.640928 ], [ -69.719238, 45.648608 ], [ -69.713745, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.746704, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.757690, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.713851 ], [ -69.818115, 45.721522 ], [ -69.807129, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.829102, 45.744527 ], [ -69.818115, 45.748360 ], [ -69.790649, 45.748360 ], [ -69.796143, 45.759859 ], [ -69.785156, 45.771355 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.779017 ] ], [ [ -69.713745, 45.652448 ], [ -69.697266, 45.640928 ], [ -69.697266, 45.648608 ], [ -69.713745, 45.652448 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 45.779017 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.771355 ], [ -69.796143, 45.759859 ], [ -69.790649, 45.748360 ], [ -69.818115, 45.748360 ], [ -69.829102, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.807129, 45.721522 ], [ -69.818115, 45.721522 ], [ -69.790649, 45.713851 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.683158 ], [ -69.741211, 45.683158 ], [ -69.746704, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.697266, 45.648608 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.652448 ], [ -69.719238, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.702759, 45.629405 ], [ -69.713745, 45.614037 ], [ -69.724731, 45.617880 ], [ -69.719238, 45.587134 ], [ -69.735718, 45.567910 ], [ -69.763184, 45.556372 ], [ -69.774170, 45.556372 ], [ -69.785156, 45.544831 ], [ -69.702759, 45.298075 ], [ -69.713745, 45.294211 ], [ -69.691772, 45.209134 ], [ -69.658813, 45.100669 ], [ -69.647827, 45.104546 ], [ -69.625854, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.038597 ], [ -69.505005, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.285278, 44.813019 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.400635, 44.750634 ], [ -69.395142, 44.735028 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.703802 ], [ -69.472046, 44.695993 ], [ -69.472046, 44.719417 ], [ -69.488525, 44.723320 ], [ -69.636841, 44.703802 ], [ -69.620361, 44.660839 ], [ -69.581909, 44.629573 ], [ -69.598389, 44.606113 ], [ -69.592896, 44.586555 ], [ -69.609375, 44.578730 ], [ -69.779663, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.823608, 44.582643 ], [ -69.823608, 44.610023 ], [ -69.856567, 44.621754 ], [ -69.933472, 44.613934 ], [ -69.949951, 44.649116 ], [ -69.971924, 44.664746 ], [ -69.960938, 44.664746 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.684277 ], [ -69.999390, 44.680372 ], [ -70.015869, 44.758436 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.789633 ], [ -70.021362, 44.813019 ], [ -70.032349, 44.809122 ], [ -70.037842, 44.867550 ], [ -70.131226, 44.851975 ], [ -70.153198, 44.910359 ], [ -70.147705, 44.914249 ], [ -70.153198, 44.945361 ], [ -70.114746, 44.949249 ], [ -70.164185, 45.131680 ], [ -70.296021, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.147179 ], [ -70.521240, 45.514046 ], [ -70.510254, 45.514046 ], [ -70.554199, 45.671644 ], [ -70.537720, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.466309, 45.710015 ], [ -70.444336, 45.706179 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.394897, 45.744527 ], [ -70.389404, 45.752193 ], [ -70.411377, 45.763691 ], [ -70.405884, 45.779017 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.400391, 45.809658 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.345459, 45.855586 ], [ -70.312500, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.268555, 45.897655 ], [ -70.257568, 45.909122 ], [ -70.268555, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.252075, 45.958788 ], [ -70.263062, 45.954969 ], [ -70.268555, 45.966425 ], [ -70.317993, 45.966425 ], [ -70.312500, 45.985512 ], [ -70.285034, 45.996962 ], [ -70.307007, 46.000778 ], [ -70.323486, 46.019853 ], [ -70.307007, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.279541, 46.057985 ], [ -70.285034, 46.065608 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.257568, 46.115134 ], [ -70.241089, 46.145589 ], [ -70.296021, 46.195042 ], [ -70.274048, 46.214051 ], [ -70.235596, 46.293816 ], [ -70.208130, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.350719 ], [ -70.175171, 46.362093 ], [ -70.153198, 46.362093 ], [ -70.131226, 46.369674 ], [ -70.131226, 46.381044 ], [ -70.109253, 46.388622 ], [ -70.098267, 46.411352 ], [ -70.059814, 46.418926 ], [ -70.026855, 46.573967 ], [ -69.724731, 46.577743 ], [ -69.724731, 46.396200 ], [ -69.735718, 46.396200 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.855586 ], [ -69.686279, 45.851760 ], [ -69.702759, 45.874712 ], [ -69.702759, 45.886185 ], [ -69.735718, 45.878537 ], [ -69.708252, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.786679 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.775186 ], [ -69.730225, 45.763691 ], [ -69.741211, 45.756026 ], [ -69.752197, 45.767523 ], [ -69.774170, 45.763691 ], [ -69.785156, 45.779017 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.782848 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.779017 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.771355 ], [ -69.796143, 45.759859 ], [ -69.790649, 45.748360 ], [ -69.818115, 45.748360 ], [ -69.829102, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.807129, 45.721522 ], [ -69.818115, 45.721522 ], [ -69.790649, 45.713851 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.683158 ], [ -69.741211, 45.683158 ], [ -69.746704, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.713745, 45.652448 ], [ -69.719238, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.702759, 45.629405 ], [ -69.713745, 45.614037 ], [ -69.724731, 45.617880 ], [ -69.719238, 45.587134 ], [ -69.735718, 45.567910 ], [ -69.763184, 45.556372 ], [ -69.774170, 45.556372 ], [ -69.785156, 45.544831 ], [ -69.702759, 45.298075 ], [ -69.713745, 45.294211 ], [ -69.691772, 45.209134 ], [ -69.658813, 45.100669 ], [ -69.647827, 45.104546 ], [ -69.625854, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.038597 ], [ -69.505005, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.285278, 44.813019 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.400635, 44.750634 ], [ -69.395142, 44.735028 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.703802 ], [ -69.472046, 44.695993 ], [ -69.472046, 44.719417 ], [ -69.488525, 44.723320 ], [ -69.636841, 44.703802 ], [ -69.620361, 44.660839 ], [ -69.581909, 44.629573 ], [ -69.598389, 44.606113 ], [ -69.592896, 44.586555 ], [ -69.609375, 44.578730 ], [ -69.779663, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.823608, 44.582643 ], [ -69.823608, 44.610023 ], [ -69.856567, 44.621754 ], [ -69.933472, 44.613934 ], [ -69.949951, 44.649116 ], [ -69.971924, 44.664746 ], [ -69.960938, 44.664746 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.684277 ], [ -69.999390, 44.680372 ], [ -70.015869, 44.758436 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.789633 ], [ -70.021362, 44.813019 ], [ -70.032349, 44.809122 ], [ -70.037842, 44.867550 ], [ -70.131226, 44.851975 ], [ -70.153198, 44.910359 ], [ -70.147705, 44.914249 ], [ -70.153198, 44.945361 ], [ -70.114746, 44.949249 ], [ -70.164185, 45.131680 ], [ -70.296021, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.147179 ], [ -70.521240, 45.514046 ], [ -70.510254, 45.514046 ], [ -70.554199, 45.671644 ], [ -70.537720, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.466309, 45.710015 ], [ -70.444336, 45.706179 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.394897, 45.744527 ], [ -70.389404, 45.752193 ], [ -70.411377, 45.763691 ], [ -70.405884, 45.779017 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.400391, 45.809658 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.345459, 45.855586 ], [ -70.312500, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.268555, 45.897655 ], [ -70.257568, 45.909122 ], [ -70.268555, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.252075, 45.958788 ], [ -70.263062, 45.954969 ], [ -70.268555, 45.966425 ], [ -70.317993, 45.966425 ], [ -70.312500, 45.985512 ], [ -70.285034, 45.996962 ], [ -70.307007, 46.000778 ], [ -70.323486, 46.019853 ], [ -70.307007, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.279541, 46.057985 ], [ -70.285034, 46.065608 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.257568, 46.115134 ], [ -70.241089, 46.145589 ], [ -70.296021, 46.195042 ], [ -70.274048, 46.214051 ], [ -70.235596, 46.293816 ], [ -70.208130, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.350719 ], [ -70.175171, 46.362093 ], [ -70.153198, 46.362093 ], [ -70.131226, 46.369674 ], [ -70.131226, 46.381044 ], [ -70.109253, 46.388622 ], [ -70.098267, 46.411352 ], [ -70.059814, 46.418926 ], [ -70.026855, 46.573967 ], [ -69.724731, 46.577743 ], [ -69.724731, 46.396200 ], [ -69.735718, 46.396200 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.855586 ], [ -69.686279, 45.851760 ], [ -69.702759, 45.874712 ], [ -69.702759, 45.886185 ], [ -69.735718, 45.878537 ], [ -69.708252, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.786679 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.775186 ], [ -69.730225, 45.763691 ], [ -69.741211, 45.756026 ], [ -69.752197, 45.767523 ], [ -69.774170, 45.763691 ], [ -69.785156, 45.779017 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.713745, 45.652448 ], [ -69.697266, 45.648608 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.652448 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.732971, 45.878537 ], [ -69.710999, 45.886185 ], [ -69.700012, 45.886185 ], [ -69.700012, 45.880449 ], [ -69.702759, 45.880449 ], [ -69.702759, 45.872800 ], [ -69.697266, 45.865150 ], [ -69.694519, 45.865150 ], [ -69.691772, 45.855586 ], [ -69.683533, 45.851760 ], [ -69.675293, 45.853673 ], [ -69.675293, 45.863238 ], [ -69.658813, 45.861325 ], [ -69.656067, 45.865150 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.732971, 46.394306 ], [ -69.721985, 46.394306 ], [ -69.721985, 46.575855 ], [ -68.823853, 46.573967 ], [ -68.821106, 46.212150 ], [ -68.829346, 45.685077 ], [ -68.961182, 45.663966 ], [ -68.952942, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.966675, 45.514046 ], [ -68.859558, 45.527517 ], [ -68.777161, 45.242020 ], [ -68.881531, 45.226546 ], [ -68.856812, 45.143305 ], [ -69.502258, 45.054121 ], [ -69.496765, 45.038597 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.623108, 45.011419 ], [ -69.647827, 45.102608 ], [ -69.656067, 45.100669 ], [ -69.689026, 45.209134 ], [ -69.686279, 45.213004 ], [ -69.710999, 45.292279 ], [ -69.702759, 45.294211 ], [ -69.782410, 45.542908 ], [ -69.774170, 45.546755 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.554449 ], [ -69.732971, 45.567910 ], [ -69.724731, 45.583290 ], [ -69.716492, 45.587134 ], [ -69.713745, 45.596744 ], [ -69.721985, 45.604431 ], [ -69.719238, 45.610195 ], [ -69.719238, 45.612116 ], [ -69.710999, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.708252, 45.639007 ], [ -69.719238, 45.640928 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.650528 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.646688 ], [ -69.702759, 45.652448 ], [ -69.724731, 45.658208 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.738464, 45.652448 ], [ -69.743958, 45.652448 ], [ -69.741211, 45.658208 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.667805 ], [ -69.741211, 45.681239 ], [ -69.757690, 45.681239 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.711933 ], [ -69.804382, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.721522 ], [ -69.804382, 45.725356 ], [ -69.793396, 45.727274 ], [ -69.793396, 45.729191 ], [ -69.801636, 45.734943 ], [ -69.809875, 45.734943 ], [ -69.812622, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.818115, 45.748360 ], [ -69.801636, 45.750277 ], [ -69.798889, 45.746444 ], [ -69.790649, 45.748360 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.756026 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.769439 ], [ -69.782410, 45.771355 ], [ -69.782410, 45.775186 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.771423, 45.761775 ], [ -69.754944, 45.761775 ], [ -69.752197, 45.767523 ], [ -69.749451, 45.759859 ], [ -69.738464, 45.756026 ], [ -69.727478, 45.763691 ], [ -69.727478, 45.773270 ], [ -69.738464, 45.782848 ], [ -69.724731, 45.784764 ], [ -69.710999, 45.811572 ], [ -69.721985, 45.834540 ], [ -69.713745, 45.832627 ], [ -69.705505, 45.847934 ], [ -69.708252, 45.847934 ], [ -69.708252, 45.855586 ], [ -69.713745, 45.857499 ], [ -69.713745, 45.861325 ], [ -69.719238, 45.867063 ], [ -69.727478, 45.867063 ], [ -69.724731, 45.874712 ], [ -69.732971, 45.878537 ] ] ], [ [ [ -69.796143, 45.784764 ], [ -69.793396, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.796143, 45.784764 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.785156, 45.777102 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.826355, 45.742610 ], [ -69.829102, 45.738777 ], [ -69.834595, 45.738777 ], [ -69.826355, 45.742610 ] ] ], [ [ [ -69.732971, 45.878537 ], [ -69.735718, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.732971, 45.878537 ] ] ], [ [ [ -69.796143, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.796143, 45.784764 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.732971, 45.878537 ], [ -69.710999, 45.886185 ], [ -69.700012, 45.886185 ], [ -69.700012, 45.880449 ], [ -69.702759, 45.880449 ], [ -69.702759, 45.872800 ], [ -69.697266, 45.865150 ], [ -69.694519, 45.865150 ], [ -69.691772, 45.855586 ], [ -69.683533, 45.851760 ], [ -69.675293, 45.853673 ], [ -69.675293, 45.863238 ], [ -69.658813, 45.861325 ], [ -69.656067, 45.865150 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.732971, 46.394306 ], [ -69.721985, 46.394306 ], [ -69.721985, 46.575855 ], [ -68.823853, 46.573967 ], [ -68.821106, 46.212150 ], [ -68.829346, 45.685077 ], [ -68.961182, 45.663966 ], [ -68.952942, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.966675, 45.514046 ], [ -68.859558, 45.527517 ], [ -68.777161, 45.242020 ], [ -68.881531, 45.226546 ], [ -68.856812, 45.143305 ], [ -69.502258, 45.054121 ], [ -69.496765, 45.038597 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.623108, 45.011419 ], [ -69.647827, 45.102608 ], [ -69.656067, 45.100669 ], [ -69.689026, 45.209134 ], [ -69.686279, 45.213004 ], [ -69.710999, 45.292279 ], [ -69.702759, 45.294211 ], [ -69.782410, 45.542908 ], [ -69.774170, 45.546755 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.554449 ], [ -69.732971, 45.567910 ], [ -69.724731, 45.583290 ], [ -69.716492, 45.587134 ], [ -69.713745, 45.596744 ], [ -69.721985, 45.604431 ], [ -69.719238, 45.610195 ], [ -69.719238, 45.612116 ], [ -69.710999, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.708252, 45.639007 ], [ -69.719238, 45.640928 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.650528 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.646688 ], [ -69.702759, 45.652448 ], [ -69.724731, 45.658208 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.738464, 45.652448 ], [ -69.743958, 45.652448 ], [ -69.741211, 45.658208 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.667805 ], [ -69.741211, 45.681239 ], [ -69.757690, 45.681239 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.711933 ], [ -69.804382, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.721522 ], [ -69.804382, 45.725356 ], [ -69.793396, 45.727274 ], [ -69.793396, 45.729191 ], [ -69.801636, 45.734943 ], [ -69.809875, 45.734943 ], [ -69.812622, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.818115, 45.748360 ], [ -69.801636, 45.750277 ], [ -69.798889, 45.746444 ], [ -69.790649, 45.748360 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.756026 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.769439 ], [ -69.782410, 45.771355 ], [ -69.782410, 45.775186 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.771423, 45.761775 ], [ -69.754944, 45.761775 ], [ -69.752197, 45.767523 ], [ -69.749451, 45.759859 ], [ -69.738464, 45.756026 ], [ -69.727478, 45.763691 ], [ -69.727478, 45.773270 ], [ -69.738464, 45.782848 ], [ -69.724731, 45.784764 ], [ -69.710999, 45.811572 ], [ -69.721985, 45.834540 ], [ -69.713745, 45.832627 ], [ -69.705505, 45.847934 ], [ -69.708252, 45.847934 ], [ -69.708252, 45.855586 ], [ -69.713745, 45.857499 ], [ -69.713745, 45.861325 ], [ -69.719238, 45.867063 ], [ -69.727478, 45.867063 ], [ -69.724731, 45.874712 ], [ -69.732971, 45.878537 ] ] ], [ [ [ -69.796143, 45.784764 ], [ -69.793396, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.796143, 45.784764 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.785156, 45.777102 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.826355, 45.742610 ], [ -69.829102, 45.738777 ], [ -69.834595, 45.738777 ], [ -69.826355, 45.742610 ] ] ], [ [ [ -69.732971, 45.878537 ], [ -69.735718, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.732971, 45.878537 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.114746, 46.388622 ], [ -70.109253, 46.388622 ], [ -70.112000, 46.392411 ], [ -70.101013, 46.401882 ], [ -70.101013, 46.405670 ], [ -70.098267, 46.407564 ], [ -70.098267, 46.411352 ], [ -70.079041, 46.411352 ], [ -70.057068, 46.417032 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.575855 ], [ -69.721985, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.656067, 45.865150 ], [ -69.658813, 45.861325 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.691772, 45.855586 ], [ -69.694519, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.702759, 45.872800 ], [ -69.702759, 45.880449 ], [ -69.700012, 45.880449 ], [ -69.700012, 45.886185 ], [ -69.710999, 45.886185 ], [ -69.732971, 45.878537 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.867063 ], [ -69.719238, 45.867063 ], [ -69.713745, 45.861325 ], [ -69.713745, 45.857499 ], [ -69.708252, 45.855586 ], [ -69.708252, 45.847934 ], [ -69.705505, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.721985, 45.834540 ], [ -69.710999, 45.811572 ], [ -69.724731, 45.784764 ], [ -69.738464, 45.782848 ], [ -69.727478, 45.773270 ], [ -69.727478, 45.763691 ], [ -69.738464, 45.756026 ], [ -69.749451, 45.759859 ], [ -69.752197, 45.767523 ], [ -69.754944, 45.761775 ], [ -69.771423, 45.761775 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.775186 ], [ -69.782410, 45.771355 ], [ -69.790649, 45.769439 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.748360 ], [ -69.798889, 45.746444 ], [ -69.801636, 45.750277 ], [ -69.818115, 45.748360 ], [ -69.826355, 45.742610 ], [ -69.812622, 45.738777 ], [ -69.809875, 45.734943 ], [ -69.801636, 45.734943 ], [ -69.793396, 45.729191 ], [ -69.793396, 45.727274 ], [ -69.804382, 45.725356 ], [ -69.804382, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.715769 ], [ -69.790649, 45.711933 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.681239 ], [ -69.741211, 45.681239 ], [ -69.741211, 45.667805 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.658208 ], [ -69.743958, 45.652448 ], [ -69.738464, 45.652448 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.724731, 45.658208 ], [ -69.702759, 45.652448 ], [ -69.694519, 45.646688 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.650528 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.710999, 45.639007 ], [ -69.702759, 45.629405 ], [ -69.710999, 45.614037 ], [ -69.719238, 45.612116 ], [ -69.719238, 45.610195 ], [ -69.721985, 45.604431 ], [ -69.713745, 45.596744 ], [ -69.716492, 45.587134 ], [ -69.724731, 45.583290 ], [ -69.732971, 45.567910 ], [ -69.763184, 45.554449 ], [ -69.774170, 45.556372 ], [ -69.774170, 45.546755 ], [ -69.782410, 45.542908 ], [ -69.702759, 45.296143 ], [ -69.702759, 45.294211 ], [ -69.710999, 45.292279 ], [ -69.686279, 45.213004 ], [ -69.689026, 45.209134 ], [ -69.656067, 45.100669 ], [ -69.647827, 45.102608 ], [ -69.623108, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.518738, 45.034715 ], [ -69.496765, 45.038597 ], [ -69.502258, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.288025, 44.809122 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.748684 ], [ -69.397888, 44.748684 ], [ -69.395142, 44.733077 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.694041 ], [ -69.469299, 44.709658 ], [ -69.474792, 44.709658 ], [ -69.472046, 44.719417 ], [ -69.485779, 44.721369 ], [ -69.634094, 44.701850 ], [ -69.631348, 44.674513 ], [ -69.620361, 44.658885 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.595642, 44.604157 ], [ -69.592896, 44.584599 ], [ -69.606628, 44.578730 ], [ -69.743958, 44.598290 ], [ -69.746704, 44.604157 ], [ -69.776917, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.820862, 44.582643 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.602202 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.608068 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611979 ], [ -69.947205, 44.649116 ], [ -69.969177, 44.662793 ], [ -69.960938, 44.662793 ], [ -69.960938, 44.672559 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.682325 ], [ -69.996643, 44.678419 ], [ -70.015869, 44.758436 ], [ -70.002136, 44.760386 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.811070 ], [ -70.029602, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.832500 ], [ -70.035095, 44.865603 ], [ -70.131226, 44.851975 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.943417 ], [ -70.112000, 44.949249 ], [ -70.161438, 45.129742 ], [ -70.296021, 45.110362 ], [ -70.309753, 45.164611 ], [ -70.312500, 45.166547 ], [ -70.367432, 45.158801 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.521240, 45.514046 ], [ -70.507507, 45.514046 ], [ -70.554199, 45.669725 ], [ -70.543213, 45.667805 ], [ -70.534973, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.513000, 45.679320 ], [ -70.480042, 45.696588 ], [ -70.466309, 45.708097 ], [ -70.441589, 45.704261 ], [ -70.427856, 45.708097 ], [ -70.430603, 45.711933 ], [ -70.419617, 45.713851 ], [ -70.403137, 45.721522 ], [ -70.397644, 45.729191 ], [ -70.392151, 45.729191 ], [ -70.386658, 45.734943 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.752193 ], [ -70.408630, 45.763691 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.786679 ], [ -70.419617, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.809658 ], [ -70.389404, 45.815401 ], [ -70.389404, 45.819229 ], [ -70.372925, 45.828799 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.342712, 45.853673 ], [ -70.309753, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.260315, 45.891920 ], [ -70.265808, 45.895743 ], [ -70.254822, 45.903389 ], [ -70.254822, 45.909122 ], [ -70.260315, 45.911033 ], [ -70.257568, 45.918677 ], [ -70.265808, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.241089, 45.945421 ], [ -70.246582, 45.945421 ], [ -70.243835, 45.947330 ], [ -70.252075, 45.956878 ], [ -70.263062, 45.953059 ], [ -70.260315, 45.960697 ], [ -70.268555, 45.964515 ], [ -70.274048, 45.962606 ], [ -70.276794, 45.968334 ], [ -70.285034, 45.964515 ], [ -70.317993, 45.964515 ], [ -70.312500, 45.966425 ], [ -70.309753, 45.983604 ], [ -70.296021, 45.987421 ], [ -70.285034, 45.996962 ], [ -70.290527, 45.995054 ], [ -70.304260, 45.998870 ], [ -70.307007, 46.012224 ], [ -70.320740, 46.019853 ], [ -70.304260, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.282288, 46.052267 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.061797 ], [ -70.285034, 46.063703 ], [ -70.304260, 46.061797 ], [ -70.312500, 46.065608 ], [ -70.304260, 46.071325 ], [ -70.304260, 46.082757 ], [ -70.293274, 46.088472 ], [ -70.287781, 46.101804 ], [ -70.274048, 46.103709 ], [ -70.254822, 46.101804 ], [ -70.254822, 46.115134 ], [ -70.238342, 46.145589 ], [ -70.241089, 46.151297 ], [ -70.249329, 46.153200 ], [ -70.268555, 46.170321 ], [ -70.279541, 46.176027 ], [ -70.287781, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.293274, 46.193141 ], [ -70.271301, 46.212150 ], [ -70.274048, 46.217852 ], [ -70.268555, 46.219752 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.260315, 46.238752 ], [ -70.252075, 46.250149 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.259645 ], [ -70.232849, 46.286224 ], [ -70.232849, 46.291918 ], [ -70.208130, 46.301406 ], [ -70.205383, 46.316584 ], [ -70.210876, 46.329862 ], [ -70.197144, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.183411, 46.352615 ], [ -70.175171, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.158691, 46.362093 ], [ -70.150452, 46.360198 ], [ -70.142212, 46.363988 ], [ -70.139465, 46.369674 ], [ -70.131226, 46.369674 ], [ -70.128479, 46.381044 ], [ -70.117493, 46.386728 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.388622 ] ], [ [ -69.796143, 45.784764 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.793396, 45.786679 ], [ -69.796143, 45.784764 ] ], [ [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.782848 ] ], [ [ -69.826355, 45.742610 ], [ -69.834595, 45.738777 ], [ -69.829102, 45.738777 ], [ -69.826355, 45.742610 ] ], [ [ -69.732971, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.735718, 45.878537 ], [ -69.732971, 45.878537 ] ], [ [ -69.796143, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.801636, 45.784764 ], [ -69.796143, 45.784764 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.117493, 46.386728 ], [ -70.114746, 46.386728 ], [ -70.114746, 46.388622 ], [ -70.109253, 46.388622 ], [ -70.112000, 46.392411 ], [ -70.101013, 46.401882 ], [ -70.101013, 46.405670 ], [ -70.098267, 46.407564 ], [ -70.098267, 46.411352 ], [ -70.079041, 46.411352 ], [ -70.057068, 46.417032 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.575855 ], [ -69.721985, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.656067, 45.865150 ], [ -69.658813, 45.861325 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.691772, 45.855586 ], [ -69.694519, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.702759, 45.872800 ], [ -69.702759, 45.880449 ], [ -69.700012, 45.880449 ], [ -69.700012, 45.886185 ], [ -69.710999, 45.886185 ], [ -69.732971, 45.878537 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.867063 ], [ -69.719238, 45.867063 ], [ -69.713745, 45.861325 ], [ -69.713745, 45.857499 ], [ -69.708252, 45.855586 ], [ -69.708252, 45.847934 ], [ -69.705505, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.721985, 45.834540 ], [ -69.710999, 45.811572 ], [ -69.724731, 45.784764 ], [ -69.738464, 45.782848 ], [ -69.727478, 45.773270 ], [ -69.727478, 45.763691 ], [ -69.738464, 45.756026 ], [ -69.749451, 45.759859 ], [ -69.752197, 45.767523 ], [ -69.754944, 45.761775 ], [ -69.771423, 45.761775 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.775186 ], [ -69.782410, 45.771355 ], [ -69.790649, 45.769439 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.748360 ], [ -69.798889, 45.746444 ], [ -69.801636, 45.750277 ], [ -69.818115, 45.748360 ], [ -69.826355, 45.742610 ], [ -69.812622, 45.738777 ], [ -69.809875, 45.734943 ], [ -69.801636, 45.734943 ], [ -69.793396, 45.729191 ], [ -69.793396, 45.727274 ], [ -69.804382, 45.725356 ], [ -69.804382, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.715769 ], [ -69.790649, 45.711933 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.681239 ], [ -69.741211, 45.681239 ], [ -69.741211, 45.667805 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.658208 ], [ -69.743958, 45.652448 ], [ -69.738464, 45.652448 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.724731, 45.658208 ], [ -69.702759, 45.652448 ], [ -69.694519, 45.646688 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.650528 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.710999, 45.639007 ], [ -69.702759, 45.629405 ], [ -69.710999, 45.614037 ], [ -69.719238, 45.612116 ], [ -69.719238, 45.610195 ], [ -69.721985, 45.604431 ], [ -69.713745, 45.596744 ], [ -69.716492, 45.587134 ], [ -69.724731, 45.583290 ], [ -69.732971, 45.567910 ], [ -69.763184, 45.554449 ], [ -69.774170, 45.556372 ], [ -69.774170, 45.546755 ], [ -69.782410, 45.542908 ], [ -69.702759, 45.296143 ], [ -69.702759, 45.294211 ], [ -69.710999, 45.292279 ], [ -69.686279, 45.213004 ], [ -69.689026, 45.209134 ], [ -69.656067, 45.100669 ], [ -69.647827, 45.102608 ], [ -69.623108, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.518738, 45.034715 ], [ -69.496765, 45.038597 ], [ -69.502258, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.288025, 44.809122 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.748684 ], [ -69.397888, 44.748684 ], [ -69.395142, 44.733077 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.694041 ], [ -69.469299, 44.709658 ], [ -69.474792, 44.709658 ], [ -69.472046, 44.719417 ], [ -69.485779, 44.721369 ], [ -69.634094, 44.701850 ], [ -69.631348, 44.674513 ], [ -69.620361, 44.658885 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.595642, 44.604157 ], [ -69.592896, 44.584599 ], [ -69.606628, 44.578730 ], [ -69.743958, 44.598290 ], [ -69.746704, 44.604157 ], [ -69.776917, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.820862, 44.582643 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.602202 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.608068 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611979 ], [ -69.947205, 44.649116 ], [ -69.969177, 44.662793 ], [ -69.960938, 44.662793 ], [ -69.960938, 44.672559 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.682325 ], [ -69.996643, 44.678419 ], [ -70.015869, 44.758436 ], [ -70.002136, 44.760386 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.811070 ], [ -70.029602, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.832500 ], [ -70.035095, 44.865603 ], [ -70.131226, 44.851975 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.943417 ], [ -70.112000, 44.949249 ], [ -70.161438, 45.129742 ], [ -70.296021, 45.110362 ], [ -70.309753, 45.164611 ], [ -70.312500, 45.166547 ], [ -70.367432, 45.158801 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.521240, 45.514046 ], [ -70.507507, 45.514046 ], [ -70.554199, 45.669725 ], [ -70.543213, 45.667805 ], [ -70.534973, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.513000, 45.679320 ], [ -70.480042, 45.696588 ], [ -70.466309, 45.708097 ], [ -70.441589, 45.704261 ], [ -70.427856, 45.708097 ], [ -70.430603, 45.711933 ], [ -70.419617, 45.713851 ], [ -70.403137, 45.721522 ], [ -70.397644, 45.729191 ], [ -70.392151, 45.729191 ], [ -70.386658, 45.734943 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.752193 ], [ -70.408630, 45.763691 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.786679 ], [ -70.419617, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.809658 ], [ -70.389404, 45.815401 ], [ -70.389404, 45.819229 ], [ -70.372925, 45.828799 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.342712, 45.853673 ], [ -70.309753, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.260315, 45.891920 ], [ -70.265808, 45.895743 ], [ -70.254822, 45.903389 ], [ -70.254822, 45.909122 ], [ -70.260315, 45.911033 ], [ -70.257568, 45.918677 ], [ -70.265808, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.241089, 45.945421 ], [ -70.246582, 45.945421 ], [ -70.243835, 45.947330 ], [ -70.252075, 45.956878 ], [ -70.263062, 45.953059 ], [ -70.260315, 45.960697 ], [ -70.268555, 45.964515 ], [ -70.274048, 45.962606 ], [ -70.276794, 45.968334 ], [ -70.285034, 45.964515 ], [ -70.317993, 45.964515 ], [ -70.312500, 45.966425 ], [ -70.309753, 45.983604 ], [ -70.296021, 45.987421 ], [ -70.285034, 45.996962 ], [ -70.290527, 45.995054 ], [ -70.304260, 45.998870 ], [ -70.307007, 46.012224 ], [ -70.320740, 46.019853 ], [ -70.304260, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.282288, 46.052267 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.061797 ], [ -70.285034, 46.063703 ], [ -70.304260, 46.061797 ], [ -70.312500, 46.065608 ], [ -70.304260, 46.071325 ], [ -70.304260, 46.082757 ], [ -70.293274, 46.088472 ], [ -70.287781, 46.101804 ], [ -70.274048, 46.103709 ], [ -70.254822, 46.101804 ], [ -70.254822, 46.115134 ], [ -70.238342, 46.145589 ], [ -70.241089, 46.151297 ], [ -70.249329, 46.153200 ], [ -70.268555, 46.170321 ], [ -70.279541, 46.176027 ], [ -70.287781, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.293274, 46.193141 ], [ -70.271301, 46.212150 ], [ -70.274048, 46.217852 ], [ -70.268555, 46.219752 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.260315, 46.238752 ], [ -70.252075, 46.250149 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.259645 ], [ -70.232849, 46.286224 ], [ -70.232849, 46.291918 ], [ -70.208130, 46.301406 ], [ -70.205383, 46.316584 ], [ -70.210876, 46.329862 ], [ -70.197144, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.183411, 46.352615 ], [ -70.175171, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.158691, 46.362093 ], [ -70.150452, 46.360198 ], [ -70.142212, 46.363988 ], [ -70.139465, 46.369674 ], [ -70.131226, 46.369674 ], [ -70.128479, 46.381044 ], [ -70.117493, 46.386728 ] ], [ [ -69.796143, 45.784764 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.793396, 45.786679 ], [ -69.796143, 45.784764 ] ], [ [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.782848 ] ], [ [ -69.826355, 45.742610 ], [ -69.834595, 45.738777 ], [ -69.829102, 45.738777 ], [ -69.826355, 45.742610 ] ], [ [ -69.732971, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.735718, 45.878537 ], [ -69.732971, 45.878537 ] ] ], [ [ [ -70.117493, 46.386728 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.388622 ], [ -70.117493, 46.386728 ] ] ] ] } } ] } ] } , @@ -82,11 +83,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.734344, 45.879493 ], [ -69.732971, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.716492, 45.884273 ], [ -69.713745, 45.883317 ], [ -69.709625, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702759, 45.879493 ], [ -69.701385, 45.872800 ], [ -69.697266, 45.868019 ], [ -69.697266, 45.865150 ], [ -69.693146, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.690399, 45.858456 ], [ -69.690399, 45.854630 ], [ -69.687653, 45.854630 ], [ -69.686279, 45.851760 ], [ -69.683533, 45.851760 ], [ -69.678040, 45.853673 ], [ -69.676666, 45.853673 ], [ -69.676666, 45.851760 ], [ -69.675293, 45.852717 ], [ -69.672546, 45.859412 ], [ -69.675293, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.656067, 45.862281 ], [ -69.654694, 45.864194 ], [ -69.647827, 45.863238 ], [ -69.684906, 45.984558 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.720612, 46.394306 ], [ -69.721985, 46.574911 ], [ -68.822479, 46.573023 ], [ -68.822479, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.212150 ], [ -68.827972, 45.685077 ], [ -68.959808, 45.663007 ], [ -68.951569, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.965302, 45.513084 ], [ -68.858185, 45.527517 ], [ -68.829346, 45.434117 ], [ -68.777161, 45.241053 ], [ -68.881531, 45.225579 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.618988, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.687653, 45.208166 ], [ -69.684906, 45.213004 ], [ -69.709625, 45.291313 ], [ -69.701385, 45.293245 ], [ -69.781036, 45.542908 ], [ -69.774170, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.555410 ], [ -69.761810, 45.554449 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728851, 45.570794 ], [ -69.728851, 45.572716 ], [ -69.724731, 45.582329 ], [ -69.715118, 45.586173 ], [ -69.713745, 45.595783 ], [ -69.717865, 45.597705 ], [ -69.721985, 45.603470 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.612116 ], [ -69.713745, 45.614037 ], [ -69.709625, 45.614037 ], [ -69.709625, 45.616919 ], [ -69.704132, 45.620761 ], [ -69.702759, 45.628445 ], [ -69.708252, 45.633246 ], [ -69.708252, 45.638047 ], [ -69.719238, 45.639968 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.647648 ], [ -69.715118, 45.650528 ], [ -69.712372, 45.650528 ], [ -69.705505, 45.644768 ], [ -69.701385, 45.644768 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.693146, 45.645728 ], [ -69.701385, 45.652448 ], [ -69.723358, 45.658208 ], [ -69.726105, 45.657248 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.737091, 45.651488 ], [ -69.743958, 45.652448 ], [ -69.745331, 45.653408 ], [ -69.739838, 45.657248 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.739838, 45.667805 ], [ -69.739838, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.757690, 45.680280 ], [ -69.760437, 45.683158 ], [ -69.764557, 45.683158 ], [ -69.774170, 45.686036 ], [ -69.779663, 45.690833 ], [ -69.783783, 45.690833 ], [ -69.786530, 45.692751 ], [ -69.786530, 45.700425 ], [ -69.790649, 45.705220 ], [ -69.790649, 45.710974 ], [ -69.798889, 45.715769 ], [ -69.803009, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.808502, 45.723439 ], [ -69.804382, 45.720563 ], [ -69.803009, 45.724398 ], [ -69.800262, 45.723439 ], [ -69.798889, 45.725356 ], [ -69.793396, 45.726315 ], [ -69.792023, 45.729191 ], [ -69.794769, 45.729191 ], [ -69.800262, 45.733984 ], [ -69.809875, 45.733984 ], [ -69.812622, 45.735901 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.737818 ], [ -69.820862, 45.739735 ], [ -69.824982, 45.742610 ], [ -69.827728, 45.737818 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.740693 ], [ -69.826355, 45.743569 ], [ -69.818115, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.797516, 45.746444 ], [ -69.789276, 45.747402 ], [ -69.789276, 45.750277 ], [ -69.793396, 45.751235 ], [ -69.790649, 45.756026 ], [ -69.794769, 45.757942 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.762733 ], [ -69.790649, 45.764649 ], [ -69.790649, 45.768481 ], [ -69.782410, 45.770397 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.790649, 45.778060 ], [ -69.785156, 45.782848 ], [ -69.787903, 45.783806 ], [ -69.783783, 45.785721 ], [ -69.782410, 45.781891 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.782410, 45.776144 ], [ -69.775543, 45.765607 ], [ -69.768677, 45.763691 ], [ -69.770050, 45.761775 ], [ -69.753571, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.748077, 45.759859 ], [ -69.743958, 45.760817 ], [ -69.741211, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.727478, 45.762733 ], [ -69.724731, 45.766565 ], [ -69.726105, 45.772313 ], [ -69.728851, 45.775186 ], [ -69.737091, 45.779975 ], [ -69.738464, 45.782848 ], [ -69.723358, 45.783806 ], [ -69.719238, 45.798170 ], [ -69.709625, 45.811572 ], [ -69.713745, 45.824014 ], [ -69.719238, 45.829756 ], [ -69.720612, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.720612, 45.835497 ], [ -69.715118, 45.832627 ], [ -69.712372, 45.832627 ], [ -69.705505, 45.846978 ], [ -69.708252, 45.846978 ], [ -69.709625, 45.850804 ], [ -69.706879, 45.854630 ], [ -69.712372, 45.856543 ], [ -69.712372, 45.861325 ], [ -69.717865, 45.866106 ], [ -69.726105, 45.866106 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.876624 ], [ -69.734344, 45.877581 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.794769, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.789276, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.794769, 45.783806 ] ] ], [ [ [ -69.734344, 45.879493 ], [ -69.738464, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.794769, 45.783806 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796143, 45.785721 ], [ -69.794769, 45.783806 ] ] ], [ [ [ -69.797516, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.734344, 45.879493 ], [ -69.732971, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.716492, 45.884273 ], [ -69.713745, 45.883317 ], [ -69.709625, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702759, 45.879493 ], [ -69.701385, 45.872800 ], [ -69.697266, 45.868019 ], [ -69.697266, 45.865150 ], [ -69.693146, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.690399, 45.858456 ], [ -69.690399, 45.854630 ], [ -69.687653, 45.854630 ], [ -69.686279, 45.851760 ], [ -69.683533, 45.851760 ], [ -69.678040, 45.853673 ], [ -69.676666, 45.853673 ], [ -69.676666, 45.851760 ], [ -69.675293, 45.852717 ], [ -69.672546, 45.859412 ], [ -69.675293, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.656067, 45.862281 ], [ -69.654694, 45.864194 ], [ -69.647827, 45.863238 ], [ -69.684906, 45.984558 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.720612, 46.394306 ], [ -69.721985, 46.574911 ], [ -68.822479, 46.573023 ], [ -68.822479, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.212150 ], [ -68.827972, 45.685077 ], [ -68.959808, 45.663007 ], [ -68.951569, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.965302, 45.513084 ], [ -68.858185, 45.527517 ], [ -68.829346, 45.434117 ], [ -68.777161, 45.241053 ], [ -68.881531, 45.225579 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.618988, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.687653, 45.208166 ], [ -69.684906, 45.213004 ], [ -69.709625, 45.291313 ], [ -69.701385, 45.293245 ], [ -69.781036, 45.542908 ], [ -69.774170, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.555410 ], [ -69.761810, 45.554449 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728851, 45.570794 ], [ -69.728851, 45.572716 ], [ -69.724731, 45.582329 ], [ -69.715118, 45.586173 ], [ -69.713745, 45.595783 ], [ -69.717865, 45.597705 ], [ -69.721985, 45.603470 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.612116 ], [ -69.713745, 45.614037 ], [ -69.709625, 45.614037 ], [ -69.709625, 45.616919 ], [ -69.704132, 45.620761 ], [ -69.702759, 45.628445 ], [ -69.708252, 45.633246 ], [ -69.708252, 45.638047 ], [ -69.719238, 45.639968 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.647648 ], [ -69.715118, 45.650528 ], [ -69.712372, 45.650528 ], [ -69.705505, 45.644768 ], [ -69.701385, 45.644768 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.693146, 45.645728 ], [ -69.701385, 45.652448 ], [ -69.723358, 45.658208 ], [ -69.726105, 45.657248 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.737091, 45.651488 ], [ -69.743958, 45.652448 ], [ -69.745331, 45.653408 ], [ -69.739838, 45.657248 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.739838, 45.667805 ], [ -69.739838, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.757690, 45.680280 ], [ -69.760437, 45.683158 ], [ -69.764557, 45.683158 ], [ -69.774170, 45.686036 ], [ -69.779663, 45.690833 ], [ -69.783783, 45.690833 ], [ -69.786530, 45.692751 ], [ -69.786530, 45.700425 ], [ -69.790649, 45.705220 ], [ -69.790649, 45.710974 ], [ -69.798889, 45.715769 ], [ -69.803009, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.808502, 45.723439 ], [ -69.804382, 45.720563 ], [ -69.803009, 45.724398 ], [ -69.800262, 45.723439 ], [ -69.798889, 45.725356 ], [ -69.793396, 45.726315 ], [ -69.792023, 45.729191 ], [ -69.794769, 45.729191 ], [ -69.800262, 45.733984 ], [ -69.809875, 45.733984 ], [ -69.812622, 45.735901 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.737818 ], [ -69.820862, 45.739735 ], [ -69.824982, 45.742610 ], [ -69.827728, 45.737818 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.740693 ], [ -69.826355, 45.743569 ], [ -69.818115, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.797516, 45.746444 ], [ -69.789276, 45.747402 ], [ -69.789276, 45.750277 ], [ -69.793396, 45.751235 ], [ -69.790649, 45.756026 ], [ -69.794769, 45.757942 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.762733 ], [ -69.790649, 45.764649 ], [ -69.790649, 45.768481 ], [ -69.782410, 45.770397 ], [ -69.785156, 45.772313 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.790649, 45.778060 ], [ -69.785156, 45.782848 ], [ -69.787903, 45.783806 ], [ -69.783783, 45.785721 ], [ -69.782410, 45.781891 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.782410, 45.776144 ], [ -69.775543, 45.765607 ], [ -69.768677, 45.763691 ], [ -69.770050, 45.761775 ], [ -69.753571, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.748077, 45.759859 ], [ -69.743958, 45.760817 ], [ -69.741211, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.727478, 45.762733 ], [ -69.724731, 45.766565 ], [ -69.726105, 45.772313 ], [ -69.728851, 45.775186 ], [ -69.737091, 45.779975 ], [ -69.738464, 45.782848 ], [ -69.723358, 45.783806 ], [ -69.719238, 45.798170 ], [ -69.709625, 45.811572 ], [ -69.713745, 45.824014 ], [ -69.719238, 45.829756 ], [ -69.720612, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.720612, 45.835497 ], [ -69.715118, 45.832627 ], [ -69.712372, 45.832627 ], [ -69.705505, 45.846978 ], [ -69.708252, 45.846978 ], [ -69.709625, 45.850804 ], [ -69.706879, 45.854630 ], [ -69.712372, 45.856543 ], [ -69.712372, 45.861325 ], [ -69.717865, 45.866106 ], [ -69.726105, 45.866106 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.876624 ], [ -69.734344, 45.877581 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.794769, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.789276, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.794769, 45.783806 ] ] ], [ [ [ -69.734344, 45.879493 ], [ -69.738464, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.794769, 45.783806 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796143, 45.785721 ], [ -69.794769, 45.783806 ] ] ], [ [ [ -69.797516, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.254822, 46.246351 ], [ -70.252075, 46.249200 ], [ -70.252075, 46.252998 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261544 ], [ -70.249329, 46.267240 ], [ -70.243835, 46.273885 ], [ -70.241089, 46.273885 ], [ -70.241089, 46.279580 ], [ -70.232849, 46.285275 ], [ -70.232849, 46.291918 ], [ -70.217743, 46.294764 ], [ -70.217743, 46.295713 ], [ -70.216370, 46.294764 ], [ -70.212250, 46.299509 ], [ -70.206757, 46.300457 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.315636 ], [ -70.208130, 46.319430 ], [ -70.206757, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.195770, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.182037, 46.352615 ], [ -70.182037, 46.354511 ], [ -70.173798, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.162811, 46.361145 ], [ -70.158691, 46.360198 ], [ -70.157318, 46.362093 ], [ -70.149078, 46.359250 ], [ -70.144958, 46.363041 ], [ -70.140839, 46.363041 ], [ -70.142212, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.129852, 46.369674 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.380096 ], [ -70.117493, 46.385781 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.385781 ], [ -70.112000, 46.386728 ], [ -70.113373, 46.388622 ], [ -70.107880, 46.388622 ], [ -70.110626, 46.391464 ], [ -70.107880, 46.391464 ], [ -70.107880, 46.393358 ], [ -70.102386, 46.397147 ], [ -70.101013, 46.401882 ], [ -70.099640, 46.400935 ], [ -70.101013, 46.403776 ], [ -70.098267, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.096893, 46.406617 ], [ -70.096893, 46.407564 ], [ -70.095520, 46.408511 ], [ -70.096893, 46.410405 ], [ -70.092773, 46.409458 ], [ -70.090027, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.411352 ], [ -70.077667, 46.410405 ], [ -70.057068, 46.416086 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.574911 ], [ -69.720612, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684906, 45.984558 ], [ -69.647827, 45.863238 ], [ -69.654694, 45.864194 ], [ -69.656067, 45.862281 ], [ -69.657440, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.675293, 45.862281 ], [ -69.672546, 45.860369 ], [ -69.675293, 45.852717 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853673 ], [ -69.678040, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.687653, 45.854630 ], [ -69.690399, 45.854630 ], [ -69.690399, 45.858456 ], [ -69.694519, 45.862281 ], [ -69.693146, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.697266, 45.868019 ], [ -69.701385, 45.872800 ], [ -69.702759, 45.879493 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.709625, 45.886185 ], [ -69.713745, 45.883317 ], [ -69.716492, 45.884273 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.734344, 45.879493 ], [ -69.734344, 45.877581 ], [ -69.727478, 45.876624 ], [ -69.724731, 45.874712 ], [ -69.726105, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.712372, 45.861325 ], [ -69.712372, 45.856543 ], [ -69.706879, 45.854630 ], [ -69.709625, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.705505, 45.846978 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832627 ], [ -69.720612, 45.835497 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.720612, 45.834540 ], [ -69.719238, 45.829756 ], [ -69.713745, 45.824014 ], [ -69.709625, 45.811572 ], [ -69.719238, 45.798170 ], [ -69.723358, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.779975 ], [ -69.728851, 45.775186 ], [ -69.726105, 45.772313 ], [ -69.724731, 45.766565 ], [ -69.727478, 45.762733 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.756026 ], [ -69.743958, 45.760817 ], [ -69.748077, 45.759859 ], [ -69.750824, 45.763691 ], [ -69.753571, 45.761775 ], [ -69.770050, 45.761775 ], [ -69.768677, 45.763691 ], [ -69.775543, 45.765607 ], [ -69.782410, 45.776144 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.782410, 45.781891 ], [ -69.783783, 45.785721 ], [ -69.787903, 45.783806 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.778060 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.785156, 45.775186 ], [ -69.785156, 45.773270 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.770397 ], [ -69.790649, 45.768481 ], [ -69.790649, 45.764649 ], [ -69.793396, 45.762733 ], [ -69.793396, 45.758901 ], [ -69.794769, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.751235 ], [ -69.789276, 45.750277 ], [ -69.789276, 45.747402 ], [ -69.797516, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.812622, 45.746444 ], [ -69.812622, 45.747402 ], [ -69.818115, 45.747402 ], [ -69.826355, 45.743569 ], [ -69.827728, 45.740693 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.737818 ], [ -69.824982, 45.742610 ], [ -69.820862, 45.739735 ], [ -69.812622, 45.737818 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733984 ], [ -69.800262, 45.733984 ], [ -69.794769, 45.729191 ], [ -69.792023, 45.729191 ], [ -69.793396, 45.726315 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.723439 ], [ -69.803009, 45.724398 ], [ -69.804382, 45.720563 ], [ -69.808502, 45.723439 ], [ -69.809875, 45.723439 ], [ -69.803009, 45.715769 ], [ -69.798889, 45.715769 ], [ -69.790649, 45.710974 ], [ -69.790649, 45.705220 ], [ -69.786530, 45.700425 ], [ -69.786530, 45.692751 ], [ -69.783783, 45.690833 ], [ -69.779663, 45.690833 ], [ -69.774170, 45.686036 ], [ -69.764557, 45.683158 ], [ -69.760437, 45.683158 ], [ -69.757690, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.739838, 45.680280 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.675482 ], [ -69.739838, 45.667805 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.739838, 45.657248 ], [ -69.745331, 45.653408 ], [ -69.743958, 45.652448 ], [ -69.737091, 45.651488 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.728851, 45.657248 ], [ -69.723358, 45.658208 ], [ -69.701385, 45.652448 ], [ -69.693146, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.697266, 45.640928 ], [ -69.701385, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.712372, 45.650528 ], [ -69.715118, 45.650528 ], [ -69.713745, 45.647648 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.639968 ], [ -69.709625, 45.638047 ], [ -69.708252, 45.633246 ], [ -69.702759, 45.628445 ], [ -69.704132, 45.620761 ], [ -69.709625, 45.616919 ], [ -69.709625, 45.614037 ], [ -69.713745, 45.614037 ], [ -69.715118, 45.612116 ], [ -69.717865, 45.612116 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.608274 ], [ -69.721985, 45.603470 ], [ -69.717865, 45.597705 ], [ -69.713745, 45.595783 ], [ -69.715118, 45.586173 ], [ -69.724731, 45.582329 ], [ -69.728851, 45.572716 ], [ -69.728851, 45.570794 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.761810, 45.554449 ], [ -69.774170, 45.555410 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.545793 ], [ -69.781036, 45.542908 ], [ -69.732971, 45.389771 ], [ -69.701385, 45.296143 ], [ -69.701385, 45.293245 ], [ -69.709625, 45.292279 ], [ -69.705505, 45.276819 ], [ -69.684906, 45.213971 ], [ -69.687653, 45.208166 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -70.127106, 45.011419 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.473175, 45.352145 ], [ -70.519867, 45.513084 ], [ -70.506134, 45.514046 ], [ -70.554199, 45.668765 ], [ -70.547333, 45.666846 ], [ -70.543213, 45.666846 ], [ -70.533600, 45.671644 ], [ -70.526733, 45.666846 ], [ -70.519867, 45.669725 ], [ -70.519867, 45.671644 ], [ -70.511627, 45.679320 ], [ -70.503387, 45.682199 ], [ -70.503387, 45.684117 ], [ -70.497894, 45.686036 ], [ -70.493774, 45.689874 ], [ -70.480042, 45.695629 ], [ -70.470428, 45.702343 ], [ -70.471802, 45.703302 ], [ -70.466309, 45.707138 ], [ -70.462189, 45.706179 ], [ -70.456696, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.445709, 45.704261 ], [ -70.441589, 45.706179 ], [ -70.440216, 45.704261 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.430603, 45.710974 ], [ -70.418243, 45.713851 ], [ -70.414124, 45.716728 ], [ -70.408630, 45.717686 ], [ -70.401764, 45.720563 ], [ -70.397644, 45.729191 ], [ -70.390778, 45.729191 ], [ -70.385284, 45.734943 ], [ -70.386658, 45.734943 ], [ -70.386658, 45.736860 ], [ -70.390778, 45.736860 ], [ -70.390778, 45.737818 ], [ -70.393524, 45.738777 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.748360 ], [ -70.389404, 45.751235 ], [ -70.396271, 45.756984 ], [ -70.401764, 45.757942 ], [ -70.407257, 45.762733 ], [ -70.405884, 45.770397 ], [ -70.408630, 45.774228 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.785721 ], [ -70.415497, 45.790509 ], [ -70.418243, 45.796255 ], [ -70.407257, 45.798170 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.808700 ], [ -70.389404, 45.814444 ], [ -70.389404, 45.819229 ], [ -70.377045, 45.827842 ], [ -70.372925, 45.828799 ], [ -70.370178, 45.831670 ], [ -70.372925, 45.834540 ], [ -70.371552, 45.835497 ], [ -70.360565, 45.835497 ], [ -70.356445, 45.838368 ], [ -70.357819, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.349579, 45.847934 ], [ -70.342712, 45.852717 ], [ -70.319366, 45.856543 ], [ -70.308380, 45.859412 ], [ -70.304260, 45.864194 ], [ -70.298767, 45.865150 ], [ -70.285034, 45.871844 ], [ -70.274048, 45.880449 ], [ -70.274048, 45.883317 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891920 ], [ -70.265808, 45.894787 ], [ -70.254822, 45.902433 ], [ -70.253448, 45.908167 ], [ -70.260315, 45.910078 ], [ -70.257568, 45.918677 ], [ -70.261688, 45.920587 ], [ -70.263062, 45.920587 ], [ -70.264435, 45.924409 ], [ -70.252075, 45.933960 ], [ -70.239716, 45.939691 ], [ -70.239716, 45.944466 ], [ -70.245209, 45.945421 ], [ -70.242462, 45.947330 ], [ -70.249329, 45.950195 ], [ -70.252075, 45.955924 ], [ -70.256195, 45.953059 ], [ -70.261688, 45.953059 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258942, 45.959742 ], [ -70.261688, 45.960697 ], [ -70.267181, 45.964515 ], [ -70.274048, 45.961652 ], [ -70.275421, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.274048, 45.964515 ], [ -70.275421, 45.967379 ], [ -70.283661, 45.964515 ], [ -70.287781, 45.965470 ], [ -70.289154, 45.963561 ], [ -70.298767, 45.963561 ], [ -70.307007, 45.965470 ], [ -70.313873, 45.962606 ], [ -70.316620, 45.963561 ], [ -70.312500, 45.966425 ], [ -70.313873, 45.970243 ], [ -70.311127, 45.973106 ], [ -70.312500, 45.975015 ], [ -70.308380, 45.978832 ], [ -70.309753, 45.980741 ], [ -70.308380, 45.982649 ], [ -70.300140, 45.986466 ], [ -70.296021, 45.986466 ], [ -70.285034, 45.996008 ], [ -70.289154, 45.994099 ], [ -70.293274, 45.997916 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.307007, 46.004593 ], [ -70.307007, 46.011270 ], [ -70.312500, 46.012224 ], [ -70.311127, 46.016039 ], [ -70.319366, 46.019853 ], [ -70.302887, 46.027482 ], [ -70.298767, 46.031296 ], [ -70.302887, 46.032249 ], [ -70.300140, 46.038923 ], [ -70.282288, 46.051314 ], [ -70.279541, 46.057032 ], [ -70.279541, 46.060844 ], [ -70.283661, 46.060844 ], [ -70.285034, 46.062750 ], [ -70.293274, 46.060844 ], [ -70.302887, 46.060844 ], [ -70.304260, 46.062750 ], [ -70.307007, 46.061797 ], [ -70.309753, 46.062750 ], [ -70.311127, 46.064656 ], [ -70.302887, 46.070372 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.304260, 46.077041 ], [ -70.300140, 46.078947 ], [ -70.302887, 46.080852 ], [ -70.302887, 46.082757 ], [ -70.291901, 46.087519 ], [ -70.291901, 46.094186 ], [ -70.285034, 46.097995 ], [ -70.286407, 46.100852 ], [ -70.279541, 46.099900 ], [ -70.274048, 46.102757 ], [ -70.260315, 46.101804 ], [ -70.257568, 46.099900 ], [ -70.253448, 46.100852 ], [ -70.253448, 46.106565 ], [ -70.256195, 46.109422 ], [ -70.254822, 46.114182 ], [ -70.253448, 46.115134 ], [ -70.247955, 46.126556 ], [ -70.243835, 46.129412 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236969, 46.145589 ], [ -70.241089, 46.149394 ], [ -70.241089, 46.151297 ], [ -70.243835, 46.150346 ], [ -70.245209, 46.152248 ], [ -70.249329, 46.152248 ], [ -70.247955, 46.154151 ], [ -70.250702, 46.155102 ], [ -70.250702, 46.156054 ], [ -70.253448, 46.158907 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265808, 46.165566 ], [ -70.267181, 46.169370 ], [ -70.279541, 46.176027 ], [ -70.286407, 46.183634 ], [ -70.286407, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.290527, 46.188388 ], [ -70.293274, 46.192190 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.195993 ], [ -70.286407, 46.195993 ], [ -70.278168, 46.204547 ], [ -70.276794, 46.208349 ], [ -70.271301, 46.211200 ], [ -70.271301, 46.214051 ], [ -70.275421, 46.215001 ], [ -70.274048, 46.216902 ], [ -70.271301, 46.216902 ], [ -70.268555, 46.219752 ], [ -70.265808, 46.223553 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236853 ], [ -70.260315, 46.238752 ], [ -70.254822, 46.246351 ] ], [ [ -69.794769, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.784764 ], [ -69.792023, 45.785721 ], [ -69.794769, 45.783806 ] ], [ [ -69.734344, 45.879493 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.880449 ], [ -69.734344, 45.879493 ] ], [ [ -69.794769, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.794769, 45.783806 ] ], [ [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.797516, 45.783806 ] ] ], [ [ [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.338837, 45.011419 ], [ -69.621735, 45.011419 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.101013, 46.401882 ], [ -70.101013, 46.403776 ], [ -70.098267, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.096893, 46.406617 ], [ -70.096893, 46.407564 ], [ -70.095520, 46.408511 ], [ -70.096893, 46.410405 ], [ -70.092773, 46.409458 ], [ -70.090027, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.411352 ], [ -70.077667, 46.410405 ], [ -70.057068, 46.416086 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.574911 ], [ -69.720612, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684906, 45.984558 ], [ -69.647827, 45.863238 ], [ -69.654694, 45.864194 ], [ -69.656067, 45.862281 ], [ -69.657440, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.675293, 45.862281 ], [ -69.672546, 45.860369 ], [ -69.675293, 45.852717 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853673 ], [ -69.678040, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.687653, 45.854630 ], [ -69.690399, 45.854630 ], [ -69.690399, 45.858456 ], [ -69.694519, 45.862281 ], [ -69.693146, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.697266, 45.868019 ], [ -69.701385, 45.872800 ], [ -69.702759, 45.879493 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.709625, 45.886185 ], [ -69.713745, 45.883317 ], [ -69.716492, 45.884273 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.734344, 45.879493 ], [ -69.734344, 45.877581 ], [ -69.727478, 45.876624 ], [ -69.724731, 45.874712 ], [ -69.726105, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.712372, 45.861325 ], [ -69.712372, 45.856543 ], [ -69.706879, 45.854630 ], [ -69.709625, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.705505, 45.846978 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832627 ], [ -69.720612, 45.835497 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.720612, 45.834540 ], [ -69.719238, 45.829756 ], [ -69.713745, 45.824014 ], [ -69.709625, 45.811572 ], [ -69.719238, 45.798170 ], [ -69.723358, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.779975 ], [ -69.728851, 45.775186 ], [ -69.726105, 45.772313 ], [ -69.724731, 45.766565 ], [ -69.727478, 45.762733 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.756026 ], [ -69.743958, 45.760817 ], [ -69.748077, 45.759859 ], [ -69.750824, 45.763691 ], [ -69.753571, 45.761775 ], [ -69.770050, 45.761775 ], [ -69.768677, 45.763691 ], [ -69.775543, 45.765607 ], [ -69.782410, 45.776144 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.782410, 45.781891 ], [ -69.783783, 45.785721 ], [ -69.787903, 45.783806 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.778060 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.785156, 45.775186 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.770397 ], [ -69.790649, 45.768481 ], [ -69.790649, 45.764649 ], [ -69.793396, 45.762733 ], [ -69.793396, 45.758901 ], [ -69.794769, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.751235 ], [ -69.789276, 45.750277 ], [ -69.789276, 45.747402 ], [ -69.797516, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.812622, 45.746444 ], [ -69.812622, 45.747402 ], [ -69.818115, 45.747402 ], [ -69.826355, 45.743569 ], [ -69.827728, 45.740693 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.737818 ], [ -69.824982, 45.742610 ], [ -69.820862, 45.739735 ], [ -69.812622, 45.737818 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733984 ], [ -69.800262, 45.733984 ], [ -69.794769, 45.729191 ], [ -69.792023, 45.729191 ], [ -69.793396, 45.726315 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.723439 ], [ -69.803009, 45.724398 ], [ -69.804382, 45.720563 ], [ -69.808502, 45.723439 ], [ -69.809875, 45.723439 ], [ -69.803009, 45.715769 ], [ -69.798889, 45.715769 ], [ -69.790649, 45.710974 ], [ -69.790649, 45.705220 ], [ -69.786530, 45.700425 ], [ -69.786530, 45.692751 ], [ -69.783783, 45.690833 ], [ -69.779663, 45.690833 ], [ -69.774170, 45.686036 ], [ -69.764557, 45.683158 ], [ -69.760437, 45.683158 ], [ -69.757690, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.739838, 45.680280 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.675482 ], [ -69.739838, 45.667805 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.739838, 45.657248 ], [ -69.745331, 45.653408 ], [ -69.743958, 45.652448 ], [ -69.737091, 45.651488 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.728851, 45.657248 ], [ -69.723358, 45.658208 ], [ -69.701385, 45.652448 ], [ -69.693146, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.697266, 45.640928 ], [ -69.701385, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.712372, 45.650528 ], [ -69.715118, 45.650528 ], [ -69.713745, 45.647648 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.639968 ], [ -69.709625, 45.638047 ], [ -69.708252, 45.633246 ], [ -69.702759, 45.628445 ], [ -69.704132, 45.620761 ], [ -69.709625, 45.616919 ], [ -69.709625, 45.614037 ], [ -69.713745, 45.614037 ], [ -69.715118, 45.612116 ], [ -69.717865, 45.612116 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.608274 ], [ -69.721985, 45.603470 ], [ -69.717865, 45.597705 ], [ -69.713745, 45.595783 ], [ -69.715118, 45.586173 ], [ -69.724731, 45.582329 ], [ -69.728851, 45.572716 ], [ -69.728851, 45.570794 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.761810, 45.554449 ], [ -69.774170, 45.555410 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.545793 ], [ -69.781036, 45.542908 ], [ -69.732971, 45.389771 ], [ -69.701385, 45.296143 ], [ -69.701385, 45.293245 ], [ -69.709625, 45.292279 ], [ -69.705505, 45.276819 ], [ -69.684906, 45.213971 ], [ -69.687653, 45.208166 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -70.127106, 45.011419 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.473175, 45.352145 ], [ -70.519867, 45.513084 ], [ -70.506134, 45.514046 ], [ -70.554199, 45.668765 ], [ -70.547333, 45.666846 ], [ -70.543213, 45.666846 ], [ -70.533600, 45.671644 ], [ -70.526733, 45.666846 ], [ -70.519867, 45.669725 ], [ -70.519867, 45.671644 ], [ -70.511627, 45.679320 ], [ -70.503387, 45.682199 ], [ -70.503387, 45.684117 ], [ -70.497894, 45.686036 ], [ -70.493774, 45.689874 ], [ -70.480042, 45.695629 ], [ -70.470428, 45.702343 ], [ -70.471802, 45.703302 ], [ -70.466309, 45.707138 ], [ -70.462189, 45.706179 ], [ -70.456696, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.445709, 45.704261 ], [ -70.441589, 45.706179 ], [ -70.440216, 45.704261 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.430603, 45.710974 ], [ -70.418243, 45.713851 ], [ -70.414124, 45.716728 ], [ -70.408630, 45.717686 ], [ -70.401764, 45.720563 ], [ -70.397644, 45.729191 ], [ -70.390778, 45.729191 ], [ -70.385284, 45.734943 ], [ -70.386658, 45.734943 ], [ -70.386658, 45.736860 ], [ -70.390778, 45.736860 ], [ -70.390778, 45.737818 ], [ -70.393524, 45.738777 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.748360 ], [ -70.389404, 45.751235 ], [ -70.396271, 45.756984 ], [ -70.401764, 45.757942 ], [ -70.407257, 45.762733 ], [ -70.405884, 45.770397 ], [ -70.408630, 45.774228 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.785721 ], [ -70.415497, 45.790509 ], [ -70.418243, 45.796255 ], [ -70.407257, 45.798170 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.808700 ], [ -70.389404, 45.814444 ], [ -70.389404, 45.819229 ], [ -70.377045, 45.827842 ], [ -70.372925, 45.828799 ], [ -70.370178, 45.831670 ], [ -70.372925, 45.834540 ], [ -70.371552, 45.835497 ], [ -70.360565, 45.835497 ], [ -70.356445, 45.838368 ], [ -70.357819, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.349579, 45.847934 ], [ -70.342712, 45.852717 ], [ -70.319366, 45.856543 ], [ -70.308380, 45.859412 ], [ -70.304260, 45.864194 ], [ -70.298767, 45.865150 ], [ -70.285034, 45.871844 ], [ -70.274048, 45.880449 ], [ -70.274048, 45.883317 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891920 ], [ -70.265808, 45.894787 ], [ -70.254822, 45.902433 ], [ -70.253448, 45.908167 ], [ -70.260315, 45.910078 ], [ -70.257568, 45.918677 ], [ -70.261688, 45.920587 ], [ -70.263062, 45.920587 ], [ -70.264435, 45.924409 ], [ -70.252075, 45.933960 ], [ -70.239716, 45.939691 ], [ -70.239716, 45.944466 ], [ -70.245209, 45.945421 ], [ -70.242462, 45.947330 ], [ -70.249329, 45.950195 ], [ -70.252075, 45.955924 ], [ -70.256195, 45.953059 ], [ -70.261688, 45.953059 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258942, 45.959742 ], [ -70.261688, 45.960697 ], [ -70.267181, 45.964515 ], [ -70.274048, 45.961652 ], [ -70.275421, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.274048, 45.964515 ], [ -70.275421, 45.967379 ], [ -70.283661, 45.964515 ], [ -70.287781, 45.965470 ], [ -70.289154, 45.963561 ], [ -70.298767, 45.963561 ], [ -70.307007, 45.965470 ], [ -70.313873, 45.962606 ], [ -70.316620, 45.963561 ], [ -70.312500, 45.966425 ], [ -70.313873, 45.970243 ], [ -70.311127, 45.973106 ], [ -70.312500, 45.975015 ], [ -70.308380, 45.978832 ], [ -70.309753, 45.980741 ], [ -70.308380, 45.982649 ], [ -70.300140, 45.986466 ], [ -70.296021, 45.986466 ], [ -70.285034, 45.996008 ], [ -70.289154, 45.994099 ], [ -70.293274, 45.997916 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.307007, 46.004593 ], [ -70.307007, 46.011270 ], [ -70.312500, 46.012224 ], [ -70.311127, 46.016039 ], [ -70.319366, 46.019853 ], [ -70.302887, 46.027482 ], [ -70.298767, 46.031296 ], [ -70.302887, 46.032249 ], [ -70.300140, 46.038923 ], [ -70.282288, 46.051314 ], [ -70.279541, 46.057032 ], [ -70.279541, 46.060844 ], [ -70.283661, 46.060844 ], [ -70.285034, 46.062750 ], [ -70.293274, 46.060844 ], [ -70.302887, 46.060844 ], [ -70.304260, 46.062750 ], [ -70.307007, 46.061797 ], [ -70.309753, 46.062750 ], [ -70.311127, 46.064656 ], [ -70.302887, 46.070372 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.304260, 46.077041 ], [ -70.300140, 46.078947 ], [ -70.302887, 46.080852 ], [ -70.302887, 46.082757 ], [ -70.291901, 46.087519 ], [ -70.291901, 46.094186 ], [ -70.285034, 46.097995 ], [ -70.286407, 46.100852 ], [ -70.279541, 46.099900 ], [ -70.274048, 46.102757 ], [ -70.260315, 46.101804 ], [ -70.257568, 46.099900 ], [ -70.253448, 46.100852 ], [ -70.253448, 46.106565 ], [ -70.256195, 46.109422 ], [ -70.254822, 46.114182 ], [ -70.253448, 46.115134 ], [ -70.247955, 46.126556 ], [ -70.243835, 46.129412 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236969, 46.145589 ], [ -70.241089, 46.149394 ], [ -70.241089, 46.151297 ], [ -70.243835, 46.150346 ], [ -70.245209, 46.152248 ], [ -70.249329, 46.152248 ], [ -70.247955, 46.154151 ], [ -70.250702, 46.155102 ], [ -70.250702, 46.156054 ], [ -70.253448, 46.158907 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265808, 46.165566 ], [ -70.267181, 46.169370 ], [ -70.279541, 46.176027 ], [ -70.286407, 46.183634 ], [ -70.286407, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.290527, 46.188388 ], [ -70.293274, 46.192190 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.195993 ], [ -70.286407, 46.195993 ], [ -70.278168, 46.204547 ], [ -70.276794, 46.208349 ], [ -70.271301, 46.211200 ], [ -70.271301, 46.214051 ], [ -70.275421, 46.215001 ], [ -70.274048, 46.216902 ], [ -70.271301, 46.216902 ], [ -70.268555, 46.219752 ], [ -70.265808, 46.223553 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236853 ], [ -70.260315, 46.238752 ], [ -70.254822, 46.246351 ], [ -70.252075, 46.249200 ], [ -70.252075, 46.252998 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261544 ], [ -70.249329, 46.267240 ], [ -70.243835, 46.273885 ], [ -70.241089, 46.273885 ], [ -70.241089, 46.279580 ], [ -70.232849, 46.285275 ], [ -70.232849, 46.291918 ], [ -70.217743, 46.294764 ], [ -70.216370, 46.294764 ], [ -70.212250, 46.299509 ], [ -70.206757, 46.300457 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.315636 ], [ -70.208130, 46.319430 ], [ -70.206757, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.195770, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.182037, 46.352615 ], [ -70.182037, 46.354511 ], [ -70.173798, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.162811, 46.361145 ], [ -70.158691, 46.360198 ], [ -70.157318, 46.362093 ], [ -70.149078, 46.359250 ], [ -70.144958, 46.363041 ], [ -70.140839, 46.363041 ], [ -70.142212, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.129852, 46.369674 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.380096 ], [ -70.117493, 46.385781 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.385781 ], [ -70.112000, 46.386728 ], [ -70.113373, 46.388622 ], [ -70.107880, 46.388622 ], [ -70.110626, 46.391464 ], [ -70.107880, 46.391464 ], [ -70.107880, 46.393358 ], [ -70.102386, 46.397147 ], [ -70.101013, 46.401882 ] ], [ [ -69.794769, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.784764 ], [ -69.792023, 45.785721 ], [ -69.794769, 45.783806 ] ], [ [ -69.734344, 45.879493 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.880449 ], [ -69.734344, 45.879493 ] ], [ [ -69.794769, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.794769, 45.783806 ] ], [ [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.797516, 45.783806 ] ] ], [ [ [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.338837, 45.011419 ], [ -69.621735, 45.011419 ] ] ] ] } } ] } ] } , @@ -108,17 +109,17 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.159378, 45.127805 ], [ -69.662933, 45.127805 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.621048, 45.011419 ], [ -69.515991, 45.025495 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500198, 45.054121 ], [ -69.356003, 45.073521 ], [ -69.281845, 44.811070 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268112, 44.721857 ], [ -69.327850, 44.714538 ], [ -69.343643, 44.750147 ], [ -69.348450, 44.749172 ], [ -69.360809, 44.751122 ], [ -69.371796, 44.755023 ], [ -69.383469, 44.754535 ], [ -69.388962, 44.752585 ], [ -69.388962, 44.747709 ], [ -69.390335, 44.747221 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.747221 ], [ -69.398575, 44.742344 ], [ -69.395142, 44.735516 ], [ -69.395142, 44.732589 ], [ -69.397202, 44.731126 ], [ -69.406128, 44.727223 ], [ -69.408875, 44.723808 ], [ -69.415054, 44.718929 ], [ -69.414368, 44.716978 ], [ -69.417801, 44.709658 ], [ -69.417114, 44.701362 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708194 ], [ -69.473419, 44.709170 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.581909, 44.708194 ], [ -69.633408, 44.700386 ], [ -69.633408, 44.691112 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673536 ], [ -69.627914, 44.671094 ], [ -69.621735, 44.665234 ], [ -69.618301, 44.657909 ], [ -69.614868, 44.654490 ], [ -69.605942, 44.651070 ], [ -69.599762, 44.644720 ], [ -69.592209, 44.639834 ], [ -69.586029, 44.632505 ], [ -69.581909, 44.630551 ], [ -69.579163, 44.627130 ], [ -69.580536, 44.621754 ], [ -69.590836, 44.608068 ], [ -69.593582, 44.603180 ], [ -69.592209, 44.595846 ], [ -69.589462, 44.590467 ], [ -69.591522, 44.584110 ], [ -69.593582, 44.582154 ], [ -69.601135, 44.580687 ], [ -69.605942, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.744644, 44.602691 ], [ -69.775543, 44.608557 ], [ -69.777603, 44.607579 ], [ -69.787903, 44.594379 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.818115, 44.582154 ], [ -69.816742, 44.584599 ], [ -69.818115, 44.584599 ], [ -69.817429, 44.586066 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.588022 ], [ -69.818115, 44.589000 ], [ -69.818802, 44.590467 ], [ -69.817429, 44.591934 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.594379 ], [ -69.817429, 44.598290 ], [ -69.818802, 44.598290 ], [ -69.818802, 44.599268 ], [ -69.820862, 44.599757 ], [ -69.820862, 44.600735 ], [ -69.822922, 44.601224 ], [ -69.822922, 44.602202 ], [ -69.820862, 44.603180 ], [ -69.820862, 44.604646 ], [ -69.822922, 44.604646 ], [ -69.822235, 44.605135 ], [ -69.822922, 44.605624 ], [ -69.822922, 44.608068 ], [ -69.824295, 44.608068 ], [ -69.825668, 44.607090 ], [ -69.827042, 44.608068 ], [ -69.828415, 44.608557 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663281 ], [ -69.966431, 44.663281 ], [ -69.964371, 44.660839 ], [ -69.960251, 44.660839 ], [ -69.958878, 44.662793 ], [ -69.958191, 44.668165 ], [ -69.959564, 44.671094 ], [ -69.961624, 44.673536 ], [ -69.965744, 44.675001 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678419 ], [ -69.960251, 44.679883 ], [ -69.960251, 44.681348 ], [ -69.996643, 44.677930 ], [ -70.013809, 44.757949 ], [ -70.000763, 44.759411 ], [ -70.004196, 44.773549 ], [ -70.001450, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787196 ], [ -70.021362, 44.810096 ], [ -70.027542, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.026169, 44.831039 ], [ -70.033722, 44.864630 ], [ -70.130539, 44.851001 ], [ -70.142212, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149765, 44.896255 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.911818 ], [ -70.152512, 44.941959 ], [ -70.110626, 44.947791 ], [ -70.122986, 45.000253 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.127805 ] ] ], [ [ [ -70.159378, 45.127805 ], [ -70.172424, 45.126836 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.159378, 45.127805 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.159378, 45.127805 ], [ -69.662933, 45.127805 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.621048, 45.011419 ], [ -69.515991, 45.025495 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500198, 45.054121 ], [ -69.356003, 45.073521 ], [ -69.281845, 44.811070 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268112, 44.721857 ], [ -69.327850, 44.714538 ], [ -69.343643, 44.750147 ], [ -69.348450, 44.749172 ], [ -69.360809, 44.751122 ], [ -69.371796, 44.755023 ], [ -69.383469, 44.754535 ], [ -69.388962, 44.752585 ], [ -69.388962, 44.747709 ], [ -69.390335, 44.747221 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.747221 ], [ -69.398575, 44.742344 ], [ -69.395142, 44.735516 ], [ -69.395142, 44.732589 ], [ -69.397202, 44.731126 ], [ -69.406128, 44.727223 ], [ -69.408875, 44.723808 ], [ -69.415054, 44.718929 ], [ -69.414368, 44.716978 ], [ -69.417801, 44.709658 ], [ -69.417114, 44.701362 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708194 ], [ -69.473419, 44.709170 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.581909, 44.708194 ], [ -69.633408, 44.700386 ], [ -69.633408, 44.691112 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673536 ], [ -69.627914, 44.671094 ], [ -69.621735, 44.665234 ], [ -69.618301, 44.657909 ], [ -69.614868, 44.654490 ], [ -69.605942, 44.651070 ], [ -69.599762, 44.644720 ], [ -69.592209, 44.639834 ], [ -69.586029, 44.632505 ], [ -69.581909, 44.630551 ], [ -69.579163, 44.627130 ], [ -69.580536, 44.621754 ], [ -69.590836, 44.608068 ], [ -69.593582, 44.603180 ], [ -69.592209, 44.595846 ], [ -69.589462, 44.590467 ], [ -69.591522, 44.584110 ], [ -69.593582, 44.582154 ], [ -69.601135, 44.580687 ], [ -69.605942, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.744644, 44.602691 ], [ -69.775543, 44.608557 ], [ -69.777603, 44.607579 ], [ -69.787903, 44.594379 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.818115, 44.582154 ], [ -69.816742, 44.584599 ], [ -69.818115, 44.584599 ], [ -69.818115, 44.585577 ], [ -69.817429, 44.586066 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.588022 ], [ -69.818115, 44.589000 ], [ -69.818802, 44.590467 ], [ -69.817429, 44.591934 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.594379 ], [ -69.817429, 44.598290 ], [ -69.818802, 44.598290 ], [ -69.818802, 44.599268 ], [ -69.820862, 44.599757 ], [ -69.820862, 44.600735 ], [ -69.822922, 44.601224 ], [ -69.822922, 44.602202 ], [ -69.820862, 44.603180 ], [ -69.820862, 44.604646 ], [ -69.822922, 44.604646 ], [ -69.822235, 44.605135 ], [ -69.822922, 44.605624 ], [ -69.822922, 44.608068 ], [ -69.824295, 44.608068 ], [ -69.825668, 44.607090 ], [ -69.827042, 44.608068 ], [ -69.828415, 44.608557 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663281 ], [ -69.966431, 44.663281 ], [ -69.964371, 44.660839 ], [ -69.960251, 44.660839 ], [ -69.958878, 44.662793 ], [ -69.958191, 44.668165 ], [ -69.959564, 44.671094 ], [ -69.961624, 44.673536 ], [ -69.965744, 44.675001 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678419 ], [ -69.960251, 44.679883 ], [ -69.960251, 44.681348 ], [ -69.996643, 44.677930 ], [ -70.013809, 44.757949 ], [ -70.000763, 44.759411 ], [ -70.004196, 44.773549 ], [ -70.001450, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787196 ], [ -70.021362, 44.810096 ], [ -70.027542, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.026169, 44.831039 ], [ -70.033722, 44.864630 ], [ -70.130539, 44.851001 ], [ -70.142212, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149765, 44.896255 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.911818 ], [ -70.152512, 44.941959 ], [ -70.110626, 44.947791 ], [ -70.122986, 45.000253 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.127805 ] ] ], [ [ [ -70.159378, 45.127805 ], [ -70.172424, 45.126836 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.159378, 45.127805 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 45 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.673920, 45.861803 ], [ -69.673920, 45.862759 ], [ -69.670486, 45.860847 ], [ -69.667740, 45.862281 ], [ -69.664993, 45.862281 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662933, 45.861325 ], [ -69.660187, 45.861325 ], [ -69.660187, 45.860847 ], [ -69.658813, 45.861325 ], [ -69.656754, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.655380, 45.861803 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.863238 ], [ -69.654007, 45.864194 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.863238 ], [ -69.648514, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.647141, 45.863238 ], [ -69.684219, 45.984081 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.719925, 46.394306 ], [ -69.721298, 46.574439 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.017487, 46.572551 ], [ -68.821793, 46.572551 ], [ -68.822479, 46.402829 ], [ -68.821793, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.211675 ], [ -68.823166, 46.113706 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.685077 ], [ -68.959122, 45.662527 ], [ -68.950882, 45.638527 ], [ -68.952255, 45.580887 ], [ -68.965302, 45.512602 ], [ -68.880157, 45.524149 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433635 ], [ -68.804626, 45.341046 ], [ -68.776474, 45.240569 ], [ -68.881531, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.990707, 45.125382 ], [ -69.062119, 45.114238 ], [ -69.242020, 45.089036 ], [ -69.492645, 45.055091 ], [ -69.500198, 45.054121 ], [ -69.499512, 45.050240 ], [ -69.632034, 45.050240 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.687653, 45.208166 ], [ -69.684219, 45.213004 ], [ -69.702759, 45.268605 ], [ -69.708939, 45.291313 ], [ -69.700699, 45.292762 ], [ -69.732971, 45.389289 ], [ -69.780350, 45.542908 ], [ -69.773483, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.775543, 45.553006 ], [ -69.774170, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.764557, 45.554929 ], [ -69.761124, 45.554449 ], [ -69.754257, 45.557814 ], [ -69.749451, 45.559256 ], [ -69.748077, 45.560699 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572716 ], [ -69.726791, 45.574158 ], [ -69.726791, 45.577042 ], [ -69.724045, 45.581848 ], [ -69.719925, 45.583290 ], [ -69.717178, 45.585212 ], [ -69.715118, 45.585693 ], [ -69.714432, 45.588576 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.595303 ], [ -69.715118, 45.597224 ], [ -69.717865, 45.597705 ], [ -69.719238, 45.600587 ], [ -69.721298, 45.602989 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.608754 ], [ -69.717865, 45.611156 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.613077 ], [ -69.714432, 45.612116 ], [ -69.713058, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.708939, 45.616919 ], [ -69.705505, 45.618360 ], [ -69.704819, 45.619801 ], [ -69.703445, 45.620761 ], [ -69.704132, 45.621722 ], [ -69.702072, 45.628445 ], [ -69.707565, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.708252, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.712372, 45.638047 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.716492, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.713058, 45.647648 ], [ -69.714432, 45.650528 ], [ -69.711685, 45.650528 ], [ -69.706879, 45.647168 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.696579, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.692459, 45.645728 ], [ -69.698639, 45.649568 ], [ -69.701385, 45.651968 ], [ -69.703445, 45.651968 ], [ -69.705505, 45.653408 ], [ -69.706192, 45.652928 ], [ -69.713058, 45.655808 ], [ -69.719238, 45.656288 ], [ -69.723358, 45.657728 ], [ -69.726105, 45.656768 ], [ -69.732971, 45.657248 ], [ -69.732285, 45.655808 ], [ -69.734344, 45.654368 ], [ -69.736404, 45.651008 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.653408 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657728 ], [ -69.741898, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.741898, 45.666846 ], [ -69.739838, 45.667325 ], [ -69.740524, 45.669725 ], [ -69.739151, 45.671644 ], [ -69.739151, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.738464, 45.676921 ], [ -69.739151, 45.679800 ], [ -69.746017, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.754944, 45.679800 ], [ -69.757004, 45.679800 ], [ -69.760437, 45.682678 ], [ -69.764557, 45.682678 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.685077 ], [ -69.774170, 45.686036 ], [ -69.774857, 45.687955 ], [ -69.776917, 45.687955 ], [ -69.779663, 45.690353 ], [ -69.783096, 45.690833 ], [ -69.785843, 45.692751 ], [ -69.785843, 45.699945 ], [ -69.789963, 45.702343 ], [ -69.790649, 45.704741 ], [ -69.790649, 45.710495 ], [ -69.798203, 45.715289 ], [ -69.803009, 45.715289 ], [ -69.805756, 45.717207 ], [ -69.805756, 45.720563 ], [ -69.807816, 45.722480 ], [ -69.805069, 45.722001 ], [ -69.803696, 45.720563 ], [ -69.804382, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.800262, 45.722960 ], [ -69.800262, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.797516, 45.724398 ], [ -69.792709, 45.725836 ], [ -69.791336, 45.726794 ], [ -69.792023, 45.728712 ], [ -69.794083, 45.728712 ], [ -69.800262, 45.733505 ], [ -69.809875, 45.733505 ], [ -69.812622, 45.735901 ], [ -69.810562, 45.736380 ], [ -69.811935, 45.737339 ], [ -69.820175, 45.739256 ], [ -69.820175, 45.740693 ], [ -69.821548, 45.740693 ], [ -69.824295, 45.742610 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.743089 ], [ -69.822922, 45.743569 ], [ -69.822235, 45.745006 ], [ -69.817429, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.745965 ], [ -69.806442, 45.747881 ], [ -69.805756, 45.748839 ], [ -69.801636, 45.749319 ], [ -69.796829, 45.746444 ], [ -69.793396, 45.745965 ], [ -69.789963, 45.747402 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.749798 ], [ -69.791336, 45.750277 ], [ -69.792709, 45.751235 ], [ -69.792023, 45.753152 ], [ -69.789963, 45.754589 ], [ -69.789963, 45.756026 ], [ -69.793396, 45.757463 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.792709, 45.759859 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.790649, 45.764649 ], [ -69.792023, 45.764649 ], [ -69.791336, 45.766086 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.768002 ], [ -69.789276, 45.768960 ], [ -69.787216, 45.768481 ], [ -69.782410, 45.769918 ], [ -69.784470, 45.772313 ], [ -69.783096, 45.772792 ], [ -69.781723, 45.774228 ], [ -69.784470, 45.773270 ], [ -69.785156, 45.774707 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.776144 ], [ -69.786530, 45.776144 ], [ -69.786530, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.789276, 45.777102 ], [ -69.788589, 45.777581 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.778060 ], [ -69.787216, 45.780933 ], [ -69.785156, 45.780933 ], [ -69.784470, 45.782848 ], [ -69.785843, 45.783806 ], [ -69.787903, 45.783806 ], [ -69.788589, 45.784764 ], [ -69.788589, 45.785243 ], [ -69.785156, 45.785721 ], [ -69.784470, 45.784285 ], [ -69.784470, 45.783806 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.783783, 45.781891 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.777102 ], [ -69.783096, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.781036, 45.776623 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.779663, 45.772313 ], [ -69.777603, 45.770876 ], [ -69.776917, 45.768002 ], [ -69.774170, 45.766086 ], [ -69.774857, 45.765128 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.763691 ], [ -69.767990, 45.763212 ], [ -69.769363, 45.761775 ], [ -69.762497, 45.761296 ], [ -69.760437, 45.762254 ], [ -69.758377, 45.761775 ], [ -69.752884, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.763212 ], [ -69.747391, 45.761775 ], [ -69.747391, 45.759859 ], [ -69.743958, 45.760338 ], [ -69.741211, 45.755547 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.730225, 45.759380 ], [ -69.730225, 45.760338 ], [ -69.726791, 45.762254 ], [ -69.724731, 45.766086 ], [ -69.726105, 45.771834 ], [ -69.728165, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738464, 45.782848 ], [ -69.733658, 45.783806 ], [ -69.723358, 45.783327 ], [ -69.723358, 45.786200 ], [ -69.720612, 45.788594 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791467 ], [ -69.718552, 45.797691 ], [ -69.716492, 45.801042 ], [ -69.714432, 45.801999 ], [ -69.713745, 45.804871 ], [ -69.708939, 45.811093 ], [ -69.709625, 45.815401 ], [ -69.713058, 45.819708 ], [ -69.713058, 45.823536 ], [ -69.715805, 45.825928 ], [ -69.716492, 45.829278 ], [ -69.718552, 45.829756 ], [ -69.718552, 45.831670 ], [ -69.719925, 45.834062 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.723358, 45.834062 ], [ -69.721985, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.718552, 45.833584 ], [ -69.715118, 45.832148 ], [ -69.712372, 45.832627 ], [ -69.712372, 45.834062 ], [ -69.708252, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.707565, 45.839324 ], [ -69.707565, 45.842673 ], [ -69.704819, 45.846499 ], [ -69.708252, 45.846978 ], [ -69.708939, 45.850804 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.854630 ], [ -69.709625, 45.856065 ], [ -69.711685, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.715118, 45.862281 ], [ -69.717865, 45.866106 ], [ -69.725418, 45.866106 ], [ -69.726105, 45.867541 ], [ -69.724731, 45.868019 ], [ -69.724045, 45.870888 ], [ -69.725418, 45.872322 ], [ -69.724731, 45.874234 ], [ -69.727478, 45.874712 ], [ -69.727478, 45.876146 ], [ -69.728165, 45.875668 ], [ -69.731598, 45.877103 ], [ -69.734344, 45.877103 ], [ -69.735031, 45.879015 ], [ -69.733658, 45.879493 ], [ -69.737778, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.737091, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881405 ], [ -69.735718, 45.880449 ], [ -69.733658, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.717178, 45.882839 ], [ -69.716492, 45.883795 ], [ -69.713058, 45.883317 ], [ -69.713058, 45.884273 ], [ -69.709625, 45.885707 ], [ -69.706192, 45.885229 ], [ -69.702072, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702072, 45.879971 ], [ -69.702072, 45.879015 ], [ -69.702759, 45.879015 ], [ -69.702759, 45.877103 ], [ -69.700699, 45.874234 ], [ -69.701385, 45.872800 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868975 ], [ -69.697266, 45.867541 ], [ -69.697266, 45.864672 ], [ -69.694519, 45.864194 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.691772, 45.860847 ], [ -69.692459, 45.859412 ], [ -69.689713, 45.858456 ], [ -69.689713, 45.855108 ], [ -69.690399, 45.854630 ], [ -69.686966, 45.854152 ], [ -69.686279, 45.853195 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.683533, 45.851282 ], [ -69.682846, 45.852239 ], [ -69.679413, 45.851760 ], [ -69.678040, 45.853195 ], [ -69.676666, 45.853195 ], [ -69.676666, 45.851760 ], [ -69.674606, 45.852239 ], [ -69.674606, 45.857499 ], [ -69.672546, 45.858934 ], [ -69.673920, 45.861803 ] ], [ [ -69.732971, 45.657248 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732971, 45.657248 ] ] ], [ [ [ -69.789963, 45.783806 ], [ -69.792023, 45.783806 ], [ -69.794083, 45.782848 ], [ -69.796829, 45.783327 ], [ -69.797516, 45.783327 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.796143, 45.785721 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.791336, 45.784285 ], [ -69.789963, 45.783806 ] ] ], [ [ [ -69.826355, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827728, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.828415, 45.739256 ], [ -69.830475, 45.738297 ], [ -69.833221, 45.738777 ], [ -69.827042, 45.740214 ], [ -69.826355, 45.741173 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.801636, 45.785721 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785721 ] ] ], [ [ [ -69.788589, 45.784764 ], [ -69.788589, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.784764 ] ] ], [ [ [ -69.809189, 45.722960 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722480 ], [ -69.809189, 45.722960 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798203, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.673920, 45.861803 ], [ -69.673920, 45.862759 ], [ -69.670486, 45.860847 ], [ -69.667740, 45.862281 ], [ -69.664993, 45.862281 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662933, 45.861325 ], [ -69.660187, 45.861325 ], [ -69.660187, 45.860847 ], [ -69.658813, 45.861325 ], [ -69.656754, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.655380, 45.861803 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.863238 ], [ -69.654007, 45.864194 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.863238 ], [ -69.648514, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.647141, 45.863238 ], [ -69.684219, 45.984081 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.719925, 46.394306 ], [ -69.721298, 46.574439 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.017487, 46.572551 ], [ -68.821793, 46.572551 ], [ -68.822479, 46.402829 ], [ -68.821793, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.211675 ], [ -68.823166, 46.113706 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.685077 ], [ -68.959122, 45.662527 ], [ -68.950882, 45.638527 ], [ -68.952255, 45.580887 ], [ -68.965302, 45.512602 ], [ -68.880157, 45.524149 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433635 ], [ -68.804626, 45.341046 ], [ -68.776474, 45.240569 ], [ -68.881531, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.990707, 45.125382 ], [ -69.062119, 45.114238 ], [ -69.242020, 45.089036 ], [ -69.492645, 45.055091 ], [ -69.500198, 45.054121 ], [ -69.499512, 45.050240 ], [ -69.632034, 45.050240 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.687653, 45.208166 ], [ -69.684219, 45.213004 ], [ -69.702759, 45.268605 ], [ -69.708939, 45.291313 ], [ -69.700699, 45.292762 ], [ -69.732971, 45.389289 ], [ -69.780350, 45.542908 ], [ -69.773483, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.775543, 45.553006 ], [ -69.774170, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.764557, 45.554929 ], [ -69.761124, 45.554449 ], [ -69.754257, 45.557814 ], [ -69.749451, 45.559256 ], [ -69.748077, 45.560699 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572716 ], [ -69.726791, 45.574158 ], [ -69.726791, 45.577042 ], [ -69.724045, 45.581848 ], [ -69.719925, 45.583290 ], [ -69.717178, 45.585212 ], [ -69.715118, 45.585693 ], [ -69.714432, 45.588576 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.595303 ], [ -69.715118, 45.597224 ], [ -69.717865, 45.597705 ], [ -69.719238, 45.600587 ], [ -69.721298, 45.602989 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.608754 ], [ -69.717865, 45.611156 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.613077 ], [ -69.714432, 45.612116 ], [ -69.713058, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.708939, 45.616919 ], [ -69.705505, 45.618360 ], [ -69.704819, 45.619801 ], [ -69.703445, 45.620761 ], [ -69.704132, 45.621722 ], [ -69.702072, 45.628445 ], [ -69.707565, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.708252, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.712372, 45.638047 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.716492, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.713058, 45.647648 ], [ -69.714432, 45.650528 ], [ -69.711685, 45.650528 ], [ -69.706879, 45.647168 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.696579, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.692459, 45.645728 ], [ -69.698639, 45.649568 ], [ -69.701385, 45.651968 ], [ -69.703445, 45.651968 ], [ -69.705505, 45.653408 ], [ -69.706192, 45.652928 ], [ -69.713058, 45.655808 ], [ -69.719238, 45.656288 ], [ -69.723358, 45.657728 ], [ -69.726105, 45.656768 ], [ -69.732971, 45.657248 ], [ -69.732285, 45.655808 ], [ -69.734344, 45.654368 ], [ -69.736404, 45.651008 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.653408 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657728 ], [ -69.741898, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.741898, 45.666846 ], [ -69.739838, 45.667325 ], [ -69.740524, 45.669725 ], [ -69.739151, 45.671644 ], [ -69.739151, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.738464, 45.676921 ], [ -69.739151, 45.679800 ], [ -69.746017, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.754944, 45.679800 ], [ -69.757004, 45.679800 ], [ -69.760437, 45.682678 ], [ -69.764557, 45.682678 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.685077 ], [ -69.774170, 45.686036 ], [ -69.774857, 45.687955 ], [ -69.776917, 45.687955 ], [ -69.779663, 45.690353 ], [ -69.783096, 45.690833 ], [ -69.785843, 45.692751 ], [ -69.785843, 45.699945 ], [ -69.789963, 45.702343 ], [ -69.790649, 45.704741 ], [ -69.790649, 45.710495 ], [ -69.798203, 45.715289 ], [ -69.803009, 45.715289 ], [ -69.805756, 45.717207 ], [ -69.805756, 45.720563 ], [ -69.807816, 45.722480 ], [ -69.805069, 45.722001 ], [ -69.803696, 45.720563 ], [ -69.804382, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.800262, 45.722960 ], [ -69.800262, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.797516, 45.724398 ], [ -69.792709, 45.725836 ], [ -69.791336, 45.726794 ], [ -69.792023, 45.728712 ], [ -69.794083, 45.728712 ], [ -69.800262, 45.733505 ], [ -69.809875, 45.733505 ], [ -69.812622, 45.735901 ], [ -69.810562, 45.736380 ], [ -69.811935, 45.737339 ], [ -69.820175, 45.739256 ], [ -69.820175, 45.740693 ], [ -69.821548, 45.740693 ], [ -69.824295, 45.742610 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.743089 ], [ -69.822922, 45.743569 ], [ -69.822235, 45.745006 ], [ -69.817429, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.745965 ], [ -69.806442, 45.747881 ], [ -69.805756, 45.748839 ], [ -69.801636, 45.749319 ], [ -69.796829, 45.746444 ], [ -69.793396, 45.745965 ], [ -69.789963, 45.747402 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.749798 ], [ -69.791336, 45.750277 ], [ -69.792709, 45.751235 ], [ -69.792023, 45.753152 ], [ -69.789963, 45.754589 ], [ -69.789963, 45.756026 ], [ -69.793396, 45.757463 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.792709, 45.759859 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.790649, 45.764649 ], [ -69.792023, 45.764649 ], [ -69.791336, 45.766086 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.768002 ], [ -69.789276, 45.768960 ], [ -69.787216, 45.768481 ], [ -69.782410, 45.769918 ], [ -69.784470, 45.772313 ], [ -69.783096, 45.772792 ], [ -69.781723, 45.774228 ], [ -69.784470, 45.773270 ], [ -69.785156, 45.774707 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.776144 ], [ -69.786530, 45.776144 ], [ -69.786530, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.789276, 45.777102 ], [ -69.788589, 45.777581 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.778060 ], [ -69.787216, 45.780933 ], [ -69.785156, 45.780933 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.777102 ], [ -69.783096, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.781036, 45.776623 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.779663, 45.772313 ], [ -69.777603, 45.770876 ], [ -69.776917, 45.768002 ], [ -69.774170, 45.766086 ], [ -69.774857, 45.765128 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.763691 ], [ -69.767990, 45.763212 ], [ -69.769363, 45.761775 ], [ -69.762497, 45.761296 ], [ -69.760437, 45.762254 ], [ -69.758377, 45.761775 ], [ -69.752884, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.750137, 45.763212 ], [ -69.747391, 45.761775 ], [ -69.747391, 45.759859 ], [ -69.743958, 45.760338 ], [ -69.741211, 45.755547 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.730225, 45.759380 ], [ -69.730225, 45.760338 ], [ -69.726791, 45.762254 ], [ -69.724731, 45.766086 ], [ -69.726105, 45.771834 ], [ -69.728165, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738464, 45.782848 ], [ -69.733658, 45.783806 ], [ -69.723358, 45.783327 ], [ -69.723358, 45.786200 ], [ -69.720612, 45.788594 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791467 ], [ -69.718552, 45.797691 ], [ -69.716492, 45.801042 ], [ -69.714432, 45.801999 ], [ -69.713745, 45.804871 ], [ -69.708939, 45.811093 ], [ -69.709625, 45.815401 ], [ -69.713058, 45.819708 ], [ -69.713058, 45.823536 ], [ -69.715805, 45.825928 ], [ -69.716492, 45.829278 ], [ -69.718552, 45.829756 ], [ -69.718552, 45.831670 ], [ -69.719925, 45.834062 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.723358, 45.834062 ], [ -69.721985, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.718552, 45.833584 ], [ -69.715118, 45.832148 ], [ -69.712372, 45.832627 ], [ -69.712372, 45.834062 ], [ -69.708252, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.707565, 45.839324 ], [ -69.707565, 45.842673 ], [ -69.704819, 45.846499 ], [ -69.708252, 45.846978 ], [ -69.708939, 45.850804 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.854630 ], [ -69.709625, 45.856065 ], [ -69.711685, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.715118, 45.862281 ], [ -69.717865, 45.866106 ], [ -69.725418, 45.866106 ], [ -69.726105, 45.867541 ], [ -69.724731, 45.868019 ], [ -69.724045, 45.870888 ], [ -69.725418, 45.872322 ], [ -69.724731, 45.874234 ], [ -69.727478, 45.874712 ], [ -69.727478, 45.876146 ], [ -69.728165, 45.875668 ], [ -69.731598, 45.877103 ], [ -69.734344, 45.877103 ], [ -69.735031, 45.879015 ], [ -69.733658, 45.879493 ], [ -69.737778, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.737091, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881405 ], [ -69.735718, 45.880449 ], [ -69.733658, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.717178, 45.882839 ], [ -69.716492, 45.883795 ], [ -69.713058, 45.883317 ], [ -69.713058, 45.884273 ], [ -69.709625, 45.885707 ], [ -69.706192, 45.885229 ], [ -69.702072, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702072, 45.879971 ], [ -69.702072, 45.879015 ], [ -69.702759, 45.879015 ], [ -69.702759, 45.877103 ], [ -69.700699, 45.874234 ], [ -69.701385, 45.872800 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868975 ], [ -69.697266, 45.867541 ], [ -69.697266, 45.864672 ], [ -69.694519, 45.864194 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.691772, 45.860847 ], [ -69.692459, 45.859412 ], [ -69.689713, 45.858456 ], [ -69.689713, 45.855108 ], [ -69.690399, 45.854630 ], [ -69.686966, 45.854152 ], [ -69.686279, 45.853195 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.683533, 45.851282 ], [ -69.682846, 45.852239 ], [ -69.679413, 45.851760 ], [ -69.678040, 45.853195 ], [ -69.676666, 45.853195 ], [ -69.676666, 45.851760 ], [ -69.674606, 45.852239 ], [ -69.674606, 45.857499 ], [ -69.672546, 45.858934 ], [ -69.673920, 45.861803 ] ], [ [ -69.732971, 45.657248 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732971, 45.657248 ] ] ], [ [ [ -69.788589, 45.784764 ], [ -69.788589, 45.785243 ], [ -69.785156, 45.785721 ], [ -69.784470, 45.784285 ], [ -69.784470, 45.783806 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.783783, 45.781891 ], [ -69.785156, 45.780933 ], [ -69.784470, 45.782848 ], [ -69.785843, 45.783806 ], [ -69.787903, 45.783806 ], [ -69.788589, 45.784764 ] ] ], [ [ [ -69.797516, 45.783806 ], [ -69.796829, 45.783327 ], [ -69.797516, 45.783327 ], [ -69.797516, 45.783806 ] ] ], [ [ [ -69.826355, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827728, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.828415, 45.739256 ], [ -69.830475, 45.738297 ], [ -69.833221, 45.738777 ], [ -69.827042, 45.740214 ], [ -69.826355, 45.741173 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.801636, 45.785721 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785721 ] ] ], [ [ [ -69.788589, 45.784764 ], [ -69.788589, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.784764 ] ] ], [ [ [ -69.809189, 45.722960 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722480 ], [ -69.809189, 45.722960 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798203, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.796143, 45.785721 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.791336, 45.784285 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783806 ], [ -69.794083, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.796829, 45.783327 ], [ -69.796143, 45.784285 ], [ -69.797516, 45.783806 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.732971, 45.657248 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657248 ] ] ], [ [ [ -69.499512, 45.050240 ], [ -69.500198, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.355316, 45.072066 ], [ -69.349136, 45.050240 ], [ -69.499512, 45.050240 ] ] ], [ [ [ -70.108566, 46.389096 ], [ -70.109940, 46.390990 ], [ -70.107193, 46.390990 ], [ -70.107880, 46.392885 ], [ -70.105133, 46.393832 ], [ -70.102386, 46.396673 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099640, 46.403303 ], [ -70.101013, 46.403303 ], [ -70.098267, 46.404250 ], [ -70.100327, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.097580, 46.405670 ], [ -70.096207, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.407564 ], [ -70.094833, 46.408511 ], [ -70.097580, 46.409458 ], [ -70.096893, 46.409931 ], [ -70.092773, 46.409458 ], [ -70.089340, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.410878 ], [ -70.076981, 46.409931 ], [ -70.072174, 46.411352 ], [ -70.067368, 46.412298 ], [ -70.065308, 46.414192 ], [ -70.061874, 46.414192 ], [ -70.057068, 46.415612 ], [ -70.023422, 46.573495 ], [ -69.800949, 46.573495 ], [ -69.721298, 46.574439 ], [ -69.719925, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684219, 45.984081 ], [ -69.647141, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.648514, 45.863238 ], [ -69.651260, 45.863238 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.864194 ], [ -69.654007, 45.863238 ], [ -69.655380, 45.862759 ], [ -69.655380, 45.861803 ], [ -69.657440, 45.862281 ], [ -69.656754, 45.860369 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.662933, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.664993, 45.862281 ], [ -69.667740, 45.862281 ], [ -69.670486, 45.860847 ], [ -69.673920, 45.862759 ], [ -69.673920, 45.861803 ], [ -69.672546, 45.859890 ], [ -69.674606, 45.857499 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853195 ], [ -69.678040, 45.853195 ], [ -69.678726, 45.852239 ], [ -69.682846, 45.852239 ], [ -69.683533, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853195 ], [ -69.686966, 45.854152 ], [ -69.690399, 45.854630 ], [ -69.689713, 45.855108 ], [ -69.689713, 45.858456 ], [ -69.692459, 45.859412 ], [ -69.691772, 45.860847 ], [ -69.694519, 45.862281 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.864194 ], [ -69.697266, 45.864672 ], [ -69.697266, 45.867541 ], [ -69.699326, 45.868975 ], [ -69.699326, 45.870410 ], [ -69.701385, 45.872800 ], [ -69.700699, 45.874234 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.879015 ], [ -69.702072, 45.879015 ], [ -69.702072, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.702072, 45.886185 ], [ -69.706192, 45.885229 ], [ -69.709625, 45.885707 ], [ -69.711685, 45.885229 ], [ -69.713058, 45.883317 ], [ -69.716492, 45.883795 ], [ -69.717178, 45.882839 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.733658, 45.880449 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881405 ], [ -69.737091, 45.880927 ], [ -69.737091, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.880449 ], [ -69.733658, 45.879493 ], [ -69.735031, 45.879015 ], [ -69.734344, 45.877103 ], [ -69.731598, 45.877103 ], [ -69.728165, 45.875668 ], [ -69.727478, 45.876146 ], [ -69.727478, 45.874712 ], [ -69.724731, 45.874234 ], [ -69.725418, 45.872322 ], [ -69.724045, 45.870888 ], [ -69.724731, 45.868019 ], [ -69.726105, 45.867541 ], [ -69.725418, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.715118, 45.862281 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.856543 ], [ -69.709625, 45.856065 ], [ -69.708939, 45.854630 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.704819, 45.846499 ], [ -69.707565, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.836932 ], [ -69.712372, 45.834062 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832148 ], [ -69.718552, 45.833584 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721985, 45.835019 ], [ -69.723358, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.719925, 45.834062 ], [ -69.718552, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829278 ], [ -69.715805, 45.825928 ], [ -69.713058, 45.823536 ], [ -69.713058, 45.819708 ], [ -69.709625, 45.815401 ], [ -69.708939, 45.811093 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801999 ], [ -69.716492, 45.801042 ], [ -69.718552, 45.797691 ], [ -69.719238, 45.791467 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788594 ], [ -69.723358, 45.786200 ], [ -69.723358, 45.783327 ], [ -69.733658, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.728165, 45.775186 ], [ -69.728165, 45.773270 ], [ -69.726105, 45.771834 ], [ -69.724731, 45.766086 ], [ -69.726791, 45.762254 ], [ -69.730225, 45.760338 ], [ -69.730225, 45.759380 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.755547 ], [ -69.743958, 45.760338 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761775 ], [ -69.750137, 45.763212 ], [ -69.751511, 45.766086 ], [ -69.750824, 45.763691 ], [ -69.752884, 45.761775 ], [ -69.758377, 45.761775 ], [ -69.760437, 45.762254 ], [ -69.762497, 45.761296 ], [ -69.769363, 45.761775 ], [ -69.767990, 45.763212 ], [ -69.771423, 45.763691 ], [ -69.772797, 45.765128 ], [ -69.774857, 45.765128 ], [ -69.774170, 45.766086 ], [ -69.776917, 45.768002 ], [ -69.777603, 45.770876 ], [ -69.779663, 45.772313 ], [ -69.781036, 45.775665 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.776623 ], [ -69.781723, 45.778539 ], [ -69.783096, 45.778539 ], [ -69.783783, 45.777102 ], [ -69.785156, 45.777102 ], [ -69.785843, 45.779496 ], [ -69.783783, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.781723, 45.781891 ], [ -69.784470, 45.783806 ], [ -69.784470, 45.784285 ], [ -69.785156, 45.785721 ], [ -69.788589, 45.785243 ], [ -69.788589, 45.784764 ], [ -69.787903, 45.783806 ], [ -69.785843, 45.783806 ], [ -69.784470, 45.782848 ], [ -69.785156, 45.780933 ], [ -69.787216, 45.780933 ], [ -69.788589, 45.778060 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.777581 ], [ -69.789276, 45.777102 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.786530, 45.775186 ], [ -69.786530, 45.776144 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.774707 ], [ -69.784470, 45.773270 ], [ -69.781723, 45.774228 ], [ -69.782410, 45.773270 ], [ -69.784470, 45.772313 ], [ -69.782410, 45.769918 ], [ -69.787216, 45.768481 ], [ -69.789276, 45.768960 ], [ -69.790649, 45.768002 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.766086 ], [ -69.792023, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.760338 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.757463 ], [ -69.789963, 45.756026 ], [ -69.789963, 45.754589 ], [ -69.792023, 45.753152 ], [ -69.792709, 45.751235 ], [ -69.791336, 45.750277 ], [ -69.788589, 45.749798 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747402 ], [ -69.793396, 45.745965 ], [ -69.796829, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.805756, 45.748839 ], [ -69.806442, 45.747881 ], [ -69.812622, 45.745965 ], [ -69.812622, 45.747402 ], [ -69.817429, 45.747402 ], [ -69.821548, 45.745485 ], [ -69.822922, 45.743569 ], [ -69.825668, 45.743089 ], [ -69.826355, 45.741173 ], [ -69.824295, 45.742610 ], [ -69.821548, 45.740693 ], [ -69.820175, 45.740693 ], [ -69.820175, 45.739256 ], [ -69.811935, 45.737339 ], [ -69.810562, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733505 ], [ -69.800262, 45.733505 ], [ -69.794083, 45.728712 ], [ -69.792023, 45.728712 ], [ -69.791336, 45.726794 ], [ -69.792709, 45.725836 ], [ -69.797516, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.724398 ], [ -69.800262, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722960 ], [ -69.803696, 45.720563 ], [ -69.805069, 45.722001 ], [ -69.807816, 45.722480 ], [ -69.805756, 45.720563 ], [ -69.805756, 45.717207 ], [ -69.803009, 45.715289 ], [ -69.798203, 45.715289 ], [ -69.790649, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789963, 45.702343 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.692751 ], [ -69.783096, 45.690833 ], [ -69.779663, 45.690353 ], [ -69.776917, 45.687955 ], [ -69.774857, 45.687955 ], [ -69.774170, 45.686036 ], [ -69.769363, 45.685077 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682678 ], [ -69.760437, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754944, 45.679800 ], [ -69.749451, 45.681239 ], [ -69.746017, 45.681239 ], [ -69.739151, 45.679800 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.739151, 45.675482 ], [ -69.739151, 45.671644 ], [ -69.740524, 45.669725 ], [ -69.739838, 45.667325 ], [ -69.741898, 45.666846 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.657728 ], [ -69.739838, 45.657728 ], [ -69.739838, 45.656768 ], [ -69.744644, 45.653408 ], [ -69.743958, 45.651968 ], [ -69.736404, 45.651008 ], [ -69.734344, 45.654368 ], [ -69.732285, 45.655808 ], [ -69.732971, 45.657248 ], [ -69.728165, 45.656768 ], [ -69.723358, 45.657728 ], [ -69.719238, 45.656288 ], [ -69.713058, 45.655808 ], [ -69.706192, 45.652928 ], [ -69.705505, 45.653408 ], [ -69.703445, 45.651968 ], [ -69.701385, 45.651968 ], [ -69.700012, 45.650048 ], [ -69.692459, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.696579, 45.640928 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706879, 45.647168 ], [ -69.711685, 45.650528 ], [ -69.714432, 45.650528 ], [ -69.713058, 45.647648 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.648128 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712372, 45.638047 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.635647 ], [ -69.707565, 45.632766 ], [ -69.702072, 45.628445 ], [ -69.704132, 45.621722 ], [ -69.703445, 45.620761 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618840 ], [ -69.708939, 45.616919 ], [ -69.709625, 45.613557 ], [ -69.711685, 45.613077 ], [ -69.713058, 45.614037 ], [ -69.714432, 45.612116 ], [ -69.714432, 45.613077 ], [ -69.717865, 45.612116 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.611156 ], [ -69.717865, 45.608754 ], [ -69.720612, 45.608274 ], [ -69.721298, 45.602989 ], [ -69.719238, 45.600587 ], [ -69.717865, 45.597705 ], [ -69.715118, 45.597224 ], [ -69.713745, 45.595303 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.588576 ], [ -69.715118, 45.585693 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583290 ], [ -69.724045, 45.581848 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.574158 ], [ -69.728851, 45.572716 ], [ -69.728165, 45.570313 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.748077, 45.560699 ], [ -69.749451, 45.559256 ], [ -69.754257, 45.557814 ], [ -69.761124, 45.554449 ], [ -69.764557, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.774170, 45.554929 ], [ -69.775543, 45.553006 ], [ -69.775543, 45.549640 ], [ -69.773483, 45.545793 ], [ -69.780350, 45.542908 ], [ -69.732971, 45.389289 ], [ -69.701385, 45.295660 ], [ -69.700699, 45.292762 ], [ -69.708939, 45.291796 ], [ -69.705505, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.684219, 45.212520 ], [ -69.687653, 45.208166 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.632034, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128773 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152506 ], [ -70.367432, 45.835019 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.267868, 45.886185 ], [ -70.262375, 45.888096 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897655 ], [ -70.261002, 45.899088 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.907689 ], [ -70.256195, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.256195, 45.929662 ], [ -70.252075, 45.933960 ], [ -70.249329, 45.934916 ], [ -70.247269, 45.936348 ], [ -70.243149, 45.937303 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.943033 ], [ -70.239716, 45.943988 ], [ -70.241776, 45.944943 ], [ -70.244522, 45.944943 ], [ -70.242462, 45.946853 ], [ -70.248642, 45.949717 ], [ -70.249329, 45.952582 ], [ -70.251389, 45.953537 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.955924 ], [ -70.254822, 45.954491 ], [ -70.256195, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.308380, 46.061797 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.260315, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099900 ], [ -70.254822, 46.099900 ], [ -70.253448, 46.100376 ], [ -70.252762, 46.106089 ], [ -70.253448, 46.107993 ], [ -70.254822, 46.107993 ], [ -70.255508, 46.108945 ], [ -70.255508, 46.110850 ], [ -70.254135, 46.112754 ], [ -70.254822, 46.114182 ], [ -70.252762, 46.115134 ], [ -70.252762, 46.116562 ], [ -70.251389, 46.118466 ], [ -70.252075, 46.119893 ], [ -70.248642, 46.122749 ], [ -70.247955, 46.126080 ], [ -70.247269, 46.125605 ], [ -70.245895, 46.126556 ], [ -70.245209, 46.128936 ], [ -70.243835, 46.128936 ], [ -70.244522, 46.131315 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.241776, 46.134646 ], [ -70.242462, 46.135598 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.146540 ], [ -70.239716, 46.149394 ], [ -70.241089, 46.149394 ], [ -70.240402, 46.151297 ], [ -70.241776, 46.151297 ], [ -70.241776, 46.150346 ], [ -70.243149, 46.149870 ], [ -70.244522, 46.151773 ], [ -70.245209, 46.151297 ], [ -70.246582, 46.151297 ], [ -70.247269, 46.152248 ], [ -70.248642, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.153675 ], [ -70.250702, 46.154627 ], [ -70.250015, 46.156054 ], [ -70.252762, 46.157481 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.256195, 46.159859 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.278854, 46.175551 ], [ -70.280228, 46.177929 ], [ -70.282288, 46.178880 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191715 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.256195, 46.244926 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246351 ], [ -70.251389, 46.249200 ], [ -70.252075, 46.252523 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.255372 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261069 ], [ -70.250702, 46.263443 ], [ -70.248642, 46.265341 ], [ -70.249329, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.273411 ], [ -70.241089, 46.273411 ], [ -70.241089, 46.275309 ], [ -70.239716, 46.275784 ], [ -70.240402, 46.279580 ], [ -70.238342, 46.281004 ], [ -70.235596, 46.281479 ], [ -70.232849, 46.284800 ], [ -70.232162, 46.291443 ], [ -70.229416, 46.291918 ], [ -70.229416, 46.292392 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295713 ], [ -70.215683, 46.294764 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297611 ], [ -70.212250, 46.299034 ], [ -70.210876, 46.298560 ], [ -70.206070, 46.299983 ], [ -70.206070, 46.300457 ], [ -70.207443, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.312790 ], [ -70.203323, 46.315161 ], [ -70.207443, 46.319430 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.205383, 46.334129 ], [ -70.202637, 46.335551 ], [ -70.201263, 46.337447 ], [ -70.195770, 46.341239 ], [ -70.196457, 46.343610 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.348350 ], [ -70.192337, 46.349297 ], [ -70.191650, 46.350245 ], [ -70.190277, 46.350719 ], [ -70.188904, 46.350245 ], [ -70.184784, 46.352141 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354511 ], [ -70.177231, 46.355933 ], [ -70.175858, 46.358302 ], [ -70.173111, 46.359724 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357828 ], [ -70.164871, 46.359250 ], [ -70.163498, 46.359250 ], [ -70.162125, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359724 ], [ -70.158691, 46.361145 ], [ -70.156631, 46.361619 ], [ -70.154572, 46.360198 ], [ -70.148392, 46.359250 ], [ -70.144958, 46.362567 ], [ -70.142212, 46.362567 ], [ -70.140839, 46.363041 ], [ -70.141525, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.369200 ], [ -70.131912, 46.370148 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.379623 ], [ -70.126419, 46.381991 ], [ -70.116806, 46.385781 ], [ -70.116806, 46.388622 ], [ -70.115433, 46.388149 ], [ -70.114746, 46.385307 ], [ -70.111313, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112686, 46.388622 ], [ -70.110626, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108566, 46.389096 ] ], [ [ -69.789963, 45.783806 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785721 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.783327 ], [ -69.796829, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ] ], [ [ -69.826355, 45.741173 ], [ -69.827042, 45.740214 ], [ -69.833221, 45.738777 ], [ -69.830475, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.827728, 45.739256 ], [ -69.825668, 45.739735 ], [ -69.826355, 45.741173 ] ], [ [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798889, 45.784764 ] ], [ [ -69.801636, 45.785721 ], [ -69.801636, 45.785243 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785721 ] ], [ [ -69.788589, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.782848 ], [ -69.788589, 45.784764 ] ], [ [ -69.809189, 45.722960 ], [ -69.807816, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.809189, 45.722960 ] ], [ [ -70.108566, 46.389096 ], [ -70.108566, 46.387675 ], [ -70.107880, 46.388149 ], [ -70.108566, 46.389096 ] ], [ [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798203, 45.784764 ], [ -69.798889, 45.784764 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.108566, 46.389096 ], [ -70.109940, 46.390990 ], [ -70.107193, 46.390990 ], [ -70.107880, 46.392885 ], [ -70.105133, 46.393832 ], [ -70.102386, 46.396673 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099640, 46.403303 ], [ -70.101013, 46.403303 ], [ -70.098267, 46.404250 ], [ -70.100327, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.097580, 46.405670 ], [ -70.096207, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.407564 ], [ -70.094833, 46.408511 ], [ -70.097580, 46.409458 ], [ -70.096893, 46.409931 ], [ -70.092773, 46.409458 ], [ -70.089340, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.410878 ], [ -70.076981, 46.409931 ], [ -70.072174, 46.411352 ], [ -70.067368, 46.412298 ], [ -70.065308, 46.414192 ], [ -70.061874, 46.414192 ], [ -70.057068, 46.415612 ], [ -70.023422, 46.573495 ], [ -69.800949, 46.573495 ], [ -69.721298, 46.574439 ], [ -69.719925, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684219, 45.984081 ], [ -69.647141, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.648514, 45.863238 ], [ -69.651260, 45.863238 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.864194 ], [ -69.654007, 45.863238 ], [ -69.655380, 45.862759 ], [ -69.655380, 45.861803 ], [ -69.657440, 45.862281 ], [ -69.656754, 45.860369 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.662933, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.664993, 45.862281 ], [ -69.667740, 45.862281 ], [ -69.670486, 45.860847 ], [ -69.673920, 45.862759 ], [ -69.673920, 45.861803 ], [ -69.672546, 45.859890 ], [ -69.674606, 45.857499 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853195 ], [ -69.678040, 45.853195 ], [ -69.678726, 45.852239 ], [ -69.682846, 45.852239 ], [ -69.683533, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853195 ], [ -69.686966, 45.854152 ], [ -69.690399, 45.854630 ], [ -69.689713, 45.855108 ], [ -69.689713, 45.858456 ], [ -69.692459, 45.859412 ], [ -69.691772, 45.860847 ], [ -69.694519, 45.862281 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.864194 ], [ -69.697266, 45.864672 ], [ -69.697266, 45.867541 ], [ -69.699326, 45.868975 ], [ -69.699326, 45.870410 ], [ -69.701385, 45.872800 ], [ -69.700699, 45.874234 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.879015 ], [ -69.702072, 45.879015 ], [ -69.702072, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.702072, 45.886185 ], [ -69.706192, 45.885229 ], [ -69.709625, 45.885707 ], [ -69.711685, 45.885229 ], [ -69.713058, 45.883317 ], [ -69.716492, 45.883795 ], [ -69.717178, 45.882839 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.733658, 45.880449 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881405 ], [ -69.737091, 45.880927 ], [ -69.737091, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.880449 ], [ -69.733658, 45.879493 ], [ -69.735031, 45.879015 ], [ -69.734344, 45.877103 ], [ -69.731598, 45.877103 ], [ -69.728165, 45.875668 ], [ -69.727478, 45.876146 ], [ -69.727478, 45.874712 ], [ -69.724731, 45.874234 ], [ -69.725418, 45.872322 ], [ -69.724045, 45.870888 ], [ -69.724731, 45.868019 ], [ -69.726105, 45.867541 ], [ -69.725418, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.715118, 45.862281 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.856543 ], [ -69.709625, 45.856065 ], [ -69.708939, 45.854630 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.704819, 45.846499 ], [ -69.707565, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.836932 ], [ -69.712372, 45.834062 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832148 ], [ -69.718552, 45.833584 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721985, 45.835019 ], [ -69.723358, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.719925, 45.834062 ], [ -69.718552, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829278 ], [ -69.715805, 45.825928 ], [ -69.713058, 45.823536 ], [ -69.713058, 45.819708 ], [ -69.709625, 45.815401 ], [ -69.708939, 45.811093 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801999 ], [ -69.716492, 45.801042 ], [ -69.718552, 45.797691 ], [ -69.719238, 45.791467 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788594 ], [ -69.723358, 45.786200 ], [ -69.723358, 45.783327 ], [ -69.733658, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.728165, 45.775186 ], [ -69.728165, 45.773270 ], [ -69.726105, 45.771834 ], [ -69.724731, 45.766086 ], [ -69.726791, 45.762254 ], [ -69.730225, 45.760338 ], [ -69.730225, 45.759380 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.755547 ], [ -69.743958, 45.760338 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761775 ], [ -69.750137, 45.763212 ], [ -69.750824, 45.763691 ], [ -69.752884, 45.761775 ], [ -69.758377, 45.761775 ], [ -69.760437, 45.762254 ], [ -69.762497, 45.761296 ], [ -69.769363, 45.761775 ], [ -69.767990, 45.763212 ], [ -69.771423, 45.763691 ], [ -69.772797, 45.765128 ], [ -69.774857, 45.765128 ], [ -69.774170, 45.766086 ], [ -69.776917, 45.768002 ], [ -69.777603, 45.770876 ], [ -69.779663, 45.772313 ], [ -69.781036, 45.775665 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.776623 ], [ -69.781723, 45.778539 ], [ -69.783096, 45.778539 ], [ -69.783783, 45.777102 ], [ -69.785156, 45.777102 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.780933 ], [ -69.787216, 45.780933 ], [ -69.788589, 45.778060 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.777581 ], [ -69.789276, 45.777102 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.786530, 45.775186 ], [ -69.786530, 45.776144 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.774707 ], [ -69.784470, 45.773270 ], [ -69.781723, 45.774228 ], [ -69.782410, 45.773270 ], [ -69.784470, 45.772313 ], [ -69.782410, 45.769918 ], [ -69.787216, 45.768481 ], [ -69.789276, 45.768960 ], [ -69.790649, 45.768002 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.766086 ], [ -69.792023, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.760338 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.757463 ], [ -69.789963, 45.756026 ], [ -69.789963, 45.754589 ], [ -69.792023, 45.753152 ], [ -69.792709, 45.751235 ], [ -69.791336, 45.750277 ], [ -69.788589, 45.749798 ], [ -69.789963, 45.747881 ], [ -69.789963, 45.747402 ], [ -69.793396, 45.745965 ], [ -69.796829, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.805756, 45.748839 ], [ -69.806442, 45.747881 ], [ -69.812622, 45.745965 ], [ -69.812622, 45.747402 ], [ -69.817429, 45.747402 ], [ -69.821548, 45.745485 ], [ -69.822922, 45.743569 ], [ -69.825668, 45.743089 ], [ -69.826355, 45.741173 ], [ -69.824295, 45.742610 ], [ -69.821548, 45.740693 ], [ -69.820175, 45.740693 ], [ -69.820175, 45.739256 ], [ -69.811935, 45.737339 ], [ -69.810562, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733505 ], [ -69.800262, 45.733505 ], [ -69.794083, 45.728712 ], [ -69.792023, 45.728712 ], [ -69.791336, 45.726794 ], [ -69.792709, 45.725836 ], [ -69.797516, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.724398 ], [ -69.800262, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722960 ], [ -69.803696, 45.720563 ], [ -69.805069, 45.722001 ], [ -69.807816, 45.722480 ], [ -69.805756, 45.720563 ], [ -69.805756, 45.717207 ], [ -69.803009, 45.715289 ], [ -69.798203, 45.715289 ], [ -69.790649, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789963, 45.702343 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.692751 ], [ -69.783096, 45.690833 ], [ -69.779663, 45.690353 ], [ -69.776917, 45.687955 ], [ -69.774857, 45.687955 ], [ -69.774170, 45.686036 ], [ -69.769363, 45.685077 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682678 ], [ -69.760437, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754944, 45.679800 ], [ -69.749451, 45.681239 ], [ -69.746017, 45.681239 ], [ -69.739151, 45.679800 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.739151, 45.675482 ], [ -69.739151, 45.671644 ], [ -69.740524, 45.669725 ], [ -69.739838, 45.667325 ], [ -69.741898, 45.666846 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.657728 ], [ -69.739838, 45.657728 ], [ -69.739838, 45.656768 ], [ -69.744644, 45.653408 ], [ -69.743958, 45.651968 ], [ -69.736404, 45.651008 ], [ -69.734344, 45.654368 ], [ -69.732285, 45.655808 ], [ -69.732971, 45.657248 ], [ -69.728165, 45.656768 ], [ -69.723358, 45.657728 ], [ -69.719238, 45.656288 ], [ -69.713058, 45.655808 ], [ -69.706192, 45.652928 ], [ -69.705505, 45.653408 ], [ -69.703445, 45.651968 ], [ -69.701385, 45.651968 ], [ -69.700012, 45.650048 ], [ -69.692459, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.696579, 45.640928 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706879, 45.647168 ], [ -69.711685, 45.650528 ], [ -69.714432, 45.650528 ], [ -69.713058, 45.647648 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.648128 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712372, 45.638047 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.635647 ], [ -69.707565, 45.632766 ], [ -69.702072, 45.628445 ], [ -69.704132, 45.621722 ], [ -69.703445, 45.620761 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618840 ], [ -69.708939, 45.616919 ], [ -69.709625, 45.613557 ], [ -69.711685, 45.613077 ], [ -69.713058, 45.614037 ], [ -69.714432, 45.612116 ], [ -69.714432, 45.613077 ], [ -69.717865, 45.612116 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.611156 ], [ -69.717865, 45.608754 ], [ -69.720612, 45.608274 ], [ -69.721298, 45.602989 ], [ -69.719238, 45.600587 ], [ -69.717865, 45.597705 ], [ -69.715118, 45.597224 ], [ -69.713745, 45.595303 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.588576 ], [ -69.715118, 45.585693 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583290 ], [ -69.724045, 45.581848 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.574158 ], [ -69.728851, 45.572716 ], [ -69.728165, 45.570313 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.748077, 45.560699 ], [ -69.749451, 45.559256 ], [ -69.754257, 45.557814 ], [ -69.761124, 45.554449 ], [ -69.764557, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.774170, 45.554929 ], [ -69.775543, 45.553006 ], [ -69.775543, 45.549640 ], [ -69.773483, 45.545793 ], [ -69.780350, 45.542908 ], [ -69.732971, 45.389289 ], [ -69.701385, 45.295660 ], [ -69.700699, 45.292762 ], [ -69.708939, 45.291796 ], [ -69.705505, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.684219, 45.212520 ], [ -69.687653, 45.208166 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.632034, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128773 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152506 ], [ -70.367432, 45.835019 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.267868, 45.886185 ], [ -70.262375, 45.888096 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897655 ], [ -70.261002, 45.899088 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.907689 ], [ -70.256195, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.256195, 45.929662 ], [ -70.252075, 45.933960 ], [ -70.249329, 45.934916 ], [ -70.247269, 45.936348 ], [ -70.243149, 45.937303 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.943033 ], [ -70.239716, 45.943988 ], [ -70.241776, 45.944943 ], [ -70.244522, 45.944943 ], [ -70.242462, 45.946853 ], [ -70.248642, 45.949717 ], [ -70.249329, 45.952582 ], [ -70.251389, 45.953537 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.955924 ], [ -70.254822, 45.954491 ], [ -70.256195, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.308380, 46.061797 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.260315, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099900 ], [ -70.254822, 46.099900 ], [ -70.253448, 46.100376 ], [ -70.252762, 46.106089 ], [ -70.253448, 46.107993 ], [ -70.254822, 46.107993 ], [ -70.255508, 46.108945 ], [ -70.255508, 46.110850 ], [ -70.254135, 46.112754 ], [ -70.254822, 46.114182 ], [ -70.252762, 46.115134 ], [ -70.252762, 46.116562 ], [ -70.251389, 46.118466 ], [ -70.252075, 46.119893 ], [ -70.248642, 46.122749 ], [ -70.247955, 46.126080 ], [ -70.247269, 46.125605 ], [ -70.245895, 46.126556 ], [ -70.245209, 46.128936 ], [ -70.243835, 46.128936 ], [ -70.244522, 46.131315 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.241776, 46.134646 ], [ -70.242462, 46.135598 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.146540 ], [ -70.239716, 46.149394 ], [ -70.241089, 46.149394 ], [ -70.240402, 46.151297 ], [ -70.241776, 46.151297 ], [ -70.241776, 46.150346 ], [ -70.243149, 46.149870 ], [ -70.244522, 46.151773 ], [ -70.245209, 46.151297 ], [ -70.246582, 46.151297 ], [ -70.247269, 46.152248 ], [ -70.248642, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.153675 ], [ -70.250702, 46.154627 ], [ -70.250015, 46.156054 ], [ -70.252762, 46.157481 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.256195, 46.159859 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.278854, 46.175551 ], [ -70.280228, 46.177929 ], [ -70.282288, 46.178880 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191715 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.256195, 46.244926 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246351 ], [ -70.251389, 46.249200 ], [ -70.252075, 46.252523 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.255372 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261069 ], [ -70.250702, 46.263443 ], [ -70.248642, 46.265341 ], [ -70.249329, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.273411 ], [ -70.241089, 46.273411 ], [ -70.241089, 46.275309 ], [ -70.239716, 46.275784 ], [ -70.240402, 46.279580 ], [ -70.238342, 46.281004 ], [ -70.235596, 46.281479 ], [ -70.232849, 46.284800 ], [ -70.232162, 46.291443 ], [ -70.229416, 46.291918 ], [ -70.229416, 46.292392 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295713 ], [ -70.215683, 46.294764 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297611 ], [ -70.212250, 46.299034 ], [ -70.210876, 46.298560 ], [ -70.206070, 46.299983 ], [ -70.206070, 46.300457 ], [ -70.207443, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.312790 ], [ -70.203323, 46.315161 ], [ -70.207443, 46.319430 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.205383, 46.334129 ], [ -70.202637, 46.335551 ], [ -70.201263, 46.337447 ], [ -70.195770, 46.341239 ], [ -70.196457, 46.343610 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.348350 ], [ -70.192337, 46.349297 ], [ -70.191650, 46.350245 ], [ -70.190277, 46.350719 ], [ -70.188904, 46.350245 ], [ -70.184784, 46.352141 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354511 ], [ -70.177231, 46.355933 ], [ -70.175858, 46.358302 ], [ -70.173111, 46.359724 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357828 ], [ -70.164871, 46.359250 ], [ -70.163498, 46.359250 ], [ -70.162125, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359724 ], [ -70.158691, 46.361145 ], [ -70.156631, 46.361619 ], [ -70.154572, 46.360198 ], [ -70.148392, 46.359250 ], [ -70.144958, 46.362567 ], [ -70.142212, 46.362567 ], [ -70.140839, 46.363041 ], [ -70.141525, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.369200 ], [ -70.131912, 46.370148 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.379623 ], [ -70.126419, 46.381991 ], [ -70.116806, 46.385781 ], [ -70.116806, 46.388622 ], [ -70.115433, 46.388149 ], [ -70.114746, 46.385307 ], [ -70.111313, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112686, 46.388622 ], [ -70.110626, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108566, 46.389096 ] ], [ [ -69.788589, 45.784764 ], [ -69.787903, 45.783806 ], [ -69.785843, 45.783806 ], [ -69.784470, 45.782848 ], [ -69.785156, 45.780933 ], [ -69.783783, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.781723, 45.781891 ], [ -69.784470, 45.783806 ], [ -69.784470, 45.784285 ], [ -69.785156, 45.785721 ], [ -69.788589, 45.785243 ], [ -69.788589, 45.784764 ] ], [ [ -69.789963, 45.783806 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785721 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.783327 ], [ -69.796829, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.794083, 45.783327 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ] ], [ [ -69.826355, 45.741173 ], [ -69.827042, 45.740214 ], [ -69.833221, 45.738777 ], [ -69.830475, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.827728, 45.739256 ], [ -69.825668, 45.739735 ], [ -69.826355, 45.741173 ] ], [ [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798889, 45.784764 ] ], [ [ -69.801636, 45.785721 ], [ -69.801636, 45.785243 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785721 ] ], [ [ -69.788589, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.782848 ], [ -69.788589, 45.784764 ] ], [ [ -69.809189, 45.722960 ], [ -69.807816, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.809189, 45.722960 ] ], [ [ -70.108566, 46.389096 ], [ -70.108566, 46.387675 ], [ -70.107880, 46.388149 ], [ -70.108566, 46.389096 ] ], [ [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798203, 45.784764 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.796829, 45.783327 ], [ -69.797516, 45.783806 ], [ -69.796143, 45.784285 ], [ -69.796829, 45.783327 ] ] ], [ [ [ -69.499512, 45.050240 ], [ -69.500198, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.355316, 45.072066 ], [ -69.349136, 45.050240 ], [ -69.499512, 45.050240 ] ] ], [ [ [ -69.732971, 45.657248 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657248 ] ] ] ] } } ] } ] } , @@ -146,11 +147,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 91 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.724731, 45.879732 ], [ -69.723358, 45.879971 ], [ -69.723701, 45.880688 ], [ -69.723015, 45.881166 ], [ -69.720612, 45.881644 ], [ -69.719582, 45.882361 ], [ -69.717178, 45.882600 ], [ -69.716492, 45.883556 ], [ -69.712715, 45.883317 ], [ -69.712715, 45.884273 ], [ -69.712029, 45.884273 ], [ -69.711685, 45.884990 ], [ -69.709625, 45.885229 ], [ -69.709282, 45.885707 ], [ -69.707565, 45.885707 ], [ -69.705849, 45.884990 ], [ -69.704132, 45.885229 ], [ -69.703445, 45.885946 ], [ -69.702072, 45.886185 ], [ -69.699669, 45.885707 ], [ -69.698296, 45.885946 ], [ -69.697952, 45.885229 ], [ -69.698639, 45.884751 ], [ -69.698639, 45.880449 ], [ -69.701729, 45.879971 ], [ -69.701729, 45.879015 ], [ -69.702759, 45.878776 ], [ -69.702759, 45.876863 ], [ -69.702072, 45.876624 ], [ -69.702072, 45.875668 ], [ -69.701385, 45.875429 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.872561 ], [ -69.700356, 45.872083 ], [ -69.700356, 45.870888 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868736 ], [ -69.696922, 45.867541 ], [ -69.697266, 45.864433 ], [ -69.694176, 45.864194 ], [ -69.692116, 45.865150 ], [ -69.692116, 45.864672 ], [ -69.693489, 45.864194 ], [ -69.692802, 45.863238 ], [ -69.693146, 45.862520 ], [ -69.693832, 45.862520 ], [ -69.694176, 45.862042 ], [ -69.691429, 45.860847 ], [ -69.692116, 45.859173 ], [ -69.690399, 45.858934 ], [ -69.689369, 45.858217 ], [ -69.689369, 45.855108 ], [ -69.690399, 45.854391 ], [ -69.686966, 45.853913 ], [ -69.685936, 45.852956 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.684219, 45.851282 ], [ -69.683533, 45.851043 ], [ -69.682503, 45.852239 ], [ -69.681816, 45.851760 ], [ -69.679413, 45.851760 ], [ -69.678383, 45.852000 ], [ -69.678040, 45.852956 ], [ -69.676323, 45.852956 ], [ -69.676666, 45.851521 ], [ -69.674606, 45.852239 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.855826 ], [ -69.673920, 45.856304 ], [ -69.674263, 45.857499 ], [ -69.672546, 45.858695 ], [ -69.672546, 45.859651 ], [ -69.673233, 45.859890 ], [ -69.673233, 45.860847 ], [ -69.673920, 45.861086 ], [ -69.674606, 45.862281 ], [ -69.673576, 45.861803 ], [ -69.673576, 45.862520 ], [ -69.672203, 45.862042 ], [ -69.671516, 45.861325 ], [ -69.670486, 45.861325 ], [ -69.670143, 45.860847 ], [ -69.668770, 45.861564 ], [ -69.667740, 45.861564 ], [ -69.667397, 45.862042 ], [ -69.664650, 45.862042 ], [ -69.663963, 45.861564 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662590, 45.861325 ], [ -69.661560, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.659843, 45.860608 ], [ -69.659157, 45.860608 ], [ -69.659500, 45.861086 ], [ -69.658813, 45.861325 ], [ -69.658127, 45.860608 ], [ -69.656754, 45.860369 ], [ -69.656410, 45.860847 ], [ -69.657097, 45.861325 ], [ -69.657097, 45.862042 ], [ -69.655724, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.654694, 45.862281 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.862998 ], [ -69.654007, 45.863955 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.862998 ], [ -69.650230, 45.863477 ], [ -69.649200, 45.863477 ], [ -69.648514, 45.862998 ], [ -69.648170, 45.863716 ], [ -69.646797, 45.863238 ], [ -69.661560, 45.910555 ], [ -69.677696, 45.965231 ], [ -69.683876, 45.983842 ], [ -69.728851, 45.976924 ], [ -69.728851, 46.037969 ], [ -69.729538, 46.053697 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.092281 ], [ -68.878784, 46.092281 ], [ -68.878784, 45.676202 ], [ -68.906250, 45.671644 ], [ -68.959122, 45.662287 ], [ -68.950882, 45.638527 ], [ -68.951912, 45.580647 ], [ -68.964958, 45.512602 ], [ -68.906250, 45.520541 ], [ -68.878784, 45.524149 ], [ -68.878784, 45.225579 ], [ -68.881187, 45.225095 ], [ -68.878784, 45.217357 ], [ -68.878784, 45.140157 ], [ -68.906250, 45.136524 ], [ -68.998947, 45.123929 ], [ -69.044952, 45.116419 ], [ -69.118080, 45.106243 ], [ -69.126320, 45.104789 ], [ -69.154472, 45.101154 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.385185, 45.069641 ], [ -69.637184, 45.069641 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.682846, 45.195103 ], [ -69.687309, 45.208166 ], [ -69.683876, 45.212762 ], [ -69.700012, 45.261597 ], [ -69.702759, 45.268363 ], [ -69.705162, 45.276336 ], [ -69.708595, 45.291313 ], [ -69.700699, 45.292520 ], [ -69.732628, 45.389047 ], [ -69.748421, 45.441104 ], [ -69.766960, 45.499369 ], [ -69.780006, 45.542908 ], [ -69.773483, 45.545553 ], [ -69.773483, 45.546034 ], [ -69.774513, 45.546515 ], [ -69.775543, 45.549400 ], [ -69.775200, 45.553006 ], [ -69.773827, 45.554689 ], [ -69.772110, 45.554689 ], [ -69.770393, 45.553727 ], [ -69.768333, 45.553727 ], [ -69.764214, 45.554689 ], [ -69.760780, 45.554208 ], [ -69.756317, 45.556131 ], [ -69.754257, 45.557814 ], [ -69.752197, 45.557814 ], [ -69.749107, 45.559016 ], [ -69.748077, 45.560458 ], [ -69.744987, 45.560939 ], [ -69.743614, 45.562862 ], [ -69.741554, 45.563343 ], [ -69.740181, 45.564304 ], [ -69.738464, 45.564545 ], [ -69.737778, 45.565266 ], [ -69.735374, 45.565506 ], [ -69.731598, 45.566948 ], [ -69.730568, 45.568390 ], [ -69.729195, 45.569111 ], [ -69.728851, 45.570073 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572476 ], [ -69.726791, 45.573918 ], [ -69.726791, 45.577042 ], [ -69.726105, 45.577523 ], [ -69.725761, 45.579205 ], [ -69.724045, 45.580647 ], [ -69.723701, 45.581848 ], [ -69.721985, 45.582809 ], [ -69.719925, 45.583049 ], [ -69.717178, 45.585212 ], [ -69.714775, 45.585452 ], [ -69.714775, 45.587615 ], [ -69.714088, 45.588576 ], [ -69.714432, 45.589777 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713745, 45.590978 ], [ -69.713058, 45.591699 ], [ -69.713402, 45.595303 ], [ -69.715118, 45.596984 ], [ -69.716492, 45.596744 ], [ -69.717865, 45.597465 ], [ -69.719238, 45.599386 ], [ -69.718895, 45.600347 ], [ -69.719925, 45.600828 ], [ -69.721298, 45.602749 ], [ -69.721298, 45.604190 ], [ -69.720612, 45.604190 ], [ -69.720268, 45.605151 ], [ -69.720955, 45.605872 ], [ -69.720955, 45.606832 ], [ -69.720268, 45.606832 ], [ -69.720268, 45.608033 ], [ -69.718208, 45.608033 ], [ -69.717522, 45.608514 ], [ -69.717522, 45.610915 ], [ -69.718552, 45.611876 ], [ -69.719582, 45.614758 ], [ -69.718895, 45.614518 ], [ -69.718895, 45.613557 ], [ -69.718208, 45.613317 ], [ -69.717522, 45.612116 ], [ -69.714775, 45.613077 ], [ -69.714088, 45.613077 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.612116 ], [ -69.713745, 45.612837 ], [ -69.712715, 45.613317 ], [ -69.712715, 45.614037 ], [ -69.712029, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.710312, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.709282, 45.615718 ], [ -69.708595, 45.616679 ], [ -69.706192, 45.618120 ], [ -69.705505, 45.618120 ], [ -69.704819, 45.618600 ], [ -69.704819, 45.619801 ], [ -69.703102, 45.620521 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.622202 ], [ -69.702759, 45.623883 ], [ -69.702759, 45.626764 ], [ -69.701729, 45.628204 ], [ -69.704819, 45.630605 ], [ -69.705505, 45.632046 ], [ -69.707222, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.707909, 45.637327 ], [ -69.708939, 45.638047 ], [ -69.712029, 45.637807 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.717522, 45.641888 ], [ -69.717522, 45.644048 ], [ -69.717178, 45.645728 ], [ -69.716492, 45.646208 ], [ -69.716492, 45.647888 ], [ -69.715118, 45.648608 ], [ -69.714088, 45.648128 ], [ -69.713745, 45.647408 ], [ -69.713058, 45.647408 ], [ -69.712715, 45.648128 ], [ -69.713402, 45.648608 ], [ -69.714088, 45.650288 ], [ -69.711685, 45.650528 ], [ -69.710655, 45.649808 ], [ -69.709969, 45.649808 ], [ -69.707909, 45.648128 ], [ -69.707909, 45.647648 ], [ -69.706535, 45.646928 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.700012, 45.643568 ], [ -69.698982, 45.643088 ], [ -69.698296, 45.641888 ], [ -69.696579, 45.640688 ], [ -69.694176, 45.640928 ], [ -69.694176, 45.642128 ], [ -69.692802, 45.643088 ], [ -69.692116, 45.645488 ], [ -69.696236, 45.648368 ], [ -69.698639, 45.649328 ], [ -69.701042, 45.651728 ], [ -69.703445, 45.651968 ], [ -69.705162, 45.653168 ], [ -69.705505, 45.652688 ], [ -69.706192, 45.652688 ], [ -69.707565, 45.653648 ], [ -69.710312, 45.654368 ], [ -69.713058, 45.655808 ], [ -69.718895, 45.656048 ], [ -69.723015, 45.657728 ], [ -69.726105, 45.656528 ], [ -69.728165, 45.656528 ], [ -69.732285, 45.657248 ], [ -69.732971, 45.657728 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732628, 45.657008 ], [ -69.731941, 45.656528 ], [ -69.731941, 45.655808 ], [ -69.734001, 45.654368 ], [ -69.734001, 45.653648 ], [ -69.736061, 45.650768 ], [ -69.738808, 45.650768 ], [ -69.739494, 45.651488 ], [ -69.742584, 45.652208 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.652448 ], [ -69.744644, 45.653168 ], [ -69.743271, 45.653888 ], [ -69.742584, 45.655328 ], [ -69.741898, 45.655808 ], [ -69.741211, 45.655568 ], [ -69.741211, 45.656288 ], [ -69.740524, 45.656048 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657488 ], [ -69.741554, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.660607 ], [ -69.744644, 45.661087 ], [ -69.744987, 45.661807 ], [ -69.744301, 45.662047 ], [ -69.744644, 45.664206 ], [ -69.743958, 45.664446 ], [ -69.743958, 45.664926 ], [ -69.743271, 45.664926 ], [ -69.743271, 45.665406 ], [ -69.741554, 45.666846 ], [ -69.739494, 45.667325 ], [ -69.739494, 45.667805 ], [ -69.740524, 45.668045 ], [ -69.740524, 45.669485 ], [ -69.739838, 45.669725 ], [ -69.740181, 45.670204 ], [ -69.739494, 45.670444 ], [ -69.739494, 45.671164 ], [ -69.738808, 45.671644 ], [ -69.739151, 45.675242 ], [ -69.738121, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.737091, 45.676921 ], [ -69.738121, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738464, 45.676921 ], [ -69.738808, 45.679560 ], [ -69.740181, 45.679560 ], [ -69.741211, 45.680280 ], [ -69.745674, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.750481, 45.680520 ], [ -69.754601, 45.679560 ], [ -69.757004, 45.679800 ], [ -69.760094, 45.682678 ], [ -69.764557, 45.682438 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.684597 ], [ -69.769707, 45.684597 ], [ -69.773827, 45.686036 ], [ -69.775200, 45.687475 ], [ -69.774857, 45.687715 ], [ -69.776573, 45.687955 ], [ -69.777260, 45.688914 ], [ -69.778976, 45.689394 ], [ -69.779320, 45.690113 ], [ -69.781036, 45.689874 ], [ -69.783096, 45.690593 ], [ -69.783096, 45.691073 ], [ -69.785500, 45.692751 ], [ -69.785156, 45.697547 ], [ -69.786186, 45.698267 ], [ -69.785843, 45.699945 ], [ -69.787560, 45.701384 ], [ -69.789619, 45.702103 ], [ -69.789963, 45.703782 ], [ -69.790649, 45.704501 ], [ -69.790993, 45.706659 ], [ -69.790306, 45.710495 ], [ -69.792709, 45.711454 ], [ -69.793739, 45.712173 ], [ -69.793739, 45.712892 ], [ -69.796829, 45.713851 ], [ -69.797859, 45.715050 ], [ -69.803009, 45.715050 ], [ -69.805412, 45.716967 ], [ -69.805756, 45.720323 ], [ -69.806442, 45.720323 ], [ -69.806442, 45.721042 ], [ -69.807816, 45.722241 ], [ -69.807129, 45.722241 ], [ -69.806442, 45.721522 ], [ -69.805069, 45.721761 ], [ -69.804726, 45.720802 ], [ -69.803696, 45.720563 ], [ -69.803352, 45.721282 ], [ -69.804039, 45.721522 ], [ -69.804382, 45.722720 ], [ -69.803009, 45.723918 ], [ -69.801979, 45.723918 ], [ -69.801292, 45.723199 ], [ -69.799919, 45.722720 ], [ -69.799919, 45.724158 ], [ -69.799232, 45.724158 ], [ -69.798546, 45.725117 ], [ -69.797859, 45.725117 ], [ -69.797173, 45.724398 ], [ -69.795456, 45.724637 ], [ -69.795113, 45.725356 ], [ -69.792366, 45.725596 ], [ -69.791336, 45.726794 ], [ -69.791679, 45.728472 ], [ -69.794083, 45.728472 ], [ -69.796143, 45.730629 ], [ -69.797173, 45.730869 ], [ -69.799576, 45.732546 ], [ -69.799919, 45.733265 ], [ -69.805756, 45.733265 ], [ -69.807129, 45.732786 ], [ -69.809875, 45.733265 ], [ -69.810905, 45.734943 ], [ -69.812622, 45.735901 ], [ -69.812622, 45.736380 ], [ -69.810219, 45.736141 ], [ -69.811592, 45.736860 ], [ -69.811592, 45.737339 ], [ -69.819832, 45.739256 ], [ -69.820518, 45.739735 ], [ -69.820175, 45.740454 ], [ -69.821548, 45.740454 ], [ -69.824295, 45.742371 ], [ -69.826012, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827385, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.828072, 45.739016 ], [ -69.830132, 45.738058 ], [ -69.833221, 45.738537 ], [ -69.832878, 45.739016 ], [ -69.830132, 45.738777 ], [ -69.827042, 45.739975 ], [ -69.826355, 45.741891 ], [ -69.825325, 45.742371 ], [ -69.825325, 45.743089 ], [ -69.823952, 45.743808 ], [ -69.822578, 45.743569 ], [ -69.821892, 45.745006 ], [ -69.819489, 45.745725 ], [ -69.817429, 45.747162 ], [ -69.817085, 45.746683 ], [ -69.815369, 45.747162 ], [ -69.812622, 45.747162 ], [ -69.812965, 45.745965 ], [ -69.812279, 45.745965 ], [ -69.810219, 45.746444 ], [ -69.809189, 45.747162 ], [ -69.806442, 45.747642 ], [ -69.805412, 45.748600 ], [ -69.803696, 45.749079 ], [ -69.801292, 45.749079 ], [ -69.800262, 45.748600 ], [ -69.800262, 45.747881 ], [ -69.798546, 45.747642 ], [ -69.798203, 45.746683 ], [ -69.796486, 45.746204 ], [ -69.793739, 45.746204 ], [ -69.793053, 45.745725 ], [ -69.789963, 45.746683 ], [ -69.789963, 45.747162 ], [ -69.788246, 45.746923 ], [ -69.788246, 45.747402 ], [ -69.789619, 45.747881 ], [ -69.789619, 45.748600 ], [ -69.788589, 45.749079 ], [ -69.788589, 45.749558 ], [ -69.789619, 45.750037 ], [ -69.790993, 45.750037 ], [ -69.791679, 45.750516 ], [ -69.791336, 45.750756 ], [ -69.792366, 45.751235 ], [ -69.791679, 45.753152 ], [ -69.789963, 45.754349 ], [ -69.789963, 45.755787 ], [ -69.792366, 45.756266 ], [ -69.792709, 45.756984 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.757942 ], [ -69.791679, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.759619 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.762014 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.791336, 45.764409 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.765846 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.767762 ], [ -69.788933, 45.768960 ], [ -69.787560, 45.768960 ], [ -69.786873, 45.768481 ], [ -69.784813, 45.769439 ], [ -69.782410, 45.769678 ], [ -69.782753, 45.770876 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.772552 ], [ -69.781723, 45.773989 ], [ -69.784126, 45.773031 ], [ -69.784813, 45.774468 ], [ -69.783440, 45.774468 ], [ -69.782753, 45.774947 ], [ -69.784813, 45.775905 ], [ -69.786186, 45.775905 ], [ -69.786186, 45.774947 ], [ -69.787903, 45.774947 ], [ -69.787560, 45.776862 ], [ -69.788933, 45.776862 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.777820 ], [ -69.789619, 45.777820 ], [ -69.789619, 45.778299 ], [ -69.788246, 45.777820 ], [ -69.788246, 45.779257 ], [ -69.787216, 45.779736 ], [ -69.786873, 45.780933 ], [ -69.784813, 45.780933 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.783327 ], [ -69.785500, 45.783327 ], [ -69.785843, 45.783806 ], [ -69.787560, 45.783567 ], [ -69.787560, 45.784045 ], [ -69.788246, 45.784045 ], [ -69.788246, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783567 ], [ -69.792366, 45.783806 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.784764 ], [ -69.792023, 45.785482 ], [ -69.791336, 45.784285 ], [ -69.790993, 45.784524 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.783806 ], [ -69.788246, 45.785003 ], [ -69.786530, 45.785003 ], [ -69.785156, 45.785482 ], [ -69.784126, 45.784764 ], [ -69.784470, 45.784045 ], [ -69.783440, 45.785003 ], [ -69.783440, 45.784285 ], [ -69.784126, 45.783806 ], [ -69.783096, 45.783567 ], [ -69.783096, 45.782848 ], [ -69.782066, 45.782848 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781172 ], [ -69.783783, 45.781651 ], [ -69.784126, 45.780454 ], [ -69.785500, 45.779496 ], [ -69.786186, 45.779975 ], [ -69.786186, 45.779017 ], [ -69.785500, 45.779017 ], [ -69.785156, 45.778539 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.776862 ], [ -69.782753, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.780693, 45.777341 ], [ -69.780693, 45.776623 ], [ -69.782066, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.780350, 45.773989 ], [ -69.779320, 45.773270 ], [ -69.779320, 45.772313 ], [ -69.777260, 45.770876 ], [ -69.776573, 45.767762 ], [ -69.775543, 45.767523 ], [ -69.775887, 45.767044 ], [ -69.773827, 45.766086 ], [ -69.774513, 45.764888 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.764409 ], [ -69.771080, 45.763451 ], [ -69.767990, 45.762972 ], [ -69.767990, 45.762014 ], [ -69.768677, 45.762014 ], [ -69.769020, 45.761535 ], [ -69.762154, 45.761296 ], [ -69.761124, 45.762014 ], [ -69.760437, 45.761775 ], [ -69.760094, 45.762254 ], [ -69.759064, 45.762254 ], [ -69.758034, 45.761535 ], [ -69.752884, 45.761775 ], [ -69.750481, 45.763451 ], [ -69.751854, 45.765846 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.764649 ], [ -69.749794, 45.763212 ], [ -69.749107, 45.763212 ], [ -69.747391, 45.761535 ], [ -69.747391, 45.759859 ], [ -69.746361, 45.759859 ], [ -69.746017, 45.760338 ], [ -69.743958, 45.760098 ], [ -69.742241, 45.758182 ], [ -69.742584, 45.757224 ], [ -69.741211, 45.756745 ], [ -69.741211, 45.755547 ], [ -69.739494, 45.755547 ], [ -69.736748, 45.754828 ], [ -69.734001, 45.755308 ], [ -69.733315, 45.756026 ], [ -69.732628, 45.756026 ], [ -69.731598, 45.757942 ], [ -69.729881, 45.759140 ], [ -69.729881, 45.760338 ], [ -69.727821, 45.761056 ], [ -69.727821, 45.761535 ], [ -69.726448, 45.762254 ], [ -69.724731, 45.765846 ], [ -69.725761, 45.771594 ], [ -69.727135, 45.772313 ], [ -69.727821, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.728851, 45.775186 ], [ -69.729881, 45.776383 ], [ -69.731255, 45.776623 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738121, 45.782130 ], [ -69.738121, 45.782848 ], [ -69.734001, 45.783088 ], [ -69.733315, 45.783567 ], [ -69.731598, 45.783567 ], [ -69.730911, 45.783088 ], [ -69.726791, 45.783088 ], [ -69.725418, 45.783806 ], [ -69.724045, 45.783806 ], [ -69.723015, 45.783327 ], [ -69.723358, 45.785961 ], [ -69.722328, 45.787397 ], [ -69.720612, 45.788355 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791228 ], [ -69.719238, 45.794818 ], [ -69.718208, 45.796015 ], [ -69.718208, 45.797691 ], [ -69.717178, 45.798409 ], [ -69.717522, 45.798888 ], [ -69.716835, 45.798888 ], [ -69.716148, 45.800802 ], [ -69.714432, 45.801760 ], [ -69.713745, 45.804871 ], [ -69.713058, 45.805350 ], [ -69.712715, 45.806547 ], [ -69.712029, 45.806786 ], [ -69.710999, 45.808940 ], [ -69.708939, 45.810854 ], [ -69.708939, 45.812290 ], [ -69.709969, 45.814444 ], [ -69.709625, 45.815401 ], [ -69.710655, 45.815879 ], [ -69.711342, 45.817076 ], [ -69.710999, 45.817554 ], [ -69.711685, 45.817794 ], [ -69.712715, 45.819469 ], [ -69.712715, 45.823297 ], [ -69.713402, 45.823536 ], [ -69.714088, 45.824971 ], [ -69.715462, 45.825928 ], [ -69.716492, 45.829038 ], [ -69.718552, 45.829756 ], [ -69.718208, 45.831670 ], [ -69.719582, 45.834062 ], [ -69.720955, 45.834301 ], [ -69.723015, 45.833344 ], [ -69.724388, 45.833344 ], [ -69.725418, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.725075, 45.834062 ], [ -69.723015, 45.834062 ], [ -69.721642, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717522, 45.834540 ], [ -69.718208, 45.833344 ], [ -69.715118, 45.831909 ], [ -69.712029, 45.832388 ], [ -69.712029, 45.833823 ], [ -69.710999, 45.834062 ], [ -69.709625, 45.835976 ], [ -69.708252, 45.836693 ], [ -69.708939, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.838128 ], [ -69.707565, 45.839324 ], [ -69.707222, 45.842673 ], [ -69.706535, 45.843151 ], [ -69.706535, 45.843869 ], [ -69.705505, 45.844347 ], [ -69.705505, 45.845543 ], [ -69.704475, 45.846260 ], [ -69.705162, 45.846739 ], [ -69.706879, 45.846499 ], [ -69.707909, 45.846978 ], [ -69.707909, 45.849130 ], [ -69.708595, 45.850565 ], [ -69.706879, 45.852956 ], [ -69.706192, 45.853195 ], [ -69.705849, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.707222, 45.854152 ], [ -69.708939, 45.854391 ], [ -69.709625, 45.854869 ], [ -69.709282, 45.855826 ], [ -69.711342, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.713402, 45.861086 ], [ -69.715118, 45.862281 ], [ -69.716148, 45.863477 ], [ -69.716148, 45.864433 ], [ -69.717522, 45.865150 ], [ -69.717522, 45.865867 ], [ -69.720955, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.722672, 45.865628 ], [ -69.724388, 45.865628 ], [ -69.725075, 45.866106 ], [ -69.725075, 45.867063 ], [ -69.725761, 45.866824 ], [ -69.725761, 45.867302 ], [ -69.724388, 45.868019 ], [ -69.724731, 45.868975 ], [ -69.723701, 45.870888 ], [ -69.724388, 45.872083 ], [ -69.725075, 45.872083 ], [ -69.724731, 45.873995 ], [ -69.727135, 45.874712 ], [ -69.727135, 45.875907 ], [ -69.727478, 45.875429 ], [ -69.728165, 45.875429 ], [ -69.731255, 45.876863 ], [ -69.731941, 45.876624 ], [ -69.734001, 45.877103 ], [ -69.734688, 45.878776 ], [ -69.733658, 45.879254 ], [ -69.735031, 45.879493 ], [ -69.736061, 45.880210 ], [ -69.737778, 45.880210 ], [ -69.737778, 45.881166 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881644 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.883317 ], [ -69.736748, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881166 ], [ -69.735718, 45.880449 ], [ -69.733315, 45.880210 ], [ -69.732628, 45.879493 ], [ -69.732628, 45.878537 ], [ -69.731941, 45.878537 ], [ -69.730225, 45.879732 ], [ -69.727821, 45.879732 ], [ -69.727135, 45.880449 ], [ -69.725761, 45.880210 ], [ -69.724731, 45.879732 ] ], [ [ -69.792366, 45.783806 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.784045 ], [ -69.792366, 45.783806 ] ] ], [ [ [ -69.798546, 45.784764 ], [ -69.797859, 45.784764 ], [ -69.797516, 45.784524 ], [ -69.797516, 45.785721 ], [ -69.796486, 45.785003 ], [ -69.796143, 45.785482 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.784285 ], [ -69.797173, 45.783327 ], [ -69.797859, 45.783327 ], [ -69.797859, 45.784285 ], [ -69.798546, 45.784524 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.800262, 45.784524 ], [ -69.801292, 45.784764 ], [ -69.798546, 45.784764 ] ], [ [ -69.797173, 45.784285 ], [ -69.797516, 45.783567 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784285 ] ] ], [ [ [ -69.714432, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.715118, 45.589777 ], [ -69.714432, 45.589777 ] ] ], [ [ [ -69.807816, 45.722241 ], [ -69.808846, 45.722720 ], [ -69.810905, 45.722720 ], [ -69.812279, 45.721761 ], [ -69.813652, 45.722001 ], [ -69.815369, 45.721522 ], [ -69.813995, 45.722241 ], [ -69.811935, 45.722480 ], [ -69.810905, 45.723199 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722241 ] ] ], [ [ [ -69.795799, 45.784285 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.783088 ], [ -69.794083, 45.782848 ], [ -69.795456, 45.783567 ], [ -69.796486, 45.783327 ], [ -69.795799, 45.784285 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.802322, 45.785961 ], [ -69.801979, 45.786440 ], [ -69.801636, 45.785482 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.724731, 45.879732 ], [ -69.723358, 45.879971 ], [ -69.723701, 45.880688 ], [ -69.723015, 45.881166 ], [ -69.720612, 45.881644 ], [ -69.719582, 45.882361 ], [ -69.717178, 45.882600 ], [ -69.716492, 45.883556 ], [ -69.712715, 45.883317 ], [ -69.712715, 45.884273 ], [ -69.712029, 45.884273 ], [ -69.711685, 45.884990 ], [ -69.709625, 45.885229 ], [ -69.709282, 45.885707 ], [ -69.707565, 45.885707 ], [ -69.705849, 45.884990 ], [ -69.704132, 45.885229 ], [ -69.703445, 45.885946 ], [ -69.702072, 45.886185 ], [ -69.699669, 45.885707 ], [ -69.698296, 45.885946 ], [ -69.697952, 45.885229 ], [ -69.698639, 45.884751 ], [ -69.698639, 45.880449 ], [ -69.701729, 45.879971 ], [ -69.701729, 45.879015 ], [ -69.702759, 45.878776 ], [ -69.702759, 45.876863 ], [ -69.702072, 45.876624 ], [ -69.702072, 45.875668 ], [ -69.701385, 45.875429 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.872561 ], [ -69.700356, 45.872083 ], [ -69.700356, 45.870888 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868736 ], [ -69.696922, 45.867541 ], [ -69.697266, 45.864433 ], [ -69.694176, 45.864194 ], [ -69.692116, 45.865150 ], [ -69.692116, 45.864672 ], [ -69.693489, 45.864194 ], [ -69.692802, 45.863238 ], [ -69.693146, 45.862520 ], [ -69.693832, 45.862520 ], [ -69.694176, 45.862042 ], [ -69.691429, 45.860847 ], [ -69.692116, 45.859173 ], [ -69.690399, 45.858934 ], [ -69.689369, 45.858217 ], [ -69.689369, 45.855108 ], [ -69.690399, 45.854391 ], [ -69.686966, 45.853913 ], [ -69.685936, 45.852956 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.684219, 45.851282 ], [ -69.683533, 45.851043 ], [ -69.682503, 45.852239 ], [ -69.681816, 45.851760 ], [ -69.679413, 45.851760 ], [ -69.678383, 45.852000 ], [ -69.678040, 45.852956 ], [ -69.676323, 45.852956 ], [ -69.676666, 45.851521 ], [ -69.674606, 45.852239 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.855826 ], [ -69.673920, 45.856304 ], [ -69.674263, 45.857499 ], [ -69.672546, 45.858695 ], [ -69.672546, 45.859651 ], [ -69.673233, 45.859890 ], [ -69.673233, 45.860847 ], [ -69.673920, 45.861086 ], [ -69.674606, 45.862281 ], [ -69.673576, 45.861803 ], [ -69.673576, 45.862520 ], [ -69.672203, 45.862042 ], [ -69.671516, 45.861325 ], [ -69.670486, 45.861325 ], [ -69.670143, 45.860847 ], [ -69.668770, 45.861564 ], [ -69.667740, 45.861564 ], [ -69.667397, 45.862042 ], [ -69.664650, 45.862042 ], [ -69.663963, 45.861564 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662590, 45.861325 ], [ -69.661560, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.659843, 45.860608 ], [ -69.659157, 45.860608 ], [ -69.659500, 45.861086 ], [ -69.658813, 45.861325 ], [ -69.658127, 45.860608 ], [ -69.656754, 45.860369 ], [ -69.656410, 45.860847 ], [ -69.657097, 45.861325 ], [ -69.657097, 45.862042 ], [ -69.655724, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.654694, 45.862281 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.862998 ], [ -69.654007, 45.863955 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.862998 ], [ -69.650230, 45.863477 ], [ -69.649200, 45.863477 ], [ -69.648514, 45.862998 ], [ -69.648170, 45.863716 ], [ -69.646797, 45.863238 ], [ -69.661560, 45.910555 ], [ -69.677696, 45.965231 ], [ -69.683876, 45.983842 ], [ -69.728851, 45.976924 ], [ -69.728851, 46.037969 ], [ -69.729538, 46.053697 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.092281 ], [ -68.878784, 46.092281 ], [ -68.878784, 45.676202 ], [ -68.906250, 45.671644 ], [ -68.959122, 45.662287 ], [ -68.950882, 45.638527 ], [ -68.951912, 45.580647 ], [ -68.964958, 45.512602 ], [ -68.906250, 45.520541 ], [ -68.878784, 45.524149 ], [ -68.878784, 45.225579 ], [ -68.881187, 45.225095 ], [ -68.878784, 45.217357 ], [ -68.878784, 45.140157 ], [ -68.906250, 45.136524 ], [ -68.998947, 45.123929 ], [ -69.044952, 45.116419 ], [ -69.118080, 45.106243 ], [ -69.126320, 45.104789 ], [ -69.154472, 45.101154 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.385185, 45.069641 ], [ -69.637184, 45.069641 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.682846, 45.195103 ], [ -69.687309, 45.208166 ], [ -69.683876, 45.212762 ], [ -69.700012, 45.261597 ], [ -69.702759, 45.268363 ], [ -69.705162, 45.276336 ], [ -69.708595, 45.291313 ], [ -69.700699, 45.292520 ], [ -69.732628, 45.389047 ], [ -69.748421, 45.441104 ], [ -69.766960, 45.499369 ], [ -69.780006, 45.542908 ], [ -69.773483, 45.545553 ], [ -69.773483, 45.546034 ], [ -69.774513, 45.546515 ], [ -69.775543, 45.549400 ], [ -69.775200, 45.553006 ], [ -69.773827, 45.554689 ], [ -69.772110, 45.554689 ], [ -69.770393, 45.553727 ], [ -69.768333, 45.553727 ], [ -69.764214, 45.554689 ], [ -69.760780, 45.554208 ], [ -69.756317, 45.556131 ], [ -69.754257, 45.557814 ], [ -69.752197, 45.557814 ], [ -69.749107, 45.559016 ], [ -69.748077, 45.560458 ], [ -69.744987, 45.560939 ], [ -69.743614, 45.562862 ], [ -69.741554, 45.563343 ], [ -69.740181, 45.564304 ], [ -69.738464, 45.564545 ], [ -69.737778, 45.565266 ], [ -69.735374, 45.565506 ], [ -69.731598, 45.566948 ], [ -69.730568, 45.568390 ], [ -69.729195, 45.569111 ], [ -69.728851, 45.570073 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572476 ], [ -69.726791, 45.573918 ], [ -69.726791, 45.577042 ], [ -69.726105, 45.577523 ], [ -69.725761, 45.579205 ], [ -69.724045, 45.580647 ], [ -69.723701, 45.581848 ], [ -69.721985, 45.582809 ], [ -69.719925, 45.583049 ], [ -69.717178, 45.585212 ], [ -69.714775, 45.585452 ], [ -69.714775, 45.587615 ], [ -69.714088, 45.588576 ], [ -69.714432, 45.589777 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713745, 45.590978 ], [ -69.713058, 45.591699 ], [ -69.713402, 45.595303 ], [ -69.715118, 45.596984 ], [ -69.716492, 45.596744 ], [ -69.717865, 45.597465 ], [ -69.719238, 45.599386 ], [ -69.718895, 45.600347 ], [ -69.719925, 45.600828 ], [ -69.721298, 45.602749 ], [ -69.721298, 45.604190 ], [ -69.720612, 45.604190 ], [ -69.720268, 45.605151 ], [ -69.720955, 45.605872 ], [ -69.720955, 45.606832 ], [ -69.720268, 45.606832 ], [ -69.720268, 45.608033 ], [ -69.718208, 45.608033 ], [ -69.717522, 45.608514 ], [ -69.717522, 45.610915 ], [ -69.718552, 45.611876 ], [ -69.719582, 45.614758 ], [ -69.718895, 45.614518 ], [ -69.718895, 45.613557 ], [ -69.718208, 45.613317 ], [ -69.717522, 45.612116 ], [ -69.714775, 45.613077 ], [ -69.714088, 45.613077 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.612116 ], [ -69.713745, 45.612837 ], [ -69.712715, 45.613317 ], [ -69.712715, 45.614037 ], [ -69.712029, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.710312, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.709282, 45.615718 ], [ -69.708595, 45.616679 ], [ -69.706192, 45.618120 ], [ -69.705505, 45.618120 ], [ -69.704819, 45.618600 ], [ -69.704819, 45.619801 ], [ -69.703102, 45.620521 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.622202 ], [ -69.702759, 45.623883 ], [ -69.702759, 45.626764 ], [ -69.701729, 45.628204 ], [ -69.704819, 45.630605 ], [ -69.705505, 45.632046 ], [ -69.707222, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.707909, 45.637327 ], [ -69.708939, 45.638047 ], [ -69.712029, 45.637807 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.717522, 45.641888 ], [ -69.717522, 45.644048 ], [ -69.717178, 45.645728 ], [ -69.716492, 45.646208 ], [ -69.716492, 45.647888 ], [ -69.715118, 45.648608 ], [ -69.714088, 45.648128 ], [ -69.713745, 45.647408 ], [ -69.713058, 45.647408 ], [ -69.712715, 45.648128 ], [ -69.713402, 45.648608 ], [ -69.714088, 45.650288 ], [ -69.711685, 45.650528 ], [ -69.710655, 45.649808 ], [ -69.709969, 45.649808 ], [ -69.707909, 45.648128 ], [ -69.707909, 45.647648 ], [ -69.706535, 45.646928 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.700012, 45.643568 ], [ -69.698982, 45.643088 ], [ -69.698296, 45.641888 ], [ -69.696579, 45.640688 ], [ -69.694176, 45.640928 ], [ -69.694176, 45.642128 ], [ -69.692802, 45.643088 ], [ -69.692116, 45.645488 ], [ -69.696236, 45.648368 ], [ -69.698639, 45.649328 ], [ -69.701042, 45.651728 ], [ -69.703445, 45.651968 ], [ -69.705162, 45.653168 ], [ -69.705505, 45.652688 ], [ -69.706192, 45.652688 ], [ -69.707565, 45.653648 ], [ -69.710312, 45.654368 ], [ -69.713058, 45.655808 ], [ -69.718895, 45.656048 ], [ -69.723015, 45.657728 ], [ -69.726105, 45.656528 ], [ -69.728165, 45.656528 ], [ -69.732285, 45.657248 ], [ -69.732971, 45.657728 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732628, 45.657008 ], [ -69.731941, 45.656528 ], [ -69.731941, 45.655808 ], [ -69.734001, 45.654368 ], [ -69.734001, 45.653648 ], [ -69.736061, 45.650768 ], [ -69.738808, 45.650768 ], [ -69.739494, 45.651488 ], [ -69.742584, 45.652208 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.652448 ], [ -69.744644, 45.653168 ], [ -69.743271, 45.653888 ], [ -69.742584, 45.655328 ], [ -69.741898, 45.655808 ], [ -69.741211, 45.655568 ], [ -69.741211, 45.656288 ], [ -69.740524, 45.656048 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657488 ], [ -69.741554, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.660607 ], [ -69.744644, 45.661087 ], [ -69.744987, 45.661807 ], [ -69.744301, 45.662047 ], [ -69.744644, 45.664206 ], [ -69.743958, 45.664446 ], [ -69.743958, 45.664926 ], [ -69.743271, 45.664926 ], [ -69.743271, 45.665406 ], [ -69.741554, 45.666846 ], [ -69.739494, 45.667325 ], [ -69.739494, 45.667805 ], [ -69.740524, 45.668045 ], [ -69.740524, 45.669485 ], [ -69.739838, 45.669725 ], [ -69.740181, 45.670204 ], [ -69.739494, 45.670444 ], [ -69.739494, 45.671164 ], [ -69.738808, 45.671644 ], [ -69.739151, 45.675242 ], [ -69.738121, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.737091, 45.676921 ], [ -69.738121, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738464, 45.676921 ], [ -69.738808, 45.679560 ], [ -69.740181, 45.679560 ], [ -69.741211, 45.680280 ], [ -69.745674, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.750481, 45.680520 ], [ -69.754601, 45.679560 ], [ -69.757004, 45.679800 ], [ -69.760094, 45.682678 ], [ -69.764557, 45.682438 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.684597 ], [ -69.769707, 45.684597 ], [ -69.773827, 45.686036 ], [ -69.775200, 45.687475 ], [ -69.774857, 45.687715 ], [ -69.776573, 45.687955 ], [ -69.777260, 45.688914 ], [ -69.778976, 45.689394 ], [ -69.779320, 45.690113 ], [ -69.781036, 45.689874 ], [ -69.783096, 45.690593 ], [ -69.783096, 45.691073 ], [ -69.785500, 45.692751 ], [ -69.785156, 45.697547 ], [ -69.786186, 45.698267 ], [ -69.785843, 45.699945 ], [ -69.787560, 45.701384 ], [ -69.789619, 45.702103 ], [ -69.789963, 45.703782 ], [ -69.790649, 45.704501 ], [ -69.790993, 45.706659 ], [ -69.790306, 45.710495 ], [ -69.792709, 45.711454 ], [ -69.793739, 45.712173 ], [ -69.793739, 45.712892 ], [ -69.796829, 45.713851 ], [ -69.797859, 45.715050 ], [ -69.803009, 45.715050 ], [ -69.805412, 45.716967 ], [ -69.805756, 45.720323 ], [ -69.806442, 45.720323 ], [ -69.806442, 45.721042 ], [ -69.807816, 45.722241 ], [ -69.807129, 45.722241 ], [ -69.806442, 45.721522 ], [ -69.805069, 45.721761 ], [ -69.804726, 45.720802 ], [ -69.803696, 45.720563 ], [ -69.803352, 45.721282 ], [ -69.804039, 45.721522 ], [ -69.804382, 45.722720 ], [ -69.803009, 45.723918 ], [ -69.801979, 45.723918 ], [ -69.801292, 45.723199 ], [ -69.799919, 45.722720 ], [ -69.799919, 45.724158 ], [ -69.799232, 45.724158 ], [ -69.798546, 45.725117 ], [ -69.797859, 45.725117 ], [ -69.797173, 45.724398 ], [ -69.795456, 45.724637 ], [ -69.795113, 45.725356 ], [ -69.792366, 45.725596 ], [ -69.791336, 45.726794 ], [ -69.791679, 45.728472 ], [ -69.794083, 45.728472 ], [ -69.796143, 45.730629 ], [ -69.797173, 45.730869 ], [ -69.799576, 45.732546 ], [ -69.799919, 45.733265 ], [ -69.805756, 45.733265 ], [ -69.807129, 45.732786 ], [ -69.809875, 45.733265 ], [ -69.810905, 45.734943 ], [ -69.812622, 45.735901 ], [ -69.812622, 45.736380 ], [ -69.810219, 45.736141 ], [ -69.811592, 45.736860 ], [ -69.811592, 45.737339 ], [ -69.819832, 45.739256 ], [ -69.820518, 45.739735 ], [ -69.820175, 45.740454 ], [ -69.821548, 45.740454 ], [ -69.824295, 45.742371 ], [ -69.826012, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827385, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.828072, 45.739016 ], [ -69.830132, 45.738058 ], [ -69.833221, 45.738537 ], [ -69.832878, 45.739016 ], [ -69.830132, 45.738777 ], [ -69.827042, 45.739975 ], [ -69.826355, 45.741891 ], [ -69.825325, 45.742371 ], [ -69.825325, 45.743089 ], [ -69.823952, 45.743808 ], [ -69.822578, 45.743569 ], [ -69.821892, 45.745006 ], [ -69.819489, 45.745725 ], [ -69.817429, 45.747162 ], [ -69.817085, 45.746683 ], [ -69.815369, 45.747162 ], [ -69.812622, 45.747162 ], [ -69.812965, 45.745965 ], [ -69.812279, 45.745965 ], [ -69.810219, 45.746444 ], [ -69.809189, 45.747162 ], [ -69.806442, 45.747642 ], [ -69.805412, 45.748600 ], [ -69.803696, 45.749079 ], [ -69.801292, 45.749079 ], [ -69.800262, 45.748600 ], [ -69.800262, 45.747881 ], [ -69.798546, 45.747642 ], [ -69.798203, 45.746683 ], [ -69.796486, 45.746204 ], [ -69.793739, 45.746204 ], [ -69.793053, 45.745725 ], [ -69.789963, 45.746683 ], [ -69.789963, 45.747162 ], [ -69.788246, 45.746923 ], [ -69.788246, 45.747402 ], [ -69.789619, 45.747881 ], [ -69.789619, 45.748600 ], [ -69.788589, 45.749079 ], [ -69.788589, 45.749558 ], [ -69.789619, 45.750037 ], [ -69.790993, 45.750037 ], [ -69.791679, 45.750516 ], [ -69.791336, 45.750756 ], [ -69.792366, 45.751235 ], [ -69.791679, 45.753152 ], [ -69.789963, 45.754349 ], [ -69.789963, 45.755787 ], [ -69.792366, 45.756266 ], [ -69.792709, 45.756984 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.757942 ], [ -69.791679, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.759619 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.762014 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.791336, 45.764409 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.765846 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.767762 ], [ -69.788933, 45.768960 ], [ -69.787560, 45.768960 ], [ -69.786873, 45.768481 ], [ -69.784813, 45.769439 ], [ -69.782410, 45.769678 ], [ -69.782753, 45.770876 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.772552 ], [ -69.781723, 45.773989 ], [ -69.784126, 45.773031 ], [ -69.784813, 45.774468 ], [ -69.783440, 45.774468 ], [ -69.782753, 45.774947 ], [ -69.784813, 45.775905 ], [ -69.786186, 45.775905 ], [ -69.786186, 45.774947 ], [ -69.787903, 45.774947 ], [ -69.787560, 45.776862 ], [ -69.788933, 45.776862 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.777820 ], [ -69.789619, 45.777820 ], [ -69.789619, 45.778299 ], [ -69.788246, 45.777820 ], [ -69.788246, 45.779257 ], [ -69.787216, 45.779736 ], [ -69.786873, 45.780933 ], [ -69.784813, 45.780933 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.783327 ], [ -69.785500, 45.783327 ], [ -69.785843, 45.783806 ], [ -69.787560, 45.783567 ], [ -69.787560, 45.784045 ], [ -69.788246, 45.784045 ], [ -69.788246, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783567 ], [ -69.792366, 45.783806 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.784764 ], [ -69.792023, 45.785482 ], [ -69.791336, 45.784285 ], [ -69.790993, 45.784524 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.783806 ], [ -69.788246, 45.785003 ], [ -69.786530, 45.785003 ], [ -69.785156, 45.785482 ], [ -69.784126, 45.784764 ], [ -69.784470, 45.784045 ], [ -69.783440, 45.785003 ], [ -69.783440, 45.784285 ], [ -69.784126, 45.783806 ], [ -69.783096, 45.783567 ], [ -69.783096, 45.782848 ], [ -69.782066, 45.782848 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781172 ], [ -69.783783, 45.781651 ], [ -69.784126, 45.780454 ], [ -69.785500, 45.779496 ], [ -69.786186, 45.779975 ], [ -69.786186, 45.779017 ], [ -69.785500, 45.779017 ], [ -69.785156, 45.778539 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.776862 ], [ -69.782753, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.780693, 45.777341 ], [ -69.780693, 45.776623 ], [ -69.782066, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.780350, 45.773989 ], [ -69.779320, 45.773270 ], [ -69.779320, 45.772313 ], [ -69.777260, 45.770876 ], [ -69.776573, 45.767762 ], [ -69.775543, 45.767523 ], [ -69.775887, 45.767044 ], [ -69.773827, 45.766086 ], [ -69.774513, 45.764888 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.764409 ], [ -69.771080, 45.763451 ], [ -69.767990, 45.762972 ], [ -69.767990, 45.762014 ], [ -69.768677, 45.762014 ], [ -69.769020, 45.761535 ], [ -69.762154, 45.761296 ], [ -69.761124, 45.762014 ], [ -69.760437, 45.761775 ], [ -69.760094, 45.762254 ], [ -69.759064, 45.762254 ], [ -69.758034, 45.761535 ], [ -69.752884, 45.761775 ], [ -69.750481, 45.763451 ], [ -69.751854, 45.765846 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.764649 ], [ -69.749794, 45.763212 ], [ -69.749107, 45.763212 ], [ -69.747391, 45.761535 ], [ -69.747391, 45.759859 ], [ -69.746361, 45.759859 ], [ -69.746017, 45.760338 ], [ -69.743958, 45.760098 ], [ -69.742241, 45.758182 ], [ -69.742584, 45.757224 ], [ -69.741211, 45.756745 ], [ -69.741211, 45.755547 ], [ -69.739494, 45.755547 ], [ -69.736748, 45.754828 ], [ -69.734001, 45.755308 ], [ -69.733315, 45.756026 ], [ -69.732628, 45.756026 ], [ -69.731598, 45.757942 ], [ -69.729881, 45.759140 ], [ -69.729881, 45.760338 ], [ -69.727821, 45.761056 ], [ -69.727821, 45.761535 ], [ -69.726448, 45.762254 ], [ -69.724731, 45.765846 ], [ -69.725761, 45.771594 ], [ -69.727135, 45.772313 ], [ -69.727821, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.728851, 45.775186 ], [ -69.729881, 45.776383 ], [ -69.731255, 45.776623 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738121, 45.782130 ], [ -69.738121, 45.782848 ], [ -69.734001, 45.783088 ], [ -69.733315, 45.783567 ], [ -69.731598, 45.783567 ], [ -69.730911, 45.783088 ], [ -69.726791, 45.783088 ], [ -69.725418, 45.783806 ], [ -69.724045, 45.783806 ], [ -69.723015, 45.783327 ], [ -69.723358, 45.785961 ], [ -69.722328, 45.787397 ], [ -69.720612, 45.788355 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791228 ], [ -69.719238, 45.794818 ], [ -69.718208, 45.796015 ], [ -69.718208, 45.797691 ], [ -69.717178, 45.798409 ], [ -69.717522, 45.798888 ], [ -69.716835, 45.798888 ], [ -69.716148, 45.800802 ], [ -69.714432, 45.801760 ], [ -69.713745, 45.804871 ], [ -69.713058, 45.805350 ], [ -69.712715, 45.806547 ], [ -69.712029, 45.806786 ], [ -69.710999, 45.808940 ], [ -69.708939, 45.810854 ], [ -69.708939, 45.812290 ], [ -69.709969, 45.814444 ], [ -69.709625, 45.815401 ], [ -69.710655, 45.815879 ], [ -69.711342, 45.817076 ], [ -69.710999, 45.817554 ], [ -69.711685, 45.817794 ], [ -69.712715, 45.819469 ], [ -69.712715, 45.823297 ], [ -69.713402, 45.823536 ], [ -69.714088, 45.824971 ], [ -69.715462, 45.825928 ], [ -69.716492, 45.829038 ], [ -69.718552, 45.829756 ], [ -69.718208, 45.831670 ], [ -69.719582, 45.834062 ], [ -69.720955, 45.834301 ], [ -69.723015, 45.833344 ], [ -69.724388, 45.833344 ], [ -69.725418, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.725075, 45.834062 ], [ -69.723015, 45.834062 ], [ -69.721642, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717522, 45.834540 ], [ -69.718208, 45.833344 ], [ -69.715118, 45.831909 ], [ -69.712029, 45.832388 ], [ -69.712029, 45.833823 ], [ -69.710999, 45.834062 ], [ -69.709625, 45.835976 ], [ -69.708252, 45.836693 ], [ -69.708939, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.838128 ], [ -69.707565, 45.839324 ], [ -69.707222, 45.842673 ], [ -69.706535, 45.843151 ], [ -69.706535, 45.843869 ], [ -69.705505, 45.844347 ], [ -69.705505, 45.845543 ], [ -69.704475, 45.846260 ], [ -69.705162, 45.846739 ], [ -69.706879, 45.846499 ], [ -69.707909, 45.846978 ], [ -69.707909, 45.849130 ], [ -69.708595, 45.850565 ], [ -69.706879, 45.852956 ], [ -69.706192, 45.853195 ], [ -69.705849, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.707222, 45.854152 ], [ -69.708939, 45.854391 ], [ -69.709625, 45.854869 ], [ -69.709282, 45.855826 ], [ -69.711342, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.713402, 45.861086 ], [ -69.715118, 45.862281 ], [ -69.716148, 45.863477 ], [ -69.716148, 45.864433 ], [ -69.717522, 45.865150 ], [ -69.717522, 45.865867 ], [ -69.720955, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.722672, 45.865628 ], [ -69.724388, 45.865628 ], [ -69.725075, 45.866106 ], [ -69.725075, 45.867063 ], [ -69.725761, 45.866824 ], [ -69.725761, 45.867302 ], [ -69.724388, 45.868019 ], [ -69.724731, 45.868975 ], [ -69.723701, 45.870888 ], [ -69.724388, 45.872083 ], [ -69.725075, 45.872083 ], [ -69.724731, 45.873995 ], [ -69.727135, 45.874712 ], [ -69.727135, 45.875907 ], [ -69.727478, 45.875429 ], [ -69.728165, 45.875429 ], [ -69.731255, 45.876863 ], [ -69.731941, 45.876624 ], [ -69.734001, 45.877103 ], [ -69.734688, 45.878776 ], [ -69.733658, 45.879254 ], [ -69.735031, 45.879493 ], [ -69.736061, 45.880210 ], [ -69.737778, 45.880210 ], [ -69.737778, 45.881166 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881644 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.883317 ], [ -69.736748, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881166 ], [ -69.735718, 45.880449 ], [ -69.733315, 45.880210 ], [ -69.732628, 45.879493 ], [ -69.732628, 45.878537 ], [ -69.731941, 45.878537 ], [ -69.730225, 45.879732 ], [ -69.727821, 45.879732 ], [ -69.727135, 45.880449 ], [ -69.725761, 45.880210 ], [ -69.724731, 45.879732 ] ], [ [ -69.792366, 45.783806 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.784045 ], [ -69.792366, 45.783806 ] ] ], [ [ [ -69.798546, 45.784764 ], [ -69.797859, 45.784764 ], [ -69.797516, 45.784524 ], [ -69.797516, 45.785721 ], [ -69.796486, 45.785003 ], [ -69.796143, 45.785482 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.784285 ], [ -69.797173, 45.783327 ], [ -69.797859, 45.783327 ], [ -69.797859, 45.784285 ], [ -69.798546, 45.784524 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.800262, 45.784524 ], [ -69.801292, 45.784764 ], [ -69.798546, 45.784764 ] ], [ [ -69.797173, 45.784285 ], [ -69.797516, 45.783567 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784285 ] ] ], [ [ [ -69.714432, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.715118, 45.589777 ], [ -69.714432, 45.589777 ] ] ], [ [ [ -69.807816, 45.722241 ], [ -69.808846, 45.722720 ], [ -69.810905, 45.722720 ], [ -69.812279, 45.721761 ], [ -69.813652, 45.722001 ], [ -69.815369, 45.721522 ], [ -69.813995, 45.722241 ], [ -69.811935, 45.722480 ], [ -69.810905, 45.723199 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722241 ] ] ], [ [ [ -69.795799, 45.784285 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.782848 ], [ -69.795456, 45.783567 ], [ -69.796486, 45.783327 ], [ -69.795799, 45.784285 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.802322, 45.785961 ], [ -69.801979, 45.786440 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.793053, 45.783327 ], [ -69.793053, 45.783088 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783327 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.724731, 45.879732 ], [ -69.725761, 45.880210 ], [ -69.727135, 45.880449 ], [ -69.727821, 45.879732 ], [ -69.730225, 45.879732 ], [ -69.731941, 45.878537 ], [ -69.732628, 45.878537 ], [ -69.732628, 45.879493 ], [ -69.733315, 45.880210 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881166 ], [ -69.737091, 45.880927 ], [ -69.736748, 45.882361 ], [ -69.737778, 45.883317 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.882361 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881166 ], [ -69.737778, 45.880210 ], [ -69.736061, 45.880210 ], [ -69.735031, 45.879493 ], [ -69.733658, 45.879254 ], [ -69.734688, 45.878776 ], [ -69.734001, 45.877103 ], [ -69.731941, 45.876624 ], [ -69.731255, 45.876863 ], [ -69.728165, 45.875429 ], [ -69.727478, 45.875429 ], [ -69.727135, 45.875907 ], [ -69.727135, 45.874712 ], [ -69.724731, 45.873995 ], [ -69.725075, 45.872083 ], [ -69.724388, 45.872083 ], [ -69.723701, 45.870888 ], [ -69.724731, 45.868975 ], [ -69.724388, 45.868019 ], [ -69.725761, 45.867302 ], [ -69.725761, 45.866824 ], [ -69.725075, 45.867063 ], [ -69.725075, 45.866106 ], [ -69.724388, 45.865628 ], [ -69.722672, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.720955, 45.865628 ], [ -69.717522, 45.865867 ], [ -69.717522, 45.865150 ], [ -69.716148, 45.864433 ], [ -69.716148, 45.863477 ], [ -69.715118, 45.862281 ], [ -69.713402, 45.861086 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711342, 45.856543 ], [ -69.709282, 45.855826 ], [ -69.709625, 45.854869 ], [ -69.708939, 45.854391 ], [ -69.707222, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.705849, 45.854152 ], [ -69.706192, 45.853195 ], [ -69.706879, 45.852956 ], [ -69.708595, 45.850565 ], [ -69.707909, 45.849130 ], [ -69.707909, 45.846978 ], [ -69.706879, 45.846499 ], [ -69.705162, 45.846739 ], [ -69.704475, 45.846260 ], [ -69.705505, 45.845543 ], [ -69.705505, 45.844347 ], [ -69.706535, 45.843869 ], [ -69.706535, 45.843151 ], [ -69.707222, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708252, 45.838128 ], [ -69.708939, 45.837889 ], [ -69.708939, 45.836932 ], [ -69.708252, 45.836693 ], [ -69.709625, 45.835976 ], [ -69.710999, 45.834062 ], [ -69.712029, 45.833823 ], [ -69.712029, 45.832388 ], [ -69.715118, 45.831909 ], [ -69.718208, 45.833344 ], [ -69.717522, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721642, 45.835019 ], [ -69.723015, 45.834062 ], [ -69.725075, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.725761, 45.833823 ], [ -69.724388, 45.833344 ], [ -69.723015, 45.833344 ], [ -69.720955, 45.834301 ], [ -69.719582, 45.834062 ], [ -69.718208, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829038 ], [ -69.715462, 45.825928 ], [ -69.714088, 45.824971 ], [ -69.713402, 45.823536 ], [ -69.712715, 45.823297 ], [ -69.712715, 45.819469 ], [ -69.711685, 45.817794 ], [ -69.710999, 45.817554 ], [ -69.711342, 45.817076 ], [ -69.710655, 45.815879 ], [ -69.709625, 45.815401 ], [ -69.709969, 45.814444 ], [ -69.708939, 45.812290 ], [ -69.708939, 45.810854 ], [ -69.710999, 45.808940 ], [ -69.712029, 45.806786 ], [ -69.712715, 45.806547 ], [ -69.713058, 45.805350 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.785003 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.792366, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.338249, 45.161222 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.852717 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285721, 45.871844 ], [ -70.284348, 45.871844 ], [ -70.283318, 45.873517 ], [ -70.281258, 45.874234 ], [ -70.280228, 45.876385 ], [ -70.278168, 45.877342 ], [ -70.276794, 45.878776 ], [ -70.274048, 45.879732 ], [ -70.274048, 45.881405 ], [ -70.273018, 45.882839 ], [ -70.270615, 45.884512 ], [ -70.268555, 45.885229 ], [ -70.267525, 45.886185 ], [ -70.265808, 45.886424 ], [ -70.263748, 45.887857 ], [ -70.262375, 45.888096 ], [ -70.261345, 45.888813 ], [ -70.261345, 45.889291 ], [ -70.259972, 45.890008 ], [ -70.259972, 45.890725 ], [ -70.258942, 45.891203 ], [ -70.260658, 45.892398 ], [ -70.262032, 45.892637 ], [ -70.262718, 45.892159 ], [ -70.264778, 45.892876 ], [ -70.265808, 45.893354 ], [ -70.265808, 45.894070 ], [ -70.264091, 45.895026 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897416 ], [ -70.260658, 45.898849 ], [ -70.258255, 45.899805 ], [ -70.257225, 45.900999 ], [ -70.255852, 45.901238 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.903389 ], [ -70.254135, 45.903866 ], [ -70.254135, 45.906255 ], [ -70.253448, 45.907450 ], [ -70.254478, 45.907689 ], [ -70.254478, 45.908167 ], [ -70.255852, 45.908883 ], [ -70.259628, 45.909600 ], [ -70.259972, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.913900 ], [ -70.258942, 45.915572 ], [ -70.257568, 45.915810 ], [ -70.257912, 45.917482 ], [ -70.257225, 45.917960 ], [ -70.257568, 45.918438 ], [ -70.259628, 45.918915 ], [ -70.259972, 45.920110 ], [ -70.260658, 45.920587 ], [ -70.262718, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263405, 45.923931 ], [ -70.261345, 45.925841 ], [ -70.259285, 45.926558 ], [ -70.259285, 45.928230 ], [ -70.255852, 45.929424 ], [ -70.254478, 45.930617 ], [ -70.253448, 45.932767 ], [ -70.251732, 45.933960 ], [ -70.248985, 45.934677 ], [ -70.246925, 45.936348 ], [ -70.244179, 45.937303 ], [ -70.243149, 45.937064 ], [ -70.242805, 45.938019 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.940646 ], [ -70.239716, 45.941601 ], [ -70.240402, 45.942078 ], [ -70.240402, 45.943033 ], [ -70.239372, 45.943749 ], [ -70.239716, 45.944227 ], [ -70.240746, 45.943988 ], [ -70.241432, 45.944704 ], [ -70.242462, 45.944227 ], [ -70.244522, 45.944704 ], [ -70.242805, 45.945898 ], [ -70.242462, 45.946853 ], [ -70.244865, 45.947808 ], [ -70.246925, 45.949479 ], [ -70.248299, 45.949717 ], [ -70.248299, 45.950911 ], [ -70.248642, 45.951627 ], [ -70.249329, 45.951866 ], [ -70.248985, 45.952582 ], [ -70.250359, 45.952582 ], [ -70.251389, 45.953298 ], [ -70.252075, 45.954253 ], [ -70.252075, 45.955446 ], [ -70.253105, 45.955685 ], [ -70.254822, 45.954491 ], [ -70.255165, 45.953059 ], [ -70.255852, 45.952582 ], [ -70.259285, 45.952104 ], [ -70.260658, 45.952343 ], [ -70.260658, 45.953775 ], [ -70.259285, 45.954253 ], [ -70.258598, 45.954969 ], [ -70.259972, 45.956162 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.959981 ], [ -70.263405, 45.962129 ], [ -70.264778, 45.962368 ], [ -70.265808, 45.963084 ], [ -70.265465, 45.964038 ], [ -70.266151, 45.964515 ], [ -70.267868, 45.962845 ], [ -70.269585, 45.962606 ], [ -70.271645, 45.961413 ], [ -70.274734, 45.961413 ], [ -70.275421, 45.963322 ], [ -70.274734, 45.963799 ], [ -70.273018, 45.964038 ], [ -70.273018, 45.964515 ], [ -70.274391, 45.964515 ], [ -70.274734, 45.966186 ], [ -70.275421, 45.966902 ], [ -70.277138, 45.966902 ], [ -70.278854, 45.965947 ], [ -70.280571, 45.965709 ], [ -70.280571, 45.964515 ], [ -70.282631, 45.964277 ], [ -70.283318, 45.963799 ], [ -70.284004, 45.963799 ], [ -70.284348, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.968811 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.284004, 45.995531 ], [ -70.284691, 45.995769 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.299110, 46.030104 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.284691, 46.048455 ], [ -70.284691, 46.048931 ], [ -70.281258, 46.050838 ], [ -70.280914, 46.051791 ], [ -70.279884, 46.052267 ], [ -70.281258, 46.053220 ], [ -70.280914, 46.054411 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -69.729881, 46.092281 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.053697 ], [ -69.728851, 46.037969 ], [ -69.728851, 45.976924 ], [ -69.683876, 45.983842 ], [ -69.677696, 45.965231 ], [ -69.661560, 45.910555 ], [ -69.646797, 45.863238 ], [ -69.648170, 45.863716 ], [ -69.648514, 45.862998 ], [ -69.649200, 45.863477 ], [ -69.651260, 45.862998 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863955 ], [ -69.654007, 45.862998 ], [ -69.655380, 45.862759 ], [ -69.654694, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.655724, 45.862281 ], [ -69.657097, 45.862042 ], [ -69.657097, 45.861325 ], [ -69.656410, 45.860847 ], [ -69.656754, 45.860369 ], [ -69.658127, 45.860608 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.861086 ], [ -69.659157, 45.860608 ], [ -69.659843, 45.860608 ], [ -69.660187, 45.861325 ], [ -69.660873, 45.860847 ], [ -69.662590, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.663963, 45.861564 ], [ -69.664650, 45.862042 ], [ -69.667397, 45.862042 ], [ -69.667740, 45.861564 ], [ -69.668770, 45.861564 ], [ -69.670143, 45.860847 ], [ -69.670486, 45.861325 ], [ -69.671516, 45.861325 ], [ -69.672203, 45.862042 ], [ -69.673576, 45.862520 ], [ -69.673576, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.674606, 45.861803 ], [ -69.673233, 45.860847 ], [ -69.673233, 45.859890 ], [ -69.672546, 45.859651 ], [ -69.672546, 45.858695 ], [ -69.674263, 45.857499 ], [ -69.673920, 45.856304 ], [ -69.674606, 45.855826 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851521 ], [ -69.676323, 45.852956 ], [ -69.678040, 45.852956 ], [ -69.678383, 45.852000 ], [ -69.681816, 45.851760 ], [ -69.682503, 45.852239 ], [ -69.683533, 45.851043 ], [ -69.684219, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.685936, 45.852956 ], [ -69.686966, 45.853913 ], [ -69.690399, 45.854391 ], [ -69.689369, 45.855108 ], [ -69.689369, 45.858217 ], [ -69.690399, 45.858934 ], [ -69.692116, 45.859173 ], [ -69.691429, 45.860847 ], [ -69.694176, 45.862042 ], [ -69.693832, 45.862520 ], [ -69.693146, 45.862520 ], [ -69.692802, 45.863238 ], [ -69.693489, 45.864194 ], [ -69.692116, 45.864672 ], [ -69.692116, 45.865150 ], [ -69.694176, 45.864194 ], [ -69.697266, 45.864433 ], [ -69.696922, 45.867541 ], [ -69.699326, 45.868736 ], [ -69.699326, 45.870410 ], [ -69.700356, 45.870888 ], [ -69.700012, 45.871605 ], [ -69.701385, 45.872561 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.875429 ], [ -69.702072, 45.875668 ], [ -69.701729, 45.876146 ], [ -69.702759, 45.876863 ], [ -69.702759, 45.878776 ], [ -69.701729, 45.879015 ], [ -69.701729, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.884751 ], [ -69.697952, 45.885229 ], [ -69.698296, 45.885946 ], [ -69.699669, 45.885707 ], [ -69.702072, 45.886185 ], [ -69.703445, 45.885946 ], [ -69.704132, 45.885229 ], [ -69.705849, 45.884990 ], [ -69.707565, 45.885707 ], [ -69.709282, 45.885707 ], [ -69.709625, 45.885229 ], [ -69.711685, 45.884990 ], [ -69.712029, 45.884273 ], [ -69.712715, 45.884273 ], [ -69.712715, 45.883317 ], [ -69.716492, 45.883556 ], [ -69.717178, 45.882600 ], [ -69.719582, 45.882361 ], [ -69.720612, 45.881644 ], [ -69.723015, 45.881166 ], [ -69.723701, 45.880688 ], [ -69.723358, 45.879971 ], [ -69.724731, 45.879732 ] ], [ [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785482 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.798546, 45.784764 ], [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ] ], [ [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ] ], [ [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.807816, 45.722241 ] ], [ [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793053, 45.783088 ], [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ] ], [ [ -69.801636, 45.785482 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785482 ] ], [ [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.796829, 45.784045 ], [ -69.797516, 45.783567 ], [ -69.797173, 45.784285 ], [ -69.796829, 45.784285 ], [ -69.796829, 45.784045 ] ] ], [ [ [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ] ] ], [ [ [ -69.792366, 45.783806 ], [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.783806 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.724731, 45.879732 ], [ -69.725761, 45.880210 ], [ -69.727135, 45.880449 ], [ -69.727821, 45.879732 ], [ -69.730225, 45.879732 ], [ -69.731941, 45.878537 ], [ -69.732628, 45.878537 ], [ -69.732628, 45.879493 ], [ -69.733315, 45.880210 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881166 ], [ -69.737091, 45.880927 ], [ -69.736748, 45.882361 ], [ -69.737778, 45.883317 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.882361 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881166 ], [ -69.737778, 45.880210 ], [ -69.736061, 45.880210 ], [ -69.735031, 45.879493 ], [ -69.733658, 45.879254 ], [ -69.734688, 45.878776 ], [ -69.734001, 45.877103 ], [ -69.731941, 45.876624 ], [ -69.731255, 45.876863 ], [ -69.728165, 45.875429 ], [ -69.727478, 45.875429 ], [ -69.727135, 45.875907 ], [ -69.727135, 45.874712 ], [ -69.724731, 45.873995 ], [ -69.725075, 45.872083 ], [ -69.724388, 45.872083 ], [ -69.723701, 45.870888 ], [ -69.724731, 45.868975 ], [ -69.724388, 45.868019 ], [ -69.725761, 45.867302 ], [ -69.725761, 45.866824 ], [ -69.725075, 45.867063 ], [ -69.725075, 45.866106 ], [ -69.724388, 45.865628 ], [ -69.722672, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.720955, 45.865628 ], [ -69.717522, 45.865867 ], [ -69.717522, 45.865150 ], [ -69.716148, 45.864433 ], [ -69.716148, 45.863477 ], [ -69.715118, 45.862281 ], [ -69.713402, 45.861086 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711342, 45.856543 ], [ -69.709282, 45.855826 ], [ -69.709625, 45.854869 ], [ -69.708939, 45.854391 ], [ -69.707222, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.705849, 45.854152 ], [ -69.706192, 45.853195 ], [ -69.706879, 45.852956 ], [ -69.708595, 45.850565 ], [ -69.707909, 45.849130 ], [ -69.707909, 45.846978 ], [ -69.706879, 45.846499 ], [ -69.705162, 45.846739 ], [ -69.704475, 45.846260 ], [ -69.705505, 45.845543 ], [ -69.705505, 45.844347 ], [ -69.706535, 45.843869 ], [ -69.706535, 45.843151 ], [ -69.707222, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708252, 45.838128 ], [ -69.708939, 45.837889 ], [ -69.708939, 45.836932 ], [ -69.708252, 45.836693 ], [ -69.709625, 45.835976 ], [ -69.710999, 45.834062 ], [ -69.712029, 45.833823 ], [ -69.712029, 45.832388 ], [ -69.715118, 45.831909 ], [ -69.718208, 45.833344 ], [ -69.717522, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721642, 45.835019 ], [ -69.723015, 45.834062 ], [ -69.725075, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.725761, 45.833823 ], [ -69.724388, 45.833344 ], [ -69.723015, 45.833344 ], [ -69.720955, 45.834301 ], [ -69.719582, 45.834062 ], [ -69.718208, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829038 ], [ -69.715462, 45.825928 ], [ -69.714088, 45.824971 ], [ -69.713402, 45.823536 ], [ -69.712715, 45.823297 ], [ -69.712715, 45.819469 ], [ -69.711685, 45.817794 ], [ -69.710999, 45.817554 ], [ -69.711342, 45.817076 ], [ -69.710655, 45.815879 ], [ -69.709625, 45.815401 ], [ -69.709969, 45.814444 ], [ -69.708939, 45.812290 ], [ -69.708939, 45.810854 ], [ -69.710999, 45.808940 ], [ -69.712029, 45.806786 ], [ -69.712715, 45.806547 ], [ -69.713058, 45.805350 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.792366, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.338249, 45.161222 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.852717 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285721, 45.871844 ], [ -70.284348, 45.871844 ], [ -70.283318, 45.873517 ], [ -70.281258, 45.874234 ], [ -70.280228, 45.876385 ], [ -70.278168, 45.877342 ], [ -70.276794, 45.878776 ], [ -70.274048, 45.879732 ], [ -70.274048, 45.881405 ], [ -70.273018, 45.882839 ], [ -70.270615, 45.884512 ], [ -70.268555, 45.885229 ], [ -70.267525, 45.886185 ], [ -70.265808, 45.886424 ], [ -70.263748, 45.887857 ], [ -70.262375, 45.888096 ], [ -70.261345, 45.888813 ], [ -70.261345, 45.889291 ], [ -70.259972, 45.890008 ], [ -70.259972, 45.890725 ], [ -70.258942, 45.891203 ], [ -70.260658, 45.892398 ], [ -70.262032, 45.892637 ], [ -70.262718, 45.892159 ], [ -70.264778, 45.892876 ], [ -70.265808, 45.893354 ], [ -70.265808, 45.894070 ], [ -70.264091, 45.895026 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897416 ], [ -70.260658, 45.898849 ], [ -70.258255, 45.899805 ], [ -70.257225, 45.900999 ], [ -70.255852, 45.901238 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.903389 ], [ -70.254135, 45.903866 ], [ -70.254135, 45.906255 ], [ -70.253448, 45.907450 ], [ -70.254478, 45.907689 ], [ -70.254478, 45.908167 ], [ -70.255852, 45.908883 ], [ -70.259628, 45.909600 ], [ -70.259972, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.913900 ], [ -70.258942, 45.915572 ], [ -70.257568, 45.915810 ], [ -70.257912, 45.917482 ], [ -70.257225, 45.917960 ], [ -70.257568, 45.918438 ], [ -70.259628, 45.918915 ], [ -70.259972, 45.920110 ], [ -70.260658, 45.920587 ], [ -70.262718, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263405, 45.923931 ], [ -70.261345, 45.925841 ], [ -70.259285, 45.926558 ], [ -70.259285, 45.928230 ], [ -70.255852, 45.929424 ], [ -70.254478, 45.930617 ], [ -70.253448, 45.932767 ], [ -70.251732, 45.933960 ], [ -70.248985, 45.934677 ], [ -70.246925, 45.936348 ], [ -70.244179, 45.937303 ], [ -70.243149, 45.937064 ], [ -70.242805, 45.938019 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.940646 ], [ -70.239716, 45.941601 ], [ -70.240402, 45.942078 ], [ -70.240402, 45.943033 ], [ -70.239372, 45.943749 ], [ -70.239716, 45.944227 ], [ -70.240746, 45.943988 ], [ -70.241432, 45.944704 ], [ -70.242462, 45.944227 ], [ -70.244522, 45.944704 ], [ -70.242805, 45.945898 ], [ -70.242462, 45.946853 ], [ -70.244865, 45.947808 ], [ -70.246925, 45.949479 ], [ -70.248299, 45.949717 ], [ -70.248299, 45.950911 ], [ -70.248642, 45.951627 ], [ -70.249329, 45.951866 ], [ -70.248985, 45.952582 ], [ -70.250359, 45.952582 ], [ -70.251389, 45.953298 ], [ -70.252075, 45.954253 ], [ -70.252075, 45.955446 ], [ -70.253105, 45.955685 ], [ -70.254822, 45.954491 ], [ -70.255165, 45.953059 ], [ -70.255852, 45.952582 ], [ -70.259285, 45.952104 ], [ -70.260658, 45.952343 ], [ -70.260658, 45.953775 ], [ -70.259285, 45.954253 ], [ -70.258598, 45.954969 ], [ -70.259972, 45.956162 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.959981 ], [ -70.263405, 45.962129 ], [ -70.264778, 45.962368 ], [ -70.265808, 45.963084 ], [ -70.265465, 45.964038 ], [ -70.266151, 45.964515 ], [ -70.267868, 45.962845 ], [ -70.269585, 45.962606 ], [ -70.271645, 45.961413 ], [ -70.274734, 45.961413 ], [ -70.275421, 45.963322 ], [ -70.274734, 45.963799 ], [ -70.273018, 45.964038 ], [ -70.273018, 45.964515 ], [ -70.274391, 45.964515 ], [ -70.274734, 45.966186 ], [ -70.275421, 45.966902 ], [ -70.277138, 45.966902 ], [ -70.278854, 45.965947 ], [ -70.280571, 45.965709 ], [ -70.280571, 45.964515 ], [ -70.282631, 45.964277 ], [ -70.283318, 45.963799 ], [ -70.284004, 45.963799 ], [ -70.284348, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.968811 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.284004, 45.995531 ], [ -70.284691, 45.995769 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.299110, 46.030104 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.284691, 46.048455 ], [ -70.284691, 46.048931 ], [ -70.281258, 46.050838 ], [ -70.280914, 46.051791 ], [ -70.279884, 46.052267 ], [ -70.281258, 46.053220 ], [ -70.280914, 46.054411 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -69.729881, 46.092281 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.053697 ], [ -69.728851, 46.037969 ], [ -69.728851, 45.976924 ], [ -69.683876, 45.983842 ], [ -69.677696, 45.965231 ], [ -69.661560, 45.910555 ], [ -69.646797, 45.863238 ], [ -69.648170, 45.863716 ], [ -69.648514, 45.862998 ], [ -69.649200, 45.863477 ], [ -69.651260, 45.862998 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863955 ], [ -69.654007, 45.862998 ], [ -69.655380, 45.862759 ], [ -69.654694, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.655724, 45.862281 ], [ -69.657097, 45.862042 ], [ -69.657097, 45.861325 ], [ -69.656410, 45.860847 ], [ -69.656754, 45.860369 ], [ -69.658127, 45.860608 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.861086 ], [ -69.659157, 45.860608 ], [ -69.659843, 45.860608 ], [ -69.660187, 45.861325 ], [ -69.660873, 45.860847 ], [ -69.662590, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.663963, 45.861564 ], [ -69.664650, 45.862042 ], [ -69.667397, 45.862042 ], [ -69.667740, 45.861564 ], [ -69.668770, 45.861564 ], [ -69.670143, 45.860847 ], [ -69.670486, 45.861325 ], [ -69.671516, 45.861325 ], [ -69.672203, 45.862042 ], [ -69.673576, 45.862520 ], [ -69.673576, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.674606, 45.861803 ], [ -69.673233, 45.860847 ], [ -69.673233, 45.859890 ], [ -69.672546, 45.859651 ], [ -69.672546, 45.858695 ], [ -69.674263, 45.857499 ], [ -69.673920, 45.856304 ], [ -69.674606, 45.855826 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851521 ], [ -69.676323, 45.852956 ], [ -69.678040, 45.852956 ], [ -69.678383, 45.852000 ], [ -69.681816, 45.851760 ], [ -69.682503, 45.852239 ], [ -69.683533, 45.851043 ], [ -69.684219, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.685936, 45.852956 ], [ -69.686966, 45.853913 ], [ -69.690399, 45.854391 ], [ -69.689369, 45.855108 ], [ -69.689369, 45.858217 ], [ -69.690399, 45.858934 ], [ -69.692116, 45.859173 ], [ -69.691429, 45.860847 ], [ -69.694176, 45.862042 ], [ -69.693832, 45.862520 ], [ -69.693146, 45.862520 ], [ -69.692802, 45.863238 ], [ -69.693489, 45.864194 ], [ -69.692116, 45.864672 ], [ -69.692116, 45.865150 ], [ -69.694176, 45.864194 ], [ -69.697266, 45.864433 ], [ -69.696922, 45.867541 ], [ -69.699326, 45.868736 ], [ -69.699326, 45.870410 ], [ -69.700356, 45.870888 ], [ -69.700012, 45.871605 ], [ -69.701385, 45.872561 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.875429 ], [ -69.702072, 45.875668 ], [ -69.701729, 45.876146 ], [ -69.702759, 45.876863 ], [ -69.702759, 45.878776 ], [ -69.701729, 45.879015 ], [ -69.701729, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.884751 ], [ -69.697952, 45.885229 ], [ -69.698296, 45.885946 ], [ -69.699669, 45.885707 ], [ -69.702072, 45.886185 ], [ -69.703445, 45.885946 ], [ -69.704132, 45.885229 ], [ -69.705849, 45.884990 ], [ -69.707565, 45.885707 ], [ -69.709282, 45.885707 ], [ -69.709625, 45.885229 ], [ -69.711685, 45.884990 ], [ -69.712029, 45.884273 ], [ -69.712715, 45.884273 ], [ -69.712715, 45.883317 ], [ -69.716492, 45.883556 ], [ -69.717178, 45.882600 ], [ -69.719582, 45.882361 ], [ -69.720612, 45.881644 ], [ -69.723015, 45.881166 ], [ -69.723701, 45.880688 ], [ -69.723358, 45.879971 ], [ -69.724731, 45.879732 ] ], [ [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785482 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.798546, 45.784764 ], [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ] ], [ [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ] ], [ [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.807816, 45.722241 ] ], [ [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ] ], [ [ -69.801636, 45.785482 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785482 ] ], [ [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783088 ], [ -69.792709, 45.783806 ] ], [ [ -69.784126, 45.784045 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.785003 ], [ -69.784126, 45.784045 ] ], [ [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.796829, 45.784045 ], [ -69.797516, 45.783567 ], [ -69.797173, 45.784285 ], [ -69.796829, 45.784285 ], [ -69.796829, 45.784045 ] ] ], [ [ [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ] ] ], [ [ [ -69.792366, 45.783806 ], [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.783806 ] ] ] ] } } ] } ] } , diff --git a/tests/tl_2015_us_county/out/-z8_-pp.json b/tests/tl_2015_us_county/out/-z8_-pp.json index d015f3bee..39be61f0c 100644 --- a/tests/tl_2015_us_county/out/-z8_-pp.json +++ b/tests/tl_2015_us_county/out/-z8_-pp.json @@ -3,6 +3,7 @@ "center": "-69.609375,45.581133,8", "description": "tests/tl_2015_us_county/out/-z8_-pp.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/tl_2015_us_county/out/-z8_-pp.json.check.mbtiles -z8 -pp tests/tl_2015_us_county/piscataquis.json tests/tl_2015_us_county/somerset.json", "json": "{\"vector_layers\": [ { \"id\": \"piscataquis\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 8, \"fields\": {\"ALAND\": \"Number\", \"AWATER\": \"Number\", \"CLASSFP\": \"String\", \"COUNTYFP\": \"String\", \"COUNTYNS\": \"String\", \"FUNCSTAT\": \"String\", \"GEOID\": \"String\", \"INTPTLAT\": \"String\", \"INTPTLON\": \"String\", \"LSAD\": \"String\", \"MTFCC\": \"String\", \"NAME\": \"String\", \"NAMELSAD\": \"String\", \"STATEFP\": \"String\"} }, { \"id\": \"somerset\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 8, \"fields\": {\"ALAND\": \"Number\", \"AWATER\": \"Number\", \"CLASSFP\": \"String\", \"COUNTYFP\": \"String\", \"COUNTYNS\": \"String\", \"FUNCSTAT\": \"String\", \"GEOID\": \"String\", \"INTPTLAT\": \"String\", \"INTPTLON\": \"String\", \"LSAD\": \"String\", \"MTFCC\": \"String\", \"NAME\": \"String\", \"NAMELSAD\": \"String\", \"STATEFP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 2,\"layers\": [{\"layer\": \"piscataquis\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 14,\"attributes\": [{\"attribute\": \"ALAND\",\"count\": 1,\"type\": \"number\",\"values\": [10258678459],\"min\": 10258678459,\"max\": 10258678459},{\"attribute\": \"AWATER\",\"count\": 1,\"type\": \"number\",\"values\": [1080563045],\"min\": 1080563045,\"max\": 1080563045},{\"attribute\": \"CLASSFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"H1\"]},{\"attribute\": \"COUNTYFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"021\"]},{\"attribute\": \"COUNTYNS\",\"count\": 1,\"type\": \"string\",\"values\": [\"00581296\"]},{\"attribute\": \"FUNCSTAT\",\"count\": 1,\"type\": \"string\",\"values\": [\"A\"]},{\"attribute\": \"GEOID\",\"count\": 1,\"type\": \"string\",\"values\": [\"23021\"]},{\"attribute\": \"INTPTLAT\",\"count\": 1,\"type\": \"string\",\"values\": [\"+45.917685\"]},{\"attribute\": \"INTPTLON\",\"count\": 1,\"type\": \"string\",\"values\": [\"-069.104535\"]},{\"attribute\": \"LSAD\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"MTFCC\",\"count\": 1,\"type\": \"string\",\"values\": [\"G4020\"]},{\"attribute\": \"NAME\",\"count\": 1,\"type\": \"string\",\"values\": [\"Piscataquis\"]},{\"attribute\": \"NAMELSAD\",\"count\": 1,\"type\": \"string\",\"values\": [\"Piscataquis County\"]},{\"attribute\": \"STATEFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"23\"]}]},{\"layer\": \"somerset\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 14,\"attributes\": [{\"attribute\": \"ALAND\",\"count\": 1,\"type\": \"number\",\"values\": [10164314642],\"min\": 10164314642,\"max\": 10164314642},{\"attribute\": \"AWATER\",\"count\": 1,\"type\": \"number\",\"values\": [437895944],\"min\": 437895944,\"max\": 437895944},{\"attribute\": \"CLASSFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"H1\"]},{\"attribute\": \"COUNTYFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"025\"]},{\"attribute\": \"COUNTYNS\",\"count\": 1,\"type\": \"string\",\"values\": [\"00581298\"]},{\"attribute\": \"FUNCSTAT\",\"count\": 1,\"type\": \"string\",\"values\": [\"A\"]},{\"attribute\": \"GEOID\",\"count\": 1,\"type\": \"string\",\"values\": [\"23025\"]},{\"attribute\": \"INTPTLAT\",\"count\": 1,\"type\": \"string\",\"values\": [\"+45.507482\"]},{\"attribute\": \"INTPTLON\",\"count\": 1,\"type\": \"string\",\"values\": [\"-069.976039\"]},{\"attribute\": \"LSAD\",\"count\": 1,\"type\": \"string\",\"values\": [\"06\"]},{\"attribute\": \"MTFCC\",\"count\": 1,\"type\": \"string\",\"values\": [\"G4020\"]},{\"attribute\": \"NAME\",\"count\": 1,\"type\": \"string\",\"values\": [\"Somerset\"]},{\"attribute\": \"NAMELSAD\",\"count\": 1,\"type\": \"string\",\"values\": [\"Somerset County\"]},{\"attribute\": \"STATEFP\",\"count\": 1,\"type\": \"string\",\"values\": [\"23\"]}]}]}}", "maxzoom": "8", "minzoom": "0", @@ -42,31 +43,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.782848 ], [ -69.774170, 45.767523 ], [ -69.730225, 45.767523 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.790509 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.836454 ], [ -69.708252, 45.851760 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.890008 ], [ -69.686279, 45.851760 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.989329 ], [ -69.730225, 45.981695 ], [ -69.730225, 46.581518 ], [ -68.829346, 46.573967 ], [ -68.829346, 45.690833 ], [ -68.961182, 45.667805 ], [ -68.972168, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.785400, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.143305 ], [ -69.510498, 45.058001 ], [ -69.499512, 45.042478 ], [ -69.521484, 45.034715 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.708252, 45.298075 ], [ -69.785156, 45.544831 ], [ -69.719238, 45.590978 ], [ -69.730225, 45.621722 ], [ -69.708252, 45.629405 ], [ -69.719238, 45.652448 ], [ -69.697266, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.752197, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.818115, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.752193 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.790509 ], [ -69.785156, 45.782848 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.782848 ], [ -69.774170, 45.767523 ], [ -69.730225, 45.767523 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.790509 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.836454 ], [ -69.708252, 45.851760 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.890008 ], [ -69.686279, 45.851760 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.989329 ], [ -69.730225, 45.981695 ], [ -69.730225, 46.581518 ], [ -68.829346, 46.573967 ], [ -68.829346, 45.690833 ], [ -68.961182, 45.667805 ], [ -68.972168, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.785400, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.143305 ], [ -69.510498, 45.058001 ], [ -69.499512, 45.042478 ], [ -69.521484, 45.034715 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.708252, 45.298075 ], [ -69.785156, 45.544831 ], [ -69.719238, 45.590978 ], [ -69.730225, 45.621722 ], [ -69.708252, 45.629405 ], [ -69.719238, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.752197, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.818115, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.752193 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.790509 ], [ -69.785156, 45.782848 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 45.782848 ], [ -69.796143, 45.752193 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.818115, 45.721522 ], [ -69.785156, 45.690833 ], [ -69.741211, 45.683158 ], [ -69.752197, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.697266, 45.652448 ], [ -69.719238, 45.652448 ], [ -69.708252, 45.629405 ], [ -69.730225, 45.621722 ], [ -69.719238, 45.590978 ], [ -69.785156, 45.544831 ], [ -69.631348, 45.011419 ], [ -69.521484, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.042478 ], [ -69.510498, 45.058001 ], [ -69.356689, 45.073521 ], [ -69.268799, 44.723320 ], [ -69.334717, 44.715514 ], [ -69.345703, 44.754535 ], [ -69.389648, 44.754535 ], [ -69.422607, 44.707706 ], [ -69.477539, 44.699898 ], [ -69.477539, 44.723320 ], [ -69.488525, 44.723320 ], [ -69.642334, 44.707706 ], [ -69.620361, 44.660839 ], [ -69.587402, 44.629573 ], [ -69.609375, 44.582643 ], [ -69.785156, 44.613934 ], [ -69.796143, 44.582643 ], [ -69.829102, 44.582643 ], [ -69.829102, 44.613934 ], [ -69.862061, 44.621754 ], [ -69.938965, 44.613934 ], [ -69.971924, 44.668653 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.015869, 44.762337 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.793531 ], [ -70.015869, 44.793531 ], [ -70.037842, 44.809122 ], [ -70.037842, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.169678, 45.135555 ], [ -70.301514, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.532227, 45.667805 ], [ -70.466309, 45.713851 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.378418, 45.836454 ], [ -70.268555, 45.890008 ], [ -70.268555, 45.928230 ], [ -70.246582, 45.943511 ], [ -70.268555, 45.966425 ], [ -70.323486, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.323486, 46.019853 ], [ -70.279541, 46.057985 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.246582, 46.149394 ], [ -70.301514, 46.195042 ], [ -70.235596, 46.293816 ], [ -70.213623, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.354511 ], [ -70.136719, 46.369674 ], [ -70.103760, 46.415139 ], [ -70.059814, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.730225, 46.581518 ], [ -69.730225, 45.981695 ], [ -69.686279, 45.989329 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.851760 ], [ -69.708252, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.851760 ], [ -69.719238, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.790509 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.767523 ], [ -69.774170, 45.767523 ], [ -69.785156, 45.782848 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.790509 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.782848 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 45.782848 ], [ -69.796143, 45.752193 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.818115, 45.721522 ], [ -69.785156, 45.690833 ], [ -69.741211, 45.683158 ], [ -69.752197, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.719238, 45.652448 ], [ -69.708252, 45.629405 ], [ -69.730225, 45.621722 ], [ -69.719238, 45.590978 ], [ -69.785156, 45.544831 ], [ -69.631348, 45.011419 ], [ -69.521484, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.042478 ], [ -69.510498, 45.058001 ], [ -69.356689, 45.073521 ], [ -69.268799, 44.723320 ], [ -69.334717, 44.715514 ], [ -69.345703, 44.754535 ], [ -69.389648, 44.754535 ], [ -69.422607, 44.707706 ], [ -69.477539, 44.699898 ], [ -69.477539, 44.723320 ], [ -69.488525, 44.723320 ], [ -69.642334, 44.707706 ], [ -69.620361, 44.660839 ], [ -69.587402, 44.629573 ], [ -69.609375, 44.582643 ], [ -69.785156, 44.613934 ], [ -69.796143, 44.582643 ], [ -69.829102, 44.582643 ], [ -69.829102, 44.613934 ], [ -69.862061, 44.621754 ], [ -69.938965, 44.613934 ], [ -69.971924, 44.668653 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.015869, 44.762337 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.793531 ], [ -70.015869, 44.793531 ], [ -70.037842, 44.809122 ], [ -70.037842, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.169678, 45.135555 ], [ -70.301514, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.532227, 45.667805 ], [ -70.466309, 45.713851 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.378418, 45.836454 ], [ -70.268555, 45.890008 ], [ -70.268555, 45.928230 ], [ -70.246582, 45.943511 ], [ -70.268555, 45.966425 ], [ -70.323486, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.323486, 46.019853 ], [ -70.279541, 46.057985 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.246582, 46.149394 ], [ -70.301514, 46.195042 ], [ -70.235596, 46.293816 ], [ -70.213623, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.354511 ], [ -70.136719, 46.369674 ], [ -70.103760, 46.415139 ], [ -70.059814, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.730225, 46.581518 ], [ -69.730225, 45.981695 ], [ -69.686279, 45.989329 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.851760 ], [ -69.708252, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.851760 ], [ -69.719238, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.790509 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.767523 ], [ -69.774170, 45.767523 ], [ -69.785156, 45.782848 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.790509 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.782848 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.785156, 45.779017 ], [ -69.774170, 45.763691 ], [ -69.752197, 45.767523 ], [ -69.741211, 45.756026 ], [ -69.730225, 45.763691 ], [ -69.730225, 45.775186 ], [ -69.741211, 45.782848 ], [ -69.724731, 45.786679 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.832627 ], [ -69.708252, 45.847934 ], [ -69.735718, 45.878537 ], [ -69.702759, 45.886185 ], [ -69.702759, 45.874712 ], [ -69.686279, 45.851760 ], [ -69.675293, 45.855586 ], [ -69.675293, 45.863238 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.735718, 46.396200 ], [ -69.724731, 46.396200 ], [ -69.724731, 46.577743 ], [ -68.823853, 46.573967 ], [ -68.829346, 45.686996 ], [ -68.961182, 45.663966 ], [ -68.955688, 45.640928 ], [ -68.955688, 45.583290 ], [ -68.966675, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.779907, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.856812, 45.143305 ], [ -69.505005, 45.054121 ], [ -69.499512, 45.038597 ], [ -69.521484, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.625854, 45.011419 ], [ -69.691772, 45.209134 ], [ -69.713745, 45.294211 ], [ -69.702759, 45.294211 ], [ -69.785156, 45.544831 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.556372 ], [ -69.735718, 45.567910 ], [ -69.719238, 45.587134 ], [ -69.724731, 45.617880 ], [ -69.713745, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.719238, 45.640928 ], [ -69.719238, 45.648608 ], [ -69.713745, 45.652448 ], [ -69.697266, 45.640928 ], [ -69.697266, 45.648608 ], [ -69.724731, 45.660127 ], [ -69.746704, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.757690, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.713851 ], [ -69.818115, 45.721522 ], [ -69.807129, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.829102, 45.744527 ], [ -69.818115, 45.748360 ], [ -69.790649, 45.748360 ], [ -69.796143, 45.759859 ], [ -69.785156, 45.771355 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.779017 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.785156, 45.779017 ], [ -69.774170, 45.763691 ], [ -69.752197, 45.767523 ], [ -69.741211, 45.756026 ], [ -69.730225, 45.763691 ], [ -69.730225, 45.775186 ], [ -69.741211, 45.782848 ], [ -69.724731, 45.786679 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.832627 ], [ -69.708252, 45.847934 ], [ -69.735718, 45.878537 ], [ -69.702759, 45.886185 ], [ -69.702759, 45.874712 ], [ -69.686279, 45.851760 ], [ -69.675293, 45.855586 ], [ -69.675293, 45.863238 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.735718, 46.396200 ], [ -69.724731, 46.396200 ], [ -69.724731, 46.577743 ], [ -68.823853, 46.573967 ], [ -68.829346, 45.686996 ], [ -68.961182, 45.663966 ], [ -68.955688, 45.640928 ], [ -68.955688, 45.583290 ], [ -68.966675, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.779907, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.856812, 45.143305 ], [ -69.505005, 45.054121 ], [ -69.499512, 45.038597 ], [ -69.521484, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.625854, 45.011419 ], [ -69.691772, 45.209134 ], [ -69.713745, 45.294211 ], [ -69.702759, 45.294211 ], [ -69.785156, 45.544831 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.556372 ], [ -69.735718, 45.567910 ], [ -69.719238, 45.587134 ], [ -69.724731, 45.617880 ], [ -69.713745, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.719238, 45.640928 ], [ -69.719238, 45.648608 ], [ -69.713745, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.746704, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.757690, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.713851 ], [ -69.818115, 45.721522 ], [ -69.807129, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.829102, 45.744527 ], [ -69.818115, 45.748360 ], [ -69.790649, 45.748360 ], [ -69.796143, 45.759859 ], [ -69.785156, 45.771355 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.779017 ] ], [ [ -69.713745, 45.652448 ], [ -69.697266, 45.640928 ], [ -69.697266, 45.648608 ], [ -69.713745, 45.652448 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 45.779017 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.771355 ], [ -69.796143, 45.759859 ], [ -69.790649, 45.748360 ], [ -69.818115, 45.748360 ], [ -69.829102, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.807129, 45.721522 ], [ -69.818115, 45.721522 ], [ -69.790649, 45.713851 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.683158 ], [ -69.741211, 45.683158 ], [ -69.746704, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.697266, 45.648608 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.652448 ], [ -69.719238, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.702759, 45.629405 ], [ -69.713745, 45.614037 ], [ -69.724731, 45.617880 ], [ -69.719238, 45.587134 ], [ -69.735718, 45.567910 ], [ -69.763184, 45.556372 ], [ -69.774170, 45.556372 ], [ -69.785156, 45.544831 ], [ -69.702759, 45.298075 ], [ -69.713745, 45.294211 ], [ -69.691772, 45.209134 ], [ -69.658813, 45.100669 ], [ -69.647827, 45.104546 ], [ -69.625854, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.038597 ], [ -69.505005, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.285278, 44.813019 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.400635, 44.750634 ], [ -69.395142, 44.735028 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.703802 ], [ -69.472046, 44.695993 ], [ -69.472046, 44.719417 ], [ -69.488525, 44.723320 ], [ -69.636841, 44.703802 ], [ -69.620361, 44.660839 ], [ -69.581909, 44.629573 ], [ -69.598389, 44.606113 ], [ -69.592896, 44.586555 ], [ -69.609375, 44.578730 ], [ -69.779663, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.823608, 44.582643 ], [ -69.823608, 44.610023 ], [ -69.856567, 44.621754 ], [ -69.933472, 44.613934 ], [ -69.949951, 44.649116 ], [ -69.971924, 44.664746 ], [ -69.960938, 44.664746 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.684277 ], [ -69.999390, 44.680372 ], [ -70.015869, 44.758436 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.789633 ], [ -70.021362, 44.813019 ], [ -70.032349, 44.809122 ], [ -70.037842, 44.867550 ], [ -70.131226, 44.851975 ], [ -70.153198, 44.910359 ], [ -70.147705, 44.914249 ], [ -70.153198, 44.945361 ], [ -70.114746, 44.949249 ], [ -70.164185, 45.131680 ], [ -70.296021, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.147179 ], [ -70.521240, 45.514046 ], [ -70.510254, 45.514046 ], [ -70.554199, 45.671644 ], [ -70.537720, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.466309, 45.710015 ], [ -70.444336, 45.706179 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.394897, 45.744527 ], [ -70.389404, 45.752193 ], [ -70.411377, 45.763691 ], [ -70.405884, 45.779017 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.400391, 45.809658 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.345459, 45.855586 ], [ -70.312500, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.268555, 45.897655 ], [ -70.257568, 45.909122 ], [ -70.268555, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.252075, 45.958788 ], [ -70.263062, 45.954969 ], [ -70.268555, 45.966425 ], [ -70.317993, 45.966425 ], [ -70.312500, 45.985512 ], [ -70.285034, 45.996962 ], [ -70.307007, 46.000778 ], [ -70.323486, 46.019853 ], [ -70.307007, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.279541, 46.057985 ], [ -70.285034, 46.065608 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.257568, 46.115134 ], [ -70.241089, 46.145589 ], [ -70.296021, 46.195042 ], [ -70.274048, 46.214051 ], [ -70.235596, 46.293816 ], [ -70.208130, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.350719 ], [ -70.175171, 46.362093 ], [ -70.153198, 46.362093 ], [ -70.131226, 46.369674 ], [ -70.131226, 46.381044 ], [ -70.109253, 46.388622 ], [ -70.098267, 46.411352 ], [ -70.059814, 46.418926 ], [ -70.026855, 46.573967 ], [ -69.724731, 46.577743 ], [ -69.724731, 46.396200 ], [ -69.735718, 46.396200 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.855586 ], [ -69.686279, 45.851760 ], [ -69.702759, 45.874712 ], [ -69.702759, 45.886185 ], [ -69.735718, 45.878537 ], [ -69.708252, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.786679 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.775186 ], [ -69.730225, 45.763691 ], [ -69.741211, 45.756026 ], [ -69.752197, 45.767523 ], [ -69.774170, 45.763691 ], [ -69.785156, 45.779017 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.782848 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.779017 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.771355 ], [ -69.796143, 45.759859 ], [ -69.790649, 45.748360 ], [ -69.818115, 45.748360 ], [ -69.829102, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.807129, 45.721522 ], [ -69.818115, 45.721522 ], [ -69.790649, 45.713851 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.683158 ], [ -69.741211, 45.683158 ], [ -69.746704, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.713745, 45.652448 ], [ -69.719238, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.702759, 45.629405 ], [ -69.713745, 45.614037 ], [ -69.724731, 45.617880 ], [ -69.719238, 45.587134 ], [ -69.735718, 45.567910 ], [ -69.763184, 45.556372 ], [ -69.774170, 45.556372 ], [ -69.785156, 45.544831 ], [ -69.702759, 45.298075 ], [ -69.713745, 45.294211 ], [ -69.691772, 45.209134 ], [ -69.658813, 45.100669 ], [ -69.647827, 45.104546 ], [ -69.625854, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.038597 ], [ -69.505005, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.285278, 44.813019 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.400635, 44.750634 ], [ -69.395142, 44.735028 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.703802 ], [ -69.472046, 44.695993 ], [ -69.472046, 44.719417 ], [ -69.488525, 44.723320 ], [ -69.636841, 44.703802 ], [ -69.620361, 44.660839 ], [ -69.581909, 44.629573 ], [ -69.598389, 44.606113 ], [ -69.592896, 44.586555 ], [ -69.609375, 44.578730 ], [ -69.779663, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.823608, 44.582643 ], [ -69.823608, 44.610023 ], [ -69.856567, 44.621754 ], [ -69.933472, 44.613934 ], [ -69.949951, 44.649116 ], [ -69.971924, 44.664746 ], [ -69.960938, 44.664746 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.684277 ], [ -69.999390, 44.680372 ], [ -70.015869, 44.758436 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.789633 ], [ -70.021362, 44.813019 ], [ -70.032349, 44.809122 ], [ -70.037842, 44.867550 ], [ -70.131226, 44.851975 ], [ -70.153198, 44.910359 ], [ -70.147705, 44.914249 ], [ -70.153198, 44.945361 ], [ -70.114746, 44.949249 ], [ -70.164185, 45.131680 ], [ -70.296021, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.147179 ], [ -70.521240, 45.514046 ], [ -70.510254, 45.514046 ], [ -70.554199, 45.671644 ], [ -70.537720, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.466309, 45.710015 ], [ -70.444336, 45.706179 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.394897, 45.744527 ], [ -70.389404, 45.752193 ], [ -70.411377, 45.763691 ], [ -70.405884, 45.779017 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.400391, 45.809658 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.345459, 45.855586 ], [ -70.312500, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.268555, 45.897655 ], [ -70.257568, 45.909122 ], [ -70.268555, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.252075, 45.958788 ], [ -70.263062, 45.954969 ], [ -70.268555, 45.966425 ], [ -70.317993, 45.966425 ], [ -70.312500, 45.985512 ], [ -70.285034, 45.996962 ], [ -70.307007, 46.000778 ], [ -70.323486, 46.019853 ], [ -70.307007, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.279541, 46.057985 ], [ -70.285034, 46.065608 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.257568, 46.115134 ], [ -70.241089, 46.145589 ], [ -70.296021, 46.195042 ], [ -70.274048, 46.214051 ], [ -70.235596, 46.293816 ], [ -70.208130, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.350719 ], [ -70.175171, 46.362093 ], [ -70.153198, 46.362093 ], [ -70.131226, 46.369674 ], [ -70.131226, 46.381044 ], [ -70.109253, 46.388622 ], [ -70.098267, 46.411352 ], [ -70.059814, 46.418926 ], [ -70.026855, 46.573967 ], [ -69.724731, 46.577743 ], [ -69.724731, 46.396200 ], [ -69.735718, 46.396200 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.855586 ], [ -69.686279, 45.851760 ], [ -69.702759, 45.874712 ], [ -69.702759, 45.886185 ], [ -69.735718, 45.878537 ], [ -69.708252, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.786679 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.775186 ], [ -69.730225, 45.763691 ], [ -69.741211, 45.756026 ], [ -69.752197, 45.767523 ], [ -69.774170, 45.763691 ], [ -69.785156, 45.779017 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.713745, 45.652448 ], [ -69.697266, 45.648608 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.652448 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.732971, 45.878537 ], [ -69.710999, 45.886185 ], [ -69.700012, 45.886185 ], [ -69.700012, 45.880449 ], [ -69.702759, 45.880449 ], [ -69.702759, 45.872800 ], [ -69.697266, 45.865150 ], [ -69.694519, 45.865150 ], [ -69.691772, 45.855586 ], [ -69.683533, 45.851760 ], [ -69.675293, 45.853673 ], [ -69.675293, 45.863238 ], [ -69.658813, 45.861325 ], [ -69.656067, 45.865150 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.732971, 46.394306 ], [ -69.721985, 46.394306 ], [ -69.721985, 46.575855 ], [ -68.823853, 46.573967 ], [ -68.821106, 46.212150 ], [ -68.829346, 45.685077 ], [ -68.961182, 45.663966 ], [ -68.952942, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.966675, 45.514046 ], [ -68.859558, 45.527517 ], [ -68.777161, 45.242020 ], [ -68.881531, 45.226546 ], [ -68.856812, 45.143305 ], [ -69.502258, 45.054121 ], [ -69.496765, 45.038597 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.623108, 45.011419 ], [ -69.647827, 45.102608 ], [ -69.656067, 45.100669 ], [ -69.689026, 45.209134 ], [ -69.686279, 45.213004 ], [ -69.710999, 45.292279 ], [ -69.702759, 45.294211 ], [ -69.782410, 45.542908 ], [ -69.774170, 45.546755 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.554449 ], [ -69.732971, 45.567910 ], [ -69.724731, 45.583290 ], [ -69.716492, 45.587134 ], [ -69.713745, 45.596744 ], [ -69.721985, 45.604431 ], [ -69.719238, 45.610195 ], [ -69.719238, 45.612116 ], [ -69.710999, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.708252, 45.639007 ], [ -69.719238, 45.640928 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.650528 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.646688 ], [ -69.702759, 45.652448 ], [ -69.724731, 45.658208 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.738464, 45.652448 ], [ -69.743958, 45.652448 ], [ -69.741211, 45.658208 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.667805 ], [ -69.741211, 45.681239 ], [ -69.757690, 45.681239 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.711933 ], [ -69.804382, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.721522 ], [ -69.804382, 45.725356 ], [ -69.793396, 45.727274 ], [ -69.793396, 45.729191 ], [ -69.801636, 45.734943 ], [ -69.809875, 45.734943 ], [ -69.812622, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.818115, 45.748360 ], [ -69.801636, 45.750277 ], [ -69.798889, 45.746444 ], [ -69.790649, 45.748360 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.756026 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.769439 ], [ -69.782410, 45.771355 ], [ -69.782410, 45.775186 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.771423, 45.761775 ], [ -69.754944, 45.761775 ], [ -69.752197, 45.767523 ], [ -69.749451, 45.759859 ], [ -69.738464, 45.756026 ], [ -69.727478, 45.763691 ], [ -69.727478, 45.773270 ], [ -69.738464, 45.782848 ], [ -69.724731, 45.784764 ], [ -69.710999, 45.811572 ], [ -69.721985, 45.834540 ], [ -69.713745, 45.832627 ], [ -69.705505, 45.847934 ], [ -69.708252, 45.847934 ], [ -69.708252, 45.855586 ], [ -69.713745, 45.857499 ], [ -69.713745, 45.861325 ], [ -69.719238, 45.867063 ], [ -69.727478, 45.867063 ], [ -69.724731, 45.874712 ], [ -69.732971, 45.878537 ] ] ], [ [ [ -69.796143, 45.784764 ], [ -69.793396, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.796143, 45.784764 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.785156, 45.777102 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.826355, 45.742610 ], [ -69.829102, 45.738777 ], [ -69.834595, 45.738777 ], [ -69.826355, 45.742610 ] ] ], [ [ [ -69.732971, 45.878537 ], [ -69.735718, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.732971, 45.878537 ] ] ], [ [ [ -69.796143, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.796143, 45.784764 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.732971, 45.878537 ], [ -69.710999, 45.886185 ], [ -69.700012, 45.886185 ], [ -69.700012, 45.880449 ], [ -69.702759, 45.880449 ], [ -69.702759, 45.872800 ], [ -69.697266, 45.865150 ], [ -69.694519, 45.865150 ], [ -69.691772, 45.855586 ], [ -69.683533, 45.851760 ], [ -69.675293, 45.853673 ], [ -69.675293, 45.863238 ], [ -69.658813, 45.861325 ], [ -69.656067, 45.865150 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.732971, 46.394306 ], [ -69.721985, 46.394306 ], [ -69.721985, 46.575855 ], [ -68.823853, 46.573967 ], [ -68.821106, 46.212150 ], [ -68.829346, 45.685077 ], [ -68.961182, 45.663966 ], [ -68.952942, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.966675, 45.514046 ], [ -68.859558, 45.527517 ], [ -68.777161, 45.242020 ], [ -68.881531, 45.226546 ], [ -68.856812, 45.143305 ], [ -69.502258, 45.054121 ], [ -69.496765, 45.038597 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.623108, 45.011419 ], [ -69.647827, 45.102608 ], [ -69.656067, 45.100669 ], [ -69.689026, 45.209134 ], [ -69.686279, 45.213004 ], [ -69.710999, 45.292279 ], [ -69.702759, 45.294211 ], [ -69.782410, 45.542908 ], [ -69.774170, 45.546755 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.554449 ], [ -69.732971, 45.567910 ], [ -69.724731, 45.583290 ], [ -69.716492, 45.587134 ], [ -69.713745, 45.596744 ], [ -69.721985, 45.604431 ], [ -69.719238, 45.610195 ], [ -69.719238, 45.612116 ], [ -69.710999, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.708252, 45.639007 ], [ -69.719238, 45.640928 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.650528 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.646688 ], [ -69.702759, 45.652448 ], [ -69.724731, 45.658208 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.738464, 45.652448 ], [ -69.743958, 45.652448 ], [ -69.741211, 45.658208 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.667805 ], [ -69.741211, 45.681239 ], [ -69.757690, 45.681239 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.711933 ], [ -69.804382, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.721522 ], [ -69.804382, 45.725356 ], [ -69.793396, 45.727274 ], [ -69.793396, 45.729191 ], [ -69.801636, 45.734943 ], [ -69.809875, 45.734943 ], [ -69.812622, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.818115, 45.748360 ], [ -69.801636, 45.750277 ], [ -69.798889, 45.746444 ], [ -69.790649, 45.748360 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.756026 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.769439 ], [ -69.782410, 45.771355 ], [ -69.782410, 45.775186 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.771423, 45.761775 ], [ -69.754944, 45.761775 ], [ -69.752197, 45.767523 ], [ -69.749451, 45.759859 ], [ -69.738464, 45.756026 ], [ -69.727478, 45.763691 ], [ -69.727478, 45.773270 ], [ -69.738464, 45.782848 ], [ -69.724731, 45.784764 ], [ -69.710999, 45.811572 ], [ -69.721985, 45.834540 ], [ -69.713745, 45.832627 ], [ -69.705505, 45.847934 ], [ -69.708252, 45.847934 ], [ -69.708252, 45.855586 ], [ -69.713745, 45.857499 ], [ -69.713745, 45.861325 ], [ -69.719238, 45.867063 ], [ -69.727478, 45.867063 ], [ -69.724731, 45.874712 ], [ -69.732971, 45.878537 ] ] ], [ [ [ -69.796143, 45.784764 ], [ -69.793396, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.796143, 45.784764 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.785156, 45.777102 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.826355, 45.742610 ], [ -69.829102, 45.738777 ], [ -69.834595, 45.738777 ], [ -69.826355, 45.742610 ] ] ], [ [ [ -69.732971, 45.878537 ], [ -69.735718, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.732971, 45.878537 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.114746, 46.388622 ], [ -70.109253, 46.388622 ], [ -70.112000, 46.392411 ], [ -70.101013, 46.401882 ], [ -70.101013, 46.405670 ], [ -70.098267, 46.407564 ], [ -70.098267, 46.411352 ], [ -70.079041, 46.411352 ], [ -70.057068, 46.417032 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.575855 ], [ -69.721985, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.656067, 45.865150 ], [ -69.658813, 45.861325 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.691772, 45.855586 ], [ -69.694519, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.702759, 45.872800 ], [ -69.702759, 45.880449 ], [ -69.700012, 45.880449 ], [ -69.700012, 45.886185 ], [ -69.710999, 45.886185 ], [ -69.732971, 45.878537 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.867063 ], [ -69.719238, 45.867063 ], [ -69.713745, 45.861325 ], [ -69.713745, 45.857499 ], [ -69.708252, 45.855586 ], [ -69.708252, 45.847934 ], [ -69.705505, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.721985, 45.834540 ], [ -69.710999, 45.811572 ], [ -69.724731, 45.784764 ], [ -69.738464, 45.782848 ], [ -69.727478, 45.773270 ], [ -69.727478, 45.763691 ], [ -69.738464, 45.756026 ], [ -69.749451, 45.759859 ], [ -69.752197, 45.767523 ], [ -69.754944, 45.761775 ], [ -69.771423, 45.761775 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.775186 ], [ -69.782410, 45.771355 ], [ -69.790649, 45.769439 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.748360 ], [ -69.798889, 45.746444 ], [ -69.801636, 45.750277 ], [ -69.818115, 45.748360 ], [ -69.826355, 45.742610 ], [ -69.812622, 45.738777 ], [ -69.809875, 45.734943 ], [ -69.801636, 45.734943 ], [ -69.793396, 45.729191 ], [ -69.793396, 45.727274 ], [ -69.804382, 45.725356 ], [ -69.804382, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.715769 ], [ -69.790649, 45.711933 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.681239 ], [ -69.741211, 45.681239 ], [ -69.741211, 45.667805 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.658208 ], [ -69.743958, 45.652448 ], [ -69.738464, 45.652448 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.724731, 45.658208 ], [ -69.702759, 45.652448 ], [ -69.694519, 45.646688 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.650528 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.710999, 45.639007 ], [ -69.702759, 45.629405 ], [ -69.710999, 45.614037 ], [ -69.719238, 45.612116 ], [ -69.719238, 45.610195 ], [ -69.721985, 45.604431 ], [ -69.713745, 45.596744 ], [ -69.716492, 45.587134 ], [ -69.724731, 45.583290 ], [ -69.732971, 45.567910 ], [ -69.763184, 45.554449 ], [ -69.774170, 45.556372 ], [ -69.774170, 45.546755 ], [ -69.782410, 45.542908 ], [ -69.702759, 45.296143 ], [ -69.702759, 45.294211 ], [ -69.710999, 45.292279 ], [ -69.686279, 45.213004 ], [ -69.689026, 45.209134 ], [ -69.656067, 45.100669 ], [ -69.647827, 45.102608 ], [ -69.623108, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.518738, 45.034715 ], [ -69.496765, 45.038597 ], [ -69.502258, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.288025, 44.809122 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.748684 ], [ -69.397888, 44.748684 ], [ -69.395142, 44.733077 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.694041 ], [ -69.469299, 44.709658 ], [ -69.474792, 44.709658 ], [ -69.472046, 44.719417 ], [ -69.485779, 44.721369 ], [ -69.634094, 44.701850 ], [ -69.631348, 44.674513 ], [ -69.620361, 44.658885 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.595642, 44.604157 ], [ -69.592896, 44.584599 ], [ -69.606628, 44.578730 ], [ -69.743958, 44.598290 ], [ -69.746704, 44.604157 ], [ -69.776917, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.820862, 44.582643 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.602202 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.608068 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611979 ], [ -69.947205, 44.649116 ], [ -69.969177, 44.662793 ], [ -69.960938, 44.662793 ], [ -69.960938, 44.672559 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.682325 ], [ -69.996643, 44.678419 ], [ -70.015869, 44.758436 ], [ -70.002136, 44.760386 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.811070 ], [ -70.029602, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.832500 ], [ -70.035095, 44.865603 ], [ -70.131226, 44.851975 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.943417 ], [ -70.112000, 44.949249 ], [ -70.161438, 45.129742 ], [ -70.296021, 45.110362 ], [ -70.309753, 45.164611 ], [ -70.312500, 45.166547 ], [ -70.367432, 45.158801 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.521240, 45.514046 ], [ -70.507507, 45.514046 ], [ -70.554199, 45.669725 ], [ -70.543213, 45.667805 ], [ -70.534973, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.513000, 45.679320 ], [ -70.480042, 45.696588 ], [ -70.466309, 45.708097 ], [ -70.441589, 45.704261 ], [ -70.427856, 45.708097 ], [ -70.430603, 45.711933 ], [ -70.419617, 45.713851 ], [ -70.403137, 45.721522 ], [ -70.397644, 45.729191 ], [ -70.392151, 45.729191 ], [ -70.386658, 45.734943 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.752193 ], [ -70.408630, 45.763691 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.786679 ], [ -70.419617, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.809658 ], [ -70.389404, 45.815401 ], [ -70.389404, 45.819229 ], [ -70.372925, 45.828799 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.342712, 45.853673 ], [ -70.309753, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.260315, 45.891920 ], [ -70.265808, 45.895743 ], [ -70.254822, 45.903389 ], [ -70.254822, 45.909122 ], [ -70.260315, 45.911033 ], [ -70.257568, 45.918677 ], [ -70.265808, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.241089, 45.945421 ], [ -70.246582, 45.945421 ], [ -70.243835, 45.947330 ], [ -70.252075, 45.956878 ], [ -70.263062, 45.953059 ], [ -70.260315, 45.960697 ], [ -70.268555, 45.964515 ], [ -70.274048, 45.962606 ], [ -70.276794, 45.968334 ], [ -70.285034, 45.964515 ], [ -70.317993, 45.964515 ], [ -70.312500, 45.966425 ], [ -70.309753, 45.983604 ], [ -70.296021, 45.987421 ], [ -70.285034, 45.996962 ], [ -70.290527, 45.995054 ], [ -70.304260, 45.998870 ], [ -70.307007, 46.012224 ], [ -70.320740, 46.019853 ], [ -70.304260, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.282288, 46.052267 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.061797 ], [ -70.285034, 46.063703 ], [ -70.304260, 46.061797 ], [ -70.312500, 46.065608 ], [ -70.304260, 46.071325 ], [ -70.304260, 46.082757 ], [ -70.293274, 46.088472 ], [ -70.287781, 46.101804 ], [ -70.274048, 46.103709 ], [ -70.254822, 46.101804 ], [ -70.254822, 46.115134 ], [ -70.238342, 46.145589 ], [ -70.241089, 46.151297 ], [ -70.249329, 46.153200 ], [ -70.268555, 46.170321 ], [ -70.279541, 46.176027 ], [ -70.287781, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.293274, 46.193141 ], [ -70.271301, 46.212150 ], [ -70.274048, 46.217852 ], [ -70.268555, 46.219752 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.260315, 46.238752 ], [ -70.252075, 46.250149 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.259645 ], [ -70.232849, 46.286224 ], [ -70.232849, 46.291918 ], [ -70.208130, 46.301406 ], [ -70.205383, 46.316584 ], [ -70.210876, 46.329862 ], [ -70.197144, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.183411, 46.352615 ], [ -70.175171, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.158691, 46.362093 ], [ -70.150452, 46.360198 ], [ -70.142212, 46.363988 ], [ -70.139465, 46.369674 ], [ -70.131226, 46.369674 ], [ -70.128479, 46.381044 ], [ -70.117493, 46.386728 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.388622 ] ], [ [ -69.796143, 45.784764 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.793396, 45.786679 ], [ -69.796143, 45.784764 ] ], [ [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.782848 ] ], [ [ -69.826355, 45.742610 ], [ -69.834595, 45.738777 ], [ -69.829102, 45.738777 ], [ -69.826355, 45.742610 ] ], [ [ -69.732971, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.735718, 45.878537 ], [ -69.732971, 45.878537 ] ], [ [ -69.796143, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.801636, 45.784764 ], [ -69.796143, 45.784764 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.117493, 46.386728 ], [ -70.114746, 46.386728 ], [ -70.114746, 46.388622 ], [ -70.109253, 46.388622 ], [ -70.112000, 46.392411 ], [ -70.101013, 46.401882 ], [ -70.101013, 46.405670 ], [ -70.098267, 46.407564 ], [ -70.098267, 46.411352 ], [ -70.079041, 46.411352 ], [ -70.057068, 46.417032 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.575855 ], [ -69.721985, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.656067, 45.865150 ], [ -69.658813, 45.861325 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.691772, 45.855586 ], [ -69.694519, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.702759, 45.872800 ], [ -69.702759, 45.880449 ], [ -69.700012, 45.880449 ], [ -69.700012, 45.886185 ], [ -69.710999, 45.886185 ], [ -69.732971, 45.878537 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.867063 ], [ -69.719238, 45.867063 ], [ -69.713745, 45.861325 ], [ -69.713745, 45.857499 ], [ -69.708252, 45.855586 ], [ -69.708252, 45.847934 ], [ -69.705505, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.721985, 45.834540 ], [ -69.710999, 45.811572 ], [ -69.724731, 45.784764 ], [ -69.738464, 45.782848 ], [ -69.727478, 45.773270 ], [ -69.727478, 45.763691 ], [ -69.738464, 45.756026 ], [ -69.749451, 45.759859 ], [ -69.752197, 45.767523 ], [ -69.754944, 45.761775 ], [ -69.771423, 45.761775 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.775186 ], [ -69.782410, 45.771355 ], [ -69.790649, 45.769439 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.748360 ], [ -69.798889, 45.746444 ], [ -69.801636, 45.750277 ], [ -69.818115, 45.748360 ], [ -69.826355, 45.742610 ], [ -69.812622, 45.738777 ], [ -69.809875, 45.734943 ], [ -69.801636, 45.734943 ], [ -69.793396, 45.729191 ], [ -69.793396, 45.727274 ], [ -69.804382, 45.725356 ], [ -69.804382, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.715769 ], [ -69.790649, 45.711933 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.681239 ], [ -69.741211, 45.681239 ], [ -69.741211, 45.667805 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.658208 ], [ -69.743958, 45.652448 ], [ -69.738464, 45.652448 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.724731, 45.658208 ], [ -69.702759, 45.652448 ], [ -69.694519, 45.646688 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.650528 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.710999, 45.639007 ], [ -69.702759, 45.629405 ], [ -69.710999, 45.614037 ], [ -69.719238, 45.612116 ], [ -69.719238, 45.610195 ], [ -69.721985, 45.604431 ], [ -69.713745, 45.596744 ], [ -69.716492, 45.587134 ], [ -69.724731, 45.583290 ], [ -69.732971, 45.567910 ], [ -69.763184, 45.554449 ], [ -69.774170, 45.556372 ], [ -69.774170, 45.546755 ], [ -69.782410, 45.542908 ], [ -69.702759, 45.296143 ], [ -69.702759, 45.294211 ], [ -69.710999, 45.292279 ], [ -69.686279, 45.213004 ], [ -69.689026, 45.209134 ], [ -69.656067, 45.100669 ], [ -69.647827, 45.102608 ], [ -69.623108, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.518738, 45.034715 ], [ -69.496765, 45.038597 ], [ -69.502258, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.288025, 44.809122 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.748684 ], [ -69.397888, 44.748684 ], [ -69.395142, 44.733077 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.694041 ], [ -69.469299, 44.709658 ], [ -69.474792, 44.709658 ], [ -69.472046, 44.719417 ], [ -69.485779, 44.721369 ], [ -69.634094, 44.701850 ], [ -69.631348, 44.674513 ], [ -69.620361, 44.658885 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.595642, 44.604157 ], [ -69.592896, 44.584599 ], [ -69.606628, 44.578730 ], [ -69.743958, 44.598290 ], [ -69.746704, 44.604157 ], [ -69.776917, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.820862, 44.582643 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.602202 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.608068 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611979 ], [ -69.947205, 44.649116 ], [ -69.969177, 44.662793 ], [ -69.960938, 44.662793 ], [ -69.960938, 44.672559 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.682325 ], [ -69.996643, 44.678419 ], [ -70.015869, 44.758436 ], [ -70.002136, 44.760386 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.811070 ], [ -70.029602, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.832500 ], [ -70.035095, 44.865603 ], [ -70.131226, 44.851975 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.943417 ], [ -70.112000, 44.949249 ], [ -70.161438, 45.129742 ], [ -70.296021, 45.110362 ], [ -70.309753, 45.164611 ], [ -70.312500, 45.166547 ], [ -70.367432, 45.158801 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.521240, 45.514046 ], [ -70.507507, 45.514046 ], [ -70.554199, 45.669725 ], [ -70.543213, 45.667805 ], [ -70.534973, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.513000, 45.679320 ], [ -70.480042, 45.696588 ], [ -70.466309, 45.708097 ], [ -70.441589, 45.704261 ], [ -70.427856, 45.708097 ], [ -70.430603, 45.711933 ], [ -70.419617, 45.713851 ], [ -70.403137, 45.721522 ], [ -70.397644, 45.729191 ], [ -70.392151, 45.729191 ], [ -70.386658, 45.734943 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.752193 ], [ -70.408630, 45.763691 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.786679 ], [ -70.419617, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.809658 ], [ -70.389404, 45.815401 ], [ -70.389404, 45.819229 ], [ -70.372925, 45.828799 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.342712, 45.853673 ], [ -70.309753, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.260315, 45.891920 ], [ -70.265808, 45.895743 ], [ -70.254822, 45.903389 ], [ -70.254822, 45.909122 ], [ -70.260315, 45.911033 ], [ -70.257568, 45.918677 ], [ -70.265808, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.241089, 45.945421 ], [ -70.246582, 45.945421 ], [ -70.243835, 45.947330 ], [ -70.252075, 45.956878 ], [ -70.263062, 45.953059 ], [ -70.260315, 45.960697 ], [ -70.268555, 45.964515 ], [ -70.274048, 45.962606 ], [ -70.276794, 45.968334 ], [ -70.285034, 45.964515 ], [ -70.317993, 45.964515 ], [ -70.312500, 45.966425 ], [ -70.309753, 45.983604 ], [ -70.296021, 45.987421 ], [ -70.285034, 45.996962 ], [ -70.290527, 45.995054 ], [ -70.304260, 45.998870 ], [ -70.307007, 46.012224 ], [ -70.320740, 46.019853 ], [ -70.304260, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.282288, 46.052267 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.061797 ], [ -70.285034, 46.063703 ], [ -70.304260, 46.061797 ], [ -70.312500, 46.065608 ], [ -70.304260, 46.071325 ], [ -70.304260, 46.082757 ], [ -70.293274, 46.088472 ], [ -70.287781, 46.101804 ], [ -70.274048, 46.103709 ], [ -70.254822, 46.101804 ], [ -70.254822, 46.115134 ], [ -70.238342, 46.145589 ], [ -70.241089, 46.151297 ], [ -70.249329, 46.153200 ], [ -70.268555, 46.170321 ], [ -70.279541, 46.176027 ], [ -70.287781, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.293274, 46.193141 ], [ -70.271301, 46.212150 ], [ -70.274048, 46.217852 ], [ -70.268555, 46.219752 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.260315, 46.238752 ], [ -70.252075, 46.250149 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.259645 ], [ -70.232849, 46.286224 ], [ -70.232849, 46.291918 ], [ -70.208130, 46.301406 ], [ -70.205383, 46.316584 ], [ -70.210876, 46.329862 ], [ -70.197144, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.183411, 46.352615 ], [ -70.175171, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.158691, 46.362093 ], [ -70.150452, 46.360198 ], [ -70.142212, 46.363988 ], [ -70.139465, 46.369674 ], [ -70.131226, 46.369674 ], [ -70.128479, 46.381044 ], [ -70.117493, 46.386728 ] ], [ [ -69.796143, 45.784764 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.793396, 45.786679 ], [ -69.796143, 45.784764 ] ], [ [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.782848 ] ], [ [ -69.826355, 45.742610 ], [ -69.834595, 45.738777 ], [ -69.829102, 45.738777 ], [ -69.826355, 45.742610 ] ], [ [ -69.732971, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.735718, 45.878537 ], [ -69.732971, 45.878537 ] ] ], [ [ [ -70.117493, 46.386728 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.388622 ], [ -70.117493, 46.386728 ] ] ] ] } } ] } ] } , @@ -82,11 +83,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.734344, 45.879493 ], [ -69.732971, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.716492, 45.884273 ], [ -69.713745, 45.883317 ], [ -69.709625, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702759, 45.879493 ], [ -69.701385, 45.872800 ], [ -69.697266, 45.868019 ], [ -69.697266, 45.865150 ], [ -69.693146, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.690399, 45.858456 ], [ -69.690399, 45.854630 ], [ -69.687653, 45.854630 ], [ -69.686279, 45.851760 ], [ -69.683533, 45.851760 ], [ -69.678040, 45.853673 ], [ -69.676666, 45.853673 ], [ -69.676666, 45.851760 ], [ -69.675293, 45.852717 ], [ -69.672546, 45.859412 ], [ -69.675293, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.656067, 45.862281 ], [ -69.654694, 45.864194 ], [ -69.647827, 45.863238 ], [ -69.684906, 45.984558 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.720612, 46.394306 ], [ -69.721985, 46.574911 ], [ -68.822479, 46.573023 ], [ -68.822479, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.212150 ], [ -68.827972, 45.685077 ], [ -68.959808, 45.663007 ], [ -68.951569, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.965302, 45.513084 ], [ -68.858185, 45.527517 ], [ -68.829346, 45.434117 ], [ -68.777161, 45.241053 ], [ -68.881531, 45.225579 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.618988, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.687653, 45.208166 ], [ -69.684906, 45.213004 ], [ -69.709625, 45.291313 ], [ -69.701385, 45.293245 ], [ -69.781036, 45.542908 ], [ -69.774170, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.555410 ], [ -69.761810, 45.554449 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728851, 45.570794 ], [ -69.728851, 45.572716 ], [ -69.724731, 45.582329 ], [ -69.715118, 45.586173 ], [ -69.713745, 45.595783 ], [ -69.717865, 45.597705 ], [ -69.721985, 45.603470 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.612116 ], [ -69.713745, 45.614037 ], [ -69.709625, 45.614037 ], [ -69.709625, 45.616919 ], [ -69.704132, 45.620761 ], [ -69.702759, 45.628445 ], [ -69.708252, 45.633246 ], [ -69.708252, 45.638047 ], [ -69.719238, 45.639968 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.647648 ], [ -69.715118, 45.650528 ], [ -69.712372, 45.650528 ], [ -69.705505, 45.644768 ], [ -69.701385, 45.644768 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.693146, 45.645728 ], [ -69.701385, 45.652448 ], [ -69.723358, 45.658208 ], [ -69.726105, 45.657248 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.737091, 45.651488 ], [ -69.743958, 45.652448 ], [ -69.745331, 45.653408 ], [ -69.739838, 45.657248 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.739838, 45.667805 ], [ -69.739838, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.757690, 45.680280 ], [ -69.760437, 45.683158 ], [ -69.764557, 45.683158 ], [ -69.774170, 45.686036 ], [ -69.779663, 45.690833 ], [ -69.783783, 45.690833 ], [ -69.786530, 45.692751 ], [ -69.786530, 45.700425 ], [ -69.790649, 45.705220 ], [ -69.790649, 45.710974 ], [ -69.798889, 45.715769 ], [ -69.803009, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.808502, 45.723439 ], [ -69.804382, 45.720563 ], [ -69.803009, 45.724398 ], [ -69.800262, 45.723439 ], [ -69.798889, 45.725356 ], [ -69.793396, 45.726315 ], [ -69.792023, 45.729191 ], [ -69.794769, 45.729191 ], [ -69.800262, 45.733984 ], [ -69.809875, 45.733984 ], [ -69.812622, 45.735901 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.737818 ], [ -69.820862, 45.739735 ], [ -69.824982, 45.742610 ], [ -69.827728, 45.737818 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.740693 ], [ -69.826355, 45.743569 ], [ -69.818115, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.797516, 45.746444 ], [ -69.789276, 45.747402 ], [ -69.789276, 45.750277 ], [ -69.793396, 45.751235 ], [ -69.790649, 45.756026 ], [ -69.794769, 45.757942 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.762733 ], [ -69.790649, 45.764649 ], [ -69.790649, 45.768481 ], [ -69.782410, 45.770397 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.790649, 45.778060 ], [ -69.785156, 45.782848 ], [ -69.787903, 45.783806 ], [ -69.783783, 45.785721 ], [ -69.782410, 45.781891 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.782410, 45.776144 ], [ -69.775543, 45.765607 ], [ -69.768677, 45.763691 ], [ -69.770050, 45.761775 ], [ -69.753571, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.748077, 45.759859 ], [ -69.743958, 45.760817 ], [ -69.741211, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.727478, 45.762733 ], [ -69.724731, 45.766565 ], [ -69.726105, 45.772313 ], [ -69.728851, 45.775186 ], [ -69.737091, 45.779975 ], [ -69.738464, 45.782848 ], [ -69.723358, 45.783806 ], [ -69.719238, 45.798170 ], [ -69.709625, 45.811572 ], [ -69.713745, 45.824014 ], [ -69.719238, 45.829756 ], [ -69.720612, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.720612, 45.835497 ], [ -69.715118, 45.832627 ], [ -69.712372, 45.832627 ], [ -69.705505, 45.846978 ], [ -69.708252, 45.846978 ], [ -69.709625, 45.850804 ], [ -69.706879, 45.854630 ], [ -69.712372, 45.856543 ], [ -69.712372, 45.861325 ], [ -69.717865, 45.866106 ], [ -69.726105, 45.866106 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.876624 ], [ -69.734344, 45.877581 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.794769, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.789276, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.794769, 45.783806 ] ] ], [ [ [ -69.734344, 45.879493 ], [ -69.738464, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.794769, 45.783806 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796143, 45.785721 ], [ -69.794769, 45.783806 ] ] ], [ [ [ -69.797516, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.734344, 45.879493 ], [ -69.732971, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.716492, 45.884273 ], [ -69.713745, 45.883317 ], [ -69.709625, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702759, 45.879493 ], [ -69.701385, 45.872800 ], [ -69.697266, 45.868019 ], [ -69.697266, 45.865150 ], [ -69.693146, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.690399, 45.858456 ], [ -69.690399, 45.854630 ], [ -69.687653, 45.854630 ], [ -69.686279, 45.851760 ], [ -69.683533, 45.851760 ], [ -69.678040, 45.853673 ], [ -69.676666, 45.853673 ], [ -69.676666, 45.851760 ], [ -69.675293, 45.852717 ], [ -69.672546, 45.859412 ], [ -69.675293, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.656067, 45.862281 ], [ -69.654694, 45.864194 ], [ -69.647827, 45.863238 ], [ -69.684906, 45.984558 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.720612, 46.394306 ], [ -69.721985, 46.574911 ], [ -68.822479, 46.573023 ], [ -68.822479, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.212150 ], [ -68.827972, 45.685077 ], [ -68.959808, 45.663007 ], [ -68.951569, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.965302, 45.513084 ], [ -68.858185, 45.527517 ], [ -68.829346, 45.434117 ], [ -68.777161, 45.241053 ], [ -68.881531, 45.225579 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.618988, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.687653, 45.208166 ], [ -69.684906, 45.213004 ], [ -69.709625, 45.291313 ], [ -69.701385, 45.293245 ], [ -69.781036, 45.542908 ], [ -69.774170, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.555410 ], [ -69.761810, 45.554449 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728851, 45.570794 ], [ -69.728851, 45.572716 ], [ -69.724731, 45.582329 ], [ -69.715118, 45.586173 ], [ -69.713745, 45.595783 ], [ -69.717865, 45.597705 ], [ -69.721985, 45.603470 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.612116 ], [ -69.713745, 45.614037 ], [ -69.709625, 45.614037 ], [ -69.709625, 45.616919 ], [ -69.704132, 45.620761 ], [ -69.702759, 45.628445 ], [ -69.708252, 45.633246 ], [ -69.708252, 45.638047 ], [ -69.719238, 45.639968 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.647648 ], [ -69.715118, 45.650528 ], [ -69.712372, 45.650528 ], [ -69.705505, 45.644768 ], [ -69.701385, 45.644768 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.693146, 45.645728 ], [ -69.701385, 45.652448 ], [ -69.723358, 45.658208 ], [ -69.726105, 45.657248 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.737091, 45.651488 ], [ -69.743958, 45.652448 ], [ -69.745331, 45.653408 ], [ -69.739838, 45.657248 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.739838, 45.667805 ], [ -69.739838, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.757690, 45.680280 ], [ -69.760437, 45.683158 ], [ -69.764557, 45.683158 ], [ -69.774170, 45.686036 ], [ -69.779663, 45.690833 ], [ -69.783783, 45.690833 ], [ -69.786530, 45.692751 ], [ -69.786530, 45.700425 ], [ -69.790649, 45.705220 ], [ -69.790649, 45.710974 ], [ -69.798889, 45.715769 ], [ -69.803009, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.808502, 45.723439 ], [ -69.804382, 45.720563 ], [ -69.803009, 45.724398 ], [ -69.800262, 45.723439 ], [ -69.798889, 45.725356 ], [ -69.793396, 45.726315 ], [ -69.792023, 45.729191 ], [ -69.794769, 45.729191 ], [ -69.800262, 45.733984 ], [ -69.809875, 45.733984 ], [ -69.812622, 45.735901 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.737818 ], [ -69.820862, 45.739735 ], [ -69.824982, 45.742610 ], [ -69.827728, 45.737818 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.740693 ], [ -69.826355, 45.743569 ], [ -69.818115, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.797516, 45.746444 ], [ -69.789276, 45.747402 ], [ -69.789276, 45.750277 ], [ -69.793396, 45.751235 ], [ -69.790649, 45.756026 ], [ -69.794769, 45.757942 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.762733 ], [ -69.790649, 45.764649 ], [ -69.790649, 45.768481 ], [ -69.782410, 45.770397 ], [ -69.785156, 45.772313 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.790649, 45.778060 ], [ -69.785156, 45.782848 ], [ -69.787903, 45.783806 ], [ -69.783783, 45.785721 ], [ -69.782410, 45.781891 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.782410, 45.776144 ], [ -69.775543, 45.765607 ], [ -69.768677, 45.763691 ], [ -69.770050, 45.761775 ], [ -69.753571, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.748077, 45.759859 ], [ -69.743958, 45.760817 ], [ -69.741211, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.727478, 45.762733 ], [ -69.724731, 45.766565 ], [ -69.726105, 45.772313 ], [ -69.728851, 45.775186 ], [ -69.737091, 45.779975 ], [ -69.738464, 45.782848 ], [ -69.723358, 45.783806 ], [ -69.719238, 45.798170 ], [ -69.709625, 45.811572 ], [ -69.713745, 45.824014 ], [ -69.719238, 45.829756 ], [ -69.720612, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.720612, 45.835497 ], [ -69.715118, 45.832627 ], [ -69.712372, 45.832627 ], [ -69.705505, 45.846978 ], [ -69.708252, 45.846978 ], [ -69.709625, 45.850804 ], [ -69.706879, 45.854630 ], [ -69.712372, 45.856543 ], [ -69.712372, 45.861325 ], [ -69.717865, 45.866106 ], [ -69.726105, 45.866106 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.876624 ], [ -69.734344, 45.877581 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.794769, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.789276, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.794769, 45.783806 ] ] ], [ [ [ -69.734344, 45.879493 ], [ -69.738464, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.794769, 45.783806 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796143, 45.785721 ], [ -69.794769, 45.783806 ] ] ], [ [ [ -69.797516, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.254822, 46.246351 ], [ -70.252075, 46.249200 ], [ -70.252075, 46.252998 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261544 ], [ -70.249329, 46.267240 ], [ -70.243835, 46.273885 ], [ -70.241089, 46.273885 ], [ -70.241089, 46.279580 ], [ -70.232849, 46.285275 ], [ -70.232849, 46.291918 ], [ -70.217743, 46.294764 ], [ -70.217743, 46.295713 ], [ -70.216370, 46.294764 ], [ -70.212250, 46.299509 ], [ -70.206757, 46.300457 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.315636 ], [ -70.208130, 46.319430 ], [ -70.206757, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.195770, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.182037, 46.352615 ], [ -70.182037, 46.354511 ], [ -70.173798, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.162811, 46.361145 ], [ -70.158691, 46.360198 ], [ -70.157318, 46.362093 ], [ -70.149078, 46.359250 ], [ -70.144958, 46.363041 ], [ -70.140839, 46.363041 ], [ -70.142212, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.129852, 46.369674 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.380096 ], [ -70.117493, 46.385781 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.385781 ], [ -70.112000, 46.386728 ], [ -70.113373, 46.388622 ], [ -70.107880, 46.388622 ], [ -70.110626, 46.391464 ], [ -70.107880, 46.391464 ], [ -70.107880, 46.393358 ], [ -70.102386, 46.397147 ], [ -70.101013, 46.401882 ], [ -70.099640, 46.400935 ], [ -70.101013, 46.403776 ], [ -70.098267, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.096893, 46.406617 ], [ -70.096893, 46.407564 ], [ -70.095520, 46.408511 ], [ -70.096893, 46.410405 ], [ -70.092773, 46.409458 ], [ -70.090027, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.411352 ], [ -70.077667, 46.410405 ], [ -70.057068, 46.416086 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.574911 ], [ -69.720612, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684906, 45.984558 ], [ -69.647827, 45.863238 ], [ -69.654694, 45.864194 ], [ -69.656067, 45.862281 ], [ -69.657440, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.675293, 45.862281 ], [ -69.672546, 45.860369 ], [ -69.675293, 45.852717 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853673 ], [ -69.678040, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.687653, 45.854630 ], [ -69.690399, 45.854630 ], [ -69.690399, 45.858456 ], [ -69.694519, 45.862281 ], [ -69.693146, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.697266, 45.868019 ], [ -69.701385, 45.872800 ], [ -69.702759, 45.879493 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.709625, 45.886185 ], [ -69.713745, 45.883317 ], [ -69.716492, 45.884273 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.734344, 45.879493 ], [ -69.734344, 45.877581 ], [ -69.727478, 45.876624 ], [ -69.724731, 45.874712 ], [ -69.726105, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.712372, 45.861325 ], [ -69.712372, 45.856543 ], [ -69.706879, 45.854630 ], [ -69.709625, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.705505, 45.846978 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832627 ], [ -69.720612, 45.835497 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.720612, 45.834540 ], [ -69.719238, 45.829756 ], [ -69.713745, 45.824014 ], [ -69.709625, 45.811572 ], [ -69.719238, 45.798170 ], [ -69.723358, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.779975 ], [ -69.728851, 45.775186 ], [ -69.726105, 45.772313 ], [ -69.724731, 45.766565 ], [ -69.727478, 45.762733 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.756026 ], [ -69.743958, 45.760817 ], [ -69.748077, 45.759859 ], [ -69.750824, 45.763691 ], [ -69.753571, 45.761775 ], [ -69.770050, 45.761775 ], [ -69.768677, 45.763691 ], [ -69.775543, 45.765607 ], [ -69.782410, 45.776144 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.782410, 45.781891 ], [ -69.783783, 45.785721 ], [ -69.787903, 45.783806 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.778060 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.785156, 45.775186 ], [ -69.785156, 45.773270 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.770397 ], [ -69.790649, 45.768481 ], [ -69.790649, 45.764649 ], [ -69.793396, 45.762733 ], [ -69.793396, 45.758901 ], [ -69.794769, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.751235 ], [ -69.789276, 45.750277 ], [ -69.789276, 45.747402 ], [ -69.797516, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.812622, 45.746444 ], [ -69.812622, 45.747402 ], [ -69.818115, 45.747402 ], [ -69.826355, 45.743569 ], [ -69.827728, 45.740693 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.737818 ], [ -69.824982, 45.742610 ], [ -69.820862, 45.739735 ], [ -69.812622, 45.737818 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733984 ], [ -69.800262, 45.733984 ], [ -69.794769, 45.729191 ], [ -69.792023, 45.729191 ], [ -69.793396, 45.726315 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.723439 ], [ -69.803009, 45.724398 ], [ -69.804382, 45.720563 ], [ -69.808502, 45.723439 ], [ -69.809875, 45.723439 ], [ -69.803009, 45.715769 ], [ -69.798889, 45.715769 ], [ -69.790649, 45.710974 ], [ -69.790649, 45.705220 ], [ -69.786530, 45.700425 ], [ -69.786530, 45.692751 ], [ -69.783783, 45.690833 ], [ -69.779663, 45.690833 ], [ -69.774170, 45.686036 ], [ -69.764557, 45.683158 ], [ -69.760437, 45.683158 ], [ -69.757690, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.739838, 45.680280 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.675482 ], [ -69.739838, 45.667805 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.739838, 45.657248 ], [ -69.745331, 45.653408 ], [ -69.743958, 45.652448 ], [ -69.737091, 45.651488 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.728851, 45.657248 ], [ -69.723358, 45.658208 ], [ -69.701385, 45.652448 ], [ -69.693146, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.697266, 45.640928 ], [ -69.701385, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.712372, 45.650528 ], [ -69.715118, 45.650528 ], [ -69.713745, 45.647648 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.639968 ], [ -69.709625, 45.638047 ], [ -69.708252, 45.633246 ], [ -69.702759, 45.628445 ], [ -69.704132, 45.620761 ], [ -69.709625, 45.616919 ], [ -69.709625, 45.614037 ], [ -69.713745, 45.614037 ], [ -69.715118, 45.612116 ], [ -69.717865, 45.612116 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.608274 ], [ -69.721985, 45.603470 ], [ -69.717865, 45.597705 ], [ -69.713745, 45.595783 ], [ -69.715118, 45.586173 ], [ -69.724731, 45.582329 ], [ -69.728851, 45.572716 ], [ -69.728851, 45.570794 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.761810, 45.554449 ], [ -69.774170, 45.555410 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.545793 ], [ -69.781036, 45.542908 ], [ -69.732971, 45.389771 ], [ -69.701385, 45.296143 ], [ -69.701385, 45.293245 ], [ -69.709625, 45.292279 ], [ -69.705505, 45.276819 ], [ -69.684906, 45.213971 ], [ -69.687653, 45.208166 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -70.127106, 45.011419 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.473175, 45.352145 ], [ -70.519867, 45.513084 ], [ -70.506134, 45.514046 ], [ -70.554199, 45.668765 ], [ -70.547333, 45.666846 ], [ -70.543213, 45.666846 ], [ -70.533600, 45.671644 ], [ -70.526733, 45.666846 ], [ -70.519867, 45.669725 ], [ -70.519867, 45.671644 ], [ -70.511627, 45.679320 ], [ -70.503387, 45.682199 ], [ -70.503387, 45.684117 ], [ -70.497894, 45.686036 ], [ -70.493774, 45.689874 ], [ -70.480042, 45.695629 ], [ -70.470428, 45.702343 ], [ -70.471802, 45.703302 ], [ -70.466309, 45.707138 ], [ -70.462189, 45.706179 ], [ -70.456696, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.445709, 45.704261 ], [ -70.441589, 45.706179 ], [ -70.440216, 45.704261 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.430603, 45.710974 ], [ -70.418243, 45.713851 ], [ -70.414124, 45.716728 ], [ -70.408630, 45.717686 ], [ -70.401764, 45.720563 ], [ -70.397644, 45.729191 ], [ -70.390778, 45.729191 ], [ -70.385284, 45.734943 ], [ -70.386658, 45.734943 ], [ -70.386658, 45.736860 ], [ -70.390778, 45.736860 ], [ -70.390778, 45.737818 ], [ -70.393524, 45.738777 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.748360 ], [ -70.389404, 45.751235 ], [ -70.396271, 45.756984 ], [ -70.401764, 45.757942 ], [ -70.407257, 45.762733 ], [ -70.405884, 45.770397 ], [ -70.408630, 45.774228 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.785721 ], [ -70.415497, 45.790509 ], [ -70.418243, 45.796255 ], [ -70.407257, 45.798170 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.808700 ], [ -70.389404, 45.814444 ], [ -70.389404, 45.819229 ], [ -70.377045, 45.827842 ], [ -70.372925, 45.828799 ], [ -70.370178, 45.831670 ], [ -70.372925, 45.834540 ], [ -70.371552, 45.835497 ], [ -70.360565, 45.835497 ], [ -70.356445, 45.838368 ], [ -70.357819, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.349579, 45.847934 ], [ -70.342712, 45.852717 ], [ -70.319366, 45.856543 ], [ -70.308380, 45.859412 ], [ -70.304260, 45.864194 ], [ -70.298767, 45.865150 ], [ -70.285034, 45.871844 ], [ -70.274048, 45.880449 ], [ -70.274048, 45.883317 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891920 ], [ -70.265808, 45.894787 ], [ -70.254822, 45.902433 ], [ -70.253448, 45.908167 ], [ -70.260315, 45.910078 ], [ -70.257568, 45.918677 ], [ -70.261688, 45.920587 ], [ -70.263062, 45.920587 ], [ -70.264435, 45.924409 ], [ -70.252075, 45.933960 ], [ -70.239716, 45.939691 ], [ -70.239716, 45.944466 ], [ -70.245209, 45.945421 ], [ -70.242462, 45.947330 ], [ -70.249329, 45.950195 ], [ -70.252075, 45.955924 ], [ -70.256195, 45.953059 ], [ -70.261688, 45.953059 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258942, 45.959742 ], [ -70.261688, 45.960697 ], [ -70.267181, 45.964515 ], [ -70.274048, 45.961652 ], [ -70.275421, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.274048, 45.964515 ], [ -70.275421, 45.967379 ], [ -70.283661, 45.964515 ], [ -70.287781, 45.965470 ], [ -70.289154, 45.963561 ], [ -70.298767, 45.963561 ], [ -70.307007, 45.965470 ], [ -70.313873, 45.962606 ], [ -70.316620, 45.963561 ], [ -70.312500, 45.966425 ], [ -70.313873, 45.970243 ], [ -70.311127, 45.973106 ], [ -70.312500, 45.975015 ], [ -70.308380, 45.978832 ], [ -70.309753, 45.980741 ], [ -70.308380, 45.982649 ], [ -70.300140, 45.986466 ], [ -70.296021, 45.986466 ], [ -70.285034, 45.996008 ], [ -70.289154, 45.994099 ], [ -70.293274, 45.997916 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.307007, 46.004593 ], [ -70.307007, 46.011270 ], [ -70.312500, 46.012224 ], [ -70.311127, 46.016039 ], [ -70.319366, 46.019853 ], [ -70.302887, 46.027482 ], [ -70.298767, 46.031296 ], [ -70.302887, 46.032249 ], [ -70.300140, 46.038923 ], [ -70.282288, 46.051314 ], [ -70.279541, 46.057032 ], [ -70.279541, 46.060844 ], [ -70.283661, 46.060844 ], [ -70.285034, 46.062750 ], [ -70.293274, 46.060844 ], [ -70.302887, 46.060844 ], [ -70.304260, 46.062750 ], [ -70.307007, 46.061797 ], [ -70.309753, 46.062750 ], [ -70.311127, 46.064656 ], [ -70.302887, 46.070372 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.304260, 46.077041 ], [ -70.300140, 46.078947 ], [ -70.302887, 46.080852 ], [ -70.302887, 46.082757 ], [ -70.291901, 46.087519 ], [ -70.291901, 46.094186 ], [ -70.285034, 46.097995 ], [ -70.286407, 46.100852 ], [ -70.279541, 46.099900 ], [ -70.274048, 46.102757 ], [ -70.260315, 46.101804 ], [ -70.257568, 46.099900 ], [ -70.253448, 46.100852 ], [ -70.253448, 46.106565 ], [ -70.256195, 46.109422 ], [ -70.254822, 46.114182 ], [ -70.253448, 46.115134 ], [ -70.247955, 46.126556 ], [ -70.243835, 46.129412 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236969, 46.145589 ], [ -70.241089, 46.149394 ], [ -70.241089, 46.151297 ], [ -70.243835, 46.150346 ], [ -70.245209, 46.152248 ], [ -70.249329, 46.152248 ], [ -70.247955, 46.154151 ], [ -70.250702, 46.155102 ], [ -70.250702, 46.156054 ], [ -70.253448, 46.158907 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265808, 46.165566 ], [ -70.267181, 46.169370 ], [ -70.279541, 46.176027 ], [ -70.286407, 46.183634 ], [ -70.286407, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.290527, 46.188388 ], [ -70.293274, 46.192190 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.195993 ], [ -70.286407, 46.195993 ], [ -70.278168, 46.204547 ], [ -70.276794, 46.208349 ], [ -70.271301, 46.211200 ], [ -70.271301, 46.214051 ], [ -70.275421, 46.215001 ], [ -70.274048, 46.216902 ], [ -70.271301, 46.216902 ], [ -70.268555, 46.219752 ], [ -70.265808, 46.223553 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236853 ], [ -70.260315, 46.238752 ], [ -70.254822, 46.246351 ] ], [ [ -69.794769, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.784764 ], [ -69.792023, 45.785721 ], [ -69.794769, 45.783806 ] ], [ [ -69.734344, 45.879493 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.880449 ], [ -69.734344, 45.879493 ] ], [ [ -69.794769, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.794769, 45.783806 ] ], [ [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.797516, 45.783806 ] ] ], [ [ [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.338837, 45.011419 ], [ -69.621735, 45.011419 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.101013, 46.401882 ], [ -70.101013, 46.403776 ], [ -70.098267, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.096893, 46.406617 ], [ -70.096893, 46.407564 ], [ -70.095520, 46.408511 ], [ -70.096893, 46.410405 ], [ -70.092773, 46.409458 ], [ -70.090027, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.411352 ], [ -70.077667, 46.410405 ], [ -70.057068, 46.416086 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.574911 ], [ -69.720612, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684906, 45.984558 ], [ -69.647827, 45.863238 ], [ -69.654694, 45.864194 ], [ -69.656067, 45.862281 ], [ -69.657440, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.675293, 45.862281 ], [ -69.672546, 45.860369 ], [ -69.675293, 45.852717 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853673 ], [ -69.678040, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.687653, 45.854630 ], [ -69.690399, 45.854630 ], [ -69.690399, 45.858456 ], [ -69.694519, 45.862281 ], [ -69.693146, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.697266, 45.868019 ], [ -69.701385, 45.872800 ], [ -69.702759, 45.879493 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.709625, 45.886185 ], [ -69.713745, 45.883317 ], [ -69.716492, 45.884273 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.734344, 45.879493 ], [ -69.734344, 45.877581 ], [ -69.727478, 45.876624 ], [ -69.724731, 45.874712 ], [ -69.726105, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.712372, 45.861325 ], [ -69.712372, 45.856543 ], [ -69.706879, 45.854630 ], [ -69.709625, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.705505, 45.846978 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832627 ], [ -69.720612, 45.835497 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.720612, 45.834540 ], [ -69.719238, 45.829756 ], [ -69.713745, 45.824014 ], [ -69.709625, 45.811572 ], [ -69.719238, 45.798170 ], [ -69.723358, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.779975 ], [ -69.728851, 45.775186 ], [ -69.726105, 45.772313 ], [ -69.724731, 45.766565 ], [ -69.727478, 45.762733 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.756026 ], [ -69.743958, 45.760817 ], [ -69.748077, 45.759859 ], [ -69.750824, 45.763691 ], [ -69.753571, 45.761775 ], [ -69.770050, 45.761775 ], [ -69.768677, 45.763691 ], [ -69.775543, 45.765607 ], [ -69.782410, 45.776144 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.782410, 45.781891 ], [ -69.783783, 45.785721 ], [ -69.787903, 45.783806 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.778060 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.785156, 45.775186 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.770397 ], [ -69.790649, 45.768481 ], [ -69.790649, 45.764649 ], [ -69.793396, 45.762733 ], [ -69.793396, 45.758901 ], [ -69.794769, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.751235 ], [ -69.789276, 45.750277 ], [ -69.789276, 45.747402 ], [ -69.797516, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.812622, 45.746444 ], [ -69.812622, 45.747402 ], [ -69.818115, 45.747402 ], [ -69.826355, 45.743569 ], [ -69.827728, 45.740693 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.737818 ], [ -69.824982, 45.742610 ], [ -69.820862, 45.739735 ], [ -69.812622, 45.737818 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733984 ], [ -69.800262, 45.733984 ], [ -69.794769, 45.729191 ], [ -69.792023, 45.729191 ], [ -69.793396, 45.726315 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.723439 ], [ -69.803009, 45.724398 ], [ -69.804382, 45.720563 ], [ -69.808502, 45.723439 ], [ -69.809875, 45.723439 ], [ -69.803009, 45.715769 ], [ -69.798889, 45.715769 ], [ -69.790649, 45.710974 ], [ -69.790649, 45.705220 ], [ -69.786530, 45.700425 ], [ -69.786530, 45.692751 ], [ -69.783783, 45.690833 ], [ -69.779663, 45.690833 ], [ -69.774170, 45.686036 ], [ -69.764557, 45.683158 ], [ -69.760437, 45.683158 ], [ -69.757690, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.739838, 45.680280 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.675482 ], [ -69.739838, 45.667805 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.739838, 45.657248 ], [ -69.745331, 45.653408 ], [ -69.743958, 45.652448 ], [ -69.737091, 45.651488 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.728851, 45.657248 ], [ -69.723358, 45.658208 ], [ -69.701385, 45.652448 ], [ -69.693146, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.697266, 45.640928 ], [ -69.701385, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.712372, 45.650528 ], [ -69.715118, 45.650528 ], [ -69.713745, 45.647648 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.639968 ], [ -69.709625, 45.638047 ], [ -69.708252, 45.633246 ], [ -69.702759, 45.628445 ], [ -69.704132, 45.620761 ], [ -69.709625, 45.616919 ], [ -69.709625, 45.614037 ], [ -69.713745, 45.614037 ], [ -69.715118, 45.612116 ], [ -69.717865, 45.612116 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.608274 ], [ -69.721985, 45.603470 ], [ -69.717865, 45.597705 ], [ -69.713745, 45.595783 ], [ -69.715118, 45.586173 ], [ -69.724731, 45.582329 ], [ -69.728851, 45.572716 ], [ -69.728851, 45.570794 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.761810, 45.554449 ], [ -69.774170, 45.555410 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.545793 ], [ -69.781036, 45.542908 ], [ -69.732971, 45.389771 ], [ -69.701385, 45.296143 ], [ -69.701385, 45.293245 ], [ -69.709625, 45.292279 ], [ -69.705505, 45.276819 ], [ -69.684906, 45.213971 ], [ -69.687653, 45.208166 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -70.127106, 45.011419 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.473175, 45.352145 ], [ -70.519867, 45.513084 ], [ -70.506134, 45.514046 ], [ -70.554199, 45.668765 ], [ -70.547333, 45.666846 ], [ -70.543213, 45.666846 ], [ -70.533600, 45.671644 ], [ -70.526733, 45.666846 ], [ -70.519867, 45.669725 ], [ -70.519867, 45.671644 ], [ -70.511627, 45.679320 ], [ -70.503387, 45.682199 ], [ -70.503387, 45.684117 ], [ -70.497894, 45.686036 ], [ -70.493774, 45.689874 ], [ -70.480042, 45.695629 ], [ -70.470428, 45.702343 ], [ -70.471802, 45.703302 ], [ -70.466309, 45.707138 ], [ -70.462189, 45.706179 ], [ -70.456696, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.445709, 45.704261 ], [ -70.441589, 45.706179 ], [ -70.440216, 45.704261 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.430603, 45.710974 ], [ -70.418243, 45.713851 ], [ -70.414124, 45.716728 ], [ -70.408630, 45.717686 ], [ -70.401764, 45.720563 ], [ -70.397644, 45.729191 ], [ -70.390778, 45.729191 ], [ -70.385284, 45.734943 ], [ -70.386658, 45.734943 ], [ -70.386658, 45.736860 ], [ -70.390778, 45.736860 ], [ -70.390778, 45.737818 ], [ -70.393524, 45.738777 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.748360 ], [ -70.389404, 45.751235 ], [ -70.396271, 45.756984 ], [ -70.401764, 45.757942 ], [ -70.407257, 45.762733 ], [ -70.405884, 45.770397 ], [ -70.408630, 45.774228 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.785721 ], [ -70.415497, 45.790509 ], [ -70.418243, 45.796255 ], [ -70.407257, 45.798170 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.808700 ], [ -70.389404, 45.814444 ], [ -70.389404, 45.819229 ], [ -70.377045, 45.827842 ], [ -70.372925, 45.828799 ], [ -70.370178, 45.831670 ], [ -70.372925, 45.834540 ], [ -70.371552, 45.835497 ], [ -70.360565, 45.835497 ], [ -70.356445, 45.838368 ], [ -70.357819, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.349579, 45.847934 ], [ -70.342712, 45.852717 ], [ -70.319366, 45.856543 ], [ -70.308380, 45.859412 ], [ -70.304260, 45.864194 ], [ -70.298767, 45.865150 ], [ -70.285034, 45.871844 ], [ -70.274048, 45.880449 ], [ -70.274048, 45.883317 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891920 ], [ -70.265808, 45.894787 ], [ -70.254822, 45.902433 ], [ -70.253448, 45.908167 ], [ -70.260315, 45.910078 ], [ -70.257568, 45.918677 ], [ -70.261688, 45.920587 ], [ -70.263062, 45.920587 ], [ -70.264435, 45.924409 ], [ -70.252075, 45.933960 ], [ -70.239716, 45.939691 ], [ -70.239716, 45.944466 ], [ -70.245209, 45.945421 ], [ -70.242462, 45.947330 ], [ -70.249329, 45.950195 ], [ -70.252075, 45.955924 ], [ -70.256195, 45.953059 ], [ -70.261688, 45.953059 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258942, 45.959742 ], [ -70.261688, 45.960697 ], [ -70.267181, 45.964515 ], [ -70.274048, 45.961652 ], [ -70.275421, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.274048, 45.964515 ], [ -70.275421, 45.967379 ], [ -70.283661, 45.964515 ], [ -70.287781, 45.965470 ], [ -70.289154, 45.963561 ], [ -70.298767, 45.963561 ], [ -70.307007, 45.965470 ], [ -70.313873, 45.962606 ], [ -70.316620, 45.963561 ], [ -70.312500, 45.966425 ], [ -70.313873, 45.970243 ], [ -70.311127, 45.973106 ], [ -70.312500, 45.975015 ], [ -70.308380, 45.978832 ], [ -70.309753, 45.980741 ], [ -70.308380, 45.982649 ], [ -70.300140, 45.986466 ], [ -70.296021, 45.986466 ], [ -70.285034, 45.996008 ], [ -70.289154, 45.994099 ], [ -70.293274, 45.997916 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.307007, 46.004593 ], [ -70.307007, 46.011270 ], [ -70.312500, 46.012224 ], [ -70.311127, 46.016039 ], [ -70.319366, 46.019853 ], [ -70.302887, 46.027482 ], [ -70.298767, 46.031296 ], [ -70.302887, 46.032249 ], [ -70.300140, 46.038923 ], [ -70.282288, 46.051314 ], [ -70.279541, 46.057032 ], [ -70.279541, 46.060844 ], [ -70.283661, 46.060844 ], [ -70.285034, 46.062750 ], [ -70.293274, 46.060844 ], [ -70.302887, 46.060844 ], [ -70.304260, 46.062750 ], [ -70.307007, 46.061797 ], [ -70.309753, 46.062750 ], [ -70.311127, 46.064656 ], [ -70.302887, 46.070372 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.304260, 46.077041 ], [ -70.300140, 46.078947 ], [ -70.302887, 46.080852 ], [ -70.302887, 46.082757 ], [ -70.291901, 46.087519 ], [ -70.291901, 46.094186 ], [ -70.285034, 46.097995 ], [ -70.286407, 46.100852 ], [ -70.279541, 46.099900 ], [ -70.274048, 46.102757 ], [ -70.260315, 46.101804 ], [ -70.257568, 46.099900 ], [ -70.253448, 46.100852 ], [ -70.253448, 46.106565 ], [ -70.256195, 46.109422 ], [ -70.254822, 46.114182 ], [ -70.253448, 46.115134 ], [ -70.247955, 46.126556 ], [ -70.243835, 46.129412 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236969, 46.145589 ], [ -70.241089, 46.149394 ], [ -70.241089, 46.151297 ], [ -70.243835, 46.150346 ], [ -70.245209, 46.152248 ], [ -70.249329, 46.152248 ], [ -70.247955, 46.154151 ], [ -70.250702, 46.155102 ], [ -70.250702, 46.156054 ], [ -70.253448, 46.158907 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265808, 46.165566 ], [ -70.267181, 46.169370 ], [ -70.279541, 46.176027 ], [ -70.286407, 46.183634 ], [ -70.286407, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.290527, 46.188388 ], [ -70.293274, 46.192190 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.195993 ], [ -70.286407, 46.195993 ], [ -70.278168, 46.204547 ], [ -70.276794, 46.208349 ], [ -70.271301, 46.211200 ], [ -70.271301, 46.214051 ], [ -70.275421, 46.215001 ], [ -70.274048, 46.216902 ], [ -70.271301, 46.216902 ], [ -70.268555, 46.219752 ], [ -70.265808, 46.223553 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236853 ], [ -70.260315, 46.238752 ], [ -70.254822, 46.246351 ], [ -70.252075, 46.249200 ], [ -70.252075, 46.252998 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261544 ], [ -70.249329, 46.267240 ], [ -70.243835, 46.273885 ], [ -70.241089, 46.273885 ], [ -70.241089, 46.279580 ], [ -70.232849, 46.285275 ], [ -70.232849, 46.291918 ], [ -70.217743, 46.294764 ], [ -70.216370, 46.294764 ], [ -70.212250, 46.299509 ], [ -70.206757, 46.300457 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.315636 ], [ -70.208130, 46.319430 ], [ -70.206757, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.195770, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.182037, 46.352615 ], [ -70.182037, 46.354511 ], [ -70.173798, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.162811, 46.361145 ], [ -70.158691, 46.360198 ], [ -70.157318, 46.362093 ], [ -70.149078, 46.359250 ], [ -70.144958, 46.363041 ], [ -70.140839, 46.363041 ], [ -70.142212, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.129852, 46.369674 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.380096 ], [ -70.117493, 46.385781 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.385781 ], [ -70.112000, 46.386728 ], [ -70.113373, 46.388622 ], [ -70.107880, 46.388622 ], [ -70.110626, 46.391464 ], [ -70.107880, 46.391464 ], [ -70.107880, 46.393358 ], [ -70.102386, 46.397147 ], [ -70.101013, 46.401882 ] ], [ [ -69.794769, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.784764 ], [ -69.792023, 45.785721 ], [ -69.794769, 45.783806 ] ], [ [ -69.734344, 45.879493 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.880449 ], [ -69.734344, 45.879493 ] ], [ [ -69.794769, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.794769, 45.783806 ] ], [ [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.797516, 45.783806 ] ] ], [ [ [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.338837, 45.011419 ], [ -69.621735, 45.011419 ] ] ] ] } } ] } ] } , @@ -108,17 +109,17 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.159378, 45.127805 ], [ -69.662933, 45.127805 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.621048, 45.011419 ], [ -69.515991, 45.025495 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500198, 45.054121 ], [ -69.356003, 45.073521 ], [ -69.281845, 44.811070 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268112, 44.721857 ], [ -69.327850, 44.714538 ], [ -69.343643, 44.750147 ], [ -69.348450, 44.749172 ], [ -69.360809, 44.751122 ], [ -69.371796, 44.755023 ], [ -69.383469, 44.754535 ], [ -69.388962, 44.752585 ], [ -69.388962, 44.747709 ], [ -69.390335, 44.747221 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.747221 ], [ -69.398575, 44.742344 ], [ -69.395142, 44.735516 ], [ -69.395142, 44.732589 ], [ -69.397202, 44.731126 ], [ -69.406128, 44.727223 ], [ -69.408875, 44.723808 ], [ -69.415054, 44.718929 ], [ -69.414368, 44.716978 ], [ -69.417801, 44.709658 ], [ -69.417114, 44.701362 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708194 ], [ -69.473419, 44.709170 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.581909, 44.708194 ], [ -69.633408, 44.700386 ], [ -69.633408, 44.691112 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673536 ], [ -69.627914, 44.671094 ], [ -69.621735, 44.665234 ], [ -69.618301, 44.657909 ], [ -69.614868, 44.654490 ], [ -69.605942, 44.651070 ], [ -69.599762, 44.644720 ], [ -69.592209, 44.639834 ], [ -69.586029, 44.632505 ], [ -69.581909, 44.630551 ], [ -69.579163, 44.627130 ], [ -69.580536, 44.621754 ], [ -69.590836, 44.608068 ], [ -69.593582, 44.603180 ], [ -69.592209, 44.595846 ], [ -69.589462, 44.590467 ], [ -69.591522, 44.584110 ], [ -69.593582, 44.582154 ], [ -69.601135, 44.580687 ], [ -69.605942, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.744644, 44.602691 ], [ -69.775543, 44.608557 ], [ -69.777603, 44.607579 ], [ -69.787903, 44.594379 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.818115, 44.582154 ], [ -69.816742, 44.584599 ], [ -69.818115, 44.584599 ], [ -69.817429, 44.586066 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.588022 ], [ -69.818115, 44.589000 ], [ -69.818802, 44.590467 ], [ -69.817429, 44.591934 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.594379 ], [ -69.817429, 44.598290 ], [ -69.818802, 44.598290 ], [ -69.818802, 44.599268 ], [ -69.820862, 44.599757 ], [ -69.820862, 44.600735 ], [ -69.822922, 44.601224 ], [ -69.822922, 44.602202 ], [ -69.820862, 44.603180 ], [ -69.820862, 44.604646 ], [ -69.822922, 44.604646 ], [ -69.822235, 44.605135 ], [ -69.822922, 44.605624 ], [ -69.822922, 44.608068 ], [ -69.824295, 44.608068 ], [ -69.825668, 44.607090 ], [ -69.827042, 44.608068 ], [ -69.828415, 44.608557 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663281 ], [ -69.966431, 44.663281 ], [ -69.964371, 44.660839 ], [ -69.960251, 44.660839 ], [ -69.958878, 44.662793 ], [ -69.958191, 44.668165 ], [ -69.959564, 44.671094 ], [ -69.961624, 44.673536 ], [ -69.965744, 44.675001 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678419 ], [ -69.960251, 44.679883 ], [ -69.960251, 44.681348 ], [ -69.996643, 44.677930 ], [ -70.013809, 44.757949 ], [ -70.000763, 44.759411 ], [ -70.004196, 44.773549 ], [ -70.001450, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787196 ], [ -70.021362, 44.810096 ], [ -70.027542, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.026169, 44.831039 ], [ -70.033722, 44.864630 ], [ -70.130539, 44.851001 ], [ -70.142212, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149765, 44.896255 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.911818 ], [ -70.152512, 44.941959 ], [ -70.110626, 44.947791 ], [ -70.122986, 45.000253 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.127805 ] ] ], [ [ [ -70.159378, 45.127805 ], [ -70.172424, 45.126836 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.159378, 45.127805 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.159378, 45.127805 ], [ -69.662933, 45.127805 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.621048, 45.011419 ], [ -69.515991, 45.025495 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500198, 45.054121 ], [ -69.356003, 45.073521 ], [ -69.281845, 44.811070 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268112, 44.721857 ], [ -69.327850, 44.714538 ], [ -69.343643, 44.750147 ], [ -69.348450, 44.749172 ], [ -69.360809, 44.751122 ], [ -69.371796, 44.755023 ], [ -69.383469, 44.754535 ], [ -69.388962, 44.752585 ], [ -69.388962, 44.747709 ], [ -69.390335, 44.747221 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.747221 ], [ -69.398575, 44.742344 ], [ -69.395142, 44.735516 ], [ -69.395142, 44.732589 ], [ -69.397202, 44.731126 ], [ -69.406128, 44.727223 ], [ -69.408875, 44.723808 ], [ -69.415054, 44.718929 ], [ -69.414368, 44.716978 ], [ -69.417801, 44.709658 ], [ -69.417114, 44.701362 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708194 ], [ -69.473419, 44.709170 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.581909, 44.708194 ], [ -69.633408, 44.700386 ], [ -69.633408, 44.691112 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673536 ], [ -69.627914, 44.671094 ], [ -69.621735, 44.665234 ], [ -69.618301, 44.657909 ], [ -69.614868, 44.654490 ], [ -69.605942, 44.651070 ], [ -69.599762, 44.644720 ], [ -69.592209, 44.639834 ], [ -69.586029, 44.632505 ], [ -69.581909, 44.630551 ], [ -69.579163, 44.627130 ], [ -69.580536, 44.621754 ], [ -69.590836, 44.608068 ], [ -69.593582, 44.603180 ], [ -69.592209, 44.595846 ], [ -69.589462, 44.590467 ], [ -69.591522, 44.584110 ], [ -69.593582, 44.582154 ], [ -69.601135, 44.580687 ], [ -69.605942, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.744644, 44.602691 ], [ -69.775543, 44.608557 ], [ -69.777603, 44.607579 ], [ -69.787903, 44.594379 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.818115, 44.582154 ], [ -69.816742, 44.584599 ], [ -69.818115, 44.584599 ], [ -69.818115, 44.585577 ], [ -69.817429, 44.586066 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.588022 ], [ -69.818115, 44.589000 ], [ -69.818802, 44.590467 ], [ -69.817429, 44.591934 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.594379 ], [ -69.817429, 44.598290 ], [ -69.818802, 44.598290 ], [ -69.818802, 44.599268 ], [ -69.820862, 44.599757 ], [ -69.820862, 44.600735 ], [ -69.822922, 44.601224 ], [ -69.822922, 44.602202 ], [ -69.820862, 44.603180 ], [ -69.820862, 44.604646 ], [ -69.822922, 44.604646 ], [ -69.822235, 44.605135 ], [ -69.822922, 44.605624 ], [ -69.822922, 44.608068 ], [ -69.824295, 44.608068 ], [ -69.825668, 44.607090 ], [ -69.827042, 44.608068 ], [ -69.828415, 44.608557 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663281 ], [ -69.966431, 44.663281 ], [ -69.964371, 44.660839 ], [ -69.960251, 44.660839 ], [ -69.958878, 44.662793 ], [ -69.958191, 44.668165 ], [ -69.959564, 44.671094 ], [ -69.961624, 44.673536 ], [ -69.965744, 44.675001 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678419 ], [ -69.960251, 44.679883 ], [ -69.960251, 44.681348 ], [ -69.996643, 44.677930 ], [ -70.013809, 44.757949 ], [ -70.000763, 44.759411 ], [ -70.004196, 44.773549 ], [ -70.001450, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787196 ], [ -70.021362, 44.810096 ], [ -70.027542, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.026169, 44.831039 ], [ -70.033722, 44.864630 ], [ -70.130539, 44.851001 ], [ -70.142212, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149765, 44.896255 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.911818 ], [ -70.152512, 44.941959 ], [ -70.110626, 44.947791 ], [ -70.122986, 45.000253 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.127805 ] ] ], [ [ [ -70.159378, 45.127805 ], [ -70.172424, 45.126836 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.159378, 45.127805 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 45 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.673920, 45.861803 ], [ -69.673920, 45.862759 ], [ -69.670486, 45.860847 ], [ -69.667740, 45.862281 ], [ -69.664993, 45.862281 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662933, 45.861325 ], [ -69.660187, 45.861325 ], [ -69.660187, 45.860847 ], [ -69.658813, 45.861325 ], [ -69.656754, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.655380, 45.861803 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.863238 ], [ -69.654007, 45.864194 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.863238 ], [ -69.648514, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.647141, 45.863238 ], [ -69.684219, 45.984081 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.719925, 46.394306 ], [ -69.721298, 46.574439 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.017487, 46.572551 ], [ -68.821793, 46.572551 ], [ -68.822479, 46.402829 ], [ -68.821793, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.211675 ], [ -68.823166, 46.113706 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.685077 ], [ -68.959122, 45.662527 ], [ -68.950882, 45.638527 ], [ -68.952255, 45.580887 ], [ -68.965302, 45.512602 ], [ -68.880157, 45.524149 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433635 ], [ -68.804626, 45.341046 ], [ -68.776474, 45.240569 ], [ -68.881531, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.990707, 45.125382 ], [ -69.062119, 45.114238 ], [ -69.242020, 45.089036 ], [ -69.492645, 45.055091 ], [ -69.500198, 45.054121 ], [ -69.499512, 45.050240 ], [ -69.632034, 45.050240 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.687653, 45.208166 ], [ -69.684219, 45.213004 ], [ -69.702759, 45.268605 ], [ -69.708939, 45.291313 ], [ -69.700699, 45.292762 ], [ -69.732971, 45.389289 ], [ -69.780350, 45.542908 ], [ -69.773483, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.775543, 45.553006 ], [ -69.774170, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.764557, 45.554929 ], [ -69.761124, 45.554449 ], [ -69.754257, 45.557814 ], [ -69.749451, 45.559256 ], [ -69.748077, 45.560699 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572716 ], [ -69.726791, 45.574158 ], [ -69.726791, 45.577042 ], [ -69.724045, 45.581848 ], [ -69.719925, 45.583290 ], [ -69.717178, 45.585212 ], [ -69.715118, 45.585693 ], [ -69.714432, 45.588576 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.595303 ], [ -69.715118, 45.597224 ], [ -69.717865, 45.597705 ], [ -69.719238, 45.600587 ], [ -69.721298, 45.602989 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.608754 ], [ -69.717865, 45.611156 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.613077 ], [ -69.714432, 45.612116 ], [ -69.713058, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.708939, 45.616919 ], [ -69.705505, 45.618360 ], [ -69.704819, 45.619801 ], [ -69.703445, 45.620761 ], [ -69.704132, 45.621722 ], [ -69.702072, 45.628445 ], [ -69.707565, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.708252, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.712372, 45.638047 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.716492, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.713058, 45.647648 ], [ -69.714432, 45.650528 ], [ -69.711685, 45.650528 ], [ -69.706879, 45.647168 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.696579, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.692459, 45.645728 ], [ -69.698639, 45.649568 ], [ -69.701385, 45.651968 ], [ -69.703445, 45.651968 ], [ -69.705505, 45.653408 ], [ -69.706192, 45.652928 ], [ -69.713058, 45.655808 ], [ -69.719238, 45.656288 ], [ -69.723358, 45.657728 ], [ -69.726105, 45.656768 ], [ -69.732971, 45.657248 ], [ -69.732285, 45.655808 ], [ -69.734344, 45.654368 ], [ -69.736404, 45.651008 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.653408 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657728 ], [ -69.741898, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.741898, 45.666846 ], [ -69.739838, 45.667325 ], [ -69.740524, 45.669725 ], [ -69.739151, 45.671644 ], [ -69.739151, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.738464, 45.676921 ], [ -69.739151, 45.679800 ], [ -69.746017, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.754944, 45.679800 ], [ -69.757004, 45.679800 ], [ -69.760437, 45.682678 ], [ -69.764557, 45.682678 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.685077 ], [ -69.774170, 45.686036 ], [ -69.774857, 45.687955 ], [ -69.776917, 45.687955 ], [ -69.779663, 45.690353 ], [ -69.783096, 45.690833 ], [ -69.785843, 45.692751 ], [ -69.785843, 45.699945 ], [ -69.789963, 45.702343 ], [ -69.790649, 45.704741 ], [ -69.790649, 45.710495 ], [ -69.798203, 45.715289 ], [ -69.803009, 45.715289 ], [ -69.805756, 45.717207 ], [ -69.805756, 45.720563 ], [ -69.807816, 45.722480 ], [ -69.805069, 45.722001 ], [ -69.803696, 45.720563 ], [ -69.804382, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.800262, 45.722960 ], [ -69.800262, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.797516, 45.724398 ], [ -69.792709, 45.725836 ], [ -69.791336, 45.726794 ], [ -69.792023, 45.728712 ], [ -69.794083, 45.728712 ], [ -69.800262, 45.733505 ], [ -69.809875, 45.733505 ], [ -69.812622, 45.735901 ], [ -69.810562, 45.736380 ], [ -69.811935, 45.737339 ], [ -69.820175, 45.739256 ], [ -69.820175, 45.740693 ], [ -69.821548, 45.740693 ], [ -69.824295, 45.742610 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.743089 ], [ -69.822922, 45.743569 ], [ -69.822235, 45.745006 ], [ -69.817429, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.745965 ], [ -69.806442, 45.747881 ], [ -69.805756, 45.748839 ], [ -69.801636, 45.749319 ], [ -69.796829, 45.746444 ], [ -69.793396, 45.745965 ], [ -69.789963, 45.747402 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.749798 ], [ -69.791336, 45.750277 ], [ -69.792709, 45.751235 ], [ -69.792023, 45.753152 ], [ -69.789963, 45.754589 ], [ -69.789963, 45.756026 ], [ -69.793396, 45.757463 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.792709, 45.759859 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.790649, 45.764649 ], [ -69.792023, 45.764649 ], [ -69.791336, 45.766086 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.768002 ], [ -69.789276, 45.768960 ], [ -69.787216, 45.768481 ], [ -69.782410, 45.769918 ], [ -69.784470, 45.772313 ], [ -69.783096, 45.772792 ], [ -69.781723, 45.774228 ], [ -69.784470, 45.773270 ], [ -69.785156, 45.774707 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.776144 ], [ -69.786530, 45.776144 ], [ -69.786530, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.789276, 45.777102 ], [ -69.788589, 45.777581 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.778060 ], [ -69.787216, 45.780933 ], [ -69.785156, 45.780933 ], [ -69.784470, 45.782848 ], [ -69.785843, 45.783806 ], [ -69.787903, 45.783806 ], [ -69.788589, 45.784764 ], [ -69.788589, 45.785243 ], [ -69.785156, 45.785721 ], [ -69.784470, 45.784285 ], [ -69.784470, 45.783806 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.783783, 45.781891 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.777102 ], [ -69.783096, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.781036, 45.776623 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.779663, 45.772313 ], [ -69.777603, 45.770876 ], [ -69.776917, 45.768002 ], [ -69.774170, 45.766086 ], [ -69.774857, 45.765128 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.763691 ], [ -69.767990, 45.763212 ], [ -69.769363, 45.761775 ], [ -69.762497, 45.761296 ], [ -69.760437, 45.762254 ], [ -69.758377, 45.761775 ], [ -69.752884, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.763212 ], [ -69.747391, 45.761775 ], [ -69.747391, 45.759859 ], [ -69.743958, 45.760338 ], [ -69.741211, 45.755547 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.730225, 45.759380 ], [ -69.730225, 45.760338 ], [ -69.726791, 45.762254 ], [ -69.724731, 45.766086 ], [ -69.726105, 45.771834 ], [ -69.728165, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738464, 45.782848 ], [ -69.733658, 45.783806 ], [ -69.723358, 45.783327 ], [ -69.723358, 45.786200 ], [ -69.720612, 45.788594 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791467 ], [ -69.718552, 45.797691 ], [ -69.716492, 45.801042 ], [ -69.714432, 45.801999 ], [ -69.713745, 45.804871 ], [ -69.708939, 45.811093 ], [ -69.709625, 45.815401 ], [ -69.713058, 45.819708 ], [ -69.713058, 45.823536 ], [ -69.715805, 45.825928 ], [ -69.716492, 45.829278 ], [ -69.718552, 45.829756 ], [ -69.718552, 45.831670 ], [ -69.719925, 45.834062 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.723358, 45.834062 ], [ -69.721985, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.718552, 45.833584 ], [ -69.715118, 45.832148 ], [ -69.712372, 45.832627 ], [ -69.712372, 45.834062 ], [ -69.708252, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.707565, 45.839324 ], [ -69.707565, 45.842673 ], [ -69.704819, 45.846499 ], [ -69.708252, 45.846978 ], [ -69.708939, 45.850804 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.854630 ], [ -69.709625, 45.856065 ], [ -69.711685, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.715118, 45.862281 ], [ -69.717865, 45.866106 ], [ -69.725418, 45.866106 ], [ -69.726105, 45.867541 ], [ -69.724731, 45.868019 ], [ -69.724045, 45.870888 ], [ -69.725418, 45.872322 ], [ -69.724731, 45.874234 ], [ -69.727478, 45.874712 ], [ -69.727478, 45.876146 ], [ -69.728165, 45.875668 ], [ -69.731598, 45.877103 ], [ -69.734344, 45.877103 ], [ -69.735031, 45.879015 ], [ -69.733658, 45.879493 ], [ -69.737778, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.737091, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881405 ], [ -69.735718, 45.880449 ], [ -69.733658, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.717178, 45.882839 ], [ -69.716492, 45.883795 ], [ -69.713058, 45.883317 ], [ -69.713058, 45.884273 ], [ -69.709625, 45.885707 ], [ -69.706192, 45.885229 ], [ -69.702072, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702072, 45.879971 ], [ -69.702072, 45.879015 ], [ -69.702759, 45.879015 ], [ -69.702759, 45.877103 ], [ -69.700699, 45.874234 ], [ -69.701385, 45.872800 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868975 ], [ -69.697266, 45.867541 ], [ -69.697266, 45.864672 ], [ -69.694519, 45.864194 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.691772, 45.860847 ], [ -69.692459, 45.859412 ], [ -69.689713, 45.858456 ], [ -69.689713, 45.855108 ], [ -69.690399, 45.854630 ], [ -69.686966, 45.854152 ], [ -69.686279, 45.853195 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.683533, 45.851282 ], [ -69.682846, 45.852239 ], [ -69.679413, 45.851760 ], [ -69.678040, 45.853195 ], [ -69.676666, 45.853195 ], [ -69.676666, 45.851760 ], [ -69.674606, 45.852239 ], [ -69.674606, 45.857499 ], [ -69.672546, 45.858934 ], [ -69.673920, 45.861803 ] ], [ [ -69.732971, 45.657248 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732971, 45.657248 ] ] ], [ [ [ -69.789963, 45.783806 ], [ -69.792023, 45.783806 ], [ -69.794083, 45.782848 ], [ -69.796829, 45.783327 ], [ -69.797516, 45.783327 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.796143, 45.785721 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.791336, 45.784285 ], [ -69.789963, 45.783806 ] ] ], [ [ [ -69.826355, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827728, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.828415, 45.739256 ], [ -69.830475, 45.738297 ], [ -69.833221, 45.738777 ], [ -69.827042, 45.740214 ], [ -69.826355, 45.741173 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.801636, 45.785721 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785721 ] ] ], [ [ [ -69.788589, 45.784764 ], [ -69.788589, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.784764 ] ] ], [ [ [ -69.809189, 45.722960 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722480 ], [ -69.809189, 45.722960 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798203, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.673920, 45.861803 ], [ -69.673920, 45.862759 ], [ -69.670486, 45.860847 ], [ -69.667740, 45.862281 ], [ -69.664993, 45.862281 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662933, 45.861325 ], [ -69.660187, 45.861325 ], [ -69.660187, 45.860847 ], [ -69.658813, 45.861325 ], [ -69.656754, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.655380, 45.861803 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.863238 ], [ -69.654007, 45.864194 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.863238 ], [ -69.648514, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.647141, 45.863238 ], [ -69.684219, 45.984081 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.719925, 46.394306 ], [ -69.721298, 46.574439 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.017487, 46.572551 ], [ -68.821793, 46.572551 ], [ -68.822479, 46.402829 ], [ -68.821793, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.211675 ], [ -68.823166, 46.113706 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.685077 ], [ -68.959122, 45.662527 ], [ -68.950882, 45.638527 ], [ -68.952255, 45.580887 ], [ -68.965302, 45.512602 ], [ -68.880157, 45.524149 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433635 ], [ -68.804626, 45.341046 ], [ -68.776474, 45.240569 ], [ -68.881531, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.990707, 45.125382 ], [ -69.062119, 45.114238 ], [ -69.242020, 45.089036 ], [ -69.492645, 45.055091 ], [ -69.500198, 45.054121 ], [ -69.499512, 45.050240 ], [ -69.632034, 45.050240 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.687653, 45.208166 ], [ -69.684219, 45.213004 ], [ -69.702759, 45.268605 ], [ -69.708939, 45.291313 ], [ -69.700699, 45.292762 ], [ -69.732971, 45.389289 ], [ -69.780350, 45.542908 ], [ -69.773483, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.775543, 45.553006 ], [ -69.774170, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.764557, 45.554929 ], [ -69.761124, 45.554449 ], [ -69.754257, 45.557814 ], [ -69.749451, 45.559256 ], [ -69.748077, 45.560699 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572716 ], [ -69.726791, 45.574158 ], [ -69.726791, 45.577042 ], [ -69.724045, 45.581848 ], [ -69.719925, 45.583290 ], [ -69.717178, 45.585212 ], [ -69.715118, 45.585693 ], [ -69.714432, 45.588576 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.595303 ], [ -69.715118, 45.597224 ], [ -69.717865, 45.597705 ], [ -69.719238, 45.600587 ], [ -69.721298, 45.602989 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.608754 ], [ -69.717865, 45.611156 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.613077 ], [ -69.714432, 45.612116 ], [ -69.713058, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.708939, 45.616919 ], [ -69.705505, 45.618360 ], [ -69.704819, 45.619801 ], [ -69.703445, 45.620761 ], [ -69.704132, 45.621722 ], [ -69.702072, 45.628445 ], [ -69.707565, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.708252, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.712372, 45.638047 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.716492, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.713058, 45.647648 ], [ -69.714432, 45.650528 ], [ -69.711685, 45.650528 ], [ -69.706879, 45.647168 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.696579, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.692459, 45.645728 ], [ -69.698639, 45.649568 ], [ -69.701385, 45.651968 ], [ -69.703445, 45.651968 ], [ -69.705505, 45.653408 ], [ -69.706192, 45.652928 ], [ -69.713058, 45.655808 ], [ -69.719238, 45.656288 ], [ -69.723358, 45.657728 ], [ -69.726105, 45.656768 ], [ -69.732971, 45.657248 ], [ -69.732285, 45.655808 ], [ -69.734344, 45.654368 ], [ -69.736404, 45.651008 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.653408 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657728 ], [ -69.741898, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.741898, 45.666846 ], [ -69.739838, 45.667325 ], [ -69.740524, 45.669725 ], [ -69.739151, 45.671644 ], [ -69.739151, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.738464, 45.676921 ], [ -69.739151, 45.679800 ], [ -69.746017, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.754944, 45.679800 ], [ -69.757004, 45.679800 ], [ -69.760437, 45.682678 ], [ -69.764557, 45.682678 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.685077 ], [ -69.774170, 45.686036 ], [ -69.774857, 45.687955 ], [ -69.776917, 45.687955 ], [ -69.779663, 45.690353 ], [ -69.783096, 45.690833 ], [ -69.785843, 45.692751 ], [ -69.785843, 45.699945 ], [ -69.789963, 45.702343 ], [ -69.790649, 45.704741 ], [ -69.790649, 45.710495 ], [ -69.798203, 45.715289 ], [ -69.803009, 45.715289 ], [ -69.805756, 45.717207 ], [ -69.805756, 45.720563 ], [ -69.807816, 45.722480 ], [ -69.805069, 45.722001 ], [ -69.803696, 45.720563 ], [ -69.804382, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.800262, 45.722960 ], [ -69.800262, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.797516, 45.724398 ], [ -69.792709, 45.725836 ], [ -69.791336, 45.726794 ], [ -69.792023, 45.728712 ], [ -69.794083, 45.728712 ], [ -69.800262, 45.733505 ], [ -69.809875, 45.733505 ], [ -69.812622, 45.735901 ], [ -69.810562, 45.736380 ], [ -69.811935, 45.737339 ], [ -69.820175, 45.739256 ], [ -69.820175, 45.740693 ], [ -69.821548, 45.740693 ], [ -69.824295, 45.742610 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.743089 ], [ -69.822922, 45.743569 ], [ -69.822235, 45.745006 ], [ -69.817429, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.745965 ], [ -69.806442, 45.747881 ], [ -69.805756, 45.748839 ], [ -69.801636, 45.749319 ], [ -69.796829, 45.746444 ], [ -69.793396, 45.745965 ], [ -69.789963, 45.747402 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.749798 ], [ -69.791336, 45.750277 ], [ -69.792709, 45.751235 ], [ -69.792023, 45.753152 ], [ -69.789963, 45.754589 ], [ -69.789963, 45.756026 ], [ -69.793396, 45.757463 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.792709, 45.759859 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.790649, 45.764649 ], [ -69.792023, 45.764649 ], [ -69.791336, 45.766086 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.768002 ], [ -69.789276, 45.768960 ], [ -69.787216, 45.768481 ], [ -69.782410, 45.769918 ], [ -69.784470, 45.772313 ], [ -69.783096, 45.772792 ], [ -69.781723, 45.774228 ], [ -69.784470, 45.773270 ], [ -69.785156, 45.774707 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.776144 ], [ -69.786530, 45.776144 ], [ -69.786530, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.789276, 45.777102 ], [ -69.788589, 45.777581 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.778060 ], [ -69.787216, 45.780933 ], [ -69.785156, 45.780933 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.777102 ], [ -69.783096, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.781036, 45.776623 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.779663, 45.772313 ], [ -69.777603, 45.770876 ], [ -69.776917, 45.768002 ], [ -69.774170, 45.766086 ], [ -69.774857, 45.765128 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.763691 ], [ -69.767990, 45.763212 ], [ -69.769363, 45.761775 ], [ -69.762497, 45.761296 ], [ -69.760437, 45.762254 ], [ -69.758377, 45.761775 ], [ -69.752884, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.750137, 45.763212 ], [ -69.747391, 45.761775 ], [ -69.747391, 45.759859 ], [ -69.743958, 45.760338 ], [ -69.741211, 45.755547 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.730225, 45.759380 ], [ -69.730225, 45.760338 ], [ -69.726791, 45.762254 ], [ -69.724731, 45.766086 ], [ -69.726105, 45.771834 ], [ -69.728165, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738464, 45.782848 ], [ -69.733658, 45.783806 ], [ -69.723358, 45.783327 ], [ -69.723358, 45.786200 ], [ -69.720612, 45.788594 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791467 ], [ -69.718552, 45.797691 ], [ -69.716492, 45.801042 ], [ -69.714432, 45.801999 ], [ -69.713745, 45.804871 ], [ -69.708939, 45.811093 ], [ -69.709625, 45.815401 ], [ -69.713058, 45.819708 ], [ -69.713058, 45.823536 ], [ -69.715805, 45.825928 ], [ -69.716492, 45.829278 ], [ -69.718552, 45.829756 ], [ -69.718552, 45.831670 ], [ -69.719925, 45.834062 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.723358, 45.834062 ], [ -69.721985, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.718552, 45.833584 ], [ -69.715118, 45.832148 ], [ -69.712372, 45.832627 ], [ -69.712372, 45.834062 ], [ -69.708252, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.707565, 45.839324 ], [ -69.707565, 45.842673 ], [ -69.704819, 45.846499 ], [ -69.708252, 45.846978 ], [ -69.708939, 45.850804 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.854630 ], [ -69.709625, 45.856065 ], [ -69.711685, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.715118, 45.862281 ], [ -69.717865, 45.866106 ], [ -69.725418, 45.866106 ], [ -69.726105, 45.867541 ], [ -69.724731, 45.868019 ], [ -69.724045, 45.870888 ], [ -69.725418, 45.872322 ], [ -69.724731, 45.874234 ], [ -69.727478, 45.874712 ], [ -69.727478, 45.876146 ], [ -69.728165, 45.875668 ], [ -69.731598, 45.877103 ], [ -69.734344, 45.877103 ], [ -69.735031, 45.879015 ], [ -69.733658, 45.879493 ], [ -69.737778, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.737091, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881405 ], [ -69.735718, 45.880449 ], [ -69.733658, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.717178, 45.882839 ], [ -69.716492, 45.883795 ], [ -69.713058, 45.883317 ], [ -69.713058, 45.884273 ], [ -69.709625, 45.885707 ], [ -69.706192, 45.885229 ], [ -69.702072, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702072, 45.879971 ], [ -69.702072, 45.879015 ], [ -69.702759, 45.879015 ], [ -69.702759, 45.877103 ], [ -69.700699, 45.874234 ], [ -69.701385, 45.872800 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868975 ], [ -69.697266, 45.867541 ], [ -69.697266, 45.864672 ], [ -69.694519, 45.864194 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.691772, 45.860847 ], [ -69.692459, 45.859412 ], [ -69.689713, 45.858456 ], [ -69.689713, 45.855108 ], [ -69.690399, 45.854630 ], [ -69.686966, 45.854152 ], [ -69.686279, 45.853195 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.683533, 45.851282 ], [ -69.682846, 45.852239 ], [ -69.679413, 45.851760 ], [ -69.678040, 45.853195 ], [ -69.676666, 45.853195 ], [ -69.676666, 45.851760 ], [ -69.674606, 45.852239 ], [ -69.674606, 45.857499 ], [ -69.672546, 45.858934 ], [ -69.673920, 45.861803 ] ], [ [ -69.732971, 45.657248 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732971, 45.657248 ] ] ], [ [ [ -69.788589, 45.784764 ], [ -69.788589, 45.785243 ], [ -69.785156, 45.785721 ], [ -69.784470, 45.784285 ], [ -69.784470, 45.783806 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.783783, 45.781891 ], [ -69.785156, 45.780933 ], [ -69.784470, 45.782848 ], [ -69.785843, 45.783806 ], [ -69.787903, 45.783806 ], [ -69.788589, 45.784764 ] ] ], [ [ [ -69.797516, 45.783806 ], [ -69.796829, 45.783327 ], [ -69.797516, 45.783327 ], [ -69.797516, 45.783806 ] ] ], [ [ [ -69.826355, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827728, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.828415, 45.739256 ], [ -69.830475, 45.738297 ], [ -69.833221, 45.738777 ], [ -69.827042, 45.740214 ], [ -69.826355, 45.741173 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.801636, 45.785721 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785721 ] ] ], [ [ [ -69.788589, 45.784764 ], [ -69.788589, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.784764 ] ] ], [ [ [ -69.809189, 45.722960 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722480 ], [ -69.809189, 45.722960 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798203, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.796143, 45.785721 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.791336, 45.784285 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783806 ], [ -69.794083, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.796829, 45.783327 ], [ -69.796143, 45.784285 ], [ -69.797516, 45.783806 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.732971, 45.657248 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657248 ] ] ], [ [ [ -69.499512, 45.050240 ], [ -69.500198, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.355316, 45.072066 ], [ -69.349136, 45.050240 ], [ -69.499512, 45.050240 ] ] ], [ [ [ -70.108566, 46.389096 ], [ -70.109940, 46.390990 ], [ -70.107193, 46.390990 ], [ -70.107880, 46.392885 ], [ -70.105133, 46.393832 ], [ -70.102386, 46.396673 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099640, 46.403303 ], [ -70.101013, 46.403303 ], [ -70.098267, 46.404250 ], [ -70.100327, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.097580, 46.405670 ], [ -70.096207, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.407564 ], [ -70.094833, 46.408511 ], [ -70.097580, 46.409458 ], [ -70.096893, 46.409931 ], [ -70.092773, 46.409458 ], [ -70.089340, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.410878 ], [ -70.076981, 46.409931 ], [ -70.072174, 46.411352 ], [ -70.067368, 46.412298 ], [ -70.065308, 46.414192 ], [ -70.061874, 46.414192 ], [ -70.057068, 46.415612 ], [ -70.023422, 46.573495 ], [ -69.800949, 46.573495 ], [ -69.721298, 46.574439 ], [ -69.719925, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684219, 45.984081 ], [ -69.647141, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.648514, 45.863238 ], [ -69.651260, 45.863238 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.864194 ], [ -69.654007, 45.863238 ], [ -69.655380, 45.862759 ], [ -69.655380, 45.861803 ], [ -69.657440, 45.862281 ], [ -69.656754, 45.860369 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.662933, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.664993, 45.862281 ], [ -69.667740, 45.862281 ], [ -69.670486, 45.860847 ], [ -69.673920, 45.862759 ], [ -69.673920, 45.861803 ], [ -69.672546, 45.859890 ], [ -69.674606, 45.857499 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853195 ], [ -69.678040, 45.853195 ], [ -69.678726, 45.852239 ], [ -69.682846, 45.852239 ], [ -69.683533, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853195 ], [ -69.686966, 45.854152 ], [ -69.690399, 45.854630 ], [ -69.689713, 45.855108 ], [ -69.689713, 45.858456 ], [ -69.692459, 45.859412 ], [ -69.691772, 45.860847 ], [ -69.694519, 45.862281 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.864194 ], [ -69.697266, 45.864672 ], [ -69.697266, 45.867541 ], [ -69.699326, 45.868975 ], [ -69.699326, 45.870410 ], [ -69.701385, 45.872800 ], [ -69.700699, 45.874234 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.879015 ], [ -69.702072, 45.879015 ], [ -69.702072, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.702072, 45.886185 ], [ -69.706192, 45.885229 ], [ -69.709625, 45.885707 ], [ -69.711685, 45.885229 ], [ -69.713058, 45.883317 ], [ -69.716492, 45.883795 ], [ -69.717178, 45.882839 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.733658, 45.880449 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881405 ], [ -69.737091, 45.880927 ], [ -69.737091, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.880449 ], [ -69.733658, 45.879493 ], [ -69.735031, 45.879015 ], [ -69.734344, 45.877103 ], [ -69.731598, 45.877103 ], [ -69.728165, 45.875668 ], [ -69.727478, 45.876146 ], [ -69.727478, 45.874712 ], [ -69.724731, 45.874234 ], [ -69.725418, 45.872322 ], [ -69.724045, 45.870888 ], [ -69.724731, 45.868019 ], [ -69.726105, 45.867541 ], [ -69.725418, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.715118, 45.862281 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.856543 ], [ -69.709625, 45.856065 ], [ -69.708939, 45.854630 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.704819, 45.846499 ], [ -69.707565, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.836932 ], [ -69.712372, 45.834062 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832148 ], [ -69.718552, 45.833584 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721985, 45.835019 ], [ -69.723358, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.719925, 45.834062 ], [ -69.718552, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829278 ], [ -69.715805, 45.825928 ], [ -69.713058, 45.823536 ], [ -69.713058, 45.819708 ], [ -69.709625, 45.815401 ], [ -69.708939, 45.811093 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801999 ], [ -69.716492, 45.801042 ], [ -69.718552, 45.797691 ], [ -69.719238, 45.791467 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788594 ], [ -69.723358, 45.786200 ], [ -69.723358, 45.783327 ], [ -69.733658, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.728165, 45.775186 ], [ -69.728165, 45.773270 ], [ -69.726105, 45.771834 ], [ -69.724731, 45.766086 ], [ -69.726791, 45.762254 ], [ -69.730225, 45.760338 ], [ -69.730225, 45.759380 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.755547 ], [ -69.743958, 45.760338 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761775 ], [ -69.750137, 45.763212 ], [ -69.751511, 45.766086 ], [ -69.750824, 45.763691 ], [ -69.752884, 45.761775 ], [ -69.758377, 45.761775 ], [ -69.760437, 45.762254 ], [ -69.762497, 45.761296 ], [ -69.769363, 45.761775 ], [ -69.767990, 45.763212 ], [ -69.771423, 45.763691 ], [ -69.772797, 45.765128 ], [ -69.774857, 45.765128 ], [ -69.774170, 45.766086 ], [ -69.776917, 45.768002 ], [ -69.777603, 45.770876 ], [ -69.779663, 45.772313 ], [ -69.781036, 45.775665 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.776623 ], [ -69.781723, 45.778539 ], [ -69.783096, 45.778539 ], [ -69.783783, 45.777102 ], [ -69.785156, 45.777102 ], [ -69.785843, 45.779496 ], [ -69.783783, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.781723, 45.781891 ], [ -69.784470, 45.783806 ], [ -69.784470, 45.784285 ], [ -69.785156, 45.785721 ], [ -69.788589, 45.785243 ], [ -69.788589, 45.784764 ], [ -69.787903, 45.783806 ], [ -69.785843, 45.783806 ], [ -69.784470, 45.782848 ], [ -69.785156, 45.780933 ], [ -69.787216, 45.780933 ], [ -69.788589, 45.778060 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.777581 ], [ -69.789276, 45.777102 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.786530, 45.775186 ], [ -69.786530, 45.776144 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.774707 ], [ -69.784470, 45.773270 ], [ -69.781723, 45.774228 ], [ -69.782410, 45.773270 ], [ -69.784470, 45.772313 ], [ -69.782410, 45.769918 ], [ -69.787216, 45.768481 ], [ -69.789276, 45.768960 ], [ -69.790649, 45.768002 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.766086 ], [ -69.792023, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.760338 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.757463 ], [ -69.789963, 45.756026 ], [ -69.789963, 45.754589 ], [ -69.792023, 45.753152 ], [ -69.792709, 45.751235 ], [ -69.791336, 45.750277 ], [ -69.788589, 45.749798 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747402 ], [ -69.793396, 45.745965 ], [ -69.796829, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.805756, 45.748839 ], [ -69.806442, 45.747881 ], [ -69.812622, 45.745965 ], [ -69.812622, 45.747402 ], [ -69.817429, 45.747402 ], [ -69.821548, 45.745485 ], [ -69.822922, 45.743569 ], [ -69.825668, 45.743089 ], [ -69.826355, 45.741173 ], [ -69.824295, 45.742610 ], [ -69.821548, 45.740693 ], [ -69.820175, 45.740693 ], [ -69.820175, 45.739256 ], [ -69.811935, 45.737339 ], [ -69.810562, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733505 ], [ -69.800262, 45.733505 ], [ -69.794083, 45.728712 ], [ -69.792023, 45.728712 ], [ -69.791336, 45.726794 ], [ -69.792709, 45.725836 ], [ -69.797516, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.724398 ], [ -69.800262, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722960 ], [ -69.803696, 45.720563 ], [ -69.805069, 45.722001 ], [ -69.807816, 45.722480 ], [ -69.805756, 45.720563 ], [ -69.805756, 45.717207 ], [ -69.803009, 45.715289 ], [ -69.798203, 45.715289 ], [ -69.790649, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789963, 45.702343 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.692751 ], [ -69.783096, 45.690833 ], [ -69.779663, 45.690353 ], [ -69.776917, 45.687955 ], [ -69.774857, 45.687955 ], [ -69.774170, 45.686036 ], [ -69.769363, 45.685077 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682678 ], [ -69.760437, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754944, 45.679800 ], [ -69.749451, 45.681239 ], [ -69.746017, 45.681239 ], [ -69.739151, 45.679800 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.739151, 45.675482 ], [ -69.739151, 45.671644 ], [ -69.740524, 45.669725 ], [ -69.739838, 45.667325 ], [ -69.741898, 45.666846 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.657728 ], [ -69.739838, 45.657728 ], [ -69.739838, 45.656768 ], [ -69.744644, 45.653408 ], [ -69.743958, 45.651968 ], [ -69.736404, 45.651008 ], [ -69.734344, 45.654368 ], [ -69.732285, 45.655808 ], [ -69.732971, 45.657248 ], [ -69.728165, 45.656768 ], [ -69.723358, 45.657728 ], [ -69.719238, 45.656288 ], [ -69.713058, 45.655808 ], [ -69.706192, 45.652928 ], [ -69.705505, 45.653408 ], [ -69.703445, 45.651968 ], [ -69.701385, 45.651968 ], [ -69.700012, 45.650048 ], [ -69.692459, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.696579, 45.640928 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706879, 45.647168 ], [ -69.711685, 45.650528 ], [ -69.714432, 45.650528 ], [ -69.713058, 45.647648 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.648128 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712372, 45.638047 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.635647 ], [ -69.707565, 45.632766 ], [ -69.702072, 45.628445 ], [ -69.704132, 45.621722 ], [ -69.703445, 45.620761 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618840 ], [ -69.708939, 45.616919 ], [ -69.709625, 45.613557 ], [ -69.711685, 45.613077 ], [ -69.713058, 45.614037 ], [ -69.714432, 45.612116 ], [ -69.714432, 45.613077 ], [ -69.717865, 45.612116 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.611156 ], [ -69.717865, 45.608754 ], [ -69.720612, 45.608274 ], [ -69.721298, 45.602989 ], [ -69.719238, 45.600587 ], [ -69.717865, 45.597705 ], [ -69.715118, 45.597224 ], [ -69.713745, 45.595303 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.588576 ], [ -69.715118, 45.585693 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583290 ], [ -69.724045, 45.581848 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.574158 ], [ -69.728851, 45.572716 ], [ -69.728165, 45.570313 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.748077, 45.560699 ], [ -69.749451, 45.559256 ], [ -69.754257, 45.557814 ], [ -69.761124, 45.554449 ], [ -69.764557, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.774170, 45.554929 ], [ -69.775543, 45.553006 ], [ -69.775543, 45.549640 ], [ -69.773483, 45.545793 ], [ -69.780350, 45.542908 ], [ -69.732971, 45.389289 ], [ -69.701385, 45.295660 ], [ -69.700699, 45.292762 ], [ -69.708939, 45.291796 ], [ -69.705505, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.684219, 45.212520 ], [ -69.687653, 45.208166 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.632034, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128773 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152506 ], [ -70.367432, 45.835019 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.267868, 45.886185 ], [ -70.262375, 45.888096 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897655 ], [ -70.261002, 45.899088 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.907689 ], [ -70.256195, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.256195, 45.929662 ], [ -70.252075, 45.933960 ], [ -70.249329, 45.934916 ], [ -70.247269, 45.936348 ], [ -70.243149, 45.937303 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.943033 ], [ -70.239716, 45.943988 ], [ -70.241776, 45.944943 ], [ -70.244522, 45.944943 ], [ -70.242462, 45.946853 ], [ -70.248642, 45.949717 ], [ -70.249329, 45.952582 ], [ -70.251389, 45.953537 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.955924 ], [ -70.254822, 45.954491 ], [ -70.256195, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.308380, 46.061797 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.260315, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099900 ], [ -70.254822, 46.099900 ], [ -70.253448, 46.100376 ], [ -70.252762, 46.106089 ], [ -70.253448, 46.107993 ], [ -70.254822, 46.107993 ], [ -70.255508, 46.108945 ], [ -70.255508, 46.110850 ], [ -70.254135, 46.112754 ], [ -70.254822, 46.114182 ], [ -70.252762, 46.115134 ], [ -70.252762, 46.116562 ], [ -70.251389, 46.118466 ], [ -70.252075, 46.119893 ], [ -70.248642, 46.122749 ], [ -70.247955, 46.126080 ], [ -70.247269, 46.125605 ], [ -70.245895, 46.126556 ], [ -70.245209, 46.128936 ], [ -70.243835, 46.128936 ], [ -70.244522, 46.131315 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.241776, 46.134646 ], [ -70.242462, 46.135598 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.146540 ], [ -70.239716, 46.149394 ], [ -70.241089, 46.149394 ], [ -70.240402, 46.151297 ], [ -70.241776, 46.151297 ], [ -70.241776, 46.150346 ], [ -70.243149, 46.149870 ], [ -70.244522, 46.151773 ], [ -70.245209, 46.151297 ], [ -70.246582, 46.151297 ], [ -70.247269, 46.152248 ], [ -70.248642, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.153675 ], [ -70.250702, 46.154627 ], [ -70.250015, 46.156054 ], [ -70.252762, 46.157481 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.256195, 46.159859 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.278854, 46.175551 ], [ -70.280228, 46.177929 ], [ -70.282288, 46.178880 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191715 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.256195, 46.244926 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246351 ], [ -70.251389, 46.249200 ], [ -70.252075, 46.252523 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.255372 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261069 ], [ -70.250702, 46.263443 ], [ -70.248642, 46.265341 ], [ -70.249329, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.273411 ], [ -70.241089, 46.273411 ], [ -70.241089, 46.275309 ], [ -70.239716, 46.275784 ], [ -70.240402, 46.279580 ], [ -70.238342, 46.281004 ], [ -70.235596, 46.281479 ], [ -70.232849, 46.284800 ], [ -70.232162, 46.291443 ], [ -70.229416, 46.291918 ], [ -70.229416, 46.292392 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295713 ], [ -70.215683, 46.294764 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297611 ], [ -70.212250, 46.299034 ], [ -70.210876, 46.298560 ], [ -70.206070, 46.299983 ], [ -70.206070, 46.300457 ], [ -70.207443, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.312790 ], [ -70.203323, 46.315161 ], [ -70.207443, 46.319430 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.205383, 46.334129 ], [ -70.202637, 46.335551 ], [ -70.201263, 46.337447 ], [ -70.195770, 46.341239 ], [ -70.196457, 46.343610 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.348350 ], [ -70.192337, 46.349297 ], [ -70.191650, 46.350245 ], [ -70.190277, 46.350719 ], [ -70.188904, 46.350245 ], [ -70.184784, 46.352141 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354511 ], [ -70.177231, 46.355933 ], [ -70.175858, 46.358302 ], [ -70.173111, 46.359724 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357828 ], [ -70.164871, 46.359250 ], [ -70.163498, 46.359250 ], [ -70.162125, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359724 ], [ -70.158691, 46.361145 ], [ -70.156631, 46.361619 ], [ -70.154572, 46.360198 ], [ -70.148392, 46.359250 ], [ -70.144958, 46.362567 ], [ -70.142212, 46.362567 ], [ -70.140839, 46.363041 ], [ -70.141525, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.369200 ], [ -70.131912, 46.370148 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.379623 ], [ -70.126419, 46.381991 ], [ -70.116806, 46.385781 ], [ -70.116806, 46.388622 ], [ -70.115433, 46.388149 ], [ -70.114746, 46.385307 ], [ -70.111313, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112686, 46.388622 ], [ -70.110626, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108566, 46.389096 ] ], [ [ -69.789963, 45.783806 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785721 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.783327 ], [ -69.796829, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ] ], [ [ -69.826355, 45.741173 ], [ -69.827042, 45.740214 ], [ -69.833221, 45.738777 ], [ -69.830475, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.827728, 45.739256 ], [ -69.825668, 45.739735 ], [ -69.826355, 45.741173 ] ], [ [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798889, 45.784764 ] ], [ [ -69.801636, 45.785721 ], [ -69.801636, 45.785243 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785721 ] ], [ [ -69.788589, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.782848 ], [ -69.788589, 45.784764 ] ], [ [ -69.809189, 45.722960 ], [ -69.807816, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.809189, 45.722960 ] ], [ [ -70.108566, 46.389096 ], [ -70.108566, 46.387675 ], [ -70.107880, 46.388149 ], [ -70.108566, 46.389096 ] ], [ [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798203, 45.784764 ], [ -69.798889, 45.784764 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.108566, 46.389096 ], [ -70.109940, 46.390990 ], [ -70.107193, 46.390990 ], [ -70.107880, 46.392885 ], [ -70.105133, 46.393832 ], [ -70.102386, 46.396673 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099640, 46.403303 ], [ -70.101013, 46.403303 ], [ -70.098267, 46.404250 ], [ -70.100327, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.097580, 46.405670 ], [ -70.096207, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.407564 ], [ -70.094833, 46.408511 ], [ -70.097580, 46.409458 ], [ -70.096893, 46.409931 ], [ -70.092773, 46.409458 ], [ -70.089340, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.410878 ], [ -70.076981, 46.409931 ], [ -70.072174, 46.411352 ], [ -70.067368, 46.412298 ], [ -70.065308, 46.414192 ], [ -70.061874, 46.414192 ], [ -70.057068, 46.415612 ], [ -70.023422, 46.573495 ], [ -69.800949, 46.573495 ], [ -69.721298, 46.574439 ], [ -69.719925, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684219, 45.984081 ], [ -69.647141, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.648514, 45.863238 ], [ -69.651260, 45.863238 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.864194 ], [ -69.654007, 45.863238 ], [ -69.655380, 45.862759 ], [ -69.655380, 45.861803 ], [ -69.657440, 45.862281 ], [ -69.656754, 45.860369 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.662933, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.664993, 45.862281 ], [ -69.667740, 45.862281 ], [ -69.670486, 45.860847 ], [ -69.673920, 45.862759 ], [ -69.673920, 45.861803 ], [ -69.672546, 45.859890 ], [ -69.674606, 45.857499 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853195 ], [ -69.678040, 45.853195 ], [ -69.678726, 45.852239 ], [ -69.682846, 45.852239 ], [ -69.683533, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853195 ], [ -69.686966, 45.854152 ], [ -69.690399, 45.854630 ], [ -69.689713, 45.855108 ], [ -69.689713, 45.858456 ], [ -69.692459, 45.859412 ], [ -69.691772, 45.860847 ], [ -69.694519, 45.862281 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.864194 ], [ -69.697266, 45.864672 ], [ -69.697266, 45.867541 ], [ -69.699326, 45.868975 ], [ -69.699326, 45.870410 ], [ -69.701385, 45.872800 ], [ -69.700699, 45.874234 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.879015 ], [ -69.702072, 45.879015 ], [ -69.702072, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.702072, 45.886185 ], [ -69.706192, 45.885229 ], [ -69.709625, 45.885707 ], [ -69.711685, 45.885229 ], [ -69.713058, 45.883317 ], [ -69.716492, 45.883795 ], [ -69.717178, 45.882839 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.733658, 45.880449 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881405 ], [ -69.737091, 45.880927 ], [ -69.737091, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.880449 ], [ -69.733658, 45.879493 ], [ -69.735031, 45.879015 ], [ -69.734344, 45.877103 ], [ -69.731598, 45.877103 ], [ -69.728165, 45.875668 ], [ -69.727478, 45.876146 ], [ -69.727478, 45.874712 ], [ -69.724731, 45.874234 ], [ -69.725418, 45.872322 ], [ -69.724045, 45.870888 ], [ -69.724731, 45.868019 ], [ -69.726105, 45.867541 ], [ -69.725418, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.715118, 45.862281 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.856543 ], [ -69.709625, 45.856065 ], [ -69.708939, 45.854630 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.704819, 45.846499 ], [ -69.707565, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.836932 ], [ -69.712372, 45.834062 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832148 ], [ -69.718552, 45.833584 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721985, 45.835019 ], [ -69.723358, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.719925, 45.834062 ], [ -69.718552, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829278 ], [ -69.715805, 45.825928 ], [ -69.713058, 45.823536 ], [ -69.713058, 45.819708 ], [ -69.709625, 45.815401 ], [ -69.708939, 45.811093 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801999 ], [ -69.716492, 45.801042 ], [ -69.718552, 45.797691 ], [ -69.719238, 45.791467 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788594 ], [ -69.723358, 45.786200 ], [ -69.723358, 45.783327 ], [ -69.733658, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.728165, 45.775186 ], [ -69.728165, 45.773270 ], [ -69.726105, 45.771834 ], [ -69.724731, 45.766086 ], [ -69.726791, 45.762254 ], [ -69.730225, 45.760338 ], [ -69.730225, 45.759380 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.755547 ], [ -69.743958, 45.760338 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761775 ], [ -69.750137, 45.763212 ], [ -69.750824, 45.763691 ], [ -69.752884, 45.761775 ], [ -69.758377, 45.761775 ], [ -69.760437, 45.762254 ], [ -69.762497, 45.761296 ], [ -69.769363, 45.761775 ], [ -69.767990, 45.763212 ], [ -69.771423, 45.763691 ], [ -69.772797, 45.765128 ], [ -69.774857, 45.765128 ], [ -69.774170, 45.766086 ], [ -69.776917, 45.768002 ], [ -69.777603, 45.770876 ], [ -69.779663, 45.772313 ], [ -69.781036, 45.775665 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.776623 ], [ -69.781723, 45.778539 ], [ -69.783096, 45.778539 ], [ -69.783783, 45.777102 ], [ -69.785156, 45.777102 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.780933 ], [ -69.787216, 45.780933 ], [ -69.788589, 45.778060 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.777581 ], [ -69.789276, 45.777102 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.786530, 45.775186 ], [ -69.786530, 45.776144 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.774707 ], [ -69.784470, 45.773270 ], [ -69.781723, 45.774228 ], [ -69.782410, 45.773270 ], [ -69.784470, 45.772313 ], [ -69.782410, 45.769918 ], [ -69.787216, 45.768481 ], [ -69.789276, 45.768960 ], [ -69.790649, 45.768002 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.766086 ], [ -69.792023, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.760338 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.757463 ], [ -69.789963, 45.756026 ], [ -69.789963, 45.754589 ], [ -69.792023, 45.753152 ], [ -69.792709, 45.751235 ], [ -69.791336, 45.750277 ], [ -69.788589, 45.749798 ], [ -69.789963, 45.747881 ], [ -69.789963, 45.747402 ], [ -69.793396, 45.745965 ], [ -69.796829, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.805756, 45.748839 ], [ -69.806442, 45.747881 ], [ -69.812622, 45.745965 ], [ -69.812622, 45.747402 ], [ -69.817429, 45.747402 ], [ -69.821548, 45.745485 ], [ -69.822922, 45.743569 ], [ -69.825668, 45.743089 ], [ -69.826355, 45.741173 ], [ -69.824295, 45.742610 ], [ -69.821548, 45.740693 ], [ -69.820175, 45.740693 ], [ -69.820175, 45.739256 ], [ -69.811935, 45.737339 ], [ -69.810562, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733505 ], [ -69.800262, 45.733505 ], [ -69.794083, 45.728712 ], [ -69.792023, 45.728712 ], [ -69.791336, 45.726794 ], [ -69.792709, 45.725836 ], [ -69.797516, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.724398 ], [ -69.800262, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722960 ], [ -69.803696, 45.720563 ], [ -69.805069, 45.722001 ], [ -69.807816, 45.722480 ], [ -69.805756, 45.720563 ], [ -69.805756, 45.717207 ], [ -69.803009, 45.715289 ], [ -69.798203, 45.715289 ], [ -69.790649, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789963, 45.702343 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.692751 ], [ -69.783096, 45.690833 ], [ -69.779663, 45.690353 ], [ -69.776917, 45.687955 ], [ -69.774857, 45.687955 ], [ -69.774170, 45.686036 ], [ -69.769363, 45.685077 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682678 ], [ -69.760437, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754944, 45.679800 ], [ -69.749451, 45.681239 ], [ -69.746017, 45.681239 ], [ -69.739151, 45.679800 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.739151, 45.675482 ], [ -69.739151, 45.671644 ], [ -69.740524, 45.669725 ], [ -69.739838, 45.667325 ], [ -69.741898, 45.666846 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.657728 ], [ -69.739838, 45.657728 ], [ -69.739838, 45.656768 ], [ -69.744644, 45.653408 ], [ -69.743958, 45.651968 ], [ -69.736404, 45.651008 ], [ -69.734344, 45.654368 ], [ -69.732285, 45.655808 ], [ -69.732971, 45.657248 ], [ -69.728165, 45.656768 ], [ -69.723358, 45.657728 ], [ -69.719238, 45.656288 ], [ -69.713058, 45.655808 ], [ -69.706192, 45.652928 ], [ -69.705505, 45.653408 ], [ -69.703445, 45.651968 ], [ -69.701385, 45.651968 ], [ -69.700012, 45.650048 ], [ -69.692459, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.696579, 45.640928 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706879, 45.647168 ], [ -69.711685, 45.650528 ], [ -69.714432, 45.650528 ], [ -69.713058, 45.647648 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.648128 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712372, 45.638047 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.635647 ], [ -69.707565, 45.632766 ], [ -69.702072, 45.628445 ], [ -69.704132, 45.621722 ], [ -69.703445, 45.620761 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618840 ], [ -69.708939, 45.616919 ], [ -69.709625, 45.613557 ], [ -69.711685, 45.613077 ], [ -69.713058, 45.614037 ], [ -69.714432, 45.612116 ], [ -69.714432, 45.613077 ], [ -69.717865, 45.612116 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.611156 ], [ -69.717865, 45.608754 ], [ -69.720612, 45.608274 ], [ -69.721298, 45.602989 ], [ -69.719238, 45.600587 ], [ -69.717865, 45.597705 ], [ -69.715118, 45.597224 ], [ -69.713745, 45.595303 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.588576 ], [ -69.715118, 45.585693 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583290 ], [ -69.724045, 45.581848 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.574158 ], [ -69.728851, 45.572716 ], [ -69.728165, 45.570313 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.748077, 45.560699 ], [ -69.749451, 45.559256 ], [ -69.754257, 45.557814 ], [ -69.761124, 45.554449 ], [ -69.764557, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.774170, 45.554929 ], [ -69.775543, 45.553006 ], [ -69.775543, 45.549640 ], [ -69.773483, 45.545793 ], [ -69.780350, 45.542908 ], [ -69.732971, 45.389289 ], [ -69.701385, 45.295660 ], [ -69.700699, 45.292762 ], [ -69.708939, 45.291796 ], [ -69.705505, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.684219, 45.212520 ], [ -69.687653, 45.208166 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.632034, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128773 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152506 ], [ -70.367432, 45.835019 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.267868, 45.886185 ], [ -70.262375, 45.888096 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897655 ], [ -70.261002, 45.899088 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.907689 ], [ -70.256195, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.256195, 45.929662 ], [ -70.252075, 45.933960 ], [ -70.249329, 45.934916 ], [ -70.247269, 45.936348 ], [ -70.243149, 45.937303 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.943033 ], [ -70.239716, 45.943988 ], [ -70.241776, 45.944943 ], [ -70.244522, 45.944943 ], [ -70.242462, 45.946853 ], [ -70.248642, 45.949717 ], [ -70.249329, 45.952582 ], [ -70.251389, 45.953537 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.955924 ], [ -70.254822, 45.954491 ], [ -70.256195, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.308380, 46.061797 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.260315, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099900 ], [ -70.254822, 46.099900 ], [ -70.253448, 46.100376 ], [ -70.252762, 46.106089 ], [ -70.253448, 46.107993 ], [ -70.254822, 46.107993 ], [ -70.255508, 46.108945 ], [ -70.255508, 46.110850 ], [ -70.254135, 46.112754 ], [ -70.254822, 46.114182 ], [ -70.252762, 46.115134 ], [ -70.252762, 46.116562 ], [ -70.251389, 46.118466 ], [ -70.252075, 46.119893 ], [ -70.248642, 46.122749 ], [ -70.247955, 46.126080 ], [ -70.247269, 46.125605 ], [ -70.245895, 46.126556 ], [ -70.245209, 46.128936 ], [ -70.243835, 46.128936 ], [ -70.244522, 46.131315 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.241776, 46.134646 ], [ -70.242462, 46.135598 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.146540 ], [ -70.239716, 46.149394 ], [ -70.241089, 46.149394 ], [ -70.240402, 46.151297 ], [ -70.241776, 46.151297 ], [ -70.241776, 46.150346 ], [ -70.243149, 46.149870 ], [ -70.244522, 46.151773 ], [ -70.245209, 46.151297 ], [ -70.246582, 46.151297 ], [ -70.247269, 46.152248 ], [ -70.248642, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.153675 ], [ -70.250702, 46.154627 ], [ -70.250015, 46.156054 ], [ -70.252762, 46.157481 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.256195, 46.159859 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.278854, 46.175551 ], [ -70.280228, 46.177929 ], [ -70.282288, 46.178880 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191715 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.256195, 46.244926 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246351 ], [ -70.251389, 46.249200 ], [ -70.252075, 46.252523 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.255372 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261069 ], [ -70.250702, 46.263443 ], [ -70.248642, 46.265341 ], [ -70.249329, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.273411 ], [ -70.241089, 46.273411 ], [ -70.241089, 46.275309 ], [ -70.239716, 46.275784 ], [ -70.240402, 46.279580 ], [ -70.238342, 46.281004 ], [ -70.235596, 46.281479 ], [ -70.232849, 46.284800 ], [ -70.232162, 46.291443 ], [ -70.229416, 46.291918 ], [ -70.229416, 46.292392 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295713 ], [ -70.215683, 46.294764 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297611 ], [ -70.212250, 46.299034 ], [ -70.210876, 46.298560 ], [ -70.206070, 46.299983 ], [ -70.206070, 46.300457 ], [ -70.207443, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.312790 ], [ -70.203323, 46.315161 ], [ -70.207443, 46.319430 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.205383, 46.334129 ], [ -70.202637, 46.335551 ], [ -70.201263, 46.337447 ], [ -70.195770, 46.341239 ], [ -70.196457, 46.343610 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.348350 ], [ -70.192337, 46.349297 ], [ -70.191650, 46.350245 ], [ -70.190277, 46.350719 ], [ -70.188904, 46.350245 ], [ -70.184784, 46.352141 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354511 ], [ -70.177231, 46.355933 ], [ -70.175858, 46.358302 ], [ -70.173111, 46.359724 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357828 ], [ -70.164871, 46.359250 ], [ -70.163498, 46.359250 ], [ -70.162125, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359724 ], [ -70.158691, 46.361145 ], [ -70.156631, 46.361619 ], [ -70.154572, 46.360198 ], [ -70.148392, 46.359250 ], [ -70.144958, 46.362567 ], [ -70.142212, 46.362567 ], [ -70.140839, 46.363041 ], [ -70.141525, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.369200 ], [ -70.131912, 46.370148 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.379623 ], [ -70.126419, 46.381991 ], [ -70.116806, 46.385781 ], [ -70.116806, 46.388622 ], [ -70.115433, 46.388149 ], [ -70.114746, 46.385307 ], [ -70.111313, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112686, 46.388622 ], [ -70.110626, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108566, 46.389096 ] ], [ [ -69.788589, 45.784764 ], [ -69.787903, 45.783806 ], [ -69.785843, 45.783806 ], [ -69.784470, 45.782848 ], [ -69.785156, 45.780933 ], [ -69.783783, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.781723, 45.781891 ], [ -69.784470, 45.783806 ], [ -69.784470, 45.784285 ], [ -69.785156, 45.785721 ], [ -69.788589, 45.785243 ], [ -69.788589, 45.784764 ] ], [ [ -69.789963, 45.783806 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785721 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.783327 ], [ -69.796829, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.794083, 45.783327 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ] ], [ [ -69.826355, 45.741173 ], [ -69.827042, 45.740214 ], [ -69.833221, 45.738777 ], [ -69.830475, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.827728, 45.739256 ], [ -69.825668, 45.739735 ], [ -69.826355, 45.741173 ] ], [ [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798889, 45.784764 ] ], [ [ -69.801636, 45.785721 ], [ -69.801636, 45.785243 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785721 ] ], [ [ -69.788589, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.782848 ], [ -69.788589, 45.784764 ] ], [ [ -69.809189, 45.722960 ], [ -69.807816, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.809189, 45.722960 ] ], [ [ -70.108566, 46.389096 ], [ -70.108566, 46.387675 ], [ -70.107880, 46.388149 ], [ -70.108566, 46.389096 ] ], [ [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798203, 45.784764 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.796829, 45.783327 ], [ -69.797516, 45.783806 ], [ -69.796143, 45.784285 ], [ -69.796829, 45.783327 ] ] ], [ [ [ -69.499512, 45.050240 ], [ -69.500198, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.355316, 45.072066 ], [ -69.349136, 45.050240 ], [ -69.499512, 45.050240 ] ] ], [ [ [ -69.732971, 45.657248 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657248 ] ] ] ] } } ] } ] } , @@ -146,11 +147,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 91 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.724731, 45.879732 ], [ -69.723358, 45.879971 ], [ -69.723701, 45.880688 ], [ -69.723015, 45.881166 ], [ -69.720612, 45.881644 ], [ -69.719582, 45.882361 ], [ -69.717178, 45.882600 ], [ -69.716492, 45.883556 ], [ -69.712715, 45.883317 ], [ -69.712715, 45.884273 ], [ -69.712029, 45.884273 ], [ -69.711685, 45.884990 ], [ -69.709625, 45.885229 ], [ -69.709282, 45.885707 ], [ -69.707565, 45.885707 ], [ -69.705849, 45.884990 ], [ -69.704132, 45.885229 ], [ -69.703445, 45.885946 ], [ -69.702072, 45.886185 ], [ -69.699669, 45.885707 ], [ -69.698296, 45.885946 ], [ -69.697952, 45.885229 ], [ -69.698639, 45.884751 ], [ -69.698639, 45.880449 ], [ -69.701729, 45.879971 ], [ -69.701729, 45.879015 ], [ -69.702759, 45.878776 ], [ -69.702759, 45.876863 ], [ -69.702072, 45.876624 ], [ -69.702072, 45.875668 ], [ -69.701385, 45.875429 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.872561 ], [ -69.700356, 45.872083 ], [ -69.700356, 45.870888 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868736 ], [ -69.696922, 45.867541 ], [ -69.697266, 45.864433 ], [ -69.694176, 45.864194 ], [ -69.692116, 45.865150 ], [ -69.692116, 45.864672 ], [ -69.693489, 45.864194 ], [ -69.692802, 45.863238 ], [ -69.693146, 45.862520 ], [ -69.693832, 45.862520 ], [ -69.694176, 45.862042 ], [ -69.691429, 45.860847 ], [ -69.692116, 45.859173 ], [ -69.690399, 45.858934 ], [ -69.689369, 45.858217 ], [ -69.689369, 45.855108 ], [ -69.690399, 45.854391 ], [ -69.686966, 45.853913 ], [ -69.685936, 45.852956 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.684219, 45.851282 ], [ -69.683533, 45.851043 ], [ -69.682503, 45.852239 ], [ -69.681816, 45.851760 ], [ -69.679413, 45.851760 ], [ -69.678383, 45.852000 ], [ -69.678040, 45.852956 ], [ -69.676323, 45.852956 ], [ -69.676666, 45.851521 ], [ -69.674606, 45.852239 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.855826 ], [ -69.673920, 45.856304 ], [ -69.674263, 45.857499 ], [ -69.672546, 45.858695 ], [ -69.672546, 45.859651 ], [ -69.673233, 45.859890 ], [ -69.673233, 45.860847 ], [ -69.673920, 45.861086 ], [ -69.674606, 45.862281 ], [ -69.673576, 45.861803 ], [ -69.673576, 45.862520 ], [ -69.672203, 45.862042 ], [ -69.671516, 45.861325 ], [ -69.670486, 45.861325 ], [ -69.670143, 45.860847 ], [ -69.668770, 45.861564 ], [ -69.667740, 45.861564 ], [ -69.667397, 45.862042 ], [ -69.664650, 45.862042 ], [ -69.663963, 45.861564 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662590, 45.861325 ], [ -69.661560, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.659843, 45.860608 ], [ -69.659157, 45.860608 ], [ -69.659500, 45.861086 ], [ -69.658813, 45.861325 ], [ -69.658127, 45.860608 ], [ -69.656754, 45.860369 ], [ -69.656410, 45.860847 ], [ -69.657097, 45.861325 ], [ -69.657097, 45.862042 ], [ -69.655724, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.654694, 45.862281 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.862998 ], [ -69.654007, 45.863955 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.862998 ], [ -69.650230, 45.863477 ], [ -69.649200, 45.863477 ], [ -69.648514, 45.862998 ], [ -69.648170, 45.863716 ], [ -69.646797, 45.863238 ], [ -69.661560, 45.910555 ], [ -69.677696, 45.965231 ], [ -69.683876, 45.983842 ], [ -69.728851, 45.976924 ], [ -69.728851, 46.037969 ], [ -69.729538, 46.053697 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.092281 ], [ -68.878784, 46.092281 ], [ -68.878784, 45.676202 ], [ -68.906250, 45.671644 ], [ -68.959122, 45.662287 ], [ -68.950882, 45.638527 ], [ -68.951912, 45.580647 ], [ -68.964958, 45.512602 ], [ -68.906250, 45.520541 ], [ -68.878784, 45.524149 ], [ -68.878784, 45.225579 ], [ -68.881187, 45.225095 ], [ -68.878784, 45.217357 ], [ -68.878784, 45.140157 ], [ -68.906250, 45.136524 ], [ -68.998947, 45.123929 ], [ -69.044952, 45.116419 ], [ -69.118080, 45.106243 ], [ -69.126320, 45.104789 ], [ -69.154472, 45.101154 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.385185, 45.069641 ], [ -69.637184, 45.069641 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.682846, 45.195103 ], [ -69.687309, 45.208166 ], [ -69.683876, 45.212762 ], [ -69.700012, 45.261597 ], [ -69.702759, 45.268363 ], [ -69.705162, 45.276336 ], [ -69.708595, 45.291313 ], [ -69.700699, 45.292520 ], [ -69.732628, 45.389047 ], [ -69.748421, 45.441104 ], [ -69.766960, 45.499369 ], [ -69.780006, 45.542908 ], [ -69.773483, 45.545553 ], [ -69.773483, 45.546034 ], [ -69.774513, 45.546515 ], [ -69.775543, 45.549400 ], [ -69.775200, 45.553006 ], [ -69.773827, 45.554689 ], [ -69.772110, 45.554689 ], [ -69.770393, 45.553727 ], [ -69.768333, 45.553727 ], [ -69.764214, 45.554689 ], [ -69.760780, 45.554208 ], [ -69.756317, 45.556131 ], [ -69.754257, 45.557814 ], [ -69.752197, 45.557814 ], [ -69.749107, 45.559016 ], [ -69.748077, 45.560458 ], [ -69.744987, 45.560939 ], [ -69.743614, 45.562862 ], [ -69.741554, 45.563343 ], [ -69.740181, 45.564304 ], [ -69.738464, 45.564545 ], [ -69.737778, 45.565266 ], [ -69.735374, 45.565506 ], [ -69.731598, 45.566948 ], [ -69.730568, 45.568390 ], [ -69.729195, 45.569111 ], [ -69.728851, 45.570073 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572476 ], [ -69.726791, 45.573918 ], [ -69.726791, 45.577042 ], [ -69.726105, 45.577523 ], [ -69.725761, 45.579205 ], [ -69.724045, 45.580647 ], [ -69.723701, 45.581848 ], [ -69.721985, 45.582809 ], [ -69.719925, 45.583049 ], [ -69.717178, 45.585212 ], [ -69.714775, 45.585452 ], [ -69.714775, 45.587615 ], [ -69.714088, 45.588576 ], [ -69.714432, 45.589777 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713745, 45.590978 ], [ -69.713058, 45.591699 ], [ -69.713402, 45.595303 ], [ -69.715118, 45.596984 ], [ -69.716492, 45.596744 ], [ -69.717865, 45.597465 ], [ -69.719238, 45.599386 ], [ -69.718895, 45.600347 ], [ -69.719925, 45.600828 ], [ -69.721298, 45.602749 ], [ -69.721298, 45.604190 ], [ -69.720612, 45.604190 ], [ -69.720268, 45.605151 ], [ -69.720955, 45.605872 ], [ -69.720955, 45.606832 ], [ -69.720268, 45.606832 ], [ -69.720268, 45.608033 ], [ -69.718208, 45.608033 ], [ -69.717522, 45.608514 ], [ -69.717522, 45.610915 ], [ -69.718552, 45.611876 ], [ -69.719582, 45.614758 ], [ -69.718895, 45.614518 ], [ -69.718895, 45.613557 ], [ -69.718208, 45.613317 ], [ -69.717522, 45.612116 ], [ -69.714775, 45.613077 ], [ -69.714088, 45.613077 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.612116 ], [ -69.713745, 45.612837 ], [ -69.712715, 45.613317 ], [ -69.712715, 45.614037 ], [ -69.712029, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.710312, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.709282, 45.615718 ], [ -69.708595, 45.616679 ], [ -69.706192, 45.618120 ], [ -69.705505, 45.618120 ], [ -69.704819, 45.618600 ], [ -69.704819, 45.619801 ], [ -69.703102, 45.620521 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.622202 ], [ -69.702759, 45.623883 ], [ -69.702759, 45.626764 ], [ -69.701729, 45.628204 ], [ -69.704819, 45.630605 ], [ -69.705505, 45.632046 ], [ -69.707222, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.707909, 45.637327 ], [ -69.708939, 45.638047 ], [ -69.712029, 45.637807 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.717522, 45.641888 ], [ -69.717522, 45.644048 ], [ -69.717178, 45.645728 ], [ -69.716492, 45.646208 ], [ -69.716492, 45.647888 ], [ -69.715118, 45.648608 ], [ -69.714088, 45.648128 ], [ -69.713745, 45.647408 ], [ -69.713058, 45.647408 ], [ -69.712715, 45.648128 ], [ -69.713402, 45.648608 ], [ -69.714088, 45.650288 ], [ -69.711685, 45.650528 ], [ -69.710655, 45.649808 ], [ -69.709969, 45.649808 ], [ -69.707909, 45.648128 ], [ -69.707909, 45.647648 ], [ -69.706535, 45.646928 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.700012, 45.643568 ], [ -69.698982, 45.643088 ], [ -69.698296, 45.641888 ], [ -69.696579, 45.640688 ], [ -69.694176, 45.640928 ], [ -69.694176, 45.642128 ], [ -69.692802, 45.643088 ], [ -69.692116, 45.645488 ], [ -69.696236, 45.648368 ], [ -69.698639, 45.649328 ], [ -69.701042, 45.651728 ], [ -69.703445, 45.651968 ], [ -69.705162, 45.653168 ], [ -69.705505, 45.652688 ], [ -69.706192, 45.652688 ], [ -69.707565, 45.653648 ], [ -69.710312, 45.654368 ], [ -69.713058, 45.655808 ], [ -69.718895, 45.656048 ], [ -69.723015, 45.657728 ], [ -69.726105, 45.656528 ], [ -69.728165, 45.656528 ], [ -69.732285, 45.657248 ], [ -69.732971, 45.657728 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732628, 45.657008 ], [ -69.731941, 45.656528 ], [ -69.731941, 45.655808 ], [ -69.734001, 45.654368 ], [ -69.734001, 45.653648 ], [ -69.736061, 45.650768 ], [ -69.738808, 45.650768 ], [ -69.739494, 45.651488 ], [ -69.742584, 45.652208 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.652448 ], [ -69.744644, 45.653168 ], [ -69.743271, 45.653888 ], [ -69.742584, 45.655328 ], [ -69.741898, 45.655808 ], [ -69.741211, 45.655568 ], [ -69.741211, 45.656288 ], [ -69.740524, 45.656048 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657488 ], [ -69.741554, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.660607 ], [ -69.744644, 45.661087 ], [ -69.744987, 45.661807 ], [ -69.744301, 45.662047 ], [ -69.744644, 45.664206 ], [ -69.743958, 45.664446 ], [ -69.743958, 45.664926 ], [ -69.743271, 45.664926 ], [ -69.743271, 45.665406 ], [ -69.741554, 45.666846 ], [ -69.739494, 45.667325 ], [ -69.739494, 45.667805 ], [ -69.740524, 45.668045 ], [ -69.740524, 45.669485 ], [ -69.739838, 45.669725 ], [ -69.740181, 45.670204 ], [ -69.739494, 45.670444 ], [ -69.739494, 45.671164 ], [ -69.738808, 45.671644 ], [ -69.739151, 45.675242 ], [ -69.738121, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.737091, 45.676921 ], [ -69.738121, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738464, 45.676921 ], [ -69.738808, 45.679560 ], [ -69.740181, 45.679560 ], [ -69.741211, 45.680280 ], [ -69.745674, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.750481, 45.680520 ], [ -69.754601, 45.679560 ], [ -69.757004, 45.679800 ], [ -69.760094, 45.682678 ], [ -69.764557, 45.682438 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.684597 ], [ -69.769707, 45.684597 ], [ -69.773827, 45.686036 ], [ -69.775200, 45.687475 ], [ -69.774857, 45.687715 ], [ -69.776573, 45.687955 ], [ -69.777260, 45.688914 ], [ -69.778976, 45.689394 ], [ -69.779320, 45.690113 ], [ -69.781036, 45.689874 ], [ -69.783096, 45.690593 ], [ -69.783096, 45.691073 ], [ -69.785500, 45.692751 ], [ -69.785156, 45.697547 ], [ -69.786186, 45.698267 ], [ -69.785843, 45.699945 ], [ -69.787560, 45.701384 ], [ -69.789619, 45.702103 ], [ -69.789963, 45.703782 ], [ -69.790649, 45.704501 ], [ -69.790993, 45.706659 ], [ -69.790306, 45.710495 ], [ -69.792709, 45.711454 ], [ -69.793739, 45.712173 ], [ -69.793739, 45.712892 ], [ -69.796829, 45.713851 ], [ -69.797859, 45.715050 ], [ -69.803009, 45.715050 ], [ -69.805412, 45.716967 ], [ -69.805756, 45.720323 ], [ -69.806442, 45.720323 ], [ -69.806442, 45.721042 ], [ -69.807816, 45.722241 ], [ -69.807129, 45.722241 ], [ -69.806442, 45.721522 ], [ -69.805069, 45.721761 ], [ -69.804726, 45.720802 ], [ -69.803696, 45.720563 ], [ -69.803352, 45.721282 ], [ -69.804039, 45.721522 ], [ -69.804382, 45.722720 ], [ -69.803009, 45.723918 ], [ -69.801979, 45.723918 ], [ -69.801292, 45.723199 ], [ -69.799919, 45.722720 ], [ -69.799919, 45.724158 ], [ -69.799232, 45.724158 ], [ -69.798546, 45.725117 ], [ -69.797859, 45.725117 ], [ -69.797173, 45.724398 ], [ -69.795456, 45.724637 ], [ -69.795113, 45.725356 ], [ -69.792366, 45.725596 ], [ -69.791336, 45.726794 ], [ -69.791679, 45.728472 ], [ -69.794083, 45.728472 ], [ -69.796143, 45.730629 ], [ -69.797173, 45.730869 ], [ -69.799576, 45.732546 ], [ -69.799919, 45.733265 ], [ -69.805756, 45.733265 ], [ -69.807129, 45.732786 ], [ -69.809875, 45.733265 ], [ -69.810905, 45.734943 ], [ -69.812622, 45.735901 ], [ -69.812622, 45.736380 ], [ -69.810219, 45.736141 ], [ -69.811592, 45.736860 ], [ -69.811592, 45.737339 ], [ -69.819832, 45.739256 ], [ -69.820518, 45.739735 ], [ -69.820175, 45.740454 ], [ -69.821548, 45.740454 ], [ -69.824295, 45.742371 ], [ -69.826012, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827385, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.828072, 45.739016 ], [ -69.830132, 45.738058 ], [ -69.833221, 45.738537 ], [ -69.832878, 45.739016 ], [ -69.830132, 45.738777 ], [ -69.827042, 45.739975 ], [ -69.826355, 45.741891 ], [ -69.825325, 45.742371 ], [ -69.825325, 45.743089 ], [ -69.823952, 45.743808 ], [ -69.822578, 45.743569 ], [ -69.821892, 45.745006 ], [ -69.819489, 45.745725 ], [ -69.817429, 45.747162 ], [ -69.817085, 45.746683 ], [ -69.815369, 45.747162 ], [ -69.812622, 45.747162 ], [ -69.812965, 45.745965 ], [ -69.812279, 45.745965 ], [ -69.810219, 45.746444 ], [ -69.809189, 45.747162 ], [ -69.806442, 45.747642 ], [ -69.805412, 45.748600 ], [ -69.803696, 45.749079 ], [ -69.801292, 45.749079 ], [ -69.800262, 45.748600 ], [ -69.800262, 45.747881 ], [ -69.798546, 45.747642 ], [ -69.798203, 45.746683 ], [ -69.796486, 45.746204 ], [ -69.793739, 45.746204 ], [ -69.793053, 45.745725 ], [ -69.789963, 45.746683 ], [ -69.789963, 45.747162 ], [ -69.788246, 45.746923 ], [ -69.788246, 45.747402 ], [ -69.789619, 45.747881 ], [ -69.789619, 45.748600 ], [ -69.788589, 45.749079 ], [ -69.788589, 45.749558 ], [ -69.789619, 45.750037 ], [ -69.790993, 45.750037 ], [ -69.791679, 45.750516 ], [ -69.791336, 45.750756 ], [ -69.792366, 45.751235 ], [ -69.791679, 45.753152 ], [ -69.789963, 45.754349 ], [ -69.789963, 45.755787 ], [ -69.792366, 45.756266 ], [ -69.792709, 45.756984 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.757942 ], [ -69.791679, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.759619 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.762014 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.791336, 45.764409 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.765846 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.767762 ], [ -69.788933, 45.768960 ], [ -69.787560, 45.768960 ], [ -69.786873, 45.768481 ], [ -69.784813, 45.769439 ], [ -69.782410, 45.769678 ], [ -69.782753, 45.770876 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.772552 ], [ -69.781723, 45.773989 ], [ -69.784126, 45.773031 ], [ -69.784813, 45.774468 ], [ -69.783440, 45.774468 ], [ -69.782753, 45.774947 ], [ -69.784813, 45.775905 ], [ -69.786186, 45.775905 ], [ -69.786186, 45.774947 ], [ -69.787903, 45.774947 ], [ -69.787560, 45.776862 ], [ -69.788933, 45.776862 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.777820 ], [ -69.789619, 45.777820 ], [ -69.789619, 45.778299 ], [ -69.788246, 45.777820 ], [ -69.788246, 45.779257 ], [ -69.787216, 45.779736 ], [ -69.786873, 45.780933 ], [ -69.784813, 45.780933 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.783327 ], [ -69.785500, 45.783327 ], [ -69.785843, 45.783806 ], [ -69.787560, 45.783567 ], [ -69.787560, 45.784045 ], [ -69.788246, 45.784045 ], [ -69.788246, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783567 ], [ -69.792366, 45.783806 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.784764 ], [ -69.792023, 45.785482 ], [ -69.791336, 45.784285 ], [ -69.790993, 45.784524 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.783806 ], [ -69.788246, 45.785003 ], [ -69.786530, 45.785003 ], [ -69.785156, 45.785482 ], [ -69.784126, 45.784764 ], [ -69.784470, 45.784045 ], [ -69.783440, 45.785003 ], [ -69.783440, 45.784285 ], [ -69.784126, 45.783806 ], [ -69.783096, 45.783567 ], [ -69.783096, 45.782848 ], [ -69.782066, 45.782848 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781172 ], [ -69.783783, 45.781651 ], [ -69.784126, 45.780454 ], [ -69.785500, 45.779496 ], [ -69.786186, 45.779975 ], [ -69.786186, 45.779017 ], [ -69.785500, 45.779017 ], [ -69.785156, 45.778539 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.776862 ], [ -69.782753, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.780693, 45.777341 ], [ -69.780693, 45.776623 ], [ -69.782066, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.780350, 45.773989 ], [ -69.779320, 45.773270 ], [ -69.779320, 45.772313 ], [ -69.777260, 45.770876 ], [ -69.776573, 45.767762 ], [ -69.775543, 45.767523 ], [ -69.775887, 45.767044 ], [ -69.773827, 45.766086 ], [ -69.774513, 45.764888 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.764409 ], [ -69.771080, 45.763451 ], [ -69.767990, 45.762972 ], [ -69.767990, 45.762014 ], [ -69.768677, 45.762014 ], [ -69.769020, 45.761535 ], [ -69.762154, 45.761296 ], [ -69.761124, 45.762014 ], [ -69.760437, 45.761775 ], [ -69.760094, 45.762254 ], [ -69.759064, 45.762254 ], [ -69.758034, 45.761535 ], [ -69.752884, 45.761775 ], [ -69.750481, 45.763451 ], [ -69.751854, 45.765846 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.764649 ], [ -69.749794, 45.763212 ], [ -69.749107, 45.763212 ], [ -69.747391, 45.761535 ], [ -69.747391, 45.759859 ], [ -69.746361, 45.759859 ], [ -69.746017, 45.760338 ], [ -69.743958, 45.760098 ], [ -69.742241, 45.758182 ], [ -69.742584, 45.757224 ], [ -69.741211, 45.756745 ], [ -69.741211, 45.755547 ], [ -69.739494, 45.755547 ], [ -69.736748, 45.754828 ], [ -69.734001, 45.755308 ], [ -69.733315, 45.756026 ], [ -69.732628, 45.756026 ], [ -69.731598, 45.757942 ], [ -69.729881, 45.759140 ], [ -69.729881, 45.760338 ], [ -69.727821, 45.761056 ], [ -69.727821, 45.761535 ], [ -69.726448, 45.762254 ], [ -69.724731, 45.765846 ], [ -69.725761, 45.771594 ], [ -69.727135, 45.772313 ], [ -69.727821, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.728851, 45.775186 ], [ -69.729881, 45.776383 ], [ -69.731255, 45.776623 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738121, 45.782130 ], [ -69.738121, 45.782848 ], [ -69.734001, 45.783088 ], [ -69.733315, 45.783567 ], [ -69.731598, 45.783567 ], [ -69.730911, 45.783088 ], [ -69.726791, 45.783088 ], [ -69.725418, 45.783806 ], [ -69.724045, 45.783806 ], [ -69.723015, 45.783327 ], [ -69.723358, 45.785961 ], [ -69.722328, 45.787397 ], [ -69.720612, 45.788355 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791228 ], [ -69.719238, 45.794818 ], [ -69.718208, 45.796015 ], [ -69.718208, 45.797691 ], [ -69.717178, 45.798409 ], [ -69.717522, 45.798888 ], [ -69.716835, 45.798888 ], [ -69.716148, 45.800802 ], [ -69.714432, 45.801760 ], [ -69.713745, 45.804871 ], [ -69.713058, 45.805350 ], [ -69.712715, 45.806547 ], [ -69.712029, 45.806786 ], [ -69.710999, 45.808940 ], [ -69.708939, 45.810854 ], [ -69.708939, 45.812290 ], [ -69.709969, 45.814444 ], [ -69.709625, 45.815401 ], [ -69.710655, 45.815879 ], [ -69.711342, 45.817076 ], [ -69.710999, 45.817554 ], [ -69.711685, 45.817794 ], [ -69.712715, 45.819469 ], [ -69.712715, 45.823297 ], [ -69.713402, 45.823536 ], [ -69.714088, 45.824971 ], [ -69.715462, 45.825928 ], [ -69.716492, 45.829038 ], [ -69.718552, 45.829756 ], [ -69.718208, 45.831670 ], [ -69.719582, 45.834062 ], [ -69.720955, 45.834301 ], [ -69.723015, 45.833344 ], [ -69.724388, 45.833344 ], [ -69.725418, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.725075, 45.834062 ], [ -69.723015, 45.834062 ], [ -69.721642, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717522, 45.834540 ], [ -69.718208, 45.833344 ], [ -69.715118, 45.831909 ], [ -69.712029, 45.832388 ], [ -69.712029, 45.833823 ], [ -69.710999, 45.834062 ], [ -69.709625, 45.835976 ], [ -69.708252, 45.836693 ], [ -69.708939, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.838128 ], [ -69.707565, 45.839324 ], [ -69.707222, 45.842673 ], [ -69.706535, 45.843151 ], [ -69.706535, 45.843869 ], [ -69.705505, 45.844347 ], [ -69.705505, 45.845543 ], [ -69.704475, 45.846260 ], [ -69.705162, 45.846739 ], [ -69.706879, 45.846499 ], [ -69.707909, 45.846978 ], [ -69.707909, 45.849130 ], [ -69.708595, 45.850565 ], [ -69.706879, 45.852956 ], [ -69.706192, 45.853195 ], [ -69.705849, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.707222, 45.854152 ], [ -69.708939, 45.854391 ], [ -69.709625, 45.854869 ], [ -69.709282, 45.855826 ], [ -69.711342, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.713402, 45.861086 ], [ -69.715118, 45.862281 ], [ -69.716148, 45.863477 ], [ -69.716148, 45.864433 ], [ -69.717522, 45.865150 ], [ -69.717522, 45.865867 ], [ -69.720955, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.722672, 45.865628 ], [ -69.724388, 45.865628 ], [ -69.725075, 45.866106 ], [ -69.725075, 45.867063 ], [ -69.725761, 45.866824 ], [ -69.725761, 45.867302 ], [ -69.724388, 45.868019 ], [ -69.724731, 45.868975 ], [ -69.723701, 45.870888 ], [ -69.724388, 45.872083 ], [ -69.725075, 45.872083 ], [ -69.724731, 45.873995 ], [ -69.727135, 45.874712 ], [ -69.727135, 45.875907 ], [ -69.727478, 45.875429 ], [ -69.728165, 45.875429 ], [ -69.731255, 45.876863 ], [ -69.731941, 45.876624 ], [ -69.734001, 45.877103 ], [ -69.734688, 45.878776 ], [ -69.733658, 45.879254 ], [ -69.735031, 45.879493 ], [ -69.736061, 45.880210 ], [ -69.737778, 45.880210 ], [ -69.737778, 45.881166 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881644 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.883317 ], [ -69.736748, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881166 ], [ -69.735718, 45.880449 ], [ -69.733315, 45.880210 ], [ -69.732628, 45.879493 ], [ -69.732628, 45.878537 ], [ -69.731941, 45.878537 ], [ -69.730225, 45.879732 ], [ -69.727821, 45.879732 ], [ -69.727135, 45.880449 ], [ -69.725761, 45.880210 ], [ -69.724731, 45.879732 ] ], [ [ -69.792366, 45.783806 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.784045 ], [ -69.792366, 45.783806 ] ] ], [ [ [ -69.798546, 45.784764 ], [ -69.797859, 45.784764 ], [ -69.797516, 45.784524 ], [ -69.797516, 45.785721 ], [ -69.796486, 45.785003 ], [ -69.796143, 45.785482 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.784285 ], [ -69.797173, 45.783327 ], [ -69.797859, 45.783327 ], [ -69.797859, 45.784285 ], [ -69.798546, 45.784524 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.800262, 45.784524 ], [ -69.801292, 45.784764 ], [ -69.798546, 45.784764 ] ], [ [ -69.797173, 45.784285 ], [ -69.797516, 45.783567 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784285 ] ] ], [ [ [ -69.714432, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.715118, 45.589777 ], [ -69.714432, 45.589777 ] ] ], [ [ [ -69.807816, 45.722241 ], [ -69.808846, 45.722720 ], [ -69.810905, 45.722720 ], [ -69.812279, 45.721761 ], [ -69.813652, 45.722001 ], [ -69.815369, 45.721522 ], [ -69.813995, 45.722241 ], [ -69.811935, 45.722480 ], [ -69.810905, 45.723199 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722241 ] ] ], [ [ [ -69.795799, 45.784285 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.783088 ], [ -69.794083, 45.782848 ], [ -69.795456, 45.783567 ], [ -69.796486, 45.783327 ], [ -69.795799, 45.784285 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.802322, 45.785961 ], [ -69.801979, 45.786440 ], [ -69.801636, 45.785482 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.917685", "INTPTLON": "-069.104535" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.724731, 45.879732 ], [ -69.723358, 45.879971 ], [ -69.723701, 45.880688 ], [ -69.723015, 45.881166 ], [ -69.720612, 45.881644 ], [ -69.719582, 45.882361 ], [ -69.717178, 45.882600 ], [ -69.716492, 45.883556 ], [ -69.712715, 45.883317 ], [ -69.712715, 45.884273 ], [ -69.712029, 45.884273 ], [ -69.711685, 45.884990 ], [ -69.709625, 45.885229 ], [ -69.709282, 45.885707 ], [ -69.707565, 45.885707 ], [ -69.705849, 45.884990 ], [ -69.704132, 45.885229 ], [ -69.703445, 45.885946 ], [ -69.702072, 45.886185 ], [ -69.699669, 45.885707 ], [ -69.698296, 45.885946 ], [ -69.697952, 45.885229 ], [ -69.698639, 45.884751 ], [ -69.698639, 45.880449 ], [ -69.701729, 45.879971 ], [ -69.701729, 45.879015 ], [ -69.702759, 45.878776 ], [ -69.702759, 45.876863 ], [ -69.702072, 45.876624 ], [ -69.702072, 45.875668 ], [ -69.701385, 45.875429 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.872561 ], [ -69.700356, 45.872083 ], [ -69.700356, 45.870888 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868736 ], [ -69.696922, 45.867541 ], [ -69.697266, 45.864433 ], [ -69.694176, 45.864194 ], [ -69.692116, 45.865150 ], [ -69.692116, 45.864672 ], [ -69.693489, 45.864194 ], [ -69.692802, 45.863238 ], [ -69.693146, 45.862520 ], [ -69.693832, 45.862520 ], [ -69.694176, 45.862042 ], [ -69.691429, 45.860847 ], [ -69.692116, 45.859173 ], [ -69.690399, 45.858934 ], [ -69.689369, 45.858217 ], [ -69.689369, 45.855108 ], [ -69.690399, 45.854391 ], [ -69.686966, 45.853913 ], [ -69.685936, 45.852956 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.684219, 45.851282 ], [ -69.683533, 45.851043 ], [ -69.682503, 45.852239 ], [ -69.681816, 45.851760 ], [ -69.679413, 45.851760 ], [ -69.678383, 45.852000 ], [ -69.678040, 45.852956 ], [ -69.676323, 45.852956 ], [ -69.676666, 45.851521 ], [ -69.674606, 45.852239 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.855826 ], [ -69.673920, 45.856304 ], [ -69.674263, 45.857499 ], [ -69.672546, 45.858695 ], [ -69.672546, 45.859651 ], [ -69.673233, 45.859890 ], [ -69.673233, 45.860847 ], [ -69.673920, 45.861086 ], [ -69.674606, 45.862281 ], [ -69.673576, 45.861803 ], [ -69.673576, 45.862520 ], [ -69.672203, 45.862042 ], [ -69.671516, 45.861325 ], [ -69.670486, 45.861325 ], [ -69.670143, 45.860847 ], [ -69.668770, 45.861564 ], [ -69.667740, 45.861564 ], [ -69.667397, 45.862042 ], [ -69.664650, 45.862042 ], [ -69.663963, 45.861564 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662590, 45.861325 ], [ -69.661560, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.659843, 45.860608 ], [ -69.659157, 45.860608 ], [ -69.659500, 45.861086 ], [ -69.658813, 45.861325 ], [ -69.658127, 45.860608 ], [ -69.656754, 45.860369 ], [ -69.656410, 45.860847 ], [ -69.657097, 45.861325 ], [ -69.657097, 45.862042 ], [ -69.655724, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.654694, 45.862281 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.862998 ], [ -69.654007, 45.863955 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.862998 ], [ -69.650230, 45.863477 ], [ -69.649200, 45.863477 ], [ -69.648514, 45.862998 ], [ -69.648170, 45.863716 ], [ -69.646797, 45.863238 ], [ -69.661560, 45.910555 ], [ -69.677696, 45.965231 ], [ -69.683876, 45.983842 ], [ -69.728851, 45.976924 ], [ -69.728851, 46.037969 ], [ -69.729538, 46.053697 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.092281 ], [ -68.878784, 46.092281 ], [ -68.878784, 45.676202 ], [ -68.906250, 45.671644 ], [ -68.959122, 45.662287 ], [ -68.950882, 45.638527 ], [ -68.951912, 45.580647 ], [ -68.964958, 45.512602 ], [ -68.906250, 45.520541 ], [ -68.878784, 45.524149 ], [ -68.878784, 45.225579 ], [ -68.881187, 45.225095 ], [ -68.878784, 45.217357 ], [ -68.878784, 45.140157 ], [ -68.906250, 45.136524 ], [ -68.998947, 45.123929 ], [ -69.044952, 45.116419 ], [ -69.118080, 45.106243 ], [ -69.126320, 45.104789 ], [ -69.154472, 45.101154 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.385185, 45.069641 ], [ -69.637184, 45.069641 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.682846, 45.195103 ], [ -69.687309, 45.208166 ], [ -69.683876, 45.212762 ], [ -69.700012, 45.261597 ], [ -69.702759, 45.268363 ], [ -69.705162, 45.276336 ], [ -69.708595, 45.291313 ], [ -69.700699, 45.292520 ], [ -69.732628, 45.389047 ], [ -69.748421, 45.441104 ], [ -69.766960, 45.499369 ], [ -69.780006, 45.542908 ], [ -69.773483, 45.545553 ], [ -69.773483, 45.546034 ], [ -69.774513, 45.546515 ], [ -69.775543, 45.549400 ], [ -69.775200, 45.553006 ], [ -69.773827, 45.554689 ], [ -69.772110, 45.554689 ], [ -69.770393, 45.553727 ], [ -69.768333, 45.553727 ], [ -69.764214, 45.554689 ], [ -69.760780, 45.554208 ], [ -69.756317, 45.556131 ], [ -69.754257, 45.557814 ], [ -69.752197, 45.557814 ], [ -69.749107, 45.559016 ], [ -69.748077, 45.560458 ], [ -69.744987, 45.560939 ], [ -69.743614, 45.562862 ], [ -69.741554, 45.563343 ], [ -69.740181, 45.564304 ], [ -69.738464, 45.564545 ], [ -69.737778, 45.565266 ], [ -69.735374, 45.565506 ], [ -69.731598, 45.566948 ], [ -69.730568, 45.568390 ], [ -69.729195, 45.569111 ], [ -69.728851, 45.570073 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572476 ], [ -69.726791, 45.573918 ], [ -69.726791, 45.577042 ], [ -69.726105, 45.577523 ], [ -69.725761, 45.579205 ], [ -69.724045, 45.580647 ], [ -69.723701, 45.581848 ], [ -69.721985, 45.582809 ], [ -69.719925, 45.583049 ], [ -69.717178, 45.585212 ], [ -69.714775, 45.585452 ], [ -69.714775, 45.587615 ], [ -69.714088, 45.588576 ], [ -69.714432, 45.589777 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713745, 45.590978 ], [ -69.713058, 45.591699 ], [ -69.713402, 45.595303 ], [ -69.715118, 45.596984 ], [ -69.716492, 45.596744 ], [ -69.717865, 45.597465 ], [ -69.719238, 45.599386 ], [ -69.718895, 45.600347 ], [ -69.719925, 45.600828 ], [ -69.721298, 45.602749 ], [ -69.721298, 45.604190 ], [ -69.720612, 45.604190 ], [ -69.720268, 45.605151 ], [ -69.720955, 45.605872 ], [ -69.720955, 45.606832 ], [ -69.720268, 45.606832 ], [ -69.720268, 45.608033 ], [ -69.718208, 45.608033 ], [ -69.717522, 45.608514 ], [ -69.717522, 45.610915 ], [ -69.718552, 45.611876 ], [ -69.719582, 45.614758 ], [ -69.718895, 45.614518 ], [ -69.718895, 45.613557 ], [ -69.718208, 45.613317 ], [ -69.717522, 45.612116 ], [ -69.714775, 45.613077 ], [ -69.714088, 45.613077 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.612116 ], [ -69.713745, 45.612837 ], [ -69.712715, 45.613317 ], [ -69.712715, 45.614037 ], [ -69.712029, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.710312, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.709282, 45.615718 ], [ -69.708595, 45.616679 ], [ -69.706192, 45.618120 ], [ -69.705505, 45.618120 ], [ -69.704819, 45.618600 ], [ -69.704819, 45.619801 ], [ -69.703102, 45.620521 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.622202 ], [ -69.702759, 45.623883 ], [ -69.702759, 45.626764 ], [ -69.701729, 45.628204 ], [ -69.704819, 45.630605 ], [ -69.705505, 45.632046 ], [ -69.707222, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.707909, 45.637327 ], [ -69.708939, 45.638047 ], [ -69.712029, 45.637807 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.717522, 45.641888 ], [ -69.717522, 45.644048 ], [ -69.717178, 45.645728 ], [ -69.716492, 45.646208 ], [ -69.716492, 45.647888 ], [ -69.715118, 45.648608 ], [ -69.714088, 45.648128 ], [ -69.713745, 45.647408 ], [ -69.713058, 45.647408 ], [ -69.712715, 45.648128 ], [ -69.713402, 45.648608 ], [ -69.714088, 45.650288 ], [ -69.711685, 45.650528 ], [ -69.710655, 45.649808 ], [ -69.709969, 45.649808 ], [ -69.707909, 45.648128 ], [ -69.707909, 45.647648 ], [ -69.706535, 45.646928 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.700012, 45.643568 ], [ -69.698982, 45.643088 ], [ -69.698296, 45.641888 ], [ -69.696579, 45.640688 ], [ -69.694176, 45.640928 ], [ -69.694176, 45.642128 ], [ -69.692802, 45.643088 ], [ -69.692116, 45.645488 ], [ -69.696236, 45.648368 ], [ -69.698639, 45.649328 ], [ -69.701042, 45.651728 ], [ -69.703445, 45.651968 ], [ -69.705162, 45.653168 ], [ -69.705505, 45.652688 ], [ -69.706192, 45.652688 ], [ -69.707565, 45.653648 ], [ -69.710312, 45.654368 ], [ -69.713058, 45.655808 ], [ -69.718895, 45.656048 ], [ -69.723015, 45.657728 ], [ -69.726105, 45.656528 ], [ -69.728165, 45.656528 ], [ -69.732285, 45.657248 ], [ -69.732971, 45.657728 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732628, 45.657008 ], [ -69.731941, 45.656528 ], [ -69.731941, 45.655808 ], [ -69.734001, 45.654368 ], [ -69.734001, 45.653648 ], [ -69.736061, 45.650768 ], [ -69.738808, 45.650768 ], [ -69.739494, 45.651488 ], [ -69.742584, 45.652208 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.652448 ], [ -69.744644, 45.653168 ], [ -69.743271, 45.653888 ], [ -69.742584, 45.655328 ], [ -69.741898, 45.655808 ], [ -69.741211, 45.655568 ], [ -69.741211, 45.656288 ], [ -69.740524, 45.656048 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657488 ], [ -69.741554, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.660607 ], [ -69.744644, 45.661087 ], [ -69.744987, 45.661807 ], [ -69.744301, 45.662047 ], [ -69.744644, 45.664206 ], [ -69.743958, 45.664446 ], [ -69.743958, 45.664926 ], [ -69.743271, 45.664926 ], [ -69.743271, 45.665406 ], [ -69.741554, 45.666846 ], [ -69.739494, 45.667325 ], [ -69.739494, 45.667805 ], [ -69.740524, 45.668045 ], [ -69.740524, 45.669485 ], [ -69.739838, 45.669725 ], [ -69.740181, 45.670204 ], [ -69.739494, 45.670444 ], [ -69.739494, 45.671164 ], [ -69.738808, 45.671644 ], [ -69.739151, 45.675242 ], [ -69.738121, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.737091, 45.676921 ], [ -69.738121, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738464, 45.676921 ], [ -69.738808, 45.679560 ], [ -69.740181, 45.679560 ], [ -69.741211, 45.680280 ], [ -69.745674, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.750481, 45.680520 ], [ -69.754601, 45.679560 ], [ -69.757004, 45.679800 ], [ -69.760094, 45.682678 ], [ -69.764557, 45.682438 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.684597 ], [ -69.769707, 45.684597 ], [ -69.773827, 45.686036 ], [ -69.775200, 45.687475 ], [ -69.774857, 45.687715 ], [ -69.776573, 45.687955 ], [ -69.777260, 45.688914 ], [ -69.778976, 45.689394 ], [ -69.779320, 45.690113 ], [ -69.781036, 45.689874 ], [ -69.783096, 45.690593 ], [ -69.783096, 45.691073 ], [ -69.785500, 45.692751 ], [ -69.785156, 45.697547 ], [ -69.786186, 45.698267 ], [ -69.785843, 45.699945 ], [ -69.787560, 45.701384 ], [ -69.789619, 45.702103 ], [ -69.789963, 45.703782 ], [ -69.790649, 45.704501 ], [ -69.790993, 45.706659 ], [ -69.790306, 45.710495 ], [ -69.792709, 45.711454 ], [ -69.793739, 45.712173 ], [ -69.793739, 45.712892 ], [ -69.796829, 45.713851 ], [ -69.797859, 45.715050 ], [ -69.803009, 45.715050 ], [ -69.805412, 45.716967 ], [ -69.805756, 45.720323 ], [ -69.806442, 45.720323 ], [ -69.806442, 45.721042 ], [ -69.807816, 45.722241 ], [ -69.807129, 45.722241 ], [ -69.806442, 45.721522 ], [ -69.805069, 45.721761 ], [ -69.804726, 45.720802 ], [ -69.803696, 45.720563 ], [ -69.803352, 45.721282 ], [ -69.804039, 45.721522 ], [ -69.804382, 45.722720 ], [ -69.803009, 45.723918 ], [ -69.801979, 45.723918 ], [ -69.801292, 45.723199 ], [ -69.799919, 45.722720 ], [ -69.799919, 45.724158 ], [ -69.799232, 45.724158 ], [ -69.798546, 45.725117 ], [ -69.797859, 45.725117 ], [ -69.797173, 45.724398 ], [ -69.795456, 45.724637 ], [ -69.795113, 45.725356 ], [ -69.792366, 45.725596 ], [ -69.791336, 45.726794 ], [ -69.791679, 45.728472 ], [ -69.794083, 45.728472 ], [ -69.796143, 45.730629 ], [ -69.797173, 45.730869 ], [ -69.799576, 45.732546 ], [ -69.799919, 45.733265 ], [ -69.805756, 45.733265 ], [ -69.807129, 45.732786 ], [ -69.809875, 45.733265 ], [ -69.810905, 45.734943 ], [ -69.812622, 45.735901 ], [ -69.812622, 45.736380 ], [ -69.810219, 45.736141 ], [ -69.811592, 45.736860 ], [ -69.811592, 45.737339 ], [ -69.819832, 45.739256 ], [ -69.820518, 45.739735 ], [ -69.820175, 45.740454 ], [ -69.821548, 45.740454 ], [ -69.824295, 45.742371 ], [ -69.826012, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827385, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.828072, 45.739016 ], [ -69.830132, 45.738058 ], [ -69.833221, 45.738537 ], [ -69.832878, 45.739016 ], [ -69.830132, 45.738777 ], [ -69.827042, 45.739975 ], [ -69.826355, 45.741891 ], [ -69.825325, 45.742371 ], [ -69.825325, 45.743089 ], [ -69.823952, 45.743808 ], [ -69.822578, 45.743569 ], [ -69.821892, 45.745006 ], [ -69.819489, 45.745725 ], [ -69.817429, 45.747162 ], [ -69.817085, 45.746683 ], [ -69.815369, 45.747162 ], [ -69.812622, 45.747162 ], [ -69.812965, 45.745965 ], [ -69.812279, 45.745965 ], [ -69.810219, 45.746444 ], [ -69.809189, 45.747162 ], [ -69.806442, 45.747642 ], [ -69.805412, 45.748600 ], [ -69.803696, 45.749079 ], [ -69.801292, 45.749079 ], [ -69.800262, 45.748600 ], [ -69.800262, 45.747881 ], [ -69.798546, 45.747642 ], [ -69.798203, 45.746683 ], [ -69.796486, 45.746204 ], [ -69.793739, 45.746204 ], [ -69.793053, 45.745725 ], [ -69.789963, 45.746683 ], [ -69.789963, 45.747162 ], [ -69.788246, 45.746923 ], [ -69.788246, 45.747402 ], [ -69.789619, 45.747881 ], [ -69.789619, 45.748600 ], [ -69.788589, 45.749079 ], [ -69.788589, 45.749558 ], [ -69.789619, 45.750037 ], [ -69.790993, 45.750037 ], [ -69.791679, 45.750516 ], [ -69.791336, 45.750756 ], [ -69.792366, 45.751235 ], [ -69.791679, 45.753152 ], [ -69.789963, 45.754349 ], [ -69.789963, 45.755787 ], [ -69.792366, 45.756266 ], [ -69.792709, 45.756984 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.757942 ], [ -69.791679, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.759619 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.762014 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.791336, 45.764409 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.765846 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.767762 ], [ -69.788933, 45.768960 ], [ -69.787560, 45.768960 ], [ -69.786873, 45.768481 ], [ -69.784813, 45.769439 ], [ -69.782410, 45.769678 ], [ -69.782753, 45.770876 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.772552 ], [ -69.781723, 45.773989 ], [ -69.784126, 45.773031 ], [ -69.784813, 45.774468 ], [ -69.783440, 45.774468 ], [ -69.782753, 45.774947 ], [ -69.784813, 45.775905 ], [ -69.786186, 45.775905 ], [ -69.786186, 45.774947 ], [ -69.787903, 45.774947 ], [ -69.787560, 45.776862 ], [ -69.788933, 45.776862 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.777820 ], [ -69.789619, 45.777820 ], [ -69.789619, 45.778299 ], [ -69.788246, 45.777820 ], [ -69.788246, 45.779257 ], [ -69.787216, 45.779736 ], [ -69.786873, 45.780933 ], [ -69.784813, 45.780933 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.783327 ], [ -69.785500, 45.783327 ], [ -69.785843, 45.783806 ], [ -69.787560, 45.783567 ], [ -69.787560, 45.784045 ], [ -69.788246, 45.784045 ], [ -69.788246, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783567 ], [ -69.792366, 45.783806 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.784764 ], [ -69.792023, 45.785482 ], [ -69.791336, 45.784285 ], [ -69.790993, 45.784524 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.783806 ], [ -69.788246, 45.785003 ], [ -69.786530, 45.785003 ], [ -69.785156, 45.785482 ], [ -69.784126, 45.784764 ], [ -69.784470, 45.784045 ], [ -69.783440, 45.785003 ], [ -69.783440, 45.784285 ], [ -69.784126, 45.783806 ], [ -69.783096, 45.783567 ], [ -69.783096, 45.782848 ], [ -69.782066, 45.782848 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781172 ], [ -69.783783, 45.781651 ], [ -69.784126, 45.780454 ], [ -69.785500, 45.779496 ], [ -69.786186, 45.779975 ], [ -69.786186, 45.779017 ], [ -69.785500, 45.779017 ], [ -69.785156, 45.778539 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.776862 ], [ -69.782753, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.780693, 45.777341 ], [ -69.780693, 45.776623 ], [ -69.782066, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.780350, 45.773989 ], [ -69.779320, 45.773270 ], [ -69.779320, 45.772313 ], [ -69.777260, 45.770876 ], [ -69.776573, 45.767762 ], [ -69.775543, 45.767523 ], [ -69.775887, 45.767044 ], [ -69.773827, 45.766086 ], [ -69.774513, 45.764888 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.764409 ], [ -69.771080, 45.763451 ], [ -69.767990, 45.762972 ], [ -69.767990, 45.762014 ], [ -69.768677, 45.762014 ], [ -69.769020, 45.761535 ], [ -69.762154, 45.761296 ], [ -69.761124, 45.762014 ], [ -69.760437, 45.761775 ], [ -69.760094, 45.762254 ], [ -69.759064, 45.762254 ], [ -69.758034, 45.761535 ], [ -69.752884, 45.761775 ], [ -69.750481, 45.763451 ], [ -69.751854, 45.765846 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.764649 ], [ -69.749794, 45.763212 ], [ -69.749107, 45.763212 ], [ -69.747391, 45.761535 ], [ -69.747391, 45.759859 ], [ -69.746361, 45.759859 ], [ -69.746017, 45.760338 ], [ -69.743958, 45.760098 ], [ -69.742241, 45.758182 ], [ -69.742584, 45.757224 ], [ -69.741211, 45.756745 ], [ -69.741211, 45.755547 ], [ -69.739494, 45.755547 ], [ -69.736748, 45.754828 ], [ -69.734001, 45.755308 ], [ -69.733315, 45.756026 ], [ -69.732628, 45.756026 ], [ -69.731598, 45.757942 ], [ -69.729881, 45.759140 ], [ -69.729881, 45.760338 ], [ -69.727821, 45.761056 ], [ -69.727821, 45.761535 ], [ -69.726448, 45.762254 ], [ -69.724731, 45.765846 ], [ -69.725761, 45.771594 ], [ -69.727135, 45.772313 ], [ -69.727821, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.728851, 45.775186 ], [ -69.729881, 45.776383 ], [ -69.731255, 45.776623 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738121, 45.782130 ], [ -69.738121, 45.782848 ], [ -69.734001, 45.783088 ], [ -69.733315, 45.783567 ], [ -69.731598, 45.783567 ], [ -69.730911, 45.783088 ], [ -69.726791, 45.783088 ], [ -69.725418, 45.783806 ], [ -69.724045, 45.783806 ], [ -69.723015, 45.783327 ], [ -69.723358, 45.785961 ], [ -69.722328, 45.787397 ], [ -69.720612, 45.788355 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791228 ], [ -69.719238, 45.794818 ], [ -69.718208, 45.796015 ], [ -69.718208, 45.797691 ], [ -69.717178, 45.798409 ], [ -69.717522, 45.798888 ], [ -69.716835, 45.798888 ], [ -69.716148, 45.800802 ], [ -69.714432, 45.801760 ], [ -69.713745, 45.804871 ], [ -69.713058, 45.805350 ], [ -69.712715, 45.806547 ], [ -69.712029, 45.806786 ], [ -69.710999, 45.808940 ], [ -69.708939, 45.810854 ], [ -69.708939, 45.812290 ], [ -69.709969, 45.814444 ], [ -69.709625, 45.815401 ], [ -69.710655, 45.815879 ], [ -69.711342, 45.817076 ], [ -69.710999, 45.817554 ], [ -69.711685, 45.817794 ], [ -69.712715, 45.819469 ], [ -69.712715, 45.823297 ], [ -69.713402, 45.823536 ], [ -69.714088, 45.824971 ], [ -69.715462, 45.825928 ], [ -69.716492, 45.829038 ], [ -69.718552, 45.829756 ], [ -69.718208, 45.831670 ], [ -69.719582, 45.834062 ], [ -69.720955, 45.834301 ], [ -69.723015, 45.833344 ], [ -69.724388, 45.833344 ], [ -69.725418, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.725075, 45.834062 ], [ -69.723015, 45.834062 ], [ -69.721642, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717522, 45.834540 ], [ -69.718208, 45.833344 ], [ -69.715118, 45.831909 ], [ -69.712029, 45.832388 ], [ -69.712029, 45.833823 ], [ -69.710999, 45.834062 ], [ -69.709625, 45.835976 ], [ -69.708252, 45.836693 ], [ -69.708939, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.838128 ], [ -69.707565, 45.839324 ], [ -69.707222, 45.842673 ], [ -69.706535, 45.843151 ], [ -69.706535, 45.843869 ], [ -69.705505, 45.844347 ], [ -69.705505, 45.845543 ], [ -69.704475, 45.846260 ], [ -69.705162, 45.846739 ], [ -69.706879, 45.846499 ], [ -69.707909, 45.846978 ], [ -69.707909, 45.849130 ], [ -69.708595, 45.850565 ], [ -69.706879, 45.852956 ], [ -69.706192, 45.853195 ], [ -69.705849, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.707222, 45.854152 ], [ -69.708939, 45.854391 ], [ -69.709625, 45.854869 ], [ -69.709282, 45.855826 ], [ -69.711342, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.713402, 45.861086 ], [ -69.715118, 45.862281 ], [ -69.716148, 45.863477 ], [ -69.716148, 45.864433 ], [ -69.717522, 45.865150 ], [ -69.717522, 45.865867 ], [ -69.720955, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.722672, 45.865628 ], [ -69.724388, 45.865628 ], [ -69.725075, 45.866106 ], [ -69.725075, 45.867063 ], [ -69.725761, 45.866824 ], [ -69.725761, 45.867302 ], [ -69.724388, 45.868019 ], [ -69.724731, 45.868975 ], [ -69.723701, 45.870888 ], [ -69.724388, 45.872083 ], [ -69.725075, 45.872083 ], [ -69.724731, 45.873995 ], [ -69.727135, 45.874712 ], [ -69.727135, 45.875907 ], [ -69.727478, 45.875429 ], [ -69.728165, 45.875429 ], [ -69.731255, 45.876863 ], [ -69.731941, 45.876624 ], [ -69.734001, 45.877103 ], [ -69.734688, 45.878776 ], [ -69.733658, 45.879254 ], [ -69.735031, 45.879493 ], [ -69.736061, 45.880210 ], [ -69.737778, 45.880210 ], [ -69.737778, 45.881166 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881644 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.883317 ], [ -69.736748, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881166 ], [ -69.735718, 45.880449 ], [ -69.733315, 45.880210 ], [ -69.732628, 45.879493 ], [ -69.732628, 45.878537 ], [ -69.731941, 45.878537 ], [ -69.730225, 45.879732 ], [ -69.727821, 45.879732 ], [ -69.727135, 45.880449 ], [ -69.725761, 45.880210 ], [ -69.724731, 45.879732 ] ], [ [ -69.792366, 45.783806 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.784045 ], [ -69.792366, 45.783806 ] ] ], [ [ [ -69.798546, 45.784764 ], [ -69.797859, 45.784764 ], [ -69.797516, 45.784524 ], [ -69.797516, 45.785721 ], [ -69.796486, 45.785003 ], [ -69.796143, 45.785482 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.784285 ], [ -69.797173, 45.783327 ], [ -69.797859, 45.783327 ], [ -69.797859, 45.784285 ], [ -69.798546, 45.784524 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.800262, 45.784524 ], [ -69.801292, 45.784764 ], [ -69.798546, 45.784764 ] ], [ [ -69.797173, 45.784285 ], [ -69.797516, 45.783567 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784285 ] ] ], [ [ [ -69.714432, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.715118, 45.589777 ], [ -69.714432, 45.589777 ] ] ], [ [ [ -69.807816, 45.722241 ], [ -69.808846, 45.722720 ], [ -69.810905, 45.722720 ], [ -69.812279, 45.721761 ], [ -69.813652, 45.722001 ], [ -69.815369, 45.721522 ], [ -69.813995, 45.722241 ], [ -69.811935, 45.722480 ], [ -69.810905, 45.723199 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722241 ] ] ], [ [ [ -69.795799, 45.784285 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.782848 ], [ -69.795456, 45.783567 ], [ -69.796486, 45.783327 ], [ -69.795799, 45.784285 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.802322, 45.785961 ], [ -69.801979, 45.786440 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.793053, 45.783327 ], [ -69.793053, 45.783088 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783327 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.724731, 45.879732 ], [ -69.725761, 45.880210 ], [ -69.727135, 45.880449 ], [ -69.727821, 45.879732 ], [ -69.730225, 45.879732 ], [ -69.731941, 45.878537 ], [ -69.732628, 45.878537 ], [ -69.732628, 45.879493 ], [ -69.733315, 45.880210 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881166 ], [ -69.737091, 45.880927 ], [ -69.736748, 45.882361 ], [ -69.737778, 45.883317 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.882361 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881166 ], [ -69.737778, 45.880210 ], [ -69.736061, 45.880210 ], [ -69.735031, 45.879493 ], [ -69.733658, 45.879254 ], [ -69.734688, 45.878776 ], [ -69.734001, 45.877103 ], [ -69.731941, 45.876624 ], [ -69.731255, 45.876863 ], [ -69.728165, 45.875429 ], [ -69.727478, 45.875429 ], [ -69.727135, 45.875907 ], [ -69.727135, 45.874712 ], [ -69.724731, 45.873995 ], [ -69.725075, 45.872083 ], [ -69.724388, 45.872083 ], [ -69.723701, 45.870888 ], [ -69.724731, 45.868975 ], [ -69.724388, 45.868019 ], [ -69.725761, 45.867302 ], [ -69.725761, 45.866824 ], [ -69.725075, 45.867063 ], [ -69.725075, 45.866106 ], [ -69.724388, 45.865628 ], [ -69.722672, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.720955, 45.865628 ], [ -69.717522, 45.865867 ], [ -69.717522, 45.865150 ], [ -69.716148, 45.864433 ], [ -69.716148, 45.863477 ], [ -69.715118, 45.862281 ], [ -69.713402, 45.861086 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711342, 45.856543 ], [ -69.709282, 45.855826 ], [ -69.709625, 45.854869 ], [ -69.708939, 45.854391 ], [ -69.707222, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.705849, 45.854152 ], [ -69.706192, 45.853195 ], [ -69.706879, 45.852956 ], [ -69.708595, 45.850565 ], [ -69.707909, 45.849130 ], [ -69.707909, 45.846978 ], [ -69.706879, 45.846499 ], [ -69.705162, 45.846739 ], [ -69.704475, 45.846260 ], [ -69.705505, 45.845543 ], [ -69.705505, 45.844347 ], [ -69.706535, 45.843869 ], [ -69.706535, 45.843151 ], [ -69.707222, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708252, 45.838128 ], [ -69.708939, 45.837889 ], [ -69.708939, 45.836932 ], [ -69.708252, 45.836693 ], [ -69.709625, 45.835976 ], [ -69.710999, 45.834062 ], [ -69.712029, 45.833823 ], [ -69.712029, 45.832388 ], [ -69.715118, 45.831909 ], [ -69.718208, 45.833344 ], [ -69.717522, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721642, 45.835019 ], [ -69.723015, 45.834062 ], [ -69.725075, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.725761, 45.833823 ], [ -69.724388, 45.833344 ], [ -69.723015, 45.833344 ], [ -69.720955, 45.834301 ], [ -69.719582, 45.834062 ], [ -69.718208, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829038 ], [ -69.715462, 45.825928 ], [ -69.714088, 45.824971 ], [ -69.713402, 45.823536 ], [ -69.712715, 45.823297 ], [ -69.712715, 45.819469 ], [ -69.711685, 45.817794 ], [ -69.710999, 45.817554 ], [ -69.711342, 45.817076 ], [ -69.710655, 45.815879 ], [ -69.709625, 45.815401 ], [ -69.709969, 45.814444 ], [ -69.708939, 45.812290 ], [ -69.708939, 45.810854 ], [ -69.710999, 45.808940 ], [ -69.712029, 45.806786 ], [ -69.712715, 45.806547 ], [ -69.713058, 45.805350 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.785003 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.792366, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.338249, 45.161222 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.852717 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285721, 45.871844 ], [ -70.284348, 45.871844 ], [ -70.283318, 45.873517 ], [ -70.281258, 45.874234 ], [ -70.280228, 45.876385 ], [ -70.278168, 45.877342 ], [ -70.276794, 45.878776 ], [ -70.274048, 45.879732 ], [ -70.274048, 45.881405 ], [ -70.273018, 45.882839 ], [ -70.270615, 45.884512 ], [ -70.268555, 45.885229 ], [ -70.267525, 45.886185 ], [ -70.265808, 45.886424 ], [ -70.263748, 45.887857 ], [ -70.262375, 45.888096 ], [ -70.261345, 45.888813 ], [ -70.261345, 45.889291 ], [ -70.259972, 45.890008 ], [ -70.259972, 45.890725 ], [ -70.258942, 45.891203 ], [ -70.260658, 45.892398 ], [ -70.262032, 45.892637 ], [ -70.262718, 45.892159 ], [ -70.264778, 45.892876 ], [ -70.265808, 45.893354 ], [ -70.265808, 45.894070 ], [ -70.264091, 45.895026 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897416 ], [ -70.260658, 45.898849 ], [ -70.258255, 45.899805 ], [ -70.257225, 45.900999 ], [ -70.255852, 45.901238 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.903389 ], [ -70.254135, 45.903866 ], [ -70.254135, 45.906255 ], [ -70.253448, 45.907450 ], [ -70.254478, 45.907689 ], [ -70.254478, 45.908167 ], [ -70.255852, 45.908883 ], [ -70.259628, 45.909600 ], [ -70.259972, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.913900 ], [ -70.258942, 45.915572 ], [ -70.257568, 45.915810 ], [ -70.257912, 45.917482 ], [ -70.257225, 45.917960 ], [ -70.257568, 45.918438 ], [ -70.259628, 45.918915 ], [ -70.259972, 45.920110 ], [ -70.260658, 45.920587 ], [ -70.262718, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263405, 45.923931 ], [ -70.261345, 45.925841 ], [ -70.259285, 45.926558 ], [ -70.259285, 45.928230 ], [ -70.255852, 45.929424 ], [ -70.254478, 45.930617 ], [ -70.253448, 45.932767 ], [ -70.251732, 45.933960 ], [ -70.248985, 45.934677 ], [ -70.246925, 45.936348 ], [ -70.244179, 45.937303 ], [ -70.243149, 45.937064 ], [ -70.242805, 45.938019 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.940646 ], [ -70.239716, 45.941601 ], [ -70.240402, 45.942078 ], [ -70.240402, 45.943033 ], [ -70.239372, 45.943749 ], [ -70.239716, 45.944227 ], [ -70.240746, 45.943988 ], [ -70.241432, 45.944704 ], [ -70.242462, 45.944227 ], [ -70.244522, 45.944704 ], [ -70.242805, 45.945898 ], [ -70.242462, 45.946853 ], [ -70.244865, 45.947808 ], [ -70.246925, 45.949479 ], [ -70.248299, 45.949717 ], [ -70.248299, 45.950911 ], [ -70.248642, 45.951627 ], [ -70.249329, 45.951866 ], [ -70.248985, 45.952582 ], [ -70.250359, 45.952582 ], [ -70.251389, 45.953298 ], [ -70.252075, 45.954253 ], [ -70.252075, 45.955446 ], [ -70.253105, 45.955685 ], [ -70.254822, 45.954491 ], [ -70.255165, 45.953059 ], [ -70.255852, 45.952582 ], [ -70.259285, 45.952104 ], [ -70.260658, 45.952343 ], [ -70.260658, 45.953775 ], [ -70.259285, 45.954253 ], [ -70.258598, 45.954969 ], [ -70.259972, 45.956162 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.959981 ], [ -70.263405, 45.962129 ], [ -70.264778, 45.962368 ], [ -70.265808, 45.963084 ], [ -70.265465, 45.964038 ], [ -70.266151, 45.964515 ], [ -70.267868, 45.962845 ], [ -70.269585, 45.962606 ], [ -70.271645, 45.961413 ], [ -70.274734, 45.961413 ], [ -70.275421, 45.963322 ], [ -70.274734, 45.963799 ], [ -70.273018, 45.964038 ], [ -70.273018, 45.964515 ], [ -70.274391, 45.964515 ], [ -70.274734, 45.966186 ], [ -70.275421, 45.966902 ], [ -70.277138, 45.966902 ], [ -70.278854, 45.965947 ], [ -70.280571, 45.965709 ], [ -70.280571, 45.964515 ], [ -70.282631, 45.964277 ], [ -70.283318, 45.963799 ], [ -70.284004, 45.963799 ], [ -70.284348, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.968811 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.284004, 45.995531 ], [ -70.284691, 45.995769 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.299110, 46.030104 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.284691, 46.048455 ], [ -70.284691, 46.048931 ], [ -70.281258, 46.050838 ], [ -70.280914, 46.051791 ], [ -70.279884, 46.052267 ], [ -70.281258, 46.053220 ], [ -70.280914, 46.054411 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -69.729881, 46.092281 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.053697 ], [ -69.728851, 46.037969 ], [ -69.728851, 45.976924 ], [ -69.683876, 45.983842 ], [ -69.677696, 45.965231 ], [ -69.661560, 45.910555 ], [ -69.646797, 45.863238 ], [ -69.648170, 45.863716 ], [ -69.648514, 45.862998 ], [ -69.649200, 45.863477 ], [ -69.651260, 45.862998 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863955 ], [ -69.654007, 45.862998 ], [ -69.655380, 45.862759 ], [ -69.654694, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.655724, 45.862281 ], [ -69.657097, 45.862042 ], [ -69.657097, 45.861325 ], [ -69.656410, 45.860847 ], [ -69.656754, 45.860369 ], [ -69.658127, 45.860608 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.861086 ], [ -69.659157, 45.860608 ], [ -69.659843, 45.860608 ], [ -69.660187, 45.861325 ], [ -69.660873, 45.860847 ], [ -69.662590, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.663963, 45.861564 ], [ -69.664650, 45.862042 ], [ -69.667397, 45.862042 ], [ -69.667740, 45.861564 ], [ -69.668770, 45.861564 ], [ -69.670143, 45.860847 ], [ -69.670486, 45.861325 ], [ -69.671516, 45.861325 ], [ -69.672203, 45.862042 ], [ -69.673576, 45.862520 ], [ -69.673576, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.674606, 45.861803 ], [ -69.673233, 45.860847 ], [ -69.673233, 45.859890 ], [ -69.672546, 45.859651 ], [ -69.672546, 45.858695 ], [ -69.674263, 45.857499 ], [ -69.673920, 45.856304 ], [ -69.674606, 45.855826 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851521 ], [ -69.676323, 45.852956 ], [ -69.678040, 45.852956 ], [ -69.678383, 45.852000 ], [ -69.681816, 45.851760 ], [ -69.682503, 45.852239 ], [ -69.683533, 45.851043 ], [ -69.684219, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.685936, 45.852956 ], [ -69.686966, 45.853913 ], [ -69.690399, 45.854391 ], [ -69.689369, 45.855108 ], [ -69.689369, 45.858217 ], [ -69.690399, 45.858934 ], [ -69.692116, 45.859173 ], [ -69.691429, 45.860847 ], [ -69.694176, 45.862042 ], [ -69.693832, 45.862520 ], [ -69.693146, 45.862520 ], [ -69.692802, 45.863238 ], [ -69.693489, 45.864194 ], [ -69.692116, 45.864672 ], [ -69.692116, 45.865150 ], [ -69.694176, 45.864194 ], [ -69.697266, 45.864433 ], [ -69.696922, 45.867541 ], [ -69.699326, 45.868736 ], [ -69.699326, 45.870410 ], [ -69.700356, 45.870888 ], [ -69.700012, 45.871605 ], [ -69.701385, 45.872561 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.875429 ], [ -69.702072, 45.875668 ], [ -69.701729, 45.876146 ], [ -69.702759, 45.876863 ], [ -69.702759, 45.878776 ], [ -69.701729, 45.879015 ], [ -69.701729, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.884751 ], [ -69.697952, 45.885229 ], [ -69.698296, 45.885946 ], [ -69.699669, 45.885707 ], [ -69.702072, 45.886185 ], [ -69.703445, 45.885946 ], [ -69.704132, 45.885229 ], [ -69.705849, 45.884990 ], [ -69.707565, 45.885707 ], [ -69.709282, 45.885707 ], [ -69.709625, 45.885229 ], [ -69.711685, 45.884990 ], [ -69.712029, 45.884273 ], [ -69.712715, 45.884273 ], [ -69.712715, 45.883317 ], [ -69.716492, 45.883556 ], [ -69.717178, 45.882600 ], [ -69.719582, 45.882361 ], [ -69.720612, 45.881644 ], [ -69.723015, 45.881166 ], [ -69.723701, 45.880688 ], [ -69.723358, 45.879971 ], [ -69.724731, 45.879732 ] ], [ [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785482 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.798546, 45.784764 ], [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ] ], [ [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ] ], [ [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.807816, 45.722241 ] ], [ [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793053, 45.783088 ], [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ] ], [ [ -69.801636, 45.785482 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785482 ] ], [ [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.796829, 45.784045 ], [ -69.797516, 45.783567 ], [ -69.797173, 45.784285 ], [ -69.796829, 45.784285 ], [ -69.796829, 45.784045 ] ] ], [ [ [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ] ] ], [ [ [ -69.792366, 45.783806 ], [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.783806 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.724731, 45.879732 ], [ -69.725761, 45.880210 ], [ -69.727135, 45.880449 ], [ -69.727821, 45.879732 ], [ -69.730225, 45.879732 ], [ -69.731941, 45.878537 ], [ -69.732628, 45.878537 ], [ -69.732628, 45.879493 ], [ -69.733315, 45.880210 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881166 ], [ -69.737091, 45.880927 ], [ -69.736748, 45.882361 ], [ -69.737778, 45.883317 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.882361 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881166 ], [ -69.737778, 45.880210 ], [ -69.736061, 45.880210 ], [ -69.735031, 45.879493 ], [ -69.733658, 45.879254 ], [ -69.734688, 45.878776 ], [ -69.734001, 45.877103 ], [ -69.731941, 45.876624 ], [ -69.731255, 45.876863 ], [ -69.728165, 45.875429 ], [ -69.727478, 45.875429 ], [ -69.727135, 45.875907 ], [ -69.727135, 45.874712 ], [ -69.724731, 45.873995 ], [ -69.725075, 45.872083 ], [ -69.724388, 45.872083 ], [ -69.723701, 45.870888 ], [ -69.724731, 45.868975 ], [ -69.724388, 45.868019 ], [ -69.725761, 45.867302 ], [ -69.725761, 45.866824 ], [ -69.725075, 45.867063 ], [ -69.725075, 45.866106 ], [ -69.724388, 45.865628 ], [ -69.722672, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.720955, 45.865628 ], [ -69.717522, 45.865867 ], [ -69.717522, 45.865150 ], [ -69.716148, 45.864433 ], [ -69.716148, 45.863477 ], [ -69.715118, 45.862281 ], [ -69.713402, 45.861086 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711342, 45.856543 ], [ -69.709282, 45.855826 ], [ -69.709625, 45.854869 ], [ -69.708939, 45.854391 ], [ -69.707222, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.705849, 45.854152 ], [ -69.706192, 45.853195 ], [ -69.706879, 45.852956 ], [ -69.708595, 45.850565 ], [ -69.707909, 45.849130 ], [ -69.707909, 45.846978 ], [ -69.706879, 45.846499 ], [ -69.705162, 45.846739 ], [ -69.704475, 45.846260 ], [ -69.705505, 45.845543 ], [ -69.705505, 45.844347 ], [ -69.706535, 45.843869 ], [ -69.706535, 45.843151 ], [ -69.707222, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708252, 45.838128 ], [ -69.708939, 45.837889 ], [ -69.708939, 45.836932 ], [ -69.708252, 45.836693 ], [ -69.709625, 45.835976 ], [ -69.710999, 45.834062 ], [ -69.712029, 45.833823 ], [ -69.712029, 45.832388 ], [ -69.715118, 45.831909 ], [ -69.718208, 45.833344 ], [ -69.717522, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721642, 45.835019 ], [ -69.723015, 45.834062 ], [ -69.725075, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.725761, 45.833823 ], [ -69.724388, 45.833344 ], [ -69.723015, 45.833344 ], [ -69.720955, 45.834301 ], [ -69.719582, 45.834062 ], [ -69.718208, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829038 ], [ -69.715462, 45.825928 ], [ -69.714088, 45.824971 ], [ -69.713402, 45.823536 ], [ -69.712715, 45.823297 ], [ -69.712715, 45.819469 ], [ -69.711685, 45.817794 ], [ -69.710999, 45.817554 ], [ -69.711342, 45.817076 ], [ -69.710655, 45.815879 ], [ -69.709625, 45.815401 ], [ -69.709969, 45.814444 ], [ -69.708939, 45.812290 ], [ -69.708939, 45.810854 ], [ -69.710999, 45.808940 ], [ -69.712029, 45.806786 ], [ -69.712715, 45.806547 ], [ -69.713058, 45.805350 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.792366, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.338249, 45.161222 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.852717 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285721, 45.871844 ], [ -70.284348, 45.871844 ], [ -70.283318, 45.873517 ], [ -70.281258, 45.874234 ], [ -70.280228, 45.876385 ], [ -70.278168, 45.877342 ], [ -70.276794, 45.878776 ], [ -70.274048, 45.879732 ], [ -70.274048, 45.881405 ], [ -70.273018, 45.882839 ], [ -70.270615, 45.884512 ], [ -70.268555, 45.885229 ], [ -70.267525, 45.886185 ], [ -70.265808, 45.886424 ], [ -70.263748, 45.887857 ], [ -70.262375, 45.888096 ], [ -70.261345, 45.888813 ], [ -70.261345, 45.889291 ], [ -70.259972, 45.890008 ], [ -70.259972, 45.890725 ], [ -70.258942, 45.891203 ], [ -70.260658, 45.892398 ], [ -70.262032, 45.892637 ], [ -70.262718, 45.892159 ], [ -70.264778, 45.892876 ], [ -70.265808, 45.893354 ], [ -70.265808, 45.894070 ], [ -70.264091, 45.895026 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897416 ], [ -70.260658, 45.898849 ], [ -70.258255, 45.899805 ], [ -70.257225, 45.900999 ], [ -70.255852, 45.901238 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.903389 ], [ -70.254135, 45.903866 ], [ -70.254135, 45.906255 ], [ -70.253448, 45.907450 ], [ -70.254478, 45.907689 ], [ -70.254478, 45.908167 ], [ -70.255852, 45.908883 ], [ -70.259628, 45.909600 ], [ -70.259972, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.913900 ], [ -70.258942, 45.915572 ], [ -70.257568, 45.915810 ], [ -70.257912, 45.917482 ], [ -70.257225, 45.917960 ], [ -70.257568, 45.918438 ], [ -70.259628, 45.918915 ], [ -70.259972, 45.920110 ], [ -70.260658, 45.920587 ], [ -70.262718, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263405, 45.923931 ], [ -70.261345, 45.925841 ], [ -70.259285, 45.926558 ], [ -70.259285, 45.928230 ], [ -70.255852, 45.929424 ], [ -70.254478, 45.930617 ], [ -70.253448, 45.932767 ], [ -70.251732, 45.933960 ], [ -70.248985, 45.934677 ], [ -70.246925, 45.936348 ], [ -70.244179, 45.937303 ], [ -70.243149, 45.937064 ], [ -70.242805, 45.938019 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.940646 ], [ -70.239716, 45.941601 ], [ -70.240402, 45.942078 ], [ -70.240402, 45.943033 ], [ -70.239372, 45.943749 ], [ -70.239716, 45.944227 ], [ -70.240746, 45.943988 ], [ -70.241432, 45.944704 ], [ -70.242462, 45.944227 ], [ -70.244522, 45.944704 ], [ -70.242805, 45.945898 ], [ -70.242462, 45.946853 ], [ -70.244865, 45.947808 ], [ -70.246925, 45.949479 ], [ -70.248299, 45.949717 ], [ -70.248299, 45.950911 ], [ -70.248642, 45.951627 ], [ -70.249329, 45.951866 ], [ -70.248985, 45.952582 ], [ -70.250359, 45.952582 ], [ -70.251389, 45.953298 ], [ -70.252075, 45.954253 ], [ -70.252075, 45.955446 ], [ -70.253105, 45.955685 ], [ -70.254822, 45.954491 ], [ -70.255165, 45.953059 ], [ -70.255852, 45.952582 ], [ -70.259285, 45.952104 ], [ -70.260658, 45.952343 ], [ -70.260658, 45.953775 ], [ -70.259285, 45.954253 ], [ -70.258598, 45.954969 ], [ -70.259972, 45.956162 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.959981 ], [ -70.263405, 45.962129 ], [ -70.264778, 45.962368 ], [ -70.265808, 45.963084 ], [ -70.265465, 45.964038 ], [ -70.266151, 45.964515 ], [ -70.267868, 45.962845 ], [ -70.269585, 45.962606 ], [ -70.271645, 45.961413 ], [ -70.274734, 45.961413 ], [ -70.275421, 45.963322 ], [ -70.274734, 45.963799 ], [ -70.273018, 45.964038 ], [ -70.273018, 45.964515 ], [ -70.274391, 45.964515 ], [ -70.274734, 45.966186 ], [ -70.275421, 45.966902 ], [ -70.277138, 45.966902 ], [ -70.278854, 45.965947 ], [ -70.280571, 45.965709 ], [ -70.280571, 45.964515 ], [ -70.282631, 45.964277 ], [ -70.283318, 45.963799 ], [ -70.284004, 45.963799 ], [ -70.284348, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.968811 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.284004, 45.995531 ], [ -70.284691, 45.995769 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.299110, 46.030104 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.284691, 46.048455 ], [ -70.284691, 46.048931 ], [ -70.281258, 46.050838 ], [ -70.280914, 46.051791 ], [ -70.279884, 46.052267 ], [ -70.281258, 46.053220 ], [ -70.280914, 46.054411 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -69.729881, 46.092281 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.053697 ], [ -69.728851, 46.037969 ], [ -69.728851, 45.976924 ], [ -69.683876, 45.983842 ], [ -69.677696, 45.965231 ], [ -69.661560, 45.910555 ], [ -69.646797, 45.863238 ], [ -69.648170, 45.863716 ], [ -69.648514, 45.862998 ], [ -69.649200, 45.863477 ], [ -69.651260, 45.862998 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863955 ], [ -69.654007, 45.862998 ], [ -69.655380, 45.862759 ], [ -69.654694, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.655724, 45.862281 ], [ -69.657097, 45.862042 ], [ -69.657097, 45.861325 ], [ -69.656410, 45.860847 ], [ -69.656754, 45.860369 ], [ -69.658127, 45.860608 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.861086 ], [ -69.659157, 45.860608 ], [ -69.659843, 45.860608 ], [ -69.660187, 45.861325 ], [ -69.660873, 45.860847 ], [ -69.662590, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.663963, 45.861564 ], [ -69.664650, 45.862042 ], [ -69.667397, 45.862042 ], [ -69.667740, 45.861564 ], [ -69.668770, 45.861564 ], [ -69.670143, 45.860847 ], [ -69.670486, 45.861325 ], [ -69.671516, 45.861325 ], [ -69.672203, 45.862042 ], [ -69.673576, 45.862520 ], [ -69.673576, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.674606, 45.861803 ], [ -69.673233, 45.860847 ], [ -69.673233, 45.859890 ], [ -69.672546, 45.859651 ], [ -69.672546, 45.858695 ], [ -69.674263, 45.857499 ], [ -69.673920, 45.856304 ], [ -69.674606, 45.855826 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851521 ], [ -69.676323, 45.852956 ], [ -69.678040, 45.852956 ], [ -69.678383, 45.852000 ], [ -69.681816, 45.851760 ], [ -69.682503, 45.852239 ], [ -69.683533, 45.851043 ], [ -69.684219, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.685936, 45.852956 ], [ -69.686966, 45.853913 ], [ -69.690399, 45.854391 ], [ -69.689369, 45.855108 ], [ -69.689369, 45.858217 ], [ -69.690399, 45.858934 ], [ -69.692116, 45.859173 ], [ -69.691429, 45.860847 ], [ -69.694176, 45.862042 ], [ -69.693832, 45.862520 ], [ -69.693146, 45.862520 ], [ -69.692802, 45.863238 ], [ -69.693489, 45.864194 ], [ -69.692116, 45.864672 ], [ -69.692116, 45.865150 ], [ -69.694176, 45.864194 ], [ -69.697266, 45.864433 ], [ -69.696922, 45.867541 ], [ -69.699326, 45.868736 ], [ -69.699326, 45.870410 ], [ -69.700356, 45.870888 ], [ -69.700012, 45.871605 ], [ -69.701385, 45.872561 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.875429 ], [ -69.702072, 45.875668 ], [ -69.701729, 45.876146 ], [ -69.702759, 45.876863 ], [ -69.702759, 45.878776 ], [ -69.701729, 45.879015 ], [ -69.701729, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.884751 ], [ -69.697952, 45.885229 ], [ -69.698296, 45.885946 ], [ -69.699669, 45.885707 ], [ -69.702072, 45.886185 ], [ -69.703445, 45.885946 ], [ -69.704132, 45.885229 ], [ -69.705849, 45.884990 ], [ -69.707565, 45.885707 ], [ -69.709282, 45.885707 ], [ -69.709625, 45.885229 ], [ -69.711685, 45.884990 ], [ -69.712029, 45.884273 ], [ -69.712715, 45.884273 ], [ -69.712715, 45.883317 ], [ -69.716492, 45.883556 ], [ -69.717178, 45.882600 ], [ -69.719582, 45.882361 ], [ -69.720612, 45.881644 ], [ -69.723015, 45.881166 ], [ -69.723701, 45.880688 ], [ -69.723358, 45.879971 ], [ -69.724731, 45.879732 ] ], [ [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785482 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.798546, 45.784764 ], [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ] ], [ [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ] ], [ [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.807816, 45.722241 ] ], [ [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ] ], [ [ -69.801636, 45.785482 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785482 ] ], [ [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783088 ], [ -69.792709, 45.783806 ] ], [ [ -69.784126, 45.784045 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.785003 ], [ -69.784126, 45.784045 ] ], [ [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.796829, 45.784045 ], [ -69.797516, 45.783567 ], [ -69.797173, 45.784285 ], [ -69.796829, 45.784285 ], [ -69.796829, 45.784045 ] ] ], [ [ [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ] ] ], [ [ [ -69.792366, 45.783806 ], [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.783806 ] ] ] ] } } ] } ] } , diff --git a/tests/tl_2018_51685_roads/in.json b/tests/tl_2018_51685_roads/in.json new file mode 100644 index 000000000..c5e061f02 --- /dev/null +++ b/tests/tl_2018_51685_roads/in.json @@ -0,0 +1,263 @@ +{ +"type": "FeatureCollection", +"name": "tl_2018_51685_roads", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4269" } }, +"features": [ +{ "type": "Feature", "properties": { "LINEARID": "1103679538189", "FULLNAME": "Old Centreville Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458507, 38.787394 ], [ -77.458575, 38.786812 ], [ -77.45858, 38.786772 ], [ -77.458642, 38.786275 ], [ -77.458729, 38.785587 ], [ -77.458834, 38.784767 ], [ -77.458927, 38.783965 ], [ -77.458952, 38.78375 ], [ -77.458974, 38.783532 ], [ -77.459003, 38.783237 ], [ -77.459035, 38.782899 ], [ -77.459083, 38.78228 ], [ -77.459115, 38.781859 ], [ -77.459171, 38.781148 ], [ -77.459249, 38.780446 ], [ -77.459436, 38.778963 ], [ -77.459499, 38.778395 ], [ -77.459488, 38.778323 ], [ -77.45946, 38.778253 ], [ -77.459432, 38.778209 ], [ -77.45937, 38.778143 ], [ -77.4593, 38.778094 ], [ -77.456905, 38.776756 ], [ -77.454755, 38.775544 ], [ -77.454437, 38.775365 ], [ -77.453621, 38.774891 ], [ -77.453132, 38.774571 ], [ -77.452981, 38.774454 ], [ -77.452817, 38.774301 ], [ -77.452715, 38.774182 ], [ -77.452654, 38.774084 ], [ -77.452611, 38.77398 ], [ -77.452585, 38.773874 ], [ -77.452577, 38.773765 ], [ -77.452556, 38.77363 ], [ -77.452539, 38.773582 ], [ -77.452532, 38.77356 ], [ -77.452514, 38.773526 ], [ -77.452485, 38.773495 ], [ -77.452442, 38.773475 ], [ -77.452349, 38.773462 ], [ -77.452262, 38.773445 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477291", "FULLNAME": "S Whitt Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428662, 38.755834 ], [ -77.428525, 38.756162 ], [ -77.428248, 38.756773 ], [ -77.428165, 38.75691 ], [ -77.428064, 38.757041 ], [ -77.427947, 38.757163 ], [ -77.427824, 38.757282 ], [ -77.427741, 38.757386 ], [ -77.427675, 38.757497 ], [ -77.427558, 38.757789 ], [ -77.427367, 38.758271 ], [ -77.427259, 38.758572 ], [ -77.427108, 38.759001 ], [ -77.427077, 38.759148 ], [ -77.427065, 38.759296 ], [ -77.427072, 38.759516 ], [ -77.427085, 38.759862 ], [ -77.427103, 38.760679 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477443", "FULLNAME": "E Carondelet Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430911, 38.760992 ], [ -77.430179, 38.760708 ], [ -77.429786, 38.760559 ], [ -77.429498, 38.760423 ], [ -77.429221, 38.760274 ], [ -77.428315, 38.759796 ], [ -77.42808, 38.759694 ], [ -77.427885, 38.759622 ], [ -77.42764, 38.759566 ], [ -77.427491, 38.759539 ], [ -77.427273, 38.759521 ], [ -77.427072, 38.759516 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536124", "FULLNAME": "W Carondelet Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436898, 38.765563 ], [ -77.436515, 38.765346 ], [ -77.436382, 38.765249 ], [ -77.435733, 38.764989 ], [ -77.435416, 38.764819 ], [ -77.435319, 38.764768 ], [ -77.434965, 38.764566 ], [ -77.434483, 38.764281 ], [ -77.434234, 38.764129 ], [ -77.434083, 38.763984 ], [ -77.433972, 38.763878 ], [ -77.43385, 38.763713 ], [ -77.43377, 38.763561 ], [ -77.433741, 38.763487 ], [ -77.433392, 38.762584 ], [ -77.433299, 38.762371 ], [ -77.433223, 38.762241 ], [ -77.43313, 38.762119 ], [ -77.433046, 38.762026 ], [ -77.432926, 38.761914 ], [ -77.432823, 38.761828 ], [ -77.432642, 38.761699 ], [ -77.432457, 38.761594 ], [ -77.432292, 38.761516 ], [ -77.432214, 38.761484 ], [ -77.431042, 38.761044 ], [ -77.430911, 38.760992 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477307", "FULLNAME": "Crozet St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.455702, 38.774851 ], [ -77.455749, 38.774821 ], [ -77.455778, 38.774795 ], [ -77.456184, 38.774337 ], [ -77.45645, 38.774045 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477280", "FULLNAME": "Price Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458877, 38.774182 ], [ -77.458999, 38.774055 ], [ -77.4591, 38.773913 ], [ -77.459169, 38.773785 ], [ -77.45922, 38.773651 ], [ -77.459251, 38.773523 ], [ -77.459265, 38.773394 ], [ -77.459251, 38.773011 ], [ -77.459238, 38.772698 ], [ -77.459232, 38.772666 ], [ -77.459226, 38.772648 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477515", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.45916, 38.772598 ], [ -77.459204, 38.772623 ], [ -77.459226, 38.772648 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477377", "FULLNAME": "Hardees Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454268, 38.770769 ], [ -77.453406, 38.770646 ], [ -77.45293, 38.770587 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1102214409896", "FULLNAME": "Centreville Rd", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452262, 38.773445 ], [ -77.452322, 38.773224 ], [ -77.452506, 38.772405 ], [ -77.45266, 38.771722 ], [ -77.452857, 38.770876 ], [ -77.45293, 38.770587 ], [ -77.452994, 38.77038 ], [ -77.45309, 38.77013 ], [ -77.453218, 38.769849 ], [ -77.45338, 38.769559 ], [ -77.453499, 38.76937 ], [ -77.453707, 38.76909 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1102214411210", "FULLNAME": "State Rte 28", "RTTYP": "S", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452262, 38.773445 ], [ -77.452322, 38.773224 ], [ -77.452506, 38.772405 ], [ -77.45266, 38.771722 ], [ -77.452857, 38.770876 ], [ -77.45293, 38.770587 ], [ -77.452994, 38.77038 ], [ -77.45309, 38.77013 ], [ -77.453218, 38.769849 ], [ -77.45338, 38.769559 ], [ -77.453499, 38.76937 ], [ -77.453707, 38.76909 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477256", "FULLNAME": "Brian Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448814, 38.76692 ], [ -77.449142, 38.76655 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477217", "FULLNAME": "State Rte 28", "RTTYP": "S", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.4521, 38.773417 ], [ -77.452286, 38.772609 ], [ -77.452341, 38.772372 ], [ -77.452442, 38.771884 ], [ -77.452489, 38.771693 ], [ -77.452584, 38.771324 ], [ -77.452728, 38.770689 ], [ -77.452782, 38.770506 ], [ -77.452886, 38.770232 ], [ -77.452991, 38.769999 ], [ -77.453086, 38.769816 ], [ -77.453259, 38.769509 ], [ -77.45337, 38.769343 ], [ -77.453591, 38.769031 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477427", "FULLNAME": "Wilcoxen Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435683, 38.763097 ], [ -77.435363, 38.763 ], [ -77.435296, 38.762973 ], [ -77.435211, 38.76293 ], [ -77.43503, 38.762818 ], [ -77.434899, 38.76276 ], [ -77.434816, 38.762731 ], [ -77.434258, 38.76256 ], [ -77.434152, 38.762539 ], [ -77.434065, 38.762533 ], [ -77.433952, 38.762531 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477438", "FULLNAME": "Stephanie St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42775, 38.765373 ], [ -77.427261, 38.765304 ], [ -77.427145, 38.765284 ], [ -77.426955, 38.76524 ], [ -77.426771, 38.765183 ], [ -77.426665, 38.765142 ], [ -77.42651, 38.765071 ], [ -77.426329, 38.764965 ], [ -77.426169, 38.764846 ], [ -77.425999, 38.764687 ], [ -77.425839, 38.764534 ], [ -77.425755, 38.764463 ], [ -77.425536, 38.764294 ], [ -77.425297, 38.764148 ], [ -77.425211, 38.764095 ], [ -77.425128, 38.764053 ], [ -77.424916, 38.763956 ], [ -77.42474, 38.763888 ], [ -77.424513, 38.763815 ], [ -77.424379, 38.763782 ], [ -77.424158, 38.763742 ], [ -77.423888, 38.763712 ], [ -77.423662, 38.763703 ], [ -77.42336, 38.76371 ], [ -77.423212, 38.763721 ], [ -77.423102, 38.763736 ], [ -77.422921, 38.763771 ], [ -77.422337, 38.763924 ], [ -77.421922, 38.76404 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536656", "FULLNAME": "Brandon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429703, 38.761481 ], [ -77.429162, 38.761268 ], [ -77.429034, 38.761204 ], [ -77.428531, 38.760897 ], [ -77.428384, 38.760828 ], [ -77.428228, 38.760771 ], [ -77.428066, 38.760728 ], [ -77.427866, 38.760696 ], [ -77.427664, 38.76068 ], [ -77.427103, 38.760679 ], [ -77.426995, 38.760679 ], [ -77.426707, 38.760689 ], [ -77.426491, 38.760682 ], [ -77.426277, 38.760662 ], [ -77.426084, 38.760631 ], [ -77.425793, 38.760562 ], [ -77.425529, 38.760484 ], [ -77.424749, 38.760207 ], [ -77.424738, 38.760203 ], [ -77.424704, 38.760169 ], [ -77.424686, 38.760129 ], [ -77.424686, 38.760087 ], [ -77.424702, 38.760046 ], [ -77.424786, 38.759914 ], [ -77.424801, 38.759856 ], [ -77.424797, 38.759796 ], [ -77.424786, 38.759762 ], [ -77.42465, 38.75948 ], [ -77.424602, 38.759421 ], [ -77.424528, 38.759356 ], [ -77.424444, 38.759306 ], [ -77.42431, 38.75925 ], [ -77.424225, 38.759223 ], [ -77.424031, 38.759175 ], [ -77.423922, 38.759167 ], [ -77.423813, 38.759174 ], [ -77.423476, 38.75926 ], [ -77.423424, 38.759287 ], [ -77.423391, 38.759317 ], [ -77.423362, 38.75936 ], [ -77.423353, 38.759389 ], [ -77.4233, 38.759686 ], [ -77.423211, 38.760187 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851474", "FULLNAME": "Liberty St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442336, 38.765756 ], [ -77.442665, 38.765751 ], [ -77.443608, 38.765853 ], [ -77.443679, 38.765866 ], [ -77.443767, 38.765874 ], [ -77.443825, 38.765879 ], [ -77.443914, 38.765897 ], [ -77.44398, 38.765924 ], [ -77.444044, 38.765954 ], [ -77.444122, 38.765996 ], [ -77.444188, 38.766043 ], [ -77.444238, 38.766079 ], [ -77.444319, 38.766135 ], [ -77.444364, 38.766168 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477232", "FULLNAME": "Jack Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430695, 38.767109 ], [ -77.430471, 38.766941 ], [ -77.430317, 38.766853 ], [ -77.430153, 38.766776 ], [ -77.429981, 38.766712 ], [ -77.429802, 38.766662 ], [ -77.429617, 38.766626 ], [ -77.429466, 38.766608 ], [ -77.428902, 38.766592 ], [ -77.428596, 38.766563 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678292796", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440552, 38.763992 ], [ -77.440333, 38.763995 ], [ -77.440229, 38.764004 ], [ -77.440118, 38.76403 ], [ -77.440051, 38.764056 ], [ -77.439786, 38.764191 ], [ -77.439499, 38.764338 ], [ -77.439398, 38.764365 ], [ -77.439193, 38.764357 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477512", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432823, 38.761828 ], [ -77.433015, 38.761664 ], [ -77.433101, 38.761554 ], [ -77.433231, 38.761333 ], [ -77.433233, 38.761299 ], [ -77.433216, 38.761267 ], [ -77.433192, 38.761247 ], [ -77.432932, 38.761144 ], [ -77.432581, 38.761016 ], [ -77.432539, 38.761016 ], [ -77.432502, 38.761029 ], [ -77.432474, 38.761054 ], [ -77.432337, 38.761286 ], [ -77.432214, 38.761484 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477391", "FULLNAME": "Michael Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429045, 38.762329 ], [ -77.428726, 38.762125 ], [ -77.428407, 38.761934 ], [ -77.428083, 38.76175 ], [ -77.427947, 38.761687 ], [ -77.427772, 38.761628 ], [ -77.427651, 38.761599 ], [ -77.427419, 38.761586 ], [ -77.427117, 38.761586 ], [ -77.427051, 38.761586 ], [ -77.426831, 38.761608 ], [ -77.426754, 38.761628 ], [ -77.426698, 38.761653 ], [ -77.426636, 38.761695 ], [ -77.426573, 38.761769 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477365", "FULLNAME": "Bradley Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426706, 38.763447 ], [ -77.426679, 38.76328 ], [ -77.426665, 38.763235 ], [ -77.426617, 38.763151 ], [ -77.426573, 38.763099 ], [ -77.426444, 38.762974 ], [ -77.426425, 38.76296 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477332", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.468551, 38.778052 ], [ -77.468599, 38.777998 ], [ -77.468634, 38.777971 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477334", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469766, 38.779297 ], [ -77.469584, 38.779228 ], [ -77.469471, 38.779178 ], [ -77.469323, 38.779099 ], [ -77.469159, 38.77899 ], [ -77.469034, 38.778886 ], [ -77.468944, 38.778796 ], [ -77.468864, 38.778699 ], [ -77.468725, 38.778505 ], [ -77.468589, 38.778286 ], [ -77.468536, 38.778192 ], [ -77.468526, 38.778149 ], [ -77.468531, 38.778095 ], [ -77.468551, 38.778052 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477531", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444875, 38.770495 ], [ -77.444725, 38.770412 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477271", "FULLNAME": "Lapaz Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447189, 38.767956 ], [ -77.447653, 38.768217 ], [ -77.448016, 38.768418 ], [ -77.448116, 38.768495 ], [ -77.448185, 38.768568 ], [ -77.448213, 38.768609 ], [ -77.448252, 38.768693 ], [ -77.448277, 38.76879 ], [ -77.448283, 38.768889 ], [ -77.44827, 38.768988 ], [ -77.448212, 38.769107 ], [ -77.448136, 38.76922 ], [ -77.448064, 38.769305 ], [ -77.447863, 38.76951 ], [ -77.447555, 38.769824 ], [ -77.447517, 38.769847 ], [ -77.447462, 38.769865 ], [ -77.447349, 38.769873 ], [ -77.44726, 38.769894 ], [ -77.447184, 38.769919 ], [ -77.447159, 38.769923 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477289", "FULLNAME": "Swann Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.45057, 38.767823 ], [ -77.449964, 38.767494 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477525", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438699, 38.78053 ], [ -77.438274, 38.780139 ], [ -77.438062, 38.779973 ], [ -77.437865, 38.779797 ], [ -77.437848, 38.77978 ], [ -77.437741, 38.779674 ], [ -77.437693, 38.779642 ], [ -77.437638, 38.779617 ], [ -77.437578, 38.7796 ], [ -77.437531, 38.779593 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536695", "FULLNAME": "Denver Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469608, 38.784044 ], [ -77.469614, 38.784192 ], [ -77.469603, 38.784343 ], [ -77.469575, 38.784443 ], [ -77.469538, 38.784519 ], [ -77.469467, 38.78462 ], [ -77.469376, 38.784715 ], [ -77.469012, 38.785054 ], [ -77.468785, 38.785265 ], [ -77.468468, 38.785556 ], [ -77.468302, 38.785693 ], [ -77.468154, 38.7858 ], [ -77.468042, 38.785868 ], [ -77.467756, 38.786025 ], [ -77.467542, 38.78613 ], [ -77.467443, 38.786184 ], [ -77.466718, 38.786571 ], [ -77.46655, 38.786657 ], [ -77.466379, 38.786744 ], [ -77.46603, 38.786934 ], [ -77.465916, 38.787009 ], [ -77.465862, 38.787049 ], [ -77.465761, 38.78715 ], [ -77.465651, 38.787285 ], [ -77.46562, 38.787329 ], [ -77.465538, 38.787467 ], [ -77.465512, 38.787521 ], [ -77.465488, 38.787614 ], [ -77.465467, 38.787697 ], [ -77.465441, 38.787881 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045621658", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464605, 38.776549 ], [ -77.464818, 38.77646 ], [ -77.464914, 38.776423 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105533753133", "FULLNAME": "Corbett Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434354, 38.768608 ], [ -77.435211, 38.76838 ], [ -77.435811, 38.768265 ], [ -77.43587, 38.768132 ], [ -77.436061, 38.767707 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536111", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439193, 38.764357 ], [ -77.439065, 38.76482 ], [ -77.438444, 38.765325 ], [ -77.43783, 38.765927 ], [ -77.437771, 38.765927 ], [ -77.437681, 38.765896 ], [ -77.437667, 38.765826 ], [ -77.437556, 38.765708 ], [ -77.43738, 38.765495 ], [ -77.437187, 38.765323 ], [ -77.43689, 38.765263 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679538309", "FULLNAME": "Rugby Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458507, 38.787394 ], [ -77.458582, 38.787405 ], [ -77.459736, 38.787494 ], [ -77.460013, 38.787515 ], [ -77.460861, 38.787566 ], [ -77.461719, 38.787629 ], [ -77.465441, 38.787881 ], [ -77.468301, 38.78807 ], [ -77.470038, 38.788185 ], [ -77.471184, 38.788273 ], [ -77.472365, 38.788348 ], [ -77.472972, 38.788391 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477300", "FULLNAME": "Colfax Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471281, 38.782981 ], [ -77.471485, 38.78326 ], [ -77.471604, 38.783458 ], [ -77.471687, 38.783621 ], [ -77.471702, 38.783669 ], [ -77.471732, 38.783821 ], [ -77.471742, 38.783966 ], [ -77.471732, 38.78427 ], [ -77.471662, 38.785022 ], [ -77.471599, 38.785764 ], [ -77.47154, 38.786343 ], [ -77.471559, 38.786441 ], [ -77.471587, 38.786517 ], [ -77.471639, 38.786608 ], [ -77.471735, 38.786723 ], [ -77.471864, 38.78685 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477273", "FULLNAME": "Luxor St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.462936, 38.78545 ], [ -77.463905, 38.786582 ], [ -77.463971, 38.78669 ], [ -77.46401, 38.786783 ], [ -77.46404, 38.786912 ], [ -77.464051, 38.787043 ], [ -77.464035, 38.787225 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477539", "FULLNAME": "Park Center Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442382, 38.766709 ], [ -77.441947, 38.766731 ], [ -77.441563, 38.766764 ], [ -77.44138, 38.76679 ], [ -77.441202, 38.76683 ], [ -77.441097, 38.76686 ], [ -77.440929, 38.766921 ], [ -77.44064, 38.767048 ], [ -77.440311, 38.767241 ], [ -77.440187, 38.767323 ], [ -77.439288, 38.767871 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679537849", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438867, 38.762093 ], [ -77.439026, 38.76214 ], [ -77.439201, 38.762226 ], [ -77.439299, 38.762274 ], [ -77.43936, 38.762306 ], [ -77.439421, 38.76234 ], [ -77.439477, 38.762379 ], [ -77.439531, 38.762408 ], [ -77.439601, 38.762425 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106073064085", "FULLNAME": "Blooms Quarry Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.4521, 38.773417 ], [ -77.451845, 38.7734 ], [ -77.451762, 38.773401 ], [ -77.451724, 38.773406 ], [ -77.451637, 38.773407 ], [ -77.451324, 38.773444 ], [ -77.451193, 38.77348 ], [ -77.450863, 38.773634 ], [ -77.450804, 38.773655 ], [ -77.450687, 38.773675 ], [ -77.45055, 38.773686 ], [ -77.450266, 38.773705 ], [ -77.449952, 38.77365 ], [ -77.4499, 38.773626 ], [ -77.449342, 38.773371 ], [ -77.448149, 38.772854 ], [ -77.447605, 38.772596 ], [ -77.447595, 38.772589 ], [ -77.447306, 38.772374 ], [ -77.447053, 38.772181 ], [ -77.446793, 38.771992 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477285", "FULLNAME": "Sonia Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425361, 38.765801 ], [ -77.425316, 38.765433 ], [ -77.425279, 38.765327 ], [ -77.425241, 38.765259 ], [ -77.42518, 38.76518 ], [ -77.425105, 38.76511 ], [ -77.424672, 38.764813 ], [ -77.424482, 38.764706 ], [ -77.424378, 38.764658 ], [ -77.42424, 38.764611 ], [ -77.424022, 38.764557 ], [ -77.423857, 38.764533 ], [ -77.42369, 38.764523 ], [ -77.423399, 38.764529 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477278", "FULLNAME": "Paige Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426021, 38.765589 ], [ -77.426254, 38.7658 ], [ -77.426361, 38.765903 ], [ -77.426436, 38.765953 ], [ -77.426522, 38.76599 ], [ -77.426578, 38.766006 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678606039", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433392, 38.762584 ], [ -77.433082, 38.762654 ], [ -77.432949, 38.762669 ], [ -77.432808, 38.762667 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678606144", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432214, 38.761484 ], [ -77.432089, 38.761687 ], [ -77.431974, 38.761892 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861038", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437562, 38.763598 ], [ -77.437051, 38.763476 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477517", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463571, 38.779416 ], [ -77.463855, 38.779097 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477314", "FULLNAME": "Holden Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460696, 38.786628 ], [ -77.460809, 38.786744 ], [ -77.460907, 38.786831 ], [ -77.46103, 38.786918 ], [ -77.461121, 38.786967 ], [ -77.461196, 38.786998 ], [ -77.461336, 38.787035 ], [ -77.46148, 38.787058 ], [ -77.462558, 38.78712 ], [ -77.463042, 38.787158 ], [ -77.464035, 38.787225 ], [ -77.46562, 38.787329 ], [ -77.468427, 38.787524 ], [ -77.470101, 38.787634 ], [ -77.470484, 38.78766 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477419", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452489, 38.771693 ], [ -77.452476, 38.771672 ], [ -77.452444, 38.771639 ], [ -77.452391, 38.771603 ], [ -77.452342, 38.771584 ], [ -77.452009, 38.771524 ], [ -77.451723, 38.771477 ], [ -77.451202, 38.77139 ], [ -77.45092, 38.771357 ], [ -77.449891, 38.771253 ], [ -77.449387, 38.771187 ], [ -77.449205, 38.771157 ], [ -77.448752, 38.771068 ], [ -77.448305, 38.770963 ], [ -77.44797, 38.770874 ], [ -77.447763, 38.77081 ], [ -77.447426, 38.770693 ], [ -77.447247, 38.770621 ], [ -77.447024, 38.770514 ], [ -77.446811, 38.770395 ], [ -77.446478, 38.770179 ], [ -77.445738, 38.769677 ], [ -77.44566, 38.769628 ], [ -77.445531, 38.769551 ], [ -77.445004, 38.76925 ], [ -77.444609, 38.769039 ], [ -77.444032, 38.768759 ], [ -77.443851, 38.768686 ], [ -77.443739, 38.768648 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477435", "FULLNAME": "Sandstone Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449059, 38.772688 ], [ -77.449511, 38.772203 ], [ -77.449653, 38.772043 ], [ -77.449729, 38.771946 ], [ -77.449779, 38.771857 ], [ -77.449803, 38.771796 ], [ -77.449827, 38.771696 ], [ -77.449832, 38.771595 ], [ -77.44986, 38.77143 ], [ -77.449891, 38.771253 ], [ -77.449963, 38.770864 ], [ -77.449988, 38.770726 ], [ -77.450008, 38.770646 ], [ -77.450041, 38.770569 ], [ -77.450098, 38.770477 ], [ -77.450375, 38.770145 ], [ -77.450418, 38.770106 ], [ -77.450448, 38.770066 ], [ -77.450503, 38.769994 ], [ -77.450601, 38.769849 ], [ -77.450637, 38.769755 ], [ -77.450657, 38.769658 ], [ -77.450666, 38.769385 ], [ -77.450689, 38.769309 ], [ -77.450729, 38.769237 ], [ -77.451017, 38.768927 ], [ -77.451525, 38.768378 ], [ -77.451808, 38.76807 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081513527", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448507, 38.766147 ], [ -77.44855, 38.766171 ], [ -77.448591, 38.766226 ], [ -77.448631, 38.766262 ], [ -77.448659, 38.766278 ], [ -77.449142, 38.76655 ], [ -77.449834, 38.76694 ], [ -77.450101, 38.76709 ], [ -77.450471, 38.767309 ], [ -77.450861, 38.767525 ], [ -77.451544, 38.767914 ], [ -77.451808, 38.76807 ], [ -77.452156, 38.768272 ], [ -77.452466, 38.768429 ], [ -77.453001, 38.768699 ], [ -77.453142, 38.768793 ], [ -77.453328, 38.768901 ], [ -77.453591, 38.769031 ], [ -77.453707, 38.76909 ], [ -77.4539, 38.769189 ], [ -77.454035, 38.769251 ], [ -77.454646, 38.769485 ], [ -77.454842, 38.769565 ], [ -77.455013, 38.769635 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477323", "FULLNAME": "Martin Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466891, 38.780188 ], [ -77.466616, 38.780217 ], [ -77.465827, 38.780285 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045621656", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464914, 38.776423 ], [ -77.465245, 38.776395 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477240", "FULLNAME": "Park Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461234, 38.784942 ], [ -77.460581, 38.785277 ], [ -77.460448, 38.785342 ], [ -77.460308, 38.785398 ], [ -77.46016, 38.785437 ], [ -77.460047, 38.785459 ], [ -77.459849, 38.785481 ], [ -77.459281, 38.785565 ], [ -77.459167, 38.785578 ], [ -77.458875, 38.785587 ], [ -77.458729, 38.785587 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477356", "FULLNAME": "Scotty Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436835, 38.760961 ], [ -77.436097, 38.760698 ], [ -77.435946, 38.760645 ], [ -77.435801, 38.760594 ], [ -77.435106, 38.760359 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477388", "FULLNAME": "Lindsey Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.43445, 38.761484 ], [ -77.435314, 38.761766 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477433", "FULLNAME": "Robin Lee Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434985, 38.762403 ], [ -77.435314, 38.761766 ], [ -77.435467, 38.76147 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477241", "FULLNAME": "Paul Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426771, 38.756921 ], [ -77.426514, 38.756849 ], [ -77.426243, 38.756768 ], [ -77.426129, 38.756742 ], [ -77.425971, 38.756705 ], [ -77.425841, 38.756685 ], [ -77.425708, 38.756678 ], [ -77.425575, 38.756686 ], [ -77.42542, 38.75671 ], [ -77.425295, 38.756744 ], [ -77.4252, 38.75678 ], [ -77.42509, 38.756837 ], [ -77.424991, 38.756906 ], [ -77.424905, 38.756984 ], [ -77.424656, 38.757294 ], [ -77.424531, 38.757467 ], [ -77.424248, 38.757853 ], [ -77.424213, 38.757964 ], [ -77.424138, 38.758065 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105533752589", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440025, 38.775951 ], [ -77.440262, 38.77599 ], [ -77.440379, 38.776012 ], [ -77.440545, 38.776044 ], [ -77.440579, 38.776048 ], [ -77.440736, 38.776069 ], [ -77.440832, 38.776078 ], [ -77.442553, 38.776195 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477290", "FULLNAME": "Union Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449804, 38.768236 ], [ -77.449446, 38.768042 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477558", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1740" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.441551, 38.773318 ], [ -77.441397, 38.773251 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477238", "FULLNAME": "Mace St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.478288, 38.781986 ], [ -77.478284, 38.781999 ], [ -77.478194, 38.782169 ], [ -77.478093, 38.782358 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477505", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435288, 38.758018 ], [ -77.435305, 38.758177 ], [ -77.435327, 38.758204 ], [ -77.435361, 38.75822 ], [ -77.43568, 38.758228 ], [ -77.43573, 38.758249 ], [ -77.435769, 38.758282 ], [ -77.435792, 38.758322 ], [ -77.435836, 38.758604 ], [ -77.435867, 38.758654 ], [ -77.435907, 38.758693 ], [ -77.435933, 38.758744 ], [ -77.435983, 38.758953 ], [ -77.436055, 38.759288 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477460", "FULLNAME": "Blooms Quarry Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.44504, 38.770607 ], [ -77.444978, 38.770564 ], [ -77.444875, 38.770495 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477254", "FULLNAME": "Becky Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432417, 38.757439 ], [ -77.432077, 38.757828 ], [ -77.432, 38.757942 ], [ -77.431921, 38.758091 ], [ -77.431903, 38.758142 ], [ -77.431903, 38.758157 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536091", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439426, 38.763935 ], [ -77.439368, 38.764115 ], [ -77.439193, 38.764357 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678302854", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435931, 38.766477 ], [ -77.435836, 38.766511 ], [ -77.435796, 38.766544 ], [ -77.435572, 38.766917 ], [ -77.435358, 38.767412 ], [ -77.435323, 38.767503 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477229", "FULLNAME": "Golf Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427496, 38.76868 ], [ -77.42784, 38.768682 ], [ -77.428242, 38.768686 ], [ -77.428373, 38.768668 ], [ -77.428456, 38.768644 ], [ -77.428553, 38.768602 ], [ -77.428891, 38.76839 ], [ -77.428906, 38.768376 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477518", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427581, 38.769107 ], [ -77.427294, 38.76916 ], [ -77.427164, 38.769171 ], [ -77.427022, 38.769178 ], [ -77.426945, 38.769198 ], [ -77.426851, 38.769248 ], [ -77.426364, 38.769704 ], [ -77.426319, 38.769733 ], [ -77.426267, 38.769755 ], [ -77.426217, 38.769771 ], [ -77.426181, 38.769796 ], [ -77.426159, 38.769831 ], [ -77.426141, 38.769893 ], [ -77.42611, 38.769937 ], [ -77.426054, 38.76998 ], [ -77.425918, 38.770039 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477489", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440946, 38.771307 ], [ -77.441104, 38.770603 ], [ -77.441034, 38.769803 ], [ -77.441023, 38.769343 ], [ -77.440597, 38.768724 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477260", "FULLNAME": "Elise Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426846, 38.767258 ], [ -77.426861, 38.767551 ], [ -77.426896, 38.767637 ], [ -77.426943, 38.767702 ], [ -77.426992, 38.767749 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861150", "FULLNAME": "Christopher Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438736, 38.759103 ], [ -77.438402, 38.759493 ], [ -77.43829, 38.759572 ], [ -77.438201, 38.759609 ], [ -77.438066, 38.759619 ], [ -77.437964, 38.759609 ], [ -77.437717, 38.759479 ], [ -77.437664, 38.75945 ], [ -77.437252, 38.759223 ], [ -77.437121, 38.759186 ], [ -77.436958, 38.759186 ], [ -77.436567, 38.759223 ], [ -77.436278, 38.759251 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477491", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436027, 38.760174 ], [ -77.436139, 38.759969 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477492", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436344, 38.760282 ], [ -77.436462, 38.760066 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536679", "FULLNAME": "Lambert Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460466, 38.780507 ], [ -77.460684, 38.780533 ], [ -77.460956, 38.780579 ], [ -77.461117, 38.780613 ], [ -77.461296, 38.780671 ], [ -77.461466, 38.780741 ], [ -77.461628, 38.780823 ], [ -77.461766, 38.780908 ], [ -77.462145, 38.781103 ], [ -77.462642, 38.781389 ], [ -77.463267, 38.781738 ], [ -77.463379, 38.781785 ], [ -77.463498, 38.781819 ], [ -77.463708, 38.781858 ], [ -77.463873, 38.781904 ], [ -77.464091, 38.782007 ], [ -77.465705, 38.782917 ], [ -77.466026, 38.783101 ], [ -77.466085, 38.78314 ], [ -77.46615, 38.783187 ], [ -77.466247, 38.783275 ], [ -77.466495, 38.783575 ], [ -77.466539, 38.78363 ], [ -77.466778, 38.783888 ], [ -77.466844, 38.783953 ], [ -77.466957, 38.784056 ], [ -77.467127, 38.784187 ], [ -77.467369, 38.784354 ], [ -77.467571, 38.784479 ], [ -77.468244, 38.78492 ], [ -77.468785, 38.785265 ], [ -77.468932, 38.785364 ], [ -77.469102, 38.785496 ], [ -77.469245, 38.785656 ], [ -77.469372, 38.785824 ], [ -77.469715, 38.786388 ], [ -77.469773, 38.786487 ], [ -77.46991, 38.78669 ], [ -77.469997, 38.786852 ], [ -77.470065, 38.787002 ], [ -77.470103, 38.787139 ], [ -77.470122, 38.787278 ], [ -77.470124, 38.787362 ], [ -77.470101, 38.787634 ], [ -77.470085, 38.787829 ], [ -77.470062, 38.788003 ], [ -77.470038, 38.788185 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1102855552280", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452489, 38.771693 ], [ -77.45266, 38.771722 ], [ -77.454002, 38.771953 ], [ -77.454599, 38.772062 ], [ -77.454699, 38.772084 ], [ -77.455037, 38.77215 ], [ -77.455206, 38.772198 ], [ -77.455399, 38.772272 ], [ -77.455801, 38.772485 ], [ -77.45606, 38.772631 ], [ -77.458877, 38.774182 ], [ -77.459051, 38.774279 ], [ -77.45917, 38.774363 ], [ -77.459253, 38.774438 ], [ -77.459335, 38.77454 ], [ -77.459401, 38.774649 ], [ -77.459709, 38.775379 ], [ -77.460275, 38.776716 ], [ -77.460377, 38.777 ], [ -77.460451, 38.777262 ], [ -77.460635, 38.778026 ], [ -77.460742, 38.778439 ], [ -77.460801, 38.778603 ], [ -77.460878, 38.778762 ], [ -77.460957, 38.778887 ], [ -77.461074, 38.779038 ], [ -77.461191, 38.779166 ], [ -77.461322, 38.779289 ], [ -77.461418, 38.779366 ], [ -77.461595, 38.779487 ], [ -77.461784, 38.779597 ], [ -77.465655, 38.781721 ], [ -77.465844, 38.781805 ], [ -77.466082, 38.781889 ], [ -77.46622, 38.78192 ], [ -77.466572, 38.781992 ], [ -77.466741, 38.782041 ], [ -77.466895, 38.7821 ], [ -77.467044, 38.782176 ], [ -77.467202, 38.782279 ], [ -77.467297, 38.782355 ], [ -77.467422, 38.782477 ], [ -77.467522, 38.782603 ], [ -77.467588, 38.782716 ], [ -77.467612, 38.782768 ], [ -77.467696, 38.782966 ], [ -77.467779, 38.783125 ], [ -77.467821, 38.783191 ], [ -77.467928, 38.783322 ], [ -77.468, 38.783396 ], [ -77.468149, 38.783506 ], [ -77.46831, 38.783604 ], [ -77.468378, 38.783639 ], [ -77.468958, 38.783911 ], [ -77.46908, 38.783958 ], [ -77.469228, 38.784001 ], [ -77.469382, 38.784029 ], [ -77.469539, 38.784044 ], [ -77.469608, 38.784044 ], [ -77.469741, 38.784035 ], [ -77.469907, 38.784005 ], [ -77.47004, 38.783965 ], [ -77.47012, 38.783931 ], [ -77.470262, 38.783852 ], [ -77.470367, 38.783782 ], [ -77.470465, 38.783704 ], [ -77.471093, 38.783119 ], [ -77.471218, 38.783022 ], [ -77.471281, 38.782981 ], [ -77.471414, 38.782905 ], [ -77.471545, 38.782845 ], [ -77.471669, 38.782795 ], [ -77.471839, 38.782736 ], [ -77.473781, 38.782014 ], [ -77.474047, 38.781914 ], [ -77.474582, 38.781712 ], [ -77.474808, 38.781646 ], [ -77.474985, 38.781609 ], [ -77.47513, 38.781591 ], [ -77.475303, 38.78158 ], [ -77.47546, 38.781583 ], [ -77.475617, 38.7816 ], [ -77.475855, 38.78165 ], [ -77.476086, 38.781712 ], [ -77.478093, 38.782358 ], [ -77.478795, 38.782583 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110461107385", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444956, 38.765085 ], [ -77.444914, 38.765065 ], [ -77.444743, 38.764986 ], [ -77.444712, 38.764972 ], [ -77.444503, 38.764875 ], [ -77.444252, 38.764759 ], [ -77.444217, 38.764748 ], [ -77.444125, 38.764731 ], [ -77.444049, 38.764727 ], [ -77.443964, 38.764748 ], [ -77.443807, 38.764912 ], [ -77.443692, 38.765049 ], [ -77.443599, 38.765188 ], [ -77.443521, 38.765338 ], [ -77.443497, 38.765426 ], [ -77.443491, 38.765516 ], [ -77.443505, 38.765606 ], [ -77.443553, 38.765749 ], [ -77.443608, 38.765853 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103947052954", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440417, 38.760036 ], [ -77.440442, 38.76005 ], [ -77.440569, 38.76012 ], [ -77.44113, 38.760431 ], [ -77.441285, 38.760526 ], [ -77.441468, 38.760654 ], [ -77.441621, 38.760781 ], [ -77.441757, 38.760918 ], [ -77.441882, 38.761068 ], [ -77.441988, 38.761225 ], [ -77.442062, 38.761361 ], [ -77.442139, 38.761538 ], [ -77.442198, 38.761718 ], [ -77.442223, 38.761836 ], [ -77.442246, 38.76204 ], [ -77.442249, 38.762174 ], [ -77.442254, 38.762393 ], [ -77.442259, 38.762602 ], [ -77.442261, 38.762854 ], [ -77.442263, 38.763068 ], [ -77.442264, 38.763276 ], [ -77.442265, 38.763331 ], [ -77.442296, 38.763846 ], [ -77.442307, 38.764292 ], [ -77.442308, 38.764451 ], [ -77.44232, 38.764983 ], [ -77.442336, 38.765756 ], [ -77.442347, 38.766279 ], [ -77.442382, 38.766709 ], [ -77.44242, 38.766981 ], [ -77.442453, 38.767145 ], [ -77.442504, 38.767306 ], [ -77.442583, 38.767488 ], [ -77.442713, 38.767742 ], [ -77.442788, 38.76786 ], [ -77.442903, 38.76801 ], [ -77.443028, 38.76814 ], [ -77.443123, 38.768221 ], [ -77.443234, 38.768315 ], [ -77.44341, 38.768445 ], [ -77.443739, 38.768648 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851594", "FULLNAME": "Monroe Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443822, 38.766839 ], [ -77.444071, 38.767341 ], [ -77.444192, 38.767588 ], [ -77.444215, 38.767631 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477408", "FULLNAME": "Hamilton Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449496, 38.767305 ], [ -77.449834, 38.76694 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477275", "FULLNAME": "Owens Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442417, 38.772443 ], [ -77.442584, 38.772549 ], [ -77.443148, 38.772946 ], [ -77.443311, 38.773098 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477331", "FULLNAME": "Morton Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.467122, 38.781068 ], [ -77.467224, 38.781045 ], [ -77.467319, 38.781009 ], [ -77.467388, 38.78097 ], [ -77.467483, 38.780896 ], [ -77.46754, 38.780837 ], [ -77.467607, 38.78074 ], [ -77.467669, 38.780602 ], [ -77.467728, 38.780504 ], [ -77.467816, 38.780387 ], [ -77.468171, 38.780082 ], [ -77.468336, 38.779957 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477358", "FULLNAME": "Spruce St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461281, 38.78416 ], [ -77.461048, 38.78411 ], [ -77.460753, 38.784061 ], [ -77.460508, 38.784034 ], [ -77.460002, 38.783998 ], [ -77.459663, 38.78396 ], [ -77.459478, 38.783925 ], [ -77.459334, 38.783886 ], [ -77.459216, 38.783857 ], [ -77.459075, 38.783807 ], [ -77.458952, 38.78375 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477341", "FULLNAME": "Runyon Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459003, 38.783237 ], [ -77.459395, 38.783276 ], [ -77.459886, 38.783314 ], [ -77.460622, 38.783384 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477383", "FULLNAME": "Jessica Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433952, 38.762531 ], [ -77.433969, 38.76243 ], [ -77.433987, 38.762371 ], [ -77.43445, 38.761484 ], [ -77.434523, 38.761364 ], [ -77.434681, 38.761124 ], [ -77.434774, 38.760967 ], [ -77.435106, 38.760359 ], [ -77.43545, 38.75973 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477371", "FULLNAME": "Deborah Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425999, 38.764687 ], [ -77.426194, 38.764563 ], [ -77.4264, 38.76445 ], [ -77.426533, 38.7644 ], [ -77.426673, 38.764365 ], [ -77.426818, 38.764343 ], [ -77.426978, 38.76434 ], [ -77.427172, 38.764358 ], [ -77.427235, 38.764369 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477428", "FULLNAME": "Elizabeth Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426084, 38.760631 ], [ -77.426054, 38.760597 ], [ -77.426031, 38.760546 ], [ -77.426025, 38.760493 ], [ -77.426085, 38.760232 ], [ -77.426085, 38.760161 ], [ -77.426066, 38.760091 ], [ -77.42603, 38.760025 ], [ -77.425978, 38.759967 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477484", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440549, 38.764082 ], [ -77.440549, 38.764093 ], [ -77.440565, 38.764191 ], [ -77.44057, 38.764209 ], [ -77.44076, 38.764823 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477502", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436055, 38.759288 ], [ -77.436278, 38.759251 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477528", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448184, 38.770076 ], [ -77.448109, 38.770029 ], [ -77.448086, 38.770025 ], [ -77.448064, 38.770034 ], [ -77.447781, 38.770336 ], [ -77.447773, 38.770366 ], [ -77.447779, 38.770391 ], [ -77.447802, 38.770416 ], [ -77.447836, 38.770432 ], [ -77.447912, 38.770439 ], [ -77.447957, 38.770435 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477321", "FULLNAME": "Madera Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448213, 38.768609 ], [ -77.448299, 38.768586 ], [ -77.448372, 38.768551 ], [ -77.44841, 38.768524 ], [ -77.448624, 38.768285 ], [ -77.449232, 38.767634 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477519", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447398, 38.770119 ], [ -77.447186, 38.769989 ], [ -77.447164, 38.769958 ], [ -77.447159, 38.769923 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679538404", "FULLNAME": "Digital Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.43479, 38.767367 ], [ -77.434732, 38.767547 ], [ -77.435016, 38.76799 ], [ -77.435211, 38.76838 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477381", "FULLNAME": "Jenkins Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.47632, 38.784481 ], [ -77.475839, 38.784192 ], [ -77.475776, 38.784172 ], [ -77.475709, 38.784166 ], [ -77.475656, 38.784173 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477363", "FULLNAME": "Walden St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465608, 38.784045 ], [ -77.46613, 38.784654 ], [ -77.466587, 38.785177 ], [ -77.467443, 38.786184 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678303567", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435784, 38.767788 ], [ -77.43587, 38.768132 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477393", "FULLNAME": "Shannon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425051, 38.767492 ], [ -77.424965, 38.768268 ], [ -77.424929, 38.768411 ], [ -77.424875, 38.768549 ], [ -77.424851, 38.768597 ], [ -77.424741, 38.768791 ], [ -77.424643, 38.768936 ], [ -77.42459, 38.769007 ], [ -77.424451, 38.769175 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477318", "FULLNAME": "Laurie Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42651, 38.765071 ], [ -77.426346, 38.765288 ], [ -77.426214, 38.765428 ], [ -77.426068, 38.765559 ], [ -77.426021, 38.765589 ], [ -77.425893, 38.765659 ], [ -77.425756, 38.765716 ], [ -77.425612, 38.76576 ], [ -77.425462, 38.765789 ], [ -77.425361, 38.765801 ], [ -77.425205, 38.765809 ], [ -77.425042, 38.765803 ], [ -77.424881, 38.765784 ], [ -77.423686, 38.765524 ], [ -77.423582, 38.76548 ], [ -77.423533, 38.76545 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477250", "FULLNAME": "Alexa Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425848, 38.767432 ], [ -77.425687, 38.766914 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861178", "FULLNAME": "Phita Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436567, 38.759223 ], [ -77.436441, 38.758739 ], [ -77.436465, 38.75866 ], [ -77.436521, 38.758599 ], [ -77.436604, 38.758576 ], [ -77.436674, 38.758566 ], [ -77.436791, 38.758604 ], [ -77.438197, 38.759344 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477493", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435853, 38.760491 ], [ -77.436027, 38.760174 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477507", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436344, 38.760282 ], [ -77.436191, 38.76023 ], [ -77.436027, 38.760174 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536131", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.43178, 38.762119 ], [ -77.432148, 38.762283 ], [ -77.432188, 38.762287 ], [ -77.432218, 38.76228 ], [ -77.432249, 38.762259 ], [ -77.432346, 38.762154 ], [ -77.432355, 38.762117 ], [ -77.432346, 38.76208 ], [ -77.43232, 38.762049 ], [ -77.43213, 38.761943 ], [ -77.431974, 38.761892 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679538422", "FULLNAME": "Black Hawk Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433392, 38.762584 ], [ -77.433082, 38.762654 ], [ -77.432949, 38.762669 ], [ -77.432808, 38.762667 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536129", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431612, 38.761818 ], [ -77.431461, 38.762049 ], [ -77.431283, 38.762288 ], [ -77.430671, 38.763074 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477496", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436174, 38.760593 ], [ -77.436344, 38.760282 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477298", "FULLNAME": "Cabbel Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454755, 38.775544 ], [ -77.455264, 38.774956 ], [ -77.455301, 38.774931 ], [ -77.455342, 38.774914 ], [ -77.455388, 38.774905 ], [ -77.455596, 38.774885 ], [ -77.455666, 38.774867 ], [ -77.455702, 38.774851 ], [ -77.455762, 38.774908 ], [ -77.455883, 38.774992 ], [ -77.457097, 38.775654 ], [ -77.457487, 38.775874 ], [ -77.459403, 38.776921 ], [ -77.459529, 38.776972 ], [ -77.459662, 38.77701 ], [ -77.45983, 38.777038 ], [ -77.459973, 38.777046 ], [ -77.460117, 38.77704 ], [ -77.460377, 38.777 ], [ -77.460832, 38.776929 ], [ -77.461615, 38.776818 ], [ -77.461878, 38.776783 ], [ -77.462097, 38.776768 ], [ -77.462273, 38.776767 ], [ -77.462526, 38.77678 ], [ -77.462717, 38.776802 ], [ -77.462905, 38.776838 ], [ -77.463051, 38.776878 ], [ -77.463259, 38.776955 ], [ -77.463513, 38.777062 ], [ -77.46366, 38.777133 ], [ -77.463945, 38.777297 ], [ -77.464691, 38.777701 ], [ -77.465179, 38.777974 ], [ -77.465476, 38.778118 ], [ -77.465707, 38.778211 ], [ -77.465947, 38.77829 ], [ -77.466257, 38.778368 ], [ -77.466473, 38.778413 ], [ -77.466696, 38.778445 ], [ -77.466817, 38.778478 ], [ -77.466908, 38.778514 ], [ -77.467036, 38.778582 ], [ -77.467149, 38.778667 ], [ -77.467227, 38.778749 ], [ -77.467337, 38.778893 ], [ -77.46763, 38.779278 ], [ -77.467771, 38.779441 ], [ -77.468011, 38.779682 ], [ -77.468174, 38.779834 ], [ -77.468336, 38.779957 ], [ -77.468709, 38.780199 ], [ -77.468993, 38.780363 ], [ -77.469156, 38.780446 ], [ -77.469334, 38.780524 ], [ -77.47058, 38.781102 ], [ -77.470722, 38.781186 ], [ -77.470846, 38.781278 ], [ -77.470935, 38.78137 ], [ -77.471008, 38.78147 ], [ -77.471064, 38.781576 ], [ -77.471081, 38.78162 ], [ -77.471113, 38.781755 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851555", "FULLNAME": "Bank St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444215, 38.767631 ], [ -77.444076, 38.767697 ], [ -77.443592, 38.767949 ], [ -77.443123, 38.768221 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045631567", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444586, 38.7708 ], [ -77.44448, 38.770894 ], [ -77.444421, 38.770948 ], [ -77.444212, 38.771128 ], [ -77.443976, 38.771308 ], [ -77.443168, 38.771853 ], [ -77.442915, 38.77204 ], [ -77.442494, 38.772376 ], [ -77.442417, 38.772443 ], [ -77.442028, 38.772802 ], [ -77.441812, 38.773026 ], [ -77.441551, 38.773318 ], [ -77.441371, 38.773538 ], [ -77.441129, 38.77386 ], [ -77.440946, 38.774134 ], [ -77.440761, 38.77444 ], [ -77.440582, 38.774769 ], [ -77.440484, 38.774971 ], [ -77.440341, 38.775317 ], [ -77.440212, 38.775672 ], [ -77.440184, 38.77576 ], [ -77.440157, 38.775844 ], [ -77.440133, 38.775881 ], [ -77.440091, 38.775919 ], [ -77.440059, 38.775938 ], [ -77.440025, 38.775951 ], [ -77.439999, 38.775921 ], [ -77.439978, 38.775874 ], [ -77.439973, 38.775824 ], [ -77.439987, 38.775768 ], [ -77.44012, 38.775401 ], [ -77.440354, 38.774855 ], [ -77.440441, 38.774678 ], [ -77.440679, 38.774246 ], [ -77.440893, 38.773913 ], [ -77.441077, 38.773652 ], [ -77.441313, 38.773348 ], [ -77.441397, 38.773251 ], [ -77.441626, 38.772987 ], [ -77.441854, 38.772747 ], [ -77.442119, 38.772491 ], [ -77.442357, 38.77228 ], [ -77.442675, 38.772023 ], [ -77.442921, 38.771835 ], [ -77.443216, 38.77163 ], [ -77.443632, 38.771364 ], [ -77.443905, 38.77117 ], [ -77.444059, 38.771051 ], [ -77.444294, 38.77085 ], [ -77.444471, 38.770682 ], [ -77.444725, 38.770412 ], [ -77.444968, 38.77015 ], [ -77.44513, 38.769967 ], [ -77.445391, 38.769696 ], [ -77.445531, 38.769551 ], [ -77.446118, 38.768932 ], [ -77.446314, 38.768714 ], [ -77.446717, 38.768266 ], [ -77.447064, 38.767887 ], [ -77.447124, 38.767822 ], [ -77.447277, 38.767656 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477452", "FULLNAME": "White Pine Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447359, 38.771423 ], [ -77.447004, 38.771229 ], [ -77.446973, 38.771228 ], [ -77.446947, 38.771241 ], [ -77.446865, 38.771322 ], [ -77.446865, 38.771342 ], [ -77.446878, 38.771357 ], [ -77.447193, 38.771587 ], [ -77.447728, 38.771991 ], [ -77.448235, 38.772315 ], [ -77.448409, 38.772407 ], [ -77.449011, 38.772664 ], [ -77.449059, 38.772688 ], [ -77.449204, 38.772757 ], [ -77.450168, 38.773166 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477313", "FULLNAME": "Euclid Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440025, 38.775951 ], [ -77.440026, 38.776006 ], [ -77.440053, 38.776109 ], [ -77.440061, 38.776185 ], [ -77.440006, 38.776449 ], [ -77.439931, 38.7769 ], [ -77.439897, 38.777274 ], [ -77.439855, 38.77761 ], [ -77.439848, 38.777666 ], [ -77.439783, 38.778086 ], [ -77.439771, 38.778267 ], [ -77.439775, 38.778457 ], [ -77.439794, 38.778659 ], [ -77.439863, 38.779065 ], [ -77.439874, 38.779272 ], [ -77.439855, 38.7794 ], [ -77.439816, 38.779526 ], [ -77.439759, 38.77965 ], [ -77.439683, 38.779771 ], [ -77.439606, 38.779864 ], [ -77.439479, 38.779981 ], [ -77.439275, 38.780133 ], [ -77.438699, 38.78053 ], [ -77.438567, 38.78062 ], [ -77.438512, 38.780632 ], [ -77.438466, 38.780633 ], [ -77.438411, 38.780621 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477274", "FULLNAME": "Nancy St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430642, 38.759887 ], [ -77.430303, 38.759799 ], [ -77.430129, 38.759739 ], [ -77.429932, 38.75965 ], [ -77.429081, 38.759192 ], [ -77.428839, 38.759076 ], [ -77.428442, 38.758897 ], [ -77.428229, 38.758818 ], [ -77.42801, 38.758753 ], [ -77.427259, 38.758572 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477396", "FULLNAME": "Tremont St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.46655, 38.786657 ], [ -77.466372, 38.786439 ], [ -77.465826, 38.785799 ], [ -77.465368, 38.785251 ], [ -77.464966, 38.784808 ], [ -77.464719, 38.784511 ], [ -77.464287, 38.78401 ], [ -77.46428, 38.783969 ], [ -77.464289, 38.783936 ], [ -77.464331, 38.783879 ], [ -77.464416, 38.783785 ], [ -77.464478, 38.783738 ], [ -77.464552, 38.783701 ], [ -77.464635, 38.783679 ], [ -77.464705, 38.783672 ], [ -77.464771, 38.783673 ], [ -77.464839, 38.783659 ], [ -77.464899, 38.783632 ], [ -77.465144, 38.783483 ], [ -77.465242, 38.783404 ], [ -77.465705, 38.782917 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477527", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.473781, 38.782014 ], [ -77.473745, 38.781981 ], [ -77.473459, 38.781435 ], [ -77.473415, 38.781364 ], [ -77.473392, 38.781323 ], [ -77.473248, 38.781126 ], [ -77.473148, 38.781009 ], [ -77.473047, 38.780919 ], [ -77.472934, 38.780839 ], [ -77.472808, 38.78077 ], [ -77.472701, 38.780723 ], [ -77.47256, 38.780677 ], [ -77.472436, 38.780645 ], [ -77.472283, 38.780594 ], [ -77.472166, 38.780544 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477536", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433615, 38.758431 ], [ -77.433548, 38.758325 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477306", "FULLNAME": "Cougar Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42231, 38.764945 ], [ -77.422058, 38.764348 ], [ -77.421922, 38.76404 ], [ -77.421794, 38.763747 ], [ -77.421705, 38.763499 ], [ -77.421692, 38.763382 ], [ -77.421695, 38.763287 ], [ -77.421715, 38.76317 ], [ -77.421898, 38.762618 ], [ -77.42194, 38.762518 ], [ -77.422007, 38.762398 ], [ -77.422092, 38.762286 ], [ -77.422286, 38.762077 ], [ -77.422296, 38.761925 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110461107160", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436986, 38.758088 ], [ -77.436887, 38.758054 ], [ -77.436778, 38.758017 ], [ -77.436606, 38.757971 ], [ -77.436473, 38.757943 ], [ -77.436307, 38.757915 ], [ -77.436286, 38.757913 ], [ -77.436163, 38.757898 ], [ -77.435886, 38.757881 ], [ -77.435708, 38.757881 ], [ -77.43541, 38.757893 ], [ -77.435174, 38.757914 ], [ -77.434833, 38.757959 ], [ -77.43452, 38.758017 ], [ -77.434263, 38.75808 ], [ -77.434008, 38.758157 ], [ -77.433792, 38.75823 ], [ -77.433548, 38.758325 ], [ -77.433235, 38.758469 ], [ -77.433009, 38.758592 ], [ -77.432836, 38.758697 ], [ -77.432617, 38.758848 ], [ -77.432434, 38.758987 ], [ -77.432219, 38.75917 ], [ -77.432023, 38.759357 ], [ -77.431866, 38.759528 ], [ -77.431725, 38.759708 ], [ -77.431563, 38.759952 ], [ -77.430911, 38.760992 ], [ -77.430567, 38.761539 ], [ -77.430497, 38.761658 ], [ -77.430366, 38.76185 ], [ -77.430219, 38.762034 ], [ -77.429742, 38.762554 ], [ -77.429436, 38.762905 ], [ -77.429195, 38.763197 ], [ -77.428539, 38.764024 ], [ -77.42808, 38.764611 ], [ -77.427963, 38.764781 ], [ -77.427929, 38.764844 ], [ -77.427854, 38.765005 ], [ -77.427797, 38.76517 ], [ -77.42775, 38.765373 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477490", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459083, 38.78228 ], [ -77.459281, 38.782305 ], [ -77.459492, 38.782348 ], [ -77.459739, 38.782413 ], [ -77.459837, 38.782443 ], [ -77.460221, 38.782519 ], [ -77.460377, 38.782544 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477431", "FULLNAME": "Hedgeford St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429386, 38.765648 ], [ -77.429367, 38.765488 ], [ -77.429345, 38.765414 ], [ -77.429304, 38.765345 ], [ -77.429099, 38.765128 ], [ -77.42907, 38.765074 ], [ -77.42905, 38.765003 ], [ -77.429047, 38.764931 ], [ -77.429058, 38.764873 ], [ -77.429088, 38.764804 ], [ -77.42933, 38.764492 ], [ -77.429604, 38.764134 ], [ -77.42967, 38.764054 ], [ -77.429752, 38.763984 ], [ -77.429818, 38.763943 ], [ -77.429881, 38.763917 ], [ -77.429949, 38.763899 ], [ -77.430019, 38.763889 ], [ -77.430108, 38.76389 ], [ -77.430178, 38.7639 ], [ -77.430257, 38.763927 ], [ -77.430315, 38.763957 ], [ -77.430376, 38.764005 ], [ -77.430424, 38.764061 ], [ -77.430452, 38.76412 ], [ -77.43047, 38.764183 ], [ -77.430477, 38.764265 ], [ -77.430452, 38.764443 ], [ -77.430456, 38.764856 ], [ -77.430479, 38.765421 ], [ -77.430474, 38.76563 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477252", "FULLNAME": "Arnie Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432201, 38.7686 ], [ -77.43152, 38.768474 ], [ -77.431103, 38.768404 ], [ -77.430939, 38.768364 ], [ -77.430813, 38.768321 ], [ -77.430664, 38.768255 ], [ -77.430553, 38.768193 ], [ -77.430426, 38.768106 ], [ -77.430312, 38.768007 ], [ -77.430074, 38.767774 ], [ -77.429931, 38.767644 ], [ -77.429836, 38.767572 ], [ -77.429712, 38.767497 ], [ -77.429578, 38.767433 ], [ -77.42945, 38.767393 ], [ -77.429317, 38.767368 ], [ -77.428893, 38.767333 ], [ -77.428507, 38.76731 ], [ -77.428312, 38.767304 ], [ -77.427984, 38.76732 ], [ -77.427779, 38.767317 ], [ -77.42765, 38.767308 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105533753031", "FULLNAME": "Sunset Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439314, 38.763773 ], [ -77.439367, 38.763897 ], [ -77.439426, 38.763935 ], [ -77.439718, 38.764007 ], [ -77.439914, 38.763926 ], [ -77.440175, 38.763774 ], [ -77.440511, 38.763405 ], [ -77.440716, 38.763289 ], [ -77.440864, 38.763069 ], [ -77.440764, 38.762945 ], [ -77.440565, 38.762862 ], [ -77.440314, 38.762734 ], [ -77.44025, 38.762704 ], [ -77.440176, 38.762682 ], [ -77.440031, 38.762656 ], [ -77.439933, 38.76266 ], [ -77.439782, 38.762734 ], [ -77.439586, 38.762956 ], [ -77.439371, 38.763189 ], [ -77.439279, 38.763335 ], [ -77.439235, 38.763465 ], [ -77.439314, 38.763773 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477296", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436215, 38.759019 ], [ -77.436278, 38.759251 ], [ -77.436336, 38.759469 ], [ -77.43635, 38.759599 ], [ -77.436347, 38.759704 ], [ -77.436332, 38.759825 ], [ -77.436301, 38.759963 ], [ -77.436251, 38.760105 ], [ -77.436191, 38.76023 ], [ -77.435946, 38.760645 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477425", "FULLNAME": "Reinecke Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.451017, 38.768927 ], [ -77.450455, 38.768608 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477376", "FULLNAME": "General Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.450861, 38.767525 ], [ -77.450626, 38.767761 ], [ -77.45057, 38.767823 ], [ -77.450425, 38.767984 ], [ -77.45032, 38.768102 ], [ -77.450185, 38.768265 ], [ -77.450143, 38.768303 ], [ -77.450079, 38.768342 ], [ -77.450021, 38.768365 ], [ -77.44997, 38.768377 ], [ -77.449964, 38.768342 ], [ -77.44994, 38.768312 ], [ -77.449804, 38.768236 ], [ -77.449646, 38.768411 ], [ -77.449255, 38.76884 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477224", "FULLNAME": "Anna Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.451525, 38.768378 ], [ -77.450963, 38.768053 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477359", "FULLNAME": "Sumter Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447159, 38.769923 ], [ -77.447113, 38.769919 ], [ -77.447089, 38.769909 ], [ -77.446133, 38.769375 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477403", "FULLNAME": "Woodhue Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447998, 38.770342 ], [ -77.448169, 38.770408 ], [ -77.448476, 38.770576 ], [ -77.448568, 38.770594 ], [ -77.448668, 38.770598 ], [ -77.449146, 38.770737 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477538", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436215, 38.757642 ], [ -77.436207, 38.75767 ], [ -77.436203, 38.757684 ], [ -77.43618, 38.757807 ], [ -77.436163, 38.757898 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678302955", "FULLNAME": "Pickens Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434732, 38.767547 ], [ -77.434491, 38.76762 ], [ -77.434394, 38.767617 ], [ -77.434314, 38.767597 ], [ -77.434239, 38.767569 ], [ -77.434171, 38.767563 ], [ -77.434096, 38.767579 ], [ -77.434041, 38.767616 ], [ -77.433935, 38.767809 ], [ -77.433793, 38.768082 ], [ -77.433436, 38.768769 ], [ -77.433405, 38.768857 ], [ -77.433605, 38.768792 ], [ -77.433867, 38.768732 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477328", "FULLNAME": "Meeker Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.470701, 38.784695 ], [ -77.470613, 38.784851 ], [ -77.470575, 38.784936 ], [ -77.470544, 38.785046 ], [ -77.470541, 38.785115 ], [ -77.470558, 38.785231 ], [ -77.470585, 38.785321 ], [ -77.470612, 38.785378 ], [ -77.47067, 38.785459 ], [ -77.470743, 38.785532 ], [ -77.47083, 38.785595 ], [ -77.470955, 38.785661 ], [ -77.471093, 38.785709 ], [ -77.471216, 38.785735 ], [ -77.471599, 38.785764 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477362", "FULLNAME": "Vassau Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437176, 38.777054 ], [ -77.437524, 38.777217 ], [ -77.437674, 38.777305 ], [ -77.43785, 38.777424 ], [ -77.438014, 38.777554 ], [ -77.438075, 38.777609 ], [ -77.438277, 38.777817 ], [ -77.43849, 38.778009 ], [ -77.43865, 38.778169 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477550", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428906, 38.768376 ], [ -77.428914, 38.768353 ], [ -77.428919, 38.768308 ], [ -77.428937, 38.768264 ], [ -77.428968, 38.768225 ], [ -77.429008, 38.768207 ], [ -77.429052, 38.768204 ], [ -77.429095, 38.768215 ], [ -77.429128, 38.768239 ], [ -77.42915, 38.768272 ], [ -77.429156, 38.768294 ], [ -77.429149, 38.768331 ], [ -77.429125, 38.768364 ], [ -77.429087, 38.768386 ], [ -77.429042, 38.768396 ], [ -77.429004, 38.768394 ], [ -77.428906, 38.768376 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477404", "FULLNAME": "Zachary Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433548, 38.758325 ], [ -77.433405, 38.758109 ], [ -77.433285, 38.757973 ], [ -77.433169, 38.757869 ], [ -77.43304, 38.757779 ], [ -77.432857, 38.75767 ], [ -77.432752, 38.757617 ], [ -77.432417, 38.757439 ], [ -77.432217, 38.757332 ], [ -77.432059, 38.757242 ], [ -77.431967, 38.757171 ], [ -77.431888, 38.75709 ], [ -77.431815, 38.756982 ], [ -77.431788, 38.756925 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678306484", "FULLNAME": "Market St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442382, 38.766709 ], [ -77.442993, 38.766692 ], [ -77.443401, 38.766749 ], [ -77.443708, 38.766803 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477540", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442788, 38.76786 ], [ -77.441799, 38.768285 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1101168884340", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447277, 38.767656 ], [ -77.447432, 38.767486 ], [ -77.448085, 38.766735 ], [ -77.448507, 38.766147 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477263", "FULLNAME": "Jenna Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424851, 38.768597 ], [ -77.425102, 38.768672 ], [ -77.425195, 38.768686 ], [ -77.425289, 38.768685 ], [ -77.425382, 38.76867 ], [ -77.425417, 38.768661 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103691411843", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1640" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425918, 38.770039 ], [ -77.425756, 38.77012 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477270", "FULLNAME": "Lanae Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433952, 38.762531 ], [ -77.433951, 38.76259 ], [ -77.433959, 38.762671 ], [ -77.434154, 38.763197 ], [ -77.434215, 38.763375 ], [ -77.434239, 38.76343 ], [ -77.434311, 38.763563 ], [ -77.434364, 38.763635 ], [ -77.434447, 38.763721 ], [ -77.434564, 38.76382 ], [ -77.435028, 38.764101 ], [ -77.435072, 38.764117 ], [ -77.435131, 38.76412 ], [ -77.435168, 38.76411 ], [ -77.435207, 38.764088 ], [ -77.435343, 38.763889 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477406", "FULLNAME": "Courtney Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465748, 38.779296 ], [ -77.465735, 38.779345 ], [ -77.465718, 38.779467 ], [ -77.465827, 38.780285 ], [ -77.46593, 38.780963 ], [ -77.466034, 38.781291 ], [ -77.466126, 38.781508 ], [ -77.46617, 38.781641 ], [ -77.46622, 38.78192 ], [ -77.46623, 38.781985 ], [ -77.466229, 38.782083 ], [ -77.466209, 38.782179 ], [ -77.466173, 38.782271 ], [ -77.466084, 38.782443 ], [ -77.465999, 38.782576 ], [ -77.465873, 38.782735 ], [ -77.465754, 38.782864 ], [ -77.465705, 38.782917 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045621660", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463258, 38.778064 ], [ -77.463945, 38.777297 ], [ -77.464204, 38.777018 ], [ -77.464331, 38.776914 ], [ -77.464346, 38.7769 ], [ -77.464605, 38.776549 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477454", "FULLNAME": "Centreville Rd", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.4521, 38.773417 ], [ -77.452286, 38.772609 ], [ -77.452341, 38.772372 ], [ -77.452442, 38.771884 ], [ -77.452489, 38.771693 ], [ -77.452584, 38.771324 ], [ -77.452728, 38.770689 ], [ -77.452782, 38.770506 ], [ -77.452886, 38.770232 ], [ -77.452991, 38.769999 ], [ -77.453086, 38.769816 ], [ -77.453259, 38.769509 ], [ -77.45337, 38.769343 ], [ -77.453591, 38.769031 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477245", "FULLNAME": "Yost Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460644, 38.782045 ], [ -77.460819, 38.782281 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477235", "FULLNAME": "Kent Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.467612, 38.782768 ], [ -77.468063, 38.782648 ], [ -77.468257, 38.782588 ], [ -77.468444, 38.782514 ], [ -77.468637, 38.782421 ], [ -77.468997, 38.782235 ], [ -77.469555, 38.781969 ], [ -77.469764, 38.781883 ], [ -77.469932, 38.78184 ], [ -77.470105, 38.781812 ], [ -77.471113, 38.781755 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477379", "FULLNAME": "Heather Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427117, 38.761586 ], [ -77.427116, 38.761744 ], [ -77.427134, 38.761901 ], [ -77.427165, 38.762063 ], [ -77.427205, 38.762192 ], [ -77.427272, 38.762349 ], [ -77.427315, 38.762424 ], [ -77.427382, 38.762485 ], [ -77.427461, 38.762536 ], [ -77.427514, 38.762561 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477335", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469766, 38.779297 ], [ -77.469773, 38.779232 ], [ -77.469793, 38.779183 ], [ -77.469872, 38.779034 ], [ -77.469865, 38.778998 ], [ -77.469841, 38.778973 ], [ -77.469591, 38.778836 ], [ -77.46954, 38.778814 ], [ -77.469501, 38.77878 ], [ -77.469477, 38.778739 ], [ -77.469465, 38.77869 ], [ -77.469445, 38.778666 ], [ -77.469125, 38.778486 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477526", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447064, 38.767887 ], [ -77.447189, 38.767956 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477551", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.450573, 38.772277 ], [ -77.450789, 38.772401 ], [ -77.45082, 38.772401 ], [ -77.450838, 38.772389 ], [ -77.450928, 38.772292 ], [ -77.45093, 38.772269 ], [ -77.450917, 38.772253 ], [ -77.450768, 38.772168 ], [ -77.450732, 38.772161 ], [ -77.450696, 38.772168 ], [ -77.450677, 38.772179 ], [ -77.450573, 38.772277 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678302491", "FULLNAME": "Holmes Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436061, 38.767707 ], [ -77.436112, 38.767479 ], [ -77.436127, 38.767366 ], [ -77.436359, 38.766968 ], [ -77.436399, 38.766911 ], [ -77.436399, 38.766852 ], [ -77.436403, 38.766797 ], [ -77.436819, 38.766379 ], [ -77.437247, 38.765981 ], [ -77.437283, 38.765928 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678293384", "FULLNAME": "Creek View Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438444, 38.765325 ], [ -77.437956, 38.765064 ], [ -77.437776, 38.764983 ], [ -77.437697, 38.764938 ], [ -77.437618, 38.764863 ], [ -77.437526, 38.764778 ], [ -77.437397, 38.764667 ], [ -77.437344, 38.764644 ], [ -77.43708, 38.764556 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477287", "FULLNAME": "Steve St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429867, 38.756772 ], [ -77.429576, 38.75695 ], [ -77.429429, 38.757054 ], [ -77.429259, 38.757193 ], [ -77.429109, 38.757339 ], [ -77.428827, 38.757637 ], [ -77.428789, 38.757686 ], [ -77.428706, 38.757813 ], [ -77.42865, 38.757919 ], [ -77.428605, 38.758028 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477239", "FULLNAME": "Mace St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.476028, 38.781258 ], [ -77.47599, 38.781326 ], [ -77.475855, 38.78165 ], [ -77.475799, 38.781797 ], [ -77.47576, 38.781947 ], [ -77.475747, 38.782079 ], [ -77.47575, 38.782185 ], [ -77.475765, 38.78229 ], [ -77.475875, 38.782789 ], [ -77.476015, 38.783388 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477234", "FULLNAME": "Kent Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.473781, 38.782014 ], [ -77.473844, 38.782053 ], [ -77.473867, 38.782073 ], [ -77.473941, 38.782202 ], [ -77.474142, 38.782532 ], [ -77.474264, 38.782745 ], [ -77.474525, 38.783174 ], [ -77.474562, 38.783264 ], [ -77.474581, 38.783358 ], [ -77.474586, 38.783455 ], [ -77.474573, 38.783552 ], [ -77.474541, 38.783646 ], [ -77.47445, 38.783854 ], [ -77.473829, 38.785 ], [ -77.473778, 38.785136 ], [ -77.473747, 38.785278 ], [ -77.473725, 38.78547 ], [ -77.473692, 38.785886 ], [ -77.473664, 38.786203 ], [ -77.473636, 38.786338 ], [ -77.473584, 38.786485 ], [ -77.473541, 38.786557 ], [ -77.473484, 38.786623 ], [ -77.47338, 38.786707 ], [ -77.473311, 38.786784 ], [ -77.472819, 38.787509 ], [ -77.472816, 38.787543 ], [ -77.472824, 38.787565 ], [ -77.472837, 38.787581 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477257", "FULLNAME": "Drake Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469715, 38.786388 ], [ -77.469225, 38.786574 ], [ -77.469036, 38.786637 ], [ -77.468903, 38.786666 ], [ -77.468171, 38.786738 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679106335", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.422296, 38.761925 ], [ -77.422286, 38.761832 ], [ -77.422411, 38.761499 ], [ -77.422931, 38.760999 ], [ -77.423067, 38.760858 ], [ -77.423211, 38.760187 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679537853", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438664, 38.761935 ], [ -77.43882, 38.761997 ], [ -77.438867, 38.762093 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679094720", "FULLNAME": "Battalion Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436239, 38.766071 ], [ -77.436346, 38.766159 ], [ -77.436489, 38.766242 ], [ -77.4366, 38.766266 ], [ -77.436693, 38.766287 ], [ -77.436819, 38.766379 ], [ -77.437057, 38.766572 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536473", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435323, 38.767503 ], [ -77.43479, 38.767367 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536539", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435016, 38.76799 ], [ -77.435784, 38.767788 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678293757", "FULLNAME": "Locust Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437618, 38.764863 ], [ -77.437683, 38.764758 ], [ -77.437827, 38.764669 ], [ -77.437847, 38.764588 ], [ -77.43789, 38.764136 ], [ -77.437857, 38.763957 ], [ -77.437788, 38.763592 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477258", "FULLNAME": "Eagle Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428815, 38.76997 ], [ -77.428754, 38.770329 ], [ -77.428759, 38.770415 ], [ -77.428783, 38.7705 ], [ -77.428814, 38.770565 ], [ -77.428869, 38.77064 ], [ -77.428939, 38.770706 ], [ -77.429026, 38.770761 ], [ -77.429103, 38.770797 ], [ -77.429207, 38.770829 ], [ -77.429294, 38.770845 ], [ -77.429789, 38.770898 ], [ -77.429889, 38.770902 ], [ -77.430857, 38.770909 ], [ -77.430975, 38.770923 ], [ -77.431089, 38.770951 ], [ -77.431353, 38.771036 ], [ -77.431428, 38.771046 ], [ -77.431503, 38.771041 ], [ -77.431574, 38.771021 ], [ -77.4316, 38.771009 ], [ -77.431806, 38.77087 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679090051", "FULLNAME": "Park Station Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435558, 38.766047 ], [ -77.435539, 38.76606 ], [ -77.435424, 38.766162 ], [ -77.435331, 38.766268 ], [ -77.435184, 38.766472 ], [ -77.434888, 38.767014 ], [ -77.43479, 38.767367 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477382", "FULLNAME": "Jessica Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433392, 38.762584 ], [ -77.433574, 38.762544 ], [ -77.433733, 38.762526 ], [ -77.433952, 38.762531 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678610426", "FULLNAME": "Wheats Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435184, 38.766472 ], [ -77.434829, 38.766353 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861013", "FULLNAME": "Maria Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436952, 38.763666 ], [ -77.436173, 38.763433 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477244", "FULLNAME": "Polk Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459432, 38.778209 ], [ -77.460635, 38.778026 ], [ -77.462031, 38.777815 ], [ -77.462245, 38.777797 ], [ -77.462391, 38.777795 ], [ -77.462511, 38.777802 ], [ -77.462629, 38.777819 ], [ -77.462802, 38.777861 ], [ -77.462971, 38.777923 ], [ -77.463108, 38.777983 ], [ -77.463258, 38.778064 ], [ -77.464138, 38.77856 ], [ -77.465098, 38.779086 ], [ -77.465289, 38.779174 ], [ -77.465452, 38.779235 ], [ -77.465597, 38.779272 ], [ -77.465748, 38.779296 ], [ -77.465868, 38.779305 ], [ -77.466146, 38.779306 ], [ -77.466301, 38.779293 ], [ -77.466453, 38.779265 ], [ -77.466601, 38.779226 ], [ -77.466743, 38.779177 ], [ -77.46685, 38.779128 ], [ -77.467246, 38.778934 ], [ -77.467337, 38.778893 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536161", "FULLNAME": "Colburn Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466495, 38.783575 ], [ -77.466454, 38.783597 ], [ -77.465608, 38.784045 ], [ -77.464719, 38.784511 ], [ -77.464339, 38.784714 ], [ -77.463824, 38.784982 ], [ -77.463484, 38.785158 ], [ -77.462936, 38.78545 ], [ -77.462037, 38.785924 ], [ -77.460696, 38.786628 ], [ -77.460055, 38.786967 ], [ -77.459967, 38.787018 ], [ -77.459892, 38.787079 ], [ -77.459847, 38.787131 ], [ -77.45979, 38.787229 ], [ -77.459759, 38.787318 ], [ -77.459736, 38.787494 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477249", "FULLNAME": "Adams St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.46143, 38.782943 ], [ -77.461274, 38.783166 ], [ -77.461248, 38.783233 ], [ -77.461239, 38.783302 ], [ -77.461249, 38.783372 ], [ -77.461263, 38.783412 ], [ -77.461456, 38.783722 ], [ -77.461466, 38.783772 ], [ -77.461458, 38.783823 ], [ -77.461281, 38.78416 ], [ -77.461195, 38.784338 ], [ -77.461158, 38.784451 ], [ -77.461138, 38.78459 ], [ -77.461141, 38.784679 ], [ -77.461157, 38.784762 ], [ -77.461193, 38.784863 ], [ -77.461234, 38.784942 ], [ -77.461293, 38.785039 ], [ -77.461361, 38.785128 ], [ -77.46146, 38.785231 ], [ -77.462037, 38.785924 ], [ -77.462384, 38.786316 ], [ -77.462454, 38.786423 ], [ -77.462497, 38.786512 ], [ -77.46255, 38.786638 ], [ -77.462576, 38.786744 ], [ -77.462584, 38.786864 ], [ -77.462578, 38.786973 ], [ -77.462558, 38.78712 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103717088866", "FULLNAME": "Mathis Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454002, 38.771953 ], [ -77.454268, 38.770769 ], [ -77.454316, 38.770582 ], [ -77.454377, 38.770429 ], [ -77.454447, 38.770304 ], [ -77.454463, 38.770283 ], [ -77.454535, 38.770186 ], [ -77.454562, 38.770155 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477284", "FULLNAME": "Scott Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.455301, 38.774931 ], [ -77.455202, 38.774869 ], [ -77.455126, 38.774801 ], [ -77.454834, 38.774425 ], [ -77.454583, 38.774078 ], [ -77.454538, 38.774008 ], [ -77.454478, 38.773886 ], [ -77.454436, 38.773759 ], [ -77.454407, 38.773602 ], [ -77.454401, 38.77347 ], [ -77.454414, 38.773337 ], [ -77.454668, 38.772237 ], [ -77.454699, 38.772084 ], [ -77.454806, 38.771681 ], [ -77.454837, 38.771511 ], [ -77.45486, 38.771443 ], [ -77.454899, 38.77138 ], [ -77.454954, 38.771324 ], [ -77.455023, 38.771278 ], [ -77.455087, 38.771248 ], [ -77.455174, 38.771222 ], [ -77.455267, 38.771212 ], [ -77.45536, 38.771215 ], [ -77.455484, 38.771242 ], [ -77.455584, 38.771279 ], [ -77.456963, 38.772047 ], [ -77.457748, 38.772471 ], [ -77.457948, 38.772575 ], [ -77.458426, 38.772844 ], [ -77.458579, 38.772913 ], [ -77.458733, 38.772968 ], [ -77.458837, 38.772991 ], [ -77.458973, 38.773009 ], [ -77.459097, 38.773016 ], [ -77.459251, 38.773011 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851647", "FULLNAME": "Franklin Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443708, 38.766803 ], [ -77.443822, 38.766839 ], [ -77.44436, 38.766226 ], [ -77.444364, 38.766168 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477418", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443739, 38.768648 ], [ -77.443798, 38.768716 ], [ -77.443849, 38.768766 ], [ -77.443932, 38.76883 ], [ -77.444217, 38.769006 ], [ -77.444979, 38.769442 ], [ -77.445391, 38.769696 ], [ -77.445526, 38.769785 ], [ -77.446558, 38.770471 ], [ -77.446755, 38.770592 ], [ -77.446968, 38.770705 ], [ -77.44719, 38.770806 ], [ -77.447468, 38.770911 ], [ -77.447668, 38.770973 ], [ -77.448061, 38.771089 ], [ -77.44847, 38.771193 ], [ -77.4488, 38.771266 ], [ -77.449181, 38.771339 ], [ -77.449632, 38.771405 ], [ -77.44986, 38.77143 ], [ -77.450154, 38.771466 ], [ -77.450632, 38.771507 ], [ -77.451131, 38.771563 ], [ -77.451607, 38.771632 ], [ -77.452264, 38.771742 ], [ -77.452327, 38.771741 ], [ -77.452419, 38.771723 ], [ -77.452489, 38.771693 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477337", "FULLNAME": "Moseby Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466895, 38.7821 ], [ -77.46698, 38.782049 ], [ -77.467075, 38.782011 ], [ -77.467178, 38.781985 ], [ -77.467306, 38.781971 ], [ -77.467518, 38.781937 ], [ -77.467725, 38.781888 ], [ -77.468147, 38.781723 ], [ -77.468283, 38.781642 ], [ -77.468458, 38.781527 ], [ -77.468563, 38.781447 ], [ -77.468738, 38.781285 ], [ -77.468868, 38.78114 ], [ -77.469334, 38.780524 ], [ -77.469627, 38.780139 ], [ -77.469798, 38.779908 ], [ -77.470001, 38.779633 ], [ -77.470098, 38.779525 ], [ -77.47018, 38.779419 ], [ -77.470218, 38.779363 ], [ -77.470426, 38.778985 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477297", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436332, 38.757695 ], [ -77.436311, 38.75777 ], [ -77.436306, 38.757796 ], [ -77.436286, 38.757913 ], [ -77.436286, 38.75793 ], [ -77.436284, 38.758028 ], [ -77.436214, 38.758383 ], [ -77.436195, 38.758583 ], [ -77.436193, 38.758743 ], [ -77.436215, 38.759019 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477389", "FULLNAME": "Matthew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426054, 38.758752 ], [ -77.426168, 38.758447 ], [ -77.42621, 38.758322 ], [ -77.426235, 38.758168 ], [ -77.426235, 38.75801 ], [ -77.426226, 38.757862 ], [ -77.426195, 38.757703 ], [ -77.426084, 38.757261 ], [ -77.426037, 38.757084 ], [ -77.426062, 38.7569 ], [ -77.426129, 38.756742 ], [ -77.426206, 38.756583 ], [ -77.426295, 38.756445 ], [ -77.426396, 38.756321 ], [ -77.42652, 38.756196 ], [ -77.426617, 38.756119 ], [ -77.426743, 38.756043 ], [ -77.426913, 38.755968 ], [ -77.427184, 38.755904 ], [ -77.427247, 38.755896 ], [ -77.42796, 38.755798 ], [ -77.428246, 38.75578 ], [ -77.428368, 38.755785 ], [ -77.428518, 38.755803 ], [ -77.428662, 38.755834 ], [ -77.428806, 38.75588 ], [ -77.428939, 38.755937 ], [ -77.429072, 38.756014 ], [ -77.429202, 38.756107 ], [ -77.429297, 38.756189 ], [ -77.429867, 38.756772 ], [ -77.430259, 38.757209 ], [ -77.430392, 38.757403 ], [ -77.430475, 38.757542 ], [ -77.43055, 38.757684 ], [ -77.430611, 38.757818 ], [ -77.430706, 38.758075 ], [ -77.430782, 38.758335 ], [ -77.430818, 38.758577 ], [ -77.430837, 38.758832 ], [ -77.430838, 38.759063 ], [ -77.430814, 38.759264 ], [ -77.430767, 38.759514 ], [ -77.430725, 38.759662 ], [ -77.430642, 38.759887 ], [ -77.430525, 38.760146 ], [ -77.430179, 38.760708 ], [ -77.429703, 38.761481 ], [ -77.42964, 38.761585 ], [ -77.429523, 38.76176 ], [ -77.429362, 38.761973 ], [ -77.429045, 38.762329 ], [ -77.428789, 38.762616 ], [ -77.427916, 38.763727 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477294", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435801, 38.760594 ], [ -77.435779, 38.760627 ], [ -77.435735, 38.760713 ], [ -77.435681, 38.760904 ], [ -77.435621, 38.761224 ], [ -77.435882, 38.760982 ], [ -77.435941, 38.760921 ], [ -77.436027, 38.760813 ], [ -77.436097, 38.760698 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477423", "FULLNAME": "Railroad Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442259, 38.762602 ], [ -77.442123, 38.762611 ], [ -77.442057, 38.762624 ], [ -77.441997, 38.762635 ], [ -77.441975, 38.762641 ], [ -77.441924, 38.762655 ], [ -77.441889, 38.762665 ], [ -77.441768, 38.762714 ], [ -77.441671, 38.762778 ], [ -77.44156, 38.762866 ], [ -77.440937, 38.763447 ], [ -77.440743, 38.763628 ], [ -77.440685, 38.763692 ], [ -77.440625, 38.763779 ], [ -77.440575, 38.763892 ], [ -77.440565, 38.763934 ], [ -77.440552, 38.763992 ], [ -77.440549, 38.764082 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679538402", "FULLNAME": "Digital Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440129, 38.759876 ], [ -77.438963, 38.761226 ], [ -77.438796, 38.761588 ], [ -77.438664, 38.761935 ], [ -77.437723, 38.763304 ], [ -77.437667, 38.763394 ], [ -77.437562, 38.763598 ], [ -77.437421, 38.763939 ], [ -77.437316, 38.764151 ], [ -77.43708, 38.764556 ], [ -77.436863, 38.764913 ], [ -77.43665, 38.765185 ], [ -77.436515, 38.765346 ], [ -77.43623, 38.765731 ], [ -77.43607, 38.765847 ], [ -77.435859, 38.765933 ], [ -77.435558, 38.766047 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477405", "FULLNAME": "Burnside Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.446888, 38.768954 ], [ -77.447656, 38.769399 ], [ -77.447863, 38.76951 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477231", "FULLNAME": "Inyo Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447653, 38.768217 ], [ -77.448539, 38.767247 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678302380", "FULLNAME": "Elzey Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436239, 38.766071 ], [ -77.43627, 38.765984 ], [ -77.43634, 38.765873 ], [ -77.436844, 38.765766 ], [ -77.436979, 38.765743 ], [ -77.437052, 38.765838 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477394", "FULLNAME": "Sheldon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.475875, 38.782789 ], [ -77.476102, 38.782762 ], [ -77.476293, 38.782754 ], [ -77.476394, 38.782761 ], [ -77.476593, 38.782791 ], [ -77.476754, 38.782831 ], [ -77.477284, 38.783006 ], [ -77.477454, 38.783083 ], [ -77.477583, 38.783161 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477361", "FULLNAME": "Travis St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471702, 38.783669 ], [ -77.471875, 38.783629 ], [ -77.472109, 38.783546 ], [ -77.47299, 38.783219 ], [ -77.474264, 38.782745 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477430", "FULLNAME": "Englewood Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449779, 38.771857 ], [ -77.450009, 38.77196 ], [ -77.450573, 38.772277 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045621608", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464914, 38.776423 ], [ -77.464952, 38.776384 ], [ -77.464935, 38.776295 ], [ -77.464907, 38.776219 ], [ -77.46486, 38.776174 ], [ -77.463217, 38.775308 ], [ -77.463169, 38.7753 ], [ -77.46314, 38.77533 ], [ -77.463149, 38.775368 ], [ -77.463746, 38.776013 ], [ -77.463803, 38.776051 ], [ -77.464457, 38.776382 ], [ -77.464605, 38.776549 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678606081", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432808, 38.762667 ], [ -77.432872, 38.762862 ], [ -77.432976, 38.763129 ], [ -77.432983, 38.763183 ], [ -77.432972, 38.763236 ], [ -77.432854, 38.763422 ], [ -77.432621, 38.763826 ], [ -77.432576, 38.76387 ], [ -77.432517, 38.763901 ], [ -77.432291, 38.763962 ], [ -77.432225, 38.763966 ], [ -77.432161, 38.763956 ], [ -77.431866, 38.763836 ], [ -77.431833, 38.763808 ], [ -77.431815, 38.763773 ], [ -77.431814, 38.763735 ], [ -77.431962, 38.763361 ], [ -77.432228, 38.762968 ], [ -77.432274, 38.762919 ], [ -77.432454, 38.762783 ], [ -77.432539, 38.762729 ], [ -77.432615, 38.762694 ], [ -77.432703, 38.762673 ], [ -77.432808, 38.762667 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477501", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436055, 38.759288 ], [ -77.436094, 38.759489 ], [ -77.436107, 38.759738 ], [ -77.436132, 38.759771 ], [ -77.436167, 38.759788 ], [ -77.436332, 38.759825 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678290915", "FULLNAME": "Trailway Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439235, 38.763465 ], [ -77.439084, 38.7635 ], [ -77.43904, 38.763535 ], [ -77.439028, 38.76358 ], [ -77.439151, 38.763964 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536475", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435832, 38.766261 ], [ -77.435922, 38.766361 ], [ -77.435943, 38.766425 ], [ -77.435931, 38.766477 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536474", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435931, 38.766477 ], [ -77.435956, 38.766544 ], [ -77.435962, 38.766608 ], [ -77.435955, 38.766671 ], [ -77.435916, 38.766753 ], [ -77.43563, 38.767201 ], [ -77.435593, 38.767282 ], [ -77.435562, 38.767371 ], [ -77.435532, 38.767449 ], [ -77.435498, 38.767479 ], [ -77.435437, 38.767493 ], [ -77.435323, 38.767503 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536540", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435784, 38.767788 ], [ -77.436061, 38.767707 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477374", "FULLNAME": "Fairway Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427581, 38.769107 ], [ -77.427645, 38.769237 ], [ -77.427725, 38.76936 ], [ -77.427822, 38.769475 ], [ -77.427933, 38.769582 ], [ -77.428068, 38.769691 ], [ -77.428191, 38.76977 ], [ -77.428296, 38.769825 ], [ -77.428437, 38.769883 ], [ -77.428554, 38.769921 ], [ -77.428703, 38.769955 ], [ -77.428815, 38.76997 ], [ -77.428977, 38.769979 ], [ -77.430597, 38.769897 ], [ -77.43077, 38.769875 ], [ -77.430906, 38.769847 ], [ -77.431356, 38.769722 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477265", "FULLNAME": "Karen Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424309, 38.767342 ], [ -77.424411, 38.767156 ], [ -77.424468, 38.767035 ], [ -77.424505, 38.766909 ], [ -77.424538, 38.766694 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477392", "FULLNAME": "Rosebud Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434293, 38.766318 ], [ -77.434222, 38.766035 ], [ -77.434251, 38.765894 ], [ -77.434322, 38.765607 ], [ -77.434339, 38.765461 ], [ -77.43434, 38.765343 ], [ -77.434324, 38.765199 ], [ -77.434287, 38.765065 ], [ -77.434233, 38.764933 ], [ -77.434176, 38.764832 ], [ -77.434101, 38.764744 ], [ -77.433971, 38.764624 ], [ -77.433841, 38.764531 ], [ -77.433762, 38.764493 ], [ -77.433676, 38.764469 ], [ -77.433652, 38.764466 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851221", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431784, 38.761544 ], [ -77.431612, 38.761818 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081863073", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437051, 38.763476 ], [ -77.437168, 38.763222 ], [ -77.437216, 38.763154 ], [ -77.437478, 38.762787 ], [ -77.437534, 38.762701 ], [ -77.437534, 38.762658 ], [ -77.437478, 38.762606 ], [ -77.43672, 38.762365 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477247", "FULLNAME": "Yost St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461766, 38.780908 ], [ -77.46082, 38.781938 ], [ -77.460795, 38.78196 ], [ -77.460722, 38.782009 ], [ -77.460644, 38.782045 ], [ -77.460538, 38.782077 ], [ -77.460441, 38.782099 ], [ -77.460309, 38.782113 ], [ -77.460163, 38.782111 ], [ -77.460038, 38.782094 ], [ -77.459529, 38.781952 ], [ -77.459115, 38.781859 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477261", "FULLNAME": "Evans St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.45606, 38.772631 ], [ -77.455962, 38.77274 ], [ -77.45588, 38.772858 ], [ -77.455815, 38.772981 ], [ -77.455784, 38.773071 ], [ -77.455762, 38.773186 ], [ -77.455759, 38.773278 ], [ -77.45578, 38.773388 ], [ -77.45581, 38.773474 ], [ -77.455862, 38.773577 ], [ -77.455903, 38.773638 ], [ -77.455992, 38.77374 ], [ -77.456096, 38.773832 ], [ -77.456207, 38.773908 ], [ -77.456375, 38.774006 ], [ -77.45645, 38.774045 ], [ -77.457818, 38.774801 ], [ -77.458471, 38.775156 ], [ -77.458954, 38.775408 ], [ -77.459047, 38.775439 ], [ -77.459145, 38.775457 ], [ -77.459246, 38.77546 ], [ -77.459326, 38.775453 ], [ -77.459709, 38.775379 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477554", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449483, 38.771942 ], [ -77.449112, 38.771731 ], [ -77.449081, 38.771728 ], [ -77.449054, 38.771739 ], [ -77.448967, 38.771826 ], [ -77.448964, 38.771848 ], [ -77.448975, 38.771864 ], [ -77.449319, 38.772054 ], [ -77.449361, 38.772054 ], [ -77.449386, 38.772043 ], [ -77.449483, 38.771942 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477420", "FULLNAME": "Overhill Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447193, 38.771587 ], [ -77.447359, 38.771423 ], [ -77.447489, 38.771287 ], [ -77.447569, 38.771181 ], [ -77.44762, 38.771091 ], [ -77.447668, 38.770973 ], [ -77.447763, 38.77081 ], [ -77.447957, 38.770435 ], [ -77.447998, 38.770342 ], [ -77.44803, 38.770259 ], [ -77.448184, 38.770076 ], [ -77.448212, 38.770042 ], [ -77.448455, 38.769791 ], [ -77.448896, 38.769299 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477440", "FULLNAME": "Sunnyside Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449653, 38.772043 ], [ -77.449483, 38.771942 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477436", "FULLNAME": "Saint Steven Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449837, 38.767495 ], [ -77.449496, 38.767305 ], [ -77.448814, 38.76692 ], [ -77.448492, 38.766737 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477295", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436163, 38.757898 ], [ -77.436131, 38.758012 ], [ -77.436091, 38.758126 ], [ -77.436076, 38.758225 ], [ -77.436073, 38.758434 ], [ -77.43609, 38.758603 ], [ -77.436101, 38.75867 ], [ -77.436215, 38.759019 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105533752563", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438174, 38.758791 ], [ -77.438085, 38.758765 ], [ -77.437943, 38.758712 ], [ -77.437835, 38.75866 ], [ -77.437302, 38.75837 ], [ -77.437046, 38.758246 ], [ -77.436868, 38.758175 ], [ -77.436697, 38.758118 ], [ -77.436432, 38.758049 ], [ -77.436284, 38.758028 ], [ -77.436131, 38.758012 ], [ -77.435885, 38.757998 ], [ -77.435685, 38.757997 ], [ -77.435378, 38.75801 ], [ -77.435288, 38.758018 ], [ -77.435072, 38.758044 ], [ -77.434708, 38.758102 ], [ -77.434398, 38.758167 ], [ -77.434276, 38.758197 ], [ -77.43397, 38.758296 ], [ -77.433615, 38.758431 ], [ -77.433437, 38.758507 ], [ -77.433162, 38.758651 ], [ -77.432897, 38.758806 ], [ -77.432678, 38.758955 ], [ -77.43248, 38.759109 ], [ -77.432332, 38.759241 ], [ -77.432156, 38.759411 ], [ -77.431993, 38.759588 ], [ -77.431845, 38.759774 ], [ -77.431643, 38.760075 ], [ -77.431042, 38.761044 ], [ -77.430676, 38.76163 ], [ -77.430445, 38.761959 ], [ -77.430336, 38.762099 ], [ -77.43008, 38.762386 ], [ -77.429919, 38.762554 ], [ -77.429571, 38.762947 ], [ -77.429271, 38.763314 ], [ -77.428668, 38.764083 ], [ -77.428006, 38.764903 ], [ -77.427904, 38.765054 ], [ -77.427819, 38.765211 ], [ -77.42775, 38.765373 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081513518", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444875, 38.770495 ], [ -77.445052, 38.770305 ], [ -77.445212, 38.770157 ], [ -77.445526, 38.769785 ], [ -77.44566, 38.769628 ], [ -77.445797, 38.769467 ], [ -77.446437, 38.768766 ], [ -77.446615, 38.768571 ], [ -77.447189, 38.767956 ], [ -77.447225, 38.767912 ], [ -77.447381, 38.767721 ], [ -77.447529, 38.76754 ], [ -77.447938, 38.767083 ], [ -77.448269, 38.766657 ], [ -77.44854, 38.766223 ], [ -77.44855, 38.766171 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477299", "FULLNAME": "Colfax Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471281, 38.782981 ], [ -77.471184, 38.78285 ], [ -77.470977, 38.782622 ], [ -77.470909, 38.782572 ], [ -77.47083, 38.782533 ], [ -77.470761, 38.782512 ], [ -77.470689, 38.782498 ], [ -77.470614, 38.782493 ], [ -77.470503, 38.782503 ], [ -77.470431, 38.782519 ], [ -77.470348, 38.782552 ], [ -77.470287, 38.782586 ], [ -77.470246, 38.782617 ], [ -77.469883, 38.78285 ], [ -77.469758, 38.782917 ], [ -77.469592, 38.782989 ], [ -77.469454, 38.783038 ], [ -77.469274, 38.783086 ], [ -77.469201, 38.783101 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477317", "FULLNAME": "Kristy Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435683, 38.763097 ], [ -77.436179, 38.762085 ], [ -77.436229, 38.761976 ], [ -77.436368, 38.761708 ], [ -77.436652, 38.761239 ], [ -77.436727, 38.761134 ], [ -77.436835, 38.760961 ], [ -77.437169, 38.760309 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477399", "FULLNAME": "William St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428539, 38.764024 ], [ -77.428299, 38.763914 ], [ -77.427916, 38.763727 ], [ -77.427575, 38.763558 ], [ -77.42744, 38.763507 ], [ -77.427328, 38.763475 ], [ -77.427182, 38.763448 ], [ -77.427034, 38.763435 ], [ -77.426864, 38.763435 ], [ -77.426706, 38.763447 ], [ -77.426554, 38.763469 ], [ -77.426387, 38.763507 ], [ -77.426179, 38.763571 ], [ -77.426037, 38.763626 ], [ -77.425869, 38.763706 ], [ -77.425711, 38.763799 ], [ -77.425548, 38.763919 ], [ -77.425427, 38.764024 ], [ -77.425297, 38.764148 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477221", "FULLNAME": "Jan St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430837, 38.758832 ], [ -77.4306, 38.758836 ], [ -77.430432, 38.758819 ], [ -77.430335, 38.758802 ], [ -77.430179, 38.758762 ], [ -77.43003, 38.75871 ], [ -77.429862, 38.758631 ], [ -77.429401, 38.758375 ], [ -77.429032, 38.758184 ], [ -77.428851, 38.758108 ], [ -77.4287, 38.758056 ], [ -77.428605, 38.758028 ], [ -77.428505, 38.758003 ], [ -77.42824, 38.757947 ], [ -77.427558, 38.757789 ], [ -77.426966, 38.757655 ], [ -77.426822, 38.757638 ], [ -77.426676, 38.757636 ], [ -77.426532, 38.757648 ], [ -77.42623, 38.757697 ], [ -77.426195, 38.757703 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103717088865", "FULLNAME": "Mathis Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454562, 38.770155 ], [ -77.454598, 38.770114 ], [ -77.454779, 38.769907 ], [ -77.455013, 38.769635 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477509", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42652, 38.756196 ], [ -77.426101, 38.75594 ], [ -77.425912, 38.755809 ], [ -77.425821, 38.755746 ], [ -77.425798, 38.75571 ], [ -77.425793, 38.75567 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081513591", "FULLNAME": "Birmingham Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427332, 38.753598 ], [ -77.426853, 38.754165 ], [ -77.426696, 38.754339 ], [ -77.426364, 38.754684 ], [ -77.426239, 38.754814 ], [ -77.426087, 38.75494 ], [ -77.425932, 38.755051 ], [ -77.425643, 38.755229 ], [ -77.425497, 38.755349 ], [ -77.42546, 38.755384 ], [ -77.425363, 38.755478 ], [ -77.425291, 38.755559 ], [ -77.425168, 38.755703 ], [ -77.425032, 38.755863 ], [ -77.424849, 38.756069 ], [ -77.424496, 38.756441 ], [ -77.424365, 38.756579 ], [ -77.4243, 38.756666 ], [ -77.424267, 38.756716 ], [ -77.424203, 38.756836 ], [ -77.424151, 38.756952 ], [ -77.424085, 38.757058 ], [ -77.424021, 38.757151 ], [ -77.423766, 38.757512 ], [ -77.423657, 38.757647 ], [ -77.423342, 38.75806 ], [ -77.423147, 38.758326 ], [ -77.422868, 38.758802 ], [ -77.422825, 38.75891 ], [ -77.422799, 38.759023 ], [ -77.422793, 38.759136 ], [ -77.422807, 38.759267 ], [ -77.42284, 38.759395 ], [ -77.422884, 38.759512 ], [ -77.422895, 38.759597 ], [ -77.422888, 38.759682 ], [ -77.422833, 38.759933 ], [ -77.422796, 38.760102 ], [ -77.422701, 38.760482 ], [ -77.422609, 38.760813 ], [ -77.422597, 38.760903 ], [ -77.422585, 38.760997 ], [ -77.422553, 38.761076 ], [ -77.422508, 38.761136 ], [ -77.422404, 38.761234 ], [ -77.42225, 38.761349 ], [ -77.422151, 38.761413 ], [ -77.421949, 38.761534 ], [ -77.42157, 38.761762 ], [ -77.421359, 38.761876 ], [ -77.420682, 38.762242 ], [ -77.420581, 38.762287 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477451", "FULLNAME": "Greenshire Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428539, 38.764024 ], [ -77.428668, 38.764083 ], [ -77.428839, 38.764169 ], [ -77.429024, 38.764278 ], [ -77.42933, 38.764492 ], [ -77.429522, 38.764628 ], [ -77.42966, 38.764704 ], [ -77.429777, 38.764756 ], [ -77.429925, 38.764808 ], [ -77.430057, 38.764841 ], [ -77.430166, 38.764857 ], [ -77.430305, 38.764864 ], [ -77.430456, 38.764856 ], [ -77.4306, 38.764858 ], [ -77.430729, 38.764871 ], [ -77.430824, 38.764894 ], [ -77.430911, 38.764931 ], [ -77.430974, 38.76497 ], [ -77.431013, 38.765006 ], [ -77.431064, 38.765073 ], [ -77.431099, 38.765146 ], [ -77.431116, 38.765245 ], [ -77.431112, 38.765303 ], [ -77.43109, 38.76537 ], [ -77.431052, 38.765432 ], [ -77.430998, 38.765486 ], [ -77.430923, 38.765539 ], [ -77.430855, 38.765572 ], [ -77.430763, 38.765603 ], [ -77.430665, 38.765621 ], [ -77.430474, 38.76563 ], [ -77.430345, 38.765635 ], [ -77.429656, 38.765639 ], [ -77.429386, 38.765648 ], [ -77.42909, 38.765657 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679538423", "FULLNAME": "Black Hawk Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432808, 38.762667 ], [ -77.432872, 38.762862 ], [ -77.432976, 38.763129 ], [ -77.432983, 38.763183 ], [ -77.432972, 38.763236 ], [ -77.432854, 38.763422 ], [ -77.432621, 38.763826 ], [ -77.432576, 38.76387 ], [ -77.432517, 38.763901 ], [ -77.432291, 38.763962 ], [ -77.432225, 38.763966 ], [ -77.432161, 38.763956 ], [ -77.431866, 38.763836 ], [ -77.431833, 38.763808 ], [ -77.431815, 38.763773 ], [ -77.431814, 38.763735 ], [ -77.431962, 38.763361 ], [ -77.432228, 38.762968 ], [ -77.432274, 38.762919 ], [ -77.432454, 38.762783 ], [ -77.432539, 38.762729 ], [ -77.432615, 38.762694 ], [ -77.432703, 38.762673 ], [ -77.432808, 38.762667 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477227", "FULLNAME": "Gary Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429931, 38.767644 ], [ -77.430695, 38.767109 ], [ -77.431207, 38.766744 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477336", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.470098, 38.779525 ], [ -77.47007, 38.779466 ], [ -77.470025, 38.779415 ], [ -77.469966, 38.779373 ], [ -77.469878, 38.779334 ], [ -77.469766, 38.779297 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477277", "FULLNAME": "Owens Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442494, 38.772376 ], [ -77.442357, 38.77228 ], [ -77.441489, 38.771661 ], [ -77.441089, 38.771385 ], [ -77.440946, 38.771307 ], [ -77.44085, 38.771264 ], [ -77.440705, 38.771214 ], [ -77.440554, 38.771177 ], [ -77.440399, 38.771153 ], [ -77.440273, 38.771144 ], [ -77.440132, 38.771146 ], [ -77.439937, 38.771166 ], [ -77.439746, 38.771199 ], [ -77.43956, 38.771246 ], [ -77.439449, 38.771286 ], [ -77.439355, 38.771336 ], [ -77.439295, 38.771375 ], [ -77.439178, 38.771464 ], [ -77.439057, 38.771573 ], [ -77.439012, 38.771619 ], [ -77.438884, 38.771773 ], [ -77.43877, 38.771891 ], [ -77.438645, 38.771983 ], [ -77.438509, 38.772064 ], [ -77.438361, 38.772134 ], [ -77.438109, 38.772225 ], [ -77.437904, 38.772283 ], [ -77.437692, 38.772327 ], [ -77.437477, 38.772357 ], [ -77.437229, 38.772375 ], [ -77.436964, 38.772417 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477400", "FULLNAME": "Woodhue Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449371, 38.770783 ], [ -77.449963, 38.770864 ], [ -77.450768, 38.770941 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477541", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447086, 38.768744 ], [ -77.446888, 38.768954 ], [ -77.446698, 38.769155 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477253", "FULLNAME": "Baker St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.478093, 38.782358 ], [ -77.477799, 38.782891 ], [ -77.477706, 38.783021 ], [ -77.477583, 38.783161 ], [ -77.477366, 38.7834 ], [ -77.476858, 38.78392 ], [ -77.47632, 38.784481 ], [ -77.475915, 38.784899 ], [ -77.475675, 38.785142 ], [ -77.475272, 38.785572 ], [ -77.474925, 38.785923 ], [ -77.474917, 38.78596 ], [ -77.47493, 38.785989 ], [ -77.474951, 38.786008 ], [ -77.475188, 38.78614 ], [ -77.475357, 38.786233 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477292", "FULLNAME": "Alpine St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.47299, 38.783219 ], [ -77.473133, 38.783463 ], [ -77.473241, 38.783683 ], [ -77.473259, 38.78377 ], [ -77.473258, 38.783859 ], [ -77.473238, 38.783947 ], [ -77.473199, 38.784031 ], [ -77.472848, 38.784689 ], [ -77.47277, 38.784875 ], [ -77.472722, 38.785028 ], [ -77.472694, 38.785209 ], [ -77.472641, 38.785824 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477330", "FULLNAME": "Meeker St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471599, 38.785764 ], [ -77.472641, 38.785824 ], [ -77.473692, 38.785886 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477449", "FULLNAME": "Enterprise Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437999, 38.776029 ], [ -77.437913, 38.775921 ], [ -77.437817, 38.775817 ], [ -77.437569, 38.775575 ], [ -77.437385, 38.775416 ], [ -77.437187, 38.775267 ], [ -77.437063, 38.775183 ], [ -77.436653, 38.77493 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679123999", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.445641, 38.765376 ], [ -77.44563, 38.765371 ], [ -77.445464, 38.765299 ], [ -77.444956, 38.765085 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045631564", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444875, 38.770495 ], [ -77.444781, 38.770593 ], [ -77.444586, 38.7708 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679537852", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438867, 38.762093 ], [ -77.438825, 38.762137 ], [ -77.438787, 38.762179 ], [ -77.438751, 38.762216 ], [ -77.438707, 38.762264 ], [ -77.438663, 38.762315 ], [ -77.438636, 38.762355 ], [ -77.438597, 38.762406 ], [ -77.43857, 38.762447 ], [ -77.438541, 38.762488 ], [ -77.438499, 38.762557 ], [ -77.438467, 38.762601 ], [ -77.438437, 38.762645 ], [ -77.438406, 38.76269 ], [ -77.438378, 38.762734 ], [ -77.438355, 38.762779 ], [ -77.438341, 38.762824 ], [ -77.438344, 38.762873 ], [ -77.438373, 38.762923 ], [ -77.438426, 38.762967 ], [ -77.438491, 38.763007 ], [ -77.438601, 38.763059 ], [ -77.438691, 38.763101 ], [ -77.438756, 38.763135 ], [ -77.438865, 38.763188 ], [ -77.438925, 38.763211 ], [ -77.439013, 38.76322 ], [ -77.439061, 38.763195 ], [ -77.439106, 38.763156 ], [ -77.439143, 38.76311 ], [ -77.43918, 38.763065 ], [ -77.439213, 38.763022 ], [ -77.439274, 38.762944 ], [ -77.439305, 38.762905 ], [ -77.439337, 38.762858 ], [ -77.439566, 38.762568 ], [ -77.439601, 38.762425 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477315", "FULLNAME": "Joshua Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425848, 38.767432 ], [ -77.425914, 38.767645 ], [ -77.426033, 38.767976 ], [ -77.426128, 38.768175 ], [ -77.426225, 38.768335 ], [ -77.426291, 38.768425 ], [ -77.426358, 38.768486 ], [ -77.426435, 38.768535 ], [ -77.426455, 38.768544 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477369", "FULLNAME": "Cynthia St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42765, 38.767308 ], [ -77.427269, 38.76727 ], [ -77.427057, 38.767256 ], [ -77.426901, 38.767255 ], [ -77.426846, 38.767258 ], [ -77.426668, 38.767273 ], [ -77.426515, 38.767297 ], [ -77.426015, 38.767403 ], [ -77.425848, 38.767432 ], [ -77.425512, 38.767487 ], [ -77.425271, 38.767497 ], [ -77.425051, 38.767492 ], [ -77.424834, 38.767465 ], [ -77.424595, 38.767421 ], [ -77.42441, 38.767375 ], [ -77.424309, 38.767342 ], [ -77.424116, 38.767269 ], [ -77.423956, 38.767197 ], [ -77.423616, 38.767007 ], [ -77.423139, 38.766732 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477422", "FULLNAME": "Primrose Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434083, 38.763984 ], [ -77.433823, 38.764192 ], [ -77.433652, 38.764466 ], [ -77.433543, 38.764466 ], [ -77.433446, 38.764483 ], [ -77.433351, 38.764515 ], [ -77.433265, 38.764561 ], [ -77.433193, 38.764619 ], [ -77.433144, 38.764692 ], [ -77.433115, 38.764772 ], [ -77.433106, 38.764853 ], [ -77.433124, 38.765012 ], [ -77.433139, 38.765041 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536132", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431974, 38.761892 ], [ -77.431848, 38.761862 ], [ -77.431612, 38.761818 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477513", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435683, 38.763097 ], [ -77.435626, 38.763214 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861017", "FULLNAME": "Sandra Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437216, 38.763154 ], [ -77.436436, 38.762899 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861195", "FULLNAME": "Isabel Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437664, 38.75945 ], [ -77.437261, 38.760201 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477325", "FULLNAME": "Martin Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465827, 38.780285 ], [ -77.465789, 38.780289 ], [ -77.465556, 38.780295 ], [ -77.465362, 38.780285 ], [ -77.465214, 38.78026 ], [ -77.465128, 38.780238 ], [ -77.465016, 38.780202 ], [ -77.464883, 38.780145 ], [ -77.464215, 38.779788 ], [ -77.463571, 38.779416 ], [ -77.462344, 38.778764 ], [ -77.46225, 38.778733 ], [ -77.462151, 38.778717 ], [ -77.46205, 38.778716 ], [ -77.461982, 38.77873 ], [ -77.461895, 38.778756 ], [ -77.461792, 38.7788 ], [ -77.461191, 38.779166 ], [ -77.461024, 38.77927 ], [ -77.4609, 38.779365 ], [ -77.46079, 38.779471 ], [ -77.460698, 38.77958 ], [ -77.460609, 38.779719 ], [ -77.460563, 38.779816 ], [ -77.460525, 38.779954 ], [ -77.460505, 38.780095 ], [ -77.460466, 38.780507 ], [ -77.460455, 38.780627 ], [ -77.460362, 38.781308 ], [ -77.460331, 38.781648 ], [ -77.460309, 38.782113 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477375", "FULLNAME": "Forrest St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.45922, 38.773651 ], [ -77.459429, 38.773675 ], [ -77.459594, 38.773705 ], [ -77.460013, 38.773798 ], [ -77.46013, 38.773843 ], [ -77.460238, 38.773899 ], [ -77.460317, 38.773954 ], [ -77.460404, 38.774037 ], [ -77.460475, 38.774129 ], [ -77.460499, 38.774167 ], [ -77.460584, 38.774353 ], [ -77.460997, 38.775308 ], [ -77.461554, 38.776632 ], [ -77.461615, 38.776818 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477236", "FULLNAME": "Luke Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424531, 38.757467 ], [ -77.424783, 38.757577 ], [ -77.424987, 38.7577 ], [ -77.425152, 38.757853 ], [ -77.425216, 38.758035 ], [ -77.42525, 38.758219 ], [ -77.425234, 38.758311 ], [ -77.425196, 38.758379 ], [ -77.425071, 38.758441 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477542", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.472593, 38.781675 ], [ -77.471113, 38.781755 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477279", "FULLNAME": "Payne Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428507, 38.76731 ], [ -77.428547, 38.76701 ], [ -77.428596, 38.766563 ], [ -77.428611, 38.766414 ], [ -77.428603, 38.766331 ], [ -77.428577, 38.76625 ], [ -77.428554, 38.766204 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103947052953", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440417, 38.760036 ], [ -77.440187, 38.759908 ], [ -77.440129, 38.759876 ], [ -77.438736, 38.759103 ], [ -77.438499, 38.758971 ], [ -77.438266, 38.758842 ], [ -77.438174, 38.758791 ], [ -77.438125, 38.758729 ], [ -77.438052, 38.758662 ], [ -77.437522, 38.758346 ], [ -77.437284, 38.758221 ], [ -77.436986, 38.758088 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477446", "FULLNAME": "Cartwright Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.44967, 38.769636 ], [ -77.450448, 38.770066 ], [ -77.450782, 38.770246 ], [ -77.450831, 38.770261 ], [ -77.45105, 38.770264 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477552", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448896, 38.769299 ], [ -77.449117, 38.769409 ], [ -77.449149, 38.76941 ], [ -77.449172, 38.7694 ], [ -77.449252, 38.769309 ], [ -77.449251, 38.76929 ], [ -77.449235, 38.769276 ], [ -77.448961, 38.769127 ], [ -77.448926, 38.769124 ], [ -77.448894, 38.769135 ], [ -77.448863, 38.769163 ], [ -77.448847, 38.7692 ], [ -77.448849, 38.769239 ], [ -77.448863, 38.769269 ], [ -77.448896, 38.769299 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106092774118", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452262, 38.773445 ], [ -77.4521, 38.773417 ], [ -77.451845, 38.7734 ], [ -77.451762, 38.773401 ], [ -77.451724, 38.773406 ], [ -77.451637, 38.773407 ], [ -77.451324, 38.773444 ], [ -77.451193, 38.77348 ], [ -77.450863, 38.773634 ], [ -77.450804, 38.773655 ], [ -77.450687, 38.773675 ], [ -77.45055, 38.773686 ], [ -77.450266, 38.773705 ], [ -77.449952, 38.77365 ], [ -77.4499, 38.773626 ], [ -77.449342, 38.773371 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678302281", "FULLNAME": "Walker Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436239, 38.766071 ], [ -77.435998, 38.766123 ], [ -77.435832, 38.766261 ], [ -77.435668, 38.766183 ], [ -77.435558, 38.766047 ], [ -77.435388, 38.765846 ], [ -77.435434, 38.765719 ], [ -77.435487, 38.765676 ], [ -77.435699, 38.765611 ], [ -77.435843, 38.765534 ], [ -77.435888, 38.765481 ], [ -77.436026, 38.765318 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477340", "FULLNAME": "Pierce St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463824, 38.784982 ], [ -77.464066, 38.785257 ], [ -77.464423, 38.785682 ], [ -77.464929, 38.786267 ], [ -77.465187, 38.786577 ], [ -77.465612, 38.78706 ], [ -77.465659, 38.787098 ], [ -77.465714, 38.787129 ], [ -77.465761, 38.78715 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477409", "FULLNAME": "Industry Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440025, 38.775951 ], [ -77.439513, 38.775867 ], [ -77.439433, 38.77585 ], [ -77.43923, 38.775818 ], [ -77.439024, 38.7758 ], [ -77.438817, 38.775797 ], [ -77.438652, 38.775805 ], [ -77.438557, 38.775821 ], [ -77.438431, 38.775849 ], [ -77.43828, 38.775896 ], [ -77.438136, 38.775956 ], [ -77.437999, 38.776029 ], [ -77.437898, 38.776097 ], [ -77.437767, 38.776209 ], [ -77.437696, 38.77628 ], [ -77.437531, 38.776504 ], [ -77.437235, 38.776969 ], [ -77.437176, 38.777054 ], [ -77.437, 38.777285 ], [ -77.436818, 38.777491 ], [ -77.436622, 38.777686 ], [ -77.436413, 38.777872 ], [ -77.436325, 38.777943 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106087402596", "FULLNAME": "Blooms Quarry Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449342, 38.773371 ], [ -77.448149, 38.772854 ], [ -77.447605, 38.772596 ], [ -77.447595, 38.772589 ], [ -77.447306, 38.772374 ], [ -77.447053, 38.772181 ], [ -77.446793, 38.771992 ], [ -77.446049, 38.771417 ], [ -77.445275, 38.770795 ], [ -77.44504, 38.770607 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1105045621397", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1750" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426425, 38.76296 ], [ -77.426192, 38.76279 ], [ -77.426047, 38.762675 ], [ -77.425787, 38.762506 ], [ -77.425479, 38.762346 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477495", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449646, 38.768411 ], [ -77.44997, 38.768377 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106092771930", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440031, 38.762656 ], [ -77.439933, 38.76266 ], [ -77.439898, 38.76251 ], [ -77.439784, 38.762428 ], [ -77.439601, 38.762425 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477398", "FULLNAME": "Venture Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439449, 38.771286 ], [ -77.439071, 38.770792 ], [ -77.438874, 38.77056 ], [ -77.438629, 38.7703 ], [ -77.438569, 38.770229 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477516", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.43152, 38.768474 ], [ -77.431714, 38.767778 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477266", "FULLNAME": "Kevin Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427247, 38.755896 ], [ -77.427169, 38.755832 ], [ -77.427133, 38.75578 ], [ -77.427056, 38.755462 ], [ -77.427052, 38.755356 ], [ -77.427061, 38.755272 ], [ -77.427087, 38.755172 ], [ -77.427122, 38.755087 ], [ -77.427185, 38.754993 ], [ -77.427281, 38.754891 ], [ -77.427357, 38.754831 ], [ -77.427492, 38.754744 ], [ -77.427561, 38.754675 ], [ -77.427595, 38.75463 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106087387886", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.42775, 38.765373 ], [ -77.427705, 38.765583 ], [ -77.427678, 38.765795 ], [ -77.42767, 38.766008 ], [ -77.4277, 38.7666 ], [ -77.427698, 38.766804 ], [ -77.427688, 38.766956 ], [ -77.42765, 38.767308 ], [ -77.427592, 38.767852 ], [ -77.427496, 38.76868 ], [ -77.427503, 38.768824 ], [ -77.427522, 38.768928 ], [ -77.427561, 38.769057 ], [ -77.427581, 38.769107 ], [ -77.427645, 38.769237 ], [ -77.427725, 38.76936 ], [ -77.427822, 38.769475 ], [ -77.427933, 38.769582 ], [ -77.428068, 38.769691 ], [ -77.428191, 38.76977 ], [ -77.428296, 38.769825 ], [ -77.428437, 38.769883 ], [ -77.428554, 38.769921 ], [ -77.428703, 38.769955 ], [ -77.428815, 38.76997 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "110410477385", "FULLNAME": "Katelyn Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425314, 38.769508 ], [ -77.424957, 38.769383 ], [ -77.424572, 38.769234 ], [ -77.424451, 38.769175 ], [ -77.424289, 38.769081 ], [ -77.424166, 38.768987 ], [ -77.424077, 38.768906 ], [ -77.423997, 38.768819 ], [ -77.423909, 38.7687 ], [ -77.423837, 38.768575 ], [ -77.423746, 38.76835 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103678610025", "FULLNAME": "Wigfall Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434888, 38.767014 ], [ -77.434616, 38.766919 ], [ -77.434518, 38.766895 ], [ -77.434481, 38.766912 ], [ -77.434442, 38.766976 ], [ -77.434218, 38.767461 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103679536130", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430993, 38.763225 ], [ -77.430671, 38.763074 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1103677851287", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430671, 38.763074 ], [ -77.430426, 38.762958 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081863072", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437051, 38.763476 ], [ -77.436952, 38.763666 ], [ -77.436789, 38.764096 ], [ -77.436698, 38.764286 ], [ -77.436644, 38.76436 ], [ -77.436616, 38.764402 ], [ -77.436336, 38.764747 ], [ -77.435828, 38.764536 ], [ -77.435734, 38.764514 ], [ -77.435639, 38.764544 ], [ -77.435416, 38.764819 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861019", "FULLNAME": null, "RTTYP": null, "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436644, 38.76436 ], [ -77.435846, 38.764118 ] ] } }, +{ "type": "Feature", "properties": { "LINEARID": "1106081861175", "FULLNAME": "Alexander Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436572, 38.760015 ], [ -77.436614, 38.759838 ], [ -77.436604, 38.759647 ], [ -77.436567, 38.759223 ] ] } } +] +} diff --git a/tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json b/tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json new file mode 100644 index 000000000..067d0cfca --- /dev/null +++ b/tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json @@ -0,0 +1,529 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-77.478795,38.753598,-77.420581,38.788391", +"center": "-77.431641,38.754050,11", +"description": "tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json.check.mbtiles -Z11 -z11 --no-simplification-of-shared-nodes tests/tl_2018_51685_roads/in.json", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 11, \"maxzoom\": 11, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 256,\"geometry\": \"LineString\",\"attributeCount\": 4,\"attributes\": [{\"attribute\": \"FULLNAME\",\"count\": 166,\"type\": \"string\",\"values\": [\"Adams St\",\"Alexa Ct\",\"Alexander Way\",\"Alpine St\",\"Andrew Dr\",\"Anna Ct\",\"Arnie Ct\",\"Baker St\",\"Bank St\",\"Battalion Way\",\"Becky Ct\",\"Belo Gate Dr\",\"Birmingham Dr\",\"Black Hawk Ct\",\"Blooms Quarry Ln\",\"Blooms Quarry Rd\",\"Bradley Ct\",\"Brandon St\",\"Brian Ct\",\"Burnside Ct\",\"Cabbel Dr\",\"Cartwright Ct\",\"Centreville Rd\",\"Christopher Ln\",\"Colburn Dr\",\"Colfax Ct\",\"Colfax Dr\",\"Conner Dr\",\"Corbett Cir\",\"Corbett Pl\",\"Cougar Ct\",\"Courtney Dr\",\"Creek View Ter\",\"Crozet St\",\"Cynthia St\",\"Deborah Ct\",\"Denver Dr\",\"Digital Dr\",\"Drake Ct\",\"E Carondelet Dr\",\"Eagle Ct\",\"Elise Ct\",\"Elizabeth Ct\",\"Elm Ct\",\"Elzey Pl\",\"Englewood Ct\",\"Enterprise Ct\",\"Euclid Ave\",\"Euclid Ct\",\"Evans St\",\"Fairway Ct\",\"Forrest St\",\"Franklin Way\",\"Gary Ct\",\"General Way\",\"Golf Ct\",\"Greenshire Dr\",\"Hamilton Ct\",\"Handerson Pl\",\"Hardees Dr\",\"Heather Ct\",\"Hedgeford St\",\"Holden Dr\",\"Holmes Pl\",\"Industry Dr\",\"Inyo Pl\",\"Isabel Ln\",\"Jack Dr\",\"Jan St\",\"Jenkins Ct\",\"Jenna Ct\",\"Jessica Ct\",\"Jessica Dr\",\"Joshua Ct\",\"Karen Ct\",\"Katelyn Ct\",\"Kent Dr\",\"Kevin Ct\",\"Kirby St\",\"Kristy Dr\",\"Lambert Dr\",\"Lanae Ln\",\"Lapaz Ct\",\"Laurie Ct\",\"Liberty St\",\"Lindsey Ln\",\"Locust Ter\",\"Luke Dr\",\"Luxor St\",\"Mace St\",\"Madera Ct\",\"Manassas Dr\",\"Maria Way\",\"Market St\",\"Martin Ct\",\"Martin Dr\",\"Mathis Ave\",\"Matthew Dr\",\"Meeker Ct\",\"Meeker St\"]},{\"attribute\": \"LINEARID\",\"count\": 256,\"type\": \"string\",\"values\": [\"1101168884340\",\"1102214409896\",\"1102214411210\",\"1102855552280\",\"1103677851221\",\"1103677851287\",\"1103677851474\",\"1103677851555\",\"1103677851594\",\"1103677851647\",\"1103678290915\",\"1103678292796\",\"1103678293384\",\"1103678293757\",\"1103678302281\",\"1103678302380\",\"1103678302491\",\"1103678302854\",\"1103678302955\",\"1103678303567\",\"1103678306484\",\"1103678606039\",\"1103678606081\",\"1103678606144\",\"1103678610025\",\"1103678610426\",\"1103679090051\",\"1103679094720\",\"1103679106335\",\"1103679123999\",\"1103679536091\",\"1103679536111\",\"1103679536124\",\"1103679536129\",\"1103679536130\",\"1103679536131\",\"1103679536132\",\"1103679536161\",\"1103679536473\",\"1103679536474\",\"1103679536475\",\"1103679536539\",\"1103679536540\",\"1103679536656\",\"1103679536679\",\"1103679536695\",\"1103679537849\",\"1103679537852\",\"1103679537853\",\"1103679538189\",\"1103679538309\",\"1103679538402\",\"1103679538404\",\"1103679538422\",\"1103679538423\",\"1103691411843\",\"1103717088865\",\"1103717088866\",\"1103947052953\",\"1103947052954\",\"110410477217\",\"110410477221\",\"110410477224\",\"110410477227\",\"110410477229\",\"110410477231\",\"110410477232\",\"110410477234\",\"110410477235\",\"110410477236\",\"110410477238\",\"110410477239\",\"110410477240\",\"110410477241\",\"110410477244\",\"110410477245\",\"110410477247\",\"110410477249\",\"110410477250\",\"110410477252\",\"110410477253\",\"110410477254\",\"110410477256\",\"110410477257\",\"110410477258\",\"110410477260\",\"110410477261\",\"110410477263\",\"110410477265\",\"110410477266\",\"110410477270\",\"110410477271\",\"110410477273\",\"110410477274\",\"110410477275\",\"110410477277\",\"110410477278\",\"110410477279\",\"110410477280\",\"110410477284\"]},{\"attribute\": \"MTFCC\",\"count\": 7,\"type\": \"string\",\"values\": [\"S1200\",\"S1400\",\"S1500\",\"S1640\",\"S1740\",\"S1750\",\"S1780\"]},{\"attribute\": \"RTTYP\",\"count\": 2,\"type\": \"string\",\"values\": [\"M\",\"S\"]}]}]}}", +"maxzoom": "11", +"minzoom": "11", +"name": "tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 583, "y": 784 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "110410477253", "FULLNAME": "Baker St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.478118, 38.782391 ], [ -77.477603, 38.783194 ], [ -77.476358, 38.784498 ], [ -77.474942, 38.785937 ], [ -77.474985, 38.786037 ], [ -77.475371, 38.786238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477381", "FULLNAME": "Jenkins Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.476358, 38.784498 ], [ -77.475843, 38.784197 ], [ -77.475672, 38.784197 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477238", "FULLNAME": "Mace St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.478290, 38.781989 ], [ -77.478118, 38.782391 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477394", "FULLNAME": "Sheldon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.475886, 38.782792 ], [ -77.476616, 38.782792 ], [ -77.477474, 38.783093 ], [ -77.477603, 38.783194 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477239", "FULLNAME": "Mace St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.476058, 38.781287 ], [ -77.475886, 38.781655 ], [ -77.475758, 38.782090 ], [ -77.475886, 38.782792 ], [ -77.476015, 38.783394 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477234", "FULLNAME": "Kent Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.473783, 38.782023 ], [ -77.473869, 38.782056 ], [ -77.474298, 38.782759 ], [ -77.474599, 38.783294 ], [ -77.474599, 38.783562 ], [ -77.473783, 38.785167 ], [ -77.473698, 38.785903 ], [ -77.473612, 38.786506 ], [ -77.473311, 38.786807 ], [ -77.472839, 38.787576 ], [ -77.472839, 38.787609 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477292", "FULLNAME": "Alpine St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.473011, 38.783227 ], [ -77.473269, 38.783696 ], [ -77.473269, 38.783963 ], [ -77.472796, 38.784900 ], [ -77.472668, 38.785836 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477330", "FULLNAME": "Meeker St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471638, 38.785770 ], [ -77.472668, 38.785836 ], [ -77.473698, 38.785903 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477300", "FULLNAME": "Colfax Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471294, 38.782993 ], [ -77.471638, 38.783461 ], [ -77.471724, 38.783696 ], [ -77.471766, 38.784298 ], [ -77.471638, 38.785770 ], [ -77.471552, 38.786372 ], [ -77.471595, 38.786539 ], [ -77.471895, 38.786873 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477328", "FULLNAME": "Meeker Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.470737, 38.784699 ], [ -77.470565, 38.785067 ], [ -77.470565, 38.785234 ], [ -77.470694, 38.785469 ], [ -77.471123, 38.785736 ], [ -77.471638, 38.785770 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477361", "FULLNAME": "Travis St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471724, 38.783696 ], [ -77.473011, 38.783227 ], [ -77.474298, 38.782759 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477527", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.473783, 38.782023 ], [ -77.473183, 38.781019 ], [ -77.472839, 38.780785 ], [ -77.472196, 38.780551 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477299", "FULLNAME": "Colfax Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.471294, 38.782993 ], [ -77.470951, 38.782592 ], [ -77.470779, 38.782525 ], [ -77.470436, 38.782525 ], [ -77.469792, 38.782926 ], [ -77.469234, 38.783127 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477542", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.472625, 38.781688 ], [ -77.471123, 38.781755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477257", "FULLNAME": "Drake Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469749, 38.786405 ], [ -77.468934, 38.786673 ], [ -77.468204, 38.786740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536695", "FULLNAME": "Denver Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469621, 38.784063 ], [ -77.469578, 38.784532 ], [ -77.468805, 38.785268 ], [ -77.468333, 38.785703 ], [ -77.467475, 38.786204 ], [ -77.466574, 38.786673 ], [ -77.466059, 38.786940 ], [ -77.465801, 38.787175 ], [ -77.465630, 38.787342 ], [ -77.465544, 38.787476 ], [ -77.465458, 38.787910 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538309", "FULLNAME": "Rugby Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458549, 38.787409 ], [ -77.459750, 38.787509 ], [ -77.465458, 38.787910 ], [ -77.470050, 38.788212 ], [ -77.473011, 38.788412 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477314", "FULLNAME": "Holden Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460737, 38.786639 ], [ -77.460823, 38.786773 ], [ -77.461209, 38.787007 ], [ -77.461510, 38.787074 ], [ -77.462583, 38.787141 ], [ -77.464042, 38.787241 ], [ -77.465630, 38.787342 ], [ -77.470136, 38.787643 ], [ -77.470522, 38.787676 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477363", "FULLNAME": "Walden St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465630, 38.784063 ], [ -77.467475, 38.786204 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477340", "FULLNAME": "Pierce St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463827, 38.785000 ], [ -77.465200, 38.786606 ], [ -77.465630, 38.787074 ], [ -77.465801, 38.787175 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477396", "FULLNAME": "Tremont St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466574, 38.786673 ], [ -77.464728, 38.784532 ], [ -77.464299, 38.784030 ], [ -77.464299, 38.783963 ], [ -77.464428, 38.783796 ], [ -77.464643, 38.783696 ], [ -77.464900, 38.783662 ], [ -77.465158, 38.783495 ], [ -77.465715, 38.782926 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536679", "FULLNAME": "Lambert Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460480, 38.780517 ], [ -77.461123, 38.780618 ], [ -77.461767, 38.780919 ], [ -77.463269, 38.781755 ], [ -77.464128, 38.782023 ], [ -77.465715, 38.782926 ], [ -77.466187, 38.783194 ], [ -77.466531, 38.783595 ], [ -77.467132, 38.784197 ], [ -77.468805, 38.785268 ], [ -77.469277, 38.785669 ], [ -77.469749, 38.786405 ], [ -77.470136, 38.787141 ], [ -77.470136, 38.787643 ], [ -77.470050, 38.788212 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477235", "FULLNAME": "Kent Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.467647, 38.782792 ], [ -77.468462, 38.782525 ], [ -77.469792, 38.781889 ], [ -77.471123, 38.781755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477337", "FULLNAME": "Moseby Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466917, 38.782123 ], [ -77.467089, 38.782023 ], [ -77.467561, 38.781956 ], [ -77.468162, 38.781755 ], [ -77.468762, 38.781287 ], [ -77.469363, 38.780551 ], [ -77.470007, 38.779648 ], [ -77.470136, 38.779547 ], [ -77.470436, 38.779012 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477331", "FULLNAME": "Morton Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.467132, 38.781086 ], [ -77.467518, 38.780919 ], [ -77.467818, 38.780417 ], [ -77.468376, 38.779982 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477323", "FULLNAME": "Martin Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466917, 38.780216 ], [ -77.465844, 38.780317 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477406", "FULLNAME": "Courtney Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465758, 38.779313 ], [ -77.465844, 38.780317 ], [ -77.466230, 38.781922 ], [ -77.466187, 38.782290 ], [ -77.466016, 38.782592 ], [ -77.465715, 38.782926 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477336", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.470136, 38.779547 ], [ -77.470007, 38.779380 ], [ -77.469792, 38.779313 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477335", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469792, 38.779313 ], [ -77.469878, 38.778978 ], [ -77.469578, 38.778845 ], [ -77.469492, 38.778711 ], [ -77.469149, 38.778510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477334", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1500" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.469792, 38.779313 ], [ -77.469063, 38.778912 ], [ -77.468591, 38.778309 ], [ -77.468591, 38.778075 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477332", "FULLNAME": "Moseby Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.468591, 38.778075 ], [ -77.468677, 38.777975 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102855552280", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452497, 38.771718 ], [ -77.452669, 38.771752 ], [ -77.454042, 38.771986 ], [ -77.454729, 38.772086 ], [ -77.455416, 38.772287 ], [ -77.456102, 38.772655 ], [ -77.458892, 38.774194 ], [ -77.459364, 38.774562 ], [ -77.459750, 38.775399 ], [ -77.460394, 38.777005 ], [ -77.460651, 38.778042 ], [ -77.460823, 38.778610 ], [ -77.461209, 38.779179 ], [ -77.461596, 38.779514 ], [ -77.465844, 38.781822 ], [ -77.466230, 38.781922 ], [ -77.466917, 38.782123 ], [ -77.467303, 38.782357 ], [ -77.467647, 38.782792 ], [ -77.467947, 38.783328 ], [ -77.468162, 38.783528 ], [ -77.469234, 38.784030 ], [ -77.469621, 38.784063 ], [ -77.470136, 38.783963 ], [ -77.470479, 38.783729 ], [ -77.471294, 38.782993 ], [ -77.473783, 38.782023 ], [ -77.474985, 38.781621 ], [ -77.475500, 38.781588 ], [ -77.475886, 38.781655 ], [ -77.478118, 38.782391 ], [ -77.478805, 38.782592 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045621656", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464943, 38.776436 ], [ -77.465286, 38.776402 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045621658", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464643, 38.776570 ], [ -77.464943, 38.776436 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477273", "FULLNAME": "Luxor St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.462969, 38.785469 ], [ -77.463999, 38.786706 ], [ -77.464085, 38.787074 ], [ -77.464042, 38.787241 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536161", "FULLNAME": "Colburn Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.466531, 38.783595 ], [ -77.465630, 38.784063 ], [ -77.464728, 38.784532 ], [ -77.463827, 38.785000 ], [ -77.462969, 38.785469 ], [ -77.462068, 38.785937 ], [ -77.460737, 38.786639 ], [ -77.459879, 38.787141 ], [ -77.459793, 38.787241 ], [ -77.459750, 38.787509 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477249", "FULLNAME": "Adams St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461467, 38.782960 ], [ -77.461252, 38.783261 ], [ -77.461252, 38.783394 ], [ -77.461467, 38.783729 ], [ -77.461295, 38.784164 ], [ -77.461166, 38.784465 ], [ -77.461166, 38.784766 ], [ -77.461252, 38.784967 ], [ -77.462068, 38.785937 ], [ -77.462497, 38.786439 ], [ -77.462626, 38.786873 ], [ -77.462583, 38.787141 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477240", "FULLNAME": "Park Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461252, 38.784967 ], [ -77.460480, 38.785368 ], [ -77.460179, 38.785469 ], [ -77.459192, 38.785602 ], [ -77.458763, 38.785602 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477325", "FULLNAME": "Martin Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.465844, 38.780317 ], [ -77.465372, 38.780317 ], [ -77.465029, 38.780216 ], [ -77.463613, 38.779447 ], [ -77.462282, 38.778744 ], [ -77.462025, 38.778744 ], [ -77.461810, 38.778811 ], [ -77.461209, 38.779179 ], [ -77.460909, 38.779380 ], [ -77.460566, 38.779848 ], [ -77.460480, 38.780517 ], [ -77.460351, 38.782123 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477245", "FULLNAME": "Yost Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.460651, 38.782056 ], [ -77.460823, 38.782290 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477358", "FULLNAME": "Spruce St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461295, 38.784164 ], [ -77.460780, 38.784063 ], [ -77.460008, 38.784030 ], [ -77.458978, 38.783762 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477341", "FULLNAME": "Runyon Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459021, 38.783261 ], [ -77.460651, 38.783394 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477490", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459106, 38.782290 ], [ -77.460394, 38.782558 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477247", "FULLNAME": "Yost St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.461767, 38.780919 ], [ -77.460823, 38.781989 ], [ -77.460651, 38.782056 ], [ -77.460351, 38.782123 ], [ -77.460051, 38.782123 ], [ -77.459149, 38.781889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538189", "FULLNAME": "Old Centreville Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458549, 38.787409 ], [ -77.458763, 38.785602 ], [ -77.458978, 38.783762 ], [ -77.459021, 38.783261 ], [ -77.459106, 38.782290 ], [ -77.459149, 38.781889 ], [ -77.459536, 38.778410 ], [ -77.459450, 38.778242 ], [ -77.459321, 38.778109 ], [ -77.454772, 38.775566 ], [ -77.453141, 38.774596 ], [ -77.452669, 38.774094 ], [ -77.452540, 38.773592 ], [ -77.452455, 38.773492 ], [ -77.452283, 38.773458 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477517", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463613, 38.779447 ], [ -77.463870, 38.779112 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477244", "FULLNAME": "Polk Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459450, 38.778242 ], [ -77.460651, 38.778042 ], [ -77.462540, 38.777808 ], [ -77.462840, 38.777874 ], [ -77.463269, 38.778075 ], [ -77.465115, 38.779112 ], [ -77.465758, 38.779313 ], [ -77.466488, 38.779280 ], [ -77.467346, 38.778912 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477298", "FULLNAME": "Cabbel Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454772, 38.775566 ], [ -77.455330, 38.774964 ], [ -77.455716, 38.774863 ], [ -77.459536, 38.777005 ], [ -77.460008, 38.777071 ], [ -77.460394, 38.777005 ], [ -77.461638, 38.776837 ], [ -77.462111, 38.776770 ], [ -77.462754, 38.776804 ], [ -77.463698, 38.777138 ], [ -77.463956, 38.777306 ], [ -77.465715, 38.778242 ], [ -77.466917, 38.778544 ], [ -77.467175, 38.778677 ], [ -77.467346, 38.778912 ], [ -77.467775, 38.779447 ], [ -77.468376, 38.779982 ], [ -77.469363, 38.780551 ], [ -77.470737, 38.781186 ], [ -77.471037, 38.781488 ], [ -77.471123, 38.781755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045621660", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.463269, 38.778075 ], [ -77.463956, 38.777306 ], [ -77.464385, 38.776904 ], [ -77.464643, 38.776570 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045621608", "FULLNAME": "Kirby St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.464943, 38.776436 ], [ -77.464986, 38.776402 ], [ -77.464900, 38.776202 ], [ -77.463226, 38.775332 ], [ -77.463140, 38.775332 ], [ -77.463784, 38.776034 ], [ -77.464471, 38.776402 ], [ -77.464643, 38.776570 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477375", "FULLNAME": "Forrest St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459235, 38.773659 ], [ -77.460051, 38.773826 ], [ -77.460351, 38.773960 ], [ -77.460437, 38.774060 ], [ -77.461038, 38.775332 ], [ -77.461638, 38.776837 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477515", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.459192, 38.772622 ], [ -77.459235, 38.772655 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477280", "FULLNAME": "Price Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.458892, 38.774194 ], [ -77.459235, 38.773659 ], [ -77.459278, 38.773023 ], [ -77.459235, 38.772655 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477261", "FULLNAME": "Evans St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.456102, 38.772655 ], [ -77.455888, 38.772889 ], [ -77.455759, 38.773291 ], [ -77.455888, 38.773592 ], [ -77.456102, 38.773860 ], [ -77.456489, 38.774060 ], [ -77.458978, 38.775432 ], [ -77.459364, 38.775466 ], [ -77.459750, 38.775399 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477284", "FULLNAME": "Scott Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.455330, 38.774964 ], [ -77.455158, 38.774830 ], [ -77.454600, 38.774094 ], [ -77.454429, 38.773625 ], [ -77.454429, 38.773358 ], [ -77.454729, 38.772086 ], [ -77.454901, 38.771384 ], [ -77.455115, 38.771250 ], [ -77.455373, 38.771216 ], [ -77.455587, 38.771283 ], [ -77.458591, 38.772923 ], [ -77.458849, 38.773023 ], [ -77.459278, 38.773023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477307", "FULLNAME": "Crozet St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.455716, 38.774863 ], [ -77.456489, 38.774060 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103717088866", "FULLNAME": "Mathis Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454042, 38.771986 ], [ -77.454300, 38.770781 ], [ -77.454472, 38.770313 ], [ -77.454600, 38.770179 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103717088865", "FULLNAME": "Mathis Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454600, 38.770179 ], [ -77.455029, 38.769644 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102214409896", "FULLNAME": "Centreville Rd", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452283, 38.773458 ], [ -77.452326, 38.773257 ], [ -77.452540, 38.772421 ], [ -77.452669, 38.771752 ], [ -77.452884, 38.770882 ], [ -77.452970, 38.770614 ], [ -77.453012, 38.770413 ], [ -77.453098, 38.770146 ], [ -77.453227, 38.769878 ], [ -77.453399, 38.769577 ], [ -77.453527, 38.769376 ], [ -77.453742, 38.769108 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102214411210", "FULLNAME": "State Rte 28", "RTTYP": "S", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452283, 38.773458 ], [ -77.452326, 38.773257 ], [ -77.452540, 38.772421 ], [ -77.452669, 38.771752 ], [ -77.452884, 38.770882 ], [ -77.452970, 38.770614 ], [ -77.453012, 38.770413 ], [ -77.453098, 38.770146 ], [ -77.453227, 38.769878 ], [ -77.453399, 38.769577 ], [ -77.453527, 38.769376 ], [ -77.453742, 38.769108 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477217", "FULLNAME": "State Rte 28", "RTTYP": "S", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452111, 38.773425 ], [ -77.452326, 38.772622 ], [ -77.452369, 38.772387 ], [ -77.452455, 38.771886 ], [ -77.452497, 38.771718 ], [ -77.452626, 38.771350 ], [ -77.452755, 38.770714 ], [ -77.452798, 38.770514 ], [ -77.452927, 38.770246 ], [ -77.453012, 38.770012 ], [ -77.453098, 38.769845 ], [ -77.453270, 38.769510 ], [ -77.453399, 38.769376 ], [ -77.453613, 38.769042 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477454", "FULLNAME": "Centreville Rd", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452111, 38.773425 ], [ -77.452326, 38.772622 ], [ -77.452369, 38.772387 ], [ -77.452455, 38.771886 ], [ -77.452497, 38.771718 ], [ -77.452626, 38.771350 ], [ -77.452755, 38.770714 ], [ -77.452798, 38.770514 ], [ -77.452927, 38.770246 ], [ -77.453012, 38.770012 ], [ -77.453098, 38.769845 ], [ -77.453270, 38.769510 ], [ -77.453399, 38.769376 ], [ -77.453613, 38.769042 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106092774118", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452283, 38.773458 ], [ -77.452111, 38.773425 ], [ -77.451854, 38.773425 ], [ -77.451768, 38.773425 ], [ -77.451725, 38.773425 ], [ -77.451639, 38.773425 ], [ -77.451339, 38.773458 ], [ -77.451210, 38.773492 ], [ -77.450867, 38.773659 ], [ -77.450824, 38.773659 ], [ -77.450695, 38.773692 ], [ -77.450566, 38.773692 ], [ -77.450309, 38.773726 ], [ -77.449965, 38.773659 ], [ -77.449923, 38.773659 ], [ -77.449365, 38.773391 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477551", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.450609, 38.772287 ], [ -77.450824, 38.772421 ], [ -77.450953, 38.772321 ], [ -77.450953, 38.772254 ], [ -77.450738, 38.772187 ], [ -77.450609, 38.772287 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477430", "FULLNAME": "Englewood Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449794, 38.771886 ], [ -77.450609, 38.772287 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477440", "FULLNAME": "Sunnyside Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449665, 38.772053 ], [ -77.449493, 38.771952 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106073064085", "FULLNAME": "Blooms Quarry Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452111, 38.773425 ], [ -77.451854, 38.773425 ], [ -77.451768, 38.773425 ], [ -77.451725, 38.773425 ], [ -77.451639, 38.773425 ], [ -77.451339, 38.773458 ], [ -77.451210, 38.773492 ], [ -77.450867, 38.773659 ], [ -77.450824, 38.773659 ], [ -77.450695, 38.773692 ], [ -77.450566, 38.773692 ], [ -77.450309, 38.773726 ], [ -77.449965, 38.773659 ], [ -77.449923, 38.773659 ], [ -77.449365, 38.773391 ], [ -77.448163, 38.772856 ], [ -77.447605, 38.772622 ], [ -77.447348, 38.772387 ], [ -77.447090, 38.772187 ], [ -77.446833, 38.772019 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477554", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449493, 38.771952 ], [ -77.449150, 38.771752 ], [ -77.449064, 38.771752 ], [ -77.448978, 38.771852 ], [ -77.449322, 38.772086 ], [ -77.449493, 38.771952 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477452", "FULLNAME": "White Pine Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447391, 38.771451 ], [ -77.447004, 38.771250 ], [ -77.446876, 38.771350 ], [ -77.447219, 38.771618 ], [ -77.447734, 38.772019 ], [ -77.448421, 38.772421 ], [ -77.449064, 38.772689 ], [ -77.450180, 38.773190 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106087402596", "FULLNAME": "Blooms Quarry Rd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449365, 38.773391 ], [ -77.448163, 38.772856 ], [ -77.447605, 38.772622 ], [ -77.447348, 38.772387 ], [ -77.447090, 38.772187 ], [ -77.446833, 38.772019 ], [ -77.445073, 38.770614 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477275", "FULLNAME": "Owens Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442455, 38.772454 ], [ -77.443185, 38.772956 ], [ -77.443314, 38.773124 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045631567", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444601, 38.770815 ], [ -77.444000, 38.771317 ], [ -77.442498, 38.772387 ], [ -77.442455, 38.772454 ], [ -77.441554, 38.773324 ], [ -77.440782, 38.774462 ], [ -77.440352, 38.775332 ], [ -77.440181, 38.775867 ], [ -77.440052, 38.775967 ], [ -77.440009, 38.775800 ], [ -77.440138, 38.775432 ], [ -77.440696, 38.774261 ], [ -77.441082, 38.773659 ], [ -77.441425, 38.773257 ], [ -77.441854, 38.772755 ], [ -77.442369, 38.772287 ], [ -77.444086, 38.771083 ], [ -77.444730, 38.770413 ], [ -77.445416, 38.769711 ], [ -77.445545, 38.769577 ], [ -77.447090, 38.767904 ], [ -77.447305, 38.767670 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477525", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438722, 38.780551 ], [ -77.437778, 38.779681 ], [ -77.437563, 38.779614 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105533752589", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440052, 38.775967 ], [ -77.440739, 38.776101 ], [ -77.442584, 38.776202 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477313", "FULLNAME": "Euclid Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440052, 38.775967 ], [ -77.440095, 38.776202 ], [ -77.440009, 38.776469 ], [ -77.439795, 38.778109 ], [ -77.439880, 38.779413 ], [ -77.439795, 38.779681 ], [ -77.439623, 38.779882 ], [ -77.438722, 38.780551 ], [ -77.438593, 38.780651 ], [ -77.438421, 38.780651 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477362", "FULLNAME": "Vassau Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437177, 38.777071 ], [ -77.437692, 38.777306 ], [ -77.438679, 38.778176 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477409", "FULLNAME": "Industry Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440052, 38.775967 ], [ -77.438850, 38.775800 ], [ -77.438293, 38.775900 ], [ -77.438035, 38.776034 ], [ -77.437778, 38.776235 ], [ -77.437177, 38.777071 ], [ -77.436662, 38.777707 ], [ -77.436361, 38.777975 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477558", "MTFCC": "S1740" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.441554, 38.773324 ], [ -77.441425, 38.773257 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477449", "FULLNAME": "Enterprise Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438035, 38.776034 ], [ -77.437606, 38.775599 ], [ -77.436662, 38.774930 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477277", "FULLNAME": "Owens Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442498, 38.772387 ], [ -77.442369, 38.772287 ], [ -77.440953, 38.771317 ], [ -77.440739, 38.771216 ], [ -77.440310, 38.771149 ], [ -77.439752, 38.771216 ], [ -77.439451, 38.771317 ], [ -77.439065, 38.771584 ], [ -77.438807, 38.771919 ], [ -77.438550, 38.772086 ], [ -77.437735, 38.772354 ], [ -77.437005, 38.772421 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477377", "FULLNAME": "Hardees Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.454300, 38.770781 ], [ -77.452970, 38.770614 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477224", "FULLNAME": "Anna Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.451553, 38.768406 ], [ -77.450995, 38.768071 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081513527", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448549, 38.766164 ], [ -77.448592, 38.766197 ], [ -77.449150, 38.766565 ], [ -77.449837, 38.766967 ], [ -77.450867, 38.767536 ], [ -77.451811, 38.768071 ], [ -77.453613, 38.769042 ], [ -77.453742, 38.769108 ], [ -77.454042, 38.769276 ], [ -77.455029, 38.769644 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477435", "FULLNAME": "Sandstone Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449064, 38.772689 ], [ -77.449665, 38.772053 ], [ -77.449794, 38.771886 ], [ -77.449880, 38.771451 ], [ -77.449923, 38.771283 ], [ -77.449965, 38.770882 ], [ -77.450008, 38.770648 ], [ -77.450480, 38.770079 ], [ -77.450695, 38.769677 ], [ -77.450695, 38.769309 ], [ -77.451038, 38.768941 ], [ -77.451553, 38.768406 ], [ -77.451811, 38.768071 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477400", "FULLNAME": "Woodhue Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449408, 38.770815 ], [ -77.449965, 38.770882 ], [ -77.450781, 38.770949 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477446", "FULLNAME": "Cartwright Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449708, 38.769644 ], [ -77.450480, 38.770079 ], [ -77.450867, 38.770280 ], [ -77.451081, 38.770280 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477403", "FULLNAME": "Woodhue Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448034, 38.770346 ], [ -77.448592, 38.770614 ], [ -77.449150, 38.770748 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477552", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448936, 38.769309 ], [ -77.449150, 38.769443 ], [ -77.449279, 38.769309 ], [ -77.448936, 38.769142 ], [ -77.448850, 38.769209 ], [ -77.448936, 38.769309 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477425", "FULLNAME": "Reinecke Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.451038, 38.768941 ], [ -77.450480, 38.768640 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477376", "FULLNAME": "General Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.450867, 38.767536 ], [ -77.450609, 38.767837 ], [ -77.450223, 38.768272 ], [ -77.450008, 38.768406 ], [ -77.449837, 38.768238 ], [ -77.449665, 38.768439 ], [ -77.449279, 38.768841 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477495", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449665, 38.768439 ], [ -77.450008, 38.768406 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477290", "FULLNAME": "Union Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449837, 38.768238 ], [ -77.449450, 38.768071 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477289", "FULLNAME": "Swann Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.450609, 38.767837 ], [ -77.449965, 38.767502 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477408", "FULLNAME": "Hamilton Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449536, 38.767335 ], [ -77.449837, 38.766967 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477321", "FULLNAME": "Madera Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448249, 38.768640 ], [ -77.448421, 38.768540 ], [ -77.449236, 38.767636 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477436", "FULLNAME": "Saint Steven Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.449880, 38.767502 ], [ -77.449536, 38.767335 ], [ -77.448850, 38.766933 ], [ -77.448506, 38.766766 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477256", "FULLNAME": "Brian Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448850, 38.766933 ], [ -77.449150, 38.766565 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477420", "FULLNAME": "Overhill Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447219, 38.771618 ], [ -77.447391, 38.771451 ], [ -77.447691, 38.770982 ], [ -77.447777, 38.770815 ], [ -77.447991, 38.770447 ], [ -77.448034, 38.770346 ], [ -77.448206, 38.770079 ], [ -77.448936, 38.769309 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477418", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443743, 38.768673 ], [ -77.445416, 38.769711 ], [ -77.445545, 38.769811 ], [ -77.446790, 38.770614 ], [ -77.447691, 38.770982 ], [ -77.448807, 38.771283 ], [ -77.449880, 38.771451 ], [ -77.452283, 38.771752 ], [ -77.452497, 38.771718 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477419", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.452497, 38.771718 ], [ -77.452369, 38.771584 ], [ -77.449923, 38.771283 ], [ -77.448764, 38.771083 ], [ -77.447777, 38.770815 ], [ -77.447047, 38.770547 ], [ -77.445674, 38.769644 ], [ -77.445545, 38.769577 ], [ -77.444644, 38.769042 ], [ -77.443743, 38.768673 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477528", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.448206, 38.770079 ], [ -77.448120, 38.770045 ], [ -77.447777, 38.770380 ], [ -77.447820, 38.770447 ], [ -77.447991, 38.770447 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477519", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447433, 38.770146 ], [ -77.447176, 38.769945 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477405", "FULLNAME": "Burnside Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.446918, 38.768975 ], [ -77.447906, 38.769543 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477359", "FULLNAME": "Sumter Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447176, 38.769945 ], [ -77.446146, 38.769376 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477271", "FULLNAME": "Lapaz Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447219, 38.767971 ], [ -77.447691, 38.768238 ], [ -77.448034, 38.768439 ], [ -77.448249, 38.768640 ], [ -77.448292, 38.769008 ], [ -77.447906, 38.769543 ], [ -77.447519, 38.769878 ], [ -77.447176, 38.769945 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477541", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447090, 38.768774 ], [ -77.446918, 38.768975 ], [ -77.446704, 38.769175 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477231", "FULLNAME": "Inyo Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447691, 38.768238 ], [ -77.448549, 38.767268 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477526", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447090, 38.767904 ], [ -77.447219, 38.767971 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081513518", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444901, 38.770514 ], [ -77.445545, 38.769811 ], [ -77.445674, 38.769644 ], [ -77.447219, 38.767971 ], [ -77.448292, 38.766666 ], [ -77.448592, 38.766197 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477460", "FULLNAME": "Blooms Quarry Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.445073, 38.770614 ], [ -77.444901, 38.770514 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045631564", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444901, 38.770514 ], [ -77.444601, 38.770815 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477531", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444901, 38.770514 ], [ -77.444730, 38.770413 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851594", "FULLNAME": "Monroe Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443829, 38.766867 ], [ -77.444258, 38.767636 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851555", "FULLNAME": "Bank St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444258, 38.767636 ], [ -77.443142, 38.768238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1101168884340", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447305, 38.767670 ], [ -77.448120, 38.766766 ], [ -77.448549, 38.766164 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851647", "FULLNAME": "Franklin Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.443743, 38.766833 ], [ -77.443829, 38.766867 ], [ -77.444386, 38.766197 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679123999", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.445674, 38.765394 ], [ -77.444987, 38.765093 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110461107385", "FULLNAME": "Conner Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444987, 38.765093 ], [ -77.444258, 38.764758 ], [ -77.444000, 38.764758 ], [ -77.443700, 38.765060 ], [ -77.443528, 38.765361 ], [ -77.443528, 38.765628 ], [ -77.443614, 38.765863 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851474", "FULLNAME": "Liberty St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442369, 38.765762 ], [ -77.443614, 38.765863 ], [ -77.444086, 38.765963 ], [ -77.444386, 38.766197 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678306484", "FULLNAME": "Market St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442412, 38.766733 ], [ -77.443013, 38.766699 ], [ -77.443743, 38.766833 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477489", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440953, 38.771317 ], [ -77.441125, 38.770614 ], [ -77.441039, 38.769376 ], [ -77.440610, 38.768740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477540", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442799, 38.767870 ], [ -77.441812, 38.768305 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477539", "FULLNAME": "Park Center Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442412, 38.766733 ], [ -77.441983, 38.766733 ], [ -77.441211, 38.766833 ], [ -77.440653, 38.767067 ], [ -77.439322, 38.767904 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477398", "FULLNAME": "Venture Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439451, 38.771317 ], [ -77.439108, 38.770815 ], [ -77.438593, 38.770246 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103947052954", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440438, 38.760040 ], [ -77.441168, 38.760442 ], [ -77.441640, 38.760810 ], [ -77.442026, 38.761245 ], [ -77.442241, 38.761747 ], [ -77.442284, 38.762617 ], [ -77.442369, 38.765762 ], [ -77.442412, 38.766733 ], [ -77.442455, 38.767168 ], [ -77.442799, 38.767870 ], [ -77.443142, 38.768238 ], [ -77.443743, 38.768673 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477423", "FULLNAME": "Railroad Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442284, 38.762617 ], [ -77.441983, 38.762650 ], [ -77.441683, 38.762784 ], [ -77.440696, 38.763721 ], [ -77.440567, 38.764022 ], [ -77.440567, 38.764089 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477484", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440567, 38.764089 ], [ -77.440782, 38.764825 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105533753031", "FULLNAME": "Sunset Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439322, 38.763788 ], [ -77.439451, 38.763955 ], [ -77.439752, 38.764022 ], [ -77.439923, 38.763955 ], [ -77.440181, 38.763788 ], [ -77.440524, 38.763420 ], [ -77.440739, 38.763320 ], [ -77.440867, 38.763085 ], [ -77.440782, 38.762952 ], [ -77.440181, 38.762684 ], [ -77.440052, 38.762684 ], [ -77.439966, 38.762684 ], [ -77.439795, 38.762751 ], [ -77.439280, 38.763353 ], [ -77.439237, 38.763487 ], [ -77.439322, 38.763788 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536111", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439194, 38.764390 ], [ -77.439108, 38.764825 ], [ -77.438464, 38.765327 ], [ -77.437863, 38.765930 ], [ -77.437778, 38.765930 ], [ -77.437692, 38.765896 ], [ -77.437692, 38.765829 ], [ -77.437220, 38.765327 ], [ -77.436919, 38.765294 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678293384", "FULLNAME": "Creek View Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438464, 38.765327 ], [ -77.437649, 38.764892 ], [ -77.437434, 38.764692 ], [ -77.437091, 38.764558 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678292796", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440567, 38.764022 ], [ -77.440138, 38.764056 ], [ -77.439537, 38.764357 ], [ -77.439194, 38.764390 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536091", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439451, 38.763955 ], [ -77.439408, 38.764123 ], [ -77.439194, 38.764390 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678290915", "FULLNAME": "Trailway Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439237, 38.763487 ], [ -77.439065, 38.763554 ], [ -77.439194, 38.763989 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679537852", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438893, 38.762115 ], [ -77.438679, 38.762316 ], [ -77.438378, 38.762751 ], [ -77.438378, 38.762952 ], [ -77.438893, 38.763219 ], [ -77.439022, 38.763253 ], [ -77.439237, 38.763052 ], [ -77.439623, 38.762450 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678293757", "FULLNAME": "Locust Ter", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437649, 38.764892 ], [ -77.437692, 38.764758 ], [ -77.437863, 38.764692 ], [ -77.437906, 38.764156 ], [ -77.437820, 38.763621 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538402", "FULLNAME": "Digital Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440138, 38.759906 ], [ -77.438979, 38.761245 ], [ -77.438679, 38.761948 ], [ -77.437563, 38.763621 ], [ -77.437348, 38.764156 ], [ -77.437091, 38.764558 ], [ -77.436533, 38.765361 ], [ -77.436104, 38.765863 ], [ -77.435589, 38.766063 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861038", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437563, 38.763621 ], [ -77.437091, 38.763487 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678303567", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435803, 38.767803 ], [ -77.435889, 38.768138 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536540", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435803, 38.767803 ], [ -77.436104, 38.767737 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105533753133", "FULLNAME": "Corbett Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434387, 38.768640 ], [ -77.435246, 38.768406 ], [ -77.435846, 38.768272 ], [ -77.435889, 38.768138 ], [ -77.436104, 38.767737 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536539", "FULLNAME": "Corbett Cir", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435031, 38.768004 ], [ -77.435803, 38.767803 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536474", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435932, 38.766498 ], [ -77.435975, 38.766699 ], [ -77.435632, 38.767201 ], [ -77.435589, 38.767402 ], [ -77.435503, 38.767502 ], [ -77.435331, 38.767536 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678302854", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435932, 38.766498 ], [ -77.435803, 38.766565 ], [ -77.435589, 38.766933 ], [ -77.435331, 38.767536 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538404", "FULLNAME": "Digital Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434816, 38.767368 ], [ -77.434773, 38.767569 ], [ -77.435031, 38.768004 ], [ -77.435246, 38.768406 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536473", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435331, 38.767536 ], [ -77.434816, 38.767368 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678610025", "FULLNAME": "Wigfall Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434902, 38.767034 ], [ -77.434559, 38.766900 ], [ -77.434258, 38.767469 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678302955", "FULLNAME": "Pickens Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434773, 38.767569 ], [ -77.434516, 38.767636 ], [ -77.434173, 38.767569 ], [ -77.434044, 38.767636 ], [ -77.433443, 38.768774 ], [ -77.433443, 38.768874 ], [ -77.433872, 38.768740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678302491", "FULLNAME": "Holmes Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436104, 38.767737 ], [ -77.436147, 38.767368 ], [ -77.436404, 38.766933 ], [ -77.436404, 38.766800 ], [ -77.436833, 38.766398 ], [ -77.437305, 38.765930 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679094720", "FULLNAME": "Battalion Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436275, 38.766097 ], [ -77.436490, 38.766264 ], [ -77.436705, 38.766298 ], [ -77.436833, 38.766398 ], [ -77.437091, 38.766599 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678302380", "FULLNAME": "Elzey Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436275, 38.766097 ], [ -77.436361, 38.765896 ], [ -77.437005, 38.765762 ], [ -77.437091, 38.765863 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536475", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435846, 38.766264 ], [ -77.435975, 38.766432 ], [ -77.435932, 38.766498 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678302281", "FULLNAME": "Walker Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436275, 38.766097 ], [ -77.436018, 38.766130 ], [ -77.435846, 38.766264 ], [ -77.435675, 38.766197 ], [ -77.435589, 38.766063 ], [ -77.435417, 38.765863 ], [ -77.435460, 38.765729 ], [ -77.435846, 38.765562 ], [ -77.436061, 38.765327 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679090051", "FULLNAME": "Park Station Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435589, 38.766063 ], [ -77.435203, 38.766498 ], [ -77.434902, 38.767034 ], [ -77.434816, 38.767368 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678610426", "FULLNAME": "Wheats Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435203, 38.766498 ], [ -77.434859, 38.766365 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861019", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436662, 38.764390 ], [ -77.435846, 38.764123 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081863072", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437091, 38.763487 ], [ -77.436962, 38.763688 ], [ -77.436662, 38.764390 ], [ -77.436361, 38.764758 ], [ -77.435760, 38.764524 ], [ -77.435417, 38.764825 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861013", "FULLNAME": "Maria Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436962, 38.763688 ], [ -77.436190, 38.763453 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081863073", "FULLNAME": "Belo Gate Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437091, 38.763487 ], [ -77.437220, 38.763186 ], [ -77.437520, 38.762818 ], [ -77.437563, 38.762684 ], [ -77.437520, 38.762617 ], [ -77.436748, 38.762383 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861017", "FULLNAME": "Sandra Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437220, 38.763186 ], [ -77.436447, 38.762918 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477513", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435718, 38.763119 ], [ -77.435632, 38.763219 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477270", "FULLNAME": "Lanae Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433958, 38.762550 ], [ -77.434216, 38.763387 ], [ -77.434387, 38.763654 ], [ -77.435031, 38.764123 ], [ -77.435203, 38.764123 ], [ -77.435374, 38.763922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477427", "FULLNAME": "Wilcoxen Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435718, 38.763119 ], [ -77.435374, 38.763018 ], [ -77.434816, 38.762751 ], [ -77.434173, 38.762550 ], [ -77.433958, 38.762550 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477392", "FULLNAME": "Rosebud Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434301, 38.766331 ], [ -77.434258, 38.765896 ], [ -77.434344, 38.765628 ], [ -77.434344, 38.765227 ], [ -77.434258, 38.764959 ], [ -77.434001, 38.764625 ], [ -77.433658, 38.764491 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477422", "FULLNAME": "Primrose Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434087, 38.763989 ], [ -77.433829, 38.764223 ], [ -77.433658, 38.764491 ], [ -77.433357, 38.764524 ], [ -77.433228, 38.764625 ], [ -77.433143, 38.764792 ], [ -77.433143, 38.765060 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536124", "FULLNAME": "W Carondelet Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436919, 38.765595 ], [ -77.436533, 38.765361 ], [ -77.435417, 38.764825 ], [ -77.434258, 38.764156 ], [ -77.434087, 38.763989 ], [ -77.433743, 38.763520 ], [ -77.433400, 38.762617 ], [ -77.433228, 38.762249 ], [ -77.432842, 38.761847 ], [ -77.432499, 38.761613 ], [ -77.432241, 38.761513 ], [ -77.431083, 38.761044 ], [ -77.430911, 38.761011 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678606081", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432842, 38.762684 ], [ -77.432885, 38.762885 ], [ -77.433014, 38.763152 ], [ -77.433014, 38.763186 ], [ -77.433014, 38.763253 ], [ -77.432885, 38.763453 ], [ -77.432628, 38.763855 ], [ -77.432585, 38.763888 ], [ -77.432542, 38.763922 ], [ -77.432327, 38.763989 ], [ -77.432241, 38.763989 ], [ -77.432199, 38.763989 ], [ -77.431898, 38.763855 ], [ -77.431855, 38.763822 ], [ -77.431855, 38.763788 ], [ -77.431855, 38.763755 ], [ -77.431984, 38.763387 ], [ -77.432241, 38.762985 ], [ -77.432284, 38.762952 ], [ -77.432456, 38.762784 ], [ -77.432542, 38.762751 ], [ -77.432628, 38.762717 ], [ -77.432714, 38.762684 ], [ -77.432842, 38.762684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538423", "FULLNAME": "Black Hawk Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432842, 38.762684 ], [ -77.432885, 38.762885 ], [ -77.433014, 38.763152 ], [ -77.433014, 38.763186 ], [ -77.433014, 38.763253 ], [ -77.432885, 38.763453 ], [ -77.432628, 38.763855 ], [ -77.432585, 38.763888 ], [ -77.432542, 38.763922 ], [ -77.432327, 38.763989 ], [ -77.432241, 38.763989 ], [ -77.432199, 38.763989 ], [ -77.431898, 38.763855 ], [ -77.431855, 38.763822 ], [ -77.431855, 38.763788 ], [ -77.431855, 38.763755 ], [ -77.431984, 38.763387 ], [ -77.432241, 38.762985 ], [ -77.432284, 38.762952 ], [ -77.432456, 38.762784 ], [ -77.432542, 38.762751 ], [ -77.432628, 38.762717 ], [ -77.432714, 38.762684 ], [ -77.432842, 38.762684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106092771930", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440052, 38.762684 ], [ -77.439966, 38.762684 ], [ -77.439923, 38.762516 ], [ -77.439795, 38.762450 ], [ -77.439623, 38.762450 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679537849", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438893, 38.762115 ], [ -77.439065, 38.762148 ], [ -77.439623, 38.762450 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679537853", "FULLNAME": "Elm Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438679, 38.761948 ], [ -77.438850, 38.762015 ], [ -77.438893, 38.762115 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103947052953", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440438, 38.760040 ], [ -77.440138, 38.759906 ], [ -77.438765, 38.759103 ], [ -77.438207, 38.758802 ], [ -77.438078, 38.758668 ], [ -77.437005, 38.758099 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861195", "FULLNAME": "Isabel Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437692, 38.759471 ], [ -77.437263, 38.760207 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861150", "FULLNAME": "Christopher Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438765, 38.759103 ], [ -77.438421, 38.759505 ], [ -77.438207, 38.759639 ], [ -77.437992, 38.759639 ], [ -77.437692, 38.759471 ], [ -77.437134, 38.759204 ], [ -77.436576, 38.759237 ], [ -77.436318, 38.759270 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861178", "FULLNAME": "Phita Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436576, 38.759237 ], [ -77.436447, 38.758769 ], [ -77.436533, 38.758601 ], [ -77.436705, 38.758568 ], [ -77.438207, 38.759371 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477317", "FULLNAME": "Kristy Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435718, 38.763119 ], [ -77.436233, 38.761981 ], [ -77.436876, 38.760977 ], [ -77.437177, 38.760341 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477294", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435803, 38.760609 ], [ -77.435632, 38.761245 ], [ -77.435975, 38.760944 ], [ -77.436104, 38.760709 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477356", "FULLNAME": "Scotty Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436876, 38.760977 ], [ -77.436104, 38.760709 ], [ -77.435975, 38.760676 ], [ -77.435803, 38.760609 ], [ -77.435117, 38.760375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477433", "FULLNAME": "Robin Lee Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434988, 38.762416 ], [ -77.435331, 38.761780 ], [ -77.435503, 38.761479 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477388", "FULLNAME": "Lindsey Ln", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.434473, 38.761513 ], [ -77.435331, 38.761780 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477383", "FULLNAME": "Jessica Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433958, 38.762550 ], [ -77.434473, 38.761513 ], [ -77.435117, 38.760375 ], [ -77.435460, 38.759739 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081861175", "FULLNAME": "Alexander Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436576, 38.760040 ], [ -77.436576, 38.759237 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477496", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436190, 38.760609 ], [ -77.436361, 38.760308 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477492", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436361, 38.760308 ], [ -77.436490, 38.760074 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477507", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436361, 38.760308 ], [ -77.436233, 38.760241 ], [ -77.436061, 38.760174 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477493", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435889, 38.760509 ], [ -77.436061, 38.760174 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477491", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436061, 38.760174 ], [ -77.436147, 38.759973 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477296", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436233, 38.759036 ], [ -77.436318, 38.759270 ], [ -77.436361, 38.759839 ], [ -77.436233, 38.760241 ], [ -77.435975, 38.760676 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477501", "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436061, 38.759304 ], [ -77.436147, 38.759772 ], [ -77.436361, 38.759839 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477502", "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436061, 38.759304 ], [ -77.436318, 38.759270 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477295", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436190, 38.757898 ], [ -77.436147, 38.758032 ], [ -77.436104, 38.758702 ], [ -77.436233, 38.759036 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477505", "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435288, 38.758032 ], [ -77.435331, 38.758233 ], [ -77.435718, 38.758233 ], [ -77.435803, 38.758300 ], [ -77.435846, 38.758635 ], [ -77.435975, 38.758769 ], [ -77.436061, 38.759304 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477382", "FULLNAME": "Jessica Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433400, 38.762617 ], [ -77.433615, 38.762550 ], [ -77.433958, 38.762550 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678606039", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433400, 38.762617 ], [ -77.433100, 38.762684 ], [ -77.432971, 38.762684 ], [ -77.432842, 38.762684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679538422", "FULLNAME": "Black Hawk Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433400, 38.762617 ], [ -77.433100, 38.762684 ], [ -77.432971, 38.762684 ], [ -77.432842, 38.762684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105533752563", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.438207, 38.758802 ], [ -77.437949, 38.758735 ], [ -77.437048, 38.758267 ], [ -77.436318, 38.758032 ], [ -77.436147, 38.758032 ], [ -77.435288, 38.758032 ], [ -77.434301, 38.758200 ], [ -77.433658, 38.758434 ], [ -77.432714, 38.758969 ], [ -77.432027, 38.759605 ], [ -77.431083, 38.761044 ], [ -77.430482, 38.761981 ], [ -77.429581, 38.762952 ], [ -77.428679, 38.764089 ], [ -77.427907, 38.765060 ], [ -77.427778, 38.765394 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110461107160", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.437005, 38.758099 ], [ -77.436318, 38.757932 ], [ -77.436190, 38.757898 ], [ -77.435417, 38.757898 ], [ -77.434859, 38.757965 ], [ -77.433572, 38.758333 ], [ -77.432842, 38.758702 ], [ -77.432027, 38.759371 ], [ -77.431726, 38.759739 ], [ -77.430911, 38.761011 ], [ -77.430396, 38.761881 ], [ -77.429452, 38.762918 ], [ -77.428551, 38.764056 ], [ -77.427950, 38.764859 ], [ -77.427778, 38.765394 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536131", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431812, 38.762148 ], [ -77.432156, 38.762316 ], [ -77.432284, 38.762282 ], [ -77.432370, 38.762182 ], [ -77.432370, 38.762081 ], [ -77.432156, 38.761948 ], [ -77.431984, 38.761914 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103678606144", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432241, 38.761513 ], [ -77.431984, 38.761914 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536132", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431984, 38.761914 ], [ -77.431641, 38.761847 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851221", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431812, 38.761546 ], [ -77.431641, 38.761847 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477512", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432842, 38.761847 ], [ -77.433143, 38.761580 ], [ -77.433271, 38.761345 ], [ -77.433228, 38.761278 ], [ -77.432971, 38.761144 ], [ -77.432542, 38.761044 ], [ -77.432241, 38.761513 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477536", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433658, 38.758434 ], [ -77.433572, 38.758333 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477297", "FULLNAME": "Andrew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436361, 38.757698 ], [ -77.436318, 38.757798 ], [ -77.436318, 38.757932 ], [ -77.436318, 38.758032 ], [ -77.436233, 38.758400 ], [ -77.436233, 38.759036 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477538", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436233, 38.757664 ], [ -77.436233, 38.757698 ], [ -77.436190, 38.757898 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477404", "FULLNAME": "Zachary Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.433572, 38.758333 ], [ -77.433314, 38.757999 ], [ -77.432456, 38.757463 ], [ -77.431984, 38.757196 ], [ -77.431812, 38.756928 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477254", "FULLNAME": "Becky Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432456, 38.757463 ], [ -77.432113, 38.757831 ], [ -77.431941, 38.758166 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477258", "FULLNAME": "Eagle Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428851, 38.769978 ], [ -77.428765, 38.770447 ], [ -77.428894, 38.770648 ], [ -77.429109, 38.770815 ], [ -77.429795, 38.770915 ], [ -77.430868, 38.770915 ], [ -77.431383, 38.771049 ], [ -77.431598, 38.771049 ], [ -77.431812, 38.770882 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477374", "FULLNAME": "Fairway Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427607, 38.769108 ], [ -77.427649, 38.769242 ], [ -77.427735, 38.769376 ], [ -77.427864, 38.769476 ], [ -77.427950, 38.769610 ], [ -77.428079, 38.769711 ], [ -77.428207, 38.769778 ], [ -77.428336, 38.769845 ], [ -77.428465, 38.769911 ], [ -77.428594, 38.769945 ], [ -77.428722, 38.769978 ], [ -77.428851, 38.769978 ], [ -77.428980, 38.770012 ], [ -77.430611, 38.769911 ], [ -77.431383, 38.769744 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477516", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431555, 38.768506 ], [ -77.431726, 38.767803 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477227", "FULLNAME": "Gary Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429967, 38.767670 ], [ -77.430696, 38.767134 ], [ -77.431211, 38.766766 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477550", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428937, 38.768406 ], [ -77.428980, 38.768238 ], [ -77.429066, 38.768205 ], [ -77.429194, 38.768305 ], [ -77.429109, 38.768406 ], [ -77.428937, 38.768406 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477252", "FULLNAME": "Arnie Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.432241, 38.768607 ], [ -77.431555, 38.768506 ], [ -77.430825, 38.768339 ], [ -77.430439, 38.768138 ], [ -77.429967, 38.767670 ], [ -77.429752, 38.767502 ], [ -77.429323, 38.767368 ], [ -77.428508, 38.767335 ], [ -77.427692, 38.767335 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477518", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427607, 38.769108 ], [ -77.426963, 38.769209 ], [ -77.426405, 38.769711 ], [ -77.426190, 38.769811 ], [ -77.426147, 38.769945 ], [ -77.425933, 38.770045 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477229", "FULLNAME": "Golf Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427521, 38.768707 ], [ -77.428465, 38.768673 ], [ -77.428937, 38.768406 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106087387886", "FULLNAME": "Manassas Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427778, 38.765394 ], [ -77.427692, 38.765796 ], [ -77.427692, 38.767335 ], [ -77.427521, 38.768707 ], [ -77.427607, 38.769108 ], [ -77.427649, 38.769242 ], [ -77.427735, 38.769376 ], [ -77.427864, 38.769476 ], [ -77.427950, 38.769610 ], [ -77.428079, 38.769711 ], [ -77.428207, 38.769778 ], [ -77.428336, 38.769845 ], [ -77.428465, 38.769911 ], [ -77.428594, 38.769945 ], [ -77.428722, 38.769978 ], [ -77.428851, 38.769978 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477260", "FULLNAME": "Elise Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426877, 38.767268 ], [ -77.426877, 38.767569 ], [ -77.427006, 38.767770 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477315", "FULLNAME": "Joshua Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425890, 38.767435 ], [ -77.426147, 38.768205 ], [ -77.426362, 38.768506 ], [ -77.426491, 38.768573 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477232", "FULLNAME": "Jack Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430696, 38.767134 ], [ -77.430353, 38.766867 ], [ -77.429838, 38.766666 ], [ -77.428637, 38.766565 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477451", "FULLNAME": "Greenshire Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428551, 38.764056 ], [ -77.428679, 38.764089 ], [ -77.429066, 38.764290 ], [ -77.429366, 38.764524 ], [ -77.429667, 38.764725 ], [ -77.429967, 38.764825 ], [ -77.430310, 38.764892 ], [ -77.430482, 38.764859 ], [ -77.430997, 38.764993 ], [ -77.431126, 38.765160 ], [ -77.431083, 38.765461 ], [ -77.430782, 38.765628 ], [ -77.430482, 38.765662 ], [ -77.429409, 38.765662 ], [ -77.429109, 38.765662 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536130", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430997, 38.763253 ], [ -77.430696, 38.763085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103677851287", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430696, 38.763085 ], [ -77.430439, 38.762985 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477431", "FULLNAME": "Hedgeford St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429409, 38.765662 ], [ -77.429409, 38.765495 ], [ -77.429109, 38.765160 ], [ -77.429066, 38.765026 ], [ -77.429066, 38.764892 ], [ -77.429366, 38.764524 ], [ -77.429752, 38.763989 ], [ -77.429881, 38.763922 ], [ -77.430182, 38.763922 ], [ -77.430353, 38.763989 ], [ -77.430482, 38.764123 ], [ -77.430482, 38.764859 ], [ -77.430482, 38.765662 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477279", "FULLNAME": "Payne Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428508, 38.767335 ], [ -77.428637, 38.766565 ], [ -77.428594, 38.766231 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477278", "FULLNAME": "Paige Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426062, 38.765595 ], [ -77.426362, 38.765930 ], [ -77.426620, 38.766030 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477399", "FULLNAME": "William St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428551, 38.764056 ], [ -77.427950, 38.763755 ], [ -77.427478, 38.763520 ], [ -77.427220, 38.763453 ], [ -77.426748, 38.763453 ], [ -77.426405, 38.763520 ], [ -77.425890, 38.763721 ], [ -77.425332, 38.764156 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477371", "FULLNAME": "Deborah Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426019, 38.764692 ], [ -77.426534, 38.764424 ], [ -77.426834, 38.764357 ], [ -77.427263, 38.764390 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477365", "FULLNAME": "Bradley Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426748, 38.763453 ], [ -77.426705, 38.763253 ], [ -77.426448, 38.762985 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103691411843", "MTFCC": "S1640" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425933, 38.770045 ], [ -77.425761, 38.770146 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477263", "FULLNAME": "Jenna Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424860, 38.768607 ], [ -77.425203, 38.768707 ], [ -77.425418, 38.768673 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477250", "FULLNAME": "Alexa Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425890, 38.767435 ], [ -77.425718, 38.766933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477369", "FULLNAME": "Cynthia St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427692, 38.767335 ], [ -77.426877, 38.767268 ], [ -77.425890, 38.767435 ], [ -77.425547, 38.767502 ], [ -77.425075, 38.767502 ], [ -77.424345, 38.767368 ], [ -77.424130, 38.767302 ], [ -77.423143, 38.766733 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477385", "FULLNAME": "Katelyn Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425332, 38.769510 ], [ -77.424474, 38.769175 ], [ -77.424302, 38.769108 ], [ -77.424002, 38.768841 ], [ -77.423787, 38.768372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477393", "FULLNAME": "Shannon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425075, 38.767502 ], [ -77.424989, 38.768272 ], [ -77.424860, 38.768607 ], [ -77.424774, 38.768807 ], [ -77.424474, 38.769175 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477265", "FULLNAME": "Karen Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424345, 38.767368 ], [ -77.424560, 38.766699 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477318", "FULLNAME": "Laurie Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426534, 38.765093 ], [ -77.426062, 38.765595 ], [ -77.425375, 38.765829 ], [ -77.424903, 38.765796 ], [ -77.423573, 38.765461 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477285", "FULLNAME": "Sonia Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.425375, 38.765829 ], [ -77.425332, 38.765461 ], [ -77.425203, 38.765193 ], [ -77.424688, 38.764825 ], [ -77.424388, 38.764658 ], [ -77.424045, 38.764558 ], [ -77.423401, 38.764558 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477438", "FULLNAME": "Stephanie St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427778, 38.765394 ], [ -77.426963, 38.765260 ], [ -77.426534, 38.765093 ], [ -77.426019, 38.764692 ], [ -77.425332, 38.764156 ], [ -77.424774, 38.763888 ], [ -77.423916, 38.763721 ], [ -77.423229, 38.763721 ], [ -77.421942, 38.764056 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105045621397", "MTFCC": "S1750" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426448, 38.762985 ], [ -77.425504, 38.762349 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477306", "FULLNAME": "Cougar Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.422328, 38.764959 ], [ -77.421942, 38.764056 ], [ -77.421727, 38.763520 ], [ -77.421727, 38.763186 ], [ -77.421942, 38.762550 ], [ -77.422328, 38.762081 ], [ -77.422328, 38.761948 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536129", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431641, 38.761847 ], [ -77.430696, 38.763085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477443", "FULLNAME": "E Carondelet Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430911, 38.761011 ], [ -77.430182, 38.760709 ], [ -77.429795, 38.760576 ], [ -77.428122, 38.759706 ], [ -77.427649, 38.759572 ], [ -77.427092, 38.759538 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477274", "FULLNAME": "Nancy St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430654, 38.759906 ], [ -77.430139, 38.759772 ], [ -77.428465, 38.758902 ], [ -77.427263, 38.758601 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477391", "FULLNAME": "Michael Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429066, 38.762349 ], [ -77.428122, 38.761780 ], [ -77.427692, 38.761613 ], [ -77.427135, 38.761613 ], [ -77.426834, 38.761613 ], [ -77.426577, 38.761780 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477379", "FULLNAME": "Heather Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427135, 38.761613 ], [ -77.427220, 38.762215 ], [ -77.427392, 38.762516 ], [ -77.427521, 38.762583 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477389", "FULLNAME": "Matthew Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426062, 38.758769 ], [ -77.426276, 38.758200 ], [ -77.426233, 38.757731 ], [ -77.426062, 38.757095 ], [ -77.426147, 38.756761 ], [ -77.426405, 38.756326 ], [ -77.426534, 38.756225 ], [ -77.426748, 38.756058 ], [ -77.427263, 38.755924 ], [ -77.428250, 38.755790 ], [ -77.428679, 38.755857 ], [ -77.429109, 38.756024 ], [ -77.429881, 38.756794 ], [ -77.430267, 38.757229 ], [ -77.430654, 38.757831 ], [ -77.430868, 38.758835 ], [ -77.430782, 38.759538 ], [ -77.430654, 38.759906 ], [ -77.430568, 38.760174 ], [ -77.430182, 38.760709 ], [ -77.429709, 38.761513 ], [ -77.429066, 38.762349 ], [ -77.427950, 38.763755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679536656", "FULLNAME": "Brandon St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429709, 38.761513 ], [ -77.428250, 38.760776 ], [ -77.427907, 38.760709 ], [ -77.427135, 38.760709 ], [ -77.426534, 38.760709 ], [ -77.426105, 38.760643 ], [ -77.425547, 38.760509 ], [ -77.424774, 38.760207 ], [ -77.424688, 38.760107 ], [ -77.424817, 38.759940 ], [ -77.424817, 38.759772 ], [ -77.424688, 38.759505 ], [ -77.424560, 38.759371 ], [ -77.424345, 38.759270 ], [ -77.423959, 38.759170 ], [ -77.423487, 38.759270 ], [ -77.423401, 38.759337 ], [ -77.423229, 38.760207 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477287", "FULLNAME": "Steve St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.429881, 38.756794 ], [ -77.429280, 38.757196 ], [ -77.428808, 38.757698 ], [ -77.428637, 38.758032 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477221", "FULLNAME": "Jan St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.430868, 38.758835 ], [ -77.430611, 38.758869 ], [ -77.430053, 38.758735 ], [ -77.429066, 38.758200 ], [ -77.428637, 38.758032 ], [ -77.427564, 38.757798 ], [ -77.427006, 38.757664 ], [ -77.426534, 38.757664 ], [ -77.426233, 38.757731 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477291", "FULLNAME": "S Whitt Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.428679, 38.755857 ], [ -77.428207, 38.756928 ], [ -77.427778, 38.757396 ], [ -77.427564, 38.757798 ], [ -77.427263, 38.758601 ], [ -77.427092, 38.759170 ], [ -77.427092, 38.759538 ], [ -77.427135, 38.760709 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477266", "FULLNAME": "Kevin Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427263, 38.755924 ], [ -77.427135, 38.755790 ], [ -77.427092, 38.755188 ], [ -77.427135, 38.755087 ], [ -77.427607, 38.754652 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477509", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426534, 38.756225 ], [ -77.426105, 38.755957 ], [ -77.425804, 38.755690 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477428", "FULLNAME": "Elizabeth Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426105, 38.760643 ], [ -77.426105, 38.760107 ], [ -77.426019, 38.759973 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103679106335", "MTFCC": "S1780" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.422328, 38.761948 ], [ -77.422414, 38.761513 ], [ -77.423100, 38.760877 ], [ -77.423229, 38.760207 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477236", "FULLNAME": "Luke Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.424560, 38.757497 ], [ -77.424817, 38.757597 ], [ -77.425160, 38.757865 ], [ -77.425289, 38.758233 ], [ -77.425203, 38.758400 ], [ -77.425075, 38.758467 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110410477241", "FULLNAME": "Paul Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.426791, 38.756928 ], [ -77.426147, 38.756761 ], [ -77.425590, 38.756694 ], [ -77.425203, 38.756794 ], [ -77.424946, 38.756995 ], [ -77.424560, 38.757497 ], [ -77.424259, 38.757865 ], [ -77.424173, 38.758066 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1106081513591", "FULLNAME": "Birmingham Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427349, 38.753615 ], [ -77.426276, 38.754820 ], [ -77.425461, 38.755388 ], [ -77.425075, 38.755890 ], [ -77.424388, 38.756593 ], [ -77.424045, 38.757162 ], [ -77.423186, 38.758333 ], [ -77.422800, 38.759036 ], [ -77.422929, 38.759706 ], [ -77.422543, 38.761144 ], [ -77.422285, 38.761379 ], [ -77.420611, 38.762316 ] ] } } +] } +] } +] } diff --git a/tests/wraparound/out/-z5_--detect-longitude-wraparound.json b/tests/wraparound/out/-z5_--detect-longitude-wraparound.json index 02b642c4c..cc8a31606 100644 --- a/tests/wraparound/out/-z5_--detect-longitude-wraparound.json +++ b/tests/wraparound/out/-z5_--detect-longitude-wraparound.json @@ -3,6 +3,7 @@ "center": "174.375000,52.248490,5", "description": "tests/wraparound/out/-z5_--detect-longitude-wraparound.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/wraparound/out/-z5_--detect-longitude-wraparound.json.check.mbtiles -z5 --detect-longitude-wraparound tests/wraparound/in.json", "json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 5, \"fields\": {\"AGE_RANGE\": \"String\", \"CLASS\": \"Number\", \"NSACLASS\": \"Number\", \"NSASUB\": \"Number\", \"QCLASS\": \"Number\", \"SEQUENCE\": \"String\", \"SHAPE_Area\": \"Number\", \"SHAPE_Leng\": \"Number\", \"SOURCE\": \"String\", \"SOURCECLAS\": \"String\", \"STATE_SYMB\": \"Number\", \"STATE_UNIT\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 12,\"attributes\": [{\"attribute\": \"AGE_RANGE\",\"count\": 1,\"type\": \"string\",\"values\": [\"Holocene\"]},{\"attribute\": \"CLASS\",\"count\": 1,\"type\": \"number\",\"values\": [102],\"min\": 102,\"max\": 102},{\"attribute\": \"NSACLASS\",\"count\": 1,\"type\": \"number\",\"values\": [102],\"min\": 102,\"max\": 102},{\"attribute\": \"NSASUB\",\"count\": 1,\"type\": \"number\",\"values\": [0],\"min\": 0,\"max\": 0},{\"attribute\": \"QCLASS\",\"count\": 1,\"type\": \"number\",\"values\": [102],\"min\": 102,\"max\": 102},{\"attribute\": \"SEQUENCE\",\"count\": 1,\"type\": \"string\",\"values\": [\"A002\"]},{\"attribute\": \"SHAPE_Area\",\"count\": 1,\"type\": \"number\",\"values\": [14738675833],\"min\": 14738675833,\"max\": 14738675833},{\"attribute\": \"SHAPE_Leng\",\"count\": 1,\"type\": \"number\",\"values\": [932926.369371],\"min\": 932926.369371,\"max\": 932926.369371},{\"attribute\": \"SOURCE\",\"count\": 1,\"type\": \"string\",\"values\": [\"RI001\"]},{\"attribute\": \"SOURCECLAS\",\"count\": 1,\"type\": \"string\",\"values\": [\"RI001_102\"]},{\"attribute\": \"STATE_SYMB\",\"count\": 1,\"type\": \"number\",\"values\": [300],\"min\": 300,\"max\": 300},{\"attribute\": \"STATE_UNIT\",\"count\": 1,\"type\": \"string\",\"values\": [\"Water\"]}]}]}}", "maxzoom": "5", "minzoom": "0", @@ -18,13 +19,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "CLASS": 102, "QCLASS": 102, "SOURCE": "RI001", "NSACLASS": 102, "NSASUB": 0, "SOURCECLAS": "RI001_102", "STATE_SYMB": 300, "STATE_UNIT": "Water", "AGE_RANGE": "Holocene", "SEQUENCE": "A002", "SHAPE_Leng": 932926.369371, "SHAPE_Area": 14738675833 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.043945, 52.268157 ], [ -180.000000, 51.835778 ], [ -180.000000, 51.261915 ], [ -182.021484, 51.261915 ], [ -182.021484, 52.268157 ], [ -180.043945, 52.268157 ] ], [ [ -181.054688, 51.563412 ], [ -180.791016, 51.371780 ], [ -180.571289, 51.371780 ], [ -180.615234, 51.426614 ], [ -180.747070, 51.399206 ], [ -180.703125, 51.426614 ], [ -180.791016, 51.426614 ], [ -181.054688, 51.590723 ], [ -181.274414, 51.645294 ], [ -181.406250, 51.645294 ], [ -181.054688, 51.563412 ] ], [ [ -180.395508, 52.052490 ], [ -180.527344, 51.998410 ], [ -180.571289, 51.944265 ], [ -180.395508, 51.890054 ], [ -180.263672, 51.971346 ], [ -180.395508, 52.052490 ] ], [ [ -181.538086, 51.998410 ], [ -181.582031, 51.944265 ], [ -181.494141, 51.917168 ], [ -181.450195, 51.971346 ], [ -181.538086, 51.998410 ] ] ] } } +{ "type": "Feature", "properties": { "CLASS": 102, "QCLASS": 102, "SOURCE": "RI001", "NSACLASS": 102, "NSASUB": 0, "SOURCECLAS": "RI001_102", "STATE_SYMB": 300, "STATE_UNIT": "Water", "AGE_RANGE": "Holocene", "SEQUENCE": "A002", "SHAPE_Leng": 932926.369371, "SHAPE_Area": 14738675833 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.043945, 52.268157 ], [ -180.000000, 51.835778 ], [ -180.000000, 51.261915 ], [ -182.021484, 51.261915 ], [ -182.021484, 52.268157 ], [ -180.043945, 52.268157 ] ], [ [ -181.054688, 51.563412 ], [ -180.791016, 51.371780 ], [ -180.571289, 51.371780 ], [ -180.615234, 51.426614 ], [ -180.703125, 51.426614 ], [ -180.791016, 51.426614 ], [ -181.054688, 51.563412 ] ], [ [ -180.395508, 52.052490 ], [ -180.527344, 51.998410 ], [ -180.571289, 51.944265 ], [ -180.395508, 51.890054 ], [ -180.263672, 51.971346 ], [ -180.395508, 52.052490 ] ], [ [ -181.538086, 51.998410 ], [ -181.582031, 51.944265 ], [ -181.494141, 51.917168 ], [ -181.450195, 51.971346 ], [ -181.538086, 51.998410 ] ], [ [ -181.054688, 51.563412 ], [ -181.054688, 51.590723 ], [ -181.274414, 51.645294 ], [ -181.406250, 51.645294 ], [ -181.054688, 51.563412 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "CLASS": 102, "QCLASS": 102, "SOURCE": "RI001", "NSACLASS": 102, "NSASUB": 0, "SOURCECLAS": "RI001_102", "STATE_SYMB": 300, "STATE_UNIT": "Water", "AGE_RANGE": "Holocene", "SEQUENCE": "A002", "SHAPE_Leng": 932926.369371, "SHAPE_Area": 14738675833 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 179.956055, 52.268157 ], [ 180.000000, 51.399206 ], [ 180.000000, 51.261915 ], [ 177.978516, 51.261915 ], [ 177.978516, 52.268157 ], [ 179.956055, 52.268157 ] ], [ [ 178.945312, 51.563412 ], [ 179.208984, 51.371780 ], [ 179.428711, 51.371780 ], [ 179.384766, 51.426614 ], [ 179.252930, 51.399206 ], [ 179.296875, 51.426614 ], [ 179.208984, 51.426614 ], [ 178.945312, 51.590723 ], [ 178.725586, 51.645294 ], [ 178.593750, 51.645294 ], [ 178.945312, 51.563412 ] ], [ [ 179.604492, 52.052490 ], [ 179.472656, 51.998410 ], [ 179.428711, 51.944265 ], [ 179.604492, 51.890054 ], [ 179.736328, 51.971346 ], [ 179.604492, 52.052490 ] ], [ [ 178.461914, 51.998410 ], [ 178.417969, 51.944265 ], [ 178.505859, 51.917168 ], [ 178.549805, 51.971346 ], [ 178.461914, 51.998410 ] ] ] } } +{ "type": "Feature", "properties": { "CLASS": 102, "QCLASS": 102, "SOURCE": "RI001", "NSACLASS": 102, "NSASUB": 0, "SOURCECLAS": "RI001_102", "STATE_SYMB": 300, "STATE_UNIT": "Water", "AGE_RANGE": "Holocene", "SEQUENCE": "A002", "SHAPE_Leng": 932926.369371, "SHAPE_Area": 14738675833 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 179.956055, 52.268157 ], [ 180.000000, 51.399206 ], [ 180.000000, 51.261915 ], [ 177.978516, 51.261915 ], [ 177.978516, 52.268157 ], [ 179.956055, 52.268157 ] ], [ [ 178.945312, 51.563412 ], [ 179.208984, 51.371780 ], [ 179.428711, 51.371780 ], [ 179.384766, 51.426614 ], [ 179.296875, 51.426614 ], [ 179.208984, 51.426614 ], [ 178.945312, 51.563412 ] ], [ [ 179.604492, 52.052490 ], [ 179.472656, 51.998410 ], [ 179.428711, 51.944265 ], [ 179.604492, 51.890054 ], [ 179.736328, 51.971346 ], [ 179.604492, 52.052490 ] ], [ [ 178.461914, 51.998410 ], [ 178.417969, 51.944265 ], [ 178.505859, 51.917168 ], [ 178.549805, 51.971346 ], [ 178.461914, 51.998410 ] ], [ [ 178.945312, 51.563412 ], [ 178.945312, 51.590723 ], [ 178.725586, 51.645294 ], [ 178.593750, 51.645294 ], [ 178.945312, 51.563412 ] ] ] } } ] } ] } , @@ -72,7 +73,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "CLASS": 102, "QCLASS": 102, "SOURCE": "RI001", "NSACLASS": 102, "NSASUB": 0, "SOURCECLAS": "RI001_102", "STATE_SYMB": 300, "STATE_UNIT": "Water", "AGE_RANGE": "Holocene", "SEQUENCE": "A002", "SHAPE_Leng": 932926.369371, "SHAPE_Area": 14738675833 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 179.994507, 52.249665 ], [ 180.000000, 51.375209 ], [ 180.000000, 51.249882 ], [ 177.994995, 51.249882 ], [ 177.994995, 52.249665 ], [ 179.994507, 52.249665 ] ], [ [ 178.659668, 51.662334 ], [ 178.643188, 51.657223 ], [ 178.643188, 51.648703 ], [ 178.634949, 51.641885 ], [ 178.621216, 51.641885 ], [ 178.615723, 51.636772 ], [ 178.623962, 51.638476 ], [ 178.626709, 51.633362 ], [ 178.632202, 51.631657 ], [ 178.629456, 51.624837 ], [ 178.634949, 51.624837 ], [ 178.637695, 51.621427 ], [ 178.656921, 51.621427 ], [ 178.659668, 51.618017 ], [ 178.665161, 51.618017 ], [ 178.662415, 51.616311 ], [ 178.670654, 51.611195 ], [ 178.684387, 51.611195 ], [ 178.689880, 51.602666 ], [ 178.700867, 51.599254 ], [ 178.698120, 51.592429 ], [ 178.714600, 51.594135 ], [ 178.717346, 51.590723 ], [ 178.722839, 51.592429 ], [ 178.739319, 51.585603 ], [ 178.761292, 51.589016 ], [ 178.758545, 51.583897 ], [ 178.764038, 51.577070 ], [ 178.769531, 51.573656 ], [ 178.783264, 51.571949 ], [ 178.796997, 51.578776 ], [ 178.796997, 51.575363 ], [ 178.805237, 51.578776 ], [ 178.821716, 51.575363 ], [ 178.827209, 51.580483 ], [ 178.843689, 51.578776 ], [ 178.854675, 51.570241 ], [ 178.849182, 51.563412 ], [ 178.862915, 51.561705 ], [ 178.865662, 51.566827 ], [ 178.879395, 51.570241 ], [ 178.879395, 51.559997 ], [ 178.893127, 51.559997 ], [ 178.890381, 51.554874 ], [ 178.901367, 51.554874 ], [ 178.912354, 51.544627 ], [ 178.915100, 51.548043 ], [ 178.931580, 51.548043 ], [ 178.950806, 51.542919 ], [ 178.953552, 51.536086 ], [ 178.959045, 51.536086 ], [ 178.967285, 51.530960 ], [ 178.964539, 51.522416 ], [ 178.994751, 51.505323 ], [ 179.008484, 51.501904 ], [ 179.016724, 51.496775 ], [ 179.013977, 51.493355 ], [ 179.019470, 51.489935 ], [ 179.030457, 51.488224 ], [ 179.030457, 51.483093 ], [ 179.035950, 51.483093 ], [ 179.030457, 51.476251 ], [ 179.041443, 51.469408 ], [ 179.052429, 51.467697 ], [ 179.049683, 51.462564 ], [ 179.057922, 51.454007 ], [ 179.063416, 51.455718 ], [ 179.079895, 51.445449 ], [ 179.088135, 51.447160 ], [ 179.090881, 51.442025 ], [ 179.099121, 51.440313 ], [ 179.104614, 51.433464 ], [ 179.123840, 51.428327 ], [ 179.134827, 51.418051 ], [ 179.140320, 51.419764 ], [ 179.159546, 51.414625 ], [ 179.156799, 51.409486 ], [ 179.162292, 51.406059 ], [ 179.165039, 51.407773 ], [ 179.167786, 51.397492 ], [ 179.176025, 51.397492 ], [ 179.181519, 51.394065 ], [ 179.197998, 51.395778 ], [ 179.225464, 51.387209 ], [ 179.225464, 51.380353 ], [ 179.217224, 51.378638 ], [ 179.217224, 51.371780 ], [ 179.208984, 51.370066 ], [ 179.208984, 51.361492 ], [ 179.230957, 51.354631 ], [ 179.236450, 51.349485 ], [ 179.258423, 51.358062 ], [ 179.302368, 51.364921 ], [ 179.318848, 51.363207 ], [ 179.318848, 51.359777 ], [ 179.324341, 51.361492 ], [ 179.324341, 51.364921 ], [ 179.349060, 51.368351 ], [ 179.351807, 51.371780 ], [ 179.354553, 51.370066 ], [ 179.382019, 51.378638 ], [ 179.393005, 51.375209 ], [ 179.382019, 51.368351 ], [ 179.387512, 51.358062 ], [ 179.398499, 51.361492 ], [ 179.425964, 51.363207 ], [ 179.431458, 51.370066 ], [ 179.445190, 51.366636 ], [ 179.458923, 51.373495 ], [ 179.464417, 51.371780 ], [ 179.461670, 51.376924 ], [ 179.453430, 51.375209 ], [ 179.439697, 51.383781 ], [ 179.406738, 51.383781 ], [ 179.398499, 51.400919 ], [ 179.401245, 51.407773 ], [ 179.387512, 51.412912 ], [ 179.384766, 51.406059 ], [ 179.371033, 51.400919 ], [ 179.362793, 51.400919 ], [ 179.362793, 51.404346 ], [ 179.351807, 51.402633 ], [ 179.349060, 51.406059 ], [ 179.335327, 51.406059 ], [ 179.291382, 51.392351 ], [ 179.277649, 51.390637 ], [ 179.272156, 51.402633 ], [ 179.291382, 51.407773 ], [ 179.296875, 51.418051 ], [ 179.277649, 51.414625 ], [ 179.263916, 51.406059 ], [ 179.258423, 51.409486 ], [ 179.247437, 51.407773 ], [ 179.233704, 51.411199 ], [ 179.228210, 51.414625 ], [ 179.233704, 51.421477 ], [ 179.228210, 51.424902 ], [ 179.211731, 51.421477 ], [ 179.211731, 51.424902 ], [ 179.219971, 51.424902 ], [ 179.214478, 51.428327 ], [ 179.219971, 51.435176 ], [ 179.214478, 51.436889 ], [ 179.214478, 51.442025 ], [ 179.203491, 51.443737 ], [ 179.203491, 51.447160 ], [ 179.189758, 51.448872 ], [ 179.189758, 51.467697 ], [ 179.156799, 51.465986 ], [ 179.151306, 51.469408 ], [ 179.143066, 51.469408 ], [ 179.134827, 51.477962 ], [ 179.118347, 51.483093 ], [ 179.107361, 51.483093 ], [ 179.090881, 51.493355 ], [ 179.085388, 51.491645 ], [ 179.082642, 51.498485 ], [ 179.074402, 51.500194 ], [ 179.066162, 51.505323 ], [ 179.066162, 51.510452 ], [ 179.057922, 51.513871 ], [ 179.057922, 51.522416 ], [ 179.046936, 51.525834 ], [ 179.044189, 51.524125 ], [ 179.019470, 51.534377 ], [ 179.019470, 51.542919 ], [ 178.992004, 51.559997 ], [ 178.994751, 51.565120 ], [ 178.989258, 51.566827 ], [ 178.989258, 51.573656 ], [ 178.983765, 51.577070 ], [ 178.989258, 51.578776 ], [ 178.989258, 51.582190 ], [ 178.981018, 51.587310 ], [ 178.964539, 51.589016 ], [ 178.956299, 51.583897 ], [ 178.956299, 51.580483 ], [ 178.928833, 51.582190 ], [ 178.923340, 51.587310 ], [ 178.917847, 51.587310 ], [ 178.912354, 51.594135 ], [ 178.917847, 51.606077 ], [ 178.909607, 51.611195 ], [ 178.901367, 51.611195 ], [ 178.901367, 51.616311 ], [ 178.876648, 51.619722 ], [ 178.871155, 51.623132 ], [ 178.868408, 51.621427 ], [ 178.862915, 51.624837 ], [ 178.860168, 51.621427 ], [ 178.846436, 51.618017 ], [ 178.840942, 51.626543 ], [ 178.824463, 51.623132 ], [ 178.824463, 51.626543 ], [ 178.810730, 51.628248 ], [ 178.805237, 51.635067 ], [ 178.794250, 51.633362 ], [ 178.788757, 51.636772 ], [ 178.783264, 51.633362 ], [ 178.786011, 51.628248 ], [ 178.780518, 51.624837 ], [ 178.777771, 51.629952 ], [ 178.761292, 51.636772 ], [ 178.761292, 51.640181 ], [ 178.758545, 51.646998 ], [ 178.755798, 51.643590 ], [ 178.750305, 51.643590 ], [ 178.747559, 51.638476 ], [ 178.731079, 51.633362 ], [ 178.722839, 51.638476 ], [ 178.717346, 51.638476 ], [ 178.714600, 51.645294 ], [ 178.709106, 51.640181 ], [ 178.703613, 51.640181 ], [ 178.703613, 51.643590 ], [ 178.689880, 51.643590 ], [ 178.681641, 51.648703 ], [ 178.678894, 51.657223 ], [ 178.659668, 51.662334 ] ], [ [ 179.620972, 52.028838 ], [ 179.618225, 52.027149 ], [ 179.615479, 52.018698 ], [ 179.585266, 52.018698 ], [ 179.568787, 52.013627 ], [ 179.549561, 52.000101 ], [ 179.549561, 51.996719 ], [ 179.535828, 51.995028 ], [ 179.533081, 51.986572 ], [ 179.522095, 51.983189 ], [ 179.480896, 51.986572 ], [ 179.475403, 51.983189 ], [ 179.480896, 51.976422 ], [ 179.475403, 51.966269 ], [ 179.486389, 51.962885 ], [ 179.489136, 51.954422 ], [ 179.483643, 51.945958 ], [ 179.469910, 51.944265 ], [ 179.469910, 51.937492 ], [ 179.475403, 51.934105 ], [ 179.475403, 51.925637 ], [ 179.483643, 51.920556 ], [ 179.500122, 51.918862 ], [ 179.513855, 51.912085 ], [ 179.511108, 51.908696 ], [ 179.516602, 51.905307 ], [ 179.516602, 51.898529 ], [ 179.527588, 51.901918 ], [ 179.541321, 51.898529 ], [ 179.541321, 51.895139 ], [ 179.549561, 51.891749 ], [ 179.579773, 51.891749 ], [ 179.579773, 51.886664 ], [ 179.582520, 51.888359 ], [ 179.590759, 51.881578 ], [ 179.601746, 51.881578 ], [ 179.601746, 51.878187 ], [ 179.609985, 51.873100 ], [ 179.634705, 51.873100 ], [ 179.648438, 51.876491 ], [ 179.648438, 51.879882 ], [ 179.656677, 51.879882 ], [ 179.659424, 51.888359 ], [ 179.670410, 51.896834 ], [ 179.681396, 51.896834 ], [ 179.700623, 51.905307 ], [ 179.739075, 51.913779 ], [ 179.736328, 51.917168 ], [ 179.747314, 51.922250 ], [ 179.747314, 51.927331 ], [ 179.733582, 51.930718 ], [ 179.728088, 51.939185 ], [ 179.730835, 51.944265 ], [ 179.744568, 51.949344 ], [ 179.763794, 51.947651 ], [ 179.761047, 51.951037 ], [ 179.772034, 51.957807 ], [ 179.772034, 51.967962 ], [ 179.761047, 51.976422 ], [ 179.736328, 51.976422 ], [ 179.730835, 51.978113 ], [ 179.730835, 51.984880 ], [ 179.708862, 51.988263 ], [ 179.703369, 51.995028 ], [ 179.703369, 52.005174 ], [ 179.686890, 52.010246 ], [ 179.670410, 52.010246 ], [ 179.664917, 52.018698 ], [ 179.653931, 52.025459 ], [ 179.623718, 52.025459 ], [ 179.620972, 52.028838 ] ], [ [ 178.500366, 51.988263 ], [ 178.492126, 51.983189 ], [ 178.481140, 51.983189 ], [ 178.478394, 51.988263 ], [ 178.470154, 51.984880 ], [ 178.461914, 51.988263 ], [ 178.456421, 51.986572 ], [ 178.456421, 51.983189 ], [ 178.461914, 51.981497 ], [ 178.456421, 51.974730 ], [ 178.450928, 51.976422 ], [ 178.450928, 51.971346 ], [ 178.456421, 51.971346 ], [ 178.450928, 51.961192 ], [ 178.461914, 51.959500 ], [ 178.461914, 51.952729 ], [ 178.442688, 51.952729 ], [ 178.445435, 51.951037 ], [ 178.439941, 51.951037 ], [ 178.439941, 51.947651 ], [ 178.434448, 51.947651 ], [ 178.437195, 51.944265 ], [ 178.431702, 51.942572 ], [ 178.453674, 51.939185 ], [ 178.450928, 51.934105 ], [ 178.456421, 51.932412 ], [ 178.456421, 51.929025 ], [ 178.467407, 51.929025 ], [ 178.472900, 51.922250 ], [ 178.481140, 51.918862 ], [ 178.483887, 51.907002 ], [ 178.494873, 51.907002 ], [ 178.497620, 51.900223 ], [ 178.516846, 51.900223 ], [ 178.527832, 51.905307 ], [ 178.538818, 51.903613 ], [ 178.538818, 51.910391 ], [ 178.547058, 51.913779 ], [ 178.544312, 51.918862 ], [ 178.549805, 51.918862 ], [ 178.555298, 51.925637 ], [ 178.566284, 51.927331 ], [ 178.574524, 51.932412 ], [ 178.577271, 51.940879 ], [ 178.588257, 51.945958 ], [ 178.588257, 51.954422 ], [ 178.574524, 51.959500 ], [ 178.569031, 51.969654 ], [ 178.563538, 51.967962 ], [ 178.538818, 51.978113 ], [ 178.511353, 51.981497 ], [ 178.500366, 51.988263 ] ], [ [ 178.113098, 52.047423 ], [ 178.121338, 52.045734 ], [ 178.124084, 52.040666 ], [ 178.115845, 52.040666 ], [ 178.107605, 52.045734 ], [ 178.107605, 52.049112 ], [ 178.102112, 52.044045 ], [ 178.096619, 52.045734 ], [ 178.088379, 52.038977 ], [ 178.088379, 52.033908 ], [ 178.096619, 52.032218 ], [ 178.091125, 52.023769 ], [ 178.096619, 52.020388 ], [ 178.102112, 52.008555 ], [ 178.099365, 52.000101 ], [ 178.096619, 52.000101 ], [ 178.099365, 51.996719 ], [ 178.102112, 52.000101 ], [ 178.107605, 52.000101 ], [ 178.113098, 51.995028 ], [ 178.124084, 51.995028 ], [ 178.129578, 51.988263 ], [ 178.143311, 51.988263 ], [ 178.143311, 51.993337 ], [ 178.170776, 51.991646 ], [ 178.179016, 51.996719 ], [ 178.179016, 52.000101 ], [ 178.190002, 52.003483 ], [ 178.181763, 52.006865 ], [ 178.176270, 52.013627 ], [ 178.176270, 52.037287 ], [ 178.165283, 52.037287 ], [ 178.159790, 52.040666 ], [ 178.162537, 52.042355 ], [ 178.151550, 52.042355 ], [ 178.143311, 52.047423 ], [ 178.146057, 52.052490 ], [ 178.115845, 52.052490 ], [ 178.113098, 52.047423 ] ], [ [ 178.376770, 51.766140 ], [ 178.379517, 51.771239 ], [ 178.376770, 51.769540 ], [ 178.371277, 51.772939 ], [ 178.371277, 51.776338 ], [ 178.360291, 51.781436 ], [ 178.363037, 51.783135 ], [ 178.357544, 51.788232 ], [ 178.343811, 51.789931 ], [ 178.349304, 51.796726 ], [ 178.338318, 51.798424 ], [ 178.332825, 51.810313 ], [ 178.319092, 51.808615 ], [ 178.308105, 51.812011 ], [ 178.308105, 51.815407 ], [ 178.316345, 51.815407 ], [ 178.310852, 51.817105 ], [ 178.313599, 51.820500 ], [ 178.286133, 51.820500 ], [ 178.280640, 51.825593 ], [ 178.277893, 51.822198 ], [ 178.272400, 51.825593 ], [ 178.266907, 51.822198 ], [ 178.250427, 51.823896 ], [ 178.236694, 51.828988 ], [ 178.231201, 51.827291 ], [ 178.228455, 51.834080 ], [ 178.220215, 51.832383 ], [ 178.209229, 51.835778 ], [ 178.200989, 51.832383 ], [ 178.209229, 51.828988 ], [ 178.217468, 51.830686 ], [ 178.220215, 51.820500 ], [ 178.225708, 51.820500 ], [ 178.228455, 51.815407 ], [ 178.250427, 51.815407 ], [ 178.250427, 51.810313 ], [ 178.255920, 51.812011 ], [ 178.275146, 51.805218 ], [ 178.280640, 51.801822 ], [ 178.280640, 51.796726 ], [ 178.286133, 51.796726 ], [ 178.288879, 51.788232 ], [ 178.302612, 51.781436 ], [ 178.308105, 51.774638 ], [ 178.330078, 51.769540 ], [ 178.341064, 51.769540 ], [ 178.349304, 51.772939 ], [ 178.357544, 51.771239 ], [ 178.360291, 51.774638 ], [ 178.365784, 51.774638 ], [ 178.365784, 51.769540 ], [ 178.376770, 51.766140 ] ], [ [ 178.341064, 51.976422 ], [ 178.338318, 51.962885 ], [ 178.330078, 51.962885 ], [ 178.324585, 51.959500 ], [ 178.316345, 51.961192 ], [ 178.319092, 51.957807 ], [ 178.313599, 51.954422 ], [ 178.319092, 51.954422 ], [ 178.319092, 51.947651 ], [ 178.324585, 51.945958 ], [ 178.338318, 51.957807 ], [ 178.349304, 51.956115 ], [ 178.352051, 51.962885 ], [ 178.363037, 51.962885 ], [ 178.357544, 51.966269 ], [ 178.349304, 51.964577 ], [ 178.349304, 51.973038 ], [ 178.341064, 51.976422 ] ], [ [ 178.280640, 51.986572 ], [ 178.275146, 51.983189 ], [ 178.261414, 51.981497 ], [ 178.266907, 51.974730 ], [ 178.275146, 51.974730 ], [ 178.280640, 51.969654 ], [ 178.299866, 51.969654 ], [ 178.302612, 51.971346 ], [ 178.280640, 51.986572 ] ], [ [ 179.324341, 51.419764 ], [ 179.318848, 51.418051 ], [ 179.318848, 51.412912 ], [ 179.329834, 51.416338 ], [ 179.324341, 51.419764 ] ], [ [ 178.626709, 51.662334 ], [ 178.634949, 51.660630 ], [ 178.637695, 51.657223 ], [ 178.637695, 51.664038 ], [ 178.629456, 51.664038 ], [ 178.626709, 51.662334 ] ], [ [ 178.310852, 51.967962 ], [ 178.308105, 51.962885 ], [ 178.313599, 51.962885 ], [ 178.310852, 51.967962 ] ] ] } } +{ "type": "Feature", "properties": { "CLASS": 102, "QCLASS": 102, "SOURCE": "RI001", "NSACLASS": 102, "NSASUB": 0, "SOURCECLAS": "RI001_102", "STATE_SYMB": 300, "STATE_UNIT": "Water", "AGE_RANGE": "Holocene", "SEQUENCE": "A002", "SHAPE_Leng": 932926.369371, "SHAPE_Area": 14738675833 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 179.994507, 52.249665 ], [ 180.000000, 51.375209 ], [ 180.000000, 51.249882 ], [ 177.994995, 51.249882 ], [ 177.994995, 52.249665 ], [ 179.994507, 52.249665 ] ], [ [ 178.659668, 51.662334 ], [ 178.643188, 51.657223 ], [ 178.643188, 51.648703 ], [ 178.634949, 51.641885 ], [ 178.621216, 51.641885 ], [ 178.615723, 51.636772 ], [ 178.623962, 51.638476 ], [ 178.626709, 51.633362 ], [ 178.632202, 51.631657 ], [ 178.629456, 51.624837 ], [ 178.634949, 51.624837 ], [ 178.637695, 51.621427 ], [ 178.656921, 51.621427 ], [ 178.659668, 51.618017 ], [ 178.665161, 51.618017 ], [ 178.662415, 51.616311 ], [ 178.670654, 51.611195 ], [ 178.684387, 51.611195 ], [ 178.689880, 51.602666 ], [ 178.700867, 51.599254 ], [ 178.698120, 51.592429 ], [ 178.714600, 51.594135 ], [ 178.717346, 51.590723 ], [ 178.722839, 51.592429 ], [ 178.739319, 51.585603 ], [ 178.761292, 51.589016 ], [ 178.758545, 51.583897 ], [ 178.764038, 51.577070 ], [ 178.769531, 51.573656 ], [ 178.783264, 51.571949 ], [ 178.796997, 51.578776 ], [ 178.796997, 51.575363 ], [ 178.805237, 51.578776 ], [ 178.821716, 51.575363 ], [ 178.827209, 51.580483 ], [ 178.843689, 51.578776 ], [ 178.854675, 51.570241 ], [ 178.849182, 51.563412 ], [ 178.862915, 51.561705 ], [ 178.865662, 51.566827 ], [ 178.879395, 51.570241 ], [ 178.879395, 51.559997 ], [ 178.893127, 51.559997 ], [ 178.890381, 51.554874 ], [ 178.901367, 51.554874 ], [ 178.912354, 51.544627 ], [ 178.915100, 51.548043 ], [ 178.931580, 51.548043 ], [ 178.950806, 51.542919 ], [ 178.953552, 51.536086 ], [ 178.959045, 51.536086 ], [ 178.967285, 51.530960 ], [ 178.964539, 51.522416 ], [ 178.994751, 51.505323 ], [ 179.008484, 51.501904 ], [ 179.016724, 51.496775 ], [ 179.013977, 51.493355 ], [ 179.019470, 51.489935 ], [ 179.030457, 51.488224 ], [ 179.030457, 51.483093 ], [ 179.035950, 51.483093 ], [ 179.030457, 51.476251 ], [ 179.041443, 51.469408 ], [ 179.052429, 51.467697 ], [ 179.049683, 51.462564 ], [ 179.057922, 51.454007 ], [ 179.063416, 51.455718 ], [ 179.079895, 51.445449 ], [ 179.088135, 51.447160 ], [ 179.090881, 51.442025 ], [ 179.099121, 51.440313 ], [ 179.104614, 51.433464 ], [ 179.123840, 51.428327 ], [ 179.134827, 51.418051 ], [ 179.140320, 51.419764 ], [ 179.159546, 51.414625 ], [ 179.156799, 51.409486 ], [ 179.162292, 51.406059 ], [ 179.165039, 51.407773 ], [ 179.167786, 51.397492 ], [ 179.176025, 51.397492 ], [ 179.181519, 51.394065 ], [ 179.197998, 51.395778 ], [ 179.225464, 51.387209 ], [ 179.225464, 51.380353 ], [ 179.217224, 51.378638 ], [ 179.217224, 51.371780 ], [ 179.208984, 51.370066 ], [ 179.208984, 51.361492 ], [ 179.230957, 51.354631 ], [ 179.236450, 51.349485 ], [ 179.258423, 51.358062 ], [ 179.302368, 51.364921 ], [ 179.318848, 51.363207 ], [ 179.318848, 51.359777 ], [ 179.324341, 51.361492 ], [ 179.324341, 51.364921 ], [ 179.349060, 51.368351 ], [ 179.351807, 51.371780 ], [ 179.354553, 51.370066 ], [ 179.382019, 51.378638 ], [ 179.393005, 51.375209 ], [ 179.382019, 51.368351 ], [ 179.387512, 51.358062 ], [ 179.398499, 51.361492 ], [ 179.425964, 51.363207 ], [ 179.431458, 51.370066 ], [ 179.445190, 51.366636 ], [ 179.458923, 51.373495 ], [ 179.464417, 51.371780 ], [ 179.461670, 51.376924 ], [ 179.453430, 51.375209 ], [ 179.439697, 51.383781 ], [ 179.406738, 51.383781 ], [ 179.398499, 51.400919 ], [ 179.401245, 51.407773 ], [ 179.387512, 51.412912 ], [ 179.384766, 51.406059 ], [ 179.371033, 51.400919 ], [ 179.362793, 51.400919 ], [ 179.362793, 51.404346 ], [ 179.351807, 51.402633 ], [ 179.349060, 51.406059 ], [ 179.335327, 51.406059 ], [ 179.291382, 51.392351 ], [ 179.277649, 51.390637 ], [ 179.272156, 51.402633 ], [ 179.291382, 51.407773 ], [ 179.296875, 51.418051 ], [ 179.277649, 51.414625 ], [ 179.263916, 51.406059 ], [ 179.258423, 51.409486 ], [ 179.247437, 51.407773 ], [ 179.233704, 51.411199 ], [ 179.228210, 51.414625 ], [ 179.233704, 51.421477 ], [ 179.228210, 51.424902 ], [ 179.211731, 51.421477 ], [ 179.211731, 51.424902 ], [ 179.219971, 51.424902 ], [ 179.214478, 51.428327 ], [ 179.219971, 51.435176 ], [ 179.214478, 51.436889 ], [ 179.214478, 51.442025 ], [ 179.203491, 51.443737 ], [ 179.203491, 51.447160 ], [ 179.189758, 51.448872 ], [ 179.189758, 51.467697 ], [ 179.156799, 51.465986 ], [ 179.151306, 51.469408 ], [ 179.143066, 51.469408 ], [ 179.134827, 51.477962 ], [ 179.118347, 51.483093 ], [ 179.107361, 51.483093 ], [ 179.090881, 51.493355 ], [ 179.085388, 51.491645 ], [ 179.082642, 51.498485 ], [ 179.074402, 51.500194 ], [ 179.066162, 51.505323 ], [ 179.066162, 51.510452 ], [ 179.057922, 51.513871 ], [ 179.057922, 51.522416 ], [ 179.046936, 51.525834 ], [ 179.044189, 51.524125 ], [ 179.019470, 51.534377 ], [ 179.019470, 51.542919 ], [ 178.992004, 51.559997 ], [ 178.994751, 51.565120 ], [ 178.989258, 51.566827 ], [ 178.989258, 51.573656 ], [ 178.983765, 51.577070 ], [ 178.989258, 51.578776 ], [ 178.989258, 51.582190 ], [ 178.981018, 51.587310 ], [ 178.964539, 51.589016 ], [ 178.956299, 51.583897 ], [ 178.956299, 51.580483 ], [ 178.928833, 51.582190 ], [ 178.923340, 51.587310 ], [ 178.917847, 51.587310 ], [ 178.912354, 51.594135 ], [ 178.917847, 51.606077 ], [ 178.909607, 51.611195 ], [ 178.901367, 51.611195 ], [ 178.901367, 51.616311 ], [ 178.876648, 51.619722 ], [ 178.871155, 51.623132 ], [ 178.868408, 51.621427 ], [ 178.862915, 51.624837 ], [ 178.860168, 51.621427 ], [ 178.846436, 51.618017 ], [ 178.840942, 51.626543 ], [ 178.824463, 51.623132 ], [ 178.824463, 51.626543 ], [ 178.810730, 51.628248 ], [ 178.805237, 51.635067 ], [ 178.794250, 51.633362 ], [ 178.788757, 51.636772 ], [ 178.783264, 51.633362 ], [ 178.786011, 51.628248 ], [ 178.780518, 51.624837 ], [ 178.777771, 51.629952 ], [ 178.761292, 51.636772 ], [ 178.761292, 51.640181 ], [ 178.758545, 51.646998 ], [ 178.755798, 51.643590 ], [ 178.750305, 51.643590 ], [ 178.747559, 51.638476 ], [ 178.731079, 51.633362 ], [ 178.722839, 51.638476 ], [ 178.717346, 51.638476 ], [ 178.714600, 51.645294 ], [ 178.709106, 51.640181 ], [ 178.703613, 51.640181 ], [ 178.703613, 51.643590 ], [ 178.689880, 51.643590 ], [ 178.681641, 51.648703 ], [ 178.678894, 51.657223 ], [ 178.659668, 51.662334 ] ], [ [ 179.620972, 52.028838 ], [ 179.618225, 52.027149 ], [ 179.615479, 52.018698 ], [ 179.585266, 52.018698 ], [ 179.568787, 52.013627 ], [ 179.549561, 52.000101 ], [ 179.549561, 51.996719 ], [ 179.535828, 51.995028 ], [ 179.533081, 51.986572 ], [ 179.522095, 51.983189 ], [ 179.480896, 51.986572 ], [ 179.475403, 51.983189 ], [ 179.480896, 51.976422 ], [ 179.475403, 51.966269 ], [ 179.486389, 51.962885 ], [ 179.489136, 51.954422 ], [ 179.483643, 51.945958 ], [ 179.469910, 51.944265 ], [ 179.469910, 51.937492 ], [ 179.475403, 51.934105 ], [ 179.475403, 51.925637 ], [ 179.483643, 51.920556 ], [ 179.500122, 51.918862 ], [ 179.513855, 51.912085 ], [ 179.511108, 51.908696 ], [ 179.516602, 51.905307 ], [ 179.516602, 51.898529 ], [ 179.527588, 51.901918 ], [ 179.541321, 51.898529 ], [ 179.541321, 51.895139 ], [ 179.549561, 51.891749 ], [ 179.579773, 51.891749 ], [ 179.579773, 51.886664 ], [ 179.582520, 51.888359 ], [ 179.590759, 51.881578 ], [ 179.601746, 51.881578 ], [ 179.601746, 51.878187 ], [ 179.609985, 51.873100 ], [ 179.634705, 51.873100 ], [ 179.648438, 51.876491 ], [ 179.648438, 51.879882 ], [ 179.656677, 51.879882 ], [ 179.659424, 51.888359 ], [ 179.670410, 51.896834 ], [ 179.681396, 51.896834 ], [ 179.700623, 51.905307 ], [ 179.739075, 51.913779 ], [ 179.736328, 51.917168 ], [ 179.747314, 51.922250 ], [ 179.747314, 51.927331 ], [ 179.733582, 51.930718 ], [ 179.728088, 51.939185 ], [ 179.730835, 51.944265 ], [ 179.744568, 51.949344 ], [ 179.763794, 51.947651 ], [ 179.761047, 51.951037 ], [ 179.772034, 51.957807 ], [ 179.772034, 51.967962 ], [ 179.761047, 51.976422 ], [ 179.736328, 51.976422 ], [ 179.730835, 51.978113 ], [ 179.730835, 51.984880 ], [ 179.708862, 51.988263 ], [ 179.703369, 51.995028 ], [ 179.703369, 52.005174 ], [ 179.686890, 52.010246 ], [ 179.670410, 52.010246 ], [ 179.664917, 52.018698 ], [ 179.653931, 52.025459 ], [ 179.623718, 52.025459 ], [ 179.620972, 52.028838 ] ], [ [ 178.500366, 51.988263 ], [ 178.492126, 51.983189 ], [ 178.481140, 51.983189 ], [ 178.478394, 51.988263 ], [ 178.470154, 51.984880 ], [ 178.461914, 51.988263 ], [ 178.456421, 51.986572 ], [ 178.456421, 51.983189 ], [ 178.461914, 51.981497 ], [ 178.456421, 51.974730 ], [ 178.450928, 51.976422 ], [ 178.450928, 51.971346 ], [ 178.456421, 51.971346 ], [ 178.450928, 51.961192 ], [ 178.461914, 51.959500 ], [ 178.461914, 51.952729 ], [ 178.442688, 51.952729 ], [ 178.445435, 51.951037 ], [ 178.439941, 51.951037 ], [ 178.439941, 51.947651 ], [ 178.434448, 51.947651 ], [ 178.437195, 51.944265 ], [ 178.431702, 51.942572 ], [ 178.453674, 51.939185 ], [ 178.450928, 51.934105 ], [ 178.456421, 51.932412 ], [ 178.456421, 51.929025 ], [ 178.467407, 51.929025 ], [ 178.472900, 51.922250 ], [ 178.481140, 51.918862 ], [ 178.483887, 51.907002 ], [ 178.494873, 51.907002 ], [ 178.497620, 51.900223 ], [ 178.516846, 51.900223 ], [ 178.527832, 51.905307 ], [ 178.538818, 51.903613 ], [ 178.538818, 51.910391 ], [ 178.547058, 51.913779 ], [ 178.544312, 51.918862 ], [ 178.549805, 51.918862 ], [ 178.555298, 51.925637 ], [ 178.566284, 51.927331 ], [ 178.574524, 51.932412 ], [ 178.577271, 51.940879 ], [ 178.588257, 51.945958 ], [ 178.588257, 51.954422 ], [ 178.574524, 51.959500 ], [ 178.569031, 51.969654 ], [ 178.563538, 51.967962 ], [ 178.538818, 51.978113 ], [ 178.511353, 51.981497 ], [ 178.500366, 51.988263 ] ], [ [ 178.113098, 52.047423 ], [ 178.121338, 52.045734 ], [ 178.124084, 52.040666 ], [ 178.115845, 52.040666 ], [ 178.107605, 52.045734 ], [ 178.107605, 52.049112 ], [ 178.102112, 52.044045 ], [ 178.096619, 52.045734 ], [ 178.088379, 52.038977 ], [ 178.088379, 52.033908 ], [ 178.096619, 52.032218 ], [ 178.091125, 52.023769 ], [ 178.096619, 52.020388 ], [ 178.102112, 52.008555 ], [ 178.099365, 52.000101 ], [ 178.096619, 52.000101 ], [ 178.099365, 51.996719 ], [ 178.102112, 52.000101 ], [ 178.107605, 52.000101 ], [ 178.113098, 51.995028 ], [ 178.124084, 51.995028 ], [ 178.129578, 51.988263 ], [ 178.143311, 51.988263 ], [ 178.143311, 51.993337 ], [ 178.170776, 51.991646 ], [ 178.179016, 51.996719 ], [ 178.179016, 52.000101 ], [ 178.190002, 52.003483 ], [ 178.181763, 52.006865 ], [ 178.176270, 52.013627 ], [ 178.176270, 52.037287 ], [ 178.165283, 52.037287 ], [ 178.159790, 52.040666 ], [ 178.162537, 52.042355 ], [ 178.151550, 52.042355 ], [ 178.143311, 52.047423 ], [ 178.146057, 52.052490 ], [ 178.115845, 52.052490 ], [ 178.113098, 52.047423 ] ], [ [ 178.376770, 51.769540 ], [ 178.371277, 51.772939 ], [ 178.371277, 51.776338 ], [ 178.360291, 51.781436 ], [ 178.363037, 51.783135 ], [ 178.357544, 51.788232 ], [ 178.343811, 51.789931 ], [ 178.349304, 51.796726 ], [ 178.338318, 51.798424 ], [ 178.332825, 51.810313 ], [ 178.319092, 51.808615 ], [ 178.308105, 51.812011 ], [ 178.308105, 51.815407 ], [ 178.316345, 51.815407 ], [ 178.310852, 51.817105 ], [ 178.313599, 51.820500 ], [ 178.286133, 51.820500 ], [ 178.280640, 51.825593 ], [ 178.277893, 51.822198 ], [ 178.272400, 51.825593 ], [ 178.266907, 51.822198 ], [ 178.250427, 51.823896 ], [ 178.236694, 51.828988 ], [ 178.231201, 51.827291 ], [ 178.228455, 51.834080 ], [ 178.220215, 51.832383 ], [ 178.209229, 51.835778 ], [ 178.200989, 51.832383 ], [ 178.209229, 51.828988 ], [ 178.217468, 51.830686 ], [ 178.220215, 51.820500 ], [ 178.225708, 51.820500 ], [ 178.228455, 51.815407 ], [ 178.250427, 51.815407 ], [ 178.250427, 51.810313 ], [ 178.255920, 51.812011 ], [ 178.275146, 51.805218 ], [ 178.280640, 51.801822 ], [ 178.280640, 51.796726 ], [ 178.286133, 51.796726 ], [ 178.288879, 51.788232 ], [ 178.302612, 51.781436 ], [ 178.308105, 51.774638 ], [ 178.330078, 51.769540 ], [ 178.341064, 51.769540 ], [ 178.349304, 51.772939 ], [ 178.357544, 51.771239 ], [ 178.360291, 51.774638 ], [ 178.365784, 51.774638 ], [ 178.365784, 51.769540 ], [ 178.376770, 51.766140 ], [ 178.376770, 51.769540 ] ], [ [ 178.341064, 51.976422 ], [ 178.338318, 51.962885 ], [ 178.330078, 51.962885 ], [ 178.324585, 51.959500 ], [ 178.316345, 51.961192 ], [ 178.319092, 51.957807 ], [ 178.313599, 51.954422 ], [ 178.319092, 51.954422 ], [ 178.319092, 51.947651 ], [ 178.324585, 51.945958 ], [ 178.338318, 51.957807 ], [ 178.349304, 51.956115 ], [ 178.352051, 51.962885 ], [ 178.363037, 51.962885 ], [ 178.357544, 51.966269 ], [ 178.349304, 51.964577 ], [ 178.349304, 51.973038 ], [ 178.341064, 51.976422 ] ], [ [ 178.280640, 51.986572 ], [ 178.275146, 51.983189 ], [ 178.261414, 51.981497 ], [ 178.266907, 51.974730 ], [ 178.275146, 51.974730 ], [ 178.280640, 51.969654 ], [ 178.299866, 51.969654 ], [ 178.302612, 51.971346 ], [ 178.280640, 51.986572 ] ], [ [ 179.324341, 51.419764 ], [ 179.318848, 51.418051 ], [ 179.318848, 51.412912 ], [ 179.329834, 51.416338 ], [ 179.324341, 51.419764 ] ], [ [ 178.626709, 51.662334 ], [ 178.634949, 51.660630 ], [ 178.637695, 51.657223 ], [ 178.637695, 51.664038 ], [ 178.629456, 51.664038 ], [ 178.626709, 51.662334 ] ], [ [ 178.310852, 51.967962 ], [ 178.308105, 51.962885 ], [ 178.313599, 51.962885 ], [ 178.310852, 51.967962 ] ] ] } } ] } ] } ] } diff --git a/tests/wyalkatchem/out/-pk_-pf_-Z9_-z12_-ldata.json b/tests/wyalkatchem/out/-pk_-pf_-Z9_-z12_-ldata.json index d253597e1..825a56e16 100644 --- a/tests/wyalkatchem/out/-pk_-pf_-Z9_-z12_-ldata.json +++ b/tests/wyalkatchem/out/-pk_-pf_-Z9_-z12_-ldata.json @@ -3,6 +3,7 @@ "center": "117.290039,-31.391150,12", "description": "tests/wyalkatchem/out/-pk_-pf_-Z9_-z12_-ldata.json.check.mbtiles", "format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/wyalkatchem/out/-pk_-pf_-Z9_-z12_-ldata.json.check.mbtiles -pk -pf -Z9 -z12 -ldata tests/wyalkatchem/in.json", "json": "{\"vector_layers\": [ { \"id\": \"data\", \"description\": \"\", \"minzoom\": 9, \"maxzoom\": 12, \"fields\": {\"country\": \"String\", \"text\": \"String\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"data\",\"count\": 1,\"geometry\": \"Polygon\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"country\",\"count\": 1,\"type\": \"string\",\"values\": [\"au\"]},{\"attribute\": \"text\",\"count\": 1,\"type\": \"string\",\"values\": [\"Wyalkatchem\"]}]}]}}", "maxzoom": "12", "minzoom": "9", diff --git a/text.cpp b/text.cpp index d7473fe3e..c97295c6c 100644 --- a/text.cpp +++ b/text.cpp @@ -127,9 +127,45 @@ std::string truncate16(std::string const &s, size_t runes) { int integer_zoom(std::string where, std::string text) { double d = atof(text.c_str()); - if (!isnormal(d) || d != floor(d) || d < 0 || d > 32) { + if (!isfinite(d) || d != floor(d) || d < 0 || d > 32) { fprintf(stderr, "%s: Expected integer zoom level in \"tippecanoe\" GeoJSON extension, not %s\n", where.c_str(), text.c_str()); exit(EXIT_FAILURE); } return d; } + +std::string format_commandline(int argc, char **argv) { + std::string out; + + for (int i = 0; i < argc; i++) { + bool need_quote = false; + for (char *cp = argv[i]; *cp != '\0'; cp++) { + if (!isalpha(*cp) && !isdigit(*cp) && + *cp != '/' && *cp != '-' && *cp != '_' && *cp != '@' && *cp != ':' && + *cp != '.' && *cp != '%' && *cp != ',') { + need_quote = true; + break; + } + } + + if (need_quote) { + out.push_back('\''); + for (char *cp = argv[i]; *cp != '\0'; cp++) { + if (*cp == '\'') { + out.append("'\"'\"'"); + } else { + out.push_back(*cp); + } + } + out.push_back('\''); + } else { + out.append(argv[i]); + } + + if (i + 1 < argc) { + out.push_back(' '); + } + } + + return out; +} diff --git a/text.hpp b/text.hpp index 6f339d267..94e41f2ca 100644 --- a/text.hpp +++ b/text.hpp @@ -7,5 +7,6 @@ std::string check_utf8(std::string text); const char *utf8_next(const char *s, long *c); std::string truncate16(std::string const &s, size_t runes); int integer_zoom(std::string where, std::string text); +std::string format_commandline(int argc, char **argv); #endif diff --git a/tile-join.cpp b/tile-join.cpp index 177fc5fe8..25e63ef7f 100644 --- a/tile-join.cpp +++ b/tile-join.cpp @@ -29,6 +29,7 @@ #include "dirtiles.hpp" #include "evaluator.hpp" #include "csv.hpp" +#include "text.hpp" #include #include #include @@ -363,6 +364,7 @@ struct reader { std::vector dirtiles; std::string dirbase; + std::string name; sqlite3 *db = NULL; sqlite3_stmt *stmt = NULL; @@ -400,14 +402,15 @@ struct reader { struct reader *begin_reading(char *fname) { struct reader *r = new reader; - struct stat st; + r->name = fname; + struct stat st; if (stat(fname, &st) == 0 && (st.st_mode & S_IFDIR) != 0) { r->db = NULL; r->stmt = NULL; r->next = NULL; - r->dirtiles = enumerate_dirtiles(fname); + r->dirtiles = enumerate_dirtiles(fname, minzoom, maxzoom); r->dirbase = fname; if (r->dirtiles.size() == 0) { @@ -617,7 +620,7 @@ void handle_vector_layers(json_object *vector_layers, std::map &layermap, sqlite3 *outdb, const char *outdir, struct stats *st, std::vector &header, std::map> &mapping, std::set &exclude, int ifmatched, std::string &attribution, std::string &description, std::set &keep_layers, std::set &remove_layers, std::string &name, json_object *filter, std::map &attribute_descriptions) { +void decode(struct reader *readers, std::map &layermap, sqlite3 *outdb, const char *outdir, struct stats *st, std::vector &header, std::map> &mapping, std::set &exclude, int ifmatched, std::string &attribution, std::string &description, std::set &keep_layers, std::set &remove_layers, std::string &name, json_object *filter, std::map &attribute_descriptions, std::string &generator_options) { std::vector> layermaps; for (size_t i = 0; i < CPUS; i++) { layermaps.push_back(std::map()); @@ -735,6 +738,11 @@ void decode(struct reader *readers, std::map &layer if (sqlite3_prepare_v2(db, "SELECT value from metadata where name = 'maxzoom'", -1, &r->stmt, NULL) == SQLITE_OK) { if (sqlite3_step(r->stmt) == SQLITE_ROW) { int maxz = min(sqlite3_column_int(r->stmt, 0), maxzoom); + + if (st->maxzoom >= 0 && maxz != st->maxzoom) { + fprintf(stderr, "Warning: mismatched maxzooms: %d in %s vs previous %d\n", maxz, r->name.c_str(), st->maxzoom); + } + st->maxzoom = max(st->maxzoom, maxz); } sqlite3_finalize(r->stmt); @@ -817,6 +825,20 @@ void decode(struct reader *readers, std::map &layer sqlite3_finalize(r->stmt); } + if (sqlite3_prepare_v2(db, "SELECT value from metadata where name = 'generator_options'", -1, &r->stmt, NULL) == SQLITE_OK) { + if (sqlite3_step(r->stmt) == SQLITE_ROW) { + const unsigned char *s = sqlite3_column_text(r->stmt, 0); + if (s != NULL) { + if (generator_options.size() != 0) { + generator_options.append("; "); + generator_options.append((const char *) s); + } else { + generator_options = (const char *) s; + } + } + } + sqlite3_finalize(r->stmt); + } // Closes either real db or temp mirror of metadata.json if (sqlite3_close(db) != SQLITE_OK) { @@ -905,6 +927,8 @@ int main(int argc, char **argv) { extern char *optarg; int i; + std::string commandline = format_commandline(argc, argv); + while ((i = getopt_long(argc, argv, getopt_str.c_str(), long_options, NULL)) != -1) { switch (i) { case 0: @@ -1042,7 +1066,7 @@ int main(int argc, char **argv) { outdb = mbtiles_open(out_mbtiles, argv, 0); } if (out_dir != NULL) { - check_dir(out_dir, force, false); + check_dir(out_dir, argv, force, false); } struct stats st; @@ -1072,8 +1096,9 @@ int main(int argc, char **argv) { } std::map attribute_descriptions; + std::string generator_options; - decode(readers, layermap, outdb, out_dir, &st, header, mapping, exclude, ifmatched, attribution, description, keep_layers, remove_layers, name, filter, attribute_descriptions); + decode(readers, layermap, outdb, out_dir, &st, header, mapping, exclude, ifmatched, attribution, description, keep_layers, remove_layers, name, filter, attribute_descriptions, generator_options); if (set_attribution.size() != 0) { attribution = set_attribution; @@ -1085,7 +1110,21 @@ int main(int argc, char **argv) { name = set_name; } - mbtiles_write_metadata(outdb, out_dir, name.c_str(), st.minzoom, st.maxzoom, st.minlat, st.minlon, st.maxlat, st.maxlon, st.midlat, st.midlon, 0, attribution.size() != 0 ? attribution.c_str() : NULL, layermap, true, description.c_str(), !pg, attribute_descriptions, "tile-join"); + if (generator_options.size() != 0) { + generator_options.append("; "); + } + generator_options.append(commandline); + + for (auto &l : layermap) { + if (l.second.minzoom < st.minzoom) { + st.minzoom = l.second.minzoom; + } + if (l.second.maxzoom > st.maxzoom) { + st.maxzoom = l.second.maxzoom; + } + } + + mbtiles_write_metadata(outdb, out_dir, name.c_str(), st.minzoom, st.maxzoom, st.minlat, st.minlon, st.maxlat, st.maxlon, st.midlat, st.midlon, 0, attribution.size() != 0 ? attribution.c_str() : NULL, layermap, true, description.c_str(), !pg, attribute_descriptions, "tile-join", generator_options); if (outdb != NULL) { mbtiles_close(outdb, argv[0]); diff --git a/tile.cpp b/tile.cpp index 23be1c780..cf419825a 100644 --- a/tile.cpp +++ b/tile.cpp @@ -48,6 +48,10 @@ extern "C" { #define CMD_BITS 3 +// Offset coordinates to keep them positive +#define COORD_OFFSET (4LL << 32) +#define SHIFT_RIGHT(a) ((((a) + COORD_OFFSET) >> geometry_scale) - (COORD_OFFSET >> geometry_scale)) + #define XSTRINGIFY(s) STRINGIFY(s) #define STRINGIFY(s) #s @@ -284,7 +288,7 @@ void rewrite(drawvec &geom, int z, int nextzoom, int maxzoom, long long *bbox, u drawvec geom2; for (size_t i = 0; i < geom.size(); i++) { - geom2.push_back(draw(geom[i].op, (geom[i].x + sx) >> geometry_scale, (geom[i].y + sy) >> geometry_scale)); + geom2.push_back(draw(geom[i].op, SHIFT_RIGHT(geom[i].x + sx), SHIFT_RIGHT(geom[i].y + sy))); } for (xo = bbox2[0]; xo <= bbox2[2]; xo++) { @@ -344,13 +348,18 @@ void rewrite(drawvec &geom, int z, int nextzoom, int maxzoom, long long *bbox, u } } - serialize_feature(geomfile[j], &sf, &geompos[j], fname, initial_x[segment] >> geometry_scale, initial_y[segment] >> geometry_scale, true); + serialize_feature(geomfile[j], &sf, &geompos[j], fname, SHIFT_RIGHT(initial_x[segment]), SHIFT_RIGHT(initial_y[segment]), true); } } } } } +struct accum_state { + double sum = 0; + double count = 0; +}; + struct partial { std::vector geoms = std::vector(); std::vector keys = std::vector(); @@ -375,12 +384,14 @@ struct partial { long long extent = 0; long long clustered = 0; std::set need_tilestats; + std::map attribute_accum_state; }; struct partial_arg { std::vector *partials = NULL; int task = 0; int tasks = 0; + drawvec *shared_nodes; }; drawvec revive_polygon(drawvec &geom, double area, int z, int detail) { @@ -464,7 +475,7 @@ void *partial_feature_worker(void *v) { } if (!already_marked) { - drawvec ngeom = simplify_lines(geom, z, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), (*partials)[i].simplification, t == VT_POLYGON ? 4 : 0); + drawvec ngeom = simplify_lines(geom, z, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), (*partials)[i].simplification, t == VT_POLYGON ? 4 : 0, *(a->shared_nodes)); if (t != VT_POLYGON || ngeom.size() >= 3) { geom = ngeom; @@ -898,7 +909,7 @@ bool find_common_edges(std::vector &partials, int z, int line_detail, d } } if (!(prevent[P_SIMPLIFY] || (z == maxzoom && prevent[P_SIMPLIFY_LOW]) || (z < maxzoom && additional[A_GRID_LOW_ZOOMS]))) { - simplified_arcs[ai->second] = simplify_lines(dv, z, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, 4); + simplified_arcs[ai->second] = simplify_lines(dv, z, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, 4, drawvec()); } else { simplified_arcs[ai->second] = dv; } @@ -1214,9 +1225,6 @@ struct write_tile_args { bool clip_to_tile(serial_feature &sf, int z, long long buffer) { int quick = quick_check(sf.bbox, z, buffer); - if (quick == 0) { - return true; - } if (z == 0) { if (sf.bbox[0] <= (1LL << 32) * buffer / 256 || sf.bbox[2] >= (1LL << 32) - ((1LL << 32) * buffer / 256)) { @@ -1244,6 +1252,10 @@ bool clip_to_tile(serial_feature &sf, int z, long long buffer) { } } + if (quick == 0) { + return true; + } + // Can't accept the quick check if guaranteeing no duplication, since the // overlap might have been in the buffer. if (quick != 1 || prevent[P_DUPLICATION]) { @@ -1554,12 +1566,7 @@ void add_tilestats(std::string const &layername, int z, std::vectorsecond.file_keys, key, attrib); } -struct accum_state { - double sum = 0; - double count = 0; -}; - -void preserve_attribute(attribute_op op, std::map &attribute_accum_state, serial_feature &, char *stringpool, long long *pool_off, std::string &key, serial_val &val, partial &p) { +void preserve_attribute(attribute_op op, serial_feature &, char *stringpool, long long *pool_off, std::string &key, serial_val &val, partial &p) { if (p.need_tilestats.count(key) == 0) { p.need_tilestats.insert(key); } @@ -1617,12 +1624,12 @@ void preserve_attribute(attribute_op op, std::map &att } case op_mean: { - auto state = attribute_accum_state.find(key); - if (state == attribute_accum_state.end()) { + auto state = p.attribute_accum_state.find(key); + if (state == p.attribute_accum_state.end()) { accum_state s; s.sum = atof(p.full_values[i].s.c_str()) + atof(val.s.c_str()); s.count = 2; - attribute_accum_state.insert(std::pair(key, s)); + p.attribute_accum_state.insert(std::pair(key, s)); p.full_values[i].s = milo::dtoa_milo(s.sum / s.count); } else { @@ -1648,7 +1655,7 @@ void preserve_attribute(attribute_op op, std::map &att } } -void preserve_attributes(std::map const *attribute_accum, std::map &attribute_accum_state, serial_feature &sf, char *stringpool, long long *pool_off, partial &p) { +void preserve_attributes(std::map const *attribute_accum, serial_feature &sf, char *stringpool, long long *pool_off, partial &p) { for (size_t i = 0; i < sf.keys.size(); i++) { std::string key = stringpool + pool_off[sf.segment] + sf.keys[i] + 1; @@ -1658,7 +1665,7 @@ void preserve_attributes(std::map const *attribute_ac auto f = attribute_accum->find(key); if (f != attribute_accum->end()) { - preserve_attribute(f->second, attribute_accum_state, sf, stringpool, pool_off, key, sv, p); + preserve_attribute(f->second, sf, stringpool, pool_off, key, sv, p); } } for (size_t i = 0; i < sf.full_keys.size(); i++) { @@ -1667,7 +1674,7 @@ void preserve_attributes(std::map const *attribute_ac auto f = attribute_accum->find(key); if (f != attribute_accum->end()) { - preserve_attribute(f->second, attribute_accum_state, sf, stringpool, pool_off, key, sv, p); + preserve_attribute(f->second, sf, stringpool, pool_off, key, sv, p); } } } @@ -1688,6 +1695,26 @@ bool find_partial(std::vector &partials, serial_feature &sf, ssize_t &o return false; } +static bool line_is_too_small(drawvec const &geometry, int z, int detail) { + if (geometry.size() == 0) { + return true; + } + + long long x = geometry[0].x >> (32 - detail - z); + long long y = geometry[0].y >> (32 - detail - z); + + for (auto &g : geometry) { + long long xx = g.x >> (32 - detail - z); + long long yy = g.y >> (32 - detail - z); + + if (xx != x || yy != y) { + return false; + } + } + + return true; +} + long long write_tile(FILE *geoms, std::atomic *geompos_in, char *metabase, char *stringpool, int z, unsigned tx, unsigned ty, int detail, int min_detail, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, FILE **geomfile, int minzoom, int maxzoom, double todo, std::atomic *along, long long alongminus, double gamma, int child_shards, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y, std::atomic *running, double simplification, std::vector> *layermaps, std::vector> *layer_unmaps, size_t tiling_seg, size_t pass, size_t passes, unsigned long long mingap, long long minextent, double fraction, const char *prefilter, const char *postfilter, struct json_object *filter, write_tile_args *arg) { int line_detail; double merge_fraction = 1; @@ -1740,8 +1767,8 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta std::map> layers; std::vector indices; std::vector extents; - std::map attribute_accum_state; double coalesced_area = 0; + drawvec shared_nodes; int within[child_shards]; std::atomic geompos[child_shards]; @@ -1766,6 +1793,11 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta FILE *prefilter_read_fp = NULL; json_pull *prefilter_jp = NULL; + if (z < minzoom) { + prefilter = NULL; + postfilter = NULL; + } + if (prefilter != NULL) { setup_filter(prefilter, &prefilter_write, &prefilter_read, &prefilter_pid, z, tx, ty); prefilter_fp = fdopen(prefilter_write, "w"); @@ -1837,14 +1869,14 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta if (sf.dropped) { if (find_partial(partials, sf, which_partial, layer_unmaps)) { - preserve_attributes(arg->attribute_accum, attribute_accum_state, sf, stringpool, pool_off, partials[which_partial]); + preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); continue; } } if (gamma > 0) { if (manage_gap(sf.index, &previndex, scale, gamma, &gap) && find_partial(partials, sf, which_partial, layer_unmaps)) { - preserve_attributes(arg->attribute_accum, attribute_accum_state, sf, stringpool, pool_off, partials[which_partial]); + preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); continue; } } @@ -1866,13 +1898,13 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta partials[which_partial].geoms[0][0].y = y / (partials[which_partial].clustered + 1); } - preserve_attributes(arg->attribute_accum, attribute_accum_state, sf, stringpool, pool_off, partials[which_partial]); + preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); continue; } } else if (additional[A_DROP_DENSEST_AS_NEEDED]) { indices.push_back(sf.index); if (sf.index - merge_previndex < mingap && find_partial(partials, sf, which_partial, layer_unmaps)) { - preserve_attributes(arg->attribute_accum, attribute_accum_state, sf, stringpool, pool_off, partials[which_partial]); + preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); continue; } } else if (additional[A_COALESCE_DENSEST_AS_NEEDED]) { @@ -1880,13 +1912,13 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta if (sf.index - merge_previndex < mingap && find_partial(partials, sf, which_partial, layer_unmaps)) { partials[which_partial].geoms.push_back(sf.geometry); coalesced_area += sf.extent; - preserve_attributes(arg->attribute_accum, attribute_accum_state, sf, stringpool, pool_off, partials[which_partial]); + preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); continue; } } else if (additional[A_DROP_SMALLEST_AS_NEEDED]) { extents.push_back(sf.extent); if (sf.extent + coalesced_area <= minextent && sf.t != VT_POINT && find_partial(partials, sf, which_partial, layer_unmaps)) { - preserve_attributes(arg->attribute_accum, attribute_accum_state, sf, stringpool, pool_off, partials[which_partial]); + preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); continue; } } else if (additional[A_COALESCE_SMALLEST_AS_NEEDED]) { @@ -1894,7 +1926,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta if (sf.extent + coalesced_area <= minextent && find_partial(partials, sf, which_partial, layer_unmaps)) { partials[which_partial].geoms.push_back(sf.geometry); coalesced_area += sf.extent; - preserve_attributes(arg->attribute_accum, attribute_accum_state, sf, stringpool, pool_off, partials[which_partial]); + preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); continue; } } @@ -1917,7 +1949,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta partials[which_partial].geoms.push_back(sf.geometry); coalesced_area += sf.extent; } - preserve_attributes(arg->attribute_accum, attribute_accum_state, sf, stringpool, pool_off, partials[which_partial]); + preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); continue; } fraction_accum -= 1; @@ -1929,8 +1961,19 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta } has_polygons = true; } + if (sf.t == VT_POLYGON || sf.t == VT_LINE) { + if (line_is_too_small(sf.geometry, z, line_detail)) { + continue; + } + } if (sf.geometry.size() > 0) { + if (prevent[P_SIMPLIFY_SHARED_NODES]) { + for (auto &g : sf.geometry) { + shared_nodes.push_back(g); + } + } + partial p; p.geoms.push_back(sf.geometry); p.layer = sf.layer; @@ -1960,6 +2003,25 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta coalesced_area = 0; } + { + drawvec just_shared_nodes; + std::sort(shared_nodes.begin(), shared_nodes.end()); + + for (size_t i = 0; i + 1 < shared_nodes.size(); i++) { + if (shared_nodes[i] == shared_nodes[i + 1]) { + just_shared_nodes.push_back(shared_nodes[i]); + + draw d = shared_nodes[i]; + i++; + while (i + 1 < shared_nodes.size() && shared_nodes[i + 1] == d) { + i++; + } + } + } + + shared_nodes = just_shared_nodes; + } + for (size_t i = 0; i < partials.size(); i++) { partial &p = partials[i]; @@ -2042,6 +2104,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta args[i].task = i; args[i].tasks = tasks; args[i].partials = &partials; + args[i].shared_nodes = &shared_nodes; if (tasks > 1) { if (pthread_create(&pthreads[i], NULL, partial_feature_worker, &args[i]) != 0) { @@ -2138,7 +2201,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta } #endif - if (additional[A_COALESCE] && out.size() > 0 && coalcmp(&layer_features[x], &out[y]) == 0 && layer_features[x].type != VT_POINT) { + if (additional[A_COALESCE] && out.size() > 0 && coalcmp(&layer_features[x], &out[y]) == 0) { for (size_t g = 0; g < layer_features[x].geom.size(); g++) { out[y].geom.push_back(layer_features[x].geom[g]); } @@ -2155,7 +2218,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta if (layer_features[x].coalesced && layer_features[x].type == VT_LINE) { layer_features[x].geom = remove_noop(layer_features[x].geom, layer_features[x].type, 0); layer_features[x].geom = simplify_lines(layer_features[x].geom, 32, 0, - !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, layer_features[x].type == VT_POLYGON ? 4 : 0); + !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, layer_features[x].type == VT_POLYGON ? 4 : 0, shared_nodes); } if (layer_features[x].type == VT_POLYGON) { diff --git a/version.hpp b/version.hpp index bff73004f..8f9c723f6 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v1.32.1" +#define VERSION "v1.36.0" #endif